| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #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 Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 29 | #include <linux/inetdevice.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/netdevice.h> | 
|  | 31 | #include <linux/if_arp.h> | 
|  | 32 | #include <linux/proc_fs.h> | 
|  | 33 | #include <linux/skbuff.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/init.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 |  | 
| Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 37 | #include <net/arp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #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 Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 44 | #include <net/netlink.h> | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 45 | #include <net/nexthop.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
|  | 47 | #include "fib_lookup.h" | 
|  | 48 |  | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 49 | static DEFINE_SPINLOCK(fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | static struct hlist_head *fib_info_hash; | 
|  | 51 | static struct hlist_head *fib_info_laddrhash; | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 52 | static unsigned int fib_info_hash_size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static unsigned int fib_info_cnt; | 
|  | 54 |  | 
|  | 55 | #define DEVINDEX_HASHBITS 8 | 
|  | 56 | #define DEVINDEX_HASHSIZE (1U << DEVINDEX_HASHBITS) | 
|  | 57 | static struct hlist_head fib_info_devhash[DEVINDEX_HASHSIZE]; | 
|  | 58 |  | 
|  | 59 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
|  | 60 |  | 
|  | 61 | static DEFINE_SPINLOCK(fib_multipath_lock); | 
|  | 62 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 63 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 69 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 |  | 
|  | 75 | #else /* CONFIG_IP_ROUTE_MULTIPATH */ | 
|  | 76 |  | 
|  | 77 | /* Hope, that gcc will optimize it to get rid of dummy loop */ | 
|  | 78 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 79 | #define for_nexthops(fi) {						\ | 
|  | 80 | int nhsel; const struct fib_nh *nh = (fi)->fib_nh;		\ | 
|  | 81 | for (nhsel = 0; nhsel < 1; nhsel++) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 83 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
|  | 88 | #endif /* CONFIG_IP_ROUTE_MULTIPATH */ | 
|  | 89 |  | 
|  | 90 | #define endfor_nexthops(fi) } | 
|  | 91 |  | 
|  | 92 |  | 
| YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 93 | static const struct | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { | 
|  | 95 | int	error; | 
|  | 96 | u8	scope; | 
| Thomas Graf | a0ee18b | 2007-03-24 20:32:54 -0700 | [diff] [blame] | 97 | } fib_props[RTN_MAX + 1] = { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 98 | [RTN_UNSPEC] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | .error	= 0, | 
|  | 100 | .scope	= RT_SCOPE_NOWHERE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 101 | }, | 
|  | 102 | [RTN_UNICAST] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | .error	= 0, | 
|  | 104 | .scope	= RT_SCOPE_UNIVERSE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 105 | }, | 
|  | 106 | [RTN_LOCAL] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | .error	= 0, | 
|  | 108 | .scope	= RT_SCOPE_HOST, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 109 | }, | 
|  | 110 | [RTN_BROADCAST] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | .error	= 0, | 
|  | 112 | .scope	= RT_SCOPE_LINK, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 113 | }, | 
|  | 114 | [RTN_ANYCAST] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | .error	= 0, | 
|  | 116 | .scope	= RT_SCOPE_LINK, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 117 | }, | 
|  | 118 | [RTN_MULTICAST] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | .error	= 0, | 
|  | 120 | .scope	= RT_SCOPE_UNIVERSE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 121 | }, | 
|  | 122 | [RTN_BLACKHOLE] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | .error	= -EINVAL, | 
|  | 124 | .scope	= RT_SCOPE_UNIVERSE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 125 | }, | 
|  | 126 | [RTN_UNREACHABLE] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | .error	= -EHOSTUNREACH, | 
|  | 128 | .scope	= RT_SCOPE_UNIVERSE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 129 | }, | 
|  | 130 | [RTN_PROHIBIT] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | .error	= -EACCES, | 
|  | 132 | .scope	= RT_SCOPE_UNIVERSE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 133 | }, | 
|  | 134 | [RTN_THROW] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | .error	= -EAGAIN, | 
|  | 136 | .scope	= RT_SCOPE_UNIVERSE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 137 | }, | 
|  | 138 | [RTN_NAT] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | .error	= -EINVAL, | 
|  | 140 | .scope	= RT_SCOPE_NOWHERE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 141 | }, | 
|  | 142 | [RTN_XRESOLVE] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | .error	= -EINVAL, | 
|  | 144 | .scope	= RT_SCOPE_NOWHERE, | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 145 | }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | }; | 
|  | 147 |  | 
|  | 148 |  | 
|  | 149 | /* Release a nexthop info record */ | 
|  | 150 |  | 
| Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 151 | static 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. Miller | 725d1e1 | 2011-01-28 14:05:05 -0800 | [diff] [blame] | 155 | if (fi->fib_metrics != (u32 *) dst_default_metrics) | 
|  | 156 | kfree(fi->fib_metrics); | 
| Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 157 | kfree(fi); | 
|  | 158 | } | 
|  | 159 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | void free_fib_info(struct fib_info *fi) | 
|  | 161 | { | 
|  | 162 | if (fi->fib_dead == 0) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 163 | pr_warning("Freeing alive fib_info %p\n", fi); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | return; | 
|  | 165 | } | 
|  | 166 | change_nexthops(fi) { | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 167 | if (nexthop_nh->nh_dev) | 
|  | 168 | dev_put(nexthop_nh->nh_dev); | 
|  | 169 | nexthop_nh->nh_dev = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | } endfor_nexthops(fi); | 
|  | 171 | fib_info_cnt--; | 
| Denis V. Lunev | 57d7a60 | 2008-04-16 02:00:50 -0700 | [diff] [blame] | 172 | release_net(fi->fib_net); | 
| Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 173 | call_rcu(&fi->rcu, free_fib_info_rcu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } | 
|  | 175 |  | 
|  | 176 | void fib_release_info(struct fib_info *fi) | 
|  | 177 | { | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 178 | spin_lock_bh(&fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | 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. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 184 | if (!nexthop_nh->nh_dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | continue; | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 186 | hlist_del(&nexthop_nh->nh_hash); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } endfor_nexthops(fi) | 
|  | 188 | fi->fib_dead = 1; | 
|  | 189 | fib_info_put(fi); | 
|  | 190 | } | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 191 | spin_unlock_bh(&fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } | 
|  | 193 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 194 | static inline int nh_comp(const struct fib_info *fi, const struct fib_info *ofi) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { | 
|  | 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 McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 205 | #ifdef CONFIG_IP_ROUTE_CLASSID | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | nh->nh_tclassid != onh->nh_tclassid || | 
|  | 207 | #endif | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 208 | ((nh->nh_flags ^ onh->nh_flags) & ~RTNH_F_DEAD)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | return -1; | 
|  | 210 | onh++; | 
|  | 211 | } endfor_nexthops(fi); | 
|  | 212 | return 0; | 
|  | 213 | } | 
|  | 214 |  | 
| David S. Miller | 88ebc72 | 2008-01-12 21:49:01 -0800 | [diff] [blame] | 215 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | static inline unsigned int fib_info_hashfn(const struct fib_info *fi) | 
|  | 225 | { | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 226 | unsigned int mask = (fib_info_hash_size - 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | unsigned int val = fi->fib_nhs; | 
|  | 228 |  | 
|  | 229 | val ^= fi->fib_protocol; | 
| Al Viro | 81f7bf6 | 2006-09-27 18:40:00 -0700 | [diff] [blame] | 230 | val ^= (__force u32)fi->fib_prefsrc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | val ^= fi->fib_priority; | 
| David S. Miller | 88ebc72 | 2008-01-12 21:49:01 -0800 | [diff] [blame] | 232 | for_nexthops(fi) { | 
|  | 233 | val ^= fib_devindex_hashfn(nh->nh_oif); | 
|  | 234 | } endfor_nexthops(fi) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 |  | 
|  | 236 | return (val ^ (val >> 7) ^ (val >> 12)) & mask; | 
|  | 237 | } | 
|  | 238 |  | 
|  | 239 | static 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 Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 250 | if (!net_eq(fi->fib_net, nfi->fib_net)) | 
| Denis V. Lunev | 4814bdb | 2008-01-31 18:50:07 -0800 | [diff] [blame] | 251 | continue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | 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 Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 259 | ((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_F_DEAD) == 0 && | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0)) | 
|  | 261 | return fi; | 
|  | 262 | } | 
|  | 263 |  | 
|  | 264 | return NULL; | 
|  | 265 | } | 
|  | 266 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /* Check, that the gateway is already configured. | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 268 | * Used only by redirect accept routine. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | */ | 
| Al Viro | d878e72e | 2006-09-26 22:18:13 -0700 | [diff] [blame] | 270 | int ip_fib_check_default(__be32 gw, struct net_device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { | 
|  | 272 | struct hlist_head *head; | 
|  | 273 | struct hlist_node *node; | 
|  | 274 | struct fib_nh *nh; | 
|  | 275 | unsigned int hash; | 
|  | 276 |  | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 277 | spin_lock(&fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 |  | 
|  | 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 Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 284 | !(nh->nh_flags & RTNH_F_DEAD)) { | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 285 | spin_unlock(&fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | return 0; | 
|  | 287 | } | 
|  | 288 | } | 
|  | 289 |  | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 290 | spin_unlock(&fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 |  | 
|  | 292 | return -1; | 
|  | 293 | } | 
|  | 294 |  | 
| Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 295 | static 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 Viro | 81f7bf6 | 2006-09-27 18:40:00 -0700 | [diff] [blame] | 322 | void rtmsg_fib(int event, __be32 key, struct fib_alias *fa, | 
| Milan Kocian | b8f5583 | 2007-05-23 14:55:06 -0700 | [diff] [blame] | 323 | int dst_len, u32 tb_id, struct nl_info *info, | 
|  | 324 | unsigned int nlm_flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | { | 
|  | 326 | struct sk_buff *skb; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 327 | u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0; | 
| Thomas Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 328 | int err = -ENOBUFS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 |  | 
| Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 330 | skb = nlmsg_new(fib_nlmsg_size(fa->fa_info), GFP_KERNEL); | 
| Thomas Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 331 | if (skb == NULL) | 
|  | 332 | goto errout; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 334 | err = fib_dump_info(skb, info->pid, seq, event, tb_id, | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 335 | fa->fa_type, fa->fa_scope, key, dst_len, | 
| Milan Kocian | b8f5583 | 2007-05-23 14:55:06 -0700 | [diff] [blame] | 336 | fa->fa_tos, fa->fa_info, nlm_flags); | 
| Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 337 | 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 Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 343 | rtnl_notify(skb, info->nl_net, info->pid, RTNLGRP_IPV4_ROUTE, | 
|  | 344 | info->nlh, GFP_KERNEL); | 
|  | 345 | return; | 
| Thomas Graf | f21c7bc | 2006-08-15 00:34:17 -0700 | [diff] [blame] | 346 | errout: | 
|  | 347 | if (err < 0) | 
| Denis V. Lunev | 4d1169c | 2008-01-10 03:26:13 -0800 | [diff] [blame] | 348 | rtnl_set_sk_err(info->nl_net, RTNLGRP_IPV4_ROUTE, err); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } | 
|  | 350 |  | 
|  | 351 | /* Return the first fib alias matching TOS with | 
|  | 352 | * priority less than or equal to PRIO. | 
|  | 353 | */ | 
|  | 354 | struct 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 |  | 
|  | 369 | int fib_detect_death(struct fib_info *fi, int order, | 
| Denis V. Lunev | c17860a | 2007-12-08 00:22:13 -0800 | [diff] [blame] | 370 | struct fib_info **last_resort, int *last_idx, int dflt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | { | 
|  | 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 Kong | d931910 | 2008-11-03 00:23:42 -0800 | [diff] [blame] | 380 | if (state == NUD_REACHABLE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | return 0; | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 382 | if ((state & NUD_VALID) && order != dflt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | return 0; | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 384 | if ((state & NUD_VALID) || | 
|  | 385 | (*last_idx < 0 && order > dflt)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | *last_resort = fi; | 
|  | 387 | *last_idx = order; | 
|  | 388 | } | 
|  | 389 | return 1; | 
|  | 390 | } | 
|  | 391 |  | 
|  | 392 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
|  | 393 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 394 | static int fib_count_nexthops(struct rtnexthop *rtnh, int remaining) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | { | 
|  | 396 | int nhs = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 398 | while (rtnh_ok(rtnh, remaining)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | nhs++; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 400 | rtnh = rtnh_next(rtnh, &remaining); | 
|  | 401 | } | 
|  | 402 |  | 
|  | 403 | /* leftover implies invalid nexthop configuration, discard it */ | 
|  | 404 | return remaining > 0 ? 0 : nhs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } | 
|  | 406 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 407 | static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, | 
|  | 408 | int remaining, struct fib_config *cfg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | change_nexthops(fi) { | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 411 | int attrlen; | 
|  | 412 |  | 
|  | 413 | if (!rtnh_ok(rtnh, remaining)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | return -EINVAL; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 415 |  | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 416 | 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 Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 420 |  | 
|  | 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. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 426 | nexthop_nh->nh_gw = nla ? nla_get_be32(nla) : 0; | 
| Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 427 | #ifdef CONFIG_IP_ROUTE_CLASSID | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 428 | nla = nla_find(attrs, attrlen, RTA_FLOW); | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 429 | nexthop_nh->nh_tclassid = nla ? nla_get_u32(nla) : 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | #endif | 
|  | 431 | } | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 432 |  | 
|  | 433 | rtnh = rtnh_next(rtnh, &remaining); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } endfor_nexthops(fi); | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 435 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | return 0; | 
|  | 437 | } | 
|  | 438 |  | 
|  | 439 | #endif | 
|  | 440 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 441 | int fib_nh_match(struct fib_config *cfg, struct fib_info *fi) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | { | 
|  | 443 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 444 | struct rtnexthop *rtnh; | 
|  | 445 | int remaining; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | #endif | 
|  | 447 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 448 | if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | return 1; | 
|  | 450 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 451 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | return 0; | 
|  | 455 | return 1; | 
|  | 456 | } | 
|  | 457 |  | 
|  | 458 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 459 | if (cfg->fc_mp == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | return 0; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 461 |  | 
|  | 462 | rtnh = cfg->fc_mp; | 
|  | 463 | remaining = cfg->fc_mp_len; | 
| YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 464 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | for_nexthops(fi) { | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 466 | int attrlen; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 468 | if (!rtnh_ok(rtnh, remaining)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | return -EINVAL; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 470 |  | 
|  | 471 | if (rtnh->rtnh_ifindex && rtnh->rtnh_ifindex != nh->nh_oif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | return 1; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 473 |  | 
|  | 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 Viro | 17fb2c6 | 2006-09-26 22:15:25 -0700 | [diff] [blame] | 479 | if (nla && nla_get_be32(nla) != nh->nh_gw) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | return 1; | 
| Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 481 | #ifdef CONFIG_IP_ROUTE_CLASSID | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 482 | nla = nla_find(attrs, attrlen, RTA_FLOW); | 
|  | 483 | if (nla && nla_get_u32(nla) != nh->nh_tclassid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | return 1; | 
|  | 485 | #endif | 
|  | 486 | } | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 487 |  | 
|  | 488 | rtnh = rtnh_next(rtnh, &remaining); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | } endfor_nexthops(fi); | 
|  | 490 | #endif | 
|  | 491 | return 0; | 
|  | 492 | } | 
|  | 493 |  | 
|  | 494 |  | 
|  | 495 | /* | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 496 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | */ | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 538 | static int fib_check_nh(struct fib_config *cfg, struct fib_info *fi, | 
|  | 539 | struct fib_nh *nh) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | { | 
|  | 541 | int err; | 
| Denis V. Lunev | 86167a3 | 2008-01-21 17:34:00 -0800 | [diff] [blame] | 542 | struct net *net; | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 543 | struct net_device *dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 |  | 
| Denis V. Lunev | 86167a3 | 2008-01-21 17:34:00 -0800 | [diff] [blame] | 545 | net = cfg->fc_nlinfo.nl_net; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | if (nh->nh_gw) { | 
|  | 547 | struct fib_result res; | 
|  | 548 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 549 | if (nh->nh_flags & RTNH_F_ONLINK) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 551 | if (cfg->fc_scope >= RT_SCOPE_LINK) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | return -EINVAL; | 
| Denis V. Lunev | 86167a3 | 2008-01-21 17:34:00 -0800 | [diff] [blame] | 553 | if (inet_addr_type(net, nh->nh_gw) != RTN_UNICAST) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | return -EINVAL; | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 555 | dev = __dev_get_by_index(net, nh->nh_oif); | 
|  | 556 | if (!dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | return -ENODEV; | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 558 | if (!(dev->flags & IFF_UP)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | return -ENETDOWN; | 
|  | 560 | nh->nh_dev = dev; | 
|  | 561 | dev_hold(dev); | 
|  | 562 | nh->nh_scope = RT_SCOPE_LINK; | 
|  | 563 | return 0; | 
|  | 564 | } | 
| Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 565 | rcu_read_lock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | { | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 567 | struct flowi fl = { | 
| Changli Gao | 5811662 | 2010-11-12 18:43:55 +0000 | [diff] [blame] | 568 | .fl4_dst = nh->nh_gw, | 
|  | 569 | .fl4_scope = cfg->fc_scope + 1, | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 570 | .oif = nh->nh_oif, | 
|  | 571 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 |  | 
|  | 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 Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 576 | err = fib_lookup(net, &fl, &res); | 
| Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 577 | if (err) { | 
|  | 578 | rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | return err; | 
| Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 580 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } | 
|  | 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 Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 587 | nh->nh_dev = dev = FIB_RES_DEV(res); | 
|  | 588 | if (!dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | goto out; | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 590 | dev_hold(dev); | 
| Eric Dumazet | 8723e1b | 2010-10-19 00:39:26 +0000 | [diff] [blame] | 591 | err = (dev->flags & IFF_UP) ? 0 : -ENETDOWN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | } else { | 
|  | 593 | struct in_device *in_dev; | 
|  | 594 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 595 | if (nh->nh_flags & (RTNH_F_PERVASIVE | RTNH_F_ONLINK)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | return -EINVAL; | 
|  | 597 |  | 
| Eric Dumazet | 8723e1b | 2010-10-19 00:39:26 +0000 | [diff] [blame] | 598 | rcu_read_lock(); | 
|  | 599 | err = -ENODEV; | 
| Denis V. Lunev | 86167a3 | 2008-01-21 17:34:00 -0800 | [diff] [blame] | 600 | in_dev = inetdev_by_index(net, nh->nh_oif); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | if (in_dev == NULL) | 
| Eric Dumazet | 8723e1b | 2010-10-19 00:39:26 +0000 | [diff] [blame] | 602 | goto out; | 
|  | 603 | err = -ENETDOWN; | 
|  | 604 | if (!(in_dev->dev->flags & IFF_UP)) | 
|  | 605 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | nh->nh_dev = in_dev->dev; | 
|  | 607 | dev_hold(nh->nh_dev); | 
|  | 608 | nh->nh_scope = RT_SCOPE_HOST; | 
| Eric Dumazet | 8723e1b | 2010-10-19 00:39:26 +0000 | [diff] [blame] | 609 | err = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } | 
| Eric Dumazet | 8723e1b | 2010-10-19 00:39:26 +0000 | [diff] [blame] | 611 | out: | 
|  | 612 | rcu_read_unlock(); | 
|  | 613 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } | 
|  | 615 |  | 
| Al Viro | 81f7bf6 | 2006-09-27 18:40:00 -0700 | [diff] [blame] | 616 | static inline unsigned int fib_laddr_hashfn(__be32 val) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 618 | unsigned int mask = (fib_info_hash_size - 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 620 | return ((__force u32)val ^ | 
|  | 621 | ((__force u32)val >> 7) ^ | 
|  | 622 | ((__force u32)val >> 14)) & mask; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | } | 
|  | 624 |  | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 625 | static struct hlist_head *fib_info_hash_alloc(int bytes) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | { | 
|  | 627 | if (bytes <= PAGE_SIZE) | 
| Joonwoo Park | 88f8349 | 2007-11-26 23:29:32 +0800 | [diff] [blame] | 628 | return kzalloc(bytes, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | else | 
|  | 630 | return (struct hlist_head *) | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 631 | __get_free_pages(GFP_KERNEL | __GFP_ZERO, | 
|  | 632 | get_order(bytes)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | } | 
|  | 634 |  | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 635 | static void fib_info_hash_free(struct hlist_head *hash, int bytes) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | { | 
|  | 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. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 646 | static void fib_info_hash_move(struct hlist_head *new_info_hash, | 
|  | 647 | struct hlist_head *new_laddrhash, | 
|  | 648 | unsigned int new_size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { | 
| David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 650 | struct hlist_head *old_info_hash, *old_laddrhash; | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 651 | unsigned int old_size = fib_info_hash_size; | 
| David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 652 | unsigned int i, bytes; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 |  | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 654 | spin_lock_bh(&fib_info_lock); | 
| David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 655 | old_info_hash = fib_info_hash; | 
|  | 656 | old_laddrhash = fib_info_laddrhash; | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 657 | fib_info_hash_size = new_size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 |  | 
|  | 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 Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 695 | spin_unlock_bh(&fib_info_lock); | 
| David S. Miller | b7656e7 | 2005-08-05 04:12:48 -0700 | [diff] [blame] | 696 |  | 
|  | 697 | bytes = old_size * sizeof(struct hlist_head *); | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 698 | fib_info_hash_free(old_info_hash, bytes); | 
|  | 699 | fib_info_hash_free(old_laddrhash, bytes); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } | 
|  | 701 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 702 | struct fib_info *fib_create_info(struct fib_config *cfg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | { | 
|  | 704 | int err; | 
|  | 705 | struct fib_info *fi = NULL; | 
|  | 706 | struct fib_info *ofi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | int nhs = 1; | 
| Denis V. Lunev | 7462bd74 | 2008-01-31 18:49:32 -0800 | [diff] [blame] | 708 | struct net *net = cfg->fc_nlinfo.nl_net; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 |  | 
|  | 710 | /* Fast check to catch the most weird cases */ | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 711 | if (fib_props[cfg->fc_type].scope > cfg->fc_scope) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | goto err_inval; | 
|  | 713 |  | 
|  | 714 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 715 | if (cfg->fc_mp) { | 
|  | 716 | nhs = fib_count_nexthops(cfg->fc_mp, cfg->fc_mp_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | if (nhs == 0) | 
|  | 718 | goto err_inval; | 
|  | 719 | } | 
|  | 720 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 |  | 
|  | 722 | err = -ENOBUFS; | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 723 | if (fib_info_cnt >= fib_info_hash_size) { | 
|  | 724 | unsigned int new_size = fib_info_hash_size << 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | struct hlist_head *new_info_hash; | 
|  | 726 | struct hlist_head *new_laddrhash; | 
|  | 727 | unsigned int bytes; | 
|  | 728 |  | 
|  | 729 | if (!new_size) | 
|  | 730 | new_size = 1; | 
|  | 731 | bytes = new_size * sizeof(struct hlist_head *); | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 732 | new_info_hash = fib_info_hash_alloc(bytes); | 
|  | 733 | new_laddrhash = fib_info_hash_alloc(bytes); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | if (!new_info_hash || !new_laddrhash) { | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 735 | fib_info_hash_free(new_info_hash, bytes); | 
|  | 736 | fib_info_hash_free(new_laddrhash, bytes); | 
| Joonwoo Park | 88f8349 | 2007-11-26 23:29:32 +0800 | [diff] [blame] | 737 | } else | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 738 | fib_info_hash_move(new_info_hash, new_laddrhash, new_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 |  | 
| David S. Miller | 123b973 | 2011-02-01 15:34:21 -0800 | [diff] [blame] | 740 | if (!fib_info_hash_size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | goto failure; | 
|  | 742 | } | 
|  | 743 |  | 
| Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 744 | fi = kzalloc(sizeof(*fi)+nhs*sizeof(struct fib_nh), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | if (fi == NULL) | 
|  | 746 | goto failure; | 
| David S. Miller | 725d1e1 | 2011-01-28 14:05:05 -0800 | [diff] [blame] | 747 | if (cfg->fc_mx) { | 
|  | 748 | fi->fib_metrics = kzalloc(sizeof(u32) * RTAX_MAX, GFP_KERNEL); | 
|  | 749 | if (!fi->fib_metrics) | 
|  | 750 | goto failure; | 
|  | 751 | } else | 
|  | 752 | fi->fib_metrics = (u32 *) dst_default_metrics; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | fib_info_cnt++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 |  | 
| Denis V. Lunev | 57d7a60 | 2008-04-16 02:00:50 -0700 | [diff] [blame] | 755 | fi->fib_net = hold_net(net); | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 756 | fi->fib_protocol = cfg->fc_protocol; | 
|  | 757 | fi->fib_flags = cfg->fc_flags; | 
|  | 758 | fi->fib_priority = cfg->fc_priority; | 
|  | 759 | fi->fib_prefsrc = cfg->fc_prefsrc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 |  | 
|  | 761 | fi->fib_nhs = nhs; | 
|  | 762 | change_nexthops(fi) { | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 763 | nexthop_nh->nh_parent = fi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } endfor_nexthops(fi) | 
|  | 765 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 766 | if (cfg->fc_mx) { | 
|  | 767 | struct nlattr *nla; | 
|  | 768 | int remaining; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 770 | nla_for_each_attr(nla, cfg->fc_mx, cfg->fc_mx_len, remaining) { | 
| Thomas Graf | 8f4c1f9 | 2007-09-12 14:44:36 +0200 | [diff] [blame] | 771 | int type = nla_type(nla); | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 772 |  | 
|  | 773 | if (type) { | 
|  | 774 | if (type > RTAX_MAX) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | goto err_inval; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 776 | fi->fib_metrics[type - 1] = nla_get_u32(nla); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } | 
|  | 779 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 781 | if (cfg->fc_mp) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 783 | err = fib_get_nhs(fi, cfg->fc_mp, cfg->fc_mp_len, cfg); | 
|  | 784 | if (err != 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | goto failure; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 786 | if (cfg->fc_oif && fi->fib_nh->nh_oif != cfg->fc_oif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | goto err_inval; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 788 | if (cfg->fc_gw && fi->fib_nh->nh_gw != cfg->fc_gw) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | goto err_inval; | 
| Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 790 | #ifdef CONFIG_IP_ROUTE_CLASSID | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 791 | if (cfg->fc_flow && fi->fib_nh->nh_tclassid != cfg->fc_flow) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | goto err_inval; | 
|  | 793 | #endif | 
|  | 794 | #else | 
|  | 795 | goto err_inval; | 
|  | 796 | #endif | 
|  | 797 | } else { | 
|  | 798 | struct fib_nh *nh = fi->fib_nh; | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 799 |  | 
|  | 800 | nh->nh_oif = cfg->fc_oif; | 
|  | 801 | nh->nh_gw = cfg->fc_gw; | 
|  | 802 | nh->nh_flags = cfg->fc_flags; | 
| Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 803 | #ifdef CONFIG_IP_ROUTE_CLASSID | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 804 | nh->nh_tclassid = cfg->fc_flow; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
|  | 807 | nh->nh_weight = 1; | 
|  | 808 | #endif | 
|  | 809 | } | 
|  | 810 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 811 | if (fib_props[cfg->fc_type].error) { | 
|  | 812 | if (cfg->fc_gw || cfg->fc_oif || cfg->fc_mp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | goto err_inval; | 
|  | 814 | goto link_it; | 
|  | 815 | } | 
|  | 816 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 817 | if (cfg->fc_scope > RT_SCOPE_HOST) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | goto err_inval; | 
|  | 819 |  | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 820 | if (cfg->fc_scope == RT_SCOPE_HOST) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | struct fib_nh *nh = fi->fib_nh; | 
|  | 822 |  | 
|  | 823 | /* Local address is added. */ | 
|  | 824 | if (nhs != 1 || nh->nh_gw) | 
|  | 825 | goto err_inval; | 
|  | 826 | nh->nh_scope = RT_SCOPE_NOWHERE; | 
| Denis V. Lunev | 7462bd74 | 2008-01-31 18:49:32 -0800 | [diff] [blame] | 827 | nh->nh_dev = dev_get_by_index(net, fi->fib_nh->nh_oif); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | err = -ENODEV; | 
|  | 829 | if (nh->nh_dev == NULL) | 
|  | 830 | goto failure; | 
|  | 831 | } else { | 
|  | 832 | change_nexthops(fi) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 833 | err = fib_check_nh(cfg, fi, nexthop_nh); | 
|  | 834 | if (err != 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | goto failure; | 
|  | 836 | } endfor_nexthops(fi) | 
|  | 837 | } | 
|  | 838 |  | 
|  | 839 | if (fi->fib_prefsrc) { | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 840 | if (cfg->fc_type != RTN_LOCAL || !cfg->fc_dst || | 
|  | 841 | fi->fib_prefsrc != cfg->fc_dst) | 
| Denis V. Lunev | 7462bd74 | 2008-01-31 18:49:32 -0800 | [diff] [blame] | 842 | if (inet_addr_type(net, fi->fib_prefsrc) != RTN_LOCAL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | goto err_inval; | 
|  | 844 | } | 
|  | 845 |  | 
|  | 846 | link_it: | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 847 | ofi = fib_find_info(fi); | 
|  | 848 | if (ofi) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | fi->fib_dead = 1; | 
|  | 850 | free_fib_info(fi); | 
|  | 851 | ofi->fib_treeref++; | 
|  | 852 | return ofi; | 
|  | 853 | } | 
|  | 854 |  | 
|  | 855 | fi->fib_treeref++; | 
|  | 856 | atomic_inc(&fi->fib_clntref); | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 857 | spin_lock_bh(&fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | hlist_add_head(&fi->fib_hash, | 
|  | 859 | &fib_info_hash[fib_info_hashfn(fi)]); | 
|  | 860 | if (fi->fib_prefsrc) { | 
|  | 861 | struct hlist_head *head; | 
|  | 862 |  | 
|  | 863 | head = &fib_info_laddrhash[fib_laddr_hashfn(fi->fib_prefsrc)]; | 
|  | 864 | hlist_add_head(&fi->fib_lhash, head); | 
|  | 865 | } | 
|  | 866 | change_nexthops(fi) { | 
|  | 867 | struct hlist_head *head; | 
|  | 868 | unsigned int hash; | 
|  | 869 |  | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 870 | if (!nexthop_nh->nh_dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | continue; | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 872 | hash = fib_devindex_hashfn(nexthop_nh->nh_dev->ifindex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | head = &fib_info_devhash[hash]; | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 874 | hlist_add_head(&nexthop_nh->nh_hash, head); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | } endfor_nexthops(fi) | 
| Stephen Hemminger | 832b4c5 | 2006-08-29 16:48:09 -0700 | [diff] [blame] | 876 | spin_unlock_bh(&fib_info_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | return fi; | 
|  | 878 |  | 
|  | 879 | err_inval: | 
|  | 880 | err = -EINVAL; | 
|  | 881 |  | 
|  | 882 | failure: | 
| YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 883 | if (fi) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | fi->fib_dead = 1; | 
|  | 885 | free_fib_info(fi); | 
|  | 886 | } | 
| Thomas Graf | 4e902c5 | 2006-08-17 18:14:52 -0700 | [diff] [blame] | 887 |  | 
|  | 888 | return ERR_PTR(err); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | } | 
|  | 890 |  | 
| Robert Olsson | e5b4376 | 2005-08-25 13:01:03 -0700 | [diff] [blame] | 891 | /* Note! fib_semantic_match intentionally uses  RCU list functions. */ | 
| David S. Miller | 5b47044 | 2011-01-31 16:10:03 -0800 | [diff] [blame] | 892 | int fib_semantic_match(struct fib_table *tb, struct list_head *head, | 
|  | 893 | const struct flowi *flp, struct fib_result *res, | 
|  | 894 | int prefixlen, int fib_flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | { | 
|  | 896 | struct fib_alias *fa; | 
|  | 897 | int nh_sel = 0; | 
|  | 898 |  | 
| Robert Olsson | e5b4376 | 2005-08-25 13:01:03 -0700 | [diff] [blame] | 899 | list_for_each_entry_rcu(fa, head, fa_list) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | int err; | 
|  | 901 |  | 
|  | 902 | if (fa->fa_tos && | 
|  | 903 | fa->fa_tos != flp->fl4_tos) | 
|  | 904 | continue; | 
|  | 905 |  | 
|  | 906 | if (fa->fa_scope < flp->fl4_scope) | 
|  | 907 | continue; | 
|  | 908 |  | 
| Eric Dumazet | 9b0c290 | 2010-10-20 22:03:38 +0000 | [diff] [blame] | 909 | fib_alias_accessed(fa); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 |  | 
|  | 911 | err = fib_props[fa->fa_type].error; | 
|  | 912 | if (err == 0) { | 
|  | 913 | struct fib_info *fi = fa->fa_info; | 
|  | 914 |  | 
|  | 915 | if (fi->fib_flags & RTNH_F_DEAD) | 
|  | 916 | continue; | 
|  | 917 |  | 
|  | 918 | switch (fa->fa_type) { | 
|  | 919 | case RTN_UNICAST: | 
|  | 920 | case RTN_LOCAL: | 
|  | 921 | case RTN_BROADCAST: | 
|  | 922 | case RTN_ANYCAST: | 
|  | 923 | case RTN_MULTICAST: | 
|  | 924 | for_nexthops(fi) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 925 | if (nh->nh_flags & RTNH_F_DEAD) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | continue; | 
|  | 927 | if (!flp->oif || flp->oif == nh->nh_oif) | 
|  | 928 | break; | 
|  | 929 | } | 
|  | 930 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
|  | 931 | if (nhsel < fi->fib_nhs) { | 
|  | 932 | nh_sel = nhsel; | 
|  | 933 | goto out_fill_res; | 
|  | 934 | } | 
|  | 935 | #else | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 936 | if (nhsel < 1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | goto out_fill_res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | #endif | 
|  | 939 | endfor_nexthops(fi); | 
|  | 940 | continue; | 
|  | 941 |  | 
|  | 942 | default: | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 943 | pr_warning("fib_semantic_match bad type %#x\n", | 
|  | 944 | fa->fa_type); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | return -EINVAL; | 
| Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 946 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | } | 
|  | 948 | return err; | 
|  | 949 | } | 
|  | 950 | return 1; | 
|  | 951 |  | 
|  | 952 | out_fill_res: | 
|  | 953 | res->prefixlen = prefixlen; | 
|  | 954 | res->nh_sel = nh_sel; | 
|  | 955 | res->type = fa->fa_type; | 
|  | 956 | res->scope = fa->fa_scope; | 
|  | 957 | res->fi = fa->fa_info; | 
| David S. Miller | 5b47044 | 2011-01-31 16:10:03 -0800 | [diff] [blame] | 958 | res->table = tb; | 
|  | 959 | res->fa_head = head; | 
| Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 960 | if (!(fib_flags & FIB_LOOKUP_NOREF)) | 
|  | 961 | atomic_inc(&res->fi->fib_clntref); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | return 0; | 
|  | 963 | } | 
|  | 964 |  | 
|  | 965 | /* Find appropriate source address to this destination */ | 
|  | 966 |  | 
| Al Viro | b83738a | 2006-09-26 22:14:15 -0700 | [diff] [blame] | 967 | __be32 __fib_res_prefsrc(struct fib_result *res) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | { | 
|  | 969 | return inet_select_addr(FIB_RES_DEV(*res), FIB_RES_GW(*res), res->scope); | 
|  | 970 | } | 
|  | 971 |  | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 972 | int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event, | 
| Al Viro | 81f7bf6 | 2006-09-27 18:40:00 -0700 | [diff] [blame] | 973 | u32 tb_id, u8 type, u8 scope, __be32 dst, int dst_len, u8 tos, | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 974 | struct fib_info *fi, unsigned int flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | { | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 976 | struct nlmsghdr *nlh; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | struct rtmsg *rtm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 |  | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 979 | nlh = nlmsg_put(skb, pid, seq, event, sizeof(*rtm), flags); | 
|  | 980 | if (nlh == NULL) | 
| Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 981 | return -EMSGSIZE; | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 982 |  | 
|  | 983 | rtm = nlmsg_data(nlh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | rtm->rtm_family = AF_INET; | 
|  | 985 | rtm->rtm_dst_len = dst_len; | 
|  | 986 | rtm->rtm_src_len = 0; | 
|  | 987 | rtm->rtm_tos = tos; | 
| Krzysztof Piotr Oledzki | 709772e | 2008-06-10 15:44:49 -0700 | [diff] [blame] | 988 | if (tb_id < 256) | 
|  | 989 | rtm->rtm_table = tb_id; | 
|  | 990 | else | 
|  | 991 | rtm->rtm_table = RT_TABLE_COMPAT; | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 992 | NLA_PUT_U32(skb, RTA_TABLE, tb_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | rtm->rtm_type = type; | 
|  | 994 | rtm->rtm_flags = fi->fib_flags; | 
|  | 995 | rtm->rtm_scope = scope; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | rtm->rtm_protocol = fi->fib_protocol; | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 997 |  | 
|  | 998 | if (rtm->rtm_dst_len) | 
| Al Viro | 17fb2c6 | 2006-09-26 22:15:25 -0700 | [diff] [blame] | 999 | NLA_PUT_BE32(skb, RTA_DST, dst); | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1000 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | if (fi->fib_priority) | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1002 | NLA_PUT_U32(skb, RTA_PRIORITY, fi->fib_priority); | 
|  | 1003 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | if (rtnetlink_put_metrics(skb, fi->fib_metrics) < 0) | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1005 | goto nla_put_failure; | 
|  | 1006 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | if (fi->fib_prefsrc) | 
| Al Viro | 17fb2c6 | 2006-09-26 22:15:25 -0700 | [diff] [blame] | 1008 | NLA_PUT_BE32(skb, RTA_PREFSRC, fi->fib_prefsrc); | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1009 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | if (fi->fib_nhs == 1) { | 
|  | 1011 | if (fi->fib_nh->nh_gw) | 
| Al Viro | 17fb2c6 | 2006-09-26 22:15:25 -0700 | [diff] [blame] | 1012 | NLA_PUT_BE32(skb, RTA_GATEWAY, fi->fib_nh->nh_gw); | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1013 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | if (fi->fib_nh->nh_oif) | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1015 | NLA_PUT_U32(skb, RTA_OIF, fi->fib_nh->nh_oif); | 
| Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 1016 | #ifdef CONFIG_IP_ROUTE_CLASSID | 
| Patrick McHardy | 8265abc | 2006-07-21 15:09:55 -0700 | [diff] [blame] | 1017 | if (fi->fib_nh[0].nh_tclassid) | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1018 | NLA_PUT_U32(skb, RTA_FLOW, fi->fib_nh[0].nh_tclassid); | 
| Patrick McHardy | 8265abc | 2006-07-21 15:09:55 -0700 | [diff] [blame] | 1019 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | } | 
|  | 1021 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
|  | 1022 | if (fi->fib_nhs > 1) { | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1023 | struct rtnexthop *rtnh; | 
|  | 1024 | struct nlattr *mp; | 
|  | 1025 |  | 
|  | 1026 | mp = nla_nest_start(skb, RTA_MULTIPATH); | 
|  | 1027 | if (mp == NULL) | 
|  | 1028 | goto nla_put_failure; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 |  | 
|  | 1030 | for_nexthops(fi) { | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1031 | rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh)); | 
|  | 1032 | if (rtnh == NULL) | 
|  | 1033 | goto nla_put_failure; | 
|  | 1034 |  | 
|  | 1035 | rtnh->rtnh_flags = nh->nh_flags & 0xFF; | 
|  | 1036 | rtnh->rtnh_hops = nh->nh_weight - 1; | 
|  | 1037 | rtnh->rtnh_ifindex = nh->nh_oif; | 
|  | 1038 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | if (nh->nh_gw) | 
| Al Viro | 17fb2c6 | 2006-09-26 22:15:25 -0700 | [diff] [blame] | 1040 | NLA_PUT_BE32(skb, RTA_GATEWAY, nh->nh_gw); | 
| Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 1041 | #ifdef CONFIG_IP_ROUTE_CLASSID | 
| Patrick McHardy | 8265abc | 2006-07-21 15:09:55 -0700 | [diff] [blame] | 1042 | if (nh->nh_tclassid) | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1043 | NLA_PUT_U32(skb, RTA_FLOW, nh->nh_tclassid); | 
| Patrick McHardy | 8265abc | 2006-07-21 15:09:55 -0700 | [diff] [blame] | 1044 | #endif | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1045 | /* length of rtnetlink header + attributes */ | 
|  | 1046 | rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *) rtnh; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | } endfor_nexthops(fi); | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1048 |  | 
|  | 1049 | nla_nest_end(skb, mp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | } | 
|  | 1051 | #endif | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1052 | return nlmsg_end(skb, nlh); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 |  | 
| Thomas Graf | be403ea | 2006-08-17 18:15:17 -0700 | [diff] [blame] | 1054 | nla_put_failure: | 
| Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 1055 | nlmsg_cancel(skb, nlh); | 
|  | 1056 | return -EMSGSIZE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | } | 
|  | 1058 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | /* | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1060 | * Update FIB if: | 
|  | 1061 | * - local address disappeared -> we must delete all the entries | 
|  | 1062 | *   referring to it. | 
|  | 1063 | * - device went down -> we must shutdown all nexthops going via it. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | */ | 
| Denis V. Lunev | 4814bdb | 2008-01-31 18:50:07 -0800 | [diff] [blame] | 1065 | int fib_sync_down_addr(struct net *net, __be32 local) | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1066 | { | 
|  | 1067 | int ret = 0; | 
|  | 1068 | unsigned int hash = fib_laddr_hashfn(local); | 
|  | 1069 | struct hlist_head *head = &fib_info_laddrhash[hash]; | 
|  | 1070 | struct hlist_node *node; | 
|  | 1071 | struct fib_info *fi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 |  | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1073 | if (fib_info_laddrhash == NULL || local == 0) | 
|  | 1074 | return 0; | 
|  | 1075 |  | 
|  | 1076 | hlist_for_each_entry(fi, node, head, fib_lhash) { | 
| Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 1077 | if (!net_eq(fi->fib_net, net)) | 
| Denis V. Lunev | 4814bdb | 2008-01-31 18:50:07 -0800 | [diff] [blame] | 1078 | continue; | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1079 | if (fi->fib_prefsrc == local) { | 
|  | 1080 | fi->fib_flags |= RTNH_F_DEAD; | 
|  | 1081 | ret++; | 
|  | 1082 | } | 
|  | 1083 | } | 
|  | 1084 | return ret; | 
|  | 1085 | } | 
|  | 1086 |  | 
|  | 1087 | int fib_sync_down_dev(struct net_device *dev, int force) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | { | 
|  | 1089 | int ret = 0; | 
|  | 1090 | int scope = RT_SCOPE_NOWHERE; | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1091 | struct fib_info *prev_fi = NULL; | 
|  | 1092 | unsigned int hash = fib_devindex_hashfn(dev->ifindex); | 
|  | 1093 | struct hlist_head *head = &fib_info_devhash[hash]; | 
|  | 1094 | struct hlist_node *node; | 
|  | 1095 | struct fib_nh *nh; | 
| YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 1096 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | if (force) | 
|  | 1098 | scope = -1; | 
|  | 1099 |  | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1100 | hlist_for_each_entry(nh, node, head, nh_hash) { | 
|  | 1101 | struct fib_info *fi = nh->nh_parent; | 
|  | 1102 | int dead; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 |  | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1104 | BUG_ON(!fi->fib_nhs); | 
|  | 1105 | if (nh->nh_dev != dev || fi == prev_fi) | 
|  | 1106 | continue; | 
|  | 1107 | prev_fi = fi; | 
|  | 1108 | dead = 0; | 
|  | 1109 | change_nexthops(fi) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1110 | if (nexthop_nh->nh_flags & RTNH_F_DEAD) | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1111 | dead++; | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1112 | else if (nexthop_nh->nh_dev == dev && | 
|  | 1113 | nexthop_nh->nh_scope != scope) { | 
|  | 1114 | nexthop_nh->nh_flags |= RTNH_F_DEAD; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1116 | spin_lock_bh(&fib_multipath_lock); | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1117 | fi->fib_power -= nexthop_nh->nh_power; | 
|  | 1118 | nexthop_nh->nh_power = 0; | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1119 | spin_unlock_bh(&fib_multipath_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | #endif | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1121 | dead++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | } | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1123 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1124 | if (force > 1 && nexthop_nh->nh_dev == dev) { | 
| Denis V. Lunev | 85326fa | 2008-01-31 18:48:47 -0800 | [diff] [blame] | 1125 | dead = fi->fib_nhs; | 
|  | 1126 | break; | 
|  | 1127 | } | 
|  | 1128 | #endif | 
|  | 1129 | } endfor_nexthops(fi) | 
|  | 1130 | if (dead == fi->fib_nhs) { | 
|  | 1131 | fi->fib_flags |= RTNH_F_DEAD; | 
|  | 1132 | ret++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | } | 
|  | 1134 | } | 
|  | 1135 |  | 
|  | 1136 | return ret; | 
|  | 1137 | } | 
|  | 1138 |  | 
| David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1139 | /* Must be invoked inside of an RCU protected region.  */ | 
|  | 1140 | void fib_select_default(struct fib_result *res) | 
|  | 1141 | { | 
|  | 1142 | struct fib_info *fi = NULL, *last_resort = NULL; | 
|  | 1143 | struct list_head *fa_head = res->fa_head; | 
|  | 1144 | struct fib_table *tb = res->table; | 
|  | 1145 | int order = -1, last_idx = -1; | 
|  | 1146 | struct fib_alias *fa; | 
|  | 1147 |  | 
|  | 1148 | list_for_each_entry_rcu(fa, fa_head, fa_list) { | 
|  | 1149 | struct fib_info *next_fi = fa->fa_info; | 
|  | 1150 |  | 
|  | 1151 | if (fa->fa_scope != res->scope || | 
|  | 1152 | fa->fa_type != RTN_UNICAST) | 
|  | 1153 | continue; | 
|  | 1154 |  | 
|  | 1155 | if (next_fi->fib_priority > res->fi->fib_priority) | 
|  | 1156 | break; | 
|  | 1157 | if (!next_fi->fib_nh[0].nh_gw || | 
|  | 1158 | next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK) | 
|  | 1159 | continue; | 
|  | 1160 |  | 
|  | 1161 | fib_alias_accessed(fa); | 
|  | 1162 |  | 
|  | 1163 | if (fi == NULL) { | 
|  | 1164 | if (next_fi != res->fi) | 
|  | 1165 | break; | 
|  | 1166 | } else if (!fib_detect_death(fi, order, &last_resort, | 
|  | 1167 | &last_idx, tb->tb_default)) { | 
|  | 1168 | fib_result_assign(res, fi); | 
|  | 1169 | tb->tb_default = order; | 
|  | 1170 | goto out; | 
|  | 1171 | } | 
|  | 1172 | fi = next_fi; | 
|  | 1173 | order++; | 
|  | 1174 | } | 
|  | 1175 |  | 
|  | 1176 | if (order <= 0 || fi == NULL) { | 
|  | 1177 | tb->tb_default = -1; | 
|  | 1178 | goto out; | 
|  | 1179 | } | 
|  | 1180 |  | 
|  | 1181 | if (!fib_detect_death(fi, order, &last_resort, &last_idx, | 
|  | 1182 | tb->tb_default)) { | 
|  | 1183 | fib_result_assign(res, fi); | 
|  | 1184 | tb->tb_default = order; | 
|  | 1185 | goto out; | 
|  | 1186 | } | 
|  | 1187 |  | 
|  | 1188 | if (last_idx >= 0) | 
|  | 1189 | fib_result_assign(res, last_resort); | 
|  | 1190 | tb->tb_default = last_idx; | 
|  | 1191 | out: | 
| Eric Dumazet | 31d4093 | 2011-02-14 11:23:04 -0800 | [diff] [blame] | 1192 | return; | 
| David S. Miller | 0c838ff | 2011-01-31 16:16:50 -0800 | [diff] [blame] | 1193 | } | 
|  | 1194 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | 
|  | 1196 |  | 
|  | 1197 | /* | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1198 | * Dead device goes up. We wake up dead nexthops. | 
|  | 1199 | * It takes sense only on multipath routes. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | int fib_sync_up(struct net_device *dev) | 
|  | 1202 | { | 
|  | 1203 | struct fib_info *prev_fi; | 
|  | 1204 | unsigned int hash; | 
|  | 1205 | struct hlist_head *head; | 
|  | 1206 | struct hlist_node *node; | 
|  | 1207 | struct fib_nh *nh; | 
|  | 1208 | int ret; | 
|  | 1209 |  | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1210 | if (!(dev->flags & IFF_UP)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | return 0; | 
|  | 1212 |  | 
|  | 1213 | prev_fi = NULL; | 
|  | 1214 | hash = fib_devindex_hashfn(dev->ifindex); | 
|  | 1215 | head = &fib_info_devhash[hash]; | 
|  | 1216 | ret = 0; | 
|  | 1217 |  | 
|  | 1218 | hlist_for_each_entry(nh, node, head, nh_hash) { | 
|  | 1219 | struct fib_info *fi = nh->nh_parent; | 
|  | 1220 | int alive; | 
|  | 1221 |  | 
|  | 1222 | BUG_ON(!fi->fib_nhs); | 
|  | 1223 | if (nh->nh_dev != dev || fi == prev_fi) | 
|  | 1224 | continue; | 
|  | 1225 |  | 
|  | 1226 | prev_fi = fi; | 
|  | 1227 | alive = 0; | 
|  | 1228 | change_nexthops(fi) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1229 | if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | alive++; | 
|  | 1231 | continue; | 
|  | 1232 | } | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1233 | if (nexthop_nh->nh_dev == NULL || | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1234 | !(nexthop_nh->nh_dev->flags & IFF_UP)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | continue; | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1236 | if (nexthop_nh->nh_dev != dev || | 
|  | 1237 | !__in_dev_get_rtnl(dev)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | continue; | 
|  | 1239 | alive++; | 
|  | 1240 | spin_lock_bh(&fib_multipath_lock); | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1241 | nexthop_nh->nh_power = 0; | 
|  | 1242 | nexthop_nh->nh_flags &= ~RTNH_F_DEAD; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | spin_unlock_bh(&fib_multipath_lock); | 
|  | 1244 | } endfor_nexthops(fi) | 
|  | 1245 |  | 
|  | 1246 | if (alive > 0) { | 
|  | 1247 | fi->fib_flags &= ~RTNH_F_DEAD; | 
|  | 1248 | ret++; | 
|  | 1249 | } | 
|  | 1250 | } | 
|  | 1251 |  | 
|  | 1252 | return ret; | 
|  | 1253 | } | 
|  | 1254 |  | 
|  | 1255 | /* | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1256 | * The algorithm is suboptimal, but it provides really | 
|  | 1257 | * fair weighted route distribution. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | void fib_select_multipath(const struct flowi *flp, struct fib_result *res) | 
|  | 1260 | { | 
|  | 1261 | struct fib_info *fi = res->fi; | 
|  | 1262 | int w; | 
|  | 1263 |  | 
|  | 1264 | spin_lock_bh(&fib_multipath_lock); | 
|  | 1265 | if (fi->fib_power <= 0) { | 
|  | 1266 | int power = 0; | 
|  | 1267 | change_nexthops(fi) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1268 | if (!(nexthop_nh->nh_flags & RTNH_F_DEAD)) { | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1269 | power += nexthop_nh->nh_weight; | 
|  | 1270 | nexthop_nh->nh_power = nexthop_nh->nh_weight; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | } | 
|  | 1272 | } endfor_nexthops(fi); | 
|  | 1273 | fi->fib_power = power; | 
|  | 1274 | if (power <= 0) { | 
|  | 1275 | spin_unlock_bh(&fib_multipath_lock); | 
|  | 1276 | /* Race condition: route has just become dead. */ | 
|  | 1277 | res->nh_sel = 0; | 
|  | 1278 | return; | 
|  | 1279 | } | 
|  | 1280 | } | 
|  | 1281 |  | 
|  | 1282 |  | 
|  | 1283 | /* w should be random number [0..fi->fib_power-1], | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1284 | * it is pretty bad approximation. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | */ | 
|  | 1286 |  | 
|  | 1287 | w = jiffies % fi->fib_power; | 
|  | 1288 |  | 
|  | 1289 | change_nexthops(fi) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1290 | if (!(nexthop_nh->nh_flags & RTNH_F_DEAD) && | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1291 | nexthop_nh->nh_power) { | 
| Eric Dumazet | 6a31d2a | 2010-10-04 20:00:18 +0000 | [diff] [blame] | 1292 | w -= nexthop_nh->nh_power; | 
|  | 1293 | if (w <= 0) { | 
| David S. Miller | 71fceff | 2010-01-15 01:16:40 -0800 | [diff] [blame] | 1294 | nexthop_nh->nh_power--; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | fi->fib_power--; | 
|  | 1296 | res->nh_sel = nhsel; | 
|  | 1297 | spin_unlock_bh(&fib_multipath_lock); | 
|  | 1298 | return; | 
|  | 1299 | } | 
|  | 1300 | } | 
|  | 1301 | } endfor_nexthops(fi); | 
|  | 1302 |  | 
|  | 1303 | /* Race condition: route has just become dead. */ | 
|  | 1304 | res->nh_sel = 0; | 
|  | 1305 | spin_unlock_bh(&fib_multipath_lock); | 
|  | 1306 | } | 
|  | 1307 | #endif |