2 * slip.c This module implements the SLIP protocol for kernel-based
3 * devices like TTY. It interfaces between a raw TTY, and the
4 * kernel's INET protocol layers.
6 * Version: @(#)slip.c 0.8.3 12/24/94
8 * Authors: Laurence Culhane, <loz@holmes.demon.co.uk>
9 * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
12 * Alan Cox : Sanity checks and avoid tx overruns.
13 * Has a new sl->mtu field.
14 * Alan Cox : Found cause of overrun. ifconfig sl0
15 * mtu upwards. Driver now spots this
16 * and grows/shrinks its buffers(hack!).
17 * Memory leak if you run out of memory
18 * setting up a slip driver fixed.
19 * Matt Dillon : Printable slip (borrowed from NET2E)
20 * Pauline Middelink : Slip driver fixes.
21 * Alan Cox : Honours the old SL_COMPRESSED flag
22 * Alan Cox : KISS AX.25 and AXUI IP support
23 * Michael Riepe : Automatic CSLIP recognition added
24 * Charles Hedrick : CSLIP header length problem fix.
25 * Alan Cox : Corrected non-IP cases of the above.
26 * Alan Cox : Now uses hardware type as per FvK.
27 * Alan Cox : Default to 192.168.0.0 (RFC 1597)
28 * A.N.Kuznetsov : dev_tint() recursion fix.
29 * Dmitry Gorodchanin : SLIP memory leaks
30 * Dmitry Gorodchanin : Code cleanup. Reduce tty driver
31 * buffering from 4096 to 256 bytes.
32 * Improving SLIP response time.
33 * CONFIG_SLIP_MODE_SLIP6.
34 * ifconfig sl? up & down now works
37 * Alan Cox : Oops - fix AX.25 buffer lengths
38 * Dmitry Gorodchanin : Even more cleanups. Preserve CSLIP
39 * statistics. Include CSLIP code only
40 * if it really needed.
41 * Alan Cox : Free slhc buffers in the right place.
42 * Alan Cox : Allow for digipeated IP over AX.25
43 * Matti Aarnio : Dynamic SLIP devices, with ideas taken
44 * from Jim Freeman's <jfree@caldera.com>
45 * dynamic PPP devices. We do NOT kfree()
46 * device entries, just reg./unreg. them
47 * as they are needed. We kfree() them
49 * With MODULE-loading ``insmod'', user
50 * can issue parameter: slip_maxdev=1024
51 * (Or how much he/she wants.. Default
53 * Stanislav Voronyi : Slip line checking, with ideas taken
54 * from multislip BSDI driver which was
55 * written by Igor Chechik, RELCOM Corp.
56 * Only algorithms have been ported to
58 * Vitaly E. Lavrov : Sane behaviour on tty hangup.
59 * Alexey Kuznetsov : Cleanup interfaces to tty & netdevice
63 #define SL_CHECK_TRANSMIT
64 #include <linux/module.h>
65 #include <linux/moduleparam.h>
67 #include <asm/system.h>
68 #include <asm/uaccess.h>
69 #include <linux/bitops.h>
70 #include <linux/sched.h>
71 #include <linux/string.h>
73 #include <linux/interrupt.h>
75 #include <linux/tty.h>
76 #include <linux/errno.h>
77 #include <linux/netdevice.h>
78 #include <linux/etherdevice.h>
79 #include <linux/skbuff.h>
80 #include <linux/rtnetlink.h>
81 #include <linux/if_arp.h>
82 #include <linux/if_slip.h>
83 #include <linux/delay.h>
84 #include <linux/init.h>
88 #include <linux/tcp.h>
89 #include <net/slhc_vj.h>
92 #define SLIP_VERSION "0.8.4-NET3.019-NEWTTY"
94 static struct net_device
**slip_devs
;
96 static int slip_maxdev
= SL_NRUNIT
;
97 module_param(slip_maxdev
, int, 0);
98 MODULE_PARM_DESC(slip_maxdev
, "Maximum number of slip devices");
100 static int slip_esc(unsigned char *p
, unsigned char *d
, int len
);
101 static void slip_unesc(struct slip
*sl
, unsigned char c
);
102 #ifdef CONFIG_SLIP_MODE_SLIP6
103 static int slip_esc6(unsigned char *p
, unsigned char *d
, int len
);
104 static void slip_unesc6(struct slip
*sl
, unsigned char c
);
106 #ifdef CONFIG_SLIP_SMART
107 static void sl_keepalive(unsigned long sls
);
108 static void sl_outfill(unsigned long sls
);
109 static int sl_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
112 /********************************
113 * Buffer administration routines:
118 * NOTE: sl_realloc_bufs != sl_free_bufs + sl_alloc_bufs, because
119 * sl_realloc_bufs provides strong atomicity and reallocation
120 * on actively running device.
121 *********************************/
124 Allocate channel buffers.
127 static int sl_alloc_bufs(struct slip
*sl
, int mtu
)
133 #ifdef SL_INCLUDE_CSLIP
135 struct slcompress
*slcomp
= NULL
;
139 * Allocate the SLIP frame buffers:
141 * rbuff Receive buffer.
142 * xbuff Transmit buffer.
143 * cbuff Temporary compression buffer.
148 * allow for arrival of larger UDP packets, even if we say not to
149 * also fixes a bug in which SunOS sends 512-byte packets even with
154 rbuff
= kmalloc(len
+ 4, GFP_KERNEL
);
157 xbuff
= kmalloc(len
+ 4, GFP_KERNEL
);
160 #ifdef SL_INCLUDE_CSLIP
161 cbuff
= kmalloc(len
+ 4, GFP_KERNEL
);
164 slcomp
= slhc_init(16, 16);
168 spin_lock_bh(&sl
->lock
);
169 if (sl
->tty
== NULL
) {
170 spin_unlock_bh(&sl
->lock
);
178 rbuff
= xchg(&sl
->rbuff
, rbuff
);
179 xbuff
= xchg(&sl
->xbuff
, xbuff
);
180 #ifdef SL_INCLUDE_CSLIP
181 cbuff
= xchg(&sl
->cbuff
, cbuff
);
182 slcomp
= xchg(&sl
->slcomp
, slcomp
);
183 #ifdef CONFIG_SLIP_MODE_SLIP6
188 spin_unlock_bh(&sl
->lock
);
193 #ifdef SL_INCLUDE_CSLIP
203 /* Free a SLIP channel buffers. */
204 static void sl_free_bufs(struct slip
*sl
)
206 /* Free all SLIP frame buffers. */
207 kfree(xchg(&sl
->rbuff
, NULL
));
208 kfree(xchg(&sl
->xbuff
, NULL
));
209 #ifdef SL_INCLUDE_CSLIP
210 kfree(xchg(&sl
->cbuff
, NULL
));
211 slhc_free(xchg(&sl
->slcomp
, NULL
));
216 Reallocate slip channel buffers.
219 static int sl_realloc_bufs(struct slip
*sl
, int mtu
)
222 struct net_device
*dev
= sl
->dev
;
223 unsigned char *xbuff
, *rbuff
;
224 #ifdef SL_INCLUDE_CSLIP
225 unsigned char *cbuff
;
230 * allow for arrival of larger UDP packets, even if we say not to
231 * also fixes a bug in which SunOS sends 512-byte packets even with
237 xbuff
= kmalloc(len
+ 4, GFP_ATOMIC
);
238 rbuff
= kmalloc(len
+ 4, GFP_ATOMIC
);
239 #ifdef SL_INCLUDE_CSLIP
240 cbuff
= kmalloc(len
+ 4, GFP_ATOMIC
);
244 #ifdef SL_INCLUDE_CSLIP
245 if (xbuff
== NULL
|| rbuff
== NULL
|| cbuff
== NULL
) {
247 if (xbuff
== NULL
|| rbuff
== NULL
) {
249 if (mtu
>= sl
->mtu
) {
250 printk(KERN_WARNING
"%s: unable to grow slip buffers, MTU change cancelled.\n",
256 spin_lock_bh(&sl
->lock
);
262 xbuff
= xchg(&sl
->xbuff
, xbuff
);
263 rbuff
= xchg(&sl
->rbuff
, rbuff
);
264 #ifdef SL_INCLUDE_CSLIP
265 cbuff
= xchg(&sl
->cbuff
, cbuff
);
268 if (sl
->xleft
<= len
) {
269 memcpy(sl
->xbuff
, sl
->xhead
, sl
->xleft
);
275 sl
->xhead
= sl
->xbuff
;
278 if (sl
->rcount
<= len
) {
279 memcpy(sl
->rbuff
, rbuff
, sl
->rcount
);
282 sl
->rx_over_errors
++;
283 set_bit(SLF_ERROR
, &sl
->flags
);
292 spin_unlock_bh(&sl
->lock
);
297 #ifdef SL_INCLUDE_CSLIP
304 /* Set the "sending" flag. This must be atomic hence the set_bit. */
305 static inline void sl_lock(struct slip
*sl
)
307 netif_stop_queue(sl
->dev
);
311 /* Clear the "sending" flag. This must be atomic, hence the ASM. */
312 static inline void sl_unlock(struct slip
*sl
)
314 netif_wake_queue(sl
->dev
);
317 /* Send one completely decapsulated IP datagram to the IP layer. */
318 static void sl_bump(struct slip
*sl
)
324 #ifdef SL_INCLUDE_CSLIP
325 if (sl
->mode
& (SL_MODE_ADAPTIVE
| SL_MODE_CSLIP
)) {
326 unsigned char c
= sl
->rbuff
[0];
327 if (c
& SL_TYPE_COMPRESSED_TCP
) {
328 /* ignore compressed packets when CSLIP is off */
329 if (!(sl
->mode
& SL_MODE_CSLIP
)) {
330 printk(KERN_WARNING
"%s: compressed packet ignored\n", sl
->dev
->name
);
333 /* make sure we've reserved enough space for uncompress
335 if (count
+ 80 > sl
->buffsize
) {
336 sl
->rx_over_errors
++;
339 count
= slhc_uncompress(sl
->slcomp
, sl
->rbuff
, count
);
342 } else if (c
>= SL_TYPE_UNCOMPRESSED_TCP
) {
343 if (!(sl
->mode
& SL_MODE_CSLIP
)) {
344 /* turn on header compression */
345 sl
->mode
|= SL_MODE_CSLIP
;
346 sl
->mode
&= ~SL_MODE_ADAPTIVE
;
347 printk(KERN_INFO
"%s: header compression turned on\n", sl
->dev
->name
);
349 sl
->rbuff
[0] &= 0x4f;
350 if (slhc_remember(sl
->slcomp
, sl
->rbuff
, count
) <= 0)
354 #endif /* SL_INCLUDE_CSLIP */
356 sl
->rx_bytes
+= count
;
358 skb
= dev_alloc_skb(count
);
360 printk(KERN_WARNING
"%s: memory squeeze, dropping packet.\n", sl
->dev
->name
);
365 memcpy(skb_put(skb
, count
), sl
->rbuff
, count
);
366 skb_reset_mac_header(skb
);
367 skb
->protocol
= htons(ETH_P_IP
);
372 /* Encapsulate one IP datagram and stuff into a TTY queue. */
373 static void sl_encaps(struct slip
*sl
, unsigned char *icp
, int len
)
378 if (len
> sl
->mtu
) { /* Sigh, shouldn't occur BUT ... */
379 printk(KERN_WARNING
"%s: truncating oversized transmit packet!\n", sl
->dev
->name
);
386 #ifdef SL_INCLUDE_CSLIP
387 if (sl
->mode
& SL_MODE_CSLIP
)
388 len
= slhc_compress(sl
->slcomp
, p
, len
, sl
->cbuff
, &p
, 1);
390 #ifdef CONFIG_SLIP_MODE_SLIP6
391 if (sl
->mode
& SL_MODE_SLIP6
)
392 count
= slip_esc6(p
, (unsigned char *) sl
->xbuff
, len
);
395 count
= slip_esc(p
, (unsigned char *) sl
->xbuff
, len
);
397 /* Order of next two lines is *very* important.
398 * When we are sending a little amount of data,
399 * the transfer may be completed inside the ops->write()
400 * routine, because it's running with interrupts enabled.
401 * In this case we *never* got WRITE_WAKEUP event,
402 * if we did not request it before write operation.
403 * 14 Oct 1994 Dmitry Gorodchanin.
405 set_bit(TTY_DO_WRITE_WAKEUP
, &sl
->tty
->flags
);
406 actual
= sl
->tty
->ops
->write(sl
->tty
, sl
->xbuff
, count
);
407 #ifdef SL_CHECK_TRANSMIT
408 sl
->dev
->trans_start
= jiffies
;
410 sl
->xleft
= count
- actual
;
411 sl
->xhead
= sl
->xbuff
+ actual
;
412 #ifdef CONFIG_SLIP_SMART
414 clear_bit(SLF_OUTWAIT
, &sl
->flags
); /* reset outfill flag */
419 * Called by the driver when there's room for more data. If we have
420 * more packets to send, we send them here.
422 static void slip_write_wakeup(struct tty_struct
*tty
)
425 struct slip
*sl
= tty
->disc_data
;
427 /* First make sure we're connected. */
428 if (!sl
|| sl
->magic
!= SLIP_MAGIC
|| !netif_running(sl
->dev
))
431 if (sl
->xleft
<= 0) {
432 /* Now serial buffer is almost free & we can start
433 * transmission of another packet */
435 clear_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
440 actual
= tty
->ops
->write(tty
, sl
->xhead
, sl
->xleft
);
445 static void sl_tx_timeout(struct net_device
*dev
)
447 struct slip
*sl
= netdev_priv(dev
);
449 spin_lock(&sl
->lock
);
451 if (netif_queue_stopped(dev
)) {
452 if (!netif_running(dev
))
455 /* May be we must check transmitter timeout here ?
456 * 14 Oct 1994 Dmitry Gorodchanin.
458 #ifdef SL_CHECK_TRANSMIT
459 if (time_before(jiffies
, dev
->trans_start
+ 20 * HZ
)) {
460 /* 20 sec timeout not reached */
463 printk(KERN_WARNING
"%s: transmit timed out, %s?\n",
465 (tty_chars_in_buffer(sl
->tty
) || sl
->xleft
) ?
466 "bad line quality" : "driver error");
468 clear_bit(TTY_DO_WRITE_WAKEUP
, &sl
->tty
->flags
);
473 spin_unlock(&sl
->lock
);
477 /* Encapsulate an IP datagram and kick it into a TTY queue. */
479 sl_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
481 struct slip
*sl
= netdev_priv(dev
);
483 spin_lock(&sl
->lock
);
484 if (!netif_running(dev
)) {
485 spin_unlock(&sl
->lock
);
486 printk(KERN_WARNING
"%s: xmit call when iface is down\n", dev
->name
);
490 if (sl
->tty
== NULL
) {
491 spin_unlock(&sl
->lock
);
497 sl
->tx_bytes
+= skb
->len
;
498 sl_encaps(sl
, skb
->data
, skb
->len
);
499 spin_unlock(&sl
->lock
);
506 /******************************************
507 * Routines looking at netdevice side.
508 ******************************************/
510 /* Netdevice UP -> DOWN routine */
513 sl_close(struct net_device
*dev
)
515 struct slip
*sl
= netdev_priv(dev
);
517 spin_lock_bh(&sl
->lock
);
519 /* TTY discipline is running. */
520 clear_bit(TTY_DO_WRITE_WAKEUP
, &sl
->tty
->flags
);
521 netif_stop_queue(dev
);
524 spin_unlock_bh(&sl
->lock
);
529 /* Netdevice DOWN -> UP routine */
531 static int sl_open(struct net_device
*dev
)
533 struct slip
*sl
= netdev_priv(dev
);
538 sl
->flags
&= (1 << SLF_INUSE
);
539 netif_start_queue(dev
);
543 /* Netdevice change MTU request */
545 static int sl_change_mtu(struct net_device
*dev
, int new_mtu
)
547 struct slip
*sl
= netdev_priv(dev
);
549 if (new_mtu
< 68 || new_mtu
> 65534)
552 if (new_mtu
!= dev
->mtu
)
553 return sl_realloc_bufs(sl
, new_mtu
);
557 /* Netdevice get statistics request */
559 static struct net_device_stats
*
560 sl_get_stats(struct net_device
*dev
)
562 static struct net_device_stats stats
;
563 struct slip
*sl
= netdev_priv(dev
);
564 #ifdef SL_INCLUDE_CSLIP
565 struct slcompress
*comp
;
568 memset(&stats
, 0, sizeof(struct net_device_stats
));
570 stats
.rx_packets
= sl
->rx_packets
;
571 stats
.tx_packets
= sl
->tx_packets
;
572 stats
.rx_bytes
= sl
->rx_bytes
;
573 stats
.tx_bytes
= sl
->tx_bytes
;
574 stats
.rx_dropped
= sl
->rx_dropped
;
575 stats
.tx_dropped
= sl
->tx_dropped
;
576 stats
.tx_errors
= sl
->tx_errors
;
577 stats
.rx_errors
= sl
->rx_errors
;
578 stats
.rx_over_errors
= sl
->rx_over_errors
;
579 #ifdef SL_INCLUDE_CSLIP
580 stats
.rx_fifo_errors
= sl
->rx_compressed
;
581 stats
.tx_fifo_errors
= sl
->tx_compressed
;
582 stats
.collisions
= sl
->tx_misses
;
585 stats
.rx_fifo_errors
+= comp
->sls_i_compressed
;
586 stats
.rx_dropped
+= comp
->sls_i_tossed
;
587 stats
.tx_fifo_errors
+= comp
->sls_o_compressed
;
588 stats
.collisions
+= comp
->sls_o_misses
;
590 #endif /* CONFIG_INET */
594 /* Netdevice register callback */
596 static int sl_init(struct net_device
*dev
)
598 struct slip
*sl
= netdev_priv(dev
);
601 * Finish setting up the DEVICE info.
605 dev
->type
= ARPHRD_SLIP
+ sl
->mode
;
606 #ifdef SL_CHECK_TRANSMIT
607 dev
->watchdog_timeo
= 20*HZ
;
613 static void sl_uninit(struct net_device
*dev
)
615 struct slip
*sl
= netdev_priv(dev
);
620 /* Hook the destructor so we can free slip devices at the right point in time */
621 static void sl_free_netdev(struct net_device
*dev
)
623 int i
= dev
->base_addr
;
628 static const struct net_device_ops sl_netdev_ops
= {
630 .ndo_uninit
= sl_uninit
,
632 .ndo_stop
= sl_close
,
633 .ndo_start_xmit
= sl_xmit
,
634 .ndo_get_stats
= sl_get_stats
,
635 .ndo_change_mtu
= sl_change_mtu
,
636 .ndo_tx_timeout
= sl_tx_timeout
,
637 #ifdef CONFIG_SLIP_SMART
638 .ndo_do_ioctl
= sl_ioctl
,
643 static void sl_setup(struct net_device
*dev
)
645 dev
->netdev_ops
= &sl_netdev_ops
;
646 dev
->destructor
= sl_free_netdev
;
648 dev
->hard_header_len
= 0;
650 dev
->tx_queue_len
= 10;
652 /* New-style flags. */
653 dev
->flags
= IFF_NOARP
|IFF_POINTOPOINT
|IFF_MULTICAST
;
656 /******************************************
657 Routines looking at TTY side.
658 ******************************************/
662 * Handle the 'receiver data ready' interrupt.
663 * This function is called by the 'tty_io' module in the kernel when
664 * a block of SLIP data has been received, which can now be decapsulated
665 * and sent on to some IP layer for further processing. This will not
666 * be re-entered while running but other ldisc functions may be called
670 static void slip_receive_buf(struct tty_struct
*tty
, const unsigned char *cp
,
673 struct slip
*sl
= tty
->disc_data
;
675 if (!sl
|| sl
->magic
!= SLIP_MAGIC
|| !netif_running(sl
->dev
))
678 /* Read the characters out of the buffer */
681 if (!test_and_set_bit(SLF_ERROR
, &sl
->flags
))
686 #ifdef CONFIG_SLIP_MODE_SLIP6
687 if (sl
->mode
& SL_MODE_SLIP6
)
688 slip_unesc6(sl
, *cp
++);
691 slip_unesc(sl
, *cp
++);
695 /************************************
696 * slip_open helper routines.
697 ************************************/
699 /* Collect hanged up channels */
700 static void sl_sync(void)
703 struct net_device
*dev
;
706 for (i
= 0; i
< slip_maxdev
; i
++) {
711 sl
= netdev_priv(dev
);
712 if (sl
->tty
|| sl
->leased
)
714 if (dev
->flags
& IFF_UP
)
720 /* Find a free SLIP channel, and link in this `tty' line. */
721 static struct slip
*sl_alloc(dev_t line
)
724 struct net_device
*dev
= NULL
;
727 if (slip_devs
== NULL
)
728 return NULL
; /* Master array missing ! */
730 for (i
= 0; i
< slip_maxdev
; i
++) {
735 /* Sorry, too many, all slots in use */
736 if (i
>= slip_maxdev
)
740 sl
= netdev_priv(dev
);
741 if (test_bit(SLF_INUSE
, &sl
->flags
)) {
742 unregister_netdevice(dev
);
750 sprintf(name
, "sl%d", i
);
752 dev
= alloc_netdev(sizeof(*sl
), name
, sl_setup
);
758 sl
= netdev_priv(dev
);
760 /* Initialize channel control data */
761 sl
->magic
= SLIP_MAGIC
;
763 spin_lock_init(&sl
->lock
);
764 sl
->mode
= SL_MODE_DEFAULT
;
765 #ifdef CONFIG_SLIP_SMART
766 /* initialize timer_list struct */
767 init_timer(&sl
->keepalive_timer
);
768 sl
->keepalive_timer
.data
= (unsigned long)sl
;
769 sl
->keepalive_timer
.function
= sl_keepalive
;
770 init_timer(&sl
->outfill_timer
);
771 sl
->outfill_timer
.data
= (unsigned long)sl
;
772 sl
->outfill_timer
.function
= sl_outfill
;
779 * Open the high-level part of the SLIP channel.
780 * This function is called by the TTY module when the
781 * SLIP line discipline is called for. Because we are
782 * sure the tty line exists, we only have to link it to
783 * a free SLIP channel...
785 * Called in process context serialized from other ldisc calls.
788 static int slip_open(struct tty_struct
*tty
)
793 if (!capable(CAP_NET_ADMIN
))
796 if (tty
->ops
->write
== NULL
)
799 /* RTnetlink lock is misused here to serialize concurrent
800 opens of slip channels. There are better ways, but it is
805 /* Collect hanged up channels. */
811 /* First make sure we're not already connected. */
812 if (sl
&& sl
->magic
== SLIP_MAGIC
)
815 /* OK. Find a free SLIP channel to use. */
817 sl
= sl_alloc(tty_devnum(tty
));
823 sl
->line
= tty_devnum(tty
);
824 sl
->pid
= current
->pid
;
826 if (!test_bit(SLF_INUSE
, &sl
->flags
)) {
827 /* Perform the low-level SLIP initialization. */
828 err
= sl_alloc_bufs(sl
, SL_MTU
);
832 set_bit(SLF_INUSE
, &sl
->flags
);
834 err
= register_netdevice(sl
->dev
);
839 #ifdef CONFIG_SLIP_SMART
841 sl
->keepalive_timer
.expires
= jiffies
+ sl
->keepalive
* HZ
;
842 add_timer(&sl
->keepalive_timer
);
845 sl
->outfill_timer
.expires
= jiffies
+ sl
->outfill
* HZ
;
846 add_timer(&sl
->outfill_timer
);
850 /* Done. We have linked the TTY line to a channel. */
852 tty
->receive_room
= 65536; /* We don't flow control */
854 /* TTY layer expects 0 on success */
862 tty
->disc_data
= NULL
;
863 clear_bit(SLF_INUSE
, &sl
->flags
);
868 /* Count references from TTY module */
873 * Close down a SLIP channel.
874 * This means flushing out any pending queues, and then returning. This
875 * call is serialized against other ldisc functions.
877 * We also use this method fo a hangup event
880 static void slip_close(struct tty_struct
*tty
)
882 struct slip
*sl
= tty
->disc_data
;
884 /* First make sure we're connected. */
885 if (!sl
|| sl
->magic
!= SLIP_MAGIC
|| sl
->tty
!= tty
)
888 tty
->disc_data
= NULL
;
893 /* VSV = very important to remove timers */
894 #ifdef CONFIG_SLIP_SMART
895 del_timer_sync(&sl
->keepalive_timer
);
896 del_timer_sync(&sl
->outfill_timer
);
898 /* Flush network side */
899 unregister_netdev(sl
->dev
);
900 /* This will complete via sl_free_netdev */
903 static int slip_hangup(struct tty_struct
*tty
)
908 /************************************************************************
909 * STANDARD SLIP ENCAPSULATION *
910 ************************************************************************/
912 static int slip_esc(unsigned char *s
, unsigned char *d
, int len
)
914 unsigned char *ptr
= d
;
918 * Send an initial END character to flush out any
919 * data that may have accumulated in the receiver
926 * For each byte in the packet, send the appropriate
927 * character sequence, according to the SLIP protocol.
949 static void slip_unesc(struct slip
*sl
, unsigned char s
)
954 #ifdef CONFIG_SLIP_SMART
955 /* drop keeptest bit = VSV */
956 if (test_bit(SLF_KEEPTEST
, &sl
->flags
))
957 clear_bit(SLF_KEEPTEST
, &sl
->flags
);
960 if (!test_and_clear_bit(SLF_ERROR
, &sl
->flags
)
963 clear_bit(SLF_ESCAPE
, &sl
->flags
);
968 set_bit(SLF_ESCAPE
, &sl
->flags
);
971 if (test_and_clear_bit(SLF_ESCAPE
, &sl
->flags
))
975 if (test_and_clear_bit(SLF_ESCAPE
, &sl
->flags
))
979 if (!test_bit(SLF_ERROR
, &sl
->flags
)) {
980 if (sl
->rcount
< sl
->buffsize
) {
981 sl
->rbuff
[sl
->rcount
++] = s
;
984 sl
->rx_over_errors
++;
985 set_bit(SLF_ERROR
, &sl
->flags
);
990 #ifdef CONFIG_SLIP_MODE_SLIP6
991 /************************************************************************
992 * 6 BIT SLIP ENCAPSULATION *
993 ************************************************************************/
995 static int slip_esc6(unsigned char *s
, unsigned char *d
, int len
)
997 unsigned char *ptr
= d
;
1000 unsigned short v
= 0;
1004 * Send an initial END character to flush out any
1005 * data that may have accumulated in the receiver
1006 * due to line noise.
1012 * Encode the packet into printable ascii characters
1015 for (i
= 0; i
< len
; ++i
) {
1016 v
= (v
<< 8) | s
[i
];
1020 c
= 0x30 + ((v
>> bits
) & 0x3F);
1025 c
= 0x30 + ((v
<< (6 - bits
)) & 0x3F);
1032 static void slip_unesc6(struct slip
*sl
, unsigned char s
)
1037 #ifdef CONFIG_SLIP_SMART
1038 /* drop keeptest bit = VSV */
1039 if (test_bit(SLF_KEEPTEST
, &sl
->flags
))
1040 clear_bit(SLF_KEEPTEST
, &sl
->flags
);
1043 if (!test_and_clear_bit(SLF_ERROR
, &sl
->flags
)
1044 && (sl
->rcount
> 2))
1049 } else if (s
>= 0x30 && s
< 0x70) {
1050 sl
->xdata
= (sl
->xdata
<< 6) | ((s
- 0x30) & 0x3F);
1052 if (sl
->xbits
>= 8) {
1054 c
= (unsigned char)(sl
->xdata
>> sl
->xbits
);
1055 if (!test_bit(SLF_ERROR
, &sl
->flags
)) {
1056 if (sl
->rcount
< sl
->buffsize
) {
1057 sl
->rbuff
[sl
->rcount
++] = c
;
1060 sl
->rx_over_errors
++;
1061 set_bit(SLF_ERROR
, &sl
->flags
);
1066 #endif /* CONFIG_SLIP_MODE_SLIP6 */
1068 /* Perform I/O control on an active SLIP channel. */
1069 static int slip_ioctl(struct tty_struct
*tty
, struct file
*file
,
1070 unsigned int cmd
, unsigned long arg
)
1072 struct slip
*sl
= tty
->disc_data
;
1074 int __user
*p
= (int __user
*)arg
;
1076 /* First make sure we're connected. */
1077 if (!sl
|| sl
->magic
!= SLIP_MAGIC
)
1082 tmp
= strlen(sl
->dev
->name
) + 1;
1083 if (copy_to_user((void __user
*)arg
, sl
->dev
->name
, tmp
))
1088 if (put_user(sl
->mode
, p
))
1093 if (get_user(tmp
, p
))
1095 #ifndef SL_INCLUDE_CSLIP
1096 if (tmp
& (SL_MODE_CSLIP
|SL_MODE_ADAPTIVE
))
1099 if ((tmp
& (SL_MODE_ADAPTIVE
| SL_MODE_CSLIP
)) ==
1100 (SL_MODE_ADAPTIVE
| SL_MODE_CSLIP
))
1101 /* return -EINVAL; */
1102 tmp
&= ~SL_MODE_ADAPTIVE
;
1104 #ifndef CONFIG_SLIP_MODE_SLIP6
1105 if (tmp
& SL_MODE_SLIP6
)
1109 sl
->dev
->type
= ARPHRD_SLIP
+ sl
->mode
;
1115 #ifdef CONFIG_SLIP_SMART
1116 /* VSV changes start here */
1117 case SIOCSKEEPALIVE
:
1118 if (get_user(tmp
, p
))
1120 if (tmp
> 255) /* max for unchar */
1123 spin_lock_bh(&sl
->lock
);
1125 spin_unlock_bh(&sl
->lock
);
1128 sl
->keepalive
= (u8
)tmp
;
1129 if (sl
->keepalive
!= 0) {
1130 mod_timer(&sl
->keepalive_timer
,
1131 jiffies
+ sl
->keepalive
* HZ
);
1132 set_bit(SLF_KEEPTEST
, &sl
->flags
);
1134 del_timer(&sl
->keepalive_timer
);
1135 spin_unlock_bh(&sl
->lock
);
1138 case SIOCGKEEPALIVE
:
1139 if (put_user(sl
->keepalive
, p
))
1144 if (get_user(tmp
, p
))
1146 if (tmp
> 255) /* max for unchar */
1148 spin_lock_bh(&sl
->lock
);
1150 spin_unlock_bh(&sl
->lock
);
1153 sl
->outfill
= (u8
)tmp
;
1154 if (sl
->outfill
!= 0) {
1155 mod_timer(&sl
->outfill_timer
,
1156 jiffies
+ sl
->outfill
* HZ
);
1157 set_bit(SLF_OUTWAIT
, &sl
->flags
);
1159 del_timer(&sl
->outfill_timer
);
1160 spin_unlock_bh(&sl
->lock
);
1164 if (put_user(sl
->outfill
, p
))
1167 /* VSV changes end */
1170 return tty_mode_ioctl(tty
, file
, cmd
, arg
);
1174 /* VSV changes start here */
1175 #ifdef CONFIG_SLIP_SMART
1176 /* function do_ioctl called from net/core/dev.c
1177 to allow get/set outfill/keepalive parameter
1180 static int sl_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1182 struct slip
*sl
= netdev_priv(dev
);
1183 unsigned long *p
= (unsigned long *)&rq
->ifr_ifru
;
1185 if (sl
== NULL
) /* Allocation failed ?? */
1188 spin_lock_bh(&sl
->lock
);
1191 spin_unlock_bh(&sl
->lock
);
1196 case SIOCSKEEPALIVE
:
1197 /* max for unchar */
1198 if ((unsigned)*p
> 255) {
1199 spin_unlock_bh(&sl
->lock
);
1202 sl
->keepalive
= (u8
)*p
;
1203 if (sl
->keepalive
!= 0) {
1204 sl
->keepalive_timer
.expires
=
1205 jiffies
+ sl
->keepalive
* HZ
;
1206 mod_timer(&sl
->keepalive_timer
,
1207 jiffies
+ sl
->keepalive
* HZ
);
1208 set_bit(SLF_KEEPTEST
, &sl
->flags
);
1210 del_timer(&sl
->keepalive_timer
);
1213 case SIOCGKEEPALIVE
:
1218 if ((unsigned)*p
> 255) { /* max for unchar */
1219 spin_unlock_bh(&sl
->lock
);
1222 sl
->outfill
= (u8
)*p
;
1223 if (sl
->outfill
!= 0) {
1224 mod_timer(&sl
->outfill_timer
,
1225 jiffies
+ sl
->outfill
* HZ
);
1226 set_bit(SLF_OUTWAIT
, &sl
->flags
);
1228 del_timer(&sl
->outfill_timer
);
1236 /* Resolve race condition, when ioctl'ing hanged up
1237 and opened by another process device.
1239 if (sl
->tty
!= current
->signal
->tty
&&
1240 sl
->pid
!= current
->pid
) {
1241 spin_unlock_bh(&sl
->lock
);
1252 spin_unlock_bh(&sl
->lock
);
1256 /* VSV changes end */
1258 static struct tty_ldisc_ops sl_ldisc
= {
1259 .owner
= THIS_MODULE
,
1260 .magic
= TTY_LDISC_MAGIC
,
1263 .close
= slip_close
,
1264 .hangup
= slip_hangup
,
1265 .ioctl
= slip_ioctl
,
1266 .receive_buf
= slip_receive_buf
,
1267 .write_wakeup
= slip_write_wakeup
,
1270 static int __init
slip_init(void)
1274 if (slip_maxdev
< 4)
1275 slip_maxdev
= 4; /* Sanity */
1277 printk(KERN_INFO
"SLIP: version %s (dynamic channels, max=%d)"
1278 #ifdef CONFIG_SLIP_MODE_SLIP6
1279 " (6 bit encapsulation enabled)"
1282 SLIP_VERSION
, slip_maxdev
);
1283 #if defined(SL_INCLUDE_CSLIP)
1284 printk(KERN_INFO
"CSLIP: code copyright 1989 Regents of the University of California.\n");
1286 #ifdef CONFIG_SLIP_SMART
1287 printk(KERN_INFO
"SLIP linefill/keepalive option.\n");
1290 slip_devs
= kzalloc(sizeof(struct net_device
*)*slip_maxdev
,
1293 printk(KERN_ERR
"SLIP: Can't allocate slip devices array.\n");
1297 /* Fill in our line protocol discipline, and register it */
1298 status
= tty_register_ldisc(N_SLIP
, &sl_ldisc
);
1300 printk(KERN_ERR
"SLIP: can't register line discipline (err = %d)\n", status
);
1306 static void __exit
slip_exit(void)
1309 struct net_device
*dev
;
1311 unsigned long timeout
= jiffies
+ HZ
;
1314 if (slip_devs
== NULL
)
1317 /* First of all: check for active disciplines and hangup them.
1321 msleep_interruptible(100);
1324 for (i
= 0; i
< slip_maxdev
; i
++) {
1328 sl
= netdev_priv(dev
);
1329 spin_lock_bh(&sl
->lock
);
1332 tty_hangup(sl
->tty
);
1334 spin_unlock_bh(&sl
->lock
);
1336 } while (busy
&& time_before(jiffies
, timeout
));
1338 /* FIXME: hangup is async so we should wait when doing this second
1341 for (i
= 0; i
< slip_maxdev
; i
++) {
1345 slip_devs
[i
] = NULL
;
1347 sl
= netdev_priv(dev
);
1349 printk(KERN_ERR
"%s: tty discipline still running\n",
1351 /* Intentionally leak the control block. */
1352 dev
->destructor
= NULL
;
1355 unregister_netdev(dev
);
1361 i
= tty_unregister_ldisc(N_SLIP
);
1363 printk(KERN_ERR
"SLIP: can't unregister line discipline (err = %d)\n", i
);
1366 module_init(slip_init
);
1367 module_exit(slip_exit
);
1369 #ifdef CONFIG_SLIP_SMART
1371 * This is start of the code for multislip style line checking
1372 * added by Stanislav Voronyi. All changes before marked VSV
1375 static void sl_outfill(unsigned long sls
)
1377 struct slip
*sl
= (struct slip
*)sls
;
1379 spin_lock(&sl
->lock
);
1381 if (sl
->tty
== NULL
)
1385 if (test_bit(SLF_OUTWAIT
, &sl
->flags
)) {
1386 /* no packets were transmitted, do outfill */
1387 #ifdef CONFIG_SLIP_MODE_SLIP6
1388 unsigned char s
= (sl
->mode
& SL_MODE_SLIP6
)?0x70:END
;
1390 unsigned char s
= END
;
1392 /* put END into tty queue. Is it right ??? */
1393 if (!netif_queue_stopped(sl
->dev
)) {
1394 /* if device busy no outfill */
1395 sl
->tty
->ops
->write(sl
->tty
, &s
, 1);
1398 set_bit(SLF_OUTWAIT
, &sl
->flags
);
1400 mod_timer(&sl
->outfill_timer
, jiffies
+sl
->outfill
*HZ
);
1403 spin_unlock(&sl
->lock
);
1406 static void sl_keepalive(unsigned long sls
)
1408 struct slip
*sl
= (struct slip
*)sls
;
1410 spin_lock(&sl
->lock
);
1412 if (sl
->tty
== NULL
)
1415 if (sl
->keepalive
) {
1416 if (test_bit(SLF_KEEPTEST
, &sl
->flags
)) {
1417 /* keepalive still high :(, we must hangup */
1419 /* outfill timer must be deleted too */
1420 (void)del_timer(&sl
->outfill_timer
);
1421 printk(KERN_DEBUG
"%s: no packets received during keepalive timeout, hangup.\n", sl
->dev
->name
);
1422 /* this must hangup tty & close slip */
1423 tty_hangup(sl
->tty
);
1424 /* I think we need not something else */
1427 set_bit(SLF_KEEPTEST
, &sl
->flags
);
1429 mod_timer(&sl
->keepalive_timer
, jiffies
+sl
->keepalive
*HZ
);
1432 spin_unlock(&sl
->lock
);
1436 MODULE_LICENSE("GPL");
1437 MODULE_ALIAS_LDISC(N_SLIP
);