Rename malloc->kmalloc, free->kfree, and realloc->krealloc. Pass 1
[dragonfly.git] / sys / net / ppp / if_ppp.c
1 /*
2  * if_ppp.c - Point-to-Point Protocol (PPP) Asynchronous driver.
3  *
4  * Copyright (c) 1989 Carnegie Mellon University.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted
8  * provided that the above copyright notice and this paragraph are
9  * duplicated in all such forms and that any documentation,
10  * advertising materials, and other materials related to such
11  * distribution and use acknowledge that the software was developed
12  * by Carnegie Mellon University.  The name of the
13  * University may not be used to endorse or promote products derived
14  * from this software without specific prior written permission.
15  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18  *
19  * Drew D. Perkins
20  * Carnegie Mellon University
21  * 4910 Forbes Ave.
22  * Pittsburgh, PA 15213
23  * (412) 268-8576
24  * ddp@andrew.cmu.edu
25  *
26  * Based on:
27  *      @(#)if_sl.c     7.6.1.2 (Berkeley) 2/15/89
28  *
29  * Copyright (c) 1987 Regents of the University of California.
30  * All rights reserved.
31  *
32  * Redistribution and use in source and binary forms are permitted
33  * provided that the above copyright notice and this paragraph are
34  * duplicated in all such forms and that any documentation,
35  * advertising materials, and other materials related to such
36  * distribution and use acknowledge that the software was developed
37  * by the University of California, Berkeley.  The name of the
38  * University may not be used to endorse or promote products derived
39  * from this software without specific prior written permission.
40  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
41  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
42  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
43  *
44  * Serial Line interface
45  *
46  * Rick Adams
47  * Center for Seismic Studies
48  * 1300 N 17th Street, Suite 1450
49  * Arlington, Virginia 22209
50  * (703)276-7900
51  * rick@seismo.ARPA
52  * seismo!rick
53  *
54  * Pounded on heavily by Chris Torek (chris@mimsy.umd.edu, umcp-cs!chris).
55  * Converted to 4.3BSD Beta by Chris Torek.
56  * Other changes made at Berkeley, based in part on code by Kirk Smith.
57  *
58  * Converted to 4.3BSD+ 386BSD by Brad Parker (brad@cayman.com)
59  * Added VJ tcp header compression; more unified ioctls
60  *
61  * Extensively modified by Paul Mackerras (paulus@cs.anu.edu.au).
62  * Cleaned up a lot of the mbuf-related code to fix bugs that
63  * caused system crashes and packet corruption.  Changed pppstart
64  * so that it doesn't just give up with a collision if the whole
65  * packet doesn't fit in the output ring buffer.
66  *
67  * Added priority queueing for interactive IP packets, following
68  * the model of if_sl.c, plus hooks for bpf.
69  * Paul Mackerras (paulus@cs.anu.edu.au).
70  */
71
72 /* $FreeBSD: src/sys/net/if_ppp.c,v 1.67.2.4 2002/04/14 21:41:48 luigi Exp $ */
73 /* $DragonFly: src/sys/net/ppp/if_ppp.c,v 1.33 2006/09/05 00:55:47 dillon Exp $ */
74 /* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */
75 /* from NetBSD: if_ppp.c,v 1.15.2.2 1994/07/28 05:17:58 cgd Exp */
76
77 #include "use_ppp.h"
78
79 #include "opt_inet.h"
80 #include "opt_ipx.h"
81 #include "opt_ppp.h"
82
83 #ifdef INET
84 #define VJC
85 #endif
86 #define PPP_COMPRESS
87
88 #include <sys/param.h>
89 #include <sys/systm.h>
90 #include <sys/proc.h>
91 #include <sys/mbuf.h>
92 #include <sys/socket.h>
93 #include <sys/filio.h>
94 #include <sys/sockio.h>
95 #include <sys/kernel.h>
96 #include <sys/time.h>
97 #include <sys/malloc.h>
98
99 #include <sys/msgport2.h>
100
101 #include <net/if.h>
102 #include <net/if_types.h>
103 #include <net/ifq_var.h>
104 #include <net/netisr.h>
105 #include <net/bpf.h>
106
107 #ifdef INET
108 #include <netinet/in.h>
109 #include <netinet/in_systm.h>
110 #include <netinet/in_var.h>
111 #include <netinet/ip.h>
112 #endif
113
114 #ifdef IPX
115 #include <netproto/ipx/ipx.h>
116 #include <netproto/ipx/ipx_if.h>
117 #endif
118
119 #ifdef VJC
120 #include <net/slcompress.h>
121 #endif
122
123 #include "if_ppp.h"
124 #include "if_pppvar.h"
125
126 /* minimise diffs */
127 #ifndef splsoftnet
128 #define splsoftnet      splnet
129 #endif
130
131 #ifdef PPP_COMPRESS
132 #define PACKETPTR       struct mbuf *
133 #include <net/ppp_layer/ppp_comp.h>
134 #endif
135
136 struct ppp_softc ppp_softc[NPPP];
137
138 /* XXX layering violation */
139 extern void     pppasyncattach (void *);
140
141 static void     pppattach (void *);
142 PSEUDO_SET(pppattach, if_ppp);
143
144 static int      pppsioctl (struct ifnet *ifp, u_long cmd, caddr_t data,
145                            struct ucred *);
146
147 static void     ppp_requeue (struct ppp_softc *);
148 static void     ppp_ccp (struct ppp_softc *, struct mbuf *m, int rcvd);
149 static void     ppp_ccp_closed (struct ppp_softc *);
150 static void     ppp_inproc (struct ppp_softc *, struct mbuf *);
151 static void     pppdumpm (struct mbuf *m0);
152 static void     ppp_ifstart(struct ifnet *ifp);
153
154 /*
155  * Some useful mbuf macros not in mbuf.h.
156  */
157 #define M_IS_CLUSTER(m) ((m)->m_flags & M_EXT)
158
159 #define M_DATASTART(m)  \
160         (M_IS_CLUSTER(m) ? (m)->m_ext.ext_buf : \
161             (m)->m_flags & M_PKTHDR ? (m)->m_pktdat : (m)->m_dat)
162
163 #define M_DATASIZE(m)   \
164         (M_IS_CLUSTER(m) ? (m)->m_ext.ext_size : \
165             (m)->m_flags & M_PKTHDR ? MHLEN: MLEN)
166
167 /*
168  * We steal two bits in the mbuf m_flags, to mark high-priority packets
169  * for output, and received packets following lost/corrupted packets.
170  */
171 #define M_HIGHPRI       M_PROTO2        /* output packet for sc_fastq */
172 #define M_ERRMARK       M_PROTO3        /* steal a bit in mbuf m_flags */
173
174
175 #ifdef PPP_COMPRESS
176 /*
177  * List of compressors we know about.
178  * We leave some space so maybe we can modload compressors.
179  */
180
181 extern struct compressor ppp_bsd_compress;
182 extern struct compressor ppp_deflate, ppp_deflate_draft;
183
184 static struct compressor *ppp_compressors[8] = {
185 #if DO_BSD_COMPRESS && defined(PPP_BSDCOMP)
186     &ppp_bsd_compress,
187 #endif
188 #if DO_DEFLATE && defined(PPP_DEFLATE)
189     &ppp_deflate,
190     &ppp_deflate_draft,
191 #endif
192     NULL
193 };
194 #endif /* PPP_COMPRESS */
195
196 /*
197  * Software interrupt routine, called at spl[soft]net.
198  */
199 static int
200 pppintr(struct netmsg *msg)
201 {
202     struct mbuf *m;
203     struct ppp_softc *sc;
204     int i;
205
206     /*
207      * Packets are never sent to this netisr so the message must always
208      * be replied.  Interlock processing and notification by replying
209      * the message first.
210      */
211     lwkt_replymsg(&msg->nm_lmsg, 0);
212
213     sc = ppp_softc;
214     for (i = 0; i < NPPP; ++i, ++sc) {
215         lwkt_serialize_enter(sc->sc_if.if_serializer);
216         if (!(sc->sc_flags & SC_TBUSY)
217             && (!ifq_is_empty(&sc->sc_if.if_snd) || !IF_QEMPTY(&sc->sc_fastq))) {
218             sc->sc_flags |= SC_TBUSY;
219             (*sc->sc_start)(sc);
220         } 
221         for (;;) {
222             IF_DEQUEUE(&sc->sc_rawq, m);
223             if (m == NULL)
224                 break;
225             ppp_inproc(sc, m);
226         }
227         lwkt_serialize_exit(sc->sc_if.if_serializer);
228     }
229     return(EASYNC);
230 }
231
232 /*
233  * Called from boot code to establish ppp interfaces.
234  */
235 static void
236 pppattach(void *dummy)
237 {
238     struct ppp_softc *sc;
239     int i = 0;
240
241     for (sc = ppp_softc; i < NPPP; sc++) {
242         if_initname(&(sc->sc_if), "ppp", i++);
243         sc->sc_if.if_mtu = PPP_MTU;
244         sc->sc_if.if_flags = IFF_POINTOPOINT | IFF_MULTICAST;
245         sc->sc_if.if_type = IFT_PPP;
246         sc->sc_if.if_hdrlen = PPP_HDRLEN;
247         sc->sc_if.if_ioctl = pppsioctl;
248         sc->sc_if.if_output = pppoutput;
249         sc->sc_if.if_start = ppp_ifstart;
250         ifq_set_maxlen(&sc->sc_if.if_snd, IFQ_MAXLEN);
251         ifq_set_ready(&sc->sc_if.if_snd);
252         sc->sc_inq.ifq_maxlen = IFQ_MAXLEN;
253         sc->sc_fastq.ifq_maxlen = IFQ_MAXLEN;
254         sc->sc_rawq.ifq_maxlen = IFQ_MAXLEN;
255         callout_init(&sc->sc_timeout);
256         if_attach(&sc->sc_if, NULL);
257         bpfattach(&sc->sc_if, DLT_PPP, PPP_HDRLEN);
258     }
259     netisr_register(NETISR_PPP, cpu0_portfn, pppintr);
260     /*
261      * XXX layering violation - if_ppp can work over any lower level
262      * transport that cares to attach to it.
263      */
264     pppasyncattach(dummy);
265 }
266
267 /*
268  * Allocate a ppp interface unit and initialize it.
269  */
270 struct ppp_softc *
271 pppalloc(struct thread *td)
272 {
273     int nppp, i;
274     struct ppp_softc *sc;
275
276     for (nppp = 0, sc = ppp_softc; nppp < NPPP; nppp++, sc++)
277         if (sc->sc_xfer == td) {
278             sc->sc_xfer = NULL;
279             return sc;
280         }
281     for (nppp = 0, sc = ppp_softc; nppp < NPPP; nppp++, sc++)
282         if (sc->sc_devp == NULL)
283             break;
284     if (nppp >= NPPP)
285         return NULL;
286
287     sc->sc_flags = 0;
288     sc->sc_mru = PPP_MRU;
289     sc->sc_relinq = NULL;
290     bzero((char *)&sc->sc_stats, sizeof(sc->sc_stats));
291 #ifdef VJC
292     MALLOC(sc->sc_comp, struct slcompress *, sizeof(struct slcompress),
293            M_DEVBUF, M_WAITOK);
294     sl_compress_init(sc->sc_comp, -1);
295 #endif
296 #ifdef PPP_COMPRESS
297     sc->sc_xc_state = NULL;
298     sc->sc_rc_state = NULL;
299 #endif /* PPP_COMPRESS */
300     for (i = 0; i < NUM_NP; ++i)
301         sc->sc_npmode[i] = NPMODE_ERROR;
302     sc->sc_npqueue = NULL;
303     sc->sc_npqtail = &sc->sc_npqueue;
304     sc->sc_last_sent = sc->sc_last_recv = time_second;
305
306     return sc;
307 }
308
309 /*
310  * Deallocate a ppp unit.  Must be called at splsoftnet or higher.
311  */
312 void
313 pppdealloc(struct ppp_softc *sc)
314 {
315     struct mbuf *m;
316
317     if_down(&sc->sc_if);
318     sc->sc_if.if_flags &= ~(IFF_UP|IFF_RUNNING);
319     getmicrotime(&sc->sc_if.if_lastchange);
320     sc->sc_devp = NULL;
321     sc->sc_xfer = NULL;
322     for (;;) {
323         IF_DEQUEUE(&sc->sc_rawq, m);
324         if (m == NULL)
325             break;
326         m_freem(m);
327     }
328     for (;;) {
329         IF_DEQUEUE(&sc->sc_inq, m);
330         if (m == NULL)
331             break;
332         m_freem(m);
333     }
334     for (;;) {
335         IF_DEQUEUE(&sc->sc_fastq, m);
336         if (m == NULL)
337             break;
338         m_freem(m);
339     }
340     while ((m = sc->sc_npqueue) != NULL) {
341         sc->sc_npqueue = m->m_nextpkt;
342         m_freem(m);
343     }
344 #ifdef PPP_COMPRESS
345     ppp_ccp_closed(sc);
346     sc->sc_xc_state = NULL;
347     sc->sc_rc_state = NULL;
348 #endif /* PPP_COMPRESS */
349 #ifdef PPP_FILTER
350     if (sc->sc_pass_filt.bf_insns != 0) {
351         kfree(sc->sc_pass_filt.bf_insns, M_DEVBUF);
352         sc->sc_pass_filt.bf_insns = 0;
353         sc->sc_pass_filt.bf_len = 0;
354     }
355     if (sc->sc_active_filt.bf_insns != 0) {
356         kfree(sc->sc_active_filt.bf_insns, M_DEVBUF);
357         sc->sc_active_filt.bf_insns = 0;
358         sc->sc_active_filt.bf_len = 0;
359     }
360 #endif /* PPP_FILTER */
361 #ifdef VJC
362     if (sc->sc_comp != 0) {
363         kfree(sc->sc_comp, M_DEVBUF);
364         sc->sc_comp = 0;
365     }
366 #endif
367 }
368
369 /*
370  * Ioctl routine for generic ppp devices.
371  */
372 int
373 pppioctl(struct ppp_softc *sc, u_long cmd, caddr_t data,
374     int flag, struct ucred *cred)
375 {
376     int error, flags, mru, npx;
377     u_int nb;
378     struct ppp_option_data *odp;
379     struct compressor **cp;
380     struct npioctl *npi;
381     time_t t;
382 #ifdef PPP_FILTER
383     struct bpf_program *bp, *nbp;
384     struct bpf_insn *newcode, *oldcode;
385     int newcodelen;
386 #endif /* PPP_FILTER */
387 #ifdef  PPP_COMPRESS
388     u_char ccp_option[CCP_MAX_OPTION_LENGTH];
389 #endif
390
391     switch (cmd) {
392     case FIONREAD:
393         *(int *)data = sc->sc_inq.ifq_len;
394         break;
395
396     case PPPIOCGUNIT:
397         *(int *)data = sc->sc_if.if_dunit;
398         break;
399
400     case PPPIOCGFLAGS:
401         *(u_int *)data = sc->sc_flags;
402         break;
403
404     case PPPIOCSFLAGS:
405         if ((error = suser_cred(cred, 0)) != 0)
406             return (error);
407         flags = *(int *)data & SC_MASK;
408         crit_enter();
409 #ifdef PPP_COMPRESS
410         if (sc->sc_flags & SC_CCP_OPEN && !(flags & SC_CCP_OPEN))
411             ppp_ccp_closed(sc);
412 #endif
413         sc->sc_flags = (sc->sc_flags & ~SC_MASK) | flags;
414         crit_exit();
415         break;
416
417     case PPPIOCSMRU:
418         if ((error = suser_cred(cred, 0)) != 0)
419             return (error);
420         mru = *(int *)data;
421         if (mru >= PPP_MRU && mru <= PPP_MAXMRU)
422             sc->sc_mru = mru;
423         break;
424
425     case PPPIOCGMRU:
426         *(int *)data = sc->sc_mru;
427         break;
428
429 #ifdef VJC
430     case PPPIOCSMAXCID:
431         if ((error = suser_cred(cred, 0)) != 0)
432             return (error);
433         if (sc->sc_comp) {
434             crit_enter();
435             sl_compress_init(sc->sc_comp, *(int *)data);
436             crit_exit();
437         }
438         break;
439 #endif
440
441     case PPPIOCXFERUNIT:
442         if ((error = suser_cred(cred, 0)) != 0)
443             return (error);
444         sc->sc_xfer = curthread;
445         break;
446
447 #ifdef PPP_COMPRESS
448     case PPPIOCSCOMPRESS:
449         if ((error = suser_cred(cred, 0)) != 0)
450             return (error);
451         odp = (struct ppp_option_data *) data;
452         nb = odp->length;
453         if (nb > sizeof(ccp_option))
454             nb = sizeof(ccp_option);
455         if ((error = copyin(odp->ptr, ccp_option, nb)) != 0)
456             return (error);
457         if (ccp_option[1] < 2)  /* preliminary check on the length byte */
458             return (EINVAL);
459         for (cp = ppp_compressors; *cp != NULL; ++cp)
460             if ((*cp)->compress_proto == ccp_option[0]) {
461                 /*
462                  * Found a handler for the protocol - try to allocate
463                  * a compressor or decompressor.
464                  */
465                 error = 0;
466                 if (odp->transmit) {
467                     crit_enter();
468                     if (sc->sc_xc_state != NULL)
469                         (*sc->sc_xcomp->comp_free)(sc->sc_xc_state);
470                     sc->sc_xcomp = *cp;
471                     sc->sc_xc_state = (*cp)->comp_alloc(ccp_option, nb);
472                     if (sc->sc_xc_state == NULL) {
473                         if (sc->sc_flags & SC_DEBUG)
474                             printf("%s: comp_alloc failed\n",
475                                sc->sc_if.if_xname);
476                         error = ENOBUFS;
477                     }
478                     sc->sc_flags &= ~SC_COMP_RUN;
479                     crit_exit();
480                 } else {
481                     crit_enter();
482                     if (sc->sc_rc_state != NULL)
483                         (*sc->sc_rcomp->decomp_free)(sc->sc_rc_state);
484                     sc->sc_rcomp = *cp;
485                     sc->sc_rc_state = (*cp)->decomp_alloc(ccp_option, nb);
486                     if (sc->sc_rc_state == NULL) {
487                         if (sc->sc_flags & SC_DEBUG)
488                             printf("%s: decomp_alloc failed\n",
489                                sc->sc_if.if_xname);
490                         error = ENOBUFS;
491                     }
492                     sc->sc_flags &= ~SC_DECOMP_RUN;
493                     crit_exit();
494                 }
495                 return (error);
496             }
497         if (sc->sc_flags & SC_DEBUG)
498             printf("%s: no compressor for [%x %x %x], %x\n",
499                    sc->sc_if.if_xname, ccp_option[0], ccp_option[1],
500                    ccp_option[2], nb);
501         return (EINVAL);        /* no handler found */
502 #endif /* PPP_COMPRESS */
503
504     case PPPIOCGNPMODE:
505     case PPPIOCSNPMODE:
506         npi = (struct npioctl *) data;
507         switch (npi->protocol) {
508         case PPP_IP:
509             npx = NP_IP;
510             break;
511         default:
512             return EINVAL;
513         }
514         if (cmd == PPPIOCGNPMODE) {
515             npi->mode = sc->sc_npmode[npx];
516         } else {
517             if ((error = suser_cred(cred, 0)) != 0)
518                 return (error);
519             if (npi->mode != sc->sc_npmode[npx]) {
520                 crit_enter();
521                 sc->sc_npmode[npx] = npi->mode;
522                 if (npi->mode != NPMODE_QUEUE) {
523                     ppp_requeue(sc);
524                     (*sc->sc_start)(sc);
525                 }
526                 crit_exit();
527             }
528         }
529         break;
530
531     case PPPIOCGIDLE:
532         crit_enter();
533         t = time_second;
534         ((struct ppp_idle *)data)->xmit_idle = t - sc->sc_last_sent;
535         ((struct ppp_idle *)data)->recv_idle = t - sc->sc_last_recv;
536         crit_exit();
537         break;
538
539 #ifdef PPP_FILTER
540     case PPPIOCSPASS:
541     case PPPIOCSACTIVE:
542         nbp = (struct bpf_program *) data;
543         if ((unsigned) nbp->bf_len > BPF_MAXINSNS)
544             return EINVAL;
545         newcodelen = nbp->bf_len * sizeof(struct bpf_insn);
546         if (newcodelen != 0) {
547             MALLOC(newcode, struct bpf_insn *, newcodelen, M_DEVBUF, M_WAITOK);
548             if (newcode == 0) {
549                 return EINVAL;          /* or sumpin */
550             }
551             if ((error = copyin((caddr_t)nbp->bf_insns, (caddr_t)newcode,
552                                newcodelen)) != 0) {
553                 kfree(newcode, M_DEVBUF);
554                 return error;
555             }
556             if (!bpf_validate(newcode, nbp->bf_len)) {
557                 kfree(newcode, M_DEVBUF);
558                 return EINVAL;
559             }
560         } else
561             newcode = 0;
562         bp = (cmd == PPPIOCSPASS)? &sc->sc_pass_filt: &sc->sc_active_filt;
563         oldcode = bp->bf_insns;
564         crit_enter();
565         bp->bf_len = nbp->bf_len;
566         bp->bf_insns = newcode;
567         crit_exit();
568         if (oldcode != 0)
569             kfree(oldcode, M_DEVBUF);
570         break;
571 #endif
572
573     default:
574         return (ENOIOCTL);
575     }
576     return (0);
577 }
578
579 /*
580  * Process an ioctl request to the ppp network interface.
581  */
582 static int
583 pppsioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
584 {
585     struct ppp_softc *sc = &ppp_softc[ifp->if_dunit];
586     struct ifaddr *ifa = (struct ifaddr *)data;
587     struct ifreq *ifr = (struct ifreq *)data;
588     struct ppp_stats *psp;
589 #ifdef  PPP_COMPRESS
590     struct ppp_comp_stats *pcp;
591 #endif
592     int error = 0;
593
594     crit_enter();
595
596     switch (cmd) {
597     case SIOCSIFFLAGS:
598         if ((ifp->if_flags & IFF_RUNNING) == 0)
599             ifp->if_flags &= ~IFF_UP;
600         break;
601
602     case SIOCSIFADDR:
603     case SIOCAIFADDR:
604         switch(ifa->ifa_addr->sa_family) {
605 #ifdef INET
606         case AF_INET:
607             break;
608 #endif
609 #ifdef IPX
610         case AF_IPX:
611             break;
612 #endif
613         default:
614             error = EAFNOSUPPORT;
615             break;
616         }
617         break;
618
619     case SIOCSIFDSTADDR:
620         switch(ifa->ifa_addr->sa_family) {
621 #ifdef INET
622         case AF_INET:
623             break;
624 #endif
625 #ifdef IPX
626         case AF_IPX:
627             break;
628 #endif
629         default:
630             error = EAFNOSUPPORT;
631             break;
632         }
633         break;
634
635     case SIOCSIFMTU:
636         if ((error = suser_cred(cr, 0)) != 0)
637             break;
638         if (ifr->ifr_mtu > PPP_MAXMTU)
639             error = EINVAL;
640         else {
641             sc->sc_if.if_mtu = ifr->ifr_mtu;
642             if (sc->sc_setmtu)
643                     (*sc->sc_setmtu)(sc);
644         }
645         break;
646
647     case SIOCGIFMTU:
648         ifr->ifr_mtu = sc->sc_if.if_mtu;
649         break;
650
651     case SIOCADDMULTI:
652     case SIOCDELMULTI:
653         if (ifr == 0) {
654             error = EAFNOSUPPORT;
655             break;
656         }
657         switch(ifr->ifr_addr.sa_family) {
658 #ifdef INET
659         case AF_INET:
660             break;
661 #endif
662         default:
663             error = EAFNOSUPPORT;
664             break;
665         }
666         break;
667
668     case SIOCGPPPSTATS:
669         psp = &((struct ifpppstatsreq *) data)->stats;
670         bzero(psp, sizeof(*psp));
671         psp->p = sc->sc_stats;
672 #if defined(VJC) && !defined(SL_NO_STATS)
673         if (sc->sc_comp) {
674             psp->vj.vjs_packets = sc->sc_comp->sls_packets;
675             psp->vj.vjs_compressed = sc->sc_comp->sls_compressed;
676             psp->vj.vjs_searches = sc->sc_comp->sls_searches;
677             psp->vj.vjs_misses = sc->sc_comp->sls_misses;
678             psp->vj.vjs_uncompressedin = sc->sc_comp->sls_uncompressedin;
679             psp->vj.vjs_compressedin = sc->sc_comp->sls_compressedin;
680             psp->vj.vjs_errorin = sc->sc_comp->sls_errorin;
681             psp->vj.vjs_tossed = sc->sc_comp->sls_tossed;
682         }
683 #endif /* VJC */
684         break;
685
686 #ifdef PPP_COMPRESS
687     case SIOCGPPPCSTATS:
688         pcp = &((struct ifpppcstatsreq *) data)->stats;
689         bzero(pcp, sizeof(*pcp));
690         if (sc->sc_xc_state != NULL)
691             (*sc->sc_xcomp->comp_stat)(sc->sc_xc_state, &pcp->c);
692         if (sc->sc_rc_state != NULL)
693             (*sc->sc_rcomp->decomp_stat)(sc->sc_rc_state, &pcp->d);
694         break;
695 #endif /* PPP_COMPRESS */
696
697     default:
698         error = ENOTTY;
699     }
700     crit_exit();
701     return (error);
702 }
703
704 /*
705  * Queue a packet.  Start transmission if not active.
706  * Packet is placed in Information field of PPP frame.
707  * Called at splnet as the if->if_output handler.
708  * Called at splnet from pppwrite().
709  */
710 int
711 pppoutput(struct ifnet *ifp, struct mbuf *m0, struct sockaddr *dst,
712           struct rtentry *rtp)
713 {
714     struct ppp_softc *sc = &ppp_softc[ifp->if_dunit];
715     int protocol, address, control;
716     u_char *cp;
717     int error;
718     struct ip *ip;
719     struct ifqueue *ifq;
720     enum NPmode mode;
721     int len;
722     struct mbuf *m;
723     struct altq_pktattr pktattr;
724
725     if (sc->sc_devp == NULL || (ifp->if_flags & IFF_RUNNING) == 0
726         || ((ifp->if_flags & IFF_UP) == 0 && dst->sa_family != AF_UNSPEC)) {
727         error = ENETDOWN;       /* sort of */
728         goto bad;
729     }
730
731     ifq_classify(&ifp->if_snd, m0, dst->sa_family, &pktattr);
732
733     /*
734      * Compute PPP header.
735      */
736     m0->m_flags &= ~M_HIGHPRI;
737     switch (dst->sa_family) {
738 #ifdef INET
739     case AF_INET:
740         address = PPP_ALLSTATIONS;
741         control = PPP_UI;
742         protocol = PPP_IP;
743         mode = sc->sc_npmode[NP_IP];
744
745         /*
746          * If this packet has the "low delay" bit set in the IP header,
747          * put it on the fastq instead.
748          */
749         ip = mtod(m0, struct ip *);
750         if (ip->ip_tos & IPTOS_LOWDELAY)
751             m0->m_flags |= M_HIGHPRI;
752         break;
753 #endif
754 #ifdef IPX
755     case AF_IPX:
756         /*
757          * This is pretty bogus.. We dont have an ipxcp module in pppd
758          * yet to configure the link parameters.  Sigh. I guess a
759          * manual ifconfig would do....  -Peter
760          */
761         address = PPP_ALLSTATIONS;
762         control = PPP_UI;
763         protocol = PPP_IPX;
764         mode = NPMODE_PASS;
765         break;
766 #endif
767     case AF_UNSPEC:
768         address = PPP_ADDRESS(dst->sa_data);
769         control = PPP_CONTROL(dst->sa_data);
770         protocol = PPP_PROTOCOL(dst->sa_data);
771         mode = NPMODE_PASS;
772         break;
773     default:
774         printf("%s: af%d not supported\n", ifp->if_xname, dst->sa_family);
775         error = EAFNOSUPPORT;
776         goto bad;
777     }
778
779     /*
780      * Drop this packet, or return an error, if necessary.
781      */
782     if (mode == NPMODE_ERROR) {
783         error = ENETDOWN;
784         goto bad;
785     }
786     if (mode == NPMODE_DROP) {
787         error = 0;
788         goto bad;
789     }
790
791     /*
792      * Add PPP header.  If no space in first mbuf, allocate another.
793      * (This assumes M_LEADINGSPACE is always 0 for a cluster mbuf.)
794      */
795     if (M_LEADINGSPACE(m0) < PPP_HDRLEN) {
796         m0 = m_prepend(m0, PPP_HDRLEN, MB_DONTWAIT);
797         if (m0 == 0) {
798             error = ENOBUFS;
799             goto bad;
800         }
801         m0->m_len = 0;
802     } else
803         m0->m_data -= PPP_HDRLEN;
804
805     cp = mtod(m0, u_char *);
806     *cp++ = address;
807     *cp++ = control;
808     *cp++ = protocol >> 8;
809     *cp++ = protocol & 0xff;
810     m0->m_len += PPP_HDRLEN;
811
812     len = 0;
813     for (m = m0; m != 0; m = m->m_next)
814         len += m->m_len;
815
816     if (sc->sc_flags & SC_LOG_OUTPKT) {
817         printf("%s output: ", ifp->if_xname);
818         pppdumpm(m0);
819     }
820
821     if ((protocol & 0x8000) == 0) {
822 #ifdef PPP_FILTER
823         /*
824          * Apply the pass and active filters to the packet,
825          * but only if it is a data packet.
826          */
827         *mtod(m0, u_char *) = 1;        /* indicates outbound */
828         if (sc->sc_pass_filt.bf_insns != 0
829             && bpf_filter(sc->sc_pass_filt.bf_insns, (u_char *) m0,
830                           len, 0) == 0) {
831             error = 0;          /* drop this packet */
832             goto bad;
833         }
834
835         /*
836          * Update the time we sent the most recent packet.
837          */
838         if (sc->sc_active_filt.bf_insns == 0
839             || bpf_filter(sc->sc_active_filt.bf_insns, (u_char *) m0, len, 0))
840             sc->sc_last_sent = time_second;
841
842         *mtod(m0, u_char *) = address;
843 #else
844         /*
845          * Update the time we sent the most recent data packet.
846          */
847         sc->sc_last_sent = time_second;
848 #endif /* PPP_FILTER */
849     }
850
851     BPF_MTAP(ifp, m0);
852
853     /*
854      * Put the packet on the appropriate queue.
855      */
856     crit_enter();
857     if (mode == NPMODE_QUEUE) {
858         /* XXX we should limit the number of packets on this queue */
859         *sc->sc_npqtail = m0;
860         m0->m_nextpkt = NULL;
861         sc->sc_npqtail = &m0->m_nextpkt;
862     } else {
863         /* fastq and if_snd are emptied at spl[soft]net now */
864         if ((m0->m_flags & M_HIGHPRI) && !ifq_is_enabled(&sc->sc_if.if_snd)) {
865             ifq = &sc->sc_fastq;
866             if (IF_QFULL(ifq) && dst->sa_family != AF_UNSPEC) {
867                 IF_DROP(ifq);
868                 m_freem(m0);
869                 error = ENOBUFS;
870             } else {
871                 IF_ENQUEUE(ifq, m0);
872                 error = 0;
873             }
874         } else {
875             ASSERT_SERIALIZED(sc->sc_if.if_serializer);
876             error = ifq_enqueue(&sc->sc_if.if_snd, m0, &pktattr);
877         }
878         if (error) {
879             crit_exit();
880             sc->sc_if.if_oerrors++;
881             sc->sc_stats.ppp_oerrors++;
882             return (error);
883         }
884         (*sc->sc_start)(sc);
885     }
886     getmicrotime(&ifp->if_lastchange);
887     ifp->if_opackets++;
888     ifp->if_obytes += len;
889
890     crit_exit();
891     return (0);
892
893 bad:
894     m_freem(m0);
895     return (error);
896 }
897
898 /*
899  * After a change in the NPmode for some NP, move packets from the
900  * npqueue to the send queue or the fast queue as appropriate.
901  * Should be called at spl[soft]net.
902  */
903 static void
904 ppp_requeue(struct ppp_softc *sc)
905 {
906     struct mbuf *m, **mpp;
907     struct ifqueue *ifq;
908     enum NPmode mode;
909     int error;
910
911     for (mpp = &sc->sc_npqueue; (m = *mpp) != NULL; ) {
912         switch (PPP_PROTOCOL(mtod(m, u_char *))) {
913         case PPP_IP:
914             mode = sc->sc_npmode[NP_IP];
915             break;
916         default:
917             mode = NPMODE_PASS;
918         }
919
920         switch (mode) {
921         case NPMODE_PASS:
922             /*
923              * This packet can now go on one of the queues to be sent.
924              */
925             *mpp = m->m_nextpkt;
926             m->m_nextpkt = NULL;
927             if ((m->m_flags & M_HIGHPRI) && !ifq_is_enabled(&sc->sc_if.if_snd)) {
928                 ifq = &sc->sc_fastq;
929                 if (IF_QFULL(ifq)) {
930                     IF_DROP(ifq);
931                     error = ENOBUFS;
932                 } else {
933                     IF_ENQUEUE(ifq, m);
934                     error = 0;
935                 }
936             } else {
937                 lwkt_serialize_enter(sc->sc_if.if_serializer);
938                 error = ifq_enqueue(&sc->sc_if.if_snd, m, NULL);
939                 lwkt_serialize_exit(sc->sc_if.if_serializer);
940             }
941             if (error) {
942                     sc->sc_if.if_oerrors++;
943                     sc->sc_stats.ppp_oerrors++;
944             }
945             break;
946
947         case NPMODE_DROP:
948         case NPMODE_ERROR:
949             *mpp = m->m_nextpkt;
950             m_freem(m);
951             break;
952
953         case NPMODE_QUEUE:
954             mpp = &m->m_nextpkt;
955             break;
956         }
957     }
958     sc->sc_npqtail = mpp;
959 }
960
961 /*
962  * Transmitter has finished outputting some stuff;
963  * remember to call sc->sc_start later at splsoftnet.
964  */
965 void
966 ppp_restart(struct ppp_softc *sc)
967 {
968     crit_enter();
969     sc->sc_flags &= ~SC_TBUSY;
970     schednetisr(NETISR_PPP);
971     crit_exit();
972 }
973
974
975 /*
976  * Get a packet to send.  This procedure is intended to be called at
977  * splsoftnet, since it may involve time-consuming operations such as
978  * applying VJ compression, packet compression, address/control and/or
979  * protocol field compression to the packet.
980  */
981 struct mbuf *
982 ppp_dequeue(struct ppp_softc *sc)
983 {
984     struct mbuf *m, *mp;
985     u_char *cp;
986     int address, control, protocol;
987
988     /*
989      * Grab a packet to send: first try the fast queue, then the
990      * normal queue.
991      */
992     IF_DEQUEUE(&sc->sc_fastq, m);
993     if (m == NULL)
994         m = ifq_dequeue(&sc->sc_if.if_snd, NULL);
995     if (m == NULL)
996         return NULL;
997
998     ++sc->sc_stats.ppp_opackets;
999
1000     /*
1001      * Extract the ppp header of the new packet.
1002      * The ppp header will be in one mbuf.
1003      */
1004     cp = mtod(m, u_char *);
1005     address = PPP_ADDRESS(cp);
1006     control = PPP_CONTROL(cp);
1007     protocol = PPP_PROTOCOL(cp);
1008
1009     switch (protocol) {
1010     case PPP_IP:
1011 #ifdef VJC
1012         /*
1013          * If the packet is a TCP/IP packet, see if we can compress it.
1014          */
1015         if ((sc->sc_flags & SC_COMP_TCP) && sc->sc_comp != NULL) {
1016             struct ip *ip;
1017             int type;
1018
1019             mp = m;
1020             ip = (struct ip *) (cp + PPP_HDRLEN);
1021             if (mp->m_len <= PPP_HDRLEN) {
1022                 mp = mp->m_next;
1023                 if (mp == NULL)
1024                     break;
1025                 ip = mtod(mp, struct ip *);
1026             }
1027             /* this code assumes the IP/TCP header is in one non-shared mbuf */
1028             if (ip->ip_p == IPPROTO_TCP) {
1029                 type = sl_compress_tcp(mp, ip, sc->sc_comp,
1030                                        !(sc->sc_flags & SC_NO_TCP_CCID));
1031                 switch (type) {
1032                 case TYPE_UNCOMPRESSED_TCP:
1033                     protocol = PPP_VJC_UNCOMP;
1034                     break;
1035                 case TYPE_COMPRESSED_TCP:
1036                     protocol = PPP_VJC_COMP;
1037                     cp = mtod(m, u_char *);
1038                     cp[0] = address;    /* header has moved */
1039                     cp[1] = control;
1040                     cp[2] = 0;
1041                     break;
1042                 }
1043                 cp[3] = protocol;       /* update protocol in PPP header */
1044             }
1045         }
1046 #endif  /* VJC */
1047         break;
1048
1049 #ifdef PPP_COMPRESS
1050     case PPP_CCP:
1051         ppp_ccp(sc, m, 0);
1052         break;
1053 #endif  /* PPP_COMPRESS */
1054     }
1055
1056 #ifdef PPP_COMPRESS
1057     if (protocol != PPP_LCP && protocol != PPP_CCP
1058         && sc->sc_xc_state && (sc->sc_flags & SC_COMP_RUN)) {
1059         struct mbuf *mcomp = NULL;
1060         int slen, clen;
1061
1062         slen = 0;
1063         for (mp = m; mp != NULL; mp = mp->m_next)
1064             slen += mp->m_len;
1065         clen = (*sc->sc_xcomp->compress)
1066             (sc->sc_xc_state, &mcomp, m, slen, sc->sc_if.if_mtu + PPP_HDRLEN);
1067         if (mcomp != NULL) {
1068             if (sc->sc_flags & SC_CCP_UP) {
1069                 /* Send the compressed packet instead of the original. */
1070                 m_freem(m);
1071                 m = mcomp;
1072                 cp = mtod(m, u_char *);
1073                 protocol = cp[3];
1074             } else {
1075                 /* Can't transmit compressed packets until CCP is up. */
1076                 m_freem(mcomp);
1077             }
1078         }
1079     }
1080 #endif  /* PPP_COMPRESS */
1081
1082     /*
1083      * Compress the address/control and protocol, if possible.
1084      */
1085     if (sc->sc_flags & SC_COMP_AC && address == PPP_ALLSTATIONS &&
1086         control == PPP_UI && protocol != PPP_ALLSTATIONS &&
1087         protocol != PPP_LCP) {
1088         /* can compress address/control */
1089         m->m_data += 2;
1090         m->m_len -= 2;
1091     }
1092     if (sc->sc_flags & SC_COMP_PROT && protocol < 0xFF) {
1093         /* can compress protocol */
1094         if (mtod(m, u_char *) == cp) {
1095             cp[2] = cp[1];      /* move address/control up */
1096             cp[1] = cp[0];
1097         }
1098         ++m->m_data;
1099         --m->m_len;
1100     }
1101
1102     return m;
1103 }
1104
1105 #ifdef PPP_COMPRESS
1106 /*
1107  * Handle a CCP packet.  `rcvd' is 1 if the packet was received,
1108  * 0 if it is about to be transmitted.
1109  */
1110 static void
1111 ppp_ccp(struct ppp_softc *sc, struct mbuf *m, int rcvd)
1112 {
1113     u_char *dp, *ep;
1114     struct mbuf *mp;
1115     int slen;
1116
1117     /*
1118      * Get a pointer to the data after the PPP header.
1119      */
1120     if (m->m_len <= PPP_HDRLEN) {
1121         mp = m->m_next;
1122         if (mp == NULL)
1123             return;
1124         dp = (mp != NULL)? mtod(mp, u_char *): NULL;
1125     } else {
1126         mp = m;
1127         dp = mtod(mp, u_char *) + PPP_HDRLEN;
1128     }
1129
1130     ep = mtod(mp, u_char *) + mp->m_len;
1131     if (dp + CCP_HDRLEN > ep)
1132         return;
1133     slen = CCP_LENGTH(dp);
1134     if (dp + slen > ep) {
1135         if (sc->sc_flags & SC_DEBUG)
1136             printf("if_ppp/ccp: not enough data in mbuf (%p+%x > %p+%x)\n",
1137                    dp, slen, mtod(mp, u_char *), mp->m_len);
1138         return;
1139     }
1140
1141     switch (CCP_CODE(dp)) {
1142     case CCP_CONFREQ:
1143     case CCP_TERMREQ:
1144     case CCP_TERMACK:
1145         /* CCP must be going down - disable compression */
1146         if (sc->sc_flags & SC_CCP_UP) {
1147             crit_enter();
1148             sc->sc_flags &= ~(SC_CCP_UP | SC_COMP_RUN | SC_DECOMP_RUN);
1149             crit_exit();
1150         }
1151         break;
1152
1153     case CCP_CONFACK:
1154         if (sc->sc_flags & SC_CCP_OPEN && !(sc->sc_flags & SC_CCP_UP)
1155             && slen >= CCP_HDRLEN + CCP_OPT_MINLEN
1156             && slen >= CCP_OPT_LENGTH(dp + CCP_HDRLEN) + CCP_HDRLEN) {
1157             if (!rcvd) {
1158                 /* we're agreeing to send compressed packets. */
1159                 if (sc->sc_xc_state != NULL
1160                     && (*sc->sc_xcomp->comp_init)
1161                         (sc->sc_xc_state, dp + CCP_HDRLEN, slen - CCP_HDRLEN,
1162                          sc->sc_if.if_dunit, 0, sc->sc_flags & SC_DEBUG)) {
1163                     crit_enter();
1164                     sc->sc_flags |= SC_COMP_RUN;
1165                     crit_exit();
1166                 }
1167             } else {
1168                 /* peer is agreeing to send compressed packets. */
1169                 if (sc->sc_rc_state != NULL
1170                     && (*sc->sc_rcomp->decomp_init)
1171                         (sc->sc_rc_state, dp + CCP_HDRLEN, slen - CCP_HDRLEN,
1172                          sc->sc_if.if_dunit, 0, sc->sc_mru,
1173                          sc->sc_flags & SC_DEBUG)) {
1174                     crit_enter();
1175                     sc->sc_flags |= SC_DECOMP_RUN;
1176                     sc->sc_flags &= ~(SC_DC_ERROR | SC_DC_FERROR);
1177                     crit_exit();
1178                 }
1179             }
1180         }
1181         break;
1182
1183     case CCP_RESETACK:
1184         if (sc->sc_flags & SC_CCP_UP) {
1185             if (!rcvd) {
1186                 if (sc->sc_xc_state && (sc->sc_flags & SC_COMP_RUN))
1187                     (*sc->sc_xcomp->comp_reset)(sc->sc_xc_state);
1188             } else {
1189                 if (sc->sc_rc_state && (sc->sc_flags & SC_DECOMP_RUN)) {
1190                     (*sc->sc_rcomp->decomp_reset)(sc->sc_rc_state);
1191                     crit_enter();
1192                     sc->sc_flags &= ~SC_DC_ERROR;
1193                     crit_exit();
1194                 }
1195             }
1196         }
1197         break;
1198     }
1199 }
1200
1201 /*
1202  * CCP is down; free (de)compressor state if necessary.
1203  */
1204 static void
1205 ppp_ccp_closed(struct ppp_softc *sc)
1206 {
1207     if (sc->sc_xc_state) {
1208         (*sc->sc_xcomp->comp_free)(sc->sc_xc_state);
1209         sc->sc_xc_state = NULL;
1210     }
1211     if (sc->sc_rc_state) {
1212         (*sc->sc_rcomp->decomp_free)(sc->sc_rc_state);
1213         sc->sc_rc_state = NULL;
1214     }
1215 }
1216 #endif /* PPP_COMPRESS */
1217
1218 /*
1219  * PPP packet input routine.
1220  * The caller has checked and removed the FCS and has inserted
1221  * the address/control bytes and the protocol high byte if they
1222  * were omitted.
1223  */
1224 void
1225 ppppktin(struct ppp_softc *sc, struct mbuf *m, int lost)
1226 {
1227     crit_enter();
1228
1229     if (lost)
1230         m->m_flags |= M_ERRMARK;
1231     IF_ENQUEUE(&sc->sc_rawq, m);
1232     schednetisr(NETISR_PPP);
1233
1234     crit_exit();
1235 }
1236
1237 /*
1238  * Process a received PPP packet, doing decompression as necessary.
1239  * Should be called at splsoftnet.
1240  */
1241 #define COMPTYPE(proto) ((proto) == PPP_VJC_COMP? TYPE_COMPRESSED_TCP: \
1242                          TYPE_UNCOMPRESSED_TCP)
1243
1244 static void
1245 ppp_inproc(struct ppp_softc *sc, struct mbuf *m)
1246 {
1247     struct ifnet *ifp = &sc->sc_if;
1248     int isr;
1249     int ilen = 0, xlen, proto, rv;
1250     u_char *cp, adrs, ctrl;
1251     struct mbuf *mp, *dmp = NULL;
1252     u_char *iphdr;
1253     u_int hlen;
1254
1255     ASSERT_SERIALIZED(ifp->if_serializer);
1256
1257     sc->sc_stats.ppp_ipackets++;
1258
1259     if (sc->sc_flags & SC_LOG_INPKT) {
1260         ilen = 0;
1261         for (mp = m; mp != NULL; mp = mp->m_next)
1262             ilen += mp->m_len;
1263         printf("%s: got %d bytes\n", ifp->if_xname, ilen);
1264         pppdumpm(m);
1265     }
1266
1267     cp = mtod(m, u_char *);
1268     adrs = PPP_ADDRESS(cp);
1269     ctrl = PPP_CONTROL(cp);
1270     proto = PPP_PROTOCOL(cp);
1271
1272     if (m->m_flags & M_ERRMARK) {
1273         m->m_flags &= ~M_ERRMARK;
1274         crit_enter();
1275         sc->sc_flags |= SC_VJ_RESET;
1276         crit_exit();
1277     }
1278
1279 #ifdef PPP_COMPRESS
1280     /*
1281      * Decompress this packet if necessary, update the receiver's
1282      * dictionary, or take appropriate action on a CCP packet.
1283      */
1284     if (proto == PPP_COMP && sc->sc_rc_state && (sc->sc_flags & SC_DECOMP_RUN)
1285         && !(sc->sc_flags & SC_DC_ERROR) && !(sc->sc_flags & SC_DC_FERROR)) {
1286         /* decompress this packet */
1287         rv = (*sc->sc_rcomp->decompress)(sc->sc_rc_state, m, &dmp);
1288         if (rv == DECOMP_OK) {
1289             m_freem(m);
1290             if (dmp == NULL) {
1291                 /* no error, but no decompressed packet produced */
1292                 return;
1293             }
1294             m = dmp;
1295             cp = mtod(m, u_char *);
1296             proto = PPP_PROTOCOL(cp);
1297
1298         } else {
1299             /*
1300              * An error has occurred in decompression.
1301              * Pass the compressed packet up to pppd, which may take
1302              * CCP down or issue a Reset-Req.
1303              */
1304             if (sc->sc_flags & SC_DEBUG)
1305                 printf("%s: decompress failed %d\n", ifp->if_xname, rv);
1306             crit_enter();
1307             sc->sc_flags |= SC_VJ_RESET;
1308             if (rv == DECOMP_ERROR)
1309                 sc->sc_flags |= SC_DC_ERROR;
1310             else
1311                 sc->sc_flags |= SC_DC_FERROR;
1312             crit_exit();
1313         }
1314
1315     } else {
1316         if (sc->sc_rc_state && (sc->sc_flags & SC_DECOMP_RUN)) {
1317             (*sc->sc_rcomp->incomp)(sc->sc_rc_state, m);
1318         }
1319         if (proto == PPP_CCP) {
1320             ppp_ccp(sc, m, 1);
1321         }
1322     }
1323 #endif
1324
1325     ilen = 0;
1326     for (mp = m; mp != NULL; mp = mp->m_next)
1327         ilen += mp->m_len;
1328
1329 #ifdef VJC
1330     if (sc->sc_flags & SC_VJ_RESET) {
1331         /*
1332          * If we've missed a packet, we must toss subsequent compressed
1333          * packets which don't have an explicit connection ID.
1334          */
1335         if (sc->sc_comp)
1336             sl_uncompress_tcp(NULL, 0, TYPE_ERROR, sc->sc_comp);
1337         crit_enter();
1338         sc->sc_flags &= ~SC_VJ_RESET;
1339         crit_exit();
1340     }
1341
1342     /*
1343      * See if we have a VJ-compressed packet to uncompress.
1344      */
1345     if (proto == PPP_VJC_COMP) {
1346         if ((sc->sc_flags & SC_REJ_COMP_TCP) || sc->sc_comp == 0)
1347             goto bad;
1348
1349         xlen = sl_uncompress_tcp_core(cp + PPP_HDRLEN, m->m_len - PPP_HDRLEN,
1350                                       ilen - PPP_HDRLEN, TYPE_COMPRESSED_TCP,
1351                                       sc->sc_comp, &iphdr, &hlen);
1352
1353         if (xlen <= 0) {
1354             if (sc->sc_flags & SC_DEBUG)
1355                 printf("%s: VJ uncompress failed on type comp\n",
1356                         ifp->if_xname);
1357             goto bad;
1358         }
1359
1360         /* Copy the PPP and IP headers into a new mbuf. */
1361         MGETHDR(mp, MB_DONTWAIT, MT_DATA);
1362         if (mp == NULL)
1363             goto bad;
1364         mp->m_len = 0;
1365         mp->m_next = NULL;
1366         if (hlen + PPP_HDRLEN > MHLEN) {
1367             MCLGET(mp, MB_DONTWAIT);
1368             if (M_TRAILINGSPACE(mp) < hlen + PPP_HDRLEN) {
1369                 m_freem(mp);
1370                 goto bad;       /* lose if big headers and no clusters */
1371             }
1372         }
1373         cp = mtod(mp, u_char *);
1374         cp[0] = adrs;
1375         cp[1] = ctrl;
1376         cp[2] = 0;
1377         cp[3] = PPP_IP;
1378         proto = PPP_IP;
1379         bcopy(iphdr, cp + PPP_HDRLEN, hlen);
1380         mp->m_len = hlen + PPP_HDRLEN;
1381
1382         /*
1383          * Trim the PPP and VJ headers off the old mbuf
1384          * and stick the new and old mbufs together.
1385          */
1386         m->m_data += PPP_HDRLEN + xlen;
1387         m->m_len -= PPP_HDRLEN + xlen;
1388         if (m->m_len <= M_TRAILINGSPACE(mp)) {
1389             bcopy(mtod(m, u_char *), mtod(mp, u_char *) + mp->m_len, m->m_len);
1390             mp->m_len += m->m_len;
1391             mp->m_next = m_free(m);
1392         } else {
1393             mp->m_next = m;
1394         }
1395         m = mp;
1396         ilen += hlen - xlen;
1397
1398     } else if (proto == PPP_VJC_UNCOMP) {
1399         if ((sc->sc_flags & SC_REJ_COMP_TCP) || sc->sc_comp == 0)
1400             goto bad;
1401
1402         xlen = sl_uncompress_tcp_core(cp + PPP_HDRLEN, m->m_len - PPP_HDRLEN,
1403                                       ilen - PPP_HDRLEN, TYPE_UNCOMPRESSED_TCP,
1404                                       sc->sc_comp, &iphdr, &hlen);
1405
1406         if (xlen < 0) {
1407             if (sc->sc_flags & SC_DEBUG)
1408                 printf("%s: VJ uncompress failed on type uncomp\n",
1409                         ifp->if_xname);
1410             goto bad;
1411         }
1412
1413         proto = PPP_IP;
1414         cp[3] = PPP_IP;
1415     }
1416 #endif /* VJC */
1417
1418     /*
1419      * If the packet will fit in a header mbuf, don't waste a
1420      * whole cluster on it.
1421      */
1422     if (ilen <= MHLEN && M_IS_CLUSTER(m)) {
1423         MGETHDR(mp, MB_DONTWAIT, MT_DATA);
1424         if (mp != NULL) {
1425             m_copydata(m, 0, ilen, mtod(mp, caddr_t));
1426             m_freem(m);
1427             m = mp;
1428             m->m_len = ilen;
1429         }
1430     }
1431     m->m_pkthdr.len = ilen;
1432     m->m_pkthdr.rcvif = ifp;
1433
1434     if ((proto & 0x8000) == 0) {
1435 #ifdef PPP_FILTER
1436         /*
1437          * See whether we want to pass this packet, and
1438          * if it counts as link activity.
1439          */
1440         adrs = *mtod(m, u_char *);      /* save address field */
1441         *mtod(m, u_char *) = 0;         /* indicate inbound */
1442         if (sc->sc_pass_filt.bf_insns != 0
1443             && bpf_filter(sc->sc_pass_filt.bf_insns, (u_char *) m,
1444                           ilen, 0) == 0) {
1445             /* drop this packet */
1446             m_freem(m);
1447             return;
1448         }
1449         if (sc->sc_active_filt.bf_insns == 0
1450             || bpf_filter(sc->sc_active_filt.bf_insns, (u_char *) m, ilen, 0))
1451             sc->sc_last_recv = time_second;
1452
1453         *mtod(m, u_char *) = adrs;
1454 #else
1455         /*
1456          * Record the time that we received this packet.
1457          */
1458         sc->sc_last_recv = time_second;
1459 #endif /* PPP_FILTER */
1460     }
1461
1462     BPF_MTAP(&sc->sc_if, m);
1463
1464     isr = -1;
1465     switch (proto) {
1466 #ifdef INET
1467     case PPP_IP:
1468         /*
1469          * IP packet - take off the ppp header and pass it up to IP.
1470          */
1471         if ((ifp->if_flags & IFF_UP) == 0
1472             || sc->sc_npmode[NP_IP] != NPMODE_PASS) {
1473             /* interface is down - drop the packet. */
1474             m_freem(m);
1475             return;
1476         }
1477         m->m_pkthdr.len -= PPP_HDRLEN;
1478         m->m_data += PPP_HDRLEN;
1479         m->m_len -= PPP_HDRLEN;
1480         if (ipflow_fastforward(m, ifp->if_serializer))
1481             return;
1482         isr = NETISR_IP;
1483         break;
1484 #endif
1485 #ifdef IPX
1486     case PPP_IPX:
1487         /*
1488          * IPX packet - take off the ppp header and pass it up to IPX.
1489          */
1490         if ((sc->sc_if.if_flags & IFF_UP) == 0
1491             /* XXX: || sc->sc_npmode[NP_IPX] != NPMODE_PASS*/) {
1492             /* interface is down - drop the packet. */
1493             m_freem(m);
1494             return;
1495         }
1496         m->m_pkthdr.len -= PPP_HDRLEN;
1497         m->m_data += PPP_HDRLEN;
1498         m->m_len -= PPP_HDRLEN;
1499         isr = NETISR_IPX;
1500         sc->sc_last_recv = time_second; /* update time of last pkt rcvd */
1501         break;
1502 #endif
1503
1504     default:
1505         /*
1506          * Some other protocol - place on input queue for read().
1507          */
1508         break;
1509     }
1510
1511     /*
1512      * If we found a netproto just pass it to the proto.  Otherwise queue
1513      * the packet to the tty (e.g. pppd).  Note that sc_ctlp() must be
1514      * called EXACTLY once per packet queued.
1515      */
1516     if (isr == -1) {
1517         rv = IF_HANDOFF(&sc->sc_inq, m, NULL);
1518         if (rv)
1519             (*sc->sc_ctlp)(sc);
1520     } else {
1521         rv = (netisr_queue(isr, m) == 0);
1522     }
1523     if (!rv) {
1524         if (sc->sc_flags & SC_DEBUG)
1525             printf("%s: input queue full\n", ifp->if_xname);
1526         ifp->if_iqdrops++;
1527         goto bad;
1528     }
1529
1530     ifp->if_ipackets++;
1531     ifp->if_ibytes += ilen;
1532     getmicrotime(&ifp->if_lastchange);
1533
1534     return;
1535
1536  bad:
1537     m_freem(m);
1538     sc->sc_if.if_ierrors++;
1539     sc->sc_stats.ppp_ierrors++;
1540 }
1541
1542 #define MAX_DUMP_BYTES  128
1543
1544 static void
1545 pppdumpm(struct mbuf *m0)
1546 {
1547     char buf[3*MAX_DUMP_BYTES+4];
1548     char *bp = buf;
1549     struct mbuf *m;
1550
1551     for (m = m0; m; m = m->m_next) {
1552         int l = m->m_len;
1553         u_char *rptr = (u_char *)m->m_data;
1554
1555         while (l--) {
1556             if (bp > buf + sizeof(buf) - 4)
1557                 goto done;
1558             *bp++ = hex2ascii(*rptr >> 4);
1559             *bp++ = hex2ascii(*rptr++ & 0xf);
1560         }
1561
1562         if (m->m_next) {
1563             if (bp > buf + sizeof(buf) - 3)
1564                 goto done;
1565             *bp++ = '|';
1566         } else
1567             *bp++ = ' ';
1568     }
1569 done:
1570     if (m)
1571         *bp++ = '>';
1572     *bp = 0;
1573     printf("%s\n", buf);
1574 }
1575
1576 /*
1577  * a wrapper to transmit a packet from if_start since ALTQ uses
1578  * if_start to send a packet.
1579  */
1580 static void
1581 ppp_ifstart(struct ifnet *ifp)
1582 {
1583         struct ppp_softc *sc;
1584
1585         sc = ifp->if_softc;
1586         (*sc->sc_start)(sc);
1587 }