blob: b1dc096d22f8c83e771b1df68d7815661ac51bae [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 *);
David S. Millerfccd7d52012-07-02 22:22:18 -0700117static void dn_dst_ifdown(struct dst_entry *, struct net_device *dev, int how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static struct dst_entry *dn_dst_negative_advice(struct dst_entry *);
119static void dn_dst_link_failure(struct sk_buff *);
David S. Miller6700c272012-07-17 03:29:28 -0700120static void dn_dst_update_pmtu(struct dst_entry *dst, struct sock *sk,
121 struct sk_buff *skb , u32 mtu);
122static void dn_dst_redirect(struct dst_entry *dst, struct sock *sk,
123 struct sk_buff *skb);
David S. Millerf894cbf2012-07-02 21:52:24 -0700124static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
125 struct sk_buff *skb,
126 const void *daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static int dn_route_input(struct sk_buff *);
128static void dn_run_flush(unsigned long dummy);
129
130static struct dn_rt_hash_bucket *dn_rt_hash_table;
Eric Dumazet95c96172012-04-15 05:58:06 +0000131static unsigned int dn_rt_hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static struct timer_list dn_route_timer;
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700134static DEFINE_TIMER(dn_rt_flush_timer, dn_run_flush, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135int decnet_dst_gc_interval = 2;
136
137static struct dst_ops dn_dst_ops = {
138 .family = PF_DECnet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .gc_thresh = 128,
140 .gc = dn_dst_gc,
141 .check = dn_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800142 .default_advmss = dn_dst_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000143 .mtu = dn_dst_mtu,
David S. Miller62fa8a82011-01-26 20:51:05 -0800144 .cow_metrics = dst_cow_metrics_generic,
145 .destroy = dn_dst_destroy,
David S. Millerfccd7d52012-07-02 22:22:18 -0700146 .ifdown = dn_dst_ifdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .negative_advice = dn_dst_negative_advice,
148 .link_failure = dn_dst_link_failure,
149 .update_pmtu = dn_dst_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700150 .redirect = dn_dst_redirect,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700151 .neigh_lookup = dn_dst_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
David S. Miller62fa8a82011-01-26 20:51:05 -0800154static void dn_dst_destroy(struct dst_entry *dst)
155{
David S. Millerfccd7d52012-07-02 22:22:18 -0700156 struct dn_route *rt = (struct dn_route *) dst;
157
158 if (rt->n)
159 neigh_release(rt->n);
David S. Miller62fa8a82011-01-26 20:51:05 -0800160 dst_destroy_metrics_generic(dst);
161}
162
David S. Millerfccd7d52012-07-02 22:22:18 -0700163static void dn_dst_ifdown(struct dst_entry *dst, struct net_device *dev, int how)
164{
165 if (how) {
166 struct dn_route *rt = (struct dn_route *) dst;
167 struct neighbour *n = rt->n;
168
169 if (n && n->dev == dev) {
170 n->dev = dev_net(dev)->loopback_dev;
171 dev_hold(n->dev);
172 dev_put(dev);
173 }
174 }
175}
176
Eric Dumazet95c96172012-04-15 05:58:06 +0000177static __inline__ unsigned int dn_hash(__le16 src, __le16 dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800179 __u16 tmp = (__u16 __force)(src ^ dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 tmp ^= (tmp >> 3);
181 tmp ^= (tmp >> 5);
182 tmp ^= (tmp >> 10);
Eric Dumazet95c96172012-04-15 05:58:06 +0000183 return dn_rt_hash_mask & (unsigned int)tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186static inline void dnrt_free(struct dn_route *rt)
187{
Changli Gaod8d1f302010-06-10 23:31:35 -0700188 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191static inline void dnrt_drop(struct dn_route *rt)
192{
Changli Gaod8d1f302010-06-10 23:31:35 -0700193 dst_release(&rt->dst);
194 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197static void dn_dst_check_expire(unsigned long dummy)
198{
199 int i;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000200 struct dn_route *rt;
201 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 unsigned long now = jiffies;
203 unsigned long expire = 120 * HZ;
204
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000205 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 rtp = &dn_rt_hash_table[i].chain;
207
208 spin_lock(&dn_rt_hash_table[i].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000209 while ((rt = rcu_dereference_protected(*rtp,
210 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700211 if (atomic_read(&rt->dst.__refcnt) ||
212 (now - rt->dst.lastuse) < expire) {
213 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 continue;
215 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700216 *rtp = rt->dst.dn_next;
217 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 dnrt_free(rt);
219 }
220 spin_unlock(&dn_rt_hash_table[i].lock);
221
222 if ((jiffies - now) > 0)
223 break;
224 }
225
226 mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ);
227}
228
Daniel Lezcano569d3642008-01-18 03:56:57 -0800229static int dn_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000231 struct dn_route *rt;
232 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int i;
234 unsigned long now = jiffies;
235 unsigned long expire = 10 * HZ;
236
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000237 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 spin_lock_bh(&dn_rt_hash_table[i].lock);
240 rtp = &dn_rt_hash_table[i].chain;
241
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000242 while ((rt = rcu_dereference_protected(*rtp,
243 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700244 if (atomic_read(&rt->dst.__refcnt) ||
245 (now - rt->dst.lastuse) < expire) {
246 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 continue;
248 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700249 *rtp = rt->dst.dn_next;
250 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 dnrt_drop(rt);
252 break;
253 }
254 spin_unlock_bh(&dn_rt_hash_table[i].lock);
255 }
256
257 return 0;
258}
259
260/*
261 * The decnet standards don't impose a particular minimum mtu, what they
262 * do insist on is that the routing layer accepts a datagram of at least
263 * 230 bytes long. Here we have to subtract the routing header length from
264 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
265 * assume the worst and use a long header size.
266 *
267 * We update both the mtu and the advertised mss (i.e. the segment size we
268 * advertise to the other end).
269 */
David S. Miller6700c272012-07-17 03:29:28 -0700270static void dn_dst_update_pmtu(struct dst_entry *dst, struct sock *sk,
271 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
David S. Millerfccd7d52012-07-02 22:22:18 -0700273 struct dn_route *rt = (struct dn_route *) dst;
274 struct neighbour *n = rt->n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 u32 min_mtu = 230;
David S. Miller69cce1d2011-07-17 23:09:49 -0700276 struct dn_dev *dn;
277
278 dn = n ? rcu_dereference_raw(n->dev->dn_ptr) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (dn && dn->use_long == 0)
281 min_mtu -= 6;
282 else
283 min_mtu -= 21;
284
Satoru SATOH5ffc02a2008-05-04 22:14:42 -0700285 if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!(dst_metric_locked(dst, RTAX_MTU))) {
David S. Millerdefb3512010-12-08 21:16:57 -0800287 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 dst_set_expires(dst, dn_rt_mtu_expires);
289 }
290 if (!(dst_metric_locked(dst, RTAX_ADVMSS))) {
291 u32 mss = mtu - DN_MAX_NSP_DATA_HEADER;
David S. Miller0dbaee32010-12-13 12:52:14 -0800292 u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS);
293 if (!existing_mss || existing_mss > mss)
David S. Millerdefb3512010-12-08 21:16:57 -0800294 dst_metric_set(dst, RTAX_ADVMSS, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296 }
297}
298
David S. Miller6700c272012-07-17 03:29:28 -0700299static void dn_dst_redirect(struct dst_entry *dst, struct sock *sk,
300 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700301{
302}
303
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900304/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * When a route has been marked obsolete. (e.g. routing cache flush)
306 */
307static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie)
308{
309 return NULL;
310}
311
312static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst)
313{
314 dst_release(dst);
315 return NULL;
316}
317
318static void dn_dst_link_failure(struct sk_buff *skb)
319{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
David S. Millerbef55ae2011-03-12 17:17:10 -0500322static inline int compare_keys(struct flowidn *fl1, struct flowidn *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
David S. Millerbef55ae2011-03-12 17:17:10 -0500324 return ((fl1->daddr ^ fl2->daddr) |
325 (fl1->saddr ^ fl2->saddr) |
326 (fl1->flowidn_mark ^ fl2->flowidn_mark) |
327 (fl1->flowidn_scope ^ fl2->flowidn_scope) |
328 (fl1->flowidn_oif ^ fl2->flowidn_oif) |
329 (fl1->flowidn_iif ^ fl2->flowidn_iif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Eric Dumazet95c96172012-04-15 05:58:06 +0000332static int dn_insert_route(struct dn_route *rt, unsigned int hash, struct dn_route **rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000334 struct dn_route *rth;
335 struct dn_route __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 unsigned long now = jiffies;
337
338 rthp = &dn_rt_hash_table[hash].chain;
339
340 spin_lock_bh(&dn_rt_hash_table[hash].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000341 while ((rth = rcu_dereference_protected(*rthp,
342 lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500343 if (compare_keys(&rth->fld, &rt->fld)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* Put it first */
Changli Gaod8d1f302010-06-10 23:31:35 -0700345 *rthp = rth->dst.dn_next;
346 rcu_assign_pointer(rth->dst.dn_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 dn_rt_hash_table[hash].chain);
348 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
349
Changli Gaod8d1f302010-06-10 23:31:35 -0700350 dst_use(&rth->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
352
353 dnrt_drop(rt);
354 *rp = rth;
355 return 0;
356 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700357 rthp = &rth->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359
Changli Gaod8d1f302010-06-10 23:31:35 -0700360 rcu_assign_pointer(rt->dst.dn_next, dn_rt_hash_table[hash].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900362
Changli Gaod8d1f302010-06-10 23:31:35 -0700363 dst_use(&rt->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
365 *rp = rt;
366 return 0;
367}
368
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800369static void dn_run_flush(unsigned long dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 int i;
372 struct dn_route *rt, *next;
373
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000374 for (i = 0; i < dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 spin_lock_bh(&dn_rt_hash_table[i].lock);
376
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000377 if ((rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 goto nothing_to_declare;
379
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000380 for(; rt; rt = next) {
381 next = rcu_dereference_raw(rt->dst.dn_next);
382 RCU_INIT_POINTER(rt->dst.dn_next, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 dst_free((struct dst_entry *)rt);
384 }
385
386nothing_to_declare:
387 spin_unlock_bh(&dn_rt_hash_table[i].lock);
388 }
389}
390
391static DEFINE_SPINLOCK(dn_rt_flush_lock);
392
393void dn_rt_cache_flush(int delay)
394{
395 unsigned long now = jiffies;
396 int user_mode = !in_interrupt();
397
398 if (delay < 0)
399 delay = dn_rt_min_delay;
400
401 spin_lock_bh(&dn_rt_flush_lock);
402
403 if (del_timer(&dn_rt_flush_timer) && delay > 0 && dn_rt_deadline) {
404 long tmo = (long)(dn_rt_deadline - now);
405
406 if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay)
407 tmo = 0;
408
409 if (delay > tmo)
410 delay = tmo;
411 }
412
413 if (delay <= 0) {
414 spin_unlock_bh(&dn_rt_flush_lock);
415 dn_run_flush(0);
416 return;
417 }
418
419 if (dn_rt_deadline == 0)
420 dn_rt_deadline = now + dn_rt_max_delay;
421
422 dn_rt_flush_timer.expires = now + delay;
423 add_timer(&dn_rt_flush_timer);
424 spin_unlock_bh(&dn_rt_flush_lock);
425}
426
427/**
428 * dn_return_short - Return a short packet to its sender
429 * @skb: The packet to return
430 *
431 */
432static int dn_return_short(struct sk_buff *skb)
433{
434 struct dn_skb_cb *cb;
435 unsigned char *ptr;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800436 __le16 *src;
437 __le16 *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /* Add back headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700440 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
443 return NET_RX_DROP;
444
445 cb = DN_SKB_CB(skb);
446 /* Skip packet length and point to flags */
447 ptr = skb->data + 2;
448 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
449
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800450 dst = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800452 src = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 ptr += 2;
454 *ptr = 0; /* Zero hop count */
455
Ilpo Järvinena0bffff2009-03-21 13:36:17 -0700456 swap(*src, *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 skb->pkt_type = PACKET_OUTGOING;
459 dn_rt_finish_output(skb, NULL, NULL);
460 return NET_RX_SUCCESS;
461}
462
463/**
464 * dn_return_long - Return a long packet to its sender
465 * @skb: The long format packet to return
466 *
467 */
468static int dn_return_long(struct sk_buff *skb)
469{
470 struct dn_skb_cb *cb;
471 unsigned char *ptr;
472 unsigned char *src_addr, *dst_addr;
473 unsigned char tmp[ETH_ALEN];
474
475 /* Add back all headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700476 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
479 return NET_RX_DROP;
480
481 cb = DN_SKB_CB(skb);
482 /* Ignore packet length and point to flags */
483 ptr = skb->data + 2;
484
485 /* Skip padding */
486 if (*ptr & DN_RT_F_PF) {
487 char padlen = (*ptr & ~DN_RT_F_PF);
488 ptr += padlen;
489 }
490
491 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
492 ptr += 2;
493 dst_addr = ptr;
494 ptr += 8;
495 src_addr = ptr;
496 ptr += 6;
497 *ptr = 0; /* Zero hop count */
498
499 /* Swap source and destination */
500 memcpy(tmp, src_addr, ETH_ALEN);
501 memcpy(src_addr, dst_addr, ETH_ALEN);
502 memcpy(dst_addr, tmp, ETH_ALEN);
503
504 skb->pkt_type = PACKET_OUTGOING;
505 dn_rt_finish_output(skb, dst_addr, src_addr);
506 return NET_RX_SUCCESS;
507}
508
509/**
510 * dn_route_rx_packet - Try and find a route for an incoming packet
511 * @skb: The packet to find a route for
512 *
513 * Returns: result of input function if route is found, error code otherwise
514 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500515static int dn_route_rx_packet(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000517 struct dn_skb_cb *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 int err;
519
520 if ((err = dn_route_input(skb)) == 0)
521 return dst_input(skb);
522
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000523 cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (decnet_debug_level & 4) {
525 char *devname = skb->dev ? skb->dev->name : "???";
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 printk(KERN_DEBUG
528 "DECnet: dn_route_rx_packet: rt_flags=0x%02x dev=%s len=%d src=0x%04hx dst=0x%04hx err=%d type=%d\n",
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800529 (int)cb->rt_flags, devname, skb->len,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800530 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 err, skb->pkt_type);
532 }
533
534 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
Joe Perches06f8fe12011-07-01 09:43:03 +0000535 switch (cb->rt_flags & DN_RT_PKT_MSK) {
536 case DN_RT_PKT_SHORT:
537 return dn_return_short(skb);
538 case DN_RT_PKT_LONG:
539 return dn_return_long(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541 }
542
543 kfree_skb(skb);
544 return NET_RX_DROP;
545}
546
547static int dn_route_rx_long(struct sk_buff *skb)
548{
549 struct dn_skb_cb *cb = DN_SKB_CB(skb);
550 unsigned char *ptr = skb->data;
551
552 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
553 goto drop_it;
554
555 skb_pull(skb, 20);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300556 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900558 /* Destination info */
559 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800560 cb->dst = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900561 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
562 goto drop_it;
563 ptr += 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900566 /* Source info */
567 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800568 cb->src = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900569 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
570 goto drop_it;
571 ptr += 6;
572 /* Other junk */
573 ptr++;
574 cb->hops = *ptr++; /* Visit Count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500576 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
577 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100578 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580drop_it:
581 kfree_skb(skb);
582 return NET_RX_DROP;
583}
584
585
586
587static int dn_route_rx_short(struct sk_buff *skb)
588{
589 struct dn_skb_cb *cb = DN_SKB_CB(skb);
590 unsigned char *ptr = skb->data;
591
592 if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */
593 goto drop_it;
594
595 skb_pull(skb, 5);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300596 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800598 cb->dst = *(__le16 *)ptr;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900599 ptr += 2;
600 cb->src = *(__le16 *)ptr;
601 ptr += 2;
602 cb->hops = *ptr & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500604 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
605 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100606 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608drop_it:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900609 kfree_skb(skb);
610 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500613static int dn_route_discard(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 /*
616 * I know we drop the packet here, but thats considered success in
617 * this case
618 */
619 kfree_skb(skb);
620 return NET_RX_SUCCESS;
621}
622
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500623static int dn_route_ptp_hello(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 dn_dev_hello(skb);
626 dn_neigh_pointopoint_hello(skb);
627 return NET_RX_SUCCESS;
628}
629
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700630int 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 -0700631{
632 struct dn_skb_cb *cb;
633 unsigned char flags = 0;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800634 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000635 struct dn_dev *dn = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 unsigned char padlen = 0;
637
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700638 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700639 goto dump_it;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (dn == NULL)
642 goto dump_it;
643
644 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
645 goto out;
646
647 if (!pskb_may_pull(skb, 3))
648 goto dump_it;
649
650 skb_pull(skb, 2);
651
652 if (len > skb->len)
653 goto dump_it;
654
655 skb_trim(skb, len);
656
657 flags = *skb->data;
658
659 cb = DN_SKB_CB(skb);
660 cb->stamp = jiffies;
661 cb->iif = dev->ifindex;
662
663 /*
664 * If we have padding, remove it.
665 */
666 if (flags & DN_RT_F_PF) {
667 padlen = flags & ~DN_RT_F_PF;
668 if (!pskb_may_pull(skb, padlen + 1))
669 goto dump_it;
670 skb_pull(skb, padlen);
671 flags = *skb->data;
672 }
673
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700674 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /*
677 * Weed out future version DECnet
678 */
679 if (flags & DN_RT_F_VER)
680 goto dump_it;
681
682 cb->rt_flags = flags;
683
684 if (decnet_debug_level & 1)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900685 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900687 (int)flags, (dev) ? dev->name : "???", len, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 padlen);
689
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900690 if (flags & DN_RT_PKT_CNTL) {
Herbert Xu364c6ba2006-06-09 16:10:40 -0700691 if (unlikely(skb_linearize(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 goto dump_it;
693
Joe Perches06f8fe12011-07-01 09:43:03 +0000694 switch (flags & DN_RT_CNTL_MSK) {
695 case DN_RT_PKT_INIT:
696 dn_dev_init_pkt(skb);
697 break;
698 case DN_RT_PKT_VERI:
699 dn_dev_veri_pkt(skb);
700 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
703 if (dn->parms.state != DN_DEV_S_RU)
704 goto dump_it;
705
Joe Perches06f8fe12011-07-01 09:43:03 +0000706 switch (flags & DN_RT_CNTL_MSK) {
707 case DN_RT_PKT_HELO:
708 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500709 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000710 dn_route_ptp_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Joe Perches06f8fe12011-07-01 09:43:03 +0000712 case DN_RT_PKT_L1RT:
713 case DN_RT_PKT_L2RT:
714 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500715 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000716 dn_route_discard);
717 case DN_RT_PKT_ERTH:
718 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500719 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000720 dn_neigh_router_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Joe Perches06f8fe12011-07-01 09:43:03 +0000722 case DN_RT_PKT_EEDH:
723 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500724 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000725 dn_neigh_endnode_hello);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900726 }
727 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (dn->parms.state != DN_DEV_S_RU)
729 goto dump_it;
730
731 skb_pull(skb, 1); /* Pull flags */
732
Joe Perches06f8fe12011-07-01 09:43:03 +0000733 switch (flags & DN_RT_PKT_MSK) {
734 case DN_RT_PKT_LONG:
735 return dn_route_rx_long(skb);
736 case DN_RT_PKT_SHORT:
737 return dn_route_rx_short(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741dump_it:
742 kfree_skb(skb);
743out:
744 return NET_RX_DROP;
745}
746
Eric W. Biedermanede20592015-10-07 16:48:47 -0500747static int dn_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Eric Dumazetadf30902009-06-02 05:19:30 +0000749 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 struct dn_route *rt = (struct dn_route *)dst;
751 struct net_device *dev = dst->dev;
752 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 int err = -EINVAL;
755
David S. Millerfccd7d52012-07-02 22:22:18 -0700756 if (rt->n == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 goto error;
758
759 skb->dev = dev;
760
761 cb->src = rt->rt_saddr;
762 cb->dst = rt->rt_daddr;
763
764 /*
765 * Always set the Intra-Ethernet bit on all outgoing packets
766 * originated on this node. Only valid flag from upper layers
767 * is return-to-sender-requested. Set hop count to 0 too.
768 */
769 cb->rt_flags &= ~DN_RT_F_RQR;
770 cb->rt_flags |= DN_RT_F_IE;
771 cb->hops = 0;
772
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500773 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT,
774 &init_net, sk, skb, NULL, dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700775 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777error:
Joe Perchese87cc472012-05-13 21:56:26 +0000778 net_dbg_ratelimited("dn_output: This should not happen\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 kfree_skb(skb);
781
782 return err;
783}
784
785static int dn_forward(struct sk_buff *skb)
786{
787 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000788 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000789 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct dn_route *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 int header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct net_device *dev = skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (skb->pkt_type != PACKET_HOST)
795 goto drop;
796
797 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000798 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700800 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto drop;
802
803 /*
804 * Hop count exceeded.
805 */
806 if (++cb->hops > 30)
807 goto drop;
808
Changli Gaod8d1f302010-06-10 23:31:35 -0700809 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /*
812 * If packet goes out same interface it came in on, then set
813 * the Intra-Ethernet bit. This has no effect for short
814 * packets, so we don't need to test for them here.
815 */
816 cb->rt_flags &= ~DN_RT_F_IE;
817 if (rt->rt_flags & RTCF_DOREDIRECT)
818 cb->rt_flags |= DN_RT_F_IE;
819
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500820 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD,
821 &init_net, NULL, skb, dev, skb->dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700822 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824drop:
825 kfree_skb(skb);
826 return NET_RX_DROP;
827}
828
829/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * Used to catch bugs. This should never normally get
831 * called.
832 */
Eric W. Biedermanede20592015-10-07 16:48:47 -0500833static int dn_rt_bug_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Eric Dumazetaad88722014-04-15 13:47:15 -0400834{
835 struct dn_skb_cb *cb = DN_SKB_CB(skb);
836
837 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
838 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
839
840 kfree_skb(skb);
841
842 return NET_RX_DROP;
843}
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845static int dn_rt_bug(struct sk_buff *skb)
846{
Joe Perchese87cc472012-05-13 21:56:26 +0000847 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Joe Perchese87cc472012-05-13 21:56:26 +0000849 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
850 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 kfree_skb(skb);
853
Florian Westphal0e8635a2009-06-20 00:53:25 +0000854 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
David S. Miller0dbaee32010-12-13 12:52:14 -0800857static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
858{
859 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
860}
861
Steffen Klassertebb762f2011-11-23 02:12:51 +0000862static unsigned int dn_dst_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -0800863{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000864 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
865
866 return mtu ? : dst->dev->mtu;
David S. Millerd33e4552010-12-14 13:01:14 -0800867}
868
David S. Millerf894cbf2012-07-02 21:52:24 -0700869static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
870 struct sk_buff *skb,
871 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700872{
873 return __neigh_lookup_errno(&dn_neigh_table, daddr, dst->dev);
874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
877{
878 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700879 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800880 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 if (fi) {
884 if (DN_FIB_RES_GW(*res) &&
885 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
886 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800887 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
889 rt->rt_type = res->type;
890
David S. Millerfccd7d52012-07-02 22:22:18 -0700891 if (dev != NULL && rt->n == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
893 if (IS_ERR(n))
894 return PTR_ERR(n);
David S. Millerfccd7d52012-07-02 22:22:18 -0700895 rt->n = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
David S. Millerd33e4552010-12-14 13:01:14 -0800898 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800899 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800900 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
901 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800902 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800903 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800904 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return 0;
907}
908
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800909static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800911 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 int match = 16;
913 while(tmp) {
914 tmp >>= 1;
915 match--;
916 }
917 return match;
918}
919
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800920static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800922 __le16 saddr = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000923 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 struct dn_ifaddr *ifa;
925 int best_match = 0;
926 int ret;
927
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000928 rcu_read_lock();
929 dn_db = rcu_dereference(dev->dn_ptr);
930 for (ifa = rcu_dereference(dn_db->ifa_list);
931 ifa != NULL;
932 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (ifa->ifa_scope > scope)
934 continue;
935 if (!daddr) {
936 saddr = ifa->ifa_local;
937 break;
938 }
939 ret = dn_match_addr(daddr, ifa->ifa_local);
940 if (ret > best_match)
941 saddr = ifa->ifa_local;
942 if (best_match == 0)
943 saddr = ifa->ifa_local;
944 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000945 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 return saddr;
948}
949
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800950static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
953}
954
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800955static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800957 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
959}
960
David S. Millerbef55ae2011-03-12 17:17:10 -0500961static int dn_route_output_slow(struct dst_entry **pprt, const struct flowidn *oldflp, int try_hard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
David S. Millerbef55ae2011-03-12 17:17:10 -0500963 struct flowidn fld = {
964 .daddr = oldflp->daddr,
965 .saddr = oldflp->saddr,
966 .flowidn_scope = RT_SCOPE_UNIVERSE,
967 .flowidn_mark = oldflp->flowidn_mark,
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000968 .flowidn_iif = LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500969 .flowidn_oif = oldflp->flowidn_oif,
David S. Miller1d28f422011-03-12 00:29:39 -0500970 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700972 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +0000974 unsigned int hash;
975 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
977 int err;
978 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800979 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 if (decnet_debug_level & 16)
982 printk(KERN_DEBUG
983 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
David S. Millerbef55ae2011-03-12 17:17:10 -0500984 " iif=%d oif=%d\n", le16_to_cpu(oldflp->daddr),
985 le16_to_cpu(oldflp->saddr),
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000986 oldflp->flowidn_mark, LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500987 oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 /* If we have an output interface, verify its a DECnet device */
David S. Millerbef55ae2011-03-12 17:17:10 -0500990 if (oldflp->flowidn_oif) {
991 dev_out = dev_get_by_index(&init_net, oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 err = -ENODEV;
993 if (dev_out && dev_out->dn_ptr == NULL) {
994 dev_put(dev_out);
995 dev_out = NULL;
996 }
997 if (dev_out == NULL)
998 goto out;
999 }
1000
1001 /* If we have a source address, verify that its a local address */
David S. Millerbef55ae2011-03-12 17:17:10 -05001002 if (oldflp->saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 err = -EADDRNOTAVAIL;
1004
1005 if (dev_out) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001006 if (dn_dev_islocal(dev_out, oldflp->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 goto source_ok;
1008 dev_put(dev_out);
1009 goto out;
1010 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001011 rcu_read_lock();
1012 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001013 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 continue;
David S. Millerbef55ae2011-03-12 17:17:10 -05001015 if (!dn_dev_islocal(dev, oldflp->saddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001016 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001017 if ((dev->flags & IFF_LOOPBACK) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001018 oldflp->daddr &&
1019 !dn_dev_islocal(dev, oldflp->daddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001020 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001021
1022 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001023 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001025 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (dev_out == NULL)
1027 goto out;
1028 dev_hold(dev_out);
1029source_ok:
1030 ;
1031 }
1032
1033 /* No destination? Assume its local */
David S. Millerbef55ae2011-03-12 17:17:10 -05001034 if (!fld.daddr) {
1035 fld.daddr = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (dev_out)
1038 dev_put(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001039 err = -EINVAL;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001040 dev_out = init_net.loopback_dev;
David S. Millera36a0d42016-04-10 23:01:30 -04001041 if (!dev_out->dn_ptr)
1042 goto out;
1043 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001045 if (!fld.daddr) {
1046 fld.daddr =
1047 fld.saddr = dnet_select_source(dev_out, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 RT_SCOPE_HOST);
David S. Millerbef55ae2011-03-12 17:17:10 -05001049 if (!fld.daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 goto out;
1051 }
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001052 fld.flowidn_oif = LOOPBACK_IFINDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 res.type = RTN_LOCAL;
1054 goto make_route;
1055 }
1056
1057 if (decnet_debug_level & 16)
1058 printk(KERN_DEBUG
1059 "dn_route_output_slow: initial checks complete."
Rasmus Villemoes46b9e4b2015-02-23 12:02:51 +01001060 " dst=%04x src=%04x oif=%d try_hard=%d\n",
David S. Millerbef55ae2011-03-12 17:17:10 -05001061 le16_to_cpu(fld.daddr), le16_to_cpu(fld.saddr),
1062 fld.flowidn_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 /*
1065 * N.B. If the kernel is compiled without router support then
1066 * dn_fib_lookup() will evaluate to non-zero so this if () block
1067 * will always be executed.
1068 */
1069 err = -ESRCH;
David S. Millerbef55ae2011-03-12 17:17:10 -05001070 if (try_hard || (err = dn_fib_lookup(&fld, &res)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 struct dn_dev *dn_db;
1072 if (err != -ESRCH)
1073 goto out;
1074 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001075 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 * routing in endnodes which is described in the DECnet routing
1077 * docs
1078 *
1079 * If we are not trying hard, look in neighbour cache.
1080 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001081 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 * here
1083 */
1084 if (!try_hard) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001085 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (neigh) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001087 if ((oldflp->flowidn_oif &&
1088 (neigh->dev->ifindex != oldflp->flowidn_oif)) ||
1089 (oldflp->saddr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 (!dn_dev_islocal(neigh->dev,
David S. Millerbef55ae2011-03-12 17:17:10 -05001091 oldflp->saddr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 neigh_release(neigh);
1093 neigh = NULL;
1094 } else {
1095 if (dev_out)
1096 dev_put(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001097 if (dn_dev_islocal(neigh->dev, fld.daddr)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001098 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 res.type = RTN_LOCAL;
1100 } else {
1101 dev_out = neigh->dev;
1102 }
1103 dev_hold(dev_out);
1104 goto select_source;
1105 }
1106 }
1107 }
1108
1109 /* Not there? Perhaps its a local address */
1110 if (dev_out == NULL)
1111 dev_out = dn_dev_get_default();
1112 err = -ENODEV;
1113 if (dev_out == NULL)
1114 goto out;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001115 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
David S. Millera36a0d42016-04-10 23:01:30 -04001116 if (!dn_db)
1117 goto e_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* Possible improvement - check all devices for local addr */
David S. Millerbef55ae2011-03-12 17:17:10 -05001119 if (dn_dev_islocal(dev_out, fld.daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001121 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 dev_hold(dev_out);
1123 res.type = RTN_LOCAL;
1124 goto select_source;
1125 }
1126 /* Not local either.... try sending it to the default router */
1127 neigh = neigh_clone(dn_db->router);
1128 BUG_ON(neigh && neigh->dev != dev_out);
1129
1130 /* Ok then, we assume its directly connected and move on */
1131select_source:
1132 if (neigh)
1133 gateway = ((struct dn_neigh *)neigh)->addr;
1134 if (gateway == 0)
David S. Millerbef55ae2011-03-12 17:17:10 -05001135 gateway = fld.daddr;
1136 if (fld.saddr == 0) {
1137 fld.saddr = dnet_select_source(dev_out, gateway,
1138 res.type == RTN_LOCAL ?
1139 RT_SCOPE_HOST :
1140 RT_SCOPE_LINK);
1141 if (fld.saddr == 0 && res.type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 goto e_addr;
1143 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001144 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 goto make_route;
1146 }
1147 free_res = 1;
1148
1149 if (res.type == RTN_NAT)
1150 goto e_inval;
1151
1152 if (res.type == RTN_LOCAL) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001153 if (!fld.saddr)
1154 fld.saddr = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (dev_out)
1156 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001157 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 dev_hold(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001159 if (!dev_out->dn_ptr)
1160 goto e_inval;
David S. Millerbef55ae2011-03-12 17:17:10 -05001161 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (res.fi)
1163 dn_fib_info_put(res.fi);
1164 res.fi = NULL;
1165 goto make_route;
1166 }
1167
David S. Millerbef55ae2011-03-12 17:17:10 -05001168 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1169 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001171 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 * We could add some logic to deal with default routes here and
1173 * get rid of some of the special casing above.
1174 */
1175
David S. Millerbef55ae2011-03-12 17:17:10 -05001176 if (!fld.saddr)
1177 fld.saddr = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (dev_out)
1180 dev_put(dev_out);
1181 dev_out = DN_FIB_RES_DEV(res);
1182 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001183 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 gateway = DN_FIB_RES_GW(res);
1185
1186make_route:
1187 if (dev_out->flags & IFF_LOOPBACK)
1188 flags |= RTCF_LOCAL;
1189
David S. Millerf5b0a872012-07-19 12:31:33 -07001190 rt = dst_alloc(&dn_dst_ops, dev_out, 1, DST_OBSOLETE_NONE, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (rt == NULL)
1192 goto e_nobufs;
1193
David S. Millercf911662011-04-28 14:31:47 -07001194 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001195 rt->fld.saddr = oldflp->saddr;
1196 rt->fld.daddr = oldflp->daddr;
1197 rt->fld.flowidn_oif = oldflp->flowidn_oif;
1198 rt->fld.flowidn_iif = 0;
1199 rt->fld.flowidn_mark = oldflp->flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
David S. Millerbef55ae2011-03-12 17:17:10 -05001201 rt->rt_saddr = fld.saddr;
1202 rt->rt_daddr = fld.daddr;
1203 rt->rt_gateway = gateway ? gateway : fld.daddr;
1204 rt->rt_local_src = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
David S. Millerbef55ae2011-03-12 17:17:10 -05001206 rt->rt_dst_map = fld.daddr;
1207 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
David S. Millerfccd7d52012-07-02 22:22:18 -07001209 rt->n = neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 neigh = NULL;
1211
Changli Gaod8d1f302010-06-10 23:31:35 -07001212 rt->dst.lastuse = jiffies;
1213 rt->dst.output = dn_output;
1214 rt->dst.input = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 rt->rt_flags = flags;
1216 if (flags & RTCF_LOCAL)
Changli Gaod8d1f302010-06-10 23:31:35 -07001217 rt->dst.input = dn_nsp_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 err = dn_rt_set_next_hop(rt, &res);
1220 if (err)
1221 goto e_neighbour;
1222
David S. Millerbef55ae2011-03-12 17:17:10 -05001223 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1225
1226done:
1227 if (neigh)
1228 neigh_release(neigh);
1229 if (free_res)
1230 dn_fib_res_put(&res);
1231 if (dev_out)
1232 dev_put(dev_out);
1233out:
1234 return err;
1235
1236e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001237 err = -EADDRNOTAVAIL;
1238 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239e_inval:
1240 err = -EINVAL;
1241 goto done;
1242e_nobufs:
1243 err = -ENOBUFS;
1244 goto done;
1245e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001246 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 goto e_nobufs;
1248}
1249
1250
1251/*
1252 * N.B. The flags may be moved into the flowi at some future stage.
1253 */
David S. Millerbef55ae2011-03-12 17:17:10 -05001254static int __dn_route_output_key(struct dst_entry **pprt, const struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Eric Dumazet95c96172012-04-15 05:58:06 +00001256 unsigned int hash = dn_hash(flp->saddr, flp->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 struct dn_route *rt = NULL;
1258
1259 if (!(flags & MSG_TRYHARD)) {
1260 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001261 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001262 rt = rcu_dereference_bh(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001263 if ((flp->daddr == rt->fld.daddr) &&
1264 (flp->saddr == rt->fld.saddr) &&
1265 (flp->flowidn_mark == rt->fld.flowidn_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001266 dn_is_output_route(rt) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001267 (rt->fld.flowidn_oif == flp->flowidn_oif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001268 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001270 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return 0;
1272 }
1273 }
1274 rcu_read_unlock_bh();
1275 }
1276
1277 return dn_route_output_slow(pprt, flp, flags);
1278}
1279
David S. Millerbef55ae2011-03-12 17:17:10 -05001280static int dn_route_output_key(struct dst_entry **pprt, struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
1282 int err;
1283
1284 err = __dn_route_output_key(pprt, flp, flags);
David S. Millerbef55ae2011-03-12 17:17:10 -05001285 if (err == 0 && flp->flowidn_proto) {
1286 *pprt = xfrm_lookup(&init_net, *pprt,
1287 flowidn_to_flowi(flp), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001288 if (IS_ERR(*pprt)) {
1289 err = PTR_ERR(*pprt);
1290 *pprt = NULL;
1291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293 return err;
1294}
1295
Cong Wangcec771d2013-01-22 21:09:50 +00001296int dn_route_output_sock(struct dst_entry __rcu **pprt, struct flowidn *fl, struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
1298 int err;
1299
1300 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Millerbef55ae2011-03-12 17:17:10 -05001301 if (err == 0 && fl->flowidn_proto) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001302 *pprt = xfrm_lookup(&init_net, *pprt,
1303 flowidn_to_flowi(fl), sk, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001304 if (IS_ERR(*pprt)) {
1305 err = PTR_ERR(*pprt);
1306 *pprt = NULL;
1307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
1309 return err;
1310}
1311
1312static int dn_route_input_slow(struct sk_buff *skb)
1313{
1314 struct dn_route *rt = NULL;
1315 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1316 struct net_device *in_dev = skb->dev;
1317 struct net_device *out_dev = NULL;
1318 struct dn_dev *dn_db;
1319 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +00001320 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001322 __le16 gateway = 0;
1323 __le16 local_src = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001324 struct flowidn fld = {
1325 .daddr = cb->dst,
1326 .saddr = cb->src,
1327 .flowidn_scope = RT_SCOPE_UNIVERSE,
1328 .flowidn_mark = skb->mark,
1329 .flowidn_iif = skb->dev->ifindex,
David S. Miller1d28f422011-03-12 00:29:39 -05001330 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1332 int err = -EINVAL;
1333 int free_res = 0;
1334
1335 dev_hold(in_dev);
1336
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001337 if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 goto out;
1339
1340 /* Zero source addresses are not allowed */
David S. Millerbef55ae2011-03-12 17:17:10 -05001341 if (fld.saddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 goto out;
1343
1344 /*
1345 * In this case we've just received a packet from a source
1346 * outside ourselves pretending to come from us. We don't
1347 * allow it any further to prevent routing loops, spoofing and
1348 * other nasties. Loopback packets already have the dst attached
1349 * so this only affects packets which have originated elsewhere.
1350 */
1351 err = -ENOTUNIQ;
1352 if (dn_dev_islocal(in_dev, cb->src))
1353 goto out;
1354
David S. Millerbef55ae2011-03-12 17:17:10 -05001355 err = dn_fib_lookup(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (err) {
1357 if (err != -ESRCH)
1358 goto out;
1359 /*
1360 * Is the destination us ?
1361 */
1362 if (!dn_dev_islocal(in_dev, cb->dst))
1363 goto e_inval;
1364
1365 res.type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 } else {
David S. Millerbef55ae2011-03-12 17:17:10 -05001367 __le16 src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 free_res = 1;
1369
1370 out_dev = DN_FIB_RES_DEV(res);
1371 if (out_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00001372 net_crit_ratelimited("Bug in dn_route_input_slow() No output device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 goto e_inval;
1374 }
1375 dev_hold(out_dev);
1376
1377 if (res.r)
David S. Millerbef55ae2011-03-12 17:17:10 -05001378 src_map = fld.saddr; /* no NAT support for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 gateway = DN_FIB_RES_GW(res);
1381 if (res.type == RTN_NAT) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001382 fld.daddr = dn_fib_rules_map_destination(fld.daddr, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 dn_fib_res_put(&res);
1384 free_res = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001385 if (dn_fib_lookup(&fld, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 goto e_inval;
1387 free_res = 1;
1388 if (res.type != RTN_UNICAST)
1389 goto e_inval;
1390 flags |= RTCF_DNAT;
David S. Millerbef55ae2011-03-12 17:17:10 -05001391 gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001393 fld.saddr = src_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395
1396 switch(res.type) {
1397 case RTN_UNICAST:
1398 /*
1399 * Forwarding check here, we only check for forwarding
1400 * being turned off, if you want to only forward intra
1401 * area, its up to you to set the routing tables up
1402 * correctly.
1403 */
1404 if (dn_db->parms.forwarding == 0)
1405 goto e_inval;
1406
David S. Millerbef55ae2011-03-12 17:17:10 -05001407 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1408 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001410 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1412 * flag as a hint to set the intra-ethernet bit when
1413 * forwarding. If we've got NAT in operation, we don't do
1414 * this optimisation.
1415 */
1416 if (out_dev == in_dev && !(flags & RTCF_NAT))
1417 flags |= RTCF_DOREDIRECT;
1418
1419 local_src = DN_FIB_RES_PREFSRC(res);
1420
1421 case RTN_BLACKHOLE:
1422 case RTN_UNREACHABLE:
1423 break;
1424 case RTN_LOCAL:
1425 flags |= RTCF_LOCAL;
David S. Millerbef55ae2011-03-12 17:17:10 -05001426 fld.saddr = cb->dst;
1427 fld.daddr = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 /* Routing tables gave us a gateway */
1430 if (gateway)
1431 goto make_route;
1432
1433 /* Packet was intra-ethernet, so we know its on-link */
Steven Whitehouse3a31b9d2006-10-18 20:45:22 -07001434 if (cb->rt_flags & DN_RT_F_IE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 gateway = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 goto make_route;
1437 }
1438
1439 /* Use the default router if there is one */
1440 neigh = neigh_clone(dn_db->router);
1441 if (neigh) {
1442 gateway = ((struct dn_neigh *)neigh)->addr;
1443 goto make_route;
1444 }
1445
1446 /* Close eyes and pray */
1447 gateway = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 goto make_route;
1449 default:
1450 goto e_inval;
1451 }
1452
1453make_route:
David S. Millerf5b0a872012-07-19 12:31:33 -07001454 rt = dst_alloc(&dn_dst_ops, out_dev, 0, DST_OBSOLETE_NONE, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (rt == NULL)
1456 goto e_nobufs;
1457
David S. Millercf911662011-04-28 14:31:47 -07001458 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001459 rt->rt_saddr = fld.saddr;
1460 rt->rt_daddr = fld.daddr;
1461 rt->rt_gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 if (gateway)
1463 rt->rt_gateway = gateway;
1464 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1465
David S. Millerbef55ae2011-03-12 17:17:10 -05001466 rt->rt_dst_map = fld.daddr;
1467 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
David S. Millerbef55ae2011-03-12 17:17:10 -05001469 rt->fld.saddr = cb->src;
1470 rt->fld.daddr = cb->dst;
1471 rt->fld.flowidn_oif = 0;
1472 rt->fld.flowidn_iif = in_dev->ifindex;
1473 rt->fld.flowidn_mark = fld.flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
David S. Millerfccd7d52012-07-02 22:22:18 -07001475 rt->n = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001476 rt->dst.lastuse = jiffies;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001477 rt->dst.output = dn_rt_bug_out;
Joe Perches06f8fe12011-07-01 09:43:03 +00001478 switch (res.type) {
1479 case RTN_UNICAST:
1480 rt->dst.input = dn_forward;
1481 break;
1482 case RTN_LOCAL:
1483 rt->dst.output = dn_output;
1484 rt->dst.input = dn_nsp_rx;
1485 rt->dst.dev = in_dev;
1486 flags |= RTCF_LOCAL;
1487 break;
1488 default:
1489 case RTN_UNREACHABLE:
1490 case RTN_BLACKHOLE:
1491 rt->dst.input = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
1493 rt->rt_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 err = dn_rt_set_next_hop(rt, &res);
1496 if (err)
1497 goto e_neighbour;
1498
David S. Millerbef55ae2011-03-12 17:17:10 -05001499 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Eric Dumazetadf30902009-06-02 05:19:30 +00001500 dn_insert_route(rt, hash, &rt);
Changli Gaod8d1f302010-06-10 23:31:35 -07001501 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503done:
1504 if (neigh)
1505 neigh_release(neigh);
1506 if (free_res)
1507 dn_fib_res_put(&res);
1508 dev_put(in_dev);
1509 if (out_dev)
1510 dev_put(out_dev);
1511out:
1512 return err;
1513
1514e_inval:
1515 err = -EINVAL;
1516 goto done;
1517
1518e_nobufs:
1519 err = -ENOBUFS;
1520 goto done;
1521
1522e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001523 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 goto done;
1525}
1526
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001527static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 struct dn_route *rt;
1530 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazet95c96172012-04-15 05:58:06 +00001531 unsigned int hash = dn_hash(cb->src, cb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Eric Dumazetadf30902009-06-02 05:19:30 +00001533 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return 0;
1535
1536 rcu_read_lock();
1537 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
Changli Gaod8d1f302010-06-10 23:31:35 -07001538 rt = rcu_dereference(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001539 if ((rt->fld.saddr == cb->src) &&
1540 (rt->fld.daddr == cb->dst) &&
1541 (rt->fld.flowidn_oif == 0) &&
1542 (rt->fld.flowidn_mark == skb->mark) &&
1543 (rt->fld.flowidn_iif == cb->iif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001544 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001546 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return 0;
1548 }
1549 }
1550 rcu_read_unlock();
1551
1552 return dn_route_input_slow(skb);
1553}
1554
Eric W. Biederman15e47302012-09-07 20:12:54 +00001555static int dn_rt_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001556 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Eric Dumazetadf30902009-06-02 05:19:30 +00001558 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 struct rtmsg *r;
1560 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08001561 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Eric W. Biederman15e47302012-09-07 20:12:54 +00001563 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*r), flags);
David S. Miller737100e2012-06-26 21:46:19 -07001564 if (!nlh)
Thomas Graf6b609782012-06-26 23:36:15 +00001565 return -EMSGSIZE;
1566
David S. Miller737100e2012-06-26 21:46:19 -07001567 r = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 r->rtm_family = AF_DECnet;
1569 r->rtm_dst_len = 16;
1570 r->rtm_src_len = 0;
1571 r->rtm_tos = 0;
1572 r->rtm_table = RT_TABLE_MAIN;
1573 r->rtm_type = rt->rt_type;
1574 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1575 r->rtm_scope = RT_SCOPE_UNIVERSE;
1576 r->rtm_protocol = RTPROT_UNSPEC;
Thomas Graf6b609782012-06-26 23:36:15 +00001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (rt->rt_flags & RTCF_NOTIFY)
1579 r->rtm_flags |= RTM_F_NOTIFY;
Thomas Graf6b609782012-06-26 23:36:15 +00001580
1581 if (nla_put_u32(skb, RTA_TABLE, RT_TABLE_MAIN) < 0 ||
1582 nla_put_le16(skb, RTA_DST, rt->rt_daddr) < 0)
1583 goto errout;
1584
David S. Millerbef55ae2011-03-12 17:17:10 -05001585 if (rt->fld.saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 r->rtm_src_len = 16;
Thomas Graf6b609782012-06-26 23:36:15 +00001587 if (nla_put_le16(skb, RTA_SRC, rt->fld.saddr) < 0)
1588 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
Thomas Graf6b609782012-06-26 23:36:15 +00001590 if (rt->dst.dev &&
1591 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex) < 0)
1592 goto errout;
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /*
1595 * Note to self - change this if input routes reverse direction when
1596 * they deal only with inputs and not with replies like they do
1597 * currently.
1598 */
Thomas Graf6b609782012-06-26 23:36:15 +00001599 if (nla_put_le16(skb, RTA_PREFSRC, rt->rt_local_src) < 0)
1600 goto errout;
1601
1602 if (rt->rt_daddr != rt->rt_gateway &&
1603 nla_put_le16(skb, RTA_GATEWAY, rt->rt_gateway) < 0)
1604 goto errout;
1605
David S. Millerdefb3512010-12-08 21:16:57 -08001606 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001607 goto errout;
1608
Changli Gaod8d1f302010-06-10 23:31:35 -07001609 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
David S. Miller87a50692012-07-10 05:06:14 -07001610 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires,
Changli Gaod8d1f302010-06-10 23:31:35 -07001611 rt->dst.error) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001612 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Thomas Graf6b609782012-06-26 23:36:15 +00001614 if (dn_is_input_route(rt) &&
1615 nla_put_u32(skb, RTA_IIF, rt->fld.flowidn_iif) < 0)
1616 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Johannes Berg053c0952015-01-16 22:09:00 +01001618 nlmsg_end(skb, nlh);
1619 return 0;
Thomas Graf6b609782012-06-26 23:36:15 +00001620
1621errout:
1622 nlmsg_cancel(skb, nlh);
1623 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
1625
Thomas Graf2fa70df2013-03-22 16:50:29 +00001626const struct nla_policy rtm_dn_policy[RTA_MAX + 1] = {
1627 [RTA_DST] = { .type = NLA_U16 },
1628 [RTA_SRC] = { .type = NLA_U16 },
1629 [RTA_IIF] = { .type = NLA_U32 },
1630 [RTA_OIF] = { .type = NLA_U32 },
1631 [RTA_GATEWAY] = { .type = NLA_U16 },
1632 [RTA_PRIORITY] = { .type = NLA_U32 },
1633 [RTA_PREFSRC] = { .type = NLA_U16 },
1634 [RTA_METRICS] = { .type = NLA_NESTED },
1635 [RTA_MULTIPATH] = { .type = NLA_NESTED },
1636 [RTA_TABLE] = { .type = NLA_U32 },
1637 [RTA_MARK] = { .type = NLA_U32 },
1638};
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640/*
1641 * This is called by both endnodes and routers now.
1642 */
Thomas Graf661d2962013-03-21 07:45:29 +00001643static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001645 struct net *net = sock_net(in_skb->sk);
David S. Miller737100e2012-06-26 21:46:19 -07001646 struct rtmsg *rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 struct dn_route *rt = NULL;
1648 struct dn_skb_cb *cb;
1649 int err;
1650 struct sk_buff *skb;
David S. Millerbef55ae2011-03-12 17:17:10 -05001651 struct flowidn fld;
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001652 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001654 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001655 return -EINVAL;
1656
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001657 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_dn_policy);
1658 if (err < 0)
1659 return err;
1660
David S. Millerbef55ae2011-03-12 17:17:10 -05001661 memset(&fld, 0, sizeof(fld));
1662 fld.flowidn_proto = DNPROTO_NSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Thomas Graf6b609782012-06-26 23:36:15 +00001664 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (skb == NULL)
1666 return -ENOBUFS;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001667 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 cb = DN_SKB_CB(skb);
1669
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001670 if (tb[RTA_SRC])
1671 fld.saddr = nla_get_le16(tb[RTA_SRC]);
1672
1673 if (tb[RTA_DST])
1674 fld.daddr = nla_get_le16(tb[RTA_DST]);
1675
1676 if (tb[RTA_IIF])
1677 fld.flowidn_iif = nla_get_u32(tb[RTA_IIF]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
David S. Millerbef55ae2011-03-12 17:17:10 -05001679 if (fld.flowidn_iif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 struct net_device *dev;
Ying Xued4c5fba2014-01-15 10:23:40 +08001681 dev = __dev_get_by_index(&init_net, fld.flowidn_iif);
1682 if (!dev || !dev->dn_ptr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 kfree_skb(skb);
1684 return -ENODEV;
1685 }
YOSHIFUJI Hideakib98999d2007-12-12 03:51:49 +09001686 skb->protocol = htons(ETH_P_DNA_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 skb->dev = dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001688 cb->src = fld.saddr;
1689 cb->dst = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 local_bh_disable();
1691 err = dn_route_input(skb);
1692 local_bh_enable();
1693 memset(cb, 0, sizeof(struct dn_skb_cb));
Eric Dumazetadf30902009-06-02 05:19:30 +00001694 rt = (struct dn_route *)skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001695 if (!err && -rt->dst.error)
1696 err = rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 } else {
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001698 if (tb[RTA_OIF])
1699 fld.flowidn_oif = nla_get_u32(tb[RTA_OIF]);
1700
David S. Millerbef55ae2011-03-12 17:17:10 -05001701 err = dn_route_output_key((struct dst_entry **)&rt, &fld, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 skb->dev = NULL;
1705 if (err)
1706 goto out_free;
Changli Gaod8d1f302010-06-10 23:31:35 -07001707 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (rtm->rtm_flags & RTM_F_NOTIFY)
1709 rt->rt_flags |= RTCF_NOTIFY;
1710
Eric W. Biederman15e47302012-09-07 20:12:54 +00001711 err = dn_rt_fill_info(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq, RTM_NEWROUTE, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (err < 0) {
1713 err = -EMSGSIZE;
1714 goto out_free;
1715 }
1716
Eric W. Biederman15e47302012-09-07 20:12:54 +00001717 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719out_free:
1720 kfree_skb(skb);
1721 return err;
1722}
1723
1724/*
1725 * For routers, this is called from dn_fib_dump, but for endnodes its
1726 * called directly from the rtnetlink dispatch table.
1727 */
1728int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1729{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001730 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct dn_route *rt;
1732 int h, s_h;
1733 int idx, s_idx;
Thomas Graf6b609782012-06-26 23:36:15 +00001734 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001736 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001737 return 0;
1738
Thomas Graf6b609782012-06-26 23:36:15 +00001739 if (nlmsg_len(cb->nlh) < sizeof(struct rtmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 return -EINVAL;
Thomas Graf6b609782012-06-26 23:36:15 +00001741
1742 rtm = nlmsg_data(cb->nlh);
1743 if (!(rtm->rtm_flags & RTM_F_CLONED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return 0;
1745
1746 s_h = cb->args[0];
1747 s_idx = idx = cb->args[1];
1748 for(h = 0; h <= dn_rt_hash_mask; h++) {
1749 if (h < s_h)
1750 continue;
1751 if (h > s_h)
1752 s_idx = 0;
1753 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001754 for(rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001756 rt = rcu_dereference_bh(rt->dst.dn_next), idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (idx < s_idx)
1758 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001759 skb_dst_set(skb, dst_clone(&rt->dst));
Eric W. Biederman15e47302012-09-07 20:12:54 +00001760 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).portid,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001761 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
David S. Miller7b46a642015-01-18 23:36:08 -05001762 1, NLM_F_MULTI) < 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001763 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 rcu_read_unlock_bh();
1765 goto done;
1766 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001767 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
1769 rcu_read_unlock_bh();
1770 }
1771
1772done:
1773 cb->args[0] = h;
1774 cb->args[1] = idx;
1775 return skb->len;
1776}
1777
1778#ifdef CONFIG_PROC_FS
1779struct dn_rt_cache_iter_state {
1780 int bucket;
1781};
1782
1783static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1784{
1785 struct dn_route *rt = NULL;
1786 struct dn_rt_cache_iter_state *s = seq->private;
1787
1788 for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
1789 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001790 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (rt)
1792 break;
1793 rcu_read_unlock_bh();
1794 }
Paul E. McKenneya898def2010-02-22 17:04:49 -08001795 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796}
1797
1798static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1799{
Eric Dumazet0d89d792008-01-10 22:35:21 -08001800 struct dn_rt_cache_iter_state *s = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001802 rt = rcu_dereference_bh(rt->dst.dn_next);
1803 while (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 rcu_read_unlock_bh();
1805 if (--s->bucket < 0)
1806 break;
1807 rcu_read_lock_bh();
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001808 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001810 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
1813static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1814{
1815 struct dn_route *rt = dn_rt_cache_get_first(seq);
1816
1817 if (rt) {
1818 while(*pos && (rt = dn_rt_cache_get_next(seq, rt)))
1819 --*pos;
1820 }
1821 return *pos ? NULL : rt;
1822}
1823
1824static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1825{
1826 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1827 ++*pos;
1828 return rt;
1829}
1830
1831static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1832{
1833 if (v)
1834 rcu_read_unlock_bh();
1835}
1836
1837static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1838{
1839 struct dn_route *rt = v;
1840 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1841
1842 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
David S. Miller794785b2012-07-10 00:52:56 -07001843 rt->dst.dev ? rt->dst.dev->name : "*",
1844 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1845 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
1846 atomic_read(&rt->dst.__refcnt),
1847 rt->dst.__use, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return 0;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001849}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001851static const struct seq_operations dn_rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 .start = dn_rt_cache_seq_start,
1853 .next = dn_rt_cache_seq_next,
1854 .stop = dn_rt_cache_seq_stop,
1855 .show = dn_rt_cache_seq_show,
1856};
1857
1858static int dn_rt_cache_seq_open(struct inode *inode, struct file *file)
1859{
Pavel Emelyanov31164082007-10-10 02:30:23 -07001860 return seq_open_private(file, &dn_rt_cache_seq_ops,
1861 sizeof(struct dn_rt_cache_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
Arjan van de Ven9a321442007-02-12 00:55:35 -08001864static const struct file_operations dn_rt_cache_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 .owner = THIS_MODULE,
1866 .open = dn_rt_cache_seq_open,
1867 .read = seq_read,
1868 .llseek = seq_lseek,
1869 .release = seq_release_private,
1870};
1871
1872#endif /* CONFIG_PROC_FS */
1873
1874void __init dn_route_init(void)
1875{
1876 int i, goal, order;
1877
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001878 dn_dst_ops.kmem_cachep =
1879 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001880 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001881 dst_entries_init(&dn_dst_ops);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001882 setup_timer(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1884 add_timer(&dn_route_timer);
1885
Jan Beulich44813742009-09-21 17:03:05 -07001886 goal = totalram_pages >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 for(order = 0; (1UL << order) < goal; order++)
1889 /* NOTHING */;
1890
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001891 /*
1892 * Only want 1024 entries max, since the table is very, very unlikely
1893 * to be larger than that.
1894 */
1895 while(order && ((((1UL << order) * PAGE_SIZE) /
1896 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1897 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001899 do {
1900 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1901 sizeof(struct dn_rt_hash_bucket);
1902 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1903 dn_rt_hash_mask--;
1904 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1905 __get_free_pages(GFP_ATOMIC, order);
1906 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001909 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001911 printk(KERN_INFO
1912 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1913 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1915
1916 dn_rt_hash_mask--;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001917 for(i = 0; i <= dn_rt_hash_mask; i++) {
1918 spin_lock_init(&dn_rt_hash_table[i].lock);
1919 dn_rt_hash_table[i].chain = NULL;
1920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001922 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Gao fengd4beaa62013-02-18 01:34:54 +00001924 proc_create("decnet_cache", S_IRUGO, init_net.proc_net,
1925 &dn_rt_cache_seq_fops);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001926
1927#ifdef CONFIG_DECNET_ROUTER
Greg Rosec7ac8672011-06-10 01:27:09 +00001928 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
1929 dn_fib_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001930#else
1931 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
Greg Rosec7ac8672011-06-10 01:27:09 +00001932 dn_cache_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001933#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934}
1935
1936void __exit dn_route_cleanup(void)
1937{
1938 del_timer(&dn_route_timer);
1939 dn_run_flush(0);
1940
Gao fengece31ff2013-02-18 01:34:56 +00001941 remove_proc_entry("decnet_cache", init_net.proc_net);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001942 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944