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