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)
14 #include <linux/errno.h>
15 #include <linux/types.h>
16 #include <linux/socket.h>
17 #include <linux/timer.h>
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
21 #include <linux/string.h>
22 #include <linux/sockios.h>
23 #include <linux/net.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 <asm/uaccess.h>
32 #include <asm/system.h>
33 #include <linux/fcntl.h>
35 #include <linux/interrupt.h>
36 #include <linux/init.h>
37 #include <linux/seq_file.h>
39 static ax25_route
*ax25_route_list
;
40 static DEFINE_RWLOCK(ax25_route_lock
);
42 static ax25_route
*ax25_get_route(ax25_address
*, struct net_device
*);
44 void ax25_rt_device_down(struct net_device
*dev
)
46 ax25_route
*s
, *t
, *ax25_rt
;
48 write_lock(&ax25_route_lock
);
49 ax25_rt
= ax25_route_list
;
50 while (ax25_rt
!= NULL
) {
52 ax25_rt
= ax25_rt
->next
;
55 if (ax25_route_list
== s
) {
56 ax25_route_list
= s
->next
;
57 if (s
->digipeat
!= NULL
)
61 for (t
= ax25_route_list
; t
!= NULL
; t
= t
->next
) {
64 if (s
->digipeat
!= NULL
)
73 write_unlock(&ax25_route_lock
);
76 static int ax25_rt_add(struct ax25_routes_struct
*route
)
82 if ((ax25_dev
= ax25_addr_ax25dev(&route
->port_addr
)) == NULL
)
84 if (route
->digi_count
> AX25_MAX_DIGIS
)
87 write_lock(&ax25_route_lock
);
89 ax25_rt
= ax25_route_list
;
90 while (ax25_rt
!= NULL
) {
91 if (ax25cmp(&ax25_rt
->callsign
, &route
->dest_addr
) == 0 &&
92 ax25_rt
->dev
== ax25_dev
->dev
) {
93 if (ax25_rt
->digipeat
!= NULL
) {
94 kfree(ax25_rt
->digipeat
);
95 ax25_rt
->digipeat
= NULL
;
97 if (route
->digi_count
!= 0) {
98 if ((ax25_rt
->digipeat
= kmalloc(sizeof(ax25_digi
), GFP_ATOMIC
)) == NULL
) {
99 write_unlock(&ax25_route_lock
);
102 ax25_rt
->digipeat
->lastrepeat
= -1;
103 ax25_rt
->digipeat
->ndigi
= route
->digi_count
;
104 for (i
= 0; i
< route
->digi_count
; i
++) {
105 ax25_rt
->digipeat
->repeated
[i
] = 0;
106 ax25_rt
->digipeat
->calls
[i
] = route
->digi_addr
[i
];
109 write_unlock(&ax25_route_lock
);
112 ax25_rt
= ax25_rt
->next
;
115 if ((ax25_rt
= kmalloc(sizeof(ax25_route
), GFP_ATOMIC
)) == NULL
) {
116 write_unlock(&ax25_route_lock
);
120 atomic_set(&ax25_rt
->ref
, 0);
121 ax25_rt
->callsign
= route
->dest_addr
;
122 ax25_rt
->dev
= ax25_dev
->dev
;
123 ax25_rt
->digipeat
= NULL
;
124 ax25_rt
->ip_mode
= ' ';
125 if (route
->digi_count
!= 0) {
126 if ((ax25_rt
->digipeat
= kmalloc(sizeof(ax25_digi
), GFP_ATOMIC
)) == NULL
) {
127 write_unlock(&ax25_route_lock
);
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(&ax25_route_lock
);
145 static void ax25_rt_destroy(ax25_route
*ax25_rt
)
147 if (atomic_read(&ax25_rt
->ref
) == 0) {
148 if (ax25_rt
->digipeat
!= NULL
)
149 kfree(ax25_rt
->digipeat
);
155 * Uh... Route is still in use; we can't yet destroy it. Retry later.
157 init_timer(&ax25_rt
->timer
);
158 ax25_rt
->timer
.data
= (unsigned long) ax25_rt
;
159 ax25_rt
->timer
.function
= (void *) ax25_rt_destroy
;
160 ax25_rt
->timer
.expires
= jiffies
+ 5 * HZ
;
162 add_timer(&ax25_rt
->timer
);
165 static int ax25_rt_del(struct ax25_routes_struct
*route
)
167 ax25_route
*s
, *t
, *ax25_rt
;
170 if ((ax25_dev
= ax25_addr_ax25dev(&route
->port_addr
)) == NULL
)
173 write_lock(&ax25_route_lock
);
175 ax25_rt
= ax25_route_list
;
176 while (ax25_rt
!= NULL
) {
178 ax25_rt
= ax25_rt
->next
;
179 if (s
->dev
== ax25_dev
->dev
&&
180 ax25cmp(&route
->dest_addr
, &s
->callsign
) == 0) {
181 if (ax25_route_list
== s
) {
182 ax25_route_list
= s
->next
;
185 for (t
= ax25_route_list
; t
!= NULL
; t
= t
->next
) {
195 write_unlock(&ax25_route_lock
);
200 static int ax25_rt_opt(struct ax25_route_opt_struct
*rt_option
)
206 if ((ax25_dev
= ax25_addr_ax25dev(&rt_option
->port_addr
)) == NULL
)
209 write_lock(&ax25_route_lock
);
211 ax25_rt
= ax25_route_list
;
212 while (ax25_rt
!= NULL
) {
213 if (ax25_rt
->dev
== ax25_dev
->dev
&&
214 ax25cmp(&rt_option
->dest_addr
, &ax25_rt
->callsign
) == 0) {
215 switch (rt_option
->cmd
) {
216 case AX25_SET_RT_IPMODE
:
217 switch (rt_option
->arg
) {
221 ax25_rt
->ip_mode
= rt_option
->arg
;
233 ax25_rt
= ax25_rt
->next
;
237 write_unlock(&ax25_route_lock
);
241 int ax25_rt_ioctl(unsigned int cmd
, void __user
*arg
)
243 struct ax25_route_opt_struct rt_option
;
244 struct ax25_routes_struct route
;
248 if (copy_from_user(&route
, arg
, sizeof(route
)))
250 return ax25_rt_add(&route
);
253 if (copy_from_user(&route
, arg
, sizeof(route
)))
255 return ax25_rt_del(&route
);
258 if (copy_from_user(&rt_option
, arg
, sizeof(rt_option
)))
260 return ax25_rt_opt(&rt_option
);
267 #ifdef CONFIG_PROC_FS
269 static void *ax25_rt_seq_start(struct seq_file
*seq
, loff_t
*pos
)
271 struct ax25_route
*ax25_rt
;
274 read_lock(&ax25_route_lock
);
276 return SEQ_START_TOKEN
;
278 for (ax25_rt
= ax25_route_list
; ax25_rt
!= NULL
; ax25_rt
= ax25_rt
->next
) {
287 static void *ax25_rt_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
290 return (v
== SEQ_START_TOKEN
) ? ax25_route_list
:
291 ((struct ax25_route
*) v
)->next
;
294 static void ax25_rt_seq_stop(struct seq_file
*seq
, void *v
)
296 read_unlock(&ax25_route_lock
);
299 static int ax25_rt_seq_show(struct seq_file
*seq
, void *v
)
301 if (v
== SEQ_START_TOKEN
)
302 seq_puts(seq
, "callsign dev mode digipeaters\n");
304 struct ax25_route
*ax25_rt
= v
;
305 const char *callsign
;
308 if (ax25cmp(&ax25_rt
->callsign
, &null_ax25_address
) == 0)
309 callsign
= "default";
311 callsign
= ax2asc(&ax25_rt
->callsign
);
313 seq_printf(seq
, "%-9s %-4s",
315 ax25_rt
->dev
? ax25_rt
->dev
->name
: "???");
317 switch (ax25_rt
->ip_mode
) {
319 seq_puts(seq
, " vc");
322 seq_puts(seq
, " dg");
329 if (ax25_rt
->digipeat
!= NULL
)
330 for (i
= 0; i
< ax25_rt
->digipeat
->ndigi
; i
++)
331 seq_printf(seq
, " %s", ax2asc(&ax25_rt
->digipeat
->calls
[i
]));
338 static struct seq_operations ax25_rt_seqops
= {
339 .start
= ax25_rt_seq_start
,
340 .next
= ax25_rt_seq_next
,
341 .stop
= ax25_rt_seq_stop
,
342 .show
= ax25_rt_seq_show
,
345 static int ax25_rt_info_open(struct inode
*inode
, struct file
*file
)
347 return seq_open(file
, &ax25_rt_seqops
);
350 struct file_operations ax25_route_fops
= {
351 .owner
= THIS_MODULE
,
352 .open
= ax25_rt_info_open
,
355 .release
= seq_release
,
363 * Only routes with a refernce rout of zero can be destroyed.
365 static ax25_route
*ax25_get_route(ax25_address
*addr
, struct net_device
*dev
)
367 ax25_route
*ax25_spe_rt
= NULL
;
368 ax25_route
*ax25_def_rt
= NULL
;
371 read_lock(&ax25_route_lock
);
373 * Bind to the physical interface we heard them on, or the default
374 * route if none is found;
376 for (ax25_rt
= ax25_route_list
; ax25_rt
!= NULL
; ax25_rt
= ax25_rt
->next
) {
378 if (ax25cmp(&ax25_rt
->callsign
, addr
) == 0 && ax25_rt
->dev
!= NULL
)
379 ax25_spe_rt
= ax25_rt
;
380 if (ax25cmp(&ax25_rt
->callsign
, &null_ax25_address
) == 0 && ax25_rt
->dev
!= NULL
)
381 ax25_def_rt
= ax25_rt
;
383 if (ax25cmp(&ax25_rt
->callsign
, addr
) == 0 && ax25_rt
->dev
== dev
)
384 ax25_spe_rt
= ax25_rt
;
385 if (ax25cmp(&ax25_rt
->callsign
, &null_ax25_address
) == 0 && ax25_rt
->dev
== dev
)
386 ax25_def_rt
= ax25_rt
;
390 ax25_rt
= ax25_def_rt
;
391 if (ax25_spe_rt
!= NULL
)
392 ax25_rt
= ax25_spe_rt
;
395 atomic_inc(&ax25_rt
->ref
);
397 read_unlock(&ax25_route_lock
);
403 * Adjust path: If you specify a default route and want to connect
404 * a target on the digipeater path but w/o having a special route
405 * set before, the path has to be truncated from your target on.
407 static inline void ax25_adjust_path(ax25_address
*addr
, ax25_digi
*digipeat
)
411 for (k
= 0; k
< digipeat
->ndigi
; k
++) {
412 if (ax25cmp(addr
, &digipeat
->calls
[k
]) == 0)
421 * Find which interface to use.
423 int ax25_rt_autobind(ax25_cb
*ax25
, ax25_address
*addr
)
429 if ((ax25_rt
= ax25_get_route(addr
, NULL
)) == NULL
)
430 return -EHOSTUNREACH
;
432 if ((ax25
->ax25_dev
= ax25_dev_ax25dev(ax25_rt
->dev
)) == NULL
) {
437 if ((call
= ax25_findbyuid(current
->euid
)) == NULL
) {
438 if (ax25_uid_policy
&& !capable(CAP_NET_BIND_SERVICE
)) {
442 call
= (ax25_address
*)ax25
->ax25_dev
->dev
->dev_addr
;
445 ax25
->source_addr
= *call
;
447 if (ax25_rt
->digipeat
!= NULL
) {
448 if ((ax25
->digipeat
= kmalloc(sizeof(ax25_digi
), GFP_ATOMIC
)) == NULL
) {
452 memcpy(ax25
->digipeat
, ax25_rt
->digipeat
, sizeof(ax25_digi
));
453 ax25_adjust_path(addr
, ax25
->digipeat
);
456 if (ax25
->sk
!= NULL
) {
457 bh_lock_sock(ax25
->sk
);
458 sock_reset_flag(ax25
->sk
, SOCK_ZAPPED
);
459 bh_unlock_sock(ax25
->sk
);
463 ax25_put_route(ax25_rt
);
468 ax25_route
*ax25_rt_find_route(ax25_route
* route
, ax25_address
*addr
,
469 struct net_device
*dev
)
473 if ((ax25_rt
= ax25_get_route(addr
, dev
)))
477 atomic_set(&route
->ref
, 1);
478 route
->callsign
= *addr
;
480 route
->digipeat
= NULL
;
481 route
->ip_mode
= ' ';
486 struct sk_buff
*ax25_rt_build_path(struct sk_buff
*skb
, ax25_address
*src
,
487 ax25_address
*dest
, ax25_digi
*digi
)
489 struct sk_buff
*skbn
;
493 len
= digi
->ndigi
* AX25_ADDR_LEN
;
495 if (skb_headroom(skb
) < len
) {
496 if ((skbn
= skb_realloc_headroom(skb
, len
)) == NULL
) {
497 printk(KERN_CRIT
"AX.25: ax25_dg_build_path - out of memory\n");
502 skb_set_owner_w(skbn
, skb
->sk
);
509 bp
= skb_push(skb
, len
);
511 ax25_addr_build(bp
, src
, dest
, digi
, AX25_COMMAND
, AX25_MODULUS
);
517 * Free all memory associated with routing structures.
519 void __exit
ax25_rt_free(void)
521 ax25_route
*s
, *ax25_rt
= ax25_route_list
;
523 write_lock(&ax25_route_lock
);
524 while (ax25_rt
!= NULL
) {
526 ax25_rt
= ax25_rt
->next
;
528 if (s
->digipeat
!= NULL
)
533 write_unlock(&ax25_route_lock
);