Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * DECnet An implementation of the DECnet protocol suite for the LINUX |
| 3 | * operating system. DECnet is implemented using the BSD Socket |
| 4 | * interface as the means of communication with the user level. |
| 5 | * |
| 6 | * DECnet Routing Functions (Endnode and Router) |
| 7 | * |
| 8 | * Authors: Steve Whitehouse <SteveW@ACM.org> |
| 9 | * Eduardo Marcelo Serrat <emserrat@geocities.com> |
| 10 | * |
| 11 | * Changes: |
| 12 | * Steve Whitehouse : Fixes to allow "intra-ethernet" and |
| 13 | * "return-to-sender" bits on outgoing |
| 14 | * packets. |
| 15 | * Steve Whitehouse : Timeouts for cached routes. |
| 16 | * Steve Whitehouse : Use dst cache for input routes too. |
| 17 | * Steve Whitehouse : Fixed error values in dn_send_skb. |
| 18 | * Steve Whitehouse : Rework routing functions to better fit |
| 19 | * DECnet routing design |
| 20 | * Alexey Kuznetsov : New SMP locking |
| 21 | * Steve Whitehouse : More SMP locking changes & dn_cache_dump() |
| 22 | * Steve Whitehouse : Prerouting NF hook, now really is prerouting. |
| 23 | * Fixed possible skb leak in rtnetlink funcs. |
| 24 | * Steve Whitehouse : Dave Miller's dynamic hash table sizing and |
| 25 | * Alexey Kuznetsov's finer grained locking |
| 26 | * from ipv4/route.c. |
| 27 | * Steve Whitehouse : Routing is now starting to look like a |
| 28 | * sensible set of code now, mainly due to |
| 29 | * my copying the IPv4 routing code. The |
| 30 | * hooks here are modified and will continue |
| 31 | * to evolve for a while. |
| 32 | * Steve Whitehouse : Real SMP at last :-) Also new netfilter |
| 33 | * stuff. Look out raw sockets your days |
| 34 | * are numbered! |
| 35 | * Steve Whitehouse : Added return-to-sender functions. Added |
| 36 | * backlog congestion level return codes. |
| 37 | * Steve Whitehouse : Fixed bug where routes were set up with |
| 38 | * no ref count on net devices. |
| 39 | * Steve Whitehouse : RCU for the route cache |
| 40 | * Steve Whitehouse : Preparations for the flow cache |
| 41 | * Steve Whitehouse : Prepare for nonlinear skbs |
| 42 | */ |
| 43 | |
| 44 | /****************************************************************************** |
| 45 | (c) 1995-1998 E.M. Serrat emserrat@geocities.com |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | This program is free software; you can redistribute it and/or modify |
| 48 | it under the terms of the GNU General Public License as published by |
| 49 | the Free Software Foundation; either version 2 of the License, or |
| 50 | any later version. |
| 51 | |
| 52 | This program is distributed in the hope that it will be useful, |
| 53 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 54 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 55 | GNU General Public License for more details. |
| 56 | *******************************************************************************/ |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <linux/errno.h> |
| 59 | #include <linux/types.h> |
| 60 | #include <linux/socket.h> |
| 61 | #include <linux/in.h> |
| 62 | #include <linux/kernel.h> |
| 63 | #include <linux/sockios.h> |
| 64 | #include <linux/net.h> |
| 65 | #include <linux/netdevice.h> |
| 66 | #include <linux/inet.h> |
| 67 | #include <linux/route.h> |
| 68 | #include <linux/in_route.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 69 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #include <net/sock.h> |
| 71 | #include <linux/mm.h> |
| 72 | #include <linux/proc_fs.h> |
| 73 | #include <linux/seq_file.h> |
| 74 | #include <linux/init.h> |
| 75 | #include <linux/rtnetlink.h> |
| 76 | #include <linux/string.h> |
| 77 | #include <linux/netfilter_decnet.h> |
| 78 | #include <linux/rcupdate.h> |
| 79 | #include <linux/times.h> |
| 80 | #include <asm/errno.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 81 | #include <net/net_namespace.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 82 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | #include <net/neighbour.h> |
| 84 | #include <net/dst.h> |
| 85 | #include <net/flow.h> |
Steven Whitehouse | a8731cb | 2006-08-09 15:56:46 -0700 | [diff] [blame] | 86 | #include <net/fib_rules.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | #include <net/dn.h> |
| 88 | #include <net/dn_dev.h> |
| 89 | #include <net/dn_nsp.h> |
| 90 | #include <net/dn_route.h> |
| 91 | #include <net/dn_neigh.h> |
| 92 | #include <net/dn_fib.h> |
| 93 | |
| 94 | struct dn_rt_hash_bucket |
| 95 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 96 | struct dn_route __rcu *chain; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | spinlock_t lock; |
Eric Dumazet | fca09fb | 2008-02-07 23:29:57 -0800 | [diff] [blame] | 98 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | extern struct neigh_table dn_neigh_table; |
| 101 | |
| 102 | |
| 103 | static unsigned char dn_hiord_addr[6] = {0xAA,0x00,0x04,0x00,0x00,0x00}; |
| 104 | |
| 105 | static const int dn_rt_min_delay = 2 * HZ; |
| 106 | static const int dn_rt_max_delay = 10 * HZ; |
| 107 | static const int dn_rt_mtu_expires = 10 * 60 * HZ; |
| 108 | |
| 109 | static unsigned long dn_rt_deadline; |
| 110 | |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 111 | static int dn_dst_gc(struct dst_ops *ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | static struct dst_entry *dn_dst_check(struct dst_entry *, __u32); |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 113 | static unsigned int dn_dst_default_advmss(const struct dst_entry *dst); |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 114 | static unsigned int dn_dst_default_mtu(const struct dst_entry *dst); |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 115 | static void dn_dst_destroy(struct dst_entry *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | static struct dst_entry *dn_dst_negative_advice(struct dst_entry *); |
| 117 | static void dn_dst_link_failure(struct sk_buff *); |
| 118 | static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu); |
| 119 | static int dn_route_input(struct sk_buff *); |
| 120 | static void dn_run_flush(unsigned long dummy); |
| 121 | |
| 122 | static struct dn_rt_hash_bucket *dn_rt_hash_table; |
| 123 | static unsigned dn_rt_hash_mask; |
| 124 | |
| 125 | static struct timer_list dn_route_timer; |
Ingo Molnar | 8d06afa | 2005-09-09 13:10:40 -0700 | [diff] [blame] | 126 | static DEFINE_TIMER(dn_rt_flush_timer, dn_run_flush, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | int decnet_dst_gc_interval = 2; |
| 128 | |
| 129 | static struct dst_ops dn_dst_ops = { |
| 130 | .family = PF_DECnet, |
Harvey Harrison | 09640e6 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 131 | .protocol = cpu_to_be16(ETH_P_DNA_RT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | .gc_thresh = 128, |
| 133 | .gc = dn_dst_gc, |
| 134 | .check = dn_dst_check, |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 135 | .default_advmss = dn_dst_default_advmss, |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 136 | .default_mtu = dn_dst_default_mtu, |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 137 | .cow_metrics = dst_cow_metrics_generic, |
| 138 | .destroy = dn_dst_destroy, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | .negative_advice = dn_dst_negative_advice, |
| 140 | .link_failure = dn_dst_link_failure, |
| 141 | .update_pmtu = dn_dst_update_pmtu, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | }; |
| 143 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 144 | static void dn_dst_destroy(struct dst_entry *dst) |
| 145 | { |
| 146 | dst_destroy_metrics_generic(dst); |
| 147 | } |
| 148 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 149 | static __inline__ unsigned dn_hash(__le16 src, __le16 dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 151 | __u16 tmp = (__u16 __force)(src ^ dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | tmp ^= (tmp >> 3); |
| 153 | tmp ^= (tmp >> 5); |
| 154 | tmp ^= (tmp >> 10); |
| 155 | return dn_rt_hash_mask & (unsigned)tmp; |
| 156 | } |
| 157 | |
| 158 | static inline void dnrt_free(struct dn_route *rt) |
| 159 | { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 160 | call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | static inline void dnrt_drop(struct dn_route *rt) |
| 164 | { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 165 | dst_release(&rt->dst); |
| 166 | call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | static void dn_dst_check_expire(unsigned long dummy) |
| 170 | { |
| 171 | int i; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 172 | struct dn_route *rt; |
| 173 | struct dn_route __rcu **rtp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | unsigned long now = jiffies; |
| 175 | unsigned long expire = 120 * HZ; |
| 176 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 177 | for (i = 0; i <= dn_rt_hash_mask; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | rtp = &dn_rt_hash_table[i].chain; |
| 179 | |
| 180 | spin_lock(&dn_rt_hash_table[i].lock); |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 181 | while ((rt = rcu_dereference_protected(*rtp, |
| 182 | lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 183 | if (atomic_read(&rt->dst.__refcnt) || |
| 184 | (now - rt->dst.lastuse) < expire) { |
| 185 | rtp = &rt->dst.dn_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | continue; |
| 187 | } |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 188 | *rtp = rt->dst.dn_next; |
| 189 | rt->dst.dn_next = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | dnrt_free(rt); |
| 191 | } |
| 192 | spin_unlock(&dn_rt_hash_table[i].lock); |
| 193 | |
| 194 | if ((jiffies - now) > 0) |
| 195 | break; |
| 196 | } |
| 197 | |
| 198 | mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ); |
| 199 | } |
| 200 | |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 201 | static int dn_dst_gc(struct dst_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 203 | struct dn_route *rt; |
| 204 | struct dn_route __rcu **rtp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | int i; |
| 206 | unsigned long now = jiffies; |
| 207 | unsigned long expire = 10 * HZ; |
| 208 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 209 | for (i = 0; i <= dn_rt_hash_mask; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | spin_lock_bh(&dn_rt_hash_table[i].lock); |
| 212 | rtp = &dn_rt_hash_table[i].chain; |
| 213 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 214 | while ((rt = rcu_dereference_protected(*rtp, |
| 215 | lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 216 | if (atomic_read(&rt->dst.__refcnt) || |
| 217 | (now - rt->dst.lastuse) < expire) { |
| 218 | rtp = &rt->dst.dn_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | continue; |
| 220 | } |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 221 | *rtp = rt->dst.dn_next; |
| 222 | rt->dst.dn_next = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | dnrt_drop(rt); |
| 224 | break; |
| 225 | } |
| 226 | spin_unlock_bh(&dn_rt_hash_table[i].lock); |
| 227 | } |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * The decnet standards don't impose a particular minimum mtu, what they |
| 234 | * do insist on is that the routing layer accepts a datagram of at least |
| 235 | * 230 bytes long. Here we have to subtract the routing header length from |
| 236 | * 230 to get the minimum acceptable mtu. If there is no neighbour, then we |
| 237 | * assume the worst and use a long header size. |
| 238 | * |
| 239 | * We update both the mtu and the advertised mss (i.e. the segment size we |
| 240 | * advertise to the other end). |
| 241 | */ |
| 242 | static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu) |
| 243 | { |
| 244 | u32 min_mtu = 230; |
| 245 | struct dn_dev *dn = dst->neighbour ? |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 246 | rcu_dereference_raw(dst->neighbour->dev->dn_ptr) : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
| 248 | if (dn && dn->use_long == 0) |
| 249 | min_mtu -= 6; |
| 250 | else |
| 251 | min_mtu -= 21; |
| 252 | |
Satoru SATOH | 5ffc02a | 2008-05-04 22:14:42 -0700 | [diff] [blame] | 253 | if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | if (!(dst_metric_locked(dst, RTAX_MTU))) { |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 255 | dst_metric_set(dst, RTAX_MTU, mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | dst_set_expires(dst, dn_rt_mtu_expires); |
| 257 | } |
| 258 | if (!(dst_metric_locked(dst, RTAX_ADVMSS))) { |
| 259 | u32 mss = mtu - DN_MAX_NSP_DATA_HEADER; |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 260 | u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS); |
| 261 | if (!existing_mss || existing_mss > mss) |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 262 | dst_metric_set(dst, RTAX_ADVMSS, mss); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | } |
| 265 | } |
| 266 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 267 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | * When a route has been marked obsolete. (e.g. routing cache flush) |
| 269 | */ |
| 270 | static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie) |
| 271 | { |
| 272 | return NULL; |
| 273 | } |
| 274 | |
| 275 | static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst) |
| 276 | { |
| 277 | dst_release(dst); |
| 278 | return NULL; |
| 279 | } |
| 280 | |
| 281 | static void dn_dst_link_failure(struct sk_buff *skb) |
| 282 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | static inline int compare_keys(struct flowi *fl1, struct flowi *fl2) |
| 286 | { |
Changli Gao | 5811662 | 2010-11-12 18:43:55 +0000 | [diff] [blame] | 287 | return ((fl1->fld_dst ^ fl2->fld_dst) | |
| 288 | (fl1->fld_src ^ fl2->fld_src) | |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 289 | (fl1->flowi_mark ^ fl2->flowi_mark) | |
Changli Gao | 5811662 | 2010-11-12 18:43:55 +0000 | [diff] [blame] | 290 | (fl1->fld_scope ^ fl2->fld_scope) | |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 291 | (fl1->flowi_oif ^ fl2->flowi_oif) | |
| 292 | (fl1->flowi_iif ^ fl2->flowi_iif)) == 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | static int dn_insert_route(struct dn_route *rt, unsigned hash, struct dn_route **rp) |
| 296 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 297 | struct dn_route *rth; |
| 298 | struct dn_route __rcu **rthp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | unsigned long now = jiffies; |
| 300 | |
| 301 | rthp = &dn_rt_hash_table[hash].chain; |
| 302 | |
| 303 | spin_lock_bh(&dn_rt_hash_table[hash].lock); |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 304 | while ((rth = rcu_dereference_protected(*rthp, |
| 305 | lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (compare_keys(&rth->fl, &rt->fl)) { |
| 307 | /* Put it first */ |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 308 | *rthp = rth->dst.dn_next; |
| 309 | rcu_assign_pointer(rth->dst.dn_next, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | dn_rt_hash_table[hash].chain); |
| 311 | rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth); |
| 312 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 313 | dst_use(&rth->dst, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | spin_unlock_bh(&dn_rt_hash_table[hash].lock); |
| 315 | |
| 316 | dnrt_drop(rt); |
| 317 | *rp = rth; |
| 318 | return 0; |
| 319 | } |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 320 | rthp = &rth->dst.dn_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 323 | rcu_assign_pointer(rt->dst.dn_next, dn_rt_hash_table[hash].chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 325 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 326 | dst_use(&rt->dst, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | spin_unlock_bh(&dn_rt_hash_table[hash].lock); |
| 328 | *rp = rt; |
| 329 | return 0; |
| 330 | } |
| 331 | |
Roel Kluin | 5eaa65b | 2008-12-10 15:18:31 -0800 | [diff] [blame] | 332 | static void dn_run_flush(unsigned long dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
| 334 | int i; |
| 335 | struct dn_route *rt, *next; |
| 336 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 337 | for (i = 0; i < dn_rt_hash_mask; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | spin_lock_bh(&dn_rt_hash_table[i].lock); |
| 339 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 340 | if ((rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL)) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | goto nothing_to_declare; |
| 342 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 343 | for(; rt; rt = next) { |
| 344 | next = rcu_dereference_raw(rt->dst.dn_next); |
| 345 | RCU_INIT_POINTER(rt->dst.dn_next, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | dst_free((struct dst_entry *)rt); |
| 347 | } |
| 348 | |
| 349 | nothing_to_declare: |
| 350 | spin_unlock_bh(&dn_rt_hash_table[i].lock); |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | static DEFINE_SPINLOCK(dn_rt_flush_lock); |
| 355 | |
| 356 | void dn_rt_cache_flush(int delay) |
| 357 | { |
| 358 | unsigned long now = jiffies; |
| 359 | int user_mode = !in_interrupt(); |
| 360 | |
| 361 | if (delay < 0) |
| 362 | delay = dn_rt_min_delay; |
| 363 | |
| 364 | spin_lock_bh(&dn_rt_flush_lock); |
| 365 | |
| 366 | if (del_timer(&dn_rt_flush_timer) && delay > 0 && dn_rt_deadline) { |
| 367 | long tmo = (long)(dn_rt_deadline - now); |
| 368 | |
| 369 | if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay) |
| 370 | tmo = 0; |
| 371 | |
| 372 | if (delay > tmo) |
| 373 | delay = tmo; |
| 374 | } |
| 375 | |
| 376 | if (delay <= 0) { |
| 377 | spin_unlock_bh(&dn_rt_flush_lock); |
| 378 | dn_run_flush(0); |
| 379 | return; |
| 380 | } |
| 381 | |
| 382 | if (dn_rt_deadline == 0) |
| 383 | dn_rt_deadline = now + dn_rt_max_delay; |
| 384 | |
| 385 | dn_rt_flush_timer.expires = now + delay; |
| 386 | add_timer(&dn_rt_flush_timer); |
| 387 | spin_unlock_bh(&dn_rt_flush_lock); |
| 388 | } |
| 389 | |
| 390 | /** |
| 391 | * dn_return_short - Return a short packet to its sender |
| 392 | * @skb: The packet to return |
| 393 | * |
| 394 | */ |
| 395 | static int dn_return_short(struct sk_buff *skb) |
| 396 | { |
| 397 | struct dn_skb_cb *cb; |
| 398 | unsigned char *ptr; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 399 | __le16 *src; |
| 400 | __le16 *dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
| 402 | /* Add back headers */ |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 403 | skb_push(skb, skb->data - skb_network_header(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL) |
| 406 | return NET_RX_DROP; |
| 407 | |
| 408 | cb = DN_SKB_CB(skb); |
| 409 | /* Skip packet length and point to flags */ |
| 410 | ptr = skb->data + 2; |
| 411 | *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS; |
| 412 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 413 | dst = (__le16 *)ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | ptr += 2; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 415 | src = (__le16 *)ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | ptr += 2; |
| 417 | *ptr = 0; /* Zero hop count */ |
| 418 | |
Ilpo Järvinen | a0bffff | 2009-03-21 13:36:17 -0700 | [diff] [blame] | 419 | swap(*src, *dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
| 421 | skb->pkt_type = PACKET_OUTGOING; |
| 422 | dn_rt_finish_output(skb, NULL, NULL); |
| 423 | return NET_RX_SUCCESS; |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * dn_return_long - Return a long packet to its sender |
| 428 | * @skb: The long format packet to return |
| 429 | * |
| 430 | */ |
| 431 | static int dn_return_long(struct sk_buff *skb) |
| 432 | { |
| 433 | struct dn_skb_cb *cb; |
| 434 | unsigned char *ptr; |
| 435 | unsigned char *src_addr, *dst_addr; |
| 436 | unsigned char tmp[ETH_ALEN]; |
| 437 | |
| 438 | /* Add back all headers */ |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 439 | skb_push(skb, skb->data - skb_network_header(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL) |
| 442 | return NET_RX_DROP; |
| 443 | |
| 444 | cb = DN_SKB_CB(skb); |
| 445 | /* Ignore packet length and point to flags */ |
| 446 | ptr = skb->data + 2; |
| 447 | |
| 448 | /* Skip padding */ |
| 449 | if (*ptr & DN_RT_F_PF) { |
| 450 | char padlen = (*ptr & ~DN_RT_F_PF); |
| 451 | ptr += padlen; |
| 452 | } |
| 453 | |
| 454 | *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS; |
| 455 | ptr += 2; |
| 456 | dst_addr = ptr; |
| 457 | ptr += 8; |
| 458 | src_addr = ptr; |
| 459 | ptr += 6; |
| 460 | *ptr = 0; /* Zero hop count */ |
| 461 | |
| 462 | /* Swap source and destination */ |
| 463 | memcpy(tmp, src_addr, ETH_ALEN); |
| 464 | memcpy(src_addr, dst_addr, ETH_ALEN); |
| 465 | memcpy(dst_addr, tmp, ETH_ALEN); |
| 466 | |
| 467 | skb->pkt_type = PACKET_OUTGOING; |
| 468 | dn_rt_finish_output(skb, dst_addr, src_addr); |
| 469 | return NET_RX_SUCCESS; |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * dn_route_rx_packet - Try and find a route for an incoming packet |
| 474 | * @skb: The packet to find a route for |
| 475 | * |
| 476 | * Returns: result of input function if route is found, error code otherwise |
| 477 | */ |
| 478 | static int dn_route_rx_packet(struct sk_buff *skb) |
| 479 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 480 | struct dn_skb_cb *cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | int err; |
| 482 | |
| 483 | if ((err = dn_route_input(skb)) == 0) |
| 484 | return dst_input(skb); |
| 485 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 486 | cb = DN_SKB_CB(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | if (decnet_debug_level & 4) { |
| 488 | char *devname = skb->dev ? skb->dev->name : "???"; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 489 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | printk(KERN_DEBUG |
| 491 | "DECnet: dn_route_rx_packet: rt_flags=0x%02x dev=%s len=%d src=0x%04hx dst=0x%04hx err=%d type=%d\n", |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 492 | (int)cb->rt_flags, devname, skb->len, |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 493 | le16_to_cpu(cb->src), le16_to_cpu(cb->dst), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | err, skb->pkt_type); |
| 495 | } |
| 496 | |
| 497 | if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) { |
| 498 | switch(cb->rt_flags & DN_RT_PKT_MSK) { |
| 499 | case DN_RT_PKT_SHORT: |
| 500 | return dn_return_short(skb); |
| 501 | case DN_RT_PKT_LONG: |
| 502 | return dn_return_long(skb); |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | kfree_skb(skb); |
| 507 | return NET_RX_DROP; |
| 508 | } |
| 509 | |
| 510 | static int dn_route_rx_long(struct sk_buff *skb) |
| 511 | { |
| 512 | struct dn_skb_cb *cb = DN_SKB_CB(skb); |
| 513 | unsigned char *ptr = skb->data; |
| 514 | |
| 515 | if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */ |
| 516 | goto drop_it; |
| 517 | |
| 518 | skb_pull(skb, 20); |
Arnaldo Carvalho de Melo | badff6d | 2007-03-13 13:06:52 -0300 | [diff] [blame] | 519 | skb_reset_transport_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 521 | /* Destination info */ |
| 522 | ptr += 2; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 523 | cb->dst = dn_eth2dn(ptr); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 524 | if (memcmp(ptr, dn_hiord_addr, 4) != 0) |
| 525 | goto drop_it; |
| 526 | ptr += 6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
| 528 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 529 | /* Source info */ |
| 530 | ptr += 2; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 531 | cb->src = dn_eth2dn(ptr); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 532 | if (memcmp(ptr, dn_hiord_addr, 4) != 0) |
| 533 | goto drop_it; |
| 534 | ptr += 6; |
| 535 | /* Other junk */ |
| 536 | ptr++; |
| 537 | cb->hops = *ptr++; /* Visit Count */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 539 | return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL, |
| 540 | dn_route_rx_packet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
| 542 | drop_it: |
| 543 | kfree_skb(skb); |
| 544 | return NET_RX_DROP; |
| 545 | } |
| 546 | |
| 547 | |
| 548 | |
| 549 | static int dn_route_rx_short(struct sk_buff *skb) |
| 550 | { |
| 551 | struct dn_skb_cb *cb = DN_SKB_CB(skb); |
| 552 | unsigned char *ptr = skb->data; |
| 553 | |
| 554 | if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */ |
| 555 | goto drop_it; |
| 556 | |
| 557 | skb_pull(skb, 5); |
Arnaldo Carvalho de Melo | badff6d | 2007-03-13 13:06:52 -0300 | [diff] [blame] | 558 | skb_reset_transport_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 560 | cb->dst = *(__le16 *)ptr; |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 561 | ptr += 2; |
| 562 | cb->src = *(__le16 *)ptr; |
| 563 | ptr += 2; |
| 564 | cb->hops = *ptr & 0x3f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 566 | return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL, |
| 567 | dn_route_rx_packet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
| 569 | drop_it: |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 570 | kfree_skb(skb); |
| 571 | return NET_RX_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | static int dn_route_discard(struct sk_buff *skb) |
| 575 | { |
| 576 | /* |
| 577 | * I know we drop the packet here, but thats considered success in |
| 578 | * this case |
| 579 | */ |
| 580 | kfree_skb(skb); |
| 581 | return NET_RX_SUCCESS; |
| 582 | } |
| 583 | |
| 584 | static int dn_route_ptp_hello(struct sk_buff *skb) |
| 585 | { |
| 586 | dn_dev_hello(skb); |
| 587 | dn_neigh_pointopoint_hello(skb); |
| 588 | return NET_RX_SUCCESS; |
| 589 | } |
| 590 | |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 591 | int dn_route_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { |
| 593 | struct dn_skb_cb *cb; |
| 594 | unsigned char flags = 0; |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 595 | __u16 len = le16_to_cpu(*(__le16 *)skb->data); |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 596 | struct dn_dev *dn = rcu_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | unsigned char padlen = 0; |
| 598 | |
YOSHIFUJI Hideaki | 721499e | 2008-07-19 22:34:43 -0700 | [diff] [blame] | 599 | if (!net_eq(dev_net(dev), &init_net)) |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 600 | goto dump_it; |
| 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | if (dn == NULL) |
| 603 | goto dump_it; |
| 604 | |
| 605 | if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) |
| 606 | goto out; |
| 607 | |
| 608 | if (!pskb_may_pull(skb, 3)) |
| 609 | goto dump_it; |
| 610 | |
| 611 | skb_pull(skb, 2); |
| 612 | |
| 613 | if (len > skb->len) |
| 614 | goto dump_it; |
| 615 | |
| 616 | skb_trim(skb, len); |
| 617 | |
| 618 | flags = *skb->data; |
| 619 | |
| 620 | cb = DN_SKB_CB(skb); |
| 621 | cb->stamp = jiffies; |
| 622 | cb->iif = dev->ifindex; |
| 623 | |
| 624 | /* |
| 625 | * If we have padding, remove it. |
| 626 | */ |
| 627 | if (flags & DN_RT_F_PF) { |
| 628 | padlen = flags & ~DN_RT_F_PF; |
| 629 | if (!pskb_may_pull(skb, padlen + 1)) |
| 630 | goto dump_it; |
| 631 | skb_pull(skb, padlen); |
| 632 | flags = *skb->data; |
| 633 | } |
| 634 | |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 635 | skb_reset_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
| 637 | /* |
| 638 | * Weed out future version DECnet |
| 639 | */ |
| 640 | if (flags & DN_RT_F_VER) |
| 641 | goto dump_it; |
| 642 | |
| 643 | cb->rt_flags = flags; |
| 644 | |
| 645 | if (decnet_debug_level & 1) |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 646 | printk(KERN_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n", |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 648 | (int)flags, (dev) ? dev->name : "???", len, skb->len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | padlen); |
| 650 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 651 | if (flags & DN_RT_PKT_CNTL) { |
Herbert Xu | 364c6ba | 2006-06-09 16:10:40 -0700 | [diff] [blame] | 652 | if (unlikely(skb_linearize(skb))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | goto dump_it; |
| 654 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 655 | switch(flags & DN_RT_CNTL_MSK) { |
| 656 | case DN_RT_PKT_INIT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | dn_dev_init_pkt(skb); |
| 658 | break; |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 659 | case DN_RT_PKT_VERI: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | dn_dev_veri_pkt(skb); |
| 661 | break; |
| 662 | } |
| 663 | |
| 664 | if (dn->parms.state != DN_DEV_S_RU) |
| 665 | goto dump_it; |
| 666 | |
| 667 | switch(flags & DN_RT_CNTL_MSK) { |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 668 | case DN_RT_PKT_HELO: |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 669 | return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO, |
| 670 | skb, skb->dev, NULL, |
| 671 | dn_route_ptp_hello); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 673 | case DN_RT_PKT_L1RT: |
| 674 | case DN_RT_PKT_L2RT: |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 675 | return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE, |
| 676 | skb, skb->dev, NULL, |
| 677 | dn_route_discard); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 678 | case DN_RT_PKT_ERTH: |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 679 | return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO, |
| 680 | skb, skb->dev, NULL, |
| 681 | dn_neigh_router_hello); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 683 | case DN_RT_PKT_EEDH: |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 684 | return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO, |
| 685 | skb, skb->dev, NULL, |
| 686 | dn_neigh_endnode_hello); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 687 | } |
| 688 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | if (dn->parms.state != DN_DEV_S_RU) |
| 690 | goto dump_it; |
| 691 | |
| 692 | skb_pull(skb, 1); /* Pull flags */ |
| 693 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 694 | switch(flags & DN_RT_PKT_MSK) { |
| 695 | case DN_RT_PKT_LONG: |
| 696 | return dn_route_rx_long(skb); |
| 697 | case DN_RT_PKT_SHORT: |
| 698 | return dn_route_rx_short(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | } |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 700 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
| 702 | dump_it: |
| 703 | kfree_skb(skb); |
| 704 | out: |
| 705 | return NET_RX_DROP; |
| 706 | } |
| 707 | |
| 708 | static int dn_output(struct sk_buff *skb) |
| 709 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 710 | struct dst_entry *dst = skb_dst(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | struct dn_route *rt = (struct dn_route *)dst; |
| 712 | struct net_device *dev = dst->dev; |
| 713 | struct dn_skb_cb *cb = DN_SKB_CB(skb); |
| 714 | struct neighbour *neigh; |
| 715 | |
| 716 | int err = -EINVAL; |
| 717 | |
| 718 | if ((neigh = dst->neighbour) == NULL) |
| 719 | goto error; |
| 720 | |
| 721 | skb->dev = dev; |
| 722 | |
| 723 | cb->src = rt->rt_saddr; |
| 724 | cb->dst = rt->rt_daddr; |
| 725 | |
| 726 | /* |
| 727 | * Always set the Intra-Ethernet bit on all outgoing packets |
| 728 | * originated on this node. Only valid flag from upper layers |
| 729 | * is return-to-sender-requested. Set hop count to 0 too. |
| 730 | */ |
| 731 | cb->rt_flags &= ~DN_RT_F_RQR; |
| 732 | cb->rt_flags |= DN_RT_F_IE; |
| 733 | cb->hops = 0; |
| 734 | |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 735 | return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT, skb, NULL, dev, |
| 736 | neigh->output); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
| 738 | error: |
| 739 | if (net_ratelimit()) |
| 740 | printk(KERN_DEBUG "dn_output: This should not happen\n"); |
| 741 | |
| 742 | kfree_skb(skb); |
| 743 | |
| 744 | return err; |
| 745 | } |
| 746 | |
| 747 | static int dn_forward(struct sk_buff *skb) |
| 748 | { |
| 749 | struct dn_skb_cb *cb = DN_SKB_CB(skb); |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 750 | struct dst_entry *dst = skb_dst(skb); |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 751 | struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | struct dn_route *rt; |
| 753 | struct neighbour *neigh = dst->neighbour; |
| 754 | int header_len; |
| 755 | #ifdef CONFIG_NETFILTER |
| 756 | struct net_device *dev = skb->dev; |
| 757 | #endif |
| 758 | |
| 759 | if (skb->pkt_type != PACKET_HOST) |
| 760 | goto drop; |
| 761 | |
| 762 | /* Ensure that we have enough space for headers */ |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 763 | rt = (struct dn_route *)skb_dst(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | header_len = dn_db->use_long ? 21 : 6; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 765 | if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | goto drop; |
| 767 | |
| 768 | /* |
| 769 | * Hop count exceeded. |
| 770 | */ |
| 771 | if (++cb->hops > 30) |
| 772 | goto drop; |
| 773 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 774 | skb->dev = rt->dst.dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
| 776 | /* |
| 777 | * If packet goes out same interface it came in on, then set |
| 778 | * the Intra-Ethernet bit. This has no effect for short |
| 779 | * packets, so we don't need to test for them here. |
| 780 | */ |
| 781 | cb->rt_flags &= ~DN_RT_F_IE; |
| 782 | if (rt->rt_flags & RTCF_DOREDIRECT) |
| 783 | cb->rt_flags |= DN_RT_F_IE; |
| 784 | |
Jan Engelhardt | 5d877d8 | 2010-03-23 04:09:14 +0100 | [diff] [blame] | 785 | return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD, skb, dev, skb->dev, |
| 786 | neigh->output); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | |
| 788 | drop: |
| 789 | kfree_skb(skb); |
| 790 | return NET_RX_DROP; |
| 791 | } |
| 792 | |
| 793 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | * Used to catch bugs. This should never normally get |
| 795 | * called. |
| 796 | */ |
| 797 | static int dn_rt_bug(struct sk_buff *skb) |
| 798 | { |
| 799 | if (net_ratelimit()) { |
| 800 | struct dn_skb_cb *cb = DN_SKB_CB(skb); |
| 801 | |
| 802 | printk(KERN_DEBUG "dn_rt_bug: skb from:%04x to:%04x\n", |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 803 | le16_to_cpu(cb->src), le16_to_cpu(cb->dst)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | kfree_skb(skb); |
| 807 | |
Florian Westphal | 0e8635a | 2009-06-20 00:53:25 +0000 | [diff] [blame] | 808 | return NET_RX_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 811 | static unsigned int dn_dst_default_advmss(const struct dst_entry *dst) |
| 812 | { |
| 813 | return dn_mss_from_pmtu(dst->dev, dst_mtu(dst)); |
| 814 | } |
| 815 | |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 816 | static unsigned int dn_dst_default_mtu(const struct dst_entry *dst) |
| 817 | { |
| 818 | return dst->dev->mtu; |
| 819 | } |
| 820 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res) |
| 822 | { |
| 823 | struct dn_fib_info *fi = res->fi; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 824 | struct net_device *dev = rt->dst.dev; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 825 | unsigned int mss_metric; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | struct neighbour *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | |
| 828 | if (fi) { |
| 829 | if (DN_FIB_RES_GW(*res) && |
| 830 | DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK) |
| 831 | rt->rt_gateway = DN_FIB_RES_GW(*res); |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 832 | dst_init_metrics(&rt->dst, fi->fib_metrics, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | rt->rt_type = res->type; |
| 835 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 836 | if (dev != NULL && rt->dst.neighbour == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev); |
| 838 | if (IS_ERR(n)) |
| 839 | return PTR_ERR(n); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 840 | rt->dst.neighbour = n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | } |
| 842 | |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 843 | if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu) |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 844 | dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu); |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 845 | mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS); |
| 846 | if (mss_metric) { |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 847 | unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst)); |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 848 | if (mss_metric > mss) |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 849 | dst_metric_set(&rt->dst, RTAX_ADVMSS, mss); |
| 850 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | return 0; |
| 852 | } |
| 853 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 854 | static inline int dn_match_addr(__le16 addr1, __le16 addr2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | { |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 856 | __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | int match = 16; |
| 858 | while(tmp) { |
| 859 | tmp >>= 1; |
| 860 | match--; |
| 861 | } |
| 862 | return match; |
| 863 | } |
| 864 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 865 | static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 867 | __le16 saddr = 0; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 868 | struct dn_dev *dn_db; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | struct dn_ifaddr *ifa; |
| 870 | int best_match = 0; |
| 871 | int ret; |
| 872 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 873 | rcu_read_lock(); |
| 874 | dn_db = rcu_dereference(dev->dn_ptr); |
| 875 | for (ifa = rcu_dereference(dn_db->ifa_list); |
| 876 | ifa != NULL; |
| 877 | ifa = rcu_dereference(ifa->ifa_next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | if (ifa->ifa_scope > scope) |
| 879 | continue; |
| 880 | if (!daddr) { |
| 881 | saddr = ifa->ifa_local; |
| 882 | break; |
| 883 | } |
| 884 | ret = dn_match_addr(daddr, ifa->ifa_local); |
| 885 | if (ret > best_match) |
| 886 | saddr = ifa->ifa_local; |
| 887 | if (best_match == 0) |
| 888 | saddr = ifa->ifa_local; |
| 889 | } |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 890 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | |
| 892 | return saddr; |
| 893 | } |
| 894 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 895 | static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | { |
| 897 | return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope); |
| 898 | } |
| 899 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 900 | static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | { |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 902 | __le16 mask = dnet_make_mask(res->prefixlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | return (daddr&~mask)|res->fi->fib_nh->nh_gw; |
| 904 | } |
| 905 | |
| 906 | static int dn_route_output_slow(struct dst_entry **pprt, const struct flowi *oldflp, int try_hard) |
| 907 | { |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 908 | struct flowi fl = { |
| 909 | .fld_dst = oldflp->fld_dst, |
| 910 | .fld_src = oldflp->fld_src, |
| 911 | .fld_scope = RT_SCOPE_UNIVERSE, |
| 912 | .flowi_mark = oldflp->flowi_mark, |
| 913 | .flowi_iif = init_net.loopback_dev->ifindex, |
| 914 | .flowi_oif = oldflp->flowi_oif, |
| 915 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | struct dn_route *rt = NULL; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 917 | struct net_device *dev_out = NULL, *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | struct neighbour *neigh = NULL; |
| 919 | unsigned hash; |
| 920 | unsigned flags = 0; |
| 921 | struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST }; |
| 922 | int err; |
| 923 | int free_res = 0; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 924 | __le16 gateway = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
| 926 | if (decnet_debug_level & 16) |
| 927 | printk(KERN_DEBUG |
| 928 | "dn_route_output_slow: dst=%04x src=%04x mark=%d" |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 929 | " iif=%d oif=%d\n", le16_to_cpu(oldflp->fld_dst), |
| 930 | le16_to_cpu(oldflp->fld_src), |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 931 | oldflp->flowi_mark, init_net.loopback_dev->ifindex, oldflp->flowi_oif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
| 933 | /* If we have an output interface, verify its a DECnet device */ |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 934 | if (oldflp->flowi_oif) { |
| 935 | dev_out = dev_get_by_index(&init_net, oldflp->flowi_oif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | err = -ENODEV; |
| 937 | if (dev_out && dev_out->dn_ptr == NULL) { |
| 938 | dev_put(dev_out); |
| 939 | dev_out = NULL; |
| 940 | } |
| 941 | if (dev_out == NULL) |
| 942 | goto out; |
| 943 | } |
| 944 | |
| 945 | /* If we have a source address, verify that its a local address */ |
| 946 | if (oldflp->fld_src) { |
| 947 | err = -EADDRNOTAVAIL; |
| 948 | |
| 949 | if (dev_out) { |
| 950 | if (dn_dev_islocal(dev_out, oldflp->fld_src)) |
| 951 | goto source_ok; |
| 952 | dev_put(dev_out); |
| 953 | goto out; |
| 954 | } |
Eric Dumazet | c6d14c8 | 2009-11-04 05:43:23 -0800 | [diff] [blame] | 955 | rcu_read_lock(); |
| 956 | for_each_netdev_rcu(&init_net, dev) { |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 957 | if (!dev->dn_ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | continue; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 959 | if (!dn_dev_islocal(dev, oldflp->fld_src)) |
Patrick Caulfield | 9bbf28a1 | 2006-08-02 14:14:44 -0700 | [diff] [blame] | 960 | continue; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 961 | if ((dev->flags & IFF_LOOPBACK) && |
Patrick Caulfield | 9bbf28a1 | 2006-08-02 14:14:44 -0700 | [diff] [blame] | 962 | oldflp->fld_dst && |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 963 | !dn_dev_islocal(dev, oldflp->fld_dst)) |
Patrick Caulfield | 9bbf28a1 | 2006-08-02 14:14:44 -0700 | [diff] [blame] | 964 | continue; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 965 | |
| 966 | dev_out = dev; |
Patrick Caulfield | 9bbf28a1 | 2006-08-02 14:14:44 -0700 | [diff] [blame] | 967 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | } |
Eric Dumazet | c6d14c8 | 2009-11-04 05:43:23 -0800 | [diff] [blame] | 969 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | if (dev_out == NULL) |
| 971 | goto out; |
| 972 | dev_hold(dev_out); |
| 973 | source_ok: |
| 974 | ; |
| 975 | } |
| 976 | |
| 977 | /* No destination? Assume its local */ |
| 978 | if (!fl.fld_dst) { |
| 979 | fl.fld_dst = fl.fld_src; |
| 980 | |
| 981 | err = -EADDRNOTAVAIL; |
| 982 | if (dev_out) |
| 983 | dev_put(dev_out); |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 984 | dev_out = init_net.loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | dev_hold(dev_out); |
| 986 | if (!fl.fld_dst) { |
| 987 | fl.fld_dst = |
| 988 | fl.fld_src = dnet_select_source(dev_out, 0, |
| 989 | RT_SCOPE_HOST); |
| 990 | if (!fl.fld_dst) |
| 991 | goto out; |
| 992 | } |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 993 | fl.flowi_oif = init_net.loopback_dev->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | res.type = RTN_LOCAL; |
| 995 | goto make_route; |
| 996 | } |
| 997 | |
| 998 | if (decnet_debug_level & 16) |
| 999 | printk(KERN_DEBUG |
| 1000 | "dn_route_output_slow: initial checks complete." |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 1001 | " dst=%o4x src=%04x oif=%d try_hard=%d\n", |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 1002 | le16_to_cpu(fl.fld_dst), le16_to_cpu(fl.fld_src), |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1003 | fl.flowi_oif, try_hard); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | |
| 1005 | /* |
| 1006 | * N.B. If the kernel is compiled without router support then |
| 1007 | * dn_fib_lookup() will evaluate to non-zero so this if () block |
| 1008 | * will always be executed. |
| 1009 | */ |
| 1010 | err = -ESRCH; |
| 1011 | if (try_hard || (err = dn_fib_lookup(&fl, &res)) != 0) { |
| 1012 | struct dn_dev *dn_db; |
| 1013 | if (err != -ESRCH) |
| 1014 | goto out; |
| 1015 | /* |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1016 | * Here the fallback is basically the standard algorithm for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | * routing in endnodes which is described in the DECnet routing |
| 1018 | * docs |
| 1019 | * |
| 1020 | * If we are not trying hard, look in neighbour cache. |
| 1021 | * The result is tested to ensure that if a specific output |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1022 | * device/source address was requested, then we honour that |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | * here |
| 1024 | */ |
| 1025 | if (!try_hard) { |
Eric W. Biederman | 426b530 | 2008-01-24 00:13:18 -0800 | [diff] [blame] | 1026 | neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fl.fld_dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | if (neigh) { |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1028 | if ((oldflp->flowi_oif && |
| 1029 | (neigh->dev->ifindex != oldflp->flowi_oif)) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | (oldflp->fld_src && |
| 1031 | (!dn_dev_islocal(neigh->dev, |
| 1032 | oldflp->fld_src)))) { |
| 1033 | neigh_release(neigh); |
| 1034 | neigh = NULL; |
| 1035 | } else { |
| 1036 | if (dev_out) |
| 1037 | dev_put(dev_out); |
| 1038 | if (dn_dev_islocal(neigh->dev, fl.fld_dst)) { |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 1039 | dev_out = init_net.loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | res.type = RTN_LOCAL; |
| 1041 | } else { |
| 1042 | dev_out = neigh->dev; |
| 1043 | } |
| 1044 | dev_hold(dev_out); |
| 1045 | goto select_source; |
| 1046 | } |
| 1047 | } |
| 1048 | } |
| 1049 | |
| 1050 | /* Not there? Perhaps its a local address */ |
| 1051 | if (dev_out == NULL) |
| 1052 | dev_out = dn_dev_get_default(); |
| 1053 | err = -ENODEV; |
| 1054 | if (dev_out == NULL) |
| 1055 | goto out; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1056 | dn_db = rcu_dereference_raw(dev_out->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | /* Possible improvement - check all devices for local addr */ |
| 1058 | if (dn_dev_islocal(dev_out, fl.fld_dst)) { |
| 1059 | dev_put(dev_out); |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 1060 | dev_out = init_net.loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | dev_hold(dev_out); |
| 1062 | res.type = RTN_LOCAL; |
| 1063 | goto select_source; |
| 1064 | } |
| 1065 | /* Not local either.... try sending it to the default router */ |
| 1066 | neigh = neigh_clone(dn_db->router); |
| 1067 | BUG_ON(neigh && neigh->dev != dev_out); |
| 1068 | |
| 1069 | /* Ok then, we assume its directly connected and move on */ |
| 1070 | select_source: |
| 1071 | if (neigh) |
| 1072 | gateway = ((struct dn_neigh *)neigh)->addr; |
| 1073 | if (gateway == 0) |
| 1074 | gateway = fl.fld_dst; |
| 1075 | if (fl.fld_src == 0) { |
| 1076 | fl.fld_src = dnet_select_source(dev_out, gateway, |
| 1077 | res.type == RTN_LOCAL ? |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1078 | RT_SCOPE_HOST : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | RT_SCOPE_LINK); |
| 1080 | if (fl.fld_src == 0 && res.type != RTN_LOCAL) |
| 1081 | goto e_addr; |
| 1082 | } |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1083 | fl.flowi_oif = dev_out->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | goto make_route; |
| 1085 | } |
| 1086 | free_res = 1; |
| 1087 | |
| 1088 | if (res.type == RTN_NAT) |
| 1089 | goto e_inval; |
| 1090 | |
| 1091 | if (res.type == RTN_LOCAL) { |
| 1092 | if (!fl.fld_src) |
| 1093 | fl.fld_src = fl.fld_dst; |
| 1094 | if (dev_out) |
| 1095 | dev_put(dev_out); |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 1096 | dev_out = init_net.loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | dev_hold(dev_out); |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1098 | fl.flowi_oif = dev_out->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | if (res.fi) |
| 1100 | dn_fib_info_put(res.fi); |
| 1101 | res.fi = NULL; |
| 1102 | goto make_route; |
| 1103 | } |
| 1104 | |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1105 | if (res.fi->fib_nhs > 1 && fl.flowi_oif == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | dn_fib_select_multipath(&fl, &res); |
| 1107 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1108 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | * We could add some logic to deal with default routes here and |
| 1110 | * get rid of some of the special casing above. |
| 1111 | */ |
| 1112 | |
| 1113 | if (!fl.fld_src) |
| 1114 | fl.fld_src = DN_FIB_RES_PREFSRC(res); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | if (dev_out) |
| 1117 | dev_put(dev_out); |
| 1118 | dev_out = DN_FIB_RES_DEV(res); |
| 1119 | dev_hold(dev_out); |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1120 | fl.flowi_oif = dev_out->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | gateway = DN_FIB_RES_GW(res); |
| 1122 | |
| 1123 | make_route: |
| 1124 | if (dev_out->flags & IFF_LOOPBACK) |
| 1125 | flags |= RTCF_LOCAL; |
| 1126 | |
David S. Miller | 3c7bd1a | 2011-02-16 14:08:44 -0800 | [diff] [blame] | 1127 | rt = dst_alloc(&dn_dst_ops, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | if (rt == NULL) |
| 1129 | goto e_nobufs; |
| 1130 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1131 | atomic_set(&rt->dst.__refcnt, 1); |
| 1132 | rt->dst.flags = DST_HOST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | |
| 1134 | rt->fl.fld_src = oldflp->fld_src; |
| 1135 | rt->fl.fld_dst = oldflp->fld_dst; |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1136 | rt->fl.flowi_oif = oldflp->flowi_oif; |
| 1137 | rt->fl.flowi_iif = 0; |
| 1138 | rt->fl.flowi_mark = oldflp->flowi_mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | |
| 1140 | rt->rt_saddr = fl.fld_src; |
| 1141 | rt->rt_daddr = fl.fld_dst; |
| 1142 | rt->rt_gateway = gateway ? gateway : fl.fld_dst; |
| 1143 | rt->rt_local_src = fl.fld_src; |
| 1144 | |
| 1145 | rt->rt_dst_map = fl.fld_dst; |
| 1146 | rt->rt_src_map = fl.fld_src; |
| 1147 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1148 | rt->dst.dev = dev_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | dev_hold(dev_out); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1150 | rt->dst.neighbour = neigh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | neigh = NULL; |
| 1152 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1153 | rt->dst.lastuse = jiffies; |
| 1154 | rt->dst.output = dn_output; |
| 1155 | rt->dst.input = dn_rt_bug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | rt->rt_flags = flags; |
| 1157 | if (flags & RTCF_LOCAL) |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1158 | rt->dst.input = dn_nsp_rx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
| 1160 | err = dn_rt_set_next_hop(rt, &res); |
| 1161 | if (err) |
| 1162 | goto e_neighbour; |
| 1163 | |
| 1164 | hash = dn_hash(rt->fl.fld_src, rt->fl.fld_dst); |
| 1165 | dn_insert_route(rt, hash, (struct dn_route **)pprt); |
| 1166 | |
| 1167 | done: |
| 1168 | if (neigh) |
| 1169 | neigh_release(neigh); |
| 1170 | if (free_res) |
| 1171 | dn_fib_res_put(&res); |
| 1172 | if (dev_out) |
| 1173 | dev_put(dev_out); |
| 1174 | out: |
| 1175 | return err; |
| 1176 | |
| 1177 | e_addr: |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1178 | err = -EADDRNOTAVAIL; |
| 1179 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | e_inval: |
| 1181 | err = -EINVAL; |
| 1182 | goto done; |
| 1183 | e_nobufs: |
| 1184 | err = -ENOBUFS; |
| 1185 | goto done; |
| 1186 | e_neighbour: |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1187 | dst_free(&rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | goto e_nobufs; |
| 1189 | } |
| 1190 | |
| 1191 | |
| 1192 | /* |
| 1193 | * N.B. The flags may be moved into the flowi at some future stage. |
| 1194 | */ |
| 1195 | static int __dn_route_output_key(struct dst_entry **pprt, const struct flowi *flp, int flags) |
| 1196 | { |
| 1197 | unsigned hash = dn_hash(flp->fld_src, flp->fld_dst); |
| 1198 | struct dn_route *rt = NULL; |
| 1199 | |
| 1200 | if (!(flags & MSG_TRYHARD)) { |
| 1201 | rcu_read_lock_bh(); |
Paul E. McKenney | a898def | 2010-02-22 17:04:49 -0800 | [diff] [blame] | 1202 | for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1203 | rt = rcu_dereference_bh(rt->dst.dn_next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | if ((flp->fld_dst == rt->fl.fld_dst) && |
| 1205 | (flp->fld_src == rt->fl.fld_src) && |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1206 | (flp->flowi_mark == rt->fl.flowi_mark) && |
David S. Miller | c753796 | 2010-11-11 17:07:48 -0800 | [diff] [blame] | 1207 | dn_is_output_route(rt) && |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1208 | (rt->fl.flowi_oif == flp->flowi_oif)) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1209 | dst_use(&rt->dst, jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | rcu_read_unlock_bh(); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1211 | *pprt = &rt->dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | return 0; |
| 1213 | } |
| 1214 | } |
| 1215 | rcu_read_unlock_bh(); |
| 1216 | } |
| 1217 | |
| 1218 | return dn_route_output_slow(pprt, flp, flags); |
| 1219 | } |
| 1220 | |
| 1221 | static int dn_route_output_key(struct dst_entry **pprt, struct flowi *flp, int flags) |
| 1222 | { |
| 1223 | int err; |
| 1224 | |
| 1225 | err = __dn_route_output_key(pprt, flp, flags); |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1226 | if (err == 0 && flp->flowi_proto) { |
David S. Miller | 452edd5 | 2011-03-02 13:27:41 -0800 | [diff] [blame] | 1227 | *pprt = xfrm_lookup(&init_net, *pprt, flp, NULL, 0); |
| 1228 | if (IS_ERR(*pprt)) { |
| 1229 | err = PTR_ERR(*pprt); |
| 1230 | *pprt = NULL; |
| 1231 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | } |
| 1233 | return err; |
| 1234 | } |
| 1235 | |
| 1236 | int dn_route_output_sock(struct dst_entry **pprt, struct flowi *fl, struct sock *sk, int flags) |
| 1237 | { |
| 1238 | int err; |
| 1239 | |
| 1240 | err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD); |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1241 | if (err == 0 && fl->flowi_proto) { |
David S. Miller | 80c0bc9 | 2011-03-01 14:36:37 -0800 | [diff] [blame] | 1242 | if (!(flags & MSG_DONTWAIT)) |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1243 | fl->flowi_flags |= FLOWI_FLAG_CAN_SLEEP; |
David S. Miller | 452edd5 | 2011-03-02 13:27:41 -0800 | [diff] [blame] | 1244 | *pprt = xfrm_lookup(&init_net, *pprt, fl, sk, 0); |
| 1245 | if (IS_ERR(*pprt)) { |
| 1246 | err = PTR_ERR(*pprt); |
| 1247 | *pprt = NULL; |
| 1248 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | } |
| 1250 | return err; |
| 1251 | } |
| 1252 | |
| 1253 | static int dn_route_input_slow(struct sk_buff *skb) |
| 1254 | { |
| 1255 | struct dn_route *rt = NULL; |
| 1256 | struct dn_skb_cb *cb = DN_SKB_CB(skb); |
| 1257 | struct net_device *in_dev = skb->dev; |
| 1258 | struct net_device *out_dev = NULL; |
| 1259 | struct dn_dev *dn_db; |
| 1260 | struct neighbour *neigh = NULL; |
| 1261 | unsigned hash; |
| 1262 | int flags = 0; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 1263 | __le16 gateway = 0; |
| 1264 | __le16 local_src = 0; |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1265 | struct flowi fl = { |
| 1266 | .fld_dst = cb->dst, |
| 1267 | .fld_src = cb->src, |
| 1268 | .fld_scope = RT_SCOPE_UNIVERSE, |
| 1269 | .flowi_mark = skb->mark, |
| 1270 | .flowi_iif = skb->dev->ifindex, |
| 1271 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE }; |
| 1273 | int err = -EINVAL; |
| 1274 | int free_res = 0; |
| 1275 | |
| 1276 | dev_hold(in_dev); |
| 1277 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1278 | if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | goto out; |
| 1280 | |
| 1281 | /* Zero source addresses are not allowed */ |
| 1282 | if (fl.fld_src == 0) |
| 1283 | goto out; |
| 1284 | |
| 1285 | /* |
| 1286 | * In this case we've just received a packet from a source |
| 1287 | * outside ourselves pretending to come from us. We don't |
| 1288 | * allow it any further to prevent routing loops, spoofing and |
| 1289 | * other nasties. Loopback packets already have the dst attached |
| 1290 | * so this only affects packets which have originated elsewhere. |
| 1291 | */ |
| 1292 | err = -ENOTUNIQ; |
| 1293 | if (dn_dev_islocal(in_dev, cb->src)) |
| 1294 | goto out; |
| 1295 | |
| 1296 | err = dn_fib_lookup(&fl, &res); |
| 1297 | if (err) { |
| 1298 | if (err != -ESRCH) |
| 1299 | goto out; |
| 1300 | /* |
| 1301 | * Is the destination us ? |
| 1302 | */ |
| 1303 | if (!dn_dev_islocal(in_dev, cb->dst)) |
| 1304 | goto e_inval; |
| 1305 | |
| 1306 | res.type = RTN_LOCAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | } else { |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 1308 | __le16 src_map = fl.fld_src; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | free_res = 1; |
| 1310 | |
| 1311 | out_dev = DN_FIB_RES_DEV(res); |
| 1312 | if (out_dev == NULL) { |
| 1313 | if (net_ratelimit()) |
| 1314 | printk(KERN_CRIT "Bug in dn_route_input_slow() " |
| 1315 | "No output device\n"); |
| 1316 | goto e_inval; |
| 1317 | } |
| 1318 | dev_hold(out_dev); |
| 1319 | |
| 1320 | if (res.r) |
Steven Whitehouse | a8731cb | 2006-08-09 15:56:46 -0700 | [diff] [blame] | 1321 | src_map = fl.fld_src; /* no NAT support for now */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | |
| 1323 | gateway = DN_FIB_RES_GW(res); |
| 1324 | if (res.type == RTN_NAT) { |
| 1325 | fl.fld_dst = dn_fib_rules_map_destination(fl.fld_dst, &res); |
| 1326 | dn_fib_res_put(&res); |
| 1327 | free_res = 0; |
| 1328 | if (dn_fib_lookup(&fl, &res)) |
| 1329 | goto e_inval; |
| 1330 | free_res = 1; |
| 1331 | if (res.type != RTN_UNICAST) |
| 1332 | goto e_inval; |
| 1333 | flags |= RTCF_DNAT; |
| 1334 | gateway = fl.fld_dst; |
| 1335 | } |
| 1336 | fl.fld_src = src_map; |
| 1337 | } |
| 1338 | |
| 1339 | switch(res.type) { |
| 1340 | case RTN_UNICAST: |
| 1341 | /* |
| 1342 | * Forwarding check here, we only check for forwarding |
| 1343 | * being turned off, if you want to only forward intra |
| 1344 | * area, its up to you to set the routing tables up |
| 1345 | * correctly. |
| 1346 | */ |
| 1347 | if (dn_db->parms.forwarding == 0) |
| 1348 | goto e_inval; |
| 1349 | |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1350 | if (res.fi->fib_nhs > 1 && fl.flowi_oif == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | dn_fib_select_multipath(&fl, &res); |
| 1352 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1353 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT |
| 1355 | * flag as a hint to set the intra-ethernet bit when |
| 1356 | * forwarding. If we've got NAT in operation, we don't do |
| 1357 | * this optimisation. |
| 1358 | */ |
| 1359 | if (out_dev == in_dev && !(flags & RTCF_NAT)) |
| 1360 | flags |= RTCF_DOREDIRECT; |
| 1361 | |
| 1362 | local_src = DN_FIB_RES_PREFSRC(res); |
| 1363 | |
| 1364 | case RTN_BLACKHOLE: |
| 1365 | case RTN_UNREACHABLE: |
| 1366 | break; |
| 1367 | case RTN_LOCAL: |
| 1368 | flags |= RTCF_LOCAL; |
| 1369 | fl.fld_src = cb->dst; |
| 1370 | fl.fld_dst = cb->src; |
| 1371 | |
| 1372 | /* Routing tables gave us a gateway */ |
| 1373 | if (gateway) |
| 1374 | goto make_route; |
| 1375 | |
| 1376 | /* Packet was intra-ethernet, so we know its on-link */ |
Steven Whitehouse | 3a31b9d | 2006-10-18 20:45:22 -0700 | [diff] [blame] | 1377 | if (cb->rt_flags & DN_RT_F_IE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | gateway = cb->src; |
| 1379 | flags |= RTCF_DIRECTSRC; |
| 1380 | goto make_route; |
| 1381 | } |
| 1382 | |
| 1383 | /* Use the default router if there is one */ |
| 1384 | neigh = neigh_clone(dn_db->router); |
| 1385 | if (neigh) { |
| 1386 | gateway = ((struct dn_neigh *)neigh)->addr; |
| 1387 | goto make_route; |
| 1388 | } |
| 1389 | |
| 1390 | /* Close eyes and pray */ |
| 1391 | gateway = cb->src; |
| 1392 | flags |= RTCF_DIRECTSRC; |
| 1393 | goto make_route; |
| 1394 | default: |
| 1395 | goto e_inval; |
| 1396 | } |
| 1397 | |
| 1398 | make_route: |
David S. Miller | 3c7bd1a | 2011-02-16 14:08:44 -0800 | [diff] [blame] | 1399 | rt = dst_alloc(&dn_dst_ops, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | if (rt == NULL) |
| 1401 | goto e_nobufs; |
| 1402 | |
| 1403 | rt->rt_saddr = fl.fld_src; |
| 1404 | rt->rt_daddr = fl.fld_dst; |
| 1405 | rt->rt_gateway = fl.fld_dst; |
| 1406 | if (gateway) |
| 1407 | rt->rt_gateway = gateway; |
| 1408 | rt->rt_local_src = local_src ? local_src : rt->rt_saddr; |
| 1409 | |
| 1410 | rt->rt_dst_map = fl.fld_dst; |
| 1411 | rt->rt_src_map = fl.fld_src; |
| 1412 | |
| 1413 | rt->fl.fld_src = cb->src; |
| 1414 | rt->fl.fld_dst = cb->dst; |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1415 | rt->fl.flowi_oif = 0; |
| 1416 | rt->fl.flowi_iif = in_dev->ifindex; |
| 1417 | rt->fl.flowi_mark = fl.flowi_mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1419 | rt->dst.flags = DST_HOST; |
| 1420 | rt->dst.neighbour = neigh; |
| 1421 | rt->dst.dev = out_dev; |
| 1422 | rt->dst.lastuse = jiffies; |
| 1423 | rt->dst.output = dn_rt_bug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | switch(res.type) { |
| 1425 | case RTN_UNICAST: |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1426 | rt->dst.input = dn_forward; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | break; |
| 1428 | case RTN_LOCAL: |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1429 | rt->dst.output = dn_output; |
| 1430 | rt->dst.input = dn_nsp_rx; |
| 1431 | rt->dst.dev = in_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | flags |= RTCF_LOCAL; |
| 1433 | break; |
| 1434 | default: |
| 1435 | case RTN_UNREACHABLE: |
| 1436 | case RTN_BLACKHOLE: |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1437 | rt->dst.input = dst_discard; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | } |
| 1439 | rt->rt_flags = flags; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1440 | if (rt->dst.dev) |
| 1441 | dev_hold(rt->dst.dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | |
| 1443 | err = dn_rt_set_next_hop(rt, &res); |
| 1444 | if (err) |
| 1445 | goto e_neighbour; |
| 1446 | |
| 1447 | hash = dn_hash(rt->fl.fld_src, rt->fl.fld_dst); |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1448 | dn_insert_route(rt, hash, &rt); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1449 | skb_dst_set(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | |
| 1451 | done: |
| 1452 | if (neigh) |
| 1453 | neigh_release(neigh); |
| 1454 | if (free_res) |
| 1455 | dn_fib_res_put(&res); |
| 1456 | dev_put(in_dev); |
| 1457 | if (out_dev) |
| 1458 | dev_put(out_dev); |
| 1459 | out: |
| 1460 | return err; |
| 1461 | |
| 1462 | e_inval: |
| 1463 | err = -EINVAL; |
| 1464 | goto done; |
| 1465 | |
| 1466 | e_nobufs: |
| 1467 | err = -ENOBUFS; |
| 1468 | goto done; |
| 1469 | |
| 1470 | e_neighbour: |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1471 | dst_free(&rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | goto done; |
| 1473 | } |
| 1474 | |
Roel Kluin | 5eaa65b | 2008-12-10 15:18:31 -0800 | [diff] [blame] | 1475 | static int dn_route_input(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | { |
| 1477 | struct dn_route *rt; |
| 1478 | struct dn_skb_cb *cb = DN_SKB_CB(skb); |
| 1479 | unsigned hash = dn_hash(cb->src, cb->dst); |
| 1480 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1481 | if (skb_dst(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | return 0; |
| 1483 | |
| 1484 | rcu_read_lock(); |
| 1485 | for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1486 | rt = rcu_dereference(rt->dst.dn_next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | if ((rt->fl.fld_src == cb->src) && |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1488 | (rt->fl.fld_dst == cb->dst) && |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1489 | (rt->fl.flowi_oif == 0) && |
| 1490 | (rt->fl.flowi_mark == skb->mark) && |
| 1491 | (rt->fl.flowi_iif == cb->iif)) { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1492 | dst_use(&rt->dst, jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | rcu_read_unlock(); |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1494 | skb_dst_set(skb, (struct dst_entry *)rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | return 0; |
| 1496 | } |
| 1497 | } |
| 1498 | rcu_read_unlock(); |
| 1499 | |
| 1500 | return dn_route_input_slow(skb); |
| 1501 | } |
| 1502 | |
Jamal Hadi Salim | b6544c0 | 2005-06-18 22:54:12 -0700 | [diff] [blame] | 1503 | static int dn_rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, |
| 1504 | int event, int nowait, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1506 | struct dn_route *rt = (struct dn_route *)skb_dst(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | struct rtmsg *r; |
| 1508 | struct nlmsghdr *nlh; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1509 | unsigned char *b = skb_tail_pointer(skb); |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 1510 | long expires; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | |
Jamal Hadi Salim | b6544c0 | 2005-06-18 22:54:12 -0700 | [diff] [blame] | 1512 | nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*r), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | r = NLMSG_DATA(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | r->rtm_family = AF_DECnet; |
| 1515 | r->rtm_dst_len = 16; |
| 1516 | r->rtm_src_len = 0; |
| 1517 | r->rtm_tos = 0; |
| 1518 | r->rtm_table = RT_TABLE_MAIN; |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 1519 | RTA_PUT_U32(skb, RTA_TABLE, RT_TABLE_MAIN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | r->rtm_type = rt->rt_type; |
| 1521 | r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED; |
| 1522 | r->rtm_scope = RT_SCOPE_UNIVERSE; |
| 1523 | r->rtm_protocol = RTPROT_UNSPEC; |
| 1524 | if (rt->rt_flags & RTCF_NOTIFY) |
| 1525 | r->rtm_flags |= RTM_F_NOTIFY; |
| 1526 | RTA_PUT(skb, RTA_DST, 2, &rt->rt_daddr); |
| 1527 | if (rt->fl.fld_src) { |
| 1528 | r->rtm_src_len = 16; |
| 1529 | RTA_PUT(skb, RTA_SRC, 2, &rt->fl.fld_src); |
| 1530 | } |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1531 | if (rt->dst.dev) |
| 1532 | RTA_PUT(skb, RTA_OIF, sizeof(int), &rt->dst.dev->ifindex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | /* |
| 1534 | * Note to self - change this if input routes reverse direction when |
| 1535 | * they deal only with inputs and not with replies like they do |
| 1536 | * currently. |
| 1537 | */ |
| 1538 | RTA_PUT(skb, RTA_PREFSRC, 2, &rt->rt_local_src); |
| 1539 | if (rt->rt_daddr != rt->rt_gateway) |
| 1540 | RTA_PUT(skb, RTA_GATEWAY, 2, &rt->rt_gateway); |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 1541 | if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | goto rtattr_failure; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1543 | expires = rt->dst.expires ? rt->dst.expires - jiffies : 0; |
| 1544 | if (rtnl_put_cacheinfo(skb, &rt->dst, 0, 0, 0, expires, |
| 1545 | rt->dst.error) < 0) |
Thomas Graf | e3703b3 | 2006-11-27 09:27:07 -0800 | [diff] [blame] | 1546 | goto rtattr_failure; |
David S. Miller | c753796 | 2010-11-11 17:07:48 -0800 | [diff] [blame] | 1547 | if (dn_is_input_route(rt)) |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1548 | RTA_PUT(skb, RTA_IIF, sizeof(int), &rt->fl.flowi_iif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1550 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | return skb->len; |
| 1552 | |
| 1553 | nlmsg_failure: |
| 1554 | rtattr_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 1555 | nlmsg_trim(skb, b); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1556 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | } |
| 1558 | |
| 1559 | /* |
| 1560 | * This is called by both endnodes and routers now. |
| 1561 | */ |
Thomas Graf | fa34ddd | 2007-03-22 11:57:46 -0700 | [diff] [blame] | 1562 | static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1564 | struct net *net = sock_net(in_skb->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | struct rtattr **rta = arg; |
| 1566 | struct rtmsg *rtm = NLMSG_DATA(nlh); |
| 1567 | struct dn_route *rt = NULL; |
| 1568 | struct dn_skb_cb *cb; |
| 1569 | int err; |
| 1570 | struct sk_buff *skb; |
| 1571 | struct flowi fl; |
| 1572 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 1573 | if (!net_eq(net, &init_net)) |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 1574 | return -EINVAL; |
| 1575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | memset(&fl, 0, sizeof(fl)); |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1577 | fl.flowi_proto = DNPROTO_NSP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | |
| 1579 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 1580 | if (skb == NULL) |
| 1581 | return -ENOBUFS; |
Arnaldo Carvalho de Melo | 459a98e | 2007-03-19 15:30:44 -0700 | [diff] [blame] | 1582 | skb_reset_mac_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | cb = DN_SKB_CB(skb); |
| 1584 | |
| 1585 | if (rta[RTA_SRC-1]) |
| 1586 | memcpy(&fl.fld_src, RTA_DATA(rta[RTA_SRC-1]), 2); |
| 1587 | if (rta[RTA_DST-1]) |
| 1588 | memcpy(&fl.fld_dst, RTA_DATA(rta[RTA_DST-1]), 2); |
| 1589 | if (rta[RTA_IIF-1]) |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1590 | memcpy(&fl.flowi_iif, RTA_DATA(rta[RTA_IIF-1]), sizeof(int)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1592 | if (fl.flowi_iif) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | struct net_device *dev; |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1594 | if ((dev = dev_get_by_index(&init_net, fl.flowi_iif)) == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | kfree_skb(skb); |
| 1596 | return -ENODEV; |
| 1597 | } |
| 1598 | if (!dev->dn_ptr) { |
| 1599 | dev_put(dev); |
| 1600 | kfree_skb(skb); |
| 1601 | return -ENODEV; |
| 1602 | } |
YOSHIFUJI Hideaki | b98999d | 2007-12-12 03:51:49 +0900 | [diff] [blame] | 1603 | skb->protocol = htons(ETH_P_DNA_RT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | skb->dev = dev; |
| 1605 | cb->src = fl.fld_src; |
| 1606 | cb->dst = fl.fld_dst; |
| 1607 | local_bh_disable(); |
| 1608 | err = dn_route_input(skb); |
| 1609 | local_bh_enable(); |
| 1610 | memset(cb, 0, sizeof(struct dn_skb_cb)); |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1611 | rt = (struct dn_route *)skb_dst(skb); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1612 | if (!err && -rt->dst.error) |
| 1613 | err = rt->dst.error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | } else { |
| 1615 | int oif = 0; |
| 1616 | if (rta[RTA_OIF - 1]) |
| 1617 | memcpy(&oif, RTA_DATA(rta[RTA_OIF - 1]), sizeof(int)); |
David S. Miller | 1d28f42 | 2011-03-12 00:29:39 -0500 | [diff] [blame^] | 1618 | fl.flowi_oif = oif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | err = dn_route_output_key((struct dst_entry **)&rt, &fl, 0); |
| 1620 | } |
| 1621 | |
| 1622 | if (skb->dev) |
| 1623 | dev_put(skb->dev); |
| 1624 | skb->dev = NULL; |
| 1625 | if (err) |
| 1626 | goto out_free; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1627 | skb_dst_set(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | if (rtm->rtm_flags & RTM_F_NOTIFY) |
| 1629 | rt->rt_flags |= RTCF_NOTIFY; |
| 1630 | |
Jamal Hadi Salim | b6544c0 | 2005-06-18 22:54:12 -0700 | [diff] [blame] | 1631 | err = dn_rt_fill_info(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq, RTM_NEWROUTE, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
| 1633 | if (err == 0) |
| 1634 | goto out_free; |
| 1635 | if (err < 0) { |
| 1636 | err = -EMSGSIZE; |
| 1637 | goto out_free; |
| 1638 | } |
| 1639 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 1640 | return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | |
| 1642 | out_free: |
| 1643 | kfree_skb(skb); |
| 1644 | return err; |
| 1645 | } |
| 1646 | |
| 1647 | /* |
| 1648 | * For routers, this is called from dn_fib_dump, but for endnodes its |
| 1649 | * called directly from the rtnetlink dispatch table. |
| 1650 | */ |
| 1651 | int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb) |
| 1652 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1653 | struct net *net = sock_net(skb->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | struct dn_route *rt; |
| 1655 | int h, s_h; |
| 1656 | int idx, s_idx; |
| 1657 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 1658 | if (!net_eq(net, &init_net)) |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 1659 | return 0; |
| 1660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | if (NLMSG_PAYLOAD(cb->nlh, 0) < sizeof(struct rtmsg)) |
| 1662 | return -EINVAL; |
| 1663 | if (!(((struct rtmsg *)NLMSG_DATA(cb->nlh))->rtm_flags&RTM_F_CLONED)) |
| 1664 | return 0; |
| 1665 | |
| 1666 | s_h = cb->args[0]; |
| 1667 | s_idx = idx = cb->args[1]; |
| 1668 | for(h = 0; h <= dn_rt_hash_mask; h++) { |
| 1669 | if (h < s_h) |
| 1670 | continue; |
| 1671 | if (h > s_h) |
| 1672 | s_idx = 0; |
| 1673 | rcu_read_lock_bh(); |
Paul E. McKenney | a898def | 2010-02-22 17:04:49 -0800 | [diff] [blame] | 1674 | for(rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | rt; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1676 | rt = rcu_dereference_bh(rt->dst.dn_next), idx++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | if (idx < s_idx) |
| 1678 | continue; |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1679 | skb_dst_set(skb, dst_clone(&rt->dst)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).pid, |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1681 | cb->nlh->nlmsg_seq, RTM_NEWROUTE, |
Jamal Hadi Salim | b6544c0 | 2005-06-18 22:54:12 -0700 | [diff] [blame] | 1682 | 1, NLM_F_MULTI) <= 0) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1683 | skb_dst_drop(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | rcu_read_unlock_bh(); |
| 1685 | goto done; |
| 1686 | } |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1687 | skb_dst_drop(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | } |
| 1689 | rcu_read_unlock_bh(); |
| 1690 | } |
| 1691 | |
| 1692 | done: |
| 1693 | cb->args[0] = h; |
| 1694 | cb->args[1] = idx; |
| 1695 | return skb->len; |
| 1696 | } |
| 1697 | |
| 1698 | #ifdef CONFIG_PROC_FS |
| 1699 | struct dn_rt_cache_iter_state { |
| 1700 | int bucket; |
| 1701 | }; |
| 1702 | |
| 1703 | static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq) |
| 1704 | { |
| 1705 | struct dn_route *rt = NULL; |
| 1706 | struct dn_rt_cache_iter_state *s = seq->private; |
| 1707 | |
| 1708 | for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) { |
| 1709 | rcu_read_lock_bh(); |
Paul E. McKenney | a898def | 2010-02-22 17:04:49 -0800 | [diff] [blame] | 1710 | rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | if (rt) |
| 1712 | break; |
| 1713 | rcu_read_unlock_bh(); |
| 1714 | } |
Paul E. McKenney | a898def | 2010-02-22 17:04:49 -0800 | [diff] [blame] | 1715 | return rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | } |
| 1717 | |
| 1718 | static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt) |
| 1719 | { |
Eric Dumazet | 0d89d79 | 2008-01-10 22:35:21 -0800 | [diff] [blame] | 1720 | struct dn_rt_cache_iter_state *s = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1722 | rt = rcu_dereference_bh(rt->dst.dn_next); |
| 1723 | while (!rt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | rcu_read_unlock_bh(); |
| 1725 | if (--s->bucket < 0) |
| 1726 | break; |
| 1727 | rcu_read_lock_bh(); |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1728 | rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | } |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1730 | return rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | } |
| 1732 | |
| 1733 | static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos) |
| 1734 | { |
| 1735 | struct dn_route *rt = dn_rt_cache_get_first(seq); |
| 1736 | |
| 1737 | if (rt) { |
| 1738 | while(*pos && (rt = dn_rt_cache_get_next(seq, rt))) |
| 1739 | --*pos; |
| 1740 | } |
| 1741 | return *pos ? NULL : rt; |
| 1742 | } |
| 1743 | |
| 1744 | static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 1745 | { |
| 1746 | struct dn_route *rt = dn_rt_cache_get_next(seq, v); |
| 1747 | ++*pos; |
| 1748 | return rt; |
| 1749 | } |
| 1750 | |
| 1751 | static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v) |
| 1752 | { |
| 1753 | if (v) |
| 1754 | rcu_read_unlock_bh(); |
| 1755 | } |
| 1756 | |
| 1757 | static int dn_rt_cache_seq_show(struct seq_file *seq, void *v) |
| 1758 | { |
| 1759 | struct dn_route *rt = v; |
| 1760 | char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN]; |
| 1761 | |
| 1762 | seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n", |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1763 | rt->dst.dev ? rt->dst.dev->name : "*", |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 1764 | dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1), |
| 1765 | dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2), |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 1766 | atomic_read(&rt->dst.__refcnt), |
| 1767 | rt->dst.__use, |
| 1768 | (int) dst_metric(&rt->dst, RTAX_RTT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | return 0; |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1770 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1771 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 1772 | static const struct seq_operations dn_rt_cache_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | .start = dn_rt_cache_seq_start, |
| 1774 | .next = dn_rt_cache_seq_next, |
| 1775 | .stop = dn_rt_cache_seq_stop, |
| 1776 | .show = dn_rt_cache_seq_show, |
| 1777 | }; |
| 1778 | |
| 1779 | static int dn_rt_cache_seq_open(struct inode *inode, struct file *file) |
| 1780 | { |
Pavel Emelyanov | 3116408 | 2007-10-10 02:30:23 -0700 | [diff] [blame] | 1781 | return seq_open_private(file, &dn_rt_cache_seq_ops, |
| 1782 | sizeof(struct dn_rt_cache_iter_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | } |
| 1784 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 1785 | static const struct file_operations dn_rt_cache_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | .owner = THIS_MODULE, |
| 1787 | .open = dn_rt_cache_seq_open, |
| 1788 | .read = seq_read, |
| 1789 | .llseek = seq_lseek, |
| 1790 | .release = seq_release_private, |
| 1791 | }; |
| 1792 | |
| 1793 | #endif /* CONFIG_PROC_FS */ |
| 1794 | |
| 1795 | void __init dn_route_init(void) |
| 1796 | { |
| 1797 | int i, goal, order; |
| 1798 | |
Alexey Dobriyan | e5d679f33 | 2006-08-26 19:25:52 -0700 | [diff] [blame] | 1799 | dn_dst_ops.kmem_cachep = |
| 1800 | kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1801 | SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1802 | dst_entries_init(&dn_dst_ops); |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 1803 | setup_timer(&dn_route_timer, dn_dst_check_expire, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ; |
| 1805 | add_timer(&dn_route_timer); |
| 1806 | |
Jan Beulich | 4481374 | 2009-09-21 17:03:05 -0700 | [diff] [blame] | 1807 | goal = totalram_pages >> (26 - PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | |
| 1809 | for(order = 0; (1UL << order) < goal; order++) |
| 1810 | /* NOTHING */; |
| 1811 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1812 | /* |
| 1813 | * Only want 1024 entries max, since the table is very, very unlikely |
| 1814 | * to be larger than that. |
| 1815 | */ |
| 1816 | while(order && ((((1UL << order) * PAGE_SIZE) / |
| 1817 | sizeof(struct dn_rt_hash_bucket)) >= 2048)) |
| 1818 | order--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1820 | do { |
| 1821 | dn_rt_hash_mask = (1UL << order) * PAGE_SIZE / |
| 1822 | sizeof(struct dn_rt_hash_bucket); |
| 1823 | while(dn_rt_hash_mask & (dn_rt_hash_mask - 1)) |
| 1824 | dn_rt_hash_mask--; |
| 1825 | dn_rt_hash_table = (struct dn_rt_hash_bucket *) |
| 1826 | __get_free_pages(GFP_ATOMIC, order); |
| 1827 | } while (dn_rt_hash_table == NULL && --order > 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | |
| 1829 | if (!dn_rt_hash_table) |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1830 | panic("Failed to allocate DECnet route cache hash table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1832 | printk(KERN_INFO |
| 1833 | "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n", |
| 1834 | dn_rt_hash_mask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024); |
| 1836 | |
| 1837 | dn_rt_hash_mask--; |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1838 | for(i = 0; i <= dn_rt_hash_mask; i++) { |
| 1839 | spin_lock_init(&dn_rt_hash_table[i].lock); |
| 1840 | dn_rt_hash_table[i].chain = NULL; |
| 1841 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1843 | dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 1845 | proc_net_fops_create(&init_net, "decnet_cache", S_IRUGO, &dn_rt_cache_seq_fops); |
Thomas Graf | fa34ddd | 2007-03-22 11:57:46 -0700 | [diff] [blame] | 1846 | |
| 1847 | #ifdef CONFIG_DECNET_ROUTER |
| 1848 | rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute, dn_fib_dump); |
| 1849 | #else |
| 1850 | rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute, |
| 1851 | dn_cache_dump); |
| 1852 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | } |
| 1854 | |
| 1855 | void __exit dn_route_cleanup(void) |
| 1856 | { |
| 1857 | del_timer(&dn_route_timer); |
| 1858 | dn_run_flush(0); |
| 1859 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 1860 | proc_net_remove(&init_net, "decnet_cache"); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1861 | dst_entries_destroy(&dn_dst_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | } |
| 1863 | |