blob: 403593bd2b83b0d717f8062e476f8fffb50f92dc [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static void dn_dst_check_expire(unsigned long dummy)
192{
193 int i;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000194 struct dn_route *rt;
195 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 unsigned long now = jiffies;
197 unsigned long expire = 120 * HZ;
198
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000199 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 rtp = &dn_rt_hash_table[i].chain;
201
202 spin_lock(&dn_rt_hash_table[i].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000203 while ((rt = rcu_dereference_protected(*rtp,
204 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700205 if (atomic_read(&rt->dst.__refcnt) ||
206 (now - rt->dst.lastuse) < expire) {
207 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 continue;
209 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700210 *rtp = rt->dst.dn_next;
211 rt->dst.dn_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 dnrt_free(rt);
213 }
214 spin_unlock(&dn_rt_hash_table[i].lock);
215
216 if ((jiffies - now) > 0)
217 break;
218 }
219
220 mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ);
221}
222
Daniel Lezcano569d3642008-01-18 03:56:57 -0800223static int dn_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000225 struct dn_route *rt;
226 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int i;
228 unsigned long now = jiffies;
229 unsigned long expire = 10 * HZ;
230
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000231 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 spin_lock_bh(&dn_rt_hash_table[i].lock);
234 rtp = &dn_rt_hash_table[i].chain;
235
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000236 while ((rt = rcu_dereference_protected(*rtp,
237 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700238 if (atomic_read(&rt->dst.__refcnt) ||
239 (now - rt->dst.lastuse) < expire) {
240 rtp = &rt->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 continue;
242 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700243 *rtp = rt->dst.dn_next;
244 rt->dst.dn_next = NULL;
Wei Wangf1a0e7d2017-06-16 10:46:37 -0700245 dnrt_free(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 }
248 spin_unlock_bh(&dn_rt_hash_table[i].lock);
249 }
250
251 return 0;
252}
253
254/*
255 * The decnet standards don't impose a particular minimum mtu, what they
256 * do insist on is that the routing layer accepts a datagram of at least
257 * 230 bytes long. Here we have to subtract the routing header length from
258 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
259 * assume the worst and use a long header size.
260 *
261 * We update both the mtu and the advertised mss (i.e. the segment size we
262 * advertise to the other end).
263 */
David S. Miller6700c272012-07-17 03:29:28 -0700264static void dn_dst_update_pmtu(struct dst_entry *dst, struct sock *sk,
265 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
David S. Millerfccd7d52012-07-02 22:22:18 -0700267 struct dn_route *rt = (struct dn_route *) dst;
268 struct neighbour *n = rt->n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 u32 min_mtu = 230;
David S. Miller69cce1d2011-07-17 23:09:49 -0700270 struct dn_dev *dn;
271
272 dn = n ? rcu_dereference_raw(n->dev->dn_ptr) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 if (dn && dn->use_long == 0)
275 min_mtu -= 6;
276 else
277 min_mtu -= 21;
278
Satoru SATOH5ffc02a2008-05-04 22:14:42 -0700279 if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (!(dst_metric_locked(dst, RTAX_MTU))) {
David S. Millerdefb3512010-12-08 21:16:57 -0800281 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 dst_set_expires(dst, dn_rt_mtu_expires);
283 }
284 if (!(dst_metric_locked(dst, RTAX_ADVMSS))) {
285 u32 mss = mtu - DN_MAX_NSP_DATA_HEADER;
David S. Miller0dbaee32010-12-13 12:52:14 -0800286 u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS);
287 if (!existing_mss || existing_mss > mss)
David S. Millerdefb3512010-12-08 21:16:57 -0800288 dst_metric_set(dst, RTAX_ADVMSS, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290 }
291}
292
David S. Miller6700c272012-07-17 03:29:28 -0700293static void dn_dst_redirect(struct dst_entry *dst, struct sock *sk,
294 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700295{
296}
297
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900298/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * When a route has been marked obsolete. (e.g. routing cache flush)
300 */
301static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie)
302{
303 return NULL;
304}
305
306static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst)
307{
308 dst_release(dst);
309 return NULL;
310}
311
312static void dn_dst_link_failure(struct sk_buff *skb)
313{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
David S. Millerbef55ae2011-03-12 17:17:10 -0500316static inline int compare_keys(struct flowidn *fl1, struct flowidn *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
David S. Millerbef55ae2011-03-12 17:17:10 -0500318 return ((fl1->daddr ^ fl2->daddr) |
319 (fl1->saddr ^ fl2->saddr) |
320 (fl1->flowidn_mark ^ fl2->flowidn_mark) |
321 (fl1->flowidn_scope ^ fl2->flowidn_scope) |
322 (fl1->flowidn_oif ^ fl2->flowidn_oif) |
323 (fl1->flowidn_iif ^ fl2->flowidn_iif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Eric Dumazet95c96172012-04-15 05:58:06 +0000326static int dn_insert_route(struct dn_route *rt, unsigned int hash, struct dn_route **rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000328 struct dn_route *rth;
329 struct dn_route __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 unsigned long now = jiffies;
331
332 rthp = &dn_rt_hash_table[hash].chain;
333
334 spin_lock_bh(&dn_rt_hash_table[hash].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000335 while ((rth = rcu_dereference_protected(*rthp,
336 lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500337 if (compare_keys(&rth->fld, &rt->fld)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* Put it first */
Changli Gaod8d1f302010-06-10 23:31:35 -0700339 *rthp = rth->dst.dn_next;
340 rcu_assign_pointer(rth->dst.dn_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 dn_rt_hash_table[hash].chain);
342 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
343
Changli Gaod8d1f302010-06-10 23:31:35 -0700344 dst_use(&rth->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
346
Wei Wangf1a0e7d2017-06-16 10:46:37 -0700347 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 *rp = rth;
349 return 0;
350 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700351 rthp = &rth->dst.dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
Changli Gaod8d1f302010-06-10 23:31:35 -0700354 rcu_assign_pointer(rt->dst.dn_next, dn_rt_hash_table[hash].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900356
Changli Gaod8d1f302010-06-10 23:31:35 -0700357 dst_use(&rt->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
359 *rp = rt;
360 return 0;
361}
362
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800363static void dn_run_flush(unsigned long dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 int i;
366 struct dn_route *rt, *next;
367
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000368 for (i = 0; i < dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 spin_lock_bh(&dn_rt_hash_table[i].lock);
370
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000371 if ((rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 goto nothing_to_declare;
373
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000374 for(; rt; rt = next) {
375 next = rcu_dereference_raw(rt->dst.dn_next);
376 RCU_INIT_POINTER(rt->dst.dn_next, NULL);
Wei Wangf1a0e7d2017-06-16 10:46:37 -0700377 dnrt_free(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379
380nothing_to_declare:
381 spin_unlock_bh(&dn_rt_hash_table[i].lock);
382 }
383}
384
385static DEFINE_SPINLOCK(dn_rt_flush_lock);
386
387void dn_rt_cache_flush(int delay)
388{
389 unsigned long now = jiffies;
390 int user_mode = !in_interrupt();
391
392 if (delay < 0)
393 delay = dn_rt_min_delay;
394
395 spin_lock_bh(&dn_rt_flush_lock);
396
397 if (del_timer(&dn_rt_flush_timer) && delay > 0 && dn_rt_deadline) {
398 long tmo = (long)(dn_rt_deadline - now);
399
400 if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay)
401 tmo = 0;
402
403 if (delay > tmo)
404 delay = tmo;
405 }
406
407 if (delay <= 0) {
408 spin_unlock_bh(&dn_rt_flush_lock);
409 dn_run_flush(0);
410 return;
411 }
412
413 if (dn_rt_deadline == 0)
414 dn_rt_deadline = now + dn_rt_max_delay;
415
416 dn_rt_flush_timer.expires = now + delay;
417 add_timer(&dn_rt_flush_timer);
418 spin_unlock_bh(&dn_rt_flush_lock);
419}
420
421/**
422 * dn_return_short - Return a short packet to its sender
423 * @skb: The packet to return
424 *
425 */
426static int dn_return_short(struct sk_buff *skb)
427{
428 struct dn_skb_cb *cb;
429 unsigned char *ptr;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800430 __le16 *src;
431 __le16 *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* Add back headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700434 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
437 return NET_RX_DROP;
438
439 cb = DN_SKB_CB(skb);
440 /* Skip packet length and point to flags */
441 ptr = skb->data + 2;
442 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
443
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800444 dst = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800446 src = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ptr += 2;
448 *ptr = 0; /* Zero hop count */
449
Ilpo Järvinena0bffff2009-03-21 13:36:17 -0700450 swap(*src, *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 skb->pkt_type = PACKET_OUTGOING;
453 dn_rt_finish_output(skb, NULL, NULL);
454 return NET_RX_SUCCESS;
455}
456
457/**
458 * dn_return_long - Return a long packet to its sender
459 * @skb: The long format packet to return
460 *
461 */
462static int dn_return_long(struct sk_buff *skb)
463{
464 struct dn_skb_cb *cb;
465 unsigned char *ptr;
466 unsigned char *src_addr, *dst_addr;
467 unsigned char tmp[ETH_ALEN];
468
469 /* Add back all headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700470 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
473 return NET_RX_DROP;
474
475 cb = DN_SKB_CB(skb);
476 /* Ignore packet length and point to flags */
477 ptr = skb->data + 2;
478
479 /* Skip padding */
480 if (*ptr & DN_RT_F_PF) {
481 char padlen = (*ptr & ~DN_RT_F_PF);
482 ptr += padlen;
483 }
484
485 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
486 ptr += 2;
487 dst_addr = ptr;
488 ptr += 8;
489 src_addr = ptr;
490 ptr += 6;
491 *ptr = 0; /* Zero hop count */
492
493 /* Swap source and destination */
494 memcpy(tmp, src_addr, ETH_ALEN);
495 memcpy(src_addr, dst_addr, ETH_ALEN);
496 memcpy(dst_addr, tmp, ETH_ALEN);
497
498 skb->pkt_type = PACKET_OUTGOING;
499 dn_rt_finish_output(skb, dst_addr, src_addr);
500 return NET_RX_SUCCESS;
501}
502
503/**
504 * dn_route_rx_packet - Try and find a route for an incoming packet
505 * @skb: The packet to find a route for
506 *
507 * Returns: result of input function if route is found, error code otherwise
508 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500509static int dn_route_rx_packet(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000511 struct dn_skb_cb *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 int err;
513
514 if ((err = dn_route_input(skb)) == 0)
515 return dst_input(skb);
516
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000517 cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (decnet_debug_level & 4) {
519 char *devname = skb->dev ? skb->dev->name : "???";
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 printk(KERN_DEBUG
522 "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 -0800523 (int)cb->rt_flags, devname, skb->len,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800524 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 err, skb->pkt_type);
526 }
527
528 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
Joe Perches06f8fe12011-07-01 09:43:03 +0000529 switch (cb->rt_flags & DN_RT_PKT_MSK) {
530 case DN_RT_PKT_SHORT:
531 return dn_return_short(skb);
532 case DN_RT_PKT_LONG:
533 return dn_return_long(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535 }
536
537 kfree_skb(skb);
538 return NET_RX_DROP;
539}
540
541static int dn_route_rx_long(struct sk_buff *skb)
542{
543 struct dn_skb_cb *cb = DN_SKB_CB(skb);
544 unsigned char *ptr = skb->data;
545
546 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
547 goto drop_it;
548
549 skb_pull(skb, 20);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300550 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900552 /* Destination info */
553 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800554 cb->dst = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900555 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
556 goto drop_it;
557 ptr += 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900560 /* Source info */
561 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800562 cb->src = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900563 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
564 goto drop_it;
565 ptr += 6;
566 /* Other junk */
567 ptr++;
568 cb->hops = *ptr++; /* Visit Count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500570 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
571 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100572 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574drop_it:
575 kfree_skb(skb);
576 return NET_RX_DROP;
577}
578
579
580
581static int dn_route_rx_short(struct sk_buff *skb)
582{
583 struct dn_skb_cb *cb = DN_SKB_CB(skb);
584 unsigned char *ptr = skb->data;
585
586 if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */
587 goto drop_it;
588
589 skb_pull(skb, 5);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300590 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800592 cb->dst = *(__le16 *)ptr;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900593 ptr += 2;
594 cb->src = *(__le16 *)ptr;
595 ptr += 2;
596 cb->hops = *ptr & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500598 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
599 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100600 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602drop_it:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900603 kfree_skb(skb);
604 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500607static int dn_route_discard(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 /*
610 * I know we drop the packet here, but thats considered success in
611 * this case
612 */
613 kfree_skb(skb);
614 return NET_RX_SUCCESS;
615}
616
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500617static int dn_route_ptp_hello(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 dn_dev_hello(skb);
620 dn_neigh_pointopoint_hello(skb);
621 return NET_RX_SUCCESS;
622}
623
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700624int 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 -0700625{
626 struct dn_skb_cb *cb;
627 unsigned char flags = 0;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800628 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000629 struct dn_dev *dn = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 unsigned char padlen = 0;
631
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700632 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700633 goto dump_it;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (dn == NULL)
636 goto dump_it;
637
638 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
639 goto out;
640
641 if (!pskb_may_pull(skb, 3))
642 goto dump_it;
643
644 skb_pull(skb, 2);
645
646 if (len > skb->len)
647 goto dump_it;
648
649 skb_trim(skb, len);
650
651 flags = *skb->data;
652
653 cb = DN_SKB_CB(skb);
654 cb->stamp = jiffies;
655 cb->iif = dev->ifindex;
656
657 /*
658 * If we have padding, remove it.
659 */
660 if (flags & DN_RT_F_PF) {
661 padlen = flags & ~DN_RT_F_PF;
662 if (!pskb_may_pull(skb, padlen + 1))
663 goto dump_it;
664 skb_pull(skb, padlen);
665 flags = *skb->data;
666 }
667
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700668 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 /*
671 * Weed out future version DECnet
672 */
673 if (flags & DN_RT_F_VER)
674 goto dump_it;
675
676 cb->rt_flags = flags;
677
678 if (decnet_debug_level & 1)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900679 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900681 (int)flags, (dev) ? dev->name : "???", len, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 padlen);
683
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900684 if (flags & DN_RT_PKT_CNTL) {
Herbert Xu364c6ba2006-06-09 16:10:40 -0700685 if (unlikely(skb_linearize(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 goto dump_it;
687
Joe Perches06f8fe12011-07-01 09:43:03 +0000688 switch (flags & DN_RT_CNTL_MSK) {
689 case DN_RT_PKT_INIT:
690 dn_dev_init_pkt(skb);
691 break;
692 case DN_RT_PKT_VERI:
693 dn_dev_veri_pkt(skb);
694 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
697 if (dn->parms.state != DN_DEV_S_RU)
698 goto dump_it;
699
Joe Perches06f8fe12011-07-01 09:43:03 +0000700 switch (flags & DN_RT_CNTL_MSK) {
701 case DN_RT_PKT_HELO:
702 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500703 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000704 dn_route_ptp_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Joe Perches06f8fe12011-07-01 09:43:03 +0000706 case DN_RT_PKT_L1RT:
707 case DN_RT_PKT_L2RT:
708 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
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_discard);
711 case DN_RT_PKT_ERTH:
712 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500713 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000714 dn_neigh_router_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Joe Perches06f8fe12011-07-01 09:43:03 +0000716 case DN_RT_PKT_EEDH:
717 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500718 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000719 dn_neigh_endnode_hello);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900720 }
721 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (dn->parms.state != DN_DEV_S_RU)
723 goto dump_it;
724
725 skb_pull(skb, 1); /* Pull flags */
726
Joe Perches06f8fe12011-07-01 09:43:03 +0000727 switch (flags & DN_RT_PKT_MSK) {
728 case DN_RT_PKT_LONG:
729 return dn_route_rx_long(skb);
730 case DN_RT_PKT_SHORT:
731 return dn_route_rx_short(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735dump_it:
736 kfree_skb(skb);
737out:
738 return NET_RX_DROP;
739}
740
Eric W. Biedermanede20592015-10-07 16:48:47 -0500741static int dn_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Eric Dumazetadf30902009-06-02 05:19:30 +0000743 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 struct dn_route *rt = (struct dn_route *)dst;
745 struct net_device *dev = dst->dev;
746 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 int err = -EINVAL;
749
David S. Millerfccd7d52012-07-02 22:22:18 -0700750 if (rt->n == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 goto error;
752
753 skb->dev = dev;
754
755 cb->src = rt->rt_saddr;
756 cb->dst = rt->rt_daddr;
757
758 /*
759 * Always set the Intra-Ethernet bit on all outgoing packets
760 * originated on this node. Only valid flag from upper layers
761 * is return-to-sender-requested. Set hop count to 0 too.
762 */
763 cb->rt_flags &= ~DN_RT_F_RQR;
764 cb->rt_flags |= DN_RT_F_IE;
765 cb->hops = 0;
766
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500767 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT,
768 &init_net, sk, skb, NULL, dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700769 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771error:
Joe Perchese87cc472012-05-13 21:56:26 +0000772 net_dbg_ratelimited("dn_output: This should not happen\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 kfree_skb(skb);
775
776 return err;
777}
778
779static int dn_forward(struct sk_buff *skb)
780{
781 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000782 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000783 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct dn_route *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 int header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct net_device *dev = skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 if (skb->pkt_type != PACKET_HOST)
789 goto drop;
790
791 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000792 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700794 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 goto drop;
796
797 /*
798 * Hop count exceeded.
799 */
800 if (++cb->hops > 30)
801 goto drop;
802
Changli Gaod8d1f302010-06-10 23:31:35 -0700803 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /*
806 * If packet goes out same interface it came in on, then set
807 * the Intra-Ethernet bit. This has no effect for short
808 * packets, so we don't need to test for them here.
809 */
810 cb->rt_flags &= ~DN_RT_F_IE;
811 if (rt->rt_flags & RTCF_DOREDIRECT)
812 cb->rt_flags |= DN_RT_F_IE;
813
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500814 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD,
815 &init_net, NULL, skb, dev, skb->dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700816 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818drop:
819 kfree_skb(skb);
820 return NET_RX_DROP;
821}
822
823/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 * Used to catch bugs. This should never normally get
825 * called.
826 */
Eric W. Biedermanede20592015-10-07 16:48:47 -0500827static int dn_rt_bug_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Eric Dumazetaad88722014-04-15 13:47:15 -0400828{
829 struct dn_skb_cb *cb = DN_SKB_CB(skb);
830
831 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
832 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
833
834 kfree_skb(skb);
835
836 return NET_RX_DROP;
837}
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839static int dn_rt_bug(struct sk_buff *skb)
840{
Joe Perchese87cc472012-05-13 21:56:26 +0000841 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Joe Perchese87cc472012-05-13 21:56:26 +0000843 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
844 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 kfree_skb(skb);
847
Florian Westphal0e8635a2009-06-20 00:53:25 +0000848 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
David S. Miller0dbaee32010-12-13 12:52:14 -0800851static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
852{
853 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
854}
855
Steffen Klassertebb762f2011-11-23 02:12:51 +0000856static unsigned int dn_dst_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -0800857{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000858 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
859
860 return mtu ? : dst->dev->mtu;
David S. Millerd33e4552010-12-14 13:01:14 -0800861}
862
David S. Millerf894cbf2012-07-02 21:52:24 -0700863static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
864 struct sk_buff *skb,
865 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700866{
867 return __neigh_lookup_errno(&dn_neigh_table, daddr, dst->dev);
868}
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
871{
872 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700873 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800874 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 if (fi) {
878 if (DN_FIB_RES_GW(*res) &&
879 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
880 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800881 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883 rt->rt_type = res->type;
884
David S. Millerfccd7d52012-07-02 22:22:18 -0700885 if (dev != NULL && rt->n == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
887 if (IS_ERR(n))
888 return PTR_ERR(n);
David S. Millerfccd7d52012-07-02 22:22:18 -0700889 rt->n = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
David S. Millerd33e4552010-12-14 13:01:14 -0800892 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800893 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800894 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
895 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800896 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800897 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800898 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return 0;
901}
902
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800903static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800905 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 int match = 16;
907 while(tmp) {
908 tmp >>= 1;
909 match--;
910 }
911 return match;
912}
913
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800914static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800916 __le16 saddr = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000917 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 struct dn_ifaddr *ifa;
919 int best_match = 0;
920 int ret;
921
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000922 rcu_read_lock();
923 dn_db = rcu_dereference(dev->dn_ptr);
924 for (ifa = rcu_dereference(dn_db->ifa_list);
925 ifa != NULL;
926 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (ifa->ifa_scope > scope)
928 continue;
929 if (!daddr) {
930 saddr = ifa->ifa_local;
931 break;
932 }
933 ret = dn_match_addr(daddr, ifa->ifa_local);
934 if (ret > best_match)
935 saddr = ifa->ifa_local;
936 if (best_match == 0)
937 saddr = ifa->ifa_local;
938 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000939 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 return saddr;
942}
943
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800944static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
947}
948
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800949static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800951 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
953}
954
David S. Millerbef55ae2011-03-12 17:17:10 -0500955static int dn_route_output_slow(struct dst_entry **pprt, const struct flowidn *oldflp, int try_hard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
David S. Millerbef55ae2011-03-12 17:17:10 -0500957 struct flowidn fld = {
958 .daddr = oldflp->daddr,
959 .saddr = oldflp->saddr,
960 .flowidn_scope = RT_SCOPE_UNIVERSE,
961 .flowidn_mark = oldflp->flowidn_mark,
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000962 .flowidn_iif = LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500963 .flowidn_oif = oldflp->flowidn_oif,
David S. Miller1d28f422011-03-12 00:29:39 -0500964 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700966 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +0000968 unsigned int hash;
969 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
971 int err;
972 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800973 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 if (decnet_debug_level & 16)
976 printk(KERN_DEBUG
977 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
David S. Millerbef55ae2011-03-12 17:17:10 -0500978 " iif=%d oif=%d\n", le16_to_cpu(oldflp->daddr),
979 le16_to_cpu(oldflp->saddr),
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000980 oldflp->flowidn_mark, LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500981 oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 /* If we have an output interface, verify its a DECnet device */
David S. Millerbef55ae2011-03-12 17:17:10 -0500984 if (oldflp->flowidn_oif) {
985 dev_out = dev_get_by_index(&init_net, oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 err = -ENODEV;
987 if (dev_out && dev_out->dn_ptr == NULL) {
988 dev_put(dev_out);
989 dev_out = NULL;
990 }
991 if (dev_out == NULL)
992 goto out;
993 }
994
995 /* If we have a source address, verify that its a local address */
David S. Millerbef55ae2011-03-12 17:17:10 -0500996 if (oldflp->saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 err = -EADDRNOTAVAIL;
998
999 if (dev_out) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001000 if (dn_dev_islocal(dev_out, oldflp->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 goto source_ok;
1002 dev_put(dev_out);
1003 goto out;
1004 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001005 rcu_read_lock();
1006 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001007 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 continue;
David S. Millerbef55ae2011-03-12 17:17:10 -05001009 if (!dn_dev_islocal(dev, oldflp->saddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001010 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001011 if ((dev->flags & IFF_LOOPBACK) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001012 oldflp->daddr &&
1013 !dn_dev_islocal(dev, oldflp->daddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001014 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001015
1016 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001017 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001019 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (dev_out == NULL)
1021 goto out;
1022 dev_hold(dev_out);
1023source_ok:
1024 ;
1025 }
1026
1027 /* No destination? Assume its local */
David S. Millerbef55ae2011-03-12 17:17:10 -05001028 if (!fld.daddr) {
1029 fld.daddr = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (dev_out)
1032 dev_put(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001033 err = -EINVAL;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001034 dev_out = init_net.loopback_dev;
David S. Millera36a0d42016-04-10 23:01:30 -04001035 if (!dev_out->dn_ptr)
1036 goto out;
1037 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001039 if (!fld.daddr) {
1040 fld.daddr =
1041 fld.saddr = dnet_select_source(dev_out, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 RT_SCOPE_HOST);
David S. Millerbef55ae2011-03-12 17:17:10 -05001043 if (!fld.daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 goto out;
1045 }
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001046 fld.flowidn_oif = LOOPBACK_IFINDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 res.type = RTN_LOCAL;
1048 goto make_route;
1049 }
1050
1051 if (decnet_debug_level & 16)
1052 printk(KERN_DEBUG
1053 "dn_route_output_slow: initial checks complete."
Rasmus Villemoes46b9e4b2015-02-23 12:02:51 +01001054 " dst=%04x src=%04x oif=%d try_hard=%d\n",
David S. Millerbef55ae2011-03-12 17:17:10 -05001055 le16_to_cpu(fld.daddr), le16_to_cpu(fld.saddr),
1056 fld.flowidn_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 /*
1059 * N.B. If the kernel is compiled without router support then
1060 * dn_fib_lookup() will evaluate to non-zero so this if () block
1061 * will always be executed.
1062 */
1063 err = -ESRCH;
David S. Millerbef55ae2011-03-12 17:17:10 -05001064 if (try_hard || (err = dn_fib_lookup(&fld, &res)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct dn_dev *dn_db;
1066 if (err != -ESRCH)
1067 goto out;
1068 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001069 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * routing in endnodes which is described in the DECnet routing
1071 * docs
1072 *
1073 * If we are not trying hard, look in neighbour cache.
1074 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001075 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 * here
1077 */
1078 if (!try_hard) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001079 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (neigh) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001081 if ((oldflp->flowidn_oif &&
1082 (neigh->dev->ifindex != oldflp->flowidn_oif)) ||
1083 (oldflp->saddr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 (!dn_dev_islocal(neigh->dev,
David S. Millerbef55ae2011-03-12 17:17:10 -05001085 oldflp->saddr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 neigh_release(neigh);
1087 neigh = NULL;
1088 } else {
1089 if (dev_out)
1090 dev_put(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001091 if (dn_dev_islocal(neigh->dev, fld.daddr)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001092 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 res.type = RTN_LOCAL;
1094 } else {
1095 dev_out = neigh->dev;
1096 }
1097 dev_hold(dev_out);
1098 goto select_source;
1099 }
1100 }
1101 }
1102
1103 /* Not there? Perhaps its a local address */
1104 if (dev_out == NULL)
1105 dev_out = dn_dev_get_default();
1106 err = -ENODEV;
1107 if (dev_out == NULL)
1108 goto out;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001109 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
David S. Millera36a0d42016-04-10 23:01:30 -04001110 if (!dn_db)
1111 goto e_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /* Possible improvement - check all devices for local addr */
David S. Millerbef55ae2011-03-12 17:17:10 -05001113 if (dn_dev_islocal(dev_out, fld.daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001115 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 dev_hold(dev_out);
1117 res.type = RTN_LOCAL;
1118 goto select_source;
1119 }
1120 /* Not local either.... try sending it to the default router */
1121 neigh = neigh_clone(dn_db->router);
1122 BUG_ON(neigh && neigh->dev != dev_out);
1123
1124 /* Ok then, we assume its directly connected and move on */
1125select_source:
1126 if (neigh)
1127 gateway = ((struct dn_neigh *)neigh)->addr;
1128 if (gateway == 0)
David S. Millerbef55ae2011-03-12 17:17:10 -05001129 gateway = fld.daddr;
1130 if (fld.saddr == 0) {
1131 fld.saddr = dnet_select_source(dev_out, gateway,
1132 res.type == RTN_LOCAL ?
1133 RT_SCOPE_HOST :
1134 RT_SCOPE_LINK);
1135 if (fld.saddr == 0 && res.type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 goto e_addr;
1137 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001138 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 goto make_route;
1140 }
1141 free_res = 1;
1142
1143 if (res.type == RTN_NAT)
1144 goto e_inval;
1145
1146 if (res.type == RTN_LOCAL) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001147 if (!fld.saddr)
1148 fld.saddr = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (dev_out)
1150 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001151 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 dev_hold(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001153 if (!dev_out->dn_ptr)
1154 goto e_inval;
David S. Millerbef55ae2011-03-12 17:17:10 -05001155 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (res.fi)
1157 dn_fib_info_put(res.fi);
1158 res.fi = NULL;
1159 goto make_route;
1160 }
1161
David S. Millerbef55ae2011-03-12 17:17:10 -05001162 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1163 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001165 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 * We could add some logic to deal with default routes here and
1167 * get rid of some of the special casing above.
1168 */
1169
David S. Millerbef55ae2011-03-12 17:17:10 -05001170 if (!fld.saddr)
1171 fld.saddr = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (dev_out)
1174 dev_put(dev_out);
1175 dev_out = DN_FIB_RES_DEV(res);
1176 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001177 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 gateway = DN_FIB_RES_GW(res);
1179
1180make_route:
1181 if (dev_out->flags & IFF_LOOPBACK)
1182 flags |= RTCF_LOCAL;
1183
Wei Wangf1a0e7d2017-06-16 10:46:37 -07001184 rt = dst_alloc(&dn_dst_ops, dev_out, 0, DST_OBSOLETE_NONE, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (rt == NULL)
1186 goto e_nobufs;
1187
David S. Millercf911662011-04-28 14:31:47 -07001188 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001189 rt->fld.saddr = oldflp->saddr;
1190 rt->fld.daddr = oldflp->daddr;
1191 rt->fld.flowidn_oif = oldflp->flowidn_oif;
1192 rt->fld.flowidn_iif = 0;
1193 rt->fld.flowidn_mark = oldflp->flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
David S. Millerbef55ae2011-03-12 17:17:10 -05001195 rt->rt_saddr = fld.saddr;
1196 rt->rt_daddr = fld.daddr;
1197 rt->rt_gateway = gateway ? gateway : fld.daddr;
1198 rt->rt_local_src = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
David S. Millerbef55ae2011-03-12 17:17:10 -05001200 rt->rt_dst_map = fld.daddr;
1201 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
David S. Millerfccd7d52012-07-02 22:22:18 -07001203 rt->n = neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 neigh = NULL;
1205
Changli Gaod8d1f302010-06-10 23:31:35 -07001206 rt->dst.lastuse = jiffies;
1207 rt->dst.output = dn_output;
1208 rt->dst.input = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 rt->rt_flags = flags;
1210 if (flags & RTCF_LOCAL)
Changli Gaod8d1f302010-06-10 23:31:35 -07001211 rt->dst.input = dn_nsp_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 err = dn_rt_set_next_hop(rt, &res);
1214 if (err)
1215 goto e_neighbour;
1216
David S. Millerbef55ae2011-03-12 17:17:10 -05001217 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1219
1220done:
1221 if (neigh)
1222 neigh_release(neigh);
1223 if (free_res)
1224 dn_fib_res_put(&res);
1225 if (dev_out)
1226 dev_put(dev_out);
1227out:
1228 return err;
1229
1230e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001231 err = -EADDRNOTAVAIL;
1232 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233e_inval:
1234 err = -EINVAL;
1235 goto done;
1236e_nobufs:
1237 err = -ENOBUFS;
1238 goto done;
1239e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001240 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 goto e_nobufs;
1242}
1243
1244
1245/*
1246 * N.B. The flags may be moved into the flowi at some future stage.
1247 */
David S. Millerbef55ae2011-03-12 17:17:10 -05001248static int __dn_route_output_key(struct dst_entry **pprt, const struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Eric Dumazet95c96172012-04-15 05:58:06 +00001250 unsigned int hash = dn_hash(flp->saddr, flp->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct dn_route *rt = NULL;
1252
1253 if (!(flags & MSG_TRYHARD)) {
1254 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001255 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001256 rt = rcu_dereference_bh(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001257 if ((flp->daddr == rt->fld.daddr) &&
1258 (flp->saddr == rt->fld.saddr) &&
1259 (flp->flowidn_mark == rt->fld.flowidn_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001260 dn_is_output_route(rt) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001261 (rt->fld.flowidn_oif == flp->flowidn_oif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001262 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001264 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return 0;
1266 }
1267 }
1268 rcu_read_unlock_bh();
1269 }
1270
1271 return dn_route_output_slow(pprt, flp, flags);
1272}
1273
David S. Millerbef55ae2011-03-12 17:17:10 -05001274static int dn_route_output_key(struct dst_entry **pprt, struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
1276 int err;
1277
1278 err = __dn_route_output_key(pprt, flp, flags);
David S. Millerbef55ae2011-03-12 17:17:10 -05001279 if (err == 0 && flp->flowidn_proto) {
1280 *pprt = xfrm_lookup(&init_net, *pprt,
1281 flowidn_to_flowi(flp), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001282 if (IS_ERR(*pprt)) {
1283 err = PTR_ERR(*pprt);
1284 *pprt = NULL;
1285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
1287 return err;
1288}
1289
Cong Wangcec771d2013-01-22 21:09:50 +00001290int dn_route_output_sock(struct dst_entry __rcu **pprt, struct flowidn *fl, struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 int err;
1293
1294 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Millerbef55ae2011-03-12 17:17:10 -05001295 if (err == 0 && fl->flowidn_proto) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001296 *pprt = xfrm_lookup(&init_net, *pprt,
1297 flowidn_to_flowi(fl), sk, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001298 if (IS_ERR(*pprt)) {
1299 err = PTR_ERR(*pprt);
1300 *pprt = NULL;
1301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303 return err;
1304}
1305
1306static int dn_route_input_slow(struct sk_buff *skb)
1307{
1308 struct dn_route *rt = NULL;
1309 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1310 struct net_device *in_dev = skb->dev;
1311 struct net_device *out_dev = NULL;
1312 struct dn_dev *dn_db;
1313 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +00001314 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001316 __le16 gateway = 0;
1317 __le16 local_src = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001318 struct flowidn fld = {
1319 .daddr = cb->dst,
1320 .saddr = cb->src,
1321 .flowidn_scope = RT_SCOPE_UNIVERSE,
1322 .flowidn_mark = skb->mark,
1323 .flowidn_iif = skb->dev->ifindex,
David S. Miller1d28f422011-03-12 00:29:39 -05001324 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1326 int err = -EINVAL;
1327 int free_res = 0;
1328
1329 dev_hold(in_dev);
1330
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001331 if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 goto out;
1333
1334 /* Zero source addresses are not allowed */
David S. Millerbef55ae2011-03-12 17:17:10 -05001335 if (fld.saddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 goto out;
1337
1338 /*
1339 * In this case we've just received a packet from a source
1340 * outside ourselves pretending to come from us. We don't
1341 * allow it any further to prevent routing loops, spoofing and
1342 * other nasties. Loopback packets already have the dst attached
1343 * so this only affects packets which have originated elsewhere.
1344 */
1345 err = -ENOTUNIQ;
1346 if (dn_dev_islocal(in_dev, cb->src))
1347 goto out;
1348
David S. Millerbef55ae2011-03-12 17:17:10 -05001349 err = dn_fib_lookup(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (err) {
1351 if (err != -ESRCH)
1352 goto out;
1353 /*
1354 * Is the destination us ?
1355 */
1356 if (!dn_dev_islocal(in_dev, cb->dst))
1357 goto e_inval;
1358
1359 res.type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 } else {
David S. Millerbef55ae2011-03-12 17:17:10 -05001361 __le16 src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 free_res = 1;
1363
1364 out_dev = DN_FIB_RES_DEV(res);
1365 if (out_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00001366 net_crit_ratelimited("Bug in dn_route_input_slow() No output device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 goto e_inval;
1368 }
1369 dev_hold(out_dev);
1370
1371 if (res.r)
David S. Millerbef55ae2011-03-12 17:17:10 -05001372 src_map = fld.saddr; /* no NAT support for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 gateway = DN_FIB_RES_GW(res);
1375 if (res.type == RTN_NAT) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001376 fld.daddr = dn_fib_rules_map_destination(fld.daddr, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 dn_fib_res_put(&res);
1378 free_res = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001379 if (dn_fib_lookup(&fld, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 goto e_inval;
1381 free_res = 1;
1382 if (res.type != RTN_UNICAST)
1383 goto e_inval;
1384 flags |= RTCF_DNAT;
David S. Millerbef55ae2011-03-12 17:17:10 -05001385 gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001387 fld.saddr = src_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
1390 switch(res.type) {
1391 case RTN_UNICAST:
1392 /*
1393 * Forwarding check here, we only check for forwarding
1394 * being turned off, if you want to only forward intra
1395 * area, its up to you to set the routing tables up
1396 * correctly.
1397 */
1398 if (dn_db->parms.forwarding == 0)
1399 goto e_inval;
1400
David S. Millerbef55ae2011-03-12 17:17:10 -05001401 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1402 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001404 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1406 * flag as a hint to set the intra-ethernet bit when
1407 * forwarding. If we've got NAT in operation, we don't do
1408 * this optimisation.
1409 */
1410 if (out_dev == in_dev && !(flags & RTCF_NAT))
1411 flags |= RTCF_DOREDIRECT;
1412
1413 local_src = DN_FIB_RES_PREFSRC(res);
1414
1415 case RTN_BLACKHOLE:
1416 case RTN_UNREACHABLE:
1417 break;
1418 case RTN_LOCAL:
1419 flags |= RTCF_LOCAL;
David S. Millerbef55ae2011-03-12 17:17:10 -05001420 fld.saddr = cb->dst;
1421 fld.daddr = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 /* Routing tables gave us a gateway */
1424 if (gateway)
1425 goto make_route;
1426
1427 /* Packet was intra-ethernet, so we know its on-link */
Steven Whitehouse3a31b9d2006-10-18 20:45:22 -07001428 if (cb->rt_flags & DN_RT_F_IE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 gateway = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 goto make_route;
1431 }
1432
1433 /* Use the default router if there is one */
1434 neigh = neigh_clone(dn_db->router);
1435 if (neigh) {
1436 gateway = ((struct dn_neigh *)neigh)->addr;
1437 goto make_route;
1438 }
1439
1440 /* Close eyes and pray */
1441 gateway = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto make_route;
1443 default:
1444 goto e_inval;
1445 }
1446
1447make_route:
David S. Millerf5b0a872012-07-19 12:31:33 -07001448 rt = dst_alloc(&dn_dst_ops, out_dev, 0, DST_OBSOLETE_NONE, DST_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (rt == NULL)
1450 goto e_nobufs;
1451
David S. Millercf911662011-04-28 14:31:47 -07001452 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001453 rt->rt_saddr = fld.saddr;
1454 rt->rt_daddr = fld.daddr;
1455 rt->rt_gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (gateway)
1457 rt->rt_gateway = gateway;
1458 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1459
David S. Millerbef55ae2011-03-12 17:17:10 -05001460 rt->rt_dst_map = fld.daddr;
1461 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
David S. Millerbef55ae2011-03-12 17:17:10 -05001463 rt->fld.saddr = cb->src;
1464 rt->fld.daddr = cb->dst;
1465 rt->fld.flowidn_oif = 0;
1466 rt->fld.flowidn_iif = in_dev->ifindex;
1467 rt->fld.flowidn_mark = fld.flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
David S. Millerfccd7d52012-07-02 22:22:18 -07001469 rt->n = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001470 rt->dst.lastuse = jiffies;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001471 rt->dst.output = dn_rt_bug_out;
Joe Perches06f8fe12011-07-01 09:43:03 +00001472 switch (res.type) {
1473 case RTN_UNICAST:
1474 rt->dst.input = dn_forward;
1475 break;
1476 case RTN_LOCAL:
1477 rt->dst.output = dn_output;
1478 rt->dst.input = dn_nsp_rx;
1479 rt->dst.dev = in_dev;
1480 flags |= RTCF_LOCAL;
1481 break;
1482 default:
1483 case RTN_UNREACHABLE:
1484 case RTN_BLACKHOLE:
1485 rt->dst.input = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
1487 rt->rt_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 err = dn_rt_set_next_hop(rt, &res);
1490 if (err)
1491 goto e_neighbour;
1492
David S. Millerbef55ae2011-03-12 17:17:10 -05001493 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Eric Dumazetadf30902009-06-02 05:19:30 +00001494 dn_insert_route(rt, hash, &rt);
Changli Gaod8d1f302010-06-10 23:31:35 -07001495 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497done:
1498 if (neigh)
1499 neigh_release(neigh);
1500 if (free_res)
1501 dn_fib_res_put(&res);
1502 dev_put(in_dev);
1503 if (out_dev)
1504 dev_put(out_dev);
1505out:
1506 return err;
1507
1508e_inval:
1509 err = -EINVAL;
1510 goto done;
1511
1512e_nobufs:
1513 err = -ENOBUFS;
1514 goto done;
1515
1516e_neighbour:
Changli Gaod8d1f302010-06-10 23:31:35 -07001517 dst_free(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 goto done;
1519}
1520
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001521static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
1523 struct dn_route *rt;
1524 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazet95c96172012-04-15 05:58:06 +00001525 unsigned int hash = dn_hash(cb->src, cb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Eric Dumazetadf30902009-06-02 05:19:30 +00001527 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return 0;
1529
1530 rcu_read_lock();
1531 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
Changli Gaod8d1f302010-06-10 23:31:35 -07001532 rt = rcu_dereference(rt->dst.dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001533 if ((rt->fld.saddr == cb->src) &&
1534 (rt->fld.daddr == cb->dst) &&
1535 (rt->fld.flowidn_oif == 0) &&
1536 (rt->fld.flowidn_mark == skb->mark) &&
1537 (rt->fld.flowidn_iif == cb->iif)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001538 dst_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001540 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return 0;
1542 }
1543 }
1544 rcu_read_unlock();
1545
1546 return dn_route_input_slow(skb);
1547}
1548
Eric W. Biederman15e47302012-09-07 20:12:54 +00001549static int dn_rt_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001550 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Eric Dumazetadf30902009-06-02 05:19:30 +00001552 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct rtmsg *r;
1554 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08001555 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Eric W. Biederman15e47302012-09-07 20:12:54 +00001557 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*r), flags);
David S. Miller737100e2012-06-26 21:46:19 -07001558 if (!nlh)
Thomas Graf6b609782012-06-26 23:36:15 +00001559 return -EMSGSIZE;
1560
David S. Miller737100e2012-06-26 21:46:19 -07001561 r = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 r->rtm_family = AF_DECnet;
1563 r->rtm_dst_len = 16;
1564 r->rtm_src_len = 0;
1565 r->rtm_tos = 0;
1566 r->rtm_table = RT_TABLE_MAIN;
1567 r->rtm_type = rt->rt_type;
1568 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1569 r->rtm_scope = RT_SCOPE_UNIVERSE;
1570 r->rtm_protocol = RTPROT_UNSPEC;
Thomas Graf6b609782012-06-26 23:36:15 +00001571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (rt->rt_flags & RTCF_NOTIFY)
1573 r->rtm_flags |= RTM_F_NOTIFY;
Thomas Graf6b609782012-06-26 23:36:15 +00001574
1575 if (nla_put_u32(skb, RTA_TABLE, RT_TABLE_MAIN) < 0 ||
1576 nla_put_le16(skb, RTA_DST, rt->rt_daddr) < 0)
1577 goto errout;
1578
David S. Millerbef55ae2011-03-12 17:17:10 -05001579 if (rt->fld.saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 r->rtm_src_len = 16;
Thomas Graf6b609782012-06-26 23:36:15 +00001581 if (nla_put_le16(skb, RTA_SRC, rt->fld.saddr) < 0)
1582 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
Thomas Graf6b609782012-06-26 23:36:15 +00001584 if (rt->dst.dev &&
1585 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex) < 0)
1586 goto errout;
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /*
1589 * Note to self - change this if input routes reverse direction when
1590 * they deal only with inputs and not with replies like they do
1591 * currently.
1592 */
Thomas Graf6b609782012-06-26 23:36:15 +00001593 if (nla_put_le16(skb, RTA_PREFSRC, rt->rt_local_src) < 0)
1594 goto errout;
1595
1596 if (rt->rt_daddr != rt->rt_gateway &&
1597 nla_put_le16(skb, RTA_GATEWAY, rt->rt_gateway) < 0)
1598 goto errout;
1599
David S. Millerdefb3512010-12-08 21:16:57 -08001600 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001601 goto errout;
1602
Changli Gaod8d1f302010-06-10 23:31:35 -07001603 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
David S. Miller87a50692012-07-10 05:06:14 -07001604 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires,
Changli Gaod8d1f302010-06-10 23:31:35 -07001605 rt->dst.error) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001606 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Thomas Graf6b609782012-06-26 23:36:15 +00001608 if (dn_is_input_route(rt) &&
1609 nla_put_u32(skb, RTA_IIF, rt->fld.flowidn_iif) < 0)
1610 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Johannes Berg053c0952015-01-16 22:09:00 +01001612 nlmsg_end(skb, nlh);
1613 return 0;
Thomas Graf6b609782012-06-26 23:36:15 +00001614
1615errout:
1616 nlmsg_cancel(skb, nlh);
1617 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
Thomas Graf2fa70df2013-03-22 16:50:29 +00001620const struct nla_policy rtm_dn_policy[RTA_MAX + 1] = {
1621 [RTA_DST] = { .type = NLA_U16 },
1622 [RTA_SRC] = { .type = NLA_U16 },
1623 [RTA_IIF] = { .type = NLA_U32 },
1624 [RTA_OIF] = { .type = NLA_U32 },
1625 [RTA_GATEWAY] = { .type = NLA_U16 },
1626 [RTA_PRIORITY] = { .type = NLA_U32 },
1627 [RTA_PREFSRC] = { .type = NLA_U16 },
1628 [RTA_METRICS] = { .type = NLA_NESTED },
1629 [RTA_MULTIPATH] = { .type = NLA_NESTED },
1630 [RTA_TABLE] = { .type = NLA_U32 },
1631 [RTA_MARK] = { .type = NLA_U32 },
1632};
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634/*
1635 * This is called by both endnodes and routers now.
1636 */
Thomas Graf661d2962013-03-21 07:45:29 +00001637static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001639 struct net *net = sock_net(in_skb->sk);
David S. Miller737100e2012-06-26 21:46:19 -07001640 struct rtmsg *rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 struct dn_route *rt = NULL;
1642 struct dn_skb_cb *cb;
1643 int err;
1644 struct sk_buff *skb;
David S. Millerbef55ae2011-03-12 17:17:10 -05001645 struct flowidn fld;
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001646 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001648 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001649 return -EINVAL;
1650
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001651 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_dn_policy);
1652 if (err < 0)
1653 return err;
1654
David S. Millerbef55ae2011-03-12 17:17:10 -05001655 memset(&fld, 0, sizeof(fld));
1656 fld.flowidn_proto = DNPROTO_NSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Thomas Graf6b609782012-06-26 23:36:15 +00001658 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (skb == NULL)
1660 return -ENOBUFS;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001661 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 cb = DN_SKB_CB(skb);
1663
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001664 if (tb[RTA_SRC])
1665 fld.saddr = nla_get_le16(tb[RTA_SRC]);
1666
1667 if (tb[RTA_DST])
1668 fld.daddr = nla_get_le16(tb[RTA_DST]);
1669
1670 if (tb[RTA_IIF])
1671 fld.flowidn_iif = nla_get_u32(tb[RTA_IIF]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
David S. Millerbef55ae2011-03-12 17:17:10 -05001673 if (fld.flowidn_iif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 struct net_device *dev;
Ying Xued4c5fba2014-01-15 10:23:40 +08001675 dev = __dev_get_by_index(&init_net, fld.flowidn_iif);
1676 if (!dev || !dev->dn_ptr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 kfree_skb(skb);
1678 return -ENODEV;
1679 }
YOSHIFUJI Hideakib98999d2007-12-12 03:51:49 +09001680 skb->protocol = htons(ETH_P_DNA_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 skb->dev = dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001682 cb->src = fld.saddr;
1683 cb->dst = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 local_bh_disable();
1685 err = dn_route_input(skb);
1686 local_bh_enable();
1687 memset(cb, 0, sizeof(struct dn_skb_cb));
Eric Dumazetadf30902009-06-02 05:19:30 +00001688 rt = (struct dn_route *)skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001689 if (!err && -rt->dst.error)
1690 err = rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 } else {
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001692 if (tb[RTA_OIF])
1693 fld.flowidn_oif = nla_get_u32(tb[RTA_OIF]);
1694
David S. Millerbef55ae2011-03-12 17:17:10 -05001695 err = dn_route_output_key((struct dst_entry **)&rt, &fld, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 }
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 skb->dev = NULL;
1699 if (err)
1700 goto out_free;
Changli Gaod8d1f302010-06-10 23:31:35 -07001701 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 if (rtm->rtm_flags & RTM_F_NOTIFY)
1703 rt->rt_flags |= RTCF_NOTIFY;
1704
Eric W. Biederman15e47302012-09-07 20:12:54 +00001705 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 -07001706 if (err < 0) {
1707 err = -EMSGSIZE;
1708 goto out_free;
1709 }
1710
Eric W. Biederman15e47302012-09-07 20:12:54 +00001711 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713out_free:
1714 kfree_skb(skb);
1715 return err;
1716}
1717
1718/*
1719 * For routers, this is called from dn_fib_dump, but for endnodes its
1720 * called directly from the rtnetlink dispatch table.
1721 */
1722int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1723{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001724 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 struct dn_route *rt;
1726 int h, s_h;
1727 int idx, s_idx;
Thomas Graf6b609782012-06-26 23:36:15 +00001728 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001730 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001731 return 0;
1732
Thomas Graf6b609782012-06-26 23:36:15 +00001733 if (nlmsg_len(cb->nlh) < sizeof(struct rtmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 return -EINVAL;
Thomas Graf6b609782012-06-26 23:36:15 +00001735
1736 rtm = nlmsg_data(cb->nlh);
1737 if (!(rtm->rtm_flags & RTM_F_CLONED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return 0;
1739
1740 s_h = cb->args[0];
1741 s_idx = idx = cb->args[1];
1742 for(h = 0; h <= dn_rt_hash_mask; h++) {
1743 if (h < s_h)
1744 continue;
1745 if (h > s_h)
1746 s_idx = 0;
1747 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001748 for(rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07001750 rt = rcu_dereference_bh(rt->dst.dn_next), idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (idx < s_idx)
1752 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001753 skb_dst_set(skb, dst_clone(&rt->dst));
Eric W. Biederman15e47302012-09-07 20:12:54 +00001754 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).portid,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001755 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
David S. Miller7b46a642015-01-18 23:36:08 -05001756 1, NLM_F_MULTI) < 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001757 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 rcu_read_unlock_bh();
1759 goto done;
1760 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001761 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763 rcu_read_unlock_bh();
1764 }
1765
1766done:
1767 cb->args[0] = h;
1768 cb->args[1] = idx;
1769 return skb->len;
1770}
1771
1772#ifdef CONFIG_PROC_FS
1773struct dn_rt_cache_iter_state {
1774 int bucket;
1775};
1776
1777static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1778{
1779 struct dn_route *rt = NULL;
1780 struct dn_rt_cache_iter_state *s = seq->private;
1781
1782 for(s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
1783 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001784 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (rt)
1786 break;
1787 rcu_read_unlock_bh();
1788 }
Paul E. McKenneya898def2010-02-22 17:04:49 -08001789 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
1792static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1793{
Eric Dumazet0d89d792008-01-10 22:35:21 -08001794 struct dn_rt_cache_iter_state *s = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001796 rt = rcu_dereference_bh(rt->dst.dn_next);
1797 while (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 rcu_read_unlock_bh();
1799 if (--s->bucket < 0)
1800 break;
1801 rcu_read_lock_bh();
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001802 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001804 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1808{
1809 struct dn_route *rt = dn_rt_cache_get_first(seq);
1810
1811 if (rt) {
1812 while(*pos && (rt = dn_rt_cache_get_next(seq, rt)))
1813 --*pos;
1814 }
1815 return *pos ? NULL : rt;
1816}
1817
1818static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1819{
1820 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1821 ++*pos;
1822 return rt;
1823}
1824
1825static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1826{
1827 if (v)
1828 rcu_read_unlock_bh();
1829}
1830
1831static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1832{
1833 struct dn_route *rt = v;
1834 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1835
1836 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
David S. Miller794785b2012-07-10 00:52:56 -07001837 rt->dst.dev ? rt->dst.dev->name : "*",
1838 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1839 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
1840 atomic_read(&rt->dst.__refcnt),
1841 rt->dst.__use, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return 0;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001843}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001845static const struct seq_operations dn_rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 .start = dn_rt_cache_seq_start,
1847 .next = dn_rt_cache_seq_next,
1848 .stop = dn_rt_cache_seq_stop,
1849 .show = dn_rt_cache_seq_show,
1850};
1851
1852static int dn_rt_cache_seq_open(struct inode *inode, struct file *file)
1853{
Pavel Emelyanov31164082007-10-10 02:30:23 -07001854 return seq_open_private(file, &dn_rt_cache_seq_ops,
1855 sizeof(struct dn_rt_cache_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856}
1857
Arjan van de Ven9a321442007-02-12 00:55:35 -08001858static const struct file_operations dn_rt_cache_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 .owner = THIS_MODULE,
1860 .open = dn_rt_cache_seq_open,
1861 .read = seq_read,
1862 .llseek = seq_lseek,
1863 .release = seq_release_private,
1864};
1865
1866#endif /* CONFIG_PROC_FS */
1867
1868void __init dn_route_init(void)
1869{
1870 int i, goal, order;
1871
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001872 dn_dst_ops.kmem_cachep =
1873 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001874 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001875 dst_entries_init(&dn_dst_ops);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08001876 setup_timer(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1878 add_timer(&dn_route_timer);
1879
Jan Beulich44813742009-09-21 17:03:05 -07001880 goal = totalram_pages >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 for(order = 0; (1UL << order) < goal; order++)
1883 /* NOTHING */;
1884
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001885 /*
1886 * Only want 1024 entries max, since the table is very, very unlikely
1887 * to be larger than that.
1888 */
1889 while(order && ((((1UL << order) * PAGE_SIZE) /
1890 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1891 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001893 do {
1894 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1895 sizeof(struct dn_rt_hash_bucket);
1896 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1897 dn_rt_hash_mask--;
1898 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1899 __get_free_pages(GFP_ATOMIC, order);
1900 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001903 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001905 printk(KERN_INFO
1906 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1907 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1909
1910 dn_rt_hash_mask--;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001911 for(i = 0; i <= dn_rt_hash_mask; i++) {
1912 spin_lock_init(&dn_rt_hash_table[i].lock);
1913 dn_rt_hash_table[i].chain = NULL;
1914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001916 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Gao fengd4beaa62013-02-18 01:34:54 +00001918 proc_create("decnet_cache", S_IRUGO, init_net.proc_net,
1919 &dn_rt_cache_seq_fops);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001920
1921#ifdef CONFIG_DECNET_ROUTER
Greg Rosec7ac8672011-06-10 01:27:09 +00001922 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
1923 dn_fib_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001924#else
1925 rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
Greg Rosec7ac8672011-06-10 01:27:09 +00001926 dn_cache_dump, NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001927#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
1930void __exit dn_route_cleanup(void)
1931{
1932 del_timer(&dn_route_timer);
1933 dn_run_flush(0);
1934
Gao fengece31ff2013-02-18 01:34:56 +00001935 remove_proc_entry("decnet_cache", init_net.proc_net);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001936 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937}
1938