VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / net / ppp_async.c
1 /*
2  * PPP async serial channel driver for Linux.
3  *
4  * Copyright 1999 Paul Mackerras.
5  *
6  *  This program is free software; you can redistribute it and/or
7  *  modify it under the terms of the GNU General Public License
8  *  as published by the Free Software Foundation; either version
9  *  2 of the License, or (at your option) any later version.
10  *
11  * This driver provides the encapsulation and framing for sending
12  * and receiving PPP frames over async serial lines.  It relies on
13  * the generic PPP layer to give it frames to send and to process
14  * received frames.  It implements the PPP line discipline.
15  *
16  * Part of the code in this driver was inspired by the old async-only
17  * PPP driver, written by Michael Callahan and Al Longyear, and
18  * subsequently hacked by Paul Mackerras.
19  */
20
21 #include <linux/module.h>
22 #include <linux/kernel.h>
23 #include <linux/skbuff.h>
24 #include <linux/tty.h>
25 #include <linux/netdevice.h>
26 #include <linux/poll.h>
27 #include <linux/crc-ccitt.h>
28 #include <linux/ppp_defs.h>
29 #include <linux/if_ppp.h>
30 #include <linux/ppp_channel.h>
31 #include <linux/spinlock.h>
32 #include <linux/init.h>
33 #include <asm/uaccess.h>
34
35 #define PPP_VERSION     "2.4.2"
36
37 #define OBUFSIZE        256
38
39 /* Structure for storing local state. */
40 struct asyncppp {
41         struct tty_struct *tty;
42         unsigned int    flags;
43         unsigned int    state;
44         unsigned int    rbits;
45         int             mru;
46         spinlock_t      xmit_lock;
47         spinlock_t      recv_lock;
48         unsigned long   xmit_flags;
49         u32             xaccm[8];
50         u32             raccm;
51         unsigned int    bytes_sent;
52         unsigned int    bytes_rcvd;
53
54         struct sk_buff  *tpkt;
55         int             tpkt_pos;
56         u16             tfcs;
57         unsigned char   *optr;
58         unsigned char   *olim;
59         unsigned long   last_xmit;
60
61         struct sk_buff  *rpkt;
62         int             lcp_fcs;
63         struct sk_buff_head rqueue;
64
65         struct tasklet_struct tsk;
66
67         atomic_t        refcnt;
68         struct semaphore dead_sem;
69         struct ppp_channel chan;        /* interface to generic ppp layer */
70         unsigned char   obuf[OBUFSIZE];
71 };
72
73 /* Bit numbers in xmit_flags */
74 #define XMIT_WAKEUP     0
75 #define XMIT_FULL       1
76 #define XMIT_BUSY       2
77
78 /* State bits */
79 #define SC_TOSS         1
80 #define SC_ESCAPE       2
81 #define SC_PREV_ERROR   4
82
83 /* Bits in rbits */
84 #define SC_RCV_BITS     (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP)
85
86 static int flag_time = HZ;
87 MODULE_PARM(flag_time, "i");
88 MODULE_PARM_DESC(flag_time, "ppp_async: interval between flagged packets (in clock ticks)");
89 MODULE_LICENSE("GPL");
90 MODULE_ALIAS_LDISC(N_PPP);
91
92 /*
93  * Prototypes.
94  */
95 static int ppp_async_encode(struct asyncppp *ap);
96 static int ppp_async_send(struct ppp_channel *chan, struct sk_buff *skb);
97 static int ppp_async_push(struct asyncppp *ap);
98 static void ppp_async_flush_output(struct asyncppp *ap);
99 static void ppp_async_input(struct asyncppp *ap, const unsigned char *buf,
100                             char *flags, int count);
101 static int ppp_async_ioctl(struct ppp_channel *chan, unsigned int cmd,
102                            unsigned long arg);
103 static void ppp_async_process(unsigned long arg);
104
105 static void async_lcp_peek(struct asyncppp *ap, unsigned char *data,
106                            int len, int inbound);
107
108 static struct ppp_channel_ops async_ops = {
109         ppp_async_send,
110         ppp_async_ioctl
111 };
112
113 /*
114  * Routines implementing the PPP line discipline.
115  */
116
117 /*
118  * We have a potential race on dereferencing tty->disc_data,
119  * because the tty layer provides no locking at all - thus one
120  * cpu could be running ppp_asynctty_receive while another
121  * calls ppp_asynctty_close, which zeroes tty->disc_data and
122  * frees the memory that ppp_asynctty_receive is using.  The best
123  * way to fix this is to use a rwlock in the tty struct, but for now
124  * we use a single global rwlock for all ttys in ppp line discipline.
125  */
126 static rwlock_t disc_data_lock = RW_LOCK_UNLOCKED;
127
128 static struct asyncppp *ap_get(struct tty_struct *tty)
129 {
130         struct asyncppp *ap;
131
132         read_lock(&disc_data_lock);
133         ap = tty->disc_data;
134         if (ap != NULL)
135                 atomic_inc(&ap->refcnt);
136         read_unlock(&disc_data_lock);
137         return ap;
138 }
139
140 static void ap_put(struct asyncppp *ap)
141 {
142         if (atomic_dec_and_test(&ap->refcnt))
143                 up(&ap->dead_sem);
144 }
145
146 /*
147  * Called when a tty is put into PPP line discipline.
148  */
149 static int
150 ppp_asynctty_open(struct tty_struct *tty)
151 {
152         struct asyncppp *ap;
153         int err;
154
155         err = -ENOMEM;
156         ap = kmalloc(sizeof(*ap), GFP_KERNEL);
157         if (ap == 0)
158                 goto out;
159
160         /* initialize the asyncppp structure */
161         memset(ap, 0, sizeof(*ap));
162         ap->tty = tty;
163         ap->mru = PPP_MRU;
164         spin_lock_init(&ap->xmit_lock);
165         spin_lock_init(&ap->recv_lock);
166         ap->xaccm[0] = ~0U;
167         ap->xaccm[3] = 0x60000000U;
168         ap->raccm = ~0U;
169         ap->optr = ap->obuf;
170         ap->olim = ap->obuf;
171         ap->lcp_fcs = -1;
172
173         skb_queue_head_init(&ap->rqueue);
174         tasklet_init(&ap->tsk, ppp_async_process, (unsigned long) ap);
175
176         atomic_set(&ap->refcnt, 1);
177         init_MUTEX_LOCKED(&ap->dead_sem);
178
179         ap->chan.private = ap;
180         ap->chan.ops = &async_ops;
181         ap->chan.mtu = PPP_MRU;
182         err = ppp_register_channel(&ap->chan);
183         if (err)
184                 goto out_free;
185
186         tty->disc_data = ap;
187
188         return 0;
189
190  out_free:
191         kfree(ap);
192  out:
193         return err;
194 }
195
196 /*
197  * Called when the tty is put into another line discipline
198  * or it hangs up.  We have to wait for any cpu currently
199  * executing in any of the other ppp_asynctty_* routines to
200  * finish before we can call ppp_unregister_channel and free
201  * the asyncppp struct.  This routine must be called from
202  * process context, not interrupt or softirq context.
203  */
204 static void
205 ppp_asynctty_close(struct tty_struct *tty)
206 {
207         struct asyncppp *ap;
208
209         write_lock_irq(&disc_data_lock);
210         ap = tty->disc_data;
211         tty->disc_data = NULL;
212         write_unlock_irq(&disc_data_lock);
213         if (ap == 0)
214                 return;
215
216         /*
217          * We have now ensured that nobody can start using ap from now
218          * on, but we have to wait for all existing users to finish.
219          * Note that ppp_unregister_channel ensures that no calls to
220          * our channel ops (i.e. ppp_async_send/ioctl) are in progress
221          * by the time it returns.
222          */
223         if (!atomic_dec_and_test(&ap->refcnt))
224                 down(&ap->dead_sem);
225         tasklet_kill(&ap->tsk);
226
227         ppp_unregister_channel(&ap->chan);
228         if (ap->rpkt != 0)
229                 kfree_skb(ap->rpkt);
230         skb_queue_purge(&ap->rqueue);
231         if (ap->tpkt != 0)
232                 kfree_skb(ap->tpkt);
233         kfree(ap);
234 }
235
236 /*
237  * Read does nothing - no data is ever available this way.
238  * Pppd reads and writes packets via /dev/ppp instead.
239  */
240 static ssize_t
241 ppp_asynctty_read(struct tty_struct *tty, struct file *file,
242                   unsigned char __user *buf, size_t count)
243 {
244         return -EAGAIN;
245 }
246
247 /*
248  * Write on the tty does nothing, the packets all come in
249  * from the ppp generic stuff.
250  */
251 static ssize_t
252 ppp_asynctty_write(struct tty_struct *tty, struct file *file,
253                    const unsigned char __user *buf, size_t count)
254 {
255         return -EAGAIN;
256 }
257
258 static int
259 ppp_asynctty_ioctl(struct tty_struct *tty, struct file *file,
260                    unsigned int cmd, unsigned long arg)
261 {
262         struct asyncppp *ap = ap_get(tty);
263         int err, val;
264         int __user *p = (int __user *)arg;
265
266         if (ap == 0)
267                 return -ENXIO;
268         err = -EFAULT;
269         switch (cmd) {
270         case PPPIOCGCHAN:
271                 err = -ENXIO;
272                 if (ap == 0)
273                         break;
274                 err = -EFAULT;
275                 if (put_user(ppp_channel_index(&ap->chan), p))
276                         break;
277                 err = 0;
278                 break;
279
280         case PPPIOCGUNIT:
281                 err = -ENXIO;
282                 if (ap == 0)
283                         break;
284                 err = -EFAULT;
285                 if (put_user(ppp_unit_number(&ap->chan), p))
286                         break;
287                 err = 0;
288                 break;
289
290         case TCGETS:
291         case TCGETA:
292                 err = n_tty_ioctl(tty, file, cmd, arg);
293                 break;
294
295         case TCFLSH:
296                 /* flush our buffers and the serial port's buffer */
297                 if (arg == TCIOFLUSH || arg == TCOFLUSH)
298                         ppp_async_flush_output(ap);
299                 err = n_tty_ioctl(tty, file, cmd, arg);
300                 break;
301
302         case FIONREAD:
303                 val = 0;
304                 if (put_user(val, p))
305                         break;
306                 err = 0;
307                 break;
308
309         default:
310                 err = -ENOIOCTLCMD;
311         }
312
313         ap_put(ap);
314         return err;
315 }
316
317 /* No kernel lock - fine */
318 static unsigned int
319 ppp_asynctty_poll(struct tty_struct *tty, struct file *file, poll_table *wait)
320 {
321         return 0;
322 }
323
324 static int
325 ppp_asynctty_room(struct tty_struct *tty)
326 {
327         return 65535;
328 }
329
330 /*
331  * This can now be called from hard interrupt level as well
332  * as soft interrupt level or mainline.
333  */
334 static void
335 ppp_asynctty_receive(struct tty_struct *tty, const unsigned char *buf,
336                   char *cflags, int count)
337 {
338         struct asyncppp *ap = ap_get(tty);
339         unsigned long flags;
340
341         if (ap == 0)
342                 return;
343         spin_lock_irqsave(&ap->recv_lock, flags);
344         ppp_async_input(ap, buf, cflags, count);
345         spin_unlock_irqrestore(&ap->recv_lock, flags);
346         if (skb_queue_len(&ap->rqueue))
347                 tasklet_schedule(&ap->tsk);
348         ap_put(ap);
349         if (test_and_clear_bit(TTY_THROTTLED, &tty->flags)
350             && tty->driver->unthrottle)
351                 tty->driver->unthrottle(tty);
352 }
353
354 static void
355 ppp_asynctty_wakeup(struct tty_struct *tty)
356 {
357         struct asyncppp *ap = ap_get(tty);
358
359         clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
360         if (ap == 0)
361                 return;
362         set_bit(XMIT_WAKEUP, &ap->xmit_flags);
363         tasklet_schedule(&ap->tsk);
364         ap_put(ap);
365 }
366
367
368 static struct tty_ldisc ppp_ldisc = {
369         .owner  = THIS_MODULE,
370         .magic  = TTY_LDISC_MAGIC,
371         .name   = "ppp",
372         .open   = ppp_asynctty_open,
373         .close  = ppp_asynctty_close,
374         .read   = ppp_asynctty_read,
375         .write  = ppp_asynctty_write,
376         .ioctl  = ppp_asynctty_ioctl,
377         .poll   = ppp_asynctty_poll,
378         .receive_room = ppp_asynctty_room,
379         .receive_buf = ppp_asynctty_receive,
380         .write_wakeup = ppp_asynctty_wakeup,
381 };
382
383 static int __init
384 ppp_async_init(void)
385 {
386         int err;
387
388         err = tty_register_ldisc(N_PPP, &ppp_ldisc);
389         if (err != 0)
390                 printk(KERN_ERR "PPP_async: error %d registering line disc.\n",
391                        err);
392         return err;
393 }
394
395 /*
396  * The following routines provide the PPP channel interface.
397  */
398 static int
399 ppp_async_ioctl(struct ppp_channel *chan, unsigned int cmd, unsigned long arg)
400 {
401         struct asyncppp *ap = chan->private;
402         void __user *argp = (void __user *)arg;
403         int __user *p = argp;
404         int err, val;
405         u32 accm[8];
406
407         err = -EFAULT;
408         switch (cmd) {
409         case PPPIOCGFLAGS:
410                 val = ap->flags | ap->rbits;
411                 if (put_user(val, p))
412                         break;
413                 err = 0;
414                 break;
415         case PPPIOCSFLAGS:
416                 if (get_user(val, p))
417                         break;
418                 ap->flags = val & ~SC_RCV_BITS;
419                 spin_lock_irq(&ap->recv_lock);
420                 ap->rbits = val & SC_RCV_BITS;
421                 spin_unlock_irq(&ap->recv_lock);
422                 err = 0;
423                 break;
424
425         case PPPIOCGASYNCMAP:
426                 if (put_user(ap->xaccm[0], (u32 __user *)argp))
427                         break;
428                 err = 0;
429                 break;
430         case PPPIOCSASYNCMAP:
431                 if (get_user(ap->xaccm[0], (u32 __user *)argp))
432                         break;
433                 err = 0;
434                 break;
435
436         case PPPIOCGRASYNCMAP:
437                 if (put_user(ap->raccm, (u32 __user *)argp))
438                         break;
439                 err = 0;
440                 break;
441         case PPPIOCSRASYNCMAP:
442                 if (get_user(ap->raccm, (u32 __user *)argp))
443                         break;
444                 err = 0;
445                 break;
446
447         case PPPIOCGXASYNCMAP:
448                 if (copy_to_user(argp, ap->xaccm, sizeof(ap->xaccm)))
449                         break;
450                 err = 0;
451                 break;
452         case PPPIOCSXASYNCMAP:
453                 if (copy_from_user(accm, argp, sizeof(accm)))
454                         break;
455                 accm[2] &= ~0x40000000U;        /* can't escape 0x5e */
456                 accm[3] |= 0x60000000U;         /* must escape 0x7d, 0x7e */
457                 memcpy(ap->xaccm, accm, sizeof(ap->xaccm));
458                 err = 0;
459                 break;
460
461         case PPPIOCGMRU:
462                 if (put_user(ap->mru, p))
463                         break;
464                 err = 0;
465                 break;
466         case PPPIOCSMRU:
467                 if (get_user(val, p))
468                         break;
469                 if (val < PPP_MRU)
470                         val = PPP_MRU;
471                 ap->mru = val;
472                 err = 0;
473                 break;
474
475         default:
476                 err = -ENOTTY;
477         }
478
479         return err;
480 }
481
482 /*
483  * This is called at softirq level to deliver received packets
484  * to the ppp_generic code, and to tell the ppp_generic code
485  * if we can accept more output now.
486  */
487 static void ppp_async_process(unsigned long arg)
488 {
489         struct asyncppp *ap = (struct asyncppp *) arg;
490         struct sk_buff *skb;
491
492         /* process received packets */
493         while ((skb = skb_dequeue(&ap->rqueue)) != NULL) {
494                 if (skb->cb[0])
495                         ppp_input_error(&ap->chan, 0);
496                 ppp_input(&ap->chan, skb);
497         }
498
499         /* try to push more stuff out */
500         if (test_bit(XMIT_WAKEUP, &ap->xmit_flags) && ppp_async_push(ap))
501                 ppp_output_wakeup(&ap->chan);
502 }
503
504 /*
505  * Procedures for encapsulation and framing.
506  */
507
508 /*
509  * Procedure to encode the data for async serial transmission.
510  * Does octet stuffing (escaping), puts the address/control bytes
511  * on if A/C compression is disabled, and does protocol compression.
512  * Assumes ap->tpkt != 0 on entry.
513  * Returns 1 if we finished the current frame, 0 otherwise.
514  */
515
516 #define PUT_BYTE(ap, buf, c, islcp)     do {            \
517         if ((islcp && c < 0x20) || (ap->xaccm[c >> 5] & (1 << (c & 0x1f)))) {\
518                 *buf++ = PPP_ESCAPE;                    \
519                 *buf++ = c ^ 0x20;                      \
520         } else                                          \
521                 *buf++ = c;                             \
522 } while (0)
523
524 static int
525 ppp_async_encode(struct asyncppp *ap)
526 {
527         int fcs, i, count, c, proto;
528         unsigned char *buf, *buflim;
529         unsigned char *data;
530         int islcp;
531
532         buf = ap->obuf;
533         ap->olim = buf;
534         ap->optr = buf;
535         i = ap->tpkt_pos;
536         data = ap->tpkt->data;
537         count = ap->tpkt->len;
538         fcs = ap->tfcs;
539         proto = (data[0] << 8) + data[1];
540
541         /*
542          * LCP packets with code values between 1 (configure-reqest)
543          * and 7 (code-reject) must be sent as though no options
544          * had been negotiated.
545          */
546         islcp = proto == PPP_LCP && 1 <= data[2] && data[2] <= 7;
547
548         if (i == 0) {
549                 if (islcp)
550                         async_lcp_peek(ap, data, count, 0);
551
552                 /*
553                  * Start of a new packet - insert the leading FLAG
554                  * character if necessary.
555                  */
556                 if (islcp || flag_time == 0
557                     || jiffies - ap->last_xmit >= flag_time)
558                         *buf++ = PPP_FLAG;
559                 ap->last_xmit = jiffies;
560                 fcs = PPP_INITFCS;
561
562                 /*
563                  * Put in the address/control bytes if necessary
564                  */
565                 if ((ap->flags & SC_COMP_AC) == 0 || islcp) {
566                         PUT_BYTE(ap, buf, 0xff, islcp);
567                         fcs = PPP_FCS(fcs, 0xff);
568                         PUT_BYTE(ap, buf, 0x03, islcp);
569                         fcs = PPP_FCS(fcs, 0x03);
570                 }
571         }
572
573         /*
574          * Once we put in the last byte, we need to put in the FCS
575          * and closing flag, so make sure there is at least 7 bytes
576          * of free space in the output buffer.
577          */
578         buflim = ap->obuf + OBUFSIZE - 6;
579         while (i < count && buf < buflim) {
580                 c = data[i++];
581                 if (i == 1 && c == 0 && (ap->flags & SC_COMP_PROT))
582                         continue;       /* compress protocol field */
583                 fcs = PPP_FCS(fcs, c);
584                 PUT_BYTE(ap, buf, c, islcp);
585         }
586
587         if (i < count) {
588                 /*
589                  * Remember where we are up to in this packet.
590                  */
591                 ap->olim = buf;
592                 ap->tpkt_pos = i;
593                 ap->tfcs = fcs;
594                 return 0;
595         }
596
597         /*
598          * We have finished the packet.  Add the FCS and flag.
599          */
600         fcs = ~fcs;
601         c = fcs & 0xff;
602         PUT_BYTE(ap, buf, c, islcp);
603         c = (fcs >> 8) & 0xff;
604         PUT_BYTE(ap, buf, c, islcp);
605         *buf++ = PPP_FLAG;
606         ap->olim = buf;
607
608         kfree_skb(ap->tpkt);
609         ap->tpkt = NULL;
610         return 1;
611 }
612
613 /*
614  * Transmit-side routines.
615  */
616
617 /*
618  * Send a packet to the peer over an async tty line.
619  * Returns 1 iff the packet was accepted.
620  * If the packet was not accepted, we will call ppp_output_wakeup
621  * at some later time.
622  */
623 static int
624 ppp_async_send(struct ppp_channel *chan, struct sk_buff *skb)
625 {
626         struct asyncppp *ap = chan->private;
627
628         ppp_async_push(ap);
629
630         if (test_and_set_bit(XMIT_FULL, &ap->xmit_flags))
631                 return 0;       /* already full */
632         ap->tpkt = skb;
633         ap->tpkt_pos = 0;
634
635         ppp_async_push(ap);
636         return 1;
637 }
638
639 /*
640  * Push as much data as possible out to the tty.
641  */
642 static int
643 ppp_async_push(struct asyncppp *ap)
644 {
645         int avail, sent, done = 0;
646         struct tty_struct *tty = ap->tty;
647         int tty_stuffed = 0;
648
649         /*
650          * We can get called recursively here if the tty write
651          * function calls our wakeup function.  This can happen
652          * for example on a pty with both the master and slave
653          * set to PPP line discipline.
654          * We use the XMIT_BUSY bit to detect this and get out,
655          * leaving the XMIT_WAKEUP bit set to tell the other
656          * instance that it may now be able to write more now.
657          */
658         if (test_and_set_bit(XMIT_BUSY, &ap->xmit_flags))
659                 return 0;
660         spin_lock_bh(&ap->xmit_lock);
661         for (;;) {
662                 if (test_and_clear_bit(XMIT_WAKEUP, &ap->xmit_flags))
663                         tty_stuffed = 0;
664                 if (!tty_stuffed && ap->optr < ap->olim) {
665                         avail = ap->olim - ap->optr;
666                         set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
667                         sent = tty->driver->write(tty, 0, ap->optr, avail);
668                         if (sent < 0)
669                                 goto flush;     /* error, e.g. loss of CD */
670                         ap->optr += sent;
671                         if (sent < avail)
672                                 tty_stuffed = 1;
673                         continue;
674                 }
675                 if (ap->optr >= ap->olim && ap->tpkt != 0) {
676                         if (ppp_async_encode(ap)) {
677                                 /* finished processing ap->tpkt */
678                                 clear_bit(XMIT_FULL, &ap->xmit_flags);
679                                 done = 1;
680                         }
681                         continue;
682                 }
683                 /*
684                  * We haven't made any progress this time around.
685                  * Clear XMIT_BUSY to let other callers in, but
686                  * after doing so we have to check if anyone set
687                  * XMIT_WAKEUP since we last checked it.  If they
688                  * did, we should try again to set XMIT_BUSY and go
689                  * around again in case XMIT_BUSY was still set when
690                  * the other caller tried.
691                  */
692                 clear_bit(XMIT_BUSY, &ap->xmit_flags);
693                 /* any more work to do? if not, exit the loop */
694                 if (!(test_bit(XMIT_WAKEUP, &ap->xmit_flags)
695                       || (!tty_stuffed && ap->tpkt != 0)))
696                         break;
697                 /* more work to do, see if we can do it now */
698                 if (test_and_set_bit(XMIT_BUSY, &ap->xmit_flags))
699                         break;
700         }
701         spin_unlock_bh(&ap->xmit_lock);
702         return done;
703
704 flush:
705         clear_bit(XMIT_BUSY, &ap->xmit_flags);
706         if (ap->tpkt != 0) {
707                 kfree_skb(ap->tpkt);
708                 ap->tpkt = NULL;
709                 clear_bit(XMIT_FULL, &ap->xmit_flags);
710                 done = 1;
711         }
712         ap->optr = ap->olim;
713         spin_unlock_bh(&ap->xmit_lock);
714         return done;
715 }
716
717 /*
718  * Flush output from our internal buffers.
719  * Called for the TCFLSH ioctl.
720  */
721 static void
722 ppp_async_flush_output(struct asyncppp *ap)
723 {
724         int done = 0;
725
726         spin_lock_bh(&ap->xmit_lock);
727         ap->optr = ap->olim;
728         if (ap->tpkt != NULL) {
729                 kfree_skb(ap->tpkt);
730                 ap->tpkt = NULL;
731                 clear_bit(XMIT_FULL, &ap->xmit_flags);
732                 done = 1;
733         }
734         spin_unlock_bh(&ap->xmit_lock);
735         if (done)
736                 ppp_output_wakeup(&ap->chan);
737 }
738
739 /*
740  * Receive-side routines.
741  */
742
743 /* see how many ordinary chars there are at the start of buf */
744 static inline int
745 scan_ordinary(struct asyncppp *ap, const unsigned char *buf, int count)
746 {
747         int i, c;
748
749         for (i = 0; i < count; ++i) {
750                 c = buf[i];
751                 if (c == PPP_ESCAPE || c == PPP_FLAG
752                     || (c < 0x20 && (ap->raccm & (1 << c)) != 0))
753                         break;
754         }
755         return i;
756 }
757
758 /* called when a flag is seen - do end-of-packet processing */
759 static void
760 process_input_packet(struct asyncppp *ap)
761 {
762         struct sk_buff *skb;
763         unsigned char *p;
764         unsigned int len, fcs, proto;
765
766         skb = ap->rpkt;
767         if (ap->state & (SC_TOSS | SC_ESCAPE))
768                 goto err;
769
770         if (skb == NULL)
771                 return;         /* 0-length packet */
772
773         /* check the FCS */
774         p = skb->data;
775         len = skb->len;
776         if (len < 3)
777                 goto err;       /* too short */
778         fcs = PPP_INITFCS;
779         for (; len > 0; --len)
780                 fcs = PPP_FCS(fcs, *p++);
781         if (fcs != PPP_GOODFCS)
782                 goto err;       /* bad FCS */
783         skb_trim(skb, skb->len - 2);
784
785         /* check for address/control and protocol compression */
786         p = skb->data;
787         if (p[0] == PPP_ALLSTATIONS && p[1] == PPP_UI) {
788                 /* chop off address/control */
789                 if (skb->len < 3)
790                         goto err;
791                 p = skb_pull(skb, 2);
792         }
793         proto = p[0];
794         if (proto & 1) {
795                 /* protocol is compressed */
796                 skb_push(skb, 1)[0] = 0;
797         } else {
798                 if (skb->len < 2)
799                         goto err;
800                 proto = (proto << 8) + p[1];
801                 if (proto == PPP_LCP)
802                         async_lcp_peek(ap, p, skb->len, 1);
803         }
804
805         /* queue the frame to be processed */
806         skb->cb[0] = ap->state;
807         skb_queue_tail(&ap->rqueue, skb);
808         ap->rpkt = NULL;
809         ap->state = 0;
810         return;
811
812  err:
813         /* frame had an error, remember that, reset SC_TOSS & SC_ESCAPE */
814         ap->state = SC_PREV_ERROR;
815         if (skb)
816                 skb_trim(skb, 0);
817 }
818
819 /* called when the tty driver has data for us. */
820 static void
821 ppp_async_input(struct asyncppp *ap, const unsigned char *buf,
822                 char *flags, int count)
823 {
824         struct sk_buff *skb;
825         int c, i, j, n, s, f;
826         unsigned char *sp;
827
828         /* update bits used for 8-bit cleanness detection */
829         if (~ap->rbits & SC_RCV_BITS) {
830                 s = 0;
831                 for (i = 0; i < count; ++i) {
832                         c = buf[i];
833                         if (flags != 0 && flags[i] != 0)
834                                 continue;
835                         s |= (c & 0x80)? SC_RCV_B7_1: SC_RCV_B7_0;
836                         c = ((c >> 4) ^ c) & 0xf;
837                         s |= (0x6996 & (1 << c))? SC_RCV_ODDP: SC_RCV_EVNP;
838                 }
839                 ap->rbits |= s;
840         }
841
842         while (count > 0) {
843                 /* scan through and see how many chars we can do in bulk */
844                 if ((ap->state & SC_ESCAPE) && buf[0] == PPP_ESCAPE)
845                         n = 1;
846                 else
847                         n = scan_ordinary(ap, buf, count);
848
849                 f = 0;
850                 if (flags != 0 && (ap->state & SC_TOSS) == 0) {
851                         /* check the flags to see if any char had an error */
852                         for (j = 0; j < n; ++j)
853                                 if ((f = flags[j]) != 0)
854                                         break;
855                 }
856                 if (f != 0) {
857                         /* start tossing */
858                         ap->state |= SC_TOSS;
859
860                 } else if (n > 0 && (ap->state & SC_TOSS) == 0) {
861                         /* stuff the chars in the skb */
862                         skb = ap->rpkt;
863                         if (skb == 0) {
864                                 skb = dev_alloc_skb(ap->mru + PPP_HDRLEN + 2);
865                                 if (skb == 0)
866                                         goto nomem;
867                                 /* Try to get the payload 4-byte aligned */
868                                 if (buf[0] != PPP_ALLSTATIONS)
869                                         skb_reserve(skb, 2 + (buf[0] & 1));
870                                 ap->rpkt = skb;
871                         }
872                         if (n > skb_tailroom(skb)) {
873                                 /* packet overflowed MRU */
874                                 ap->state |= SC_TOSS;
875                         } else {
876                                 sp = skb_put(skb, n);
877                                 memcpy(sp, buf, n);
878                                 if (ap->state & SC_ESCAPE) {
879                                         sp[0] ^= 0x20;
880                                         ap->state &= ~SC_ESCAPE;
881                                 }
882                         }
883                 }
884
885                 if (n >= count)
886                         break;
887
888                 c = buf[n];
889                 if (c == PPP_FLAG) {
890                         process_input_packet(ap);
891                 } else if (c == PPP_ESCAPE) {
892                         ap->state |= SC_ESCAPE;
893                 } else if (I_IXON(ap->tty)) {
894                         if (c == START_CHAR(ap->tty))
895                                 start_tty(ap->tty);
896                         else if (c == STOP_CHAR(ap->tty))
897                                 stop_tty(ap->tty);
898                 }
899                 /* otherwise it's a char in the recv ACCM */
900                 ++n;
901
902                 buf += n;
903                 if (flags != 0)
904                         flags += n;
905                 count -= n;
906         }
907         return;
908
909  nomem:
910         printk(KERN_ERR "PPPasync: no memory (input pkt)\n");
911         ap->state |= SC_TOSS;
912 }
913
914 /*
915  * We look at LCP frames going past so that we can notice
916  * and react to the LCP configure-ack from the peer.
917  * In the situation where the peer has been sent a configure-ack
918  * already, LCP is up once it has sent its configure-ack
919  * so the immediately following packet can be sent with the
920  * configured LCP options.  This allows us to process the following
921  * packet correctly without pppd needing to respond quickly.
922  *
923  * We only respond to the received configure-ack if we have just
924  * sent a configure-request, and the configure-ack contains the
925  * same data (this is checked using a 16-bit crc of the data).
926  */
927 #define CONFREQ         1       /* LCP code field values */
928 #define CONFACK         2
929 #define LCP_MRU         1       /* LCP option numbers */
930 #define LCP_ASYNCMAP    2
931
932 static void async_lcp_peek(struct asyncppp *ap, unsigned char *data,
933                            int len, int inbound)
934 {
935         int dlen, fcs, i, code;
936         u32 val;
937
938         data += 2;              /* skip protocol bytes */
939         len -= 2;
940         if (len < 4)            /* 4 = code, ID, length */
941                 return;
942         code = data[0];
943         if (code != CONFACK && code != CONFREQ)
944                 return;
945         dlen = (data[2] << 8) + data[3];
946         if (len < dlen)
947                 return;         /* packet got truncated or length is bogus */
948
949         if (code == (inbound? CONFACK: CONFREQ)) {
950                 /*
951                  * sent confreq or received confack:
952                  * calculate the crc of the data from the ID field on.
953                  */
954                 fcs = PPP_INITFCS;
955                 for (i = 1; i < dlen; ++i)
956                         fcs = PPP_FCS(fcs, data[i]);
957
958                 if (!inbound) {
959                         /* outbound confreq - remember the crc for later */
960                         ap->lcp_fcs = fcs;
961                         return;
962                 }
963
964                 /* received confack, check the crc */
965                 fcs ^= ap->lcp_fcs;
966                 ap->lcp_fcs = -1;
967                 if (fcs != 0)
968                         return;
969         } else if (inbound)
970                 return; /* not interested in received confreq */
971
972         /* process the options in the confack */
973         data += 4;
974         dlen -= 4;
975         /* data[0] is code, data[1] is length */
976         while (dlen >= 2 && dlen >= data[1]) {
977                 switch (data[0]) {
978                 case LCP_MRU:
979                         val = (data[2] << 8) + data[3];
980                         if (inbound)
981                                 ap->mru = val;
982                         else
983                                 ap->chan.mtu = val;
984                         break;
985                 case LCP_ASYNCMAP:
986                         val = (data[2] << 24) + (data[3] << 16)
987                                 + (data[4] << 8) + data[5];
988                         if (inbound)
989                                 ap->raccm = val;
990                         else
991                                 ap->xaccm[0] = val;
992                         break;
993                 }
994                 dlen -= data[1];
995                 data += data[1];
996         }
997 }
998
999 static void __exit ppp_async_cleanup(void)
1000 {
1001         if (tty_register_ldisc(N_PPP, NULL) != 0)
1002                 printk(KERN_ERR "failed to unregister PPP line discipline\n");
1003 }
1004
1005 module_init(ppp_async_init);
1006 module_exit(ppp_async_cleanup);