lapbether.c 12.4 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 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
/*
 *	"LAPB via ethernet" driver release 001
 *
 *	This code REQUIRES 2.1.15 or higher/ NET3.038
 *
 *	This module:
 *		This module is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 *
 *	This is a "pseudo" network driver to allow LAPB over Ethernet.
 *
 *	This driver can use any ethernet destination address, and can be 
 *	limited to accept frames from one dedicated ethernet card only.
 *
 *	History
 *	LAPBETH 001	Jonathan Naylor		Cloned from bpqether.c
 *	2000-10-29	Henner Eisen	lapb_data_indication() return status.
 *	2000-11-14	Henner Eisen	dev_hold/put, NETDEV_GOING_DOWN support
 */

#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>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <linux/if_arp.h>
#include <linux/skbuff.h>
#include <net/sock.h>
#include <asm/system.h>
#include <asm/uaccess.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/notifier.h>
#include <linux/proc_fs.h>
#include <linux/stat.h>
#include <linux/netfilter.h>
#include <linux/module.h>
#include <linux/lapb.h>
#include <linux/init.h>

47
static char bcast_addr[6] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Linus Torvalds's avatar
Linus Torvalds committed
48

Linus Torvalds's avatar
Linus Torvalds committed
49 50
/* If this number is made larger, check that the temporary string buffer
 * in lapbeth_new_device is large enough to store the probe device name.*/
Linus Torvalds's avatar
Linus Torvalds committed
51 52
#define MAXLAPBDEV 100

53 54 55 56 57 58 59 60 61 62 63
struct lapbethdev {
	struct list_head	node;
	char			ethname[14];	/* ether device name */
	struct net_device	*ethdev;	/* link to ethernet device */
	struct net_device	axdev;		/* lapbeth device (lapb#) */
	struct net_device_stats stats;		/* some statistics */
	atomic_t		refcnt;
};

static struct list_head lapbeth_devices = LIST_HEAD_INIT(lapbeth_devices);
static rwlock_t lapbeth_devices_lock = RW_LOCK_UNLOCKED;
Linus Torvalds's avatar
Linus Torvalds committed
64

65 66 67 68 69 70 71 72 73 74
static __inline__ void lapbeth_hold(struct lapbethdev *lapbeth)
{
	atomic_inc(&lapbeth->refcnt);
}

static __inline__ void lapbeth_put(struct lapbethdev *lapbeth)
{
	if (atomic_dec_and_test(&lapbeth->refcnt))
		kfree(lapbeth);
}
Linus Torvalds's avatar
Linus Torvalds committed
75 76 77 78 79
/* ------------------------------------------------------------------------ */

/*
 *	Get the LAPB device for the ethernet device
 */
80
static __inline__ struct lapbethdev *lapbeth_get_x25_dev(struct net_device *dev)
Linus Torvalds's avatar
Linus Torvalds committed
81
{
82 83 84 85
	struct list_head *entry;
	struct lapbethdev *lapbeth, *use = NULL;

	read_lock(&lapbeth_devices_lock);
Linus Torvalds's avatar
Linus Torvalds committed
86

87 88 89 90 91 92 93 94 95
	list_for_each(entry, &lapbeth_devices) {
		lapbeth = list_entry(entry, struct lapbethdev, node);
		if (lapbeth->ethdev == dev) {
			use = lapbeth;
			break;
		}
	}
	if (use)
		lapbeth_hold(use);
Linus Torvalds's avatar
Linus Torvalds committed
96

97 98
	read_unlock(&lapbeth_devices_lock);
	return use;
Linus Torvalds's avatar
Linus Torvalds committed
99 100
}

101
static __inline__ int dev_is_ethdev(struct net_device *dev)
Linus Torvalds's avatar
Linus Torvalds committed
102
{
103
	return dev->type == ARPHRD_ETHER && strncmp(dev->name, "dummy", 5);
Linus Torvalds's avatar
Linus Torvalds committed
104 105 106 107 108 109 110 111
}

/*
 *	Sanity check: remove all devices that ceased to exists and
 *	return '1' if the given LAPB device was affected.
 */
static int lapbeth_check_devices(struct net_device *dev)
{
112 113
	struct lapbethdev *lapbeth;
	struct list_head *entry, *tmp;
Linus Torvalds's avatar
Linus Torvalds committed
114
	int result = 0;
Linus Torvalds's avatar
Linus Torvalds committed
115

116
	write_lock(&lapbeth_devices_lock);
Linus Torvalds's avatar
Linus Torvalds committed
117

118 119
	list_for_each_safe(entry, tmp, &lapbeth_devices) {
		lapbeth = list_entry(entry, struct lapbethdev, node);
Linus Torvalds's avatar
Linus Torvalds committed
120 121 122 123 124 125 126

		if (!dev_get(lapbeth->ethname)) {
			if (&lapbeth->axdev == dev)
				result = 1;

			unregister_netdev(&lapbeth->axdev);
			dev_put(lapbeth->ethdev);
127 128
			list_del(&lapbeth->node);
			lapbeth_put(lapbeth);
Linus Torvalds's avatar
Linus Torvalds committed
129 130
		}
	}
131
	write_unlock(&lapbeth_devices_lock);
Linus Torvalds's avatar
Linus Torvalds committed
132

Linus Torvalds's avatar
Linus Torvalds committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146
	return result;
}

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

/*
 *	Receive a LAPB frame via an ethernet interface.
 */
static int lapbeth_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *ptype)
{
	int len, err;
	struct lapbethdev *lapbeth;

	skb->sk = NULL;		/* Initially we don't know who it's for */
Linus Torvalds's avatar
Linus Torvalds committed
147

148
	lapbeth = lapbeth_get_x25_dev(dev);
Linus Torvalds's avatar
Linus Torvalds committed
149

150 151 152 153
	if (!lapbeth)
		goto drop;
	if (!netif_running(&lapbeth->axdev))
		goto put_drop;
Linus Torvalds's avatar
Linus Torvalds committed
154 155 156 157 158 159 160 161 162 163

	lapbeth->stats.rx_packets++;

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

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

	if ((err = lapb_data_received(lapbeth, skb)) != LAPB_OK) {
		printk(KERN_DEBUG "lapbether: lapb_data_received err - %d\n", err);
164
		goto put_drop;
Linus Torvalds's avatar
Linus Torvalds committed
165
	}
166 167
	lapbeth_put(lapbeth);
out:
Linus Torvalds's avatar
Linus Torvalds committed
168
	return 0;
169 170 171 172 173
put_drop:
	lapbeth_put(lapbeth);
drop:
	kfree_skb(skb);
	goto out;
Linus Torvalds's avatar
Linus Torvalds committed
174 175 176 177
}

static int lapbeth_data_indication(void *token, struct sk_buff *skb)
{
178
	struct lapbethdev *lapbeth = (struct lapbethdev *)token;
Linus Torvalds's avatar
Linus Torvalds committed
179 180 181 182 183 184 185 186 187 188 189 190 191 192
	unsigned char *ptr;

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

	skb->dev      = &lapbeth->axdev;
	skb->protocol = htons(ETH_P_X25);
	skb->mac.raw  = skb->data;
	skb->pkt_type = PACKET_HOST;

	return netif_rx(skb);
}

/*
Linus Torvalds's avatar
Linus Torvalds committed
193
 *	Send a LAPB frame via an ethernet interface
Linus Torvalds's avatar
Linus Torvalds committed
194 195 196
 */
static int lapbeth_xmit(struct sk_buff *skb, struct net_device *dev)
{
197 198
	struct lapbethdev *lapbeth = (struct lapbethdev *)dev->priv;
	int err = -ENODEV;
Linus Torvalds's avatar
Linus Torvalds committed
199 200 201 202 203 204 205

	/*
	 * Just to be *really* sure not to send anything if the interface
	 * is down, the ethernet device may have gone.
	 */
	if (!netif_running(dev)) {
		lapbeth_check_devices(dev);
206
		goto drop;
Linus Torvalds's avatar
Linus Torvalds committed
207 208 209
	}

	switch (skb->data[0]) {
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
	case 0x00:
		err = 0;
		break;
	case 0x01:
		if ((err = lapb_connect_request(lapbeth)) != LAPB_OK)
			printk(KERN_ERR "lapbeth: lapb_connect_request "
			       "error: %d\n", err);
		goto drop_ok;
	case 0x02:
		if ((err = lapb_disconnect_request(lapbeth)) != LAPB_OK)
			printk(KERN_ERR "lapbeth: lapb_disconnect_request "
			       "err: %d\n", err);
		/* Fall thru */
	default:
		goto drop_ok;
Linus Torvalds's avatar
Linus Torvalds committed
225 226 227 228 229 230
	}

	skb_pull(skb, 1);

	if ((err = lapb_data_request(lapbeth, skb)) != LAPB_OK) {
		printk(KERN_ERR "lapbeth: lapb_data_request error - %d\n", err);
231 232
		err = -ENOMEM;
		goto drop;
Linus Torvalds's avatar
Linus Torvalds committed
233
	}
234 235 236 237 238 239 240 241
	err = 0;
out:
	return err;
drop_ok:
	err = 0;
drop:
	kfree_skb(skb);
	goto out;
Linus Torvalds's avatar
Linus Torvalds committed
242
}
Linus Torvalds's avatar
Linus Torvalds committed
243

Linus Torvalds's avatar
Linus Torvalds committed
244 245
static void lapbeth_data_transmit(void *token, struct sk_buff *skb)
{
246
	struct lapbethdev *lapbeth = (struct lapbethdev *)token;
Linus Torvalds's avatar
Linus Torvalds committed
247 248
	unsigned char *ptr;
	struct net_device *dev;
249
	int size = skb->len;
Linus Torvalds's avatar
Linus Torvalds committed
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268

	skb->protocol = htons(ETH_P_X25);

	ptr = skb_push(skb, 2);

	*ptr++ = size % 256;
	*ptr++ = size / 256;

	lapbeth->stats.tx_packets++;

	skb->dev = dev = lapbeth->ethdev;

	dev->hard_header(skb, dev, ETH_P_DEC, bcast_addr, NULL, 0);

	dev_queue_xmit(skb);
}

static void lapbeth_connected(void *token, int reason)
{
269
	struct lapbethdev *lapbeth = (struct lapbethdev *)token;
Linus Torvalds's avatar
Linus Torvalds committed
270
	unsigned char *ptr;
271
	struct sk_buff *skb = dev_alloc_skb(1);
Linus Torvalds's avatar
Linus Torvalds committed
272

273
	if (!skb) {
Linus Torvalds's avatar
Linus Torvalds committed
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
		printk(KERN_ERR "lapbeth: out of memory\n");
		return;
	}

	ptr  = skb_put(skb, 1);
	*ptr = 0x01;

	skb->dev      = &lapbeth->axdev;
	skb->protocol = htons(ETH_P_X25);
	skb->mac.raw  = skb->data;
	skb->pkt_type = PACKET_HOST;

	netif_rx(skb);
}

static void lapbeth_disconnected(void *token, int reason)
{
291
	struct lapbethdev *lapbeth = (struct lapbethdev *)token;
Linus Torvalds's avatar
Linus Torvalds committed
292
	unsigned char *ptr;
293
	struct sk_buff *skb = dev_alloc_skb(1);
Linus Torvalds's avatar
Linus Torvalds committed
294

295
	if (!skb) {
Linus Torvalds's avatar
Linus Torvalds committed
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
		printk(KERN_ERR "lapbeth: out of memory\n");
		return;
	}

	ptr  = skb_put(skb, 1);
	*ptr = 0x02;

	skb->dev      = &lapbeth->axdev;
	skb->protocol = htons(ETH_P_X25);
	skb->mac.raw  = skb->data;
	skb->pkt_type = PACKET_HOST;

	netif_rx(skb);
}

/*
 *	Statistics
 */
static struct net_device_stats *lapbeth_get_stats(struct net_device *dev)
{
316
	struct lapbethdev *lapbeth = (struct lapbethdev *)dev->priv;
Linus Torvalds's avatar
Linus Torvalds committed
317 318 319 320 321 322 323 324
	return &lapbeth->stats;
}

/*
 *	Set AX.25 callsign
 */
static int lapbeth_set_mac_address(struct net_device *dev, void *addr)
{
325 326 327
	struct sockaddr *sa = (struct sockaddr *)addr;
	memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
328 329 330 331 332 333 334 335 336 337 338 339 340
}

/*
 * open/close a device
 */
static int lapbeth_open(struct net_device *dev)
{
	struct lapb_register_struct lapbeth_callbacks;
	struct lapbethdev *lapbeth;
	int err;

	if (lapbeth_check_devices(dev))
		return -ENODEV;		/* oops, it's gone */
Linus Torvalds's avatar
Linus Torvalds committed
341

342
	lapbeth = (struct lapbethdev *)dev->priv;
Linus Torvalds's avatar
Linus Torvalds committed
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361

	lapbeth_callbacks.connect_confirmation    = lapbeth_connected;
	lapbeth_callbacks.connect_indication      = lapbeth_connected;
	lapbeth_callbacks.disconnect_confirmation = lapbeth_disconnected;
	lapbeth_callbacks.disconnect_indication   = lapbeth_disconnected;
	lapbeth_callbacks.data_indication         = lapbeth_data_indication;
	lapbeth_callbacks.data_transmit           = lapbeth_data_transmit;

	if ((err = lapb_register(lapbeth, &lapbeth_callbacks)) != LAPB_OK) {
		printk(KERN_ERR "lapbeth: lapb_register error - %d\n", err);
		return -ENODEV;
	}

	netif_start_queue(dev);
	return 0;
}

static int lapbeth_close(struct net_device *dev)
{
362
	struct lapbethdev *lapbeth = (struct lapbethdev *)dev->priv;
Linus Torvalds's avatar
Linus Torvalds committed
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
	int err;

	netif_stop_queue(dev);

	if ((err = lapb_unregister(lapbeth)) != LAPB_OK)
		printk(KERN_ERR "lapbeth: lapb_unregister error - %d\n", err);

	return 0;
}

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

/*
 *	Setup a new device.
 */
static int lapbeth_new_device(struct net_device *dev)
{
Linus Torvalds's avatar
Linus Torvalds committed
380
	unsigned char buf[14];
381 382
	struct lapbethdev *lapbeth;
	int k, rc = -ENOMEM;
Linus Torvalds's avatar
Linus Torvalds committed
383

384 385
	if ((lapbeth = kmalloc(sizeof(struct lapbethdev), GFP_ATOMIC)) == NULL)
		goto out;
Linus Torvalds's avatar
Linus Torvalds committed
386

Linus Torvalds's avatar
Linus Torvalds committed
387
	memset(lapbeth, 0, sizeof(struct lapbethdev));
Linus Torvalds's avatar
Linus Torvalds committed
388

Linus Torvalds's avatar
Linus Torvalds committed
389 390 391
	dev_hold(dev);
	lapbeth->ethdev = dev;

392 393 394
	strncpy(lapbeth->ethname, dev->name, sizeof(lapbeth->ethname) - 1);
	lapbeth->ethname[sizeof(lapbeth->ethname) - 1] = '\0';
	atomic_set(&lapbeth->refcnt, 1);
Linus Torvalds's avatar
Linus Torvalds committed
395 396

	dev = &lapbeth->axdev;
Linus Torvalds's avatar
Linus Torvalds committed
397
	SET_MODULE_OWNER(dev);
Linus Torvalds's avatar
Linus Torvalds committed
398 399 400 401 402 403

	for (k = 0; k < MAXLAPBDEV; k++) {
		struct net_device *odev;

		sprintf(buf, "lapb%d", k);

404 405
		if ((odev = __dev_get_by_name(buf)) == NULL ||
		    lapbeth_check_devices(odev))
Linus Torvalds's avatar
Linus Torvalds committed
406 407 408
			break;
	}

409 410 411
	rc = -ENODEV;
	if (k == MAXLAPBDEV)
		goto fail;
Linus Torvalds's avatar
Linus Torvalds committed
412

Linus Torvalds's avatar
Linus Torvalds committed
413 414 415
	dev->priv = (void *)lapbeth;	/* pointer back */
	strcpy(dev->name, buf);

416 417 418
	rc = -EIO;
	if (register_netdev(dev))
		goto fail;
Linus Torvalds's avatar
Linus Torvalds committed
419 420 421 422 423 424 425 426 427 428 429

	dev->hard_start_xmit = lapbeth_xmit;
	dev->open	     = lapbeth_open;
	dev->stop	     = lapbeth_close;
	dev->set_mac_address = lapbeth_set_mac_address;
	dev->get_stats	     = lapbeth_get_stats;
	dev->type            = ARPHRD_X25;
	dev->hard_header_len = 3;
	dev->mtu             = 1000;
	dev->addr_len        = 0;

430 431 432 433 434 435 436 437 438 439 440
	write_lock(&lapbeth_devices_lock);
	list_add(&lapbeth->node, &lapbeth_devices);
	lapbeth_hold(lapbeth);
	write_unlock(&lapbeth_devices_lock);
	rc = 0;
out:
	return rc;
fail:
	dev_put(dev);
	kfree(lapbeth);
	goto out;
Linus Torvalds's avatar
Linus Torvalds committed
441 442 443 444 445
}

/*
 *	Handle device status changes.
 */
446 447
static int lapbeth_device_event(struct notifier_block *this,
				unsigned long event, void *ptr)
Linus Torvalds's avatar
Linus Torvalds committed
448
{
449 450
	struct lapbethdev *lapbeth;
	struct net_device *dev = (struct net_device *)ptr;
Linus Torvalds's avatar
Linus Torvalds committed
451

Linus Torvalds's avatar
Linus Torvalds committed
452 453 454 455 456 457
	if (!dev_is_ethdev(dev))
		return NOTIFY_DONE;

	lapbeth_check_devices(NULL);

	switch (event) {
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
	case NETDEV_UP:
		/*
		 * New ethernet device -> new LAPB interface
		 */
		lapbeth = lapbeth_get_x25_dev(dev);

		if (lapbeth)
			lapbeth_put(lapbeth);
		else
			lapbeth_new_device(dev);
		break;
	case NETDEV_GOING_DOWN:
	case NETDEV_DOWN:	/* ethernet device closed -> close LAPB interface */
		lapbeth = lapbeth_get_x25_dev(dev);

		if (lapbeth) {
			dev_close(lapbeth->ethdev);
			lapbeth_put(lapbeth);
		}
		break;
Linus Torvalds's avatar
Linus Torvalds committed
478 479 480 481 482 483 484
	}

	return NOTIFY_DONE;
}

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

Linus Torvalds's avatar
Linus Torvalds committed
485
static struct packet_type lapbeth_packet_type = {
486 487
	.type = __constant_htons(ETH_P_DEC),
	.func = lapbeth_rcv,
Linus Torvalds's avatar
Linus Torvalds committed
488 489 490
};

static struct notifier_block lapbeth_dev_notifier = {
491
	.notifier_call = lapbeth_device_event,
Linus Torvalds's avatar
Linus Torvalds committed
492 493
};

494
static char banner[] __initdata = KERN_INFO "LAPB Ethernet driver version 0.02\n";
Linus Torvalds's avatar
Linus Torvalds committed
495 496

static int __init lapbeth_init_driver(void)
Linus Torvalds's avatar
Linus Torvalds committed
497 498 499 500 501 502 503
{
	struct net_device *dev;

	dev_add_pack(&lapbeth_packet_type);

	register_netdevice_notifier(&lapbeth_dev_notifier);

Linus Torvalds's avatar
Linus Torvalds committed
504
	printk(banner);
Linus Torvalds's avatar
Linus Torvalds committed
505 506

	read_lock_bh(&dev_base_lock);
507
	for (dev = dev_base; dev; dev = dev->next) {
Linus Torvalds's avatar
Linus Torvalds committed
508 509 510 511 512 513 514 515 516 517
		if (dev_is_ethdev(dev)) {
			read_unlock_bh(&dev_base_lock);
			lapbeth_new_device(dev);
			read_lock_bh(&dev_base_lock);
		}
	}
	read_unlock_bh(&dev_base_lock);

	return 0;
}
Linus Torvalds's avatar
Linus Torvalds committed
518
module_init(lapbeth_init_driver);
Linus Torvalds's avatar
Linus Torvalds committed
519

Linus Torvalds's avatar
Linus Torvalds committed
520
static void __exit lapbeth_cleanup_driver(void)
Linus Torvalds's avatar
Linus Torvalds committed
521 522
{
	struct lapbethdev *lapbeth;
523
	struct list_head *entry, *tmp;
Linus Torvalds's avatar
Linus Torvalds committed
524 525 526 527

	dev_remove_pack(&lapbeth_packet_type);
	unregister_netdevice_notifier(&lapbeth_dev_notifier);

528 529 530 531
	write_lock(&lapbeth_devices_lock);

	list_for_each_safe(entry, tmp, &lapbeth_devices) {
		lapbeth = list_entry(entry, struct lapbethdev, node);
Linus Torvalds's avatar
Linus Torvalds committed
532
		unregister_netdev(&lapbeth->axdev);
533 534 535 536 537
		list_del(&lapbeth->node);
		lapbeth_put(lapbeth);
	}

	write_unlock(&lapbeth_devices_lock);
Linus Torvalds's avatar
Linus Torvalds committed
538
}
Linus Torvalds's avatar
Linus Torvalds committed
539 540 541 542
module_exit(lapbeth_cleanup_driver);

MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
MODULE_DESCRIPTION("The unofficial LAPB over Ethernet driver");
Linus Torvalds's avatar
Linus Torvalds committed
543
MODULE_LICENSE("GPL");