1 // SPDX-License-Identifier: GPL-2.0-or-later
12 #include <linux/capability.h>
13 #include <linux/errno.h>
14 #include <linux/types.h>
15 #include <linux/socket.h>
16 #include <linux/timer.h>
18 #include <linux/kernel.h>
19 #include <linux/sched.h>
20 #include <linux/string.h>
21 #include <linux/sockios.h>
22 #include <linux/net.h>
23 #include <linux/slab.h>
25 #include <linux/inet.h>
26 #include <linux/netdevice.h>
27 #include <linux/if_arp.h>
28 #include <linux/skbuff.h>
29 #include <linux/spinlock.h>
31 #include <linux/uaccess.h>
32 #include <linux/fcntl.h>
34 #include <linux/interrupt.h>
35 #include <linux/init.h>
36 #include <linux/seq_file.h>
37 #include <linux/export.h>
39 static ax25_route *ax25_route_list;
40 DEFINE_RWLOCK(ax25_route_lock);
42 void ax25_rt_device_down(struct net_device *dev)
44 ax25_route *s, *t, *ax25_rt;
46 write_lock_bh(&ax25_route_lock);
47 ax25_rt = ax25_route_list;
48 while (ax25_rt != NULL) {
50 ax25_rt = ax25_rt->next;
53 if (ax25_route_list == s) {
54 ax25_route_list = s->next;
58 for (t = ax25_route_list; t != NULL; t = t->next) {
69 write_unlock_bh(&ax25_route_lock);
72 static int __must_check ax25_rt_add(struct ax25_routes_struct *route)
78 if (route->digi_count > AX25_MAX_DIGIS)
81 ax25_dev = ax25_addr_ax25dev(&route->port_addr);
85 write_lock_bh(&ax25_route_lock);
87 ax25_rt = ax25_route_list;
88 while (ax25_rt != NULL) {
89 if (ax25cmp(&ax25_rt->callsign, &route->dest_addr) == 0 &&
90 ax25_rt->dev == ax25_dev->dev) {
91 kfree(ax25_rt->digipeat);
92 ax25_rt->digipeat = NULL;
93 if (route->digi_count != 0) {
94 if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) {
95 write_unlock_bh(&ax25_route_lock);
96 ax25_dev_put(ax25_dev);
99 ax25_rt->digipeat->lastrepeat = -1;
100 ax25_rt->digipeat->ndigi = route->digi_count;
101 for (i = 0; i < route->digi_count; i++) {
102 ax25_rt->digipeat->repeated[i] = 0;
103 ax25_rt->digipeat->calls[i] = route->digi_addr[i];
106 write_unlock_bh(&ax25_route_lock);
107 ax25_dev_put(ax25_dev);
110 ax25_rt = ax25_rt->next;
113 if ((ax25_rt = kmalloc(sizeof(ax25_route), GFP_ATOMIC)) == NULL) {
114 write_unlock_bh(&ax25_route_lock);
115 ax25_dev_put(ax25_dev);
119 refcount_set(&ax25_rt->refcount, 1);
120 ax25_rt->callsign = route->dest_addr;
121 ax25_rt->dev = ax25_dev->dev;
122 ax25_rt->digipeat = NULL;
123 ax25_rt->ip_mode = ' ';
124 if (route->digi_count != 0) {
125 if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) {
126 write_unlock_bh(&ax25_route_lock);
128 ax25_dev_put(ax25_dev);
131 ax25_rt->digipeat->lastrepeat = -1;
132 ax25_rt->digipeat->ndigi = route->digi_count;
133 for (i = 0; i < route->digi_count; i++) {
134 ax25_rt->digipeat->repeated[i] = 0;
135 ax25_rt->digipeat->calls[i] = route->digi_addr[i];
138 ax25_rt->next = ax25_route_list;
139 ax25_route_list = ax25_rt;
140 write_unlock_bh(&ax25_route_lock);
141 ax25_dev_put(ax25_dev);
146 void __ax25_put_route(ax25_route *ax25_rt)
148 kfree(ax25_rt->digipeat);
152 static int ax25_rt_del(struct ax25_routes_struct *route)
154 ax25_route *s, *t, *ax25_rt;
157 if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL)
160 write_lock_bh(&ax25_route_lock);
162 ax25_rt = ax25_route_list;
163 while (ax25_rt != NULL) {
165 ax25_rt = ax25_rt->next;
166 if (s->dev == ax25_dev->dev &&
167 ax25cmp(&route->dest_addr, &s->callsign) == 0) {
168 if (ax25_route_list == s) {
169 ax25_route_list = s->next;
172 for (t = ax25_route_list; t != NULL; t = t->next) {
182 write_unlock_bh(&ax25_route_lock);
183 ax25_dev_put(ax25_dev);
188 static int ax25_rt_opt(struct ax25_route_opt_struct *rt_option)
194 if ((ax25_dev = ax25_addr_ax25dev(&rt_option->port_addr)) == NULL)
197 write_lock_bh(&ax25_route_lock);
199 ax25_rt = ax25_route_list;
200 while (ax25_rt != NULL) {
201 if (ax25_rt->dev == ax25_dev->dev &&
202 ax25cmp(&rt_option->dest_addr, &ax25_rt->callsign) == 0) {
203 switch (rt_option->cmd) {
204 case AX25_SET_RT_IPMODE:
205 switch (rt_option->arg) {
209 ax25_rt->ip_mode = rt_option->arg;
221 ax25_rt = ax25_rt->next;
225 write_unlock_bh(&ax25_route_lock);
226 ax25_dev_put(ax25_dev);
230 int ax25_rt_ioctl(unsigned int cmd, void __user *arg)
232 struct ax25_route_opt_struct rt_option;
233 struct ax25_routes_struct route;
237 if (copy_from_user(&route, arg, sizeof(route)))
239 return ax25_rt_add(&route);
242 if (copy_from_user(&route, arg, sizeof(route)))
244 return ax25_rt_del(&route);
247 if (copy_from_user(&rt_option, arg, sizeof(rt_option)))
249 return ax25_rt_opt(&rt_option);
256 #ifdef CONFIG_PROC_FS
258 static void *ax25_rt_seq_start(struct seq_file *seq, loff_t *pos)
259 __acquires(ax25_route_lock)
261 struct ax25_route *ax25_rt;
264 read_lock(&ax25_route_lock);
266 return SEQ_START_TOKEN;
268 for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
277 static void *ax25_rt_seq_next(struct seq_file *seq, void *v, loff_t *pos)
280 return (v == SEQ_START_TOKEN) ? ax25_route_list :
281 ((struct ax25_route *) v)->next;
284 static void ax25_rt_seq_stop(struct seq_file *seq, void *v)
285 __releases(ax25_route_lock)
287 read_unlock(&ax25_route_lock);
290 static int ax25_rt_seq_show(struct seq_file *seq, void *v)
294 if (v == SEQ_START_TOKEN)
295 seq_puts(seq, "callsign dev mode digipeaters\n");
297 struct ax25_route *ax25_rt = v;
298 const char *callsign;
301 if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0)
302 callsign = "default";
304 callsign = ax2asc(buf, &ax25_rt->callsign);
306 seq_printf(seq, "%-9s %-4s",
308 ax25_rt->dev ? ax25_rt->dev->name : "???");
310 switch (ax25_rt->ip_mode) {
312 seq_puts(seq, " vc");
315 seq_puts(seq, " dg");
322 if (ax25_rt->digipeat != NULL)
323 for (i = 0; i < ax25_rt->digipeat->ndigi; i++)
324 seq_printf(seq, " %s",
325 ax2asc(buf, &ax25_rt->digipeat->calls[i]));
332 const struct seq_operations ax25_rt_seqops = {
333 .start = ax25_rt_seq_start,
334 .next = ax25_rt_seq_next,
335 .stop = ax25_rt_seq_stop,
336 .show = ax25_rt_seq_show,
343 * Only routes with a reference count of zero can be destroyed.
344 * Must be called with ax25_route_lock read locked.
346 ax25_route *ax25_get_route(ax25_address *addr, struct net_device *dev)
348 ax25_route *ax25_spe_rt = NULL;
349 ax25_route *ax25_def_rt = NULL;
353 * Bind to the physical interface we heard them on, or the default
354 * route if none is found;
356 for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
358 if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev != NULL)
359 ax25_spe_rt = ax25_rt;
360 if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev != NULL)
361 ax25_def_rt = ax25_rt;
363 if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev == dev)
364 ax25_spe_rt = ax25_rt;
365 if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev == dev)
366 ax25_def_rt = ax25_rt;
370 ax25_rt = ax25_def_rt;
371 if (ax25_spe_rt != NULL)
372 ax25_rt = ax25_spe_rt;
378 * Adjust path: If you specify a default route and want to connect
379 * a target on the digipeater path but w/o having a special route
380 * set before, the path has to be truncated from your target on.
382 static inline void ax25_adjust_path(ax25_address *addr, ax25_digi *digipeat)
386 for (k = 0; k < digipeat->ndigi; k++) {
387 if (ax25cmp(addr, &digipeat->calls[k]) == 0)
396 * Find which interface to use.
398 int ax25_rt_autobind(ax25_cb *ax25, ax25_address *addr)
400 ax25_uid_assoc *user;
404 ax25_route_lock_use();
405 ax25_rt = ax25_get_route(addr, NULL);
407 ax25_route_lock_unuse();
408 return -EHOSTUNREACH;
410 if ((ax25->ax25_dev = ax25_dev_ax25dev(ax25_rt->dev)) == NULL) {
415 user = ax25_findbyuid(current_euid());
417 ax25->source_addr = user->call;
420 if (ax25_uid_policy && !capable(CAP_NET_BIND_SERVICE)) {
424 ax25->source_addr = *(ax25_address *)ax25->ax25_dev->dev->dev_addr;
427 if (ax25_rt->digipeat != NULL) {
428 ax25->digipeat = kmemdup(ax25_rt->digipeat, sizeof(ax25_digi),
430 if (ax25->digipeat == NULL) {
434 ax25_adjust_path(addr, ax25->digipeat);
437 if (ax25->sk != NULL) {
439 bh_lock_sock(ax25->sk);
440 sock_reset_flag(ax25->sk, SOCK_ZAPPED);
441 bh_unlock_sock(ax25->sk);
446 ax25_route_lock_unuse();
450 struct sk_buff *ax25_rt_build_path(struct sk_buff *skb, ax25_address *src,
451 ax25_address *dest, ax25_digi *digi)
456 len = digi->ndigi * AX25_ADDR_LEN;
458 if (unlikely(skb_headroom(skb) < len)) {
459 skb = skb_expand_head(skb, len);
461 printk(KERN_CRIT "AX.25: ax25_dg_build_path - out of memory\n");
466 bp = skb_push(skb, len);
468 ax25_addr_build(bp, src, dest, digi, AX25_COMMAND, AX25_MODULUS);
474 * Free all memory associated with routing structures.
476 void __exit ax25_rt_free(void)
478 ax25_route *s, *ax25_rt = ax25_route_list;
480 write_lock_bh(&ax25_route_lock);
481 while (ax25_rt != NULL) {
483 ax25_rt = ax25_rt->next;
488 write_unlock_bh(&ax25_route_lock);