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