new proc structure; rm user.h; pass proc to ifioctl; rework sprint_d
[unix-history] / usr / src / sys / net / if_sl.c
CommitLineData
5b519e94 1/*
270f7144 2 * Copyright (c) 1987, 1989 Regents of the University of California.
5b519e94
KB
3 * All rights reserved.
4 *
dbf0c423 5 * %sccs.include.redist.c%
5b519e94 6 *
dbf0c423 7 * @(#)if_sl.c 7.21 (Berkeley) %G%
5b519e94 8 */
7c2732d1 9
41b6e003
MK
10/*
11 * Serial Line interface
12 *
13 * Rick Adams
14 * Center for Seismic Studies
15 * 1300 N 17th Street, Suite 1450
16 * Arlington, Virginia 22209
17 * (703)276-7900
18 * rick@seismo.ARPA
19 * seismo!rick
20 *
41b6e003 21 * Pounded on heavily by Chris Torek (chris@mimsy.umd.edu, umcp-cs!chris).
8011f5df 22 * N.B.: this belongs in netinet, not net, the way it stands now.
7c2732d1
MK
23 * Should have a link-layer type designation, but wouldn't be
24 * backwards-compatible.
41b6e003
MK
25 *
26 * Converted to 4.3BSD Beta by Chris Torek.
8011f5df 27 * Other changes made at Berkeley, based in part on code by Kirk Smith.
270f7144
MK
28 * W. Jolitz added slip abort.
29 *
30 * Hacked almost beyond recognition by Van Jacobson (van@helios.ee.lbl.gov).
31 * Added priority queuing for "interactive" traffic; hooks for TCP
32 * header compression; ICMP filtering (at 2400 baud, some cretin
33 * pinging you can use up all your bandwidth). Made low clist behavior
34 * more robust and slightly less likely to hang serial line.
35 * Sped up a bunch of things.
36 *
37 * Note that splimp() is used throughout to block both (tty) input
38 * interrupts and network activity; thus, splimp must be >= spltty.
41b6e003
MK
39 */
40
270f7144 41/* $Header: if_sl.c,v 1.7 89/05/31 02:24:52 van Exp $ */
41b6e003
MK
42/* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */
43
44#include "sl.h"
45#if NSL > 0
46
47#include "param.h"
fc62c320 48#include "user.h"
41b6e003
MK
49#include "mbuf.h"
50#include "buf.h"
8672a1f0 51#include "dk.h"
41b6e003
MK
52#include "socket.h"
53#include "ioctl.h"
8011f5df 54#include "file.h"
41b6e003 55#include "tty.h"
4a23a8aa
WN
56#include "kernel.h"
57#include "conf.h"
41b6e003
MK
58#include "errno.h"
59
8011f5df 60#include "if.h"
4dcb4b06 61#include "if_types.h"
8011f5df
MK
62#include "netisr.h"
63#include "route.h"
64#if INET
41b6e003
MK
65#include "../netinet/in.h"
66#include "../netinet/in_systm.h"
e42fd7b3 67#include "../netinet/in_var.h"
41b6e003 68#include "../netinet/ip.h"
8011f5df 69#endif
41b6e003 70
0e6c0944 71#include "machine/mtpr.h"
41b6e003 72
270f7144
MK
73#include "slcompress.h"
74#include "if_slvar.h"
75
41b6e003 76/*
af951bc0 77 * SLMAX is a hard limit on input packet size. To simplify the code
270f7144 78 * and improve performance, we require that packets fit in an mbuf
af951bc0
SL
79 * cluster, and if we get a compressed packet, there's enough extra
80 * room to expand the header into a max length tcp/ip header (128
81 * bytes). So, SLMAX can be at most
82 * MCLBYTES - 128
270f7144 83 *
af951bc0
SL
84 * SLMTU is a hard limit on output packet size. To insure good
85 * interactive response, SLMTU wants to be the smallest size that
86 * amortizes the header cost. (Remember that even with
87 * type-of-service queuing, we have to wait for any in-progress
88 * packet to finish. I.e., we wait, on the average, 1/2 * mtu /
89 * cps, where cps is the line speed in characters per second.
90 * E.g., 533ms wait for a 1024 byte MTU on a 9600 baud line. The
91 * average compressed header size is 6-8 bytes so any MTU > 90
92 * bytes will give us 90% of the line bandwidth. A 100ms wait is
93 * tolerable (500ms is not), so want an MTU around 296. (Since TCP
94 * will send 256 byte segments (to allow for 40 byte headers), the
95 * typical packet size on the wire will be around 260 bytes). In
96 * 4.3tahoe+ systems, we can set an MTU in a route so we do that &
97 * leave the interface MTU relatively high (so we don't IP fragment
98 * when acting as a gateway to someone using a stupid MTU).
99 *
100 * Similar considerations apply to SLIP_HIWAT: It's the amount of
101 * data that will be queued 'downstream' of us (i.e., in clists
102 * waiting to be picked up by the tty output interrupt). If we
103 * queue a lot of data downstream, it's immune to our t.o.s. queuing.
104 * E.g., if SLIP_HIWAT is 1024, the interactive traffic in mixed
105 * telnet/ftp will see a 1 sec wait, independent of the mtu (the
106 * wait is dependent on the ftp window size but that's typically
107 * 1k - 4k). So, we want SLIP_HIWAT just big enough to amortize
108 * the cost (in idle time on the wire) of the tty driver running
109 * off the end of its clists & having to call back slstart for a
110 * new packet. For a tty interface with any buffering at all, this
111 * cost will be zero. Even with a totally brain dead interface (like
112 * the one on a typical workstation), the cost will be <= 1 character
113 * time. So, setting SLIP_HIWAT to ~100 guarantees that we'll lose
114 * at most 1% while maintaining good interactive response.
41b6e003 115 */
b25c0eeb 116#define BUFOFFSET 128
af951bc0
SL
117#define SLMAX (MCLBYTES - BUFOFFSET)
118#define SLBUFSIZE (SLMAX + BUFOFFSET)
119#define SLMTU 296
120#define SLIP_HIWAT roundup(50,CBSIZE)
270f7144 121#define CLISTRESERVE 1024 /* Can't let clists get too low */
b25c0eeb 122
4a23a8aa
WN
123/*
124 * SLIP ABORT ESCAPE MECHANISM:
125 * (inspired by HAYES modem escape arrangement)
126 * 1sec escape 1sec escape 1sec escape { 1sec escape 1sec escape }
127 * signals a "soft" exit from slip mode by usermode process
4a23a8aa
WN
128 */
129
130#define ABT_ESC '\033' /* can't be t_intr - distant host must know it*/
131#define ABT_WAIT 1 /* in seconds - idle before an escape & after */
132#define ABT_RECYCLE (5*2+2) /* in seconds - time window processing abort */
133
4a23a8aa 134#define ABT_SOFT 3 /* count of escapes */
41b6e003 135
4a23a8aa 136/*
270f7144 137 * The following disgusting hack gets around the problem that IP TOS
b25c0eeb
MK
138 * can't be set yet. We want to put "interactive" traffic on a high
139 * priority queue. To decide if traffic is interactive, we check that
140 * a) it is TCP and b) one of its ports is telnet, rlogin or ftp control.
4a23a8aa 141 */
270f7144
MK
142static u_short interactive_ports[8] = {
143 0, 513, 0, 0,
144 0, 21, 0, 23,
145};
146#define INTERACTIVE(p) (interactive_ports[(p) & 7] == (p))
4a23a8aa 147
270f7144 148struct sl_softc sl_softc[NSL];
4a23a8aa 149
270f7144
MK
150#define FRAME_END 0xc0 /* Frame End */
151#define FRAME_ESCAPE 0xdb /* Frame Esc */
152#define TRANS_FRAME_END 0xdc /* transposed frame end */
153#define TRANS_FRAME_ESCAPE 0xdd /* transposed frame esc */
41b6e003
MK
154
155#define t_sc T_LINEP
156
157int sloutput(), slioctl(), ttrstrt();
4dcb4b06 158extern struct timeval time;
41b6e003
MK
159
160/*
161 * Called from boot code to establish sl interfaces.
162 */
163slattach()
164{
165 register struct sl_softc *sc;
166 register int i = 0;
167
168 for (sc = sl_softc; i < NSL; sc++) {
169 sc->sc_if.if_name = "sl";
170 sc->sc_if.if_unit = i++;
171 sc->sc_if.if_mtu = SLMTU;
172 sc->sc_if.if_flags = IFF_POINTOPOINT;
4dcb4b06 173 sc->sc_if.if_type = IFT_SLIP;
41b6e003
MK
174 sc->sc_if.if_ioctl = slioctl;
175 sc->sc_if.if_output = sloutput;
270f7144
MK
176 sc->sc_if.if_snd.ifq_maxlen = 50;
177 sc->sc_fastq.ifq_maxlen = 32;
41b6e003
MK
178 if_attach(&sc->sc_if);
179 }
180}
181
270f7144
MK
182static int
183slinit(sc)
184 register struct sl_softc *sc;
185{
186 register caddr_t p;
187
188 if (sc->sc_ep == (u_char *) 0) {
189 MCLALLOC(p, M_WAIT);
190 if (p)
b25c0eeb 191 sc->sc_ep = (u_char *)p + SLBUFSIZE;
270f7144
MK
192 else {
193 printf("sl%d: can't allocate buffer\n", sc - sl_softc);
194 sc->sc_if.if_flags &= ~IFF_UP;
195 return (0);
196 }
197 }
af951bc0 198 sc->sc_buf = sc->sc_ep - SLMAX;
270f7144
MK
199 sc->sc_mp = sc->sc_buf;
200 sl_compress_init(&sc->sc_comp);
201 return (1);
202}
203
41b6e003
MK
204/*
205 * Line specific open routine.
206 * Attach the given tty to the first available sl unit.
207 */
8011f5df 208/* ARGSUSED */
41b6e003
MK
209slopen(dev, tp)
210 dev_t dev;
211 register struct tty *tp;
212{
213 register struct sl_softc *sc;
214 register int nsl;
06c16dfa 215 int error;
41b6e003 216
06c16dfa
KM
217 if (error = suser(u.u_cred, &u.u_acflag))
218 return (error);
270f7144 219
8011f5df 220 if (tp->t_line == SLIPDISC)
b25c0eeb 221 return (0);
41b6e003 222
270f7144 223 for (nsl = NSL, sc = sl_softc; --nsl >= 0; sc++)
41b6e003 224 if (sc->sc_ttyp == NULL) {
8011f5df
MK
225 if (slinit(sc) == 0)
226 return (ENOBUFS);
41b6e003
MK
227 tp->t_sc = (caddr_t)sc;
228 sc->sc_ttyp = tp;
4dcb4b06 229 sc->sc_if.if_baudrate = tp->t_ospeed;
8011f5df 230 ttyflush(tp, FREAD | FWRITE);
41b6e003
MK
231 return (0);
232 }
8011f5df 233 return (ENXIO);
41b6e003
MK
234}
235
236/*
237 * Line specific close routine.
238 * Detach the tty from the sl unit.
239 * Mimics part of ttyclose().
240 */
241slclose(tp)
242 struct tty *tp;
243{
244 register struct sl_softc *sc;
245 int s;
246
247 ttywflush(tp);
270f7144 248 s = splimp(); /* actually, max(spltty, splnet) */
41b6e003 249 tp->t_line = 0;
41b6e003
MK
250 sc = (struct sl_softc *)tp->t_sc;
251 if (sc != NULL) {
252 if_down(&sc->sc_if);
253 sc->sc_ttyp = NULL;
254 tp->t_sc = NULL;
b25c0eeb 255 MCLFREE((caddr_t)(sc->sc_ep - SLBUFSIZE));
270f7144
MK
256 sc->sc_ep = 0;
257 sc->sc_mp = 0;
8011f5df 258 sc->sc_buf = 0;
41b6e003
MK
259 }
260 splx(s);
261}
262
263/*
264 * Line specific (tty) ioctl routine.
265 * Provide a way to get the sl unit number.
266 */
8011f5df 267/* ARGSUSED */
41b6e003
MK
268sltioctl(tp, cmd, data, flag)
269 struct tty *tp;
270 caddr_t data;
271{
4a23a8aa
WN
272 struct sl_softc *sc = (struct sl_softc *)tp->t_sc;
273 int s;
41b6e003 274
4a23a8aa 275 switch (cmd) {
270f7144
MK
276 case TIOCGETD: /* XXX */
277 case SLIOGUNIT:
4a23a8aa
WN
278 *(int *)data = sc->sc_if.if_unit;
279 break;
4a23a8aa 280
4a23a8aa
WN
281 case SLIOCGFLAGS:
282 *(int *)data = sc->sc_flags;
283 break;
270f7144 284
4a23a8aa 285 case SLIOCSFLAGS:
af951bc0 286#define SC_MASK 0xffff
4a23a8aa
WN
287 s = splimp();
288 sc->sc_flags =
289 (sc->sc_flags &~ SC_MASK) | ((*(int *)data) & SC_MASK);
290 splx(s);
291 break;
270f7144 292
4a23a8aa
WN
293 default:
294 return (-1);
fc62c320 295 }
4a23a8aa 296 return (0);
41b6e003
MK
297}
298
299/*
300 * Queue a packet. Start transmission if not active.
301 */
302sloutput(ifp, m, dst)
b25c0eeb 303 struct ifnet *ifp;
41b6e003
MK
304 register struct mbuf *m;
305 struct sockaddr *dst;
306{
b25c0eeb 307 register struct sl_softc *sc = &sl_softc[ifp->if_unit];
270f7144
MK
308 register struct ip *ip;
309 register struct ifqueue *ifq;
41b6e003
MK
310 int s;
311
312 /*
313 * `Cannot happen' (see slioctl). Someday we will extend
314 * the line protocol to support other address families.
315 */
316 if (dst->sa_family != AF_INET) {
b25c0eeb 317 printf("sl%d: af%d not supported\n", sc->sc_if.if_unit,
41b6e003
MK
318 dst->sa_family);
319 m_freem(m);
320 return (EAFNOSUPPORT);
321 }
322
41b6e003
MK
323 if (sc->sc_ttyp == NULL) {
324 m_freem(m);
325 return (ENETDOWN); /* sort of */
326 }
eadd9817
MK
327 if ((sc->sc_ttyp->t_state & TS_CARR_ON) == 0) {
328 m_freem(m);
329 return (EHOSTUNREACH);
330 }
b25c0eeb 331 ifq = &sc->sc_if.if_snd;
270f7144
MK
332 if ((ip = mtod(m, struct ip *))->ip_p == IPPROTO_TCP) {
333 register int p = ((int *)ip)[ip->ip_hl];
334
af951bc0 335 if (INTERACTIVE(p & 0xffff) || INTERACTIVE(p >> 16)) {
270f7144 336 ifq = &sc->sc_fastq;
af951bc0
SL
337 p = 1;
338 } else
339 p = 0;
270f7144
MK
340
341 if (sc->sc_flags & SC_COMPRESS) {
af951bc0
SL
342 /*
343 * The last parameter turns off connection id
344 * compression for background traffic: Since
345 * fastq traffic can jump ahead of the background
346 * traffic, we don't know what order packets will
347 * go on the line.
348 */
349 p = sl_compress_tcp(m, ip, &sc->sc_comp, p);
270f7144 350 *mtod(m, u_char *) |= p;
4a23a8aa 351 }
270f7144
MK
352 } else if (sc->sc_flags & SC_NOICMP && ip->ip_p == IPPROTO_ICMP) {
353 m_freem(m);
354 return (0);
4a23a8aa 355 }
270f7144
MK
356 s = splimp();
357 if (IF_QFULL(ifq)) {
358 IF_DROP(ifq);
41b6e003 359 m_freem(m);
270f7144 360 splx(s);
8011f5df 361 sc->sc_if.if_oerrors++;
41b6e003
MK
362 return (ENOBUFS);
363 }
270f7144 364 IF_ENQUEUE(ifq, m);
4dcb4b06 365 sc->sc_if.if_lastchange = time;
b25c0eeb 366 if (sc->sc_ttyp->t_outq.c_cc == 0)
41b6e003 367 slstart(sc->sc_ttyp);
b25c0eeb 368 splx(s);
41b6e003
MK
369 return (0);
370}
371
372/*
373 * Start output on interface. Get another datagram
374 * to send from the interface queue and map it to
375 * the interface before starting output.
376 */
377slstart(tp)
378 register struct tty *tp;
379{
380 register struct sl_softc *sc = (struct sl_softc *)tp->t_sc;
381 register struct mbuf *m;
8011f5df 382 register u_char *cp;
270f7144 383 int s;
8011f5df
MK
384 struct mbuf *m2;
385 extern int cfreecount;
41b6e003 386
8011f5df
MK
387 for (;;) {
388 /*
389 * If there is more in the output queue, just send it now.
390 * We are being called in lieu of ttstart and must do what
391 * it would.
392 */
270f7144
MK
393 if (tp->t_outq.c_cc != 0) {
394 (*tp->t_oproc)(tp);
395 if (tp->t_outq.c_cc > SLIP_HIWAT)
396 return;
397 }
8011f5df
MK
398 /*
399 * This happens briefly when the line shuts down.
400 */
401 if (sc == NULL)
402 return;
41b6e003 403
8011f5df
MK
404 /*
405 * Get a packet and send it to the interface.
406 */
407 s = splimp();
270f7144
MK
408 IF_DEQUEUE(&sc->sc_fastq, m);
409 if (m == NULL)
410 IF_DEQUEUE(&sc->sc_if.if_snd, m);
8011f5df 411 splx(s);
e8e27e8e
MK
412 if (m == NULL)
413 return;
4dcb4b06 414 sc->sc_if.if_lastchange = time;
270f7144
MK
415 /*
416 * If system is getting low on clists, just flush our
417 * output queue (if the stuff was important, it'll get
418 * retransmitted).
419 */
420 if (cfreecount < CLISTRESERVE + SLMTU) {
421 m_freem(m);
422 sc->sc_if.if_collisions++;
423 continue;
424 }
41b6e003 425
41b6e003 426 /*
8011f5df
MK
427 * The extra FRAME_END will start up a new packet, and thus
428 * will flush any accumulated garbage. We do this whenever
429 * the line may have been idle for some time.
41b6e003 430 */
270f7144
MK
431 if (tp->t_outq.c_cc == 0) {
432 ++sc->sc_bytessent;
8011f5df 433 (void) putc(FRAME_END, &tp->t_outq);
270f7144 434 }
8011f5df
MK
435
436 while (m) {
270f7144
MK
437 register u_char *ep;
438
439 cp = mtod(m, u_char *); ep = cp + m->m_len;
440 while (cp < ep) {
8011f5df
MK
441 /*
442 * Find out how many bytes in the string we can
443 * handle without doing something special.
444 */
270f7144
MK
445 register u_char *bp = cp;
446
447 while (cp < ep) {
448 switch (*cp++) {
449 case FRAME_ESCAPE:
450 case FRAME_END:
451 --cp;
452 goto out;
453 }
454 }
455 out:
456 if (cp > bp) {
8011f5df
MK
457 /*
458 * Put n characters at once
459 * into the tty output queue.
460 */
270f7144 461 if (b_to_q((char *)bp, cp - bp, &tp->t_outq))
8011f5df 462 break;
270f7144 463 sc->sc_bytessent += cp - bp;
8011f5df
MK
464 }
465 /*
466 * If there are characters left in the mbuf,
467 * the first one must be special..
468 * Put it out in a different form.
469 */
270f7144 470 if (cp < ep) {
8011f5df
MK
471 if (putc(FRAME_ESCAPE, &tp->t_outq))
472 break;
270f7144 473 if (putc(*cp++ == FRAME_ESCAPE ?
8011f5df
MK
474 TRANS_FRAME_ESCAPE : TRANS_FRAME_END,
475 &tp->t_outq)) {
476 (void) unputc(&tp->t_outq);
477 break;
478 }
270f7144 479 sc->sc_bytessent += 2;
8011f5df
MK
480 }
481 }
482 MFREE(m, m2);
483 m = m2;
484 }
41b6e003 485
8011f5df
MK
486 if (putc(FRAME_END, &tp->t_outq)) {
487 /*
488 * Not enough room. Remove a char to make room
489 * and end the packet normally.
490 * If you get many collisions (more than one or two
491 * a day) you probably do not have enough clists
492 * and you should increase "nclist" in param.c.
493 */
494 (void) unputc(&tp->t_outq);
495 (void) putc(FRAME_END, &tp->t_outq);
496 sc->sc_if.if_collisions++;
8011f5df 497 } else {
270f7144
MK
498 ++sc->sc_bytessent;
499 sc->sc_if.if_opackets++;
8011f5df 500 }
4dcb4b06 501 sc->sc_if.if_obytes = sc->sc_bytessent;
8011f5df 502 }
41b6e003
MK
503}
504
505/*
270f7144 506 * Copy data buffer to mbuf chain; add ifnet pointer.
41b6e003 507 */
270f7144
MK
508static struct mbuf *
509sl_btom(sc, len)
510 register struct sl_softc *sc;
41b6e003 511 register int len;
41b6e003 512{
270f7144 513 register struct mbuf *m;
41b6e003 514
270f7144
MK
515 MGETHDR(m, M_DONTWAIT, MT_DATA);
516 if (m == NULL)
517 return (NULL);
fc62c320 518
270f7144 519 /*
b25c0eeb 520 * If we have more than MHLEN bytes, it's cheaper to
270f7144
MK
521 * queue the cluster we just filled & allocate a new one
522 * for the input buffer. Otherwise, fill the mbuf we
523 * allocated above. Note that code in the input routine
524 * guarantees that packet will fit in a cluster.
525 */
270f7144
MK
526 if (len >= MHLEN) {
527 MCLGET(m, M_DONTWAIT);
528 if ((m->m_flags & M_EXT) == 0) {
b25c0eeb
MK
529 /*
530 * we couldn't get a cluster - if memory's this
531 * low, it's time to start dropping packets.
532 */
533 (void) m_free(m);
41b6e003
MK
534 return (NULL);
535 }
b25c0eeb
MK
536 sc->sc_ep = mtod(m, u_char *) + SLBUFSIZE;
537 m->m_data = (caddr_t)sc->sc_buf;
538 m->m_ext.ext_buf = (caddr_t)((int)sc->sc_buf &~ MCLOFSET);
270f7144 539 } else
b25c0eeb 540 bcopy((caddr_t)sc->sc_buf, mtod(m, caddr_t), len);
270f7144
MK
541
542 m->m_len = len;
543 m->m_pkthdr.len = len;
544 m->m_pkthdr.rcvif = &sc->sc_if;
545 return (m);
41b6e003
MK
546}
547
548/*
549 * tty interface receiver interrupt.
550 */
551slinput(c, tp)
552 register int c;
553 register struct tty *tp;
554{
555 register struct sl_softc *sc;
556 register struct mbuf *m;
270f7144 557 register int len;
41b6e003
MK
558 int s;
559
8011f5df 560 tk_nin++;
41b6e003
MK
561 sc = (struct sl_softc *)tp->t_sc;
562 if (sc == NULL)
563 return;
270f7144 564 if (!(tp->t_state&TS_CARR_ON)) /* XXX */
4a23a8aa 565 return;
41b6e003 566
270f7144 567 ++sc->sc_bytesrcvd;
4dcb4b06 568 ++sc->sc_if.if_ibytes;
270f7144
MK
569 c &= 0xff; /* XXX */
570
571#ifdef ABT_ESC
572 if (sc->sc_flags & SC_ABORT) {
573 /* if we see an abort after "idle" time, count it */
574 if (c == ABT_ESC && time.tv_sec >= sc->sc_lasttime + ABT_WAIT) {
575 sc->sc_abortcount++;
576 /* record when the first abort escape arrived */
577 if (sc->sc_abortcount == 1)
578 sc->sc_starttime = time.tv_sec;
579 }
580 /*
581 * if we have an abort, see that we have not run out of time,
582 * or that we have an "idle" time after the complete escape
583 * sequence
584 */
585 if (sc->sc_abortcount) {
586 if (time.tv_sec >= sc->sc_starttime + ABT_RECYCLE)
587 sc->sc_abortcount = 0;
588 if (sc->sc_abortcount >= ABT_SOFT &&
589 time.tv_sec >= sc->sc_lasttime + ABT_WAIT) {
590 slclose(tp);
591 return;
592 }
593 }
594 sc->sc_lasttime = time.tv_sec;
4a23a8aa 595 }
270f7144 596#endif
4a23a8aa 597
270f7144 598 switch (c) {
41b6e003 599
270f7144
MK
600 case TRANS_FRAME_ESCAPE:
601 if (sc->sc_escape)
41b6e003 602 c = FRAME_ESCAPE;
270f7144 603 break;
41b6e003 604
270f7144
MK
605 case TRANS_FRAME_END:
606 if (sc->sc_escape)
41b6e003 607 c = FRAME_END;
270f7144 608 break;
41b6e003 609
270f7144
MK
610 case FRAME_ESCAPE:
611 sc->sc_escape = 1;
612 return;
41b6e003 613
270f7144
MK
614 case FRAME_END:
615 len = sc->sc_mp - sc->sc_buf;
616 if (len < 3)
617 /* less than min length packet - ignore */
618 goto newpack;
619
620 if ((c = (*sc->sc_buf & 0xf0)) != (IPVERSION << 4)) {
621 if (c & 0x80)
622 c = TYPE_COMPRESSED_TCP;
623 else if (c == TYPE_UNCOMPRESSED_TCP)
624 *sc->sc_buf &= 0x4f; /* XXX */
af951bc0
SL
625 /*
626 * We've got something that's not an IP packet.
627 * If compression is enabled, try to decompress it.
628 * Otherwise, if `auto-enable' compression is on and
629 * it's a reasonable packet, decompress it and then
630 * enable compression. Otherwise, drop it.
631 */
632 if (sc->sc_flags & SC_COMPRESS) {
633 len = sl_uncompress_tcp(&sc->sc_buf, len,
634 (u_int)c, &sc->sc_comp);
635 if (len <= 0)
636 goto error;
637 } else if ((sc->sc_flags & SC_AUTOCOMP) &&
638 c == TYPE_UNCOMPRESSED_TCP && len >= 40) {
639 len = sl_uncompress_tcp(&sc->sc_buf, len,
640 (u_int)c, &sc->sc_comp);
641 if (len <= 0)
642 goto error;
643 sc->sc_flags |= SC_COMPRESS;
644 } else
270f7144
MK
645 goto error;
646 }
647 m = sl_btom(sc, len);
648 if (m == NULL)
649 goto error;
41b6e003 650
270f7144 651 sc->sc_if.if_ipackets++;
4dcb4b06 652 sc->sc_if.if_lastchange = time;
270f7144
MK
653 s = splimp();
654 if (IF_QFULL(&ipintrq)) {
655 IF_DROP(&ipintrq);
656 sc->sc_if.if_ierrors++;
4dcb4b06 657 sc->sc_if.if_iqdrops++;
270f7144
MK
658 m_freem(m);
659 } else {
660 IF_ENQUEUE(&ipintrq, m);
661 schednetisr(NETISR_IP);
41b6e003 662 }
270f7144
MK
663 splx(s);
664 goto newpack;
41b6e003 665 }
270f7144
MK
666 if (sc->sc_mp < sc->sc_ep) {
667 *sc->sc_mp++ = c;
668 sc->sc_escape = 0;
41b6e003
MK
669 return;
670 }
270f7144
MK
671error:
672 sc->sc_if.if_ierrors++;
673newpack:
af951bc0 674 sc->sc_mp = sc->sc_buf = sc->sc_ep - SLMAX;
270f7144 675 sc->sc_escape = 0;
41b6e003
MK
676}
677
678/*
679 * Process an ioctl request.
680 */
681slioctl(ifp, cmd, data)
682 register struct ifnet *ifp;
683 int cmd;
684 caddr_t data;
685{
686 register struct ifaddr *ifa = (struct ifaddr *)data;
687 int s = splimp(), error = 0;
688
689 switch (cmd) {
690
691 case SIOCSIFADDR:
b72a6efb 692 if (ifa->ifa_addr->sa_family == AF_INET)
41b6e003
MK
693 ifp->if_flags |= IFF_UP;
694 else
695 error = EAFNOSUPPORT;
696 break;
697
698 case SIOCSIFDSTADDR:
b72a6efb 699 if (ifa->ifa_addr->sa_family != AF_INET)
41b6e003
MK
700 error = EAFNOSUPPORT;
701 break;
702
703 default:
704 error = EINVAL;
705 }
706 splx(s);
707 return (error);
708}
709#endif