slip.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:35k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  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.
  5.  *
  6.  * Version: @(#)slip.c 0.8.3 12/24/94
  7.  *
  8.  * Authors: Laurence Culhane, <loz@holmes.demon.co.uk>
  9.  * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
  10.  *
  11.  * Fixes:
  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 mtu upwards.
  15.  * Driver now spots this and grows/shrinks its buffers(hack!).
  16.  * Memory leak if you run out of memory setting up a slip driver fixed.
  17.  * Matt Dillon : Printable slip (borrowed from NET2E)
  18.  * Pauline Middelink : Slip driver fixes.
  19.  * Alan Cox : Honours the old SL_COMPRESSED flag
  20.  * Alan Cox : KISS AX.25 and AXUI IP support
  21.  * Michael Riepe : Automatic CSLIP recognition added
  22.  * Charles Hedrick : CSLIP header length problem fix.
  23.  * Alan Cox : Corrected non-IP cases of the above.
  24.  * Alan Cox : Now uses hardware type as per FvK.
  25.  * Alan Cox : Default to 192.168.0.0 (RFC 1597)
  26.  * A.N.Kuznetsov : dev_tint() recursion fix.
  27.  * Dmitry Gorodchanin : SLIP memory leaks
  28.  *      Dmitry Gorodchanin      :       Code cleanup. Reduce tty driver
  29.  *                                      buffering from 4096 to 256 bytes.
  30.  *                                      Improving SLIP response time.
  31.  *                                      CONFIG_SLIP_MODE_SLIP6.
  32.  *                                      ifconfig sl? up & down now works correctly.
  33.  * Modularization.
  34.  *              Alan Cox        :       Oops - fix AX.25 buffer lengths
  35.  *      Dmitry Gorodchanin      :       Even more cleanups. Preserve CSLIP
  36.  *                                      statistics. Include CSLIP code only
  37.  *                                      if it really needed.
  38.  * Alan Cox : Free slhc buffers in the right place.
  39.  * Alan Cox : Allow for digipeated IP over AX.25
  40.  * Matti Aarnio : Dynamic SLIP devices, with ideas taken
  41.  * from Jim Freeman's <jfree@caldera.com>
  42.  * dynamic PPP devices.  We do NOT kfree()
  43.  * device entries, just reg./unreg. them
  44.  * as they are needed.  We kfree() them
  45.  * at module cleanup.
  46.  * With MODULE-loading ``insmod'', user can
  47.  * issue parameter:   slip_maxdev=1024
  48.  * (Or how much he/she wants.. Default is 256)
  49.  * * Stanislav Voronyi : Slip line checking, with ideas taken
  50.  * from multislip BSDI driver which was written
  51.  * by Igor Chechik, RELCOM Corp. Only algorithms
  52.  *  have been ported to Linux SLIP driver.
  53.  * Vitaly E. Lavrov : Sane behaviour on tty hangup.
  54.  * Alexey Kuznetsov : Cleanup interfaces to tty&netdevice modules.
  55.  */
  56. #define SL_CHECK_TRANSMIT
  57. #include <linux/config.h>
  58. #include <linux/module.h>
  59. #include <asm/system.h>
  60. #include <asm/uaccess.h>
  61. #include <asm/bitops.h>
  62. #include <linux/string.h>
  63. #include <linux/mm.h>
  64. #include <linux/interrupt.h>
  65. #include <linux/in.h>
  66. #include <linux/tty.h>
  67. #include <linux/errno.h>
  68. #include <linux/netdevice.h>
  69. #include <linux/etherdevice.h>
  70. #include <linux/skbuff.h>
  71. #include <linux/rtnetlink.h>
  72. #include <linux/if_arp.h>
  73. #include <linux/if_slip.h>
  74. #include <linux/init.h>
  75. #include "slip.h"
  76. #ifdef CONFIG_INET
  77. #include <linux/ip.h>
  78. #include <linux/tcp.h>
  79. #include <net/slhc_vj.h>
  80. #endif
  81. #ifdef MODULE
  82. #define SLIP_VERSION    "0.8.4-NET3.019-NEWTTY-MODULAR"
  83. #else
  84. #define SLIP_VERSION "0.8.4-NET3.019-NEWTTY"
  85. #endif
  86. typedef struct slip_ctrl {
  87. struct slip ctrl; /* SLIP things */
  88. struct net_device dev; /* the device */
  89. } slip_ctrl_t;
  90. static slip_ctrl_t **slip_ctrls;
  91. int slip_maxdev = SL_NRUNIT; /* Can be overridden with insmod! */
  92. MODULE_PARM(slip_maxdev, "i");
  93. MODULE_PARM_DESC(slip_maxdev, "Maximum number of slip devices");
  94. static struct tty_ldisc sl_ldisc;
  95. static int slip_esc(unsigned char *p, unsigned char *d, int len);
  96. static void slip_unesc(struct slip *sl, unsigned char c);
  97. #ifdef CONFIG_SLIP_MODE_SLIP6
  98. static int slip_esc6(unsigned char *p, unsigned char *d, int len);
  99. static void slip_unesc6(struct slip *sl, unsigned char c);
  100. #endif
  101. #ifdef CONFIG_SLIP_SMART
  102. static void sl_keepalive(unsigned long sls);
  103. static void sl_outfill(unsigned long sls);
  104. static int sl_ioctl(struct net_device *dev,struct ifreq *rq,int cmd);
  105. #endif
  106. /********************************
  107. *  Buffer administration routines:
  108. * sl_alloc_bufs()
  109. * sl_free_bufs()
  110. * sl_realloc_bufs()
  111. *
  112. * NOTE: sl_realloc_bufs != sl_free_bufs + sl_alloc_bufs, because
  113. * sl_realloc_bufs provides strong atomicity and reallocation
  114. * on actively running device.
  115. *********************************/
  116. /* 
  117.    Allocate channel buffers.
  118.  */
  119. static int
  120. sl_alloc_bufs(struct slip *sl, int mtu)
  121. {
  122. int err = -ENOBUFS;
  123. unsigned long len;
  124. char * rbuff = NULL;
  125. char * xbuff = NULL;
  126. #ifdef SL_INCLUDE_CSLIP
  127. char * cbuff = NULL;
  128. struct slcompress *slcomp = NULL;
  129. #endif
  130. /*
  131.  * Allocate the SLIP frame buffers:
  132.  *
  133.  * rbuff Receive buffer.
  134.  * xbuff Transmit buffer.
  135.  * cbuff        Temporary compression buffer.
  136.  */
  137. len = mtu * 2;
  138. /*
  139.  * allow for arrival of larger UDP packets, even if we say not to
  140.  * also fixes a bug in which SunOS sends 512-byte packets even with
  141.  * an MSS of 128
  142.  */
  143. if (len < 576 * 2)
  144. len = 576 * 2;
  145. rbuff = kmalloc(len + 4, GFP_KERNEL);
  146. if (rbuff == NULL)
  147. goto err_exit;
  148. xbuff = kmalloc(len + 4, GFP_KERNEL);
  149. if (xbuff == NULL)
  150. goto err_exit;
  151. #ifdef SL_INCLUDE_CSLIP
  152. cbuff = kmalloc(len + 4, GFP_KERNEL);
  153. if (cbuff == NULL)
  154. goto err_exit;
  155. slcomp = slhc_init(16, 16);
  156. if (slcomp == NULL)
  157. goto err_exit;
  158. #endif
  159. spin_lock_bh(&sl->lock);
  160. if (sl->tty == NULL) {
  161. spin_unlock_bh(&sl->lock);
  162. err = -ENODEV;
  163. goto err_exit;
  164. }
  165. sl->mtu      = mtu;
  166. sl->buffsize = len;
  167. sl->rcount   = 0;
  168. sl->xleft    = 0;
  169. rbuff = xchg(&sl->rbuff, rbuff);
  170. xbuff = xchg(&sl->xbuff, xbuff);
  171. #ifdef SL_INCLUDE_CSLIP
  172. cbuff = xchg(&sl->cbuff, cbuff);
  173. slcomp = xchg(&sl->slcomp, slcomp);
  174. #ifdef CONFIG_SLIP_MODE_SLIP6
  175. sl->xdata    = 0;
  176. sl->xbits    = 0;
  177. #endif
  178. #endif
  179. spin_unlock_bh(&sl->lock);
  180. err = 0;
  181. /* Cleanup */
  182. err_exit:
  183. #ifdef SL_INCLUDE_CSLIP
  184. if (cbuff)
  185. kfree(cbuff);
  186. if (slcomp)
  187. slhc_free(slcomp);
  188. #endif
  189. if (xbuff)
  190. kfree(xbuff);
  191. if (rbuff)
  192. kfree(rbuff);
  193. return err;
  194. }
  195. /* Free a SLIP channel buffers. */
  196. static void
  197. sl_free_bufs(struct slip *sl)
  198. {
  199. void * tmp;
  200. /* Free all SLIP frame buffers. */
  201. if ((tmp = xchg(&sl->rbuff, NULL)) != NULL)
  202. kfree(tmp);
  203. if ((tmp = xchg(&sl->xbuff, NULL)) != NULL)
  204. kfree(tmp);
  205. #ifdef SL_INCLUDE_CSLIP
  206. if ((tmp = xchg(&sl->cbuff, NULL)) != NULL)
  207. kfree(tmp);
  208. if ((tmp = xchg(&sl->slcomp, NULL)) != NULL)
  209. slhc_free(tmp);
  210. #endif
  211. }
  212. /* 
  213.    Reallocate slip channel buffers.
  214.  */
  215. static int sl_realloc_bufs(struct slip *sl, int mtu)
  216. {
  217. int err = 0;
  218. struct net_device *dev = sl->dev;
  219. unsigned char *xbuff, *rbuff;
  220. #ifdef SL_INCLUDE_CSLIP
  221. unsigned char *cbuff;
  222. #endif
  223. int len = mtu * 2;
  224. /*
  225.  * allow for arrival of larger UDP packets, even if we say not to
  226.  * also fixes a bug in which SunOS sends 512-byte packets even with
  227.  * an MSS of 128
  228.  */
  229. if (len < 576 * 2)
  230. len = 576 * 2;
  231. xbuff = (unsigned char *) kmalloc (len + 4, GFP_ATOMIC);
  232. rbuff = (unsigned char *) kmalloc (len + 4, GFP_ATOMIC);
  233. #ifdef SL_INCLUDE_CSLIP
  234. cbuff = (unsigned char *) kmalloc (len + 4, GFP_ATOMIC);
  235. #endif
  236. #ifdef SL_INCLUDE_CSLIP
  237. if (xbuff == NULL || rbuff == NULL || cbuff == NULL)  {
  238. #else
  239. if (xbuff == NULL || rbuff == NULL)  {
  240. #endif
  241. if (mtu >= sl->mtu) {
  242. printk("%s: unable to grow slip buffers, MTU change cancelled.n",
  243.        dev->name);
  244. err = -ENOBUFS;
  245. }
  246. goto done;
  247. }
  248. spin_lock_bh(&sl->lock);
  249. err = -ENODEV;
  250. if (sl->tty == NULL)
  251. goto done_on_bh;
  252. xbuff    = xchg(&sl->xbuff, xbuff);
  253. rbuff    = xchg(&sl->rbuff, rbuff);
  254. #ifdef SL_INCLUDE_CSLIP
  255. cbuff    = xchg(&sl->cbuff, cbuff);
  256. #endif
  257. if (sl->xleft)  {
  258. if (sl->xleft <= len)  {
  259. memcpy(sl->xbuff, sl->xhead, sl->xleft);
  260. } else  {
  261. sl->xleft = 0;
  262. sl->tx_dropped++;
  263. }
  264. }
  265. sl->xhead = sl->xbuff;
  266. if (sl->rcount)  {
  267. if (sl->rcount <= len) {
  268. memcpy(sl->rbuff, rbuff, sl->rcount);
  269. } else  {
  270. sl->rcount = 0;
  271. sl->rx_over_errors++;
  272. set_bit(SLF_ERROR, &sl->flags);
  273. }
  274. }
  275. sl->mtu      = mtu;
  276. dev->mtu      = mtu;
  277. sl->buffsize = len;
  278. err = 0;
  279. done_on_bh:
  280. spin_unlock_bh(&sl->lock);
  281. done:
  282. if (xbuff)
  283. kfree(xbuff);
  284. if (rbuff)
  285. kfree(rbuff);
  286. #ifdef SL_INCLUDE_CSLIP
  287. if (cbuff)
  288. kfree(cbuff);
  289. #endif
  290. return err;
  291. }
  292. /* Set the "sending" flag.  This must be atomic hence the set_bit. */
  293. static inline void
  294. sl_lock(struct slip *sl)
  295. {
  296. netif_stop_queue(sl->dev);
  297. }
  298. /* Clear the "sending" flag.  This must be atomic, hence the ASM. */
  299. static inline void
  300. sl_unlock(struct slip *sl)
  301. {
  302. netif_wake_queue(sl->dev);
  303. }
  304. /* Send one completely decapsulated IP datagram to the IP layer. */
  305. static void
  306. sl_bump(struct slip *sl)
  307. {
  308. struct sk_buff *skb;
  309. int count;
  310. count = sl->rcount;
  311. #ifdef SL_INCLUDE_CSLIP
  312. if (sl->mode & (SL_MODE_ADAPTIVE | SL_MODE_CSLIP)) {
  313. unsigned char c;
  314. if ((c = sl->rbuff[0]) & SL_TYPE_COMPRESSED_TCP) {
  315. /* ignore compressed packets when CSLIP is off */
  316. if (!(sl->mode & SL_MODE_CSLIP)) {
  317. printk("%s: compressed packet ignoredn", sl->dev->name);
  318. return;
  319. }
  320. /* make sure we've reserved enough space for uncompress to use */
  321. if (count + 80 > sl->buffsize) {
  322. sl->rx_over_errors++;
  323. return;
  324. }
  325. count = slhc_uncompress(sl->slcomp, sl->rbuff, count);
  326. if (count <= 0) {
  327. return;
  328. }
  329. } else if (c >= SL_TYPE_UNCOMPRESSED_TCP) {
  330. if (!(sl->mode & SL_MODE_CSLIP)) {
  331. /* turn on header compression */
  332. sl->mode |= SL_MODE_CSLIP;
  333. sl->mode &= ~SL_MODE_ADAPTIVE;
  334. printk("%s: header compression turned onn", sl->dev->name);
  335. }
  336. sl->rbuff[0] &= 0x4f;
  337. if (slhc_remember(sl->slcomp, sl->rbuff, count) <= 0) {
  338. return;
  339. }
  340. }
  341. }
  342. #endif  /* SL_INCLUDE_CSLIP */
  343. sl->rx_bytes+=count;
  344. skb = dev_alloc_skb(count);
  345. if (skb == NULL)  {
  346. printk("%s: memory squeeze, dropping packet.n", sl->dev->name);
  347. sl->rx_dropped++;
  348. return;
  349. }
  350. skb->dev = sl->dev;
  351. memcpy(skb_put(skb,count), sl->rbuff, count);
  352. skb->mac.raw=skb->data;
  353. skb->protocol=htons(ETH_P_IP);
  354. netif_rx(skb);
  355. sl->dev->last_rx = jiffies;
  356. sl->rx_packets++;
  357. }
  358. /* Encapsulate one IP datagram and stuff into a TTY queue. */
  359. static void
  360. sl_encaps(struct slip *sl, unsigned char *icp, int len)
  361. {
  362. unsigned char *p;
  363. int actual, count;
  364. if (len > sl->mtu) { /* Sigh, shouldn't occur BUT ... */
  365. printk ("%s: truncating oversized transmit packet!n", sl->dev->name);
  366. sl->tx_dropped++;
  367. sl_unlock(sl);
  368. return;
  369. }
  370. p = icp;
  371. #ifdef SL_INCLUDE_CSLIP
  372. if (sl->mode & SL_MODE_CSLIP)  {
  373. len = slhc_compress(sl->slcomp, p, len, sl->cbuff, &p, 1);
  374. }
  375. #endif
  376. #ifdef CONFIG_SLIP_MODE_SLIP6
  377. if(sl->mode & SL_MODE_SLIP6)
  378. count = slip_esc6(p, (unsigned char *) sl->xbuff, len);
  379. else
  380. #endif
  381. count = slip_esc(p, (unsigned char *) sl->xbuff, len);
  382. /* Order of next two lines is *very* important.
  383.  * When we are sending a little amount of data,
  384.  * the transfer may be completed inside driver.write()
  385.  * routine, because it's running with interrupts enabled.
  386.  * In this case we *never* got WRITE_WAKEUP event,
  387.  * if we did not request it before write operation.
  388.  *       14 Oct 1994  Dmitry Gorodchanin.
  389.  */
  390. sl->tty->flags |= (1 << TTY_DO_WRITE_WAKEUP);
  391. actual = sl->tty->driver.write(sl->tty, 0, sl->xbuff, count);
  392. #ifdef SL_CHECK_TRANSMIT
  393. sl->dev->trans_start = jiffies;
  394. #endif
  395. sl->xleft = count - actual;
  396. sl->xhead = sl->xbuff + actual;
  397. #ifdef CONFIG_SLIP_SMART
  398. /* VSV */
  399. clear_bit(SLF_OUTWAIT, &sl->flags); /* reset outfill flag */
  400. #endif
  401. }
  402. /*
  403.  * Called by the driver when there's room for more data.  If we have
  404.  * more packets to send, we send them here.
  405.  */
  406. static void slip_write_wakeup(struct tty_struct *tty)
  407. {
  408. int actual;
  409. struct slip *sl = (struct slip *) tty->disc_data;
  410. /* First make sure we're connected. */
  411. if (!sl || sl->magic != SLIP_MAGIC || !netif_running(sl->dev)) {
  412. return;
  413. }
  414. if (sl->xleft <= 0)  {
  415. /* Now serial buffer is almost free & we can start
  416.  * transmission of another packet */
  417. sl->tx_packets++;
  418. tty->flags &= ~(1 << TTY_DO_WRITE_WAKEUP);
  419. sl_unlock(sl);
  420. return;
  421. }
  422. actual = tty->driver.write(tty, 0, sl->xhead, sl->xleft);
  423. sl->xleft -= actual;
  424. sl->xhead += actual;
  425. }
  426. static void sl_tx_timeout(struct net_device *dev)
  427. {
  428. struct slip *sl = (struct slip*)(dev->priv);
  429. spin_lock(&sl->lock);
  430. if (netif_queue_stopped(dev)) {
  431. struct slip *sl = (struct slip*)(dev->priv);
  432. if (!netif_running(dev))
  433. goto out;
  434. /* May be we must check transmitter timeout here ?
  435.  *      14 Oct 1994 Dmitry Gorodchanin.
  436.  */
  437. #ifdef SL_CHECK_TRANSMIT
  438. if (time_before(jiffies, dev->trans_start + 20 * HZ))  {
  439. /* 20 sec timeout not reached */
  440. goto out;
  441. }
  442. printk("%s: transmit timed out, %s?n", dev->name,
  443.        (sl->tty->driver.chars_in_buffer(sl->tty) || sl->xleft) ?
  444.        "bad line quality" : "driver error");
  445. sl->xleft = 0;
  446. sl->tty->flags &= ~(1 << TTY_DO_WRITE_WAKEUP);
  447. sl_unlock(sl);
  448. #endif
  449. }
  450. out:
  451. spin_unlock(&sl->lock);
  452. }
  453. /* Encapsulate an IP datagram and kick it into a TTY queue. */
  454. static int
  455. sl_xmit(struct sk_buff *skb, struct net_device *dev)
  456. {
  457. struct slip *sl = (struct slip*)(dev->priv);
  458. spin_lock(&sl->lock);
  459. if (!netif_running(dev))  {
  460. spin_unlock(&sl->lock);
  461. printk("%s: xmit call when iface is downn", dev->name);
  462. dev_kfree_skb(skb);
  463. return 0;
  464. }
  465. if (sl->tty == NULL) {
  466. spin_unlock(&sl->lock);
  467. dev_kfree_skb(skb);
  468. return 0;
  469. }
  470. sl_lock(sl);
  471. sl->tx_bytes+=skb->len;
  472. sl_encaps(sl, skb->data, skb->len);
  473. spin_unlock(&sl->lock);
  474. dev_kfree_skb(skb);
  475. return 0;
  476. }
  477. /******************************************
  478.  *   Routines looking at netdevice side.
  479.  ******************************************/
  480. /* Netdevice UP -> DOWN routine */
  481. static int
  482. sl_close(struct net_device *dev)
  483. {
  484. struct slip *sl = (struct slip*)(dev->priv);
  485. spin_lock_bh(&sl->lock);
  486. if (sl->tty) {
  487. /* TTY discipline is running. */
  488. sl->tty->flags &= ~(1 << TTY_DO_WRITE_WAKEUP);
  489. }
  490. netif_stop_queue(dev);
  491. sl->rcount   = 0;
  492. sl->xleft    = 0;
  493. spin_unlock_bh(&sl->lock);
  494. return 0;
  495. }
  496. /* Netdevice DOWN -> UP routine */
  497. static int sl_open(struct net_device *dev)
  498. {
  499. struct slip *sl = (struct slip*)(dev->priv);
  500. if (sl->tty==NULL)
  501. return -ENODEV;
  502. sl->flags &= (1 << SLF_INUSE);
  503. netif_start_queue(dev);
  504. return 0;
  505. }
  506. /* Netdevice change MTU request */
  507. static int sl_change_mtu(struct net_device *dev, int new_mtu)
  508. {
  509. struct slip *sl = (struct slip*)(dev->priv);
  510. if (new_mtu < 68 || new_mtu > 65534)
  511. return -EINVAL;
  512. if (new_mtu != dev->mtu)
  513. return sl_realloc_bufs(sl, new_mtu);
  514. return 0;
  515. }
  516. /* Netdevice get statistics request */
  517. static struct net_device_stats *
  518. sl_get_stats(struct net_device *dev)
  519. {
  520. static struct net_device_stats stats;
  521. struct slip *sl = (struct slip*)(dev->priv);
  522. #ifdef SL_INCLUDE_CSLIP
  523. struct slcompress *comp;
  524. #endif
  525. memset(&stats, 0, sizeof(struct net_device_stats));
  526. stats.rx_packets     = sl->rx_packets;
  527. stats.tx_packets     = sl->tx_packets;
  528. stats.rx_bytes      = sl->rx_bytes;
  529. stats.tx_bytes      = sl->tx_bytes;
  530. stats.rx_dropped     = sl->rx_dropped;
  531. stats.tx_dropped     = sl->tx_dropped;
  532. stats.tx_errors      = sl->tx_errors;
  533. stats.rx_errors      = sl->rx_errors;
  534. stats.rx_over_errors = sl->rx_over_errors;
  535. #ifdef SL_INCLUDE_CSLIP
  536. stats.rx_fifo_errors = sl->rx_compressed;
  537. stats.tx_fifo_errors = sl->tx_compressed;
  538. stats.collisions     = sl->tx_misses;
  539. comp = sl->slcomp;
  540. if (comp) {
  541. stats.rx_fifo_errors += comp->sls_i_compressed;
  542. stats.rx_dropped     += comp->sls_i_tossed;
  543. stats.tx_fifo_errors += comp->sls_o_compressed;
  544. stats.collisions     += comp->sls_o_misses;
  545. }
  546. #endif /* CONFIG_INET */
  547. return (&stats);
  548. }
  549. /* Netdevice register callback */
  550. static int sl_init(struct net_device *dev)
  551. {
  552. struct slip *sl = (struct slip*)(dev->priv);
  553. /*
  554.  * Finish setting up the DEVICE info. 
  555.  */
  556. dev->mtu = sl->mtu;
  557. dev->hard_start_xmit = sl_xmit;
  558. #ifdef SL_CHECK_TRANSMIT
  559. dev->tx_timeout = sl_tx_timeout;
  560. dev->watchdog_timeo = 20*HZ;
  561. #endif
  562. dev->open = sl_open;
  563. dev->stop = sl_close;
  564. dev->get_stats         = sl_get_stats;
  565. dev->change_mtu = sl_change_mtu;
  566. #ifdef CONFIG_SLIP_SMART
  567. dev->do_ioctl = sl_ioctl;
  568. #endif
  569. dev->hard_header_len = 0;
  570. dev->addr_len = 0;
  571. dev->type = ARPHRD_SLIP + sl->mode;
  572. dev->tx_queue_len = 10;
  573. SET_MODULE_OWNER(dev);
  574. /* New-style flags. */
  575. dev->flags = IFF_NOARP|IFF_POINTOPOINT|IFF_MULTICAST;
  576. return 0;
  577. }
  578. /******************************************
  579.   Routines looking at TTY side.
  580.  ******************************************/
  581. static int slip_receive_room(struct tty_struct *tty)
  582. {
  583. return 65536;  /* We can handle an infinite amount of data. :-) */
  584. }
  585. /*
  586.  * Handle the 'receiver data ready' interrupt.
  587.  * This function is called by the 'tty_io' module in the kernel when
  588.  * a block of SLIP data has been received, which can now be decapsulated
  589.  * and sent on to some IP layer for further processing.
  590.  */
  591.  
  592. static void slip_receive_buf(struct tty_struct *tty, const unsigned char *cp, char *fp, int count)
  593. {
  594. struct slip *sl = (struct slip *) tty->disc_data;
  595. if (!sl || sl->magic != SLIP_MAGIC ||
  596.     !netif_running(sl->dev))
  597. return;
  598. /* Read the characters out of the buffer */
  599. while (count--) {
  600. if (fp && *fp++) {
  601. if (!test_and_set_bit(SLF_ERROR, &sl->flags))  {
  602. sl->rx_errors++;
  603. }
  604. cp++;
  605. continue;
  606. }
  607. #ifdef CONFIG_SLIP_MODE_SLIP6
  608. if (sl->mode & SL_MODE_SLIP6)
  609. slip_unesc6(sl, *cp++);
  610. else
  611. #endif
  612. slip_unesc(sl, *cp++);
  613. }
  614. }
  615. /************************************
  616.  *  slip_open helper routines.
  617.  ************************************/
  618. /* Collect hanged up channels */
  619. static void sl_sync(void)
  620. {
  621. int i;
  622. for (i = 0; i < slip_maxdev; i++) {
  623. slip_ctrl_t *slp = slip_ctrls[i];
  624. if (slp == NULL)
  625. break;
  626. if (slp->ctrl.tty || slp->ctrl.leased)
  627. continue;
  628. if (slp->dev.flags&IFF_UP)
  629. dev_close(&slp->dev);
  630. }
  631. }
  632. /* Find a free SLIP channel, and link in this `tty' line. */
  633. static struct slip *
  634. sl_alloc(kdev_t line)
  635. {
  636. struct slip *sl;
  637. slip_ctrl_t *slp = NULL;
  638. int i;
  639. int sel = -1;
  640. int score = -1;
  641. if (slip_ctrls == NULL)
  642. return NULL; /* Master array missing ! */
  643. for (i = 0; i < slip_maxdev; i++) {
  644. slp = slip_ctrls[i];
  645. if (slp == NULL)
  646. break;
  647. if (slp->ctrl.leased) {
  648. if (slp->ctrl.line != line)
  649. continue;
  650. if (slp->ctrl.tty)
  651. return NULL;
  652. /* Clear ESCAPE & ERROR flags */
  653. slp->ctrl.flags &= (1 << SLF_INUSE);
  654. return &slp->ctrl;
  655. }
  656. if (slp->ctrl.tty)
  657. continue;
  658. if (current->pid == slp->ctrl.pid) {
  659. if (slp->ctrl.line == line && score < 3) {
  660. sel = i;
  661. score = 3;
  662. continue;
  663. }
  664. if (score < 2) {
  665. sel = i;
  666. score = 2;
  667. }
  668. continue;
  669. }
  670. if (slp->ctrl.line == line && score < 1) {
  671. sel = i;
  672. score = 1;
  673. continue;
  674. }
  675. if (score < 0) {
  676. sel = i;
  677. score = 0;
  678. }
  679. }
  680. if (sel >= 0) {
  681. i = sel;
  682. slp = slip_ctrls[i];
  683. if (score > 1) {
  684. slp->ctrl.flags &= (1 << SLF_INUSE);
  685. return &slp->ctrl;
  686. }
  687. }
  688. /* Sorry, too many, all slots in use */
  689. if (i >= slip_maxdev)
  690. return NULL;
  691. if (slp) {
  692. if (test_bit(SLF_INUSE, &slp->ctrl.flags)) {
  693. unregister_netdevice(&slp->dev);
  694. sl_free_bufs(&slp->ctrl);
  695. }
  696. } else if ((slp = (slip_ctrl_t *)kmalloc(sizeof(slip_ctrl_t),GFP_KERNEL)) == NULL)
  697. return NULL;
  698. memset(slp, 0, sizeof(slip_ctrl_t));
  699. sl = &slp->ctrl;
  700. /* Initialize channel control data */
  701. sl->magic       = SLIP_MAGIC;
  702. sl->dev        = &slp->dev;
  703. spin_lock_init(&sl->lock);
  704. sl->mode        = SL_MODE_DEFAULT;
  705. sprintf(slp->dev.name, "sl%d", i);
  706. slp->dev.base_addr    = i;
  707. slp->dev.priv         = (void*)sl;
  708. slp->dev.init         = sl_init;
  709. #ifdef CONFIG_SLIP_SMART
  710. init_timer(&sl->keepalive_timer); /* initialize timer_list struct */
  711. sl->keepalive_timer.data=(unsigned long)sl;
  712. sl->keepalive_timer.function=sl_keepalive;
  713. init_timer(&sl->outfill_timer);
  714. sl->outfill_timer.data=(unsigned long)sl;
  715. sl->outfill_timer.function=sl_outfill;
  716. #endif
  717. slip_ctrls[i]        = slp;
  718. return &slp->ctrl;
  719. }
  720. /*
  721.  * Open the high-level part of the SLIP channel.
  722.  * This function is called by the TTY module when the
  723.  * SLIP line discipline is called for.  Because we are
  724.  * sure the tty line exists, we only have to link it to
  725.  * a free SLIP channel...
  726.  */
  727. static int
  728. slip_open(struct tty_struct *tty)
  729. {
  730. struct slip *sl;
  731. int err;
  732. if(!capable(CAP_NET_ADMIN))
  733. return -EPERM;
  734. MOD_INC_USE_COUNT;
  735. /* RTnetlink lock is misused here to serialize concurrent
  736.    opens of slip channels. There are better ways, but it is
  737.    the simplest one.
  738.  */
  739. rtnl_lock();
  740. /* Collect hanged up channels. */
  741. sl_sync();
  742. sl = (struct slip *) tty->disc_data;
  743. err = -EEXIST;
  744. /* First make sure we're not already connected. */
  745. if (sl && sl->magic == SLIP_MAGIC)
  746. goto err_exit;
  747. /* OK.  Find a free SLIP channel to use. */
  748. err = -ENFILE;
  749. if ((sl = sl_alloc(tty->device)) == NULL)
  750. goto err_exit;
  751. sl->tty = tty;
  752. tty->disc_data = sl;
  753. sl->line = tty->device;
  754. sl->pid = current->pid;
  755. if (tty->driver.flush_buffer)
  756. tty->driver.flush_buffer(tty);
  757. if (tty->ldisc.flush_buffer)
  758. tty->ldisc.flush_buffer(tty);
  759. if (!test_bit(SLF_INUSE, &sl->flags)) {
  760. /* Perform the low-level SLIP initialization. */
  761. if ((err = sl_alloc_bufs(sl, SL_MTU)) != 0)
  762. goto err_free_chan;
  763. if (register_netdevice(sl->dev)) {
  764. sl_free_bufs(sl);
  765. goto err_free_chan;
  766. }
  767. set_bit(SLF_INUSE, &sl->flags);
  768. }
  769. #ifdef CONFIG_SLIP_SMART
  770. if (sl->keepalive) {
  771. sl->keepalive_timer.expires=jiffies+sl->keepalive*HZ;
  772. add_timer (&sl->keepalive_timer);
  773. }
  774. if (sl->outfill) {
  775. sl->outfill_timer.expires=jiffies+sl->outfill*HZ;
  776. add_timer (&sl->outfill_timer);
  777. }
  778. #endif
  779. /* Done.  We have linked the TTY line to a channel. */
  780. rtnl_unlock();
  781. return sl->dev->base_addr;
  782. err_free_chan:
  783. sl->tty = NULL;
  784. tty->disc_data = NULL;
  785. clear_bit(SLF_INUSE, &sl->flags);
  786. err_exit:
  787. rtnl_unlock();
  788. /* Count references from TTY module */
  789. MOD_DEC_USE_COUNT;
  790. return err;
  791. }
  792. /*
  793.    Let me to blame a bit.
  794.    1. TTY module calls this funstion on soft interrupt.
  795.    2. TTY module calls this function WITH MASKED INTERRUPTS!
  796.    3. TTY module does not notify us about line discipline
  797.       shutdown,
  798.    Seems, now it is clean. The solution is to consider netdevice and
  799.    line discipline sides as two independent threads.
  800.    By-product (not desired): sl? does not feel hangups and remains open.
  801.    It is supposed, that user level program (dip, diald, slattach...)
  802.    will catch SIGHUP and make the rest of work. 
  803.    I see no way to make more with current tty code. --ANK
  804.  */
  805. /*
  806.  * Close down a SLIP channel.
  807.  * This means flushing out any pending queues, and then restoring the
  808.  * TTY line discipline to what it was before it got hooked to SLIP
  809.  * (which usually is TTY again).
  810.  */
  811. static void
  812. slip_close(struct tty_struct *tty)
  813. {
  814. struct slip *sl = (struct slip *) tty->disc_data;
  815. /* First make sure we're connected. */
  816. if (!sl || sl->magic != SLIP_MAGIC || sl->tty != tty)
  817. return;
  818. tty->disc_data = 0;
  819. sl->tty = NULL;
  820. if (!sl->leased)
  821. sl->line = 0;
  822. /* VSV = very important to remove timers */
  823. #ifdef CONFIG_SLIP_SMART
  824. del_timer_sync(&sl->keepalive_timer);
  825. del_timer_sync(&sl->outfill_timer);
  826. #endif
  827. /* Count references from TTY module */
  828. MOD_DEC_USE_COUNT;
  829. }
  830.  /************************************************************************
  831.   * STANDARD SLIP ENCAPSULATION     *
  832.   ************************************************************************/
  833. int
  834. slip_esc(unsigned char *s, unsigned char *d, int len)
  835. {
  836. unsigned char *ptr = d;
  837. unsigned char c;
  838. /*
  839.  * Send an initial END character to flush out any
  840.  * data that may have accumulated in the receiver
  841.  * due to line noise.
  842.  */
  843. *ptr++ = END;
  844. /*
  845.  * For each byte in the packet, send the appropriate
  846.  * character sequence, according to the SLIP protocol.
  847.  */
  848. while (len-- > 0) {
  849. switch(c = *s++) {
  850.  case END:
  851. *ptr++ = ESC;
  852. *ptr++ = ESC_END;
  853. break;
  854.  case ESC:
  855. *ptr++ = ESC;
  856. *ptr++ = ESC_ESC;
  857. break;
  858.  default:
  859. *ptr++ = c;
  860. break;
  861. }
  862. }
  863. *ptr++ = END;
  864. return (ptr - d);
  865. }
  866. static void slip_unesc(struct slip *sl, unsigned char s)
  867. {
  868. switch(s) {
  869.  case END:
  870. #ifdef CONFIG_SLIP_SMART
  871. /* drop keeptest bit = VSV */
  872. if (test_bit(SLF_KEEPTEST, &sl->flags))
  873. clear_bit(SLF_KEEPTEST, &sl->flags);
  874. #endif
  875. if (!test_and_clear_bit(SLF_ERROR, &sl->flags) && (sl->rcount > 2))  {
  876. sl_bump(sl);
  877. }
  878. clear_bit(SLF_ESCAPE, &sl->flags);
  879. sl->rcount = 0;
  880. return;
  881.  case ESC:
  882. set_bit(SLF_ESCAPE, &sl->flags);
  883. return;
  884.  case ESC_ESC:
  885. if (test_and_clear_bit(SLF_ESCAPE, &sl->flags))  {
  886. s = ESC;
  887. }
  888. break;
  889.  case ESC_END:
  890. if (test_and_clear_bit(SLF_ESCAPE, &sl->flags))  {
  891. s = END;
  892. }
  893. break;
  894. }
  895. if (!test_bit(SLF_ERROR, &sl->flags))  {
  896. if (sl->rcount < sl->buffsize)  {
  897. sl->rbuff[sl->rcount++] = s;
  898. return;
  899. }
  900. sl->rx_over_errors++;
  901. set_bit(SLF_ERROR, &sl->flags);
  902. }
  903. }
  904. #ifdef CONFIG_SLIP_MODE_SLIP6
  905. /************************************************************************
  906.  *  6 BIT SLIP ENCAPSULATION *
  907.  ************************************************************************/
  908. int
  909. slip_esc6(unsigned char *s, unsigned char *d, int len)
  910. {
  911. unsigned char *ptr = d;
  912. unsigned char c;
  913. int i;
  914. unsigned short v = 0;
  915. short bits = 0;
  916. /*
  917.  * Send an initial END character to flush out any
  918.  * data that may have accumulated in the receiver
  919.  * due to line noise.
  920.  */
  921. *ptr++ = 0x70;
  922. /*
  923.  * Encode the packet into printable ascii characters
  924.  */
  925. for (i = 0; i < len; ++i) {
  926. v = (v << 8) | s[i];
  927. bits += 8;
  928. while (bits >= 6) {
  929. bits -= 6;
  930. c = 0x30 + ((v >> bits) & 0x3F);
  931. *ptr++ = c;
  932. }
  933. }
  934. if (bits) {
  935. c = 0x30 + ((v << (6 - bits)) & 0x3F);
  936. *ptr++ = c;
  937. }
  938. *ptr++ = 0x70;
  939. return ptr - d;
  940. }
  941. void
  942. slip_unesc6(struct slip *sl, unsigned char s)
  943. {
  944. unsigned char c;
  945. if (s == 0x70) {
  946. #ifdef CONFIG_SLIP_SMART
  947. /* drop keeptest bit = VSV */
  948. if (test_bit(SLF_KEEPTEST, &sl->flags))
  949. clear_bit(SLF_KEEPTEST, &sl->flags);
  950. #endif
  951. if (!test_and_clear_bit(SLF_ERROR, &sl->flags) && (sl->rcount > 2))  {
  952. sl_bump(sl);
  953. }
  954. sl->rcount = 0;
  955. sl->xbits = 0;
  956. sl->xdata = 0;
  957.   } else if (s >= 0x30 && s < 0x70) {
  958. sl->xdata = (sl->xdata << 6) | ((s - 0x30) & 0x3F);
  959. sl->xbits += 6;
  960. if (sl->xbits >= 8) {
  961. sl->xbits -= 8;
  962. c = (unsigned char)(sl->xdata >> sl->xbits);
  963. if (!test_bit(SLF_ERROR, &sl->flags))  {
  964. if (sl->rcount < sl->buffsize)  {
  965. sl->rbuff[sl->rcount++] = c;
  966. return;
  967. }
  968. sl->rx_over_errors++;
  969. set_bit(SLF_ERROR, &sl->flags);
  970. }
  971. }
  972.   }
  973. }
  974. #endif /* CONFIG_SLIP_MODE_SLIP6 */
  975. /* Perform I/O control on an active SLIP channel. */
  976. static int
  977. slip_ioctl(struct tty_struct *tty, void *file, int cmd, void *arg)
  978. {
  979. struct slip *sl = (struct slip *) tty->disc_data;
  980. unsigned int tmp;
  981. /* First make sure we're connected. */
  982. if (!sl || sl->magic != SLIP_MAGIC) {
  983. return -EINVAL;
  984. }
  985. switch(cmd) {
  986.  case SIOCGIFNAME:
  987. /* Please, do not put this line under copy_to_user,
  988.    it breaks my old poor gcc on alpha --ANK
  989.  */
  990. tmp = strlen(sl->dev->name) + 1;
  991. if (copy_to_user(arg, sl->dev->name, tmp))
  992. return -EFAULT;
  993. return 0;
  994. case SIOCGIFENCAP:
  995. if (put_user(sl->mode, (int *)arg))
  996. return -EFAULT;
  997. return 0;
  998. case SIOCSIFENCAP:
  999. if (get_user(tmp,(int *)arg))
  1000. return -EFAULT;
  1001. #ifndef SL_INCLUDE_CSLIP
  1002. if (tmp & (SL_MODE_CSLIP|SL_MODE_ADAPTIVE))  {
  1003. return -EINVAL;
  1004. }
  1005. #else
  1006. if ((tmp & (SL_MODE_ADAPTIVE | SL_MODE_CSLIP)) ==
  1007.     (SL_MODE_ADAPTIVE | SL_MODE_CSLIP))  {
  1008. /* return -EINVAL; */
  1009. tmp &= ~SL_MODE_ADAPTIVE;
  1010. }
  1011. #endif
  1012. #ifndef CONFIG_SLIP_MODE_SLIP6
  1013. if (tmp & SL_MODE_SLIP6)  {
  1014. return -EINVAL;
  1015. }
  1016. #endif
  1017. sl->mode = tmp;
  1018. sl->dev->type = ARPHRD_SLIP+sl->mode;
  1019. return 0;
  1020.  case SIOCSIFHWADDR:
  1021. return -EINVAL;
  1022. #ifdef CONFIG_SLIP_SMART
  1023. /* VSV changes start here */
  1024.         case SIOCSKEEPALIVE:
  1025. if (get_user(tmp,(int *)arg))
  1026. return -EFAULT;
  1027.                 if (tmp > 255) /* max for unchar */
  1028. return -EINVAL;
  1029. spin_lock_bh(&sl->lock);
  1030. if (!sl->tty) {
  1031. spin_unlock_bh(&sl->lock);
  1032. return -ENODEV;
  1033. }
  1034. if ((sl->keepalive = (unchar) tmp) != 0) {
  1035. mod_timer(&sl->keepalive_timer, jiffies+sl->keepalive*HZ);
  1036. set_bit(SLF_KEEPTEST, &sl->flags);
  1037.                 } else {
  1038.                         del_timer (&sl->keepalive_timer);
  1039. }
  1040. spin_unlock_bh(&sl->lock);
  1041. return 0;
  1042.         case SIOCGKEEPALIVE:
  1043. if (put_user(sl->keepalive, (int *)arg))
  1044. return -EFAULT;
  1045. return 0;
  1046.         case SIOCSOUTFILL:
  1047. if (get_user(tmp,(int *)arg))
  1048. return -EFAULT;
  1049.                 if (tmp > 255) /* max for unchar */
  1050. return -EINVAL;
  1051. spin_lock_bh(&sl->lock);
  1052. if (!sl->tty) {
  1053. spin_unlock_bh(&sl->lock);
  1054. return -ENODEV;
  1055. }
  1056.                 if ((sl->outfill = (unchar) tmp) != 0){
  1057. mod_timer(&sl->outfill_timer, jiffies+sl->outfill*HZ);
  1058. set_bit(SLF_OUTWAIT, &sl->flags);
  1059. } else {
  1060.                         del_timer (&sl->outfill_timer);
  1061. }
  1062. spin_unlock_bh(&sl->lock);
  1063.                 return 0;
  1064.         case SIOCGOUTFILL:
  1065. if (put_user(sl->outfill, (int *)arg))
  1066. return -EFAULT;
  1067. return 0;
  1068. /* VSV changes end */
  1069. #endif
  1070. /* Allow stty to read, but not set, the serial port */
  1071. case TCGETS:
  1072. case TCGETA:
  1073. return n_tty_ioctl(tty, (struct file *) file, cmd, (unsigned long) arg);
  1074. default:
  1075. return -ENOIOCTLCMD;
  1076. }
  1077. }
  1078. /* VSV changes start here */
  1079. #ifdef CONFIG_SLIP_SMART
  1080. /* function do_ioctl called from net/core/dev.c
  1081.    to allow get/set outfill/keepalive parameter
  1082.    by ifconfig                                 */
  1083. static int sl_ioctl(struct net_device *dev,struct ifreq *rq,int cmd)
  1084. {
  1085. struct slip *sl = (struct slip*)(dev->priv);
  1086. if (sl == NULL) /* Allocation failed ?? */
  1087. return -ENODEV;
  1088. spin_lock_bh(&sl->lock);
  1089. if (!sl->tty) {
  1090. spin_unlock_bh(&sl->lock);
  1091. return -ENODEV;
  1092. }
  1093. switch(cmd){
  1094.         case SIOCSKEEPALIVE:
  1095. /* max for unchar */
  1096.                 if (((unsigned int)((unsigned long)rq->ifr_data)) > 255) {
  1097. spin_unlock_bh(&sl->lock);
  1098. return -EINVAL;
  1099. }
  1100. sl->keepalive = (unchar) ((unsigned long)rq->ifr_data);
  1101. if (sl->keepalive != 0) {
  1102. sl->keepalive_timer.expires=jiffies+sl->keepalive*HZ;
  1103. mod_timer(&sl->keepalive_timer, jiffies+sl->keepalive*HZ);
  1104. set_bit(SLF_KEEPTEST, &sl->flags);
  1105.                 } else {
  1106.                         del_timer(&sl->keepalive_timer);
  1107. }
  1108. break;
  1109.         case SIOCGKEEPALIVE:
  1110. rq->ifr_data=(caddr_t)((unsigned long)sl->keepalive);
  1111. break;
  1112.         case SIOCSOUTFILL:
  1113.                 if (((unsigned)((unsigned long)rq->ifr_data)) > 255) { /* max for unchar */
  1114. spin_unlock_bh(&sl->lock);
  1115. return -EINVAL;
  1116. }
  1117.                 if ((sl->outfill = (unchar)((unsigned long) rq->ifr_data)) != 0){
  1118. mod_timer(&sl->outfill_timer, jiffies+sl->outfill*HZ);
  1119. set_bit(SLF_OUTWAIT, &sl->flags);
  1120. } else {
  1121.                         del_timer (&sl->outfill_timer);
  1122. }
  1123.                 break;
  1124.         case SIOCGOUTFILL:
  1125. rq->ifr_data=(caddr_t)((unsigned long)sl->outfill);
  1126. break;
  1127.         case SIOCSLEASE:
  1128. /* Resolve race condition, when ioctl'ing hanged up 
  1129.    and opened by another process device.
  1130.  */
  1131. if (sl->tty != current->tty && sl->pid != current->pid) {
  1132. spin_unlock_bh(&sl->lock);
  1133. return -EPERM;
  1134. }
  1135. sl->leased = 0;
  1136.                 if ((unsigned long)rq->ifr_data)
  1137. sl->leased = 1;
  1138.                 break;
  1139.         case SIOCGLEASE:
  1140. rq->ifr_data=(caddr_t)((unsigned long)sl->leased);
  1141. };
  1142. spin_unlock_bh(&sl->lock);
  1143. return 0;
  1144. }
  1145. #endif
  1146. /* VSV changes end */
  1147. /* Initialize SLIP control device -- register SLIP line discipline */
  1148. int __init slip_init_ctrl_dev(void)
  1149. {
  1150. int status;
  1151. if (slip_maxdev < 4) slip_maxdev = 4; /* Sanity */
  1152. printk(KERN_INFO "SLIP: version %s (dynamic channels, max=%d)"
  1153. #ifdef CONFIG_SLIP_MODE_SLIP6
  1154.        " (6 bit encapsulation enabled)"
  1155. #endif
  1156.        ".n",
  1157.        SLIP_VERSION, slip_maxdev );
  1158. #if defined(SL_INCLUDE_CSLIP) && !defined(MODULE)
  1159. printk("CSLIP: code copyright 1989 Regents of the University of California.n");
  1160. #endif
  1161. #ifdef CONFIG_SLIP_SMART
  1162. printk(KERN_INFO "SLIP linefill/keepalive option.n");
  1163. #endif
  1164. slip_ctrls = (slip_ctrl_t **) kmalloc(sizeof(void*)*slip_maxdev, GFP_KERNEL);
  1165. if (slip_ctrls == NULL)
  1166. {
  1167. printk("SLIP: Can't allocate slip_ctrls[] array!  Uaargh! (-> No SLIP available)n");
  1168. return -ENOMEM;
  1169. }
  1170. /* Clear the pointer array, we allocate devices when we need them */
  1171. memset(slip_ctrls, 0, sizeof(void*)*slip_maxdev); /* Pointers */
  1172. /* Fill in our line protocol discipline, and register it */
  1173. memset(&sl_ldisc, 0, sizeof(sl_ldisc));
  1174. sl_ldisc.magic  = TTY_LDISC_MAGIC;
  1175. sl_ldisc.name   = "slip";
  1176. sl_ldisc.flags  = 0;
  1177. sl_ldisc.open   = slip_open;
  1178. sl_ldisc.close  = slip_close;
  1179. sl_ldisc.read   = NULL;
  1180. sl_ldisc.write  = NULL;
  1181. sl_ldisc.ioctl  = (int (*)(struct tty_struct *, struct file *,
  1182.    unsigned int, unsigned long)) slip_ioctl;
  1183. sl_ldisc.poll   = NULL;
  1184. sl_ldisc.receive_buf = slip_receive_buf;
  1185. sl_ldisc.receive_room = slip_receive_room;
  1186. sl_ldisc.write_wakeup = slip_write_wakeup;
  1187. if ((status = tty_register_ldisc(N_SLIP, &sl_ldisc)) != 0)  {
  1188. printk("SLIP: can't register line discipline (err = %d)n", status);
  1189. }
  1190. return status;
  1191. }
  1192. #ifdef MODULE
  1193. int
  1194. init_module(void)
  1195. {
  1196. return slip_init_ctrl_dev();
  1197. }
  1198. void
  1199. cleanup_module(void)
  1200. {
  1201. int i;
  1202. if (slip_ctrls != NULL) {
  1203. unsigned long timeout = jiffies + HZ;
  1204. int busy = 0;
  1205. /* First of all: check for active disciplines and hangup them.
  1206.  */
  1207. do {
  1208. if (busy)
  1209. yield();
  1210. busy = 0;
  1211. local_bh_disable();
  1212. for (i = 0; i < slip_maxdev; i++) {
  1213. struct slip_ctrl *slc = slip_ctrls[i];
  1214. if (!slc)
  1215. continue;
  1216. spin_lock(&slc->ctrl.lock);
  1217. if (slc->ctrl.tty) {
  1218. busy++;
  1219. tty_hangup(slc->ctrl.tty);
  1220. }
  1221. spin_unlock(&slc->ctrl.lock);
  1222. }
  1223. local_bh_enable();
  1224. } while (busy && time_before(jiffies, timeout));
  1225. busy = 0;
  1226. for (i = 0; i < slip_maxdev; i++) {
  1227. struct slip_ctrl *slc = slip_ctrls[i];
  1228. if (slc) {
  1229. unregister_netdev(&slc->dev);
  1230. if (slc->ctrl.tty) {
  1231. printk("%s: tty discipline is still runningn", slc->dev.name);
  1232. /* Pin module forever */
  1233. MOD_INC_USE_COUNT;
  1234. busy++;
  1235. continue;
  1236. }
  1237. sl_free_bufs(&slc->ctrl);
  1238. kfree(slc);
  1239. slip_ctrls[i] = NULL;
  1240. }
  1241. }
  1242. if (!busy) {
  1243. kfree(slip_ctrls);
  1244. slip_ctrls = NULL;
  1245. }
  1246. }
  1247. if ((i = tty_register_ldisc(N_SLIP, NULL)))
  1248. {
  1249. printk("SLIP: can't unregister line discipline (err = %d)n", i);
  1250. }
  1251. }
  1252. #endif /* MODULE */
  1253. #ifdef CONFIG_SLIP_SMART
  1254. /*
  1255.  * This is start of the code for multislip style line checking
  1256.  * added by Stanislav Voronyi. All changes before marked VSV
  1257.  */
  1258. static void sl_outfill(unsigned long sls)
  1259. {
  1260. struct slip *sl=(struct slip *)sls;
  1261. spin_lock(&sl->lock);
  1262. if (sl->tty == NULL)
  1263. goto out;
  1264. if(sl->outfill)
  1265. {
  1266. if( test_bit(SLF_OUTWAIT, &sl->flags) )
  1267. {
  1268. /* no packets were transmitted, do outfill */
  1269. #ifdef CONFIG_SLIP_MODE_SLIP6
  1270. unsigned char s = (sl->mode & SL_MODE_SLIP6)?0x70:END;
  1271. #else
  1272. unsigned char s = END;
  1273. #endif
  1274. /* put END into tty queue. Is it right ??? */
  1275. if (!netif_queue_stopped(sl->dev))
  1276. {
  1277. /* if device busy no outfill */
  1278. sl->tty->driver.write(sl->tty, 0, &s, 1);
  1279. }
  1280. }
  1281. else
  1282. set_bit(SLF_OUTWAIT, &sl->flags);
  1283. mod_timer(&sl->outfill_timer, jiffies+sl->outfill*HZ);
  1284. }
  1285. out:
  1286. spin_unlock(&sl->lock);
  1287. }
  1288. static void sl_keepalive(unsigned long sls)
  1289. {
  1290. struct slip *sl=(struct slip *)sls;
  1291. spin_lock(&sl->lock);
  1292. if (sl->tty == NULL)
  1293. goto out;
  1294. if( sl->keepalive)
  1295. {
  1296. if(test_bit(SLF_KEEPTEST, &sl->flags))
  1297. {
  1298. /* keepalive still high :(, we must hangup */
  1299. if( sl->outfill ) /* outfill timer must be deleted too */
  1300. (void)del_timer(&sl->outfill_timer);
  1301. printk("%s: no packets received during keepalive timeout, hangup.n", sl->dev->name);
  1302. tty_hangup(sl->tty); /* this must hangup tty & close slip */
  1303. /* I think we need not something else */
  1304. goto out;
  1305. }
  1306. else
  1307. set_bit(SLF_KEEPTEST, &sl->flags);
  1308. mod_timer(&sl->keepalive_timer, jiffies+sl->keepalive*HZ);
  1309. }
  1310. out:
  1311. spin_unlock(&sl->lock);
  1312. }
  1313. #endif
  1314. MODULE_LICENSE("GPL");