blob: 3b6400d17dc20d601f4338f35d22b34c82316fbf [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
David S. Millerbef55ae2011-03-12 17:17:10 -0500285static inline int compare_keys(struct flowidn *fl1, struct flowidn *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
David S. Millerbef55ae2011-03-12 17:17:10 -0500287 return ((fl1->daddr ^ fl2->daddr) |
288 (fl1->saddr ^ fl2->saddr) |
289 (fl1->flowidn_mark ^ fl2->flowidn_mark) |
290 (fl1->flowidn_scope ^ fl2->flowidn_scope) |
291 (fl1->flowidn_oif ^ fl2->flowidn_oif) |
292 (fl1->flowidn_iif ^ fl2->flowidn_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) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500306 if (compare_keys(&rth->fld, &rt->fld)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* 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)) {
Joe Perches06f8fe12011-07-01 09:43:03 +0000498 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
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
Joe Perches06f8fe12011-07-01 09:43:03 +0000655 switch (flags & DN_RT_CNTL_MSK) {
656 case DN_RT_PKT_INIT:
657 dn_dev_init_pkt(skb);
658 break;
659 case DN_RT_PKT_VERI:
660 dn_dev_veri_pkt(skb);
661 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
664 if (dn->parms.state != DN_DEV_S_RU)
665 goto dump_it;
666
Joe Perches06f8fe12011-07-01 09:43:03 +0000667 switch (flags & DN_RT_CNTL_MSK) {
668 case DN_RT_PKT_HELO:
669 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
Joe Perches06f8fe12011-07-01 09:43:03 +0000673 case DN_RT_PKT_L1RT:
674 case DN_RT_PKT_L2RT:
675 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
676 skb, skb->dev, NULL,
677 dn_route_discard);
678 case DN_RT_PKT_ERTH:
679 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
Joe Perches06f8fe12011-07-01 09:43:03 +0000683 case DN_RT_PKT_EEDH:
684 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
Joe Perches06f8fe12011-07-01 09:43:03 +0000694 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
David S. Miller8f40b162011-07-17 13:34:11 -0700708static int dn_to_neigh_output(struct sk_buff *skb)
709{
710 struct dst_entry *dst = skb_dst(skb);
711 struct neighbour *n = dst->neighbour;
712
713 return n->output(n, skb);
714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716static int dn_output(struct sk_buff *skb)
717{
Eric Dumazetadf30902009-06-02 05:19:30 +0000718 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 struct dn_route *rt = (struct dn_route *)dst;
720 struct net_device *dev = dst->dev;
721 struct dn_skb_cb *cb = DN_SKB_CB(skb);
722 struct neighbour *neigh;
723
724 int err = -EINVAL;
725
726 if ((neigh = dst->neighbour) == NULL)
727 goto error;
728
729 skb->dev = dev;
730
731 cb->src = rt->rt_saddr;
732 cb->dst = rt->rt_daddr;
733
734 /*
735 * Always set the Intra-Ethernet bit on all outgoing packets
736 * originated on this node. Only valid flag from upper layers
737 * is return-to-sender-requested. Set hop count to 0 too.
738 */
739 cb->rt_flags &= ~DN_RT_F_RQR;
740 cb->rt_flags |= DN_RT_F_IE;
741 cb->hops = 0;
742
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100743 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT, skb, NULL, dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700744 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746error:
747 if (net_ratelimit())
748 printk(KERN_DEBUG "dn_output: This should not happen\n");
749
750 kfree_skb(skb);
751
752 return err;
753}
754
755static int dn_forward(struct sk_buff *skb)
756{
757 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000758 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000759 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 struct dn_route *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 int header_len;
762#ifdef CONFIG_NETFILTER
763 struct net_device *dev = skb->dev;
764#endif
765
766 if (skb->pkt_type != PACKET_HOST)
767 goto drop;
768
769 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000770 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700772 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 goto drop;
774
775 /*
776 * Hop count exceeded.
777 */
778 if (++cb->hops > 30)
779 goto drop;
780
Changli Gaod8d1f302010-06-10 23:31:35 -0700781 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /*
784 * If packet goes out same interface it came in on, then set
785 * the Intra-Ethernet bit. This has no effect for short
786 * packets, so we don't need to test for them here.
787 */
788 cb->rt_flags &= ~DN_RT_F_IE;
789 if (rt->rt_flags & RTCF_DOREDIRECT)
790 cb->rt_flags |= DN_RT_F_IE;
791
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100792 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD, skb, dev, skb->dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700793 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795drop:
796 kfree_skb(skb);
797 return NET_RX_DROP;
798}
799
800/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * Used to catch bugs. This should never normally get
802 * called.
803 */
804static int dn_rt_bug(struct sk_buff *skb)
805{
806 if (net_ratelimit()) {
807 struct dn_skb_cb *cb = DN_SKB_CB(skb);
808
809 printk(KERN_DEBUG "dn_rt_bug: skb from:%04x to:%04x\n",
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800810 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
813 kfree_skb(skb);
814
Florian Westphal0e8635a2009-06-20 00:53:25 +0000815 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
David S. Miller0dbaee32010-12-13 12:52:14 -0800818static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
819{
820 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
821}
822
David S. Millerd33e4552010-12-14 13:01:14 -0800823static unsigned int dn_dst_default_mtu(const struct dst_entry *dst)
824{
825 return dst->dev->mtu;
826}
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
829{
830 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700831 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800832 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (fi) {
836 if (DN_FIB_RES_GW(*res) &&
837 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
838 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800839 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841 rt->rt_type = res->type;
842
Changli Gaod8d1f302010-06-10 23:31:35 -0700843 if (dev != NULL && rt->dst.neighbour == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
845 if (IS_ERR(n))
846 return PTR_ERR(n);
Changli Gaod8d1f302010-06-10 23:31:35 -0700847 rt->dst.neighbour = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
David S. Millerd33e4552010-12-14 13:01:14 -0800850 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800851 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800852 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
853 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800854 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800855 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800856 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return 0;
859}
860
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800861static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800863 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 int match = 16;
865 while(tmp) {
866 tmp >>= 1;
867 match--;
868 }
869 return match;
870}
871
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800872static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800874 __le16 saddr = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000875 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 struct dn_ifaddr *ifa;
877 int best_match = 0;
878 int ret;
879
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000880 rcu_read_lock();
881 dn_db = rcu_dereference(dev->dn_ptr);
882 for (ifa = rcu_dereference(dn_db->ifa_list);
883 ifa != NULL;
884 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (ifa->ifa_scope > scope)
886 continue;
887 if (!daddr) {
888 saddr = ifa->ifa_local;
889 break;
890 }
891 ret = dn_match_addr(daddr, ifa->ifa_local);
892 if (ret > best_match)
893 saddr = ifa->ifa_local;
894 if (best_match == 0)
895 saddr = ifa->ifa_local;
896 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000897 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 return saddr;
900}
901
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800902static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
905}
906
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800907static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800909 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
911}
912
David S. Millerbef55ae2011-03-12 17:17:10 -0500913static int dn_route_output_slow(struct dst_entry **pprt, const struct flowidn *oldflp, int try_hard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
David S. Millerbef55ae2011-03-12 17:17:10 -0500915 struct flowidn fld = {
916 .daddr = oldflp->daddr,
917 .saddr = oldflp->saddr,
918 .flowidn_scope = RT_SCOPE_UNIVERSE,
919 .flowidn_mark = oldflp->flowidn_mark,
920 .flowidn_iif = init_net.loopback_dev->ifindex,
921 .flowidn_oif = oldflp->flowidn_oif,
David S. Miller1d28f422011-03-12 00:29:39 -0500922 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700924 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 struct neighbour *neigh = NULL;
926 unsigned hash;
927 unsigned flags = 0;
928 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
929 int err;
930 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800931 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 if (decnet_debug_level & 16)
934 printk(KERN_DEBUG
935 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
David S. Millerbef55ae2011-03-12 17:17:10 -0500936 " iif=%d oif=%d\n", le16_to_cpu(oldflp->daddr),
937 le16_to_cpu(oldflp->saddr),
938 oldflp->flowidn_mark, init_net.loopback_dev->ifindex,
939 oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 /* If we have an output interface, verify its a DECnet device */
David S. Millerbef55ae2011-03-12 17:17:10 -0500942 if (oldflp->flowidn_oif) {
943 dev_out = dev_get_by_index(&init_net, oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 err = -ENODEV;
945 if (dev_out && dev_out->dn_ptr == NULL) {
946 dev_put(dev_out);
947 dev_out = NULL;
948 }
949 if (dev_out == NULL)
950 goto out;
951 }
952
953 /* If we have a source address, verify that its a local address */
David S. Millerbef55ae2011-03-12 17:17:10 -0500954 if (oldflp->saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 err = -EADDRNOTAVAIL;
956
957 if (dev_out) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500958 if (dn_dev_islocal(dev_out, oldflp->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 goto source_ok;
960 dev_put(dev_out);
961 goto out;
962 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800963 rcu_read_lock();
964 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700965 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 continue;
David S. Millerbef55ae2011-03-12 17:17:10 -0500967 if (!dn_dev_islocal(dev, oldflp->saddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700968 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700969 if ((dev->flags & IFF_LOOPBACK) &&
David S. Millerbef55ae2011-03-12 17:17:10 -0500970 oldflp->daddr &&
971 !dn_dev_islocal(dev, oldflp->daddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700972 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700973
974 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700975 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800977 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (dev_out == NULL)
979 goto out;
980 dev_hold(dev_out);
981source_ok:
982 ;
983 }
984
985 /* No destination? Assume its local */
David S. Millerbef55ae2011-03-12 17:17:10 -0500986 if (!fld.daddr) {
987 fld.daddr = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 err = -EADDRNOTAVAIL;
990 if (dev_out)
991 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700992 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -0500994 if (!fld.daddr) {
995 fld.daddr =
996 fld.saddr = dnet_select_source(dev_out, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 RT_SCOPE_HOST);
David S. Millerbef55ae2011-03-12 17:17:10 -0500998 if (!fld.daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto out;
1000 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001001 fld.flowidn_oif = init_net.loopback_dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 res.type = RTN_LOCAL;
1003 goto make_route;
1004 }
1005
1006 if (decnet_debug_level & 16)
1007 printk(KERN_DEBUG
1008 "dn_route_output_slow: initial checks complete."
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001009 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
David S. Millerbef55ae2011-03-12 17:17:10 -05001010 le16_to_cpu(fld.daddr), le16_to_cpu(fld.saddr),
1011 fld.flowidn_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 /*
1014 * N.B. If the kernel is compiled without router support then
1015 * dn_fib_lookup() will evaluate to non-zero so this if () block
1016 * will always be executed.
1017 */
1018 err = -ESRCH;
David S. Millerbef55ae2011-03-12 17:17:10 -05001019 if (try_hard || (err = dn_fib_lookup(&fld, &res)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 struct dn_dev *dn_db;
1021 if (err != -ESRCH)
1022 goto out;
1023 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001024 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 * routing in endnodes which is described in the DECnet routing
1026 * docs
1027 *
1028 * If we are not trying hard, look in neighbour cache.
1029 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001030 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 * here
1032 */
1033 if (!try_hard) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001034 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (neigh) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001036 if ((oldflp->flowidn_oif &&
1037 (neigh->dev->ifindex != oldflp->flowidn_oif)) ||
1038 (oldflp->saddr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 (!dn_dev_islocal(neigh->dev,
David S. Millerbef55ae2011-03-12 17:17:10 -05001040 oldflp->saddr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 neigh_release(neigh);
1042 neigh = NULL;
1043 } else {
1044 if (dev_out)
1045 dev_put(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001046 if (dn_dev_islocal(neigh->dev, fld.daddr)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001047 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 res.type = RTN_LOCAL;
1049 } else {
1050 dev_out = neigh->dev;
1051 }
1052 dev_hold(dev_out);
1053 goto select_source;
1054 }
1055 }
1056 }
1057
1058 /* Not there? Perhaps its a local address */
1059 if (dev_out == NULL)
1060 dev_out = dn_dev_get_default();
1061 err = -ENODEV;
1062 if (dev_out == NULL)
1063 goto out;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001064 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 /* Possible improvement - check all devices for local addr */
David S. Millerbef55ae2011-03-12 17:17:10 -05001066 if (dn_dev_islocal(dev_out, fld.daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001068 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 dev_hold(dev_out);
1070 res.type = RTN_LOCAL;
1071 goto select_source;
1072 }
1073 /* Not local either.... try sending it to the default router */
1074 neigh = neigh_clone(dn_db->router);
1075 BUG_ON(neigh && neigh->dev != dev_out);
1076
1077 /* Ok then, we assume its directly connected and move on */
1078select_source:
1079 if (neigh)
1080 gateway = ((struct dn_neigh *)neigh)->addr;
1081 if (gateway == 0)
David S. Millerbef55ae2011-03-12 17:17:10 -05001082 gateway = fld.daddr;
1083 if (fld.saddr == 0) {
1084 fld.saddr = dnet_select_source(dev_out, gateway,
1085 res.type == RTN_LOCAL ?
1086 RT_SCOPE_HOST :
1087 RT_SCOPE_LINK);
1088 if (fld.saddr == 0 && res.type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 goto e_addr;
1090 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001091 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 goto make_route;
1093 }
1094 free_res = 1;
1095
1096 if (res.type == RTN_NAT)
1097 goto e_inval;
1098
1099 if (res.type == RTN_LOCAL) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001100 if (!fld.saddr)
1101 fld.saddr = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (dev_out)
1103 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001104 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001106 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (res.fi)
1108 dn_fib_info_put(res.fi);
1109 res.fi = NULL;
1110 goto make_route;
1111 }
1112
David S. Millerbef55ae2011-03-12 17:17:10 -05001113 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1114 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001116 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 * We could add some logic to deal with default routes here and
1118 * get rid of some of the special casing above.
1119 */
1120
David S. Millerbef55ae2011-03-12 17:17:10 -05001121 if (!fld.saddr)
1122 fld.saddr = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (dev_out)
1125 dev_put(dev_out);
1126 dev_out = DN_FIB_RES_DEV(res);
1127 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001128 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 gateway = DN_FIB_RES_GW(res);
1130
1131make_route:
1132 if (dev_out->flags & IFF_LOOPBACK)
1133 flags |= RTCF_LOCAL;
1134
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001135 rt = dst_alloc(&dn_dst_ops, dev_out, 1, 0, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (rt == NULL)
1137 goto e_nobufs;
1138
David S. Millercf911662011-04-28 14:31:47 -07001139 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001140 rt->fld.saddr = oldflp->saddr;
1141 rt->fld.daddr = oldflp->daddr;
1142 rt->fld.flowidn_oif = oldflp->flowidn_oif;
1143 rt->fld.flowidn_iif = 0;
1144 rt->fld.flowidn_mark = oldflp->flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
David S. Millerbef55ae2011-03-12 17:17:10 -05001146 rt->rt_saddr = fld.saddr;
1147 rt->rt_daddr = fld.daddr;
1148 rt->rt_gateway = gateway ? gateway : fld.daddr;
1149 rt->rt_local_src = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
David S. Millerbef55ae2011-03-12 17:17:10 -05001151 rt->rt_dst_map = fld.daddr;
1152 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Changli Gaod8d1f302010-06-10 23:31:35 -07001154 rt->dst.neighbour = neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 neigh = NULL;
1156
Changli Gaod8d1f302010-06-10 23:31:35 -07001157 rt->dst.lastuse = jiffies;
1158 rt->dst.output = dn_output;
1159 rt->dst.input = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 rt->rt_flags = flags;
1161 if (flags & RTCF_LOCAL)
Changli Gaod8d1f302010-06-10 23:31:35 -07001162 rt->dst.input = dn_nsp_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 err = dn_rt_set_next_hop(rt, &res);
1165 if (err)
1166 goto e_neighbour;
1167
David S. Millerbef55ae2011-03-12 17:17:10 -05001168 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1170
1171done:
1172 if (neigh)
1173 neigh_release(neigh);
1174 if (free_res)
1175 dn_fib_res_put(&res);
1176 if (dev_out)
1177 dev_put(dev_out);
1178out:
1179 return err;
1180
1181e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001182 err = -EADDRNOTAVAIL;
1183 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184e_inval:
1185 err = -EINVAL;
1186 goto done;
1187e_nobufs:
1188 err = -ENOBUFS;
1189 goto done;
1190e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001191 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 goto e_nobufs;
1193}
1194
1195
1196/*
1197 * N.B. The flags may be moved into the flowi at some future stage.
1198 */
David S. Millerbef55ae2011-03-12 17:17:10 -05001199static int __dn_route_output_key(struct dst_entry **pprt, const struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
David S. Millerbef55ae2011-03-12 17:17:10 -05001201 unsigned hash = dn_hash(flp->saddr, flp->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 struct dn_route *rt = NULL;
1203
1204 if (!(flags & MSG_TRYHARD)) {
1205 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001206 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001207 rt = rcu_dereference_bh(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001208 if ((flp->daddr == rt->fld.daddr) &&
1209 (flp->saddr == rt->fld.saddr) &&
1210 (flp->flowidn_mark == rt->fld.flowidn_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001211 dn_is_output_route(rt) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001212 (rt->fld.flowidn_oif == flp->flowidn_oif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001213 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001215 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return 0;
1217 }
1218 }
1219 rcu_read_unlock_bh();
1220 }
1221
1222 return dn_route_output_slow(pprt, flp, flags);
1223}
1224
David S. Millerbef55ae2011-03-12 17:17:10 -05001225static int dn_route_output_key(struct dst_entry **pprt, struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
1227 int err;
1228
1229 err = __dn_route_output_key(pprt, flp, flags);
David S. Millerbef55ae2011-03-12 17:17:10 -05001230 if (err == 0 && flp->flowidn_proto) {
1231 *pprt = xfrm_lookup(&init_net, *pprt,
1232 flowidn_to_flowi(flp), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001233 if (IS_ERR(*pprt)) {
1234 err = PTR_ERR(*pprt);
1235 *pprt = NULL;
1236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238 return err;
1239}
1240
David S. Millerbef55ae2011-03-12 17:17:10 -05001241int dn_route_output_sock(struct dst_entry **pprt, struct flowidn *fl, struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 int err;
1244
1245 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Millerbef55ae2011-03-12 17:17:10 -05001246 if (err == 0 && fl->flowidn_proto) {
David S. Miller80c0bc92011-03-01 14:36:37 -08001247 if (!(flags & MSG_DONTWAIT))
David S. Millerbef55ae2011-03-12 17:17:10 -05001248 fl->flowidn_flags |= FLOWI_FLAG_CAN_SLEEP;
1249 *pprt = xfrm_lookup(&init_net, *pprt,
1250 flowidn_to_flowi(fl), sk, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001251 if (IS_ERR(*pprt)) {
1252 err = PTR_ERR(*pprt);
1253 *pprt = NULL;
1254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256 return err;
1257}
1258
1259static int dn_route_input_slow(struct sk_buff *skb)
1260{
1261 struct dn_route *rt = NULL;
1262 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1263 struct net_device *in_dev = skb->dev;
1264 struct net_device *out_dev = NULL;
1265 struct dn_dev *dn_db;
1266 struct neighbour *neigh = NULL;
1267 unsigned hash;
1268 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001269 __le16 gateway = 0;
1270 __le16 local_src = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001271 struct flowidn fld = {
1272 .daddr = cb->dst,
1273 .saddr = cb->src,
1274 .flowidn_scope = RT_SCOPE_UNIVERSE,
1275 .flowidn_mark = skb->mark,
1276 .flowidn_iif = skb->dev->ifindex,
David S. Miller1d28f422011-03-12 00:29:39 -05001277 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1279 int err = -EINVAL;
1280 int free_res = 0;
1281
1282 dev_hold(in_dev);
1283
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001284 if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 goto out;
1286
1287 /* Zero source addresses are not allowed */
David S. Millerbef55ae2011-03-12 17:17:10 -05001288 if (fld.saddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 goto out;
1290
1291 /*
1292 * In this case we've just received a packet from a source
1293 * outside ourselves pretending to come from us. We don't
1294 * allow it any further to prevent routing loops, spoofing and
1295 * other nasties. Loopback packets already have the dst attached
1296 * so this only affects packets which have originated elsewhere.
1297 */
1298 err = -ENOTUNIQ;
1299 if (dn_dev_islocal(in_dev, cb->src))
1300 goto out;
1301
David S. Millerbef55ae2011-03-12 17:17:10 -05001302 err = dn_fib_lookup(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (err) {
1304 if (err != -ESRCH)
1305 goto out;
1306 /*
1307 * Is the destination us ?
1308 */
1309 if (!dn_dev_islocal(in_dev, cb->dst))
1310 goto e_inval;
1311
1312 res.type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 } else {
David S. Millerbef55ae2011-03-12 17:17:10 -05001314 __le16 src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 free_res = 1;
1316
1317 out_dev = DN_FIB_RES_DEV(res);
1318 if (out_dev == NULL) {
1319 if (net_ratelimit())
1320 printk(KERN_CRIT "Bug in dn_route_input_slow() "
1321 "No output device\n");
1322 goto e_inval;
1323 }
1324 dev_hold(out_dev);
1325
1326 if (res.r)
David S. Millerbef55ae2011-03-12 17:17:10 -05001327 src_map = fld.saddr; /* no NAT support for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 gateway = DN_FIB_RES_GW(res);
1330 if (res.type == RTN_NAT) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001331 fld.daddr = dn_fib_rules_map_destination(fld.daddr, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 dn_fib_res_put(&res);
1333 free_res = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001334 if (dn_fib_lookup(&fld, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 goto e_inval;
1336 free_res = 1;
1337 if (res.type != RTN_UNICAST)
1338 goto e_inval;
1339 flags |= RTCF_DNAT;
David S. Millerbef55ae2011-03-12 17:17:10 -05001340 gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001342 fld.saddr = src_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
1345 switch(res.type) {
1346 case RTN_UNICAST:
1347 /*
1348 * Forwarding check here, we only check for forwarding
1349 * being turned off, if you want to only forward intra
1350 * area, its up to you to set the routing tables up
1351 * correctly.
1352 */
1353 if (dn_db->parms.forwarding == 0)
1354 goto e_inval;
1355
David S. Millerbef55ae2011-03-12 17:17:10 -05001356 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1357 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001359 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1361 * flag as a hint to set the intra-ethernet bit when
1362 * forwarding. If we've got NAT in operation, we don't do
1363 * this optimisation.
1364 */
1365 if (out_dev == in_dev && !(flags & RTCF_NAT))
1366 flags |= RTCF_DOREDIRECT;
1367
1368 local_src = DN_FIB_RES_PREFSRC(res);
1369
1370 case RTN_BLACKHOLE:
1371 case RTN_UNREACHABLE:
1372 break;
1373 case RTN_LOCAL:
1374 flags |= RTCF_LOCAL;
David S. Millerbef55ae2011-03-12 17:17:10 -05001375 fld.saddr = cb->dst;
1376 fld.daddr = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 /* Routing tables gave us a gateway */
1379 if (gateway)
1380 goto make_route;
1381
1382 /* Packet was intra-ethernet, so we know its on-link */
Steven Whitehouse3a31b9d2006-10-18 20:45:22 -07001383 if (cb->rt_flags & DN_RT_F_IE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 gateway = cb->src;
1385 flags |= RTCF_DIRECTSRC;
1386 goto make_route;
1387 }
1388
1389 /* Use the default router if there is one */
1390 neigh = neigh_clone(dn_db->router);
1391 if (neigh) {
1392 gateway = ((struct dn_neigh *)neigh)->addr;
1393 goto make_route;
1394 }
1395
1396 /* Close eyes and pray */
1397 gateway = cb->src;
1398 flags |= RTCF_DIRECTSRC;
1399 goto make_route;
1400 default:
1401 goto e_inval;
1402 }
1403
1404make_route:
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001405 rt = dst_alloc(&dn_dst_ops, out_dev, 0, 0, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (rt == NULL)
1407 goto e_nobufs;
1408
David S. Millercf911662011-04-28 14:31:47 -07001409 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001410 rt->rt_saddr = fld.saddr;
1411 rt->rt_daddr = fld.daddr;
1412 rt->rt_gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (gateway)
1414 rt->rt_gateway = gateway;
1415 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1416
David S. Millerbef55ae2011-03-12 17:17:10 -05001417 rt->rt_dst_map = fld.daddr;
1418 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
David S. Millerbef55ae2011-03-12 17:17:10 -05001420 rt->fld.saddr = cb->src;
1421 rt->fld.daddr = cb->dst;
1422 rt->fld.flowidn_oif = 0;
1423 rt->fld.flowidn_iif = in_dev->ifindex;
1424 rt->fld.flowidn_mark = fld.flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Changli Gaod8d1f302010-06-10 23:31:35 -07001426 rt->dst.neighbour = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001427 rt->dst.lastuse = jiffies;
1428 rt->dst.output = dn_rt_bug;
Joe Perches06f8fe12011-07-01 09:43:03 +00001429 switch (res.type) {
1430 case RTN_UNICAST:
1431 rt->dst.input = dn_forward;
1432 break;
1433 case RTN_LOCAL:
1434 rt->dst.output = dn_output;
1435 rt->dst.input = dn_nsp_rx;
1436 rt->dst.dev = in_dev;
1437 flags |= RTCF_LOCAL;
1438 break;
1439 default:
1440 case RTN_UNREACHABLE:
1441 case RTN_BLACKHOLE:
1442 rt->dst.input = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444 rt->rt_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 err = dn_rt_set_next_hop(rt, &res);
1447 if (err)
1448 goto e_neighbour;
1449
David S. Millerbef55ae2011-03-12 17:17:10 -05001450 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Eric Dumazetadf30902009-06-02 05:19:30 +00001451 dn_insert_route(rt, hash, &rt);
Changli Gaod8d1f302010-06-10 23:31:35 -07001452 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454done:
1455 if (neigh)
1456 neigh_release(neigh);
1457 if (free_res)
1458 dn_fib_res_put(&res);
1459 dev_put(in_dev);
1460 if (out_dev)
1461 dev_put(out_dev);
1462out:
1463 return err;
1464
1465e_inval:
1466 err = -EINVAL;
1467 goto done;
1468
1469e_nobufs:
1470 err = -ENOBUFS;
1471 goto done;
1472
1473e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001474 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 goto done;
1476}
1477
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001478static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 struct dn_route *rt;
1481 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1482 unsigned hash = dn_hash(cb->src, cb->dst);
1483
Eric Dumazetadf30902009-06-02 05:19:30 +00001484 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return 0;
1486
1487 rcu_read_lock();
1488 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
Changli Gaod8d1f302010-06-10 23:31:35 -07001489 rt = rcu_dereference(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001490 if ((rt->fld.saddr == cb->src) &&
1491 (rt->fld.daddr == cb->dst) &&
1492 (rt->fld.flowidn_oif == 0) &&
1493 (rt->fld.flowidn_mark == skb->mark) &&
1494 (rt->fld.flowidn_iif == cb->iif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001495 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001497 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 return 0;
1499 }
1500 }
1501 rcu_read_unlock();
1502
1503 return dn_route_input_slow(skb);
1504}
1505
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001506static int dn_rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1507 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Eric Dumazetadf30902009-06-02 05:19:30 +00001509 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 struct rtmsg *r;
1511 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001512 unsigned char *b = skb_tail_pointer(skb);
Thomas Grafe3703b32006-11-27 09:27:07 -08001513 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001515 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*r), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 r = NLMSG_DATA(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 r->rtm_family = AF_DECnet;
1518 r->rtm_dst_len = 16;
1519 r->rtm_src_len = 0;
1520 r->rtm_tos = 0;
1521 r->rtm_table = RT_TABLE_MAIN;
Patrick McHardy9e762a42006-08-10 23:09:48 -07001522 RTA_PUT_U32(skb, RTA_TABLE, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 r->rtm_type = rt->rt_type;
1524 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1525 r->rtm_scope = RT_SCOPE_UNIVERSE;
1526 r->rtm_protocol = RTPROT_UNSPEC;
1527 if (rt->rt_flags & RTCF_NOTIFY)
1528 r->rtm_flags |= RTM_F_NOTIFY;
1529 RTA_PUT(skb, RTA_DST, 2, &rt->rt_daddr);
David S. Millerbef55ae2011-03-12 17:17:10 -05001530 if (rt->fld.saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 r->rtm_src_len = 16;
David S. Millerbef55ae2011-03-12 17:17:10 -05001532 RTA_PUT(skb, RTA_SRC, 2, &rt->fld.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001534 if (rt->dst.dev)
1535 RTA_PUT(skb, RTA_OIF, sizeof(int), &rt->dst.dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 /*
1537 * Note to self - change this if input routes reverse direction when
1538 * they deal only with inputs and not with replies like they do
1539 * currently.
1540 */
1541 RTA_PUT(skb, RTA_PREFSRC, 2, &rt->rt_local_src);
1542 if (rt->rt_daddr != rt->rt_gateway)
1543 RTA_PUT(skb, RTA_GATEWAY, 2, &rt->rt_gateway);
David S. Millerdefb3512010-12-08 21:16:57 -08001544 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 goto rtattr_failure;
Changli Gaod8d1f302010-06-10 23:31:35 -07001546 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
1547 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, 0, 0, expires,
1548 rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08001549 goto rtattr_failure;
David S. Millerc7537962010-11-11 17:07:48 -08001550 if (dn_is_input_route(rt))
David S. Millerbef55ae2011-03-12 17:17:10 -05001551 RTA_PUT(skb, RTA_IIF, sizeof(int), &rt->fld.flowidn_iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001553 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return skb->len;
1555
1556nlmsg_failure:
1557rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001558 nlmsg_trim(skb, b);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001559 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
1562/*
1563 * This is called by both endnodes and routers now.
1564 */
Thomas Graffa34ddd2007-03-22 11:57:46 -07001565static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001567 struct net *net = sock_net(in_skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 struct rtattr **rta = arg;
1569 struct rtmsg *rtm = NLMSG_DATA(nlh);
1570 struct dn_route *rt = NULL;
1571 struct dn_skb_cb *cb;
1572 int err;
1573 struct sk_buff *skb;
David S. Millerbef55ae2011-03-12 17:17:10 -05001574 struct flowidn fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001576 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001577 return -EINVAL;
1578
David S. Millerbef55ae2011-03-12 17:17:10 -05001579 memset(&fld, 0, sizeof(fld));
1580 fld.flowidn_proto = DNPROTO_NSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1583 if (skb == NULL)
1584 return -ENOBUFS;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001585 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 cb = DN_SKB_CB(skb);
1587
1588 if (rta[RTA_SRC-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001589 memcpy(&fld.saddr, RTA_DATA(rta[RTA_SRC-1]), 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (rta[RTA_DST-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001591 memcpy(&fld.daddr, RTA_DATA(rta[RTA_DST-1]), 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (rta[RTA_IIF-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001593 memcpy(&fld.flowidn_iif, RTA_DATA(rta[RTA_IIF-1]), sizeof(int));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
David S. Millerbef55ae2011-03-12 17:17:10 -05001595 if (fld.flowidn_iif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 struct net_device *dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001597 if ((dev = dev_get_by_index(&init_net, fld.flowidn_iif)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 kfree_skb(skb);
1599 return -ENODEV;
1600 }
1601 if (!dev->dn_ptr) {
1602 dev_put(dev);
1603 kfree_skb(skb);
1604 return -ENODEV;
1605 }
YOSHIFUJI Hideakib98999d2007-12-12 03:51:49 +09001606 skb->protocol = htons(ETH_P_DNA_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 skb->dev = dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001608 cb->src = fld.saddr;
1609 cb->dst = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 local_bh_disable();
1611 err = dn_route_input(skb);
1612 local_bh_enable();
1613 memset(cb, 0, sizeof(struct dn_skb_cb));
Eric Dumazetadf30902009-06-02 05:19:30 +00001614 rt = (struct dn_route *)skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001615 if (!err && -rt->dst.error)
1616 err = rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 } else {
1618 int oif = 0;
1619 if (rta[RTA_OIF - 1])
1620 memcpy(&oif, RTA_DATA(rta[RTA_OIF - 1]), sizeof(int));
David S. Millerbef55ae2011-03-12 17:17:10 -05001621 fld.flowidn_oif = oif;
1622 err = dn_route_output_key((struct dst_entry **)&rt, &fld, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
1624
1625 if (skb->dev)
1626 dev_put(skb->dev);
1627 skb->dev = NULL;
1628 if (err)
1629 goto out_free;
Changli Gaod8d1f302010-06-10 23:31:35 -07001630 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (rtm->rtm_flags & RTM_F_NOTIFY)
1632 rt->rt_flags |= RTCF_NOTIFY;
1633
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001634 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 -07001635
1636 if (err == 0)
1637 goto out_free;
1638 if (err < 0) {
1639 err = -EMSGSIZE;
1640 goto out_free;
1641 }
1642
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001643 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645out_free:
1646 kfree_skb(skb);
1647 return err;
1648}
1649
1650/*
1651 * For routers, this is called from dn_fib_dump, but for endnodes its
1652 * called directly from the rtnetlink dispatch table.
1653 */
1654int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1655{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001656 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 struct dn_route *rt;
1658 int h, s_h;
1659 int idx, s_idx;
1660
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001661 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001662 return 0;
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (NLMSG_PAYLOAD(cb->nlh, 0) < sizeof(struct rtmsg))
1665 return -EINVAL;
1666 if (!(((struct rtmsg *)NLMSG_DATA(cb->nlh))->rtm_flags&RTM_F_CLONED))
1667 return 0;
1668
1669 s_h = cb->args[0];
1670 s_idx = idx = cb->args[1];
1671 for(h = 0; h <= dn_rt_hash_mask; h++) {
1672 if (h < s_h)
1673 continue;
1674 if (h > s_h)
1675 s_idx = 0;
1676 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001677 for(rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001679 rt = rcu_dereference_bh(rt->dst.dn_next), idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if (idx < s_idx)
1681 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001682 skb_dst_set(skb, dst_clone(&rt->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).pid,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001684 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001685 1, NLM_F_MULTI) <= 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001686 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 rcu_read_unlock_bh();
1688 goto done;
1689 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001690 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692 rcu_read_unlock_bh();
1693 }
1694
1695done:
1696 cb->args[0] = h;
1697 cb->args[1] = idx;
1698 return skb->len;
1699}
1700
1701#ifdef CONFIG_PROC_FS
1702struct dn_rt_cache_iter_state {
1703 int bucket;
1704};
1705
1706static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1707{
1708 struct dn_route *rt = NULL;
1709 struct dn_rt_cache_iter_state *s = seq->private;
1710
1711 for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
1712 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001713 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (rt)
1715 break;
1716 rcu_read_unlock_bh();
1717 }
Paul E. McKenneya898def2010-02-22 17:04:49 -08001718 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
1721static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1722{
Eric Dumazet0d89d792008-01-10 22:35:21 -08001723 struct dn_rt_cache_iter_state *s = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001725 rt = rcu_dereference_bh(rt->dst.dn_next);
1726 while (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 rcu_read_unlock_bh();
1728 if (--s->bucket < 0)
1729 break;
1730 rcu_read_lock_bh();
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001731 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001733 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
1735
1736static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1737{
1738 struct dn_route *rt = dn_rt_cache_get_first(seq);
1739
1740 if (rt) {
1741 while(*pos && (rt = dn_rt_cache_get_next(seq, rt)))
1742 --*pos;
1743 }
1744 return *pos ? NULL : rt;
1745}
1746
1747static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1748{
1749 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1750 ++*pos;
1751 return rt;
1752}
1753
1754static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1755{
1756 if (v)
1757 rcu_read_unlock_bh();
1758}
1759
1760static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1761{
1762 struct dn_route *rt = v;
1763 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1764
1765 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07001766 rt->dst.dev ? rt->dst.dev->name : "*",
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001767 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1768 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
Changli Gaod8d1f302010-06-10 23:31:35 -07001769 atomic_read(&rt->dst.__refcnt),
1770 rt->dst.__use,
1771 (int) dst_metric(&rt->dst, RTAX_RTT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 return 0;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001773}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001775static const struct seq_operations dn_rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 .start = dn_rt_cache_seq_start,
1777 .next = dn_rt_cache_seq_next,
1778 .stop = dn_rt_cache_seq_stop,
1779 .show = dn_rt_cache_seq_show,
1780};
1781
1782static int dn_rt_cache_seq_open(struct inode *inode, struct file *file)
1783{
Pavel Emelyanov31164082007-10-10 02:30:23 -07001784 return seq_open_private(file, &dn_rt_cache_seq_ops,
1785 sizeof(struct dn_rt_cache_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
Arjan van de Ven9a321442007-02-12 00:55:35 -08001788static const struct file_operations dn_rt_cache_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 .owner = THIS_MODULE,
1790 .open = dn_rt_cache_seq_open,
1791 .read = seq_read,
1792 .llseek = seq_lseek,
1793 .release = seq_release_private,
1794};
1795
1796#endif /* CONFIG_PROC_FS */
1797
1798void __init dn_route_init(void)
1799{
1800 int i, goal, order;
1801
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001802 dn_dst_ops.kmem_cachep =
1803 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001804 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001805 dst_entries_init(&dn_dst_ops);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001806 setup_timer(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1808 add_timer(&dn_route_timer);
1809
Jan Beulich44813742009-09-21 17:03:05 -07001810 goal = totalram_pages >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 for(order = 0; (1UL << order) < goal; order++)
1813 /* NOTHING */;
1814
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001815 /*
1816 * Only want 1024 entries max, since the table is very, very unlikely
1817 * to be larger than that.
1818 */
1819 while(order && ((((1UL << order) * PAGE_SIZE) /
1820 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1821 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001823 do {
1824 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1825 sizeof(struct dn_rt_hash_bucket);
1826 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1827 dn_rt_hash_mask--;
1828 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1829 __get_free_pages(GFP_ATOMIC, order);
1830 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001833 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001835 printk(KERN_INFO
1836 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1837 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1839
1840 dn_rt_hash_mask--;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001841 for(i = 0; i <= dn_rt_hash_mask; i++) {
1842 spin_lock_init(&dn_rt_hash_table[i].lock);
1843 dn_rt_hash_table[i].chain = NULL;
1844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001846 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001848 proc_net_fops_create(&init_net, "decnet_cache", S_IRUGO, &dn_rt_cache_seq_fops);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001849
1850#ifdef CONFIG_DECNET_ROUTER
Greg Rosec7ac8672011-06-10 01:27:09 +00001851 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
1852 dn_fib_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001853#else
1854 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
Greg Rosec7ac8672011-06-10 01:27:09 +00001855 dn_cache_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
1859void __exit dn_route_cleanup(void)
1860{
1861 del_timer(&dn_route_timer);
1862 dn_run_flush(0);
1863
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001864 proc_net_remove(&init_net, "decnet_cache");
Eric Dumazetfc66f952010-10-08 06:37:34 +00001865 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866}
1867