blob: 37c90c1fdc9384dd5dbbd9fa1252439284fea605 [file] [log] [blame]
Thomas Gleixnerfd9871f2019-05-19 15:51:54 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * DECnet An implementation of the DECnet protocol suite for the LINUX
4 * operating system. DECnet is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * DECnet Routing Functions (Endnode and Router)
8 *
9 * Authors: Steve Whitehouse <SteveW@ACM.org>
10 * Eduardo Marcelo Serrat <emserrat@geocities.com>
11 *
12 * Changes:
13 * Steve Whitehouse : Fixes to allow "intra-ethernet" and
14 * "return-to-sender" bits on outgoing
15 * packets.
16 * Steve Whitehouse : Timeouts for cached routes.
17 * Steve Whitehouse : Use dst cache for input routes too.
18 * Steve Whitehouse : Fixed error values in dn_send_skb.
19 * Steve Whitehouse : Rework routing functions to better fit
20 * DECnet routing design
21 * Alexey Kuznetsov : New SMP locking
22 * Steve Whitehouse : More SMP locking changes & dn_cache_dump()
23 * Steve Whitehouse : Prerouting NF hook, now really is prerouting.
24 * Fixed possible skb leak in rtnetlink funcs.
25 * Steve Whitehouse : Dave Miller's dynamic hash table sizing and
26 * Alexey Kuznetsov's finer grained locking
27 * from ipv4/route.c.
28 * Steve Whitehouse : Routing is now starting to look like a
29 * sensible set of code now, mainly due to
30 * my copying the IPv4 routing code. The
31 * hooks here are modified and will continue
32 * to evolve for a while.
33 * Steve Whitehouse : Real SMP at last :-) Also new netfilter
34 * stuff. Look out raw sockets your days
35 * are numbered!
36 * Steve Whitehouse : Added return-to-sender functions. Added
37 * backlog congestion level return codes.
38 * Steve Whitehouse : Fixed bug where routes were set up with
39 * no ref count on net devices.
40 * Steve Whitehouse : RCU for the route cache
41 * Steve Whitehouse : Preparations for the flow cache
42 * Steve Whitehouse : Prepare for nonlinear skbs
43 */
44
45/******************************************************************************
46 (c) 1995-1998 E.M. Serrat emserrat@geocities.com
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +090047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048*******************************************************************************/
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/errno.h>
51#include <linux/types.h>
52#include <linux/socket.h>
53#include <linux/in.h>
54#include <linux/kernel.h>
55#include <linux/sockios.h>
56#include <linux/net.h>
57#include <linux/netdevice.h>
58#include <linux/inet.h>
59#include <linux/route.h>
60#include <linux/in_route.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <net/sock.h>
63#include <linux/mm.h>
64#include <linux/proc_fs.h>
65#include <linux/seq_file.h>
66#include <linux/init.h>
67#include <linux/rtnetlink.h>
68#include <linux/string.h>
69#include <linux/netfilter_decnet.h>
70#include <linux/rcupdate.h>
71#include <linux/times.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040072#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <asm/errno.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020074#include <net/net_namespace.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070075#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <net/neighbour.h>
77#include <net/dst.h>
78#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070079#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <net/dn.h>
81#include <net/dn_dev.h>
82#include <net/dn_nsp.h>
83#include <net/dn_route.h>
84#include <net/dn_neigh.h>
85#include <net/dn_fib.h>
86
87struct dn_rt_hash_bucket
88{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +000089 struct dn_route __rcu *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 spinlock_t lock;
Eric Dumazetfca09fb2008-02-07 23:29:57 -080091};
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93extern struct neigh_table dn_neigh_table;
94
95
96static unsigned char dn_hiord_addr[6] = {0xAA,0x00,0x04,0x00,0x00,0x00};
97
98static const int dn_rt_min_delay = 2 * HZ;
99static const int dn_rt_max_delay = 10 * HZ;
100static const int dn_rt_mtu_expires = 10 * 60 * HZ;
101
102static unsigned long dn_rt_deadline;
103
Daniel Lezcano569d3642008-01-18 03:56:57 -0800104static int dn_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static struct dst_entry *dn_dst_check(struct dst_entry *, __u32);
David S. Miller0dbaee32010-12-13 12:52:14 -0800106static unsigned int dn_dst_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +0000107static unsigned int dn_dst_mtu(const struct dst_entry *dst);
David S. Miller62fa8a82011-01-26 20:51:05 -0800108static void dn_dst_destroy(struct dst_entry *);
David S. Millerfccd7d52012-07-02 22:22:18 -0700109static void dn_dst_ifdown(struct dst_entry *, struct net_device *dev, int how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static struct dst_entry *dn_dst_negative_advice(struct dst_entry *);
111static void dn_dst_link_failure(struct sk_buff *);
David S. Miller6700c272012-07-17 03:29:28 -0700112static void dn_dst_update_pmtu(struct dst_entry *dst, struct sock *sk,
Hangbin Liubd085ef2019-12-22 10:51:09 +0800113 struct sk_buff *skb , u32 mtu,
114 bool confirm_neigh);
David S. Miller6700c272012-07-17 03:29:28 -0700115static void dn_dst_redirect(struct dst_entry *dst, struct sock *sk,
116 struct sk_buff *skb);
David S. Millerf894cbf2012-07-02 21:52:24 -0700117static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
118 struct sk_buff *skb,
119 const void *daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static int dn_route_input(struct sk_buff *);
Kees Cook24ed9602017-08-28 11:28:21 -0700121static void dn_run_flush(struct timer_list *unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123static struct dn_rt_hash_bucket *dn_rt_hash_table;
Eric Dumazet95c96172012-04-15 05:58:06 +0000124static unsigned int dn_rt_hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126static struct timer_list dn_route_timer;
Kees Cook1d27e3e2017-10-04 16:27:04 -0700127static DEFINE_TIMER(dn_rt_flush_timer, dn_run_flush);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128int decnet_dst_gc_interval = 2;
129
130static struct dst_ops dn_dst_ops = {
131 .family = PF_DECnet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .gc_thresh = 128,
133 .gc = dn_dst_gc,
134 .check = dn_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800135 .default_advmss = dn_dst_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000136 .mtu = dn_dst_mtu,
David S. Miller62fa8a82011-01-26 20:51:05 -0800137 .cow_metrics = dst_cow_metrics_generic,
138 .destroy = dn_dst_destroy,
David S. Millerfccd7d52012-07-02 22:22:18 -0700139 .ifdown = dn_dst_ifdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .negative_advice = dn_dst_negative_advice,
141 .link_failure = dn_dst_link_failure,
142 .update_pmtu = dn_dst_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700143 .redirect = dn_dst_redirect,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700144 .neigh_lookup = dn_dst_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145};
146
David S. Miller62fa8a82011-01-26 20:51:05 -0800147static void dn_dst_destroy(struct dst_entry *dst)
148{
David S. Millerfccd7d52012-07-02 22:22:18 -0700149 struct dn_route *rt = (struct dn_route *) dst;
150
151 if (rt->n)
152 neigh_release(rt->n);
David S. Miller62fa8a82011-01-26 20:51:05 -0800153 dst_destroy_metrics_generic(dst);
154}
155
David S. Millerfccd7d52012-07-02 22:22:18 -0700156static void dn_dst_ifdown(struct dst_entry *dst, struct net_device *dev, int how)
157{
158 if (how) {
159 struct dn_route *rt = (struct dn_route *) dst;
160 struct neighbour *n = rt->n;
161
162 if (n && n->dev == dev) {
163 n->dev = dev_net(dev)->loopback_dev;
164 dev_hold(n->dev);
165 dev_put(dev);
166 }
167 }
168}
169
Eric Dumazet95c96172012-04-15 05:58:06 +0000170static __inline__ unsigned int dn_hash(__le16 src, __le16 dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800172 __u16 tmp = (__u16 __force)(src ^ dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 tmp ^= (tmp >> 3);
174 tmp ^= (tmp >> 5);
175 tmp ^= (tmp >> 10);
Eric Dumazet95c96172012-04-15 05:58:06 +0000176 return dn_rt_hash_mask & (unsigned int)tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Kees Cooke99e88a2017-10-16 14:43:17 -0700179static void dn_dst_check_expire(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 int i;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000182 struct dn_route *rt;
183 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned long now = jiffies;
185 unsigned long expire = 120 * HZ;
186
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000187 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 rtp = &dn_rt_hash_table[i].chain;
189
190 spin_lock(&dn_rt_hash_table[i].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000191 while ((rt = rcu_dereference_protected(*rtp,
192 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Wei Wang560fd932017-06-17 10:42:39 -0700193 if (atomic_read(&rt->dst.__refcnt) > 1 ||
194 (now - rt->dst.lastuse) < expire) {
David Millerfe736e72017-11-28 15:40:08 -0500195 rtp = &rt->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 continue;
197 }
David Millerfe736e72017-11-28 15:40:08 -0500198 *rtp = rt->dn_next;
199 rt->dn_next = NULL;
Wei Wang560fd932017-06-17 10:42:39 -0700200 dst_dev_put(&rt->dst);
201 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203 spin_unlock(&dn_rt_hash_table[i].lock);
204
205 if ((jiffies - now) > 0)
206 break;
207 }
208
209 mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ);
210}
211
Daniel Lezcano569d3642008-01-18 03:56:57 -0800212static int dn_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000214 struct dn_route *rt;
215 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 int i;
217 unsigned long now = jiffies;
218 unsigned long expire = 10 * HZ;
219
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000220 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 spin_lock_bh(&dn_rt_hash_table[i].lock);
223 rtp = &dn_rt_hash_table[i].chain;
224
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000225 while ((rt = rcu_dereference_protected(*rtp,
226 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Wei Wang560fd932017-06-17 10:42:39 -0700227 if (atomic_read(&rt->dst.__refcnt) > 1 ||
228 (now - rt->dst.lastuse) < expire) {
David Millerfe736e72017-11-28 15:40:08 -0500229 rtp = &rt->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 continue;
231 }
David Millerfe736e72017-11-28 15:40:08 -0500232 *rtp = rt->dn_next;
233 rt->dn_next = NULL;
Wei Wang560fd932017-06-17 10:42:39 -0700234 dst_dev_put(&rt->dst);
235 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 break;
237 }
238 spin_unlock_bh(&dn_rt_hash_table[i].lock);
239 }
240
241 return 0;
242}
243
244/*
245 * The decnet standards don't impose a particular minimum mtu, what they
246 * do insist on is that the routing layer accepts a datagram of at least
247 * 230 bytes long. Here we have to subtract the routing header length from
248 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
249 * assume the worst and use a long header size.
250 *
251 * We update both the mtu and the advertised mss (i.e. the segment size we
252 * advertise to the other end).
253 */
David S. Miller6700c272012-07-17 03:29:28 -0700254static void dn_dst_update_pmtu(struct dst_entry *dst, struct sock *sk,
Hangbin Liubd085ef2019-12-22 10:51:09 +0800255 struct sk_buff *skb, u32 mtu,
256 bool confirm_neigh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
David S. Millerfccd7d52012-07-02 22:22:18 -0700258 struct dn_route *rt = (struct dn_route *) dst;
259 struct neighbour *n = rt->n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 u32 min_mtu = 230;
David S. Miller69cce1d2011-07-17 23:09:49 -0700261 struct dn_dev *dn;
262
263 dn = n ? rcu_dereference_raw(n->dev->dn_ptr) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 if (dn && dn->use_long == 0)
266 min_mtu -= 6;
267 else
268 min_mtu -= 21;
269
Satoru SATOH5ffc02a2008-05-04 22:14:42 -0700270 if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (!(dst_metric_locked(dst, RTAX_MTU))) {
David S. Millerdefb3512010-12-08 21:16:57 -0800272 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 dst_set_expires(dst, dn_rt_mtu_expires);
274 }
275 if (!(dst_metric_locked(dst, RTAX_ADVMSS))) {
276 u32 mss = mtu - DN_MAX_NSP_DATA_HEADER;
David S. Miller0dbaee32010-12-13 12:52:14 -0800277 u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS);
278 if (!existing_mss || existing_mss > mss)
David S. Millerdefb3512010-12-08 21:16:57 -0800279 dst_metric_set(dst, RTAX_ADVMSS, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281 }
282}
283
David S. Miller6700c272012-07-17 03:29:28 -0700284static void dn_dst_redirect(struct dst_entry *dst, struct sock *sk,
285 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700286{
287}
288
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900289/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 * When a route has been marked obsolete. (e.g. routing cache flush)
291 */
292static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie)
293{
294 return NULL;
295}
296
297static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst)
298{
299 dst_release(dst);
300 return NULL;
301}
302
303static void dn_dst_link_failure(struct sk_buff *skb)
304{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
David S. Millerbef55ae2011-03-12 17:17:10 -0500307static inline int compare_keys(struct flowidn *fl1, struct flowidn *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
David S. Millerbef55ae2011-03-12 17:17:10 -0500309 return ((fl1->daddr ^ fl2->daddr) |
310 (fl1->saddr ^ fl2->saddr) |
311 (fl1->flowidn_mark ^ fl2->flowidn_mark) |
312 (fl1->flowidn_scope ^ fl2->flowidn_scope) |
313 (fl1->flowidn_oif ^ fl2->flowidn_oif) |
314 (fl1->flowidn_iif ^ fl2->flowidn_iif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Eric Dumazet95c96172012-04-15 05:58:06 +0000317static int dn_insert_route(struct dn_route *rt, unsigned int hash, struct dn_route **rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000319 struct dn_route *rth;
320 struct dn_route __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 unsigned long now = jiffies;
322
323 rthp = &dn_rt_hash_table[hash].chain;
324
325 spin_lock_bh(&dn_rt_hash_table[hash].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000326 while ((rth = rcu_dereference_protected(*rthp,
327 lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500328 if (compare_keys(&rth->fld, &rt->fld)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /* Put it first */
David Millerfe736e72017-11-28 15:40:08 -0500330 *rthp = rth->dn_next;
331 rcu_assign_pointer(rth->dn_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 dn_rt_hash_table[hash].chain);
333 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
334
Wei Wang0da4af02017-10-13 15:08:07 -0700335 dst_hold_and_use(&rth->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
337
Wei Wang560fd932017-06-17 10:42:39 -0700338 dst_release_immediate(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 *rp = rth;
340 return 0;
341 }
David Millerfe736e72017-11-28 15:40:08 -0500342 rthp = &rth->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
David Millerfe736e72017-11-28 15:40:08 -0500345 rcu_assign_pointer(rt->dn_next, dn_rt_hash_table[hash].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900347
Wei Wang0da4af02017-10-13 15:08:07 -0700348 dst_hold_and_use(&rt->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
350 *rp = rt;
351 return 0;
352}
353
Kees Cook24ed9602017-08-28 11:28:21 -0700354static void dn_run_flush(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 int i;
357 struct dn_route *rt, *next;
358
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000359 for (i = 0; i < dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 spin_lock_bh(&dn_rt_hash_table[i].lock);
361
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000362 if ((rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 goto nothing_to_declare;
364
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000365 for(; rt; rt = next) {
David Millerfe736e72017-11-28 15:40:08 -0500366 next = rcu_dereference_raw(rt->dn_next);
367 RCU_INIT_POINTER(rt->dn_next, NULL);
Wei Wang560fd932017-06-17 10:42:39 -0700368 dst_dev_put(&rt->dst);
369 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
372nothing_to_declare:
373 spin_unlock_bh(&dn_rt_hash_table[i].lock);
374 }
375}
376
377static DEFINE_SPINLOCK(dn_rt_flush_lock);
378
379void dn_rt_cache_flush(int delay)
380{
381 unsigned long now = jiffies;
382 int user_mode = !in_interrupt();
383
384 if (delay < 0)
385 delay = dn_rt_min_delay;
386
387 spin_lock_bh(&dn_rt_flush_lock);
388
389 if (del_timer(&dn_rt_flush_timer) && delay > 0 && dn_rt_deadline) {
390 long tmo = (long)(dn_rt_deadline - now);
391
392 if (user_mode && tmo < dn_rt_max_delay - dn_rt_min_delay)
393 tmo = 0;
394
395 if (delay > tmo)
396 delay = tmo;
397 }
398
399 if (delay <= 0) {
400 spin_unlock_bh(&dn_rt_flush_lock);
YueHaibing0bab1cd2018-08-08 19:59:32 +0800401 dn_run_flush(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return;
403 }
404
405 if (dn_rt_deadline == 0)
406 dn_rt_deadline = now + dn_rt_max_delay;
407
408 dn_rt_flush_timer.expires = now + delay;
409 add_timer(&dn_rt_flush_timer);
410 spin_unlock_bh(&dn_rt_flush_lock);
411}
412
413/**
414 * dn_return_short - Return a short packet to its sender
415 * @skb: The packet to return
416 *
417 */
418static int dn_return_short(struct sk_buff *skb)
419{
420 struct dn_skb_cb *cb;
421 unsigned char *ptr;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800422 __le16 *src;
423 __le16 *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 /* Add back headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700426 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
429 return NET_RX_DROP;
430
431 cb = DN_SKB_CB(skb);
432 /* Skip packet length and point to flags */
433 ptr = skb->data + 2;
434 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
435
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800436 dst = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800438 src = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 ptr += 2;
440 *ptr = 0; /* Zero hop count */
441
Ilpo Järvinena0bffff2009-03-21 13:36:17 -0700442 swap(*src, *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 skb->pkt_type = PACKET_OUTGOING;
445 dn_rt_finish_output(skb, NULL, NULL);
446 return NET_RX_SUCCESS;
447}
448
449/**
450 * dn_return_long - Return a long packet to its sender
451 * @skb: The long format packet to return
452 *
453 */
454static int dn_return_long(struct sk_buff *skb)
455{
456 struct dn_skb_cb *cb;
457 unsigned char *ptr;
458 unsigned char *src_addr, *dst_addr;
459 unsigned char tmp[ETH_ALEN];
460
461 /* Add back all headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700462 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 if ((skb = skb_unshare(skb, GFP_ATOMIC)) == NULL)
465 return NET_RX_DROP;
466
467 cb = DN_SKB_CB(skb);
468 /* Ignore packet length and point to flags */
469 ptr = skb->data + 2;
470
471 /* Skip padding */
472 if (*ptr & DN_RT_F_PF) {
473 char padlen = (*ptr & ~DN_RT_F_PF);
474 ptr += padlen;
475 }
476
477 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
478 ptr += 2;
479 dst_addr = ptr;
480 ptr += 8;
481 src_addr = ptr;
482 ptr += 6;
483 *ptr = 0; /* Zero hop count */
484
485 /* Swap source and destination */
486 memcpy(tmp, src_addr, ETH_ALEN);
487 memcpy(src_addr, dst_addr, ETH_ALEN);
488 memcpy(dst_addr, tmp, ETH_ALEN);
489
490 skb->pkt_type = PACKET_OUTGOING;
491 dn_rt_finish_output(skb, dst_addr, src_addr);
492 return NET_RX_SUCCESS;
493}
494
495/**
496 * dn_route_rx_packet - Try and find a route for an incoming packet
Andrew Lunnaff53b22020-07-13 01:15:01 +0200497 * @net: The applicable net namespace
498 * @sk: Socket packet transmitted on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * @skb: The packet to find a route for
500 *
501 * Returns: result of input function if route is found, error code otherwise
502 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500503static int dn_route_rx_packet(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000505 struct dn_skb_cb *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 int err;
507
508 if ((err = dn_route_input(skb)) == 0)
509 return dst_input(skb);
510
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000511 cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (decnet_debug_level & 4) {
513 char *devname = skb->dev ? skb->dev->name : "???";
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 printk(KERN_DEBUG
516 "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 -0800517 (int)cb->rt_flags, devname, skb->len,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800518 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 err, skb->pkt_type);
520 }
521
522 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
Joe Perches06f8fe12011-07-01 09:43:03 +0000523 switch (cb->rt_flags & DN_RT_PKT_MSK) {
524 case DN_RT_PKT_SHORT:
525 return dn_return_short(skb);
526 case DN_RT_PKT_LONG:
527 return dn_return_long(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529 }
530
531 kfree_skb(skb);
532 return NET_RX_DROP;
533}
534
535static int dn_route_rx_long(struct sk_buff *skb)
536{
537 struct dn_skb_cb *cb = DN_SKB_CB(skb);
538 unsigned char *ptr = skb->data;
539
540 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
541 goto drop_it;
542
543 skb_pull(skb, 20);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300544 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900546 /* Destination info */
547 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800548 cb->dst = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900549 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
550 goto drop_it;
551 ptr += 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900554 /* Source info */
555 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800556 cb->src = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900557 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
558 goto drop_it;
559 ptr += 6;
560 /* Other junk */
561 ptr++;
562 cb->hops = *ptr++; /* Visit Count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500564 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
565 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100566 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568drop_it:
569 kfree_skb(skb);
570 return NET_RX_DROP;
571}
572
573
574
575static int dn_route_rx_short(struct sk_buff *skb)
576{
577 struct dn_skb_cb *cb = DN_SKB_CB(skb);
578 unsigned char *ptr = skb->data;
579
580 if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */
581 goto drop_it;
582
583 skb_pull(skb, 5);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300584 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800586 cb->dst = *(__le16 *)ptr;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900587 ptr += 2;
588 cb->src = *(__le16 *)ptr;
589 ptr += 2;
590 cb->hops = *ptr & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500592 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
593 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100594 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596drop_it:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900597 kfree_skb(skb);
598 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500601static int dn_route_discard(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 /*
604 * I know we drop the packet here, but thats considered success in
605 * this case
606 */
607 kfree_skb(skb);
608 return NET_RX_SUCCESS;
609}
610
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500611static int dn_route_ptp_hello(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 dn_dev_hello(skb);
614 dn_neigh_pointopoint_hello(skb);
615 return NET_RX_SUCCESS;
616}
617
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700618int 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 -0700619{
620 struct dn_skb_cb *cb;
621 unsigned char flags = 0;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800622 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000623 struct dn_dev *dn = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 unsigned char padlen = 0;
625
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700626 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700627 goto dump_it;
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (dn == NULL)
630 goto dump_it;
631
632 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
633 goto out;
634
635 if (!pskb_may_pull(skb, 3))
636 goto dump_it;
637
638 skb_pull(skb, 2);
639
640 if (len > skb->len)
641 goto dump_it;
642
643 skb_trim(skb, len);
644
645 flags = *skb->data;
646
647 cb = DN_SKB_CB(skb);
648 cb->stamp = jiffies;
649 cb->iif = dev->ifindex;
650
651 /*
652 * If we have padding, remove it.
653 */
654 if (flags & DN_RT_F_PF) {
655 padlen = flags & ~DN_RT_F_PF;
656 if (!pskb_may_pull(skb, padlen + 1))
657 goto dump_it;
658 skb_pull(skb, padlen);
659 flags = *skb->data;
660 }
661
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700662 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /*
665 * Weed out future version DECnet
666 */
667 if (flags & DN_RT_F_VER)
668 goto dump_it;
669
670 cb->rt_flags = flags;
671
672 if (decnet_debug_level & 1)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900673 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
Gaurav Singhf9215d6b2020-06-22 23:41:19 -0400675 (int)flags, dev->name, len, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 padlen);
677
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900678 if (flags & DN_RT_PKT_CNTL) {
Herbert Xu364c6ba2006-06-09 16:10:40 -0700679 if (unlikely(skb_linearize(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto dump_it;
681
Joe Perches06f8fe12011-07-01 09:43:03 +0000682 switch (flags & DN_RT_CNTL_MSK) {
683 case DN_RT_PKT_INIT:
684 dn_dev_init_pkt(skb);
685 break;
686 case DN_RT_PKT_VERI:
687 dn_dev_veri_pkt(skb);
688 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
691 if (dn->parms.state != DN_DEV_S_RU)
692 goto dump_it;
693
Joe Perches06f8fe12011-07-01 09:43:03 +0000694 switch (flags & DN_RT_CNTL_MSK) {
695 case DN_RT_PKT_HELO:
696 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500697 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000698 dn_route_ptp_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Joe Perches06f8fe12011-07-01 09:43:03 +0000700 case DN_RT_PKT_L1RT:
701 case DN_RT_PKT_L2RT:
702 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
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_discard);
705 case DN_RT_PKT_ERTH:
706 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500707 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000708 dn_neigh_router_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Joe Perches06f8fe12011-07-01 09:43:03 +0000710 case DN_RT_PKT_EEDH:
711 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500712 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000713 dn_neigh_endnode_hello);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900714 }
715 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (dn->parms.state != DN_DEV_S_RU)
717 goto dump_it;
718
719 skb_pull(skb, 1); /* Pull flags */
720
Joe Perches06f8fe12011-07-01 09:43:03 +0000721 switch (flags & DN_RT_PKT_MSK) {
722 case DN_RT_PKT_LONG:
723 return dn_route_rx_long(skb);
724 case DN_RT_PKT_SHORT:
725 return dn_route_rx_short(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729dump_it:
730 kfree_skb(skb);
731out:
732 return NET_RX_DROP;
733}
734
Eric W. Biedermanede20592015-10-07 16:48:47 -0500735static int dn_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Eric Dumazetadf30902009-06-02 05:19:30 +0000737 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 struct dn_route *rt = (struct dn_route *)dst;
739 struct net_device *dev = dst->dev;
740 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 int err = -EINVAL;
743
David S. Millerfccd7d52012-07-02 22:22:18 -0700744 if (rt->n == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 goto error;
746
747 skb->dev = dev;
748
749 cb->src = rt->rt_saddr;
750 cb->dst = rt->rt_daddr;
751
752 /*
753 * Always set the Intra-Ethernet bit on all outgoing packets
754 * originated on this node. Only valid flag from upper layers
755 * is return-to-sender-requested. Set hop count to 0 too.
756 */
757 cb->rt_flags &= ~DN_RT_F_RQR;
758 cb->rt_flags |= DN_RT_F_IE;
759 cb->hops = 0;
760
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500761 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT,
762 &init_net, sk, skb, NULL, dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700763 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765error:
Joe Perchese87cc472012-05-13 21:56:26 +0000766 net_dbg_ratelimited("dn_output: This should not happen\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 kfree_skb(skb);
769
770 return err;
771}
772
773static int dn_forward(struct sk_buff *skb)
774{
775 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000776 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000777 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct dn_route *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 struct net_device *dev = skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (skb->pkt_type != PACKET_HOST)
783 goto drop;
784
785 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000786 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700788 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 goto drop;
790
791 /*
792 * Hop count exceeded.
793 */
794 if (++cb->hops > 30)
795 goto drop;
796
Changli Gaod8d1f302010-06-10 23:31:35 -0700797 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /*
800 * If packet goes out same interface it came in on, then set
801 * the Intra-Ethernet bit. This has no effect for short
802 * packets, so we don't need to test for them here.
803 */
804 cb->rt_flags &= ~DN_RT_F_IE;
805 if (rt->rt_flags & RTCF_DOREDIRECT)
806 cb->rt_flags |= DN_RT_F_IE;
807
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500808 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD,
809 &init_net, NULL, skb, dev, skb->dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700810 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812drop:
813 kfree_skb(skb);
814 return NET_RX_DROP;
815}
816
817/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * Used to catch bugs. This should never normally get
819 * called.
820 */
Eric W. Biedermanede20592015-10-07 16:48:47 -0500821static int dn_rt_bug_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Eric Dumazetaad88722014-04-15 13:47:15 -0400822{
823 struct dn_skb_cb *cb = DN_SKB_CB(skb);
824
825 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
826 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
827
828 kfree_skb(skb);
829
830 return NET_RX_DROP;
831}
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833static int dn_rt_bug(struct sk_buff *skb)
834{
Joe Perchese87cc472012-05-13 21:56:26 +0000835 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Joe Perchese87cc472012-05-13 21:56:26 +0000837 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
838 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 kfree_skb(skb);
841
Florian Westphal0e8635a2009-06-20 00:53:25 +0000842 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
David S. Miller0dbaee32010-12-13 12:52:14 -0800845static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
846{
847 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
848}
849
Steffen Klassertebb762f2011-11-23 02:12:51 +0000850static unsigned int dn_dst_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -0800851{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000852 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
853
854 return mtu ? : dst->dev->mtu;
David S. Millerd33e4552010-12-14 13:01:14 -0800855}
856
David S. Millerf894cbf2012-07-02 21:52:24 -0700857static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
858 struct sk_buff *skb,
859 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700860{
861 return __neigh_lookup_errno(&dn_neigh_table, daddr, dst->dev);
862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
865{
866 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700867 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800868 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 if (fi) {
872 if (DN_FIB_RES_GW(*res) &&
873 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
874 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800875 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 rt->rt_type = res->type;
878
David S. Millerfccd7d52012-07-02 22:22:18 -0700879 if (dev != NULL && rt->n == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
881 if (IS_ERR(n))
882 return PTR_ERR(n);
David S. Millerfccd7d52012-07-02 22:22:18 -0700883 rt->n = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
885
David S. Millerd33e4552010-12-14 13:01:14 -0800886 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800887 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800888 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
889 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800890 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800891 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800892 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return 0;
895}
896
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800897static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800899 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int match = 16;
901 while(tmp) {
902 tmp >>= 1;
903 match--;
904 }
905 return match;
906}
907
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800908static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800910 __le16 saddr = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000911 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 struct dn_ifaddr *ifa;
913 int best_match = 0;
914 int ret;
915
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000916 rcu_read_lock();
917 dn_db = rcu_dereference(dev->dn_ptr);
918 for (ifa = rcu_dereference(dn_db->ifa_list);
919 ifa != NULL;
920 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (ifa->ifa_scope > scope)
922 continue;
923 if (!daddr) {
924 saddr = ifa->ifa_local;
925 break;
926 }
927 ret = dn_match_addr(daddr, ifa->ifa_local);
928 if (ret > best_match)
929 saddr = ifa->ifa_local;
930 if (best_match == 0)
931 saddr = ifa->ifa_local;
932 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000933 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 return saddr;
936}
937
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800938static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
941}
942
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800943static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800945 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
947}
948
David S. Millerbef55ae2011-03-12 17:17:10 -0500949static int dn_route_output_slow(struct dst_entry **pprt, const struct flowidn *oldflp, int try_hard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
David S. Millerbef55ae2011-03-12 17:17:10 -0500951 struct flowidn fld = {
952 .daddr = oldflp->daddr,
953 .saddr = oldflp->saddr,
954 .flowidn_scope = RT_SCOPE_UNIVERSE,
955 .flowidn_mark = oldflp->flowidn_mark,
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000956 .flowidn_iif = LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500957 .flowidn_oif = oldflp->flowidn_oif,
David S. Miller1d28f422011-03-12 00:29:39 -0500958 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700960 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +0000962 unsigned int hash;
963 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
965 int err;
966 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800967 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 if (decnet_debug_level & 16)
970 printk(KERN_DEBUG
971 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
David S. Millerbef55ae2011-03-12 17:17:10 -0500972 " iif=%d oif=%d\n", le16_to_cpu(oldflp->daddr),
973 le16_to_cpu(oldflp->saddr),
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000974 oldflp->flowidn_mark, LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500975 oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 /* If we have an output interface, verify its a DECnet device */
David S. Millerbef55ae2011-03-12 17:17:10 -0500978 if (oldflp->flowidn_oif) {
979 dev_out = dev_get_by_index(&init_net, oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 err = -ENODEV;
981 if (dev_out && dev_out->dn_ptr == NULL) {
982 dev_put(dev_out);
983 dev_out = NULL;
984 }
985 if (dev_out == NULL)
986 goto out;
987 }
988
989 /* If we have a source address, verify that its a local address */
David S. Millerbef55ae2011-03-12 17:17:10 -0500990 if (oldflp->saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 err = -EADDRNOTAVAIL;
992
993 if (dev_out) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500994 if (dn_dev_islocal(dev_out, oldflp->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 goto source_ok;
996 dev_put(dev_out);
997 goto out;
998 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800999 rcu_read_lock();
1000 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001001 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 continue;
David S. Millerbef55ae2011-03-12 17:17:10 -05001003 if (!dn_dev_islocal(dev, oldflp->saddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001004 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001005 if ((dev->flags & IFF_LOOPBACK) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001006 oldflp->daddr &&
1007 !dn_dev_islocal(dev, oldflp->daddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001008 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001009
1010 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001011 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001013 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (dev_out == NULL)
1015 goto out;
1016 dev_hold(dev_out);
1017source_ok:
1018 ;
1019 }
1020
1021 /* No destination? Assume its local */
David S. Millerbef55ae2011-03-12 17:17:10 -05001022 if (!fld.daddr) {
1023 fld.daddr = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (dev_out)
1026 dev_put(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001027 err = -EINVAL;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001028 dev_out = init_net.loopback_dev;
David S. Millera36a0d42016-04-10 23:01:30 -04001029 if (!dev_out->dn_ptr)
1030 goto out;
1031 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001033 if (!fld.daddr) {
1034 fld.daddr =
1035 fld.saddr = dnet_select_source(dev_out, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 RT_SCOPE_HOST);
David S. Millerbef55ae2011-03-12 17:17:10 -05001037 if (!fld.daddr)
Vadim Fedorenko3f96d642021-01-26 03:02:14 +03001038 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001040 fld.flowidn_oif = LOOPBACK_IFINDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 res.type = RTN_LOCAL;
1042 goto make_route;
1043 }
1044
1045 if (decnet_debug_level & 16)
1046 printk(KERN_DEBUG
1047 "dn_route_output_slow: initial checks complete."
Rasmus Villemoes46b9e4b2015-02-23 12:02:51 +01001048 " dst=%04x src=%04x oif=%d try_hard=%d\n",
David S. Millerbef55ae2011-03-12 17:17:10 -05001049 le16_to_cpu(fld.daddr), le16_to_cpu(fld.saddr),
1050 fld.flowidn_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 /*
1053 * N.B. If the kernel is compiled without router support then
1054 * dn_fib_lookup() will evaluate to non-zero so this if () block
1055 * will always be executed.
1056 */
1057 err = -ESRCH;
David S. Millerbef55ae2011-03-12 17:17:10 -05001058 if (try_hard || (err = dn_fib_lookup(&fld, &res)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 struct dn_dev *dn_db;
1060 if (err != -ESRCH)
1061 goto out;
1062 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001063 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * routing in endnodes which is described in the DECnet routing
1065 * docs
1066 *
1067 * If we are not trying hard, look in neighbour cache.
1068 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001069 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * here
1071 */
1072 if (!try_hard) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001073 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (neigh) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001075 if ((oldflp->flowidn_oif &&
1076 (neigh->dev->ifindex != oldflp->flowidn_oif)) ||
1077 (oldflp->saddr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 (!dn_dev_islocal(neigh->dev,
David S. Millerbef55ae2011-03-12 17:17:10 -05001079 oldflp->saddr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 neigh_release(neigh);
1081 neigh = NULL;
1082 } else {
1083 if (dev_out)
1084 dev_put(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001085 if (dn_dev_islocal(neigh->dev, fld.daddr)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001086 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 res.type = RTN_LOCAL;
1088 } else {
1089 dev_out = neigh->dev;
1090 }
1091 dev_hold(dev_out);
1092 goto select_source;
1093 }
1094 }
1095 }
1096
1097 /* Not there? Perhaps its a local address */
1098 if (dev_out == NULL)
1099 dev_out = dn_dev_get_default();
1100 err = -ENODEV;
1101 if (dev_out == NULL)
1102 goto out;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001103 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
David S. Millera36a0d42016-04-10 23:01:30 -04001104 if (!dn_db)
1105 goto e_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 /* Possible improvement - check all devices for local addr */
David S. Millerbef55ae2011-03-12 17:17:10 -05001107 if (dn_dev_islocal(dev_out, fld.daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001109 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 dev_hold(dev_out);
1111 res.type = RTN_LOCAL;
1112 goto select_source;
1113 }
1114 /* Not local either.... try sending it to the default router */
1115 neigh = neigh_clone(dn_db->router);
1116 BUG_ON(neigh && neigh->dev != dev_out);
1117
1118 /* Ok then, we assume its directly connected and move on */
1119select_source:
1120 if (neigh)
1121 gateway = ((struct dn_neigh *)neigh)->addr;
1122 if (gateway == 0)
David S. Millerbef55ae2011-03-12 17:17:10 -05001123 gateway = fld.daddr;
1124 if (fld.saddr == 0) {
1125 fld.saddr = dnet_select_source(dev_out, gateway,
1126 res.type == RTN_LOCAL ?
1127 RT_SCOPE_HOST :
1128 RT_SCOPE_LINK);
1129 if (fld.saddr == 0 && res.type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 goto e_addr;
1131 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001132 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 goto make_route;
1134 }
1135 free_res = 1;
1136
1137 if (res.type == RTN_NAT)
1138 goto e_inval;
1139
1140 if (res.type == RTN_LOCAL) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001141 if (!fld.saddr)
1142 fld.saddr = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (dev_out)
1144 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001145 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 dev_hold(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001147 if (!dev_out->dn_ptr)
1148 goto e_inval;
David S. Millerbef55ae2011-03-12 17:17:10 -05001149 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (res.fi)
1151 dn_fib_info_put(res.fi);
1152 res.fi = NULL;
1153 goto make_route;
1154 }
1155
David S. Millerbef55ae2011-03-12 17:17:10 -05001156 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1157 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001159 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 * We could add some logic to deal with default routes here and
1161 * get rid of some of the special casing above.
1162 */
1163
David S. Millerbef55ae2011-03-12 17:17:10 -05001164 if (!fld.saddr)
1165 fld.saddr = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (dev_out)
1168 dev_put(dev_out);
1169 dev_out = DN_FIB_RES_DEV(res);
1170 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001171 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 gateway = DN_FIB_RES_GW(res);
1173
1174make_route:
1175 if (dev_out->flags & IFF_LOOPBACK)
1176 flags |= RTCF_LOCAL;
1177
David Laightaf13b3c2020-03-23 14:31:19 +00001178 rt = dst_alloc(&dn_dst_ops, dev_out, 0, DST_OBSOLETE_NONE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (rt == NULL)
1180 goto e_nobufs;
1181
David Millerfe736e72017-11-28 15:40:08 -05001182 rt->dn_next = NULL;
David S. Millercf911662011-04-28 14:31:47 -07001183 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001184 rt->fld.saddr = oldflp->saddr;
1185 rt->fld.daddr = oldflp->daddr;
1186 rt->fld.flowidn_oif = oldflp->flowidn_oif;
1187 rt->fld.flowidn_iif = 0;
1188 rt->fld.flowidn_mark = oldflp->flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
David S. Millerbef55ae2011-03-12 17:17:10 -05001190 rt->rt_saddr = fld.saddr;
1191 rt->rt_daddr = fld.daddr;
1192 rt->rt_gateway = gateway ? gateway : fld.daddr;
1193 rt->rt_local_src = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
David S. Millerbef55ae2011-03-12 17:17:10 -05001195 rt->rt_dst_map = fld.daddr;
1196 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
David S. Millerfccd7d52012-07-02 22:22:18 -07001198 rt->n = neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 neigh = NULL;
1200
Changli Gaod8d1f302010-06-10 23:31:35 -07001201 rt->dst.lastuse = jiffies;
1202 rt->dst.output = dn_output;
1203 rt->dst.input = dn_rt_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 rt->rt_flags = flags;
1205 if (flags & RTCF_LOCAL)
Changli Gaod8d1f302010-06-10 23:31:35 -07001206 rt->dst.input = dn_nsp_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 err = dn_rt_set_next_hop(rt, &res);
1209 if (err)
1210 goto e_neighbour;
1211
David S. Millerbef55ae2011-03-12 17:17:10 -05001212 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Wei Wang560fd932017-06-17 10:42:39 -07001213 /* dn_insert_route() increments dst->__refcnt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 dn_insert_route(rt, hash, (struct dn_route **)pprt);
1215
1216done:
1217 if (neigh)
1218 neigh_release(neigh);
1219 if (free_res)
1220 dn_fib_res_put(&res);
1221 if (dev_out)
1222 dev_put(dev_out);
1223out:
1224 return err;
1225
1226e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001227 err = -EADDRNOTAVAIL;
1228 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229e_inval:
1230 err = -EINVAL;
1231 goto done;
1232e_nobufs:
1233 err = -ENOBUFS;
1234 goto done;
1235e_neighbour:
Wei Wang560fd932017-06-17 10:42:39 -07001236 dst_release_immediate(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 goto e_nobufs;
1238}
1239
1240
1241/*
1242 * N.B. The flags may be moved into the flowi at some future stage.
1243 */
David S. Millerbef55ae2011-03-12 17:17:10 -05001244static int __dn_route_output_key(struct dst_entry **pprt, const struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
Eric Dumazet95c96172012-04-15 05:58:06 +00001246 unsigned int hash = dn_hash(flp->saddr, flp->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 struct dn_route *rt = NULL;
1248
1249 if (!(flags & MSG_TRYHARD)) {
1250 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001251 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
David Millerfe736e72017-11-28 15:40:08 -05001252 rt = rcu_dereference_bh(rt->dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001253 if ((flp->daddr == rt->fld.daddr) &&
1254 (flp->saddr == rt->fld.saddr) &&
1255 (flp->flowidn_mark == rt->fld.flowidn_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001256 dn_is_output_route(rt) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001257 (rt->fld.flowidn_oif == flp->flowidn_oif)) {
Wei Wang0da4af02017-10-13 15:08:07 -07001258 dst_hold_and_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001260 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return 0;
1262 }
1263 }
1264 rcu_read_unlock_bh();
1265 }
1266
1267 return dn_route_output_slow(pprt, flp, flags);
1268}
1269
David S. Millerbef55ae2011-03-12 17:17:10 -05001270static int dn_route_output_key(struct dst_entry **pprt, struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
1272 int err;
1273
1274 err = __dn_route_output_key(pprt, flp, flags);
David S. Millerbef55ae2011-03-12 17:17:10 -05001275 if (err == 0 && flp->flowidn_proto) {
1276 *pprt = xfrm_lookup(&init_net, *pprt,
1277 flowidn_to_flowi(flp), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001278 if (IS_ERR(*pprt)) {
1279 err = PTR_ERR(*pprt);
1280 *pprt = NULL;
1281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283 return err;
1284}
1285
Cong Wangcec771d2013-01-22 21:09:50 +00001286int dn_route_output_sock(struct dst_entry __rcu **pprt, struct flowidn *fl, struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
1288 int err;
1289
1290 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Millerbef55ae2011-03-12 17:17:10 -05001291 if (err == 0 && fl->flowidn_proto) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001292 *pprt = xfrm_lookup(&init_net, *pprt,
1293 flowidn_to_flowi(fl), sk, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001294 if (IS_ERR(*pprt)) {
1295 err = PTR_ERR(*pprt);
1296 *pprt = NULL;
1297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 return err;
1300}
1301
1302static int dn_route_input_slow(struct sk_buff *skb)
1303{
1304 struct dn_route *rt = NULL;
1305 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1306 struct net_device *in_dev = skb->dev;
1307 struct net_device *out_dev = NULL;
1308 struct dn_dev *dn_db;
1309 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +00001310 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001312 __le16 gateway = 0;
1313 __le16 local_src = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001314 struct flowidn fld = {
1315 .daddr = cb->dst,
1316 .saddr = cb->src,
1317 .flowidn_scope = RT_SCOPE_UNIVERSE,
1318 .flowidn_mark = skb->mark,
1319 .flowidn_iif = skb->dev->ifindex,
David S. Miller1d28f422011-03-12 00:29:39 -05001320 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1322 int err = -EINVAL;
1323 int free_res = 0;
1324
1325 dev_hold(in_dev);
1326
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001327 if ((dn_db = rcu_dereference(in_dev->dn_ptr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 goto out;
1329
1330 /* Zero source addresses are not allowed */
David S. Millerbef55ae2011-03-12 17:17:10 -05001331 if (fld.saddr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 goto out;
1333
1334 /*
1335 * In this case we've just received a packet from a source
1336 * outside ourselves pretending to come from us. We don't
1337 * allow it any further to prevent routing loops, spoofing and
1338 * other nasties. Loopback packets already have the dst attached
1339 * so this only affects packets which have originated elsewhere.
1340 */
1341 err = -ENOTUNIQ;
1342 if (dn_dev_islocal(in_dev, cb->src))
1343 goto out;
1344
David S. Millerbef55ae2011-03-12 17:17:10 -05001345 err = dn_fib_lookup(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (err) {
1347 if (err != -ESRCH)
1348 goto out;
1349 /*
1350 * Is the destination us ?
1351 */
1352 if (!dn_dev_islocal(in_dev, cb->dst))
1353 goto e_inval;
1354
1355 res.type = RTN_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 } else {
David S. Millerbef55ae2011-03-12 17:17:10 -05001357 __le16 src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 free_res = 1;
1359
1360 out_dev = DN_FIB_RES_DEV(res);
1361 if (out_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00001362 net_crit_ratelimited("Bug in dn_route_input_slow() No output device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 goto e_inval;
1364 }
1365 dev_hold(out_dev);
1366
1367 if (res.r)
David S. Millerbef55ae2011-03-12 17:17:10 -05001368 src_map = fld.saddr; /* no NAT support for now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 gateway = DN_FIB_RES_GW(res);
1371 if (res.type == RTN_NAT) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001372 fld.daddr = dn_fib_rules_map_destination(fld.daddr, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 dn_fib_res_put(&res);
1374 free_res = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001375 if (dn_fib_lookup(&fld, &res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 goto e_inval;
1377 free_res = 1;
1378 if (res.type != RTN_UNICAST)
1379 goto e_inval;
1380 flags |= RTCF_DNAT;
David S. Millerbef55ae2011-03-12 17:17:10 -05001381 gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001383 fld.saddr = src_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385
1386 switch(res.type) {
1387 case RTN_UNICAST:
1388 /*
1389 * Forwarding check here, we only check for forwarding
1390 * being turned off, if you want to only forward intra
1391 * area, its up to you to set the routing tables up
1392 * correctly.
1393 */
1394 if (dn_db->parms.forwarding == 0)
1395 goto e_inval;
1396
David S. Millerbef55ae2011-03-12 17:17:10 -05001397 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1398 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001400 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 * Check for out_dev == in_dev. We use the RTCF_DOREDIRECT
1402 * flag as a hint to set the intra-ethernet bit when
1403 * forwarding. If we've got NAT in operation, we don't do
1404 * this optimisation.
1405 */
1406 if (out_dev == in_dev && !(flags & RTCF_NAT))
1407 flags |= RTCF_DOREDIRECT;
1408
1409 local_src = DN_FIB_RES_PREFSRC(res);
Gustavo A. R. Silva4cdbe582021-03-09 23:38:11 -06001410 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 case RTN_BLACKHOLE:
1412 case RTN_UNREACHABLE:
1413 break;
1414 case RTN_LOCAL:
1415 flags |= RTCF_LOCAL;
David S. Millerbef55ae2011-03-12 17:17:10 -05001416 fld.saddr = cb->dst;
1417 fld.daddr = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 /* Routing tables gave us a gateway */
1420 if (gateway)
1421 goto make_route;
1422
1423 /* Packet was intra-ethernet, so we know its on-link */
Steven Whitehouse3a31b9d2006-10-18 20:45:22 -07001424 if (cb->rt_flags & DN_RT_F_IE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 gateway = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 goto make_route;
1427 }
1428
1429 /* Use the default router if there is one */
1430 neigh = neigh_clone(dn_db->router);
1431 if (neigh) {
1432 gateway = ((struct dn_neigh *)neigh)->addr;
1433 goto make_route;
1434 }
1435
1436 /* Close eyes and pray */
1437 gateway = cb->src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 goto make_route;
1439 default:
1440 goto e_inval;
1441 }
1442
1443make_route:
David Laightaf13b3c2020-03-23 14:31:19 +00001444 rt = dst_alloc(&dn_dst_ops, out_dev, 1, DST_OBSOLETE_NONE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 if (rt == NULL)
1446 goto e_nobufs;
1447
David Millerfe736e72017-11-28 15:40:08 -05001448 rt->dn_next = NULL;
David S. Millercf911662011-04-28 14:31:47 -07001449 memset(&rt->fld, 0, sizeof(rt->fld));
David S. Millerbef55ae2011-03-12 17:17:10 -05001450 rt->rt_saddr = fld.saddr;
1451 rt->rt_daddr = fld.daddr;
1452 rt->rt_gateway = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (gateway)
1454 rt->rt_gateway = gateway;
1455 rt->rt_local_src = local_src ? local_src : rt->rt_saddr;
1456
David S. Millerbef55ae2011-03-12 17:17:10 -05001457 rt->rt_dst_map = fld.daddr;
1458 rt->rt_src_map = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
David S. Millerbef55ae2011-03-12 17:17:10 -05001460 rt->fld.saddr = cb->src;
1461 rt->fld.daddr = cb->dst;
1462 rt->fld.flowidn_oif = 0;
1463 rt->fld.flowidn_iif = in_dev->ifindex;
1464 rt->fld.flowidn_mark = fld.flowidn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
David S. Millerfccd7d52012-07-02 22:22:18 -07001466 rt->n = neigh;
Changli Gaod8d1f302010-06-10 23:31:35 -07001467 rt->dst.lastuse = jiffies;
Eric W. Biedermanede20592015-10-07 16:48:47 -05001468 rt->dst.output = dn_rt_bug_out;
Joe Perches06f8fe12011-07-01 09:43:03 +00001469 switch (res.type) {
1470 case RTN_UNICAST:
1471 rt->dst.input = dn_forward;
1472 break;
1473 case RTN_LOCAL:
1474 rt->dst.output = dn_output;
1475 rt->dst.input = dn_nsp_rx;
1476 rt->dst.dev = in_dev;
1477 flags |= RTCF_LOCAL;
1478 break;
1479 default:
1480 case RTN_UNREACHABLE:
1481 case RTN_BLACKHOLE:
1482 rt->dst.input = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484 rt->rt_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 err = dn_rt_set_next_hop(rt, &res);
1487 if (err)
1488 goto e_neighbour;
1489
David S. Millerbef55ae2011-03-12 17:17:10 -05001490 hash = dn_hash(rt->fld.saddr, rt->fld.daddr);
Wei Wang560fd932017-06-17 10:42:39 -07001491 /* dn_insert_route() increments dst->__refcnt */
Eric Dumazetadf30902009-06-02 05:19:30 +00001492 dn_insert_route(rt, hash, &rt);
Changli Gaod8d1f302010-06-10 23:31:35 -07001493 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495done:
1496 if (neigh)
1497 neigh_release(neigh);
1498 if (free_res)
1499 dn_fib_res_put(&res);
1500 dev_put(in_dev);
1501 if (out_dev)
1502 dev_put(out_dev);
1503out:
1504 return err;
1505
1506e_inval:
1507 err = -EINVAL;
1508 goto done;
1509
1510e_nobufs:
1511 err = -ENOBUFS;
1512 goto done;
1513
1514e_neighbour:
Wei Wang560fd932017-06-17 10:42:39 -07001515 dst_release_immediate(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto done;
1517}
1518
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001519static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 struct dn_route *rt;
1522 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazet95c96172012-04-15 05:58:06 +00001523 unsigned int hash = dn_hash(cb->src, cb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Eric Dumazetadf30902009-06-02 05:19:30 +00001525 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return 0;
1527
1528 rcu_read_lock();
1529 for(rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
David Millerfe736e72017-11-28 15:40:08 -05001530 rt = rcu_dereference(rt->dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001531 if ((rt->fld.saddr == cb->src) &&
1532 (rt->fld.daddr == cb->dst) &&
1533 (rt->fld.flowidn_oif == 0) &&
1534 (rt->fld.flowidn_mark == skb->mark) &&
1535 (rt->fld.flowidn_iif == cb->iif)) {
Wei Wang0da4af02017-10-13 15:08:07 -07001536 dst_hold_and_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001538 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
1540 }
1541 }
1542 rcu_read_unlock();
1543
1544 return dn_route_input_slow(skb);
1545}
1546
Eric W. Biederman15e47302012-09-07 20:12:54 +00001547static int dn_rt_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001548 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Eric Dumazetadf30902009-06-02 05:19:30 +00001550 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 struct rtmsg *r;
1552 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08001553 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Eric W. Biederman15e47302012-09-07 20:12:54 +00001555 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*r), flags);
David S. Miller737100e2012-06-26 21:46:19 -07001556 if (!nlh)
Thomas Graf6b609782012-06-26 23:36:15 +00001557 return -EMSGSIZE;
1558
David S. Miller737100e2012-06-26 21:46:19 -07001559 r = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 r->rtm_family = AF_DECnet;
1561 r->rtm_dst_len = 16;
1562 r->rtm_src_len = 0;
1563 r->rtm_tos = 0;
1564 r->rtm_table = RT_TABLE_MAIN;
1565 r->rtm_type = rt->rt_type;
1566 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1567 r->rtm_scope = RT_SCOPE_UNIVERSE;
1568 r->rtm_protocol = RTPROT_UNSPEC;
Thomas Graf6b609782012-06-26 23:36:15 +00001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if (rt->rt_flags & RTCF_NOTIFY)
1571 r->rtm_flags |= RTM_F_NOTIFY;
Thomas Graf6b609782012-06-26 23:36:15 +00001572
1573 if (nla_put_u32(skb, RTA_TABLE, RT_TABLE_MAIN) < 0 ||
1574 nla_put_le16(skb, RTA_DST, rt->rt_daddr) < 0)
1575 goto errout;
1576
David S. Millerbef55ae2011-03-12 17:17:10 -05001577 if (rt->fld.saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 r->rtm_src_len = 16;
Thomas Graf6b609782012-06-26 23:36:15 +00001579 if (nla_put_le16(skb, RTA_SRC, rt->fld.saddr) < 0)
1580 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
Thomas Graf6b609782012-06-26 23:36:15 +00001582 if (rt->dst.dev &&
1583 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex) < 0)
1584 goto errout;
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 /*
1587 * Note to self - change this if input routes reverse direction when
1588 * they deal only with inputs and not with replies like they do
1589 * currently.
1590 */
Thomas Graf6b609782012-06-26 23:36:15 +00001591 if (nla_put_le16(skb, RTA_PREFSRC, rt->rt_local_src) < 0)
1592 goto errout;
1593
1594 if (rt->rt_daddr != rt->rt_gateway &&
1595 nla_put_le16(skb, RTA_GATEWAY, rt->rt_gateway) < 0)
1596 goto errout;
1597
David S. Millerdefb3512010-12-08 21:16:57 -08001598 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001599 goto errout;
1600
Changli Gaod8d1f302010-06-10 23:31:35 -07001601 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
David S. Miller87a50692012-07-10 05:06:14 -07001602 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires,
Changli Gaod8d1f302010-06-10 23:31:35 -07001603 rt->dst.error) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001604 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Thomas Graf6b609782012-06-26 23:36:15 +00001606 if (dn_is_input_route(rt) &&
1607 nla_put_u32(skb, RTA_IIF, rt->fld.flowidn_iif) < 0)
1608 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Johannes Berg053c0952015-01-16 22:09:00 +01001610 nlmsg_end(skb, nlh);
1611 return 0;
Thomas Graf6b609782012-06-26 23:36:15 +00001612
1613errout:
1614 nlmsg_cancel(skb, nlh);
1615 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616}
1617
Thomas Graf2fa70df2013-03-22 16:50:29 +00001618const struct nla_policy rtm_dn_policy[RTA_MAX + 1] = {
1619 [RTA_DST] = { .type = NLA_U16 },
1620 [RTA_SRC] = { .type = NLA_U16 },
1621 [RTA_IIF] = { .type = NLA_U32 },
1622 [RTA_OIF] = { .type = NLA_U32 },
1623 [RTA_GATEWAY] = { .type = NLA_U16 },
1624 [RTA_PRIORITY] = { .type = NLA_U32 },
1625 [RTA_PREFSRC] = { .type = NLA_U16 },
1626 [RTA_METRICS] = { .type = NLA_NESTED },
1627 [RTA_MULTIPATH] = { .type = NLA_NESTED },
1628 [RTA_TABLE] = { .type = NLA_U32 },
1629 [RTA_MARK] = { .type = NLA_U32 },
1630};
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632/*
1633 * This is called by both endnodes and routers now.
1634 */
David Ahernc21ef3e2017-04-16 09:48:24 -07001635static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
1636 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001638 struct net *net = sock_net(in_skb->sk);
David S. Miller737100e2012-06-26 21:46:19 -07001639 struct rtmsg *rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 struct dn_route *rt = NULL;
1641 struct dn_skb_cb *cb;
1642 int err;
1643 struct sk_buff *skb;
David S. Millerbef55ae2011-03-12 17:17:10 -05001644 struct flowidn fld;
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001645 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001647 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001648 return -EINVAL;
1649
Johannes Berg8cb08172019-04-26 14:07:28 +02001650 err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
1651 rtm_dn_policy, extack);
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001652 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;
David Millerfe736e72017-11-28 15:40:08 -05001750 rt = rcu_dereference_bh(rt->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
David Millerfe736e72017-11-28 15:40:08 -05001796 rt = rcu_dereference_bh(rt->dn_next);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001797 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};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851#endif /* CONFIG_PROC_FS */
1852
1853void __init dn_route_init(void)
1854{
1855 int i, goal, order;
1856
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001857 dn_dst_ops.kmem_cachep =
1858 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001859 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001860 dst_entries_init(&dn_dst_ops);
Kees Cooke99e88a2017-10-16 14:43:17 -07001861 timer_setup(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1863 add_timer(&dn_route_timer);
1864
Arun KSca79b0c2018-12-28 00:34:29 -08001865 goal = totalram_pages() >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 for(order = 0; (1UL << order) < goal; order++)
1868 /* NOTHING */;
1869
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001870 /*
1871 * Only want 1024 entries max, since the table is very, very unlikely
1872 * to be larger than that.
1873 */
1874 while(order && ((((1UL << order) * PAGE_SIZE) /
1875 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1876 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001878 do {
1879 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1880 sizeof(struct dn_rt_hash_bucket);
1881 while(dn_rt_hash_mask & (dn_rt_hash_mask - 1))
1882 dn_rt_hash_mask--;
1883 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1884 __get_free_pages(GFP_ATOMIC, order);
1885 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001888 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001890 printk(KERN_INFO
1891 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1892 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1894
1895 dn_rt_hash_mask--;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001896 for(i = 0; i <= dn_rt_hash_mask; i++) {
1897 spin_lock_init(&dn_rt_hash_table[i].lock);
1898 dn_rt_hash_table[i].chain = NULL;
1899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001901 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Christoph Hellwig44414d82018-04-24 17:05:17 +02001903 proc_create_seq_private("decnet_cache", 0444, init_net.proc_net,
1904 &dn_rt_cache_seq_ops,
1905 sizeof(struct dn_rt_cache_iter_state), NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001906
1907#ifdef CONFIG_DECNET_ROUTER
Florian Westphalc1c502b2017-12-02 21:44:07 +01001908 rtnl_register_module(THIS_MODULE, PF_DECnet, RTM_GETROUTE,
1909 dn_cache_getroute, dn_fib_dump, 0);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001910#else
Florian Westphalc1c502b2017-12-02 21:44:07 +01001911 rtnl_register_module(THIS_MODULE, PF_DECnet, RTM_GETROUTE,
1912 dn_cache_getroute, dn_cache_dump, 0);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001913#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914}
1915
1916void __exit dn_route_cleanup(void)
1917{
1918 del_timer(&dn_route_timer);
YueHaibing0bab1cd2018-08-08 19:59:32 +08001919 dn_run_flush(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Gao fengece31ff2013-02-18 01:34:56 +00001921 remove_proc_entry("decnet_cache", init_net.proc_net);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001922 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}