kernel - Add missing KNOTE's
[dragonfly.git] / sys / net / bpf.c
1 /*
2  * Copyright (c) 1990, 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from the Stanford/CMU enet packet filter,
6  * (net/enet.c) distributed as part of 4.3BSD, and code contributed
7  * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
8  * Berkeley Laboratory.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)bpf.c       8.2 (Berkeley) 3/28/94
39  *
40  * $FreeBSD: src/sys/net/bpf.c,v 1.59.2.12 2002/04/14 21:41:48 luigi Exp $
41  * $DragonFly: src/sys/net/bpf.c,v 1.50 2008/09/23 11:28:49 sephe Exp $
42  */
43
44 #include "use_bpf.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/conf.h>
49 #include <sys/device.h>
50 #include <sys/malloc.h>
51 #include <sys/mbuf.h>
52 #include <sys/time.h>
53 #include <sys/proc.h>
54 #include <sys/signalvar.h>
55 #include <sys/filio.h>
56 #include <sys/sockio.h>
57 #include <sys/ttycom.h>
58 #include <sys/filedesc.h>
59
60 #include <sys/event.h>
61
62 #include <sys/socket.h>
63 #include <sys/vnode.h>
64
65 #include <sys/thread2.h>
66 #include <sys/mplock2.h>
67
68 #include <net/if.h>
69 #include <net/bpf.h>
70 #include <net/bpfdesc.h>
71 #include <net/netmsg2.h>
72
73 #include <netinet/in.h>
74 #include <netinet/if_ether.h>
75 #include <sys/kernel.h>
76 #include <sys/sysctl.h>
77
78 #include <sys/devfs.h>
79
80 struct netmsg_bpf_output {
81         struct netmsg   nm_netmsg;
82         struct mbuf     *nm_mbuf;
83         struct ifnet    *nm_ifp;
84         struct sockaddr *nm_dst;
85 };
86
87 MALLOC_DEFINE(M_BPF, "BPF", "BPF data");
88 DEVFS_DECLARE_CLONE_BITMAP(bpf);
89
90 #if NBPF <= 1
91 #define BPF_PREALLOCATED_UNITS  4
92 #else
93 #define BPF_PREALLOCATED_UNITS  NBPF
94 #endif
95
96 #if NBPF > 0
97
98 /*
99  * The default read buffer size is patchable.
100  */
101 static int bpf_bufsize = BPF_DEFAULTBUFSIZE;
102 SYSCTL_INT(_debug, OID_AUTO, bpf_bufsize, CTLFLAG_RW,
103            &bpf_bufsize, 0, "");
104 int bpf_maxbufsize = BPF_MAXBUFSIZE;
105 SYSCTL_INT(_debug, OID_AUTO, bpf_maxbufsize, CTLFLAG_RW,
106            &bpf_maxbufsize, 0, "");
107
108 /*
109  *  bpf_iflist is the list of interfaces; each corresponds to an ifnet
110  */
111 static struct bpf_if    *bpf_iflist;
112
113 static int      bpf_allocbufs(struct bpf_d *);
114 static void     bpf_attachd(struct bpf_d *d, struct bpf_if *bp);
115 static void     bpf_detachd(struct bpf_d *d);
116 static void     bpf_resetd(struct bpf_d *);
117 static void     bpf_freed(struct bpf_d *);
118 static void     bpf_mcopy(const void *, void *, size_t);
119 static int      bpf_movein(struct uio *, int, struct mbuf **,
120                            struct sockaddr *, int *, struct bpf_insn *);
121 static int      bpf_setif(struct bpf_d *, struct ifreq *);
122 static void     bpf_timed_out(void *);
123 static void     bpf_wakeup(struct bpf_d *);
124 static void     catchpacket(struct bpf_d *, u_char *, u_int, u_int,
125                             void (*)(const void *, void *, size_t),
126                             const struct timeval *);
127 static int      bpf_setf(struct bpf_d *, struct bpf_program *, u_long cmd);
128 static int      bpf_getdltlist(struct bpf_d *, struct bpf_dltlist *);
129 static int      bpf_setdlt(struct bpf_d *, u_int);
130 static void     bpf_drvinit(void *unused);
131 static void     bpf_filter_detach(struct knote *kn);
132 static int      bpf_filter_read(struct knote *kn, long hint);
133
134 static d_open_t         bpfopen;
135 static d_clone_t        bpfclone;
136 static d_close_t        bpfclose;
137 static d_read_t         bpfread;
138 static d_write_t        bpfwrite;
139 static d_ioctl_t        bpfioctl;
140 static d_kqfilter_t     bpfkqfilter;
141
142 #define CDEV_MAJOR 23
143 static struct dev_ops bpf_ops = {
144         { "bpf", CDEV_MAJOR, D_KQFILTER },
145         .d_open =       bpfopen,
146         .d_close =      bpfclose,
147         .d_read =       bpfread,
148         .d_write =      bpfwrite,
149         .d_ioctl =      bpfioctl,
150         .d_kqfilter =   bpfkqfilter
151 };
152
153
154 static int
155 bpf_movein(struct uio *uio, int linktype, struct mbuf **mp,
156            struct sockaddr *sockp, int *datlen, struct bpf_insn *wfilter)
157 {
158         struct mbuf *m;
159         int error;
160         int len;
161         int hlen;
162         int slen;
163
164         *datlen = 0;
165         *mp = NULL;
166
167         /*
168          * Build a sockaddr based on the data link layer type.
169          * We do this at this level because the ethernet header
170          * is copied directly into the data field of the sockaddr.
171          * In the case of SLIP, there is no header and the packet
172          * is forwarded as is.
173          * Also, we are careful to leave room at the front of the mbuf
174          * for the link level header.
175          */
176         switch (linktype) {
177         case DLT_SLIP:
178                 sockp->sa_family = AF_INET;
179                 hlen = 0;
180                 break;
181
182         case DLT_EN10MB:
183                 sockp->sa_family = AF_UNSPEC;
184                 /* XXX Would MAXLINKHDR be better? */
185                 hlen = sizeof(struct ether_header);
186                 break;
187
188         case DLT_RAW:
189         case DLT_NULL:
190                 sockp->sa_family = AF_UNSPEC;
191                 hlen = 0;
192                 break;
193
194         case DLT_ATM_RFC1483:
195                 /*
196                  * en atm driver requires 4-byte atm pseudo header.
197                  * though it isn't standard, vpi:vci needs to be
198                  * specified anyway.
199                  */
200                 sockp->sa_family = AF_UNSPEC;
201                 hlen = 12;      /* XXX 4(ATM_PH) + 3(LLC) + 5(SNAP) */
202                 break;
203
204         case DLT_PPP:
205                 sockp->sa_family = AF_UNSPEC;
206                 hlen = 4;       /* This should match PPP_HDRLEN */
207                 break;
208
209         default:
210                 return(EIO);
211         }
212
213         len = uio->uio_resid;
214         *datlen = len - hlen;
215         if ((unsigned)len > MCLBYTES)
216                 return(EIO);
217
218         m = m_getl(len, MB_WAIT, MT_DATA, M_PKTHDR, NULL);
219         if (m == NULL)
220                 return(ENOBUFS);
221         m->m_pkthdr.len = m->m_len = len;
222         m->m_pkthdr.rcvif = NULL;
223         *mp = m;
224
225         if (m->m_len < hlen) {
226                 error = EPERM;
227                 goto bad;
228         }
229
230         error = uiomove(mtod(m, u_char *), len, uio);
231         if (error)
232                 goto bad;
233
234         slen = bpf_filter(wfilter, mtod(m, u_char *), len, len);
235         if (slen == 0) {
236                 error = EPERM;
237                 goto bad;
238         }
239
240         /*
241          * Make room for link header, and copy it to sockaddr.
242          */
243         if (hlen != 0) {
244                 bcopy(m->m_data, sockp->sa_data, hlen);
245                 m->m_pkthdr.len -= hlen;
246                 m->m_len -= hlen;
247                 m->m_data += hlen; /* XXX */
248         }
249         return (0);
250 bad:
251         m_freem(m);
252         return(error);
253 }
254
255 /*
256  * Attach file to the bpf interface, i.e. make d listen on bp.
257  * Must be called at splimp.
258  */
259 static void
260 bpf_attachd(struct bpf_d *d, struct bpf_if *bp)
261 {
262         /*
263          * Point d at bp, and add d to the interface's list of listeners.
264          * Finally, point the driver's bpf cookie at the interface so
265          * it will divert packets to bpf.
266          */
267         d->bd_bif = bp;
268         SLIST_INSERT_HEAD(&bp->bif_dlist, d, bd_next);
269         *bp->bif_driverp = bp;
270
271         EVENTHANDLER_INVOKE(bpf_track, bp->bif_ifp, bp->bif_dlt, 1);
272 }
273
274 /*
275  * Detach a file from its interface.
276  */
277 static void
278 bpf_detachd(struct bpf_d *d)
279 {
280         int error;
281         struct bpf_if *bp;
282         struct ifnet *ifp;
283
284         bp = d->bd_bif;
285         ifp = bp->bif_ifp;
286
287         /* Remove d from the interface's descriptor list. */
288         SLIST_REMOVE(&bp->bif_dlist, d, bpf_d, bd_next);
289
290         if (SLIST_EMPTY(&bp->bif_dlist)) {
291                 /*
292                  * Let the driver know that there are no more listeners.
293                  */
294                 *bp->bif_driverp = NULL;
295         }
296         d->bd_bif = NULL;
297
298         EVENTHANDLER_INVOKE(bpf_track, ifp, bp->bif_dlt, 0);
299
300         /*
301          * Check if this descriptor had requested promiscuous mode.
302          * If so, turn it off.
303          */
304         if (d->bd_promisc) {
305                 d->bd_promisc = 0;
306                 error = ifpromisc(ifp, 0);
307                 if (error != 0 && error != ENXIO) {
308                         /*
309                          * ENXIO can happen if a pccard is unplugged,
310                          * Something is really wrong if we were able to put
311                          * the driver into promiscuous mode, but can't
312                          * take it out.
313                          */
314                         if_printf(ifp, "bpf_detach: ifpromisc failed(%d)\n",
315                                   error);
316                 }
317         }
318 }
319
320 /*
321  * Open ethernet device.  Returns ENXIO for illegal minor device number,
322  * EBUSY if file is open by another process.
323  */
324 /* ARGSUSED */
325 static int
326 bpfopen(struct dev_open_args *ap)
327 {
328         cdev_t dev = ap->a_head.a_dev;
329         struct bpf_d *d;
330
331         if (ap->a_cred->cr_prison)
332                 return(EPERM);
333
334         d = dev->si_drv1;
335         /*
336          * Each minor can be opened by only one process.  If the requested
337          * minor is in use, return EBUSY.
338          */
339         if (d != NULL)
340                 return(EBUSY);
341
342         MALLOC(d, struct bpf_d *, sizeof *d, M_BPF, M_WAITOK | M_ZERO);
343         dev->si_drv1 = d;
344         d->bd_bufsize = bpf_bufsize;
345         d->bd_sig = SIGIO;
346         d->bd_seesent = 1;
347         callout_init(&d->bd_callout);
348         return(0);
349 }
350
351 static int
352 bpfclone(struct dev_clone_args *ap)
353 {
354         int unit;
355
356         unit = devfs_clone_bitmap_get(&DEVFS_CLONE_BITMAP(bpf), 0);
357         ap->a_dev = make_only_dev(&bpf_ops, unit, 0, 0, 0600, "bpf%d", unit);
358
359         return 0;
360 }
361
362 /*
363  * Close the descriptor by detaching it from its interface,
364  * deallocating its buffers, and marking it free.
365  */
366 /* ARGSUSED */
367 static int
368 bpfclose(struct dev_close_args *ap)
369 {
370         cdev_t dev = ap->a_head.a_dev;
371         struct bpf_d *d = dev->si_drv1;
372
373         funsetown(d->bd_sigio);
374         crit_enter();
375         if (d->bd_state == BPF_WAITING)
376                 callout_stop(&d->bd_callout);
377         d->bd_state = BPF_IDLE;
378         if (d->bd_bif != NULL)
379                 bpf_detachd(d);
380         crit_exit();
381         bpf_freed(d);
382         dev->si_drv1 = NULL;
383         if (dev->si_uminor >= BPF_PREALLOCATED_UNITS) {
384                 devfs_clone_bitmap_put(&DEVFS_CLONE_BITMAP(bpf), dev->si_uminor);
385                 destroy_dev(dev);
386         }
387         kfree(d, M_BPF);
388         return(0);
389 }
390
391 /*
392  * Rotate the packet buffers in descriptor d.  Move the store buffer
393  * into the hold slot, and the free buffer into the store slot.
394  * Zero the length of the new store buffer.
395  */
396 #define ROTATE_BUFFERS(d) \
397         (d)->bd_hbuf = (d)->bd_sbuf; \
398         (d)->bd_hlen = (d)->bd_slen; \
399         (d)->bd_sbuf = (d)->bd_fbuf; \
400         (d)->bd_slen = 0; \
401         (d)->bd_fbuf = NULL;
402 /*
403  *  bpfread - read next chunk of packets from buffers
404  */
405 static int
406 bpfread(struct dev_read_args *ap)
407 {
408         cdev_t dev = ap->a_head.a_dev;
409         struct bpf_d *d = dev->si_drv1;
410         int timed_out;
411         int error;
412
413         /*
414          * Restrict application to use a buffer the same size as
415          * as kernel buffers.
416          */
417         if (ap->a_uio->uio_resid != d->bd_bufsize)
418                 return(EINVAL);
419
420         crit_enter();
421         if (d->bd_state == BPF_WAITING)
422                 callout_stop(&d->bd_callout);
423         timed_out = (d->bd_state == BPF_TIMED_OUT);
424         d->bd_state = BPF_IDLE;
425         /*
426          * If the hold buffer is empty, then do a timed sleep, which
427          * ends when the timeout expires or when enough packets
428          * have arrived to fill the store buffer.
429          */
430         while (d->bd_hbuf == NULL) {
431                 if ((d->bd_immediate || (ap->a_ioflag & IO_NDELAY) || timed_out)
432                     && d->bd_slen != 0) {
433                         /*
434                          * A packet(s) either arrived since the previous,
435                          * We're in immediate mode, or are reading
436                          * in non-blocking mode, and a packet(s)
437                          * either arrived since the previous
438                          * read or arrived while we were asleep.
439                          * Rotate the buffers and return what's here.
440                          */
441                         ROTATE_BUFFERS(d);
442                         break;
443                 }
444
445                 /*
446                  * No data is available, check to see if the bpf device
447                  * is still pointed at a real interface.  If not, return
448                  * ENXIO so that the userland process knows to rebind
449                  * it before using it again.
450                  */
451                 if (d->bd_bif == NULL) {
452                         crit_exit();
453                         return(ENXIO);
454                 }
455
456                 if (ap->a_ioflag & IO_NDELAY) {
457                         crit_exit();
458                         return(EWOULDBLOCK);
459                 }
460                 error = tsleep(d, PCATCH, "bpf", d->bd_rtout);
461                 if (error == EINTR || error == ERESTART) {
462                         crit_exit();
463                         return(error);
464                 }
465                 if (error == EWOULDBLOCK) {
466                         /*
467                          * On a timeout, return what's in the buffer,
468                          * which may be nothing.  If there is something
469                          * in the store buffer, we can rotate the buffers.
470                          */
471                         if (d->bd_hbuf)
472                                 /*
473                                  * We filled up the buffer in between
474                                  * getting the timeout and arriving
475                                  * here, so we don't need to rotate.
476                                  */
477                                 break;
478
479                         if (d->bd_slen == 0) {
480                                 crit_exit();
481                                 return(0);
482                         }
483                         ROTATE_BUFFERS(d);
484                         break;
485                 }
486         }
487         /*
488          * At this point, we know we have something in the hold slot.
489          */
490         crit_exit();
491
492         /*
493          * Move data from hold buffer into user space.
494          * We know the entire buffer is transferred since
495          * we checked above that the read buffer is bpf_bufsize bytes.
496          */
497         error = uiomove(d->bd_hbuf, d->bd_hlen, ap->a_uio);
498
499         crit_enter();
500         d->bd_fbuf = d->bd_hbuf;
501         d->bd_hbuf = NULL;
502         d->bd_hlen = 0;
503         crit_exit();
504
505         return(error);
506 }
507
508
509 /*
510  * If there are processes sleeping on this descriptor, wake them up.
511  */
512 static void
513 bpf_wakeup(struct bpf_d *d)
514 {
515         if (d->bd_state == BPF_WAITING) {
516                 callout_stop(&d->bd_callout);
517                 d->bd_state = BPF_IDLE;
518         }
519         wakeup(d);
520         if (d->bd_async && d->bd_sig && d->bd_sigio)
521                 pgsigio(d->bd_sigio, d->bd_sig, 0);
522
523         get_mplock();
524         selwakeup(&d->bd_sel);
525         KNOTE(&d->bd_sel.si_note, 0);
526         rel_mplock();
527         /* XXX */
528         d->bd_sel.si_pid = 0;
529 }
530
531 static void
532 bpf_timed_out(void *arg)
533 {
534         struct bpf_d *d = (struct bpf_d *)arg;
535
536         crit_enter();
537         if (d->bd_state == BPF_WAITING) {
538                 d->bd_state = BPF_TIMED_OUT;
539                 if (d->bd_slen != 0)
540                         bpf_wakeup(d);
541         }
542         crit_exit();
543 }
544
545 static void
546 bpf_output_dispatch(struct netmsg *nmsg)
547 {
548         struct netmsg_bpf_output *bmsg = (struct netmsg_bpf_output *)nmsg;
549         struct ifnet *ifp = bmsg->nm_ifp;
550         int error;
551
552         /*
553          * The driver frees the mbuf.
554          */
555         error = ifp->if_output(ifp, bmsg->nm_mbuf, bmsg->nm_dst, NULL);
556         lwkt_replymsg(&nmsg->nm_lmsg, error);
557 }
558
559 static int
560 bpfwrite(struct dev_write_args *ap)
561 {
562         cdev_t dev = ap->a_head.a_dev;
563         struct bpf_d *d = dev->si_drv1;
564         struct ifnet *ifp;
565         struct mbuf *m;
566         int error;
567         struct sockaddr dst;
568         int datlen;
569         struct netmsg_bpf_output bmsg;
570
571         if (d->bd_bif == NULL)
572                 return(ENXIO);
573
574         ifp = d->bd_bif->bif_ifp;
575
576         if (ap->a_uio->uio_resid == 0)
577                 return(0);
578
579         error = bpf_movein(ap->a_uio, (int)d->bd_bif->bif_dlt, &m,
580                            &dst, &datlen, d->bd_wfilter);
581         if (error)
582                 return(error);
583
584         if (datlen > ifp->if_mtu) {
585                 m_freem(m);
586                 return(EMSGSIZE);
587         }
588
589         if (d->bd_hdrcmplt)
590                 dst.sa_family = pseudo_AF_HDRCMPLT;
591
592         netmsg_init(&bmsg.nm_netmsg, NULL, &curthread->td_msgport,
593                     MSGF_MPSAFE, bpf_output_dispatch);
594         bmsg.nm_mbuf = m;
595         bmsg.nm_ifp = ifp;
596         bmsg.nm_dst = &dst;
597
598         return lwkt_domsg(cpu_portfn(0), &bmsg.nm_netmsg.nm_lmsg, 0);
599 }
600
601 /*
602  * Reset a descriptor by flushing its packet buffer and clearing the
603  * receive and drop counts.  Should be called at splimp.
604  */
605 static void
606 bpf_resetd(struct bpf_d *d)
607 {
608         if (d->bd_hbuf) {
609                 /* Free the hold buffer. */
610                 d->bd_fbuf = d->bd_hbuf;
611                 d->bd_hbuf = NULL;
612         }
613         d->bd_slen = 0;
614         d->bd_hlen = 0;
615         d->bd_rcount = 0;
616         d->bd_dcount = 0;
617 }
618
619 /*
620  *  FIONREAD            Check for read packet available.
621  *  SIOCGIFADDR         Get interface address - convenient hook to driver.
622  *  BIOCGBLEN           Get buffer len [for read()].
623  *  BIOCSETF            Set ethernet read filter.
624  *  BIOCSETWF           Set ethernet write filter.
625  *  BIOCFLUSH           Flush read packet buffer.
626  *  BIOCPROMISC         Put interface into promiscuous mode.
627  *  BIOCGDLT            Get link layer type.
628  *  BIOCGETIF           Get interface name.
629  *  BIOCSETIF           Set interface.
630  *  BIOCSRTIMEOUT       Set read timeout.
631  *  BIOCGRTIMEOUT       Get read timeout.
632  *  BIOCGSTATS          Get packet stats.
633  *  BIOCIMMEDIATE       Set immediate mode.
634  *  BIOCVERSION         Get filter language version.
635  *  BIOCGHDRCMPLT       Get "header already complete" flag
636  *  BIOCSHDRCMPLT       Set "header already complete" flag
637  *  BIOCGSEESENT        Get "see packets sent" flag
638  *  BIOCSSEESENT        Set "see packets sent" flag
639  *  BIOCLOCK            Set "locked" flag
640  */
641 /* ARGSUSED */
642 static int
643 bpfioctl(struct dev_ioctl_args *ap)
644 {
645         cdev_t dev = ap->a_head.a_dev;
646         struct bpf_d *d = dev->si_drv1;
647         int error = 0;
648
649         crit_enter();
650         if (d->bd_state == BPF_WAITING)
651                 callout_stop(&d->bd_callout);
652         d->bd_state = BPF_IDLE;
653         crit_exit();
654
655         if (d->bd_locked == 1) {
656                 switch (ap->a_cmd) {
657                 case BIOCGBLEN:
658                 case BIOCFLUSH:
659                 case BIOCGDLT:
660                 case BIOCGDLTLIST: 
661                 case BIOCGETIF:
662                 case BIOCGRTIMEOUT:
663                 case BIOCGSTATS:
664                 case BIOCVERSION:
665                 case BIOCGRSIG:
666                 case BIOCGHDRCMPLT:
667                 case FIONREAD:
668                 case BIOCLOCK:
669                 case BIOCSRTIMEOUT:
670                 case BIOCIMMEDIATE:
671                 case TIOCGPGRP:
672                         break;
673                 default:
674                         return (EPERM);
675                 }
676         }
677         switch (ap->a_cmd) {
678         default:
679                 error = EINVAL;
680                 break;
681
682         /*
683          * Check for read packet available.
684          */
685         case FIONREAD:
686                 {
687                         int n;
688
689                         crit_enter();
690                         n = d->bd_slen;
691                         if (d->bd_hbuf)
692                                 n += d->bd_hlen;
693                         crit_exit();
694
695                         *(int *)ap->a_data = n;
696                         break;
697                 }
698
699         case SIOCGIFADDR:
700                 {
701                         struct ifnet *ifp;
702
703                         if (d->bd_bif == NULL) {
704                                 error = EINVAL;
705                         } else {
706                                 ifp = d->bd_bif->bif_ifp;
707                                 ifnet_serialize_all(ifp);
708                                 error = ifp->if_ioctl(ifp, ap->a_cmd,
709                                                       ap->a_data, ap->a_cred);
710                                 ifnet_deserialize_all(ifp);
711                         }
712                         break;
713                 }
714
715         /*
716          * Get buffer len [for read()].
717          */
718         case BIOCGBLEN:
719                 *(u_int *)ap->a_data = d->bd_bufsize;
720                 break;
721
722         /*
723          * Set buffer length.
724          */
725         case BIOCSBLEN:
726                 if (d->bd_bif != NULL) {
727                         error = EINVAL;
728                 } else {
729                         u_int size = *(u_int *)ap->a_data;
730
731                         if (size > bpf_maxbufsize)
732                                 *(u_int *)ap->a_data = size = bpf_maxbufsize;
733                         else if (size < BPF_MINBUFSIZE)
734                                 *(u_int *)ap->a_data = size = BPF_MINBUFSIZE;
735                         d->bd_bufsize = size;
736                 }
737                 break;
738
739         /*
740          * Set link layer read filter.
741          */
742         case BIOCSETF:
743         case BIOCSETWF:
744                 error = bpf_setf(d, (struct bpf_program *)ap->a_data, 
745                         ap->a_cmd);
746                 break;
747
748         /*
749          * Flush read packet buffer.
750          */
751         case BIOCFLUSH:
752                 crit_enter();
753                 bpf_resetd(d);
754                 crit_exit();
755                 break;
756
757         /*
758          * Put interface into promiscuous mode.
759          */
760         case BIOCPROMISC:
761                 if (d->bd_bif == NULL) {
762                         /*
763                          * No interface attached yet.
764                          */
765                         error = EINVAL;
766                         break;
767                 }
768                 crit_enter();
769                 if (d->bd_promisc == 0) {
770                         error = ifpromisc(d->bd_bif->bif_ifp, 1);
771                         if (error == 0)
772                                 d->bd_promisc = 1;
773                 }
774                 crit_exit();
775                 break;
776
777         /*
778          * Get device parameters.
779          */
780         case BIOCGDLT:
781                 if (d->bd_bif == NULL)
782                         error = EINVAL;
783                 else
784                         *(u_int *)ap->a_data = d->bd_bif->bif_dlt;
785                 break;
786
787         /*
788          * Get a list of supported data link types.
789          */
790         case BIOCGDLTLIST:
791                 if (d->bd_bif == NULL) {
792                         error = EINVAL;
793                 } else {
794                         error = bpf_getdltlist(d,
795                                 (struct bpf_dltlist *)ap->a_data);
796                 }
797                 break;
798
799         /*
800          * Set data link type.
801          */
802         case BIOCSDLT:
803                 if (d->bd_bif == NULL)
804                         error = EINVAL;
805                 else
806                         error = bpf_setdlt(d, *(u_int *)ap->a_data);
807                 break;
808
809         /*
810          * Get interface name.
811          */
812         case BIOCGETIF:
813                 if (d->bd_bif == NULL) {
814                         error = EINVAL;
815                 } else {
816                         struct ifnet *const ifp = d->bd_bif->bif_ifp;
817                         struct ifreq *const ifr = (struct ifreq *)ap->a_data;
818
819                         strlcpy(ifr->ifr_name, ifp->if_xname,
820                                 sizeof ifr->ifr_name);
821                 }
822                 break;
823
824         /*
825          * Set interface.
826          */
827         case BIOCSETIF:
828                 error = bpf_setif(d, (struct ifreq *)ap->a_data);
829                 break;
830
831         /*
832          * Set read timeout.
833          */
834         case BIOCSRTIMEOUT:
835                 {
836                         struct timeval *tv = (struct timeval *)ap->a_data;
837
838                         /*
839                          * Subtract 1 tick from tvtohz() since this isn't
840                          * a one-shot timer.
841                          */
842                         if ((error = itimerfix(tv)) == 0)
843                                 d->bd_rtout = tvtohz_low(tv);
844                         break;
845                 }
846
847         /*
848          * Get read timeout.
849          */
850         case BIOCGRTIMEOUT:
851                 {
852                         struct timeval *tv = (struct timeval *)ap->a_data;
853
854                         tv->tv_sec = d->bd_rtout / hz;
855                         tv->tv_usec = (d->bd_rtout % hz) * ustick;
856                         break;
857                 }
858
859         /*
860          * Get packet stats.
861          */
862         case BIOCGSTATS:
863                 {
864                         struct bpf_stat *bs = (struct bpf_stat *)ap->a_data;
865
866                         bs->bs_recv = d->bd_rcount;
867                         bs->bs_drop = d->bd_dcount;
868                         break;
869                 }
870
871         /*
872          * Set immediate mode.
873          */
874         case BIOCIMMEDIATE:
875                 d->bd_immediate = *(u_int *)ap->a_data;
876                 break;
877
878         case BIOCVERSION:
879                 {
880                         struct bpf_version *bv = (struct bpf_version *)ap->a_data;
881
882                         bv->bv_major = BPF_MAJOR_VERSION;
883                         bv->bv_minor = BPF_MINOR_VERSION;
884                         break;
885                 }
886
887         /*
888          * Get "header already complete" flag
889          */
890         case BIOCGHDRCMPLT:
891                 *(u_int *)ap->a_data = d->bd_hdrcmplt;
892                 break;
893
894         /*
895          * Set "header already complete" flag
896          */
897         case BIOCSHDRCMPLT:
898                 d->bd_hdrcmplt = *(u_int *)ap->a_data ? 1 : 0;
899                 break;
900
901         /*
902          * Get "see sent packets" flag
903          */
904         case BIOCGSEESENT:
905                 *(u_int *)ap->a_data = d->bd_seesent;
906                 break;
907
908         /*
909          * Set "see sent packets" flag
910          */
911         case BIOCSSEESENT:
912                 d->bd_seesent = *(u_int *)ap->a_data;
913                 break;
914
915         case FIOASYNC:          /* Send signal on receive packets */
916                 d->bd_async = *(int *)ap->a_data;
917                 break;
918
919         case FIOSETOWN:
920                 error = fsetown(*(int *)ap->a_data, &d->bd_sigio);
921                 break;
922
923         case FIOGETOWN:
924                 *(int *)ap->a_data = fgetown(d->bd_sigio);
925                 break;
926
927         /* This is deprecated, FIOSETOWN should be used instead. */
928         case TIOCSPGRP:
929                 error = fsetown(-(*(int *)ap->a_data), &d->bd_sigio);
930                 break;
931
932         /* This is deprecated, FIOGETOWN should be used instead. */
933         case TIOCGPGRP:
934                 *(int *)ap->a_data = -fgetown(d->bd_sigio);
935                 break;
936
937         case BIOCSRSIG:         /* Set receive signal */
938                 {
939                         u_int sig;
940
941                         sig = *(u_int *)ap->a_data;
942
943                         if (sig >= NSIG)
944                                 error = EINVAL;
945                         else
946                                 d->bd_sig = sig;
947                         break;
948                 }
949         case BIOCGRSIG:
950                 *(u_int *)ap->a_data = d->bd_sig;
951                 break;
952         case BIOCLOCK:
953                 d->bd_locked = 1;
954                 break;
955         }
956         return(error);
957 }
958
959 /*
960  * Set d's packet filter program to fp.  If this file already has a filter,
961  * free it and replace it.  Returns EINVAL for bogus requests.
962  */
963 static int
964 bpf_setf(struct bpf_d *d, struct bpf_program *fp, u_long cmd)
965 {
966         struct bpf_insn *fcode, *old;
967         u_int wfilter, flen, size;
968
969         if (cmd == BIOCSETWF) {
970                 old = d->bd_wfilter;
971                 wfilter = 1;
972         } else {
973                 wfilter = 0;
974                 old = d->bd_rfilter;
975         }
976         if (fp->bf_insns == NULL) {
977                 if (fp->bf_len != 0)
978                         return(EINVAL);
979                 crit_enter();
980                 if (wfilter)
981                         d->bd_wfilter = NULL;
982                 else
983                         d->bd_rfilter = NULL;
984                 bpf_resetd(d);
985                 crit_exit();
986                 if (old != NULL)
987                         kfree(old, M_BPF);
988                 return(0);
989         }
990         flen = fp->bf_len;
991         if (flen > BPF_MAXINSNS)
992                 return(EINVAL);
993
994         size = flen * sizeof *fp->bf_insns;
995         fcode = (struct bpf_insn *)kmalloc(size, M_BPF, M_WAITOK);
996         if (copyin(fp->bf_insns, fcode, size) == 0 &&
997             bpf_validate(fcode, (int)flen)) {
998                 crit_enter();
999                 if (wfilter)
1000                         d->bd_wfilter = fcode;
1001                 else
1002                         d->bd_rfilter = fcode;
1003                 bpf_resetd(d);
1004                 crit_exit();
1005                 if (old != NULL)
1006                         kfree(old, M_BPF);
1007
1008                 return(0);
1009         }
1010         kfree(fcode, M_BPF);
1011         return(EINVAL);
1012 }
1013
1014 /*
1015  * Detach a file from its current interface (if attached at all) and attach
1016  * to the interface indicated by the name stored in ifr.
1017  * Return an errno or 0.
1018  */
1019 static int
1020 bpf_setif(struct bpf_d *d, struct ifreq *ifr)
1021 {
1022         struct bpf_if *bp;
1023         int error;
1024         struct ifnet *theywant;
1025
1026         theywant = ifunit(ifr->ifr_name);
1027         if (theywant == NULL)
1028                 return(ENXIO);
1029
1030         /*
1031          * Look through attached interfaces for the named one.
1032          */
1033         for (bp = bpf_iflist; bp != NULL; bp = bp->bif_next) {
1034                 struct ifnet *ifp = bp->bif_ifp;
1035
1036                 if (ifp == NULL || ifp != theywant)
1037                         continue;
1038                 /* skip additional entry */
1039                 if (bp->bif_driverp != &ifp->if_bpf)
1040                         continue;
1041                 /*
1042                  * We found the requested interface.
1043                  * Allocate the packet buffers if we need to.
1044                  * If we're already attached to requested interface,
1045                  * just flush the buffer.
1046                  */
1047                 if (d->bd_sbuf == NULL) {
1048                         error = bpf_allocbufs(d);
1049                         if (error != 0)
1050                                 return(error);
1051                 }
1052                 crit_enter();
1053                 if (bp != d->bd_bif) {
1054                         if (d->bd_bif != NULL) {
1055                                 /*
1056                                  * Detach if attached to something else.
1057                                  */
1058                                 bpf_detachd(d);
1059                         }
1060
1061                         bpf_attachd(d, bp);
1062                 }
1063                 bpf_resetd(d);
1064                 crit_exit();
1065                 return(0);
1066         }
1067
1068         /* Not found. */
1069         return(ENXIO);
1070 }
1071
1072 static struct filterops bpf_read_filtops =
1073         { 1, NULL, bpf_filter_detach, bpf_filter_read };
1074
1075 static int
1076 bpfkqfilter(struct dev_kqfilter_args *ap)
1077 {
1078         cdev_t dev = ap->a_head.a_dev;
1079         struct knote *kn = ap->a_kn;
1080         struct klist *klist;
1081         struct bpf_d *d;
1082
1083         d = dev->si_drv1;
1084         if (d->bd_bif == NULL) {
1085                 ap->a_result = 1;
1086                 return (0);
1087         }
1088
1089         ap->a_result = 0;
1090         switch (kn->kn_filter) {
1091         case EVFILT_READ:
1092                 kn->kn_fop = &bpf_read_filtops;
1093                 kn->kn_hook = (caddr_t)d;
1094                 break;
1095         default:
1096                 ap->a_result = EOPNOTSUPP;
1097                 return (0);
1098         }
1099
1100         crit_enter();
1101         klist = &d->bd_sel.si_note;
1102         SLIST_INSERT_HEAD(klist, kn, kn_selnext);
1103         crit_exit();
1104
1105         return (0);
1106 }
1107
1108 static void
1109 bpf_filter_detach(struct knote *kn)
1110 {
1111         struct klist *klist;
1112         struct bpf_d *d;
1113
1114         crit_enter();
1115         d = (struct bpf_d *)kn->kn_hook;
1116         klist = &d->bd_sel.si_note;
1117         SLIST_REMOVE(klist, kn, knote, kn_selnext);
1118         crit_exit();
1119 }
1120
1121 static int
1122 bpf_filter_read(struct knote *kn, long hint)
1123 {
1124         struct bpf_d *d;
1125         int ready = 0;
1126
1127         crit_enter();
1128         d = (struct bpf_d *)kn->kn_hook;
1129         if (d->bd_hlen != 0 ||
1130             ((d->bd_immediate || d->bd_state == BPF_TIMED_OUT) &&
1131             d->bd_slen != 0)) {
1132                 ready = 1;
1133         } else {
1134                 /* Start the read timeout if necessary. */
1135                 if (d->bd_rtout > 0 && d->bd_state == BPF_IDLE) {
1136                         callout_reset(&d->bd_callout, d->bd_rtout,
1137                             bpf_timed_out, d);
1138                         d->bd_state = BPF_WAITING;
1139                 }
1140         }
1141         crit_exit();
1142
1143         return (ready);
1144 }
1145
1146
1147 /*
1148  * Process the packet pkt of length pktlen.  The packet is parsed
1149  * by each listener's filter, and if accepted, stashed into the
1150  * corresponding buffer.
1151  */
1152 void
1153 bpf_tap(struct bpf_if *bp, u_char *pkt, u_int pktlen)
1154 {
1155         struct bpf_d *d;
1156         struct timeval tv;
1157         int gottime = 0;
1158         u_int slen;
1159
1160         get_mplock();
1161
1162         /* Re-check */
1163         if (bp == NULL) {
1164                 rel_mplock();
1165                 return;
1166         }
1167
1168         /*
1169          * Note that the ipl does not have to be raised at this point.
1170          * The only problem that could arise here is that if two different
1171          * interfaces shared any data.  This is not the case.
1172          */
1173         SLIST_FOREACH(d, &bp->bif_dlist, bd_next) {
1174                 ++d->bd_rcount;
1175                 slen = bpf_filter(d->bd_rfilter, pkt, pktlen, pktlen);
1176                 if (slen != 0) {
1177                         if (!gottime) {
1178                                 microtime(&tv);
1179                                 gottime = 1;
1180                         }
1181                         catchpacket(d, pkt, pktlen, slen, ovbcopy, &tv);
1182                 }
1183         }
1184
1185         rel_mplock();
1186 }
1187
1188 /*
1189  * Copy data from an mbuf chain into a buffer.  This code is derived
1190  * from m_copydata in sys/uipc_mbuf.c.
1191  */
1192 static void
1193 bpf_mcopy(const void *src_arg, void *dst_arg, size_t len)
1194 {
1195         const struct mbuf *m;
1196         u_int count;
1197         u_char *dst;
1198
1199         m = src_arg;
1200         dst = dst_arg;
1201         while (len > 0) {
1202                 if (m == NULL)
1203                         panic("bpf_mcopy");
1204                 count = min(m->m_len, len);
1205                 bcopy(mtod(m, void *), dst, count);
1206                 m = m->m_next;
1207                 dst += count;
1208                 len -= count;
1209         }
1210 }
1211
1212 /*
1213  * Process the packet in the mbuf chain m.  The packet is parsed by each
1214  * listener's filter, and if accepted, stashed into the corresponding
1215  * buffer.
1216  */
1217 void
1218 bpf_mtap(struct bpf_if *bp, struct mbuf *m)
1219 {
1220         struct bpf_d *d;
1221         u_int pktlen, slen;
1222         struct timeval tv;
1223         int gottime = 0;
1224
1225         get_mplock();
1226
1227         /* Re-check */
1228         if (bp == NULL) {
1229                 rel_mplock();
1230                 return;
1231         }
1232
1233         /* Don't compute pktlen, if no descriptor is attached. */
1234         if (SLIST_EMPTY(&bp->bif_dlist)) {
1235                 rel_mplock();
1236                 return;
1237         }
1238
1239         pktlen = m_lengthm(m, NULL);
1240
1241         SLIST_FOREACH(d, &bp->bif_dlist, bd_next) {
1242                 if (!d->bd_seesent && (m->m_pkthdr.rcvif == NULL))
1243                         continue;
1244                 ++d->bd_rcount;
1245                 slen = bpf_filter(d->bd_rfilter, (u_char *)m, pktlen, 0);
1246                 if (slen != 0) {
1247                         if (!gottime) {
1248                                 microtime(&tv);
1249                                 gottime = 1;
1250                         }
1251                         catchpacket(d, (u_char *)m, pktlen, slen, bpf_mcopy,
1252                                     &tv);
1253                 }
1254         }
1255
1256         rel_mplock();
1257 }
1258
1259 void
1260 bpf_mtap_family(struct bpf_if *bp, struct mbuf *m, sa_family_t family)
1261 {
1262         u_int family4;
1263
1264         KKASSERT(family != AF_UNSPEC);
1265
1266         family4 = (u_int)family;
1267         bpf_ptap(bp, m, &family4, sizeof(family4));
1268 }
1269
1270 /*
1271  * Process the packet in the mbuf chain m with the header in m prepended.
1272  * The packet is parsed by each listener's filter, and if accepted,
1273  * stashed into the corresponding buffer.
1274  */
1275 void
1276 bpf_ptap(struct bpf_if *bp, struct mbuf *m, const void *data, u_int dlen)
1277 {
1278         struct mbuf mb;
1279
1280         /*
1281          * Craft on-stack mbuf suitable for passing to bpf_mtap.
1282          * Note that we cut corners here; we only setup what's
1283          * absolutely needed--this mbuf should never go anywhere else.
1284          */
1285         mb.m_next = m;
1286         mb.m_data = __DECONST(void *, data); /* LINTED */
1287         mb.m_len = dlen;
1288         mb.m_pkthdr.rcvif = m->m_pkthdr.rcvif;
1289
1290         bpf_mtap(bp, &mb);
1291 }
1292
1293 /*
1294  * Move the packet data from interface memory (pkt) into the
1295  * store buffer.  Return 1 if it's time to wakeup a listener (buffer full),
1296  * otherwise 0.  "copy" is the routine called to do the actual data
1297  * transfer.  bcopy is passed in to copy contiguous chunks, while
1298  * bpf_mcopy is passed in to copy mbuf chains.  In the latter case,
1299  * pkt is really an mbuf.
1300  */
1301 static void
1302 catchpacket(struct bpf_d *d, u_char *pkt, u_int pktlen, u_int snaplen,
1303             void (*cpfn)(const void *, void *, size_t),
1304             const struct timeval *tv)
1305 {
1306         struct bpf_hdr *hp;
1307         int totlen, curlen;
1308         int hdrlen = d->bd_bif->bif_hdrlen;
1309         /*
1310          * Figure out how many bytes to move.  If the packet is
1311          * greater or equal to the snapshot length, transfer that
1312          * much.  Otherwise, transfer the whole packet (unless
1313          * we hit the buffer size limit).
1314          */
1315         totlen = hdrlen + min(snaplen, pktlen);
1316         if (totlen > d->bd_bufsize)
1317                 totlen = d->bd_bufsize;
1318
1319         /*
1320          * Round up the end of the previous packet to the next longword.
1321          */
1322         curlen = BPF_WORDALIGN(d->bd_slen);
1323         if (curlen + totlen > d->bd_bufsize) {
1324                 /*
1325                  * This packet will overflow the storage buffer.
1326                  * Rotate the buffers if we can, then wakeup any
1327                  * pending reads.
1328                  */
1329                 if (d->bd_fbuf == NULL) {
1330                         /*
1331                          * We haven't completed the previous read yet,
1332                          * so drop the packet.
1333                          */
1334                         ++d->bd_dcount;
1335                         return;
1336                 }
1337                 ROTATE_BUFFERS(d);
1338                 bpf_wakeup(d);
1339                 curlen = 0;
1340         } else if (d->bd_immediate || d->bd_state == BPF_TIMED_OUT) {
1341                 /*
1342                  * Immediate mode is set, or the read timeout has
1343                  * already expired during a select call.  A packet
1344                  * arrived, so the reader should be woken up.
1345                  */
1346                 bpf_wakeup(d);
1347         }
1348
1349         /*
1350          * Append the bpf header.
1351          */
1352         hp = (struct bpf_hdr *)(d->bd_sbuf + curlen);
1353         hp->bh_tstamp = *tv;
1354         hp->bh_datalen = pktlen;
1355         hp->bh_hdrlen = hdrlen;
1356         /*
1357          * Copy the packet data into the store buffer and update its length.
1358          */
1359         (*cpfn)(pkt, (u_char *)hp + hdrlen, (hp->bh_caplen = totlen - hdrlen));
1360         d->bd_slen = curlen + totlen;
1361 }
1362
1363 /*
1364  * Initialize all nonzero fields of a descriptor.
1365  */
1366 static int
1367 bpf_allocbufs(struct bpf_d *d)
1368 {
1369         d->bd_fbuf = kmalloc(d->bd_bufsize, M_BPF, M_WAITOK);
1370         d->bd_sbuf = kmalloc(d->bd_bufsize, M_BPF, M_WAITOK);
1371         d->bd_slen = 0;
1372         d->bd_hlen = 0;
1373         return(0);
1374 }
1375
1376 /*
1377  * Free buffers and packet filter program currently in use by a descriptor.
1378  * Called on close.
1379  */
1380 static void
1381 bpf_freed(struct bpf_d *d)
1382 {
1383         /*
1384          * We don't need to lock out interrupts since this descriptor has
1385          * been detached from its interface and it yet hasn't been marked
1386          * free.
1387          */
1388         if (d->bd_sbuf != NULL) {
1389                 kfree(d->bd_sbuf, M_BPF);
1390                 if (d->bd_hbuf != NULL)
1391                         kfree(d->bd_hbuf, M_BPF);
1392                 if (d->bd_fbuf != NULL)
1393                         kfree(d->bd_fbuf, M_BPF);
1394         }
1395         if (d->bd_rfilter)
1396                 kfree(d->bd_rfilter, M_BPF);
1397         if (d->bd_wfilter)
1398                 kfree(d->bd_wfilter, M_BPF);
1399 }
1400
1401 /*
1402  * Attach an interface to bpf.  ifp is a pointer to the structure
1403  * defining the interface to be attached, dlt is the link layer type,
1404  * and hdrlen is the fixed size of the link header (variable length
1405  * headers are not yet supported).
1406  */
1407 void
1408 bpfattach(struct ifnet *ifp, u_int dlt, u_int hdrlen)
1409 {
1410         bpfattach_dlt(ifp, dlt, hdrlen, &ifp->if_bpf);
1411 }
1412
1413 void
1414 bpfattach_dlt(struct ifnet *ifp, u_int dlt, u_int hdrlen, struct bpf_if **driverp)
1415 {
1416         struct bpf_if *bp;
1417
1418         bp = kmalloc(sizeof *bp, M_BPF, M_WAITOK | M_ZERO);
1419
1420         SLIST_INIT(&bp->bif_dlist);
1421         bp->bif_ifp = ifp;
1422         bp->bif_dlt = dlt;
1423         bp->bif_driverp = driverp;
1424         *bp->bif_driverp = NULL;
1425
1426         bp->bif_next = bpf_iflist;
1427         bpf_iflist = bp;
1428
1429         /*
1430          * Compute the length of the bpf header.  This is not necessarily
1431          * equal to SIZEOF_BPF_HDR because we want to insert spacing such
1432          * that the network layer header begins on a longword boundary (for
1433          * performance reasons and to alleviate alignment restrictions).
1434          */
1435         bp->bif_hdrlen = BPF_WORDALIGN(hdrlen + SIZEOF_BPF_HDR) - hdrlen;
1436
1437         if (bootverbose)
1438                 if_printf(ifp, "bpf attached\n");
1439 }
1440
1441 /*
1442  * Detach bpf from an interface.  This involves detaching each descriptor
1443  * associated with the interface, and leaving bd_bif NULL.  Notify each
1444  * descriptor as it's detached so that any sleepers wake up and get
1445  * ENXIO.
1446  */
1447 void
1448 bpfdetach(struct ifnet *ifp)
1449 {
1450         struct bpf_if *bp, *bp_prev;
1451         struct bpf_d *d;
1452
1453         crit_enter();
1454
1455         /* Locate BPF interface information */
1456         bp_prev = NULL;
1457         for (bp = bpf_iflist; bp != NULL; bp = bp->bif_next) {
1458                 if (ifp == bp->bif_ifp)
1459                         break;
1460                 bp_prev = bp;
1461         }
1462
1463         /* Interface wasn't attached */
1464         if (bp->bif_ifp == NULL) {
1465                 crit_exit();
1466                 kprintf("bpfdetach: %s was not attached\n", ifp->if_xname);
1467                 return;
1468         }
1469
1470         while ((d = SLIST_FIRST(&bp->bif_dlist)) != NULL) {
1471                 bpf_detachd(d);
1472                 bpf_wakeup(d);
1473         }
1474
1475         if (bp_prev != NULL)
1476                 bp_prev->bif_next = bp->bif_next;
1477         else
1478                 bpf_iflist = bp->bif_next;
1479
1480         kfree(bp, M_BPF);
1481
1482         crit_exit();
1483 }
1484
1485 /*
1486  * Get a list of available data link type of the interface.
1487  */
1488 static int
1489 bpf_getdltlist(struct bpf_d *d, struct bpf_dltlist *bfl)
1490 {
1491         int n, error;
1492         struct ifnet *ifp;
1493         struct bpf_if *bp;
1494
1495         ifp = d->bd_bif->bif_ifp;
1496         n = 0;
1497         error = 0;
1498         for (bp = bpf_iflist; bp != NULL; bp = bp->bif_next) {
1499                 if (bp->bif_ifp != ifp)
1500                         continue;
1501                 if (bfl->bfl_list != NULL) {
1502                         if (n >= bfl->bfl_len) {
1503                                 return (ENOMEM);
1504                         }
1505                         error = copyout(&bp->bif_dlt,
1506                             bfl->bfl_list + n, sizeof(u_int));
1507                 }
1508                 n++;
1509         }
1510         bfl->bfl_len = n;
1511         return(error);
1512 }
1513
1514 /*
1515  * Set the data link type of a BPF instance.
1516  */
1517 static int
1518 bpf_setdlt(struct bpf_d *d, u_int dlt)
1519 {
1520         int error, opromisc;
1521         struct ifnet *ifp;
1522         struct bpf_if *bp;
1523
1524         if (d->bd_bif->bif_dlt == dlt)
1525                 return (0);
1526         ifp = d->bd_bif->bif_ifp;
1527         for (bp = bpf_iflist; bp != NULL; bp = bp->bif_next) {
1528                 if (bp->bif_ifp == ifp && bp->bif_dlt == dlt)
1529                         break;
1530         }
1531         if (bp != NULL) {
1532                 opromisc = d->bd_promisc;
1533                 crit_enter();
1534                 bpf_detachd(d);
1535                 bpf_attachd(d, bp);
1536                 bpf_resetd(d);
1537                 if (opromisc) {
1538                         error = ifpromisc(bp->bif_ifp, 1);
1539                         if (error) {
1540                                 if_printf(bp->bif_ifp,
1541                                         "bpf_setdlt: ifpromisc failed (%d)\n",
1542                                         error);
1543                         } else {
1544                                 d->bd_promisc = 1;
1545                         }
1546                 }
1547                 crit_exit();
1548         }
1549         return(bp == NULL ? EINVAL : 0);
1550 }
1551
1552 static void
1553 bpf_drvinit(void *unused)
1554 {
1555         int i;
1556
1557         make_autoclone_dev(&bpf_ops, &DEVFS_CLONE_BITMAP(bpf),
1558                 bpfclone, 0, 0, 0600, "bpf");
1559         for (i = 0; i < BPF_PREALLOCATED_UNITS; i++) {
1560                 make_dev(&bpf_ops, i, 0, 0, 0600, "bpf%d", i);
1561                 devfs_clone_bitmap_set(&DEVFS_CLONE_BITMAP(bpf), i);
1562         }
1563 }
1564
1565 static void
1566 bpf_drvuninit(void *unused)
1567 {
1568         devfs_clone_handler_del("bpf");
1569         dev_ops_remove_all(&bpf_ops);
1570         devfs_clone_bitmap_uninit(&DEVFS_CLONE_BITMAP(bpf));
1571 }
1572
1573 SYSINIT(bpfdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,bpf_drvinit,NULL)
1574 SYSUNINIT(bpfdev, SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,bpf_drvuninit, NULL);
1575
1576 #else /* !BPF */
1577 /*
1578  * NOP stubs to allow bpf-using drivers to load and function.
1579  *
1580  * A 'better' implementation would allow the core bpf functionality
1581  * to be loaded at runtime.
1582  */
1583
1584 void
1585 bpf_tap(struct bpf_if *bp, u_char *pkt, u_int pktlen)
1586 {
1587 }
1588
1589 void
1590 bpf_mtap(struct bpf_if *bp, struct mbuf *m)
1591 {
1592 }
1593
1594 void
1595 bpf_ptap(struct bpf_if *bp, struct mbuf *m, const void *data, u_int dlen)
1596 {
1597 }
1598
1599 void
1600 bpfattach(struct ifnet *ifp, u_int dlt, u_int hdrlen)
1601 {
1602 }
1603
1604 void
1605 bpfattach_dlt(struct ifnet *ifp, u_int dlt, u_int hdrlen, struct bpf_if **driverp)
1606 {
1607 }
1608
1609 void
1610 bpfdetach(struct ifnet *ifp)
1611 {
1612 }
1613
1614 u_int
1615 bpf_filter(const struct bpf_insn *pc, u_char *p, u_int wirelen, u_int buflen)
1616 {
1617         return -1;      /* "no filter" behaviour */
1618 }
1619
1620 #endif /* !BPF */