bpf.c revision 1.5.4.3 1 1.1 cgd /*-
2 1.2 cgd * Copyright (c) 1990-1991 The Regents of the University of California.
3 1.1 cgd * All rights reserved.
4 1.1 cgd *
5 1.1 cgd * This code is derived from the Stanford/CMU enet packet filter,
6 1.1 cgd * (net/enet.c) distributed as part of 4.3BSD, and code contributed
7 1.2 cgd * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
8 1.2 cgd * Berkeley Laboratory.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd *
38 1.5 cgd * from: @(#)bpf.c 7.5 (Berkeley) 7/15/91
39 1.5.4.3 cgd * $Id: bpf.c,v 1.5.4.3 1993/11/23 04:52:03 cgd Exp $
40 1.1 cgd */
41 1.1 cgd
42 1.1 cgd #include "bpfilter.h"
43 1.1 cgd
44 1.2 cgd #if NBPFILTER > 0
45 1.1 cgd
46 1.1 cgd #include <sys/param.h>
47 1.1 cgd #include <sys/systm.h>
48 1.1 cgd #include <sys/mbuf.h>
49 1.1 cgd #include <sys/buf.h>
50 1.1 cgd #include <sys/dir.h>
51 1.2 cgd #include <sys/time.h>
52 1.1 cgd #include <sys/proc.h>
53 1.1 cgd #include <sys/user.h>
54 1.1 cgd #include <sys/ioctl.h>
55 1.5 cgd #include <sys/select.h>
56 1.1 cgd
57 1.1 cgd #include <sys/file.h>
58 1.2 cgd #if defined(sparc) && BSD < 199103
59 1.1 cgd #include <sys/stream.h>
60 1.1 cgd #endif
61 1.1 cgd #include <sys/tty.h>
62 1.1 cgd #include <sys/uio.h>
63 1.1 cgd
64 1.1 cgd #include <sys/protosw.h>
65 1.1 cgd #include <sys/socket.h>
66 1.1 cgd #include <net/if.h>
67 1.1 cgd
68 1.1 cgd #include <net/bpf.h>
69 1.1 cgd #include <net/bpfdesc.h>
70 1.1 cgd
71 1.1 cgd #include <sys/errno.h>
72 1.1 cgd
73 1.1 cgd #include <netinet/in.h>
74 1.1 cgd #include <netinet/if_ether.h>
75 1.1 cgd #include <sys/kernel.h>
76 1.5.4.1 mycroft
77 1.5.4.1 mycroft #include <machine/cpu.h>
78 1.1 cgd
79 1.2 cgd /*
80 1.2 cgd * Older BSDs don't have kernel malloc.
81 1.2 cgd */
82 1.2 cgd #if BSD < 199103
83 1.2 cgd extern bcopy();
84 1.2 cgd static caddr_t bpf_alloc();
85 1.2 cgd #include <net/bpf_compat.h>
86 1.2 cgd #define BPF_BUFSIZE (MCLBYTES-8)
87 1.2 cgd #define UIOMOVE(cp, len, code, uio) uiomove(cp, len, code, uio)
88 1.2 cgd #else
89 1.2 cgd #define BPF_BUFSIZE 4096
90 1.2 cgd #define UIOMOVE(cp, len, code, uio) uiomove(cp, len, uio)
91 1.2 cgd #endif
92 1.2 cgd
93 1.1 cgd #define PRINET 26 /* interruptible */
94 1.1 cgd
95 1.1 cgd /*
96 1.1 cgd * The default read buffer size is patchable.
97 1.1 cgd */
98 1.2 cgd int bpf_bufsize = BPF_BUFSIZE;
99 1.1 cgd
100 1.1 cgd /*
101 1.1 cgd * bpf_iflist is the list of interfaces; each corresponds to an ifnet
102 1.1 cgd * bpf_dtab holds the descriptors, indexed by minor device #
103 1.1 cgd */
104 1.2 cgd struct bpf_if *bpf_iflist;
105 1.2 cgd struct bpf_d bpf_dtab[NBPFILTER];
106 1.1 cgd
107 1.1 cgd static void bpf_ifname();
108 1.1 cgd static void catchpacket();
109 1.2 cgd static void bpf_freed();
110 1.1 cgd static int bpf_setif();
111 1.1 cgd static int bpf_initd();
112 1.2 cgd static int bpf_allocbufs();
113 1.5.4.2 mycroft
114 1.5.4.2 mycroft void
115 1.5.4.2 mycroft bpfilterattach(n)
116 1.5.4.2 mycroft int n;
117 1.5.4.2 mycroft {
118 1.5.4.2 mycroft }
119 1.1 cgd
120 1.1 cgd static int
121 1.1 cgd bpf_movein(uio, linktype, mp, sockp)
122 1.1 cgd register struct uio *uio;
123 1.1 cgd int linktype;
124 1.1 cgd register struct mbuf **mp;
125 1.1 cgd register struct sockaddr *sockp;
126 1.1 cgd {
127 1.1 cgd struct mbuf *m;
128 1.1 cgd int error;
129 1.1 cgd int len;
130 1.1 cgd int hlen;
131 1.1 cgd
132 1.1 cgd /*
133 1.1 cgd * Build a sockaddr based on the data link layer type.
134 1.1 cgd * We do this at this level because the ethernet header
135 1.1 cgd * is copied directly into the data field of the sockaddr.
136 1.1 cgd * In the case of SLIP, there is no header and the packet
137 1.1 cgd * is forwarded as is.
138 1.1 cgd * Also, we are careful to leave room at the front of the mbuf
139 1.1 cgd * for the link level header.
140 1.1 cgd */
141 1.1 cgd switch (linktype) {
142 1.2 cgd
143 1.1 cgd case DLT_SLIP:
144 1.1 cgd sockp->sa_family = AF_INET;
145 1.1 cgd hlen = 0;
146 1.1 cgd break;
147 1.1 cgd
148 1.1 cgd case DLT_EN10MB:
149 1.1 cgd sockp->sa_family = AF_UNSPEC;
150 1.1 cgd /* XXX Would MAXLINKHDR be better? */
151 1.1 cgd hlen = sizeof(struct ether_header);
152 1.1 cgd break;
153 1.1 cgd
154 1.2 cgd case DLT_FDDI:
155 1.1 cgd sockp->sa_family = AF_UNSPEC;
156 1.1 cgd /* XXX 4(FORMAC)+6(dst)+6(src)+3(LLC)+5(SNAP) */
157 1.1 cgd hlen = 24;
158 1.1 cgd break;
159 1.1 cgd
160 1.2 cgd case DLT_NULL:
161 1.2 cgd sockp->sa_family = AF_UNSPEC;
162 1.2 cgd hlen = 0;
163 1.2 cgd break;
164 1.2 cgd
165 1.1 cgd default:
166 1.1 cgd return (EIO);
167 1.1 cgd }
168 1.1 cgd
169 1.1 cgd len = uio->uio_resid;
170 1.1 cgd if ((unsigned)len > MCLBYTES)
171 1.1 cgd return (EIO);
172 1.1 cgd
173 1.1 cgd MGET(m, M_WAIT, MT_DATA);
174 1.1 cgd if (m == 0)
175 1.1 cgd return (ENOBUFS);
176 1.1 cgd if (len > MLEN) {
177 1.2 cgd #if BSD >= 199103
178 1.1 cgd MCLGET(m, M_WAIT);
179 1.1 cgd if ((m->m_flags & M_EXT) == 0) {
180 1.2 cgd #else
181 1.2 cgd MCLGET(m);
182 1.2 cgd if (m->m_len != MCLBYTES) {
183 1.2 cgd #endif
184 1.1 cgd error = ENOBUFS;
185 1.1 cgd goto bad;
186 1.1 cgd }
187 1.1 cgd }
188 1.1 cgd m->m_len = len;
189 1.1 cgd *mp = m;
190 1.1 cgd /*
191 1.1 cgd * Make room for link header.
192 1.1 cgd */
193 1.2 cgd if (hlen != 0) {
194 1.1 cgd m->m_len -= hlen;
195 1.2 cgd #if BSD >= 199103
196 1.1 cgd m->m_data += hlen; /* XXX */
197 1.2 cgd #else
198 1.2 cgd m->m_off += hlen;
199 1.2 cgd #endif
200 1.2 cgd error = UIOMOVE((caddr_t)sockp->sa_data, hlen, UIO_WRITE, uio);
201 1.1 cgd if (error)
202 1.1 cgd goto bad;
203 1.1 cgd }
204 1.2 cgd error = UIOMOVE(mtod(m, caddr_t), len - hlen, UIO_WRITE, uio);
205 1.2 cgd if (!error)
206 1.1 cgd return (0);
207 1.1 cgd bad:
208 1.1 cgd m_freem(m);
209 1.1 cgd return (error);
210 1.1 cgd }
211 1.1 cgd
212 1.1 cgd /*
213 1.2 cgd * Attach file to the bpf interface, i.e. make d listen on bp.
214 1.1 cgd * Must be called at splimp.
215 1.1 cgd */
216 1.1 cgd static void
217 1.1 cgd bpf_attachd(d, bp)
218 1.1 cgd struct bpf_d *d;
219 1.1 cgd struct bpf_if *bp;
220 1.1 cgd {
221 1.2 cgd /*
222 1.2 cgd * Point d at bp, and add d to the interface's list of listeners.
223 1.2 cgd * Finally, point the driver's bpf cookie at the interface so
224 1.2 cgd * it will divert packets to bpf.
225 1.2 cgd */
226 1.1 cgd d->bd_bif = bp;
227 1.1 cgd d->bd_next = bp->bif_dlist;
228 1.1 cgd bp->bif_dlist = d;
229 1.1 cgd
230 1.1 cgd *bp->bif_driverp = bp;
231 1.1 cgd }
232 1.1 cgd
233 1.2 cgd /*
234 1.2 cgd * Detach a file from its interface.
235 1.2 cgd */
236 1.1 cgd static void
237 1.1 cgd bpf_detachd(d)
238 1.1 cgd struct bpf_d *d;
239 1.1 cgd {
240 1.1 cgd struct bpf_d **p;
241 1.1 cgd struct bpf_if *bp;
242 1.1 cgd
243 1.1 cgd bp = d->bd_bif;
244 1.1 cgd /*
245 1.1 cgd * Check if this descriptor had requested promiscuous mode.
246 1.1 cgd * If so, turn it off.
247 1.1 cgd */
248 1.1 cgd if (d->bd_promisc) {
249 1.1 cgd d->bd_promisc = 0;
250 1.1 cgd if (ifpromisc(bp->bif_ifp, 0))
251 1.1 cgd /*
252 1.1 cgd * Something is really wrong if we were able to put
253 1.1 cgd * the driver into promiscuous mode, but can't
254 1.1 cgd * take it out.
255 1.1 cgd */
256 1.2 cgd panic("bpf: ifpromisc failed");
257 1.1 cgd }
258 1.2 cgd /* Remove d from the interface's descriptor list. */
259 1.1 cgd p = &bp->bif_dlist;
260 1.1 cgd while (*p != d) {
261 1.1 cgd p = &(*p)->bd_next;
262 1.1 cgd if (*p == 0)
263 1.1 cgd panic("bpf_detachd: descriptor not in list");
264 1.1 cgd }
265 1.1 cgd *p = (*p)->bd_next;
266 1.1 cgd if (bp->bif_dlist == 0)
267 1.1 cgd /*
268 1.1 cgd * Let the driver know that there are no more listeners.
269 1.1 cgd */
270 1.1 cgd *d->bd_bif->bif_driverp = 0;
271 1.1 cgd d->bd_bif = 0;
272 1.1 cgd }
273 1.1 cgd
274 1.1 cgd
275 1.1 cgd /*
276 1.2 cgd * Mark a descriptor free by making it point to itself.
277 1.1 cgd * This is probably cheaper than marking with a constant since
278 1.1 cgd * the address should be in a register anyway.
279 1.1 cgd */
280 1.1 cgd #define D_ISFREE(d) ((d) == (d)->bd_next)
281 1.1 cgd #define D_MARKFREE(d) ((d)->bd_next = (d))
282 1.1 cgd #define D_MARKUSED(d) ((d)->bd_next = 0)
283 1.1 cgd
284 1.1 cgd /*
285 1.2 cgd * Open ethernet device. Returns ENXIO for illegal minor device number,
286 1.2 cgd * EBUSY if file is open by another process.
287 1.1 cgd */
288 1.1 cgd /* ARGSUSED */
289 1.1 cgd int
290 1.1 cgd bpfopen(dev, flag)
291 1.1 cgd dev_t dev;
292 1.1 cgd int flag;
293 1.1 cgd {
294 1.1 cgd register struct bpf_d *d;
295 1.2 cgd
296 1.1 cgd if (minor(dev) >= NBPFILTER)
297 1.1 cgd return (ENXIO);
298 1.1 cgd /*
299 1.1 cgd * Each minor can be opened by only one process. If the requested
300 1.1 cgd * minor is in use, return EBUSY.
301 1.1 cgd */
302 1.1 cgd d = &bpf_dtab[minor(dev)];
303 1.2 cgd if (!D_ISFREE(d))
304 1.1 cgd return (EBUSY);
305 1.2 cgd
306 1.2 cgd /* Mark "free" and do most initialization. */
307 1.2 cgd bzero((char *)d, sizeof(*d));
308 1.2 cgd d->bd_bufsize = bpf_bufsize;
309 1.1 cgd
310 1.1 cgd return (0);
311 1.1 cgd }
312 1.1 cgd
313 1.1 cgd /*
314 1.1 cgd * Close the descriptor by detaching it from its interface,
315 1.1 cgd * deallocating its buffers, and marking it free.
316 1.1 cgd */
317 1.1 cgd /* ARGSUSED */
318 1.2 cgd int
319 1.1 cgd bpfclose(dev, flag)
320 1.1 cgd dev_t dev;
321 1.1 cgd int flag;
322 1.1 cgd {
323 1.1 cgd register struct bpf_d *d = &bpf_dtab[minor(dev)];
324 1.2 cgd register int s;
325 1.1 cgd
326 1.1 cgd s = splimp();
327 1.1 cgd if (d->bd_bif)
328 1.1 cgd bpf_detachd(d);
329 1.1 cgd splx(s);
330 1.2 cgd bpf_freed(d);
331 1.2 cgd
332 1.2 cgd return (0);
333 1.2 cgd }
334 1.2 cgd
335 1.2 cgd /*
336 1.2 cgd * Support for SunOS, which does not have tsleep.
337 1.2 cgd */
338 1.2 cgd #if BSD < 199103
339 1.2 cgd static
340 1.2 cgd bpf_timeout(arg)
341 1.2 cgd caddr_t arg;
342 1.2 cgd {
343 1.2 cgd struct bpf_d *d = (struct bpf_d *)arg;
344 1.2 cgd d->bd_timedout = 1;
345 1.2 cgd wakeup(arg);
346 1.2 cgd }
347 1.2 cgd
348 1.2 cgd #define BPF_SLEEP(chan, pri, s, t) bpf_sleep((struct bpf_d *)chan)
349 1.2 cgd
350 1.2 cgd int
351 1.2 cgd bpf_sleep(d)
352 1.2 cgd register struct bpf_d *d;
353 1.2 cgd {
354 1.2 cgd register int rto = d->bd_rtout;
355 1.2 cgd register int st;
356 1.1 cgd
357 1.2 cgd if (rto != 0) {
358 1.2 cgd d->bd_timedout = 0;
359 1.2 cgd timeout(bpf_timeout, (caddr_t)d, rto);
360 1.2 cgd }
361 1.2 cgd st = sleep((caddr_t)d, PRINET|PCATCH);
362 1.2 cgd if (rto != 0) {
363 1.2 cgd if (d->bd_timedout == 0)
364 1.2 cgd untimeout(bpf_timeout, (caddr_t)d);
365 1.2 cgd else if (st == 0)
366 1.2 cgd return EWOULDBLOCK;
367 1.2 cgd }
368 1.2 cgd return (st != 0) ? EINTR : 0;
369 1.1 cgd }
370 1.2 cgd #else
371 1.2 cgd #define BPF_SLEEP tsleep
372 1.2 cgd #endif
373 1.1 cgd
374 1.1 cgd /*
375 1.1 cgd * Rotate the packet buffers in descriptor d. Move the store buffer
376 1.2 cgd * into the hold slot, and the free buffer into the store slot.
377 1.1 cgd * Zero the length of the new store buffer.
378 1.1 cgd */
379 1.1 cgd #define ROTATE_BUFFERS(d) \
380 1.1 cgd (d)->bd_hbuf = (d)->bd_sbuf; \
381 1.1 cgd (d)->bd_hlen = (d)->bd_slen; \
382 1.1 cgd (d)->bd_sbuf = (d)->bd_fbuf; \
383 1.1 cgd (d)->bd_slen = 0; \
384 1.2 cgd (d)->bd_fbuf = 0;
385 1.1 cgd /*
386 1.1 cgd * bpfread - read next chunk of packets from buffers
387 1.1 cgd */
388 1.1 cgd int
389 1.1 cgd bpfread(dev, uio)
390 1.1 cgd dev_t dev;
391 1.1 cgd register struct uio *uio;
392 1.1 cgd {
393 1.1 cgd register struct bpf_d *d = &bpf_dtab[minor(dev)];
394 1.1 cgd int error;
395 1.1 cgd int s;
396 1.1 cgd
397 1.1 cgd /*
398 1.2 cgd * Restrict application to use a buffer the same size as
399 1.1 cgd * as kernel buffers.
400 1.1 cgd */
401 1.1 cgd if (uio->uio_resid != d->bd_bufsize)
402 1.1 cgd return (EINVAL);
403 1.1 cgd
404 1.1 cgd s = splimp();
405 1.1 cgd /*
406 1.2 cgd * If the hold buffer is empty, then do a timed sleep, which
407 1.2 cgd * ends when the timeout expires or when enough packets
408 1.2 cgd * have arrived to fill the store buffer.
409 1.1 cgd */
410 1.1 cgd while (d->bd_hbuf == 0) {
411 1.1 cgd if (d->bd_immediate && d->bd_slen != 0) {
412 1.1 cgd /*
413 1.1 cgd * A packet(s) either arrived since the previous
414 1.1 cgd * read or arrived while we were asleep.
415 1.1 cgd * Rotate the buffers and return what's here.
416 1.1 cgd */
417 1.1 cgd ROTATE_BUFFERS(d);
418 1.1 cgd break;
419 1.1 cgd }
420 1.2 cgd error = BPF_SLEEP((caddr_t)d, PRINET|PCATCH, "bpf",
421 1.2 cgd d->bd_rtout);
422 1.1 cgd if (error == EINTR || error == ERESTART) {
423 1.1 cgd splx(s);
424 1.1 cgd return (error);
425 1.1 cgd }
426 1.1 cgd if (error == EWOULDBLOCK) {
427 1.1 cgd /*
428 1.1 cgd * On a timeout, return what's in the buffer,
429 1.1 cgd * which may be nothing. If there is something
430 1.1 cgd * in the store buffer, we can rotate the buffers.
431 1.1 cgd */
432 1.1 cgd if (d->bd_hbuf)
433 1.1 cgd /*
434 1.2 cgd * We filled up the buffer in between
435 1.1 cgd * getting the timeout and arriving
436 1.1 cgd * here, so we don't need to rotate.
437 1.1 cgd */
438 1.1 cgd break;
439 1.1 cgd
440 1.1 cgd if (d->bd_slen == 0) {
441 1.1 cgd splx(s);
442 1.1 cgd return (0);
443 1.1 cgd }
444 1.1 cgd ROTATE_BUFFERS(d);
445 1.1 cgd break;
446 1.1 cgd }
447 1.1 cgd }
448 1.1 cgd /*
449 1.1 cgd * At this point, we know we have something in the hold slot.
450 1.1 cgd */
451 1.1 cgd splx(s);
452 1.2 cgd
453 1.2 cgd /*
454 1.1 cgd * Move data from hold buffer into user space.
455 1.1 cgd * We know the entire buffer is transferred since
456 1.1 cgd * we checked above that the read buffer is bpf_bufsize bytes.
457 1.1 cgd */
458 1.2 cgd error = UIOMOVE(d->bd_hbuf, d->bd_hlen, UIO_READ, uio);
459 1.1 cgd
460 1.1 cgd s = splimp();
461 1.1 cgd d->bd_fbuf = d->bd_hbuf;
462 1.1 cgd d->bd_hbuf = 0;
463 1.2 cgd d->bd_hlen = 0;
464 1.1 cgd splx(s);
465 1.2 cgd
466 1.1 cgd return (error);
467 1.1 cgd }
468 1.1 cgd
469 1.1 cgd
470 1.1 cgd /*
471 1.2 cgd * If there are processes sleeping on this descriptor, wake them up.
472 1.1 cgd */
473 1.1 cgd static inline void
474 1.1 cgd bpf_wakeup(d)
475 1.1 cgd register struct bpf_d *d;
476 1.1 cgd {
477 1.1 cgd wakeup((caddr_t)d);
478 1.5.4.3 cgd #if (BSD > 199103) || defined(__NetBSD__)
479 1.2 cgd selwakeup(&d->bd_sel);
480 1.2 cgd /* XXX */
481 1.2 cgd d->bd_sel.si_pid = 0;
482 1.2 cgd #else
483 1.1 cgd if (d->bd_selproc) {
484 1.1 cgd selwakeup(d->bd_selproc, (int)d->bd_selcoll);
485 1.1 cgd d->bd_selcoll = 0;
486 1.1 cgd d->bd_selproc = 0;
487 1.1 cgd }
488 1.2 cgd #endif
489 1.1 cgd }
490 1.1 cgd
491 1.1 cgd int
492 1.1 cgd bpfwrite(dev, uio)
493 1.1 cgd dev_t dev;
494 1.1 cgd struct uio *uio;
495 1.1 cgd {
496 1.1 cgd register struct bpf_d *d = &bpf_dtab[minor(dev)];
497 1.1 cgd struct ifnet *ifp;
498 1.1 cgd struct mbuf *m;
499 1.1 cgd int error, s;
500 1.1 cgd static struct sockaddr dst;
501 1.1 cgd
502 1.1 cgd if (d->bd_bif == 0)
503 1.1 cgd return (ENXIO);
504 1.1 cgd
505 1.1 cgd ifp = d->bd_bif->bif_ifp;
506 1.1 cgd
507 1.1 cgd if (uio->uio_resid == 0)
508 1.1 cgd return (0);
509 1.1 cgd if (uio->uio_resid > ifp->if_mtu)
510 1.1 cgd return (EMSGSIZE);
511 1.1 cgd
512 1.1 cgd error = bpf_movein(uio, (int)d->bd_bif->bif_dlt, &m, &dst);
513 1.1 cgd if (error)
514 1.1 cgd return (error);
515 1.1 cgd
516 1.1 cgd s = splnet();
517 1.2 cgd #if BSD >= 199103
518 1.2 cgd error = (*ifp->if_output)(ifp, m, &dst, (struct rtentry *)0);
519 1.2 cgd #else
520 1.1 cgd error = (*ifp->if_output)(ifp, m, &dst);
521 1.2 cgd #endif
522 1.1 cgd splx(s);
523 1.1 cgd /*
524 1.2 cgd * The driver frees the mbuf.
525 1.1 cgd */
526 1.1 cgd return (error);
527 1.1 cgd }
528 1.1 cgd
529 1.1 cgd /*
530 1.2 cgd * Reset a descriptor by flushing its packet buffer and clearing the
531 1.2 cgd * receive and drop counts. Should be called at splimp.
532 1.1 cgd */
533 1.1 cgd static void
534 1.1 cgd reset_d(d)
535 1.1 cgd struct bpf_d *d;
536 1.1 cgd {
537 1.1 cgd if (d->bd_hbuf) {
538 1.1 cgd /* Free the hold buffer. */
539 1.1 cgd d->bd_fbuf = d->bd_hbuf;
540 1.1 cgd d->bd_hbuf = 0;
541 1.1 cgd }
542 1.1 cgd d->bd_slen = 0;
543 1.2 cgd d->bd_hlen = 0;
544 1.1 cgd d->bd_rcount = 0;
545 1.1 cgd d->bd_dcount = 0;
546 1.1 cgd }
547 1.1 cgd
548 1.1 cgd /*
549 1.1 cgd * FIONREAD Check for read packet available.
550 1.1 cgd * SIOCGIFADDR Get interface address - convenient hook to driver.
551 1.1 cgd * BIOCGBLEN Get buffer len [for read()].
552 1.1 cgd * BIOCSETF Set ethernet read filter.
553 1.1 cgd * BIOCFLUSH Flush read packet buffer.
554 1.1 cgd * BIOCPROMISC Put interface into promiscuous mode.
555 1.1 cgd * BIOCGDLT Get link layer type.
556 1.1 cgd * BIOCGETIF Get interface name.
557 1.1 cgd * BIOCSETIF Set interface.
558 1.1 cgd * BIOCSRTIMEOUT Set read timeout.
559 1.1 cgd * BIOCGRTIMEOUT Get read timeout.
560 1.1 cgd * BIOCGSTATS Get packet stats.
561 1.1 cgd * BIOCIMMEDIATE Set immediate mode.
562 1.2 cgd * BIOCVERSION Get filter language version.
563 1.1 cgd */
564 1.1 cgd /* ARGSUSED */
565 1.1 cgd int
566 1.1 cgd bpfioctl(dev, cmd, addr, flag)
567 1.1 cgd dev_t dev;
568 1.1 cgd int cmd;
569 1.1 cgd caddr_t addr;
570 1.1 cgd int flag;
571 1.1 cgd {
572 1.1 cgd register struct bpf_d *d = &bpf_dtab[minor(dev)];
573 1.1 cgd int s, error = 0;
574 1.1 cgd
575 1.1 cgd switch (cmd) {
576 1.1 cgd
577 1.1 cgd default:
578 1.1 cgd error = EINVAL;
579 1.1 cgd break;
580 1.1 cgd
581 1.1 cgd /*
582 1.1 cgd * Check for read packet available.
583 1.1 cgd */
584 1.1 cgd case FIONREAD:
585 1.1 cgd {
586 1.1 cgd int n;
587 1.2 cgd
588 1.1 cgd s = splimp();
589 1.1 cgd n = d->bd_slen;
590 1.2 cgd if (d->bd_hbuf)
591 1.1 cgd n += d->bd_hlen;
592 1.1 cgd splx(s);
593 1.1 cgd
594 1.1 cgd *(int *)addr = n;
595 1.1 cgd break;
596 1.1 cgd }
597 1.1 cgd
598 1.1 cgd case SIOCGIFADDR:
599 1.1 cgd {
600 1.1 cgd struct ifnet *ifp;
601 1.1 cgd
602 1.1 cgd if (d->bd_bif == 0)
603 1.1 cgd error = EINVAL;
604 1.1 cgd else {
605 1.1 cgd ifp = d->bd_bif->bif_ifp;
606 1.2 cgd error = (*ifp->if_ioctl)(ifp, cmd, addr);
607 1.1 cgd }
608 1.1 cgd break;
609 1.1 cgd }
610 1.1 cgd
611 1.1 cgd /*
612 1.2 cgd * Get buffer len [for read()].
613 1.1 cgd */
614 1.2 cgd case BIOCGBLEN:
615 1.2 cgd *(u_int *)addr = d->bd_bufsize;
616 1.1 cgd break;
617 1.2 cgd
618 1.1 cgd /*
619 1.2 cgd * Set buffer length.
620 1.1 cgd */
621 1.2 cgd case BIOCSBLEN:
622 1.2 cgd #if BSD < 199103
623 1.2 cgd error = EINVAL;
624 1.2 cgd #else
625 1.2 cgd if (d->bd_bif != 0)
626 1.2 cgd error = EINVAL;
627 1.2 cgd else {
628 1.2 cgd register u_int size = *(u_int *)addr;
629 1.2 cgd
630 1.2 cgd if (size > BPF_MAXBUFSIZE)
631 1.2 cgd *(u_int *)addr = size = BPF_MAXBUFSIZE;
632 1.2 cgd else if (size < BPF_MINBUFSIZE)
633 1.2 cgd *(u_int *)addr = size = BPF_MINBUFSIZE;
634 1.2 cgd d->bd_bufsize = size;
635 1.2 cgd }
636 1.2 cgd #endif
637 1.1 cgd break;
638 1.1 cgd
639 1.1 cgd /*
640 1.2 cgd * Set link layer read filter.
641 1.1 cgd */
642 1.2 cgd case BIOCSETF:
643 1.1 cgd error = bpf_setf(d, (struct bpf_program *)addr);
644 1.1 cgd break;
645 1.1 cgd
646 1.1 cgd /*
647 1.1 cgd * Flush read packet buffer.
648 1.1 cgd */
649 1.1 cgd case BIOCFLUSH:
650 1.1 cgd s = splimp();
651 1.1 cgd reset_d(d);
652 1.1 cgd splx(s);
653 1.1 cgd break;
654 1.1 cgd
655 1.1 cgd /*
656 1.1 cgd * Put interface into promiscuous mode.
657 1.1 cgd */
658 1.1 cgd case BIOCPROMISC:
659 1.1 cgd if (d->bd_bif == 0) {
660 1.1 cgd /*
661 1.1 cgd * No interface attached yet.
662 1.1 cgd */
663 1.1 cgd error = EINVAL;
664 1.1 cgd break;
665 1.1 cgd }
666 1.1 cgd s = splimp();
667 1.1 cgd if (d->bd_promisc == 0) {
668 1.1 cgd error = ifpromisc(d->bd_bif->bif_ifp, 1);
669 1.2 cgd if (error == 0)
670 1.2 cgd d->bd_promisc = 1;
671 1.1 cgd }
672 1.1 cgd splx(s);
673 1.1 cgd break;
674 1.1 cgd
675 1.1 cgd /*
676 1.1 cgd * Get device parameters.
677 1.1 cgd */
678 1.1 cgd case BIOCGDLT:
679 1.1 cgd if (d->bd_bif == 0)
680 1.1 cgd error = EINVAL;
681 1.1 cgd else
682 1.1 cgd *(u_int *)addr = d->bd_bif->bif_dlt;
683 1.1 cgd break;
684 1.1 cgd
685 1.1 cgd /*
686 1.1 cgd * Set interface name.
687 1.1 cgd */
688 1.1 cgd case BIOCGETIF:
689 1.1 cgd if (d->bd_bif == 0)
690 1.1 cgd error = EINVAL;
691 1.1 cgd else
692 1.1 cgd bpf_ifname(d->bd_bif->bif_ifp, (struct ifreq *)addr);
693 1.1 cgd break;
694 1.1 cgd
695 1.1 cgd /*
696 1.1 cgd * Set interface.
697 1.1 cgd */
698 1.1 cgd case BIOCSETIF:
699 1.1 cgd error = bpf_setif(d, (struct ifreq *)addr);
700 1.1 cgd break;
701 1.1 cgd
702 1.1 cgd /*
703 1.1 cgd * Set read timeout.
704 1.1 cgd */
705 1.2 cgd case BIOCSRTIMEOUT:
706 1.1 cgd {
707 1.1 cgd struct timeval *tv = (struct timeval *)addr;
708 1.1 cgd u_long msec;
709 1.1 cgd
710 1.1 cgd /* Compute number of milliseconds. */
711 1.1 cgd msec = tv->tv_sec * 1000 + tv->tv_usec / 1000;
712 1.1 cgd /* Scale milliseconds to ticks. Assume hard
713 1.1 cgd clock has millisecond or greater resolution
714 1.1 cgd (i.e. tick >= 1000). For 10ms hardclock,
715 1.1 cgd tick/1000 = 10, so rtout<-msec/10. */
716 1.1 cgd d->bd_rtout = msec / (tick / 1000);
717 1.1 cgd break;
718 1.1 cgd }
719 1.1 cgd
720 1.1 cgd /*
721 1.1 cgd * Get read timeout.
722 1.1 cgd */
723 1.2 cgd case BIOCGRTIMEOUT:
724 1.1 cgd {
725 1.1 cgd struct timeval *tv = (struct timeval *)addr;
726 1.1 cgd u_long msec = d->bd_rtout;
727 1.1 cgd
728 1.1 cgd msec *= tick / 1000;
729 1.1 cgd tv->tv_sec = msec / 1000;
730 1.1 cgd tv->tv_usec = msec % 1000;
731 1.1 cgd break;
732 1.1 cgd }
733 1.1 cgd
734 1.1 cgd /*
735 1.1 cgd * Get packet stats.
736 1.1 cgd */
737 1.1 cgd case BIOCGSTATS:
738 1.1 cgd {
739 1.1 cgd struct bpf_stat *bs = (struct bpf_stat *)addr;
740 1.1 cgd
741 1.1 cgd bs->bs_recv = d->bd_rcount;
742 1.1 cgd bs->bs_drop = d->bd_dcount;
743 1.1 cgd break;
744 1.1 cgd }
745 1.1 cgd
746 1.1 cgd /*
747 1.1 cgd * Set immediate mode.
748 1.1 cgd */
749 1.1 cgd case BIOCIMMEDIATE:
750 1.1 cgd d->bd_immediate = *(u_int *)addr;
751 1.1 cgd break;
752 1.2 cgd
753 1.2 cgd case BIOCVERSION:
754 1.2 cgd {
755 1.2 cgd struct bpf_version *bv = (struct bpf_version *)addr;
756 1.2 cgd
757 1.2 cgd bv->bv_major = BPF_MAJOR_VERSION;
758 1.2 cgd bv->bv_minor = BPF_MINOR_VERSION;
759 1.2 cgd break;
760 1.2 cgd }
761 1.1 cgd }
762 1.1 cgd return (error);
763 1.1 cgd }
764 1.1 cgd
765 1.2 cgd /*
766 1.2 cgd * Set d's packet filter program to fp. If this file already has a filter,
767 1.1 cgd * free it and replace it. Returns EINVAL for bogus requests.
768 1.1 cgd */
769 1.1 cgd int
770 1.1 cgd bpf_setf(d, fp)
771 1.1 cgd struct bpf_d *d;
772 1.1 cgd struct bpf_program *fp;
773 1.1 cgd {
774 1.1 cgd struct bpf_insn *fcode, *old;
775 1.1 cgd u_int flen, size;
776 1.1 cgd int s;
777 1.1 cgd
778 1.1 cgd old = d->bd_filter;
779 1.1 cgd if (fp->bf_insns == 0) {
780 1.1 cgd if (fp->bf_len != 0)
781 1.1 cgd return (EINVAL);
782 1.1 cgd s = splimp();
783 1.1 cgd d->bd_filter = 0;
784 1.1 cgd reset_d(d);
785 1.1 cgd splx(s);
786 1.1 cgd if (old != 0)
787 1.1 cgd free((caddr_t)old, M_DEVBUF);
788 1.1 cgd return (0);
789 1.1 cgd }
790 1.1 cgd flen = fp->bf_len;
791 1.1 cgd if (flen > BPF_MAXINSNS)
792 1.1 cgd return (EINVAL);
793 1.1 cgd
794 1.1 cgd size = flen * sizeof(*fp->bf_insns);
795 1.1 cgd fcode = (struct bpf_insn *)malloc(size, M_DEVBUF, M_WAITOK);
796 1.2 cgd if (copyin((caddr_t)fp->bf_insns, (caddr_t)fcode, size) == 0 &&
797 1.2 cgd bpf_validate(fcode, (int)flen)) {
798 1.1 cgd s = splimp();
799 1.1 cgd d->bd_filter = fcode;
800 1.1 cgd reset_d(d);
801 1.1 cgd splx(s);
802 1.1 cgd if (old != 0)
803 1.1 cgd free((caddr_t)old, M_DEVBUF);
804 1.1 cgd
805 1.1 cgd return (0);
806 1.1 cgd }
807 1.1 cgd free((caddr_t)fcode, M_DEVBUF);
808 1.1 cgd return (EINVAL);
809 1.1 cgd }
810 1.1 cgd
811 1.1 cgd /*
812 1.2 cgd * Detach a file from its current interface (if attached at all) and attach
813 1.2 cgd * to the interface indicated by the name stored in ifr.
814 1.2 cgd * Return an errno or 0.
815 1.1 cgd */
816 1.1 cgd static int
817 1.1 cgd bpf_setif(d, ifr)
818 1.1 cgd struct bpf_d *d;
819 1.1 cgd struct ifreq *ifr;
820 1.1 cgd {
821 1.1 cgd struct bpf_if *bp;
822 1.1 cgd char *cp;
823 1.2 cgd int unit, s, error;
824 1.1 cgd
825 1.1 cgd /*
826 1.1 cgd * Separate string into name part and unit number. Put a null
827 1.2 cgd * byte at the end of the name part, and compute the number.
828 1.1 cgd * If the a unit number is unspecified, the default is 0,
829 1.1 cgd * as initialized above. XXX This should be common code.
830 1.1 cgd */
831 1.1 cgd unit = 0;
832 1.1 cgd cp = ifr->ifr_name;
833 1.1 cgd cp[sizeof(ifr->ifr_name) - 1] = '\0';
834 1.1 cgd while (*cp++) {
835 1.1 cgd if (*cp >= '0' && *cp <= '9') {
836 1.1 cgd unit = *cp - '0';
837 1.1 cgd *cp++ = '\0';
838 1.1 cgd while (*cp)
839 1.1 cgd unit = 10 * unit + *cp++ - '0';
840 1.1 cgd break;
841 1.1 cgd }
842 1.1 cgd }
843 1.1 cgd /*
844 1.1 cgd * Look through attached interfaces for the named one.
845 1.1 cgd */
846 1.1 cgd for (bp = bpf_iflist; bp != 0; bp = bp->bif_next) {
847 1.1 cgd struct ifnet *ifp = bp->bif_ifp;
848 1.1 cgd
849 1.2 cgd if (ifp == 0 || unit != ifp->if_unit
850 1.1 cgd || strcmp(ifp->if_name, ifr->ifr_name) != 0)
851 1.1 cgd continue;
852 1.1 cgd /*
853 1.2 cgd * We found the requested interface.
854 1.1 cgd * If it's not up, return an error.
855 1.2 cgd * Allocate the packet buffers if we need to.
856 1.2 cgd * If we're already attached to requested interface,
857 1.2 cgd * just flush the buffer.
858 1.1 cgd */
859 1.1 cgd if ((ifp->if_flags & IFF_UP) == 0)
860 1.1 cgd return (ENETDOWN);
861 1.2 cgd
862 1.2 cgd if (d->bd_sbuf == 0) {
863 1.2 cgd error = bpf_allocbufs(d);
864 1.2 cgd if (error != 0)
865 1.2 cgd return (error);
866 1.2 cgd }
867 1.1 cgd s = splimp();
868 1.1 cgd if (bp != d->bd_bif) {
869 1.1 cgd if (d->bd_bif)
870 1.2 cgd /*
871 1.1 cgd * Detach if attached to something else.
872 1.1 cgd */
873 1.1 cgd bpf_detachd(d);
874 1.1 cgd
875 1.1 cgd bpf_attachd(d, bp);
876 1.1 cgd }
877 1.1 cgd reset_d(d);
878 1.1 cgd splx(s);
879 1.1 cgd return (0);
880 1.1 cgd }
881 1.1 cgd /* Not found. */
882 1.1 cgd return (ENXIO);
883 1.1 cgd }
884 1.1 cgd
885 1.1 cgd /*
886 1.2 cgd * Convert an interface name plus unit number of an ifp to a single
887 1.2 cgd * name which is returned in the ifr.
888 1.1 cgd */
889 1.1 cgd static void
890 1.1 cgd bpf_ifname(ifp, ifr)
891 1.1 cgd struct ifnet *ifp;
892 1.1 cgd struct ifreq *ifr;
893 1.1 cgd {
894 1.1 cgd char *s = ifp->if_name;
895 1.1 cgd char *d = ifr->ifr_name;
896 1.1 cgd
897 1.1 cgd while (*d++ = *s++)
898 1.2 cgd continue;
899 1.1 cgd /* XXX Assume that unit number is less than 10. */
900 1.1 cgd *d++ = ifp->if_unit + '0';
901 1.1 cgd *d = '\0';
902 1.1 cgd }
903 1.1 cgd
904 1.1 cgd /*
905 1.2 cgd * The new select interface passes down the proc pointer; the old select
906 1.2 cgd * stubs had to grab it out of the user struct. This glue allows either case.
907 1.2 cgd */
908 1.2 cgd #if BSD >= 199103
909 1.2 cgd #define bpf_select bpfselect
910 1.2 cgd #else
911 1.2 cgd int
912 1.2 cgd bpfselect(dev, rw)
913 1.2 cgd register dev_t dev;
914 1.2 cgd int rw;
915 1.2 cgd {
916 1.2 cgd return (bpf_select(dev, rw, u.u_procp));
917 1.2 cgd }
918 1.2 cgd #endif
919 1.2 cgd
920 1.2 cgd /*
921 1.1 cgd * Support for select() system call
922 1.1 cgd * Inspired by the code in tty.c for the same purpose.
923 1.1 cgd *
924 1.2 cgd * Return true iff the specific operation will not block indefinitely.
925 1.2 cgd * Otherwise, return false but make a note that a selwakeup() must be done.
926 1.1 cgd */
927 1.1 cgd int
928 1.2 cgd bpf_select(dev, rw, p)
929 1.1 cgd register dev_t dev;
930 1.1 cgd int rw;
931 1.1 cgd struct proc *p;
932 1.1 cgd {
933 1.1 cgd register struct bpf_d *d;
934 1.1 cgd register int s;
935 1.2 cgd
936 1.1 cgd if (rw != FREAD)
937 1.1 cgd return (0);
938 1.1 cgd /*
939 1.1 cgd * An imitation of the FIONREAD ioctl code.
940 1.1 cgd */
941 1.1 cgd d = &bpf_dtab[minor(dev)];
942 1.2 cgd
943 1.1 cgd s = splimp();
944 1.1 cgd if (d->bd_hlen != 0 || (d->bd_immediate && d->bd_slen != 0)) {
945 1.1 cgd /*
946 1.1 cgd * There is data waiting.
947 1.1 cgd */
948 1.1 cgd splx(s);
949 1.1 cgd return (1);
950 1.1 cgd }
951 1.5.4.3 cgd #if defined(__NetBSD__)
952 1.2 cgd selrecord(p, &d->bd_sel);
953 1.2 cgd #else
954 1.1 cgd /*
955 1.1 cgd * No data ready. If there's already a select() waiting on this
956 1.2 cgd * minor device then this is a collision. This shouldn't happen
957 1.1 cgd * because minors really should not be shared, but if a process
958 1.1 cgd * forks while one of these is open, it is possible that both
959 1.1 cgd * processes could select on the same descriptor.
960 1.1 cgd */
961 1.1 cgd if (d->bd_selproc && d->bd_selproc->p_wchan == (caddr_t)&selwait)
962 1.1 cgd d->bd_selcoll = 1;
963 1.1 cgd else
964 1.1 cgd d->bd_selproc = p;
965 1.3 deraadt #endif
966 1.2 cgd splx(s);
967 1.1 cgd return (0);
968 1.1 cgd }
969 1.1 cgd
970 1.1 cgd /*
971 1.2 cgd * Incoming linkage from device drivers. Process the packet pkt, of length
972 1.2 cgd * pktlen, which is stored in a contiguous buffer. The packet is parsed
973 1.2 cgd * by each process' filter, and if accepted, stashed into the corresponding
974 1.2 cgd * buffer.
975 1.1 cgd */
976 1.1 cgd void
977 1.1 cgd bpf_tap(arg, pkt, pktlen)
978 1.1 cgd caddr_t arg;
979 1.1 cgd register u_char *pkt;
980 1.1 cgd register u_int pktlen;
981 1.1 cgd {
982 1.1 cgd struct bpf_if *bp;
983 1.1 cgd register struct bpf_d *d;
984 1.1 cgd register u_int slen;
985 1.1 cgd /*
986 1.1 cgd * Note that the ipl does not have to be raised at this point.
987 1.1 cgd * The only problem that could arise here is that if two different
988 1.1 cgd * interfaces shared any data. This is not the case.
989 1.1 cgd */
990 1.1 cgd bp = (struct bpf_if *)arg;
991 1.1 cgd for (d = bp->bif_dlist; d != 0; d = d->bd_next) {
992 1.1 cgd ++d->bd_rcount;
993 1.1 cgd slen = bpf_filter(d->bd_filter, pkt, pktlen, pktlen);
994 1.1 cgd if (slen != 0)
995 1.1 cgd catchpacket(d, pkt, pktlen, slen, bcopy);
996 1.1 cgd }
997 1.1 cgd }
998 1.1 cgd
999 1.1 cgd /*
1000 1.1 cgd * Copy data from an mbuf chain into a buffer. This code is derived
1001 1.1 cgd * from m_copydata in sys/uipc_mbuf.c.
1002 1.1 cgd */
1003 1.1 cgd static void
1004 1.1 cgd bpf_mcopy(src, dst, len)
1005 1.1 cgd u_char *src;
1006 1.1 cgd u_char *dst;
1007 1.1 cgd register int len;
1008 1.1 cgd {
1009 1.1 cgd register struct mbuf *m = (struct mbuf *)src;
1010 1.1 cgd register unsigned count;
1011 1.1 cgd
1012 1.1 cgd while (len > 0) {
1013 1.1 cgd if (m == 0)
1014 1.1 cgd panic("bpf_mcopy");
1015 1.1 cgd count = MIN(m->m_len, len);
1016 1.1 cgd bcopy(mtod(m, caddr_t), (caddr_t)dst, count);
1017 1.1 cgd m = m->m_next;
1018 1.1 cgd dst += count;
1019 1.1 cgd len -= count;
1020 1.1 cgd }
1021 1.1 cgd }
1022 1.1 cgd
1023 1.1 cgd /*
1024 1.2 cgd * Incoming linkage from device drivers, when packet is in an mbuf chain.
1025 1.1 cgd */
1026 1.1 cgd void
1027 1.1 cgd bpf_mtap(arg, m)
1028 1.1 cgd caddr_t arg;
1029 1.1 cgd struct mbuf *m;
1030 1.1 cgd {
1031 1.1 cgd struct bpf_if *bp = (struct bpf_if *)arg;
1032 1.1 cgd struct bpf_d *d;
1033 1.1 cgd u_int pktlen, slen;
1034 1.1 cgd struct mbuf *m0;
1035 1.1 cgd
1036 1.1 cgd pktlen = 0;
1037 1.2 cgd for (m0 = m; m0 != 0; m0 = m0->m_next)
1038 1.1 cgd pktlen += m0->m_len;
1039 1.1 cgd
1040 1.1 cgd for (d = bp->bif_dlist; d != 0; d = d->bd_next) {
1041 1.1 cgd ++d->bd_rcount;
1042 1.1 cgd slen = bpf_filter(d->bd_filter, (u_char *)m, pktlen, 0);
1043 1.1 cgd if (slen != 0)
1044 1.1 cgd catchpacket(d, (u_char *)m, pktlen, slen, bpf_mcopy);
1045 1.1 cgd }
1046 1.1 cgd }
1047 1.1 cgd
1048 1.1 cgd /*
1049 1.1 cgd * Move the packet data from interface memory (pkt) into the
1050 1.1 cgd * store buffer. Return 1 if it's time to wakeup a listener (buffer full),
1051 1.2 cgd * otherwise 0. "copy" is the routine called to do the actual data
1052 1.2 cgd * transfer. bcopy is passed in to copy contiguous chunks, while
1053 1.2 cgd * bpf_mcopy is passed in to copy mbuf chains. In the latter case,
1054 1.2 cgd * pkt is really an mbuf.
1055 1.1 cgd */
1056 1.1 cgd static void
1057 1.1 cgd catchpacket(d, pkt, pktlen, snaplen, cpfn)
1058 1.1 cgd register struct bpf_d *d;
1059 1.1 cgd register u_char *pkt;
1060 1.1 cgd register u_int pktlen, snaplen;
1061 1.1 cgd register void (*cpfn)();
1062 1.1 cgd {
1063 1.1 cgd register struct bpf_hdr *hp;
1064 1.1 cgd register int totlen, curlen;
1065 1.1 cgd register int hdrlen = d->bd_bif->bif_hdrlen;
1066 1.1 cgd /*
1067 1.1 cgd * Figure out how many bytes to move. If the packet is
1068 1.1 cgd * greater or equal to the snapshot length, transfer that
1069 1.1 cgd * much. Otherwise, transfer the whole packet (unless
1070 1.1 cgd * we hit the buffer size limit).
1071 1.1 cgd */
1072 1.1 cgd totlen = hdrlen + MIN(snaplen, pktlen);
1073 1.1 cgd if (totlen > d->bd_bufsize)
1074 1.1 cgd totlen = d->bd_bufsize;
1075 1.1 cgd
1076 1.1 cgd /*
1077 1.1 cgd * Round up the end of the previous packet to the next longword.
1078 1.1 cgd */
1079 1.1 cgd curlen = BPF_WORDALIGN(d->bd_slen);
1080 1.1 cgd if (curlen + totlen > d->bd_bufsize) {
1081 1.1 cgd /*
1082 1.1 cgd * This packet will overflow the storage buffer.
1083 1.1 cgd * Rotate the buffers if we can, then wakeup any
1084 1.1 cgd * pending reads.
1085 1.1 cgd */
1086 1.1 cgd if (d->bd_fbuf == 0) {
1087 1.2 cgd /*
1088 1.2 cgd * We haven't completed the previous read yet,
1089 1.1 cgd * so drop the packet.
1090 1.1 cgd */
1091 1.1 cgd ++d->bd_dcount;
1092 1.1 cgd return;
1093 1.1 cgd }
1094 1.1 cgd ROTATE_BUFFERS(d);
1095 1.1 cgd bpf_wakeup(d);
1096 1.1 cgd curlen = 0;
1097 1.1 cgd }
1098 1.2 cgd else if (d->bd_immediate)
1099 1.1 cgd /*
1100 1.1 cgd * Immediate mode is set. A packet arrived so any
1101 1.1 cgd * reads should be woken up.
1102 1.1 cgd */
1103 1.1 cgd bpf_wakeup(d);
1104 1.1 cgd
1105 1.1 cgd /*
1106 1.1 cgd * Append the bpf header.
1107 1.1 cgd */
1108 1.1 cgd hp = (struct bpf_hdr *)(d->bd_sbuf + curlen);
1109 1.2 cgd #if BSD >= 199103
1110 1.2 cgd microtime(&hp->bh_tstamp);
1111 1.2 cgd #elif defined(sun)
1112 1.1 cgd uniqtime(&hp->bh_tstamp);
1113 1.1 cgd #else
1114 1.1 cgd hp->bh_tstamp = time;
1115 1.1 cgd #endif
1116 1.1 cgd hp->bh_datalen = pktlen;
1117 1.1 cgd hp->bh_hdrlen = hdrlen;
1118 1.1 cgd /*
1119 1.1 cgd * Copy the packet data into the store buffer and update its length.
1120 1.1 cgd */
1121 1.1 cgd (*cpfn)(pkt, (u_char *)hp + hdrlen, (hp->bh_caplen = totlen - hdrlen));
1122 1.1 cgd d->bd_slen = curlen + totlen;
1123 1.1 cgd }
1124 1.1 cgd
1125 1.2 cgd /*
1126 1.1 cgd * Initialize all nonzero fields of a descriptor.
1127 1.1 cgd */
1128 1.1 cgd static int
1129 1.2 cgd bpf_allocbufs(d)
1130 1.1 cgd register struct bpf_d *d;
1131 1.1 cgd {
1132 1.1 cgd d->bd_fbuf = (caddr_t)malloc(d->bd_bufsize, M_DEVBUF, M_WAITOK);
1133 1.1 cgd if (d->bd_fbuf == 0)
1134 1.1 cgd return (ENOBUFS);
1135 1.1 cgd
1136 1.1 cgd d->bd_sbuf = (caddr_t)malloc(d->bd_bufsize, M_DEVBUF, M_WAITOK);
1137 1.1 cgd if (d->bd_sbuf == 0) {
1138 1.1 cgd free(d->bd_fbuf, M_DEVBUF);
1139 1.1 cgd return (ENOBUFS);
1140 1.1 cgd }
1141 1.1 cgd d->bd_slen = 0;
1142 1.1 cgd d->bd_hlen = 0;
1143 1.1 cgd return (0);
1144 1.1 cgd }
1145 1.1 cgd
1146 1.1 cgd /*
1147 1.2 cgd * Free buffers currently in use by a descriptor.
1148 1.2 cgd * Called on close.
1149 1.2 cgd */
1150 1.2 cgd static void
1151 1.2 cgd bpf_freed(d)
1152 1.2 cgd register struct bpf_d *d;
1153 1.2 cgd {
1154 1.2 cgd /*
1155 1.2 cgd * We don't need to lock out interrupts since this descriptor has
1156 1.2 cgd * been detached from its interface and it yet hasn't been marked
1157 1.2 cgd * free.
1158 1.2 cgd */
1159 1.2 cgd if (d->bd_sbuf != 0) {
1160 1.2 cgd free(d->bd_sbuf, M_DEVBUF);
1161 1.2 cgd if (d->bd_hbuf != 0)
1162 1.2 cgd free(d->bd_hbuf, M_DEVBUF);
1163 1.2 cgd if (d->bd_fbuf != 0)
1164 1.2 cgd free(d->bd_fbuf, M_DEVBUF);
1165 1.2 cgd }
1166 1.2 cgd if (d->bd_filter)
1167 1.2 cgd free((caddr_t)d->bd_filter, M_DEVBUF);
1168 1.2 cgd
1169 1.2 cgd D_MARKFREE(d);
1170 1.2 cgd }
1171 1.2 cgd
1172 1.2 cgd /*
1173 1.2 cgd * Attach an interface to bpf. driverp is a pointer to a (struct bpf_if *)
1174 1.2 cgd * in the driver's softc; dlt is the link layer type; hdrlen is the fixed
1175 1.2 cgd * size of the link header (variable length headers not yet supported).
1176 1.1 cgd */
1177 1.1 cgd void
1178 1.1 cgd bpfattach(driverp, ifp, dlt, hdrlen)
1179 1.1 cgd caddr_t *driverp;
1180 1.1 cgd struct ifnet *ifp;
1181 1.1 cgd u_int dlt, hdrlen;
1182 1.1 cgd {
1183 1.1 cgd struct bpf_if *bp;
1184 1.1 cgd int i;
1185 1.2 cgd #if BSD < 199103
1186 1.2 cgd static struct bpf_if bpf_ifs[NBPFILTER];
1187 1.2 cgd static int bpfifno;
1188 1.1 cgd
1189 1.2 cgd bp = (bpfifno < NBPFILTER) ? &bpf_ifs[bpfifno++] : 0;
1190 1.2 cgd #else
1191 1.1 cgd bp = (struct bpf_if *)malloc(sizeof(*bp), M_DEVBUF, M_DONTWAIT);
1192 1.2 cgd #endif
1193 1.1 cgd if (bp == 0)
1194 1.1 cgd panic("bpfattach");
1195 1.1 cgd
1196 1.1 cgd bp->bif_dlist = 0;
1197 1.1 cgd bp->bif_driverp = (struct bpf_if **)driverp;
1198 1.1 cgd bp->bif_ifp = ifp;
1199 1.1 cgd bp->bif_dlt = dlt;
1200 1.1 cgd
1201 1.1 cgd bp->bif_next = bpf_iflist;
1202 1.1 cgd bpf_iflist = bp;
1203 1.1 cgd
1204 1.1 cgd *bp->bif_driverp = 0;
1205 1.1 cgd
1206 1.1 cgd /*
1207 1.1 cgd * Compute the length of the bpf header. This is not necessarily
1208 1.2 cgd * equal to SIZEOF_BPF_HDR because we want to insert spacing such
1209 1.2 cgd * that the network layer header begins on a longword boundary (for
1210 1.1 cgd * performance reasons and to alleviate alignment restrictions).
1211 1.1 cgd */
1212 1.1 cgd bp->bif_hdrlen = BPF_WORDALIGN(hdrlen + SIZEOF_BPF_HDR) - hdrlen;
1213 1.1 cgd
1214 1.1 cgd /*
1215 1.1 cgd * Mark all the descriptors free if this hasn't been done.
1216 1.1 cgd */
1217 1.1 cgd if (!D_ISFREE(&bpf_dtab[0]))
1218 1.1 cgd for (i = 0; i < NBPFILTER; ++i)
1219 1.1 cgd D_MARKFREE(&bpf_dtab[i]);
1220 1.1 cgd
1221 1.1 cgd printf("bpf: %s%d attached\n", ifp->if_name, ifp->if_unit);
1222 1.1 cgd }
1223 1.1 cgd
1224 1.2 cgd #if BSD >= 199103
1225 1.1 cgd /* XXX This routine belongs in net/if.c. */
1226 1.1 cgd /*
1227 1.2 cgd * Set/clear promiscuous mode on interface ifp based on the truth value
1228 1.1 cgd * of pswitch. The calls are reference counted so that only the first
1229 1.2 cgd * "on" request actually has an effect, as does the final "off" request.
1230 1.2 cgd * Results are undefined if the "off" and "on" requests are not matched.
1231 1.1 cgd */
1232 1.1 cgd int
1233 1.1 cgd ifpromisc(ifp, pswitch)
1234 1.1 cgd struct ifnet *ifp;
1235 1.1 cgd int pswitch;
1236 1.1 cgd {
1237 1.1 cgd struct ifreq ifr;
1238 1.2 cgd /*
1239 1.1 cgd * If the device is not configured up, we cannot put it in
1240 1.1 cgd * promiscuous mode.
1241 1.1 cgd */
1242 1.1 cgd if ((ifp->if_flags & IFF_UP) == 0)
1243 1.1 cgd return (ENETDOWN);
1244 1.1 cgd
1245 1.1 cgd if (pswitch) {
1246 1.1 cgd if (ifp->if_pcount++ != 0)
1247 1.1 cgd return (0);
1248 1.1 cgd ifp->if_flags |= IFF_PROMISC;
1249 1.1 cgd } else {
1250 1.1 cgd if (--ifp->if_pcount > 0)
1251 1.1 cgd return (0);
1252 1.1 cgd ifp->if_flags &= ~IFF_PROMISC;
1253 1.1 cgd }
1254 1.1 cgd ifr.ifr_flags = ifp->if_flags;
1255 1.1 cgd return ((*ifp->if_ioctl)(ifp, SIOCSIFFLAGS, (caddr_t)&ifr));
1256 1.1 cgd }
1257 1.2 cgd #endif
1258 1.2 cgd
1259 1.2 cgd #if BSD < 199103
1260 1.2 cgd /*
1261 1.2 cgd * Allocate some memory for bpf. This is temporary SunOS support, and
1262 1.2 cgd * is admittedly a hack.
1263 1.2 cgd * If resources unavaiable, return 0.
1264 1.2 cgd */
1265 1.2 cgd static caddr_t
1266 1.2 cgd bpf_alloc(size, canwait)
1267 1.2 cgd register int size;
1268 1.2 cgd register int canwait;
1269 1.2 cgd {
1270 1.2 cgd register struct mbuf *m;
1271 1.2 cgd
1272 1.2 cgd if ((unsigned)size > (MCLBYTES-8))
1273 1.2 cgd return 0;
1274 1.1 cgd
1275 1.2 cgd MGET(m, canwait, MT_DATA);
1276 1.2 cgd if (m == 0)
1277 1.2 cgd return 0;
1278 1.2 cgd if ((unsigned)size > (MLEN-8)) {
1279 1.2 cgd MCLGET(m);
1280 1.2 cgd if (m->m_len != MCLBYTES) {
1281 1.2 cgd m_freem(m);
1282 1.2 cgd return 0;
1283 1.2 cgd }
1284 1.2 cgd }
1285 1.2 cgd *mtod(m, struct mbuf **) = m;
1286 1.2 cgd return mtod(m, caddr_t) + 8;
1287 1.2 cgd }
1288 1.2 cgd #endif
1289 1.2 cgd #endif
1290