Linux Audio

Check our new training course

Loading...
v4.17
 
  1/*
  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.
  6 *
  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)
 13 */
 14
 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>
 20#include <linux/in.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>
 27#include <net/ax25.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>
 33#include <net/sock.h>
 34#include <linux/uaccess.h>
 35#include <linux/fcntl.h>
 36#include <linux/mm.h>
 37#include <linux/interrupt.h>
 38#include <linux/init.h>
 39#include <linux/seq_file.h>
 40#include <linux/export.h>
 41
 42static ax25_route *ax25_route_list;
 43static DEFINE_RWLOCK(ax25_route_lock);
 44
 45void ax25_rt_device_down(struct net_device *dev)
 46{
 47	ax25_route *s, *t, *ax25_rt;
 48
 49	write_lock_bh(&ax25_route_lock);
 50	ax25_rt = ax25_route_list;
 51	while (ax25_rt != NULL) {
 52		s       = ax25_rt;
 53		ax25_rt = ax25_rt->next;
 54
 55		if (s->dev == dev) {
 56			if (ax25_route_list == s) {
 57				ax25_route_list = s->next;
 58				kfree(s->digipeat);
 59				kfree(s);
 60			} else {
 61				for (t = ax25_route_list; t != NULL; t = t->next) {
 62					if (t->next == s) {
 63						t->next = s->next;
 64						kfree(s->digipeat);
 65						kfree(s);
 66						break;
 67					}
 68				}
 69			}
 70		}
 71	}
 72	write_unlock_bh(&ax25_route_lock);
 73}
 74
 75static int __must_check ax25_rt_add(struct ax25_routes_struct *route)
 76{
 77	ax25_route *ax25_rt;
 78	ax25_dev *ax25_dev;
 79	int i;
 80
 81	if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL)
 82		return -EINVAL;
 83	if (route->digi_count > AX25_MAX_DIGIS)
 84		return -EINVAL;
 85
 
 
 
 
 86	write_lock_bh(&ax25_route_lock);
 87
 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);
 
 97					return -ENOMEM;
 98				}
 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];
104				}
105			}
106			write_unlock_bh(&ax25_route_lock);
 
107			return 0;
108		}
109		ax25_rt = ax25_rt->next;
110	}
111
112	if ((ax25_rt = kmalloc(sizeof(ax25_route), GFP_ATOMIC)) == NULL) {
113		write_unlock_bh(&ax25_route_lock);
 
114		return -ENOMEM;
115	}
116
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);
125			kfree(ax25_rt);
 
126			return -ENOMEM;
127		}
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];
133		}
134	}
135	ax25_rt->next   = ax25_route_list;
136	ax25_route_list = ax25_rt;
137	write_unlock_bh(&ax25_route_lock);
 
138
139	return 0;
140}
141
142void __ax25_put_route(ax25_route *ax25_rt)
143{
144	kfree(ax25_rt->digipeat);
145	kfree(ax25_rt);
146}
147
148static int ax25_rt_del(struct ax25_routes_struct *route)
149{
150	ax25_route *s, *t, *ax25_rt;
151	ax25_dev *ax25_dev;
152
153	if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL)
154		return -EINVAL;
155
156	write_lock_bh(&ax25_route_lock);
157
158	ax25_rt = ax25_route_list;
159	while (ax25_rt != NULL) {
160		s       = ax25_rt;
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;
166				ax25_put_route(s);
167			} else {
168				for (t = ax25_route_list; t != NULL; t = t->next) {
169					if (t->next == s) {
170						t->next = s->next;
171						ax25_put_route(s);
172						break;
173					}
174				}
175			}
176		}
177	}
178	write_unlock_bh(&ax25_route_lock);
 
179
180	return 0;
181}
182
183static int ax25_rt_opt(struct ax25_route_opt_struct *rt_option)
184{
185	ax25_route *ax25_rt;
186	ax25_dev *ax25_dev;
187	int err = 0;
188
189	if ((ax25_dev = ax25_addr_ax25dev(&rt_option->port_addr)) == NULL)
190		return -EINVAL;
191
192	write_lock_bh(&ax25_route_lock);
193
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) {
201				case ' ':
202				case 'D':
203				case 'V':
204					ax25_rt->ip_mode = rt_option->arg;
205					break;
206				default:
207					err = -EINVAL;
208					goto out;
209				}
210				break;
211			default:
212				err = -EINVAL;
213				goto out;
214			}
215		}
216		ax25_rt = ax25_rt->next;
217	}
218
219out:
220	write_unlock_bh(&ax25_route_lock);
 
221	return err;
222}
223
224int ax25_rt_ioctl(unsigned int cmd, void __user *arg)
225{
226	struct ax25_route_opt_struct rt_option;
227	struct ax25_routes_struct route;
228
229	switch (cmd) {
230	case SIOCADDRT:
231		if (copy_from_user(&route, arg, sizeof(route)))
232			return -EFAULT;
233		return ax25_rt_add(&route);
234
235	case SIOCDELRT:
236		if (copy_from_user(&route, arg, sizeof(route)))
237			return -EFAULT;
238		return ax25_rt_del(&route);
239
240	case SIOCAX25OPTRT:
241		if (copy_from_user(&rt_option, arg, sizeof(rt_option)))
242			return -EFAULT;
243		return ax25_rt_opt(&rt_option);
244
245	default:
246		return -EINVAL;
247	}
248}
249
250#ifdef CONFIG_PROC_FS
251
252static void *ax25_rt_seq_start(struct seq_file *seq, loff_t *pos)
253	__acquires(ax25_route_lock)
254{
255	struct ax25_route *ax25_rt;
256	int i = 1;
257
258	read_lock(&ax25_route_lock);
259	if (*pos == 0)
260		return SEQ_START_TOKEN;
261
262	for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
263		if (i == *pos)
264			return ax25_rt;
265		++i;
266	}
267
268	return NULL;
269}
270
271static void *ax25_rt_seq_next(struct seq_file *seq, void *v, loff_t *pos)
272{
273	++*pos;
274	return (v == SEQ_START_TOKEN) ? ax25_route_list :
275		((struct ax25_route *) v)->next;
276}
277
278static void ax25_rt_seq_stop(struct seq_file *seq, void *v)
279	__releases(ax25_route_lock)
280{
281	read_unlock(&ax25_route_lock);
282}
283
284static int ax25_rt_seq_show(struct seq_file *seq, void *v)
285{
286	char buf[11];
287
288	if (v == SEQ_START_TOKEN)
289		seq_puts(seq, "callsign  dev  mode digipeaters\n");
290	else {
291		struct ax25_route *ax25_rt = v;
292		const char *callsign;
293		int i;
294
295		if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0)
296			callsign = "default";
297		else
298			callsign = ax2asc(buf, &ax25_rt->callsign);
299
300		seq_printf(seq, "%-9s %-4s",
301			callsign,
302			ax25_rt->dev ? ax25_rt->dev->name : "???");
303
304		switch (ax25_rt->ip_mode) {
305		case 'V':
306			seq_puts(seq, "   vc");
307			break;
308		case 'D':
309			seq_puts(seq, "   dg");
310			break;
311		default:
312			seq_puts(seq, "    *");
313			break;
314		}
315
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]));
320
321		seq_puts(seq, "\n");
322	}
323	return 0;
324}
325
326static 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,
331};
332
333static int ax25_rt_info_open(struct inode *inode, struct file *file)
334{
335	return seq_open(file, &ax25_rt_seqops);
336}
337
338const struct file_operations ax25_route_fops = {
339	.open = ax25_rt_info_open,
340	.read = seq_read,
341	.llseek = seq_lseek,
342	.release = seq_release,
343};
344
345#endif
346
347/*
348 *	Find AX.25 route
349 *
350 *	Only routes with a reference count of zero can be destroyed.
 
351 */
352ax25_route *ax25_get_route(ax25_address *addr, struct net_device *dev)
353{
354	ax25_route *ax25_spe_rt = NULL;
355	ax25_route *ax25_def_rt = NULL;
356	ax25_route *ax25_rt;
357
358	read_lock(&ax25_route_lock);
359	/*
360	 *	Bind to the physical interface we heard them on, or the default
361	 *	route if none is found;
362	 */
363	for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
364		if (dev == NULL) {
365			if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev != NULL)
366				ax25_spe_rt = ax25_rt;
367			if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev != NULL)
368				ax25_def_rt = ax25_rt;
369		} else {
370			if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev == dev)
371				ax25_spe_rt = ax25_rt;
372			if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev == dev)
373				ax25_def_rt = ax25_rt;
374		}
375	}
376
377	ax25_rt = ax25_def_rt;
378	if (ax25_spe_rt != NULL)
379		ax25_rt = ax25_spe_rt;
380
381	if (ax25_rt != NULL)
382		ax25_hold_route(ax25_rt);
383
384	read_unlock(&ax25_route_lock);
385
386	return ax25_rt;
387}
388
389/*
390 *	Adjust path: If you specify a default route and want to connect
391 *      a target on the digipeater path but w/o having a special route
392 *	set before, the path has to be truncated from your target on.
393 */
394static inline void ax25_adjust_path(ax25_address *addr, ax25_digi *digipeat)
395{
396	int k;
397
398	for (k = 0; k < digipeat->ndigi; k++) {
399		if (ax25cmp(addr, &digipeat->calls[k]) == 0)
400			break;
401	}
402
403	digipeat->ndigi = k;
404}
405
406
407/*
408 *	Find which interface to use.
409 */
410int ax25_rt_autobind(ax25_cb *ax25, ax25_address *addr)
411{
412	ax25_uid_assoc *user;
413	ax25_route *ax25_rt;
414	int err = 0;
415
416	if ((ax25_rt = ax25_get_route(addr, NULL)) == NULL)
 
 
 
417		return -EHOSTUNREACH;
418
419	if ((ax25->ax25_dev = ax25_dev_ax25dev(ax25_rt->dev)) == NULL) {
420		err = -EHOSTUNREACH;
421		goto put;
422	}
423
424	user = ax25_findbyuid(current_euid());
425	if (user) {
426		ax25->source_addr = user->call;
427		ax25_uid_put(user);
428	} else {
429		if (ax25_uid_policy && !capable(CAP_NET_BIND_SERVICE)) {
430			err = -EPERM;
431			goto put;
432		}
433		ax25->source_addr = *(ax25_address *)ax25->ax25_dev->dev->dev_addr;
434	}
435
436	if (ax25_rt->digipeat != NULL) {
437		ax25->digipeat = kmemdup(ax25_rt->digipeat, sizeof(ax25_digi),
438					 GFP_ATOMIC);
439		if (ax25->digipeat == NULL) {
440			err = -ENOMEM;
441			goto put;
442		}
443		ax25_adjust_path(addr, ax25->digipeat);
444	}
445
446	if (ax25->sk != NULL) {
 
447		bh_lock_sock(ax25->sk);
448		sock_reset_flag(ax25->sk, SOCK_ZAPPED);
449		bh_unlock_sock(ax25->sk);
 
450	}
451
452put:
453	ax25_put_route(ax25_rt);
454
455	return err;
456}
457
458struct sk_buff *ax25_rt_build_path(struct sk_buff *skb, ax25_address *src,
459	ax25_address *dest, ax25_digi *digi)
460{
461	struct sk_buff *skbn;
462	unsigned char *bp;
463	int len;
464
465	len = digi->ndigi * AX25_ADDR_LEN;
466
467	if (skb_headroom(skb) < len) {
468		if ((skbn = skb_realloc_headroom(skb, len)) == NULL) {
 
469			printk(KERN_CRIT "AX.25: ax25_dg_build_path - out of memory\n");
470			return NULL;
471		}
472
473		if (skb->sk != NULL)
474			skb_set_owner_w(skbn, skb->sk);
475
476		consume_skb(skb);
477
478		skb = skbn;
479	}
480
481	bp = skb_push(skb, len);
482
483	ax25_addr_build(bp, src, dest, digi, AX25_COMMAND, AX25_MODULUS);
484
485	return skb;
486}
487
488/*
489 *	Free all memory associated with routing structures.
490 */
491void __exit ax25_rt_free(void)
492{
493	ax25_route *s, *ax25_rt = ax25_route_list;
494
495	write_lock_bh(&ax25_route_lock);
496	while (ax25_rt != NULL) {
497		s       = ax25_rt;
498		ax25_rt = ax25_rt->next;
499
500		kfree(s->digipeat);
501		kfree(s);
502	}
503	write_unlock_bh(&ax25_route_lock);
504}
v6.8
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
 
 
 
 
  3 *
  4 * Copyright (C) Alan Cox GW4PTS (alan@lxorguk.ukuu.org.uk)
  5 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
  6 * Copyright (C) Steven Whitehouse GW7RRM (stevew@acm.org)
  7 * Copyright (C) Joerg Reuter DL1BKE (jreuter@yaina.de)
  8 * Copyright (C) Hans-Joachim Hetscher DD8NE (dd8ne@bnv-bamberg.de)
  9 * Copyright (C) Frederic Rible F1OAT (frible@teaser.fr)
 10 */
 11
 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>
 17#include <linux/in.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>
 24#include <net/ax25.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>
 30#include <net/sock.h>
 31#include <linux/uaccess.h>
 32#include <linux/fcntl.h>
 33#include <linux/mm.h>
 34#include <linux/interrupt.h>
 35#include <linux/init.h>
 36#include <linux/seq_file.h>
 37#include <linux/export.h>
 38
 39static ax25_route *ax25_route_list;
 40DEFINE_RWLOCK(ax25_route_lock);
 41
 42void ax25_rt_device_down(struct net_device *dev)
 43{
 44	ax25_route *s, *t, *ax25_rt;
 45
 46	write_lock_bh(&ax25_route_lock);
 47	ax25_rt = ax25_route_list;
 48	while (ax25_rt != NULL) {
 49		s       = ax25_rt;
 50		ax25_rt = ax25_rt->next;
 51
 52		if (s->dev == dev) {
 53			if (ax25_route_list == s) {
 54				ax25_route_list = s->next;
 55				kfree(s->digipeat);
 56				kfree(s);
 57			} else {
 58				for (t = ax25_route_list; t != NULL; t = t->next) {
 59					if (t->next == s) {
 60						t->next = s->next;
 61						kfree(s->digipeat);
 62						kfree(s);
 63						break;
 64					}
 65				}
 66			}
 67		}
 68	}
 69	write_unlock_bh(&ax25_route_lock);
 70}
 71
 72static int __must_check ax25_rt_add(struct ax25_routes_struct *route)
 73{
 74	ax25_route *ax25_rt;
 75	ax25_dev *ax25_dev;
 76	int i;
 77
 
 
 78	if (route->digi_count > AX25_MAX_DIGIS)
 79		return -EINVAL;
 80
 81	ax25_dev = ax25_addr_ax25dev(&route->port_addr);
 82	if (!ax25_dev)
 83		return -EINVAL;
 84
 85	write_lock_bh(&ax25_route_lock);
 86
 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);
 97					return -ENOMEM;
 98				}
 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];
104				}
105			}
106			write_unlock_bh(&ax25_route_lock);
107			ax25_dev_put(ax25_dev);
108			return 0;
109		}
110		ax25_rt = ax25_rt->next;
111	}
112
113	if ((ax25_rt = kmalloc(sizeof(ax25_route), GFP_ATOMIC)) == NULL) {
114		write_unlock_bh(&ax25_route_lock);
115		ax25_dev_put(ax25_dev);
116		return -ENOMEM;
117	}
118
 
119	ax25_rt->callsign     = route->dest_addr;
120	ax25_rt->dev          = ax25_dev->dev;
121	ax25_rt->digipeat     = NULL;
122	ax25_rt->ip_mode      = ' ';
123	if (route->digi_count != 0) {
124		if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) {
125			write_unlock_bh(&ax25_route_lock);
126			kfree(ax25_rt);
127			ax25_dev_put(ax25_dev);
128			return -ENOMEM;
129		}
130		ax25_rt->digipeat->lastrepeat = -1;
131		ax25_rt->digipeat->ndigi      = route->digi_count;
132		for (i = 0; i < route->digi_count; i++) {
133			ax25_rt->digipeat->repeated[i] = 0;
134			ax25_rt->digipeat->calls[i]    = route->digi_addr[i];
135		}
136	}
137	ax25_rt->next   = ax25_route_list;
138	ax25_route_list = ax25_rt;
139	write_unlock_bh(&ax25_route_lock);
140	ax25_dev_put(ax25_dev);
141
142	return 0;
143}
144
145void __ax25_put_route(ax25_route *ax25_rt)
146{
147	kfree(ax25_rt->digipeat);
148	kfree(ax25_rt);
149}
150
151static int ax25_rt_del(struct ax25_routes_struct *route)
152{
153	ax25_route *s, *t, *ax25_rt;
154	ax25_dev *ax25_dev;
155
156	if ((ax25_dev = ax25_addr_ax25dev(&route->port_addr)) == NULL)
157		return -EINVAL;
158
159	write_lock_bh(&ax25_route_lock);
160
161	ax25_rt = ax25_route_list;
162	while (ax25_rt != NULL) {
163		s       = ax25_rt;
164		ax25_rt = ax25_rt->next;
165		if (s->dev == ax25_dev->dev &&
166		    ax25cmp(&route->dest_addr, &s->callsign) == 0) {
167			if (ax25_route_list == s) {
168				ax25_route_list = s->next;
169				__ax25_put_route(s);
170			} else {
171				for (t = ax25_route_list; t != NULL; t = t->next) {
172					if (t->next == s) {
173						t->next = s->next;
174						__ax25_put_route(s);
175						break;
176					}
177				}
178			}
179		}
180	}
181	write_unlock_bh(&ax25_route_lock);
182	ax25_dev_put(ax25_dev);
183
184	return 0;
185}
186
187static int ax25_rt_opt(struct ax25_route_opt_struct *rt_option)
188{
189	ax25_route *ax25_rt;
190	ax25_dev *ax25_dev;
191	int err = 0;
192
193	if ((ax25_dev = ax25_addr_ax25dev(&rt_option->port_addr)) == NULL)
194		return -EINVAL;
195
196	write_lock_bh(&ax25_route_lock);
197
198	ax25_rt = ax25_route_list;
199	while (ax25_rt != NULL) {
200		if (ax25_rt->dev == ax25_dev->dev &&
201		    ax25cmp(&rt_option->dest_addr, &ax25_rt->callsign) == 0) {
202			switch (rt_option->cmd) {
203			case AX25_SET_RT_IPMODE:
204				switch (rt_option->arg) {
205				case ' ':
206				case 'D':
207				case 'V':
208					ax25_rt->ip_mode = rt_option->arg;
209					break;
210				default:
211					err = -EINVAL;
212					goto out;
213				}
214				break;
215			default:
216				err = -EINVAL;
217				goto out;
218			}
219		}
220		ax25_rt = ax25_rt->next;
221	}
222
223out:
224	write_unlock_bh(&ax25_route_lock);
225	ax25_dev_put(ax25_dev);
226	return err;
227}
228
229int ax25_rt_ioctl(unsigned int cmd, void __user *arg)
230{
231	struct ax25_route_opt_struct rt_option;
232	struct ax25_routes_struct route;
233
234	switch (cmd) {
235	case SIOCADDRT:
236		if (copy_from_user(&route, arg, sizeof(route)))
237			return -EFAULT;
238		return ax25_rt_add(&route);
239
240	case SIOCDELRT:
241		if (copy_from_user(&route, arg, sizeof(route)))
242			return -EFAULT;
243		return ax25_rt_del(&route);
244
245	case SIOCAX25OPTRT:
246		if (copy_from_user(&rt_option, arg, sizeof(rt_option)))
247			return -EFAULT;
248		return ax25_rt_opt(&rt_option);
249
250	default:
251		return -EINVAL;
252	}
253}
254
255#ifdef CONFIG_PROC_FS
256
257static void *ax25_rt_seq_start(struct seq_file *seq, loff_t *pos)
258	__acquires(ax25_route_lock)
259{
260	struct ax25_route *ax25_rt;
261	int i = 1;
262
263	read_lock(&ax25_route_lock);
264	if (*pos == 0)
265		return SEQ_START_TOKEN;
266
267	for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
268		if (i == *pos)
269			return ax25_rt;
270		++i;
271	}
272
273	return NULL;
274}
275
276static void *ax25_rt_seq_next(struct seq_file *seq, void *v, loff_t *pos)
277{
278	++*pos;
279	return (v == SEQ_START_TOKEN) ? ax25_route_list :
280		((struct ax25_route *) v)->next;
281}
282
283static void ax25_rt_seq_stop(struct seq_file *seq, void *v)
284	__releases(ax25_route_lock)
285{
286	read_unlock(&ax25_route_lock);
287}
288
289static int ax25_rt_seq_show(struct seq_file *seq, void *v)
290{
291	char buf[11];
292
293	if (v == SEQ_START_TOKEN)
294		seq_puts(seq, "callsign  dev  mode digipeaters\n");
295	else {
296		struct ax25_route *ax25_rt = v;
297		const char *callsign;
298		int i;
299
300		if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0)
301			callsign = "default";
302		else
303			callsign = ax2asc(buf, &ax25_rt->callsign);
304
305		seq_printf(seq, "%-9s %-4s",
306			callsign,
307			ax25_rt->dev ? ax25_rt->dev->name : "???");
308
309		switch (ax25_rt->ip_mode) {
310		case 'V':
311			seq_puts(seq, "   vc");
312			break;
313		case 'D':
314			seq_puts(seq, "   dg");
315			break;
316		default:
317			seq_puts(seq, "    *");
318			break;
319		}
320
321		if (ax25_rt->digipeat != NULL)
322			for (i = 0; i < ax25_rt->digipeat->ndigi; i++)
323				seq_printf(seq, " %s",
324				     ax2asc(buf, &ax25_rt->digipeat->calls[i]));
325
326		seq_puts(seq, "\n");
327	}
328	return 0;
329}
330
331const struct seq_operations ax25_rt_seqops = {
332	.start = ax25_rt_seq_start,
333	.next = ax25_rt_seq_next,
334	.stop = ax25_rt_seq_stop,
335	.show = ax25_rt_seq_show,
336};
 
 
 
 
 
 
 
 
 
 
 
 
 
337#endif
338
339/*
340 *	Find AX.25 route
341 *
342 *	Only routes with a reference count of zero can be destroyed.
343 *	Must be called with ax25_route_lock read locked.
344 */
345ax25_route *ax25_get_route(ax25_address *addr, struct net_device *dev)
346{
347	ax25_route *ax25_spe_rt = NULL;
348	ax25_route *ax25_def_rt = NULL;
349	ax25_route *ax25_rt;
350
 
351	/*
352	 *	Bind to the physical interface we heard them on, or the default
353	 *	route if none is found;
354	 */
355	for (ax25_rt = ax25_route_list; ax25_rt != NULL; ax25_rt = ax25_rt->next) {
356		if (dev == NULL) {
357			if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev != NULL)
358				ax25_spe_rt = ax25_rt;
359			if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev != NULL)
360				ax25_def_rt = ax25_rt;
361		} else {
362			if (ax25cmp(&ax25_rt->callsign, addr) == 0 && ax25_rt->dev == dev)
363				ax25_spe_rt = ax25_rt;
364			if (ax25cmp(&ax25_rt->callsign, &null_ax25_address) == 0 && ax25_rt->dev == dev)
365				ax25_def_rt = ax25_rt;
366		}
367	}
368
369	ax25_rt = ax25_def_rt;
370	if (ax25_spe_rt != NULL)
371		ax25_rt = ax25_spe_rt;
372
 
 
 
 
 
373	return ax25_rt;
374}
375
376/*
377 *	Adjust path: If you specify a default route and want to connect
378 *      a target on the digipeater path but w/o having a special route
379 *	set before, the path has to be truncated from your target on.
380 */
381static inline void ax25_adjust_path(ax25_address *addr, ax25_digi *digipeat)
382{
383	int k;
384
385	for (k = 0; k < digipeat->ndigi; k++) {
386		if (ax25cmp(addr, &digipeat->calls[k]) == 0)
387			break;
388	}
389
390	digipeat->ndigi = k;
391}
392
393
394/*
395 *	Find which interface to use.
396 */
397int ax25_rt_autobind(ax25_cb *ax25, ax25_address *addr)
398{
399	ax25_uid_assoc *user;
400	ax25_route *ax25_rt;
401	int err = 0;
402
403	ax25_route_lock_use();
404	ax25_rt = ax25_get_route(addr, NULL);
405	if (!ax25_rt) {
406		ax25_route_lock_unuse();
407		return -EHOSTUNREACH;
408	}
409	if ((ax25->ax25_dev = ax25_dev_ax25dev(ax25_rt->dev)) == NULL) {
410		err = -EHOSTUNREACH;
411		goto put;
412	}
413
414	user = ax25_findbyuid(current_euid());
415	if (user) {
416		ax25->source_addr = user->call;
417		ax25_uid_put(user);
418	} else {
419		if (ax25_uid_policy && !capable(CAP_NET_BIND_SERVICE)) {
420			err = -EPERM;
421			goto put;
422		}
423		ax25->source_addr = *(ax25_address *)ax25->ax25_dev->dev->dev_addr;
424	}
425
426	if (ax25_rt->digipeat != NULL) {
427		ax25->digipeat = kmemdup(ax25_rt->digipeat, sizeof(ax25_digi),
428					 GFP_ATOMIC);
429		if (ax25->digipeat == NULL) {
430			err = -ENOMEM;
431			goto put;
432		}
433		ax25_adjust_path(addr, ax25->digipeat);
434	}
435
436	if (ax25->sk != NULL) {
437		local_bh_disable();
438		bh_lock_sock(ax25->sk);
439		sock_reset_flag(ax25->sk, SOCK_ZAPPED);
440		bh_unlock_sock(ax25->sk);
441		local_bh_enable();
442	}
443
444put:
445	ax25_route_lock_unuse();
 
446	return err;
447}
448
449struct sk_buff *ax25_rt_build_path(struct sk_buff *skb, ax25_address *src,
450	ax25_address *dest, ax25_digi *digi)
451{
 
452	unsigned char *bp;
453	int len;
454
455	len = digi->ndigi * AX25_ADDR_LEN;
456
457	if (unlikely(skb_headroom(skb) < len)) {
458		skb = skb_expand_head(skb, len);
459		if (!skb) {
460			printk(KERN_CRIT "AX.25: ax25_dg_build_path - out of memory\n");
461			return NULL;
462		}
 
 
 
 
 
 
 
463	}
464
465	bp = skb_push(skb, len);
466
467	ax25_addr_build(bp, src, dest, digi, AX25_COMMAND, AX25_MODULUS);
468
469	return skb;
470}
471
472/*
473 *	Free all memory associated with routing structures.
474 */
475void __exit ax25_rt_free(void)
476{
477	ax25_route *s, *ax25_rt = ax25_route_list;
478
479	write_lock_bh(&ax25_route_lock);
480	while (ax25_rt != NULL) {
481		s       = ax25_rt;
482		ax25_rt = ax25_rt->next;
483
484		kfree(s->digipeat);
485		kfree(s);
486	}
487	write_unlock_bh(&ax25_route_lock);
488}