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