blob: 7e85f2a1ae2541b093d58e1a4f9c3b224ab5476d [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
Sai Kalyaan Pallab29648a2021-03-20 11:45:12 +053087struct dn_rt_hash_bucket {
Eric Dumazetfc766e4c2010-10-29 03:09:24 +000088 struct dn_route __rcu *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 spinlock_t lock;
Eric Dumazetfca09fb2008-02-07 23:29:57 -080090};
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92extern struct neigh_table dn_neigh_table;
93
94
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +053095static unsigned char dn_hiord_addr[6] = {0xAA, 0x00, 0x04, 0x00, 0x00, 0x00};
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97static const int dn_rt_min_delay = 2 * HZ;
98static const int dn_rt_max_delay = 10 * HZ;
99static const int dn_rt_mtu_expires = 10 * 60 * HZ;
100
101static unsigned long dn_rt_deadline;
102
Daniel Lezcano569d3642008-01-18 03:56:57 -0800103static int dn_dst_gc(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static struct dst_entry *dn_dst_check(struct dst_entry *, __u32);
David S. Miller0dbaee32010-12-13 12:52:14 -0800105static unsigned int dn_dst_default_advmss(const struct dst_entry *dst);
Steffen Klassertebb762f2011-11-23 02:12:51 +0000106static unsigned int dn_dst_mtu(const struct dst_entry *dst);
David S. Miller62fa8a82011-01-26 20:51:05 -0800107static void dn_dst_destroy(struct dst_entry *);
David S. Millerfccd7d52012-07-02 22:22:18 -0700108static void dn_dst_ifdown(struct dst_entry *, struct net_device *dev, int how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static struct dst_entry *dn_dst_negative_advice(struct dst_entry *);
110static void dn_dst_link_failure(struct sk_buff *);
David S. Miller6700c272012-07-17 03:29:28 -0700111static void dn_dst_update_pmtu(struct dst_entry *dst, struct sock *sk,
Hangbin Liubd085ef2019-12-22 10:51:09 +0800112 struct sk_buff *skb , u32 mtu,
113 bool confirm_neigh);
David S. Miller6700c272012-07-17 03:29:28 -0700114static void dn_dst_redirect(struct dst_entry *dst, struct sock *sk,
115 struct sk_buff *skb);
David S. Millerf894cbf2012-07-02 21:52:24 -0700116static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
117 struct sk_buff *skb,
118 const void *daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static int dn_route_input(struct sk_buff *);
Kees Cook24ed9602017-08-28 11:28:21 -0700120static void dn_run_flush(struct timer_list *unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122static struct dn_rt_hash_bucket *dn_rt_hash_table;
Eric Dumazet95c96172012-04-15 05:58:06 +0000123static unsigned int dn_rt_hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125static struct timer_list dn_route_timer;
Kees Cook1d27e3e2017-10-04 16:27:04 -0700126static DEFINE_TIMER(dn_rt_flush_timer, dn_run_flush);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127int decnet_dst_gc_interval = 2;
128
129static struct dst_ops dn_dst_ops = {
130 .family = PF_DECnet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .gc_thresh = 128,
132 .gc = dn_dst_gc,
133 .check = dn_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800134 .default_advmss = dn_dst_default_advmss,
Steffen Klassertebb762f2011-11-23 02:12:51 +0000135 .mtu = dn_dst_mtu,
David S. Miller62fa8a82011-01-26 20:51:05 -0800136 .cow_metrics = dst_cow_metrics_generic,
137 .destroy = dn_dst_destroy,
David S. Millerfccd7d52012-07-02 22:22:18 -0700138 .ifdown = dn_dst_ifdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .negative_advice = dn_dst_negative_advice,
140 .link_failure = dn_dst_link_failure,
141 .update_pmtu = dn_dst_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700142 .redirect = dn_dst_redirect,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700143 .neigh_lookup = dn_dst_neigh_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
David S. Miller62fa8a82011-01-26 20:51:05 -0800146static void dn_dst_destroy(struct dst_entry *dst)
147{
David S. Millerfccd7d52012-07-02 22:22:18 -0700148 struct dn_route *rt = (struct dn_route *) dst;
149
150 if (rt->n)
151 neigh_release(rt->n);
David S. Miller62fa8a82011-01-26 20:51:05 -0800152 dst_destroy_metrics_generic(dst);
153}
154
David S. Millerfccd7d52012-07-02 22:22:18 -0700155static void dn_dst_ifdown(struct dst_entry *dst, struct net_device *dev, int how)
156{
157 if (how) {
158 struct dn_route *rt = (struct dn_route *) dst;
159 struct neighbour *n = rt->n;
160
161 if (n && n->dev == dev) {
162 n->dev = dev_net(dev)->loopback_dev;
163 dev_hold(n->dev);
164 dev_put(dev);
165 }
166 }
167}
168
Eric Dumazet95c96172012-04-15 05:58:06 +0000169static __inline__ unsigned int dn_hash(__le16 src, __le16 dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800171 __u16 tmp = (__u16 __force)(src ^ dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 tmp ^= (tmp >> 3);
173 tmp ^= (tmp >> 5);
174 tmp ^= (tmp >> 10);
Eric Dumazet95c96172012-04-15 05:58:06 +0000175 return dn_rt_hash_mask & (unsigned int)tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Kees Cooke99e88a2017-10-16 14:43:17 -0700178static void dn_dst_check_expire(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 int i;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000181 struct dn_route *rt;
182 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 unsigned long now = jiffies;
184 unsigned long expire = 120 * HZ;
185
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000186 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 rtp = &dn_rt_hash_table[i].chain;
188
189 spin_lock(&dn_rt_hash_table[i].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000190 while ((rt = rcu_dereference_protected(*rtp,
191 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Wei Wang560fd932017-06-17 10:42:39 -0700192 if (atomic_read(&rt->dst.__refcnt) > 1 ||
193 (now - rt->dst.lastuse) < expire) {
David Millerfe736e72017-11-28 15:40:08 -0500194 rtp = &rt->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 continue;
196 }
David Millerfe736e72017-11-28 15:40:08 -0500197 *rtp = rt->dn_next;
198 rt->dn_next = NULL;
Wei Wang560fd932017-06-17 10:42:39 -0700199 dst_dev_put(&rt->dst);
200 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202 spin_unlock(&dn_rt_hash_table[i].lock);
203
204 if ((jiffies - now) > 0)
205 break;
206 }
207
208 mod_timer(&dn_route_timer, now + decnet_dst_gc_interval * HZ);
209}
210
Daniel Lezcano569d3642008-01-18 03:56:57 -0800211static int dn_dst_gc(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000213 struct dn_route *rt;
214 struct dn_route __rcu **rtp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int i;
216 unsigned long now = jiffies;
217 unsigned long expire = 10 * HZ;
218
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000219 for (i = 0; i <= dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 spin_lock_bh(&dn_rt_hash_table[i].lock);
222 rtp = &dn_rt_hash_table[i].chain;
223
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000224 while ((rt = rcu_dereference_protected(*rtp,
225 lockdep_is_held(&dn_rt_hash_table[i].lock))) != NULL) {
Wei Wang560fd932017-06-17 10:42:39 -0700226 if (atomic_read(&rt->dst.__refcnt) > 1 ||
227 (now - rt->dst.lastuse) < expire) {
David Millerfe736e72017-11-28 15:40:08 -0500228 rtp = &rt->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 continue;
230 }
David Millerfe736e72017-11-28 15:40:08 -0500231 *rtp = rt->dn_next;
232 rt->dn_next = NULL;
Wei Wang560fd932017-06-17 10:42:39 -0700233 dst_dev_put(&rt->dst);
234 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
236 }
237 spin_unlock_bh(&dn_rt_hash_table[i].lock);
238 }
239
240 return 0;
241}
242
243/*
244 * The decnet standards don't impose a particular minimum mtu, what they
245 * do insist on is that the routing layer accepts a datagram of at least
246 * 230 bytes long. Here we have to subtract the routing header length from
247 * 230 to get the minimum acceptable mtu. If there is no neighbour, then we
248 * assume the worst and use a long header size.
249 *
250 * We update both the mtu and the advertised mss (i.e. the segment size we
251 * advertise to the other end).
252 */
David S. Miller6700c272012-07-17 03:29:28 -0700253static void dn_dst_update_pmtu(struct dst_entry *dst, struct sock *sk,
Hangbin Liubd085ef2019-12-22 10:51:09 +0800254 struct sk_buff *skb, u32 mtu,
255 bool confirm_neigh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
David S. Millerfccd7d52012-07-02 22:22:18 -0700257 struct dn_route *rt = (struct dn_route *) dst;
258 struct neighbour *n = rt->n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 u32 min_mtu = 230;
David S. Miller69cce1d2011-07-17 23:09:49 -0700260 struct dn_dev *dn;
261
262 dn = n ? rcu_dereference_raw(n->dev->dn_ptr) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 if (dn && dn->use_long == 0)
265 min_mtu -= 6;
266 else
267 min_mtu -= 21;
268
Satoru SATOH5ffc02a2008-05-04 22:14:42 -0700269 if (dst_metric(dst, RTAX_MTU) > mtu && mtu >= min_mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (!(dst_metric_locked(dst, RTAX_MTU))) {
David S. Millerdefb3512010-12-08 21:16:57 -0800271 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 dst_set_expires(dst, dn_rt_mtu_expires);
273 }
274 if (!(dst_metric_locked(dst, RTAX_ADVMSS))) {
275 u32 mss = mtu - DN_MAX_NSP_DATA_HEADER;
David S. Miller0dbaee32010-12-13 12:52:14 -0800276 u32 existing_mss = dst_metric_raw(dst, RTAX_ADVMSS);
277 if (!existing_mss || existing_mss > mss)
David S. Millerdefb3512010-12-08 21:16:57 -0800278 dst_metric_set(dst, RTAX_ADVMSS, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280 }
281}
282
David S. Miller6700c272012-07-17 03:29:28 -0700283static void dn_dst_redirect(struct dst_entry *dst, struct sock *sk,
284 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700285{
286}
287
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900288/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * When a route has been marked obsolete. (e.g. routing cache flush)
290 */
291static struct dst_entry *dn_dst_check(struct dst_entry *dst, __u32 cookie)
292{
293 return NULL;
294}
295
296static struct dst_entry *dn_dst_negative_advice(struct dst_entry *dst)
297{
298 dst_release(dst);
299 return NULL;
300}
301
302static void dn_dst_link_failure(struct sk_buff *skb)
303{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
David S. Millerbef55ae2011-03-12 17:17:10 -0500306static inline int compare_keys(struct flowidn *fl1, struct flowidn *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
David S. Millerbef55ae2011-03-12 17:17:10 -0500308 return ((fl1->daddr ^ fl2->daddr) |
309 (fl1->saddr ^ fl2->saddr) |
310 (fl1->flowidn_mark ^ fl2->flowidn_mark) |
311 (fl1->flowidn_scope ^ fl2->flowidn_scope) |
312 (fl1->flowidn_oif ^ fl2->flowidn_oif) |
313 (fl1->flowidn_iif ^ fl2->flowidn_iif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Eric Dumazet95c96172012-04-15 05:58:06 +0000316static int dn_insert_route(struct dn_route *rt, unsigned int hash, struct dn_route **rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000318 struct dn_route *rth;
319 struct dn_route __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 unsigned long now = jiffies;
321
322 rthp = &dn_rt_hash_table[hash].chain;
323
324 spin_lock_bh(&dn_rt_hash_table[hash].lock);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000325 while ((rth = rcu_dereference_protected(*rthp,
326 lockdep_is_held(&dn_rt_hash_table[hash].lock))) != NULL) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500327 if (compare_keys(&rth->fld, &rt->fld)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /* Put it first */
David Millerfe736e72017-11-28 15:40:08 -0500329 *rthp = rth->dn_next;
330 rcu_assign_pointer(rth->dn_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 dn_rt_hash_table[hash].chain);
332 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
333
Wei Wang0da4af02017-10-13 15:08:07 -0700334 dst_hold_and_use(&rth->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
336
Wei Wang560fd932017-06-17 10:42:39 -0700337 dst_release_immediate(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 *rp = rth;
339 return 0;
340 }
David Millerfe736e72017-11-28 15:40:08 -0500341 rthp = &rth->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
David Millerfe736e72017-11-28 15:40:08 -0500344 rcu_assign_pointer(rt->dn_next, dn_rt_hash_table[hash].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900346
Wei Wang0da4af02017-10-13 15:08:07 -0700347 dst_hold_and_use(&rt->dst, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
349 *rp = rt;
350 return 0;
351}
352
Kees Cook24ed9602017-08-28 11:28:21 -0700353static void dn_run_flush(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 int i;
356 struct dn_route *rt, *next;
357
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000358 for (i = 0; i < dn_rt_hash_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 spin_lock_bh(&dn_rt_hash_table[i].lock);
360
Sai Kalyaan Pallab29648a2021-03-20 11:45:12 +0530361 rt = xchg((struct dn_route **)&dn_rt_hash_table[i].chain, NULL);
362 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 goto nothing_to_declare;
364
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +0530365 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
Sai Kalyaan Pallab29648a2021-03-20 11:45:12 +0530428 skb = skb_unshare(skb, GFP_ATOMIC);
429 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return NET_RX_DROP;
431
432 cb = DN_SKB_CB(skb);
433 /* Skip packet length and point to flags */
434 ptr = skb->data + 2;
435 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
436
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800437 dst = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800439 src = (__le16 *)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 ptr += 2;
441 *ptr = 0; /* Zero hop count */
442
Ilpo Järvinena0bffff2009-03-21 13:36:17 -0700443 swap(*src, *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 skb->pkt_type = PACKET_OUTGOING;
446 dn_rt_finish_output(skb, NULL, NULL);
447 return NET_RX_SUCCESS;
448}
449
450/**
451 * dn_return_long - Return a long packet to its sender
452 * @skb: The long format packet to return
453 *
454 */
455static int dn_return_long(struct sk_buff *skb)
456{
457 struct dn_skb_cb *cb;
458 unsigned char *ptr;
459 unsigned char *src_addr, *dst_addr;
460 unsigned char tmp[ETH_ALEN];
461
462 /* Add back all headers */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700463 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Sai Kalyaan Pallab29648a2021-03-20 11:45:12 +0530465 skb = skb_unshare(skb, GFP_ATOMIC);
466 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return NET_RX_DROP;
468
469 cb = DN_SKB_CB(skb);
470 /* Ignore packet length and point to flags */
471 ptr = skb->data + 2;
472
473 /* Skip padding */
474 if (*ptr & DN_RT_F_PF) {
475 char padlen = (*ptr & ~DN_RT_F_PF);
476 ptr += padlen;
477 }
478
479 *ptr++ = (cb->rt_flags & ~DN_RT_F_RQR) | DN_RT_F_RTS;
480 ptr += 2;
481 dst_addr = ptr;
482 ptr += 8;
483 src_addr = ptr;
484 ptr += 6;
485 *ptr = 0; /* Zero hop count */
486
487 /* Swap source and destination */
488 memcpy(tmp, src_addr, ETH_ALEN);
489 memcpy(src_addr, dst_addr, ETH_ALEN);
490 memcpy(dst_addr, tmp, ETH_ALEN);
491
492 skb->pkt_type = PACKET_OUTGOING;
493 dn_rt_finish_output(skb, dst_addr, src_addr);
494 return NET_RX_SUCCESS;
495}
496
497/**
498 * dn_route_rx_packet - Try and find a route for an incoming packet
Andrew Lunnaff53b22020-07-13 01:15:01 +0200499 * @net: The applicable net namespace
500 * @sk: Socket packet transmitted on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * @skb: The packet to find a route for
502 *
503 * Returns: result of input function if route is found, error code otherwise
504 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500505static int dn_route_rx_packet(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000507 struct dn_skb_cb *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int err;
509
Sai Kalyaan Pallab29648a2021-03-20 11:45:12 +0530510 err = dn_route_input(skb);
511 if (err == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return dst_input(skb);
513
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000514 cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (decnet_debug_level & 4) {
516 char *devname = skb->dev ? skb->dev->name : "???";
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 printk(KERN_DEBUG
519 "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 -0800520 (int)cb->rt_flags, devname, skb->len,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800521 le16_to_cpu(cb->src), le16_to_cpu(cb->dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 err, skb->pkt_type);
523 }
524
525 if ((skb->pkt_type == PACKET_HOST) && (cb->rt_flags & DN_RT_F_RQR)) {
Joe Perches06f8fe12011-07-01 09:43:03 +0000526 switch (cb->rt_flags & DN_RT_PKT_MSK) {
527 case DN_RT_PKT_SHORT:
528 return dn_return_short(skb);
529 case DN_RT_PKT_LONG:
530 return dn_return_long(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532 }
533
534 kfree_skb(skb);
535 return NET_RX_DROP;
536}
537
538static int dn_route_rx_long(struct sk_buff *skb)
539{
540 struct dn_skb_cb *cb = DN_SKB_CB(skb);
541 unsigned char *ptr = skb->data;
542
543 if (!pskb_may_pull(skb, 21)) /* 20 for long header, 1 for shortest nsp */
544 goto drop_it;
545
546 skb_pull(skb, 20);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300547 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900549 /* Destination info */
550 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800551 cb->dst = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900552 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
553 goto drop_it;
554 ptr += 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900557 /* Source info */
558 ptr += 2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800559 cb->src = dn_eth2dn(ptr);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900560 if (memcmp(ptr, dn_hiord_addr, 4) != 0)
561 goto drop_it;
562 ptr += 6;
563 /* Other junk */
564 ptr++;
565 cb->hops = *ptr++; /* Visit Count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500567 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
568 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100569 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571drop_it:
572 kfree_skb(skb);
573 return NET_RX_DROP;
574}
575
576
577
578static int dn_route_rx_short(struct sk_buff *skb)
579{
580 struct dn_skb_cb *cb = DN_SKB_CB(skb);
581 unsigned char *ptr = skb->data;
582
583 if (!pskb_may_pull(skb, 6)) /* 5 for short header + 1 for shortest nsp */
584 goto drop_it;
585
586 skb_pull(skb, 5);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300587 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800589 cb->dst = *(__le16 *)ptr;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900590 ptr += 2;
591 cb->src = *(__le16 *)ptr;
592 ptr += 2;
593 cb->hops = *ptr & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500595 return NF_HOOK(NFPROTO_DECNET, NF_DN_PRE_ROUTING,
596 &init_net, NULL, skb, skb->dev, NULL,
Jan Engelhardt5d877d82010-03-23 04:09:14 +0100597 dn_route_rx_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599drop_it:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900600 kfree_skb(skb);
601 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500604static int dn_route_discard(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 /*
Zheng Yongjun5debe0b2021-06-02 14:55:44 +0800607 * I know we drop the packet here, but that's considered success in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * this case
609 */
610 kfree_skb(skb);
611 return NET_RX_SUCCESS;
612}
613
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500614static int dn_route_ptp_hello(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 dn_dev_hello(skb);
617 dn_neigh_pointopoint_hello(skb);
618 return NET_RX_SUCCESS;
619}
620
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700621int 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 -0700622{
623 struct dn_skb_cb *cb;
624 unsigned char flags = 0;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800625 __u16 len = le16_to_cpu(*(__le16 *)skb->data);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000626 struct dn_dev *dn = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 unsigned char padlen = 0;
628
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700629 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700630 goto dump_it;
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (dn == NULL)
633 goto dump_it;
634
Sai Kalyaan Pallab29648a2021-03-20 11:45:12 +0530635 skb = skb_share_check(skb, GFP_ATOMIC);
636 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 goto out;
638
639 if (!pskb_may_pull(skb, 3))
640 goto dump_it;
641
642 skb_pull(skb, 2);
643
644 if (len > skb->len)
645 goto dump_it;
646
647 skb_trim(skb, len);
648
649 flags = *skb->data;
650
651 cb = DN_SKB_CB(skb);
652 cb->stamp = jiffies;
653 cb->iif = dev->ifindex;
654
655 /*
656 * If we have padding, remove it.
657 */
658 if (flags & DN_RT_F_PF) {
659 padlen = flags & ~DN_RT_F_PF;
660 if (!pskb_may_pull(skb, padlen + 1))
661 goto dump_it;
662 skb_pull(skb, padlen);
663 flags = *skb->data;
664 }
665
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700666 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 /*
669 * Weed out future version DECnet
670 */
671 if (flags & DN_RT_F_VER)
672 goto dump_it;
673
674 cb->rt_flags = flags;
675
676 if (decnet_debug_level & 1)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900677 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 "dn_route_rcv: got 0x%02x from %s [%d %d %d]\n",
Gaurav Singhf9215d6b2020-06-22 23:41:19 -0400679 (int)flags, dev->name, len, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 padlen);
681
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900682 if (flags & DN_RT_PKT_CNTL) {
Herbert Xu364c6ba2006-06-09 16:10:40 -0700683 if (unlikely(skb_linearize(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 goto dump_it;
685
Joe Perches06f8fe12011-07-01 09:43:03 +0000686 switch (flags & DN_RT_CNTL_MSK) {
687 case DN_RT_PKT_INIT:
688 dn_dev_init_pkt(skb);
689 break;
690 case DN_RT_PKT_VERI:
691 dn_dev_veri_pkt(skb);
692 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
695 if (dn->parms.state != DN_DEV_S_RU)
696 goto dump_it;
697
Joe Perches06f8fe12011-07-01 09:43:03 +0000698 switch (flags & DN_RT_CNTL_MSK) {
699 case DN_RT_PKT_HELO:
700 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500701 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000702 dn_route_ptp_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Joe Perches06f8fe12011-07-01 09:43:03 +0000704 case DN_RT_PKT_L1RT:
705 case DN_RT_PKT_L2RT:
706 return NF_HOOK(NFPROTO_DECNET, NF_DN_ROUTE,
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_route_discard);
709 case DN_RT_PKT_ERTH:
710 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500711 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000712 dn_neigh_router_hello);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Joe Perches06f8fe12011-07-01 09:43:03 +0000714 case DN_RT_PKT_EEDH:
715 return NF_HOOK(NFPROTO_DECNET, NF_DN_HELLO,
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500716 &init_net, NULL, skb, skb->dev, NULL,
Joe Perches06f8fe12011-07-01 09:43:03 +0000717 dn_neigh_endnode_hello);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900718 }
719 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (dn->parms.state != DN_DEV_S_RU)
721 goto dump_it;
722
723 skb_pull(skb, 1); /* Pull flags */
724
Joe Perches06f8fe12011-07-01 09:43:03 +0000725 switch (flags & DN_RT_PKT_MSK) {
726 case DN_RT_PKT_LONG:
727 return dn_route_rx_long(skb);
728 case DN_RT_PKT_SHORT:
729 return dn_route_rx_short(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733dump_it:
734 kfree_skb(skb);
735out:
736 return NET_RX_DROP;
737}
738
Eric W. Biedermanede20592015-10-07 16:48:47 -0500739static int dn_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Eric Dumazetadf30902009-06-02 05:19:30 +0000741 struct dst_entry *dst = skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct dn_route *rt = (struct dn_route *)dst;
743 struct net_device *dev = dst->dev;
744 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 int err = -EINVAL;
747
David S. Millerfccd7d52012-07-02 22:22:18 -0700748 if (rt->n == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 goto error;
750
751 skb->dev = dev;
752
753 cb->src = rt->rt_saddr;
754 cb->dst = rt->rt_daddr;
755
756 /*
757 * Always set the Intra-Ethernet bit on all outgoing packets
758 * originated on this node. Only valid flag from upper layers
759 * is return-to-sender-requested. Set hop count to 0 too.
760 */
761 cb->rt_flags &= ~DN_RT_F_RQR;
762 cb->rt_flags |= DN_RT_F_IE;
763 cb->hops = 0;
764
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500765 return NF_HOOK(NFPROTO_DECNET, NF_DN_LOCAL_OUT,
766 &init_net, sk, skb, NULL, dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700767 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769error:
Joe Perchese87cc472012-05-13 21:56:26 +0000770 net_dbg_ratelimited("dn_output: This should not happen\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 kfree_skb(skb);
773
774 return err;
775}
776
777static int dn_forward(struct sk_buff *skb)
778{
779 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000780 struct dst_entry *dst = skb_dst(skb);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000781 struct dn_dev *dn_db = rcu_dereference(dst->dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct dn_route *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 int header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct net_device *dev = skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 if (skb->pkt_type != PACKET_HOST)
787 goto drop;
788
789 /* Ensure that we have enough space for headers */
Eric Dumazetadf30902009-06-02 05:19:30 +0000790 rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 header_len = dn_db->use_long ? 21 : 6;
Changli Gaod8d1f302010-06-10 23:31:35 -0700792 if (skb_cow(skb, LL_RESERVED_SPACE(rt->dst.dev)+header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 goto drop;
794
795 /*
796 * Hop count exceeded.
797 */
798 if (++cb->hops > 30)
799 goto drop;
800
Changli Gaod8d1f302010-06-10 23:31:35 -0700801 skb->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /*
804 * If packet goes out same interface it came in on, then set
805 * the Intra-Ethernet bit. This has no effect for short
806 * packets, so we don't need to test for them here.
807 */
808 cb->rt_flags &= ~DN_RT_F_IE;
809 if (rt->rt_flags & RTCF_DOREDIRECT)
810 cb->rt_flags |= DN_RT_F_IE;
811
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500812 return NF_HOOK(NFPROTO_DECNET, NF_DN_FORWARD,
813 &init_net, NULL, skb, dev, skb->dev,
David S. Miller8f40b162011-07-17 13:34:11 -0700814 dn_to_neigh_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816drop:
817 kfree_skb(skb);
818 return NET_RX_DROP;
819}
820
821/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * Used to catch bugs. This should never normally get
823 * called.
824 */
Eric W. Biedermanede20592015-10-07 16:48:47 -0500825static int dn_rt_bug_out(struct net *net, struct sock *sk, struct sk_buff *skb)
Eric Dumazetaad88722014-04-15 13:47:15 -0400826{
827 struct dn_skb_cb *cb = DN_SKB_CB(skb);
828
829 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
830 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
831
832 kfree_skb(skb);
833
834 return NET_RX_DROP;
835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837static int dn_rt_bug(struct sk_buff *skb)
838{
Joe Perchese87cc472012-05-13 21:56:26 +0000839 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Joe Perchese87cc472012-05-13 21:56:26 +0000841 net_dbg_ratelimited("dn_rt_bug: skb from:%04x to:%04x\n",
842 le16_to_cpu(cb->src), le16_to_cpu(cb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 kfree_skb(skb);
845
Florian Westphal0e8635a2009-06-20 00:53:25 +0000846 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
David S. Miller0dbaee32010-12-13 12:52:14 -0800849static unsigned int dn_dst_default_advmss(const struct dst_entry *dst)
850{
851 return dn_mss_from_pmtu(dst->dev, dst_mtu(dst));
852}
853
Steffen Klassertebb762f2011-11-23 02:12:51 +0000854static unsigned int dn_dst_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -0800855{
Steffen Klassert618f9bc2011-11-23 02:13:31 +0000856 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
857
858 return mtu ? : dst->dev->mtu;
David S. Millerd33e4552010-12-14 13:01:14 -0800859}
860
David S. Millerf894cbf2012-07-02 21:52:24 -0700861static struct neighbour *dn_dst_neigh_lookup(const struct dst_entry *dst,
862 struct sk_buff *skb,
863 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700864{
865 return __neigh_lookup_errno(&dn_neigh_table, daddr, dst->dev);
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868static int dn_rt_set_next_hop(struct dn_route *rt, struct dn_fib_res *res)
869{
870 struct dn_fib_info *fi = res->fi;
Changli Gaod8d1f302010-06-10 23:31:35 -0700871 struct net_device *dev = rt->dst.dev;
David S. Miller62fa8a82011-01-26 20:51:05 -0800872 unsigned int mss_metric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 if (fi) {
876 if (DN_FIB_RES_GW(*res) &&
877 DN_FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
878 rt->rt_gateway = DN_FIB_RES_GW(*res);
David S. Miller62fa8a82011-01-26 20:51:05 -0800879 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881 rt->rt_type = res->type;
882
David S. Millerfccd7d52012-07-02 22:22:18 -0700883 if (dev != NULL && rt->n == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 n = __neigh_lookup_errno(&dn_neigh_table, &rt->rt_gateway, dev);
885 if (IS_ERR(n))
886 return PTR_ERR(n);
David S. Millerfccd7d52012-07-02 22:22:18 -0700887 rt->n = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
889
David S. Millerd33e4552010-12-14 13:01:14 -0800890 if (dst_metric(&rt->dst, RTAX_MTU) > rt->dst.dev->mtu)
David S. Millerdefb3512010-12-08 21:16:57 -0800891 dst_metric_set(&rt->dst, RTAX_MTU, rt->dst.dev->mtu);
David S. Miller62fa8a82011-01-26 20:51:05 -0800892 mss_metric = dst_metric_raw(&rt->dst, RTAX_ADVMSS);
893 if (mss_metric) {
David S. Miller0dbaee32010-12-13 12:52:14 -0800894 unsigned int mss = dn_mss_from_pmtu(dev, dst_mtu(&rt->dst));
David S. Miller62fa8a82011-01-26 20:51:05 -0800895 if (mss_metric > mss)
David S. Miller0dbaee32010-12-13 12:52:14 -0800896 dst_metric_set(&rt->dst, RTAX_ADVMSS, mss);
897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return 0;
899}
900
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800901static inline int dn_match_addr(__le16 addr1, __le16 addr2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800903 __u16 tmp = le16_to_cpu(addr1) ^ le16_to_cpu(addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 int match = 16;
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +0530905 while (tmp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 tmp >>= 1;
907 match--;
908 }
909 return match;
910}
911
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800912static __le16 dnet_select_source(const struct net_device *dev, __le16 daddr, int scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800914 __le16 saddr = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000915 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 struct dn_ifaddr *ifa;
917 int best_match = 0;
918 int ret;
919
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000920 rcu_read_lock();
921 dn_db = rcu_dereference(dev->dn_ptr);
922 for (ifa = rcu_dereference(dn_db->ifa_list);
923 ifa != NULL;
924 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (ifa->ifa_scope > scope)
926 continue;
927 if (!daddr) {
928 saddr = ifa->ifa_local;
929 break;
930 }
931 ret = dn_match_addr(daddr, ifa->ifa_local);
932 if (ret > best_match)
933 saddr = ifa->ifa_local;
934 if (best_match == 0)
935 saddr = ifa->ifa_local;
936 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000937 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 return saddr;
940}
941
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800942static inline __le16 __dn_fib_res_prefsrc(struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 return dnet_select_source(DN_FIB_RES_DEV(*res), DN_FIB_RES_GW(*res), res->scope);
945}
946
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800947static inline __le16 dn_fib_rules_map_destination(__le16 daddr, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800949 __le16 mask = dnet_make_mask(res->prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return (daddr&~mask)|res->fi->fib_nh->nh_gw;
951}
952
David S. Millerbef55ae2011-03-12 17:17:10 -0500953static int dn_route_output_slow(struct dst_entry **pprt, const struct flowidn *oldflp, int try_hard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
David S. Millerbef55ae2011-03-12 17:17:10 -0500955 struct flowidn fld = {
956 .daddr = oldflp->daddr,
957 .saddr = oldflp->saddr,
958 .flowidn_scope = RT_SCOPE_UNIVERSE,
959 .flowidn_mark = oldflp->flowidn_mark,
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000960 .flowidn_iif = LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500961 .flowidn_oif = oldflp->flowidn_oif,
David S. Miller1d28f422011-03-12 00:29:39 -0500962 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 struct dn_route *rt = NULL;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700964 struct net_device *dev_out = NULL, *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +0000966 unsigned int hash;
967 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNICAST };
969 int err;
970 int free_res = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800971 __le16 gateway = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 if (decnet_debug_level & 16)
974 printk(KERN_DEBUG
975 "dn_route_output_slow: dst=%04x src=%04x mark=%d"
David S. Millerbef55ae2011-03-12 17:17:10 -0500976 " iif=%d oif=%d\n", le16_to_cpu(oldflp->daddr),
977 le16_to_cpu(oldflp->saddr),
Pavel Emelyanov1fb94892012-08-08 21:53:36 +0000978 oldflp->flowidn_mark, LOOPBACK_IFINDEX,
David S. Millerbef55ae2011-03-12 17:17:10 -0500979 oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 /* If we have an output interface, verify its a DECnet device */
David S. Millerbef55ae2011-03-12 17:17:10 -0500982 if (oldflp->flowidn_oif) {
983 dev_out = dev_get_by_index(&init_net, oldflp->flowidn_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 err = -ENODEV;
985 if (dev_out && dev_out->dn_ptr == NULL) {
986 dev_put(dev_out);
987 dev_out = NULL;
988 }
989 if (dev_out == NULL)
990 goto out;
991 }
992
993 /* If we have a source address, verify that its a local address */
David S. Millerbef55ae2011-03-12 17:17:10 -0500994 if (oldflp->saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 err = -EADDRNOTAVAIL;
996
997 if (dev_out) {
David S. Millerbef55ae2011-03-12 17:17:10 -0500998 if (dn_dev_islocal(dev_out, oldflp->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto source_ok;
1000 dev_put(dev_out);
1001 goto out;
1002 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001003 rcu_read_lock();
1004 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001005 if (!dev->dn_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 continue;
David S. Millerbef55ae2011-03-12 17:17:10 -05001007 if (!dn_dev_islocal(dev, oldflp->saddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001008 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001009 if ((dev->flags & IFF_LOOPBACK) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001010 oldflp->daddr &&
1011 !dn_dev_islocal(dev, oldflp->daddr))
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001012 continue;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001013
1014 dev_out = dev;
Patrick Caulfield9bbf28a12006-08-02 14:14:44 -07001015 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001017 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (dev_out == NULL)
1019 goto out;
1020 dev_hold(dev_out);
1021source_ok:
1022 ;
1023 }
1024
1025 /* No destination? Assume its local */
David S. Millerbef55ae2011-03-12 17:17:10 -05001026 if (!fld.daddr) {
1027 fld.daddr = fld.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Yajun Deng1160dfa2021-08-05 19:55:27 +08001029 dev_put(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001030 err = -EINVAL;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001031 dev_out = init_net.loopback_dev;
David S. Millera36a0d42016-04-10 23:01:30 -04001032 if (!dev_out->dn_ptr)
1033 goto out;
1034 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 dev_hold(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001036 if (!fld.daddr) {
1037 fld.daddr =
1038 fld.saddr = dnet_select_source(dev_out, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 RT_SCOPE_HOST);
David S. Millerbef55ae2011-03-12 17:17:10 -05001040 if (!fld.daddr)
Vadim Fedorenko3f96d642021-01-26 03:02:14 +03001041 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
Pavel Emelyanov1fb94892012-08-08 21:53:36 +00001043 fld.flowidn_oif = LOOPBACK_IFINDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 res.type = RTN_LOCAL;
1045 goto make_route;
1046 }
1047
1048 if (decnet_debug_level & 16)
1049 printk(KERN_DEBUG
1050 "dn_route_output_slow: initial checks complete."
Rasmus Villemoes46b9e4b2015-02-23 12:02:51 +01001051 " dst=%04x src=%04x oif=%d try_hard=%d\n",
David S. Millerbef55ae2011-03-12 17:17:10 -05001052 le16_to_cpu(fld.daddr), le16_to_cpu(fld.saddr),
1053 fld.flowidn_oif, try_hard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 /*
1056 * N.B. If the kernel is compiled without router support then
1057 * dn_fib_lookup() will evaluate to non-zero so this if () block
1058 * will always be executed.
1059 */
1060 err = -ESRCH;
David S. Millerbef55ae2011-03-12 17:17:10 -05001061 if (try_hard || (err = dn_fib_lookup(&fld, &res)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 struct dn_dev *dn_db;
1063 if (err != -ESRCH)
1064 goto out;
1065 /*
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001066 * Here the fallback is basically the standard algorithm for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 * routing in endnodes which is described in the DECnet routing
1068 * docs
1069 *
1070 * If we are not trying hard, look in neighbour cache.
1071 * The result is tested to ensure that if a specific output
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001072 * device/source address was requested, then we honour that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 * here
1074 */
1075 if (!try_hard) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001076 neigh = neigh_lookup_nodev(&dn_neigh_table, &init_net, &fld.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (neigh) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001078 if ((oldflp->flowidn_oif &&
1079 (neigh->dev->ifindex != oldflp->flowidn_oif)) ||
1080 (oldflp->saddr &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 (!dn_dev_islocal(neigh->dev,
David S. Millerbef55ae2011-03-12 17:17:10 -05001082 oldflp->saddr)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 neigh_release(neigh);
1084 neigh = NULL;
1085 } else {
Yajun Deng1160dfa2021-08-05 19:55:27 +08001086 dev_put(dev_out);
David S. Millerbef55ae2011-03-12 17:17:10 -05001087 if (dn_dev_islocal(neigh->dev, fld.daddr)) {
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001088 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 res.type = RTN_LOCAL;
1090 } else {
1091 dev_out = neigh->dev;
1092 }
1093 dev_hold(dev_out);
1094 goto select_source;
1095 }
1096 }
1097 }
1098
1099 /* Not there? Perhaps its a local address */
1100 if (dev_out == NULL)
1101 dev_out = dn_dev_get_default();
1102 err = -ENODEV;
1103 if (dev_out == NULL)
1104 goto out;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001105 dn_db = rcu_dereference_raw(dev_out->dn_ptr);
David S. Millera36a0d42016-04-10 23:01:30 -04001106 if (!dn_db)
1107 goto e_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* Possible improvement - check all devices for local addr */
David S. Millerbef55ae2011-03-12 17:17:10 -05001109 if (dn_dev_islocal(dev_out, fld.daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001111 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 dev_hold(dev_out);
1113 res.type = RTN_LOCAL;
1114 goto select_source;
1115 }
1116 /* Not local either.... try sending it to the default router */
1117 neigh = neigh_clone(dn_db->router);
1118 BUG_ON(neigh && neigh->dev != dev_out);
1119
1120 /* Ok then, we assume its directly connected and move on */
1121select_source:
1122 if (neigh)
1123 gateway = ((struct dn_neigh *)neigh)->addr;
1124 if (gateway == 0)
David S. Millerbef55ae2011-03-12 17:17:10 -05001125 gateway = fld.daddr;
1126 if (fld.saddr == 0) {
1127 fld.saddr = dnet_select_source(dev_out, gateway,
1128 res.type == RTN_LOCAL ?
1129 RT_SCOPE_HOST :
1130 RT_SCOPE_LINK);
1131 if (fld.saddr == 0 && res.type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 goto e_addr;
1133 }
David S. Millerbef55ae2011-03-12 17:17:10 -05001134 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 goto make_route;
1136 }
1137 free_res = 1;
1138
1139 if (res.type == RTN_NAT)
1140 goto e_inval;
1141
1142 if (res.type == RTN_LOCAL) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001143 if (!fld.saddr)
1144 fld.saddr = fld.daddr;
Yajun Deng1160dfa2021-08-05 19:55:27 +08001145 dev_put(dev_out);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07001146 dev_out = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 dev_hold(dev_out);
David S. Millera36a0d42016-04-10 23:01:30 -04001148 if (!dev_out->dn_ptr)
1149 goto e_inval;
David S. Millerbef55ae2011-03-12 17:17:10 -05001150 fld.flowidn_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (res.fi)
1152 dn_fib_info_put(res.fi);
1153 res.fi = NULL;
1154 goto make_route;
1155 }
1156
David S. Millerbef55ae2011-03-12 17:17:10 -05001157 if (res.fi->fib_nhs > 1 && fld.flowidn_oif == 0)
1158 dn_fib_select_multipath(&fld, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001160 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 * We could add some logic to deal with default routes here and
1162 * get rid of some of the special casing above.
1163 */
1164
David S. Millerbef55ae2011-03-12 17:17:10 -05001165 if (!fld.saddr)
1166 fld.saddr = DN_FIB_RES_PREFSRC(res);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001167
Yajun Deng1160dfa2021-08-05 19:55:27 +08001168 dev_put(dev_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 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);
Yajun Deng1160dfa2021-08-05 19:55:27 +08001221 dev_put(dev_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222out:
1223 return err;
1224
1225e_addr:
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001226 err = -EADDRNOTAVAIL;
1227 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228e_inval:
1229 err = -EINVAL;
1230 goto done;
1231e_nobufs:
1232 err = -ENOBUFS;
1233 goto done;
1234e_neighbour:
Wei Wang560fd932017-06-17 10:42:39 -07001235 dst_release_immediate(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 goto e_nobufs;
1237}
1238
1239
1240/*
1241 * N.B. The flags may be moved into the flowi at some future stage.
1242 */
David S. Millerbef55ae2011-03-12 17:17:10 -05001243static int __dn_route_output_key(struct dst_entry **pprt, const struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Eric Dumazet95c96172012-04-15 05:58:06 +00001245 unsigned int hash = dn_hash(flp->saddr, flp->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 struct dn_route *rt = NULL;
1247
1248 if (!(flags & MSG_TRYHARD)) {
1249 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001250 for (rt = rcu_dereference_bh(dn_rt_hash_table[hash].chain); rt;
David Millerfe736e72017-11-28 15:40:08 -05001251 rt = rcu_dereference_bh(rt->dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001252 if ((flp->daddr == rt->fld.daddr) &&
1253 (flp->saddr == rt->fld.saddr) &&
1254 (flp->flowidn_mark == rt->fld.flowidn_mark) &&
David S. Millerc7537962010-11-11 17:07:48 -08001255 dn_is_output_route(rt) &&
David S. Millerbef55ae2011-03-12 17:17:10 -05001256 (rt->fld.flowidn_oif == flp->flowidn_oif)) {
Wei Wang0da4af02017-10-13 15:08:07 -07001257 dst_hold_and_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 rcu_read_unlock_bh();
Changli Gaod8d1f302010-06-10 23:31:35 -07001259 *pprt = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return 0;
1261 }
1262 }
1263 rcu_read_unlock_bh();
1264 }
1265
1266 return dn_route_output_slow(pprt, flp, flags);
1267}
1268
David S. Millerbef55ae2011-03-12 17:17:10 -05001269static int dn_route_output_key(struct dst_entry **pprt, struct flowidn *flp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 int err;
1272
1273 err = __dn_route_output_key(pprt, flp, flags);
David S. Millerbef55ae2011-03-12 17:17:10 -05001274 if (err == 0 && flp->flowidn_proto) {
1275 *pprt = xfrm_lookup(&init_net, *pprt,
1276 flowidn_to_flowi(flp), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001277 if (IS_ERR(*pprt)) {
1278 err = PTR_ERR(*pprt);
1279 *pprt = NULL;
1280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282 return err;
1283}
1284
Cong Wangcec771d2013-01-22 21:09:50 +00001285int dn_route_output_sock(struct dst_entry __rcu **pprt, struct flowidn *fl, struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 int err;
1288
1289 err = __dn_route_output_key(pprt, fl, flags & MSG_TRYHARD);
David S. Millerbef55ae2011-03-12 17:17:10 -05001290 if (err == 0 && fl->flowidn_proto) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001291 *pprt = xfrm_lookup(&init_net, *pprt,
1292 flowidn_to_flowi(fl), sk, 0);
David S. Miller452edd52011-03-02 13:27:41 -08001293 if (IS_ERR(*pprt)) {
1294 err = PTR_ERR(*pprt);
1295 *pprt = NULL;
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 return err;
1299}
1300
1301static int dn_route_input_slow(struct sk_buff *skb)
1302{
1303 struct dn_route *rt = NULL;
1304 struct dn_skb_cb *cb = DN_SKB_CB(skb);
1305 struct net_device *in_dev = skb->dev;
1306 struct net_device *out_dev = NULL;
1307 struct dn_dev *dn_db;
1308 struct neighbour *neigh = NULL;
Eric Dumazet95c96172012-04-15 05:58:06 +00001309 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 int flags = 0;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001311 __le16 gateway = 0;
1312 __le16 local_src = 0;
David S. Millerbef55ae2011-03-12 17:17:10 -05001313 struct flowidn fld = {
1314 .daddr = cb->dst,
1315 .saddr = cb->src,
1316 .flowidn_scope = RT_SCOPE_UNIVERSE,
1317 .flowidn_mark = skb->mark,
1318 .flowidn_iif = skb->dev->ifindex,
David S. Miller1d28f422011-03-12 00:29:39 -05001319 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 struct dn_fib_res res = { .fi = NULL, .type = RTN_UNREACHABLE };
1321 int err = -EINVAL;
1322 int free_res = 0;
1323
1324 dev_hold(in_dev);
1325
Sai Kalyaan Pallab29648a2021-03-20 11:45:12 +05301326 dn_db = rcu_dereference(in_dev->dn_ptr);
1327 if (!dn_db)
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
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301386 switch (res.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 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);
Yajun Deng1160dfa2021-08-05 19:55:27 +08001501 dev_put(out_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502out:
1503 return err;
1504
1505e_inval:
1506 err = -EINVAL;
1507 goto done;
1508
1509e_nobufs:
1510 err = -ENOBUFS;
1511 goto done;
1512
1513e_neighbour:
Wei Wang560fd932017-06-17 10:42:39 -07001514 dst_release_immediate(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 goto done;
1516}
1517
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001518static int dn_route_input(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 struct dn_route *rt;
1521 struct dn_skb_cb *cb = DN_SKB_CB(skb);
Eric Dumazet95c96172012-04-15 05:58:06 +00001522 unsigned int hash = dn_hash(cb->src, cb->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Eric Dumazetadf30902009-06-02 05:19:30 +00001524 if (skb_dst(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return 0;
1526
1527 rcu_read_lock();
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301528 for (rt = rcu_dereference(dn_rt_hash_table[hash].chain); rt != NULL;
David Millerfe736e72017-11-28 15:40:08 -05001529 rt = rcu_dereference(rt->dn_next)) {
David S. Millerbef55ae2011-03-12 17:17:10 -05001530 if ((rt->fld.saddr == cb->src) &&
1531 (rt->fld.daddr == cb->dst) &&
1532 (rt->fld.flowidn_oif == 0) &&
1533 (rt->fld.flowidn_mark == skb->mark) &&
1534 (rt->fld.flowidn_iif == cb->iif)) {
Wei Wang0da4af02017-10-13 15:08:07 -07001535 dst_hold_and_use(&rt->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 rcu_read_unlock();
Eric Dumazetadf30902009-06-02 05:19:30 +00001537 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return 0;
1539 }
1540 }
1541 rcu_read_unlock();
1542
1543 return dn_route_input_slow(skb);
1544}
1545
Eric W. Biederman15e47302012-09-07 20:12:54 +00001546static int dn_rt_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07001547 int event, int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Eric Dumazetadf30902009-06-02 05:19:30 +00001549 struct dn_route *rt = (struct dn_route *)skb_dst(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 struct rtmsg *r;
1551 struct nlmsghdr *nlh;
Thomas Grafe3703b32006-11-27 09:27:07 -08001552 long expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Eric W. Biederman15e47302012-09-07 20:12:54 +00001554 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*r), flags);
David S. Miller737100e2012-06-26 21:46:19 -07001555 if (!nlh)
Thomas Graf6b609782012-06-26 23:36:15 +00001556 return -EMSGSIZE;
1557
David S. Miller737100e2012-06-26 21:46:19 -07001558 r = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 r->rtm_family = AF_DECnet;
1560 r->rtm_dst_len = 16;
1561 r->rtm_src_len = 0;
1562 r->rtm_tos = 0;
1563 r->rtm_table = RT_TABLE_MAIN;
1564 r->rtm_type = rt->rt_type;
1565 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
1566 r->rtm_scope = RT_SCOPE_UNIVERSE;
1567 r->rtm_protocol = RTPROT_UNSPEC;
Thomas Graf6b609782012-06-26 23:36:15 +00001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (rt->rt_flags & RTCF_NOTIFY)
1570 r->rtm_flags |= RTM_F_NOTIFY;
Thomas Graf6b609782012-06-26 23:36:15 +00001571
1572 if (nla_put_u32(skb, RTA_TABLE, RT_TABLE_MAIN) < 0 ||
1573 nla_put_le16(skb, RTA_DST, rt->rt_daddr) < 0)
1574 goto errout;
1575
David S. Millerbef55ae2011-03-12 17:17:10 -05001576 if (rt->fld.saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 r->rtm_src_len = 16;
Thomas Graf6b609782012-06-26 23:36:15 +00001578 if (nla_put_le16(skb, RTA_SRC, rt->fld.saddr) < 0)
1579 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
Thomas Graf6b609782012-06-26 23:36:15 +00001581 if (rt->dst.dev &&
1582 nla_put_u32(skb, RTA_OIF, rt->dst.dev->ifindex) < 0)
1583 goto errout;
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /*
1586 * Note to self - change this if input routes reverse direction when
1587 * they deal only with inputs and not with replies like they do
1588 * currently.
1589 */
Thomas Graf6b609782012-06-26 23:36:15 +00001590 if (nla_put_le16(skb, RTA_PREFSRC, rt->rt_local_src) < 0)
1591 goto errout;
1592
1593 if (rt->rt_daddr != rt->rt_gateway &&
1594 nla_put_le16(skb, RTA_GATEWAY, rt->rt_gateway) < 0)
1595 goto errout;
1596
David S. Millerdefb3512010-12-08 21:16:57 -08001597 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001598 goto errout;
1599
Changli Gaod8d1f302010-06-10 23:31:35 -07001600 expires = rt->dst.expires ? rt->dst.expires - jiffies : 0;
David S. Miller87a50692012-07-10 05:06:14 -07001601 if (rtnl_put_cacheinfo(skb, &rt->dst, 0, expires,
Changli Gaod8d1f302010-06-10 23:31:35 -07001602 rt->dst.error) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +00001603 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Thomas Graf6b609782012-06-26 23:36:15 +00001605 if (dn_is_input_route(rt) &&
1606 nla_put_u32(skb, RTA_IIF, rt->fld.flowidn_iif) < 0)
1607 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Johannes Berg053c0952015-01-16 22:09:00 +01001609 nlmsg_end(skb, nlh);
1610 return 0;
Thomas Graf6b609782012-06-26 23:36:15 +00001611
1612errout:
1613 nlmsg_cancel(skb, nlh);
1614 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615}
1616
Thomas Graf2fa70df2013-03-22 16:50:29 +00001617const struct nla_policy rtm_dn_policy[RTA_MAX + 1] = {
1618 [RTA_DST] = { .type = NLA_U16 },
1619 [RTA_SRC] = { .type = NLA_U16 },
1620 [RTA_IIF] = { .type = NLA_U32 },
1621 [RTA_OIF] = { .type = NLA_U32 },
1622 [RTA_GATEWAY] = { .type = NLA_U16 },
1623 [RTA_PRIORITY] = { .type = NLA_U32 },
1624 [RTA_PREFSRC] = { .type = NLA_U16 },
1625 [RTA_METRICS] = { .type = NLA_NESTED },
1626 [RTA_MULTIPATH] = { .type = NLA_NESTED },
1627 [RTA_TABLE] = { .type = NLA_U32 },
1628 [RTA_MARK] = { .type = NLA_U32 },
1629};
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631/*
1632 * This is called by both endnodes and routers now.
1633 */
David Ahernc21ef3e2017-04-16 09:48:24 -07001634static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh,
1635 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001637 struct net *net = sock_net(in_skb->sk);
David S. Miller737100e2012-06-26 21:46:19 -07001638 struct rtmsg *rtm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 struct dn_route *rt = NULL;
1640 struct dn_skb_cb *cb;
1641 int err;
1642 struct sk_buff *skb;
David S. Millerbef55ae2011-03-12 17:17:10 -05001643 struct flowidn fld;
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001644 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001646 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001647 return -EINVAL;
1648
Johannes Berg8cb08172019-04-26 14:07:28 +02001649 err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX,
1650 rtm_dn_policy, extack);
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001651 if (err < 0)
1652 return err;
1653
David S. Millerbef55ae2011-03-12 17:17:10 -05001654 memset(&fld, 0, sizeof(fld));
1655 fld.flowidn_proto = DNPROTO_NSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Thomas Graf6b609782012-06-26 23:36:15 +00001657 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (skb == NULL)
1659 return -ENOBUFS;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001660 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 cb = DN_SKB_CB(skb);
1662
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001663 if (tb[RTA_SRC])
1664 fld.saddr = nla_get_le16(tb[RTA_SRC]);
1665
1666 if (tb[RTA_DST])
1667 fld.daddr = nla_get_le16(tb[RTA_DST]);
1668
1669 if (tb[RTA_IIF])
1670 fld.flowidn_iif = nla_get_u32(tb[RTA_IIF]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
David S. Millerbef55ae2011-03-12 17:17:10 -05001672 if (fld.flowidn_iif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 struct net_device *dev;
Ying Xued4c5fba2014-01-15 10:23:40 +08001674 dev = __dev_get_by_index(&init_net, fld.flowidn_iif);
1675 if (!dev || !dev->dn_ptr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 kfree_skb(skb);
1677 return -ENODEV;
1678 }
YOSHIFUJI Hideakib98999d2007-12-12 03:51:49 +09001679 skb->protocol = htons(ETH_P_DNA_RT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 skb->dev = dev;
David S. Millerbef55ae2011-03-12 17:17:10 -05001681 cb->src = fld.saddr;
1682 cb->dst = fld.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 local_bh_disable();
1684 err = dn_route_input(skb);
1685 local_bh_enable();
1686 memset(cb, 0, sizeof(struct dn_skb_cb));
Eric Dumazetadf30902009-06-02 05:19:30 +00001687 rt = (struct dn_route *)skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001688 if (!err && -rt->dst.error)
1689 err = rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 } else {
Thomas Graf58d7d8f2013-03-21 07:45:28 +00001691 if (tb[RTA_OIF])
1692 fld.flowidn_oif = nla_get_u32(tb[RTA_OIF]);
1693
David S. Millerbef55ae2011-03-12 17:17:10 -05001694 err = dn_route_output_key((struct dst_entry **)&rt, &fld, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 skb->dev = NULL;
1698 if (err)
1699 goto out_free;
Changli Gaod8d1f302010-06-10 23:31:35 -07001700 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (rtm->rtm_flags & RTM_F_NOTIFY)
1702 rt->rt_flags |= RTCF_NOTIFY;
1703
Eric W. Biederman15e47302012-09-07 20:12:54 +00001704 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 -07001705 if (err < 0) {
1706 err = -EMSGSIZE;
1707 goto out_free;
1708 }
1709
Eric W. Biederman15e47302012-09-07 20:12:54 +00001710 return rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712out_free:
1713 kfree_skb(skb);
1714 return err;
1715}
1716
1717/*
1718 * For routers, this is called from dn_fib_dump, but for endnodes its
1719 * called directly from the rtnetlink dispatch table.
1720 */
1721int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb)
1722{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001723 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 struct dn_route *rt;
1725 int h, s_h;
1726 int idx, s_idx;
Thomas Graf6b609782012-06-26 23:36:15 +00001727 struct rtmsg *rtm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001729 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +11001730 return 0;
1731
Thomas Graf6b609782012-06-26 23:36:15 +00001732 if (nlmsg_len(cb->nlh) < sizeof(struct rtmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return -EINVAL;
Thomas Graf6b609782012-06-26 23:36:15 +00001734
1735 rtm = nlmsg_data(cb->nlh);
1736 if (!(rtm->rtm_flags & RTM_F_CLONED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return 0;
1738
1739 s_h = cb->args[0];
1740 s_idx = idx = cb->args[1];
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301741 for (h = 0; h <= dn_rt_hash_mask; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (h < s_h)
1743 continue;
1744 if (h > s_h)
1745 s_idx = 0;
1746 rcu_read_lock_bh();
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301747 for (rt = rcu_dereference_bh(dn_rt_hash_table[h].chain), idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 rt;
David Millerfe736e72017-11-28 15:40:08 -05001749 rt = rcu_dereference_bh(rt->dn_next), idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (idx < s_idx)
1751 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07001752 skb_dst_set(skb, dst_clone(&rt->dst));
Eric W. Biederman15e47302012-09-07 20:12:54 +00001753 if (dn_rt_fill_info(skb, NETLINK_CB(cb->skb).portid,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001754 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
David S. Miller7b46a642015-01-18 23:36:08 -05001755 1, NLM_F_MULTI) < 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00001756 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 rcu_read_unlock_bh();
1758 goto done;
1759 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001760 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 rcu_read_unlock_bh();
1763 }
1764
1765done:
1766 cb->args[0] = h;
1767 cb->args[1] = idx;
1768 return skb->len;
1769}
1770
1771#ifdef CONFIG_PROC_FS
1772struct dn_rt_cache_iter_state {
1773 int bucket;
1774};
1775
1776static struct dn_route *dn_rt_cache_get_first(struct seq_file *seq)
1777{
1778 struct dn_route *rt = NULL;
1779 struct dn_rt_cache_iter_state *s = seq->private;
1780
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301781 for (s->bucket = dn_rt_hash_mask; s->bucket >= 0; --s->bucket) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08001783 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (rt)
1785 break;
1786 rcu_read_unlock_bh();
1787 }
Paul E. McKenneya898def2010-02-22 17:04:49 -08001788 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
1790
1791static struct dn_route *dn_rt_cache_get_next(struct seq_file *seq, struct dn_route *rt)
1792{
Eric Dumazet0d89d792008-01-10 22:35:21 -08001793 struct dn_rt_cache_iter_state *s = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
David Millerfe736e72017-11-28 15:40:08 -05001795 rt = rcu_dereference_bh(rt->dn_next);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001796 while (!rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 rcu_read_unlock_bh();
1798 if (--s->bucket < 0)
1799 break;
1800 rcu_read_lock_bh();
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001801 rt = rcu_dereference_bh(dn_rt_hash_table[s->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001803 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
1806static void *dn_rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
1807{
1808 struct dn_route *rt = dn_rt_cache_get_first(seq);
1809
1810 if (rt) {
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301811 while (*pos && (rt = dn_rt_cache_get_next(seq, rt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 --*pos;
1813 }
1814 return *pos ? NULL : rt;
1815}
1816
1817static void *dn_rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1818{
1819 struct dn_route *rt = dn_rt_cache_get_next(seq, v);
1820 ++*pos;
1821 return rt;
1822}
1823
1824static void dn_rt_cache_seq_stop(struct seq_file *seq, void *v)
1825{
1826 if (v)
1827 rcu_read_unlock_bh();
1828}
1829
1830static int dn_rt_cache_seq_show(struct seq_file *seq, void *v)
1831{
1832 struct dn_route *rt = v;
1833 char buf1[DN_ASCBUF_LEN], buf2[DN_ASCBUF_LEN];
1834
1835 seq_printf(seq, "%-8s %-7s %-7s %04d %04d %04d\n",
David S. Miller794785b2012-07-10 00:52:56 -07001836 rt->dst.dev ? rt->dst.dev->name : "*",
1837 dn_addr2asc(le16_to_cpu(rt->rt_daddr), buf1),
1838 dn_addr2asc(le16_to_cpu(rt->rt_saddr), buf2),
1839 atomic_read(&rt->dst.__refcnt),
1840 rt->dst.__use, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return 0;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001842}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001844static const struct seq_operations dn_rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 .start = dn_rt_cache_seq_start,
1846 .next = dn_rt_cache_seq_next,
1847 .stop = dn_rt_cache_seq_stop,
1848 .show = dn_rt_cache_seq_show,
1849};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850#endif /* CONFIG_PROC_FS */
1851
1852void __init dn_route_init(void)
1853{
1854 int i, goal, order;
1855
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07001856 dn_dst_ops.kmem_cachep =
1857 kmem_cache_create("dn_dst_cache", sizeof(struct dn_route), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001858 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001859 dst_entries_init(&dn_dst_ops);
Kees Cooke99e88a2017-10-16 14:43:17 -07001860 timer_setup(&dn_route_timer, dn_dst_check_expire, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 dn_route_timer.expires = jiffies + decnet_dst_gc_interval * HZ;
1862 add_timer(&dn_route_timer);
1863
Arun KSca79b0c2018-12-28 00:34:29 -08001864 goal = totalram_pages() >> (26 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301866 for (order = 0; (1UL << order) < goal; order++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* NOTHING */;
1868
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001869 /*
1870 * Only want 1024 entries max, since the table is very, very unlikely
1871 * to be larger than that.
1872 */
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301873 while (order && ((((1UL << order) * PAGE_SIZE) /
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001874 sizeof(struct dn_rt_hash_bucket)) >= 2048))
1875 order--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001877 do {
1878 dn_rt_hash_mask = (1UL << order) * PAGE_SIZE /
1879 sizeof(struct dn_rt_hash_bucket);
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301880 while (dn_rt_hash_mask & (dn_rt_hash_mask - 1))
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001881 dn_rt_hash_mask--;
1882 dn_rt_hash_table = (struct dn_rt_hash_bucket *)
1883 __get_free_pages(GFP_ATOMIC, order);
1884 } while (dn_rt_hash_table == NULL && --order > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 if (!dn_rt_hash_table)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001887 panic("Failed to allocate DECnet route cache hash table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001889 printk(KERN_INFO
1890 "DECnet: Routing cache hash table of %u buckets, %ldKbytes\n",
1891 dn_rt_hash_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 (long)(dn_rt_hash_mask*sizeof(struct dn_rt_hash_bucket))/1024);
1893
1894 dn_rt_hash_mask--;
Sai Kalyaan Pallac3dde0e2021-03-23 23:14:19 +05301895 for (i = 0; i <= dn_rt_hash_mask; i++) {
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001896 spin_lock_init(&dn_rt_hash_table[i].lock);
1897 dn_rt_hash_table[i].chain = NULL;
1898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001900 dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Christoph Hellwig44414d82018-04-24 17:05:17 +02001902 proc_create_seq_private("decnet_cache", 0444, init_net.proc_net,
1903 &dn_rt_cache_seq_ops,
1904 sizeof(struct dn_rt_cache_iter_state), NULL);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001905
1906#ifdef CONFIG_DECNET_ROUTER
Florian Westphalc1c502b2017-12-02 21:44:07 +01001907 rtnl_register_module(THIS_MODULE, PF_DECnet, RTM_GETROUTE,
1908 dn_cache_getroute, dn_fib_dump, 0);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001909#else
Florian Westphalc1c502b2017-12-02 21:44:07 +01001910 rtnl_register_module(THIS_MODULE, PF_DECnet, RTM_GETROUTE,
1911 dn_cache_getroute, dn_cache_dump, 0);
Thomas Graffa34ddd2007-03-22 11:57:46 -07001912#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913}
1914
1915void __exit dn_route_cleanup(void)
1916{
1917 del_timer(&dn_route_timer);
YueHaibing0bab1cd2018-08-08 19:59:32 +08001918 dn_run_flush(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Gao fengece31ff2013-02-18 01:34:56 +00001920 remove_proc_entry("decnet_cache", init_net.proc_net);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001921 dst_entries_destroy(&dn_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}