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;
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(struct dst_ops *ops);
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 = cpu_to_be16(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 .entries = ATOMIC_INIT(0),
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->u.dst.rcu_head, dst_rcu_free);
151 static inline void dnrt_drop(struct dn_route *rt)
153 dst_release(&rt->u.dst);
154 call_rcu_bh(&rt->u.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->u.dst.__refcnt) ||
170 (now - rt->u.dst.lastuse) < expire) {
171 rtp = &rt->u.dst.dn_next;
174 *rtp = rt->u.dst.dn_next;
175 rt->u.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->u.dst.__refcnt) ||
201 (now - rt->u.dst.lastuse) < expire) {
202 rtp = &rt->u.dst.dn_next;
205 *rtp = rt->u.dst.dn_next;
206 rt->u.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)
269 static inline int compare_keys(struct flowi *fl1, struct flowi *fl2)
271 return ((fl1->nl_u.dn_u.daddr ^ fl2->nl_u.dn_u.daddr) |
272 (fl1->nl_u.dn_u.saddr ^ fl2->nl_u.dn_u.saddr) |
273 (fl1->mark ^ fl2->mark) |
274 (fl1->nl_u.dn_u.scope ^ fl2->nl_u.dn_u.scope) |
275 (fl1->oif ^ fl2->oif) |
276 (fl1->iif ^ fl2->iif)) == 0;
279 static int dn_insert_route(struct dn_route *rt, unsigned hash, struct dn_route **rp)
281 struct dn_route *rth, **rthp;
282 unsigned long now = jiffies;
284 rthp = &dn_rt_hash_table[hash].chain;
286 spin_lock_bh(&dn_rt_hash_table[hash].lock);
287 while((rth = *rthp) != NULL) {
288 if (compare_keys(&rth->fl, &rt->fl)) {
290 *rthp = rth->u.dst.dn_next;
291 rcu_assign_pointer(rth->u.dst.dn_next,
292 dn_rt_hash_table[hash].chain);
293 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
295 dst_use(&rth->u.dst, now);
296 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
302 rthp = &rth->u.dst.dn_next;
305 rcu_assign_pointer(rt->u.dst.dn_next, dn_rt_hash_table[hash].chain);
306 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
308 dst_use(&rt->u.dst, now);
309 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
314 static 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.dst.dn_next;
327 rt->u.dst.dn_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;
384 /* Add back headers */
385 skb_push(skb, skb->data - skb_network_header(skb));
387 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
391 /* Skip packet length and point to flags */
393 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
399 *ptr = 0; /* Zero hop count */
403 skb->pkt_type = PACKET_OUTGOING;
404 dn_rt_finish_output(skb, NULL, NULL);
405 return NET_RX_SUCCESS;
409 * dn_return_long - Return a long packet to its sender
410 * @skb: The long format packet to return
413 static int dn_return_long(struct sk_buff *skb)
415 struct dn_skb_cb *cb;
417 unsigned char *src_addr, *dst_addr;
418 unsigned char tmp[ETH_ALEN];
420 /* Add back all headers */
421 skb_push(skb, skb->data - skb_network_header(skb));
423 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
427 /* Ignore packet length and point to flags */
431 if (*ptr & DN_RT_F_PF) {
432 char padlen = (*ptr & ~DN_RT_F_PF);
436 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
442 *ptr = 0; /* Zero hop count */
444 /* Swap source and destination */
445 memcpy(tmp, src_addr, ETH_ALEN);
446 memcpy(src_addr, dst_addr, ETH_ALEN);
447 memcpy(dst_addr, tmp, ETH_ALEN);
449 skb->pkt_type = PACKET_OUTGOING;
450 dn_rt_finish_output(skb, dst_addr, src_addr);
451 return NET_RX_SUCCESS;
455 * dn_route_rx_packet - Try and find a route for an incoming packet
456 * @skb: The packet to find a route for
458 * Returns: result of input function if route is found, error code otherwise
460 static int dn_route_rx_packet(struct sk_buff *skb)
462 struct dn_skb_cb *cb = DN_SKB_CB(skb);
465 if ((err = dn_route_input(skb)) == 0)
466 return dst_input(skb);
468 if (decnet_debug_level & 4) {
469 char *devname = skb->dev ? skb->dev->name : "???";
470 struct dn_skb_cb *cb = DN_SKB_CB(skb);
472 "DECnet: dn_route_rx_packet: rt_flags=0x%02x dev=%s len=%d src=0x%04hx dst=0x%04hx err=%d type=%d\n",
473 (int)cb->rt_flags, devname, skb->len,
474 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
478 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
479 switch(cb->rt_flags & DN_RT_PKT_MSK) {
480 case DN_RT_PKT_SHORT:
481 return dn_return_short(skb);
483 return dn_return_long(skb);
491 static int dn_route_rx_long(struct sk_buff *skb)
493 struct dn_skb_cb *cb = DN_SKB_CB(skb);
494 unsigned char *ptr = skb->data;
496 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
500 skb_reset_transport_header(skb);
502 /* Destination info */
504 cb->dst = dn_eth2dn(ptr);
505 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
512 cb->src = dn_eth2dn(ptr);
513 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
518 cb->hops = *ptr++; /* Visit Count */
520 return NF_HOOK(PF_DECnet, NF_DN_PRE_ROUTING, skb, skb->dev, NULL, dn_route_rx_packet);
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(PF_DECnet, NF_DN_PRE_ROUTING, skb, skb->dev, NULL, dn_route_rx_packet);
553 static int dn_route_discard(struct sk_buff *skb)
556 * I know we drop the packet here, but thats considered success in
560 return NET_RX_SUCCESS;
563 static int dn_route_ptp_hello(struct sk_buff *skb)
566 dn_neigh_pointopoint_hello(skb);
567 return NET_RX_SUCCESS;
570 int dn_route_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
572 struct dn_skb_cb *cb;
573 unsigned char flags = 0;
574 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
575 struct dn_dev *dn = (struct dn_dev *)dev->dn_ptr;
576 unsigned char padlen = 0;
578 if (!net_eq(dev_net(dev), &init_net))
584 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
587 if (!pskb_may_pull(skb, 3))
601 cb->iif = dev->ifindex;
604 * If we have padding, remove it.
606 if (flags & DN_RT_F_PF) {
607 padlen = flags & ~DN_RT_F_PF;
608 if (!pskb_may_pull(skb, padlen + 1))
610 skb_pull(skb, padlen);
614 skb_reset_network_header(skb);
617 * Weed out future version DECnet
619 if (flags & DN_RT_F_VER)
622 cb->rt_flags = flags;
624 if (decnet_debug_level & 1)
626 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
627 (int)flags, (dev) ? dev->name : "???", len, skb->len,
630 if (flags & DN_RT_PKT_CNTL) {
631 if (unlikely(skb_linearize(skb)))
634 switch(flags & DN_RT_CNTL_MSK) {
636 dn_dev_init_pkt(skb);
639 dn_dev_veri_pkt(skb);
643 if (dn->parms.state != DN_DEV_S_RU)
646 switch(flags & DN_RT_CNTL_MSK) {
648 return NF_HOOK(PF_DECnet, NF_DN_HELLO, skb, skb->dev, NULL, dn_route_ptp_hello);
652 return NF_HOOK(PF_DECnet, NF_DN_ROUTE, skb, skb->dev, NULL, dn_route_discard);
654 return NF_HOOK(PF_DECnet, NF_DN_HELLO, skb, skb->dev, NULL, dn_neigh_router_hello);
657 return NF_HOOK(PF_DECnet, NF_DN_HELLO, skb, skb->dev, NULL, dn_neigh_endnode_hello);
660 if (dn->parms.state != DN_DEV_S_RU)
663 skb_pull(skb, 1); /* Pull flags */
665 switch(flags & DN_RT_PKT_MSK) {
667 return dn_route_rx_long(skb);
668 case DN_RT_PKT_SHORT:
669 return dn_route_rx_short(skb);
679 static int dn_output(struct sk_buff *skb)
681 struct dst_entry *dst = skb->dst;
682 struct dn_route *rt = (struct dn_route *)dst;
683 struct net_device *dev = dst->dev;
684 struct dn_skb_cb *cb = DN_SKB_CB(skb);
685 struct neighbour *neigh;
689 if ((neigh = dst->neighbour) == NULL)
694 cb->src = rt->rt_saddr;
695 cb->dst = rt->rt_daddr;
698 * Always set the Intra-Ethernet bit on all outgoing packets
699 * originated on this node. Only valid flag from upper layers
700 * is return-to-sender-requested. Set hop count to 0 too.
702 cb->rt_flags &= ~DN_RT_F_RQR;
703 cb->rt_flags |= DN_RT_F_IE;
706 return NF_HOOK(PF_DECnet, NF_DN_LOCAL_OUT, skb, NULL, dev, neigh->output);
710 printk(KERN_DEBUG "dn_output: This should not happen\n");
717 static int dn_forward(struct sk_buff *skb)
719 struct dn_skb_cb *cb = DN_SKB_CB(skb);
720 struct dst_entry *dst = skb->dst;
721 struct dn_dev *dn_db = dst->dev->dn_ptr;
723 struct neighbour *neigh = dst->neighbour;
725 #ifdef CONFIG_NETFILTER
726 struct net_device *dev = skb->dev;
729 if (skb->pkt_type != PACKET_HOST)
732 /* Ensure that we have enough space for headers */
733 rt = (struct dn_route *)skb->dst;
734 header_len = dn_db->use_long ? 21 : 6;
735 if (skb_cow(skb, LL_RESERVED_SPACE(rt->u.dst.dev)+header_len))
739 * Hop count exceeded.
744 skb->dev = rt->u.dst.dev;
747 * If packet goes out same interface it came in on, then set
748 * the Intra-Ethernet bit. This has no effect for short
749 * packets, so we don't need to test for them here.
751 cb->rt_flags &= ~DN_RT_F_IE;
752 if (rt->rt_flags & RTCF_DOREDIRECT)
753 cb->rt_flags |= DN_RT_F_IE;
755 return NF_HOOK(PF_DECnet, NF_DN_FORWARD, skb, dev, skb->dev, neigh->output);
763 * Used to catch bugs. This should never normally get
766 static int dn_rt_bug(struct sk_buff *skb)
768 if (net_ratelimit()) {
769 struct dn_skb_cb *cb = DN_SKB_CB(skb);
771 printk(KERN_DEBUG "dn_rt_bug: skb from:%04x to:%04x\n",
772 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
780 static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
782 struct dn_fib_info *fi = res->fi;
783 struct net_device *dev = rt->u.dst.dev;
788 if (DN_FIB_RES_GW(*res) &&
789 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
790 rt->rt_gateway = DN_FIB_RES_GW(*res);
791 memcpy(rt->u.dst.metrics, fi->fib_metrics,
792 sizeof(rt->u.dst.metrics));
794 rt->rt_type = res->type;
796 if (dev != NULL && rt->u.dst.neighbour == NULL) {
797 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
800 rt->u.dst.neighbour = n;
803 if (dst_metric(&rt->u.dst, RTAX_MTU) == 0 ||
804 dst_metric(&rt->u.dst, RTAX_MTU) > rt->u.dst.dev->mtu)
805 rt->u.dst.metrics[RTAX_MTU-1] = rt->u.dst.dev->mtu;
806 mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->u.dst));
807 if (dst_metric(&rt->u.dst, RTAX_ADVMSS) == 0 ||
808 dst_metric(&rt->u.dst, RTAX_ADVMSS) > mss)
809 rt->u.dst.metrics[RTAX_ADVMSS-1] = mss;
813 static inline int dn_match_addr(__le16 addr1, __le16 addr2)
815 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
824 static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
827 struct dn_dev *dn_db = dev->dn_ptr;
828 struct dn_ifaddr *ifa;
832 read_lock(&dev_base_lock);
833 for(ifa = dn_db->ifa_list; ifa; ifa = ifa->ifa_next) {
834 if (ifa->ifa_scope > scope)
837 saddr = ifa->ifa_local;
840 ret = dn_match_addr(daddr, ifa->ifa_local);
841 if (ret > best_match)
842 saddr = ifa->ifa_local;
844 saddr = ifa->ifa_local;
846 read_unlock(&dev_base_lock);
851 static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
853 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
856 static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
858 __le16 mask = dnet_make_mask(res->prefixlen);
859 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
862 static int dn_route_output_slow(struct dst_entry **pprt, const struct flowi *oldflp, int try_hard)
864 struct flowi fl = { .nl_u = { .dn_u =
865 { .daddr = oldflp->fld_dst,
866 .saddr = oldflp->fld_src,
867 .scope = RT_SCOPE_UNIVERSE,
869 .mark = oldflp->mark,
870 .iif = init_net.loopback_dev->ifindex,
871 .oif = oldflp->oif };
872 struct dn_route *rt = NULL;
873 struct net_device *dev_out = NULL, *dev;
874 struct neighbour *neigh = NULL;
877 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
882 if (decnet_debug_level & 16)
884 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
885 " iif=%d oif=%d\n", le16_to_cpu(oldflp->fld_dst),
886 le16_to_cpu(oldflp->fld_src),
887 oldflp->mark, init_net.loopback_dev->ifindex, oldflp->oif);
889 /* If we have an output interface, verify its a DECnet device */
891 dev_out = dev_get_by_index(&init_net, oldflp->oif);
893 if (dev_out && dev_out->dn_ptr == NULL) {
901 /* If we have a source address, verify that its a local address */
902 if (oldflp->fld_src) {
903 err = -EADDRNOTAVAIL;
906 if (dn_dev_islocal(dev_out, oldflp->fld_src))
911 read_lock(&dev_base_lock);
912 for_each_netdev(&init_net, dev) {
915 if (!dn_dev_islocal(dev, oldflp->fld_src))
917 if ((dev->flags & IFF_LOOPBACK) &&
919 !dn_dev_islocal(dev, oldflp->fld_dst))
925 read_unlock(&dev_base_lock);
933 /* No destination? Assume its local */
935 fl.fld_dst = fl.fld_src;
937 err = -EADDRNOTAVAIL;
940 dev_out = init_net.loopback_dev;
944 fl.fld_src = dnet_select_source(dev_out, 0,
949 fl.oif = init_net.loopback_dev->ifindex;
950 res.type = RTN_LOCAL;
954 if (decnet_debug_level & 16)
956 "dn_route_output_slow: initial checks complete."
957 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
958 le16_to_cpu(fl.fld_dst), le16_to_cpu(fl.fld_src),
962 * N.B. If the kernel is compiled without router support then
963 * dn_fib_lookup() will evaluate to non-zero so this if () block
964 * will always be executed.
967 if (try_hard || (err = dn_fib_lookup(&fl, &res)) != 0) {
968 struct dn_dev *dn_db;
972 * Here the fallback is basically the standard algorithm for
973 * routing in endnodes which is described in the DECnet routing
976 * If we are not trying hard, look in neighbour cache.
977 * The result is tested to ensure that if a specific output
978 * device/source address was requested, then we honour that
982 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fl.fld_dst);
985 (neigh->dev->ifindex != oldflp->oif)) ||
987 (!dn_dev_islocal(neigh->dev,
988 oldflp->fld_src)))) {
989 neigh_release(neigh);
994 if (dn_dev_islocal(neigh->dev, fl.fld_dst)) {
995 dev_out = init_net.loopback_dev;
996 res.type = RTN_LOCAL;
998 dev_out = neigh->dev;
1006 /* Not there? Perhaps its a local address */
1007 if (dev_out == NULL)
1008 dev_out = dn_dev_get_default();
1010 if (dev_out == NULL)
1012 dn_db = dev_out->dn_ptr;
1013 /* Possible improvement - check all devices for local addr */
1014 if (dn_dev_islocal(dev_out, fl.fld_dst)) {
1016 dev_out = init_net.loopback_dev;
1018 res.type = RTN_LOCAL;
1021 /* Not local either.... try sending it to the default router */
1022 neigh = neigh_clone(dn_db->router);
1023 BUG_ON(neigh && neigh->dev != dev_out);
1025 /* Ok then, we assume its directly connected and move on */
1028 gateway = ((struct dn_neigh *)neigh)->addr;
1030 gateway = fl.fld_dst;
1031 if (fl.fld_src == 0) {
1032 fl.fld_src = dnet_select_source(dev_out, gateway,
1033 res.type == RTN_LOCAL ?
1036 if (fl.fld_src == 0 && res.type != RTN_LOCAL)
1039 fl.oif = dev_out->ifindex;
1044 if (res.type == RTN_NAT)
1047 if (res.type == RTN_LOCAL) {
1049 fl.fld_src = fl.fld_dst;
1052 dev_out = init_net.loopback_dev;
1054 fl.oif = dev_out->ifindex;
1056 dn_fib_info_put(res.fi);
1061 if (res.fi->fib_nhs > 1 && fl.oif == 0)
1062 dn_fib_select_multipath(&fl, &res);
1065 * We could add some logic to deal with default routes here and
1066 * get rid of some of the special casing above.
1070 fl.fld_src = DN_FIB_RES_PREFSRC(res);
1074 dev_out = DN_FIB_RES_DEV(res);
1076 fl.oif = dev_out->ifindex;
1077 gateway = DN_FIB_RES_GW(res);
1080 if (dev_out->flags & IFF_LOOPBACK)
1081 flags |= RTCF_LOCAL;
1083 rt = dst_alloc(&dn_dst_ops);
1087 atomic_set(&rt->u.dst.__refcnt, 1);
1088 rt->u.dst.flags = DST_HOST;
1090 rt->fl.fld_src = oldflp->fld_src;
1091 rt->fl.fld_dst = oldflp->fld_dst;
1092 rt->fl.oif = oldflp->oif;
1094 rt->fl.mark = oldflp->mark;
1096 rt->rt_saddr = fl.fld_src;
1097 rt->rt_daddr = fl.fld_dst;
1098 rt->rt_gateway = gateway ? gateway : fl.fld_dst;
1099 rt->rt_local_src = fl.fld_src;
1101 rt->rt_dst_map = fl.fld_dst;
1102 rt->rt_src_map = fl.fld_src;
1104 rt->u.dst.dev = dev_out;
1106 rt->u.dst.neighbour = neigh;
1109 rt->u.dst.lastuse = jiffies;
1110 rt->u.dst.output = dn_output;
1111 rt->u.dst.input = dn_rt_bug;
1112 rt->rt_flags = flags;
1113 if (flags & RTCF_LOCAL)
1114 rt->u.dst.input = dn_nsp_rx;
1116 err = dn_rt_set_next_hop(rt, &res);
1120 hash = dn_hash(rt->fl.fld_src, rt->fl.fld_dst);
1121 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1125 neigh_release(neigh);
1127 dn_fib_res_put(&res);
1134 err = -EADDRNOTAVAIL;
1143 dst_free(&rt->u.dst);
1149 * N.B. The flags may be moved into the flowi at some future stage.
1151 static int __dn_route_output_key(struct dst_entry **pprt, const struct flowi *flp, int flags)
1153 unsigned hash = dn_hash(flp->fld_src, flp->fld_dst);
1154 struct dn_route *rt = NULL;
1156 if (!(flags & MSG_TRYHARD)) {
1158 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt;
1159 rt = rcu_dereference(rt->u.dst.dn_next)) {
1160 if ((flp->fld_dst == rt->fl.fld_dst) &&
1161 (flp->fld_src == rt->fl.fld_src) &&
1162 (flp->mark == rt->fl.mark) &&
1163 (rt->fl.iif == 0) &&
1164 (rt->fl.oif == flp->oif)) {
1165 dst_use(&rt->u.dst, jiffies);
1166 rcu_read_unlock_bh();
1171 rcu_read_unlock_bh();
1174 return dn_route_output_slow(pprt, flp, flags);
1177 static int dn_route_output_key(struct dst_entry **pprt, struct flowi *flp, int flags)
1181 err = __dn_route_output_key(pprt, flp, flags);
1182 if (err == 0 && flp->proto) {
1183 err = xfrm_lookup(&init_net, pprt, flp, NULL, 0);
1188 int dn_route_output_sock(struct dst_entry **pprt, struct flowi *fl, struct sock *sk, int flags)
1192 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
1193 if (err == 0 && fl->proto) {
1194 err = xfrm_lookup(&init_net, pprt, fl, sk,
1195 (flags & MSG_DONTWAIT) ? 0 : XFRM_LOOKUP_WAIT);
1200 static int dn_route_input_slow(struct sk_buff *skb)
1202 struct dn_route *rt = NULL;
1203 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1204 struct net_device *in_dev = skb->dev;
1205 struct net_device *out_dev = NULL;
1206 struct dn_dev *dn_db;
1207 struct neighbour *neigh = NULL;
1211 __le16 local_src = 0;
1212 struct flowi fl = { .nl_u = { .dn_u =
1215 .scope = RT_SCOPE_UNIVERSE,
1218 .iif = skb->dev->ifindex };
1219 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1225 if ((dn_db = in_dev->dn_ptr) == NULL)
1228 /* Zero source addresses are not allowed */
1229 if (fl.fld_src == 0)
1233 * In this case we've just received a packet from a source
1234 * outside ourselves pretending to come from us. We don't
1235 * allow it any further to prevent routing loops, spoofing and
1236 * other nasties. Loopback packets already have the dst attached
1237 * so this only affects packets which have originated elsewhere.
1240 if (dn_dev_islocal(in_dev, cb->src))
1243 err = dn_fib_lookup(&fl, &res);
1248 * Is the destination us ?
1250 if (!dn_dev_islocal(in_dev, cb->dst))
1253 res.type = RTN_LOCAL;
1255 __le16 src_map = fl.fld_src;
1258 out_dev = DN_FIB_RES_DEV(res);
1259 if (out_dev == NULL) {
1260 if (net_ratelimit())
1261 printk(KERN_CRIT "Bug in dn_route_input_slow() "
1262 "No output device\n");
1268 src_map = fl.fld_src; /* no NAT support for now */
1270 gateway = DN_FIB_RES_GW(res);
1271 if (res.type == RTN_NAT) {
1272 fl.fld_dst = dn_fib_rules_map_destination(fl.fld_dst, &res);
1273 dn_fib_res_put(&res);
1275 if (dn_fib_lookup(&fl, &res))
1278 if (res.type != RTN_UNICAST)
1281 gateway = fl.fld_dst;
1283 fl.fld_src = src_map;
1289 * Forwarding check here, we only check for forwarding
1290 * being turned off, if you want to only forward intra
1291 * area, its up to you to set the routing tables up
1294 if (dn_db->parms.forwarding == 0)
1297 if (res.fi->fib_nhs > 1 && fl.oif == 0)
1298 dn_fib_select_multipath(&fl, &res);
1301 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1302 * flag as a hint to set the intra-ethernet bit when
1303 * forwarding. If we've got NAT in operation, we don't do
1304 * this optimisation.
1306 if (out_dev == in_dev && !(flags & RTCF_NAT))
1307 flags |= RTCF_DOREDIRECT;
1309 local_src = DN_FIB_RES_PREFSRC(res);
1312 case RTN_UNREACHABLE:
1315 flags |= RTCF_LOCAL;
1316 fl.fld_src = cb->dst;
1317 fl.fld_dst = cb->src;
1319 /* Routing tables gave us a gateway */
1323 /* Packet was intra-ethernet, so we know its on-link */
1324 if (cb->rt_flags & DN_RT_F_IE) {
1326 flags |= RTCF_DIRECTSRC;
1330 /* Use the default router if there is one */
1331 neigh = neigh_clone(dn_db->router);
1333 gateway = ((struct dn_neigh *)neigh)->addr;
1337 /* Close eyes and pray */
1339 flags |= RTCF_DIRECTSRC;
1346 rt = dst_alloc(&dn_dst_ops);
1350 rt->rt_saddr = fl.fld_src;
1351 rt->rt_daddr = fl.fld_dst;
1352 rt->rt_gateway = fl.fld_dst;
1354 rt->rt_gateway = gateway;
1355 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1357 rt->rt_dst_map = fl.fld_dst;
1358 rt->rt_src_map = fl.fld_src;
1360 rt->fl.fld_src = cb->src;
1361 rt->fl.fld_dst = cb->dst;
1363 rt->fl.iif = in_dev->ifindex;
1364 rt->fl.mark = fl.mark;
1366 rt->u.dst.flags = DST_HOST;
1367 rt->u.dst.neighbour = neigh;
1368 rt->u.dst.dev = out_dev;
1369 rt->u.dst.lastuse = jiffies;
1370 rt->u.dst.output = dn_rt_bug;
1373 rt->u.dst.input = dn_forward;
1376 rt->u.dst.output = dn_output;
1377 rt->u.dst.input = dn_nsp_rx;
1378 rt->u.dst.dev = in_dev;
1379 flags |= RTCF_LOCAL;
1382 case RTN_UNREACHABLE:
1384 rt->u.dst.input = dst_discard;
1386 rt->rt_flags = flags;
1388 dev_hold(rt->u.dst.dev);
1390 err = dn_rt_set_next_hop(rt, &res);
1394 hash = dn_hash(rt->fl.fld_src, rt->fl.fld_dst);
1395 dn_insert_route(rt, hash, (struct dn_route **)&skb->dst);
1399 neigh_release(neigh);
1401 dn_fib_res_put(&res);
1417 dst_free(&rt->u.dst);
1421 static int dn_route_input(struct sk_buff *skb)
1423 struct dn_route *rt;
1424 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1425 unsigned hash = dn_hash(cb->src, cb->dst);
1431 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
1432 rt = rcu_dereference(rt->u.dst.dn_next)) {
1433 if ((rt->fl.fld_src == cb->src) &&
1434 (rt->fl.fld_dst == cb->dst) &&
1435 (rt->fl.oif == 0) &&
1436 (rt->fl.mark == skb->mark) &&
1437 (rt->fl.iif == cb->iif)) {
1438 dst_use(&rt->u.dst, jiffies);
1440 skb->dst = (struct dst_entry *)rt;
1446 return dn_route_input_slow(skb);
1449 static int dn_rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1450 int event, int nowait, unsigned int flags)
1452 struct dn_route *rt = (struct dn_route *)skb->dst;
1454 struct nlmsghdr *nlh;
1455 unsigned char *b = skb_tail_pointer(skb);
1458 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*r), flags);
1459 r = NLMSG_DATA(nlh);
1460 r->rtm_family = AF_DECnet;
1461 r->rtm_dst_len = 16;
1464 r->rtm_table = RT_TABLE_MAIN;
1465 RTA_PUT_U32(skb, RTA_TABLE, RT_TABLE_MAIN);
1466 r->rtm_type = rt->rt_type;
1467 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1468 r->rtm_scope = RT_SCOPE_UNIVERSE;
1469 r->rtm_protocol = RTPROT_UNSPEC;
1470 if (rt->rt_flags & RTCF_NOTIFY)
1471 r->rtm_flags |= RTM_F_NOTIFY;
1472 RTA_PUT(skb, RTA_DST, 2, &rt->rt_daddr);
1473 if (rt->fl.fld_src) {
1474 r->rtm_src_len = 16;
1475 RTA_PUT(skb, RTA_SRC, 2, &rt->fl.fld_src);
1478 RTA_PUT(skb, RTA_OIF, sizeof(int), &rt->u.dst.dev->ifindex);
1480 * Note to self - change this if input routes reverse direction when
1481 * they deal only with inputs and not with replies like they do
1484 RTA_PUT(skb, RTA_PREFSRC, 2, &rt->rt_local_src);
1485 if (rt->rt_daddr != rt->rt_gateway)
1486 RTA_PUT(skb, RTA_GATEWAY, 2, &rt->rt_gateway);
1487 if (rtnetlink_put_metrics(skb, rt->u.dst.metrics) < 0)
1488 goto rtattr_failure;
1489 expires = rt->u.dst.expires ? rt->u.dst.expires - jiffies : 0;
1490 if (rtnl_put_cacheinfo(skb, &rt->u.dst, 0, 0, 0, expires,
1491 rt->u.dst.error) < 0)
1492 goto rtattr_failure;
1494 RTA_PUT(skb, RTA_IIF, sizeof(int), &rt->fl.iif);
1496 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1506 * This is called by both endnodes and routers now.
1508 static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg)
1510 struct net *net = sock_net(in_skb->sk);
1511 struct rtattr **rta = arg;
1512 struct rtmsg *rtm = NLMSG_DATA(nlh);
1513 struct dn_route *rt = NULL;
1514 struct dn_skb_cb *cb;
1516 struct sk_buff *skb;
1519 if (net != &init_net)
1522 memset(&fl, 0, sizeof(fl));
1523 fl.proto = DNPROTO_NSP;
1525 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1528 skb_reset_mac_header(skb);
1529 cb = DN_SKB_CB(skb);
1532 memcpy(&fl.fld_src, RTA_DATA(rta[RTA_SRC-1]), 2);
1534 memcpy(&fl.fld_dst, RTA_DATA(rta[RTA_DST-1]), 2);
1536 memcpy(&fl.iif, RTA_DATA(rta[RTA_IIF-1]), sizeof(int));
1539 struct net_device *dev;
1540 if ((dev = dev_get_by_index(&init_net, fl.iif)) == NULL) {
1549 skb->protocol = htons(ETH_P_DNA_RT);
1551 cb->src = fl.fld_src;
1552 cb->dst = fl.fld_dst;
1554 err = dn_route_input(skb);
1556 memset(cb, 0, sizeof(struct dn_skb_cb));
1557 rt = (struct dn_route *)skb->dst;
1558 if (!err && -rt->u.dst.error)
1559 err = rt->u.dst.error;
1562 if (rta[RTA_OIF - 1])
1563 memcpy(&oif, RTA_DATA(rta[RTA_OIF - 1]), sizeof(int));
1565 err = dn_route_output_key((struct dst_entry **)&rt, &fl, 0);
1573 skb->dst = &rt->u.dst;
1574 if (rtm->rtm_flags & RTM_F_NOTIFY)
1575 rt->rt_flags |= RTCF_NOTIFY;
1577 err = dn_rt_fill_info(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq, RTM_NEWROUTE, 0, 0);
1586 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid);
1594 * For routers, this is called from dn_fib_dump, but for endnodes its
1595 * called directly from the rtnetlink dispatch table.
1597 int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1599 struct net *net = sock_net(skb->sk);
1600 struct dn_route *rt;
1604 if (net != &init_net)
1607 if (NLMSG_PAYLOAD(cb->nlh, 0) < sizeof(struct rtmsg))
1609 if (!(((struct rtmsg *)NLMSG_DATA(cb->nlh))->rtm_flags&RTM_F_CLONED))
1613 s_idx = idx = cb->args[1];
1614 for(h = 0; h <= dn_rt_hash_mask; h++) {
1620 for(rt = rcu_dereference(dn_rt_hash_table[h].chain), idx = 0;
1622 rt = rcu_dereference(rt->u.dst.dn_next), idx++) {
1625 skb->dst = dst_clone(&rt->u.dst);
1626 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).pid,
1627 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
1628 1, NLM_F_MULTI) <= 0) {
1629 dst_release(xchg(&skb->dst, NULL));
1630 rcu_read_unlock_bh();
1633 dst_release(xchg(&skb->dst, NULL));
1635 rcu_read_unlock_bh();
1644 #ifdef CONFIG_PROC_FS
1645 struct dn_rt_cache_iter_state {
1649 static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1651 struct dn_route *rt = NULL;
1652 struct dn_rt_cache_iter_state *s = seq->private;
1654 for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
1656 rt = dn_rt_hash_table[s->bucket].chain;
1659 rcu_read_unlock_bh();
1661 return rcu_dereference(rt);
1664 static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1666 struct dn_rt_cache_iter_state *s = seq->private;
1668 rt = rt->u.dst.dn_next;
1670 rcu_read_unlock_bh();
1671 if (--s->bucket < 0)
1674 rt = dn_rt_hash_table[s->bucket].chain;
1676 return rcu_dereference(rt);
1679 static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1681 struct dn_route *rt = dn_rt_cache_get_first(seq);
1684 while(*pos && (rt = dn_rt_cache_get_next(seq, rt)))
1687 return *pos ? NULL : rt;
1690 static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1692 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1697 static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1700 rcu_read_unlock_bh();
1703 static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1705 struct dn_route *rt = v;
1706 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1708 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
1709 rt->u.dst.dev ? rt->u.dst.dev->name : "*",
1710 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1711 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
1712 atomic_read(&rt->u.dst.__refcnt),
1714 (int) dst_metric(&rt->u.dst, RTAX_RTT));
1718 static const struct seq_operations dn_rt_cache_seq_ops = {
1719 .start = dn_rt_cache_seq_start,
1720 .next = dn_rt_cache_seq_next,
1721 .stop = dn_rt_cache_seq_stop,
1722 .show = dn_rt_cache_seq_show,
1725 static int dn_rt_cache_seq_open(struct inode *inode, struct file *file)
1727 return seq_open_private(file, &dn_rt_cache_seq_ops,
1728 sizeof(struct dn_rt_cache_iter_state));
1731 static const struct file_operations dn_rt_cache_seq_fops = {
1732 .owner = THIS_MODULE,
1733 .open = dn_rt_cache_seq_open,
1735 .llseek = seq_lseek,
1736 .release = seq_release_private,
1739 #endif /* CONFIG_PROC_FS */
1741 void __init dn_route_init(void)
1745 dn_dst_ops.kmem_cachep =
1746 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
1747 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1748 setup_timer(&dn_route_timer, dn_dst_check_expire, 0);
1749 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1750 add_timer(&dn_route_timer);
1752 goal = num_physpages >> (26 - PAGE_SHIFT);
1754 for(order = 0; (1UL << order) < goal; order++)
1758 * Only want 1024 entries max, since the table is very, very unlikely
1759 * to be larger than that.
1761 while(order && ((((1UL << order) * PAGE_SIZE) /
1762 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1766 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1767 sizeof(struct dn_rt_hash_bucket);
1768 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1770 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1771 __get_free_pages(GFP_ATOMIC, order);
1772 } while (dn_rt_hash_table == NULL && --order > 0);
1774 if (!dn_rt_hash_table)
1775 panic("Failed to allocate DECnet route cache hash table\n");
1778 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1780 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1783 for(i = 0; i <= dn_rt_hash_mask; i++) {
1784 spin_lock_init(&dn_rt_hash_table[i].lock);
1785 dn_rt_hash_table[i].chain = NULL;
1788 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
1790 proc_net_fops_create(&init_net, "decnet_cache", S_IRUGO, &dn_rt_cache_seq_fops);
1792 #ifdef CONFIG_DECNET_ROUTER
1793 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute, dn_fib_dump);
1795 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
1800 void __exit dn_route_cleanup(void)
1802 del_timer(&dn_route_timer);
1805 proc_net_remove(&init_net, "decnet_cache");