slip.c 33.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * slip.c	This module implements the SLIP protocol for kernel-based
 *		devices like TTY.  It interfaces between a raw TTY, and the
 *		kernel's INET protocol layers.
 *
 * Version:	@(#)slip.c	0.8.3	12/24/94
 *
 * Authors:	Laurence Culhane, <loz@holmes.demon.co.uk>
 *		Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
 *
 * Fixes:
 *		Alan Cox	: 	Sanity checks and avoid tx overruns.
 *					Has a new sl->mtu field.
14 15 16 17 18
 *		Alan Cox	: 	Found cause of overrun. ifconfig sl0
 *					mtu upwards. Driver now spots this
 *					and grows/shrinks its buffers(hack!).
 *					Memory leak if you run out of memory
 *					setting up a slip driver fixed.
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *		Matt Dillon	:	Printable slip (borrowed from NET2E)
 *	Pauline Middelink	:	Slip driver fixes.
 *		Alan Cox	:	Honours the old SL_COMPRESSED flag
 *		Alan Cox	:	KISS AX.25 and AXUI IP support
 *		Michael Riepe	:	Automatic CSLIP recognition added
 *		Charles Hedrick :	CSLIP header length problem fix.
 *		Alan Cox	:	Corrected non-IP cases of the above.
 *		Alan Cox	:	Now uses hardware type as per FvK.
 *		Alan Cox	:	Default to 192.168.0.0 (RFC 1597)
 *		A.N.Kuznetsov	:	dev_tint() recursion fix.
 *	Dmitry Gorodchanin	:	SLIP memory leaks
 *      Dmitry Gorodchanin      :       Code cleanup. Reduce tty driver
 *                                      buffering from 4096 to 256 bytes.
 *                                      Improving SLIP response time.
 *                                      CONFIG_SLIP_MODE_SLIP6.
34 35
 *                                      ifconfig sl? up & down now works
 *					correctly.
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48
 *					Modularization.
 *              Alan Cox        :       Oops - fix AX.25 buffer lengths
 *      Dmitry Gorodchanin      :       Even more cleanups. Preserve CSLIP
 *                                      statistics. Include CSLIP code only
 *                                      if it really needed.
 *		Alan Cox	:	Free slhc buffers in the right place.
 *		Alan Cox	:	Allow for digipeated IP over AX.25
 *		Matti Aarnio	:	Dynamic SLIP devices, with ideas taken
 *					from Jim Freeman's <jfree@caldera.com>
 *					dynamic PPP devices.  We do NOT kfree()
 *					device entries, just reg./unreg. them
 *					as they are needed.  We kfree() them
 *					at module cleanup.
49 50 51 52 53 54 55 56 57
 *					With MODULE-loading ``insmod'', user
 *					can issue parameter:  slip_maxdev=1024
 *					(Or how much he/she wants.. Default
 *					is 256)
 *	Stanislav Voronyi	:	Slip line checking, with ideas taken
 *					from multislip BSDI driver which was
 *					written by Igor Chechik, RELCOM Corp.
 *					Only algorithms have been ported to
 *					Linux SLIP driver.
L
Linus Torvalds 已提交
58
 *	Vitaly E. Lavrov	:	Sane behaviour on tty hangup.
59 60
 *	Alexey Kuznetsov	:	Cleanup interfaces to tty & netdevice
 *					modules.
L
Linus Torvalds 已提交
61 62 63 64 65 66 67 68 69
 */

#define SL_CHECK_TRANSMIT
#include <linux/module.h>
#include <linux/moduleparam.h>

#include <asm/system.h>
#include <asm/uaccess.h>
#include <linux/bitops.h>
70
#include <linux/sched.h>
L
Linus Torvalds 已提交
71 72 73 74 75 76 77 78 79 80 81 82
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/in.h>
#include <linux/tty.h>
#include <linux/errno.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/rtnetlink.h>
#include <linux/if_arp.h>
#include <linux/if_slip.h>
83
#include <linux/compat.h>
84
#include <linux/delay.h>
L
Linus Torvalds 已提交
85
#include <linux/init.h>
86
#include <linux/slab.h>
L
Linus Torvalds 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
#include "slip.h"
#ifdef CONFIG_INET
#include <linux/ip.h>
#include <linux/tcp.h>
#include <net/slhc_vj.h>
#endif

#define SLIP_VERSION	"0.8.4-NET3.019-NEWTTY"

static struct net_device **slip_devs;

static int slip_maxdev = SL_NRUNIT;
module_param(slip_maxdev, int, 0);
MODULE_PARM_DESC(slip_maxdev, "Maximum number of slip devices");

static int slip_esc(unsigned char *p, unsigned char *d, int len);
static void slip_unesc(struct slip *sl, unsigned char c);
#ifdef CONFIG_SLIP_MODE_SLIP6
static int slip_esc6(unsigned char *p, unsigned char *d, int len);
static void slip_unesc6(struct slip *sl, unsigned char c);
#endif
#ifdef CONFIG_SLIP_SMART
static void sl_keepalive(unsigned long sls);
static void sl_outfill(unsigned long sls);
111
static int sl_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124
#endif

/********************************
*  Buffer administration routines:
*	sl_alloc_bufs()
*	sl_free_bufs()
*	sl_realloc_bufs()
*
* NOTE: sl_realloc_bufs != sl_free_bufs + sl_alloc_bufs, because
*	sl_realloc_bufs provides strong atomicity and reallocation
*	on actively running device.
*********************************/

125
/*
L
Linus Torvalds 已提交
126 127 128
   Allocate channel buffers.
 */

129
static int sl_alloc_bufs(struct slip *sl, int mtu)
L
Linus Torvalds 已提交
130 131 132
{
	int err = -ENOBUFS;
	unsigned long len;
133 134
	char *rbuff = NULL;
	char *xbuff = NULL;
L
Linus Torvalds 已提交
135
#ifdef SL_INCLUDE_CSLIP
136
	char *cbuff = NULL;
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
	struct slcompress *slcomp = NULL;
#endif

	/*
	 * Allocate the SLIP frame buffers:
	 *
	 * rbuff	Receive buffer.
	 * xbuff	Transmit buffer.
	 * cbuff        Temporary compression buffer.
	 */
	len = mtu * 2;

	/*
	 * allow for arrival of larger UDP packets, even if we say not to
	 * also fixes a bug in which SunOS sends 512-byte packets even with
	 * an MSS of 128
	 */
	if (len < 576 * 2)
		len = 576 * 2;
	rbuff = kmalloc(len + 4, GFP_KERNEL);
	if (rbuff == NULL)
		goto err_exit;
	xbuff = kmalloc(len + 4, GFP_KERNEL);
	if (xbuff == NULL)
		goto err_exit;
#ifdef SL_INCLUDE_CSLIP
	cbuff = kmalloc(len + 4, GFP_KERNEL);
	if (cbuff == NULL)
		goto err_exit;
	slcomp = slhc_init(16, 16);
	if (slcomp == NULL)
		goto err_exit;
#endif
	spin_lock_bh(&sl->lock);
	if (sl->tty == NULL) {
		spin_unlock_bh(&sl->lock);
		err = -ENODEV;
		goto err_exit;
	}
	sl->mtu	     = mtu;
	sl->buffsize = len;
	sl->rcount   = 0;
	sl->xleft    = 0;
	rbuff = xchg(&sl->rbuff, rbuff);
	xbuff = xchg(&sl->xbuff, xbuff);
#ifdef SL_INCLUDE_CSLIP
	cbuff = xchg(&sl->cbuff, cbuff);
	slcomp = xchg(&sl->slcomp, slcomp);
#ifdef CONFIG_SLIP_MODE_SLIP6
	sl->xdata    = 0;
	sl->xbits    = 0;
#endif
#endif
	spin_unlock_bh(&sl->lock);
	err = 0;

	/* Cleanup */
err_exit:
#ifdef SL_INCLUDE_CSLIP
196
	kfree(cbuff);
L
Linus Torvalds 已提交
197 198 199
	if (slcomp)
		slhc_free(slcomp);
#endif
200 201
	kfree(xbuff);
	kfree(rbuff);
L
Linus Torvalds 已提交
202 203 204 205
	return err;
}

/* Free a SLIP channel buffers. */
206
static void sl_free_bufs(struct slip *sl)
L
Linus Torvalds 已提交
207 208
{
	/* Free all SLIP frame buffers. */
J
Jesper Juhl 已提交
209 210
	kfree(xchg(&sl->rbuff, NULL));
	kfree(xchg(&sl->xbuff, NULL));
L
Linus Torvalds 已提交
211
#ifdef SL_INCLUDE_CSLIP
J
Jesper Juhl 已提交
212 213
	kfree(xchg(&sl->cbuff, NULL));
	slhc_free(xchg(&sl->slcomp, NULL));
L
Linus Torvalds 已提交
214 215 216
#endif
}

217
/*
L
Linus Torvalds 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
   Reallocate slip channel buffers.
 */

static int sl_realloc_bufs(struct slip *sl, int mtu)
{
	int err = 0;
	struct net_device *dev = sl->dev;
	unsigned char *xbuff, *rbuff;
#ifdef SL_INCLUDE_CSLIP
	unsigned char *cbuff;
#endif
	int len = mtu * 2;

/*
 * allow for arrival of larger UDP packets, even if we say not to
 * also fixes a bug in which SunOS sends 512-byte packets even with
 * an MSS of 128
 */
	if (len < 576 * 2)
		len = 576 * 2;

239 240
	xbuff = kmalloc(len + 4, GFP_ATOMIC);
	rbuff = kmalloc(len + 4, GFP_ATOMIC);
L
Linus Torvalds 已提交
241
#ifdef SL_INCLUDE_CSLIP
242
	cbuff = kmalloc(len + 4, GFP_ATOMIC);
L
Linus Torvalds 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
#endif


#ifdef SL_INCLUDE_CSLIP
	if (xbuff == NULL || rbuff == NULL || cbuff == NULL)  {
#else
	if (xbuff == NULL || rbuff == NULL)  {
#endif
		if (mtu >= sl->mtu) {
			printk(KERN_WARNING "%s: unable to grow slip buffers, MTU change cancelled.\n",
			       dev->name);
			err = -ENOBUFS;
		}
		goto done;
	}
	spin_lock_bh(&sl->lock);

	err = -ENODEV;
	if (sl->tty == NULL)
		goto done_on_bh;

	xbuff    = xchg(&sl->xbuff, xbuff);
	rbuff    = xchg(&sl->rbuff, rbuff);
#ifdef SL_INCLUDE_CSLIP
	cbuff    = xchg(&sl->cbuff, cbuff);
#endif
	if (sl->xleft)  {
		if (sl->xleft <= len)  {
			memcpy(sl->xbuff, sl->xhead, sl->xleft);
		} else  {
			sl->xleft = 0;
274
			dev->stats.tx_dropped++;
L
Linus Torvalds 已提交
275 276 277 278 279 280 281 282 283
		}
	}
	sl->xhead = sl->xbuff;

	if (sl->rcount)  {
		if (sl->rcount <= len) {
			memcpy(sl->rbuff, rbuff, sl->rcount);
		} else  {
			sl->rcount = 0;
284
			dev->stats.rx_over_errors++;
L
Linus Torvalds 已提交
285 286 287 288 289 290 291 292 293 294 295 296
			set_bit(SLF_ERROR, &sl->flags);
		}
	}
	sl->mtu      = mtu;
	dev->mtu      = mtu;
	sl->buffsize = len;
	err = 0;

done_on_bh:
	spin_unlock_bh(&sl->lock);

done:
297 298
	kfree(xbuff);
	kfree(rbuff);
L
Linus Torvalds 已提交
299
#ifdef SL_INCLUDE_CSLIP
300
	kfree(cbuff);
L
Linus Torvalds 已提交
301 302 303 304 305 306
#endif
	return err;
}


/* Set the "sending" flag.  This must be atomic hence the set_bit. */
307
static inline void sl_lock(struct slip *sl)
L
Linus Torvalds 已提交
308 309 310 311 312 313
{
	netif_stop_queue(sl->dev);
}


/* Clear the "sending" flag.  This must be atomic, hence the ASM. */
314
static inline void sl_unlock(struct slip *sl)
L
Linus Torvalds 已提交
315 316 317 318 319
{
	netif_wake_queue(sl->dev);
}

/* Send one completely decapsulated IP datagram to the IP layer. */
320
static void sl_bump(struct slip *sl)
L
Linus Torvalds 已提交
321
{
322
	struct net_device *dev = sl->dev;
L
Linus Torvalds 已提交
323 324 325 326 327 328
	struct sk_buff *skb;
	int count;

	count = sl->rcount;
#ifdef SL_INCLUDE_CSLIP
	if (sl->mode & (SL_MODE_ADAPTIVE | SL_MODE_CSLIP)) {
329 330
		unsigned char c = sl->rbuff[0];
		if (c & SL_TYPE_COMPRESSED_TCP) {
L
Linus Torvalds 已提交
331 332
			/* ignore compressed packets when CSLIP is off */
			if (!(sl->mode & SL_MODE_CSLIP)) {
333
				printk(KERN_WARNING "%s: compressed packet ignored\n", dev->name);
L
Linus Torvalds 已提交
334 335
				return;
			}
336 337
			/* make sure we've reserved enough space for uncompress
			   to use */
L
Linus Torvalds 已提交
338
			if (count + 80 > sl->buffsize) {
339
				dev->stats.rx_over_errors++;
L
Linus Torvalds 已提交
340 341 342
				return;
			}
			count = slhc_uncompress(sl->slcomp, sl->rbuff, count);
343
			if (count <= 0)
L
Linus Torvalds 已提交
344 345 346 347 348 349
				return;
		} else if (c >= SL_TYPE_UNCOMPRESSED_TCP) {
			if (!(sl->mode & SL_MODE_CSLIP)) {
				/* turn on header compression */
				sl->mode |= SL_MODE_CSLIP;
				sl->mode &= ~SL_MODE_ADAPTIVE;
350
				printk(KERN_INFO "%s: header compression turned on\n", dev->name);
L
Linus Torvalds 已提交
351 352
			}
			sl->rbuff[0] &= 0x4f;
353
			if (slhc_remember(sl->slcomp, sl->rbuff, count) <= 0)
L
Linus Torvalds 已提交
354 355 356 357 358
				return;
		}
	}
#endif  /* SL_INCLUDE_CSLIP */

359
	dev->stats.rx_bytes += count;
360

L
Linus Torvalds 已提交
361
	skb = dev_alloc_skb(count);
362
	if (skb == NULL) {
363 364
		printk(KERN_WARNING "%s: memory squeeze, dropping packet.\n", dev->name);
		dev->stats.rx_dropped++;
L
Linus Torvalds 已提交
365 366
		return;
	}
367
	skb->dev = dev;
368
	memcpy(skb_put(skb, count), sl->rbuff, count);
369
	skb_reset_mac_header(skb);
370
	skb->protocol = htons(ETH_P_IP);
L
Linus Torvalds 已提交
371
	netif_rx(skb);
372
	dev->stats.rx_packets++;
L
Linus Torvalds 已提交
373 374 375
}

/* Encapsulate one IP datagram and stuff into a TTY queue. */
376
static void sl_encaps(struct slip *sl, unsigned char *icp, int len)
L
Linus Torvalds 已提交
377 378 379 380 381 382
{
	unsigned char *p;
	int actual, count;

	if (len > sl->mtu) {		/* Sigh, shouldn't occur BUT ... */
		printk(KERN_WARNING "%s: truncating oversized transmit packet!\n", sl->dev->name);
383
		sl->dev->stats.tx_dropped++;
L
Linus Torvalds 已提交
384 385 386 387 388 389
		sl_unlock(sl);
		return;
	}

	p = icp;
#ifdef SL_INCLUDE_CSLIP
390
	if (sl->mode & SL_MODE_CSLIP)
L
Linus Torvalds 已提交
391 392 393
		len = slhc_compress(sl->slcomp, p, len, sl->cbuff, &p, 1);
#endif
#ifdef CONFIG_SLIP_MODE_SLIP6
394
	if (sl->mode & SL_MODE_SLIP6)
L
Linus Torvalds 已提交
395 396 397 398 399 400 401
		count = slip_esc6(p, (unsigned char *) sl->xbuff, len);
	else
#endif
		count = slip_esc(p, (unsigned char *) sl->xbuff, len);

	/* Order of next two lines is *very* important.
	 * When we are sending a little amount of data,
A
Alan Cox 已提交
402
	 * the transfer may be completed inside the ops->write()
L
Linus Torvalds 已提交
403 404 405 406 407
	 * routine, because it's running with interrupts enabled.
	 * In this case we *never* got WRITE_WAKEUP event,
	 * if we did not request it before write operation.
	 *       14 Oct 1994  Dmitry Gorodchanin.
	 */
408
	set_bit(TTY_DO_WRITE_WAKEUP, &sl->tty->flags);
A
Alan Cox 已提交
409
	actual = sl->tty->ops->write(sl->tty, sl->xbuff, count);
L
Linus Torvalds 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
#ifdef SL_CHECK_TRANSMIT
	sl->dev->trans_start = jiffies;
#endif
	sl->xleft = count - actual;
	sl->xhead = sl->xbuff + actual;
#ifdef CONFIG_SLIP_SMART
	/* VSV */
	clear_bit(SLF_OUTWAIT, &sl->flags);	/* reset outfill flag */
#endif
}

/*
 * Called by the driver when there's room for more data.  If we have
 * more packets to send, we send them here.
 */
static void slip_write_wakeup(struct tty_struct *tty)
{
	int actual;
428
	struct slip *sl = tty->disc_data;
L
Linus Torvalds 已提交
429 430

	/* First make sure we're connected. */
431
	if (!sl || sl->magic != SLIP_MAGIC || !netif_running(sl->dev))
L
Linus Torvalds 已提交
432
		return;
433

L
Linus Torvalds 已提交
434 435 436
	if (sl->xleft <= 0)  {
		/* Now serial buffer is almost free & we can start
		 * transmission of another packet */
437
		sl->dev->stats.tx_packets++;
438
		clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
L
Linus Torvalds 已提交
439 440 441 442
		sl_unlock(sl);
		return;
	}

A
Alan Cox 已提交
443
	actual = tty->ops->write(tty, sl->xhead, sl->xleft);
L
Linus Torvalds 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
	sl->xleft -= actual;
	sl->xhead += actual;
}

static void sl_tx_timeout(struct net_device *dev)
{
	struct slip *sl = netdev_priv(dev);

	spin_lock(&sl->lock);

	if (netif_queue_stopped(dev)) {
		if (!netif_running(dev))
			goto out;

		/* May be we must check transmitter timeout here ?
		 *      14 Oct 1994 Dmitry Gorodchanin.
		 */
#ifdef SL_CHECK_TRANSMIT
E
Eric Dumazet 已提交
462
		if (time_before(jiffies, dev_trans_start(dev) + 20 * HZ))  {
L
Linus Torvalds 已提交
463 464 465
			/* 20 sec timeout not reached */
			goto out;
		}
466 467
		printk(KERN_WARNING "%s: transmit timed out, %s?\n",
			dev->name,
A
Alan Cox 已提交
468
			(tty_chars_in_buffer(sl->tty) || sl->xleft) ?
469
				"bad line quality" : "driver error");
L
Linus Torvalds 已提交
470
		sl->xleft = 0;
471
		clear_bit(TTY_DO_WRITE_WAKEUP, &sl->tty->flags);
L
Linus Torvalds 已提交
472 473 474 475 476 477 478 479 480
		sl_unlock(sl);
#endif
	}
out:
	spin_unlock(&sl->lock);
}


/* Encapsulate an IP datagram and kick it into a TTY queue. */
481
static netdev_tx_t
L
Linus Torvalds 已提交
482 483 484 485 486
sl_xmit(struct sk_buff *skb, struct net_device *dev)
{
	struct slip *sl = netdev_priv(dev);

	spin_lock(&sl->lock);
487
	if (!netif_running(dev)) {
L
Linus Torvalds 已提交
488 489 490
		spin_unlock(&sl->lock);
		printk(KERN_WARNING "%s: xmit call when iface is down\n", dev->name);
		dev_kfree_skb(skb);
491
		return NETDEV_TX_OK;
L
Linus Torvalds 已提交
492 493 494 495
	}
	if (sl->tty == NULL) {
		spin_unlock(&sl->lock);
		dev_kfree_skb(skb);
496
		return NETDEV_TX_OK;
L
Linus Torvalds 已提交
497 498 499
	}

	sl_lock(sl);
500
	dev->stats.tx_bytes += skb->len;
L
Linus Torvalds 已提交
501 502 503 504
	sl_encaps(sl, skb->data, skb->len);
	spin_unlock(&sl->lock);

	dev_kfree_skb(skb);
505
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
}


/******************************************
 *   Routines looking at netdevice side.
 ******************************************/

/* Netdevice UP -> DOWN routine */

static int
sl_close(struct net_device *dev)
{
	struct slip *sl = netdev_priv(dev);

	spin_lock_bh(&sl->lock);
521
	if (sl->tty)
L
Linus Torvalds 已提交
522
		/* TTY discipline is running. */
523
		clear_bit(TTY_DO_WRITE_WAKEUP, &sl->tty->flags);
L
Linus Torvalds 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536 537
	netif_stop_queue(dev);
	sl->rcount   = 0;
	sl->xleft    = 0;
	spin_unlock_bh(&sl->lock);

	return 0;
}

/* Netdevice DOWN -> UP routine */

static int sl_open(struct net_device *dev)
{
	struct slip *sl = netdev_priv(dev);

538
	if (sl->tty == NULL)
L
Linus Torvalds 已提交
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
		return -ENODEV;

	sl->flags &= (1 << SLF_INUSE);
	netif_start_queue(dev);
	return 0;
}

/* Netdevice change MTU request */

static int sl_change_mtu(struct net_device *dev, int new_mtu)
{
	struct slip *sl = netdev_priv(dev);

	if (new_mtu < 68 || new_mtu > 65534)
		return -EINVAL;

	if (new_mtu != dev->mtu)
		return sl_realloc_bufs(sl, new_mtu);
	return 0;
}

/* Netdevice get statistics request */

562 563
static struct rtnl_link_stats64 *
sl_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
L
Linus Torvalds 已提交
564
{
565
	struct net_device_stats *devstats = &dev->stats;
E
Eric Dumazet 已提交
566
	unsigned long c_rx_dropped = 0;
L
Linus Torvalds 已提交
567
#ifdef SL_INCLUDE_CSLIP
E
Eric Dumazet 已提交
568 569 570
	unsigned long c_rx_fifo_errors = 0;
	unsigned long c_tx_fifo_errors = 0;
	unsigned long c_collisions = 0;
571
	struct slip *sl = netdev_priv(dev);
E
Eric Dumazet 已提交
572
	struct slcompress *comp = sl->slcomp;
L
Linus Torvalds 已提交
573 574

	if (comp) {
E
Eric Dumazet 已提交
575 576 577 578
		c_rx_fifo_errors = comp->sls_i_compressed;
		c_rx_dropped     = comp->sls_i_tossed;
		c_tx_fifo_errors = comp->sls_o_compressed;
		c_collisions     = comp->sls_o_misses;
L
Linus Torvalds 已提交
579
	}
E
Eric Dumazet 已提交
580 581 582 583
	stats->rx_fifo_errors = sl->rx_compressed + c_rx_fifo_errors;
	stats->tx_fifo_errors = sl->tx_compressed + c_tx_fifo_errors;
	stats->collisions     = sl->tx_misses + c_collisions;
#endif
584 585 586 587 588 589 590 591 592
	stats->rx_packets     = devstats->rx_packets;
	stats->tx_packets     = devstats->tx_packets;
	stats->rx_bytes       = devstats->rx_bytes;
	stats->tx_bytes       = devstats->tx_bytes;
	stats->rx_dropped     = devstats->rx_dropped + c_rx_dropped;
	stats->tx_dropped     = devstats->tx_dropped;
	stats->tx_errors      = devstats->tx_errors;
	stats->rx_errors      = devstats->rx_errors;
	stats->rx_over_errors = devstats->rx_over_errors;
E
Eric Dumazet 已提交
593 594

	return stats;
L
Linus Torvalds 已提交
595 596 597 598 599 600 601 602 603
}

/* Netdevice register callback */

static int sl_init(struct net_device *dev)
{
	struct slip *sl = netdev_priv(dev);

	/*
604
	 *	Finish setting up the DEVICE info.
L
Linus Torvalds 已提交
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
	 */

	dev->mtu		= sl->mtu;
	dev->type		= ARPHRD_SLIP + sl->mode;
#ifdef SL_CHECK_TRANSMIT
	dev->watchdog_timeo	= 20*HZ;
#endif
	return 0;
}


static void sl_uninit(struct net_device *dev)
{
	struct slip *sl = netdev_priv(dev);

	sl_free_bufs(sl);
}

A
Alan Cox 已提交
623 624 625 626 627 628 629 630
/* Hook the destructor so we can free slip devices at the right point in time */
static void sl_free_netdev(struct net_device *dev)
{
	int i = dev->base_addr;
	free_netdev(dev);
	slip_devs[i] = NULL;
}

631 632 633 634 635 636
static const struct net_device_ops sl_netdev_ops = {
	.ndo_init		= sl_init,
	.ndo_uninit	  	= sl_uninit,
	.ndo_open		= sl_open,
	.ndo_stop		= sl_close,
	.ndo_start_xmit		= sl_xmit,
637
	.ndo_get_stats64        = sl_get_stats64,
638 639 640 641 642 643 644 645
	.ndo_change_mtu		= sl_change_mtu,
	.ndo_tx_timeout		= sl_tx_timeout,
#ifdef CONFIG_SLIP_SMART
	.ndo_do_ioctl		= sl_ioctl,
#endif
};


L
Linus Torvalds 已提交
646 647
static void sl_setup(struct net_device *dev)
{
648
	dev->netdev_ops		= &sl_netdev_ops;
A
Alan Cox 已提交
649
	dev->destructor		= sl_free_netdev;
650

L
Linus Torvalds 已提交
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
	dev->hard_header_len	= 0;
	dev->addr_len		= 0;
	dev->tx_queue_len	= 10;

	/* New-style flags. */
	dev->flags		= IFF_NOARP|IFF_POINTOPOINT|IFF_MULTICAST;
}

/******************************************
  Routines looking at TTY side.
 ******************************************/


/*
 * Handle the 'receiver data ready' interrupt.
 * This function is called by the 'tty_io' module in the kernel when
 * a block of SLIP data has been received, which can now be decapsulated
 * and sent on to some IP layer for further processing. This will not
 * be re-entered while running but other ldisc functions may be called
 * in parallel
 */
672

673 674
static unsigned int slip_receive_buf(struct tty_struct *tty,
		const unsigned char *cp, char *fp, int count)
L
Linus Torvalds 已提交
675
{
676
	struct slip *sl = tty->disc_data;
677
	int bytes = count;
L
Linus Torvalds 已提交
678

679
	if (!sl || sl->magic != SLIP_MAGIC || !netif_running(sl->dev))
680
		return -ENODEV;
L
Linus Torvalds 已提交
681 682

	/* Read the characters out of the buffer */
683
	while (bytes--) {
L
Linus Torvalds 已提交
684
		if (fp && *fp++) {
685
			if (!test_and_set_bit(SLF_ERROR, &sl->flags))
686
				sl->dev->stats.rx_errors++;
L
Linus Torvalds 已提交
687 688 689 690 691 692 693 694 695 696
			cp++;
			continue;
		}
#ifdef CONFIG_SLIP_MODE_SLIP6
		if (sl->mode & SL_MODE_SLIP6)
			slip_unesc6(sl, *cp++);
		else
#endif
			slip_unesc(sl, *cp++);
	}
697 698

	return count;
L
Linus Torvalds 已提交
699 700 701 702 703 704 705 706 707 708 709 710 711 712
}

/************************************
 *  slip_open helper routines.
 ************************************/

/* Collect hanged up channels */
static void sl_sync(void)
{
	int i;
	struct net_device *dev;
	struct slip	  *sl;

	for (i = 0; i < slip_maxdev; i++) {
713 714
		dev = slip_devs[i];
		if (dev == NULL)
L
Linus Torvalds 已提交
715 716 717 718 719
			break;

		sl = netdev_priv(dev);
		if (sl->tty || sl->leased)
			continue;
720
		if (dev->flags & IFF_UP)
L
Linus Torvalds 已提交
721 722 723 724 725 726
			dev_close(dev);
	}
}


/* Find a free SLIP channel, and link in this `tty' line. */
727
static struct slip *sl_alloc(dev_t line)
L
Linus Torvalds 已提交
728 729 730 731 732
{
	int i;
	struct net_device *dev = NULL;
	struct slip       *sl;

733
	if (slip_devs == NULL)
L
Linus Torvalds 已提交
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752
		return NULL;	/* Master array missing ! */

	for (i = 0; i < slip_maxdev; i++) {
		dev = slip_devs[i];
		if (dev == NULL)
			break;
	}
	/* Sorry, too many, all slots in use */
	if (i >= slip_maxdev)
		return NULL;

	if (dev) {
		sl = netdev_priv(dev);
		if (test_bit(SLF_INUSE, &sl->flags)) {
			unregister_netdevice(dev);
			dev = NULL;
			slip_devs[i] = NULL;
		}
	}
753

L
Linus Torvalds 已提交
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
	if (!dev) {
		char name[IFNAMSIZ];
		sprintf(name, "sl%d", i);

		dev = alloc_netdev(sizeof(*sl), name, sl_setup);
		if (!dev)
			return NULL;
		dev->base_addr  = i;
	}

	sl = netdev_priv(dev);

	/* Initialize channel control data */
	sl->magic       = SLIP_MAGIC;
	sl->dev	      	= dev;
	spin_lock_init(&sl->lock);
	sl->mode        = SL_MODE_DEFAULT;
#ifdef CONFIG_SLIP_SMART
772 773 774 775
	/* initialize timer_list struct */
	init_timer(&sl->keepalive_timer);
	sl->keepalive_timer.data = (unsigned long)sl;
	sl->keepalive_timer.function = sl_keepalive;
L
Linus Torvalds 已提交
776
	init_timer(&sl->outfill_timer);
777 778
	sl->outfill_timer.data = (unsigned long)sl;
	sl->outfill_timer.function = sl_outfill;
L
Linus Torvalds 已提交
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
#endif
	slip_devs[i] = dev;
	return sl;
}

/*
 * Open the high-level part of the SLIP channel.
 * This function is called by the TTY module when the
 * SLIP line discipline is called for.  Because we are
 * sure the tty line exists, we only have to link it to
 * a free SLIP channel...
 *
 * Called in process context serialized from other ldisc calls.
 */

static int slip_open(struct tty_struct *tty)
{
	struct slip *sl;
	int err;

799
	if (!capable(CAP_NET_ADMIN))
L
Linus Torvalds 已提交
800
		return -EPERM;
801

A
Alan Cox 已提交
802 803 804
	if (tty->ops->write == NULL)
		return -EOPNOTSUPP;

L
Linus Torvalds 已提交
805 806 807 808 809 810 811 812 813
	/* RTnetlink lock is misused here to serialize concurrent
	   opens of slip channels. There are better ways, but it is
	   the simplest one.
	 */
	rtnl_lock();

	/* Collect hanged up channels. */
	sl_sync();

814
	sl = tty->disc_data;
L
Linus Torvalds 已提交
815 816 817 818 819 820 821 822

	err = -EEXIST;
	/* First make sure we're not already connected. */
	if (sl && sl->magic == SLIP_MAGIC)
		goto err_exit;

	/* OK.  Find a free SLIP channel to use. */
	err = -ENFILE;
823 824
	sl = sl_alloc(tty_devnum(tty));
	if (sl == NULL)
L
Linus Torvalds 已提交
825 826 827 828 829 830
		goto err_exit;

	sl->tty = tty;
	tty->disc_data = sl;
	sl->line = tty_devnum(tty);
	sl->pid = current->pid;
831

L
Linus Torvalds 已提交
832 833
	if (!test_bit(SLF_INUSE, &sl->flags)) {
		/* Perform the low-level SLIP initialization. */
834 835
		err = sl_alloc_bufs(sl, SL_MTU);
		if (err)
L
Linus Torvalds 已提交
836 837 838 839
			goto err_free_chan;

		set_bit(SLF_INUSE, &sl->flags);

840 841
		err = register_netdevice(sl->dev);
		if (err)
L
Linus Torvalds 已提交
842 843 844 845 846
			goto err_free_bufs;
	}

#ifdef CONFIG_SLIP_SMART
	if (sl->keepalive) {
847 848
		sl->keepalive_timer.expires = jiffies + sl->keepalive * HZ;
		add_timer(&sl->keepalive_timer);
L
Linus Torvalds 已提交
849 850
	}
	if (sl->outfill) {
851 852
		sl->outfill_timer.expires = jiffies + sl->outfill * HZ;
		add_timer(&sl->outfill_timer);
L
Linus Torvalds 已提交
853 854 855 856 857
	}
#endif

	/* Done.  We have linked the TTY line to a channel. */
	rtnl_unlock();
A
Alan Cox 已提交
858
	tty->receive_room = 65536;	/* We don't flow control */
L
Linus Torvalds 已提交
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
	return sl->dev->base_addr;

err_free_bufs:
	sl_free_bufs(sl);

err_free_chan:
	sl->tty = NULL;
	tty->disc_data = NULL;
	clear_bit(SLF_INUSE, &sl->flags);

err_exit:
	rtnl_unlock();

	/* Count references from TTY module */
	return err;
}

/*
 * Close down a SLIP channel.
 * This means flushing out any pending queues, and then returning. This
 * call is serialized against other ldisc functions.
A
Alan Cox 已提交
880 881
 *
 * We also use this method fo a hangup event
L
Linus Torvalds 已提交
882
 */
A
Alan Cox 已提交
883

884
static void slip_close(struct tty_struct *tty)
L
Linus Torvalds 已提交
885
{
886
	struct slip *sl = tty->disc_data;
L
Linus Torvalds 已提交
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901

	/* First make sure we're connected. */
	if (!sl || sl->magic != SLIP_MAGIC || sl->tty != tty)
		return;

	tty->disc_data = NULL;
	sl->tty = NULL;
	if (!sl->leased)
		sl->line = 0;

	/* VSV = very important to remove timers */
#ifdef CONFIG_SLIP_SMART
	del_timer_sync(&sl->keepalive_timer);
	del_timer_sync(&sl->outfill_timer);
#endif
A
Alan Cox 已提交
902 903 904
	/* Flush network side */
	unregister_netdev(sl->dev);
	/* This will complete via sl_free_netdev */
L
Linus Torvalds 已提交
905 906
}

A
Alan Cox 已提交
907 908 909 910 911
static int slip_hangup(struct tty_struct *tty)
{
	slip_close(tty);
	return 0;
}
L
Linus Torvalds 已提交
912 913 914 915
 /************************************************************************
  *			STANDARD SLIP ENCAPSULATION		  	 *
  ************************************************************************/

916
static int slip_esc(unsigned char *s, unsigned char *d, int len)
L
Linus Torvalds 已提交
917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934
{
	unsigned char *ptr = d;
	unsigned char c;

	/*
	 * Send an initial END character to flush out any
	 * data that may have accumulated in the receiver
	 * due to line noise.
	 */

	*ptr++ = END;

	/*
	 * For each byte in the packet, send the appropriate
	 * character sequence, according to the SLIP protocol.
	 */

	while (len-- > 0) {
935 936
		switch (c = *s++) {
		case END:
L
Linus Torvalds 已提交
937 938 939
			*ptr++ = ESC;
			*ptr++ = ESC_END;
			break;
940
		case ESC:
L
Linus Torvalds 已提交
941 942 943
			*ptr++ = ESC;
			*ptr++ = ESC_ESC;
			break;
944
		default:
L
Linus Torvalds 已提交
945 946 947 948 949
			*ptr++ = c;
			break;
		}
	}
	*ptr++ = END;
950
	return ptr - d;
L
Linus Torvalds 已提交
951 952 953 954 955
}

static void slip_unesc(struct slip *sl, unsigned char s)
{

956 957
	switch (s) {
	case END:
L
Linus Torvalds 已提交
958 959 960 961 962 963
#ifdef CONFIG_SLIP_SMART
		/* drop keeptest bit = VSV */
		if (test_bit(SLF_KEEPTEST, &sl->flags))
			clear_bit(SLF_KEEPTEST, &sl->flags);
#endif

964 965
		if (!test_and_clear_bit(SLF_ERROR, &sl->flags) &&
		    (sl->rcount > 2))
L
Linus Torvalds 已提交
966 967 968 969 970
			sl_bump(sl);
		clear_bit(SLF_ESCAPE, &sl->flags);
		sl->rcount = 0;
		return;

971
	case ESC:
L
Linus Torvalds 已提交
972 973
		set_bit(SLF_ESCAPE, &sl->flags);
		return;
974 975
	case ESC_ESC:
		if (test_and_clear_bit(SLF_ESCAPE, &sl->flags))
L
Linus Torvalds 已提交
976 977
			s = ESC;
		break;
978 979
	case ESC_END:
		if (test_and_clear_bit(SLF_ESCAPE, &sl->flags))
L
Linus Torvalds 已提交
980 981 982 983 984 985 986 987
			s = END;
		break;
	}
	if (!test_bit(SLF_ERROR, &sl->flags))  {
		if (sl->rcount < sl->buffsize)  {
			sl->rbuff[sl->rcount++] = s;
			return;
		}
988
		sl->dev->stats.rx_over_errors++;
L
Linus Torvalds 已提交
989 990 991 992 993 994 995 996 997 998
		set_bit(SLF_ERROR, &sl->flags);
	}
}


#ifdef CONFIG_SLIP_MODE_SLIP6
/************************************************************************
 *			 6 BIT SLIP ENCAPSULATION			*
 ************************************************************************/

999
static int slip_esc6(unsigned char *s, unsigned char *d, int len)
L
Linus Torvalds 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
{
	unsigned char *ptr = d;
	unsigned char c;
	int i;
	unsigned short v = 0;
	short bits = 0;

	/*
	 * Send an initial END character to flush out any
	 * data that may have accumulated in the receiver
	 * due to line noise.
	 */

	*ptr++ = 0x70;

	/*
	 * Encode the packet into printable ascii characters
	 */

	for (i = 0; i < len; ++i) {
		v = (v << 8) | s[i];
		bits += 8;
		while (bits >= 6) {
			bits -= 6;
			c = 0x30 + ((v >> bits) & 0x3F);
			*ptr++ = c;
		}
	}
	if (bits) {
		c = 0x30 + ((v << (6 - bits)) & 0x3F);
		*ptr++ = c;
	}
	*ptr++ = 0x70;
	return ptr - d;
}

1036
static void slip_unesc6(struct slip *sl, unsigned char s)
L
Linus Torvalds 已提交
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
{
	unsigned char c;

	if (s == 0x70) {
#ifdef CONFIG_SLIP_SMART
		/* drop keeptest bit = VSV */
		if (test_bit(SLF_KEEPTEST, &sl->flags))
			clear_bit(SLF_KEEPTEST, &sl->flags);
#endif

1047 1048
		if (!test_and_clear_bit(SLF_ERROR, &sl->flags) &&
		    (sl->rcount > 2))
L
Linus Torvalds 已提交
1049 1050 1051 1052
			sl_bump(sl);
		sl->rcount = 0;
		sl->xbits = 0;
		sl->xdata = 0;
1053
	} else if (s >= 0x30 && s < 0x70) {
L
Linus Torvalds 已提交
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
		sl->xdata = (sl->xdata << 6) | ((s - 0x30) & 0x3F);
		sl->xbits += 6;
		if (sl->xbits >= 8) {
			sl->xbits -= 8;
			c = (unsigned char)(sl->xdata >> sl->xbits);
			if (!test_bit(SLF_ERROR, &sl->flags))  {
				if (sl->rcount < sl->buffsize)  {
					sl->rbuff[sl->rcount++] = c;
					return;
				}
1064
				sl->dev->stats.rx_over_errors++;
L
Linus Torvalds 已提交
1065 1066 1067
				set_bit(SLF_ERROR, &sl->flags);
			}
		}
1068
	}
L
Linus Torvalds 已提交
1069 1070 1071 1072
}
#endif /* CONFIG_SLIP_MODE_SLIP6 */

/* Perform I/O control on an active SLIP channel. */
1073 1074
static int slip_ioctl(struct tty_struct *tty, struct file *file,
					unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
1075
{
1076
	struct slip *sl = tty->disc_data;
L
Linus Torvalds 已提交
1077 1078 1079 1080
	unsigned int tmp;
	int __user *p = (int __user *)arg;

	/* First make sure we're connected. */
1081
	if (!sl || sl->magic != SLIP_MAGIC)
L
Linus Torvalds 已提交
1082 1083
		return -EINVAL;

1084 1085
	switch (cmd) {
	case SIOCGIFNAME:
L
Linus Torvalds 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
		tmp = strlen(sl->dev->name) + 1;
		if (copy_to_user((void __user *)arg, sl->dev->name, tmp))
			return -EFAULT;
		return 0;

	case SIOCGIFENCAP:
		if (put_user(sl->mode, p))
			return -EFAULT;
		return 0;

	case SIOCSIFENCAP:
		if (get_user(tmp, p))
			return -EFAULT;
#ifndef SL_INCLUDE_CSLIP
1100
		if (tmp & (SL_MODE_CSLIP|SL_MODE_ADAPTIVE))
L
Linus Torvalds 已提交
1101 1102 1103
			return -EINVAL;
#else
		if ((tmp & (SL_MODE_ADAPTIVE | SL_MODE_CSLIP)) ==
1104
		    (SL_MODE_ADAPTIVE | SL_MODE_CSLIP))
L
Linus Torvalds 已提交
1105 1106 1107 1108
			/* return -EINVAL; */
			tmp &= ~SL_MODE_ADAPTIVE;
#endif
#ifndef CONFIG_SLIP_MODE_SLIP6
1109
		if (tmp & SL_MODE_SLIP6)
L
Linus Torvalds 已提交
1110 1111 1112
			return -EINVAL;
#endif
		sl->mode = tmp;
1113
		sl->dev->type = ARPHRD_SLIP + sl->mode;
L
Linus Torvalds 已提交
1114 1115
		return 0;

1116
	case SIOCSIFHWADDR:
L
Linus Torvalds 已提交
1117 1118 1119 1120
		return -EINVAL;

#ifdef CONFIG_SLIP_SMART
	/* VSV changes start here */
1121
	case SIOCSKEEPALIVE:
L
Linus Torvalds 已提交
1122 1123
		if (get_user(tmp, p))
			return -EFAULT;
1124
		if (tmp > 255) /* max for unchar */
L
Linus Torvalds 已提交
1125 1126 1127 1128 1129 1130 1131
			return -EINVAL;

		spin_lock_bh(&sl->lock);
		if (!sl->tty) {
			spin_unlock_bh(&sl->lock);
			return -ENODEV;
		}
1132 1133 1134 1135
		sl->keepalive = (u8)tmp;
		if (sl->keepalive != 0) {
			mod_timer(&sl->keepalive_timer,
					jiffies + sl->keepalive * HZ);
L
Linus Torvalds 已提交
1136
			set_bit(SLF_KEEPTEST, &sl->flags);
1137 1138
		} else
			del_timer(&sl->keepalive_timer);
L
Linus Torvalds 已提交
1139 1140 1141
		spin_unlock_bh(&sl->lock);
		return 0;

1142
	case SIOCGKEEPALIVE:
L
Linus Torvalds 已提交
1143 1144 1145 1146
		if (put_user(sl->keepalive, p))
			return -EFAULT;
		return 0;

1147
	case SIOCSOUTFILL:
L
Linus Torvalds 已提交
1148 1149
		if (get_user(tmp, p))
			return -EFAULT;
1150
		if (tmp > 255) /* max for unchar */
L
Linus Torvalds 已提交
1151 1152 1153 1154 1155 1156
			return -EINVAL;
		spin_lock_bh(&sl->lock);
		if (!sl->tty) {
			spin_unlock_bh(&sl->lock);
			return -ENODEV;
		}
1157 1158 1159 1160
		sl->outfill = (u8)tmp;
		if (sl->outfill != 0) {
			mod_timer(&sl->outfill_timer,
						jiffies + sl->outfill * HZ);
L
Linus Torvalds 已提交
1161
			set_bit(SLF_OUTWAIT, &sl->flags);
1162 1163
		} else
			del_timer(&sl->outfill_timer);
L
Linus Torvalds 已提交
1164
		spin_unlock_bh(&sl->lock);
1165
		return 0;
L
Linus Torvalds 已提交
1166

1167
	case SIOCGOUTFILL:
L
Linus Torvalds 已提交
1168 1169 1170 1171 1172 1173
		if (put_user(sl->outfill, p))
			return -EFAULT;
		return 0;
	/* VSV changes end */
#endif
	default:
1174
		return tty_mode_ioctl(tty, file, cmd, arg);
L
Linus Torvalds 已提交
1175 1176 1177
	}
}

1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
#ifdef CONFIG_COMPAT
static long slip_compat_ioctl(struct tty_struct *tty, struct file *file,
					unsigned int cmd, unsigned long arg)
{
	switch (cmd) {
	case SIOCGIFNAME:
	case SIOCGIFENCAP:
	case SIOCSIFENCAP:
	case SIOCSIFHWADDR:
	case SIOCSKEEPALIVE:
	case SIOCGKEEPALIVE:
	case SIOCSOUTFILL:
	case SIOCGOUTFILL:
		return slip_ioctl(tty, file, cmd,
				  (unsigned long)compat_ptr(arg));
	}

	return -ENOIOCTLCMD;
}
#endif

L
Linus Torvalds 已提交
1199 1200 1201 1202 1203 1204
/* VSV changes start here */
#ifdef CONFIG_SLIP_SMART
/* function do_ioctl called from net/core/dev.c
   to allow get/set outfill/keepalive parameter
   by ifconfig                                 */

1205
static int sl_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
L
Linus Torvalds 已提交
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
{
	struct slip *sl = netdev_priv(dev);
	unsigned long *p = (unsigned long *)&rq->ifr_ifru;

	if (sl == NULL)		/* Allocation failed ?? */
		return -ENODEV;

	spin_lock_bh(&sl->lock);

	if (!sl->tty) {
		spin_unlock_bh(&sl->lock);
		return -ENODEV;
	}

1220 1221
	switch (cmd) {
	case SIOCSKEEPALIVE:
L
Linus Torvalds 已提交
1222
		/* max for unchar */
1223
		if ((unsigned)*p > 255) {
L
Linus Torvalds 已提交
1224 1225 1226
			spin_unlock_bh(&sl->lock);
			return -EINVAL;
		}
1227
		sl->keepalive = (u8)*p;
L
Linus Torvalds 已提交
1228
		if (sl->keepalive != 0) {
1229 1230 1231 1232
			sl->keepalive_timer.expires =
						jiffies + sl->keepalive * HZ;
			mod_timer(&sl->keepalive_timer,
						jiffies + sl->keepalive * HZ);
L
Linus Torvalds 已提交
1233
			set_bit(SLF_KEEPTEST, &sl->flags);
1234 1235
		} else
			del_timer(&sl->keepalive_timer);
L
Linus Torvalds 已提交
1236 1237
		break;

1238
	case SIOCGKEEPALIVE:
L
Linus Torvalds 已提交
1239 1240 1241
		*p = sl->keepalive;
		break;

1242 1243
	case SIOCSOUTFILL:
		if ((unsigned)*p > 255) { /* max for unchar */
L
Linus Torvalds 已提交
1244 1245 1246
			spin_unlock_bh(&sl->lock);
			return -EINVAL;
		}
1247 1248 1249 1250
		sl->outfill = (u8)*p;
		if (sl->outfill != 0) {
			mod_timer(&sl->outfill_timer,
						jiffies + sl->outfill * HZ);
L
Linus Torvalds 已提交
1251
			set_bit(SLF_OUTWAIT, &sl->flags);
1252 1253 1254
		} else
			del_timer(&sl->outfill_timer);
		break;
L
Linus Torvalds 已提交
1255

1256
	case SIOCGOUTFILL:
L
Linus Torvalds 已提交
1257 1258 1259
		*p = sl->outfill;
		break;

1260
	case SIOCSLEASE:
1261
		/* Resolve race condition, when ioctl'ing hanged up
L
Linus Torvalds 已提交
1262 1263
		   and opened by another process device.
		 */
1264 1265
		if (sl->tty != current->signal->tty &&
						sl->pid != current->pid) {
L
Linus Torvalds 已提交
1266 1267 1268 1269
			spin_unlock_bh(&sl->lock);
			return -EPERM;
		}
		sl->leased = 0;
1270
		if (*p)
L
Linus Torvalds 已提交
1271
			sl->leased = 1;
1272
		break;
L
Linus Torvalds 已提交
1273

1274
	case SIOCGLEASE:
L
Linus Torvalds 已提交
1275
		*p = sl->leased;
1276
	}
L
Linus Torvalds 已提交
1277 1278 1279 1280 1281 1282
	spin_unlock_bh(&sl->lock);
	return 0;
}
#endif
/* VSV changes end */

A
Alan Cox 已提交
1283
static struct tty_ldisc_ops sl_ldisc = {
L
Linus Torvalds 已提交
1284 1285 1286 1287 1288
	.owner 		= THIS_MODULE,
	.magic 		= TTY_LDISC_MAGIC,
	.name 		= "slip",
	.open 		= slip_open,
	.close	 	= slip_close,
A
Alan Cox 已提交
1289
	.hangup	 	= slip_hangup,
L
Linus Torvalds 已提交
1290
	.ioctl		= slip_ioctl,
1291 1292 1293
#ifdef CONFIG_COMPAT
	.compat_ioctl	= slip_compat_ioctl,
#endif
L
Linus Torvalds 已提交
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
	.receive_buf	= slip_receive_buf,
	.write_wakeup	= slip_write_wakeup,
};

static int __init slip_init(void)
{
	int status;

	if (slip_maxdev < 4)
		slip_maxdev = 4; /* Sanity */

	printk(KERN_INFO "SLIP: version %s (dynamic channels, max=%d)"
#ifdef CONFIG_SLIP_MODE_SLIP6
	       " (6 bit encapsulation enabled)"
#endif
	       ".\n",
1310
	       SLIP_VERSION, slip_maxdev);
L
Linus Torvalds 已提交
1311 1312 1313 1314 1315 1316 1317
#if defined(SL_INCLUDE_CSLIP)
	printk(KERN_INFO "CSLIP: code copyright 1989 Regents of the University of California.\n");
#endif
#ifdef CONFIG_SLIP_SMART
	printk(KERN_INFO "SLIP linefill/keepalive option.\n");
#endif

1318 1319
	slip_devs = kzalloc(sizeof(struct net_device *)*slip_maxdev,
								GFP_KERNEL);
L
Linus Torvalds 已提交
1320
	if (!slip_devs) {
1321
		printk(KERN_ERR "SLIP: Can't allocate slip devices array.\n");
L
Linus Torvalds 已提交
1322 1323 1324 1325
		return -ENOMEM;
	}

	/* Fill in our line protocol discipline, and register it */
1326 1327
	status = tty_register_ldisc(N_SLIP, &sl_ldisc);
	if (status != 0) {
L
Linus Torvalds 已提交
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
		printk(KERN_ERR "SLIP: can't register line discipline (err = %d)\n", status);
		kfree(slip_devs);
	}
	return status;
}

static void __exit slip_exit(void)
{
	int i;
	struct net_device *dev;
	struct slip *sl;
	unsigned long timeout = jiffies + HZ;
	int busy = 0;

1342
	if (slip_devs == NULL)
L
Linus Torvalds 已提交
1343 1344 1345 1346 1347
		return;

	/* First of all: check for active disciplines and hangup them.
	 */
	do {
1348 1349
		if (busy)
			msleep_interruptible(100);
L
Linus Torvalds 已提交
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365

		busy = 0;
		for (i = 0; i < slip_maxdev; i++) {
			dev = slip_devs[i];
			if (!dev)
				continue;
			sl = netdev_priv(dev);
			spin_lock_bh(&sl->lock);
			if (sl->tty) {
				busy++;
				tty_hangup(sl->tty);
			}
			spin_unlock_bh(&sl->lock);
		}
	} while (busy && time_before(jiffies, timeout));

A
Alan Cox 已提交
1366 1367
	/* FIXME: hangup is async so we should wait when doing this second
	   phase */
L
Linus Torvalds 已提交
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380

	for (i = 0; i < slip_maxdev; i++) {
		dev = slip_devs[i];
		if (!dev)
			continue;
		slip_devs[i] = NULL;

		sl = netdev_priv(dev);
		if (sl->tty) {
			printk(KERN_ERR "%s: tty discipline still running\n",
			       dev->name);
			/* Intentionally leak the control block. */
			dev->destructor = NULL;
1381
		}
L
Linus Torvalds 已提交
1382 1383 1384 1385 1386 1387 1388

		unregister_netdev(dev);
	}

	kfree(slip_devs);
	slip_devs = NULL;

1389 1390
	i = tty_unregister_ldisc(N_SLIP);
	if (i != 0)
L
Linus Torvalds 已提交
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
		printk(KERN_ERR "SLIP: can't unregister line discipline (err = %d)\n", i);
}

module_init(slip_init);
module_exit(slip_exit);

#ifdef CONFIG_SLIP_SMART
/*
 * This is start of the code for multislip style line checking
 * added by Stanislav Voronyi. All changes before marked VSV
 */

static void sl_outfill(unsigned long sls)
{
1405
	struct slip *sl = (struct slip *)sls;
L
Linus Torvalds 已提交
1406 1407 1408 1409 1410 1411

	spin_lock(&sl->lock);

	if (sl->tty == NULL)
		goto out;

1412 1413
	if (sl->outfill) {
		if (test_bit(SLF_OUTWAIT, &sl->flags)) {
L
Linus Torvalds 已提交
1414 1415 1416 1417 1418 1419 1420
			/* no packets were transmitted, do outfill */
#ifdef CONFIG_SLIP_MODE_SLIP6
			unsigned char s = (sl->mode & SL_MODE_SLIP6)?0x70:END;
#else
			unsigned char s = END;
#endif
			/* put END into tty queue. Is it right ??? */
1421
			if (!netif_queue_stopped(sl->dev)) {
L
Linus Torvalds 已提交
1422
				/* if device busy no outfill */
A
Alan Cox 已提交
1423
				sl->tty->ops->write(sl->tty, &s, 1);
L
Linus Torvalds 已提交
1424
			}
1425
		} else
L
Linus Torvalds 已提交
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
			set_bit(SLF_OUTWAIT, &sl->flags);

		mod_timer(&sl->outfill_timer, jiffies+sl->outfill*HZ);
	}
out:
	spin_unlock(&sl->lock);
}

static void sl_keepalive(unsigned long sls)
{
1436
	struct slip *sl = (struct slip *)sls;
L
Linus Torvalds 已提交
1437 1438 1439 1440 1441 1442

	spin_lock(&sl->lock);

	if (sl->tty == NULL)
		goto out;

1443 1444
	if (sl->keepalive) {
		if (test_bit(SLF_KEEPTEST, &sl->flags)) {
L
Linus Torvalds 已提交
1445
			/* keepalive still high :(, we must hangup */
1446 1447
			if (sl->outfill)
				/* outfill timer must be deleted too */
L
Linus Torvalds 已提交
1448 1449
				(void)del_timer(&sl->outfill_timer);
			printk(KERN_DEBUG "%s: no packets received during keepalive timeout, hangup.\n", sl->dev->name);
1450 1451
			/* this must hangup tty & close slip */
			tty_hangup(sl->tty);
L
Linus Torvalds 已提交
1452 1453
			/* I think we need not something else */
			goto out;
1454
		} else
L
Linus Torvalds 已提交
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
			set_bit(SLF_KEEPTEST, &sl->flags);

		mod_timer(&sl->keepalive_timer, jiffies+sl->keepalive*HZ);
	}
out:
	spin_unlock(&sl->lock);
}

#endif
MODULE_LICENSE("GPL");
MODULE_ALIAS_LDISC(N_SLIP);