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>
69 #include <linux/slab.h>
72 #include <linux/proc_fs.h>
73 #include <linux/seq_file.h>
74 #include <linux/init.h>
75 #include <linux/rtnetlink.h>
76 #include <linux/string.h>
77 #include <linux/netfilter_decnet.h>
78 #include <linux/rcupdate.h>
79 #include <linux/times.h>
80 #include <asm/errno.h>
81 #include <net/net_namespace.h>
82 #include <net/netlink.h>
83 #include <net/neighbour.h>
86 #include <net/fib_rules.h>
88 #include <net/dn_dev.h>
89 #include <net/dn_nsp.h>
90 #include <net/dn_route.h>
91 #include <net/dn_neigh.h>
92 #include <net/dn_fib.h>
94 struct dn_rt_hash_bucket
96 struct dn_route
*chain
;
100 extern struct neigh_table dn_neigh_table
;
103 static unsigned char dn_hiord_addr
[6] = {0xAA,0x00,0x04,0x00,0x00,0x00};
105 static const int dn_rt_min_delay
= 2 * HZ
;
106 static const int dn_rt_max_delay
= 10 * HZ
;
107 static const int dn_rt_mtu_expires
= 10 * 60 * HZ
;
109 static unsigned long dn_rt_deadline
;
111 static int dn_dst_gc(struct dst_ops
*ops
);
112 static struct dst_entry
*dn_dst_check(struct dst_entry
*, __u32
);
113 static struct dst_entry
*dn_dst_negative_advice(struct dst_entry
*);
114 static void dn_dst_link_failure(struct sk_buff
*);
115 static void dn_dst_update_pmtu(struct dst_entry
*dst
, u32 mtu
);
116 static int dn_route_input(struct sk_buff
*);
117 static void dn_run_flush(unsigned long dummy
);
119 static struct dn_rt_hash_bucket
*dn_rt_hash_table
;
120 static unsigned dn_rt_hash_mask
;
122 static struct timer_list dn_route_timer
;
123 static DEFINE_TIMER(dn_rt_flush_timer
, dn_run_flush
, 0, 0);
124 int decnet_dst_gc_interval
= 2;
126 static struct dst_ops dn_dst_ops
= {
128 .protocol
= cpu_to_be16(ETH_P_DNA_RT
),
131 .check
= dn_dst_check
,
132 .negative_advice
= dn_dst_negative_advice
,
133 .link_failure
= dn_dst_link_failure
,
134 .update_pmtu
= dn_dst_update_pmtu
,
137 static __inline__
unsigned dn_hash(__le16 src
, __le16 dst
)
139 __u16 tmp
= (__u16 __force
)(src
^ dst
);
143 return dn_rt_hash_mask
& (unsigned)tmp
;
146 static inline void dnrt_free(struct dn_route
*rt
)
148 call_rcu_bh(&rt
->dst
.rcu_head
, dst_rcu_free
);
151 static inline void dnrt_drop(struct dn_route
*rt
)
153 dst_release(&rt
->dst
);
154 call_rcu_bh(&rt
->dst
.rcu_head
, dst_rcu_free
);
157 static void dn_dst_check_expire(unsigned long dummy
)
160 struct dn_route
*rt
, **rtp
;
161 unsigned long now
= jiffies
;
162 unsigned long expire
= 120 * HZ
;
164 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
165 rtp
= &dn_rt_hash_table
[i
].chain
;
167 spin_lock(&dn_rt_hash_table
[i
].lock
);
168 while((rt
=*rtp
) != NULL
) {
169 if (atomic_read(&rt
->dst
.__refcnt
) ||
170 (now
- rt
->dst
.lastuse
) < expire
) {
171 rtp
= &rt
->dst
.dn_next
;
174 *rtp
= rt
->dst
.dn_next
;
175 rt
->dst
.dn_next
= NULL
;
178 spin_unlock(&dn_rt_hash_table
[i
].lock
);
180 if ((jiffies
- now
) > 0)
184 mod_timer(&dn_route_timer
, now
+ decnet_dst_gc_interval
* HZ
);
187 static int dn_dst_gc(struct dst_ops
*ops
)
189 struct dn_route
*rt
, **rtp
;
191 unsigned long now
= jiffies
;
192 unsigned long expire
= 10 * HZ
;
194 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
196 spin_lock_bh(&dn_rt_hash_table
[i
].lock
);
197 rtp
= &dn_rt_hash_table
[i
].chain
;
199 while((rt
=*rtp
) != NULL
) {
200 if (atomic_read(&rt
->dst
.__refcnt
) ||
201 (now
- rt
->dst
.lastuse
) < expire
) {
202 rtp
= &rt
->dst
.dn_next
;
205 *rtp
= rt
->dst
.dn_next
;
206 rt
->dst
.dn_next
= NULL
;
210 spin_unlock_bh(&dn_rt_hash_table
[i
].lock
);
217 * The decnet standards don't impose a particular minimum mtu, what they
218 * do insist on is that the routing layer accepts a datagram of at least
219 * 230 bytes long. Here we have to subtract the routing header length from
220 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
221 * assume the worst and use a long header size.
223 * We update both the mtu and the advertised mss (i.e. the segment size we
224 * advertise to the other end).
226 static void dn_dst_update_pmtu(struct dst_entry
*dst
, u32 mtu
)
229 struct dn_dev
*dn
= dst
->neighbour
?
230 (struct dn_dev
*)dst
->neighbour
->dev
->dn_ptr
: NULL
;
232 if (dn
&& dn
->use_long
== 0)
237 if (dst_metric(dst
, RTAX_MTU
) > mtu
&& mtu
>= min_mtu
) {
238 if (!(dst_metric_locked(dst
, RTAX_MTU
))) {
239 dst
->metrics
[RTAX_MTU
-1] = mtu
;
240 dst_set_expires(dst
, dn_rt_mtu_expires
);
242 if (!(dst_metric_locked(dst
, RTAX_ADVMSS
))) {
243 u32 mss
= mtu
- DN_MAX_NSP_DATA_HEADER
;
244 if (dst_metric(dst
, RTAX_ADVMSS
) > mss
)
245 dst
->metrics
[RTAX_ADVMSS
-1] = mss
;
251 * When a route has been marked obsolete. (e.g. routing cache flush)
253 static struct dst_entry
*dn_dst_check(struct dst_entry
*dst
, __u32 cookie
)
258 static struct dst_entry
*dn_dst_negative_advice(struct dst_entry
*dst
)
264 static void dn_dst_link_failure(struct sk_buff
*skb
)
268 static inline int compare_keys(struct flowi
*fl1
, struct flowi
*fl2
)
270 return ((fl1
->nl_u
.dn_u
.daddr
^ fl2
->nl_u
.dn_u
.daddr
) |
271 (fl1
->nl_u
.dn_u
.saddr
^ fl2
->nl_u
.dn_u
.saddr
) |
272 (fl1
->mark
^ fl2
->mark
) |
273 (fl1
->nl_u
.dn_u
.scope
^ fl2
->nl_u
.dn_u
.scope
) |
274 (fl1
->oif
^ fl2
->oif
) |
275 (fl1
->iif
^ fl2
->iif
)) == 0;
278 static int dn_insert_route(struct dn_route
*rt
, unsigned hash
, struct dn_route
**rp
)
280 struct dn_route
*rth
, **rthp
;
281 unsigned long now
= jiffies
;
283 rthp
= &dn_rt_hash_table
[hash
].chain
;
285 spin_lock_bh(&dn_rt_hash_table
[hash
].lock
);
286 while((rth
= *rthp
) != NULL
) {
287 if (compare_keys(&rth
->fl
, &rt
->fl
)) {
289 *rthp
= rth
->dst
.dn_next
;
290 rcu_assign_pointer(rth
->dst
.dn_next
,
291 dn_rt_hash_table
[hash
].chain
);
292 rcu_assign_pointer(dn_rt_hash_table
[hash
].chain
, rth
);
294 dst_use(&rth
->dst
, now
);
295 spin_unlock_bh(&dn_rt_hash_table
[hash
].lock
);
301 rthp
= &rth
->dst
.dn_next
;
304 rcu_assign_pointer(rt
->dst
.dn_next
, dn_rt_hash_table
[hash
].chain
);
305 rcu_assign_pointer(dn_rt_hash_table
[hash
].chain
, rt
);
307 dst_use(&rt
->dst
, now
);
308 spin_unlock_bh(&dn_rt_hash_table
[hash
].lock
);
313 static void dn_run_flush(unsigned long dummy
)
316 struct dn_route
*rt
, *next
;
318 for(i
= 0; i
< dn_rt_hash_mask
; i
++) {
319 spin_lock_bh(&dn_rt_hash_table
[i
].lock
);
321 if ((rt
= xchg(&dn_rt_hash_table
[i
].chain
, NULL
)) == NULL
)
322 goto nothing_to_declare
;
325 next
= rt
->dst
.dn_next
;
326 rt
->dst
.dn_next
= NULL
;
327 dst_free((struct dst_entry
*)rt
);
331 spin_unlock_bh(&dn_rt_hash_table
[i
].lock
);
335 static DEFINE_SPINLOCK(dn_rt_flush_lock
);
337 void dn_rt_cache_flush(int delay
)
339 unsigned long now
= jiffies
;
340 int user_mode
= !in_interrupt();
343 delay
= dn_rt_min_delay
;
345 spin_lock_bh(&dn_rt_flush_lock
);
347 if (del_timer(&dn_rt_flush_timer
) && delay
> 0 && dn_rt_deadline
) {
348 long tmo
= (long)(dn_rt_deadline
- now
);
350 if (user_mode
&& tmo
< dn_rt_max_delay
- dn_rt_min_delay
)
358 spin_unlock_bh(&dn_rt_flush_lock
);
363 if (dn_rt_deadline
== 0)
364 dn_rt_deadline
= now
+ dn_rt_max_delay
;
366 dn_rt_flush_timer
.expires
= now
+ delay
;
367 add_timer(&dn_rt_flush_timer
);
368 spin_unlock_bh(&dn_rt_flush_lock
);
372 * dn_return_short - Return a short packet to its sender
373 * @skb: The packet to return
376 static int dn_return_short(struct sk_buff
*skb
)
378 struct dn_skb_cb
*cb
;
383 /* Add back headers */
384 skb_push(skb
, skb
->data
- skb_network_header(skb
));
386 if ((skb
= skb_unshare(skb
, GFP_ATOMIC
)) == NULL
)
390 /* Skip packet length and point to flags */
392 *ptr
++ = (cb
->rt_flags
& ~DN_RT_F_RQR
) | DN_RT_F_RTS
;
398 *ptr
= 0; /* Zero hop count */
402 skb
->pkt_type
= PACKET_OUTGOING
;
403 dn_rt_finish_output(skb
, NULL
, NULL
);
404 return NET_RX_SUCCESS
;
408 * dn_return_long - Return a long packet to its sender
409 * @skb: The long format packet to return
412 static int dn_return_long(struct sk_buff
*skb
)
414 struct dn_skb_cb
*cb
;
416 unsigned char *src_addr
, *dst_addr
;
417 unsigned char tmp
[ETH_ALEN
];
419 /* Add back all headers */
420 skb_push(skb
, skb
->data
- skb_network_header(skb
));
422 if ((skb
= skb_unshare(skb
, GFP_ATOMIC
)) == NULL
)
426 /* Ignore packet length and point to flags */
430 if (*ptr
& DN_RT_F_PF
) {
431 char padlen
= (*ptr
& ~DN_RT_F_PF
);
435 *ptr
++ = (cb
->rt_flags
& ~DN_RT_F_RQR
) | DN_RT_F_RTS
;
441 *ptr
= 0; /* Zero hop count */
443 /* Swap source and destination */
444 memcpy(tmp
, src_addr
, ETH_ALEN
);
445 memcpy(src_addr
, dst_addr
, ETH_ALEN
);
446 memcpy(dst_addr
, tmp
, ETH_ALEN
);
448 skb
->pkt_type
= PACKET_OUTGOING
;
449 dn_rt_finish_output(skb
, dst_addr
, src_addr
);
450 return NET_RX_SUCCESS
;
454 * dn_route_rx_packet - Try and find a route for an incoming packet
455 * @skb: The packet to find a route for
457 * Returns: result of input function if route is found, error code otherwise
459 static int dn_route_rx_packet(struct sk_buff
*skb
)
461 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
464 if ((err
= dn_route_input(skb
)) == 0)
465 return dst_input(skb
);
467 if (decnet_debug_level
& 4) {
468 char *devname
= skb
->dev
? skb
->dev
->name
: "???";
469 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
471 "DECnet: dn_route_rx_packet: rt_flags=0x%02x dev=%s len=%d src=0x%04hx dst=0x%04hx err=%d type=%d\n",
472 (int)cb
->rt_flags
, devname
, skb
->len
,
473 le16_to_cpu(cb
->src
), le16_to_cpu(cb
->dst
),
477 if ((skb
->pkt_type
== PACKET_HOST
) && (cb
->rt_flags
& DN_RT_F_RQR
)) {
478 switch(cb
->rt_flags
& DN_RT_PKT_MSK
) {
479 case DN_RT_PKT_SHORT
:
480 return dn_return_short(skb
);
482 return dn_return_long(skb
);
490 static int dn_route_rx_long(struct sk_buff
*skb
)
492 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
493 unsigned char *ptr
= skb
->data
;
495 if (!pskb_may_pull(skb
, 21)) /* 20 for long header, 1 for shortest nsp */
499 skb_reset_transport_header(skb
);
501 /* Destination info */
503 cb
->dst
= dn_eth2dn(ptr
);
504 if (memcmp(ptr
, dn_hiord_addr
, 4) != 0)
511 cb
->src
= dn_eth2dn(ptr
);
512 if (memcmp(ptr
, dn_hiord_addr
, 4) != 0)
517 cb
->hops
= *ptr
++; /* Visit Count */
519 return NF_HOOK(NFPROTO_DECNET
, NF_DN_PRE_ROUTING
, skb
, skb
->dev
, NULL
,
529 static int dn_route_rx_short(struct sk_buff
*skb
)
531 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
532 unsigned char *ptr
= skb
->data
;
534 if (!pskb_may_pull(skb
, 6)) /* 5 for short header + 1 for shortest nsp */
538 skb_reset_transport_header(skb
);
540 cb
->dst
= *(__le16
*)ptr
;
542 cb
->src
= *(__le16
*)ptr
;
544 cb
->hops
= *ptr
& 0x3f;
546 return NF_HOOK(NFPROTO_DECNET
, NF_DN_PRE_ROUTING
, skb
, skb
->dev
, NULL
,
554 static int dn_route_discard(struct sk_buff
*skb
)
557 * I know we drop the packet here, but thats considered success in
561 return NET_RX_SUCCESS
;
564 static int dn_route_ptp_hello(struct sk_buff
*skb
)
567 dn_neigh_pointopoint_hello(skb
);
568 return NET_RX_SUCCESS
;
571 int dn_route_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
, struct net_device
*orig_dev
)
573 struct dn_skb_cb
*cb
;
574 unsigned char flags
= 0;
575 __u16 len
= le16_to_cpu(*(__le16
*)skb
->data
);
576 struct dn_dev
*dn
= (struct dn_dev
*)dev
->dn_ptr
;
577 unsigned char padlen
= 0;
579 if (!net_eq(dev_net(dev
), &init_net
))
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_reset_network_header(skb
);
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(NFPROTO_DECNET
, NF_DN_HELLO
,
655 return NF_HOOK(NFPROTO_DECNET
, NF_DN_ROUTE
,
659 return NF_HOOK(NFPROTO_DECNET
, NF_DN_HELLO
,
661 dn_neigh_router_hello
);
664 return NF_HOOK(NFPROTO_DECNET
, NF_DN_HELLO
,
666 dn_neigh_endnode_hello
);
669 if (dn
->parms
.state
!= DN_DEV_S_RU
)
672 skb_pull(skb
, 1); /* Pull flags */
674 switch(flags
& DN_RT_PKT_MSK
) {
676 return dn_route_rx_long(skb
);
677 case DN_RT_PKT_SHORT
:
678 return dn_route_rx_short(skb
);
688 static int dn_output(struct sk_buff
*skb
)
690 struct dst_entry
*dst
= skb_dst(skb
);
691 struct dn_route
*rt
= (struct dn_route
*)dst
;
692 struct net_device
*dev
= dst
->dev
;
693 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
694 struct neighbour
*neigh
;
698 if ((neigh
= dst
->neighbour
) == NULL
)
703 cb
->src
= rt
->rt_saddr
;
704 cb
->dst
= rt
->rt_daddr
;
707 * Always set the Intra-Ethernet bit on all outgoing packets
708 * originated on this node. Only valid flag from upper layers
709 * is return-to-sender-requested. Set hop count to 0 too.
711 cb
->rt_flags
&= ~DN_RT_F_RQR
;
712 cb
->rt_flags
|= DN_RT_F_IE
;
715 return NF_HOOK(NFPROTO_DECNET
, NF_DN_LOCAL_OUT
, skb
, NULL
, dev
,
720 printk(KERN_DEBUG
"dn_output: This should not happen\n");
727 static int dn_forward(struct sk_buff
*skb
)
729 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
730 struct dst_entry
*dst
= skb_dst(skb
);
731 struct dn_dev
*dn_db
= dst
->dev
->dn_ptr
;
733 struct neighbour
*neigh
= dst
->neighbour
;
735 #ifdef CONFIG_NETFILTER
736 struct net_device
*dev
= skb
->dev
;
739 if (skb
->pkt_type
!= PACKET_HOST
)
742 /* Ensure that we have enough space for headers */
743 rt
= (struct dn_route
*)skb_dst(skb
);
744 header_len
= dn_db
->use_long
? 21 : 6;
745 if (skb_cow(skb
, LL_RESERVED_SPACE(rt
->dst
.dev
)+header_len
))
749 * Hop count exceeded.
754 skb
->dev
= rt
->dst
.dev
;
757 * If packet goes out same interface it came in on, then set
758 * the Intra-Ethernet bit. This has no effect for short
759 * packets, so we don't need to test for them here.
761 cb
->rt_flags
&= ~DN_RT_F_IE
;
762 if (rt
->rt_flags
& RTCF_DOREDIRECT
)
763 cb
->rt_flags
|= DN_RT_F_IE
;
765 return NF_HOOK(NFPROTO_DECNET
, NF_DN_FORWARD
, skb
, dev
, skb
->dev
,
774 * Used to catch bugs. This should never normally get
777 static int dn_rt_bug(struct sk_buff
*skb
)
779 if (net_ratelimit()) {
780 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
782 printk(KERN_DEBUG
"dn_rt_bug: skb from:%04x to:%04x\n",
783 le16_to_cpu(cb
->src
), le16_to_cpu(cb
->dst
));
791 static int dn_rt_set_next_hop(struct dn_route
*rt
, struct dn_fib_res
*res
)
793 struct dn_fib_info
*fi
= res
->fi
;
794 struct net_device
*dev
= rt
->dst
.dev
;
799 if (DN_FIB_RES_GW(*res
) &&
800 DN_FIB_RES_NH(*res
).nh_scope
== RT_SCOPE_LINK
)
801 rt
->rt_gateway
= DN_FIB_RES_GW(*res
);
802 memcpy(rt
->dst
.metrics
, fi
->fib_metrics
,
803 sizeof(rt
->dst
.metrics
));
805 rt
->rt_type
= res
->type
;
807 if (dev
!= NULL
&& rt
->dst
.neighbour
== NULL
) {
808 n
= __neigh_lookup_errno(&dn_neigh_table
, &rt
->rt_gateway
, dev
);
811 rt
->dst
.neighbour
= n
;
814 if (dst_metric(&rt
->dst
, RTAX_MTU
) == 0 ||
815 dst_metric(&rt
->dst
, RTAX_MTU
) > rt
->dst
.dev
->mtu
)
816 rt
->dst
.metrics
[RTAX_MTU
-1] = rt
->dst
.dev
->mtu
;
817 mss
= dn_mss_from_pmtu(dev
, dst_mtu(&rt
->dst
));
818 if (dst_metric(&rt
->dst
, RTAX_ADVMSS
) == 0 ||
819 dst_metric(&rt
->dst
, RTAX_ADVMSS
) > mss
)
820 rt
->dst
.metrics
[RTAX_ADVMSS
-1] = mss
;
824 static inline int dn_match_addr(__le16 addr1
, __le16 addr2
)
826 __u16 tmp
= le16_to_cpu(addr1
) ^ le16_to_cpu(addr2
);
835 static __le16
dnet_select_source(const struct net_device
*dev
, __le16 daddr
, int scope
)
838 struct dn_dev
*dn_db
= dev
->dn_ptr
;
839 struct dn_ifaddr
*ifa
;
843 read_lock(&dev_base_lock
);
844 for(ifa
= dn_db
->ifa_list
; ifa
; ifa
= ifa
->ifa_next
) {
845 if (ifa
->ifa_scope
> scope
)
848 saddr
= ifa
->ifa_local
;
851 ret
= dn_match_addr(daddr
, ifa
->ifa_local
);
852 if (ret
> best_match
)
853 saddr
= ifa
->ifa_local
;
855 saddr
= ifa
->ifa_local
;
857 read_unlock(&dev_base_lock
);
862 static inline __le16
__dn_fib_res_prefsrc(struct dn_fib_res
*res
)
864 return dnet_select_source(DN_FIB_RES_DEV(*res
), DN_FIB_RES_GW(*res
), res
->scope
);
867 static inline __le16
dn_fib_rules_map_destination(__le16 daddr
, struct dn_fib_res
*res
)
869 __le16 mask
= dnet_make_mask(res
->prefixlen
);
870 return (daddr
&~mask
)|res
->fi
->fib_nh
->nh_gw
;
873 static int dn_route_output_slow(struct dst_entry
**pprt
, const struct flowi
*oldflp
, int try_hard
)
875 struct flowi fl
= { .nl_u
= { .dn_u
=
876 { .daddr
= oldflp
->fld_dst
,
877 .saddr
= oldflp
->fld_src
,
878 .scope
= RT_SCOPE_UNIVERSE
,
880 .mark
= oldflp
->mark
,
881 .iif
= init_net
.loopback_dev
->ifindex
,
882 .oif
= oldflp
->oif
};
883 struct dn_route
*rt
= NULL
;
884 struct net_device
*dev_out
= NULL
, *dev
;
885 struct neighbour
*neigh
= NULL
;
888 struct dn_fib_res res
= { .fi
= NULL
, .type
= RTN_UNICAST
};
893 if (decnet_debug_level
& 16)
895 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
896 " iif=%d oif=%d\n", le16_to_cpu(oldflp
->fld_dst
),
897 le16_to_cpu(oldflp
->fld_src
),
898 oldflp
->mark
, init_net
.loopback_dev
->ifindex
, oldflp
->oif
);
900 /* If we have an output interface, verify its a DECnet device */
902 dev_out
= dev_get_by_index(&init_net
, oldflp
->oif
);
904 if (dev_out
&& dev_out
->dn_ptr
== NULL
) {
912 /* If we have a source address, verify that its a local address */
913 if (oldflp
->fld_src
) {
914 err
= -EADDRNOTAVAIL
;
917 if (dn_dev_islocal(dev_out
, oldflp
->fld_src
))
923 for_each_netdev_rcu(&init_net
, dev
) {
926 if (!dn_dev_islocal(dev
, oldflp
->fld_src
))
928 if ((dev
->flags
& IFF_LOOPBACK
) &&
930 !dn_dev_islocal(dev
, oldflp
->fld_dst
))
944 /* No destination? Assume its local */
946 fl
.fld_dst
= fl
.fld_src
;
948 err
= -EADDRNOTAVAIL
;
951 dev_out
= init_net
.loopback_dev
;
955 fl
.fld_src
= dnet_select_source(dev_out
, 0,
960 fl
.oif
= init_net
.loopback_dev
->ifindex
;
961 res
.type
= RTN_LOCAL
;
965 if (decnet_debug_level
& 16)
967 "dn_route_output_slow: initial checks complete."
968 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
969 le16_to_cpu(fl
.fld_dst
), le16_to_cpu(fl
.fld_src
),
973 * N.B. If the kernel is compiled without router support then
974 * dn_fib_lookup() will evaluate to non-zero so this if () block
975 * will always be executed.
978 if (try_hard
|| (err
= dn_fib_lookup(&fl
, &res
)) != 0) {
979 struct dn_dev
*dn_db
;
983 * Here the fallback is basically the standard algorithm for
984 * routing in endnodes which is described in the DECnet routing
987 * If we are not trying hard, look in neighbour cache.
988 * The result is tested to ensure that if a specific output
989 * device/source address was requested, then we honour that
993 neigh
= neigh_lookup_nodev(&dn_neigh_table
, &init_net
, &fl
.fld_dst
);
996 (neigh
->dev
->ifindex
!= oldflp
->oif
)) ||
998 (!dn_dev_islocal(neigh
->dev
,
999 oldflp
->fld_src
)))) {
1000 neigh_release(neigh
);
1005 if (dn_dev_islocal(neigh
->dev
, fl
.fld_dst
)) {
1006 dev_out
= init_net
.loopback_dev
;
1007 res
.type
= RTN_LOCAL
;
1009 dev_out
= neigh
->dev
;
1017 /* Not there? Perhaps its a local address */
1018 if (dev_out
== NULL
)
1019 dev_out
= dn_dev_get_default();
1021 if (dev_out
== NULL
)
1023 dn_db
= dev_out
->dn_ptr
;
1024 /* Possible improvement - check all devices for local addr */
1025 if (dn_dev_islocal(dev_out
, fl
.fld_dst
)) {
1027 dev_out
= init_net
.loopback_dev
;
1029 res
.type
= RTN_LOCAL
;
1032 /* Not local either.... try sending it to the default router */
1033 neigh
= neigh_clone(dn_db
->router
);
1034 BUG_ON(neigh
&& neigh
->dev
!= dev_out
);
1036 /* Ok then, we assume its directly connected and move on */
1039 gateway
= ((struct dn_neigh
*)neigh
)->addr
;
1041 gateway
= fl
.fld_dst
;
1042 if (fl
.fld_src
== 0) {
1043 fl
.fld_src
= dnet_select_source(dev_out
, gateway
,
1044 res
.type
== RTN_LOCAL
?
1047 if (fl
.fld_src
== 0 && res
.type
!= RTN_LOCAL
)
1050 fl
.oif
= dev_out
->ifindex
;
1055 if (res
.type
== RTN_NAT
)
1058 if (res
.type
== RTN_LOCAL
) {
1060 fl
.fld_src
= fl
.fld_dst
;
1063 dev_out
= init_net
.loopback_dev
;
1065 fl
.oif
= dev_out
->ifindex
;
1067 dn_fib_info_put(res
.fi
);
1072 if (res
.fi
->fib_nhs
> 1 && fl
.oif
== 0)
1073 dn_fib_select_multipath(&fl
, &res
);
1076 * We could add some logic to deal with default routes here and
1077 * get rid of some of the special casing above.
1081 fl
.fld_src
= DN_FIB_RES_PREFSRC(res
);
1085 dev_out
= DN_FIB_RES_DEV(res
);
1087 fl
.oif
= dev_out
->ifindex
;
1088 gateway
= DN_FIB_RES_GW(res
);
1091 if (dev_out
->flags
& IFF_LOOPBACK
)
1092 flags
|= RTCF_LOCAL
;
1094 rt
= dst_alloc(&dn_dst_ops
);
1098 atomic_set(&rt
->dst
.__refcnt
, 1);
1099 rt
->dst
.flags
= DST_HOST
;
1101 rt
->fl
.fld_src
= oldflp
->fld_src
;
1102 rt
->fl
.fld_dst
= oldflp
->fld_dst
;
1103 rt
->fl
.oif
= oldflp
->oif
;
1105 rt
->fl
.mark
= oldflp
->mark
;
1107 rt
->rt_saddr
= fl
.fld_src
;
1108 rt
->rt_daddr
= fl
.fld_dst
;
1109 rt
->rt_gateway
= gateway
? gateway
: fl
.fld_dst
;
1110 rt
->rt_local_src
= fl
.fld_src
;
1112 rt
->rt_dst_map
= fl
.fld_dst
;
1113 rt
->rt_src_map
= fl
.fld_src
;
1115 rt
->dst
.dev
= dev_out
;
1117 rt
->dst
.neighbour
= neigh
;
1120 rt
->dst
.lastuse
= jiffies
;
1121 rt
->dst
.output
= dn_output
;
1122 rt
->dst
.input
= dn_rt_bug
;
1123 rt
->rt_flags
= flags
;
1124 if (flags
& RTCF_LOCAL
)
1125 rt
->dst
.input
= dn_nsp_rx
;
1127 err
= dn_rt_set_next_hop(rt
, &res
);
1131 hash
= dn_hash(rt
->fl
.fld_src
, rt
->fl
.fld_dst
);
1132 dn_insert_route(rt
, hash
, (struct dn_route
**)pprt
);
1136 neigh_release(neigh
);
1138 dn_fib_res_put(&res
);
1145 err
= -EADDRNOTAVAIL
;
1160 * N.B. The flags may be moved into the flowi at some future stage.
1162 static int __dn_route_output_key(struct dst_entry
**pprt
, const struct flowi
*flp
, int flags
)
1164 unsigned hash
= dn_hash(flp
->fld_src
, flp
->fld_dst
);
1165 struct dn_route
*rt
= NULL
;
1167 if (!(flags
& MSG_TRYHARD
)) {
1169 for (rt
= rcu_dereference_bh(dn_rt_hash_table
[hash
].chain
); rt
;
1170 rt
= rcu_dereference_bh(rt
->dst
.dn_next
)) {
1171 if ((flp
->fld_dst
== rt
->fl
.fld_dst
) &&
1172 (flp
->fld_src
== rt
->fl
.fld_src
) &&
1173 (flp
->mark
== rt
->fl
.mark
) &&
1174 (rt
->fl
.iif
== 0) &&
1175 (rt
->fl
.oif
== flp
->oif
)) {
1176 dst_use(&rt
->dst
, jiffies
);
1177 rcu_read_unlock_bh();
1182 rcu_read_unlock_bh();
1185 return dn_route_output_slow(pprt
, flp
, flags
);
1188 static int dn_route_output_key(struct dst_entry
**pprt
, struct flowi
*flp
, int flags
)
1192 err
= __dn_route_output_key(pprt
, flp
, flags
);
1193 if (err
== 0 && flp
->proto
) {
1194 err
= xfrm_lookup(&init_net
, pprt
, flp
, NULL
, 0);
1199 int dn_route_output_sock(struct dst_entry
**pprt
, struct flowi
*fl
, struct sock
*sk
, int flags
)
1203 err
= __dn_route_output_key(pprt
, fl
, flags
& MSG_TRYHARD
);
1204 if (err
== 0 && fl
->proto
) {
1205 err
= xfrm_lookup(&init_net
, pprt
, fl
, sk
,
1206 (flags
& MSG_DONTWAIT
) ? 0 : XFRM_LOOKUP_WAIT
);
1211 static int dn_route_input_slow(struct sk_buff
*skb
)
1213 struct dn_route
*rt
= NULL
;
1214 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
1215 struct net_device
*in_dev
= skb
->dev
;
1216 struct net_device
*out_dev
= NULL
;
1217 struct dn_dev
*dn_db
;
1218 struct neighbour
*neigh
= NULL
;
1222 __le16 local_src
= 0;
1223 struct flowi fl
= { .nl_u
= { .dn_u
=
1226 .scope
= RT_SCOPE_UNIVERSE
,
1229 .iif
= skb
->dev
->ifindex
};
1230 struct dn_fib_res res
= { .fi
= NULL
, .type
= RTN_UNREACHABLE
};
1236 if ((dn_db
= in_dev
->dn_ptr
) == NULL
)
1239 /* Zero source addresses are not allowed */
1240 if (fl
.fld_src
== 0)
1244 * In this case we've just received a packet from a source
1245 * outside ourselves pretending to come from us. We don't
1246 * allow it any further to prevent routing loops, spoofing and
1247 * other nasties. Loopback packets already have the dst attached
1248 * so this only affects packets which have originated elsewhere.
1251 if (dn_dev_islocal(in_dev
, cb
->src
))
1254 err
= dn_fib_lookup(&fl
, &res
);
1259 * Is the destination us ?
1261 if (!dn_dev_islocal(in_dev
, cb
->dst
))
1264 res
.type
= RTN_LOCAL
;
1266 __le16 src_map
= fl
.fld_src
;
1269 out_dev
= DN_FIB_RES_DEV(res
);
1270 if (out_dev
== NULL
) {
1271 if (net_ratelimit())
1272 printk(KERN_CRIT
"Bug in dn_route_input_slow() "
1273 "No output device\n");
1279 src_map
= fl
.fld_src
; /* no NAT support for now */
1281 gateway
= DN_FIB_RES_GW(res
);
1282 if (res
.type
== RTN_NAT
) {
1283 fl
.fld_dst
= dn_fib_rules_map_destination(fl
.fld_dst
, &res
);
1284 dn_fib_res_put(&res
);
1286 if (dn_fib_lookup(&fl
, &res
))
1289 if (res
.type
!= RTN_UNICAST
)
1292 gateway
= fl
.fld_dst
;
1294 fl
.fld_src
= src_map
;
1300 * Forwarding check here, we only check for forwarding
1301 * being turned off, if you want to only forward intra
1302 * area, its up to you to set the routing tables up
1305 if (dn_db
->parms
.forwarding
== 0)
1308 if (res
.fi
->fib_nhs
> 1 && fl
.oif
== 0)
1309 dn_fib_select_multipath(&fl
, &res
);
1312 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1313 * flag as a hint to set the intra-ethernet bit when
1314 * forwarding. If we've got NAT in operation, we don't do
1315 * this optimisation.
1317 if (out_dev
== in_dev
&& !(flags
& RTCF_NAT
))
1318 flags
|= RTCF_DOREDIRECT
;
1320 local_src
= DN_FIB_RES_PREFSRC(res
);
1323 case RTN_UNREACHABLE
:
1326 flags
|= RTCF_LOCAL
;
1327 fl
.fld_src
= cb
->dst
;
1328 fl
.fld_dst
= cb
->src
;
1330 /* Routing tables gave us a gateway */
1334 /* Packet was intra-ethernet, so we know its on-link */
1335 if (cb
->rt_flags
& DN_RT_F_IE
) {
1337 flags
|= RTCF_DIRECTSRC
;
1341 /* Use the default router if there is one */
1342 neigh
= neigh_clone(dn_db
->router
);
1344 gateway
= ((struct dn_neigh
*)neigh
)->addr
;
1348 /* Close eyes and pray */
1350 flags
|= RTCF_DIRECTSRC
;
1357 rt
= dst_alloc(&dn_dst_ops
);
1361 rt
->rt_saddr
= fl
.fld_src
;
1362 rt
->rt_daddr
= fl
.fld_dst
;
1363 rt
->rt_gateway
= fl
.fld_dst
;
1365 rt
->rt_gateway
= gateway
;
1366 rt
->rt_local_src
= local_src
? local_src
: rt
->rt_saddr
;
1368 rt
->rt_dst_map
= fl
.fld_dst
;
1369 rt
->rt_src_map
= fl
.fld_src
;
1371 rt
->fl
.fld_src
= cb
->src
;
1372 rt
->fl
.fld_dst
= cb
->dst
;
1374 rt
->fl
.iif
= in_dev
->ifindex
;
1375 rt
->fl
.mark
= fl
.mark
;
1377 rt
->dst
.flags
= DST_HOST
;
1378 rt
->dst
.neighbour
= neigh
;
1379 rt
->dst
.dev
= out_dev
;
1380 rt
->dst
.lastuse
= jiffies
;
1381 rt
->dst
.output
= dn_rt_bug
;
1384 rt
->dst
.input
= dn_forward
;
1387 rt
->dst
.output
= dn_output
;
1388 rt
->dst
.input
= dn_nsp_rx
;
1389 rt
->dst
.dev
= in_dev
;
1390 flags
|= RTCF_LOCAL
;
1393 case RTN_UNREACHABLE
:
1395 rt
->dst
.input
= dst_discard
;
1397 rt
->rt_flags
= flags
;
1399 dev_hold(rt
->dst
.dev
);
1401 err
= dn_rt_set_next_hop(rt
, &res
);
1405 hash
= dn_hash(rt
->fl
.fld_src
, rt
->fl
.fld_dst
);
1406 dn_insert_route(rt
, hash
, &rt
);
1407 skb_dst_set(skb
, &rt
->dst
);
1411 neigh_release(neigh
);
1413 dn_fib_res_put(&res
);
1433 static int dn_route_input(struct sk_buff
*skb
)
1435 struct dn_route
*rt
;
1436 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
1437 unsigned hash
= dn_hash(cb
->src
, cb
->dst
);
1443 for(rt
= rcu_dereference(dn_rt_hash_table
[hash
].chain
); rt
!= NULL
;
1444 rt
= rcu_dereference(rt
->dst
.dn_next
)) {
1445 if ((rt
->fl
.fld_src
== cb
->src
) &&
1446 (rt
->fl
.fld_dst
== cb
->dst
) &&
1447 (rt
->fl
.oif
== 0) &&
1448 (rt
->fl
.mark
== skb
->mark
) &&
1449 (rt
->fl
.iif
== cb
->iif
)) {
1450 dst_use(&rt
->dst
, jiffies
);
1452 skb_dst_set(skb
, (struct dst_entry
*)rt
);
1458 return dn_route_input_slow(skb
);
1461 static int dn_rt_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
1462 int event
, int nowait
, unsigned int flags
)
1464 struct dn_route
*rt
= (struct dn_route
*)skb_dst(skb
);
1466 struct nlmsghdr
*nlh
;
1467 unsigned char *b
= skb_tail_pointer(skb
);
1470 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*r
), flags
);
1471 r
= NLMSG_DATA(nlh
);
1472 r
->rtm_family
= AF_DECnet
;
1473 r
->rtm_dst_len
= 16;
1476 r
->rtm_table
= RT_TABLE_MAIN
;
1477 RTA_PUT_U32(skb
, RTA_TABLE
, RT_TABLE_MAIN
);
1478 r
->rtm_type
= rt
->rt_type
;
1479 r
->rtm_flags
= (rt
->rt_flags
& ~0xFFFF) | RTM_F_CLONED
;
1480 r
->rtm_scope
= RT_SCOPE_UNIVERSE
;
1481 r
->rtm_protocol
= RTPROT_UNSPEC
;
1482 if (rt
->rt_flags
& RTCF_NOTIFY
)
1483 r
->rtm_flags
|= RTM_F_NOTIFY
;
1484 RTA_PUT(skb
, RTA_DST
, 2, &rt
->rt_daddr
);
1485 if (rt
->fl
.fld_src
) {
1486 r
->rtm_src_len
= 16;
1487 RTA_PUT(skb
, RTA_SRC
, 2, &rt
->fl
.fld_src
);
1490 RTA_PUT(skb
, RTA_OIF
, sizeof(int), &rt
->dst
.dev
->ifindex
);
1492 * Note to self - change this if input routes reverse direction when
1493 * they deal only with inputs and not with replies like they do
1496 RTA_PUT(skb
, RTA_PREFSRC
, 2, &rt
->rt_local_src
);
1497 if (rt
->rt_daddr
!= rt
->rt_gateway
)
1498 RTA_PUT(skb
, RTA_GATEWAY
, 2, &rt
->rt_gateway
);
1499 if (rtnetlink_put_metrics(skb
, rt
->dst
.metrics
) < 0)
1500 goto rtattr_failure
;
1501 expires
= rt
->dst
.expires
? rt
->dst
.expires
- jiffies
: 0;
1502 if (rtnl_put_cacheinfo(skb
, &rt
->dst
, 0, 0, 0, expires
,
1504 goto rtattr_failure
;
1506 RTA_PUT(skb
, RTA_IIF
, sizeof(int), &rt
->fl
.iif
);
1508 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
1518 * This is called by both endnodes and routers now.
1520 static int dn_cache_getroute(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
, void *arg
)
1522 struct net
*net
= sock_net(in_skb
->sk
);
1523 struct rtattr
**rta
= arg
;
1524 struct rtmsg
*rtm
= NLMSG_DATA(nlh
);
1525 struct dn_route
*rt
= NULL
;
1526 struct dn_skb_cb
*cb
;
1528 struct sk_buff
*skb
;
1531 if (!net_eq(net
, &init_net
))
1534 memset(&fl
, 0, sizeof(fl
));
1535 fl
.proto
= DNPROTO_NSP
;
1537 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
1540 skb_reset_mac_header(skb
);
1541 cb
= DN_SKB_CB(skb
);
1544 memcpy(&fl
.fld_src
, RTA_DATA(rta
[RTA_SRC
-1]), 2);
1546 memcpy(&fl
.fld_dst
, RTA_DATA(rta
[RTA_DST
-1]), 2);
1548 memcpy(&fl
.iif
, RTA_DATA(rta
[RTA_IIF
-1]), sizeof(int));
1551 struct net_device
*dev
;
1552 if ((dev
= dev_get_by_index(&init_net
, fl
.iif
)) == NULL
) {
1561 skb
->protocol
= htons(ETH_P_DNA_RT
);
1563 cb
->src
= fl
.fld_src
;
1564 cb
->dst
= fl
.fld_dst
;
1566 err
= dn_route_input(skb
);
1568 memset(cb
, 0, sizeof(struct dn_skb_cb
));
1569 rt
= (struct dn_route
*)skb_dst(skb
);
1570 if (!err
&& -rt
->dst
.error
)
1571 err
= rt
->dst
.error
;
1574 if (rta
[RTA_OIF
- 1])
1575 memcpy(&oif
, RTA_DATA(rta
[RTA_OIF
- 1]), sizeof(int));
1577 err
= dn_route_output_key((struct dst_entry
**)&rt
, &fl
, 0);
1585 skb_dst_set(skb
, &rt
->dst
);
1586 if (rtm
->rtm_flags
& RTM_F_NOTIFY
)
1587 rt
->rt_flags
|= RTCF_NOTIFY
;
1589 err
= dn_rt_fill_info(skb
, NETLINK_CB(in_skb
).pid
, nlh
->nlmsg_seq
, RTM_NEWROUTE
, 0, 0);
1598 return rtnl_unicast(skb
, &init_net
, NETLINK_CB(in_skb
).pid
);
1606 * For routers, this is called from dn_fib_dump, but for endnodes its
1607 * called directly from the rtnetlink dispatch table.
1609 int dn_cache_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1611 struct net
*net
= sock_net(skb
->sk
);
1612 struct dn_route
*rt
;
1616 if (!net_eq(net
, &init_net
))
1619 if (NLMSG_PAYLOAD(cb
->nlh
, 0) < sizeof(struct rtmsg
))
1621 if (!(((struct rtmsg
*)NLMSG_DATA(cb
->nlh
))->rtm_flags
&RTM_F_CLONED
))
1625 s_idx
= idx
= cb
->args
[1];
1626 for(h
= 0; h
<= dn_rt_hash_mask
; h
++) {
1632 for(rt
= rcu_dereference_bh(dn_rt_hash_table
[h
].chain
), idx
= 0;
1634 rt
= rcu_dereference_bh(rt
->dst
.dn_next
), idx
++) {
1637 skb_dst_set(skb
, dst_clone(&rt
->dst
));
1638 if (dn_rt_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
1639 cb
->nlh
->nlmsg_seq
, RTM_NEWROUTE
,
1640 1, NLM_F_MULTI
) <= 0) {
1642 rcu_read_unlock_bh();
1647 rcu_read_unlock_bh();
1656 #ifdef CONFIG_PROC_FS
1657 struct dn_rt_cache_iter_state
{
1661 static struct dn_route
*dn_rt_cache_get_first(struct seq_file
*seq
)
1663 struct dn_route
*rt
= NULL
;
1664 struct dn_rt_cache_iter_state
*s
= seq
->private;
1666 for(s
->bucket
= dn_rt_hash_mask
; s
->bucket
>= 0; --s
->bucket
) {
1668 rt
= rcu_dereference_bh(dn_rt_hash_table
[s
->bucket
].chain
);
1671 rcu_read_unlock_bh();
1676 static struct dn_route
*dn_rt_cache_get_next(struct seq_file
*seq
, struct dn_route
*rt
)
1678 struct dn_rt_cache_iter_state
*s
= seq
->private;
1680 rt
= rt
->dst
.dn_next
;
1682 rcu_read_unlock_bh();
1683 if (--s
->bucket
< 0)
1686 rt
= dn_rt_hash_table
[s
->bucket
].chain
;
1688 return rcu_dereference_bh(rt
);
1691 static void *dn_rt_cache_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1693 struct dn_route
*rt
= dn_rt_cache_get_first(seq
);
1696 while(*pos
&& (rt
= dn_rt_cache_get_next(seq
, rt
)))
1699 return *pos
? NULL
: rt
;
1702 static void *dn_rt_cache_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1704 struct dn_route
*rt
= dn_rt_cache_get_next(seq
, v
);
1709 static void dn_rt_cache_seq_stop(struct seq_file
*seq
, void *v
)
1712 rcu_read_unlock_bh();
1715 static int dn_rt_cache_seq_show(struct seq_file
*seq
, void *v
)
1717 struct dn_route
*rt
= v
;
1718 char buf1
[DN_ASCBUF_LEN
], buf2
[DN_ASCBUF_LEN
];
1720 seq_printf(seq
, "%-8s %-7s %-7s %04d %04d %04d\n",
1721 rt
->dst
.dev
? rt
->dst
.dev
->name
: "*",
1722 dn_addr2asc(le16_to_cpu(rt
->rt_daddr
), buf1
),
1723 dn_addr2asc(le16_to_cpu(rt
->rt_saddr
), buf2
),
1724 atomic_read(&rt
->dst
.__refcnt
),
1726 (int) dst_metric(&rt
->dst
, RTAX_RTT
));
1730 static const struct seq_operations dn_rt_cache_seq_ops
= {
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
,
1737 static int dn_rt_cache_seq_open(struct inode
*inode
, struct file
*file
)
1739 return seq_open_private(file
, &dn_rt_cache_seq_ops
,
1740 sizeof(struct dn_rt_cache_iter_state
));
1743 static const struct file_operations dn_rt_cache_seq_fops
= {
1744 .owner
= THIS_MODULE
,
1745 .open
= dn_rt_cache_seq_open
,
1747 .llseek
= seq_lseek
,
1748 .release
= seq_release_private
,
1751 #endif /* CONFIG_PROC_FS */
1753 void __init
dn_route_init(void)
1757 dn_dst_ops
.kmem_cachep
=
1758 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route
), 0,
1759 SLAB_HWCACHE_ALIGN
|SLAB_PANIC
, NULL
);
1760 dst_entries_init(&dn_dst_ops
);
1761 setup_timer(&dn_route_timer
, dn_dst_check_expire
, 0);
1762 dn_route_timer
.expires
= jiffies
+ decnet_dst_gc_interval
* HZ
;
1763 add_timer(&dn_route_timer
);
1765 goal
= totalram_pages
>> (26 - PAGE_SHIFT
);
1767 for(order
= 0; (1UL << order
) < goal
; order
++)
1771 * Only want 1024 entries max, since the table is very, very unlikely
1772 * to be larger than that.
1774 while(order
&& ((((1UL << order
) * PAGE_SIZE
) /
1775 sizeof(struct dn_rt_hash_bucket
)) >= 2048))
1779 dn_rt_hash_mask
= (1UL << order
) * PAGE_SIZE
/
1780 sizeof(struct dn_rt_hash_bucket
);
1781 while(dn_rt_hash_mask
& (dn_rt_hash_mask
- 1))
1783 dn_rt_hash_table
= (struct dn_rt_hash_bucket
*)
1784 __get_free_pages(GFP_ATOMIC
, order
);
1785 } while (dn_rt_hash_table
== NULL
&& --order
> 0);
1787 if (!dn_rt_hash_table
)
1788 panic("Failed to allocate DECnet route cache hash table\n");
1791 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1793 (long)(dn_rt_hash_mask
*sizeof(struct dn_rt_hash_bucket
))/1024);
1796 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
1797 spin_lock_init(&dn_rt_hash_table
[i
].lock
);
1798 dn_rt_hash_table
[i
].chain
= NULL
;
1801 dn_dst_ops
.gc_thresh
= (dn_rt_hash_mask
+ 1);
1803 proc_net_fops_create(&init_net
, "decnet_cache", S_IRUGO
, &dn_rt_cache_seq_fops
);
1805 #ifdef CONFIG_DECNET_ROUTER
1806 rtnl_register(PF_DECnet
, RTM_GETROUTE
, dn_cache_getroute
, dn_fib_dump
);
1808 rtnl_register(PF_DECnet
, RTM_GETROUTE
, dn_cache_getroute
,
1813 void __exit
dn_route_cleanup(void)
1815 del_timer(&dn_route_timer
);
1818 proc_net_remove(&init_net
, "decnet_cache");
1819 dst_entries_destroy(&dn_dst_ops
);