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.
6 * DECnet Routing Functions (Endnode and Router)
8 * Authors: Steve Whitehouse <SteveW@ACM.org>
9 * Eduardo Marcelo Serrat <emserrat@geocities.com>
12 * Steve Whitehouse : Fixes to allow "intra-ethernet" and
13 * "return-to-sender" bits on outgoing
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
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
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
44 /******************************************************************************
45 (c) 1995-1998 E.M. Serrat emserrat@geocities.com
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
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 *******************************************************************************/
58 #include <linux/errno.h>
59 #include <linux/types.h>
60 #include <linux/socket.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>
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>
80 #include <net/neighbour.h>
83 #include <net/fib_rules.h>
85 #include <net/dn_dev.h>
86 #include <net/dn_nsp.h>
87 #include <net/dn_route.h>
88 #include <net/dn_neigh.h>
89 #include <net/dn_fib.h>
91 struct dn_rt_hash_bucket
93 struct dn_route
*chain
;
95 } __attribute__((__aligned__(8)));
97 extern struct neigh_table dn_neigh_table
;
100 static unsigned char dn_hiord_addr
[6] = {0xAA,0x00,0x04,0x00,0x00,0x00};
102 static const int dn_rt_min_delay
= 2 * HZ
;
103 static const int dn_rt_max_delay
= 10 * HZ
;
104 static const int dn_rt_mtu_expires
= 10 * 60 * HZ
;
106 static unsigned long dn_rt_deadline
;
108 static int dn_dst_gc(void);
109 static struct dst_entry
*dn_dst_check(struct dst_entry
*, __u32
);
110 static struct dst_entry
*dn_dst_negative_advice(struct dst_entry
*);
111 static void dn_dst_link_failure(struct sk_buff
*);
112 static void dn_dst_update_pmtu(struct dst_entry
*dst
, u32 mtu
);
113 static int dn_route_input(struct sk_buff
*);
114 static void dn_run_flush(unsigned long dummy
);
116 static struct dn_rt_hash_bucket
*dn_rt_hash_table
;
117 static unsigned dn_rt_hash_mask
;
119 static struct timer_list dn_route_timer
;
120 static DEFINE_TIMER(dn_rt_flush_timer
, dn_run_flush
, 0, 0);
121 int decnet_dst_gc_interval
= 2;
123 static struct dst_ops dn_dst_ops
= {
125 .protocol
= __constant_htons(ETH_P_DNA_RT
),
128 .check
= dn_dst_check
,
129 .negative_advice
= dn_dst_negative_advice
,
130 .link_failure
= dn_dst_link_failure
,
131 .update_pmtu
= dn_dst_update_pmtu
,
132 .entry_size
= sizeof(struct dn_route
),
133 .entries
= ATOMIC_INIT(0),
136 static __inline__
unsigned dn_hash(__le16 src
, __le16 dst
)
138 __u16 tmp
= (__u16 __force
)(src
^ dst
);
142 return dn_rt_hash_mask
& (unsigned)tmp
;
145 static inline void dnrt_free(struct dn_route
*rt
)
147 call_rcu_bh(&rt
->u
.dst
.rcu_head
, dst_rcu_free
);
150 static inline void dnrt_drop(struct dn_route
*rt
)
152 dst_release(&rt
->u
.dst
);
153 call_rcu_bh(&rt
->u
.dst
.rcu_head
, dst_rcu_free
);
156 static void dn_dst_check_expire(unsigned long dummy
)
159 struct dn_route
*rt
, **rtp
;
160 unsigned long now
= jiffies
;
161 unsigned long expire
= 120 * HZ
;
163 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
164 rtp
= &dn_rt_hash_table
[i
].chain
;
166 spin_lock(&dn_rt_hash_table
[i
].lock
);
167 while((rt
=*rtp
) != NULL
) {
168 if (atomic_read(&rt
->u
.dst
.__refcnt
) ||
169 (now
- rt
->u
.dst
.lastuse
) < expire
) {
170 rtp
= &rt
->u
.rt_next
;
173 *rtp
= rt
->u
.rt_next
;
174 rt
->u
.rt_next
= NULL
;
177 spin_unlock(&dn_rt_hash_table
[i
].lock
);
179 if ((jiffies
- now
) > 0)
183 mod_timer(&dn_route_timer
, now
+ decnet_dst_gc_interval
* HZ
);
186 static int dn_dst_gc(void)
188 struct dn_route
*rt
, **rtp
;
190 unsigned long now
= jiffies
;
191 unsigned long expire
= 10 * HZ
;
193 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
195 spin_lock_bh(&dn_rt_hash_table
[i
].lock
);
196 rtp
= &dn_rt_hash_table
[i
].chain
;
198 while((rt
=*rtp
) != NULL
) {
199 if (atomic_read(&rt
->u
.dst
.__refcnt
) ||
200 (now
- rt
->u
.dst
.lastuse
) < expire
) {
201 rtp
= &rt
->u
.rt_next
;
204 *rtp
= rt
->u
.rt_next
;
205 rt
->u
.rt_next
= NULL
;
209 spin_unlock_bh(&dn_rt_hash_table
[i
].lock
);
216 * The decnet standards don't impose a particular minimum mtu, what they
217 * do insist on is that the routing layer accepts a datagram of at least
218 * 230 bytes long. Here we have to subtract the routing header length from
219 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
220 * assume the worst and use a long header size.
222 * We update both the mtu and the advertised mss (i.e. the segment size we
223 * advertise to the other end).
225 static void dn_dst_update_pmtu(struct dst_entry
*dst
, u32 mtu
)
228 struct dn_dev
*dn
= dst
->neighbour
?
229 (struct dn_dev
*)dst
->neighbour
->dev
->dn_ptr
: NULL
;
231 if (dn
&& dn
->use_long
== 0)
236 if (dst
->metrics
[RTAX_MTU
-1] > mtu
&& mtu
>= min_mtu
) {
237 if (!(dst_metric_locked(dst
, RTAX_MTU
))) {
238 dst
->metrics
[RTAX_MTU
-1] = mtu
;
239 dst_set_expires(dst
, dn_rt_mtu_expires
);
241 if (!(dst_metric_locked(dst
, RTAX_ADVMSS
))) {
242 u32 mss
= mtu
- DN_MAX_NSP_DATA_HEADER
;
243 if (dst
->metrics
[RTAX_ADVMSS
-1] > mss
)
244 dst
->metrics
[RTAX_ADVMSS
-1] = mss
;
250 * When a route has been marked obsolete. (e.g. routing cache flush)
252 static struct dst_entry
*dn_dst_check(struct dst_entry
*dst
, __u32 cookie
)
257 static struct dst_entry
*dn_dst_negative_advice(struct dst_entry
*dst
)
263 static void dn_dst_link_failure(struct sk_buff
*skb
)
268 static inline int compare_keys(struct flowi
*fl1
, struct flowi
*fl2
)
270 return memcmp(&fl1
->nl_u
.dn_u
, &fl2
->nl_u
.dn_u
, sizeof(fl1
->nl_u
.dn_u
)) == 0 &&
271 fl1
->oif
== fl2
->oif
&&
272 fl1
->iif
== fl2
->iif
;
275 static int dn_insert_route(struct dn_route
*rt
, unsigned hash
, struct dn_route
**rp
)
277 struct dn_route
*rth
, **rthp
;
278 unsigned long now
= jiffies
;
280 rthp
= &dn_rt_hash_table
[hash
].chain
;
282 spin_lock_bh(&dn_rt_hash_table
[hash
].lock
);
283 while((rth
= *rthp
) != NULL
) {
284 if (compare_keys(&rth
->fl
, &rt
->fl
)) {
286 *rthp
= rth
->u
.rt_next
;
287 rcu_assign_pointer(rth
->u
.rt_next
,
288 dn_rt_hash_table
[hash
].chain
);
289 rcu_assign_pointer(dn_rt_hash_table
[hash
].chain
, rth
);
292 dst_hold(&rth
->u
.dst
);
293 rth
->u
.dst
.lastuse
= now
;
294 spin_unlock_bh(&dn_rt_hash_table
[hash
].lock
);
300 rthp
= &rth
->u
.rt_next
;
303 rcu_assign_pointer(rt
->u
.rt_next
, dn_rt_hash_table
[hash
].chain
);
304 rcu_assign_pointer(dn_rt_hash_table
[hash
].chain
, rt
);
306 dst_hold(&rt
->u
.dst
);
308 rt
->u
.dst
.lastuse
= now
;
309 spin_unlock_bh(&dn_rt_hash_table
[hash
].lock
);
314 void dn_run_flush(unsigned long dummy
)
317 struct dn_route
*rt
, *next
;
319 for(i
= 0; i
< dn_rt_hash_mask
; i
++) {
320 spin_lock_bh(&dn_rt_hash_table
[i
].lock
);
322 if ((rt
= xchg(&dn_rt_hash_table
[i
].chain
, NULL
)) == NULL
)
323 goto nothing_to_declare
;
326 next
= rt
->u
.rt_next
;
327 rt
->u
.rt_next
= NULL
;
328 dst_free((struct dst_entry
*)rt
);
332 spin_unlock_bh(&dn_rt_hash_table
[i
].lock
);
336 static DEFINE_SPINLOCK(dn_rt_flush_lock
);
338 void dn_rt_cache_flush(int delay
)
340 unsigned long now
= jiffies
;
341 int user_mode
= !in_interrupt();
344 delay
= dn_rt_min_delay
;
346 spin_lock_bh(&dn_rt_flush_lock
);
348 if (del_timer(&dn_rt_flush_timer
) && delay
> 0 && dn_rt_deadline
) {
349 long tmo
= (long)(dn_rt_deadline
- now
);
351 if (user_mode
&& tmo
< dn_rt_max_delay
- dn_rt_min_delay
)
359 spin_unlock_bh(&dn_rt_flush_lock
);
364 if (dn_rt_deadline
== 0)
365 dn_rt_deadline
= now
+ dn_rt_max_delay
;
367 dn_rt_flush_timer
.expires
= now
+ delay
;
368 add_timer(&dn_rt_flush_timer
);
369 spin_unlock_bh(&dn_rt_flush_lock
);
373 * dn_return_short - Return a short packet to its sender
374 * @skb: The packet to return
377 static int dn_return_short(struct sk_buff
*skb
)
379 struct dn_skb_cb
*cb
;
385 /* Add back headers */
386 skb_push(skb
, skb
->data
- skb
->nh
.raw
);
388 if ((skb
= skb_unshare(skb
, GFP_ATOMIC
)) == NULL
)
392 /* Skip packet length and point to flags */
394 *ptr
++ = (cb
->rt_flags
& ~DN_RT_F_RQR
) | DN_RT_F_RTS
;
400 *ptr
= 0; /* Zero hop count */
402 /* Swap source and destination */
407 skb
->pkt_type
= PACKET_OUTGOING
;
408 dn_rt_finish_output(skb
, NULL
, NULL
);
409 return NET_RX_SUCCESS
;
413 * dn_return_long - Return a long packet to its sender
414 * @skb: The long format packet to return
417 static int dn_return_long(struct sk_buff
*skb
)
419 struct dn_skb_cb
*cb
;
421 unsigned char *src_addr
, *dst_addr
;
422 unsigned char tmp
[ETH_ALEN
];
424 /* Add back all headers */
425 skb_push(skb
, skb
->data
- skb
->nh
.raw
);
427 if ((skb
= skb_unshare(skb
, GFP_ATOMIC
)) == NULL
)
431 /* Ignore packet length and point to flags */
435 if (*ptr
& DN_RT_F_PF
) {
436 char padlen
= (*ptr
& ~DN_RT_F_PF
);
440 *ptr
++ = (cb
->rt_flags
& ~DN_RT_F_RQR
) | DN_RT_F_RTS
;
446 *ptr
= 0; /* Zero hop count */
448 /* Swap source and destination */
449 memcpy(tmp
, src_addr
, ETH_ALEN
);
450 memcpy(src_addr
, dst_addr
, ETH_ALEN
);
451 memcpy(dst_addr
, tmp
, ETH_ALEN
);
453 skb
->pkt_type
= PACKET_OUTGOING
;
454 dn_rt_finish_output(skb
, dst_addr
, src_addr
);
455 return NET_RX_SUCCESS
;
459 * dn_route_rx_packet - Try and find a route for an incoming packet
460 * @skb: The packet to find a route for
462 * Returns: result of input function if route is found, error code otherwise
464 static int dn_route_rx_packet(struct sk_buff
*skb
)
466 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
469 if ((err
= dn_route_input(skb
)) == 0)
470 return dst_input(skb
);
472 if (decnet_debug_level
& 4) {
473 char *devname
= skb
->dev
? skb
->dev
->name
: "???";
474 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
476 "DECnet: dn_route_rx_packet: rt_flags=0x%02x dev=%s len=%d src=0x%04hx dst=0x%04hx err=%d type=%d\n",
477 (int)cb
->rt_flags
, devname
, skb
->len
,
478 dn_ntohs(cb
->src
), dn_ntohs(cb
->dst
),
482 if ((skb
->pkt_type
== PACKET_HOST
) && (cb
->rt_flags
& DN_RT_F_RQR
)) {
483 switch(cb
->rt_flags
& DN_RT_PKT_MSK
) {
484 case DN_RT_PKT_SHORT
:
485 return dn_return_short(skb
);
487 return dn_return_long(skb
);
495 static int dn_route_rx_long(struct sk_buff
*skb
)
497 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
498 unsigned char *ptr
= skb
->data
;
500 if (!pskb_may_pull(skb
, 21)) /* 20 for long header, 1 for shortest nsp */
504 skb
->h
.raw
= skb
->data
;
506 /* Destination info */
508 cb
->dst
= dn_eth2dn(ptr
);
509 if (memcmp(ptr
, dn_hiord_addr
, 4) != 0)
516 cb
->src
= dn_eth2dn(ptr
);
517 if (memcmp(ptr
, dn_hiord_addr
, 4) != 0)
522 cb
->hops
= *ptr
++; /* Visit Count */
524 return NF_HOOK(PF_DECnet
, NF_DN_PRE_ROUTING
, skb
, skb
->dev
, NULL
, dn_route_rx_packet
);
533 static int dn_route_rx_short(struct sk_buff
*skb
)
535 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
536 unsigned char *ptr
= skb
->data
;
538 if (!pskb_may_pull(skb
, 6)) /* 5 for short header + 1 for shortest nsp */
542 skb
->h
.raw
= skb
->data
;
544 cb
->dst
= *(__le16
*)ptr
;
546 cb
->src
= *(__le16
*)ptr
;
548 cb
->hops
= *ptr
& 0x3f;
550 return NF_HOOK(PF_DECnet
, NF_DN_PRE_ROUTING
, skb
, skb
->dev
, NULL
, dn_route_rx_packet
);
557 static int dn_route_discard(struct sk_buff
*skb
)
560 * I know we drop the packet here, but thats considered success in
564 return NET_RX_SUCCESS
;
567 static int dn_route_ptp_hello(struct sk_buff
*skb
)
570 dn_neigh_pointopoint_hello(skb
);
571 return NET_RX_SUCCESS
;
574 int dn_route_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
, struct net_device
*orig_dev
)
576 struct dn_skb_cb
*cb
;
577 unsigned char flags
= 0;
578 __u16 len
= dn_ntohs(*(__le16
*)skb
->data
);
579 struct dn_dev
*dn
= (struct dn_dev
*)dev
->dn_ptr
;
580 unsigned char padlen
= 0;
585 if ((skb
= skb_share_check(skb
, GFP_ATOMIC
)) == NULL
)
588 if (!pskb_may_pull(skb
, 3))
602 cb
->iif
= dev
->ifindex
;
605 * If we have padding, remove it.
607 if (flags
& DN_RT_F_PF
) {
608 padlen
= flags
& ~DN_RT_F_PF
;
609 if (!pskb_may_pull(skb
, padlen
+ 1))
611 skb_pull(skb
, padlen
);
615 skb
->nh
.raw
= skb
->data
;
618 * Weed out future version DECnet
620 if (flags
& DN_RT_F_VER
)
623 cb
->rt_flags
= flags
;
625 if (decnet_debug_level
& 1)
627 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
628 (int)flags
, (dev
) ? dev
->name
: "???", len
, skb
->len
,
631 if (flags
& DN_RT_PKT_CNTL
) {
632 if (unlikely(skb_linearize(skb
)))
635 switch(flags
& DN_RT_CNTL_MSK
) {
637 dn_dev_init_pkt(skb
);
640 dn_dev_veri_pkt(skb
);
644 if (dn
->parms
.state
!= DN_DEV_S_RU
)
647 switch(flags
& DN_RT_CNTL_MSK
) {
649 return NF_HOOK(PF_DECnet
, NF_DN_HELLO
, skb
, skb
->dev
, NULL
, dn_route_ptp_hello
);
653 return NF_HOOK(PF_DECnet
, NF_DN_ROUTE
, skb
, skb
->dev
, NULL
, dn_route_discard
);
655 return NF_HOOK(PF_DECnet
, NF_DN_HELLO
, skb
, skb
->dev
, NULL
, dn_neigh_router_hello
);
658 return NF_HOOK(PF_DECnet
, NF_DN_HELLO
, skb
, skb
->dev
, NULL
, dn_neigh_endnode_hello
);
661 if (dn
->parms
.state
!= DN_DEV_S_RU
)
664 skb_pull(skb
, 1); /* Pull flags */
666 switch(flags
& DN_RT_PKT_MSK
) {
668 return dn_route_rx_long(skb
);
669 case DN_RT_PKT_SHORT
:
670 return dn_route_rx_short(skb
);
680 static int dn_output(struct sk_buff
*skb
)
682 struct dst_entry
*dst
= skb
->dst
;
683 struct dn_route
*rt
= (struct dn_route
*)dst
;
684 struct net_device
*dev
= dst
->dev
;
685 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
686 struct neighbour
*neigh
;
690 if ((neigh
= dst
->neighbour
) == NULL
)
695 cb
->src
= rt
->rt_saddr
;
696 cb
->dst
= rt
->rt_daddr
;
699 * Always set the Intra-Ethernet bit on all outgoing packets
700 * originated on this node. Only valid flag from upper layers
701 * is return-to-sender-requested. Set hop count to 0 too.
703 cb
->rt_flags
&= ~DN_RT_F_RQR
;
704 cb
->rt_flags
|= DN_RT_F_IE
;
707 return NF_HOOK(PF_DECnet
, NF_DN_LOCAL_OUT
, skb
, NULL
, dev
, neigh
->output
);
711 printk(KERN_DEBUG
"dn_output: This should not happen\n");
718 static int dn_forward(struct sk_buff
*skb
)
720 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
721 struct dst_entry
*dst
= skb
->dst
;
722 struct dn_dev
*dn_db
= dst
->dev
->dn_ptr
;
724 struct neighbour
*neigh
= dst
->neighbour
;
726 #ifdef CONFIG_NETFILTER
727 struct net_device
*dev
= skb
->dev
;
730 if (skb
->pkt_type
!= PACKET_HOST
)
733 /* Ensure that we have enough space for headers */
734 rt
= (struct dn_route
*)skb
->dst
;
735 header_len
= dn_db
->use_long
? 21 : 6;
736 if (skb_cow(skb
, LL_RESERVED_SPACE(rt
->u
.dst
.dev
)+header_len
))
740 * Hop count exceeded.
745 skb
->dev
= rt
->u
.dst
.dev
;
748 * If packet goes out same interface it came in on, then set
749 * the Intra-Ethernet bit. This has no effect for short
750 * packets, so we don't need to test for them here.
752 cb
->rt_flags
&= ~DN_RT_F_IE
;
753 if (rt
->rt_flags
& RTCF_DOREDIRECT
)
754 cb
->rt_flags
|= DN_RT_F_IE
;
756 return NF_HOOK(PF_DECnet
, NF_DN_FORWARD
, skb
, dev
, skb
->dev
, neigh
->output
);
764 * Drop packet. This is used for endnodes and for
765 * when we should not be forwarding packets from
768 static int dn_blackhole(struct sk_buff
*skb
)
775 * Used to catch bugs. This should never normally get
778 static int dn_rt_bug(struct sk_buff
*skb
)
780 if (net_ratelimit()) {
781 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
783 printk(KERN_DEBUG
"dn_rt_bug: skb from:%04x to:%04x\n",
784 dn_ntohs(cb
->src
), dn_ntohs(cb
->dst
));
792 static int dn_rt_set_next_hop(struct dn_route
*rt
, struct dn_fib_res
*res
)
794 struct dn_fib_info
*fi
= res
->fi
;
795 struct net_device
*dev
= rt
->u
.dst
.dev
;
800 if (DN_FIB_RES_GW(*res
) &&
801 DN_FIB_RES_NH(*res
).nh_scope
== RT_SCOPE_LINK
)
802 rt
->rt_gateway
= DN_FIB_RES_GW(*res
);
803 memcpy(rt
->u
.dst
.metrics
, fi
->fib_metrics
,
804 sizeof(rt
->u
.dst
.metrics
));
806 rt
->rt_type
= res
->type
;
808 if (dev
!= NULL
&& rt
->u
.dst
.neighbour
== NULL
) {
809 n
= __neigh_lookup_errno(&dn_neigh_table
, &rt
->rt_gateway
, dev
);
812 rt
->u
.dst
.neighbour
= n
;
815 if (rt
->u
.dst
.metrics
[RTAX_MTU
-1] == 0 ||
816 rt
->u
.dst
.metrics
[RTAX_MTU
-1] > rt
->u
.dst
.dev
->mtu
)
817 rt
->u
.dst
.metrics
[RTAX_MTU
-1] = rt
->u
.dst
.dev
->mtu
;
818 mss
= dn_mss_from_pmtu(dev
, dst_mtu(&rt
->u
.dst
));
819 if (rt
->u
.dst
.metrics
[RTAX_ADVMSS
-1] == 0 ||
820 rt
->u
.dst
.metrics
[RTAX_ADVMSS
-1] > mss
)
821 rt
->u
.dst
.metrics
[RTAX_ADVMSS
-1] = mss
;
825 static inline int dn_match_addr(__le16 addr1
, __le16 addr2
)
827 __u16 tmp
= dn_ntohs(addr1
) ^ dn_ntohs(addr2
);
836 static __le16
dnet_select_source(const struct net_device
*dev
, __le16 daddr
, int scope
)
839 struct dn_dev
*dn_db
= dev
->dn_ptr
;
840 struct dn_ifaddr
*ifa
;
844 read_lock(&dev_base_lock
);
845 for(ifa
= dn_db
->ifa_list
; ifa
; ifa
= ifa
->ifa_next
) {
846 if (ifa
->ifa_scope
> scope
)
849 saddr
= ifa
->ifa_local
;
852 ret
= dn_match_addr(daddr
, ifa
->ifa_local
);
853 if (ret
> best_match
)
854 saddr
= ifa
->ifa_local
;
856 saddr
= ifa
->ifa_local
;
858 read_unlock(&dev_base_lock
);
863 static inline __le16
__dn_fib_res_prefsrc(struct dn_fib_res
*res
)
865 return dnet_select_source(DN_FIB_RES_DEV(*res
), DN_FIB_RES_GW(*res
), res
->scope
);
868 static inline __le16
dn_fib_rules_map_destination(__le16 daddr
, struct dn_fib_res
*res
)
870 __le16 mask
= dnet_make_mask(res
->prefixlen
);
871 return (daddr
&~mask
)|res
->fi
->fib_nh
->nh_gw
;
874 static int dn_route_output_slow(struct dst_entry
**pprt
, const struct flowi
*oldflp
, int try_hard
)
876 struct flowi fl
= { .nl_u
= { .dn_u
=
877 { .daddr
= oldflp
->fld_dst
,
878 .saddr
= oldflp
->fld_src
,
879 .scope
= RT_SCOPE_UNIVERSE
,
880 #ifdef CONFIG_DECNET_ROUTE_FWMARK
881 .fwmark
= oldflp
->fld_fwmark
884 .iif
= loopback_dev
.ifindex
,
885 .oif
= oldflp
->oif
};
886 struct dn_route
*rt
= NULL
;
887 struct net_device
*dev_out
= NULL
;
888 struct neighbour
*neigh
= NULL
;
891 struct dn_fib_res res
= { .fi
= NULL
, .type
= RTN_UNICAST
};
896 if (decnet_debug_level
& 16)
898 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
899 " iif=%d oif=%d\n", dn_ntohs(oldflp
->fld_dst
),
900 dn_ntohs(oldflp
->fld_src
),
901 oldflp
->fld_fwmark
, loopback_dev
.ifindex
, oldflp
->oif
);
903 /* If we have an output interface, verify its a DECnet device */
905 dev_out
= dev_get_by_index(oldflp
->oif
);
907 if (dev_out
&& dev_out
->dn_ptr
== NULL
) {
915 /* If we have a source address, verify that its a local address */
916 if (oldflp
->fld_src
) {
917 err
= -EADDRNOTAVAIL
;
920 if (dn_dev_islocal(dev_out
, oldflp
->fld_src
))
925 read_lock(&dev_base_lock
);
926 for(dev_out
= dev_base
; dev_out
; dev_out
= dev_out
->next
) {
927 if (!dev_out
->dn_ptr
)
929 if (!dn_dev_islocal(dev_out
, oldflp
->fld_src
))
931 if ((dev_out
->flags
& IFF_LOOPBACK
) &&
933 !dn_dev_islocal(dev_out
, oldflp
->fld_dst
))
937 read_unlock(&dev_base_lock
);
945 /* No destination? Assume its local */
947 fl
.fld_dst
= fl
.fld_src
;
949 err
= -EADDRNOTAVAIL
;
952 dev_out
= &loopback_dev
;
956 fl
.fld_src
= dnet_select_source(dev_out
, 0,
961 fl
.oif
= loopback_dev
.ifindex
;
962 res
.type
= RTN_LOCAL
;
966 if (decnet_debug_level
& 16)
968 "dn_route_output_slow: initial checks complete."
969 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
970 dn_ntohs(fl
.fld_dst
), dn_ntohs(fl
.fld_src
),
974 * N.B. If the kernel is compiled without router support then
975 * dn_fib_lookup() will evaluate to non-zero so this if () block
976 * will always be executed.
979 if (try_hard
|| (err
= dn_fib_lookup(&fl
, &res
)) != 0) {
980 struct dn_dev
*dn_db
;
984 * Here the fallback is basically the standard algorithm for
985 * routing in endnodes which is described in the DECnet routing
988 * If we are not trying hard, look in neighbour cache.
989 * The result is tested to ensure that if a specific output
990 * device/source address was requested, then we honour that
994 neigh
= neigh_lookup_nodev(&dn_neigh_table
, &fl
.fld_dst
);
997 (neigh
->dev
->ifindex
!= oldflp
->oif
)) ||
999 (!dn_dev_islocal(neigh
->dev
,
1000 oldflp
->fld_src
)))) {
1001 neigh_release(neigh
);
1006 if (dn_dev_islocal(neigh
->dev
, fl
.fld_dst
)) {
1007 dev_out
= &loopback_dev
;
1008 res
.type
= RTN_LOCAL
;
1010 dev_out
= neigh
->dev
;
1018 /* Not there? Perhaps its a local address */
1019 if (dev_out
== NULL
)
1020 dev_out
= dn_dev_get_default();
1022 if (dev_out
== NULL
)
1024 dn_db
= dev_out
->dn_ptr
;
1025 /* Possible improvement - check all devices for local addr */
1026 if (dn_dev_islocal(dev_out
, fl
.fld_dst
)) {
1028 dev_out
= &loopback_dev
;
1030 res
.type
= RTN_LOCAL
;
1033 /* Not local either.... try sending it to the default router */
1034 neigh
= neigh_clone(dn_db
->router
);
1035 BUG_ON(neigh
&& neigh
->dev
!= dev_out
);
1037 /* Ok then, we assume its directly connected and move on */
1040 gateway
= ((struct dn_neigh
*)neigh
)->addr
;
1042 gateway
= fl
.fld_dst
;
1043 if (fl
.fld_src
== 0) {
1044 fl
.fld_src
= dnet_select_source(dev_out
, gateway
,
1045 res
.type
== RTN_LOCAL
?
1048 if (fl
.fld_src
== 0 && res
.type
!= RTN_LOCAL
)
1051 fl
.oif
= dev_out
->ifindex
;
1056 if (res
.type
== RTN_NAT
)
1059 if (res
.type
== RTN_LOCAL
) {
1061 fl
.fld_src
= fl
.fld_dst
;
1064 dev_out
= &loopback_dev
;
1066 fl
.oif
= dev_out
->ifindex
;
1068 dn_fib_info_put(res
.fi
);
1073 if (res
.fi
->fib_nhs
> 1 && fl
.oif
== 0)
1074 dn_fib_select_multipath(&fl
, &res
);
1077 * We could add some logic to deal with default routes here and
1078 * get rid of some of the special casing above.
1082 fl
.fld_src
= DN_FIB_RES_PREFSRC(res
);
1086 dev_out
= DN_FIB_RES_DEV(res
);
1088 fl
.oif
= dev_out
->ifindex
;
1089 gateway
= DN_FIB_RES_GW(res
);
1092 if (dev_out
->flags
& IFF_LOOPBACK
)
1093 flags
|= RTCF_LOCAL
;
1095 rt
= dst_alloc(&dn_dst_ops
);
1099 atomic_set(&rt
->u
.dst
.__refcnt
, 1);
1100 rt
->u
.dst
.flags
= DST_HOST
;
1102 rt
->fl
.fld_src
= oldflp
->fld_src
;
1103 rt
->fl
.fld_dst
= oldflp
->fld_dst
;
1104 rt
->fl
.oif
= oldflp
->oif
;
1106 #ifdef CONFIG_DECNET_ROUTE_FWMARK
1107 rt
->fl
.fld_fwmark
= oldflp
->fld_fwmark
;
1110 rt
->rt_saddr
= fl
.fld_src
;
1111 rt
->rt_daddr
= fl
.fld_dst
;
1112 rt
->rt_gateway
= gateway
? gateway
: fl
.fld_dst
;
1113 rt
->rt_local_src
= fl
.fld_src
;
1115 rt
->rt_dst_map
= fl
.fld_dst
;
1116 rt
->rt_src_map
= fl
.fld_src
;
1118 rt
->u
.dst
.dev
= dev_out
;
1120 rt
->u
.dst
.neighbour
= neigh
;
1123 rt
->u
.dst
.lastuse
= jiffies
;
1124 rt
->u
.dst
.output
= dn_output
;
1125 rt
->u
.dst
.input
= dn_rt_bug
;
1126 rt
->rt_flags
= flags
;
1127 if (flags
& RTCF_LOCAL
)
1128 rt
->u
.dst
.input
= dn_nsp_rx
;
1130 err
= dn_rt_set_next_hop(rt
, &res
);
1134 hash
= dn_hash(rt
->fl
.fld_src
, rt
->fl
.fld_dst
);
1135 dn_insert_route(rt
, hash
, (struct dn_route
**)pprt
);
1139 neigh_release(neigh
);
1141 dn_fib_res_put(&res
);
1148 err
= -EADDRNOTAVAIL
;
1157 dst_free(&rt
->u
.dst
);
1163 * N.B. The flags may be moved into the flowi at some future stage.
1165 static int __dn_route_output_key(struct dst_entry
**pprt
, const struct flowi
*flp
, int flags
)
1167 unsigned hash
= dn_hash(flp
->fld_src
, flp
->fld_dst
);
1168 struct dn_route
*rt
= NULL
;
1170 if (!(flags
& MSG_TRYHARD
)) {
1172 for(rt
= rcu_dereference(dn_rt_hash_table
[hash
].chain
); rt
;
1173 rt
= rcu_dereference(rt
->u
.rt_next
)) {
1174 if ((flp
->fld_dst
== rt
->fl
.fld_dst
) &&
1175 (flp
->fld_src
== rt
->fl
.fld_src
) &&
1176 #ifdef CONFIG_DECNET_ROUTE_FWMARK
1177 (flp
->fld_fwmark
== rt
->fl
.fld_fwmark
) &&
1179 (rt
->fl
.iif
== 0) &&
1180 (rt
->fl
.oif
== flp
->oif
)) {
1181 rt
->u
.dst
.lastuse
= jiffies
;
1182 dst_hold(&rt
->u
.dst
);
1184 rcu_read_unlock_bh();
1189 rcu_read_unlock_bh();
1192 return dn_route_output_slow(pprt
, flp
, flags
);
1195 static int dn_route_output_key(struct dst_entry
**pprt
, struct flowi
*flp
, int flags
)
1199 err
= __dn_route_output_key(pprt
, flp
, flags
);
1200 if (err
== 0 && flp
->proto
) {
1201 err
= xfrm_lookup(pprt
, flp
, NULL
, 0);
1206 int dn_route_output_sock(struct dst_entry
**pprt
, struct flowi
*fl
, struct sock
*sk
, int flags
)
1210 err
= __dn_route_output_key(pprt
, fl
, flags
& MSG_TRYHARD
);
1211 if (err
== 0 && fl
->proto
) {
1212 err
= xfrm_lookup(pprt
, fl
, sk
, !(flags
& MSG_DONTWAIT
));
1217 static int dn_route_input_slow(struct sk_buff
*skb
)
1219 struct dn_route
*rt
= NULL
;
1220 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
1221 struct net_device
*in_dev
= skb
->dev
;
1222 struct net_device
*out_dev
= NULL
;
1223 struct dn_dev
*dn_db
;
1224 struct neighbour
*neigh
= NULL
;
1228 __le16 local_src
= 0;
1229 struct flowi fl
= { .nl_u
= { .dn_u
=
1232 .scope
= RT_SCOPE_UNIVERSE
,
1233 #ifdef CONFIG_DECNET_ROUTE_FWMARK
1234 .fwmark
= skb
->nfmark
1237 .iif
= skb
->dev
->ifindex
};
1238 struct dn_fib_res res
= { .fi
= NULL
, .type
= RTN_UNREACHABLE
};
1244 if ((dn_db
= in_dev
->dn_ptr
) == NULL
)
1247 /* Zero source addresses are not allowed */
1248 if (fl
.fld_src
== 0)
1252 * In this case we've just received a packet from a source
1253 * outside ourselves pretending to come from us. We don't
1254 * allow it any further to prevent routing loops, spoofing and
1255 * other nasties. Loopback packets already have the dst attached
1256 * so this only affects packets which have originated elsewhere.
1259 if (dn_dev_islocal(in_dev
, cb
->src
))
1262 err
= dn_fib_lookup(&fl
, &res
);
1267 * Is the destination us ?
1269 if (!dn_dev_islocal(in_dev
, cb
->dst
))
1272 res
.type
= RTN_LOCAL
;
1273 flags
|= RTCF_DIRECTSRC
;
1275 __le16 src_map
= fl
.fld_src
;
1278 out_dev
= DN_FIB_RES_DEV(res
);
1279 if (out_dev
== NULL
) {
1280 if (net_ratelimit())
1281 printk(KERN_CRIT
"Bug in dn_route_input_slow() "
1282 "No output device\n");
1288 src_map
= fl
.fld_src
; /* no NAT support for now */
1290 gateway
= DN_FIB_RES_GW(res
);
1291 if (res
.type
== RTN_NAT
) {
1292 fl
.fld_dst
= dn_fib_rules_map_destination(fl
.fld_dst
, &res
);
1293 dn_fib_res_put(&res
);
1295 if (dn_fib_lookup(&fl
, &res
))
1298 if (res
.type
!= RTN_UNICAST
)
1301 gateway
= fl
.fld_dst
;
1303 fl
.fld_src
= src_map
;
1309 * Forwarding check here, we only check for forwarding
1310 * being turned off, if you want to only forward intra
1311 * area, its up to you to set the routing tables up
1314 if (dn_db
->parms
.forwarding
== 0)
1317 if (res
.fi
->fib_nhs
> 1 && fl
.oif
== 0)
1318 dn_fib_select_multipath(&fl
, &res
);
1321 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1322 * flag as a hint to set the intra-ethernet bit when
1323 * forwarding. If we've got NAT in operation, we don't do
1324 * this optimisation.
1326 if (out_dev
== in_dev
&& !(flags
& RTCF_NAT
))
1327 flags
|= RTCF_DOREDIRECT
;
1329 local_src
= DN_FIB_RES_PREFSRC(res
);
1332 case RTN_UNREACHABLE
:
1335 flags
|= RTCF_LOCAL
;
1336 fl
.fld_src
= cb
->dst
;
1337 fl
.fld_dst
= cb
->src
;
1339 /* Routing tables gave us a gateway */
1343 /* Packet was intra-ethernet, so we know its on-link */
1344 if (cb
->rt_flags
| DN_RT_F_IE
) {
1346 flags
|= RTCF_DIRECTSRC
;
1350 /* Use the default router if there is one */
1351 neigh
= neigh_clone(dn_db
->router
);
1353 gateway
= ((struct dn_neigh
*)neigh
)->addr
;
1357 /* Close eyes and pray */
1359 flags
|= RTCF_DIRECTSRC
;
1366 rt
= dst_alloc(&dn_dst_ops
);
1370 rt
->rt_saddr
= fl
.fld_src
;
1371 rt
->rt_daddr
= fl
.fld_dst
;
1372 rt
->rt_gateway
= fl
.fld_dst
;
1374 rt
->rt_gateway
= gateway
;
1375 rt
->rt_local_src
= local_src
? local_src
: rt
->rt_saddr
;
1377 rt
->rt_dst_map
= fl
.fld_dst
;
1378 rt
->rt_src_map
= fl
.fld_src
;
1380 rt
->fl
.fld_src
= cb
->src
;
1381 rt
->fl
.fld_dst
= cb
->dst
;
1383 rt
->fl
.iif
= in_dev
->ifindex
;
1384 rt
->fl
.fld_fwmark
= fl
.fld_fwmark
;
1386 rt
->u
.dst
.flags
= DST_HOST
;
1387 rt
->u
.dst
.neighbour
= neigh
;
1388 rt
->u
.dst
.dev
= out_dev
;
1389 rt
->u
.dst
.lastuse
= jiffies
;
1390 rt
->u
.dst
.output
= dn_rt_bug
;
1393 rt
->u
.dst
.input
= dn_forward
;
1396 rt
->u
.dst
.output
= dn_output
;
1397 rt
->u
.dst
.input
= dn_nsp_rx
;
1398 rt
->u
.dst
.dev
= in_dev
;
1399 flags
|= RTCF_LOCAL
;
1402 case RTN_UNREACHABLE
:
1404 rt
->u
.dst
.input
= dn_blackhole
;
1406 rt
->rt_flags
= flags
;
1408 dev_hold(rt
->u
.dst
.dev
);
1410 err
= dn_rt_set_next_hop(rt
, &res
);
1414 hash
= dn_hash(rt
->fl
.fld_src
, rt
->fl
.fld_dst
);
1415 dn_insert_route(rt
, hash
, (struct dn_route
**)&skb
->dst
);
1419 neigh_release(neigh
);
1421 dn_fib_res_put(&res
);
1437 dst_free(&rt
->u
.dst
);
1441 int dn_route_input(struct sk_buff
*skb
)
1443 struct dn_route
*rt
;
1444 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
1445 unsigned hash
= dn_hash(cb
->src
, cb
->dst
);
1451 for(rt
= rcu_dereference(dn_rt_hash_table
[hash
].chain
); rt
!= NULL
;
1452 rt
= rcu_dereference(rt
->u
.rt_next
)) {
1453 if ((rt
->fl
.fld_src
== cb
->src
) &&
1454 (rt
->fl
.fld_dst
== cb
->dst
) &&
1455 (rt
->fl
.oif
== 0) &&
1456 #ifdef CONFIG_DECNET_ROUTE_FWMARK
1457 (rt
->fl
.fld_fwmark
== skb
->nfmark
) &&
1459 (rt
->fl
.iif
== cb
->iif
)) {
1460 rt
->u
.dst
.lastuse
= jiffies
;
1461 dst_hold(&rt
->u
.dst
);
1464 skb
->dst
= (struct dst_entry
*)rt
;
1470 return dn_route_input_slow(skb
);
1473 static int dn_rt_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
1474 int event
, int nowait
, unsigned int flags
)
1476 struct dn_route
*rt
= (struct dn_route
*)skb
->dst
;
1478 struct nlmsghdr
*nlh
;
1479 unsigned char *b
= skb
->tail
;
1480 struct rta_cacheinfo ci
;
1482 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*r
), flags
);
1483 r
= NLMSG_DATA(nlh
);
1484 r
->rtm_family
= AF_DECnet
;
1485 r
->rtm_dst_len
= 16;
1488 r
->rtm_table
= RT_TABLE_MAIN
;
1489 RTA_PUT_U32(skb
, RTA_TABLE
, RT_TABLE_MAIN
);
1490 r
->rtm_type
= rt
->rt_type
;
1491 r
->rtm_flags
= (rt
->rt_flags
& ~0xFFFF) | RTM_F_CLONED
;
1492 r
->rtm_scope
= RT_SCOPE_UNIVERSE
;
1493 r
->rtm_protocol
= RTPROT_UNSPEC
;
1494 if (rt
->rt_flags
& RTCF_NOTIFY
)
1495 r
->rtm_flags
|= RTM_F_NOTIFY
;
1496 RTA_PUT(skb
, RTA_DST
, 2, &rt
->rt_daddr
);
1497 if (rt
->fl
.fld_src
) {
1498 r
->rtm_src_len
= 16;
1499 RTA_PUT(skb
, RTA_SRC
, 2, &rt
->fl
.fld_src
);
1502 RTA_PUT(skb
, RTA_OIF
, sizeof(int), &rt
->u
.dst
.dev
->ifindex
);
1504 * Note to self - change this if input routes reverse direction when
1505 * they deal only with inputs and not with replies like they do
1508 RTA_PUT(skb
, RTA_PREFSRC
, 2, &rt
->rt_local_src
);
1509 if (rt
->rt_daddr
!= rt
->rt_gateway
)
1510 RTA_PUT(skb
, RTA_GATEWAY
, 2, &rt
->rt_gateway
);
1511 if (rtnetlink_put_metrics(skb
, rt
->u
.dst
.metrics
) < 0)
1512 goto rtattr_failure
;
1513 ci
.rta_lastuse
= jiffies_to_clock_t(jiffies
- rt
->u
.dst
.lastuse
);
1514 ci
.rta_used
= rt
->u
.dst
.__use
;
1515 ci
.rta_clntref
= atomic_read(&rt
->u
.dst
.__refcnt
);
1516 if (rt
->u
.dst
.expires
)
1517 ci
.rta_expires
= jiffies_to_clock_t(rt
->u
.dst
.expires
- jiffies
);
1520 ci
.rta_error
= rt
->u
.dst
.error
;
1521 ci
.rta_id
= ci
.rta_ts
= ci
.rta_tsage
= 0;
1522 RTA_PUT(skb
, RTA_CACHEINFO
, sizeof(ci
), &ci
);
1524 RTA_PUT(skb
, RTA_IIF
, sizeof(int), &rt
->fl
.iif
);
1526 nlh
->nlmsg_len
= skb
->tail
- b
;
1531 skb_trim(skb
, b
- skb
->data
);
1536 * This is called by both endnodes and routers now.
1538 int dn_cache_getroute(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
, void *arg
)
1540 struct rtattr
**rta
= arg
;
1541 struct rtmsg
*rtm
= NLMSG_DATA(nlh
);
1542 struct dn_route
*rt
= NULL
;
1543 struct dn_skb_cb
*cb
;
1545 struct sk_buff
*skb
;
1548 memset(&fl
, 0, sizeof(fl
));
1549 fl
.proto
= DNPROTO_NSP
;
1551 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
1554 skb
->mac
.raw
= skb
->data
;
1555 cb
= DN_SKB_CB(skb
);
1558 memcpy(&fl
.fld_src
, RTA_DATA(rta
[RTA_SRC
-1]), 2);
1560 memcpy(&fl
.fld_dst
, RTA_DATA(rta
[RTA_DST
-1]), 2);
1562 memcpy(&fl
.iif
, RTA_DATA(rta
[RTA_IIF
-1]), sizeof(int));
1565 struct net_device
*dev
;
1566 if ((dev
= dev_get_by_index(fl
.iif
)) == NULL
) {
1575 skb
->protocol
= __constant_htons(ETH_P_DNA_RT
);
1577 cb
->src
= fl
.fld_src
;
1578 cb
->dst
= fl
.fld_dst
;
1580 err
= dn_route_input(skb
);
1582 memset(cb
, 0, sizeof(struct dn_skb_cb
));
1583 rt
= (struct dn_route
*)skb
->dst
;
1584 if (!err
&& -rt
->u
.dst
.error
)
1585 err
= rt
->u
.dst
.error
;
1588 if (rta
[RTA_OIF
- 1])
1589 memcpy(&oif
, RTA_DATA(rta
[RTA_OIF
- 1]), sizeof(int));
1591 err
= dn_route_output_key((struct dst_entry
**)&rt
, &fl
, 0);
1599 skb
->dst
= &rt
->u
.dst
;
1600 if (rtm
->rtm_flags
& RTM_F_NOTIFY
)
1601 rt
->rt_flags
|= RTCF_NOTIFY
;
1603 NETLINK_CB(skb
).dst_pid
= NETLINK_CB(in_skb
).pid
;
1605 err
= dn_rt_fill_info(skb
, NETLINK_CB(in_skb
).pid
, nlh
->nlmsg_seq
, RTM_NEWROUTE
, 0, 0);
1614 return rtnl_unicast(skb
, NETLINK_CB(in_skb
).pid
);
1622 * For routers, this is called from dn_fib_dump, but for endnodes its
1623 * called directly from the rtnetlink dispatch table.
1625 int dn_cache_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1627 struct dn_route
*rt
;
1631 if (NLMSG_PAYLOAD(cb
->nlh
, 0) < sizeof(struct rtmsg
))
1633 if (!(((struct rtmsg
*)NLMSG_DATA(cb
->nlh
))->rtm_flags
&RTM_F_CLONED
))
1637 s_idx
= idx
= cb
->args
[1];
1638 for(h
= 0; h
<= dn_rt_hash_mask
; h
++) {
1644 for(rt
= rcu_dereference(dn_rt_hash_table
[h
].chain
), idx
= 0;
1646 rt
= rcu_dereference(rt
->u
.rt_next
), idx
++) {
1649 skb
->dst
= dst_clone(&rt
->u
.dst
);
1650 if (dn_rt_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
1651 cb
->nlh
->nlmsg_seq
, RTM_NEWROUTE
,
1652 1, NLM_F_MULTI
) <= 0) {
1653 dst_release(xchg(&skb
->dst
, NULL
));
1654 rcu_read_unlock_bh();
1657 dst_release(xchg(&skb
->dst
, NULL
));
1659 rcu_read_unlock_bh();
1668 #ifdef CONFIG_PROC_FS
1669 struct dn_rt_cache_iter_state
{
1673 static struct dn_route
*dn_rt_cache_get_first(struct seq_file
*seq
)
1675 struct dn_route
*rt
= NULL
;
1676 struct dn_rt_cache_iter_state
*s
= seq
->private;
1678 for(s
->bucket
= dn_rt_hash_mask
; s
->bucket
>= 0; --s
->bucket
) {
1680 rt
= dn_rt_hash_table
[s
->bucket
].chain
;
1683 rcu_read_unlock_bh();
1688 static struct dn_route
*dn_rt_cache_get_next(struct seq_file
*seq
, struct dn_route
*rt
)
1690 struct dn_rt_cache_iter_state
*s
= rcu_dereference(seq
->private);
1694 rcu_read_unlock_bh();
1695 if (--s
->bucket
< 0)
1698 rt
= dn_rt_hash_table
[s
->bucket
].chain
;
1703 static void *dn_rt_cache_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1705 struct dn_route
*rt
= dn_rt_cache_get_first(seq
);
1708 while(*pos
&& (rt
= dn_rt_cache_get_next(seq
, rt
)))
1711 return *pos
? NULL
: rt
;
1714 static void *dn_rt_cache_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1716 struct dn_route
*rt
= dn_rt_cache_get_next(seq
, v
);
1721 static void dn_rt_cache_seq_stop(struct seq_file
*seq
, void *v
)
1724 rcu_read_unlock_bh();
1727 static int dn_rt_cache_seq_show(struct seq_file
*seq
, void *v
)
1729 struct dn_route
*rt
= v
;
1730 char buf1
[DN_ASCBUF_LEN
], buf2
[DN_ASCBUF_LEN
];
1732 seq_printf(seq
, "%-8s %-7s %-7s %04d %04d %04d\n",
1733 rt
->u
.dst
.dev
? rt
->u
.dst
.dev
->name
: "*",
1734 dn_addr2asc(dn_ntohs(rt
->rt_daddr
), buf1
),
1735 dn_addr2asc(dn_ntohs(rt
->rt_saddr
), buf2
),
1736 atomic_read(&rt
->u
.dst
.__refcnt
),
1738 (int) dst_metric(&rt
->u
.dst
, RTAX_RTT
));
1742 static struct seq_operations dn_rt_cache_seq_ops
= {
1743 .start
= dn_rt_cache_seq_start
,
1744 .next
= dn_rt_cache_seq_next
,
1745 .stop
= dn_rt_cache_seq_stop
,
1746 .show
= dn_rt_cache_seq_show
,
1749 static int dn_rt_cache_seq_open(struct inode
*inode
, struct file
*file
)
1751 struct seq_file
*seq
;
1753 struct dn_rt_cache_iter_state
*s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1757 rc
= seq_open(file
, &dn_rt_cache_seq_ops
);
1760 seq
= file
->private_data
;
1762 memset(s
, 0, sizeof(*s
));
1770 static struct file_operations dn_rt_cache_seq_fops
= {
1771 .owner
= THIS_MODULE
,
1772 .open
= dn_rt_cache_seq_open
,
1774 .llseek
= seq_lseek
,
1775 .release
= seq_release_private
,
1778 #endif /* CONFIG_PROC_FS */
1780 void __init
dn_route_init(void)
1784 dn_dst_ops
.kmem_cachep
=
1785 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route
), 0,
1786 SLAB_HWCACHE_ALIGN
|SLAB_PANIC
, NULL
, NULL
);
1787 init_timer(&dn_route_timer
);
1788 dn_route_timer
.function
= dn_dst_check_expire
;
1789 dn_route_timer
.expires
= jiffies
+ decnet_dst_gc_interval
* HZ
;
1790 add_timer(&dn_route_timer
);
1792 goal
= num_physpages
>> (26 - PAGE_SHIFT
);
1794 for(order
= 0; (1UL << order
) < goal
; order
++)
1798 * Only want 1024 entries max, since the table is very, very unlikely
1799 * to be larger than that.
1801 while(order
&& ((((1UL << order
) * PAGE_SIZE
) /
1802 sizeof(struct dn_rt_hash_bucket
)) >= 2048))
1806 dn_rt_hash_mask
= (1UL << order
) * PAGE_SIZE
/
1807 sizeof(struct dn_rt_hash_bucket
);
1808 while(dn_rt_hash_mask
& (dn_rt_hash_mask
- 1))
1810 dn_rt_hash_table
= (struct dn_rt_hash_bucket
*)
1811 __get_free_pages(GFP_ATOMIC
, order
);
1812 } while (dn_rt_hash_table
== NULL
&& --order
> 0);
1814 if (!dn_rt_hash_table
)
1815 panic("Failed to allocate DECnet route cache hash table\n");
1818 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1820 (long)(dn_rt_hash_mask
*sizeof(struct dn_rt_hash_bucket
))/1024);
1823 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
1824 spin_lock_init(&dn_rt_hash_table
[i
].lock
);
1825 dn_rt_hash_table
[i
].chain
= NULL
;
1828 dn_dst_ops
.gc_thresh
= (dn_rt_hash_mask
+ 1);
1830 proc_net_fops_create("decnet_cache", S_IRUGO
, &dn_rt_cache_seq_fops
);
1833 void __exit
dn_route_cleanup(void)
1835 del_timer(&dn_route_timer
);
1838 proc_net_remove("decnet_cache");