blob: 60e4c6e1bac015c0f647a8f713c73e39500e4cfe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Hideaki429eb0f2007-02-09 23:24:40 +090046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 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 Torvalds1da177e2005-04-16 15:20:36 -070058#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 Heo5a0e3ad2010-03-24 17:04:11 +090069#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#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>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040080#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <asm/errno.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020082#include <net/net_namespace.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070083#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include <net/neighbour.h>
85#include <net/dst.h>
86#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070087#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <net/dn.h>
89#include <net/dn_dev.h>
90#include <net/dn_nsp.h>
91#include <net/dn_route.h>
92#include <net/dn_neigh.h>
93#include <net/dn_fib.h>
94
95struct dn_rt_hash_bucket
96{
Eric Dumazetfc766e42010-10-29 03:09:24 +000097 struct dn_route __rcu *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 spinlock_t lock;
Eric Dumazetfca09fb2008-02-07 23:29:57 -080099};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101extern struct neigh_table dn_neigh_table;
102
103
104static unsigned char dn_hiord_addr[6] = {0xAA,0x00,0x04,0x00,0x00,0x00};
105
106static const int dn_rt_min_delay = 2 * HZ;
107static const int dn_rt_max_delay = 10 * HZ;
108static const int dn_rt_mtu_expires = 10 * 60 * HZ;
109
110static unsigned long dn_rt_deadline;
111
Daniel Lezcano569d3642008-01-18 03:56:57 -0800112static int dn_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static struct dst_entry *dn_dst_check(struct dst_entry *, __u32);
David S. Miller0dbaee32010-12-13 12:52:14 -0800114static unsigned int dn_dst_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +0000115static unsigned int dn_dst_mtu(const struct dst_entry *dst);
David S. Miller62fa8a82011-01-26 20:51:05 -0800116static void dn_dst_destroy(struct dst_entry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct dst_entry *dn_dst_negative_advice(struct dst_entry *);
118static void dn_dst_link_failure(struct sk_buff *);
119static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu);
David S. Millerf894cbf2012-07-02 21:52:24 -0700120static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
121 struct sk_buff *skb,
122 const void *daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static int dn_route_input(struct sk_buff *);
124static void dn_run_flush(unsigned long dummy);
125
126static struct dn_rt_hash_bucket *dn_rt_hash_table;
Eric Dumazet95c96172012-04-15 05:58:06 +0000127static unsigned int dn_rt_hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129static struct timer_list dn_route_timer;
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700130static DEFINE_TIMER(dn_rt_flush_timer, dn_run_flush, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131int decnet_dst_gc_interval = 2;
132
133static struct dst_ops dn_dst_ops = {
134 .family = PF_DECnet,
Harvey Harrison09640e62009-02-01 00:45:17 -0800135 .protocol = cpu_to_be16(ETH_P_DNA_RT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .gc_thresh = 128,
137 .gc = dn_dst_gc,
138 .check = dn_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800139 .default_advmss = dn_dst_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000140 .mtu = dn_dst_mtu,
David S. Miller62fa8a82011-01-26 20:51:05 -0800141 .cow_metrics = dst_cow_metrics_generic,
142 .destroy = dn_dst_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .negative_advice = dn_dst_negative_advice,
144 .link_failure = dn_dst_link_failure,
145 .update_pmtu = dn_dst_update_pmtu,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700146 .neigh_lookup = dn_dst_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
David S. Miller62fa8a82011-01-26 20:51:05 -0800149static void dn_dst_destroy(struct dst_entry *dst)
150{
151 dst_destroy_metrics_generic(dst);
152}
153
Eric Dumazet95c96172012-04-15 05:58:06 +0000154static __inline__ unsigned int dn_hash(__le16 src, __le16 dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800156 __u16 tmp = (__u16 __force)(src ^ dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 tmp ^= (tmp >> 3);
158 tmp ^= (tmp >> 5);
159 tmp ^= (tmp >> 10);
Eric Dumazet95c96172012-04-15 05:58:06 +0000160 return dn_rt_hash_mask & (unsigned int)tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163static inline void dnrt_free(struct dn_route *rt)
164{
Changli Gaod8d1f302010-06-10 23:31:35 -0700165 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168static inline void dnrt_drop(struct dn_route *rt)
169{
Changli Gaod8d1f302010-06-10 23:31:35 -0700170 dst_release(&rt->dst);
171 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174static void dn_dst_check_expire(unsigned long dummy)
175{
176 int i;
Eric Dumazetfc766e42010-10-29 03:09:24 +0000177 struct dn_route *rt;
178 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 unsigned long now = jiffies;
180 unsigned long expire = 120 * HZ;
181
Eric Dumazetfc766e42010-10-29 03:09:24 +0000182 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 rtp = &dn_rt_hash_table[i].chain;
184
185 spin_lock(&dn_rt_hash_table[i].lock);
Eric Dumazetfc766e42010-10-29 03:09:24 +0000186 while ((rt = rcu_dereference_protected(*rtp,
187 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700188 if (atomic_read(&rt->dst.__refcnt) ||
189 (now - rt->dst.lastuse) < expire) {
190 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 continue;
192 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700193 *rtp = rt->dst.dn_next;
194 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 dnrt_free(rt);
196 }
197 spin_unlock(&dn_rt_hash_table[i].lock);
198
199 if ((jiffies - now) > 0)
200 break;
201 }
202
203 mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ);
204}
205
Daniel Lezcano569d3642008-01-18 03:56:57 -0800206static int dn_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Eric Dumazetfc766e42010-10-29 03:09:24 +0000208 struct dn_route *rt;
209 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int i;
211 unsigned long now = jiffies;
212 unsigned long expire = 10 * HZ;
213
Eric Dumazetfc766e42010-10-29 03:09:24 +0000214 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 spin_lock_bh(&dn_rt_hash_table[i].lock);
217 rtp = &dn_rt_hash_table[i].chain;
218
Eric Dumazetfc766e42010-10-29 03:09:24 +0000219 while ((rt = rcu_dereference_protected(*rtp,
220 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700221 if (atomic_read(&rt->dst.__refcnt) ||
222 (now - rt->dst.lastuse) < expire) {
223 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 continue;
225 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700226 *rtp = rt->dst.dn_next;
227 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 dnrt_drop(rt);
229 break;
230 }
231 spin_unlock_bh(&dn_rt_hash_table[i].lock);
232 }
233
234 return 0;
235}
236
237/*
238 * The decnet standards don't impose a particular minimum mtu, what they
239 * do insist on is that the routing layer accepts a datagram of at least
240 * 230 bytes long. Here we have to subtract the routing header length from
241 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
242 * assume the worst and use a long header size.
243 *
244 * We update both the mtu and the advertised mss (i.e. the segment size we
245 * advertise to the other end).
246 */
247static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu)
248{
David Miller27217452011-12-02 16:52:08 +0000249 struct neighbour *n = dst_get_neighbour_noref(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 u32 min_mtu = 230;
David S. Miller69cce1d2011-07-17 23:09:49 -0700251 struct dn_dev *dn;
252
253 dn = n ? rcu_dereference_raw(n->dev->dn_ptr) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (dn && dn->use_long == 0)
256 min_mtu -= 6;
257 else
258 min_mtu -= 21;
259
Satoru SATOH5ffc02a2008-05-04 22:14:42 -0700260 if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!(dst_metric_locked(dst, RTAX_MTU))) {
David S. Millerdefb3512010-12-08 21:16:57 -0800262 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 dst_set_expires(dst, dn_rt_mtu_expires);
264 }
265 if (!(dst_metric_locked(dst, RTAX_ADVMSS))) {
266 u32 mss = mtu - DN_MAX_NSP_DATA_HEADER;
David S. Miller0dbaee32010-12-13 12:52:14 -0800267 u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS);
268 if (!existing_mss || existing_mss > mss)
David S. Millerdefb3512010-12-08 21:16:57 -0800269 dst_metric_set(dst, RTAX_ADVMSS, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271 }
272}
273
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900274/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * When a route has been marked obsolete. (e.g. routing cache flush)
276 */
277static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie)
278{
279 return NULL;
280}
281
282static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst)
283{
284 dst_release(dst);
285 return NULL;
286}
287
288static void dn_dst_link_failure(struct sk_buff *skb)
289{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
David S. Millerbef55ae2011-03-12 17:17:10 -0500292static inline int compare_keys(struct flowidn *fl1, struct flowidn *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
David S. Millerbef55ae2011-03-12 17:17:10 -0500294 return ((fl1->daddr ^ fl2->daddr) |
295 (fl1->saddr ^ fl2->saddr) |
296 (fl1->flowidn_mark ^ fl2->flowidn_mark) |
297 (fl1->flowidn_scope ^ fl2->flowidn_scope) |
298 (fl1->flowidn_oif ^ fl2->flowidn_oif) |
299 (fl1->flowidn_iif ^ fl2->flowidn_iif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Eric Dumazet95c96172012-04-15 05:58:06 +0000302static int dn_insert_route(struct dn_route *rt, unsigned int hash, struct dn_route **rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Eric Dumazetfc766e42010-10-29 03:09:24 +0000304 struct dn_route *rth;
305 struct dn_route __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 unsigned long now = jiffies;
307
308 rthp = &dn_rt_hash_table[hash].chain;
309
310 spin_lock_bh(&dn_rt_hash_table[hash].lock);
Eric Dumazetfc766e42010-10-29 03:09:24 +0000311 while ((rth = rcu_dereference_protected(*rthp,
312 lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500313 if (compare_keys(&rth->fld, &rt->fld)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* Put it first */
Changli Gaod8d1f302010-06-10 23:31:35 -0700315 *rthp = rth->dst.dn_next;
316 rcu_assign_pointer(rth->dst.dn_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 dn_rt_hash_table[hash].chain);
318 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
319
Changli Gaod8d1f302010-06-10 23:31:35 -0700320 dst_use(&rth->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
322
323 dnrt_drop(rt);
324 *rp = rth;
325 return 0;
326 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700327 rthp = &rth->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
Changli Gaod8d1f302010-06-10 23:31:35 -0700330 rcu_assign_pointer(rt->dst.dn_next, dn_rt_hash_table[hash].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900332
Changli Gaod8d1f302010-06-10 23:31:35 -0700333 dst_use(&rt->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
335 *rp = rt;
336 return 0;
337}
338
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800339static void dn_run_flush(unsigned long dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 int i;
342 struct dn_route *rt, *next;
343
Eric Dumazetfc766e42010-10-29 03:09:24 +0000344 for (i = 0; i < dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 spin_lock_bh(&dn_rt_hash_table[i].lock);
346
Eric Dumazetfc766e42010-10-29 03:09:24 +0000347 if ((rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 goto nothing_to_declare;
349
Eric Dumazetfc766e42010-10-29 03:09:24 +0000350 for(; rt; rt = next) {
351 next = rcu_dereference_raw(rt->dst.dn_next);
352 RCU_INIT_POINTER(rt->dst.dn_next, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 dst_free((struct dst_entry *)rt);
354 }
355
356nothing_to_declare:
357 spin_unlock_bh(&dn_rt_hash_table[i].lock);
358 }
359}
360
361static DEFINE_SPINLOCK(dn_rt_flush_lock);
362
363void dn_rt_cache_flush(int delay)
364{
365 unsigned long now = jiffies;
366 int user_mode = !in_interrupt();
367
368 if (delay < 0)
369 delay = dn_rt_min_delay;
370
371 spin_lock_bh(&dn_rt_flush_lock);
372
373 if (del_timer(&dn_rt_flush_timer) && delay > 0 && dn_rt_deadline) {
374 long tmo = (long)(dn_rt_deadline - now);
375
376 if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay)
377 tmo = 0;
378
379 if (delay > tmo)
380 delay = tmo;
381 }
382
383 if (delay <= 0) {
384 spin_unlock_bh(&dn_rt_flush_lock);
385 dn_run_flush(0);
386 return;
387 }
388
389 if (dn_rt_deadline == 0)
390 dn_rt_deadline = now + dn_rt_max_delay;
391
392 dn_rt_flush_timer.expires = now + delay;
393 add_timer(&dn_rt_flush_timer);
394 spin_unlock_bh(&dn_rt_flush_lock);
395}
396
397/**
398 * dn_return_short - Return a short packet to its sender
399 * @skb: The packet to return
400 *
401 */
402static int dn_return_short(struct sk_buff *skb)
403{
404 struct dn_skb_cb *cb;
405 unsigned char *ptr;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800406 __le16 *src;
407 __le16 *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /* Add back headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700410 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
413 return NET_RX_DROP;
414
415 cb = DN_SKB_CB(skb);
416 /* Skip packet length and point to flags */
417 ptr = skb->data + 2;
418 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
419
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800420 dst = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800422 src = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 ptr += 2;
424 *ptr = 0; /* Zero hop count */
425
Ilpo Järvinena0bffff2009-03-21 13:36:17 -0700426 swap(*src, *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 skb->pkt_type = PACKET_OUTGOING;
429 dn_rt_finish_output(skb, NULL, NULL);
430 return NET_RX_SUCCESS;
431}
432
433/**
434 * dn_return_long - Return a long packet to its sender
435 * @skb: The long format packet to return
436 *
437 */
438static int dn_return_long(struct sk_buff *skb)
439{
440 struct dn_skb_cb *cb;
441 unsigned char *ptr;
442 unsigned char *src_addr, *dst_addr;
443 unsigned char tmp[ETH_ALEN];
444
445 /* Add back all headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700446 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
449 return NET_RX_DROP;
450
451 cb = DN_SKB_CB(skb);
452 /* Ignore packet length and point to flags */
453 ptr = skb->data + 2;
454
455 /* Skip padding */
456 if (*ptr & DN_RT_F_PF) {
457 char padlen = (*ptr & ~DN_RT_F_PF);
458 ptr += padlen;
459 }
460
461 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
462 ptr += 2;
463 dst_addr = ptr;
464 ptr += 8;
465 src_addr = ptr;
466 ptr += 6;
467 *ptr = 0; /* Zero hop count */
468
469 /* Swap source and destination */
470 memcpy(tmp, src_addr, ETH_ALEN);
471 memcpy(src_addr, dst_addr, ETH_ALEN);
472 memcpy(dst_addr, tmp, ETH_ALEN);
473
474 skb->pkt_type = PACKET_OUTGOING;
475 dn_rt_finish_output(skb, dst_addr, src_addr);
476 return NET_RX_SUCCESS;
477}
478
479/**
480 * dn_route_rx_packet - Try and find a route for an incoming packet
481 * @skb: The packet to find a route for
482 *
483 * Returns: result of input function if route is found, error code otherwise
484 */
485static int dn_route_rx_packet(struct sk_buff *skb)
486{
Eric Dumazetfc766e42010-10-29 03:09:24 +0000487 struct dn_skb_cb *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 int err;
489
490 if ((err = dn_route_input(skb)) == 0)
491 return dst_input(skb);
492
Eric Dumazetfc766e42010-10-29 03:09:24 +0000493 cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (decnet_debug_level & 4) {
495 char *devname = skb->dev ? skb->dev->name : "???";
Eric Dumazetfc766e42010-10-29 03:09:24 +0000496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 printk(KERN_DEBUG
498 "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 Whitehousec4ea94a2006-03-20 22:42:39 -0800499 (int)cb->rt_flags, devname, skb->len,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800500 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 err, skb->pkt_type);
502 }
503
504 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
Joe Perches06f8fe12011-07-01 09:43:03 +0000505 switch (cb->rt_flags & DN_RT_PKT_MSK) {
506 case DN_RT_PKT_SHORT:
507 return dn_return_short(skb);
508 case DN_RT_PKT_LONG:
509 return dn_return_long(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 }
512
513 kfree_skb(skb);
514 return NET_RX_DROP;
515}
516
517static int dn_route_rx_long(struct sk_buff *skb)
518{
519 struct dn_skb_cb *cb = DN_SKB_CB(skb);
520 unsigned char *ptr = skb->data;
521
522 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
523 goto drop_it;
524
525 skb_pull(skb, 20);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300526 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900528 /* Destination info */
529 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800530 cb->dst = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900531 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
532 goto drop_it;
533 ptr += 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900536 /* Source info */
537 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800538 cb->src = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900539 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
540 goto drop_it;
541 ptr += 6;
542 /* Other junk */
543 ptr++;
544 cb->hops = *ptr++; /* Visit Count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100546 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL,
547 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549drop_it:
550 kfree_skb(skb);
551 return NET_RX_DROP;
552}
553
554
555
556static int dn_route_rx_short(struct sk_buff *skb)
557{
558 struct dn_skb_cb *cb = DN_SKB_CB(skb);
559 unsigned char *ptr = skb->data;
560
561 if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */
562 goto drop_it;
563
564 skb_pull(skb, 5);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300565 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800567 cb->dst = *(__le16 *)ptr;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900568 ptr += 2;
569 cb->src = *(__le16 *)ptr;
570 ptr += 2;
571 cb->hops = *ptr & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100573 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL,
574 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576drop_it:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900577 kfree_skb(skb);
578 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581static int dn_route_discard(struct sk_buff *skb)
582{
583 /*
584 * I know we drop the packet here, but thats considered success in
585 * this case
586 */
587 kfree_skb(skb);
588 return NET_RX_SUCCESS;
589}
590
591static int dn_route_ptp_hello(struct sk_buff *skb)
592{
593 dn_dev_hello(skb);
594 dn_neigh_pointopoint_hello(skb);
595 return NET_RX_SUCCESS;
596}
597
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700598int dn_route_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 struct dn_skb_cb *cb;
601 unsigned char flags = 0;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800602 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
Eric Dumazetfc766e42010-10-29 03:09:24 +0000603 struct dn_dev *dn = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 unsigned char padlen = 0;
605
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700606 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700607 goto dump_it;
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (dn == NULL)
610 goto dump_it;
611
612 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
613 goto out;
614
615 if (!pskb_may_pull(skb, 3))
616 goto dump_it;
617
618 skb_pull(skb, 2);
619
620 if (len > skb->len)
621 goto dump_it;
622
623 skb_trim(skb, len);
624
625 flags = *skb->data;
626
627 cb = DN_SKB_CB(skb);
628 cb->stamp = jiffies;
629 cb->iif = dev->ifindex;
630
631 /*
632 * If we have padding, remove it.
633 */
634 if (flags & DN_RT_F_PF) {
635 padlen = flags & ~DN_RT_F_PF;
636 if (!pskb_may_pull(skb, padlen + 1))
637 goto dump_it;
638 skb_pull(skb, padlen);
639 flags = *skb->data;
640 }
641
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700642 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /*
645 * Weed out future version DECnet
646 */
647 if (flags & DN_RT_F_VER)
648 goto dump_it;
649
650 cb->rt_flags = flags;
651
652 if (decnet_debug_level & 1)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900653 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900655 (int)flags, (dev) ? dev->name : "???", len, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 padlen);
657
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900658 if (flags & DN_RT_PKT_CNTL) {
Herbert Xu364c6ba2006-06-09 16:10:40 -0700659 if (unlikely(skb_linearize(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 goto dump_it;
661
Joe Perches06f8fe12011-07-01 09:43:03 +0000662 switch (flags & DN_RT_CNTL_MSK) {
663 case DN_RT_PKT_INIT:
664 dn_dev_init_pkt(skb);
665 break;
666 case DN_RT_PKT_VERI:
667 dn_dev_veri_pkt(skb);
668 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670
671 if (dn->parms.state != DN_DEV_S_RU)
672 goto dump_it;
673
Joe Perches06f8fe12011-07-01 09:43:03 +0000674 switch (flags & DN_RT_CNTL_MSK) {
675 case DN_RT_PKT_HELO:
676 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
677 skb, skb->dev, NULL,
678 dn_route_ptp_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Joe Perches06f8fe12011-07-01 09:43:03 +0000680 case DN_RT_PKT_L1RT:
681 case DN_RT_PKT_L2RT:
682 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
683 skb, skb->dev, NULL,
684 dn_route_discard);
685 case DN_RT_PKT_ERTH:
686 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
687 skb, skb->dev, NULL,
688 dn_neigh_router_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Joe Perches06f8fe12011-07-01 09:43:03 +0000690 case DN_RT_PKT_EEDH:
691 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
692 skb, skb->dev, NULL,
693 dn_neigh_endnode_hello);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900694 }
695 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (dn->parms.state != DN_DEV_S_RU)
697 goto dump_it;
698
699 skb_pull(skb, 1); /* Pull flags */
700
Joe Perches06f8fe12011-07-01 09:43:03 +0000701 switch (flags & DN_RT_PKT_MSK) {
702 case DN_RT_PKT_LONG:
703 return dn_route_rx_long(skb);
704 case DN_RT_PKT_SHORT:
705 return dn_route_rx_short(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709dump_it:
710 kfree_skb(skb);
711out:
712 return NET_RX_DROP;
713}
714
David S. Miller8f40b162011-07-17 13:34:11 -0700715static int dn_to_neigh_output(struct sk_buff *skb)
716{
717 struct dst_entry *dst = skb_dst(skb);
David Miller27217452011-12-02 16:52:08 +0000718 struct neighbour *n = dst_get_neighbour_noref(dst);
David S. Miller8f40b162011-07-17 13:34:11 -0700719
720 return n->output(n, skb);
721}
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723static int dn_output(struct sk_buff *skb)
724{
Eric Dumazetadf30902009-06-02 05:19:30 +0000725 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct dn_route *rt = (struct dn_route *)dst;
727 struct net_device *dev = dst->dev;
728 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 int err = -EINVAL;
731
Jesper Juhl22b6a2e2012-02-05 12:28:57 +0000732 if (dst_get_neighbour_noref(dst) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 goto error;
734
735 skb->dev = dev;
736
737 cb->src = rt->rt_saddr;
738 cb->dst = rt->rt_daddr;
739
740 /*
741 * Always set the Intra-Ethernet bit on all outgoing packets
742 * originated on this node. Only valid flag from upper layers
743 * is return-to-sender-requested. Set hop count to 0 too.
744 */
745 cb->rt_flags &= ~DN_RT_F_RQR;
746 cb->rt_flags |= DN_RT_F_IE;
747 cb->hops = 0;
748
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100749 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT, skb, NULL, dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700750 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752error:
Joe Perchese87cc472012-05-13 21:56:26 +0000753 net_dbg_ratelimited("dn_output: This should not happen\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 kfree_skb(skb);
756
757 return err;
758}
759
760static int dn_forward(struct sk_buff *skb)
761{
762 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000763 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e42010-10-29 03:09:24 +0000764 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct dn_route *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int header_len;
767#ifdef CONFIG_NETFILTER
768 struct net_device *dev = skb->dev;
769#endif
770
771 if (skb->pkt_type != PACKET_HOST)
772 goto drop;
773
774 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000775 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700777 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto drop;
779
780 /*
781 * Hop count exceeded.
782 */
783 if (++cb->hops > 30)
784 goto drop;
785
Changli Gaod8d1f302010-06-10 23:31:35 -0700786 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 /*
789 * If packet goes out same interface it came in on, then set
790 * the Intra-Ethernet bit. This has no effect for short
791 * packets, so we don't need to test for them here.
792 */
793 cb->rt_flags &= ~DN_RT_F_IE;
794 if (rt->rt_flags & RTCF_DOREDIRECT)
795 cb->rt_flags |= DN_RT_F_IE;
796
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100797 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD, skb, dev, skb->dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700798 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800drop:
801 kfree_skb(skb);
802 return NET_RX_DROP;
803}
804
805/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * Used to catch bugs. This should never normally get
807 * called.
808 */
809static int dn_rt_bug(struct sk_buff *skb)
810{
Joe Perchese87cc472012-05-13 21:56:26 +0000811 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Joe Perchese87cc472012-05-13 21:56:26 +0000813 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
814 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 kfree_skb(skb);
817
Florian Westphal0e8635a2009-06-20 00:53:25 +0000818 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
David S. Miller0dbaee32010-12-13 12:52:14 -0800821static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
822{
823 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
824}
825
Steffen Klassertebb762f2011-11-23 02:12:51 +0000826static unsigned int dn_dst_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -0800827{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000828 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
829
830 return mtu ? : dst->dev->mtu;
David S. Millerd33e4552010-12-14 13:01:14 -0800831}
832
David S. Millerf894cbf2012-07-02 21:52:24 -0700833static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
834 struct sk_buff *skb,
835 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700836{
837 return __neigh_lookup_errno(&dn_neigh_table, daddr, dst->dev);
838}
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
841{
842 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700843 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800844 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 if (fi) {
848 if (DN_FIB_RES_GW(*res) &&
849 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
850 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800851 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 rt->rt_type = res->type;
854
David Miller27217452011-12-02 16:52:08 +0000855 if (dev != NULL && dst_get_neighbour_noref(&rt->dst) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
857 if (IS_ERR(n))
858 return PTR_ERR(n);
David S. Miller69cce1d2011-07-17 23:09:49 -0700859 dst_set_neighbour(&rt->dst, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861
David S. Millerd33e4552010-12-14 13:01:14 -0800862 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800863 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800864 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
865 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800866 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800867 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800868 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return 0;
871}
872
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800873static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800875 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 int match = 16;
877 while(tmp) {
878 tmp >>= 1;
879 match--;
880 }
881 return match;
882}
883
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800884static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800886 __le16 saddr = 0;
Eric Dumazetfc766e42010-10-29 03:09:24 +0000887 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct dn_ifaddr *ifa;
889 int best_match = 0;
890 int ret;
891
Eric Dumazetfc766e42010-10-29 03:09:24 +0000892 rcu_read_lock();
893 dn_db = rcu_dereference(dev->dn_ptr);
894 for (ifa = rcu_dereference(dn_db->ifa_list);
895 ifa != NULL;
896 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (ifa->ifa_scope > scope)
898 continue;
899 if (!daddr) {
900 saddr = ifa->ifa_local;
901 break;
902 }
903 ret = dn_match_addr(daddr, ifa->ifa_local);
904 if (ret > best_match)
905 saddr = ifa->ifa_local;
906 if (best_match == 0)
907 saddr = ifa->ifa_local;
908 }
Eric Dumazetfc766e42010-10-29 03:09:24 +0000909 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 return saddr;
912}
913
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800914static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
917}
918
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800919static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800921 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
923}
924
David S. Millerbef55ae2011-03-12 17:17:10 -0500925static int dn_route_output_slow(struct dst_entry **pprt, const struct flowidn *oldflp, int try_hard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
David S. Millerbef55ae2011-03-12 17:17:10 -0500927 struct flowidn fld = {
928 .daddr = oldflp->daddr,
929 .saddr = oldflp->saddr,
930 .flowidn_scope = RT_SCOPE_UNIVERSE,
931 .flowidn_mark = oldflp->flowidn_mark,
932 .flowidn_iif = init_net.loopback_dev->ifindex,
933 .flowidn_oif = oldflp->flowidn_oif,
David S. Miller1d28f422011-03-12 00:29:39 -0500934 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700936 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +0000938 unsigned int hash;
939 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
941 int err;
942 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800943 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 if (decnet_debug_level & 16)
946 printk(KERN_DEBUG
947 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
David S. Millerbef55ae2011-03-12 17:17:10 -0500948 " iif=%d oif=%d\n", le16_to_cpu(oldflp->daddr),
949 le16_to_cpu(oldflp->saddr),
950 oldflp->flowidn_mark, init_net.loopback_dev->ifindex,
951 oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 /* If we have an output interface, verify its a DECnet device */
David S. Millerbef55ae2011-03-12 17:17:10 -0500954 if (oldflp->flowidn_oif) {
955 dev_out = dev_get_by_index(&init_net, oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 err = -ENODEV;
957 if (dev_out && dev_out->dn_ptr == NULL) {
958 dev_put(dev_out);
959 dev_out = NULL;
960 }
961 if (dev_out == NULL)
962 goto out;
963 }
964
965 /* If we have a source address, verify that its a local address */
David S. Millerbef55ae2011-03-12 17:17:10 -0500966 if (oldflp->saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 err = -EADDRNOTAVAIL;
968
969 if (dev_out) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500970 if (dn_dev_islocal(dev_out, oldflp->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 goto source_ok;
972 dev_put(dev_out);
973 goto out;
974 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800975 rcu_read_lock();
976 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700977 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 continue;
David S. Millerbef55ae2011-03-12 17:17:10 -0500979 if (!dn_dev_islocal(dev, oldflp->saddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700980 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700981 if ((dev->flags & IFF_LOOPBACK) &&
David S. Millerbef55ae2011-03-12 17:17:10 -0500982 oldflp->daddr &&
983 !dn_dev_islocal(dev, oldflp->daddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700984 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700985
986 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700987 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800989 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (dev_out == NULL)
991 goto out;
992 dev_hold(dev_out);
993source_ok:
994 ;
995 }
996
997 /* No destination? Assume its local */
David S. Millerbef55ae2011-03-12 17:17:10 -0500998 if (!fld.daddr) {
999 fld.daddr = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 err = -EADDRNOTAVAIL;
1002 if (dev_out)
1003 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001004 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001006 if (!fld.daddr) {
1007 fld.daddr =
1008 fld.saddr = dnet_select_source(dev_out, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 RT_SCOPE_HOST);
David S. Millerbef55ae2011-03-12 17:17:10 -05001010 if (!fld.daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 goto out;
1012 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001013 fld.flowidn_oif = init_net.loopback_dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 res.type = RTN_LOCAL;
1015 goto make_route;
1016 }
1017
1018 if (decnet_debug_level & 16)
1019 printk(KERN_DEBUG
1020 "dn_route_output_slow: initial checks complete."
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001021 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
David S. Millerbef55ae2011-03-12 17:17:10 -05001022 le16_to_cpu(fld.daddr), le16_to_cpu(fld.saddr),
1023 fld.flowidn_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 /*
1026 * N.B. If the kernel is compiled without router support then
1027 * dn_fib_lookup() will evaluate to non-zero so this if () block
1028 * will always be executed.
1029 */
1030 err = -ESRCH;
David S. Millerbef55ae2011-03-12 17:17:10 -05001031 if (try_hard || (err = dn_fib_lookup(&fld, &res)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 struct dn_dev *dn_db;
1033 if (err != -ESRCH)
1034 goto out;
1035 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001036 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 * routing in endnodes which is described in the DECnet routing
1038 * docs
1039 *
1040 * If we are not trying hard, look in neighbour cache.
1041 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001042 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 * here
1044 */
1045 if (!try_hard) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001046 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (neigh) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001048 if ((oldflp->flowidn_oif &&
1049 (neigh->dev->ifindex != oldflp->flowidn_oif)) ||
1050 (oldflp->saddr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 (!dn_dev_islocal(neigh->dev,
David S. Millerbef55ae2011-03-12 17:17:10 -05001052 oldflp->saddr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 neigh_release(neigh);
1054 neigh = NULL;
1055 } else {
1056 if (dev_out)
1057 dev_put(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001058 if (dn_dev_islocal(neigh->dev, fld.daddr)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001059 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 res.type = RTN_LOCAL;
1061 } else {
1062 dev_out = neigh->dev;
1063 }
1064 dev_hold(dev_out);
1065 goto select_source;
1066 }
1067 }
1068 }
1069
1070 /* Not there? Perhaps its a local address */
1071 if (dev_out == NULL)
1072 dev_out = dn_dev_get_default();
1073 err = -ENODEV;
1074 if (dev_out == NULL)
1075 goto out;
Eric Dumazetfc766e42010-10-29 03:09:24 +00001076 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /* Possible improvement - check all devices for local addr */
David S. Millerbef55ae2011-03-12 17:17:10 -05001078 if (dn_dev_islocal(dev_out, fld.daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001080 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 dev_hold(dev_out);
1082 res.type = RTN_LOCAL;
1083 goto select_source;
1084 }
1085 /* Not local either.... try sending it to the default router */
1086 neigh = neigh_clone(dn_db->router);
1087 BUG_ON(neigh && neigh->dev != dev_out);
1088
1089 /* Ok then, we assume its directly connected and move on */
1090select_source:
1091 if (neigh)
1092 gateway = ((struct dn_neigh *)neigh)->addr;
1093 if (gateway == 0)
David S. Millerbef55ae2011-03-12 17:17:10 -05001094 gateway = fld.daddr;
1095 if (fld.saddr == 0) {
1096 fld.saddr = dnet_select_source(dev_out, gateway,
1097 res.type == RTN_LOCAL ?
1098 RT_SCOPE_HOST :
1099 RT_SCOPE_LINK);
1100 if (fld.saddr == 0 && res.type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 goto e_addr;
1102 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001103 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 goto make_route;
1105 }
1106 free_res = 1;
1107
1108 if (res.type == RTN_NAT)
1109 goto e_inval;
1110
1111 if (res.type == RTN_LOCAL) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001112 if (!fld.saddr)
1113 fld.saddr = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (dev_out)
1115 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001116 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001118 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (res.fi)
1120 dn_fib_info_put(res.fi);
1121 res.fi = NULL;
1122 goto make_route;
1123 }
1124
David S. Millerbef55ae2011-03-12 17:17:10 -05001125 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1126 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001128 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * We could add some logic to deal with default routes here and
1130 * get rid of some of the special casing above.
1131 */
1132
David S. Millerbef55ae2011-03-12 17:17:10 -05001133 if (!fld.saddr)
1134 fld.saddr = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (dev_out)
1137 dev_put(dev_out);
1138 dev_out = DN_FIB_RES_DEV(res);
1139 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001140 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 gateway = DN_FIB_RES_GW(res);
1142
1143make_route:
1144 if (dev_out->flags & IFF_LOOPBACK)
1145 flags |= RTCF_LOCAL;
1146
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001147 rt = dst_alloc(&dn_dst_ops, dev_out, 1, 0, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (rt == NULL)
1149 goto e_nobufs;
1150
David S. Millercf911662011-04-28 14:31:47 -07001151 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001152 rt->fld.saddr = oldflp->saddr;
1153 rt->fld.daddr = oldflp->daddr;
1154 rt->fld.flowidn_oif = oldflp->flowidn_oif;
1155 rt->fld.flowidn_iif = 0;
1156 rt->fld.flowidn_mark = oldflp->flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
David S. Millerbef55ae2011-03-12 17:17:10 -05001158 rt->rt_saddr = fld.saddr;
1159 rt->rt_daddr = fld.daddr;
1160 rt->rt_gateway = gateway ? gateway : fld.daddr;
1161 rt->rt_local_src = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
David S. Millerbef55ae2011-03-12 17:17:10 -05001163 rt->rt_dst_map = fld.daddr;
1164 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
David S. Miller69cce1d2011-07-17 23:09:49 -07001166 dst_set_neighbour(&rt->dst, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 neigh = NULL;
1168
Changli Gaod8d1f302010-06-10 23:31:35 -07001169 rt->dst.lastuse = jiffies;
1170 rt->dst.output = dn_output;
1171 rt->dst.input = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 rt->rt_flags = flags;
1173 if (flags & RTCF_LOCAL)
Changli Gaod8d1f302010-06-10 23:31:35 -07001174 rt->dst.input = dn_nsp_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 err = dn_rt_set_next_hop(rt, &res);
1177 if (err)
1178 goto e_neighbour;
1179
David S. Millerbef55ae2011-03-12 17:17:10 -05001180 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1182
1183done:
1184 if (neigh)
1185 neigh_release(neigh);
1186 if (free_res)
1187 dn_fib_res_put(&res);
1188 if (dev_out)
1189 dev_put(dev_out);
1190out:
1191 return err;
1192
1193e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001194 err = -EADDRNOTAVAIL;
1195 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196e_inval:
1197 err = -EINVAL;
1198 goto done;
1199e_nobufs:
1200 err = -ENOBUFS;
1201 goto done;
1202e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001203 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 goto e_nobufs;
1205}
1206
1207
1208/*
1209 * N.B. The flags may be moved into the flowi at some future stage.
1210 */
David S. Millerbef55ae2011-03-12 17:17:10 -05001211static int __dn_route_output_key(struct dst_entry **pprt, const struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Eric Dumazet95c96172012-04-15 05:58:06 +00001213 unsigned int hash = dn_hash(flp->saddr, flp->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 struct dn_route *rt = NULL;
1215
1216 if (!(flags & MSG_TRYHARD)) {
1217 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001218 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001219 rt = rcu_dereference_bh(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001220 if ((flp->daddr == rt->fld.daddr) &&
1221 (flp->saddr == rt->fld.saddr) &&
1222 (flp->flowidn_mark == rt->fld.flowidn_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001223 dn_is_output_route(rt) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001224 (rt->fld.flowidn_oif == flp->flowidn_oif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001225 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001227 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return 0;
1229 }
1230 }
1231 rcu_read_unlock_bh();
1232 }
1233
1234 return dn_route_output_slow(pprt, flp, flags);
1235}
1236
David S. Millerbef55ae2011-03-12 17:17:10 -05001237static int dn_route_output_key(struct dst_entry **pprt, struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
1239 int err;
1240
1241 err = __dn_route_output_key(pprt, flp, flags);
David S. Millerbef55ae2011-03-12 17:17:10 -05001242 if (err == 0 && flp->flowidn_proto) {
1243 *pprt = xfrm_lookup(&init_net, *pprt,
1244 flowidn_to_flowi(flp), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001245 if (IS_ERR(*pprt)) {
1246 err = PTR_ERR(*pprt);
1247 *pprt = NULL;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250 return err;
1251}
1252
David S. Millerbef55ae2011-03-12 17:17:10 -05001253int dn_route_output_sock(struct dst_entry **pprt, struct flowidn *fl, struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 int err;
1256
1257 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Millerbef55ae2011-03-12 17:17:10 -05001258 if (err == 0 && fl->flowidn_proto) {
David S. Miller80c0bc92011-03-01 14:36:37 -08001259 if (!(flags & MSG_DONTWAIT))
David S. Millerbef55ae2011-03-12 17:17:10 -05001260 fl->flowidn_flags |= FLOWI_FLAG_CAN_SLEEP;
1261 *pprt = xfrm_lookup(&init_net, *pprt,
1262 flowidn_to_flowi(fl), sk, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001263 if (IS_ERR(*pprt)) {
1264 err = PTR_ERR(*pprt);
1265 *pprt = NULL;
1266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268 return err;
1269}
1270
1271static int dn_route_input_slow(struct sk_buff *skb)
1272{
1273 struct dn_route *rt = NULL;
1274 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1275 struct net_device *in_dev = skb->dev;
1276 struct net_device *out_dev = NULL;
1277 struct dn_dev *dn_db;
1278 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +00001279 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001281 __le16 gateway = 0;
1282 __le16 local_src = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001283 struct flowidn fld = {
1284 .daddr = cb->dst,
1285 .saddr = cb->src,
1286 .flowidn_scope = RT_SCOPE_UNIVERSE,
1287 .flowidn_mark = skb->mark,
1288 .flowidn_iif = skb->dev->ifindex,
David S. Miller1d28f422011-03-12 00:29:39 -05001289 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1291 int err = -EINVAL;
1292 int free_res = 0;
1293
1294 dev_hold(in_dev);
1295
Eric Dumazetfc766e42010-10-29 03:09:24 +00001296 if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 goto out;
1298
1299 /* Zero source addresses are not allowed */
David S. Millerbef55ae2011-03-12 17:17:10 -05001300 if (fld.saddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 goto out;
1302
1303 /*
1304 * In this case we've just received a packet from a source
1305 * outside ourselves pretending to come from us. We don't
1306 * allow it any further to prevent routing loops, spoofing and
1307 * other nasties. Loopback packets already have the dst attached
1308 * so this only affects packets which have originated elsewhere.
1309 */
1310 err = -ENOTUNIQ;
1311 if (dn_dev_islocal(in_dev, cb->src))
1312 goto out;
1313
David S. Millerbef55ae2011-03-12 17:17:10 -05001314 err = dn_fib_lookup(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (err) {
1316 if (err != -ESRCH)
1317 goto out;
1318 /*
1319 * Is the destination us ?
1320 */
1321 if (!dn_dev_islocal(in_dev, cb->dst))
1322 goto e_inval;
1323
1324 res.type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 } else {
David S. Millerbef55ae2011-03-12 17:17:10 -05001326 __le16 src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 free_res = 1;
1328
1329 out_dev = DN_FIB_RES_DEV(res);
1330 if (out_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00001331 net_crit_ratelimited("Bug in dn_route_input_slow() No output device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 goto e_inval;
1333 }
1334 dev_hold(out_dev);
1335
1336 if (res.r)
David S. Millerbef55ae2011-03-12 17:17:10 -05001337 src_map = fld.saddr; /* no NAT support for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 gateway = DN_FIB_RES_GW(res);
1340 if (res.type == RTN_NAT) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001341 fld.daddr = dn_fib_rules_map_destination(fld.daddr, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 dn_fib_res_put(&res);
1343 free_res = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001344 if (dn_fib_lookup(&fld, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 goto e_inval;
1346 free_res = 1;
1347 if (res.type != RTN_UNICAST)
1348 goto e_inval;
1349 flags |= RTCF_DNAT;
David S. Millerbef55ae2011-03-12 17:17:10 -05001350 gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001352 fld.saddr = src_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354
1355 switch(res.type) {
1356 case RTN_UNICAST:
1357 /*
1358 * Forwarding check here, we only check for forwarding
1359 * being turned off, if you want to only forward intra
1360 * area, its up to you to set the routing tables up
1361 * correctly.
1362 */
1363 if (dn_db->parms.forwarding == 0)
1364 goto e_inval;
1365
David S. Millerbef55ae2011-03-12 17:17:10 -05001366 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1367 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001369 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1371 * flag as a hint to set the intra-ethernet bit when
1372 * forwarding. If we've got NAT in operation, we don't do
1373 * this optimisation.
1374 */
1375 if (out_dev == in_dev && !(flags & RTCF_NAT))
1376 flags |= RTCF_DOREDIRECT;
1377
1378 local_src = DN_FIB_RES_PREFSRC(res);
1379
1380 case RTN_BLACKHOLE:
1381 case RTN_UNREACHABLE:
1382 break;
1383 case RTN_LOCAL:
1384 flags |= RTCF_LOCAL;
David S. Millerbef55ae2011-03-12 17:17:10 -05001385 fld.saddr = cb->dst;
1386 fld.daddr = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /* Routing tables gave us a gateway */
1389 if (gateway)
1390 goto make_route;
1391
1392 /* Packet was intra-ethernet, so we know its on-link */
Steven Whitehouse3a31b9d2006-10-18 20:45:22 -07001393 if (cb->rt_flags & DN_RT_F_IE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 gateway = cb->src;
1395 flags |= RTCF_DIRECTSRC;
1396 goto make_route;
1397 }
1398
1399 /* Use the default router if there is one */
1400 neigh = neigh_clone(dn_db->router);
1401 if (neigh) {
1402 gateway = ((struct dn_neigh *)neigh)->addr;
1403 goto make_route;
1404 }
1405
1406 /* Close eyes and pray */
1407 gateway = cb->src;
1408 flags |= RTCF_DIRECTSRC;
1409 goto make_route;
1410 default:
1411 goto e_inval;
1412 }
1413
1414make_route:
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001415 rt = dst_alloc(&dn_dst_ops, out_dev, 0, 0, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (rt == NULL)
1417 goto e_nobufs;
1418
David S. Millercf911662011-04-28 14:31:47 -07001419 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001420 rt->rt_saddr = fld.saddr;
1421 rt->rt_daddr = fld.daddr;
1422 rt->rt_gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (gateway)
1424 rt->rt_gateway = gateway;
1425 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1426
David S. Millerbef55ae2011-03-12 17:17:10 -05001427 rt->rt_dst_map = fld.daddr;
1428 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
David S. Millerbef55ae2011-03-12 17:17:10 -05001430 rt->fld.saddr = cb->src;
1431 rt->fld.daddr = cb->dst;
1432 rt->fld.flowidn_oif = 0;
1433 rt->fld.flowidn_iif = in_dev->ifindex;
1434 rt->fld.flowidn_mark = fld.flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
David S. Miller69cce1d2011-07-17 23:09:49 -07001436 dst_set_neighbour(&rt->dst, neigh);
Changli Gaod8d1f302010-06-10 23:31:35 -07001437 rt->dst.lastuse = jiffies;
1438 rt->dst.output = dn_rt_bug;
Joe Perches06f8fe12011-07-01 09:43:03 +00001439 switch (res.type) {
1440 case RTN_UNICAST:
1441 rt->dst.input = dn_forward;
1442 break;
1443 case RTN_LOCAL:
1444 rt->dst.output = dn_output;
1445 rt->dst.input = dn_nsp_rx;
1446 rt->dst.dev = in_dev;
1447 flags |= RTCF_LOCAL;
1448 break;
1449 default:
1450 case RTN_UNREACHABLE:
1451 case RTN_BLACKHOLE:
1452 rt->dst.input = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454 rt->rt_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 err = dn_rt_set_next_hop(rt, &res);
1457 if (err)
1458 goto e_neighbour;
1459
David S. Millerbef55ae2011-03-12 17:17:10 -05001460 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Eric Dumazetadf30902009-06-02 05:19:30 +00001461 dn_insert_route(rt, hash, &rt);
Changli Gaod8d1f302010-06-10 23:31:35 -07001462 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464done:
1465 if (neigh)
1466 neigh_release(neigh);
1467 if (free_res)
1468 dn_fib_res_put(&res);
1469 dev_put(in_dev);
1470 if (out_dev)
1471 dev_put(out_dev);
1472out:
1473 return err;
1474
1475e_inval:
1476 err = -EINVAL;
1477 goto done;
1478
1479e_nobufs:
1480 err = -ENOBUFS;
1481 goto done;
1482
1483e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001484 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 goto done;
1486}
1487
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001488static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
1490 struct dn_route *rt;
1491 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazet95c96172012-04-15 05:58:06 +00001492 unsigned int hash = dn_hash(cb->src, cb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Eric Dumazetadf30902009-06-02 05:19:30 +00001494 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return 0;
1496
1497 rcu_read_lock();
1498 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
Changli Gaod8d1f302010-06-10 23:31:35 -07001499 rt = rcu_dereference(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001500 if ((rt->fld.saddr == cb->src) &&
1501 (rt->fld.daddr == cb->dst) &&
1502 (rt->fld.flowidn_oif == 0) &&
1503 (rt->fld.flowidn_mark == skb->mark) &&
1504 (rt->fld.flowidn_iif == cb->iif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001505 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001507 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return 0;
1509 }
1510 }
1511 rcu_read_unlock();
1512
1513 return dn_route_input_slow(skb);
1514}
1515
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001516static int dn_rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1517 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Eric Dumazetadf30902009-06-02 05:19:30 +00001519 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 struct rtmsg *r;
1521 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08001522 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
David S. Miller737100e2012-06-26 21:46:19 -07001524 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*r), flags);
1525 if (!nlh)
Thomas Graf6b609782012-06-26 23:36:15 +00001526 return -EMSGSIZE;
1527
David S. Miller737100e2012-06-26 21:46:19 -07001528 r = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 r->rtm_family = AF_DECnet;
1530 r->rtm_dst_len = 16;
1531 r->rtm_src_len = 0;
1532 r->rtm_tos = 0;
1533 r->rtm_table = RT_TABLE_MAIN;
1534 r->rtm_type = rt->rt_type;
1535 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1536 r->rtm_scope = RT_SCOPE_UNIVERSE;
1537 r->rtm_protocol = RTPROT_UNSPEC;
Thomas Graf6b609782012-06-26 23:36:15 +00001538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (rt->rt_flags & RTCF_NOTIFY)
1540 r->rtm_flags |= RTM_F_NOTIFY;
Thomas Graf6b609782012-06-26 23:36:15 +00001541
1542 if (nla_put_u32(skb, RTA_TABLE, RT_TABLE_MAIN) < 0 ||
1543 nla_put_le16(skb, RTA_DST, rt->rt_daddr) < 0)
1544 goto errout;
1545
David S. Millerbef55ae2011-03-12 17:17:10 -05001546 if (rt->fld.saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 r->rtm_src_len = 16;
Thomas Graf6b609782012-06-26 23:36:15 +00001548 if (nla_put_le16(skb, RTA_SRC, rt->fld.saddr) < 0)
1549 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
Thomas Graf6b609782012-06-26 23:36:15 +00001551 if (rt->dst.dev &&
1552 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex) < 0)
1553 goto errout;
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 /*
1556 * Note to self - change this if input routes reverse direction when
1557 * they deal only with inputs and not with replies like they do
1558 * currently.
1559 */
Thomas Graf6b609782012-06-26 23:36:15 +00001560 if (nla_put_le16(skb, RTA_PREFSRC, rt->rt_local_src) < 0)
1561 goto errout;
1562
1563 if (rt->rt_daddr != rt->rt_gateway &&
1564 nla_put_le16(skb, RTA_GATEWAY, rt->rt_gateway) < 0)
1565 goto errout;
1566
David S. Millerdefb3512010-12-08 21:16:57 -08001567 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001568 goto errout;
1569
Changli Gaod8d1f302010-06-10 23:31:35 -07001570 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
1571 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, 0, 0, expires,
1572 rt->dst.error) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001573 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Thomas Graf6b609782012-06-26 23:36:15 +00001575 if (dn_is_input_route(rt) &&
1576 nla_put_u32(skb, RTA_IIF, rt->fld.flowidn_iif) < 0)
1577 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Thomas Graf6b609782012-06-26 23:36:15 +00001579 return nlmsg_end(skb, nlh);
1580
1581errout:
1582 nlmsg_cancel(skb, nlh);
1583 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
1586/*
1587 * This is called by both endnodes and routers now.
1588 */
Thomas Graffa34ddd2007-03-22 11:57:46 -07001589static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001591 struct net *net = sock_net(in_skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 struct rtattr **rta = arg;
David S. Miller737100e2012-06-26 21:46:19 -07001593 struct rtmsg *rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 struct dn_route *rt = NULL;
1595 struct dn_skb_cb *cb;
1596 int err;
1597 struct sk_buff *skb;
David S. Millerbef55ae2011-03-12 17:17:10 -05001598 struct flowidn fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001600 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001601 return -EINVAL;
1602
David S. Millerbef55ae2011-03-12 17:17:10 -05001603 memset(&fld, 0, sizeof(fld));
1604 fld.flowidn_proto = DNPROTO_NSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Thomas Graf6b609782012-06-26 23:36:15 +00001606 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (skb == NULL)
1608 return -ENOBUFS;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001609 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 cb = DN_SKB_CB(skb);
1611
1612 if (rta[RTA_SRC-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001613 memcpy(&fld.saddr, RTA_DATA(rta[RTA_SRC-1]), 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (rta[RTA_DST-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001615 memcpy(&fld.daddr, RTA_DATA(rta[RTA_DST-1]), 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (rta[RTA_IIF-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001617 memcpy(&fld.flowidn_iif, RTA_DATA(rta[RTA_IIF-1]), sizeof(int));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
David S. Millerbef55ae2011-03-12 17:17:10 -05001619 if (fld.flowidn_iif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 struct net_device *dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001621 if ((dev = dev_get_by_index(&init_net, fld.flowidn_iif)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 kfree_skb(skb);
1623 return -ENODEV;
1624 }
1625 if (!dev->dn_ptr) {
1626 dev_put(dev);
1627 kfree_skb(skb);
1628 return -ENODEV;
1629 }
YOSHIFUJI Hideakib98999d2007-12-12 03:51:49 +09001630 skb->protocol = htons(ETH_P_DNA_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 skb->dev = dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001632 cb->src = fld.saddr;
1633 cb->dst = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 local_bh_disable();
1635 err = dn_route_input(skb);
1636 local_bh_enable();
1637 memset(cb, 0, sizeof(struct dn_skb_cb));
Eric Dumazetadf30902009-06-02 05:19:30 +00001638 rt = (struct dn_route *)skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001639 if (!err && -rt->dst.error)
1640 err = rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 } else {
1642 int oif = 0;
1643 if (rta[RTA_OIF - 1])
1644 memcpy(&oif, RTA_DATA(rta[RTA_OIF - 1]), sizeof(int));
David S. Millerbef55ae2011-03-12 17:17:10 -05001645 fld.flowidn_oif = oif;
1646 err = dn_route_output_key((struct dst_entry **)&rt, &fld, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
1648
1649 if (skb->dev)
1650 dev_put(skb->dev);
1651 skb->dev = NULL;
1652 if (err)
1653 goto out_free;
Changli Gaod8d1f302010-06-10 23:31:35 -07001654 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (rtm->rtm_flags & RTM_F_NOTIFY)
1656 rt->rt_flags |= RTCF_NOTIFY;
1657
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001658 err = dn_rt_fill_info(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq, RTM_NEWROUTE, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 if (err == 0)
1661 goto out_free;
1662 if (err < 0) {
1663 err = -EMSGSIZE;
1664 goto out_free;
1665 }
1666
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001667 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669out_free:
1670 kfree_skb(skb);
1671 return err;
1672}
1673
1674/*
1675 * For routers, this is called from dn_fib_dump, but for endnodes its
1676 * called directly from the rtnetlink dispatch table.
1677 */
1678int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1679{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001680 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 struct dn_route *rt;
1682 int h, s_h;
1683 int idx, s_idx;
Thomas Graf6b609782012-06-26 23:36:15 +00001684 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001686 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001687 return 0;
1688
Thomas Graf6b609782012-06-26 23:36:15 +00001689 if (nlmsg_len(cb->nlh) < sizeof(struct rtmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return -EINVAL;
Thomas Graf6b609782012-06-26 23:36:15 +00001691
1692 rtm = nlmsg_data(cb->nlh);
1693 if (!(rtm->rtm_flags & RTM_F_CLONED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 return 0;
1695
1696 s_h = cb->args[0];
1697 s_idx = idx = cb->args[1];
1698 for(h = 0; h <= dn_rt_hash_mask; h++) {
1699 if (h < s_h)
1700 continue;
1701 if (h > s_h)
1702 s_idx = 0;
1703 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001704 for(rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001706 rt = rcu_dereference_bh(rt->dst.dn_next), idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (idx < s_idx)
1708 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001709 skb_dst_set(skb, dst_clone(&rt->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).pid,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001711 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001712 1, NLM_F_MULTI) <= 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001713 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 rcu_read_unlock_bh();
1715 goto done;
1716 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001717 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719 rcu_read_unlock_bh();
1720 }
1721
1722done:
1723 cb->args[0] = h;
1724 cb->args[1] = idx;
1725 return skb->len;
1726}
1727
1728#ifdef CONFIG_PROC_FS
1729struct dn_rt_cache_iter_state {
1730 int bucket;
1731};
1732
1733static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1734{
1735 struct dn_route *rt = NULL;
1736 struct dn_rt_cache_iter_state *s = seq->private;
1737
1738 for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
1739 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001740 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (rt)
1742 break;
1743 rcu_read_unlock_bh();
1744 }
Paul E. McKenneya898def2010-02-22 17:04:49 -08001745 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
1748static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1749{
Eric Dumazet0d89d792008-01-10 22:35:21 -08001750 struct dn_rt_cache_iter_state *s = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Eric Dumazetfc766e42010-10-29 03:09:24 +00001752 rt = rcu_dereference_bh(rt->dst.dn_next);
1753 while (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 rcu_read_unlock_bh();
1755 if (--s->bucket < 0)
1756 break;
1757 rcu_read_lock_bh();
Eric Dumazetfc766e42010-10-29 03:09:24 +00001758 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
Eric Dumazetfc766e42010-10-29 03:09:24 +00001760 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
1763static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1764{
1765 struct dn_route *rt = dn_rt_cache_get_first(seq);
1766
1767 if (rt) {
1768 while(*pos && (rt = dn_rt_cache_get_next(seq, rt)))
1769 --*pos;
1770 }
1771 return *pos ? NULL : rt;
1772}
1773
1774static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1775{
1776 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1777 ++*pos;
1778 return rt;
1779}
1780
1781static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1782{
1783 if (v)
1784 rcu_read_unlock_bh();
1785}
1786
1787static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1788{
1789 struct dn_route *rt = v;
1790 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1791
1792 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07001793 rt->dst.dev ? rt->dst.dev->name : "*",
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001794 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1795 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
Changli Gaod8d1f302010-06-10 23:31:35 -07001796 atomic_read(&rt->dst.__refcnt),
1797 rt->dst.__use,
1798 (int) dst_metric(&rt->dst, RTAX_RTT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return 0;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001800}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001802static const struct seq_operations dn_rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 .start = dn_rt_cache_seq_start,
1804 .next = dn_rt_cache_seq_next,
1805 .stop = dn_rt_cache_seq_stop,
1806 .show = dn_rt_cache_seq_show,
1807};
1808
1809static int dn_rt_cache_seq_open(struct inode *inode, struct file *file)
1810{
Pavel Emelyanov31164082007-10-10 02:30:23 -07001811 return seq_open_private(file, &dn_rt_cache_seq_ops,
1812 sizeof(struct dn_rt_cache_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
Arjan van de Ven9a321442007-02-12 00:55:35 -08001815static const struct file_operations dn_rt_cache_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 .owner = THIS_MODULE,
1817 .open = dn_rt_cache_seq_open,
1818 .read = seq_read,
1819 .llseek = seq_lseek,
1820 .release = seq_release_private,
1821};
1822
1823#endif /* CONFIG_PROC_FS */
1824
1825void __init dn_route_init(void)
1826{
1827 int i, goal, order;
1828
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07001829 dn_dst_ops.kmem_cachep =
1830 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001831 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001832 dst_entries_init(&dn_dst_ops);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001833 setup_timer(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1835 add_timer(&dn_route_timer);
1836
Jan Beulich44813742009-09-21 17:03:05 -07001837 goal = totalram_pages >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 for(order = 0; (1UL << order) < goal; order++)
1840 /* NOTHING */;
1841
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001842 /*
1843 * Only want 1024 entries max, since the table is very, very unlikely
1844 * to be larger than that.
1845 */
1846 while(order && ((((1UL << order) * PAGE_SIZE) /
1847 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1848 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001850 do {
1851 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1852 sizeof(struct dn_rt_hash_bucket);
1853 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1854 dn_rt_hash_mask--;
1855 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1856 __get_free_pages(GFP_ATOMIC, order);
1857 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001860 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001862 printk(KERN_INFO
1863 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1864 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1866
1867 dn_rt_hash_mask--;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001868 for(i = 0; i <= dn_rt_hash_mask; i++) {
1869 spin_lock_init(&dn_rt_hash_table[i].lock);
1870 dn_rt_hash_table[i].chain = NULL;
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001873 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001875 proc_net_fops_create(&init_net, "decnet_cache", S_IRUGO, &dn_rt_cache_seq_fops);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001876
1877#ifdef CONFIG_DECNET_ROUTER
Greg Rosec7ac8672011-06-10 01:27:09 +00001878 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
1879 dn_fib_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001880#else
1881 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
Greg Rosec7ac8672011-06-10 01:27:09 +00001882 dn_cache_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001883#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}
1885
1886void __exit dn_route_cleanup(void)
1887{
1888 del_timer(&dn_route_timer);
1889 dn_run_flush(0);
1890
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001891 proc_net_remove(&init_net, "decnet_cache");
Eric Dumazetfc66f952010-10-08 06:37:34 +00001892 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894