bpqether.c 14.1 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/*
 *	G8BPQ compatible "AX.25 via ethernet" driver release 004
 *
 *	This code REQUIRES 2.0.0 or higher/ NET3.029
 *
 *	This is a "pseudo" network driver to allow AX.25 over Ethernet
 *	using G8BPQ encapsulation. It has been extracted from the protocol
 *	implementation because
 *
 *		- things got unreadable within the protocol stack
 *		- to cure the protocol stack from "feature-ism"
 *		- a protocol implementation shouldn't need to know on
 *		  which hardware it is running
 *		- user-level programs like the AX.25 utilities shouldn't
 *		  need to know about the hardware.
 *		- IP over ethernet encapsulated AX.25 was impossible
 *		- rxecho.c did not work
 *		- to have room for extensions
 *		- it just deserves to "live" as an own driver
 *
 *	This driver can use any ethernet destination address, and can be
 *	limited to accept frames from one dedicated ethernet card only.
 *
 *	Note that the driver sets up the BPQ devices automagically on
 *	startup or (if started before the "insmod" of an ethernet device)
 *	on "ifconfig up". It hopefully will remove the BPQ on "rmmod"ing
 *	the ethernet device (in fact: as soon as another ethernet or bpq
 *	device gets "ifconfig"ured).
 *
 *	I have heard that several people are thinking of experiments
 *	with highspeed packet radio using existing ethernet cards.
 *	Well, this driver is prepared for this purpose, just add
 *	your tx key control and a txdelay / tailtime algorithm,
 *	probably some buffering, and /voila/...
 *
 *	History
 *	BPQ   001	Joerg(DL1BKE)		Extracted BPQ code from AX.25
 *						protocol stack and added my own
 *						yet existing patches
 *	BPQ   002	Joerg(DL1BKE)		Scan network device list on
 *						startup.
 *	BPQ   003	Joerg(DL1BKE)		Ethernet destination address
 *						and accepted source address
 *						can be configured by an ioctl()
 *						call.
 *						Fixed to match Linux networking
 *						changes - 2.1.15.
 *	BPQ   004	Joerg(DL1BKE)		Fixed to not lock up on ifconfig.
 */

#include <linux/errno.h>
#include <linux/types.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/net.h>
59
#include <linux/slab.h>
L
Linus Torvalds 已提交
60 61 62
#include <net/ax25.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
63
#include <linux/etherdevice.h>
L
Linus Torvalds 已提交
64 65 66
#include <linux/if_arp.h>
#include <linux/skbuff.h>
#include <net/sock.h>
67
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77 78 79
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/notifier.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/stat.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/rtnetlink.h>

#include <net/ip.h>
#include <net/arp.h>
80
#include <net/net_namespace.h>
L
Linus Torvalds 已提交
81 82 83

#include <linux/bpqether.h>

84
static const char banner[] __initconst = KERN_INFO \
85
	"AX.25: bpqether driver version 004\n";
L
Linus Torvalds 已提交
86

D
David S. Miller 已提交
87
static int bpq_rcv(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *);
L
Linus Torvalds 已提交
88 89
static int bpq_device_event(struct notifier_block *, unsigned long, void *);

90
static struct packet_type bpq_packet_type __read_mostly = {
91
	.type	= cpu_to_be16(ETH_P_BPQ),
L
Linus Torvalds 已提交
92 93 94 95
	.func	= bpq_rcv,
};

static struct notifier_block bpq_dev_notifier = {
96
	.notifier_call = bpq_device_event,
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109
};


struct bpqdev {
	struct list_head bpq_list;	/* list of bpq devices chain */
	struct net_device *ethdev;	/* link to ethernet device */
	struct net_device *axdev;	/* bpq device (bpq#) */
	char   dest_addr[6];		/* ether destination address */
	char   acpt_addr[6];		/* accept ether frames from this address only */
};

static LIST_HEAD(bpq_devices);

110 111 112 113 114 115
/*
 * bpqether network devices are paired with ethernet devices below them, so
 * form a special "super class" of normal ethernet devices; split their locks
 * off into a separate class since they always nest.
 */
static struct lock_class_key bpq_netdev_xmit_lock_key;
116
static struct lock_class_key bpq_netdev_addr_lock_key;
117 118 119 120 121 122 123 124 125 126

static void bpq_set_lockdep_class_one(struct net_device *dev,
				      struct netdev_queue *txq,
				      void *_unused)
{
	lockdep_set_class(&txq->_xmit_lock, &bpq_netdev_xmit_lock_key);
}

static void bpq_set_lockdep_class(struct net_device *dev)
{
127
	lockdep_set_class(&dev->addr_list_lock, &bpq_netdev_addr_lock_key);
128 129 130
	netdev_for_each_tx_queue(dev, bpq_set_lockdep_class_one, NULL);
}

L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
/* ------------------------------------------------------------------------ */


/*
 *	Get the ethernet device for a BPQ device
 */
static inline struct net_device *bpq_get_ether_dev(struct net_device *dev)
{
	struct bpqdev *bpq = netdev_priv(dev);

	return bpq ? bpq->ethdev : NULL;
}

/*
 *	Get the BPQ device for the ethernet device
 */
static inline struct net_device *bpq_get_ax25_dev(struct net_device *dev)
{
	struct bpqdev *bpq;

151 152
	list_for_each_entry_rcu(bpq, &bpq_devices, bpq_list,
				lockdep_rtnl_is_held()) {
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160
		if (bpq->ethdev == dev)
			return bpq->axdev;
	}
	return NULL;
}

static inline int dev_is_ethdev(struct net_device *dev)
{
161
	return dev->type == ARPHRD_ETHER && strncmp(dev->name, "dummy", 5);
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169
}

/* ------------------------------------------------------------------------ */


/*
 *	Receive an AX.25 frame via an ethernet interface.
 */
D
David S. Miller 已提交
170
static int bpq_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *ptype, struct net_device *orig_dev)
L
Linus Torvalds 已提交
171 172 173 174 175 176
{
	int len;
	char * ptr;
	struct ethhdr *eth;
	struct bpqdev *bpq;

O
Octavian Purdila 已提交
177
	if (!net_eq(dev_net(dev), &init_net))
178 179
		goto drop;

L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
		return NET_RX_DROP;

	if (!pskb_may_pull(skb, sizeof(struct ethhdr)))
		goto drop;

	rcu_read_lock();
	dev = bpq_get_ax25_dev(dev);

	if (dev == NULL || !netif_running(dev)) 
		goto drop_unlock;

	/*
	 * if we want to accept frames from just one ethernet device
	 * we check the source address of the sender.
	 */

	bpq = netdev_priv(dev);

	eth = eth_hdr(skb);

	if (!(bpq->acpt_addr[0] & 0x01) &&
202
	    !ether_addr_equal(eth->h_source, bpq->acpt_addr))
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212
		goto drop_unlock;

	if (skb_cow(skb, sizeof(struct ethhdr)))
		goto drop_unlock;

	len = skb->data[0] + skb->data[1] * 256 - 5;

	skb_pull(skb, 2);	/* Remove the length bytes */
	skb_trim(skb, len);	/* Set the length of the data */

213 214
	dev->stats.rx_packets++;
	dev->stats.rx_bytes += len;
L
Linus Torvalds 已提交
215 216 217 218

	ptr = skb_push(skb, 1);
	*ptr = 0;

219
	skb->protocol = ax25_type_trans(skb, dev);
L
Linus Torvalds 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
	netif_rx(skb);
unlock:

	rcu_read_unlock();

	return 0;
drop_unlock:
	kfree_skb(skb);
	goto unlock;

drop:
	kfree_skb(skb);
	return 0;
}

/*
 * 	Send an AX.25 frame via an ethernet interface
 */
238
static netdev_tx_t bpq_xmit(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
239 240 241
{
	unsigned char *ptr;
	struct bpqdev *bpq;
D
Dan Carpenter 已提交
242
	struct net_device *orig_dev;
L
Linus Torvalds 已提交
243 244
	int size;

245 246 247
	if (skb->protocol == htons(ETH_P_IP))
		return ax25_ip_xmit(skb);

L
Linus Torvalds 已提交
248 249 250 251 252 253
	/*
	 * Just to be *really* sure not to send anything if the interface
	 * is down, the ethernet device may have gone.
	 */
	if (!netif_running(dev)) {
		kfree_skb(skb);
254
		return NETDEV_TX_OK;
L
Linus Torvalds 已提交
255 256
	}

257
	skb_pull(skb, 1);			/* Drop KISS byte */
L
Linus Torvalds 已提交
258 259 260
	size = skb->len;

	/*
261 262 263
	 * We're about to mess with the skb which may still shared with the
	 * generic networking code so unshare and ensure it's got enough
	 * space for the BPQ headers.
L
Linus Torvalds 已提交
264
	 */
265 266 267
	if (skb_cow(skb, AX25_BPQ_HEADER_LEN)) {
		if (net_ratelimit())
			pr_err("bpqether: out of memory\n");
L
Linus Torvalds 已提交
268
		kfree_skb(skb);
269 270

		return NETDEV_TX_OK;
L
Linus Torvalds 已提交
271 272
	}

273
	ptr = skb_push(skb, 2);			/* Make space for length */
L
Linus Torvalds 已提交
274 275 276 277 278 279

	*ptr++ = (size + 5) % 256;
	*ptr++ = (size + 5) / 256;

	bpq = netdev_priv(dev);

D
Dan Carpenter 已提交
280
	orig_dev = dev;
L
Linus Torvalds 已提交
281
	if ((dev = bpq_get_ether_dev(dev)) == NULL) {
D
Dan Carpenter 已提交
282
		orig_dev->stats.tx_dropped++;
L
Linus Torvalds 已提交
283
		kfree_skb(skb);
284
		return NETDEV_TX_OK;
L
Linus Torvalds 已提交
285 286
	}

287
	skb->protocol = ax25_type_trans(skb, dev);
288
	skb_reset_network_header(skb);
289
	dev_hard_header(skb, dev, ETH_P_BPQ, bpq->dest_addr, NULL, 0);
290 291
	dev->stats.tx_packets++;
	dev->stats.tx_bytes+=skb->len;
L
Linus Torvalds 已提交
292 293 294
  
	dev_queue_xmit(skb);
	netif_wake_queue(dev);
295
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
296 297 298 299 300 301 302 303 304
}

/*
 *	Set AX.25 callsign
 */
static int bpq_set_mac_address(struct net_device *dev, void *addr)
{
    struct sockaddr *sa = (struct sockaddr *)addr;

J
Jakub Kicinski 已提交
305
    dev_addr_set(dev, sa->sa_data);
L
Linus Torvalds 已提交
306 307 308 309 310 311 312 313 314 315 316

    return 0;
}

/*	Ioctl commands
 *
 *		SIOCSBPQETHOPT		reserved for enhancements
 *		SIOCSBPQETHADDR		set the destination and accepted
 *					source ethernet address (broadcast
 *					or multicast: accept all)
 */
A
Arnd Bergmann 已提交
317 318
static int bpq_siocdevprivate(struct net_device *dev, struct ifreq *ifr,
			      void __user *data, int cmd)
L
Linus Torvalds 已提交
319
{
A
Arnd Bergmann 已提交
320
	struct bpq_ethaddr __user *ethaddr = data;
L
Linus Torvalds 已提交
321 322 323 324 325 326 327 328
	struct bpqdev *bpq = netdev_priv(dev);
	struct bpq_req req;

	if (!capable(CAP_NET_ADMIN))
		return -EPERM;

	switch (cmd) {
		case SIOCSBPQETHOPT:
A
Arnd Bergmann 已提交
329
			if (copy_from_user(&req, data, sizeof(struct bpq_req)))
L
Linus Torvalds 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
				return -EFAULT;
			switch (req.cmd) {
				case SIOCGBPQETHPARAM:
				case SIOCSBPQETHPARAM:
				default:
					return -EINVAL;
			}

			break;

		case SIOCSBPQETHADDR:
			if (copy_from_user(bpq->dest_addr, ethaddr->destination, ETH_ALEN))
				return -EFAULT;
			if (copy_from_user(bpq->acpt_addr, ethaddr->accept, ETH_ALEN))
				return -EFAULT;
			break;

		default:
			return -EINVAL;
	}

	return 0;
}

/*
 * open/close a device
 */
static int bpq_open(struct net_device *dev)
{
	netif_start_queue(dev);
	return 0;
}

static int bpq_close(struct net_device *dev)
{
	netif_stop_queue(dev);
	return 0;
}


/* ------------------------------------------------------------------------ */

372
#ifdef CONFIG_PROC_FS
L
Linus Torvalds 已提交
373 374 375 376
/*
 *	Proc filesystem
 */
static void *bpq_seq_start(struct seq_file *seq, loff_t *pos)
377
	__acquires(RCU)
L
Linus Torvalds 已提交
378 379 380 381 382 383 384 385 386
{
	int i = 1;
	struct bpqdev *bpqdev;

	rcu_read_lock();

	if (*pos == 0)
		return SEQ_START_TOKEN;
	
R
Ralf Baechle 已提交
387
	list_for_each_entry_rcu(bpqdev, &bpq_devices, bpq_list) {
L
Linus Torvalds 已提交
388 389 390 391 392 393 394 395 396
		if (i == *pos)
			return bpqdev;
	}
	return NULL;
}

static void *bpq_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
	struct list_head *p;
397
	struct bpqdev *bpqdev = v;
L
Linus Torvalds 已提交
398 399 400 401

	++*pos;

	if (v == SEQ_START_TOKEN)
402
		p = rcu_dereference(list_next_rcu(&bpq_devices));
L
Linus Torvalds 已提交
403
	else
404
		p = rcu_dereference(list_next_rcu(&bpqdev->bpq_list));
L
Linus Torvalds 已提交
405 406

	return (p == &bpq_devices) ? NULL 
P
Paul E. McKenney 已提交
407
		: list_entry(p, struct bpqdev, bpq_list);
L
Linus Torvalds 已提交
408 409 410
}

static void bpq_seq_stop(struct seq_file *seq, void *v)
411
	__releases(RCU)
L
Linus Torvalds 已提交
412 413 414 415 416 417 418 419 420 421 422 423 424
{
	rcu_read_unlock();
}


static int bpq_seq_show(struct seq_file *seq, void *v)
{
	if (v == SEQ_START_TOKEN)
		seq_puts(seq, 
			 "dev   ether      destination        accept from\n");
	else {
		const struct bpqdev *bpqdev = v;

J
Johannes Berg 已提交
425
		seq_printf(seq, "%-5s %-10s %pM  ",
L
Linus Torvalds 已提交
426
			bpqdev->axdev->name, bpqdev->ethdev->name,
J
Johannes Berg 已提交
427
			bpqdev->dest_addr);
L
Linus Torvalds 已提交
428

429 430 431
		if (is_multicast_ether_addr(bpqdev->acpt_addr))
			seq_printf(seq, "*\n");
		else
J
Johannes Berg 已提交
432
			seq_printf(seq, "%pM\n", bpqdev->acpt_addr);
L
Linus Torvalds 已提交
433 434 435 436 437

	}
	return 0;
}

J
Jan Engelhardt 已提交
438
static const struct seq_operations bpq_seqops = {
L
Linus Torvalds 已提交
439 440 441 442 443
	.start = bpq_seq_start,
	.next = bpq_seq_next,
	.stop = bpq_seq_stop,
	.show = bpq_seq_show,
};
444
#endif
L
Linus Torvalds 已提交
445 446
/* ------------------------------------------------------------------------ */

447 448 449 450 451
static const struct net_device_ops bpq_netdev_ops = {
	.ndo_open	     = bpq_open,
	.ndo_stop	     = bpq_close,
	.ndo_start_xmit	     = bpq_xmit,
	.ndo_set_mac_address = bpq_set_mac_address,
A
Arnd Bergmann 已提交
452
	.ndo_siocdevprivate  = bpq_siocdevprivate,
453
};
L
Linus Torvalds 已提交
454 455 456

static void bpq_setup(struct net_device *dev)
{
457
	dev->netdev_ops	     = &bpq_netdev_ops;
458
	dev->needs_free_netdev = true;
L
Linus Torvalds 已提交
459 460

	dev->flags      = 0;
461
	dev->features	= NETIF_F_LLTX;	/* Allow recursion */
L
Linus Torvalds 已提交
462

463
#if IS_ENABLED(CONFIG_AX25)
464
	dev->header_ops      = &ax25_header_ops;
L
Linus Torvalds 已提交
465 466 467 468 469 470 471
#endif

	dev->type            = ARPHRD_AX25;
	dev->hard_header_len = AX25_MAX_HEADER_LEN + AX25_BPQ_HEADER_LEN;
	dev->mtu             = AX25_DEF_PACLEN;
	dev->addr_len        = AX25_ADDR_LEN;

472 473
	memcpy(dev->broadcast, &ax25_bcast, AX25_ADDR_LEN);
	dev_addr_set(dev, (u8 *)&ax25_defaddr);
L
Linus Torvalds 已提交
474 475 476 477 478 479 480 481 482 483 484
}

/*
 *	Setup a new device.
 */
static int bpq_new_device(struct net_device *edev)
{
	int err;
	struct net_device *ndev;
	struct bpqdev *bpq;

485 486
	ndev = alloc_netdev(sizeof(struct bpqdev), "bpq%d", NET_NAME_UNKNOWN,
			    bpq_setup);
L
Linus Torvalds 已提交
487 488 489 490 491 492 493 494 495
	if (!ndev)
		return -ENOMEM;

		
	bpq = netdev_priv(ndev);
	dev_hold(edev);
	bpq->ethdev = edev;
	bpq->axdev = ndev;

496 497
	eth_broadcast_addr(bpq->dest_addr);
	eth_broadcast_addr(bpq->acpt_addr);
L
Linus Torvalds 已提交
498 499 500 501

	err = register_netdevice(ndev);
	if (err)
		goto error;
502
	bpq_set_lockdep_class(ndev);
L
Linus Torvalds 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527

	/* List protected by RTNL */
	list_add_rcu(&bpq->bpq_list, &bpq_devices);
	return 0;

 error:
	dev_put(edev);
	free_netdev(ndev);
	return err;
	
}

static void bpq_free_device(struct net_device *ndev)
{
	struct bpqdev *bpq = netdev_priv(ndev);

	dev_put(bpq->ethdev);
	list_del_rcu(&bpq->bpq_list);

	unregister_netdevice(ndev);
}

/*
 *	Handle device status changes.
 */
528 529
static int bpq_device_event(struct notifier_block *this,
			    unsigned long event, void *ptr)
L
Linus Torvalds 已提交
530
{
531
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
L
Linus Torvalds 已提交
532

O
Octavian Purdila 已提交
533
	if (!net_eq(dev_net(dev), &init_net))
534 535
		return NOTIFY_DONE;

L
Linus Torvalds 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
	if (!dev_is_ethdev(dev))
		return NOTIFY_DONE;

	switch (event) {
	case NETDEV_UP:		/* new ethernet device -> new BPQ interface */
		if (bpq_get_ax25_dev(dev) == NULL)
			bpq_new_device(dev);
		break;

	case NETDEV_DOWN:	/* ethernet device closed -> close BPQ interface */
		if ((dev = bpq_get_ax25_dev(dev)) != NULL)
			dev_close(dev);
		break;

	case NETDEV_UNREGISTER:	/* ethernet device removed -> free BPQ interface */
		if ((dev = bpq_get_ax25_dev(dev)) != NULL)
			bpq_free_device(dev);
		break;
	default:
		break;
	}

	return NOTIFY_DONE;
}


/* ------------------------------------------------------------------------ */

/*
 * Initialize driver. To be called from af_ax25 if not compiled as a
 * module
 */
static int __init bpq_init_driver(void)
{
#ifdef CONFIG_PROC_FS
571
	if (!proc_create_seq("bpqether", 0444, init_net.proc_net, &bpq_seqops)) {
L
Linus Torvalds 已提交
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
		printk(KERN_ERR
			"bpq: cannot create /proc/net/bpqether entry.\n");
		return -ENOENT;
	}
#endif  /* CONFIG_PROC_FS */

	dev_add_pack(&bpq_packet_type);

	register_netdevice_notifier(&bpq_dev_notifier);

	printk(banner);

	return 0;
}

static void __exit bpq_cleanup_driver(void)
{
	struct bpqdev *bpq;

	dev_remove_pack(&bpq_packet_type);

	unregister_netdevice_notifier(&bpq_dev_notifier);

595
	remove_proc_entry("bpqether", init_net.proc_net);
L
Linus Torvalds 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608 609

	rtnl_lock();
	while (!list_empty(&bpq_devices)) {
		bpq = list_entry(bpq_devices.next, struct bpqdev, bpq_list);
		bpq_free_device(bpq->axdev);
	}
	rtnl_unlock();
}

MODULE_AUTHOR("Joerg Reuter DL1BKE <jreuter@yaina.de>");
MODULE_DESCRIPTION("Transmit and receive AX.25 packets over Ethernet");
MODULE_LICENSE("GPL");
module_init(bpq_init_driver);
module_exit(bpq_cleanup_driver);