1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * PPP async serial channel driver for Linux.
5 * Copyright 1999 Paul Mackerras.
7 * This driver provides the encapsulation and framing for sending
8 * and receiving PPP frames over async serial lines. It relies on
9 * the generic PPP layer to give it frames to send and to process
10 * received frames. It implements the PPP line discipline.
12 * Part of the code in this driver was inspired by the old async-only
13 * PPP driver, written by Michael Callahan and Al Longyear, and
14 * subsequently hacked by Paul Mackerras.
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/skbuff.h>
20 #include <linux/tty.h>
21 #include <linux/netdevice.h>
22 #include <linux/poll.h>
23 #include <linux/crc-ccitt.h>
24 #include <linux/ppp_defs.h>
25 #include <linux/ppp-ioctl.h>
26 #include <linux/ppp_channel.h>
27 #include <linux/spinlock.h>
28 #include <linux/init.h>
29 #include <linux/interrupt.h>
30 #include <linux/jiffies.h>
31 #include <linux/slab.h>
32 #include <asm/unaligned.h>
33 #include <linux/uaccess.h>
34 #include <asm/string.h>
36 #define PPP_VERSION "2.4.2"
40 /* Structure for storing local state. */
42 struct tty_struct *tty;
49 unsigned long xmit_flags;
52 unsigned int bytes_sent;
53 unsigned int bytes_rcvd;
60 unsigned long last_xmit;
64 struct sk_buff_head rqueue;
66 struct tasklet_struct tsk;
69 struct completion dead;
70 struct ppp_channel chan; /* interface to generic ppp layer */
71 unsigned char obuf[OBUFSIZE];
74 /* Bit numbers in xmit_flags */
82 #define SC_PREV_ERROR 4
85 #define SC_RCV_BITS (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP)
87 static int flag_time = HZ;
88 module_param(flag_time, int, 0);
89 MODULE_PARM_DESC(flag_time, "ppp_async: interval between flagged packets (in clock ticks)");
90 MODULE_LICENSE("GPL");
91 MODULE_ALIAS_LDISC(N_PPP);
96 static int ppp_async_encode(struct asyncppp *ap);
97 static int ppp_async_send(struct ppp_channel *chan, struct sk_buff *skb);
98 static int ppp_async_push(struct asyncppp *ap);
99 static void ppp_async_flush_output(struct asyncppp *ap);
100 static void ppp_async_input(struct asyncppp *ap, const unsigned char *buf,
101 char *flags, int count);
102 static int ppp_async_ioctl(struct ppp_channel *chan, unsigned int cmd,
104 static void ppp_async_process(unsigned long arg);
106 static void async_lcp_peek(struct asyncppp *ap, unsigned char *data,
107 int len, int inbound);
109 static const struct ppp_channel_ops async_ops = {
110 .start_xmit = ppp_async_send,
111 .ioctl = ppp_async_ioctl,
115 * Routines implementing the PPP line discipline.
119 * We have a potential race on dereferencing tty->disc_data,
120 * because the tty layer provides no locking at all - thus one
121 * cpu could be running ppp_asynctty_receive while another
122 * calls ppp_asynctty_close, which zeroes tty->disc_data and
123 * frees the memory that ppp_asynctty_receive is using. The best
124 * way to fix this is to use a rwlock in the tty struct, but for now
125 * we use a single global rwlock for all ttys in ppp line discipline.
127 * FIXME: this is no longer true. The _close path for the ldisc is
128 * now guaranteed to be sane.
130 static DEFINE_RWLOCK(disc_data_lock);
132 static struct asyncppp *ap_get(struct tty_struct *tty)
136 read_lock(&disc_data_lock);
139 refcount_inc(&ap->refcnt);
140 read_unlock(&disc_data_lock);
144 static void ap_put(struct asyncppp *ap)
146 if (refcount_dec_and_test(&ap->refcnt))
151 * Called when a tty is put into PPP line discipline. Called in process
155 ppp_asynctty_open(struct tty_struct *tty)
161 if (tty->ops->write == NULL)
165 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
169 /* initialize the asyncppp structure */
172 spin_lock_init(&ap->xmit_lock);
173 spin_lock_init(&ap->recv_lock);
175 ap->xaccm[3] = 0x60000000U;
181 skb_queue_head_init(&ap->rqueue);
182 tasklet_init(&ap->tsk, ppp_async_process, (unsigned long) ap);
184 refcount_set(&ap->refcnt, 1);
185 init_completion(&ap->dead);
187 ap->chan.private = ap;
188 ap->chan.ops = &async_ops;
189 ap->chan.mtu = PPP_MRU;
190 speed = tty_get_baud_rate(tty);
191 ap->chan.speed = speed;
192 err = ppp_register_channel(&ap->chan);
197 tty->receive_room = 65536;
207 * Called when the tty is put into another line discipline
208 * or it hangs up. We have to wait for any cpu currently
209 * executing in any of the other ppp_asynctty_* routines to
210 * finish before we can call ppp_unregister_channel and free
211 * the asyncppp struct. This routine must be called from
212 * process context, not interrupt or softirq context.
215 ppp_asynctty_close(struct tty_struct *tty)
219 write_lock_irq(&disc_data_lock);
221 tty->disc_data = NULL;
222 write_unlock_irq(&disc_data_lock);
227 * We have now ensured that nobody can start using ap from now
228 * on, but we have to wait for all existing users to finish.
229 * Note that ppp_unregister_channel ensures that no calls to
230 * our channel ops (i.e. ppp_async_send/ioctl) are in progress
231 * by the time it returns.
233 if (!refcount_dec_and_test(&ap->refcnt))
234 wait_for_completion(&ap->dead);
235 tasklet_kill(&ap->tsk);
237 ppp_unregister_channel(&ap->chan);
239 skb_queue_purge(&ap->rqueue);
245 * Called on tty hangup in process context.
247 * Wait for I/O to driver to complete and unregister PPP channel.
248 * This is already done by the close routine, so just call that.
250 static int ppp_asynctty_hangup(struct tty_struct *tty)
252 ppp_asynctty_close(tty);
257 * Read does nothing - no data is ever available this way.
258 * Pppd reads and writes packets via /dev/ppp instead.
261 ppp_asynctty_read(struct tty_struct *tty, struct file *file,
262 unsigned char __user *buf, size_t count)
268 * Write on the tty does nothing, the packets all come in
269 * from the ppp generic stuff.
272 ppp_asynctty_write(struct tty_struct *tty, struct file *file,
273 const unsigned char *buf, size_t count)
279 * Called in process context only. May be re-entered by multiple
280 * ioctl calling threads.
284 ppp_asynctty_ioctl(struct tty_struct *tty, struct file *file,
285 unsigned int cmd, unsigned long arg)
287 struct asyncppp *ap = ap_get(tty);
289 int __user *p = (int __user *)arg;
297 if (put_user(ppp_channel_index(&ap->chan), p))
304 if (put_user(ppp_unit_number(&ap->chan), p))
310 /* flush our buffers and the serial port's buffer */
311 if (arg == TCIOFLUSH || arg == TCOFLUSH)
312 ppp_async_flush_output(ap);
313 err = n_tty_ioctl_helper(tty, file, cmd, arg);
318 if (put_user(val, p))
324 /* Try the various mode ioctls */
325 err = tty_mode_ioctl(tty, file, cmd, arg);
332 /* No kernel lock - fine */
334 ppp_asynctty_poll(struct tty_struct *tty, struct file *file, poll_table *wait)
339 /* May sleep, don't call from interrupt level or with interrupts disabled */
341 ppp_asynctty_receive(struct tty_struct *tty, const unsigned char *buf,
342 char *cflags, int count)
344 struct asyncppp *ap = ap_get(tty);
349 spin_lock_irqsave(&ap->recv_lock, flags);
350 ppp_async_input(ap, buf, cflags, count);
351 spin_unlock_irqrestore(&ap->recv_lock, flags);
352 if (!skb_queue_empty(&ap->rqueue))
353 tasklet_schedule(&ap->tsk);
359 ppp_asynctty_wakeup(struct tty_struct *tty)
361 struct asyncppp *ap = ap_get(tty);
363 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
366 set_bit(XMIT_WAKEUP, &ap->xmit_flags);
367 tasklet_schedule(&ap->tsk);
372 static struct tty_ldisc_ops ppp_ldisc = {
373 .owner = THIS_MODULE,
374 .magic = TTY_LDISC_MAGIC,
376 .open = ppp_asynctty_open,
377 .close = ppp_asynctty_close,
378 .hangup = ppp_asynctty_hangup,
379 .read = ppp_asynctty_read,
380 .write = ppp_asynctty_write,
381 .ioctl = ppp_asynctty_ioctl,
382 .poll = ppp_asynctty_poll,
383 .receive_buf = ppp_asynctty_receive,
384 .write_wakeup = ppp_asynctty_wakeup,
392 err = tty_register_ldisc(N_PPP, &ppp_ldisc);
394 printk(KERN_ERR "PPP_async: error %d registering line disc.\n",
400 * The following routines provide the PPP channel interface.
403 ppp_async_ioctl(struct ppp_channel *chan, unsigned int cmd, unsigned long arg)
405 struct asyncppp *ap = chan->private;
406 void __user *argp = (void __user *)arg;
407 int __user *p = argp;
414 val = ap->flags | ap->rbits;
415 if (put_user(val, p))
420 if (get_user(val, p))
422 ap->flags = val & ~SC_RCV_BITS;
423 spin_lock_irq(&ap->recv_lock);
424 ap->rbits = val & SC_RCV_BITS;
425 spin_unlock_irq(&ap->recv_lock);
429 case PPPIOCGASYNCMAP:
430 if (put_user(ap->xaccm[0], (u32 __user *)argp))
434 case PPPIOCSASYNCMAP:
435 if (get_user(ap->xaccm[0], (u32 __user *)argp))
440 case PPPIOCGRASYNCMAP:
441 if (put_user(ap->raccm, (u32 __user *)argp))
445 case PPPIOCSRASYNCMAP:
446 if (get_user(ap->raccm, (u32 __user *)argp))
451 case PPPIOCGXASYNCMAP:
452 if (copy_to_user(argp, ap->xaccm, sizeof(ap->xaccm)))
456 case PPPIOCSXASYNCMAP:
457 if (copy_from_user(accm, argp, sizeof(accm)))
459 accm[2] &= ~0x40000000U; /* can't escape 0x5e */
460 accm[3] |= 0x60000000U; /* must escape 0x7d, 0x7e */
461 memcpy(ap->xaccm, accm, sizeof(ap->xaccm));
466 if (put_user(ap->mru, p))
471 if (get_user(val, p))
487 * This is called at softirq level to deliver received packets
488 * to the ppp_generic code, and to tell the ppp_generic code
489 * if we can accept more output now.
491 static void ppp_async_process(unsigned long arg)
493 struct asyncppp *ap = (struct asyncppp *) arg;
496 /* process received packets */
497 while ((skb = skb_dequeue(&ap->rqueue)) != NULL) {
499 ppp_input_error(&ap->chan, 0);
500 ppp_input(&ap->chan, skb);
503 /* try to push more stuff out */
504 if (test_bit(XMIT_WAKEUP, &ap->xmit_flags) && ppp_async_push(ap))
505 ppp_output_wakeup(&ap->chan);
509 * Procedures for encapsulation and framing.
513 * Procedure to encode the data for async serial transmission.
514 * Does octet stuffing (escaping), puts the address/control bytes
515 * on if A/C compression is disabled, and does protocol compression.
516 * Assumes ap->tpkt != 0 on entry.
517 * Returns 1 if we finished the current frame, 0 otherwise.
520 #define PUT_BYTE(ap, buf, c, islcp) do { \
521 if ((islcp && c < 0x20) || (ap->xaccm[c >> 5] & (1 << (c & 0x1f)))) {\
522 *buf++ = PPP_ESCAPE; \
523 *buf++ = c ^ PPP_TRANS; \
529 ppp_async_encode(struct asyncppp *ap)
531 int fcs, i, count, c, proto;
532 unsigned char *buf, *buflim;
540 data = ap->tpkt->data;
541 count = ap->tpkt->len;
543 proto = get_unaligned_be16(data);
546 * LCP packets with code values between 1 (configure-reqest)
547 * and 7 (code-reject) must be sent as though no options
548 * had been negotiated.
550 islcp = proto == PPP_LCP && 1 <= data[2] && data[2] <= 7;
554 async_lcp_peek(ap, data, count, 0);
557 * Start of a new packet - insert the leading FLAG
558 * character if necessary.
560 if (islcp || flag_time == 0 ||
561 time_after_eq(jiffies, ap->last_xmit + flag_time))
563 ap->last_xmit = jiffies;
567 * Put in the address/control bytes if necessary
569 if ((ap->flags & SC_COMP_AC) == 0 || islcp) {
570 PUT_BYTE(ap, buf, 0xff, islcp);
571 fcs = PPP_FCS(fcs, 0xff);
572 PUT_BYTE(ap, buf, 0x03, islcp);
573 fcs = PPP_FCS(fcs, 0x03);
578 * Once we put in the last byte, we need to put in the FCS
579 * and closing flag, so make sure there is at least 7 bytes
580 * of free space in the output buffer.
582 buflim = ap->obuf + OBUFSIZE - 6;
583 while (i < count && buf < buflim) {
585 if (i == 1 && c == 0 && (ap->flags & SC_COMP_PROT))
586 continue; /* compress protocol field */
587 fcs = PPP_FCS(fcs, c);
588 PUT_BYTE(ap, buf, c, islcp);
593 * Remember where we are up to in this packet.
602 * We have finished the packet. Add the FCS and flag.
606 PUT_BYTE(ap, buf, c, islcp);
607 c = (fcs >> 8) & 0xff;
608 PUT_BYTE(ap, buf, c, islcp);
612 consume_skb(ap->tpkt);
618 * Transmit-side routines.
622 * Send a packet to the peer over an async tty line.
623 * Returns 1 iff the packet was accepted.
624 * If the packet was not accepted, we will call ppp_output_wakeup
625 * at some later time.
628 ppp_async_send(struct ppp_channel *chan, struct sk_buff *skb)
630 struct asyncppp *ap = chan->private;
634 if (test_and_set_bit(XMIT_FULL, &ap->xmit_flags))
635 return 0; /* already full */
644 * Push as much data as possible out to the tty.
647 ppp_async_push(struct asyncppp *ap)
649 int avail, sent, done = 0;
650 struct tty_struct *tty = ap->tty;
654 * We can get called recursively here if the tty write
655 * function calls our wakeup function. This can happen
656 * for example on a pty with both the master and slave
657 * set to PPP line discipline.
658 * We use the XMIT_BUSY bit to detect this and get out,
659 * leaving the XMIT_WAKEUP bit set to tell the other
660 * instance that it may now be able to write more now.
662 if (test_and_set_bit(XMIT_BUSY, &ap->xmit_flags))
664 spin_lock_bh(&ap->xmit_lock);
666 if (test_and_clear_bit(XMIT_WAKEUP, &ap->xmit_flags))
668 if (!tty_stuffed && ap->optr < ap->olim) {
669 avail = ap->olim - ap->optr;
670 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
671 sent = tty->ops->write(tty, ap->optr, avail);
673 goto flush; /* error, e.g. loss of CD */
679 if (ap->optr >= ap->olim && ap->tpkt) {
680 if (ppp_async_encode(ap)) {
681 /* finished processing ap->tpkt */
682 clear_bit(XMIT_FULL, &ap->xmit_flags);
688 * We haven't made any progress this time around.
689 * Clear XMIT_BUSY to let other callers in, but
690 * after doing so we have to check if anyone set
691 * XMIT_WAKEUP since we last checked it. If they
692 * did, we should try again to set XMIT_BUSY and go
693 * around again in case XMIT_BUSY was still set when
694 * the other caller tried.
696 clear_bit(XMIT_BUSY, &ap->xmit_flags);
697 /* any more work to do? if not, exit the loop */
698 if (!(test_bit(XMIT_WAKEUP, &ap->xmit_flags) ||
699 (!tty_stuffed && ap->tpkt)))
701 /* more work to do, see if we can do it now */
702 if (test_and_set_bit(XMIT_BUSY, &ap->xmit_flags))
705 spin_unlock_bh(&ap->xmit_lock);
709 clear_bit(XMIT_BUSY, &ap->xmit_flags);
713 clear_bit(XMIT_FULL, &ap->xmit_flags);
717 spin_unlock_bh(&ap->xmit_lock);
722 * Flush output from our internal buffers.
723 * Called for the TCFLSH ioctl. Can be entered in parallel
724 * but this is covered by the xmit_lock.
727 ppp_async_flush_output(struct asyncppp *ap)
731 spin_lock_bh(&ap->xmit_lock);
733 if (ap->tpkt != NULL) {
736 clear_bit(XMIT_FULL, &ap->xmit_flags);
739 spin_unlock_bh(&ap->xmit_lock);
741 ppp_output_wakeup(&ap->chan);
745 * Receive-side routines.
748 /* see how many ordinary chars there are at the start of buf */
750 scan_ordinary(struct asyncppp *ap, const unsigned char *buf, int count)
754 for (i = 0; i < count; ++i) {
756 if (c == PPP_ESCAPE || c == PPP_FLAG ||
757 (c < 0x20 && (ap->raccm & (1 << c)) != 0))
763 /* called when a flag is seen - do end-of-packet processing */
765 process_input_packet(struct asyncppp *ap)
769 unsigned int len, fcs;
772 if (ap->state & (SC_TOSS | SC_ESCAPE))
776 return; /* 0-length packet */
782 goto err; /* too short */
784 for (; len > 0; --len)
785 fcs = PPP_FCS(fcs, *p++);
786 if (fcs != PPP_GOODFCS)
787 goto err; /* bad FCS */
788 skb_trim(skb, skb->len - 2);
790 /* check for address/control and protocol compression */
792 if (p[0] == PPP_ALLSTATIONS) {
793 /* chop off address/control */
794 if (p[1] != PPP_UI || skb->len < 3)
796 p = skb_pull(skb, 2);
799 /* If protocol field is not compressed, it can be LCP packet */
800 if (!(p[0] & 0x01)) {
805 proto = (p[0] << 8) + p[1];
806 if (proto == PPP_LCP)
807 async_lcp_peek(ap, p, skb->len, 1);
810 /* queue the frame to be processed */
811 skb->cb[0] = ap->state;
812 skb_queue_tail(&ap->rqueue, skb);
818 /* frame had an error, remember that, reset SC_TOSS & SC_ESCAPE */
819 ap->state = SC_PREV_ERROR;
821 /* make skb appear as freshly allocated */
823 skb_reserve(skb, - skb_headroom(skb));
827 /* Called when the tty driver has data for us. Runs parallel with the
828 other ldisc functions but will not be re-entered */
831 ppp_async_input(struct asyncppp *ap, const unsigned char *buf,
832 char *flags, int count)
835 int c, i, j, n, s, f;
838 /* update bits used for 8-bit cleanness detection */
839 if (~ap->rbits & SC_RCV_BITS) {
841 for (i = 0; i < count; ++i) {
843 if (flags && flags[i] != 0)
845 s |= (c & 0x80)? SC_RCV_B7_1: SC_RCV_B7_0;
846 c = ((c >> 4) ^ c) & 0xf;
847 s |= (0x6996 & (1 << c))? SC_RCV_ODDP: SC_RCV_EVNP;
853 /* scan through and see how many chars we can do in bulk */
854 if ((ap->state & SC_ESCAPE) && buf[0] == PPP_ESCAPE)
857 n = scan_ordinary(ap, buf, count);
860 if (flags && (ap->state & SC_TOSS) == 0) {
861 /* check the flags to see if any char had an error */
862 for (j = 0; j < n; ++j)
863 if ((f = flags[j]) != 0)
868 ap->state |= SC_TOSS;
870 } else if (n > 0 && (ap->state & SC_TOSS) == 0) {
871 /* stuff the chars in the skb */
874 skb = dev_alloc_skb(ap->mru + PPP_HDRLEN + 2);
880 /* Try to get the payload 4-byte aligned.
881 * This should match the
882 * PPP_ALLSTATIONS/PPP_UI/compressed tests in
883 * process_input_packet, but we do not have
884 * enough chars here to test buf[1] and buf[2].
886 if (buf[0] != PPP_ALLSTATIONS)
887 skb_reserve(skb, 2 + (buf[0] & 1));
889 if (n > skb_tailroom(skb)) {
890 /* packet overflowed MRU */
891 ap->state |= SC_TOSS;
893 sp = skb_put_data(skb, buf, n);
894 if (ap->state & SC_ESCAPE) {
896 ap->state &= ~SC_ESCAPE;
905 if (flags != NULL && flags[n] != 0) {
906 ap->state |= SC_TOSS;
907 } else if (c == PPP_FLAG) {
908 process_input_packet(ap);
909 } else if (c == PPP_ESCAPE) {
910 ap->state |= SC_ESCAPE;
911 } else if (I_IXON(ap->tty)) {
912 if (c == START_CHAR(ap->tty))
914 else if (c == STOP_CHAR(ap->tty))
917 /* otherwise it's a char in the recv ACCM */
928 printk(KERN_ERR "PPPasync: no memory (input pkt)\n");
929 ap->state |= SC_TOSS;
933 * We look at LCP frames going past so that we can notice
934 * and react to the LCP configure-ack from the peer.
935 * In the situation where the peer has been sent a configure-ack
936 * already, LCP is up once it has sent its configure-ack
937 * so the immediately following packet can be sent with the
938 * configured LCP options. This allows us to process the following
939 * packet correctly without pppd needing to respond quickly.
941 * We only respond to the received configure-ack if we have just
942 * sent a configure-request, and the configure-ack contains the
943 * same data (this is checked using a 16-bit crc of the data).
945 #define CONFREQ 1 /* LCP code field values */
947 #define LCP_MRU 1 /* LCP option numbers */
948 #define LCP_ASYNCMAP 2
950 static void async_lcp_peek(struct asyncppp *ap, unsigned char *data,
951 int len, int inbound)
953 int dlen, fcs, i, code;
956 data += 2; /* skip protocol bytes */
958 if (len < 4) /* 4 = code, ID, length */
961 if (code != CONFACK && code != CONFREQ)
963 dlen = get_unaligned_be16(data + 2);
965 return; /* packet got truncated or length is bogus */
967 if (code == (inbound? CONFACK: CONFREQ)) {
969 * sent confreq or received confack:
970 * calculate the crc of the data from the ID field on.
973 for (i = 1; i < dlen; ++i)
974 fcs = PPP_FCS(fcs, data[i]);
977 /* outbound confreq - remember the crc for later */
982 /* received confack, check the crc */
988 return; /* not interested in received confreq */
990 /* process the options in the confack */
993 /* data[0] is code, data[1] is length */
994 while (dlen >= 2 && dlen >= data[1] && data[1] >= 2) {
997 val = get_unaligned_be16(data + 2);
1004 val = get_unaligned_be32(data + 2);
1016 static void __exit ppp_async_cleanup(void)
1018 if (tty_unregister_ldisc(N_PPP) != 0)
1019 printk(KERN_ERR "failed to unregister PPP line discipline\n");
1022 module_init(ppp_async_init);
1023 module_exit(ppp_async_cleanup);