2 * Copyright (c) 1990, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
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
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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.
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
38 * @(#)bpf.c 8.2 (Berkeley) 3/28/94
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 $
46 #include <sys/param.h>
47 #include <sys/systm.h>
49 #include <sys/device.h>
50 #include <sys/malloc.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>
62 #include <sys/socket.h>
63 #include <sys/vnode.h>
65 #include <sys/thread2.h>
66 #include <sys/mplock2.h>
70 #include <net/bpfdesc.h>
71 #include <net/netmsg2.h>
73 #include <netinet/in.h>
74 #include <netinet/if_ether.h>
75 #include <sys/kernel.h>
76 #include <sys/sysctl.h>
78 #include <sys/devfs.h>
80 struct netmsg_bpf_output
{
81 struct netmsg nm_netmsg
;
84 struct sockaddr
*nm_dst
;
87 MALLOC_DEFINE(M_BPF
, "BPF", "BPF data");
88 DEVFS_DECLARE_CLONE_BITMAP(bpf
);
91 #define BPF_PREALLOCATED_UNITS 4
93 #define BPF_PREALLOCATED_UNITS NBPF
99 * The default read buffer size is patchable.
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, "");
109 * bpf_iflist is the list of interfaces; each corresponds to an ifnet
111 static struct bpf_if
*bpf_iflist
;
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
);
132 static d_open_t bpfopen
;
133 static d_clone_t bpfclone
;
134 static d_close_t bpfclose
;
135 static d_read_t bpfread
;
136 static d_write_t bpfwrite
;
137 static d_ioctl_t bpfioctl
;
138 static d_poll_t bpfpoll
;
140 #define CDEV_MAJOR 23
141 static struct dev_ops bpf_ops
= {
142 { "bpf", CDEV_MAJOR
, 0 },
153 bpf_movein(struct uio
*uio
, int linktype
, struct mbuf
**mp
,
154 struct sockaddr
*sockp
, int *datlen
, struct bpf_insn
*wfilter
)
166 * Build a sockaddr based on the data link layer type.
167 * We do this at this level because the ethernet header
168 * is copied directly into the data field of the sockaddr.
169 * In the case of SLIP, there is no header and the packet
170 * is forwarded as is.
171 * Also, we are careful to leave room at the front of the mbuf
172 * for the link level header.
176 sockp
->sa_family
= AF_INET
;
181 sockp
->sa_family
= AF_UNSPEC
;
182 /* XXX Would MAXLINKHDR be better? */
183 hlen
= sizeof(struct ether_header
);
188 sockp
->sa_family
= AF_UNSPEC
;
192 case DLT_ATM_RFC1483
:
194 * en atm driver requires 4-byte atm pseudo header.
195 * though it isn't standard, vpi:vci needs to be
198 sockp
->sa_family
= AF_UNSPEC
;
199 hlen
= 12; /* XXX 4(ATM_PH) + 3(LLC) + 5(SNAP) */
203 sockp
->sa_family
= AF_UNSPEC
;
204 hlen
= 4; /* This should match PPP_HDRLEN */
211 len
= uio
->uio_resid
;
212 *datlen
= len
- hlen
;
213 if ((unsigned)len
> MCLBYTES
)
216 m
= m_getl(len
, MB_WAIT
, MT_DATA
, M_PKTHDR
, NULL
);
219 m
->m_pkthdr
.len
= m
->m_len
= len
;
220 m
->m_pkthdr
.rcvif
= NULL
;
223 if (m
->m_len
< hlen
) {
228 error
= uiomove(mtod(m
, u_char
*), len
, uio
);
232 slen
= bpf_filter(wfilter
, mtod(m
, u_char
*), len
, len
);
239 * Make room for link header, and copy it to sockaddr.
242 bcopy(m
->m_data
, sockp
->sa_data
, hlen
);
243 m
->m_pkthdr
.len
-= hlen
;
245 m
->m_data
+= hlen
; /* XXX */
254 * Attach file to the bpf interface, i.e. make d listen on bp.
255 * Must be called at splimp.
258 bpf_attachd(struct bpf_d
*d
, struct bpf_if
*bp
)
261 * Point d at bp, and add d to the interface's list of listeners.
262 * Finally, point the driver's bpf cookie at the interface so
263 * it will divert packets to bpf.
266 SLIST_INSERT_HEAD(&bp
->bif_dlist
, d
, bd_next
);
267 *bp
->bif_driverp
= bp
;
271 * Detach a file from its interface.
274 bpf_detachd(struct bpf_d
*d
)
283 /* Remove d from the interface's descriptor list. */
284 SLIST_REMOVE(&bp
->bif_dlist
, d
, bpf_d
, bd_next
);
286 if (SLIST_EMPTY(&bp
->bif_dlist
)) {
288 * Let the driver know that there are no more listeners.
290 *bp
->bif_driverp
= NULL
;
294 * Check if this descriptor had requested promiscuous mode.
295 * If so, turn it off.
299 error
= ifpromisc(ifp
, 0);
300 if (error
!= 0 && error
!= ENXIO
) {
302 * ENXIO can happen if a pccard is unplugged,
303 * Something is really wrong if we were able to put
304 * the driver into promiscuous mode, but can't
307 if_printf(ifp
, "bpf_detach: ifpromisc failed(%d)\n",
314 * Open ethernet device. Returns ENXIO for illegal minor device number,
315 * EBUSY if file is open by another process.
319 bpfopen(struct dev_open_args
*ap
)
321 cdev_t dev
= ap
->a_head
.a_dev
;
324 if (ap
->a_cred
->cr_prison
)
329 * Each minor can be opened by only one process. If the requested
330 * minor is in use, return EBUSY.
335 MALLOC(d
, struct bpf_d
*, sizeof *d
, M_BPF
, M_WAITOK
| M_ZERO
);
337 d
->bd_bufsize
= bpf_bufsize
;
340 callout_init(&d
->bd_callout
);
345 bpfclone(struct dev_clone_args
*ap
)
349 unit
= devfs_clone_bitmap_get(&DEVFS_CLONE_BITMAP(bpf
), 0);
350 ap
->a_dev
= make_only_dev(&bpf_ops
, unit
, 0, 0, 0600, "bpf%d", unit
);
356 * Close the descriptor by detaching it from its interface,
357 * deallocating its buffers, and marking it free.
361 bpfclose(struct dev_close_args
*ap
)
363 cdev_t dev
= ap
->a_head
.a_dev
;
364 struct bpf_d
*d
= dev
->si_drv1
;
366 funsetown(d
->bd_sigio
);
368 if (d
->bd_state
== BPF_WAITING
)
369 callout_stop(&d
->bd_callout
);
370 d
->bd_state
= BPF_IDLE
;
371 if (d
->bd_bif
!= NULL
)
376 if (dev
->si_uminor
>= BPF_PREALLOCATED_UNITS
) {
377 devfs_clone_bitmap_put(&DEVFS_CLONE_BITMAP(bpf
), dev
->si_uminor
);
385 * Rotate the packet buffers in descriptor d. Move the store buffer
386 * into the hold slot, and the free buffer into the store slot.
387 * Zero the length of the new store buffer.
389 #define ROTATE_BUFFERS(d) \
390 (d)->bd_hbuf = (d)->bd_sbuf; \
391 (d)->bd_hlen = (d)->bd_slen; \
392 (d)->bd_sbuf = (d)->bd_fbuf; \
396 * bpfread - read next chunk of packets from buffers
399 bpfread(struct dev_read_args
*ap
)
401 cdev_t dev
= ap
->a_head
.a_dev
;
402 struct bpf_d
*d
= dev
->si_drv1
;
407 * Restrict application to use a buffer the same size as
410 if (ap
->a_uio
->uio_resid
!= d
->bd_bufsize
)
414 if (d
->bd_state
== BPF_WAITING
)
415 callout_stop(&d
->bd_callout
);
416 timed_out
= (d
->bd_state
== BPF_TIMED_OUT
);
417 d
->bd_state
= BPF_IDLE
;
419 * If the hold buffer is empty, then do a timed sleep, which
420 * ends when the timeout expires or when enough packets
421 * have arrived to fill the store buffer.
423 while (d
->bd_hbuf
== NULL
) {
424 if ((d
->bd_immediate
|| (ap
->a_ioflag
& IO_NDELAY
) || timed_out
)
425 && d
->bd_slen
!= 0) {
427 * A packet(s) either arrived since the previous,
428 * We're in immediate mode, or are reading
429 * in non-blocking mode, and a packet(s)
430 * either arrived since the previous
431 * read or arrived while we were asleep.
432 * Rotate the buffers and return what's here.
439 * No data is available, check to see if the bpf device
440 * is still pointed at a real interface. If not, return
441 * ENXIO so that the userland process knows to rebind
442 * it before using it again.
444 if (d
->bd_bif
== NULL
) {
449 if (ap
->a_ioflag
& IO_NDELAY
) {
453 error
= tsleep(d
, PCATCH
, "bpf", d
->bd_rtout
);
454 if (error
== EINTR
|| error
== ERESTART
) {
458 if (error
== EWOULDBLOCK
) {
460 * On a timeout, return what's in the buffer,
461 * which may be nothing. If there is something
462 * in the store buffer, we can rotate the buffers.
466 * We filled up the buffer in between
467 * getting the timeout and arriving
468 * here, so we don't need to rotate.
472 if (d
->bd_slen
== 0) {
481 * At this point, we know we have something in the hold slot.
486 * Move data from hold buffer into user space.
487 * We know the entire buffer is transferred since
488 * we checked above that the read buffer is bpf_bufsize bytes.
490 error
= uiomove(d
->bd_hbuf
, d
->bd_hlen
, ap
->a_uio
);
493 d
->bd_fbuf
= d
->bd_hbuf
;
503 * If there are processes sleeping on this descriptor, wake them up.
506 bpf_wakeup(struct bpf_d
*d
)
508 if (d
->bd_state
== BPF_WAITING
) {
509 callout_stop(&d
->bd_callout
);
510 d
->bd_state
= BPF_IDLE
;
513 if (d
->bd_async
&& d
->bd_sig
&& d
->bd_sigio
)
514 pgsigio(d
->bd_sigio
, d
->bd_sig
, 0);
517 selwakeup(&d
->bd_sel
);
520 d
->bd_sel
.si_pid
= 0;
524 bpf_timed_out(void *arg
)
526 struct bpf_d
*d
= (struct bpf_d
*)arg
;
529 if (d
->bd_state
== BPF_WAITING
) {
530 d
->bd_state
= BPF_TIMED_OUT
;
538 bpf_output_dispatch(struct netmsg
*nmsg
)
540 struct netmsg_bpf_output
*bmsg
= (struct netmsg_bpf_output
*)nmsg
;
541 struct ifnet
*ifp
= bmsg
->nm_ifp
;
545 * The driver frees the mbuf.
547 error
= ifp
->if_output(ifp
, bmsg
->nm_mbuf
, bmsg
->nm_dst
, NULL
);
548 lwkt_replymsg(&nmsg
->nm_lmsg
, error
);
552 bpfwrite(struct dev_write_args
*ap
)
554 cdev_t dev
= ap
->a_head
.a_dev
;
555 struct bpf_d
*d
= dev
->si_drv1
;
561 struct netmsg_bpf_output bmsg
;
563 if (d
->bd_bif
== NULL
)
566 ifp
= d
->bd_bif
->bif_ifp
;
568 if (ap
->a_uio
->uio_resid
== 0)
571 error
= bpf_movein(ap
->a_uio
, (int)d
->bd_bif
->bif_dlt
, &m
,
572 &dst
, &datlen
, d
->bd_wfilter
);
576 if (datlen
> ifp
->if_mtu
) {
582 dst
.sa_family
= pseudo_AF_HDRCMPLT
;
584 netmsg_init(&bmsg
.nm_netmsg
, NULL
, &curthread
->td_msgport
,
585 MSGF_MPSAFE
, bpf_output_dispatch
);
590 return lwkt_domsg(cpu_portfn(0), &bmsg
.nm_netmsg
.nm_lmsg
, 0);
594 * Reset a descriptor by flushing its packet buffer and clearing the
595 * receive and drop counts. Should be called at splimp.
598 bpf_resetd(struct bpf_d
*d
)
601 /* Free the hold buffer. */
602 d
->bd_fbuf
= d
->bd_hbuf
;
612 * FIONREAD Check for read packet available.
613 * SIOCGIFADDR Get interface address - convenient hook to driver.
614 * BIOCGBLEN Get buffer len [for read()].
615 * BIOCSETF Set ethernet read filter.
616 * BIOCSETWF Set ethernet write filter.
617 * BIOCFLUSH Flush read packet buffer.
618 * BIOCPROMISC Put interface into promiscuous mode.
619 * BIOCGDLT Get link layer type.
620 * BIOCGETIF Get interface name.
621 * BIOCSETIF Set interface.
622 * BIOCSRTIMEOUT Set read timeout.
623 * BIOCGRTIMEOUT Get read timeout.
624 * BIOCGSTATS Get packet stats.
625 * BIOCIMMEDIATE Set immediate mode.
626 * BIOCVERSION Get filter language version.
627 * BIOCGHDRCMPLT Get "header already complete" flag
628 * BIOCSHDRCMPLT Set "header already complete" flag
629 * BIOCGSEESENT Get "see packets sent" flag
630 * BIOCSSEESENT Set "see packets sent" flag
631 * BIOCLOCK Set "locked" flag
635 bpfioctl(struct dev_ioctl_args
*ap
)
637 cdev_t dev
= ap
->a_head
.a_dev
;
638 struct bpf_d
*d
= dev
->si_drv1
;
642 if (d
->bd_state
== BPF_WAITING
)
643 callout_stop(&d
->bd_callout
);
644 d
->bd_state
= BPF_IDLE
;
647 if (d
->bd_locked
== 1) {
675 * Check for read packet available.
687 *(int *)ap
->a_data
= n
;
695 if (d
->bd_bif
== NULL
) {
698 ifp
= d
->bd_bif
->bif_ifp
;
699 ifnet_serialize_all(ifp
);
700 error
= ifp
->if_ioctl(ifp
, ap
->a_cmd
,
701 ap
->a_data
, ap
->a_cred
);
702 ifnet_deserialize_all(ifp
);
708 * Get buffer len [for read()].
711 *(u_int
*)ap
->a_data
= d
->bd_bufsize
;
718 if (d
->bd_bif
!= NULL
) {
721 u_int size
= *(u_int
*)ap
->a_data
;
723 if (size
> bpf_maxbufsize
)
724 *(u_int
*)ap
->a_data
= size
= bpf_maxbufsize
;
725 else if (size
< BPF_MINBUFSIZE
)
726 *(u_int
*)ap
->a_data
= size
= BPF_MINBUFSIZE
;
727 d
->bd_bufsize
= size
;
732 * Set link layer read filter.
736 error
= bpf_setf(d
, (struct bpf_program
*)ap
->a_data
,
741 * Flush read packet buffer.
750 * Put interface into promiscuous mode.
753 if (d
->bd_bif
== NULL
) {
755 * No interface attached yet.
761 if (d
->bd_promisc
== 0) {
762 error
= ifpromisc(d
->bd_bif
->bif_ifp
, 1);
770 * Get device parameters.
773 if (d
->bd_bif
== NULL
)
776 *(u_int
*)ap
->a_data
= d
->bd_bif
->bif_dlt
;
780 * Get a list of supported data link types.
783 if (d
->bd_bif
== NULL
) {
786 error
= bpf_getdltlist(d
,
787 (struct bpf_dltlist
*)ap
->a_data
);
792 * Set data link type.
795 if (d
->bd_bif
== NULL
)
798 error
= bpf_setdlt(d
, *(u_int
*)ap
->a_data
);
802 * Get interface name.
805 if (d
->bd_bif
== NULL
) {
808 struct ifnet
*const ifp
= d
->bd_bif
->bif_ifp
;
809 struct ifreq
*const ifr
= (struct ifreq
*)ap
->a_data
;
811 strlcpy(ifr
->ifr_name
, ifp
->if_xname
,
812 sizeof ifr
->ifr_name
);
820 error
= bpf_setif(d
, (struct ifreq
*)ap
->a_data
);
828 struct timeval
*tv
= (struct timeval
*)ap
->a_data
;
831 * Subtract 1 tick from tvtohz() since this isn't
834 if ((error
= itimerfix(tv
)) == 0)
835 d
->bd_rtout
= tvtohz_low(tv
);
844 struct timeval
*tv
= (struct timeval
*)ap
->a_data
;
846 tv
->tv_sec
= d
->bd_rtout
/ hz
;
847 tv
->tv_usec
= (d
->bd_rtout
% hz
) * ustick
;
856 struct bpf_stat
*bs
= (struct bpf_stat
*)ap
->a_data
;
858 bs
->bs_recv
= d
->bd_rcount
;
859 bs
->bs_drop
= d
->bd_dcount
;
864 * Set immediate mode.
867 d
->bd_immediate
= *(u_int
*)ap
->a_data
;
872 struct bpf_version
*bv
= (struct bpf_version
*)ap
->a_data
;
874 bv
->bv_major
= BPF_MAJOR_VERSION
;
875 bv
->bv_minor
= BPF_MINOR_VERSION
;
880 * Get "header already complete" flag
883 *(u_int
*)ap
->a_data
= d
->bd_hdrcmplt
;
887 * Set "header already complete" flag
890 d
->bd_hdrcmplt
= *(u_int
*)ap
->a_data
? 1 : 0;
894 * Get "see sent packets" flag
897 *(u_int
*)ap
->a_data
= d
->bd_seesent
;
901 * Set "see sent packets" flag
904 d
->bd_seesent
= *(u_int
*)ap
->a_data
;
907 case FIOASYNC
: /* Send signal on receive packets */
908 d
->bd_async
= *(int *)ap
->a_data
;
912 error
= fsetown(*(int *)ap
->a_data
, &d
->bd_sigio
);
916 *(int *)ap
->a_data
= fgetown(d
->bd_sigio
);
919 /* This is deprecated, FIOSETOWN should be used instead. */
921 error
= fsetown(-(*(int *)ap
->a_data
), &d
->bd_sigio
);
924 /* This is deprecated, FIOGETOWN should be used instead. */
926 *(int *)ap
->a_data
= -fgetown(d
->bd_sigio
);
929 case BIOCSRSIG
: /* Set receive signal */
933 sig
= *(u_int
*)ap
->a_data
;
942 *(u_int
*)ap
->a_data
= d
->bd_sig
;
952 * Set d's packet filter program to fp. If this file already has a filter,
953 * free it and replace it. Returns EINVAL for bogus requests.
956 bpf_setf(struct bpf_d
*d
, struct bpf_program
*fp
, u_long cmd
)
958 struct bpf_insn
*fcode
, *old
;
959 u_int wfilter
, flen
, size
;
961 if (cmd
== BIOCSETWF
) {
968 if (fp
->bf_insns
== NULL
) {
973 d
->bd_wfilter
= NULL
;
975 d
->bd_rfilter
= NULL
;
983 if (flen
> BPF_MAXINSNS
)
986 size
= flen
* sizeof *fp
->bf_insns
;
987 fcode
= (struct bpf_insn
*)kmalloc(size
, M_BPF
, M_WAITOK
);
988 if (copyin(fp
->bf_insns
, fcode
, size
) == 0 &&
989 bpf_validate(fcode
, (int)flen
)) {
992 d
->bd_wfilter
= fcode
;
994 d
->bd_rfilter
= fcode
;
1002 kfree(fcode
, M_BPF
);
1007 * Detach a file from its current interface (if attached at all) and attach
1008 * to the interface indicated by the name stored in ifr.
1009 * Return an errno or 0.
1012 bpf_setif(struct bpf_d
*d
, struct ifreq
*ifr
)
1016 struct ifnet
*theywant
;
1018 theywant
= ifunit(ifr
->ifr_name
);
1019 if (theywant
== NULL
)
1023 * Look through attached interfaces for the named one.
1025 for (bp
= bpf_iflist
; bp
!= NULL
; bp
= bp
->bif_next
) {
1026 struct ifnet
*ifp
= bp
->bif_ifp
;
1028 if (ifp
== NULL
|| ifp
!= theywant
)
1030 /* skip additional entry */
1031 if (bp
->bif_driverp
!= &ifp
->if_bpf
)
1034 * We found the requested interface.
1035 * If it's not up, return an error.
1036 * Allocate the packet buffers if we need to.
1037 * If we're already attached to requested interface,
1038 * just flush the buffer.
1040 if (!(ifp
->if_flags
& IFF_UP
))
1043 if (d
->bd_sbuf
== NULL
) {
1044 error
= bpf_allocbufs(d
);
1049 if (bp
!= d
->bd_bif
) {
1050 if (d
->bd_bif
!= NULL
) {
1052 * Detach if attached to something else.
1069 * Support for select() and poll() system calls
1071 * Return true iff the specific operation will not block indefinitely.
1072 * Otherwise, return false but make a note that a selwakeup() must be done.
1075 bpfpoll(struct dev_poll_args
*ap
)
1077 cdev_t dev
= ap
->a_head
.a_dev
;
1082 if (d
->bd_bif
== NULL
)
1085 revents
= ap
->a_events
& (POLLOUT
| POLLWRNORM
);
1087 if (ap
->a_events
& (POLLIN
| POLLRDNORM
)) {
1089 * An imitation of the FIONREAD ioctl code.
1090 * XXX not quite. An exact imitation:
1091 * if (d->b_slen != 0 ||
1092 * (d->bd_hbuf != NULL && d->bd_hlen != 0)
1094 if (d
->bd_hlen
!= 0 ||
1095 ((d
->bd_immediate
|| d
->bd_state
== BPF_TIMED_OUT
) &&
1097 revents
|= ap
->a_events
& (POLLIN
| POLLRDNORM
);
1099 selrecord(curthread
, &d
->bd_sel
);
1100 /* Start the read timeout if necessary. */
1101 if (d
->bd_rtout
> 0 && d
->bd_state
== BPF_IDLE
) {
1102 callout_reset(&d
->bd_callout
, d
->bd_rtout
,
1104 d
->bd_state
= BPF_WAITING
;
1109 ap
->a_events
= revents
;
1114 * Process the packet pkt of length pktlen. The packet is parsed
1115 * by each listener's filter, and if accepted, stashed into the
1116 * corresponding buffer.
1119 bpf_tap(struct bpf_if
*bp
, u_char
*pkt
, u_int pktlen
)
1135 * Note that the ipl does not have to be raised at this point.
1136 * The only problem that could arise here is that if two different
1137 * interfaces shared any data. This is not the case.
1139 SLIST_FOREACH(d
, &bp
->bif_dlist
, bd_next
) {
1141 slen
= bpf_filter(d
->bd_rfilter
, pkt
, pktlen
, pktlen
);
1147 catchpacket(d
, pkt
, pktlen
, slen
, ovbcopy
, &tv
);
1155 * Copy data from an mbuf chain into a buffer. This code is derived
1156 * from m_copydata in sys/uipc_mbuf.c.
1159 bpf_mcopy(const void *src_arg
, void *dst_arg
, size_t len
)
1161 const struct mbuf
*m
;
1170 count
= min(m
->m_len
, len
);
1171 bcopy(mtod(m
, void *), dst
, count
);
1179 * Process the packet in the mbuf chain m. The packet is parsed by each
1180 * listener's filter, and if accepted, stashed into the corresponding
1184 bpf_mtap(struct bpf_if
*bp
, struct mbuf
*m
)
1199 /* Don't compute pktlen, if no descriptor is attached. */
1200 if (SLIST_EMPTY(&bp
->bif_dlist
)) {
1205 pktlen
= m_lengthm(m
, NULL
);
1207 SLIST_FOREACH(d
, &bp
->bif_dlist
, bd_next
) {
1208 if (!d
->bd_seesent
&& (m
->m_pkthdr
.rcvif
== NULL
))
1211 slen
= bpf_filter(d
->bd_rfilter
, (u_char
*)m
, pktlen
, 0);
1217 catchpacket(d
, (u_char
*)m
, pktlen
, slen
, bpf_mcopy
,
1226 bpf_mtap_family(struct bpf_if
*bp
, struct mbuf
*m
, sa_family_t family
)
1230 KKASSERT(family
!= AF_UNSPEC
);
1232 family4
= (u_int
)family
;
1233 bpf_ptap(bp
, m
, &family4
, sizeof(family4
));
1237 * Process the packet in the mbuf chain m with the header in m prepended.
1238 * The packet is parsed by each listener's filter, and if accepted,
1239 * stashed into the corresponding buffer.
1242 bpf_ptap(struct bpf_if
*bp
, struct mbuf
*m
, const void *data
, u_int dlen
)
1247 * Craft on-stack mbuf suitable for passing to bpf_mtap.
1248 * Note that we cut corners here; we only setup what's
1249 * absolutely needed--this mbuf should never go anywhere else.
1252 mb
.m_data
= __DECONST(void *, data
); /* LINTED */
1254 mb
.m_pkthdr
.rcvif
= m
->m_pkthdr
.rcvif
;
1260 * Move the packet data from interface memory (pkt) into the
1261 * store buffer. Return 1 if it's time to wakeup a listener (buffer full),
1262 * otherwise 0. "copy" is the routine called to do the actual data
1263 * transfer. bcopy is passed in to copy contiguous chunks, while
1264 * bpf_mcopy is passed in to copy mbuf chains. In the latter case,
1265 * pkt is really an mbuf.
1268 catchpacket(struct bpf_d
*d
, u_char
*pkt
, u_int pktlen
, u_int snaplen
,
1269 void (*cpfn
)(const void *, void *, size_t),
1270 const struct timeval
*tv
)
1274 int hdrlen
= d
->bd_bif
->bif_hdrlen
;
1276 * Figure out how many bytes to move. If the packet is
1277 * greater or equal to the snapshot length, transfer that
1278 * much. Otherwise, transfer the whole packet (unless
1279 * we hit the buffer size limit).
1281 totlen
= hdrlen
+ min(snaplen
, pktlen
);
1282 if (totlen
> d
->bd_bufsize
)
1283 totlen
= d
->bd_bufsize
;
1286 * Round up the end of the previous packet to the next longword.
1288 curlen
= BPF_WORDALIGN(d
->bd_slen
);
1289 if (curlen
+ totlen
> d
->bd_bufsize
) {
1291 * This packet will overflow the storage buffer.
1292 * Rotate the buffers if we can, then wakeup any
1295 if (d
->bd_fbuf
== NULL
) {
1297 * We haven't completed the previous read yet,
1298 * so drop the packet.
1306 } else if (d
->bd_immediate
|| d
->bd_state
== BPF_TIMED_OUT
) {
1308 * Immediate mode is set, or the read timeout has
1309 * already expired during a select call. A packet
1310 * arrived, so the reader should be woken up.
1316 * Append the bpf header.
1318 hp
= (struct bpf_hdr
*)(d
->bd_sbuf
+ curlen
);
1319 hp
->bh_tstamp
= *tv
;
1320 hp
->bh_datalen
= pktlen
;
1321 hp
->bh_hdrlen
= hdrlen
;
1323 * Copy the packet data into the store buffer and update its length.
1325 (*cpfn
)(pkt
, (u_char
*)hp
+ hdrlen
, (hp
->bh_caplen
= totlen
- hdrlen
));
1326 d
->bd_slen
= curlen
+ totlen
;
1330 * Initialize all nonzero fields of a descriptor.
1333 bpf_allocbufs(struct bpf_d
*d
)
1335 d
->bd_fbuf
= kmalloc(d
->bd_bufsize
, M_BPF
, M_WAITOK
);
1336 d
->bd_sbuf
= kmalloc(d
->bd_bufsize
, M_BPF
, M_WAITOK
);
1343 * Free buffers and packet filter program currently in use by a descriptor.
1347 bpf_freed(struct bpf_d
*d
)
1350 * We don't need to lock out interrupts since this descriptor has
1351 * been detached from its interface and it yet hasn't been marked
1354 if (d
->bd_sbuf
!= NULL
) {
1355 kfree(d
->bd_sbuf
, M_BPF
);
1356 if (d
->bd_hbuf
!= NULL
)
1357 kfree(d
->bd_hbuf
, M_BPF
);
1358 if (d
->bd_fbuf
!= NULL
)
1359 kfree(d
->bd_fbuf
, M_BPF
);
1362 kfree(d
->bd_rfilter
, M_BPF
);
1364 kfree(d
->bd_wfilter
, M_BPF
);
1368 * Attach an interface to bpf. ifp is a pointer to the structure
1369 * defining the interface to be attached, dlt is the link layer type,
1370 * and hdrlen is the fixed size of the link header (variable length
1371 * headers are not yet supported).
1374 bpfattach(struct ifnet
*ifp
, u_int dlt
, u_int hdrlen
)
1376 bpfattach_dlt(ifp
, dlt
, hdrlen
, &ifp
->if_bpf
);
1380 bpfattach_dlt(struct ifnet
*ifp
, u_int dlt
, u_int hdrlen
, struct bpf_if
**driverp
)
1384 bp
= kmalloc(sizeof *bp
, M_BPF
, M_WAITOK
| M_ZERO
);
1386 SLIST_INIT(&bp
->bif_dlist
);
1389 bp
->bif_driverp
= driverp
;
1390 *bp
->bif_driverp
= NULL
;
1392 bp
->bif_next
= bpf_iflist
;
1396 * Compute the length of the bpf header. This is not necessarily
1397 * equal to SIZEOF_BPF_HDR because we want to insert spacing such
1398 * that the network layer header begins on a longword boundary (for
1399 * performance reasons and to alleviate alignment restrictions).
1401 bp
->bif_hdrlen
= BPF_WORDALIGN(hdrlen
+ SIZEOF_BPF_HDR
) - hdrlen
;
1404 if_printf(ifp
, "bpf attached\n");
1408 * Detach bpf from an interface. This involves detaching each descriptor
1409 * associated with the interface, and leaving bd_bif NULL. Notify each
1410 * descriptor as it's detached so that any sleepers wake up and get
1414 bpfdetach(struct ifnet
*ifp
)
1416 struct bpf_if
*bp
, *bp_prev
;
1421 /* Locate BPF interface information */
1423 for (bp
= bpf_iflist
; bp
!= NULL
; bp
= bp
->bif_next
) {
1424 if (ifp
== bp
->bif_ifp
)
1429 /* Interface wasn't attached */
1430 if (bp
->bif_ifp
== NULL
) {
1432 kprintf("bpfdetach: %s was not attached\n", ifp
->if_xname
);
1436 while ((d
= SLIST_FIRST(&bp
->bif_dlist
)) != NULL
) {
1441 if (bp_prev
!= NULL
)
1442 bp_prev
->bif_next
= bp
->bif_next
;
1444 bpf_iflist
= bp
->bif_next
;
1452 * Get a list of available data link type of the interface.
1455 bpf_getdltlist(struct bpf_d
*d
, struct bpf_dltlist
*bfl
)
1461 ifp
= d
->bd_bif
->bif_ifp
;
1464 for (bp
= bpf_iflist
; bp
!= NULL
; bp
= bp
->bif_next
) {
1465 if (bp
->bif_ifp
!= ifp
)
1467 if (bfl
->bfl_list
!= NULL
) {
1468 if (n
>= bfl
->bfl_len
) {
1471 error
= copyout(&bp
->bif_dlt
,
1472 bfl
->bfl_list
+ n
, sizeof(u_int
));
1481 * Set the data link type of a BPF instance.
1484 bpf_setdlt(struct bpf_d
*d
, u_int dlt
)
1486 int error
, opromisc
;
1490 if (d
->bd_bif
->bif_dlt
== dlt
)
1492 ifp
= d
->bd_bif
->bif_ifp
;
1493 for (bp
= bpf_iflist
; bp
!= NULL
; bp
= bp
->bif_next
) {
1494 if (bp
->bif_ifp
== ifp
&& bp
->bif_dlt
== dlt
)
1498 opromisc
= d
->bd_promisc
;
1504 error
= ifpromisc(bp
->bif_ifp
, 1);
1506 if_printf(bp
->bif_ifp
,
1507 "bpf_setdlt: ifpromisc failed (%d)\n",
1515 return(bp
== NULL
? EINVAL
: 0);
1519 bpf_drvinit(void *unused
)
1523 make_autoclone_dev(&bpf_ops
, &DEVFS_CLONE_BITMAP(bpf
),
1524 bpfclone
, 0, 0, 0600, "bpf");
1525 for (i
= 0; i
< BPF_PREALLOCATED_UNITS
; i
++) {
1526 make_dev(&bpf_ops
, i
, 0, 0, 0600, "bpf%d", i
);
1527 devfs_clone_bitmap_set(&DEVFS_CLONE_BITMAP(bpf
), i
);
1532 bpf_drvuninit(void *unused
)
1534 devfs_clone_handler_del("bpf");
1535 dev_ops_remove_all(&bpf_ops
);
1536 devfs_clone_bitmap_uninit(&DEVFS_CLONE_BITMAP(bpf
));
1539 SYSINIT(bpfdev
,SI_SUB_DRIVERS
,SI_ORDER_MIDDLE
+CDEV_MAJOR
,bpf_drvinit
,NULL
)
1540 SYSUNINIT(bpfdev
, SI_SUB_DRIVERS
,SI_ORDER_MIDDLE
+CDEV_MAJOR
,bpf_drvuninit
, NULL
);
1544 * NOP stubs to allow bpf-using drivers to load and function.
1546 * A 'better' implementation would allow the core bpf functionality
1547 * to be loaded at runtime.
1551 bpf_tap(struct bpf_if
*bp
, u_char
*pkt
, u_int pktlen
)
1556 bpf_mtap(struct bpf_if
*bp
, struct mbuf
*m
)
1561 bpf_ptap(struct bpf_if
*bp
, struct mbuf
*m
, const void *data
, u_int dlen
)
1566 bpfattach(struct ifnet
*ifp
, u_int dlt
, u_int hdrlen
)
1571 bpfattach_dlt(struct ifnet
*ifp
, u_int dlt
, u_int hdrlen
, struct bpf_if
**driverp
)
1576 bpfdetach(struct ifnet
*ifp
)
1581 bpf_filter(const struct bpf_insn
*pc
, u_char
*p
, u_int wirelen
, u_int buflen
)
1583 return -1; /* "no filter" behaviour */