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