if_sl.c revision 1.51 1 1.51 jtk /* $NetBSD: if_sl.c,v 1.51 1998/07/06 13:51:32 jtk Exp $ */
2 1.29 cgd
3 1.1 cgd /*
4 1.28 mycroft * Copyright (c) 1987, 1989, 1992, 1993
5 1.28 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd *
35 1.47 fvdl * @(#)if_sl.c 8.9 (Berkeley) 1/9/95
36 1.1 cgd */
37 1.1 cgd
38 1.1 cgd /*
39 1.1 cgd * Serial Line interface
40 1.1 cgd *
41 1.1 cgd * Rick Adams
42 1.1 cgd * Center for Seismic Studies
43 1.1 cgd * 1300 N 17th Street, Suite 1450
44 1.1 cgd * Arlington, Virginia 22209
45 1.1 cgd * (703)276-7900
46 1.1 cgd * rick (at) seismo.ARPA
47 1.1 cgd * seismo!rick
48 1.1 cgd *
49 1.1 cgd * Pounded on heavily by Chris Torek (chris (at) mimsy.umd.edu, umcp-cs!chris).
50 1.1 cgd * N.B.: this belongs in netinet, not net, the way it stands now.
51 1.1 cgd * Should have a link-layer type designation, but wouldn't be
52 1.1 cgd * backwards-compatible.
53 1.1 cgd *
54 1.1 cgd * Converted to 4.3BSD Beta by Chris Torek.
55 1.1 cgd * Other changes made at Berkeley, based in part on code by Kirk Smith.
56 1.1 cgd * W. Jolitz added slip abort.
57 1.1 cgd *
58 1.1 cgd * Hacked almost beyond recognition by Van Jacobson (van (at) helios.ee.lbl.gov).
59 1.1 cgd * Added priority queuing for "interactive" traffic; hooks for TCP
60 1.1 cgd * header compression; ICMP filtering (at 2400 baud, some cretin
61 1.1 cgd * pinging you can use up all your bandwidth). Made low clist behavior
62 1.1 cgd * more robust and slightly less likely to hang serial line.
63 1.1 cgd * Sped up a bunch of things.
64 1.1 cgd *
65 1.1 cgd * Note that splimp() is used throughout to block both (tty) input
66 1.1 cgd * interrupts and network activity; thus, splimp must be >= spltty.
67 1.1 cgd */
68 1.1 cgd
69 1.1 cgd #include "sl.h"
70 1.1 cgd #if NSL > 0
71 1.1 cgd
72 1.50 jonathan #include "opt_inet.h"
73 1.22 cgd #include "bpfilter.h"
74 1.22 cgd
75 1.20 mycroft #include <sys/param.h>
76 1.20 mycroft #include <sys/proc.h>
77 1.45 thorpej #include <sys/malloc.h>
78 1.20 mycroft #include <sys/mbuf.h>
79 1.20 mycroft #include <sys/buf.h>
80 1.20 mycroft #include <sys/dkstat.h>
81 1.20 mycroft #include <sys/socket.h>
82 1.20 mycroft #include <sys/ioctl.h>
83 1.20 mycroft #include <sys/file.h>
84 1.20 mycroft #include <sys/tty.h>
85 1.20 mycroft #include <sys/kernel.h>
86 1.20 mycroft #include <sys/conf.h>
87 1.38 christos #if __NetBSD__
88 1.38 christos #include <sys/systm.h>
89 1.38 christos #endif
90 1.20 mycroft
91 1.22 cgd #include <machine/cpu.h>
92 1.22 cgd
93 1.20 mycroft #include <net/if.h>
94 1.20 mycroft #include <net/if_types.h>
95 1.20 mycroft #include <net/netisr.h>
96 1.20 mycroft #include <net/route.h>
97 1.1 cgd
98 1.51 jtk #ifdef INET
99 1.20 mycroft #include <netinet/in.h>
100 1.20 mycroft #include <netinet/in_systm.h>
101 1.20 mycroft #include <netinet/in_var.h>
102 1.20 mycroft #include <netinet/ip.h>
103 1.1 cgd #else
104 1.1 cgd Huh? Slip without inet?
105 1.1 cgd #endif
106 1.1 cgd
107 1.20 mycroft #include <net/slcompress.h>
108 1.20 mycroft #include <net/if_slvar.h>
109 1.26 cgd #include <net/slip.h>
110 1.3 cgd
111 1.3 cgd #if NBPFILTER > 0
112 1.3 cgd #include <sys/time.h>
113 1.3 cgd #include <net/bpf.h>
114 1.3 cgd #endif
115 1.1 cgd
116 1.1 cgd /*
117 1.1 cgd * SLMAX is a hard limit on input packet size. To simplify the code
118 1.1 cgd * and improve performance, we require that packets fit in an mbuf
119 1.1 cgd * cluster, and if we get a compressed packet, there's enough extra
120 1.1 cgd * room to expand the header into a max length tcp/ip header (128
121 1.1 cgd * bytes). So, SLMAX can be at most
122 1.1 cgd * MCLBYTES - 128
123 1.1 cgd *
124 1.1 cgd * SLMTU is a hard limit on output packet size. To insure good
125 1.1 cgd * interactive response, SLMTU wants to be the smallest size that
126 1.1 cgd * amortizes the header cost. (Remember that even with
127 1.1 cgd * type-of-service queuing, we have to wait for any in-progress
128 1.1 cgd * packet to finish. I.e., we wait, on the average, 1/2 * mtu /
129 1.1 cgd * cps, where cps is the line speed in characters per second.
130 1.1 cgd * E.g., 533ms wait for a 1024 byte MTU on a 9600 baud line. The
131 1.1 cgd * average compressed header size is 6-8 bytes so any MTU > 90
132 1.1 cgd * bytes will give us 90% of the line bandwidth. A 100ms wait is
133 1.1 cgd * tolerable (500ms is not), so want an MTU around 296. (Since TCP
134 1.1 cgd * will send 256 byte segments (to allow for 40 byte headers), the
135 1.1 cgd * typical packet size on the wire will be around 260 bytes). In
136 1.1 cgd * 4.3tahoe+ systems, we can set an MTU in a route so we do that &
137 1.1 cgd * leave the interface MTU relatively high (so we don't IP fragment
138 1.1 cgd * when acting as a gateway to someone using a stupid MTU).
139 1.1 cgd *
140 1.1 cgd * Similar considerations apply to SLIP_HIWAT: It's the amount of
141 1.1 cgd * data that will be queued 'downstream' of us (i.e., in clists
142 1.1 cgd * waiting to be picked up by the tty output interrupt). If we
143 1.1 cgd * queue a lot of data downstream, it's immune to our t.o.s. queuing.
144 1.1 cgd * E.g., if SLIP_HIWAT is 1024, the interactive traffic in mixed
145 1.1 cgd * telnet/ftp will see a 1 sec wait, independent of the mtu (the
146 1.1 cgd * wait is dependent on the ftp window size but that's typically
147 1.1 cgd * 1k - 4k). So, we want SLIP_HIWAT just big enough to amortize
148 1.1 cgd * the cost (in idle time on the wire) of the tty driver running
149 1.1 cgd * off the end of its clists & having to call back slstart for a
150 1.1 cgd * new packet. For a tty interface with any buffering at all, this
151 1.1 cgd * cost will be zero. Even with a totally brain dead interface (like
152 1.1 cgd * the one on a typical workstation), the cost will be <= 1 character
153 1.1 cgd * time. So, setting SLIP_HIWAT to ~100 guarantees that we'll lose
154 1.1 cgd * at most 1% while maintaining good interactive response.
155 1.1 cgd */
156 1.3 cgd #if NBPFILTER > 0
157 1.22 cgd #define BUFOFFSET (128+sizeof(struct ifnet **)+SLIP_HDRLEN)
158 1.3 cgd #else
159 1.22 cgd #define BUFOFFSET (128+sizeof(struct ifnet **))
160 1.3 cgd #endif
161 1.1 cgd #define SLMAX (MCLBYTES - BUFOFFSET)
162 1.1 cgd #define SLBUFSIZE (SLMAX + BUFOFFSET)
163 1.27 cgd #ifndef SLMTU
164 1.22 cgd #define SLMTU 296
165 1.27 cgd #endif
166 1.27 cgd #if (SLMTU < 3)
167 1.27 cgd Huh? SLMTU way too small.
168 1.27 cgd #endif
169 1.1 cgd #define SLIP_HIWAT roundup(50,CBSIZE)
170 1.31 cgd #ifndef NetBSD /* XXX - cgd */
171 1.22 cgd #define CLISTRESERVE 1024 /* Can't let clists get too low */
172 1.31 cgd #endif /* !NetBSD */
173 1.1 cgd
174 1.1 cgd /*
175 1.1 cgd * SLIP ABORT ESCAPE MECHANISM:
176 1.1 cgd * (inspired by HAYES modem escape arrangement)
177 1.1 cgd * 1sec escape 1sec escape 1sec escape { 1sec escape 1sec escape }
178 1.22 cgd * within window time signals a "soft" exit from slip mode by remote end
179 1.22 cgd * if the IFF_DEBUG flag is on.
180 1.1 cgd */
181 1.1 cgd #define ABT_ESC '\033' /* can't be t_intr - distant host must know it*/
182 1.22 cgd #define ABT_IDLE 1 /* in seconds - idle before an escape */
183 1.22 cgd #define ABT_COUNT 3 /* count of escapes for abort */
184 1.22 cgd #define ABT_WINDOW (ABT_COUNT*2+2) /* in seconds - time to count */
185 1.1 cgd
186 1.1 cgd struct sl_softc sl_softc[NSL];
187 1.1 cgd
188 1.1 cgd #define FRAME_END 0xc0 /* Frame End */
189 1.1 cgd #define FRAME_ESCAPE 0xdb /* Frame Esc */
190 1.1 cgd #define TRANS_FRAME_END 0xdc /* transposed frame end */
191 1.1 cgd #define TRANS_FRAME_ESCAPE 0xdd /* transposed frame esc */
192 1.1 cgd
193 1.22 cgd static int slinit __P((struct sl_softc *));
194 1.22 cgd static struct mbuf *sl_btom __P((struct sl_softc *, int));
195 1.1 cgd
196 1.1 cgd /*
197 1.1 cgd * Called from boot code to establish sl interfaces.
198 1.1 cgd */
199 1.22 cgd void
200 1.1 cgd slattach()
201 1.1 cgd {
202 1.1 cgd register struct sl_softc *sc;
203 1.1 cgd register int i = 0;
204 1.1 cgd
205 1.1 cgd for (sc = sl_softc; i < NSL; sc++) {
206 1.40 thorpej sc->sc_unit = i; /* XXX */
207 1.44 christos sprintf(sc->sc_if.if_xname, "sl%d", i++);
208 1.39 thorpej sc->sc_if.if_softc = sc;
209 1.1 cgd sc->sc_if.if_mtu = SLMTU;
210 1.22 cgd sc->sc_if.if_flags =
211 1.22 cgd IFF_POINTOPOINT | SC_AUTOCOMP | IFF_MULTICAST;
212 1.1 cgd sc->sc_if.if_type = IFT_SLIP;
213 1.1 cgd sc->sc_if.if_ioctl = slioctl;
214 1.1 cgd sc->sc_if.if_output = sloutput;
215 1.1 cgd sc->sc_if.if_snd.ifq_maxlen = 50;
216 1.1 cgd sc->sc_fastq.ifq_maxlen = 32;
217 1.1 cgd if_attach(&sc->sc_if);
218 1.3 cgd #if NBPFILTER > 0
219 1.22 cgd bpfattach(&sc->sc_bpf, &sc->sc_if, DLT_SLIP, SLIP_HDRLEN);
220 1.3 cgd #endif
221 1.1 cgd }
222 1.1 cgd }
223 1.1 cgd
224 1.1 cgd static int
225 1.1 cgd slinit(sc)
226 1.1 cgd register struct sl_softc *sc;
227 1.1 cgd {
228 1.1 cgd
229 1.45 thorpej if (sc->sc_ep == NULL) {
230 1.45 thorpej /*
231 1.45 thorpej * XXX the trick this is used for is evil...
232 1.45 thorpej */
233 1.45 thorpej sc->sc_xxx = (u_char *)malloc(MCLBYTES, M_MBUF, M_WAITOK);
234 1.45 thorpej if (sc->sc_xxx)
235 1.45 thorpej sc->sc_ep = sc->sc_xxx + SLBUFSIZE;
236 1.1 cgd else {
237 1.44 christos printf("sl%d: can't allocate buffer\n", sc->sc_unit);
238 1.1 cgd sc->sc_if.if_flags &= ~IFF_UP;
239 1.1 cgd return (0);
240 1.1 cgd }
241 1.1 cgd }
242 1.1 cgd sc->sc_buf = sc->sc_ep - SLMAX;
243 1.1 cgd sc->sc_mp = sc->sc_buf;
244 1.46 christos sl_compress_init(&sc->sc_comp);
245 1.1 cgd return (1);
246 1.1 cgd }
247 1.1 cgd
248 1.1 cgd /*
249 1.1 cgd * Line specific open routine.
250 1.1 cgd * Attach the given tty to the first available sl unit.
251 1.1 cgd */
252 1.1 cgd /* ARGSUSED */
253 1.9 andrew int
254 1.22 cgd slopen(dev, tp)
255 1.22 cgd dev_t dev;
256 1.22 cgd register struct tty *tp;
257 1.1 cgd {
258 1.1 cgd struct proc *p = curproc; /* XXX */
259 1.1 cgd register struct sl_softc *sc;
260 1.1 cgd register int nsl;
261 1.1 cgd int error;
262 1.31 cgd #ifdef NetBSD
263 1.27 cgd int s;
264 1.27 cgd #endif
265 1.1 cgd
266 1.38 christos if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
267 1.1 cgd return (error);
268 1.1 cgd
269 1.1 cgd if (tp->t_line == SLIPDISC)
270 1.1 cgd return (0);
271 1.1 cgd
272 1.1 cgd for (nsl = NSL, sc = sl_softc; --nsl >= 0; sc++)
273 1.1 cgd if (sc->sc_ttyp == NULL) {
274 1.1 cgd if (slinit(sc) == 0)
275 1.1 cgd return (ENOBUFS);
276 1.1 cgd tp->t_sc = (caddr_t)sc;
277 1.1 cgd sc->sc_ttyp = tp;
278 1.1 cgd sc->sc_if.if_baudrate = tp->t_ospeed;
279 1.47 fvdl s = spltty();
280 1.47 fvdl tp->t_state |= TS_ISOPEN | TS_XCLUDE;
281 1.47 fvdl splx(s);
282 1.1 cgd ttyflush(tp, FREAD | FWRITE);
283 1.31 cgd #ifdef NetBSD
284 1.27 cgd /*
285 1.27 cgd * make sure tty output queue is large enough
286 1.27 cgd * to hold a full-sized packet (including frame
287 1.27 cgd * end, and a possible extra frame end). full-sized
288 1.27 cgd * packet occupies a max of 2*SLMTU bytes (because
289 1.27 cgd * of possible escapes), and add two on for frame
290 1.27 cgd * ends.
291 1.27 cgd */
292 1.27 cgd s = spltty();
293 1.27 cgd if (tp->t_outq.c_cn < 2*SLMTU+2) {
294 1.27 cgd sc->sc_oldbufsize = tp->t_outq.c_cn;
295 1.27 cgd sc->sc_oldbufquot = tp->t_outq.c_cq != 0;
296 1.27 cgd
297 1.27 cgd clfree(&tp->t_outq);
298 1.27 cgd error = clalloc(&tp->t_outq, 3*SLMTU, 0);
299 1.27 cgd if (error) {
300 1.27 cgd splx(s);
301 1.27 cgd return(error);
302 1.27 cgd }
303 1.27 cgd } else
304 1.27 cgd sc->sc_oldbufsize = sc->sc_oldbufquot = 0;
305 1.27 cgd splx(s);
306 1.31 cgd #endif /* NetBSD */
307 1.1 cgd return (0);
308 1.1 cgd }
309 1.1 cgd return (ENXIO);
310 1.1 cgd }
311 1.1 cgd
312 1.1 cgd /*
313 1.1 cgd * Line specific close routine.
314 1.1 cgd * Detach the tty from the sl unit.
315 1.1 cgd */
316 1.9 andrew void
317 1.22 cgd slclose(tp)
318 1.1 cgd struct tty *tp;
319 1.1 cgd {
320 1.1 cgd register struct sl_softc *sc;
321 1.1 cgd int s;
322 1.1 cgd
323 1.1 cgd ttywflush(tp);
324 1.37 mycroft s = splimp(); /* actually, max(spltty, splsoftnet) */
325 1.1 cgd tp->t_line = 0;
326 1.47 fvdl tp->t_state = 0;
327 1.1 cgd sc = (struct sl_softc *)tp->t_sc;
328 1.1 cgd if (sc != NULL) {
329 1.1 cgd if_down(&sc->sc_if);
330 1.1 cgd sc->sc_ttyp = NULL;
331 1.1 cgd tp->t_sc = NULL;
332 1.45 thorpej free((caddr_t)(sc->sc_ep - SLBUFSIZE), M_MBUF);
333 1.1 cgd sc->sc_ep = 0;
334 1.1 cgd sc->sc_mp = 0;
335 1.1 cgd sc->sc_buf = 0;
336 1.1 cgd }
337 1.31 cgd #ifdef NetBSD
338 1.27 cgd /* if necessary, install a new outq buffer of the appropriate size */
339 1.27 cgd if (sc->sc_oldbufsize != 0) {
340 1.27 cgd clfree(&tp->t_outq);
341 1.27 cgd clalloc(&tp->t_outq, sc->sc_oldbufsize, sc->sc_oldbufquot);
342 1.27 cgd }
343 1.27 cgd #endif
344 1.1 cgd splx(s);
345 1.1 cgd }
346 1.1 cgd
347 1.1 cgd /*
348 1.1 cgd * Line specific (tty) ioctl routine.
349 1.1 cgd * Provide a way to get the sl unit number.
350 1.1 cgd */
351 1.1 cgd /* ARGSUSED */
352 1.22 cgd int
353 1.1 cgd sltioctl(tp, cmd, data, flag)
354 1.1 cgd struct tty *tp;
355 1.32 cgd u_long cmd;
356 1.1 cgd caddr_t data;
357 1.22 cgd int flag;
358 1.1 cgd {
359 1.1 cgd struct sl_softc *sc = (struct sl_softc *)tp->t_sc;
360 1.1 cgd
361 1.1 cgd switch (cmd) {
362 1.1 cgd case SLIOCGUNIT:
363 1.39 thorpej *(int *)data = sc->sc_unit; /* XXX */
364 1.1 cgd break;
365 1.1 cgd
366 1.1 cgd default:
367 1.1 cgd return (-1);
368 1.1 cgd }
369 1.1 cgd return (0);
370 1.1 cgd }
371 1.1 cgd
372 1.1 cgd /*
373 1.1 cgd * Queue a packet. Start transmission if not active.
374 1.22 cgd * Compression happens in slstart; if we do it here, IP TOS
375 1.22 cgd * will cause us to not compress "background" packets, because
376 1.28 mycroft * ordering gets trashed. It can be done for all packets in slstart.
377 1.1 cgd */
378 1.22 cgd int
379 1.22 cgd sloutput(ifp, m, dst, rtp)
380 1.1 cgd struct ifnet *ifp;
381 1.1 cgd register struct mbuf *m;
382 1.1 cgd struct sockaddr *dst;
383 1.22 cgd struct rtentry *rtp;
384 1.1 cgd {
385 1.39 thorpej register struct sl_softc *sc = ifp->if_softc;
386 1.1 cgd register struct ip *ip;
387 1.1 cgd register struct ifqueue *ifq;
388 1.1 cgd int s;
389 1.1 cgd
390 1.1 cgd /*
391 1.1 cgd * `Cannot happen' (see slioctl). Someday we will extend
392 1.1 cgd * the line protocol to support other address families.
393 1.1 cgd */
394 1.1 cgd if (dst->sa_family != AF_INET) {
395 1.44 christos printf("%s: af%d not supported\n", sc->sc_if.if_xname,
396 1.43 christos dst->sa_family);
397 1.1 cgd m_freem(m);
398 1.22 cgd sc->sc_if.if_noproto++;
399 1.1 cgd return (EAFNOSUPPORT);
400 1.1 cgd }
401 1.1 cgd
402 1.1 cgd if (sc->sc_ttyp == NULL) {
403 1.1 cgd m_freem(m);
404 1.1 cgd return (ENETDOWN); /* sort of */
405 1.1 cgd }
406 1.14 mycroft if ((sc->sc_ttyp->t_state & TS_CARR_ON) == 0 &&
407 1.14 mycroft (sc->sc_ttyp->t_cflag & CLOCAL) == 0) {
408 1.1 cgd m_freem(m);
409 1.49 enami printf("%s: no carrier and not local\n", sc->sc_if.if_xname);
410 1.1 cgd return (EHOSTUNREACH);
411 1.1 cgd }
412 1.1 cgd ifq = &sc->sc_if.if_snd;
413 1.22 cgd ip = mtod(m, struct ip *);
414 1.22 cgd if (sc->sc_if.if_flags & SC_NOICMP && ip->ip_p == IPPROTO_ICMP) {
415 1.1 cgd m_freem(m);
416 1.22 cgd return (ENETRESET); /* XXX ? */
417 1.1 cgd }
418 1.22 cgd if (ip->ip_tos & IPTOS_LOWDELAY)
419 1.22 cgd ifq = &sc->sc_fastq;
420 1.1 cgd s = splimp();
421 1.27 cgd if (sc->sc_oqlen && sc->sc_ttyp->t_outq.c_cc == sc->sc_oqlen) {
422 1.35 mycroft struct timeval tv;
423 1.27 cgd
424 1.27 cgd /* if output's been stalled for too long, and restart */
425 1.35 mycroft timersub(&time, &sc->sc_if.if_lastchange, &tv);
426 1.27 cgd if (tv.tv_sec > 0) {
427 1.27 cgd sc->sc_otimeout++;
428 1.27 cgd slstart(sc->sc_ttyp);
429 1.27 cgd }
430 1.27 cgd }
431 1.1 cgd if (IF_QFULL(ifq)) {
432 1.1 cgd IF_DROP(ifq);
433 1.1 cgd m_freem(m);
434 1.1 cgd splx(s);
435 1.1 cgd sc->sc_if.if_oerrors++;
436 1.1 cgd return (ENOBUFS);
437 1.1 cgd }
438 1.1 cgd IF_ENQUEUE(ifq, m);
439 1.1 cgd sc->sc_if.if_lastchange = time;
440 1.27 cgd if ((sc->sc_oqlen = sc->sc_ttyp->t_outq.c_cc) == 0)
441 1.1 cgd slstart(sc->sc_ttyp);
442 1.1 cgd splx(s);
443 1.1 cgd return (0);
444 1.1 cgd }
445 1.1 cgd
446 1.1 cgd /*
447 1.1 cgd * Start output on interface. Get another datagram
448 1.1 cgd * to send from the interface queue and map it to
449 1.1 cgd * the interface before starting output.
450 1.1 cgd */
451 1.9 andrew void
452 1.1 cgd slstart(tp)
453 1.1 cgd register struct tty *tp;
454 1.1 cgd {
455 1.1 cgd register struct sl_softc *sc = (struct sl_softc *)tp->t_sc;
456 1.1 cgd register struct mbuf *m;
457 1.1 cgd register u_char *cp;
458 1.3 cgd register struct ip *ip;
459 1.1 cgd int s;
460 1.1 cgd struct mbuf *m2;
461 1.3 cgd #if NBPFILTER > 0
462 1.3 cgd u_char bpfbuf[SLMTU + SLIP_HDRLEN];
463 1.38 christos register int len = 0;
464 1.3 cgd #endif
465 1.31 cgd #ifndef NetBSD /* XXX - cgd */
466 1.22 cgd extern int cfreecount;
467 1.22 cgd #endif
468 1.1 cgd
469 1.1 cgd for (;;) {
470 1.1 cgd /*
471 1.1 cgd * If there is more in the output queue, just send it now.
472 1.1 cgd * We are being called in lieu of ttstart and must do what
473 1.1 cgd * it would.
474 1.1 cgd */
475 1.10 mycroft if (tp->t_outq.c_cc != 0) {
476 1.1 cgd (*tp->t_oproc)(tp);
477 1.10 mycroft if (tp->t_outq.c_cc > SLIP_HIWAT)
478 1.1 cgd return;
479 1.1 cgd }
480 1.1 cgd /*
481 1.1 cgd * This happens briefly when the line shuts down.
482 1.1 cgd */
483 1.1 cgd if (sc == NULL)
484 1.1 cgd return;
485 1.1 cgd
486 1.31 cgd #ifdef NetBSD /* XXX - cgd */
487 1.1 cgd /*
488 1.3 cgd * Do not remove the packet from the IP queue if it
489 1.3 cgd * doesn't look like the packet will fit into the
490 1.22 cgd * current serial output queue, with a packet full of
491 1.27 cgd * escapes this could be as bad as SLMTU*2+2.
492 1.3 cgd */
493 1.27 cgd if (tp->t_outq.c_cn - tp->t_outq.c_cc < 2*SLMTU+2)
494 1.3 cgd return;
495 1.31 cgd #endif /* NetBSD */
496 1.3 cgd
497 1.3 cgd /*
498 1.1 cgd * Get a packet and send it to the interface.
499 1.1 cgd */
500 1.1 cgd s = splimp();
501 1.1 cgd IF_DEQUEUE(&sc->sc_fastq, m);
502 1.22 cgd if (m)
503 1.22 cgd sc->sc_if.if_omcasts++; /* XXX */
504 1.22 cgd else
505 1.1 cgd IF_DEQUEUE(&sc->sc_if.if_snd, m);
506 1.1 cgd splx(s);
507 1.1 cgd if (m == NULL)
508 1.1 cgd return;
509 1.22 cgd
510 1.1 cgd /*
511 1.22 cgd * We do the header compression here rather than in sloutput
512 1.3 cgd * because the packets will be out of order if we are using TOS
513 1.22 cgd * queueing, and the connection id compression will get
514 1.22 cgd * munged when this happens.
515 1.1 cgd */
516 1.3 cgd #if NBPFILTER > 0
517 1.3 cgd if (sc->sc_bpf) {
518 1.22 cgd /*
519 1.22 cgd * We need to save the TCP/IP header before it's
520 1.22 cgd * compressed. To avoid complicated code, we just
521 1.22 cgd * copy the entire packet into a stack buffer (since
522 1.22 cgd * this is a serial line, packets should be short
523 1.22 cgd * and/or the copy should be negligible cost compared
524 1.22 cgd * to the packet transmission time).
525 1.22 cgd */
526 1.3 cgd register struct mbuf *m1 = m;
527 1.3 cgd register u_char *cp = bpfbuf + SLIP_HDRLEN;
528 1.22 cgd
529 1.3 cgd len = 0;
530 1.3 cgd do {
531 1.3 cgd register int mlen = m1->m_len;
532 1.3 cgd
533 1.3 cgd bcopy(mtod(m1, caddr_t), cp, mlen);
534 1.3 cgd cp += mlen;
535 1.3 cgd len += mlen;
536 1.38 christos } while ((m1 = m1->m_next) != NULL);
537 1.3 cgd }
538 1.3 cgd #endif
539 1.22 cgd if ((ip = mtod(m, struct ip *))->ip_p == IPPROTO_TCP) {
540 1.19 cgd if (sc->sc_if.if_flags & SC_COMPRESS)
541 1.22 cgd *mtod(m, u_char *) |= sl_compress_tcp(m, ip,
542 1.22 cgd &sc->sc_comp, 1);
543 1.3 cgd }
544 1.3 cgd #if NBPFILTER > 0
545 1.3 cgd if (sc->sc_bpf) {
546 1.22 cgd /*
547 1.22 cgd * Put the SLIP pseudo-"link header" in place. The
548 1.22 cgd * compressed header is now at the beginning of the
549 1.22 cgd * mbuf.
550 1.22 cgd */
551 1.3 cgd bpfbuf[SLX_DIR] = SLIPDIR_OUT;
552 1.3 cgd bcopy(mtod(m, caddr_t), &bpfbuf[SLX_CHDR], CHDR_LEN);
553 1.3 cgd bpf_tap(sc->sc_bpf, bpfbuf, len + SLIP_HDRLEN);
554 1.1 cgd }
555 1.3 cgd #endif
556 1.3 cgd sc->sc_if.if_lastchange = time;
557 1.1 cgd
558 1.38 christos #ifndef __NetBSD__ /* XXX - cgd */
559 1.22 cgd /*
560 1.22 cgd * If system is getting low on clists, just flush our
561 1.22 cgd * output queue (if the stuff was important, it'll get
562 1.22 cgd * retransmitted).
563 1.22 cgd */
564 1.22 cgd if (cfreecount < CLISTRESERVE + SLMTU) {
565 1.22 cgd m_freem(m);
566 1.22 cgd sc->sc_if.if_collisions++;
567 1.22 cgd continue;
568 1.22 cgd }
569 1.38 christos #endif /* !__NetBSD__ */
570 1.1 cgd /*
571 1.1 cgd * The extra FRAME_END will start up a new packet, and thus
572 1.1 cgd * will flush any accumulated garbage. We do this whenever
573 1.1 cgd * the line may have been idle for some time.
574 1.1 cgd */
575 1.10 mycroft if (tp->t_outq.c_cc == 0) {
576 1.22 cgd ++sc->sc_if.if_obytes;
577 1.10 mycroft (void) putc(FRAME_END, &tp->t_outq);
578 1.1 cgd }
579 1.1 cgd
580 1.1 cgd while (m) {
581 1.1 cgd register u_char *ep;
582 1.1 cgd
583 1.1 cgd cp = mtod(m, u_char *); ep = cp + m->m_len;
584 1.1 cgd while (cp < ep) {
585 1.1 cgd /*
586 1.1 cgd * Find out how many bytes in the string we can
587 1.1 cgd * handle without doing something special.
588 1.1 cgd */
589 1.1 cgd register u_char *bp = cp;
590 1.1 cgd
591 1.1 cgd while (cp < ep) {
592 1.1 cgd switch (*cp++) {
593 1.1 cgd case FRAME_ESCAPE:
594 1.1 cgd case FRAME_END:
595 1.1 cgd --cp;
596 1.1 cgd goto out;
597 1.1 cgd }
598 1.1 cgd }
599 1.1 cgd out:
600 1.1 cgd if (cp > bp) {
601 1.1 cgd /*
602 1.10 mycroft * Put n characters at once
603 1.1 cgd * into the tty output queue.
604 1.1 cgd */
605 1.38 christos #ifdef __NetBSD__ /* XXX - cgd */
606 1.22 cgd if (b_to_q((u_char *)bp, cp - bp,
607 1.22 cgd #else
608 1.22 cgd if (b_to_q((char *)bp, cp - bp,
609 1.22 cgd #endif
610 1.22 cgd &tp->t_outq))
611 1.10 mycroft break;
612 1.22 cgd sc->sc_if.if_obytes += cp - bp;
613 1.1 cgd }
614 1.1 cgd /*
615 1.1 cgd * If there are characters left in the mbuf,
616 1.1 cgd * the first one must be special..
617 1.1 cgd * Put it out in a different form.
618 1.1 cgd */
619 1.1 cgd if (cp < ep) {
620 1.10 mycroft if (putc(FRAME_ESCAPE, &tp->t_outq))
621 1.1 cgd break;
622 1.1 cgd if (putc(*cp++ == FRAME_ESCAPE ?
623 1.1 cgd TRANS_FRAME_ESCAPE : TRANS_FRAME_END,
624 1.10 mycroft &tp->t_outq)) {
625 1.10 mycroft (void) unputc(&tp->t_outq);
626 1.1 cgd break;
627 1.1 cgd }
628 1.22 cgd sc->sc_if.if_obytes += 2;
629 1.1 cgd }
630 1.1 cgd }
631 1.1 cgd MFREE(m, m2);
632 1.1 cgd m = m2;
633 1.1 cgd }
634 1.1 cgd
635 1.10 mycroft if (putc(FRAME_END, &tp->t_outq)) {
636 1.1 cgd /*
637 1.1 cgd * Not enough room. Remove a char to make room
638 1.1 cgd * and end the packet normally.
639 1.1 cgd * If you get many collisions (more than one or two
640 1.1 cgd * a day) you probably do not have enough clists
641 1.1 cgd * and you should increase "nclist" in param.c.
642 1.1 cgd */
643 1.10 mycroft (void) unputc(&tp->t_outq);
644 1.10 mycroft (void) putc(FRAME_END, &tp->t_outq);
645 1.1 cgd sc->sc_if.if_collisions++;
646 1.1 cgd } else {
647 1.22 cgd ++sc->sc_if.if_obytes;
648 1.1 cgd sc->sc_if.if_opackets++;
649 1.1 cgd }
650 1.1 cgd }
651 1.1 cgd }
652 1.1 cgd
653 1.1 cgd /*
654 1.1 cgd * Copy data buffer to mbuf chain; add ifnet pointer.
655 1.1 cgd */
656 1.1 cgd static struct mbuf *
657 1.1 cgd sl_btom(sc, len)
658 1.1 cgd register struct sl_softc *sc;
659 1.1 cgd register int len;
660 1.1 cgd {
661 1.1 cgd register struct mbuf *m;
662 1.45 thorpej register u_char *p;
663 1.1 cgd
664 1.1 cgd MGETHDR(m, M_DONTWAIT, MT_DATA);
665 1.1 cgd if (m == NULL)
666 1.1 cgd return (NULL);
667 1.1 cgd
668 1.1 cgd /*
669 1.1 cgd * If we have more than MHLEN bytes, it's cheaper to
670 1.1 cgd * queue the cluster we just filled & allocate a new one
671 1.1 cgd * for the input buffer. Otherwise, fill the mbuf we
672 1.1 cgd * allocated above. Note that code in the input routine
673 1.1 cgd * guarantees that packet will fit in a cluster.
674 1.1 cgd */
675 1.1 cgd if (len >= MHLEN) {
676 1.45 thorpej /*
677 1.45 thorpej * XXX this is that evil trick I mentioned...
678 1.45 thorpej */
679 1.45 thorpej p = sc->sc_xxx;
680 1.45 thorpej sc->sc_xxx = (u_char *)malloc(MCLBYTES, M_MBUF, M_NOWAIT);
681 1.45 thorpej if (sc->sc_xxx == NULL) {
682 1.1 cgd /*
683 1.45 thorpej * We couldn't allocate a new buffer - if
684 1.45 thorpej * memory's this low, it's time to start
685 1.45 thorpej * dropping packets.
686 1.1 cgd */
687 1.1 cgd (void) m_free(m);
688 1.1 cgd return (NULL);
689 1.1 cgd }
690 1.45 thorpej sc->sc_ep = sc->sc_xxx + SLBUFSIZE;
691 1.45 thorpej MEXTADD(m, p, MCLBYTES, M_MBUF, NULL, NULL);
692 1.1 cgd m->m_data = (caddr_t)sc->sc_buf;
693 1.1 cgd } else
694 1.1 cgd bcopy((caddr_t)sc->sc_buf, mtod(m, caddr_t), len);
695 1.1 cgd
696 1.1 cgd m->m_len = len;
697 1.1 cgd m->m_pkthdr.len = len;
698 1.1 cgd m->m_pkthdr.rcvif = &sc->sc_if;
699 1.1 cgd return (m);
700 1.1 cgd }
701 1.1 cgd
702 1.1 cgd /*
703 1.1 cgd * tty interface receiver interrupt.
704 1.1 cgd */
705 1.9 andrew void
706 1.1 cgd slinput(c, tp)
707 1.1 cgd register int c;
708 1.1 cgd register struct tty *tp;
709 1.1 cgd {
710 1.1 cgd register struct sl_softc *sc;
711 1.1 cgd register struct mbuf *m;
712 1.1 cgd register int len;
713 1.1 cgd int s;
714 1.3 cgd #if NBPFILTER > 0
715 1.3 cgd u_char chdr[CHDR_LEN];
716 1.3 cgd #endif
717 1.22 cgd
718 1.1 cgd tk_nin++;
719 1.1 cgd sc = (struct sl_softc *)tp->t_sc;
720 1.1 cgd if (sc == NULL)
721 1.1 cgd return;
722 1.47 fvdl if ((c & TTY_ERRORMASK) || ((tp->t_state & TS_CARR_ON) == 0 &&
723 1.22 cgd (tp->t_cflag & CLOCAL) == 0)) {
724 1.2 cgd sc->sc_flags |= SC_ERROR;
725 1.1 cgd return;
726 1.2 cgd }
727 1.22 cgd c &= TTY_CHARMASK;
728 1.1 cgd
729 1.1 cgd ++sc->sc_if.if_ibytes;
730 1.1 cgd
731 1.19 cgd if (sc->sc_if.if_flags & IFF_DEBUG) {
732 1.22 cgd if (c == ABT_ESC) {
733 1.22 cgd /*
734 1.22 cgd * If we have a previous abort, see whether
735 1.22 cgd * this one is within the time limit.
736 1.22 cgd */
737 1.22 cgd if (sc->sc_abortcount &&
738 1.22 cgd time.tv_sec >= sc->sc_starttime + ABT_WINDOW)
739 1.1 cgd sc->sc_abortcount = 0;
740 1.22 cgd /*
741 1.22 cgd * If we see an abort after "idle" time, count it;
742 1.22 cgd * record when the first abort escape arrived.
743 1.22 cgd */
744 1.22 cgd if (time.tv_sec >= sc->sc_lasttime + ABT_IDLE) {
745 1.22 cgd if (++sc->sc_abortcount == 1)
746 1.22 cgd sc->sc_starttime = time.tv_sec;
747 1.22 cgd if (sc->sc_abortcount >= ABT_COUNT) {
748 1.22 cgd slclose(tp);
749 1.22 cgd return;
750 1.22 cgd }
751 1.1 cgd }
752 1.22 cgd } else
753 1.22 cgd sc->sc_abortcount = 0;
754 1.1 cgd sc->sc_lasttime = time.tv_sec;
755 1.1 cgd }
756 1.1 cgd
757 1.1 cgd switch (c) {
758 1.1 cgd
759 1.1 cgd case TRANS_FRAME_ESCAPE:
760 1.1 cgd if (sc->sc_escape)
761 1.1 cgd c = FRAME_ESCAPE;
762 1.1 cgd break;
763 1.1 cgd
764 1.1 cgd case TRANS_FRAME_END:
765 1.1 cgd if (sc->sc_escape)
766 1.1 cgd c = FRAME_END;
767 1.1 cgd break;
768 1.1 cgd
769 1.1 cgd case FRAME_ESCAPE:
770 1.1 cgd sc->sc_escape = 1;
771 1.1 cgd return;
772 1.1 cgd
773 1.1 cgd case FRAME_END:
774 1.3 cgd if(sc->sc_flags & SC_ERROR) {
775 1.2 cgd sc->sc_flags &= ~SC_ERROR;
776 1.2 cgd goto newpack;
777 1.2 cgd }
778 1.1 cgd len = sc->sc_mp - sc->sc_buf;
779 1.1 cgd if (len < 3)
780 1.1 cgd /* less than min length packet - ignore */
781 1.1 cgd goto newpack;
782 1.1 cgd
783 1.3 cgd #if NBPFILTER > 0
784 1.22 cgd if (sc->sc_bpf) {
785 1.3 cgd /*
786 1.23 cgd * Save the compressed header, so we
787 1.28 mycroft * can tack it on later. Note that we
788 1.23 cgd * will end up copying garbage in some
789 1.3 cgd * cases but this is okay. We remember
790 1.3 cgd * where the buffer started so we can
791 1.3 cgd * compute the new header length.
792 1.3 cgd */
793 1.3 cgd bcopy(sc->sc_buf, chdr, CHDR_LEN);
794 1.22 cgd }
795 1.3 cgd #endif
796 1.22 cgd
797 1.1 cgd if ((c = (*sc->sc_buf & 0xf0)) != (IPVERSION << 4)) {
798 1.1 cgd if (c & 0x80)
799 1.1 cgd c = TYPE_COMPRESSED_TCP;
800 1.1 cgd else if (c == TYPE_UNCOMPRESSED_TCP)
801 1.1 cgd *sc->sc_buf &= 0x4f; /* XXX */
802 1.1 cgd /*
803 1.1 cgd * We've got something that's not an IP packet.
804 1.1 cgd * If compression is enabled, try to decompress it.
805 1.1 cgd * Otherwise, if `auto-enable' compression is on and
806 1.1 cgd * it's a reasonable packet, decompress it and then
807 1.1 cgd * enable compression. Otherwise, drop it.
808 1.1 cgd */
809 1.19 cgd if (sc->sc_if.if_flags & SC_COMPRESS) {
810 1.1 cgd len = sl_uncompress_tcp(&sc->sc_buf, len,
811 1.1 cgd (u_int)c, &sc->sc_comp);
812 1.1 cgd if (len <= 0)
813 1.1 cgd goto error;
814 1.19 cgd } else if ((sc->sc_if.if_flags & SC_AUTOCOMP) &&
815 1.1 cgd c == TYPE_UNCOMPRESSED_TCP && len >= 40) {
816 1.1 cgd len = sl_uncompress_tcp(&sc->sc_buf, len,
817 1.1 cgd (u_int)c, &sc->sc_comp);
818 1.1 cgd if (len <= 0)
819 1.1 cgd goto error;
820 1.19 cgd sc->sc_if.if_flags |= SC_COMPRESS;
821 1.1 cgd } else
822 1.1 cgd goto error;
823 1.1 cgd }
824 1.3 cgd #if NBPFILTER > 0
825 1.3 cgd if (sc->sc_bpf) {
826 1.3 cgd /*
827 1.3 cgd * Put the SLIP pseudo-"link header" in place.
828 1.3 cgd * We couldn't do this any earlier since
829 1.3 cgd * decompression probably moved the buffer
830 1.3 cgd * pointer. Then, invoke BPF.
831 1.3 cgd */
832 1.3 cgd register u_char *hp = sc->sc_buf - SLIP_HDRLEN;
833 1.3 cgd
834 1.3 cgd hp[SLX_DIR] = SLIPDIR_IN;
835 1.3 cgd bcopy(chdr, &hp[SLX_CHDR], CHDR_LEN);
836 1.3 cgd bpf_tap(sc->sc_bpf, hp, len + SLIP_HDRLEN);
837 1.3 cgd }
838 1.3 cgd #endif
839 1.1 cgd m = sl_btom(sc, len);
840 1.1 cgd if (m == NULL)
841 1.1 cgd goto error;
842 1.1 cgd
843 1.1 cgd sc->sc_if.if_ipackets++;
844 1.1 cgd sc->sc_if.if_lastchange = time;
845 1.1 cgd s = splimp();
846 1.1 cgd if (IF_QFULL(&ipintrq)) {
847 1.1 cgd IF_DROP(&ipintrq);
848 1.1 cgd sc->sc_if.if_ierrors++;
849 1.1 cgd sc->sc_if.if_iqdrops++;
850 1.1 cgd m_freem(m);
851 1.1 cgd } else {
852 1.1 cgd IF_ENQUEUE(&ipintrq, m);
853 1.1 cgd schednetisr(NETISR_IP);
854 1.1 cgd }
855 1.1 cgd splx(s);
856 1.1 cgd goto newpack;
857 1.1 cgd }
858 1.1 cgd if (sc->sc_mp < sc->sc_ep) {
859 1.1 cgd *sc->sc_mp++ = c;
860 1.1 cgd sc->sc_escape = 0;
861 1.1 cgd return;
862 1.1 cgd }
863 1.22 cgd
864 1.22 cgd /* can't put lower; would miss an extra frame */
865 1.3 cgd sc->sc_flags |= SC_ERROR;
866 1.22 cgd
867 1.1 cgd error:
868 1.1 cgd sc->sc_if.if_ierrors++;
869 1.1 cgd newpack:
870 1.1 cgd sc->sc_mp = sc->sc_buf = sc->sc_ep - SLMAX;
871 1.1 cgd sc->sc_escape = 0;
872 1.1 cgd }
873 1.1 cgd
874 1.1 cgd /*
875 1.1 cgd * Process an ioctl request.
876 1.1 cgd */
877 1.22 cgd int
878 1.1 cgd slioctl(ifp, cmd, data)
879 1.1 cgd register struct ifnet *ifp;
880 1.32 cgd u_long cmd;
881 1.1 cgd caddr_t data;
882 1.1 cgd {
883 1.1 cgd register struct ifaddr *ifa = (struct ifaddr *)data;
884 1.18 hpeyerl register struct ifreq *ifr;
885 1.22 cgd register int s = splimp(), error = 0;
886 1.1 cgd
887 1.1 cgd switch (cmd) {
888 1.1 cgd
889 1.1 cgd case SIOCSIFADDR:
890 1.1 cgd if (ifa->ifa_addr->sa_family == AF_INET)
891 1.1 cgd ifp->if_flags |= IFF_UP;
892 1.1 cgd else
893 1.1 cgd error = EAFNOSUPPORT;
894 1.1 cgd break;
895 1.1 cgd
896 1.1 cgd case SIOCSIFDSTADDR:
897 1.1 cgd if (ifa->ifa_addr->sa_family != AF_INET)
898 1.1 cgd error = EAFNOSUPPORT;
899 1.1 cgd break;
900 1.22 cgd
901 1.18 hpeyerl case SIOCADDMULTI:
902 1.18 hpeyerl case SIOCDELMULTI:
903 1.18 hpeyerl ifr = (struct ifreq *)data;
904 1.18 hpeyerl if (ifr == 0) {
905 1.18 hpeyerl error = EAFNOSUPPORT; /* XXX */
906 1.18 hpeyerl break;
907 1.18 hpeyerl }
908 1.18 hpeyerl switch (ifr->ifr_addr.sa_family) {
909 1.18 hpeyerl
910 1.18 hpeyerl #ifdef INET
911 1.18 hpeyerl case AF_INET:
912 1.18 hpeyerl break;
913 1.18 hpeyerl #endif
914 1.22 cgd
915 1.18 hpeyerl default:
916 1.18 hpeyerl error = EAFNOSUPPORT;
917 1.18 hpeyerl break;
918 1.18 hpeyerl }
919 1.18 hpeyerl break;
920 1.22 cgd
921 1.1 cgd default:
922 1.1 cgd error = EINVAL;
923 1.1 cgd }
924 1.1 cgd splx(s);
925 1.1 cgd return (error);
926 1.1 cgd }
927 1.1 cgd #endif
928