blob: d74d34b93f80a77558a68975334f1dfacdbd78a4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +090046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090069#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#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 <asm/errno.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020081#include <net/net_namespace.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070082#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <net/neighbour.h>
84#include <net/dst.h>
85#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070086#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include <net/dn.h>
88#include <net/dn_dev.h>
89#include <net/dn_nsp.h>
90#include <net/dn_route.h>
91#include <net/dn_neigh.h>
92#include <net/dn_fib.h>
93
94struct dn_rt_hash_bucket
95{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +000096 struct dn_route __rcu *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 spinlock_t lock;
Eric Dumazetfca09fb2008-02-07 23:29:57 -080098};
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100extern struct neigh_table dn_neigh_table;
101
102
103static unsigned char dn_hiord_addr[6] = {0xAA,0x00,0x04,0x00,0x00,0x00};
104
105static const int dn_rt_min_delay = 2 * HZ;
106static const int dn_rt_max_delay = 10 * HZ;
107static const int dn_rt_mtu_expires = 10 * 60 * HZ;
108
109static unsigned long dn_rt_deadline;
110
Daniel Lezcano569d3642008-01-18 03:56:57 -0800111static int dn_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static struct dst_entry *dn_dst_check(struct dst_entry *, __u32);
David S. Miller0dbaee32010-12-13 12:52:14 -0800113static unsigned int dn_dst_default_advmss(const struct dst_entry *dst);
David S. Millerd33e4552010-12-14 13:01:14 -0800114static unsigned int dn_dst_default_mtu(const struct dst_entry *dst);
David S. Miller62fa8a82011-01-26 20:51:05 -0800115static void dn_dst_destroy(struct dst_entry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static struct dst_entry *dn_dst_negative_advice(struct dst_entry *);
117static void dn_dst_link_failure(struct sk_buff *);
118static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu);
119static int dn_route_input(struct sk_buff *);
120static void dn_run_flush(unsigned long dummy);
121
122static struct dn_rt_hash_bucket *dn_rt_hash_table;
123static unsigned dn_rt_hash_mask;
124
125static struct timer_list dn_route_timer;
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700126static DEFINE_TIMER(dn_rt_flush_timer, dn_run_flush, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127int decnet_dst_gc_interval = 2;
128
129static struct dst_ops dn_dst_ops = {
130 .family = PF_DECnet,
Harvey Harrison09640e62009-02-01 00:45:17 -0800131 .protocol = cpu_to_be16(ETH_P_DNA_RT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .gc_thresh = 128,
133 .gc = dn_dst_gc,
134 .check = dn_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800135 .default_advmss = dn_dst_default_advmss,
David S. Millerd33e4552010-12-14 13:01:14 -0800136 .default_mtu = dn_dst_default_mtu,
David S. Miller62fa8a82011-01-26 20:51:05 -0800137 .cow_metrics = dst_cow_metrics_generic,
138 .destroy = dn_dst_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .negative_advice = dn_dst_negative_advice,
140 .link_failure = dn_dst_link_failure,
141 .update_pmtu = dn_dst_update_pmtu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
David S. Miller62fa8a82011-01-26 20:51:05 -0800144static void dn_dst_destroy(struct dst_entry *dst)
145{
146 dst_destroy_metrics_generic(dst);
147}
148
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800149static __inline__ unsigned dn_hash(__le16 src, __le16 dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800151 __u16 tmp = (__u16 __force)(src ^ dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 tmp ^= (tmp >> 3);
153 tmp ^= (tmp >> 5);
154 tmp ^= (tmp >> 10);
155 return dn_rt_hash_mask & (unsigned)tmp;
156}
157
158static inline void dnrt_free(struct dn_route *rt)
159{
Changli Gaod8d1f302010-06-10 23:31:35 -0700160 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163static inline void dnrt_drop(struct dn_route *rt)
164{
Changli Gaod8d1f302010-06-10 23:31:35 -0700165 dst_release(&rt->dst);
166 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169static void dn_dst_check_expire(unsigned long dummy)
170{
171 int i;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000172 struct dn_route *rt;
173 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 unsigned long now = jiffies;
175 unsigned long expire = 120 * HZ;
176
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000177 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 rtp = &dn_rt_hash_table[i].chain;
179
180 spin_lock(&dn_rt_hash_table[i].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000181 while ((rt = rcu_dereference_protected(*rtp,
182 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700183 if (atomic_read(&rt->dst.__refcnt) ||
184 (now - rt->dst.lastuse) < expire) {
185 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 continue;
187 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700188 *rtp = rt->dst.dn_next;
189 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 dnrt_free(rt);
191 }
192 spin_unlock(&dn_rt_hash_table[i].lock);
193
194 if ((jiffies - now) > 0)
195 break;
196 }
197
198 mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ);
199}
200
Daniel Lezcano569d3642008-01-18 03:56:57 -0800201static int dn_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000203 struct dn_route *rt;
204 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int i;
206 unsigned long now = jiffies;
207 unsigned long expire = 10 * HZ;
208
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000209 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 spin_lock_bh(&dn_rt_hash_table[i].lock);
212 rtp = &dn_rt_hash_table[i].chain;
213
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000214 while ((rt = rcu_dereference_protected(*rtp,
215 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700216 if (atomic_read(&rt->dst.__refcnt) ||
217 (now - rt->dst.lastuse) < expire) {
218 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 continue;
220 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700221 *rtp = rt->dst.dn_next;
222 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 dnrt_drop(rt);
224 break;
225 }
226 spin_unlock_bh(&dn_rt_hash_table[i].lock);
227 }
228
229 return 0;
230}
231
232/*
233 * The decnet standards don't impose a particular minimum mtu, what they
234 * do insist on is that the routing layer accepts a datagram of at least
235 * 230 bytes long. Here we have to subtract the routing header length from
236 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
237 * assume the worst and use a long header size.
238 *
239 * We update both the mtu and the advertised mss (i.e. the segment size we
240 * advertise to the other end).
241 */
242static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu)
243{
244 u32 min_mtu = 230;
245 struct dn_dev *dn = dst->neighbour ?
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000246 rcu_dereference_raw(dst->neighbour->dev->dn_ptr) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (dn && dn->use_long == 0)
249 min_mtu -= 6;
250 else
251 min_mtu -= 21;
252
Satoru SATOH5ffc02a2008-05-04 22:14:42 -0700253 if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (!(dst_metric_locked(dst, RTAX_MTU))) {
David S. Millerdefb3512010-12-08 21:16:57 -0800255 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 dst_set_expires(dst, dn_rt_mtu_expires);
257 }
258 if (!(dst_metric_locked(dst, RTAX_ADVMSS))) {
259 u32 mss = mtu - DN_MAX_NSP_DATA_HEADER;
David S. Miller0dbaee32010-12-13 12:52:14 -0800260 u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS);
261 if (!existing_mss || existing_mss > mss)
David S. Millerdefb3512010-12-08 21:16:57 -0800262 dst_metric_set(dst, RTAX_ADVMSS, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264 }
265}
266
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900267/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * When a route has been marked obsolete. (e.g. routing cache flush)
269 */
270static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie)
271{
272 return NULL;
273}
274
275static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst)
276{
277 dst_release(dst);
278 return NULL;
279}
280
281static void dn_dst_link_failure(struct sk_buff *skb)
282{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285static inline int compare_keys(struct flowi *fl1, struct flowi *fl2)
286{
Changli Gao58116622010-11-12 18:43:55 +0000287 return ((fl1->fld_dst ^ fl2->fld_dst) |
288 (fl1->fld_src ^ fl2->fld_src) |
David S. Miller1d28f422011-03-12 00:29:39 -0500289 (fl1->flowi_mark ^ fl2->flowi_mark) |
Changli Gao58116622010-11-12 18:43:55 +0000290 (fl1->fld_scope ^ fl2->fld_scope) |
David S. Miller1d28f422011-03-12 00:29:39 -0500291 (fl1->flowi_oif ^ fl2->flowi_oif) |
292 (fl1->flowi_iif ^ fl2->flowi_iif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295static int dn_insert_route(struct dn_route *rt, unsigned hash, struct dn_route **rp)
296{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000297 struct dn_route *rth;
298 struct dn_route __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 unsigned long now = jiffies;
300
301 rthp = &dn_rt_hash_table[hash].chain;
302
303 spin_lock_bh(&dn_rt_hash_table[hash].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000304 while ((rth = rcu_dereference_protected(*rthp,
305 lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (compare_keys(&rth->fl, &rt->fl)) {
307 /* Put it first */
Changli Gaod8d1f302010-06-10 23:31:35 -0700308 *rthp = rth->dst.dn_next;
309 rcu_assign_pointer(rth->dst.dn_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 dn_rt_hash_table[hash].chain);
311 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
312
Changli Gaod8d1f302010-06-10 23:31:35 -0700313 dst_use(&rth->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
315
316 dnrt_drop(rt);
317 *rp = rth;
318 return 0;
319 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700320 rthp = &rth->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
Changli Gaod8d1f302010-06-10 23:31:35 -0700323 rcu_assign_pointer(rt->dst.dn_next, dn_rt_hash_table[hash].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900325
Changli Gaod8d1f302010-06-10 23:31:35 -0700326 dst_use(&rt->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
328 *rp = rt;
329 return 0;
330}
331
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800332static void dn_run_flush(unsigned long dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 int i;
335 struct dn_route *rt, *next;
336
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000337 for (i = 0; i < dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 spin_lock_bh(&dn_rt_hash_table[i].lock);
339
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000340 if ((rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 goto nothing_to_declare;
342
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000343 for(; rt; rt = next) {
344 next = rcu_dereference_raw(rt->dst.dn_next);
345 RCU_INIT_POINTER(rt->dst.dn_next, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 dst_free((struct dst_entry *)rt);
347 }
348
349nothing_to_declare:
350 spin_unlock_bh(&dn_rt_hash_table[i].lock);
351 }
352}
353
354static DEFINE_SPINLOCK(dn_rt_flush_lock);
355
356void dn_rt_cache_flush(int delay)
357{
358 unsigned long now = jiffies;
359 int user_mode = !in_interrupt();
360
361 if (delay < 0)
362 delay = dn_rt_min_delay;
363
364 spin_lock_bh(&dn_rt_flush_lock);
365
366 if (del_timer(&dn_rt_flush_timer) && delay > 0 && dn_rt_deadline) {
367 long tmo = (long)(dn_rt_deadline - now);
368
369 if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay)
370 tmo = 0;
371
372 if (delay > tmo)
373 delay = tmo;
374 }
375
376 if (delay <= 0) {
377 spin_unlock_bh(&dn_rt_flush_lock);
378 dn_run_flush(0);
379 return;
380 }
381
382 if (dn_rt_deadline == 0)
383 dn_rt_deadline = now + dn_rt_max_delay;
384
385 dn_rt_flush_timer.expires = now + delay;
386 add_timer(&dn_rt_flush_timer);
387 spin_unlock_bh(&dn_rt_flush_lock);
388}
389
390/**
391 * dn_return_short - Return a short packet to its sender
392 * @skb: The packet to return
393 *
394 */
395static int dn_return_short(struct sk_buff *skb)
396{
397 struct dn_skb_cb *cb;
398 unsigned char *ptr;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800399 __le16 *src;
400 __le16 *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* Add back headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700403 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
406 return NET_RX_DROP;
407
408 cb = DN_SKB_CB(skb);
409 /* Skip packet length and point to flags */
410 ptr = skb->data + 2;
411 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
412
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800413 dst = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800415 src = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 ptr += 2;
417 *ptr = 0; /* Zero hop count */
418
Ilpo Järvinena0bffff2009-03-21 13:36:17 -0700419 swap(*src, *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 skb->pkt_type = PACKET_OUTGOING;
422 dn_rt_finish_output(skb, NULL, NULL);
423 return NET_RX_SUCCESS;
424}
425
426/**
427 * dn_return_long - Return a long packet to its sender
428 * @skb: The long format packet to return
429 *
430 */
431static int dn_return_long(struct sk_buff *skb)
432{
433 struct dn_skb_cb *cb;
434 unsigned char *ptr;
435 unsigned char *src_addr, *dst_addr;
436 unsigned char tmp[ETH_ALEN];
437
438 /* Add back all headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700439 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
442 return NET_RX_DROP;
443
444 cb = DN_SKB_CB(skb);
445 /* Ignore packet length and point to flags */
446 ptr = skb->data + 2;
447
448 /* Skip padding */
449 if (*ptr & DN_RT_F_PF) {
450 char padlen = (*ptr & ~DN_RT_F_PF);
451 ptr += padlen;
452 }
453
454 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
455 ptr += 2;
456 dst_addr = ptr;
457 ptr += 8;
458 src_addr = ptr;
459 ptr += 6;
460 *ptr = 0; /* Zero hop count */
461
462 /* Swap source and destination */
463 memcpy(tmp, src_addr, ETH_ALEN);
464 memcpy(src_addr, dst_addr, ETH_ALEN);
465 memcpy(dst_addr, tmp, ETH_ALEN);
466
467 skb->pkt_type = PACKET_OUTGOING;
468 dn_rt_finish_output(skb, dst_addr, src_addr);
469 return NET_RX_SUCCESS;
470}
471
472/**
473 * dn_route_rx_packet - Try and find a route for an incoming packet
474 * @skb: The packet to find a route for
475 *
476 * Returns: result of input function if route is found, error code otherwise
477 */
478static int dn_route_rx_packet(struct sk_buff *skb)
479{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000480 struct dn_skb_cb *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int err;
482
483 if ((err = dn_route_input(skb)) == 0)
484 return dst_input(skb);
485
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000486 cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (decnet_debug_level & 4) {
488 char *devname = skb->dev ? skb->dev->name : "???";
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 printk(KERN_DEBUG
491 "DECnet: dn_route_rx_packet: rt_flags=0x%02x dev=%s len=%d src=0x%04hx dst=0x%04hx err=%d type=%d\n",
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800492 (int)cb->rt_flags, devname, skb->len,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800493 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 err, skb->pkt_type);
495 }
496
497 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
498 switch(cb->rt_flags & DN_RT_PKT_MSK) {
499 case DN_RT_PKT_SHORT:
500 return dn_return_short(skb);
501 case DN_RT_PKT_LONG:
502 return dn_return_long(skb);
503 }
504 }
505
506 kfree_skb(skb);
507 return NET_RX_DROP;
508}
509
510static int dn_route_rx_long(struct sk_buff *skb)
511{
512 struct dn_skb_cb *cb = DN_SKB_CB(skb);
513 unsigned char *ptr = skb->data;
514
515 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
516 goto drop_it;
517
518 skb_pull(skb, 20);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300519 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900521 /* Destination info */
522 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800523 cb->dst = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900524 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
525 goto drop_it;
526 ptr += 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900529 /* Source info */
530 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800531 cb->src = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900532 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
533 goto drop_it;
534 ptr += 6;
535 /* Other junk */
536 ptr++;
537 cb->hops = *ptr++; /* Visit Count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100539 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL,
540 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542drop_it:
543 kfree_skb(skb);
544 return NET_RX_DROP;
545}
546
547
548
549static int dn_route_rx_short(struct sk_buff *skb)
550{
551 struct dn_skb_cb *cb = DN_SKB_CB(skb);
552 unsigned char *ptr = skb->data;
553
554 if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */
555 goto drop_it;
556
557 skb_pull(skb, 5);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300558 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800560 cb->dst = *(__le16 *)ptr;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900561 ptr += 2;
562 cb->src = *(__le16 *)ptr;
563 ptr += 2;
564 cb->hops = *ptr & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100566 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL,
567 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569drop_it:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900570 kfree_skb(skb);
571 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
574static int dn_route_discard(struct sk_buff *skb)
575{
576 /*
577 * I know we drop the packet here, but thats considered success in
578 * this case
579 */
580 kfree_skb(skb);
581 return NET_RX_SUCCESS;
582}
583
584static int dn_route_ptp_hello(struct sk_buff *skb)
585{
586 dn_dev_hello(skb);
587 dn_neigh_pointopoint_hello(skb);
588 return NET_RX_SUCCESS;
589}
590
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700591int dn_route_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
593 struct dn_skb_cb *cb;
594 unsigned char flags = 0;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800595 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000596 struct dn_dev *dn = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 unsigned char padlen = 0;
598
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700599 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700600 goto dump_it;
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (dn == NULL)
603 goto dump_it;
604
605 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
606 goto out;
607
608 if (!pskb_may_pull(skb, 3))
609 goto dump_it;
610
611 skb_pull(skb, 2);
612
613 if (len > skb->len)
614 goto dump_it;
615
616 skb_trim(skb, len);
617
618 flags = *skb->data;
619
620 cb = DN_SKB_CB(skb);
621 cb->stamp = jiffies;
622 cb->iif = dev->ifindex;
623
624 /*
625 * If we have padding, remove it.
626 */
627 if (flags & DN_RT_F_PF) {
628 padlen = flags & ~DN_RT_F_PF;
629 if (!pskb_may_pull(skb, padlen + 1))
630 goto dump_it;
631 skb_pull(skb, padlen);
632 flags = *skb->data;
633 }
634
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700635 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 /*
638 * Weed out future version DECnet
639 */
640 if (flags & DN_RT_F_VER)
641 goto dump_it;
642
643 cb->rt_flags = flags;
644
645 if (decnet_debug_level & 1)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900646 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900648 (int)flags, (dev) ? dev->name : "???", len, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 padlen);
650
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900651 if (flags & DN_RT_PKT_CNTL) {
Herbert Xu364c6ba2006-06-09 16:10:40 -0700652 if (unlikely(skb_linearize(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 goto dump_it;
654
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900655 switch(flags & DN_RT_CNTL_MSK) {
656 case DN_RT_PKT_INIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 dn_dev_init_pkt(skb);
658 break;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900659 case DN_RT_PKT_VERI:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 dn_dev_veri_pkt(skb);
661 break;
662 }
663
664 if (dn->parms.state != DN_DEV_S_RU)
665 goto dump_it;
666
667 switch(flags & DN_RT_CNTL_MSK) {
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900668 case DN_RT_PKT_HELO:
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100669 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
670 skb, skb->dev, NULL,
671 dn_route_ptp_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900673 case DN_RT_PKT_L1RT:
674 case DN_RT_PKT_L2RT:
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100675 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
676 skb, skb->dev, NULL,
677 dn_route_discard);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900678 case DN_RT_PKT_ERTH:
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100679 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
680 skb, skb->dev, NULL,
681 dn_neigh_router_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900683 case DN_RT_PKT_EEDH:
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100684 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
685 skb, skb->dev, NULL,
686 dn_neigh_endnode_hello);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900687 }
688 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (dn->parms.state != DN_DEV_S_RU)
690 goto dump_it;
691
692 skb_pull(skb, 1); /* Pull flags */
693
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900694 switch(flags & DN_RT_PKT_MSK) {
695 case DN_RT_PKT_LONG:
696 return dn_route_rx_long(skb);
697 case DN_RT_PKT_SHORT:
698 return dn_route_rx_short(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702dump_it:
703 kfree_skb(skb);
704out:
705 return NET_RX_DROP;
706}
707
708static int dn_output(struct sk_buff *skb)
709{
Eric Dumazetadf30902009-06-02 05:19:30 +0000710 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 struct dn_route *rt = (struct dn_route *)dst;
712 struct net_device *dev = dst->dev;
713 struct dn_skb_cb *cb = DN_SKB_CB(skb);
714 struct neighbour *neigh;
715
716 int err = -EINVAL;
717
718 if ((neigh = dst->neighbour) == NULL)
719 goto error;
720
721 skb->dev = dev;
722
723 cb->src = rt->rt_saddr;
724 cb->dst = rt->rt_daddr;
725
726 /*
727 * Always set the Intra-Ethernet bit on all outgoing packets
728 * originated on this node. Only valid flag from upper layers
729 * is return-to-sender-requested. Set hop count to 0 too.
730 */
731 cb->rt_flags &= ~DN_RT_F_RQR;
732 cb->rt_flags |= DN_RT_F_IE;
733 cb->hops = 0;
734
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100735 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT, skb, NULL, dev,
736 neigh->output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738error:
739 if (net_ratelimit())
740 printk(KERN_DEBUG "dn_output: This should not happen\n");
741
742 kfree_skb(skb);
743
744 return err;
745}
746
747static int dn_forward(struct sk_buff *skb)
748{
749 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000750 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000751 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct dn_route *rt;
753 struct neighbour *neigh = dst->neighbour;
754 int header_len;
755#ifdef CONFIG_NETFILTER
756 struct net_device *dev = skb->dev;
757#endif
758
759 if (skb->pkt_type != PACKET_HOST)
760 goto drop;
761
762 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000763 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700765 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 goto drop;
767
768 /*
769 * Hop count exceeded.
770 */
771 if (++cb->hops > 30)
772 goto drop;
773
Changli Gaod8d1f302010-06-10 23:31:35 -0700774 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /*
777 * If packet goes out same interface it came in on, then set
778 * the Intra-Ethernet bit. This has no effect for short
779 * packets, so we don't need to test for them here.
780 */
781 cb->rt_flags &= ~DN_RT_F_IE;
782 if (rt->rt_flags & RTCF_DOREDIRECT)
783 cb->rt_flags |= DN_RT_F_IE;
784
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100785 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD, skb, dev, skb->dev,
786 neigh->output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788drop:
789 kfree_skb(skb);
790 return NET_RX_DROP;
791}
792
793/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 * Used to catch bugs. This should never normally get
795 * called.
796 */
797static int dn_rt_bug(struct sk_buff *skb)
798{
799 if (net_ratelimit()) {
800 struct dn_skb_cb *cb = DN_SKB_CB(skb);
801
802 printk(KERN_DEBUG "dn_rt_bug: skb from:%04x to:%04x\n",
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800803 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
806 kfree_skb(skb);
807
Florian Westphal0e8635a2009-06-20 00:53:25 +0000808 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
David S. Miller0dbaee32010-12-13 12:52:14 -0800811static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
812{
813 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
814}
815
David S. Millerd33e4552010-12-14 13:01:14 -0800816static unsigned int dn_dst_default_mtu(const struct dst_entry *dst)
817{
818 return dst->dev->mtu;
819}
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
822{
823 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700824 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800825 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 if (fi) {
829 if (DN_FIB_RES_GW(*res) &&
830 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
831 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800832 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834 rt->rt_type = res->type;
835
Changli Gaod8d1f302010-06-10 23:31:35 -0700836 if (dev != NULL && rt->dst.neighbour == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
838 if (IS_ERR(n))
839 return PTR_ERR(n);
Changli Gaod8d1f302010-06-10 23:31:35 -0700840 rt->dst.neighbour = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
David S. Millerd33e4552010-12-14 13:01:14 -0800843 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800844 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800845 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
846 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800847 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800848 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800849 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return 0;
852}
853
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800854static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800856 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 int match = 16;
858 while(tmp) {
859 tmp >>= 1;
860 match--;
861 }
862 return match;
863}
864
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800865static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800867 __le16 saddr = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000868 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 struct dn_ifaddr *ifa;
870 int best_match = 0;
871 int ret;
872
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000873 rcu_read_lock();
874 dn_db = rcu_dereference(dev->dn_ptr);
875 for (ifa = rcu_dereference(dn_db->ifa_list);
876 ifa != NULL;
877 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (ifa->ifa_scope > scope)
879 continue;
880 if (!daddr) {
881 saddr = ifa->ifa_local;
882 break;
883 }
884 ret = dn_match_addr(daddr, ifa->ifa_local);
885 if (ret > best_match)
886 saddr = ifa->ifa_local;
887 if (best_match == 0)
888 saddr = ifa->ifa_local;
889 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000890 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 return saddr;
893}
894
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800895static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
898}
899
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800900static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800902 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
904}
905
906static int dn_route_output_slow(struct dst_entry **pprt, const struct flowi *oldflp, int try_hard)
907{
David S. Miller1d28f422011-03-12 00:29:39 -0500908 struct flowi fl = {
909 .fld_dst = oldflp->fld_dst,
910 .fld_src = oldflp->fld_src,
911 .fld_scope = RT_SCOPE_UNIVERSE,
912 .flowi_mark = oldflp->flowi_mark,
913 .flowi_iif = init_net.loopback_dev->ifindex,
914 .flowi_oif = oldflp->flowi_oif,
915 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700917 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 struct neighbour *neigh = NULL;
919 unsigned hash;
920 unsigned flags = 0;
921 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
922 int err;
923 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800924 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (decnet_debug_level & 16)
927 printk(KERN_DEBUG
928 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800929 " iif=%d oif=%d\n", le16_to_cpu(oldflp->fld_dst),
930 le16_to_cpu(oldflp->fld_src),
David S. Miller1d28f422011-03-12 00:29:39 -0500931 oldflp->flowi_mark, init_net.loopback_dev->ifindex, oldflp->flowi_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /* If we have an output interface, verify its a DECnet device */
David S. Miller1d28f422011-03-12 00:29:39 -0500934 if (oldflp->flowi_oif) {
935 dev_out = dev_get_by_index(&init_net, oldflp->flowi_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 err = -ENODEV;
937 if (dev_out && dev_out->dn_ptr == NULL) {
938 dev_put(dev_out);
939 dev_out = NULL;
940 }
941 if (dev_out == NULL)
942 goto out;
943 }
944
945 /* If we have a source address, verify that its a local address */
946 if (oldflp->fld_src) {
947 err = -EADDRNOTAVAIL;
948
949 if (dev_out) {
950 if (dn_dev_islocal(dev_out, oldflp->fld_src))
951 goto source_ok;
952 dev_put(dev_out);
953 goto out;
954 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800955 rcu_read_lock();
956 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700957 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700959 if (!dn_dev_islocal(dev, oldflp->fld_src))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700960 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700961 if ((dev->flags & IFF_LOOPBACK) &&
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700962 oldflp->fld_dst &&
Pavel Emelianov7562f872007-05-03 15:13:45 -0700963 !dn_dev_islocal(dev, oldflp->fld_dst))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700964 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700965
966 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700967 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800969 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (dev_out == NULL)
971 goto out;
972 dev_hold(dev_out);
973source_ok:
974 ;
975 }
976
977 /* No destination? Assume its local */
978 if (!fl.fld_dst) {
979 fl.fld_dst = fl.fld_src;
980
981 err = -EADDRNOTAVAIL;
982 if (dev_out)
983 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700984 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 dev_hold(dev_out);
986 if (!fl.fld_dst) {
987 fl.fld_dst =
988 fl.fld_src = dnet_select_source(dev_out, 0,
989 RT_SCOPE_HOST);
990 if (!fl.fld_dst)
991 goto out;
992 }
David S. Miller1d28f422011-03-12 00:29:39 -0500993 fl.flowi_oif = init_net.loopback_dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 res.type = RTN_LOCAL;
995 goto make_route;
996 }
997
998 if (decnet_debug_level & 16)
999 printk(KERN_DEBUG
1000 "dn_route_output_slow: initial checks complete."
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001001 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001002 le16_to_cpu(fl.fld_dst), le16_to_cpu(fl.fld_src),
David S. Miller1d28f422011-03-12 00:29:39 -05001003 fl.flowi_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 /*
1006 * N.B. If the kernel is compiled without router support then
1007 * dn_fib_lookup() will evaluate to non-zero so this if () block
1008 * will always be executed.
1009 */
1010 err = -ESRCH;
1011 if (try_hard || (err = dn_fib_lookup(&fl, &res)) != 0) {
1012 struct dn_dev *dn_db;
1013 if (err != -ESRCH)
1014 goto out;
1015 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001016 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 * routing in endnodes which is described in the DECnet routing
1018 * docs
1019 *
1020 * If we are not trying hard, look in neighbour cache.
1021 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001022 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 * here
1024 */
1025 if (!try_hard) {
Eric W. Biederman426b5302008-01-24 00:13:18 -08001026 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fl.fld_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (neigh) {
David S. Miller1d28f422011-03-12 00:29:39 -05001028 if ((oldflp->flowi_oif &&
1029 (neigh->dev->ifindex != oldflp->flowi_oif)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 (oldflp->fld_src &&
1031 (!dn_dev_islocal(neigh->dev,
1032 oldflp->fld_src)))) {
1033 neigh_release(neigh);
1034 neigh = NULL;
1035 } else {
1036 if (dev_out)
1037 dev_put(dev_out);
1038 if (dn_dev_islocal(neigh->dev, fl.fld_dst)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001039 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 res.type = RTN_LOCAL;
1041 } else {
1042 dev_out = neigh->dev;
1043 }
1044 dev_hold(dev_out);
1045 goto select_source;
1046 }
1047 }
1048 }
1049
1050 /* Not there? Perhaps its a local address */
1051 if (dev_out == NULL)
1052 dev_out = dn_dev_get_default();
1053 err = -ENODEV;
1054 if (dev_out == NULL)
1055 goto out;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001056 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 /* Possible improvement - check all devices for local addr */
1058 if (dn_dev_islocal(dev_out, fl.fld_dst)) {
1059 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001060 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 dev_hold(dev_out);
1062 res.type = RTN_LOCAL;
1063 goto select_source;
1064 }
1065 /* Not local either.... try sending it to the default router */
1066 neigh = neigh_clone(dn_db->router);
1067 BUG_ON(neigh && neigh->dev != dev_out);
1068
1069 /* Ok then, we assume its directly connected and move on */
1070select_source:
1071 if (neigh)
1072 gateway = ((struct dn_neigh *)neigh)->addr;
1073 if (gateway == 0)
1074 gateway = fl.fld_dst;
1075 if (fl.fld_src == 0) {
1076 fl.fld_src = dnet_select_source(dev_out, gateway,
1077 res.type == RTN_LOCAL ?
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001078 RT_SCOPE_HOST :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 RT_SCOPE_LINK);
1080 if (fl.fld_src == 0 && res.type != RTN_LOCAL)
1081 goto e_addr;
1082 }
David S. Miller1d28f422011-03-12 00:29:39 -05001083 fl.flowi_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 goto make_route;
1085 }
1086 free_res = 1;
1087
1088 if (res.type == RTN_NAT)
1089 goto e_inval;
1090
1091 if (res.type == RTN_LOCAL) {
1092 if (!fl.fld_src)
1093 fl.fld_src = fl.fld_dst;
1094 if (dev_out)
1095 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001096 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 dev_hold(dev_out);
David S. Miller1d28f422011-03-12 00:29:39 -05001098 fl.flowi_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (res.fi)
1100 dn_fib_info_put(res.fi);
1101 res.fi = NULL;
1102 goto make_route;
1103 }
1104
David S. Miller1d28f422011-03-12 00:29:39 -05001105 if (res.fi->fib_nhs > 1 && fl.flowi_oif == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 dn_fib_select_multipath(&fl, &res);
1107
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001108 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 * We could add some logic to deal with default routes here and
1110 * get rid of some of the special casing above.
1111 */
1112
1113 if (!fl.fld_src)
1114 fl.fld_src = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (dev_out)
1117 dev_put(dev_out);
1118 dev_out = DN_FIB_RES_DEV(res);
1119 dev_hold(dev_out);
David S. Miller1d28f422011-03-12 00:29:39 -05001120 fl.flowi_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 gateway = DN_FIB_RES_GW(res);
1122
1123make_route:
1124 if (dev_out->flags & IFF_LOOPBACK)
1125 flags |= RTCF_LOCAL;
1126
David S. Miller3c7bd1a2011-02-16 14:08:44 -08001127 rt = dst_alloc(&dn_dst_ops, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (rt == NULL)
1129 goto e_nobufs;
1130
Changli Gaod8d1f302010-06-10 23:31:35 -07001131 atomic_set(&rt->dst.__refcnt, 1);
1132 rt->dst.flags = DST_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 rt->fl.fld_src = oldflp->fld_src;
1135 rt->fl.fld_dst = oldflp->fld_dst;
David S. Miller1d28f422011-03-12 00:29:39 -05001136 rt->fl.flowi_oif = oldflp->flowi_oif;
1137 rt->fl.flowi_iif = 0;
1138 rt->fl.flowi_mark = oldflp->flowi_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 rt->rt_saddr = fl.fld_src;
1141 rt->rt_daddr = fl.fld_dst;
1142 rt->rt_gateway = gateway ? gateway : fl.fld_dst;
1143 rt->rt_local_src = fl.fld_src;
1144
1145 rt->rt_dst_map = fl.fld_dst;
1146 rt->rt_src_map = fl.fld_src;
1147
Changli Gaod8d1f302010-06-10 23:31:35 -07001148 rt->dst.dev = dev_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 dev_hold(dev_out);
Changli Gaod8d1f302010-06-10 23:31:35 -07001150 rt->dst.neighbour = neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 neigh = NULL;
1152
Changli Gaod8d1f302010-06-10 23:31:35 -07001153 rt->dst.lastuse = jiffies;
1154 rt->dst.output = dn_output;
1155 rt->dst.input = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 rt->rt_flags = flags;
1157 if (flags & RTCF_LOCAL)
Changli Gaod8d1f302010-06-10 23:31:35 -07001158 rt->dst.input = dn_nsp_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 err = dn_rt_set_next_hop(rt, &res);
1161 if (err)
1162 goto e_neighbour;
1163
1164 hash = dn_hash(rt->fl.fld_src, rt->fl.fld_dst);
1165 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1166
1167done:
1168 if (neigh)
1169 neigh_release(neigh);
1170 if (free_res)
1171 dn_fib_res_put(&res);
1172 if (dev_out)
1173 dev_put(dev_out);
1174out:
1175 return err;
1176
1177e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001178 err = -EADDRNOTAVAIL;
1179 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180e_inval:
1181 err = -EINVAL;
1182 goto done;
1183e_nobufs:
1184 err = -ENOBUFS;
1185 goto done;
1186e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001187 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 goto e_nobufs;
1189}
1190
1191
1192/*
1193 * N.B. The flags may be moved into the flowi at some future stage.
1194 */
1195static int __dn_route_output_key(struct dst_entry **pprt, const struct flowi *flp, int flags)
1196{
1197 unsigned hash = dn_hash(flp->fld_src, flp->fld_dst);
1198 struct dn_route *rt = NULL;
1199
1200 if (!(flags & MSG_TRYHARD)) {
1201 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001202 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001203 rt = rcu_dereference_bh(rt->dst.dn_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if ((flp->fld_dst == rt->fl.fld_dst) &&
1205 (flp->fld_src == rt->fl.fld_src) &&
David S. Miller1d28f422011-03-12 00:29:39 -05001206 (flp->flowi_mark == rt->fl.flowi_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001207 dn_is_output_route(rt) &&
David S. Miller1d28f422011-03-12 00:29:39 -05001208 (rt->fl.flowi_oif == flp->flowi_oif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001209 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001211 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return 0;
1213 }
1214 }
1215 rcu_read_unlock_bh();
1216 }
1217
1218 return dn_route_output_slow(pprt, flp, flags);
1219}
1220
1221static int dn_route_output_key(struct dst_entry **pprt, struct flowi *flp, int flags)
1222{
1223 int err;
1224
1225 err = __dn_route_output_key(pprt, flp, flags);
David S. Miller1d28f422011-03-12 00:29:39 -05001226 if (err == 0 && flp->flowi_proto) {
David S. Miller452edd52011-03-02 13:27:41 -08001227 *pprt = xfrm_lookup(&init_net, *pprt, flp, NULL, 0);
1228 if (IS_ERR(*pprt)) {
1229 err = PTR_ERR(*pprt);
1230 *pprt = NULL;
1231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 return err;
1234}
1235
1236int dn_route_output_sock(struct dst_entry **pprt, struct flowi *fl, struct sock *sk, int flags)
1237{
1238 int err;
1239
1240 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Miller1d28f422011-03-12 00:29:39 -05001241 if (err == 0 && fl->flowi_proto) {
David S. Miller80c0bc92011-03-01 14:36:37 -08001242 if (!(flags & MSG_DONTWAIT))
David S. Miller1d28f422011-03-12 00:29:39 -05001243 fl->flowi_flags |= FLOWI_FLAG_CAN_SLEEP;
David S. Miller452edd52011-03-02 13:27:41 -08001244 *pprt = xfrm_lookup(&init_net, *pprt, fl, sk, 0);
1245 if (IS_ERR(*pprt)) {
1246 err = PTR_ERR(*pprt);
1247 *pprt = NULL;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250 return err;
1251}
1252
1253static int dn_route_input_slow(struct sk_buff *skb)
1254{
1255 struct dn_route *rt = NULL;
1256 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1257 struct net_device *in_dev = skb->dev;
1258 struct net_device *out_dev = NULL;
1259 struct dn_dev *dn_db;
1260 struct neighbour *neigh = NULL;
1261 unsigned hash;
1262 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001263 __le16 gateway = 0;
1264 __le16 local_src = 0;
David S. Miller1d28f422011-03-12 00:29:39 -05001265 struct flowi fl = {
1266 .fld_dst = cb->dst,
1267 .fld_src = cb->src,
1268 .fld_scope = RT_SCOPE_UNIVERSE,
1269 .flowi_mark = skb->mark,
1270 .flowi_iif = skb->dev->ifindex,
1271 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1273 int err = -EINVAL;
1274 int free_res = 0;
1275
1276 dev_hold(in_dev);
1277
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001278 if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 goto out;
1280
1281 /* Zero source addresses are not allowed */
1282 if (fl.fld_src == 0)
1283 goto out;
1284
1285 /*
1286 * In this case we've just received a packet from a source
1287 * outside ourselves pretending to come from us. We don't
1288 * allow it any further to prevent routing loops, spoofing and
1289 * other nasties. Loopback packets already have the dst attached
1290 * so this only affects packets which have originated elsewhere.
1291 */
1292 err = -ENOTUNIQ;
1293 if (dn_dev_islocal(in_dev, cb->src))
1294 goto out;
1295
1296 err = dn_fib_lookup(&fl, &res);
1297 if (err) {
1298 if (err != -ESRCH)
1299 goto out;
1300 /*
1301 * Is the destination us ?
1302 */
1303 if (!dn_dev_islocal(in_dev, cb->dst))
1304 goto e_inval;
1305
1306 res.type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 } else {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001308 __le16 src_map = fl.fld_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 free_res = 1;
1310
1311 out_dev = DN_FIB_RES_DEV(res);
1312 if (out_dev == NULL) {
1313 if (net_ratelimit())
1314 printk(KERN_CRIT "Bug in dn_route_input_slow() "
1315 "No output device\n");
1316 goto e_inval;
1317 }
1318 dev_hold(out_dev);
1319
1320 if (res.r)
Steven Whitehousea8731cb2006-08-09 15:56:46 -07001321 src_map = fl.fld_src; /* no NAT support for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 gateway = DN_FIB_RES_GW(res);
1324 if (res.type == RTN_NAT) {
1325 fl.fld_dst = dn_fib_rules_map_destination(fl.fld_dst, &res);
1326 dn_fib_res_put(&res);
1327 free_res = 0;
1328 if (dn_fib_lookup(&fl, &res))
1329 goto e_inval;
1330 free_res = 1;
1331 if (res.type != RTN_UNICAST)
1332 goto e_inval;
1333 flags |= RTCF_DNAT;
1334 gateway = fl.fld_dst;
1335 }
1336 fl.fld_src = src_map;
1337 }
1338
1339 switch(res.type) {
1340 case RTN_UNICAST:
1341 /*
1342 * Forwarding check here, we only check for forwarding
1343 * being turned off, if you want to only forward intra
1344 * area, its up to you to set the routing tables up
1345 * correctly.
1346 */
1347 if (dn_db->parms.forwarding == 0)
1348 goto e_inval;
1349
David S. Miller1d28f422011-03-12 00:29:39 -05001350 if (res.fi->fib_nhs > 1 && fl.flowi_oif == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 dn_fib_select_multipath(&fl, &res);
1352
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001353 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1355 * flag as a hint to set the intra-ethernet bit when
1356 * forwarding. If we've got NAT in operation, we don't do
1357 * this optimisation.
1358 */
1359 if (out_dev == in_dev && !(flags & RTCF_NAT))
1360 flags |= RTCF_DOREDIRECT;
1361
1362 local_src = DN_FIB_RES_PREFSRC(res);
1363
1364 case RTN_BLACKHOLE:
1365 case RTN_UNREACHABLE:
1366 break;
1367 case RTN_LOCAL:
1368 flags |= RTCF_LOCAL;
1369 fl.fld_src = cb->dst;
1370 fl.fld_dst = cb->src;
1371
1372 /* Routing tables gave us a gateway */
1373 if (gateway)
1374 goto make_route;
1375
1376 /* Packet was intra-ethernet, so we know its on-link */
Steven Whitehouse3a31b9d2006-10-18 20:45:22 -07001377 if (cb->rt_flags & DN_RT_F_IE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 gateway = cb->src;
1379 flags |= RTCF_DIRECTSRC;
1380 goto make_route;
1381 }
1382
1383 /* Use the default router if there is one */
1384 neigh = neigh_clone(dn_db->router);
1385 if (neigh) {
1386 gateway = ((struct dn_neigh *)neigh)->addr;
1387 goto make_route;
1388 }
1389
1390 /* Close eyes and pray */
1391 gateway = cb->src;
1392 flags |= RTCF_DIRECTSRC;
1393 goto make_route;
1394 default:
1395 goto e_inval;
1396 }
1397
1398make_route:
David S. Miller3c7bd1a2011-02-16 14:08:44 -08001399 rt = dst_alloc(&dn_dst_ops, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (rt == NULL)
1401 goto e_nobufs;
1402
1403 rt->rt_saddr = fl.fld_src;
1404 rt->rt_daddr = fl.fld_dst;
1405 rt->rt_gateway = fl.fld_dst;
1406 if (gateway)
1407 rt->rt_gateway = gateway;
1408 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1409
1410 rt->rt_dst_map = fl.fld_dst;
1411 rt->rt_src_map = fl.fld_src;
1412
1413 rt->fl.fld_src = cb->src;
1414 rt->fl.fld_dst = cb->dst;
David S. Miller1d28f422011-03-12 00:29:39 -05001415 rt->fl.flowi_oif = 0;
1416 rt->fl.flowi_iif = in_dev->ifindex;
1417 rt->fl.flowi_mark = fl.flowi_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Changli Gaod8d1f302010-06-10 23:31:35 -07001419 rt->dst.flags = DST_HOST;
1420 rt->dst.neighbour = neigh;
1421 rt->dst.dev = out_dev;
1422 rt->dst.lastuse = jiffies;
1423 rt->dst.output = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 switch(res.type) {
1425 case RTN_UNICAST:
Changli Gaod8d1f302010-06-10 23:31:35 -07001426 rt->dst.input = dn_forward;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 break;
1428 case RTN_LOCAL:
Changli Gaod8d1f302010-06-10 23:31:35 -07001429 rt->dst.output = dn_output;
1430 rt->dst.input = dn_nsp_rx;
1431 rt->dst.dev = in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 flags |= RTCF_LOCAL;
1433 break;
1434 default:
1435 case RTN_UNREACHABLE:
1436 case RTN_BLACKHOLE:
Changli Gaod8d1f302010-06-10 23:31:35 -07001437 rt->dst.input = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
1439 rt->rt_flags = flags;
Changli Gaod8d1f302010-06-10 23:31:35 -07001440 if (rt->dst.dev)
1441 dev_hold(rt->dst.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 err = dn_rt_set_next_hop(rt, &res);
1444 if (err)
1445 goto e_neighbour;
1446
1447 hash = dn_hash(rt->fl.fld_src, rt->fl.fld_dst);
Eric Dumazetadf30902009-06-02 05:19:30 +00001448 dn_insert_route(rt, hash, &rt);
Changli Gaod8d1f302010-06-10 23:31:35 -07001449 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451done:
1452 if (neigh)
1453 neigh_release(neigh);
1454 if (free_res)
1455 dn_fib_res_put(&res);
1456 dev_put(in_dev);
1457 if (out_dev)
1458 dev_put(out_dev);
1459out:
1460 return err;
1461
1462e_inval:
1463 err = -EINVAL;
1464 goto done;
1465
1466e_nobufs:
1467 err = -ENOBUFS;
1468 goto done;
1469
1470e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001471 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 goto done;
1473}
1474
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001475static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 struct dn_route *rt;
1478 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1479 unsigned hash = dn_hash(cb->src, cb->dst);
1480
Eric Dumazetadf30902009-06-02 05:19:30 +00001481 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return 0;
1483
1484 rcu_read_lock();
1485 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
Changli Gaod8d1f302010-06-10 23:31:35 -07001486 rt = rcu_dereference(rt->dst.dn_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if ((rt->fl.fld_src == cb->src) &&
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001488 (rt->fl.fld_dst == cb->dst) &&
David S. Miller1d28f422011-03-12 00:29:39 -05001489 (rt->fl.flowi_oif == 0) &&
1490 (rt->fl.flowi_mark == skb->mark) &&
1491 (rt->fl.flowi_iif == cb->iif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001492 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001494 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return 0;
1496 }
1497 }
1498 rcu_read_unlock();
1499
1500 return dn_route_input_slow(skb);
1501}
1502
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001503static int dn_rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1504 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Eric Dumazetadf30902009-06-02 05:19:30 +00001506 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 struct rtmsg *r;
1508 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001509 unsigned char *b = skb_tail_pointer(skb);
Thomas Grafe3703b32006-11-27 09:27:07 -08001510 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001512 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*r), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 r = NLMSG_DATA(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 r->rtm_family = AF_DECnet;
1515 r->rtm_dst_len = 16;
1516 r->rtm_src_len = 0;
1517 r->rtm_tos = 0;
1518 r->rtm_table = RT_TABLE_MAIN;
Patrick McHardy9e762a42006-08-10 23:09:48 -07001519 RTA_PUT_U32(skb, RTA_TABLE, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 r->rtm_type = rt->rt_type;
1521 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1522 r->rtm_scope = RT_SCOPE_UNIVERSE;
1523 r->rtm_protocol = RTPROT_UNSPEC;
1524 if (rt->rt_flags & RTCF_NOTIFY)
1525 r->rtm_flags |= RTM_F_NOTIFY;
1526 RTA_PUT(skb, RTA_DST, 2, &rt->rt_daddr);
1527 if (rt->fl.fld_src) {
1528 r->rtm_src_len = 16;
1529 RTA_PUT(skb, RTA_SRC, 2, &rt->fl.fld_src);
1530 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001531 if (rt->dst.dev)
1532 RTA_PUT(skb, RTA_OIF, sizeof(int), &rt->dst.dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 /*
1534 * Note to self - change this if input routes reverse direction when
1535 * they deal only with inputs and not with replies like they do
1536 * currently.
1537 */
1538 RTA_PUT(skb, RTA_PREFSRC, 2, &rt->rt_local_src);
1539 if (rt->rt_daddr != rt->rt_gateway)
1540 RTA_PUT(skb, RTA_GATEWAY, 2, &rt->rt_gateway);
David S. Millerdefb3512010-12-08 21:16:57 -08001541 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 goto rtattr_failure;
Changli Gaod8d1f302010-06-10 23:31:35 -07001543 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
1544 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, 0, 0, expires,
1545 rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08001546 goto rtattr_failure;
David S. Millerc7537962010-11-11 17:07:48 -08001547 if (dn_is_input_route(rt))
David S. Miller1d28f422011-03-12 00:29:39 -05001548 RTA_PUT(skb, RTA_IIF, sizeof(int), &rt->fl.flowi_iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001550 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return skb->len;
1552
1553nlmsg_failure:
1554rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001555 nlmsg_trim(skb, b);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001556 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
1559/*
1560 * This is called by both endnodes and routers now.
1561 */
Thomas Graffa34ddd2007-03-22 11:57:46 -07001562static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001564 struct net *net = sock_net(in_skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 struct rtattr **rta = arg;
1566 struct rtmsg *rtm = NLMSG_DATA(nlh);
1567 struct dn_route *rt = NULL;
1568 struct dn_skb_cb *cb;
1569 int err;
1570 struct sk_buff *skb;
1571 struct flowi fl;
1572
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001573 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001574 return -EINVAL;
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 memset(&fl, 0, sizeof(fl));
David S. Miller1d28f422011-03-12 00:29:39 -05001577 fl.flowi_proto = DNPROTO_NSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1580 if (skb == NULL)
1581 return -ENOBUFS;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001582 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 cb = DN_SKB_CB(skb);
1584
1585 if (rta[RTA_SRC-1])
1586 memcpy(&fl.fld_src, RTA_DATA(rta[RTA_SRC-1]), 2);
1587 if (rta[RTA_DST-1])
1588 memcpy(&fl.fld_dst, RTA_DATA(rta[RTA_DST-1]), 2);
1589 if (rta[RTA_IIF-1])
David S. Miller1d28f422011-03-12 00:29:39 -05001590 memcpy(&fl.flowi_iif, RTA_DATA(rta[RTA_IIF-1]), sizeof(int));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
David S. Miller1d28f422011-03-12 00:29:39 -05001592 if (fl.flowi_iif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 struct net_device *dev;
David S. Miller1d28f422011-03-12 00:29:39 -05001594 if ((dev = dev_get_by_index(&init_net, fl.flowi_iif)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 kfree_skb(skb);
1596 return -ENODEV;
1597 }
1598 if (!dev->dn_ptr) {
1599 dev_put(dev);
1600 kfree_skb(skb);
1601 return -ENODEV;
1602 }
YOSHIFUJI Hideakib98999d2007-12-12 03:51:49 +09001603 skb->protocol = htons(ETH_P_DNA_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 skb->dev = dev;
1605 cb->src = fl.fld_src;
1606 cb->dst = fl.fld_dst;
1607 local_bh_disable();
1608 err = dn_route_input(skb);
1609 local_bh_enable();
1610 memset(cb, 0, sizeof(struct dn_skb_cb));
Eric Dumazetadf30902009-06-02 05:19:30 +00001611 rt = (struct dn_route *)skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001612 if (!err && -rt->dst.error)
1613 err = rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 } else {
1615 int oif = 0;
1616 if (rta[RTA_OIF - 1])
1617 memcpy(&oif, RTA_DATA(rta[RTA_OIF - 1]), sizeof(int));
David S. Miller1d28f422011-03-12 00:29:39 -05001618 fl.flowi_oif = oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 err = dn_route_output_key((struct dst_entry **)&rt, &fl, 0);
1620 }
1621
1622 if (skb->dev)
1623 dev_put(skb->dev);
1624 skb->dev = NULL;
1625 if (err)
1626 goto out_free;
Changli Gaod8d1f302010-06-10 23:31:35 -07001627 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (rtm->rtm_flags & RTM_F_NOTIFY)
1629 rt->rt_flags |= RTCF_NOTIFY;
1630
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001631 err = dn_rt_fill_info(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq, RTM_NEWROUTE, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 if (err == 0)
1634 goto out_free;
1635 if (err < 0) {
1636 err = -EMSGSIZE;
1637 goto out_free;
1638 }
1639
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001640 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642out_free:
1643 kfree_skb(skb);
1644 return err;
1645}
1646
1647/*
1648 * For routers, this is called from dn_fib_dump, but for endnodes its
1649 * called directly from the rtnetlink dispatch table.
1650 */
1651int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1652{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001653 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 struct dn_route *rt;
1655 int h, s_h;
1656 int idx, s_idx;
1657
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001658 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001659 return 0;
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (NLMSG_PAYLOAD(cb->nlh, 0) < sizeof(struct rtmsg))
1662 return -EINVAL;
1663 if (!(((struct rtmsg *)NLMSG_DATA(cb->nlh))->rtm_flags&RTM_F_CLONED))
1664 return 0;
1665
1666 s_h = cb->args[0];
1667 s_idx = idx = cb->args[1];
1668 for(h = 0; h <= dn_rt_hash_mask; h++) {
1669 if (h < s_h)
1670 continue;
1671 if (h > s_h)
1672 s_idx = 0;
1673 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001674 for(rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001676 rt = rcu_dereference_bh(rt->dst.dn_next), idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (idx < s_idx)
1678 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001679 skb_dst_set(skb, dst_clone(&rt->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).pid,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001681 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001682 1, NLM_F_MULTI) <= 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001683 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 rcu_read_unlock_bh();
1685 goto done;
1686 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001687 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
1689 rcu_read_unlock_bh();
1690 }
1691
1692done:
1693 cb->args[0] = h;
1694 cb->args[1] = idx;
1695 return skb->len;
1696}
1697
1698#ifdef CONFIG_PROC_FS
1699struct dn_rt_cache_iter_state {
1700 int bucket;
1701};
1702
1703static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1704{
1705 struct dn_route *rt = NULL;
1706 struct dn_rt_cache_iter_state *s = seq->private;
1707
1708 for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
1709 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001710 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (rt)
1712 break;
1713 rcu_read_unlock_bh();
1714 }
Paul E. McKenneya898def2010-02-22 17:04:49 -08001715 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716}
1717
1718static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1719{
Eric Dumazet0d89d792008-01-10 22:35:21 -08001720 struct dn_rt_cache_iter_state *s = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001722 rt = rcu_dereference_bh(rt->dst.dn_next);
1723 while (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 rcu_read_unlock_bh();
1725 if (--s->bucket < 0)
1726 break;
1727 rcu_read_lock_bh();
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001728 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001730 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731}
1732
1733static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1734{
1735 struct dn_route *rt = dn_rt_cache_get_first(seq);
1736
1737 if (rt) {
1738 while(*pos && (rt = dn_rt_cache_get_next(seq, rt)))
1739 --*pos;
1740 }
1741 return *pos ? NULL : rt;
1742}
1743
1744static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1745{
1746 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1747 ++*pos;
1748 return rt;
1749}
1750
1751static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1752{
1753 if (v)
1754 rcu_read_unlock_bh();
1755}
1756
1757static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1758{
1759 struct dn_route *rt = v;
1760 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1761
1762 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07001763 rt->dst.dev ? rt->dst.dev->name : "*",
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001764 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1765 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
Changli Gaod8d1f302010-06-10 23:31:35 -07001766 atomic_read(&rt->dst.__refcnt),
1767 rt->dst.__use,
1768 (int) dst_metric(&rt->dst, RTAX_RTT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return 0;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001772static const struct seq_operations dn_rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 .start = dn_rt_cache_seq_start,
1774 .next = dn_rt_cache_seq_next,
1775 .stop = dn_rt_cache_seq_stop,
1776 .show = dn_rt_cache_seq_show,
1777};
1778
1779static int dn_rt_cache_seq_open(struct inode *inode, struct file *file)
1780{
Pavel Emelyanov31164082007-10-10 02:30:23 -07001781 return seq_open_private(file, &dn_rt_cache_seq_ops,
1782 sizeof(struct dn_rt_cache_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
1784
Arjan van de Ven9a321442007-02-12 00:55:35 -08001785static const struct file_operations dn_rt_cache_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 .owner = THIS_MODULE,
1787 .open = dn_rt_cache_seq_open,
1788 .read = seq_read,
1789 .llseek = seq_lseek,
1790 .release = seq_release_private,
1791};
1792
1793#endif /* CONFIG_PROC_FS */
1794
1795void __init dn_route_init(void)
1796{
1797 int i, goal, order;
1798
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001799 dn_dst_ops.kmem_cachep =
1800 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001801 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001802 dst_entries_init(&dn_dst_ops);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001803 setup_timer(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1805 add_timer(&dn_route_timer);
1806
Jan Beulich44813742009-09-21 17:03:05 -07001807 goal = totalram_pages >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 for(order = 0; (1UL << order) < goal; order++)
1810 /* NOTHING */;
1811
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001812 /*
1813 * Only want 1024 entries max, since the table is very, very unlikely
1814 * to be larger than that.
1815 */
1816 while(order && ((((1UL << order) * PAGE_SIZE) /
1817 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1818 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001820 do {
1821 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1822 sizeof(struct dn_rt_hash_bucket);
1823 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1824 dn_rt_hash_mask--;
1825 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1826 __get_free_pages(GFP_ATOMIC, order);
1827 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001830 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001832 printk(KERN_INFO
1833 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1834 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1836
1837 dn_rt_hash_mask--;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001838 for(i = 0; i <= dn_rt_hash_mask; i++) {
1839 spin_lock_init(&dn_rt_hash_table[i].lock);
1840 dn_rt_hash_table[i].chain = NULL;
1841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001843 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001845 proc_net_fops_create(&init_net, "decnet_cache", S_IRUGO, &dn_rt_cache_seq_fops);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001846
1847#ifdef CONFIG_DECNET_ROUTER
1848 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute, dn_fib_dump);
1849#else
1850 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
1851 dn_cache_dump);
1852#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
1855void __exit dn_route_cleanup(void)
1856{
1857 del_timer(&dn_route_timer);
1858 dn_run_flush(0);
1859
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001860 proc_net_remove(&init_net, "decnet_cache");
Eric Dumazetfc66f952010-10-08 06:37:34 +00001861 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863