2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * Copyright (C) Alan Cox GW4PTS (alan@lxorguk.ukuu.org.uk)
8 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
9 * Copyright (C) Steven Whitehouse GW7RRM (stevew@acm.org)
10 * Copyright (C) Joerg Reuter DL1BKE (jreuter@yaina.de)
11 * Copyright (C) Hans-Joachim Hetscher DD8NE (dd8ne@bnv-bamberg.de)
12 * Copyright (C) Frederic Rible F1OAT (frible@teaser.fr)
15 #include <linux/capability.h>
16 #include <linux/errno.h>
17 #include <linux/types.h>
18 #include <linux/socket.h>
19 #include <linux/timer.h>
21 #include <linux/kernel.h>
22 #include <linux/sched.h>
23 #include <linux/string.h>
24 #include <linux/sockios.h>
25 #include <linux/net.h>
26 #include <linux/slab.h>
28 #include <linux/inet.h>
29 #include <linux/netdevice.h>
30 #include <linux/if_arp.h>
31 #include <linux/skbuff.h>
32 #include <linux/spinlock.h>
34 #include <linux/uaccess.h>
35 #include <linux/fcntl.h>
37 #include <linux/interrupt.h>
38 #include <linux/init.h>
39 #include <linux/seq_file.h>
40 #include <linux/export.h>
42 static ax25_route *ax25_route_list;
43 DEFINE_RWLOCK(ax25_route_lock);
45 void ax25_rt_device_down(struct net_device *dev)
47 ax25_route *s, *t, *ax25_rt;
49 write_lock_bh(&ax25_route_lock);
50 ax25_rt = ax25_route_list;
51 while (ax25_rt != NULL) {
53 ax25_rt = ax25_rt->next;
56 if (ax25_route_list == s) {
57 ax25_route_list = s->next;
61 for (t = ax25_route_list; t != NULL; t = t->next) {
72 write_unlock_bh(&ax25_route_lock);
75 static int __must_check ax25_rt_add(struct ax25_routes_struct *route)
81 if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL)
83 if (route->digi_count > AX25_MAX_DIGIS)
86 write_lock_bh(&ax25_route_lock);
88 ax25_rt = ax25_route_list;
89 while (ax25_rt != NULL) {
90 if (ax25cmp(&ax25_rt->callsign, &route->dest_addr) == 0 &&
91 ax25_rt->dev == ax25_dev->dev) {
92 kfree(ax25_rt->digipeat);
93 ax25_rt->digipeat = NULL;
94 if (route->digi_count != 0) {
95 if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) {
96 write_unlock_bh(&ax25_route_lock);
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);
109 ax25_rt = ax25_rt->next;
112 if ((ax25_rt = kmalloc(sizeof(ax25_route), GFP_ATOMIC)) == NULL) {
113 write_unlock_bh(&ax25_route_lock);
117 refcount_set(&ax25_rt->refcount, 1);
118 ax25_rt->callsign = route->dest_addr;
119 ax25_rt->dev = ax25_dev->dev;
120 ax25_rt->digipeat = NULL;
121 ax25_rt->ip_mode = ' ';
122 if (route->digi_count != 0) {
123 if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) {
124 write_unlock_bh(&ax25_route_lock);
128 ax25_rt->digipeat->lastrepeat = -1;
129 ax25_rt->digipeat->ndigi = route->digi_count;
130 for (i = 0; i < route->digi_count; i++) {
131 ax25_rt->digipeat->repeated[i] = 0;
132 ax25_rt->digipeat->calls[i] = route->digi_addr[i];
135 ax25_rt->next = ax25_route_list;
136 ax25_route_list = ax25_rt;
137 write_unlock_bh(&ax25_route_lock);
142 void __ax25_put_route(ax25_route *ax25_rt)
144 kfree(ax25_rt->digipeat);
148 static int ax25_rt_del(struct ax25_routes_struct *route)
150 ax25_route *s, *t, *ax25_rt;
153 if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL)
156 write_lock_bh(&ax25_route_lock);
158 ax25_rt = ax25_route_list;
159 while (ax25_rt != NULL) {
161 ax25_rt = ax25_rt->next;
162 if (s->dev == ax25_dev->dev &&
163 ax25cmp(&route->dest_addr, &s->callsign) == 0) {
164 if (ax25_route_list == s) {
165 ax25_route_list = s->next;
168 for (t = ax25_route_list; t != NULL; t = t->next) {
178 write_unlock_bh(&ax25_route_lock);
183 static int ax25_rt_opt(struct ax25_route_opt_struct *rt_option)
189 if ((ax25_dev = ax25_addr_ax25dev(&rt_option->port_addr)) == NULL)
192 write_lock_bh(&ax25_route_lock);
194 ax25_rt = ax25_route_list;
195 while (ax25_rt != NULL) {
196 if (ax25_rt->dev == ax25_dev->dev &&
197 ax25cmp(&rt_option->dest_addr, &ax25_rt->callsign) == 0) {
198 switch (rt_option->cmd) {
199 case AX25_SET_RT_IPMODE:
200 switch (rt_option->arg) {
204 ax25_rt->ip_mode = rt_option->arg;
216 ax25_rt = ax25_rt->next;
220 write_unlock_bh(&ax25_route_lock);
224 int ax25_rt_ioctl(unsigned int cmd, void __user *arg)
226 struct ax25_route_opt_struct rt_option;
227 struct ax25_routes_struct route;
231 if (copy_from_user(&route, arg, sizeof(route)))
233 return ax25_rt_add(&route);
236 if (copy_from_user(&route, arg, sizeof(route)))
238 return ax25_rt_del(&route);
241 if (copy_from_user(&rt_option, arg, sizeof(rt_option)))
243 return ax25_rt_opt(&rt_option);
250 #ifdef CONFIG_PROC_FS
252 static void *ax25_rt_seq_start(struct seq_file *seq, loff_t *pos)
253 __acquires(ax25_route_lock)
255 struct ax25_route *ax25_rt;
258 read_lock(&ax25_route_lock);
260 return SEQ_START_TOKEN;
262 for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
271 static void *ax25_rt_seq_next(struct seq_file *seq, void *v, loff_t *pos)
274 return (v == SEQ_START_TOKEN) ? ax25_route_list :
275 ((struct ax25_route *) v)->next;
278 static void ax25_rt_seq_stop(struct seq_file *seq, void *v)
279 __releases(ax25_route_lock)
281 read_unlock(&ax25_route_lock);
284 static int ax25_rt_seq_show(struct seq_file *seq, void *v)
288 if (v == SEQ_START_TOKEN)
289 seq_puts(seq, "callsign dev mode digipeaters\n");
291 struct ax25_route *ax25_rt = v;
292 const char *callsign;
295 if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0)
296 callsign = "default";
298 callsign = ax2asc(buf, &ax25_rt->callsign);
300 seq_printf(seq, "%-9s %-4s",
302 ax25_rt->dev ? ax25_rt->dev->name : "???");
304 switch (ax25_rt->ip_mode) {
306 seq_puts(seq, " vc");
309 seq_puts(seq, " dg");
316 if (ax25_rt->digipeat != NULL)
317 for (i = 0; i < ax25_rt->digipeat->ndigi; i++)
318 seq_printf(seq, " %s",
319 ax2asc(buf, &ax25_rt->digipeat->calls[i]));
326 const struct seq_operations ax25_rt_seqops = {
327 .start = ax25_rt_seq_start,
328 .next = ax25_rt_seq_next,
329 .stop = ax25_rt_seq_stop,
330 .show = ax25_rt_seq_show,
337 * Only routes with a reference count of zero can be destroyed.
338 * Must be called with ax25_route_lock read locked.
340 ax25_route *ax25_get_route(ax25_address *addr, struct net_device *dev)
342 ax25_route *ax25_spe_rt = NULL;
343 ax25_route *ax25_def_rt = NULL;
347 * Bind to the physical interface we heard them on, or the default
348 * route if none is found;
350 for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
352 if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev != NULL)
353 ax25_spe_rt = ax25_rt;
354 if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev != NULL)
355 ax25_def_rt = ax25_rt;
357 if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev == dev)
358 ax25_spe_rt = ax25_rt;
359 if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev == dev)
360 ax25_def_rt = ax25_rt;
364 ax25_rt = ax25_def_rt;
365 if (ax25_spe_rt != NULL)
366 ax25_rt = ax25_spe_rt;
372 * Adjust path: If you specify a default route and want to connect
373 * a target on the digipeater path but w/o having a special route
374 * set before, the path has to be truncated from your target on.
376 static inline void ax25_adjust_path(ax25_address *addr, ax25_digi *digipeat)
380 for (k = 0; k < digipeat->ndigi; k++) {
381 if (ax25cmp(addr, &digipeat->calls[k]) == 0)
390 * Find which interface to use.
392 int ax25_rt_autobind(ax25_cb *ax25, ax25_address *addr)
394 ax25_uid_assoc *user;
398 ax25_route_lock_use();
399 ax25_rt = ax25_get_route(addr, NULL);
401 ax25_route_lock_unuse();
402 return -EHOSTUNREACH;
404 if ((ax25->ax25_dev = ax25_dev_ax25dev(ax25_rt->dev)) == NULL) {
409 user = ax25_findbyuid(current_euid());
411 ax25->source_addr = user->call;
414 if (ax25_uid_policy && !capable(CAP_NET_BIND_SERVICE)) {
418 ax25->source_addr = *(ax25_address *)ax25->ax25_dev->dev->dev_addr;
421 if (ax25_rt->digipeat != NULL) {
422 ax25->digipeat = kmemdup(ax25_rt->digipeat, sizeof(ax25_digi),
424 if (ax25->digipeat == NULL) {
428 ax25_adjust_path(addr, ax25->digipeat);
431 if (ax25->sk != NULL) {
433 bh_lock_sock(ax25->sk);
434 sock_reset_flag(ax25->sk, SOCK_ZAPPED);
435 bh_unlock_sock(ax25->sk);
440 ax25_route_lock_unuse();
444 struct sk_buff *ax25_rt_build_path(struct sk_buff *skb, ax25_address *src,
445 ax25_address *dest, ax25_digi *digi)
447 struct sk_buff *skbn;
451 len = digi->ndigi * AX25_ADDR_LEN;
453 if (skb_headroom(skb) < len) {
454 if ((skbn = skb_realloc_headroom(skb, len)) == NULL) {
455 printk(KERN_CRIT "AX.25: ax25_dg_build_path - out of memory\n");
460 skb_set_owner_w(skbn, skb->sk);
467 bp = skb_push(skb, len);
469 ax25_addr_build(bp, src, dest, digi, AX25_COMMAND, AX25_MODULUS);
475 * Free all memory associated with routing structures.
477 void __exit ax25_rt_free(void)
479 ax25_route *s, *ax25_rt = ax25_route_list;
481 write_lock_bh(&ax25_route_lock);
482 while (ax25_rt != NULL) {
484 ax25_rt = ax25_rt->next;
489 write_unlock_bh(&ax25_route_lock);