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/net_namespace.h>
81 #include <net/netlink.h>
82 #include <net/neighbour.h>
85 #include <net/fib_rules.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>
93 struct dn_rt_hash_bucket
95 struct dn_route
*chain
;
97 } __attribute__((__aligned__(8)));
99 extern struct neigh_table dn_neigh_table
;
102 static unsigned char dn_hiord_addr
[6] = {0xAA,0x00,0x04,0x00,0x00,0x00};
104 static const int dn_rt_min_delay
= 2 * HZ
;
105 static const int dn_rt_max_delay
= 10 * HZ
;
106 static const int dn_rt_mtu_expires
= 10 * 60 * HZ
;
108 static unsigned long dn_rt_deadline
;
110 static int dn_dst_gc(void);
111 static struct dst_entry
*dn_dst_check(struct dst_entry
*, __u32
);
112 static struct dst_entry
*dn_dst_negative_advice(struct dst_entry
*);
113 static void dn_dst_link_failure(struct sk_buff
*);
114 static void dn_dst_update_pmtu(struct dst_entry
*dst
, u32 mtu
);
115 static int dn_route_input(struct sk_buff
*);
116 static void dn_run_flush(unsigned long dummy
);
118 static struct dn_rt_hash_bucket
*dn_rt_hash_table
;
119 static unsigned dn_rt_hash_mask
;
121 static struct timer_list dn_route_timer
;
122 static DEFINE_TIMER(dn_rt_flush_timer
, dn_run_flush
, 0, 0);
123 int decnet_dst_gc_interval
= 2;
125 static struct dst_ops dn_dst_ops
= {
127 .protocol
= __constant_htons(ETH_P_DNA_RT
),
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),
138 static __inline__
unsigned dn_hash(__le16 src
, __le16 dst
)
140 __u16 tmp
= (__u16 __force
)(src
^ dst
);
144 return dn_rt_hash_mask
& (unsigned)tmp
;
147 static inline void dnrt_free(struct dn_route
*rt
)
149 call_rcu_bh(&rt
->u
.dst
.rcu_head
, dst_rcu_free
);
152 static inline void dnrt_drop(struct dn_route
*rt
)
154 dst_release(&rt
->u
.dst
);
155 call_rcu_bh(&rt
->u
.dst
.rcu_head
, dst_rcu_free
);
158 static void dn_dst_check_expire(unsigned long dummy
)
161 struct dn_route
*rt
, **rtp
;
162 unsigned long now
= jiffies
;
163 unsigned long expire
= 120 * HZ
;
165 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
166 rtp
= &dn_rt_hash_table
[i
].chain
;
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
) {
172 rtp
= &rt
->u
.dst
.dn_next
;
175 *rtp
= rt
->u
.dst
.dn_next
;
176 rt
->u
.dst
.dn_next
= NULL
;
179 spin_unlock(&dn_rt_hash_table
[i
].lock
);
181 if ((jiffies
- now
) > 0)
185 mod_timer(&dn_route_timer
, now
+ decnet_dst_gc_interval
* HZ
);
188 static int dn_dst_gc(void)
190 struct dn_route
*rt
, **rtp
;
192 unsigned long now
= jiffies
;
193 unsigned long expire
= 10 * HZ
;
195 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
197 spin_lock_bh(&dn_rt_hash_table
[i
].lock
);
198 rtp
= &dn_rt_hash_table
[i
].chain
;
200 while((rt
=*rtp
) != NULL
) {
201 if (atomic_read(&rt
->u
.dst
.__refcnt
) ||
202 (now
- rt
->u
.dst
.lastuse
) < expire
) {
203 rtp
= &rt
->u
.dst
.dn_next
;
206 *rtp
= rt
->u
.dst
.dn_next
;
207 rt
->u
.dst
.dn_next
= NULL
;
211 spin_unlock_bh(&dn_rt_hash_table
[i
].lock
);
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.
224 * We update both the mtu and the advertised mss (i.e. the segment size we
225 * advertise to the other end).
227 static void dn_dst_update_pmtu(struct dst_entry
*dst
, u32 mtu
)
230 struct dn_dev
*dn
= dst
->neighbour
?
231 (struct dn_dev
*)dst
->neighbour
->dev
->dn_ptr
: NULL
;
233 if (dn
&& dn
->use_long
== 0)
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
);
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
;
252 * When a route has been marked obsolete. (e.g. routing cache flush)
254 static struct dst_entry
*dn_dst_check(struct dst_entry
*dst
, __u32 cookie
)
259 static struct dst_entry
*dn_dst_negative_advice(struct dst_entry
*dst
)
265 static void dn_dst_link_failure(struct sk_buff
*skb
)
270 static inline int compare_keys(struct flowi
*fl1
, struct flowi
*fl2
)
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
) |
274 (fl1
->mark
^ fl2
->mark
) |
275 (fl1
->nl_u
.dn_u
.scope
^ fl2
->nl_u
.dn_u
.scope
) |
276 (fl1
->oif
^ fl2
->oif
) |
277 (fl1
->iif
^ fl2
->iif
)) == 0;
280 static int dn_insert_route(struct dn_route
*rt
, unsigned hash
, struct dn_route
**rp
)
282 struct dn_route
*rth
, **rthp
;
283 unsigned long now
= jiffies
;
285 rthp
= &dn_rt_hash_table
[hash
].chain
;
287 spin_lock_bh(&dn_rt_hash_table
[hash
].lock
);
288 while((rth
= *rthp
) != NULL
) {
289 if (compare_keys(&rth
->fl
, &rt
->fl
)) {
291 *rthp
= rth
->u
.dst
.dn_next
;
292 rcu_assign_pointer(rth
->u
.dst
.dn_next
,
293 dn_rt_hash_table
[hash
].chain
);
294 rcu_assign_pointer(dn_rt_hash_table
[hash
].chain
, rth
);
296 dst_use(&rth
->u
.dst
, now
);
297 spin_unlock_bh(&dn_rt_hash_table
[hash
].lock
);
303 rthp
= &rth
->u
.dst
.dn_next
;
306 rcu_assign_pointer(rt
->u
.dst
.dn_next
, dn_rt_hash_table
[hash
].chain
);
307 rcu_assign_pointer(dn_rt_hash_table
[hash
].chain
, rt
);
309 dst_use(&rt
->u
.dst
, now
);
310 spin_unlock_bh(&dn_rt_hash_table
[hash
].lock
);
315 void dn_run_flush(unsigned long dummy
)
318 struct dn_route
*rt
, *next
;
320 for(i
= 0; i
< dn_rt_hash_mask
; i
++) {
321 spin_lock_bh(&dn_rt_hash_table
[i
].lock
);
323 if ((rt
= xchg(&dn_rt_hash_table
[i
].chain
, NULL
)) == NULL
)
324 goto nothing_to_declare
;
327 next
= rt
->u
.dst
.dn_next
;
328 rt
->u
.dst
.dn_next
= NULL
;
329 dst_free((struct dst_entry
*)rt
);
333 spin_unlock_bh(&dn_rt_hash_table
[i
].lock
);
337 static DEFINE_SPINLOCK(dn_rt_flush_lock
);
339 void dn_rt_cache_flush(int delay
)
341 unsigned long now
= jiffies
;
342 int user_mode
= !in_interrupt();
345 delay
= dn_rt_min_delay
;
347 spin_lock_bh(&dn_rt_flush_lock
);
349 if (del_timer(&dn_rt_flush_timer
) && delay
> 0 && dn_rt_deadline
) {
350 long tmo
= (long)(dn_rt_deadline
- now
);
352 if (user_mode
&& tmo
< dn_rt_max_delay
- dn_rt_min_delay
)
360 spin_unlock_bh(&dn_rt_flush_lock
);
365 if (dn_rt_deadline
== 0)
366 dn_rt_deadline
= now
+ dn_rt_max_delay
;
368 dn_rt_flush_timer
.expires
= now
+ delay
;
369 add_timer(&dn_rt_flush_timer
);
370 spin_unlock_bh(&dn_rt_flush_lock
);
374 * dn_return_short - Return a short packet to its sender
375 * @skb: The packet to return
378 static int dn_return_short(struct sk_buff
*skb
)
380 struct dn_skb_cb
*cb
;
386 /* Add back headers */
387 skb_push(skb
, skb
->data
- skb_network_header(skb
));
389 if ((skb
= skb_unshare(skb
, GFP_ATOMIC
)) == NULL
)
393 /* Skip packet length and point to flags */
395 *ptr
++ = (cb
->rt_flags
& ~DN_RT_F_RQR
) | DN_RT_F_RTS
;
401 *ptr
= 0; /* Zero hop count */
403 /* Swap source and destination */
408 skb
->pkt_type
= PACKET_OUTGOING
;
409 dn_rt_finish_output(skb
, NULL
, NULL
);
410 return NET_RX_SUCCESS
;
414 * dn_return_long - Return a long packet to its sender
415 * @skb: The long format packet to return
418 static int dn_return_long(struct sk_buff
*skb
)
420 struct dn_skb_cb
*cb
;
422 unsigned char *src_addr
, *dst_addr
;
423 unsigned char tmp
[ETH_ALEN
];
425 /* Add back all headers */
426 skb_push(skb
, skb
->data
- skb_network_header(skb
));
428 if ((skb
= skb_unshare(skb
, GFP_ATOMIC
)) == NULL
)
432 /* Ignore packet length and point to flags */
436 if (*ptr
& DN_RT_F_PF
) {
437 char padlen
= (*ptr
& ~DN_RT_F_PF
);
441 *ptr
++ = (cb
->rt_flags
& ~DN_RT_F_RQR
) | DN_RT_F_RTS
;
447 *ptr
= 0; /* Zero hop count */
449 /* Swap source and destination */
450 memcpy(tmp
, src_addr
, ETH_ALEN
);
451 memcpy(src_addr
, dst_addr
, ETH_ALEN
);
452 memcpy(dst_addr
, tmp
, ETH_ALEN
);
454 skb
->pkt_type
= PACKET_OUTGOING
;
455 dn_rt_finish_output(skb
, dst_addr
, src_addr
);
456 return NET_RX_SUCCESS
;
460 * dn_route_rx_packet - Try and find a route for an incoming packet
461 * @skb: The packet to find a route for
463 * Returns: result of input function if route is found, error code otherwise
465 static int dn_route_rx_packet(struct sk_buff
*skb
)
467 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
470 if ((err
= dn_route_input(skb
)) == 0)
471 return dst_input(skb
);
473 if (decnet_debug_level
& 4) {
474 char *devname
= skb
->dev
? skb
->dev
->name
: "???";
475 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
477 "DECnet: dn_route_rx_packet: rt_flags=0x%02x dev=%s len=%d src=0x%04hx dst=0x%04hx err=%d type=%d\n",
478 (int)cb
->rt_flags
, devname
, skb
->len
,
479 dn_ntohs(cb
->src
), dn_ntohs(cb
->dst
),
483 if ((skb
->pkt_type
== PACKET_HOST
) && (cb
->rt_flags
& DN_RT_F_RQR
)) {
484 switch(cb
->rt_flags
& DN_RT_PKT_MSK
) {
485 case DN_RT_PKT_SHORT
:
486 return dn_return_short(skb
);
488 return dn_return_long(skb
);
496 static int dn_route_rx_long(struct sk_buff
*skb
)
498 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
499 unsigned char *ptr
= skb
->data
;
501 if (!pskb_may_pull(skb
, 21)) /* 20 for long header, 1 for shortest nsp */
505 skb_reset_transport_header(skb
);
507 /* Destination info */
509 cb
->dst
= dn_eth2dn(ptr
);
510 if (memcmp(ptr
, dn_hiord_addr
, 4) != 0)
517 cb
->src
= dn_eth2dn(ptr
);
518 if (memcmp(ptr
, dn_hiord_addr
, 4) != 0)
523 cb
->hops
= *ptr
++; /* Visit Count */
525 return NF_HOOK(PF_DECnet
, NF_DN_PRE_ROUTING
, skb
, skb
->dev
, NULL
, dn_route_rx_packet
);
534 static int dn_route_rx_short(struct sk_buff
*skb
)
536 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
537 unsigned char *ptr
= skb
->data
;
539 if (!pskb_may_pull(skb
, 6)) /* 5 for short header + 1 for shortest nsp */
543 skb_reset_transport_header(skb
);
545 cb
->dst
= *(__le16
*)ptr
;
547 cb
->src
= *(__le16
*)ptr
;
549 cb
->hops
= *ptr
& 0x3f;
551 return NF_HOOK(PF_DECnet
, NF_DN_PRE_ROUTING
, skb
, skb
->dev
, NULL
, dn_route_rx_packet
);
558 static int dn_route_discard(struct sk_buff
*skb
)
561 * I know we drop the packet here, but thats considered success in
565 return NET_RX_SUCCESS
;
568 static int dn_route_ptp_hello(struct sk_buff
*skb
)
571 dn_neigh_pointopoint_hello(skb
);
572 return NET_RX_SUCCESS
;
575 int dn_route_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
, struct net_device
*orig_dev
)
577 struct dn_skb_cb
*cb
;
578 unsigned char flags
= 0;
579 __u16 len
= dn_ntohs(*(__le16
*)skb
->data
);
580 struct dn_dev
*dn
= (struct dn_dev
*)dev
->dn_ptr
;
581 unsigned char padlen
= 0;
583 if (dev
->nd_net
!= &init_net
)
589 if ((skb
= skb_share_check(skb
, GFP_ATOMIC
)) == NULL
)
592 if (!pskb_may_pull(skb
, 3))
606 cb
->iif
= dev
->ifindex
;
609 * If we have padding, remove it.
611 if (flags
& DN_RT_F_PF
) {
612 padlen
= flags
& ~DN_RT_F_PF
;
613 if (!pskb_may_pull(skb
, padlen
+ 1))
615 skb_pull(skb
, padlen
);
619 skb_reset_network_header(skb
);
622 * Weed out future version DECnet
624 if (flags
& DN_RT_F_VER
)
627 cb
->rt_flags
= flags
;
629 if (decnet_debug_level
& 1)
631 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
632 (int)flags
, (dev
) ? dev
->name
: "???", len
, skb
->len
,
635 if (flags
& DN_RT_PKT_CNTL
) {
636 if (unlikely(skb_linearize(skb
)))
639 switch(flags
& DN_RT_CNTL_MSK
) {
641 dn_dev_init_pkt(skb
);
644 dn_dev_veri_pkt(skb
);
648 if (dn
->parms
.state
!= DN_DEV_S_RU
)
651 switch(flags
& DN_RT_CNTL_MSK
) {
653 return NF_HOOK(PF_DECnet
, NF_DN_HELLO
, skb
, skb
->dev
, NULL
, dn_route_ptp_hello
);
657 return NF_HOOK(PF_DECnet
, NF_DN_ROUTE
, skb
, skb
->dev
, NULL
, dn_route_discard
);
659 return NF_HOOK(PF_DECnet
, NF_DN_HELLO
, skb
, skb
->dev
, NULL
, dn_neigh_router_hello
);
662 return NF_HOOK(PF_DECnet
, NF_DN_HELLO
, skb
, skb
->dev
, NULL
, dn_neigh_endnode_hello
);
665 if (dn
->parms
.state
!= DN_DEV_S_RU
)
668 skb_pull(skb
, 1); /* Pull flags */
670 switch(flags
& DN_RT_PKT_MSK
) {
672 return dn_route_rx_long(skb
);
673 case DN_RT_PKT_SHORT
:
674 return dn_route_rx_short(skb
);
684 static int dn_output(struct sk_buff
*skb
)
686 struct dst_entry
*dst
= skb
->dst
;
687 struct dn_route
*rt
= (struct dn_route
*)dst
;
688 struct net_device
*dev
= dst
->dev
;
689 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
690 struct neighbour
*neigh
;
694 if ((neigh
= dst
->neighbour
) == NULL
)
699 cb
->src
= rt
->rt_saddr
;
700 cb
->dst
= rt
->rt_daddr
;
703 * Always set the Intra-Ethernet bit on all outgoing packets
704 * originated on this node. Only valid flag from upper layers
705 * is return-to-sender-requested. Set hop count to 0 too.
707 cb
->rt_flags
&= ~DN_RT_F_RQR
;
708 cb
->rt_flags
|= DN_RT_F_IE
;
711 return NF_HOOK(PF_DECnet
, NF_DN_LOCAL_OUT
, skb
, NULL
, dev
, neigh
->output
);
715 printk(KERN_DEBUG
"dn_output: This should not happen\n");
722 static int dn_forward(struct sk_buff
*skb
)
724 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
725 struct dst_entry
*dst
= skb
->dst
;
726 struct dn_dev
*dn_db
= dst
->dev
->dn_ptr
;
728 struct neighbour
*neigh
= dst
->neighbour
;
730 #ifdef CONFIG_NETFILTER
731 struct net_device
*dev
= skb
->dev
;
734 if (skb
->pkt_type
!= PACKET_HOST
)
737 /* Ensure that we have enough space for headers */
738 rt
= (struct dn_route
*)skb
->dst
;
739 header_len
= dn_db
->use_long
? 21 : 6;
740 if (skb_cow(skb
, LL_RESERVED_SPACE(rt
->u
.dst
.dev
)+header_len
))
744 * Hop count exceeded.
749 skb
->dev
= rt
->u
.dst
.dev
;
752 * If packet goes out same interface it came in on, then set
753 * the Intra-Ethernet bit. This has no effect for short
754 * packets, so we don't need to test for them here.
756 cb
->rt_flags
&= ~DN_RT_F_IE
;
757 if (rt
->rt_flags
& RTCF_DOREDIRECT
)
758 cb
->rt_flags
|= DN_RT_F_IE
;
760 return NF_HOOK(PF_DECnet
, NF_DN_FORWARD
, skb
, dev
, skb
->dev
, neigh
->output
);
768 * Drop packet. This is used for endnodes and for
769 * when we should not be forwarding packets from
772 static int dn_blackhole(struct sk_buff
*skb
)
779 * Used to catch bugs. This should never normally get
782 static int dn_rt_bug(struct sk_buff
*skb
)
784 if (net_ratelimit()) {
785 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
787 printk(KERN_DEBUG
"dn_rt_bug: skb from:%04x to:%04x\n",
788 dn_ntohs(cb
->src
), dn_ntohs(cb
->dst
));
796 static int dn_rt_set_next_hop(struct dn_route
*rt
, struct dn_fib_res
*res
)
798 struct dn_fib_info
*fi
= res
->fi
;
799 struct net_device
*dev
= rt
->u
.dst
.dev
;
804 if (DN_FIB_RES_GW(*res
) &&
805 DN_FIB_RES_NH(*res
).nh_scope
== RT_SCOPE_LINK
)
806 rt
->rt_gateway
= DN_FIB_RES_GW(*res
);
807 memcpy(rt
->u
.dst
.metrics
, fi
->fib_metrics
,
808 sizeof(rt
->u
.dst
.metrics
));
810 rt
->rt_type
= res
->type
;
812 if (dev
!= NULL
&& rt
->u
.dst
.neighbour
== NULL
) {
813 n
= __neigh_lookup_errno(&dn_neigh_table
, &rt
->rt_gateway
, dev
);
816 rt
->u
.dst
.neighbour
= n
;
819 if (rt
->u
.dst
.metrics
[RTAX_MTU
-1] == 0 ||
820 rt
->u
.dst
.metrics
[RTAX_MTU
-1] > rt
->u
.dst
.dev
->mtu
)
821 rt
->u
.dst
.metrics
[RTAX_MTU
-1] = rt
->u
.dst
.dev
->mtu
;
822 mss
= dn_mss_from_pmtu(dev
, dst_mtu(&rt
->u
.dst
));
823 if (rt
->u
.dst
.metrics
[RTAX_ADVMSS
-1] == 0 ||
824 rt
->u
.dst
.metrics
[RTAX_ADVMSS
-1] > mss
)
825 rt
->u
.dst
.metrics
[RTAX_ADVMSS
-1] = mss
;
829 static inline int dn_match_addr(__le16 addr1
, __le16 addr2
)
831 __u16 tmp
= dn_ntohs(addr1
) ^ dn_ntohs(addr2
);
840 static __le16
dnet_select_source(const struct net_device
*dev
, __le16 daddr
, int scope
)
843 struct dn_dev
*dn_db
= dev
->dn_ptr
;
844 struct dn_ifaddr
*ifa
;
848 read_lock(&dev_base_lock
);
849 for(ifa
= dn_db
->ifa_list
; ifa
; ifa
= ifa
->ifa_next
) {
850 if (ifa
->ifa_scope
> scope
)
853 saddr
= ifa
->ifa_local
;
856 ret
= dn_match_addr(daddr
, ifa
->ifa_local
);
857 if (ret
> best_match
)
858 saddr
= ifa
->ifa_local
;
860 saddr
= ifa
->ifa_local
;
862 read_unlock(&dev_base_lock
);
867 static inline __le16
__dn_fib_res_prefsrc(struct dn_fib_res
*res
)
869 return dnet_select_source(DN_FIB_RES_DEV(*res
), DN_FIB_RES_GW(*res
), res
->scope
);
872 static inline __le16
dn_fib_rules_map_destination(__le16 daddr
, struct dn_fib_res
*res
)
874 __le16 mask
= dnet_make_mask(res
->prefixlen
);
875 return (daddr
&~mask
)|res
->fi
->fib_nh
->nh_gw
;
878 static int dn_route_output_slow(struct dst_entry
**pprt
, const struct flowi
*oldflp
, int try_hard
)
880 struct flowi fl
= { .nl_u
= { .dn_u
=
881 { .daddr
= oldflp
->fld_dst
,
882 .saddr
= oldflp
->fld_src
,
883 .scope
= RT_SCOPE_UNIVERSE
,
885 .mark
= oldflp
->mark
,
886 .iif
= init_net
.loopback_dev
->ifindex
,
887 .oif
= oldflp
->oif
};
888 struct dn_route
*rt
= NULL
;
889 struct net_device
*dev_out
= NULL
, *dev
;
890 struct neighbour
*neigh
= NULL
;
893 struct dn_fib_res res
= { .fi
= NULL
, .type
= RTN_UNICAST
};
898 if (decnet_debug_level
& 16)
900 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
901 " iif=%d oif=%d\n", dn_ntohs(oldflp
->fld_dst
),
902 dn_ntohs(oldflp
->fld_src
),
903 oldflp
->mark
, init_net
.loopback_dev
->ifindex
, oldflp
->oif
);
905 /* If we have an output interface, verify its a DECnet device */
907 dev_out
= dev_get_by_index(&init_net
, oldflp
->oif
);
909 if (dev_out
&& dev_out
->dn_ptr
== NULL
) {
917 /* If we have a source address, verify that its a local address */
918 if (oldflp
->fld_src
) {
919 err
= -EADDRNOTAVAIL
;
922 if (dn_dev_islocal(dev_out
, oldflp
->fld_src
))
927 read_lock(&dev_base_lock
);
928 for_each_netdev(&init_net
, dev
) {
931 if (!dn_dev_islocal(dev
, oldflp
->fld_src
))
933 if ((dev
->flags
& IFF_LOOPBACK
) &&
935 !dn_dev_islocal(dev
, oldflp
->fld_dst
))
941 read_unlock(&dev_base_lock
);
949 /* No destination? Assume its local */
951 fl
.fld_dst
= fl
.fld_src
;
953 err
= -EADDRNOTAVAIL
;
956 dev_out
= init_net
.loopback_dev
;
960 fl
.fld_src
= dnet_select_source(dev_out
, 0,
965 fl
.oif
= init_net
.loopback_dev
->ifindex
;
966 res
.type
= RTN_LOCAL
;
970 if (decnet_debug_level
& 16)
972 "dn_route_output_slow: initial checks complete."
973 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
974 dn_ntohs(fl
.fld_dst
), dn_ntohs(fl
.fld_src
),
978 * N.B. If the kernel is compiled without router support then
979 * dn_fib_lookup() will evaluate to non-zero so this if () block
980 * will always be executed.
983 if (try_hard
|| (err
= dn_fib_lookup(&fl
, &res
)) != 0) {
984 struct dn_dev
*dn_db
;
988 * Here the fallback is basically the standard algorithm for
989 * routing in endnodes which is described in the DECnet routing
992 * If we are not trying hard, look in neighbour cache.
993 * The result is tested to ensure that if a specific output
994 * device/source address was requested, then we honour that
998 neigh
= neigh_lookup_nodev(&dn_neigh_table
, &fl
.fld_dst
);
1001 (neigh
->dev
->ifindex
!= oldflp
->oif
)) ||
1003 (!dn_dev_islocal(neigh
->dev
,
1004 oldflp
->fld_src
)))) {
1005 neigh_release(neigh
);
1010 if (dn_dev_islocal(neigh
->dev
, fl
.fld_dst
)) {
1011 dev_out
= init_net
.loopback_dev
;
1012 res
.type
= RTN_LOCAL
;
1014 dev_out
= neigh
->dev
;
1022 /* Not there? Perhaps its a local address */
1023 if (dev_out
== NULL
)
1024 dev_out
= dn_dev_get_default();
1026 if (dev_out
== NULL
)
1028 dn_db
= dev_out
->dn_ptr
;
1029 /* Possible improvement - check all devices for local addr */
1030 if (dn_dev_islocal(dev_out
, fl
.fld_dst
)) {
1032 dev_out
= init_net
.loopback_dev
;
1034 res
.type
= RTN_LOCAL
;
1037 /* Not local either.... try sending it to the default router */
1038 neigh
= neigh_clone(dn_db
->router
);
1039 BUG_ON(neigh
&& neigh
->dev
!= dev_out
);
1041 /* Ok then, we assume its directly connected and move on */
1044 gateway
= ((struct dn_neigh
*)neigh
)->addr
;
1046 gateway
= fl
.fld_dst
;
1047 if (fl
.fld_src
== 0) {
1048 fl
.fld_src
= dnet_select_source(dev_out
, gateway
,
1049 res
.type
== RTN_LOCAL
?
1052 if (fl
.fld_src
== 0 && res
.type
!= RTN_LOCAL
)
1055 fl
.oif
= dev_out
->ifindex
;
1060 if (res
.type
== RTN_NAT
)
1063 if (res
.type
== RTN_LOCAL
) {
1065 fl
.fld_src
= fl
.fld_dst
;
1068 dev_out
= init_net
.loopback_dev
;
1070 fl
.oif
= dev_out
->ifindex
;
1072 dn_fib_info_put(res
.fi
);
1077 if (res
.fi
->fib_nhs
> 1 && fl
.oif
== 0)
1078 dn_fib_select_multipath(&fl
, &res
);
1081 * We could add some logic to deal with default routes here and
1082 * get rid of some of the special casing above.
1086 fl
.fld_src
= DN_FIB_RES_PREFSRC(res
);
1090 dev_out
= DN_FIB_RES_DEV(res
);
1092 fl
.oif
= dev_out
->ifindex
;
1093 gateway
= DN_FIB_RES_GW(res
);
1096 if (dev_out
->flags
& IFF_LOOPBACK
)
1097 flags
|= RTCF_LOCAL
;
1099 rt
= dst_alloc(&dn_dst_ops
);
1103 atomic_set(&rt
->u
.dst
.__refcnt
, 1);
1104 rt
->u
.dst
.flags
= DST_HOST
;
1106 rt
->fl
.fld_src
= oldflp
->fld_src
;
1107 rt
->fl
.fld_dst
= oldflp
->fld_dst
;
1108 rt
->fl
.oif
= oldflp
->oif
;
1110 rt
->fl
.mark
= oldflp
->mark
;
1112 rt
->rt_saddr
= fl
.fld_src
;
1113 rt
->rt_daddr
= fl
.fld_dst
;
1114 rt
->rt_gateway
= gateway
? gateway
: fl
.fld_dst
;
1115 rt
->rt_local_src
= fl
.fld_src
;
1117 rt
->rt_dst_map
= fl
.fld_dst
;
1118 rt
->rt_src_map
= fl
.fld_src
;
1120 rt
->u
.dst
.dev
= dev_out
;
1122 rt
->u
.dst
.neighbour
= neigh
;
1125 rt
->u
.dst
.lastuse
= jiffies
;
1126 rt
->u
.dst
.output
= dn_output
;
1127 rt
->u
.dst
.input
= dn_rt_bug
;
1128 rt
->rt_flags
= flags
;
1129 if (flags
& RTCF_LOCAL
)
1130 rt
->u
.dst
.input
= dn_nsp_rx
;
1132 err
= dn_rt_set_next_hop(rt
, &res
);
1136 hash
= dn_hash(rt
->fl
.fld_src
, rt
->fl
.fld_dst
);
1137 dn_insert_route(rt
, hash
, (struct dn_route
**)pprt
);
1141 neigh_release(neigh
);
1143 dn_fib_res_put(&res
);
1150 err
= -EADDRNOTAVAIL
;
1159 dst_free(&rt
->u
.dst
);
1165 * N.B. The flags may be moved into the flowi at some future stage.
1167 static int __dn_route_output_key(struct dst_entry
**pprt
, const struct flowi
*flp
, int flags
)
1169 unsigned hash
= dn_hash(flp
->fld_src
, flp
->fld_dst
);
1170 struct dn_route
*rt
= NULL
;
1172 if (!(flags
& MSG_TRYHARD
)) {
1174 for(rt
= rcu_dereference(dn_rt_hash_table
[hash
].chain
); rt
;
1175 rt
= rcu_dereference(rt
->u
.dst
.dn_next
)) {
1176 if ((flp
->fld_dst
== rt
->fl
.fld_dst
) &&
1177 (flp
->fld_src
== rt
->fl
.fld_src
) &&
1178 (flp
->mark
== rt
->fl
.mark
) &&
1179 (rt
->fl
.iif
== 0) &&
1180 (rt
->fl
.oif
== flp
->oif
)) {
1181 dst_use(&rt
->u
.dst
, jiffies
);
1182 rcu_read_unlock_bh();
1187 rcu_read_unlock_bh();
1190 return dn_route_output_slow(pprt
, flp
, flags
);
1193 static int dn_route_output_key(struct dst_entry
**pprt
, struct flowi
*flp
, int flags
)
1197 err
= __dn_route_output_key(pprt
, flp
, flags
);
1198 if (err
== 0 && flp
->proto
) {
1199 err
= xfrm_lookup(pprt
, flp
, NULL
, 0);
1204 int dn_route_output_sock(struct dst_entry
**pprt
, struct flowi
*fl
, struct sock
*sk
, int flags
)
1208 err
= __dn_route_output_key(pprt
, fl
, flags
& MSG_TRYHARD
);
1209 if (err
== 0 && fl
->proto
) {
1210 err
= xfrm_lookup(pprt
, fl
, sk
, !(flags
& MSG_DONTWAIT
));
1215 static int dn_route_input_slow(struct sk_buff
*skb
)
1217 struct dn_route
*rt
= NULL
;
1218 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
1219 struct net_device
*in_dev
= skb
->dev
;
1220 struct net_device
*out_dev
= NULL
;
1221 struct dn_dev
*dn_db
;
1222 struct neighbour
*neigh
= NULL
;
1226 __le16 local_src
= 0;
1227 struct flowi fl
= { .nl_u
= { .dn_u
=
1230 .scope
= RT_SCOPE_UNIVERSE
,
1233 .iif
= skb
->dev
->ifindex
};
1234 struct dn_fib_res res
= { .fi
= NULL
, .type
= RTN_UNREACHABLE
};
1240 if ((dn_db
= in_dev
->dn_ptr
) == NULL
)
1243 /* Zero source addresses are not allowed */
1244 if (fl
.fld_src
== 0)
1248 * In this case we've just received a packet from a source
1249 * outside ourselves pretending to come from us. We don't
1250 * allow it any further to prevent routing loops, spoofing and
1251 * other nasties. Loopback packets already have the dst attached
1252 * so this only affects packets which have originated elsewhere.
1255 if (dn_dev_islocal(in_dev
, cb
->src
))
1258 err
= dn_fib_lookup(&fl
, &res
);
1263 * Is the destination us ?
1265 if (!dn_dev_islocal(in_dev
, cb
->dst
))
1268 res
.type
= RTN_LOCAL
;
1270 __le16 src_map
= fl
.fld_src
;
1273 out_dev
= DN_FIB_RES_DEV(res
);
1274 if (out_dev
== NULL
) {
1275 if (net_ratelimit())
1276 printk(KERN_CRIT
"Bug in dn_route_input_slow() "
1277 "No output device\n");
1283 src_map
= fl
.fld_src
; /* no NAT support for now */
1285 gateway
= DN_FIB_RES_GW(res
);
1286 if (res
.type
== RTN_NAT
) {
1287 fl
.fld_dst
= dn_fib_rules_map_destination(fl
.fld_dst
, &res
);
1288 dn_fib_res_put(&res
);
1290 if (dn_fib_lookup(&fl
, &res
))
1293 if (res
.type
!= RTN_UNICAST
)
1296 gateway
= fl
.fld_dst
;
1298 fl
.fld_src
= src_map
;
1304 * Forwarding check here, we only check for forwarding
1305 * being turned off, if you want to only forward intra
1306 * area, its up to you to set the routing tables up
1309 if (dn_db
->parms
.forwarding
== 0)
1312 if (res
.fi
->fib_nhs
> 1 && fl
.oif
== 0)
1313 dn_fib_select_multipath(&fl
, &res
);
1316 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1317 * flag as a hint to set the intra-ethernet bit when
1318 * forwarding. If we've got NAT in operation, we don't do
1319 * this optimisation.
1321 if (out_dev
== in_dev
&& !(flags
& RTCF_NAT
))
1322 flags
|= RTCF_DOREDIRECT
;
1324 local_src
= DN_FIB_RES_PREFSRC(res
);
1327 case RTN_UNREACHABLE
:
1330 flags
|= RTCF_LOCAL
;
1331 fl
.fld_src
= cb
->dst
;
1332 fl
.fld_dst
= cb
->src
;
1334 /* Routing tables gave us a gateway */
1338 /* Packet was intra-ethernet, so we know its on-link */
1339 if (cb
->rt_flags
& DN_RT_F_IE
) {
1341 flags
|= RTCF_DIRECTSRC
;
1345 /* Use the default router if there is one */
1346 neigh
= neigh_clone(dn_db
->router
);
1348 gateway
= ((struct dn_neigh
*)neigh
)->addr
;
1352 /* Close eyes and pray */
1354 flags
|= RTCF_DIRECTSRC
;
1361 rt
= dst_alloc(&dn_dst_ops
);
1365 rt
->rt_saddr
= fl
.fld_src
;
1366 rt
->rt_daddr
= fl
.fld_dst
;
1367 rt
->rt_gateway
= fl
.fld_dst
;
1369 rt
->rt_gateway
= gateway
;
1370 rt
->rt_local_src
= local_src
? local_src
: rt
->rt_saddr
;
1372 rt
->rt_dst_map
= fl
.fld_dst
;
1373 rt
->rt_src_map
= fl
.fld_src
;
1375 rt
->fl
.fld_src
= cb
->src
;
1376 rt
->fl
.fld_dst
= cb
->dst
;
1378 rt
->fl
.iif
= in_dev
->ifindex
;
1379 rt
->fl
.mark
= fl
.mark
;
1381 rt
->u
.dst
.flags
= DST_HOST
;
1382 rt
->u
.dst
.neighbour
= neigh
;
1383 rt
->u
.dst
.dev
= out_dev
;
1384 rt
->u
.dst
.lastuse
= jiffies
;
1385 rt
->u
.dst
.output
= dn_rt_bug
;
1388 rt
->u
.dst
.input
= dn_forward
;
1391 rt
->u
.dst
.output
= dn_output
;
1392 rt
->u
.dst
.input
= dn_nsp_rx
;
1393 rt
->u
.dst
.dev
= in_dev
;
1394 flags
|= RTCF_LOCAL
;
1397 case RTN_UNREACHABLE
:
1399 rt
->u
.dst
.input
= dn_blackhole
;
1401 rt
->rt_flags
= flags
;
1403 dev_hold(rt
->u
.dst
.dev
);
1405 err
= dn_rt_set_next_hop(rt
, &res
);
1409 hash
= dn_hash(rt
->fl
.fld_src
, rt
->fl
.fld_dst
);
1410 dn_insert_route(rt
, hash
, (struct dn_route
**)&skb
->dst
);
1414 neigh_release(neigh
);
1416 dn_fib_res_put(&res
);
1432 dst_free(&rt
->u
.dst
);
1436 int dn_route_input(struct sk_buff
*skb
)
1438 struct dn_route
*rt
;
1439 struct dn_skb_cb
*cb
= DN_SKB_CB(skb
);
1440 unsigned hash
= dn_hash(cb
->src
, cb
->dst
);
1446 for(rt
= rcu_dereference(dn_rt_hash_table
[hash
].chain
); rt
!= NULL
;
1447 rt
= rcu_dereference(rt
->u
.dst
.dn_next
)) {
1448 if ((rt
->fl
.fld_src
== cb
->src
) &&
1449 (rt
->fl
.fld_dst
== cb
->dst
) &&
1450 (rt
->fl
.oif
== 0) &&
1451 (rt
->fl
.mark
== skb
->mark
) &&
1452 (rt
->fl
.iif
== cb
->iif
)) {
1453 dst_use(&rt
->u
.dst
, jiffies
);
1455 skb
->dst
= (struct dst_entry
*)rt
;
1461 return dn_route_input_slow(skb
);
1464 static int dn_rt_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
1465 int event
, int nowait
, unsigned int flags
)
1467 struct dn_route
*rt
= (struct dn_route
*)skb
->dst
;
1469 struct nlmsghdr
*nlh
;
1470 unsigned char *b
= skb_tail_pointer(skb
);
1473 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*r
), flags
);
1474 r
= NLMSG_DATA(nlh
);
1475 r
->rtm_family
= AF_DECnet
;
1476 r
->rtm_dst_len
= 16;
1479 r
->rtm_table
= RT_TABLE_MAIN
;
1480 RTA_PUT_U32(skb
, RTA_TABLE
, RT_TABLE_MAIN
);
1481 r
->rtm_type
= rt
->rt_type
;
1482 r
->rtm_flags
= (rt
->rt_flags
& ~0xFFFF) | RTM_F_CLONED
;
1483 r
->rtm_scope
= RT_SCOPE_UNIVERSE
;
1484 r
->rtm_protocol
= RTPROT_UNSPEC
;
1485 if (rt
->rt_flags
& RTCF_NOTIFY
)
1486 r
->rtm_flags
|= RTM_F_NOTIFY
;
1487 RTA_PUT(skb
, RTA_DST
, 2, &rt
->rt_daddr
);
1488 if (rt
->fl
.fld_src
) {
1489 r
->rtm_src_len
= 16;
1490 RTA_PUT(skb
, RTA_SRC
, 2, &rt
->fl
.fld_src
);
1493 RTA_PUT(skb
, RTA_OIF
, sizeof(int), &rt
->u
.dst
.dev
->ifindex
);
1495 * Note to self - change this if input routes reverse direction when
1496 * they deal only with inputs and not with replies like they do
1499 RTA_PUT(skb
, RTA_PREFSRC
, 2, &rt
->rt_local_src
);
1500 if (rt
->rt_daddr
!= rt
->rt_gateway
)
1501 RTA_PUT(skb
, RTA_GATEWAY
, 2, &rt
->rt_gateway
);
1502 if (rtnetlink_put_metrics(skb
, rt
->u
.dst
.metrics
) < 0)
1503 goto rtattr_failure
;
1504 expires
= rt
->u
.dst
.expires
? rt
->u
.dst
.expires
- jiffies
: 0;
1505 if (rtnl_put_cacheinfo(skb
, &rt
->u
.dst
, 0, 0, 0, expires
,
1506 rt
->u
.dst
.error
) < 0)
1507 goto rtattr_failure
;
1509 RTA_PUT(skb
, RTA_IIF
, sizeof(int), &rt
->fl
.iif
);
1511 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
1521 * This is called by both endnodes and routers now.
1523 static int dn_cache_getroute(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
, void *arg
)
1525 struct rtattr
**rta
= arg
;
1526 struct rtmsg
*rtm
= NLMSG_DATA(nlh
);
1527 struct dn_route
*rt
= NULL
;
1528 struct dn_skb_cb
*cb
;
1530 struct sk_buff
*skb
;
1533 memset(&fl
, 0, sizeof(fl
));
1534 fl
.proto
= DNPROTO_NSP
;
1536 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
1539 skb_reset_mac_header(skb
);
1540 cb
= DN_SKB_CB(skb
);
1543 memcpy(&fl
.fld_src
, RTA_DATA(rta
[RTA_SRC
-1]), 2);
1545 memcpy(&fl
.fld_dst
, RTA_DATA(rta
[RTA_DST
-1]), 2);
1547 memcpy(&fl
.iif
, RTA_DATA(rta
[RTA_IIF
-1]), sizeof(int));
1550 struct net_device
*dev
;
1551 if ((dev
= dev_get_by_index(&init_net
, fl
.iif
)) == NULL
) {
1560 skb
->protocol
= __constant_htons(ETH_P_DNA_RT
);
1562 cb
->src
= fl
.fld_src
;
1563 cb
->dst
= fl
.fld_dst
;
1565 err
= dn_route_input(skb
);
1567 memset(cb
, 0, sizeof(struct dn_skb_cb
));
1568 rt
= (struct dn_route
*)skb
->dst
;
1569 if (!err
&& -rt
->u
.dst
.error
)
1570 err
= rt
->u
.dst
.error
;
1573 if (rta
[RTA_OIF
- 1])
1574 memcpy(&oif
, RTA_DATA(rta
[RTA_OIF
- 1]), sizeof(int));
1576 err
= dn_route_output_key((struct dst_entry
**)&rt
, &fl
, 0);
1584 skb
->dst
= &rt
->u
.dst
;
1585 if (rtm
->rtm_flags
& RTM_F_NOTIFY
)
1586 rt
->rt_flags
|= RTCF_NOTIFY
;
1588 err
= dn_rt_fill_info(skb
, NETLINK_CB(in_skb
).pid
, nlh
->nlmsg_seq
, RTM_NEWROUTE
, 0, 0);
1597 return rtnl_unicast(skb
, NETLINK_CB(in_skb
).pid
);
1605 * For routers, this is called from dn_fib_dump, but for endnodes its
1606 * called directly from the rtnetlink dispatch table.
1608 int dn_cache_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1610 struct dn_route
*rt
;
1614 if (NLMSG_PAYLOAD(cb
->nlh
, 0) < sizeof(struct rtmsg
))
1616 if (!(((struct rtmsg
*)NLMSG_DATA(cb
->nlh
))->rtm_flags
&RTM_F_CLONED
))
1620 s_idx
= idx
= cb
->args
[1];
1621 for(h
= 0; h
<= dn_rt_hash_mask
; h
++) {
1627 for(rt
= rcu_dereference(dn_rt_hash_table
[h
].chain
), idx
= 0;
1629 rt
= rcu_dereference(rt
->u
.dst
.dn_next
), idx
++) {
1632 skb
->dst
= dst_clone(&rt
->u
.dst
);
1633 if (dn_rt_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
1634 cb
->nlh
->nlmsg_seq
, RTM_NEWROUTE
,
1635 1, NLM_F_MULTI
) <= 0) {
1636 dst_release(xchg(&skb
->dst
, NULL
));
1637 rcu_read_unlock_bh();
1640 dst_release(xchg(&skb
->dst
, NULL
));
1642 rcu_read_unlock_bh();
1651 #ifdef CONFIG_PROC_FS
1652 struct dn_rt_cache_iter_state
{
1656 static struct dn_route
*dn_rt_cache_get_first(struct seq_file
*seq
)
1658 struct dn_route
*rt
= NULL
;
1659 struct dn_rt_cache_iter_state
*s
= seq
->private;
1661 for(s
->bucket
= dn_rt_hash_mask
; s
->bucket
>= 0; --s
->bucket
) {
1663 rt
= dn_rt_hash_table
[s
->bucket
].chain
;
1666 rcu_read_unlock_bh();
1671 static struct dn_route
*dn_rt_cache_get_next(struct seq_file
*seq
, struct dn_route
*rt
)
1673 struct dn_rt_cache_iter_state
*s
= rcu_dereference(seq
->private);
1675 rt
= rt
->u
.dst
.dn_next
;
1677 rcu_read_unlock_bh();
1678 if (--s
->bucket
< 0)
1681 rt
= dn_rt_hash_table
[s
->bucket
].chain
;
1686 static void *dn_rt_cache_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1688 struct dn_route
*rt
= dn_rt_cache_get_first(seq
);
1691 while(*pos
&& (rt
= dn_rt_cache_get_next(seq
, rt
)))
1694 return *pos
? NULL
: rt
;
1697 static void *dn_rt_cache_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1699 struct dn_route
*rt
= dn_rt_cache_get_next(seq
, v
);
1704 static void dn_rt_cache_seq_stop(struct seq_file
*seq
, void *v
)
1707 rcu_read_unlock_bh();
1710 static int dn_rt_cache_seq_show(struct seq_file
*seq
, void *v
)
1712 struct dn_route
*rt
= v
;
1713 char buf1
[DN_ASCBUF_LEN
], buf2
[DN_ASCBUF_LEN
];
1715 seq_printf(seq
, "%-8s %-7s %-7s %04d %04d %04d\n",
1716 rt
->u
.dst
.dev
? rt
->u
.dst
.dev
->name
: "*",
1717 dn_addr2asc(dn_ntohs(rt
->rt_daddr
), buf1
),
1718 dn_addr2asc(dn_ntohs(rt
->rt_saddr
), buf2
),
1719 atomic_read(&rt
->u
.dst
.__refcnt
),
1721 (int) dst_metric(&rt
->u
.dst
, RTAX_RTT
));
1725 static const struct seq_operations dn_rt_cache_seq_ops
= {
1726 .start
= dn_rt_cache_seq_start
,
1727 .next
= dn_rt_cache_seq_next
,
1728 .stop
= dn_rt_cache_seq_stop
,
1729 .show
= dn_rt_cache_seq_show
,
1732 static int dn_rt_cache_seq_open(struct inode
*inode
, struct file
*file
)
1734 return seq_open_private(file
, &dn_rt_cache_seq_ops
,
1735 sizeof(struct dn_rt_cache_iter_state
));
1738 static const struct file_operations dn_rt_cache_seq_fops
= {
1739 .owner
= THIS_MODULE
,
1740 .open
= dn_rt_cache_seq_open
,
1742 .llseek
= seq_lseek
,
1743 .release
= seq_release_private
,
1746 #endif /* CONFIG_PROC_FS */
1748 void __init
dn_route_init(void)
1752 dn_dst_ops
.kmem_cachep
=
1753 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route
), 0,
1754 SLAB_HWCACHE_ALIGN
|SLAB_PANIC
, NULL
);
1755 init_timer(&dn_route_timer
);
1756 dn_route_timer
.function
= dn_dst_check_expire
;
1757 dn_route_timer
.expires
= jiffies
+ decnet_dst_gc_interval
* HZ
;
1758 add_timer(&dn_route_timer
);
1760 goal
= num_physpages
>> (26 - PAGE_SHIFT
);
1762 for(order
= 0; (1UL << order
) < goal
; order
++)
1766 * Only want 1024 entries max, since the table is very, very unlikely
1767 * to be larger than that.
1769 while(order
&& ((((1UL << order
) * PAGE_SIZE
) /
1770 sizeof(struct dn_rt_hash_bucket
)) >= 2048))
1774 dn_rt_hash_mask
= (1UL << order
) * PAGE_SIZE
/
1775 sizeof(struct dn_rt_hash_bucket
);
1776 while(dn_rt_hash_mask
& (dn_rt_hash_mask
- 1))
1778 dn_rt_hash_table
= (struct dn_rt_hash_bucket
*)
1779 __get_free_pages(GFP_ATOMIC
, order
);
1780 } while (dn_rt_hash_table
== NULL
&& --order
> 0);
1782 if (!dn_rt_hash_table
)
1783 panic("Failed to allocate DECnet route cache hash table\n");
1786 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1788 (long)(dn_rt_hash_mask
*sizeof(struct dn_rt_hash_bucket
))/1024);
1791 for(i
= 0; i
<= dn_rt_hash_mask
; i
++) {
1792 spin_lock_init(&dn_rt_hash_table
[i
].lock
);
1793 dn_rt_hash_table
[i
].chain
= NULL
;
1796 dn_dst_ops
.gc_thresh
= (dn_rt_hash_mask
+ 1);
1798 proc_net_fops_create(&init_net
, "decnet_cache", S_IRUGO
, &dn_rt_cache_seq_fops
);
1800 #ifdef CONFIG_DECNET_ROUTER
1801 rtnl_register(PF_DECnet
, RTM_GETROUTE
, dn_cache_getroute
, dn_fib_dump
);
1803 rtnl_register(PF_DECnet
, RTM_GETROUTE
, dn_cache_getroute
,
1808 void __exit
dn_route_cleanup(void)
1810 del_timer(&dn_route_timer
);
1813 proc_net_remove(&init_net
, "decnet_cache");