blob: cd584f7de4dddeb0d9013a6c4eb19ac83454c1fb [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>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040080#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <asm/errno.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020082#include <net/net_namespace.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070083#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include <net/neighbour.h>
85#include <net/dst.h>
86#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070087#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <net/dn.h>
89#include <net/dn_dev.h>
90#include <net/dn_nsp.h>
91#include <net/dn_route.h>
92#include <net/dn_neigh.h>
93#include <net/dn_fib.h>
94
95struct dn_rt_hash_bucket
96{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +000097 struct dn_route __rcu *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 spinlock_t lock;
Eric Dumazetfca09fb2008-02-07 23:29:57 -080099};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101extern struct neigh_table dn_neigh_table;
102
103
104static unsigned char dn_hiord_addr[6] = {0xAA,0x00,0x04,0x00,0x00,0x00};
105
106static const int dn_rt_min_delay = 2 * HZ;
107static const int dn_rt_max_delay = 10 * HZ;
108static const int dn_rt_mtu_expires = 10 * 60 * HZ;
109
110static unsigned long dn_rt_deadline;
111
Daniel Lezcano569d3642008-01-18 03:56:57 -0800112static int dn_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static struct dst_entry *dn_dst_check(struct dst_entry *, __u32);
David S. Miller0dbaee32010-12-13 12:52:14 -0800114static unsigned int dn_dst_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +0000115static unsigned int dn_dst_mtu(const struct dst_entry *dst);
David S. Miller62fa8a82011-01-26 20:51:05 -0800116static void dn_dst_destroy(struct dst_entry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct dst_entry *dn_dst_negative_advice(struct dst_entry *);
118static void dn_dst_link_failure(struct sk_buff *);
119static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu);
David S. Millerd3aaeb32011-07-18 00:40:17 -0700120static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst, const void *daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int dn_route_input(struct sk_buff *);
122static void dn_run_flush(unsigned long dummy);
123
124static struct dn_rt_hash_bucket *dn_rt_hash_table;
Eric Dumazet95c96172012-04-15 05:58:06 +0000125static unsigned int dn_rt_hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127static struct timer_list dn_route_timer;
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700128static DEFINE_TIMER(dn_rt_flush_timer, dn_run_flush, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129int decnet_dst_gc_interval = 2;
130
131static struct dst_ops dn_dst_ops = {
132 .family = PF_DECnet,
Harvey Harrison09640e62009-02-01 00:45:17 -0800133 .protocol = cpu_to_be16(ETH_P_DNA_RT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .gc_thresh = 128,
135 .gc = dn_dst_gc,
136 .check = dn_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800137 .default_advmss = dn_dst_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000138 .mtu = dn_dst_mtu,
David S. Miller62fa8a82011-01-26 20:51:05 -0800139 .cow_metrics = dst_cow_metrics_generic,
140 .destroy = dn_dst_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .negative_advice = dn_dst_negative_advice,
142 .link_failure = dn_dst_link_failure,
143 .update_pmtu = dn_dst_update_pmtu,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700144 .neigh_lookup = dn_dst_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145};
146
David S. Miller62fa8a82011-01-26 20:51:05 -0800147static void dn_dst_destroy(struct dst_entry *dst)
148{
149 dst_destroy_metrics_generic(dst);
150}
151
Eric Dumazet95c96172012-04-15 05:58:06 +0000152static __inline__ unsigned int dn_hash(__le16 src, __le16 dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800154 __u16 tmp = (__u16 __force)(src ^ dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 tmp ^= (tmp >> 3);
156 tmp ^= (tmp >> 5);
157 tmp ^= (tmp >> 10);
Eric Dumazet95c96172012-04-15 05:58:06 +0000158 return dn_rt_hash_mask & (unsigned int)tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161static inline void dnrt_free(struct dn_route *rt)
162{
Changli Gaod8d1f302010-06-10 23:31:35 -0700163 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166static inline void dnrt_drop(struct dn_route *rt)
167{
Changli Gaod8d1f302010-06-10 23:31:35 -0700168 dst_release(&rt->dst);
169 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172static void dn_dst_check_expire(unsigned long dummy)
173{
174 int i;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000175 struct dn_route *rt;
176 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 unsigned long now = jiffies;
178 unsigned long expire = 120 * HZ;
179
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000180 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 rtp = &dn_rt_hash_table[i].chain;
182
183 spin_lock(&dn_rt_hash_table[i].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000184 while ((rt = rcu_dereference_protected(*rtp,
185 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700186 if (atomic_read(&rt->dst.__refcnt) ||
187 (now - rt->dst.lastuse) < expire) {
188 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 continue;
190 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700191 *rtp = rt->dst.dn_next;
192 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dnrt_free(rt);
194 }
195 spin_unlock(&dn_rt_hash_table[i].lock);
196
197 if ((jiffies - now) > 0)
198 break;
199 }
200
201 mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ);
202}
203
Daniel Lezcano569d3642008-01-18 03:56:57 -0800204static int dn_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000206 struct dn_route *rt;
207 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 int i;
209 unsigned long now = jiffies;
210 unsigned long expire = 10 * HZ;
211
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000212 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 spin_lock_bh(&dn_rt_hash_table[i].lock);
215 rtp = &dn_rt_hash_table[i].chain;
216
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000217 while ((rt = rcu_dereference_protected(*rtp,
218 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700219 if (atomic_read(&rt->dst.__refcnt) ||
220 (now - rt->dst.lastuse) < expire) {
221 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 continue;
223 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700224 *rtp = rt->dst.dn_next;
225 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 dnrt_drop(rt);
227 break;
228 }
229 spin_unlock_bh(&dn_rt_hash_table[i].lock);
230 }
231
232 return 0;
233}
234
235/*
236 * The decnet standards don't impose a particular minimum mtu, what they
237 * do insist on is that the routing layer accepts a datagram of at least
238 * 230 bytes long. Here we have to subtract the routing header length from
239 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
240 * assume the worst and use a long header size.
241 *
242 * We update both the mtu and the advertised mss (i.e. the segment size we
243 * advertise to the other end).
244 */
245static void dn_dst_update_pmtu(struct dst_entry *dst, u32 mtu)
246{
David Miller27217452011-12-02 16:52:08 +0000247 struct neighbour *n = dst_get_neighbour_noref(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 u32 min_mtu = 230;
David S. Miller69cce1d2011-07-17 23:09:49 -0700249 struct dn_dev *dn;
250
251 dn = n ? rcu_dereference_raw(n->dev->dn_ptr) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 if (dn && dn->use_long == 0)
254 min_mtu -= 6;
255 else
256 min_mtu -= 21;
257
Satoru SATOH5ffc02a2008-05-04 22:14:42 -0700258 if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (!(dst_metric_locked(dst, RTAX_MTU))) {
David S. Millerdefb3512010-12-08 21:16:57 -0800260 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 dst_set_expires(dst, dn_rt_mtu_expires);
262 }
263 if (!(dst_metric_locked(dst, RTAX_ADVMSS))) {
264 u32 mss = mtu - DN_MAX_NSP_DATA_HEADER;
David S. Miller0dbaee32010-12-13 12:52:14 -0800265 u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS);
266 if (!existing_mss || existing_mss > mss)
David S. Millerdefb3512010-12-08 21:16:57 -0800267 dst_metric_set(dst, RTAX_ADVMSS, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269 }
270}
271
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900272/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * When a route has been marked obsolete. (e.g. routing cache flush)
274 */
275static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie)
276{
277 return NULL;
278}
279
280static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst)
281{
282 dst_release(dst);
283 return NULL;
284}
285
286static void dn_dst_link_failure(struct sk_buff *skb)
287{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
David S. Millerbef55ae2011-03-12 17:17:10 -0500290static inline int compare_keys(struct flowidn *fl1, struct flowidn *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
David S. Millerbef55ae2011-03-12 17:17:10 -0500292 return ((fl1->daddr ^ fl2->daddr) |
293 (fl1->saddr ^ fl2->saddr) |
294 (fl1->flowidn_mark ^ fl2->flowidn_mark) |
295 (fl1->flowidn_scope ^ fl2->flowidn_scope) |
296 (fl1->flowidn_oif ^ fl2->flowidn_oif) |
297 (fl1->flowidn_iif ^ fl2->flowidn_iif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Eric Dumazet95c96172012-04-15 05:58:06 +0000300static int dn_insert_route(struct dn_route *rt, unsigned int hash, struct dn_route **rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000302 struct dn_route *rth;
303 struct dn_route __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 unsigned long now = jiffies;
305
306 rthp = &dn_rt_hash_table[hash].chain;
307
308 spin_lock_bh(&dn_rt_hash_table[hash].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000309 while ((rth = rcu_dereference_protected(*rthp,
310 lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500311 if (compare_keys(&rth->fld, &rt->fld)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* Put it first */
Changli Gaod8d1f302010-06-10 23:31:35 -0700313 *rthp = rth->dst.dn_next;
314 rcu_assign_pointer(rth->dst.dn_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 dn_rt_hash_table[hash].chain);
316 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
317
Changli Gaod8d1f302010-06-10 23:31:35 -0700318 dst_use(&rth->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
320
321 dnrt_drop(rt);
322 *rp = rth;
323 return 0;
324 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700325 rthp = &rth->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
Changli Gaod8d1f302010-06-10 23:31:35 -0700328 rcu_assign_pointer(rt->dst.dn_next, dn_rt_hash_table[hash].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900330
Changli Gaod8d1f302010-06-10 23:31:35 -0700331 dst_use(&rt->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
333 *rp = rt;
334 return 0;
335}
336
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800337static void dn_run_flush(unsigned long dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 int i;
340 struct dn_route *rt, *next;
341
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000342 for (i = 0; i < dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 spin_lock_bh(&dn_rt_hash_table[i].lock);
344
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000345 if ((rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 goto nothing_to_declare;
347
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000348 for(; rt; rt = next) {
349 next = rcu_dereference_raw(rt->dst.dn_next);
350 RCU_INIT_POINTER(rt->dst.dn_next, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 dst_free((struct dst_entry *)rt);
352 }
353
354nothing_to_declare:
355 spin_unlock_bh(&dn_rt_hash_table[i].lock);
356 }
357}
358
359static DEFINE_SPINLOCK(dn_rt_flush_lock);
360
361void dn_rt_cache_flush(int delay)
362{
363 unsigned long now = jiffies;
364 int user_mode = !in_interrupt();
365
366 if (delay < 0)
367 delay = dn_rt_min_delay;
368
369 spin_lock_bh(&dn_rt_flush_lock);
370
371 if (del_timer(&dn_rt_flush_timer) && delay > 0 && dn_rt_deadline) {
372 long tmo = (long)(dn_rt_deadline - now);
373
374 if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay)
375 tmo = 0;
376
377 if (delay > tmo)
378 delay = tmo;
379 }
380
381 if (delay <= 0) {
382 spin_unlock_bh(&dn_rt_flush_lock);
383 dn_run_flush(0);
384 return;
385 }
386
387 if (dn_rt_deadline == 0)
388 dn_rt_deadline = now + dn_rt_max_delay;
389
390 dn_rt_flush_timer.expires = now + delay;
391 add_timer(&dn_rt_flush_timer);
392 spin_unlock_bh(&dn_rt_flush_lock);
393}
394
395/**
396 * dn_return_short - Return a short packet to its sender
397 * @skb: The packet to return
398 *
399 */
400static int dn_return_short(struct sk_buff *skb)
401{
402 struct dn_skb_cb *cb;
403 unsigned char *ptr;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800404 __le16 *src;
405 __le16 *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Add back headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700408 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
411 return NET_RX_DROP;
412
413 cb = DN_SKB_CB(skb);
414 /* Skip packet length and point to flags */
415 ptr = skb->data + 2;
416 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
417
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800418 dst = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800420 src = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 ptr += 2;
422 *ptr = 0; /* Zero hop count */
423
Ilpo Järvinena0bffff2009-03-21 13:36:17 -0700424 swap(*src, *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 skb->pkt_type = PACKET_OUTGOING;
427 dn_rt_finish_output(skb, NULL, NULL);
428 return NET_RX_SUCCESS;
429}
430
431/**
432 * dn_return_long - Return a long packet to its sender
433 * @skb: The long format packet to return
434 *
435 */
436static int dn_return_long(struct sk_buff *skb)
437{
438 struct dn_skb_cb *cb;
439 unsigned char *ptr;
440 unsigned char *src_addr, *dst_addr;
441 unsigned char tmp[ETH_ALEN];
442
443 /* Add back all headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700444 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
447 return NET_RX_DROP;
448
449 cb = DN_SKB_CB(skb);
450 /* Ignore packet length and point to flags */
451 ptr = skb->data + 2;
452
453 /* Skip padding */
454 if (*ptr & DN_RT_F_PF) {
455 char padlen = (*ptr & ~DN_RT_F_PF);
456 ptr += padlen;
457 }
458
459 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
460 ptr += 2;
461 dst_addr = ptr;
462 ptr += 8;
463 src_addr = ptr;
464 ptr += 6;
465 *ptr = 0; /* Zero hop count */
466
467 /* Swap source and destination */
468 memcpy(tmp, src_addr, ETH_ALEN);
469 memcpy(src_addr, dst_addr, ETH_ALEN);
470 memcpy(dst_addr, tmp, ETH_ALEN);
471
472 skb->pkt_type = PACKET_OUTGOING;
473 dn_rt_finish_output(skb, dst_addr, src_addr);
474 return NET_RX_SUCCESS;
475}
476
477/**
478 * dn_route_rx_packet - Try and find a route for an incoming packet
479 * @skb: The packet to find a route for
480 *
481 * Returns: result of input function if route is found, error code otherwise
482 */
483static int dn_route_rx_packet(struct sk_buff *skb)
484{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000485 struct dn_skb_cb *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 int err;
487
488 if ((err = dn_route_input(skb)) == 0)
489 return dst_input(skb);
490
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000491 cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (decnet_debug_level & 4) {
493 char *devname = skb->dev ? skb->dev->name : "???";
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 printk(KERN_DEBUG
496 "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 -0800497 (int)cb->rt_flags, devname, skb->len,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800498 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 err, skb->pkt_type);
500 }
501
502 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
Joe Perches06f8fe12011-07-01 09:43:03 +0000503 switch (cb->rt_flags & DN_RT_PKT_MSK) {
504 case DN_RT_PKT_SHORT:
505 return dn_return_short(skb);
506 case DN_RT_PKT_LONG:
507 return dn_return_long(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 }
510
511 kfree_skb(skb);
512 return NET_RX_DROP;
513}
514
515static int dn_route_rx_long(struct sk_buff *skb)
516{
517 struct dn_skb_cb *cb = DN_SKB_CB(skb);
518 unsigned char *ptr = skb->data;
519
520 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
521 goto drop_it;
522
523 skb_pull(skb, 20);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300524 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900526 /* Destination info */
527 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800528 cb->dst = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900529 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
530 goto drop_it;
531 ptr += 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900534 /* Source info */
535 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800536 cb->src = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900537 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
538 goto drop_it;
539 ptr += 6;
540 /* Other junk */
541 ptr++;
542 cb->hops = *ptr++; /* Visit Count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100544 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL,
545 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547drop_it:
548 kfree_skb(skb);
549 return NET_RX_DROP;
550}
551
552
553
554static int dn_route_rx_short(struct sk_buff *skb)
555{
556 struct dn_skb_cb *cb = DN_SKB_CB(skb);
557 unsigned char *ptr = skb->data;
558
559 if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */
560 goto drop_it;
561
562 skb_pull(skb, 5);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300563 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800565 cb->dst = *(__le16 *)ptr;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900566 ptr += 2;
567 cb->src = *(__le16 *)ptr;
568 ptr += 2;
569 cb->hops = *ptr & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100571 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING, skb, skb->dev, NULL,
572 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574drop_it:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900575 kfree_skb(skb);
576 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579static int dn_route_discard(struct sk_buff *skb)
580{
581 /*
582 * I know we drop the packet here, but thats considered success in
583 * this case
584 */
585 kfree_skb(skb);
586 return NET_RX_SUCCESS;
587}
588
589static int dn_route_ptp_hello(struct sk_buff *skb)
590{
591 dn_dev_hello(skb);
592 dn_neigh_pointopoint_hello(skb);
593 return NET_RX_SUCCESS;
594}
595
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700596int 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 -0700597{
598 struct dn_skb_cb *cb;
599 unsigned char flags = 0;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800600 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000601 struct dn_dev *dn = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 unsigned char padlen = 0;
603
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700604 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700605 goto dump_it;
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (dn == NULL)
608 goto dump_it;
609
610 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
611 goto out;
612
613 if (!pskb_may_pull(skb, 3))
614 goto dump_it;
615
616 skb_pull(skb, 2);
617
618 if (len > skb->len)
619 goto dump_it;
620
621 skb_trim(skb, len);
622
623 flags = *skb->data;
624
625 cb = DN_SKB_CB(skb);
626 cb->stamp = jiffies;
627 cb->iif = dev->ifindex;
628
629 /*
630 * If we have padding, remove it.
631 */
632 if (flags & DN_RT_F_PF) {
633 padlen = flags & ~DN_RT_F_PF;
634 if (!pskb_may_pull(skb, padlen + 1))
635 goto dump_it;
636 skb_pull(skb, padlen);
637 flags = *skb->data;
638 }
639
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700640 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /*
643 * Weed out future version DECnet
644 */
645 if (flags & DN_RT_F_VER)
646 goto dump_it;
647
648 cb->rt_flags = flags;
649
650 if (decnet_debug_level & 1)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900651 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900653 (int)flags, (dev) ? dev->name : "???", len, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 padlen);
655
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900656 if (flags & DN_RT_PKT_CNTL) {
Herbert Xu364c6ba2006-06-09 16:10:40 -0700657 if (unlikely(skb_linearize(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 goto dump_it;
659
Joe Perches06f8fe12011-07-01 09:43:03 +0000660 switch (flags & DN_RT_CNTL_MSK) {
661 case DN_RT_PKT_INIT:
662 dn_dev_init_pkt(skb);
663 break;
664 case DN_RT_PKT_VERI:
665 dn_dev_veri_pkt(skb);
666 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668
669 if (dn->parms.state != DN_DEV_S_RU)
670 goto dump_it;
671
Joe Perches06f8fe12011-07-01 09:43:03 +0000672 switch (flags & DN_RT_CNTL_MSK) {
673 case DN_RT_PKT_HELO:
674 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
675 skb, skb->dev, NULL,
676 dn_route_ptp_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Joe Perches06f8fe12011-07-01 09:43:03 +0000678 case DN_RT_PKT_L1RT:
679 case DN_RT_PKT_L2RT:
680 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
681 skb, skb->dev, NULL,
682 dn_route_discard);
683 case DN_RT_PKT_ERTH:
684 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
685 skb, skb->dev, NULL,
686 dn_neigh_router_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Joe Perches06f8fe12011-07-01 09:43:03 +0000688 case DN_RT_PKT_EEDH:
689 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
690 skb, skb->dev, NULL,
691 dn_neigh_endnode_hello);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900692 }
693 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (dn->parms.state != DN_DEV_S_RU)
695 goto dump_it;
696
697 skb_pull(skb, 1); /* Pull flags */
698
Joe Perches06f8fe12011-07-01 09:43:03 +0000699 switch (flags & DN_RT_PKT_MSK) {
700 case DN_RT_PKT_LONG:
701 return dn_route_rx_long(skb);
702 case DN_RT_PKT_SHORT:
703 return dn_route_rx_short(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707dump_it:
708 kfree_skb(skb);
709out:
710 return NET_RX_DROP;
711}
712
David S. Miller8f40b162011-07-17 13:34:11 -0700713static int dn_to_neigh_output(struct sk_buff *skb)
714{
715 struct dst_entry *dst = skb_dst(skb);
David Miller27217452011-12-02 16:52:08 +0000716 struct neighbour *n = dst_get_neighbour_noref(dst);
David S. Miller8f40b162011-07-17 13:34:11 -0700717
718 return n->output(n, skb);
719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721static int dn_output(struct sk_buff *skb)
722{
Eric Dumazetadf30902009-06-02 05:19:30 +0000723 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 struct dn_route *rt = (struct dn_route *)dst;
725 struct net_device *dev = dst->dev;
726 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 int err = -EINVAL;
729
Jesper Juhl22b6a2e2012-02-05 12:28:57 +0000730 if (dst_get_neighbour_noref(dst) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 goto error;
732
733 skb->dev = dev;
734
735 cb->src = rt->rt_saddr;
736 cb->dst = rt->rt_daddr;
737
738 /*
739 * Always set the Intra-Ethernet bit on all outgoing packets
740 * originated on this node. Only valid flag from upper layers
741 * is return-to-sender-requested. Set hop count to 0 too.
742 */
743 cb->rt_flags &= ~DN_RT_F_RQR;
744 cb->rt_flags |= DN_RT_F_IE;
745 cb->hops = 0;
746
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100747 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT, skb, NULL, dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700748 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750error:
Joe Perchese87cc472012-05-13 21:56:26 +0000751 net_dbg_ratelimited("dn_output: This should not happen\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 kfree_skb(skb);
754
755 return err;
756}
757
758static int dn_forward(struct sk_buff *skb)
759{
760 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000761 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000762 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct dn_route *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 int header_len;
765#ifdef CONFIG_NETFILTER
766 struct net_device *dev = skb->dev;
767#endif
768
769 if (skb->pkt_type != PACKET_HOST)
770 goto drop;
771
772 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000773 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700775 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 goto drop;
777
778 /*
779 * Hop count exceeded.
780 */
781 if (++cb->hops > 30)
782 goto drop;
783
Changli Gaod8d1f302010-06-10 23:31:35 -0700784 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 /*
787 * If packet goes out same interface it came in on, then set
788 * the Intra-Ethernet bit. This has no effect for short
789 * packets, so we don't need to test for them here.
790 */
791 cb->rt_flags &= ~DN_RT_F_IE;
792 if (rt->rt_flags & RTCF_DOREDIRECT)
793 cb->rt_flags |= DN_RT_F_IE;
794
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100795 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD, skb, dev, skb->dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700796 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798drop:
799 kfree_skb(skb);
800 return NET_RX_DROP;
801}
802
803/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * Used to catch bugs. This should never normally get
805 * called.
806 */
807static int dn_rt_bug(struct sk_buff *skb)
808{
Joe Perchese87cc472012-05-13 21:56:26 +0000809 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Joe Perchese87cc472012-05-13 21:56:26 +0000811 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
812 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 kfree_skb(skb);
815
Florian Westphal0e8635a2009-06-20 00:53:25 +0000816 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
David S. Miller0dbaee32010-12-13 12:52:14 -0800819static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
820{
821 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
822}
823
Steffen Klassertebb762f2011-11-23 02:12:51 +0000824static unsigned int dn_dst_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -0800825{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000826 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
827
828 return mtu ? : dst->dev->mtu;
David S. Millerd33e4552010-12-14 13:01:14 -0800829}
830
David S. Millerd3aaeb32011-07-18 00:40:17 -0700831static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst, const void *daddr)
832{
833 return __neigh_lookup_errno(&dn_neigh_table, daddr, dst->dev);
834}
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
837{
838 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700839 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800840 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 if (fi) {
844 if (DN_FIB_RES_GW(*res) &&
845 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
846 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800847 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849 rt->rt_type = res->type;
850
David Miller27217452011-12-02 16:52:08 +0000851 if (dev != NULL && dst_get_neighbour_noref(&rt->dst) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
853 if (IS_ERR(n))
854 return PTR_ERR(n);
David S. Miller69cce1d2011-07-17 23:09:49 -0700855 dst_set_neighbour(&rt->dst, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857
David S. Millerd33e4552010-12-14 13:01:14 -0800858 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800859 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800860 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
861 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800862 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800863 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800864 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return 0;
867}
868
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800869static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800871 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 int match = 16;
873 while(tmp) {
874 tmp >>= 1;
875 match--;
876 }
877 return match;
878}
879
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800880static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800882 __le16 saddr = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000883 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct dn_ifaddr *ifa;
885 int best_match = 0;
886 int ret;
887
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000888 rcu_read_lock();
889 dn_db = rcu_dereference(dev->dn_ptr);
890 for (ifa = rcu_dereference(dn_db->ifa_list);
891 ifa != NULL;
892 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (ifa->ifa_scope > scope)
894 continue;
895 if (!daddr) {
896 saddr = ifa->ifa_local;
897 break;
898 }
899 ret = dn_match_addr(daddr, ifa->ifa_local);
900 if (ret > best_match)
901 saddr = ifa->ifa_local;
902 if (best_match == 0)
903 saddr = ifa->ifa_local;
904 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000905 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 return saddr;
908}
909
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800910static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
912 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
913}
914
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800915static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800917 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
919}
920
David S. Millerbef55ae2011-03-12 17:17:10 -0500921static int dn_route_output_slow(struct dst_entry **pprt, const struct flowidn *oldflp, int try_hard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
David S. Millerbef55ae2011-03-12 17:17:10 -0500923 struct flowidn fld = {
924 .daddr = oldflp->daddr,
925 .saddr = oldflp->saddr,
926 .flowidn_scope = RT_SCOPE_UNIVERSE,
927 .flowidn_mark = oldflp->flowidn_mark,
928 .flowidn_iif = init_net.loopback_dev->ifindex,
929 .flowidn_oif = oldflp->flowidn_oif,
David S. Miller1d28f422011-03-12 00:29:39 -0500930 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700932 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +0000934 unsigned int hash;
935 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
937 int err;
938 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800939 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (decnet_debug_level & 16)
942 printk(KERN_DEBUG
943 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
David S. Millerbef55ae2011-03-12 17:17:10 -0500944 " iif=%d oif=%d\n", le16_to_cpu(oldflp->daddr),
945 le16_to_cpu(oldflp->saddr),
946 oldflp->flowidn_mark, init_net.loopback_dev->ifindex,
947 oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* If we have an output interface, verify its a DECnet device */
David S. Millerbef55ae2011-03-12 17:17:10 -0500950 if (oldflp->flowidn_oif) {
951 dev_out = dev_get_by_index(&init_net, oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 err = -ENODEV;
953 if (dev_out && dev_out->dn_ptr == NULL) {
954 dev_put(dev_out);
955 dev_out = NULL;
956 }
957 if (dev_out == NULL)
958 goto out;
959 }
960
961 /* If we have a source address, verify that its a local address */
David S. Millerbef55ae2011-03-12 17:17:10 -0500962 if (oldflp->saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 err = -EADDRNOTAVAIL;
964
965 if (dev_out) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500966 if (dn_dev_islocal(dev_out, oldflp->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 goto source_ok;
968 dev_put(dev_out);
969 goto out;
970 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800971 rcu_read_lock();
972 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700973 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 continue;
David S. Millerbef55ae2011-03-12 17:17:10 -0500975 if (!dn_dev_islocal(dev, oldflp->saddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700976 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700977 if ((dev->flags & IFF_LOOPBACK) &&
David S. Millerbef55ae2011-03-12 17:17:10 -0500978 oldflp->daddr &&
979 !dn_dev_islocal(dev, oldflp->daddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700980 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700981
982 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -0700983 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800985 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (dev_out == NULL)
987 goto out;
988 dev_hold(dev_out);
989source_ok:
990 ;
991 }
992
993 /* No destination? Assume its local */
David S. Millerbef55ae2011-03-12 17:17:10 -0500994 if (!fld.daddr) {
995 fld.daddr = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 err = -EADDRNOTAVAIL;
998 if (dev_out)
999 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001000 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001002 if (!fld.daddr) {
1003 fld.daddr =
1004 fld.saddr = dnet_select_source(dev_out, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 RT_SCOPE_HOST);
David S. Millerbef55ae2011-03-12 17:17:10 -05001006 if (!fld.daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 goto out;
1008 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001009 fld.flowidn_oif = init_net.loopback_dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 res.type = RTN_LOCAL;
1011 goto make_route;
1012 }
1013
1014 if (decnet_debug_level & 16)
1015 printk(KERN_DEBUG
1016 "dn_route_output_slow: initial checks complete."
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001017 " dst=%o4x src=%04x oif=%d try_hard=%d\n",
David S. Millerbef55ae2011-03-12 17:17:10 -05001018 le16_to_cpu(fld.daddr), le16_to_cpu(fld.saddr),
1019 fld.flowidn_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /*
1022 * N.B. If the kernel is compiled without router support then
1023 * dn_fib_lookup() will evaluate to non-zero so this if () block
1024 * will always be executed.
1025 */
1026 err = -ESRCH;
David S. Millerbef55ae2011-03-12 17:17:10 -05001027 if (try_hard || (err = dn_fib_lookup(&fld, &res)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 struct dn_dev *dn_db;
1029 if (err != -ESRCH)
1030 goto out;
1031 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001032 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 * routing in endnodes which is described in the DECnet routing
1034 * docs
1035 *
1036 * If we are not trying hard, look in neighbour cache.
1037 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001038 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 * here
1040 */
1041 if (!try_hard) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001042 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (neigh) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001044 if ((oldflp->flowidn_oif &&
1045 (neigh->dev->ifindex != oldflp->flowidn_oif)) ||
1046 (oldflp->saddr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 (!dn_dev_islocal(neigh->dev,
David S. Millerbef55ae2011-03-12 17:17:10 -05001048 oldflp->saddr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 neigh_release(neigh);
1050 neigh = NULL;
1051 } else {
1052 if (dev_out)
1053 dev_put(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001054 if (dn_dev_islocal(neigh->dev, fld.daddr)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001055 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 res.type = RTN_LOCAL;
1057 } else {
1058 dev_out = neigh->dev;
1059 }
1060 dev_hold(dev_out);
1061 goto select_source;
1062 }
1063 }
1064 }
1065
1066 /* Not there? Perhaps its a local address */
1067 if (dev_out == NULL)
1068 dev_out = dn_dev_get_default();
1069 err = -ENODEV;
1070 if (dev_out == NULL)
1071 goto out;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001072 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /* Possible improvement - check all devices for local addr */
David S. Millerbef55ae2011-03-12 17:17:10 -05001074 if (dn_dev_islocal(dev_out, fld.daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001076 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 dev_hold(dev_out);
1078 res.type = RTN_LOCAL;
1079 goto select_source;
1080 }
1081 /* Not local either.... try sending it to the default router */
1082 neigh = neigh_clone(dn_db->router);
1083 BUG_ON(neigh && neigh->dev != dev_out);
1084
1085 /* Ok then, we assume its directly connected and move on */
1086select_source:
1087 if (neigh)
1088 gateway = ((struct dn_neigh *)neigh)->addr;
1089 if (gateway == 0)
David S. Millerbef55ae2011-03-12 17:17:10 -05001090 gateway = fld.daddr;
1091 if (fld.saddr == 0) {
1092 fld.saddr = dnet_select_source(dev_out, gateway,
1093 res.type == RTN_LOCAL ?
1094 RT_SCOPE_HOST :
1095 RT_SCOPE_LINK);
1096 if (fld.saddr == 0 && res.type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 goto e_addr;
1098 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001099 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 goto make_route;
1101 }
1102 free_res = 1;
1103
1104 if (res.type == RTN_NAT)
1105 goto e_inval;
1106
1107 if (res.type == RTN_LOCAL) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001108 if (!fld.saddr)
1109 fld.saddr = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (dev_out)
1111 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001112 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001114 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (res.fi)
1116 dn_fib_info_put(res.fi);
1117 res.fi = NULL;
1118 goto make_route;
1119 }
1120
David S. Millerbef55ae2011-03-12 17:17:10 -05001121 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1122 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001124 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 * We could add some logic to deal with default routes here and
1126 * get rid of some of the special casing above.
1127 */
1128
David S. Millerbef55ae2011-03-12 17:17:10 -05001129 if (!fld.saddr)
1130 fld.saddr = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (dev_out)
1133 dev_put(dev_out);
1134 dev_out = DN_FIB_RES_DEV(res);
1135 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001136 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 gateway = DN_FIB_RES_GW(res);
1138
1139make_route:
1140 if (dev_out->flags & IFF_LOOPBACK)
1141 flags |= RTCF_LOCAL;
1142
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001143 rt = dst_alloc(&dn_dst_ops, dev_out, 1, 0, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (rt == NULL)
1145 goto e_nobufs;
1146
David S. Millercf911662011-04-28 14:31:47 -07001147 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001148 rt->fld.saddr = oldflp->saddr;
1149 rt->fld.daddr = oldflp->daddr;
1150 rt->fld.flowidn_oif = oldflp->flowidn_oif;
1151 rt->fld.flowidn_iif = 0;
1152 rt->fld.flowidn_mark = oldflp->flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
David S. Millerbef55ae2011-03-12 17:17:10 -05001154 rt->rt_saddr = fld.saddr;
1155 rt->rt_daddr = fld.daddr;
1156 rt->rt_gateway = gateway ? gateway : fld.daddr;
1157 rt->rt_local_src = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
David S. Millerbef55ae2011-03-12 17:17:10 -05001159 rt->rt_dst_map = fld.daddr;
1160 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
David S. Miller69cce1d2011-07-17 23:09:49 -07001162 dst_set_neighbour(&rt->dst, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 neigh = NULL;
1164
Changli Gaod8d1f302010-06-10 23:31:35 -07001165 rt->dst.lastuse = jiffies;
1166 rt->dst.output = dn_output;
1167 rt->dst.input = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 rt->rt_flags = flags;
1169 if (flags & RTCF_LOCAL)
Changli Gaod8d1f302010-06-10 23:31:35 -07001170 rt->dst.input = dn_nsp_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 err = dn_rt_set_next_hop(rt, &res);
1173 if (err)
1174 goto e_neighbour;
1175
David S. Millerbef55ae2011-03-12 17:17:10 -05001176 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1178
1179done:
1180 if (neigh)
1181 neigh_release(neigh);
1182 if (free_res)
1183 dn_fib_res_put(&res);
1184 if (dev_out)
1185 dev_put(dev_out);
1186out:
1187 return err;
1188
1189e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001190 err = -EADDRNOTAVAIL;
1191 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192e_inval:
1193 err = -EINVAL;
1194 goto done;
1195e_nobufs:
1196 err = -ENOBUFS;
1197 goto done;
1198e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001199 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 goto e_nobufs;
1201}
1202
1203
1204/*
1205 * N.B. The flags may be moved into the flowi at some future stage.
1206 */
David S. Millerbef55ae2011-03-12 17:17:10 -05001207static int __dn_route_output_key(struct dst_entry **pprt, const struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Eric Dumazet95c96172012-04-15 05:58:06 +00001209 unsigned int hash = dn_hash(flp->saddr, flp->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 struct dn_route *rt = NULL;
1211
1212 if (!(flags & MSG_TRYHARD)) {
1213 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001214 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001215 rt = rcu_dereference_bh(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001216 if ((flp->daddr == rt->fld.daddr) &&
1217 (flp->saddr == rt->fld.saddr) &&
1218 (flp->flowidn_mark == rt->fld.flowidn_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001219 dn_is_output_route(rt) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001220 (rt->fld.flowidn_oif == flp->flowidn_oif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001221 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001223 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return 0;
1225 }
1226 }
1227 rcu_read_unlock_bh();
1228 }
1229
1230 return dn_route_output_slow(pprt, flp, flags);
1231}
1232
David S. Millerbef55ae2011-03-12 17:17:10 -05001233static int dn_route_output_key(struct dst_entry **pprt, struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
1235 int err;
1236
1237 err = __dn_route_output_key(pprt, flp, flags);
David S. Millerbef55ae2011-03-12 17:17:10 -05001238 if (err == 0 && flp->flowidn_proto) {
1239 *pprt = xfrm_lookup(&init_net, *pprt,
1240 flowidn_to_flowi(flp), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001241 if (IS_ERR(*pprt)) {
1242 err = PTR_ERR(*pprt);
1243 *pprt = NULL;
1244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246 return err;
1247}
1248
David S. Millerbef55ae2011-03-12 17:17:10 -05001249int dn_route_output_sock(struct dst_entry **pprt, struct flowidn *fl, struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 int err;
1252
1253 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Millerbef55ae2011-03-12 17:17:10 -05001254 if (err == 0 && fl->flowidn_proto) {
David S. Miller80c0bc92011-03-01 14:36:37 -08001255 if (!(flags & MSG_DONTWAIT))
David S. Millerbef55ae2011-03-12 17:17:10 -05001256 fl->flowidn_flags |= FLOWI_FLAG_CAN_SLEEP;
1257 *pprt = xfrm_lookup(&init_net, *pprt,
1258 flowidn_to_flowi(fl), sk, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001259 if (IS_ERR(*pprt)) {
1260 err = PTR_ERR(*pprt);
1261 *pprt = NULL;
1262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264 return err;
1265}
1266
1267static int dn_route_input_slow(struct sk_buff *skb)
1268{
1269 struct dn_route *rt = NULL;
1270 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1271 struct net_device *in_dev = skb->dev;
1272 struct net_device *out_dev = NULL;
1273 struct dn_dev *dn_db;
1274 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +00001275 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001277 __le16 gateway = 0;
1278 __le16 local_src = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001279 struct flowidn fld = {
1280 .daddr = cb->dst,
1281 .saddr = cb->src,
1282 .flowidn_scope = RT_SCOPE_UNIVERSE,
1283 .flowidn_mark = skb->mark,
1284 .flowidn_iif = skb->dev->ifindex,
David S. Miller1d28f422011-03-12 00:29:39 -05001285 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1287 int err = -EINVAL;
1288 int free_res = 0;
1289
1290 dev_hold(in_dev);
1291
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001292 if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 goto out;
1294
1295 /* Zero source addresses are not allowed */
David S. Millerbef55ae2011-03-12 17:17:10 -05001296 if (fld.saddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 goto out;
1298
1299 /*
1300 * In this case we've just received a packet from a source
1301 * outside ourselves pretending to come from us. We don't
1302 * allow it any further to prevent routing loops, spoofing and
1303 * other nasties. Loopback packets already have the dst attached
1304 * so this only affects packets which have originated elsewhere.
1305 */
1306 err = -ENOTUNIQ;
1307 if (dn_dev_islocal(in_dev, cb->src))
1308 goto out;
1309
David S. Millerbef55ae2011-03-12 17:17:10 -05001310 err = dn_fib_lookup(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (err) {
1312 if (err != -ESRCH)
1313 goto out;
1314 /*
1315 * Is the destination us ?
1316 */
1317 if (!dn_dev_islocal(in_dev, cb->dst))
1318 goto e_inval;
1319
1320 res.type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 } else {
David S. Millerbef55ae2011-03-12 17:17:10 -05001322 __le16 src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 free_res = 1;
1324
1325 out_dev = DN_FIB_RES_DEV(res);
1326 if (out_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00001327 net_crit_ratelimited("Bug in dn_route_input_slow() No output device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 goto e_inval;
1329 }
1330 dev_hold(out_dev);
1331
1332 if (res.r)
David S. Millerbef55ae2011-03-12 17:17:10 -05001333 src_map = fld.saddr; /* no NAT support for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 gateway = DN_FIB_RES_GW(res);
1336 if (res.type == RTN_NAT) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001337 fld.daddr = dn_fib_rules_map_destination(fld.daddr, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 dn_fib_res_put(&res);
1339 free_res = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001340 if (dn_fib_lookup(&fld, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 goto e_inval;
1342 free_res = 1;
1343 if (res.type != RTN_UNICAST)
1344 goto e_inval;
1345 flags |= RTCF_DNAT;
David S. Millerbef55ae2011-03-12 17:17:10 -05001346 gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001348 fld.saddr = src_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 }
1350
1351 switch(res.type) {
1352 case RTN_UNICAST:
1353 /*
1354 * Forwarding check here, we only check for forwarding
1355 * being turned off, if you want to only forward intra
1356 * area, its up to you to set the routing tables up
1357 * correctly.
1358 */
1359 if (dn_db->parms.forwarding == 0)
1360 goto e_inval;
1361
David S. Millerbef55ae2011-03-12 17:17:10 -05001362 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1363 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001365 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1367 * flag as a hint to set the intra-ethernet bit when
1368 * forwarding. If we've got NAT in operation, we don't do
1369 * this optimisation.
1370 */
1371 if (out_dev == in_dev && !(flags & RTCF_NAT))
1372 flags |= RTCF_DOREDIRECT;
1373
1374 local_src = DN_FIB_RES_PREFSRC(res);
1375
1376 case RTN_BLACKHOLE:
1377 case RTN_UNREACHABLE:
1378 break;
1379 case RTN_LOCAL:
1380 flags |= RTCF_LOCAL;
David S. Millerbef55ae2011-03-12 17:17:10 -05001381 fld.saddr = cb->dst;
1382 fld.daddr = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /* Routing tables gave us a gateway */
1385 if (gateway)
1386 goto make_route;
1387
1388 /* Packet was intra-ethernet, so we know its on-link */
Steven Whitehouse3a31b9d2006-10-18 20:45:22 -07001389 if (cb->rt_flags & DN_RT_F_IE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 gateway = cb->src;
1391 flags |= RTCF_DIRECTSRC;
1392 goto make_route;
1393 }
1394
1395 /* Use the default router if there is one */
1396 neigh = neigh_clone(dn_db->router);
1397 if (neigh) {
1398 gateway = ((struct dn_neigh *)neigh)->addr;
1399 goto make_route;
1400 }
1401
1402 /* Close eyes and pray */
1403 gateway = cb->src;
1404 flags |= RTCF_DIRECTSRC;
1405 goto make_route;
1406 default:
1407 goto e_inval;
1408 }
1409
1410make_route:
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001411 rt = dst_alloc(&dn_dst_ops, out_dev, 0, 0, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (rt == NULL)
1413 goto e_nobufs;
1414
David S. Millercf911662011-04-28 14:31:47 -07001415 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001416 rt->rt_saddr = fld.saddr;
1417 rt->rt_daddr = fld.daddr;
1418 rt->rt_gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (gateway)
1420 rt->rt_gateway = gateway;
1421 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1422
David S. Millerbef55ae2011-03-12 17:17:10 -05001423 rt->rt_dst_map = fld.daddr;
1424 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
David S. Millerbef55ae2011-03-12 17:17:10 -05001426 rt->fld.saddr = cb->src;
1427 rt->fld.daddr = cb->dst;
1428 rt->fld.flowidn_oif = 0;
1429 rt->fld.flowidn_iif = in_dev->ifindex;
1430 rt->fld.flowidn_mark = fld.flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
David S. Miller69cce1d2011-07-17 23:09:49 -07001432 dst_set_neighbour(&rt->dst, neigh);
Changli Gaod8d1f302010-06-10 23:31:35 -07001433 rt->dst.lastuse = jiffies;
1434 rt->dst.output = dn_rt_bug;
Joe Perches06f8fe12011-07-01 09:43:03 +00001435 switch (res.type) {
1436 case RTN_UNICAST:
1437 rt->dst.input = dn_forward;
1438 break;
1439 case RTN_LOCAL:
1440 rt->dst.output = dn_output;
1441 rt->dst.input = dn_nsp_rx;
1442 rt->dst.dev = in_dev;
1443 flags |= RTCF_LOCAL;
1444 break;
1445 default:
1446 case RTN_UNREACHABLE:
1447 case RTN_BLACKHOLE:
1448 rt->dst.input = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450 rt->rt_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 err = dn_rt_set_next_hop(rt, &res);
1453 if (err)
1454 goto e_neighbour;
1455
David S. Millerbef55ae2011-03-12 17:17:10 -05001456 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Eric Dumazetadf30902009-06-02 05:19:30 +00001457 dn_insert_route(rt, hash, &rt);
Changli Gaod8d1f302010-06-10 23:31:35 -07001458 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460done:
1461 if (neigh)
1462 neigh_release(neigh);
1463 if (free_res)
1464 dn_fib_res_put(&res);
1465 dev_put(in_dev);
1466 if (out_dev)
1467 dev_put(out_dev);
1468out:
1469 return err;
1470
1471e_inval:
1472 err = -EINVAL;
1473 goto done;
1474
1475e_nobufs:
1476 err = -ENOBUFS;
1477 goto done;
1478
1479e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001480 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 goto done;
1482}
1483
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001484static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
1486 struct dn_route *rt;
1487 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazet95c96172012-04-15 05:58:06 +00001488 unsigned int hash = dn_hash(cb->src, cb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Eric Dumazetadf30902009-06-02 05:19:30 +00001490 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return 0;
1492
1493 rcu_read_lock();
1494 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
Changli Gaod8d1f302010-06-10 23:31:35 -07001495 rt = rcu_dereference(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001496 if ((rt->fld.saddr == cb->src) &&
1497 (rt->fld.daddr == cb->dst) &&
1498 (rt->fld.flowidn_oif == 0) &&
1499 (rt->fld.flowidn_mark == skb->mark) &&
1500 (rt->fld.flowidn_iif == cb->iif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001501 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001503 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return 0;
1505 }
1506 }
1507 rcu_read_unlock();
1508
1509 return dn_route_input_slow(skb);
1510}
1511
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001512static int dn_rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1513 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Eric Dumazetadf30902009-06-02 05:19:30 +00001515 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 struct rtmsg *r;
1517 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001518 unsigned char *b = skb_tail_pointer(skb);
Thomas Grafe3703b32006-11-27 09:27:07 -08001519 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
David S. Miller737100e2012-06-26 21:46:19 -07001521 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*r), flags);
1522 if (!nlh)
1523 goto out_nlmsg_trim;
1524 r = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 r->rtm_family = AF_DECnet;
1526 r->rtm_dst_len = 16;
1527 r->rtm_src_len = 0;
1528 r->rtm_tos = 0;
1529 r->rtm_table = RT_TABLE_MAIN;
Patrick McHardy9e762a42006-08-10 23:09:48 -07001530 RTA_PUT_U32(skb, RTA_TABLE, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 r->rtm_type = rt->rt_type;
1532 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1533 r->rtm_scope = RT_SCOPE_UNIVERSE;
1534 r->rtm_protocol = RTPROT_UNSPEC;
1535 if (rt->rt_flags & RTCF_NOTIFY)
1536 r->rtm_flags |= RTM_F_NOTIFY;
1537 RTA_PUT(skb, RTA_DST, 2, &rt->rt_daddr);
David S. Millerbef55ae2011-03-12 17:17:10 -05001538 if (rt->fld.saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 r->rtm_src_len = 16;
David S. Millerbef55ae2011-03-12 17:17:10 -05001540 RTA_PUT(skb, RTA_SRC, 2, &rt->fld.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001542 if (rt->dst.dev)
1543 RTA_PUT(skb, RTA_OIF, sizeof(int), &rt->dst.dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 /*
1545 * Note to self - change this if input routes reverse direction when
1546 * they deal only with inputs and not with replies like they do
1547 * currently.
1548 */
1549 RTA_PUT(skb, RTA_PREFSRC, 2, &rt->rt_local_src);
1550 if (rt->rt_daddr != rt->rt_gateway)
1551 RTA_PUT(skb, RTA_GATEWAY, 2, &rt->rt_gateway);
David S. Millerdefb3512010-12-08 21:16:57 -08001552 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 goto rtattr_failure;
Changli Gaod8d1f302010-06-10 23:31:35 -07001554 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
1555 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, 0, 0, expires,
1556 rt->dst.error) < 0)
Thomas Grafe3703b32006-11-27 09:27:07 -08001557 goto rtattr_failure;
David S. Millerc7537962010-11-11 17:07:48 -08001558 if (dn_is_input_route(rt))
David S. Millerbef55ae2011-03-12 17:17:10 -05001559 RTA_PUT(skb, RTA_IIF, sizeof(int), &rt->fld.flowidn_iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001561 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return skb->len;
1563
David S. Miller737100e2012-06-26 21:46:19 -07001564out_nlmsg_trim:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001566 nlmsg_trim(skb, b);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001567 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
1570/*
1571 * This is called by both endnodes and routers now.
1572 */
Thomas Graffa34ddd2007-03-22 11:57:46 -07001573static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001575 struct net *net = sock_net(in_skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 struct rtattr **rta = arg;
David S. Miller737100e2012-06-26 21:46:19 -07001577 struct rtmsg *rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 struct dn_route *rt = NULL;
1579 struct dn_skb_cb *cb;
1580 int err;
1581 struct sk_buff *skb;
David S. Millerbef55ae2011-03-12 17:17:10 -05001582 struct flowidn fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001584 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001585 return -EINVAL;
1586
David S. Millerbef55ae2011-03-12 17:17:10 -05001587 memset(&fld, 0, sizeof(fld));
1588 fld.flowidn_proto = DNPROTO_NSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1591 if (skb == NULL)
1592 return -ENOBUFS;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001593 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 cb = DN_SKB_CB(skb);
1595
1596 if (rta[RTA_SRC-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001597 memcpy(&fld.saddr, RTA_DATA(rta[RTA_SRC-1]), 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (rta[RTA_DST-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001599 memcpy(&fld.daddr, RTA_DATA(rta[RTA_DST-1]), 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (rta[RTA_IIF-1])
David S. Millerbef55ae2011-03-12 17:17:10 -05001601 memcpy(&fld.flowidn_iif, RTA_DATA(rta[RTA_IIF-1]), sizeof(int));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
David S. Millerbef55ae2011-03-12 17:17:10 -05001603 if (fld.flowidn_iif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct net_device *dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001605 if ((dev = dev_get_by_index(&init_net, fld.flowidn_iif)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 kfree_skb(skb);
1607 return -ENODEV;
1608 }
1609 if (!dev->dn_ptr) {
1610 dev_put(dev);
1611 kfree_skb(skb);
1612 return -ENODEV;
1613 }
YOSHIFUJI Hideakib98999d2007-12-12 03:51:49 +09001614 skb->protocol = htons(ETH_P_DNA_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 skb->dev = dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001616 cb->src = fld.saddr;
1617 cb->dst = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 local_bh_disable();
1619 err = dn_route_input(skb);
1620 local_bh_enable();
1621 memset(cb, 0, sizeof(struct dn_skb_cb));
Eric Dumazetadf30902009-06-02 05:19:30 +00001622 rt = (struct dn_route *)skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001623 if (!err && -rt->dst.error)
1624 err = rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 } else {
1626 int oif = 0;
1627 if (rta[RTA_OIF - 1])
1628 memcpy(&oif, RTA_DATA(rta[RTA_OIF - 1]), sizeof(int));
David S. Millerbef55ae2011-03-12 17:17:10 -05001629 fld.flowidn_oif = oif;
1630 err = dn_route_output_key((struct dst_entry **)&rt, &fld, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
1632
1633 if (skb->dev)
1634 dev_put(skb->dev);
1635 skb->dev = NULL;
1636 if (err)
1637 goto out_free;
Changli Gaod8d1f302010-06-10 23:31:35 -07001638 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (rtm->rtm_flags & RTM_F_NOTIFY)
1640 rt->rt_flags |= RTCF_NOTIFY;
1641
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001642 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 -07001643
1644 if (err == 0)
1645 goto out_free;
1646 if (err < 0) {
1647 err = -EMSGSIZE;
1648 goto out_free;
1649 }
1650
Denis V. Lunev97c53ca2007-11-19 22:26:51 -08001651 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653out_free:
1654 kfree_skb(skb);
1655 return err;
1656}
1657
1658/*
1659 * For routers, this is called from dn_fib_dump, but for endnodes its
1660 * called directly from the rtnetlink dispatch table.
1661 */
1662int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1663{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001664 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 struct dn_route *rt;
1666 int h, s_h;
1667 int idx, s_idx;
1668
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001669 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001670 return 0;
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (NLMSG_PAYLOAD(cb->nlh, 0) < sizeof(struct rtmsg))
1673 return -EINVAL;
David S. Miller737100e2012-06-26 21:46:19 -07001674 if (!(((struct rtmsg *)nlmsg_data(cb->nlh))->rtm_flags&RTM_F_CLONED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return 0;
1676
1677 s_h = cb->args[0];
1678 s_idx = idx = cb->args[1];
1679 for(h = 0; h <= dn_rt_hash_mask; h++) {
1680 if (h < s_h)
1681 continue;
1682 if (h > s_h)
1683 s_idx = 0;
1684 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001685 for(rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001687 rt = rcu_dereference_bh(rt->dst.dn_next), idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (idx < s_idx)
1689 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001690 skb_dst_set(skb, dst_clone(&rt->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).pid,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001692 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001693 1, NLM_F_MULTI) <= 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001694 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 rcu_read_unlock_bh();
1696 goto done;
1697 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001698 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
1700 rcu_read_unlock_bh();
1701 }
1702
1703done:
1704 cb->args[0] = h;
1705 cb->args[1] = idx;
1706 return skb->len;
1707}
1708
1709#ifdef CONFIG_PROC_FS
1710struct dn_rt_cache_iter_state {
1711 int bucket;
1712};
1713
1714static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1715{
1716 struct dn_route *rt = NULL;
1717 struct dn_rt_cache_iter_state *s = seq->private;
1718
1719 for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
1720 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001721 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (rt)
1723 break;
1724 rcu_read_unlock_bh();
1725 }
Paul E. McKenneya898def2010-02-22 17:04:49 -08001726 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727}
1728
1729static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1730{
Eric Dumazet0d89d792008-01-10 22:35:21 -08001731 struct dn_rt_cache_iter_state *s = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001733 rt = rcu_dereference_bh(rt->dst.dn_next);
1734 while (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 rcu_read_unlock_bh();
1736 if (--s->bucket < 0)
1737 break;
1738 rcu_read_lock_bh();
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001739 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001741 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742}
1743
1744static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1745{
1746 struct dn_route *rt = dn_rt_cache_get_first(seq);
1747
1748 if (rt) {
1749 while(*pos && (rt = dn_rt_cache_get_next(seq, rt)))
1750 --*pos;
1751 }
1752 return *pos ? NULL : rt;
1753}
1754
1755static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1756{
1757 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1758 ++*pos;
1759 return rt;
1760}
1761
1762static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1763{
1764 if (v)
1765 rcu_read_unlock_bh();
1766}
1767
1768static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1769{
1770 struct dn_route *rt = v;
1771 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1772
1773 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07001774 rt->dst.dev ? rt->dst.dev->name : "*",
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001775 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1776 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
Changli Gaod8d1f302010-06-10 23:31:35 -07001777 atomic_read(&rt->dst.__refcnt),
1778 rt->dst.__use,
1779 (int) dst_metric(&rt->dst, RTAX_RTT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 return 0;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001781}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001783static const struct seq_operations dn_rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 .start = dn_rt_cache_seq_start,
1785 .next = dn_rt_cache_seq_next,
1786 .stop = dn_rt_cache_seq_stop,
1787 .show = dn_rt_cache_seq_show,
1788};
1789
1790static int dn_rt_cache_seq_open(struct inode *inode, struct file *file)
1791{
Pavel Emelyanov31164082007-10-10 02:30:23 -07001792 return seq_open_private(file, &dn_rt_cache_seq_ops,
1793 sizeof(struct dn_rt_cache_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
Arjan van de Ven9a321442007-02-12 00:55:35 -08001796static const struct file_operations dn_rt_cache_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 .owner = THIS_MODULE,
1798 .open = dn_rt_cache_seq_open,
1799 .read = seq_read,
1800 .llseek = seq_lseek,
1801 .release = seq_release_private,
1802};
1803
1804#endif /* CONFIG_PROC_FS */
1805
1806void __init dn_route_init(void)
1807{
1808 int i, goal, order;
1809
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001810 dn_dst_ops.kmem_cachep =
1811 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001812 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001813 dst_entries_init(&dn_dst_ops);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001814 setup_timer(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1816 add_timer(&dn_route_timer);
1817
Jan Beulich44813742009-09-21 17:03:05 -07001818 goal = totalram_pages >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 for(order = 0; (1UL << order) < goal; order++)
1821 /* NOTHING */;
1822
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001823 /*
1824 * Only want 1024 entries max, since the table is very, very unlikely
1825 * to be larger than that.
1826 */
1827 while(order && ((((1UL << order) * PAGE_SIZE) /
1828 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1829 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001831 do {
1832 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1833 sizeof(struct dn_rt_hash_bucket);
1834 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1835 dn_rt_hash_mask--;
1836 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1837 __get_free_pages(GFP_ATOMIC, order);
1838 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001841 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001843 printk(KERN_INFO
1844 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1845 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1847
1848 dn_rt_hash_mask--;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001849 for(i = 0; i <= dn_rt_hash_mask; i++) {
1850 spin_lock_init(&dn_rt_hash_table[i].lock);
1851 dn_rt_hash_table[i].chain = NULL;
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001854 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001856 proc_net_fops_create(&init_net, "decnet_cache", S_IRUGO, &dn_rt_cache_seq_fops);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001857
1858#ifdef CONFIG_DECNET_ROUTER
Greg Rosec7ac8672011-06-10 01:27:09 +00001859 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
1860 dn_fib_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001861#else
1862 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
Greg Rosec7ac8672011-06-10 01:27:09 +00001863 dn_cache_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001864#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
1867void __exit dn_route_cleanup(void)
1868{
1869 del_timer(&dn_route_timer);
1870 dn_run_flush(0);
1871
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001872 proc_net_remove(&init_net, "decnet_cache");
Eric Dumazetfc66f952010-10-08 06:37:34 +00001873 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875