xref: /freebsd/sys/net/bpf.c (revision b75a24a075d8f5f7afff529cb1b68136d0c22f63)
1c398230bSWarner Losh /*-
2df8bae1dSRodney W. Grimes  * Copyright (c) 1990, 1991, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * This code is derived from the Stanford/CMU enet packet filter,
6df8bae1dSRodney W. Grimes  * (net/enet.c) distributed as part of 4.3BSD, and code contributed
7df8bae1dSRodney W. Grimes  * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
8df8bae1dSRodney W. Grimes  * Berkeley Laboratory.
9df8bae1dSRodney W. Grimes  *
10df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
11df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
12df8bae1dSRodney W. Grimes  * are met:
13df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
14df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
15df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
16df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
17df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
18df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
19df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
20df8bae1dSRodney W. Grimes  *    without specific prior written permission.
21df8bae1dSRodney W. Grimes  *
22df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
33df8bae1dSRodney W. Grimes  *
344f252c4dSRuslan Ermilov  *      @(#)bpf.c	8.4 (Berkeley) 1/9/95
35df8bae1dSRodney W. Grimes  *
36c3aac50fSPeter Wemm  * $FreeBSD$
37df8bae1dSRodney W. Grimes  */
38df8bae1dSRodney W. Grimes 
395bb5f2c9SPeter Wemm #include "opt_bpf.h"
4082f4445dSRobert Watson #include "opt_mac.h"
415bb5f2c9SPeter Wemm #include "opt_netgraph.h"
42df8bae1dSRodney W. Grimes 
4395aab9ccSJohn-Mark Gurney #include <sys/types.h>
44df8bae1dSRodney W. Grimes #include <sys/param.h>
45df8bae1dSRodney W. Grimes #include <sys/systm.h>
46ce7609a4SBruce Evans #include <sys/conf.h>
47e76eee55SPoul-Henning Kamp #include <sys/fcntl.h>
4882f4445dSRobert Watson #include <sys/mac.h>
494d1d4912SBruce Evans #include <sys/malloc.h>
50df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
51df8bae1dSRodney W. Grimes #include <sys/time.h>
52df8bae1dSRodney W. Grimes #include <sys/proc.h>
530310c19fSBruce Evans #include <sys/signalvar.h>
54528f627fSBruce Evans #include <sys/filio.h>
55528f627fSBruce Evans #include <sys/sockio.h>
56528f627fSBruce Evans #include <sys/ttycom.h>
57e76eee55SPoul-Henning Kamp #include <sys/uio.h>
58df8bae1dSRodney W. Grimes 
5995aab9ccSJohn-Mark Gurney #include <sys/event.h>
6095aab9ccSJohn-Mark Gurney #include <sys/file.h>
61243ac7d8SPeter Wemm #include <sys/poll.h>
6295aab9ccSJohn-Mark Gurney #include <sys/proc.h>
63df8bae1dSRodney W. Grimes 
64df8bae1dSRodney W. Grimes #include <sys/socket.h>
65df8bae1dSRodney W. Grimes 
66fba9235dSBruce Evans #include <net/if.h>
67df8bae1dSRodney W. Grimes #include <net/bpf.h>
68df8bae1dSRodney W. Grimes #include <net/bpfdesc.h>
69df8bae1dSRodney W. Grimes 
70df8bae1dSRodney W. Grimes #include <netinet/in.h>
71df8bae1dSRodney W. Grimes #include <netinet/if_ether.h>
72df8bae1dSRodney W. Grimes #include <sys/kernel.h>
73f708ef1bSPoul-Henning Kamp #include <sys/sysctl.h>
747b778b5eSEivind Eklund 
75959b7375SPoul-Henning Kamp static MALLOC_DEFINE(M_BPF, "BPF", "BPF data");
7687f6c662SJulian Elischer 
775bb5f2c9SPeter Wemm #if defined(DEV_BPF) || defined(NETGRAPH_BPF)
7853ac6efbSJulian Elischer 
79df8bae1dSRodney W. Grimes #define PRINET  26			/* interruptible */
80df8bae1dSRodney W. Grimes 
81df8bae1dSRodney W. Grimes /*
82d1a67300SRobert Watson  * bpf_iflist is a list of BPF interface structures, each corresponding to a
83d1a67300SRobert Watson  * specific DLT.  The same network interface might have several BPF interface
84d1a67300SRobert Watson  * structures registered by different layers in the stack (i.e., 802.11
85d1a67300SRobert Watson  * frames, ethernet frames, etc).
86df8bae1dSRodney W. Grimes  */
874a3feeaaSRobert Watson static LIST_HEAD(, bpf_if)	bpf_iflist;
88e7bb21b3SJonathan Lemon static struct mtx	bpf_mtx;		/* bpf global lock */
8969f7644bSChristian S.J. Peron static int		bpf_bpfd_cnt;
90df8bae1dSRodney W. Grimes 
91929ddbbbSAlfred Perlstein static int	bpf_allocbufs(struct bpf_d *);
92929ddbbbSAlfred Perlstein static void	bpf_attachd(struct bpf_d *d, struct bpf_if *bp);
93929ddbbbSAlfred Perlstein static void	bpf_detachd(struct bpf_d *d);
94929ddbbbSAlfred Perlstein static void	bpf_freed(struct bpf_d *);
95929ddbbbSAlfred Perlstein static void	bpf_mcopy(const void *, void *, size_t);
9601399f34SDavid Malone static int	bpf_movein(struct uio *, int, int,
9793e39f0bSChristian S.J. Peron 		    struct mbuf **, struct sockaddr *, struct bpf_insn *);
98929ddbbbSAlfred Perlstein static int	bpf_setif(struct bpf_d *, struct ifreq *);
99929ddbbbSAlfred Perlstein static void	bpf_timed_out(void *);
100e7bb21b3SJonathan Lemon static __inline void
101929ddbbbSAlfred Perlstein 		bpf_wakeup(struct bpf_d *);
102929ddbbbSAlfred Perlstein static void	catchpacket(struct bpf_d *, u_char *, u_int,
103929ddbbbSAlfred Perlstein 		    u_int, void (*)(const void *, void *, size_t));
104929ddbbbSAlfred Perlstein static void	reset_d(struct bpf_d *);
10593e39f0bSChristian S.J. Peron static int	 bpf_setf(struct bpf_d *, struct bpf_program *, u_long cmd);
1068eab61f3SSam Leffler static int	bpf_getdltlist(struct bpf_d *, struct bpf_dltlist *);
1078eab61f3SSam Leffler static int	bpf_setdlt(struct bpf_d *, u_int);
10895aab9ccSJohn-Mark Gurney static void	filt_bpfdetach(struct knote *);
10995aab9ccSJohn-Mark Gurney static int	filt_bpfread(struct knote *, long);
110a3272e3cSChristian S.J. Peron static void	bpf_drvinit(void *);
1116a113b3dSRobert Watson static void	bpf_clone(void *, struct ucred *, char *, int, struct cdev **);
11269f7644bSChristian S.J. Peron static int	bpf_stats_sysctl(SYSCTL_HANDLER_ARGS);
11369f7644bSChristian S.J. Peron 
11469f7644bSChristian S.J. Peron /*
11569f7644bSChristian S.J. Peron  * The default read buffer size is patchable.
11669f7644bSChristian S.J. Peron  */
11769f7644bSChristian S.J. Peron SYSCTL_NODE(_net, OID_AUTO, bpf, CTLFLAG_RW, 0, "bpf sysctl");
11869f7644bSChristian S.J. Peron static int bpf_bufsize = 4096;
11969f7644bSChristian S.J. Peron SYSCTL_INT(_net_bpf, OID_AUTO, bufsize, CTLFLAG_RW,
12069f7644bSChristian S.J. Peron     &bpf_bufsize, 0, "");
12169f7644bSChristian S.J. Peron static int bpf_maxbufsize = BPF_MAXBUFSIZE;
12269f7644bSChristian S.J. Peron SYSCTL_INT(_net_bpf, OID_AUTO, maxbufsize, CTLFLAG_RW,
12369f7644bSChristian S.J. Peron     &bpf_maxbufsize, 0, "");
12469f7644bSChristian S.J. Peron static int bpf_maxinsns = BPF_MAXINSNS;
12569f7644bSChristian S.J. Peron SYSCTL_INT(_net_bpf, OID_AUTO, maxinsns, CTLFLAG_RW,
12669f7644bSChristian S.J. Peron     &bpf_maxinsns, 0, "Maximum bpf program instructions");
12769f7644bSChristian S.J. Peron SYSCTL_NODE(_net_bpf, OID_AUTO, stats, CTLFLAG_RW,
12869f7644bSChristian S.J. Peron     bpf_stats_sysctl, "bpf statistics portal");
129df8bae1dSRodney W. Grimes 
13087f6c662SJulian Elischer static	d_open_t	bpfopen;
13187f6c662SJulian Elischer static	d_close_t	bpfclose;
13287f6c662SJulian Elischer static	d_read_t	bpfread;
13387f6c662SJulian Elischer static	d_write_t	bpfwrite;
13487f6c662SJulian Elischer static	d_ioctl_t	bpfioctl;
135243ac7d8SPeter Wemm static	d_poll_t	bpfpoll;
13695aab9ccSJohn-Mark Gurney static	d_kqfilter_t	bpfkqfilter;
13787f6c662SJulian Elischer 
1384e2f199eSPoul-Henning Kamp static struct cdevsw bpf_cdevsw = {
139dc08ffecSPoul-Henning Kamp 	.d_version =	D_VERSION,
140dc08ffecSPoul-Henning Kamp 	.d_flags =	D_NEEDGIANT,
1417ac40f5fSPoul-Henning Kamp 	.d_open =	bpfopen,
1427ac40f5fSPoul-Henning Kamp 	.d_close =	bpfclose,
1437ac40f5fSPoul-Henning Kamp 	.d_read =	bpfread,
1447ac40f5fSPoul-Henning Kamp 	.d_write =	bpfwrite,
1457ac40f5fSPoul-Henning Kamp 	.d_ioctl =	bpfioctl,
1467ac40f5fSPoul-Henning Kamp 	.d_poll =	bpfpoll,
1477ac40f5fSPoul-Henning Kamp 	.d_name =	"bpf",
14895aab9ccSJohn-Mark Gurney 	.d_kqfilter =	bpfkqfilter,
1494e2f199eSPoul-Henning Kamp };
15087f6c662SJulian Elischer 
15195aab9ccSJohn-Mark Gurney static struct filterops bpfread_filtops =
15295aab9ccSJohn-Mark Gurney 	{ 1, NULL, filt_bpfdetach, filt_bpfread };
15387f6c662SJulian Elischer 
154df8bae1dSRodney W. Grimes static int
15593e39f0bSChristian S.J. Peron bpf_movein(uio, linktype, mtu, mp, sockp, wfilter)
1568994a245SDag-Erling Smørgrav 	struct uio *uio;
15701399f34SDavid Malone 	int linktype;
15801399f34SDavid Malone 	int mtu;
1598994a245SDag-Erling Smørgrav 	struct mbuf **mp;
1608994a245SDag-Erling Smørgrav 	struct sockaddr *sockp;
16193e39f0bSChristian S.J. Peron 	struct bpf_insn *wfilter;
162df8bae1dSRodney W. Grimes {
163df8bae1dSRodney W. Grimes 	struct mbuf *m;
164df8bae1dSRodney W. Grimes 	int error;
165df8bae1dSRodney W. Grimes 	int len;
166df8bae1dSRodney W. Grimes 	int hlen;
16793e39f0bSChristian S.J. Peron 	int slen;
168df8bae1dSRodney W. Grimes 
169df8bae1dSRodney W. Grimes 	/*
170df8bae1dSRodney W. Grimes 	 * Build a sockaddr based on the data link layer type.
171df8bae1dSRodney W. Grimes 	 * We do this at this level because the ethernet header
172df8bae1dSRodney W. Grimes 	 * is copied directly into the data field of the sockaddr.
173df8bae1dSRodney W. Grimes 	 * In the case of SLIP, there is no header and the packet
174df8bae1dSRodney W. Grimes 	 * is forwarded as is.
175df8bae1dSRodney W. Grimes 	 * Also, we are careful to leave room at the front of the mbuf
176df8bae1dSRodney W. Grimes 	 * for the link level header.
177df8bae1dSRodney W. Grimes 	 */
178df8bae1dSRodney W. Grimes 	switch (linktype) {
179df8bae1dSRodney W. Grimes 
180df8bae1dSRodney W. Grimes 	case DLT_SLIP:
181df8bae1dSRodney W. Grimes 		sockp->sa_family = AF_INET;
182df8bae1dSRodney W. Grimes 		hlen = 0;
183df8bae1dSRodney W. Grimes 		break;
184df8bae1dSRodney W. Grimes 
185df8bae1dSRodney W. Grimes 	case DLT_EN10MB:
186df8bae1dSRodney W. Grimes 		sockp->sa_family = AF_UNSPEC;
187df8bae1dSRodney W. Grimes 		/* XXX Would MAXLINKHDR be better? */
188797f247bSMatthew N. Dodd 		hlen = ETHER_HDR_LEN;
189df8bae1dSRodney W. Grimes 		break;
190df8bae1dSRodney W. Grimes 
191df8bae1dSRodney W. Grimes 	case DLT_FDDI:
192d41f24e7SDavid Greenman 		sockp->sa_family = AF_IMPLINK;
193d41f24e7SDavid Greenman 		hlen = 0;
194df8bae1dSRodney W. Grimes 		break;
195df8bae1dSRodney W. Grimes 
19622f05c43SAndrey A. Chernov 	case DLT_RAW:
197df8bae1dSRodney W. Grimes 		sockp->sa_family = AF_UNSPEC;
198df8bae1dSRodney W. Grimes 		hlen = 0;
199df8bae1dSRodney W. Grimes 		break;
200df8bae1dSRodney W. Grimes 
20101399f34SDavid Malone 	case DLT_NULL:
20201399f34SDavid Malone 		/*
20301399f34SDavid Malone 		 * null interface types require a 4 byte pseudo header which
20401399f34SDavid Malone 		 * corresponds to the address family of the packet.
20501399f34SDavid Malone 		 */
20601399f34SDavid Malone 		sockp->sa_family = AF_UNSPEC;
20701399f34SDavid Malone 		hlen = 4;
20801399f34SDavid Malone 		break;
20901399f34SDavid Malone 
2104f53e3ccSKenjiro Cho 	case DLT_ATM_RFC1483:
2114f53e3ccSKenjiro Cho 		/*
2124f53e3ccSKenjiro Cho 		 * en atm driver requires 4-byte atm pseudo header.
2134f53e3ccSKenjiro Cho 		 * though it isn't standard, vpi:vci needs to be
2144f53e3ccSKenjiro Cho 		 * specified anyway.
2154f53e3ccSKenjiro Cho 		 */
2164f53e3ccSKenjiro Cho 		sockp->sa_family = AF_UNSPEC;
2174f53e3ccSKenjiro Cho 		hlen = 12;	/* XXX 4(ATM_PH) + 3(LLC) + 5(SNAP) */
2184f53e3ccSKenjiro Cho 		break;
2194f53e3ccSKenjiro Cho 
22030fa52a6SBrian Somers 	case DLT_PPP:
22130fa52a6SBrian Somers 		sockp->sa_family = AF_UNSPEC;
22230fa52a6SBrian Somers 		hlen = 4;	/* This should match PPP_HDRLEN */
22330fa52a6SBrian Somers 		break;
22430fa52a6SBrian Somers 
225df8bae1dSRodney W. Grimes 	default:
226df8bae1dSRodney W. Grimes 		return (EIO);
227df8bae1dSRodney W. Grimes 	}
228df8bae1dSRodney W. Grimes 
229df8bae1dSRodney W. Grimes 	len = uio->uio_resid;
23001399f34SDavid Malone 
23101399f34SDavid Malone 	if (len - hlen > mtu)
23201399f34SDavid Malone 		return (EMSGSIZE);
23301399f34SDavid Malone 
234df8bae1dSRodney W. Grimes 	if ((unsigned)len > MCLBYTES)
235df8bae1dSRodney W. Grimes 		return (EIO);
236df8bae1dSRodney W. Grimes 
237963e4c2aSGarrett Wollman 	if (len > MHLEN) {
238a163d034SWarner Losh 		m = m_getcl(M_TRYWAIT, MT_DATA, M_PKTHDR);
23924a229f4SSam Leffler 	} else {
240a163d034SWarner Losh 		MGETHDR(m, M_TRYWAIT, MT_DATA);
241df8bae1dSRodney W. Grimes 	}
24224a229f4SSam Leffler 	if (m == NULL)
24324a229f4SSam Leffler 		return (ENOBUFS);
244963e4c2aSGarrett Wollman 	m->m_pkthdr.len = m->m_len = len;
245963e4c2aSGarrett Wollman 	m->m_pkthdr.rcvif = NULL;
246df8bae1dSRodney W. Grimes 	*mp = m;
24724a229f4SSam Leffler 
24893e39f0bSChristian S.J. Peron 	if (m->m_len < hlen) {
24993e39f0bSChristian S.J. Peron 		error = EPERM;
25093e39f0bSChristian S.J. Peron 		goto bad;
25193e39f0bSChristian S.J. Peron 	}
25293e39f0bSChristian S.J. Peron 
25393e39f0bSChristian S.J. Peron 	error = uiomove(mtod(m, u_char *), len, uio);
25493e39f0bSChristian S.J. Peron 	if (error)
25593e39f0bSChristian S.J. Peron 		goto bad;
25693e39f0bSChristian S.J. Peron 
25793e39f0bSChristian S.J. Peron 	slen = bpf_filter(wfilter, mtod(m, u_char *), len, len);
25893e39f0bSChristian S.J. Peron 	if (slen == 0) {
25993e39f0bSChristian S.J. Peron 		error = EPERM;
26093e39f0bSChristian S.J. Peron 		goto bad;
26193e39f0bSChristian S.J. Peron 	}
26293e39f0bSChristian S.J. Peron 
263df8bae1dSRodney W. Grimes 	/*
26493e39f0bSChristian S.J. Peron 	 * Make room for link header, and copy it to sockaddr
265df8bae1dSRodney W. Grimes 	 */
266df8bae1dSRodney W. Grimes 	if (hlen != 0) {
26793e39f0bSChristian S.J. Peron 		bcopy(m->m_data, sockp->sa_data, hlen);
2684f079e2fSGarrett Wollman 		m->m_pkthdr.len -= hlen;
269df8bae1dSRodney W. Grimes 		m->m_len -= hlen;
270df8bae1dSRodney W. Grimes #if BSD >= 199103
271df8bae1dSRodney W. Grimes 		m->m_data += hlen; /* XXX */
272df8bae1dSRodney W. Grimes #else
273df8bae1dSRodney W. Grimes 		m->m_off += hlen;
274df8bae1dSRodney W. Grimes #endif
275df8bae1dSRodney W. Grimes 	}
27693e39f0bSChristian S.J. Peron 
277df8bae1dSRodney W. Grimes 	return (0);
278df8bae1dSRodney W. Grimes bad:
279df8bae1dSRodney W. Grimes 	m_freem(m);
280df8bae1dSRodney W. Grimes 	return (error);
281df8bae1dSRodney W. Grimes }
282df8bae1dSRodney W. Grimes 
283df8bae1dSRodney W. Grimes /*
284df8bae1dSRodney W. Grimes  * Attach file to the bpf interface, i.e. make d listen on bp.
285df8bae1dSRodney W. Grimes  */
286df8bae1dSRodney W. Grimes static void
287df8bae1dSRodney W. Grimes bpf_attachd(d, bp)
288df8bae1dSRodney W. Grimes 	struct bpf_d *d;
289df8bae1dSRodney W. Grimes 	struct bpf_if *bp;
290df8bae1dSRodney W. Grimes {
291df8bae1dSRodney W. Grimes 	/*
292df8bae1dSRodney W. Grimes 	 * Point d at bp, and add d to the interface's list of listeners.
293df8bae1dSRodney W. Grimes 	 * Finally, point the driver's bpf cookie at the interface so
294df8bae1dSRodney W. Grimes 	 * it will divert packets to bpf.
295df8bae1dSRodney W. Grimes 	 */
296e7bb21b3SJonathan Lemon 	BPFIF_LOCK(bp);
297df8bae1dSRodney W. Grimes 	d->bd_bif = bp;
2984a3feeaaSRobert Watson 	LIST_INSERT_HEAD(&bp->bif_dlist, d, bd_next);
299df8bae1dSRodney W. Grimes 
30069f7644bSChristian S.J. Peron 	bpf_bpfd_cnt++;
30124a229f4SSam Leffler 	*bp->bif_driverp = bp;
302e7bb21b3SJonathan Lemon 	BPFIF_UNLOCK(bp);
303df8bae1dSRodney W. Grimes }
304df8bae1dSRodney W. Grimes 
305df8bae1dSRodney W. Grimes /*
306df8bae1dSRodney W. Grimes  * Detach a file from its interface.
307df8bae1dSRodney W. Grimes  */
308df8bae1dSRodney W. Grimes static void
309df8bae1dSRodney W. Grimes bpf_detachd(d)
310df8bae1dSRodney W. Grimes 	struct bpf_d *d;
311df8bae1dSRodney W. Grimes {
3126e891d64SPoul-Henning Kamp 	int error;
313df8bae1dSRodney W. Grimes 	struct bpf_if *bp;
31446448b5aSRobert Watson 	struct ifnet *ifp;
315df8bae1dSRodney W. Grimes 
316df8bae1dSRodney W. Grimes 	bp = d->bd_bif;
31746448b5aSRobert Watson 	BPFIF_LOCK(bp);
31846448b5aSRobert Watson 	BPFD_LOCK(d);
31946448b5aSRobert Watson 	ifp = d->bd_bif->bif_ifp;
32046448b5aSRobert Watson 
32146448b5aSRobert Watson 	/*
32246448b5aSRobert Watson 	 * Remove d from the interface's descriptor list.
32346448b5aSRobert Watson 	 */
32446448b5aSRobert Watson 	LIST_REMOVE(d, bd_next);
32546448b5aSRobert Watson 
32669f7644bSChristian S.J. Peron 	bpf_bpfd_cnt--;
32746448b5aSRobert Watson 	/*
32846448b5aSRobert Watson 	 * Let the driver know that there are no more listeners.
32946448b5aSRobert Watson 	 */
33046448b5aSRobert Watson 	if (LIST_EMPTY(&bp->bif_dlist))
33146448b5aSRobert Watson 		*bp->bif_driverp = NULL;
33246448b5aSRobert Watson 
333572bde2aSRobert Watson 	d->bd_bif = NULL;
33446448b5aSRobert Watson 	BPFD_UNLOCK(d);
33546448b5aSRobert Watson 	BPFIF_UNLOCK(bp);
33646448b5aSRobert Watson 
337df8bae1dSRodney W. Grimes 	/*
338df8bae1dSRodney W. Grimes 	 * Check if this descriptor had requested promiscuous mode.
339df8bae1dSRodney W. Grimes 	 * If so, turn it off.
340df8bae1dSRodney W. Grimes 	 */
341df8bae1dSRodney W. Grimes 	if (d->bd_promisc) {
342df8bae1dSRodney W. Grimes 		d->bd_promisc = 0;
34346448b5aSRobert Watson 		error = ifpromisc(ifp, 0);
3446e891d64SPoul-Henning Kamp 		if (error != 0 && error != ENXIO) {
345df8bae1dSRodney W. Grimes 			/*
3466e891d64SPoul-Henning Kamp 			 * ENXIO can happen if a pccard is unplugged
347df8bae1dSRodney W. Grimes 			 * Something is really wrong if we were able to put
348df8bae1dSRodney W. Grimes 			 * the driver into promiscuous mode, but can't
349df8bae1dSRodney W. Grimes 			 * take it out.
350df8bae1dSRodney W. Grimes 			 */
3518eab61f3SSam Leffler 			if_printf(bp->bif_ifp,
3528eab61f3SSam Leffler 				"bpf_detach: ifpromisc failed (%d)\n", error);
3536e891d64SPoul-Henning Kamp 		}
354df8bae1dSRodney W. Grimes 	}
355df8bae1dSRodney W. Grimes }
356df8bae1dSRodney W. Grimes 
357df8bae1dSRodney W. Grimes /*
358df8bae1dSRodney W. Grimes  * Open ethernet device.  Returns ENXIO for illegal minor device number,
359df8bae1dSRodney W. Grimes  * EBUSY if file is open by another process.
360df8bae1dSRodney W. Grimes  */
361df8bae1dSRodney W. Grimes /* ARGSUSED */
36287f6c662SJulian Elischer static	int
363b40ce416SJulian Elischer bpfopen(dev, flags, fmt, td)
36489c9c53dSPoul-Henning Kamp 	struct cdev *dev;
36560039670SBruce Evans 	int flags;
36660039670SBruce Evans 	int fmt;
367b40ce416SJulian Elischer 	struct thread *td;
368df8bae1dSRodney W. Grimes {
369e7bb21b3SJonathan Lemon 	struct bpf_d *d;
370df8bae1dSRodney W. Grimes 
371e7bb21b3SJonathan Lemon 	mtx_lock(&bpf_mtx);
372bd3a5320SPoul-Henning Kamp 	d = dev->si_drv1;
373df8bae1dSRodney W. Grimes 	/*
374df8bae1dSRodney W. Grimes 	 * Each minor can be opened by only one process.  If the requested
375df8bae1dSRodney W. Grimes 	 * minor is in use, return EBUSY.
376df8bae1dSRodney W. Grimes 	 */
377d17d8184SRobert Watson 	if (d != NULL) {
378e7bb21b3SJonathan Lemon 		mtx_unlock(&bpf_mtx);
379df8bae1dSRodney W. Grimes 		return (EBUSY);
380e7bb21b3SJonathan Lemon 	}
381e7bb21b3SJonathan Lemon 	dev->si_drv1 = (struct bpf_d *)~0;	/* mark device in use */
382e7bb21b3SJonathan Lemon 	mtx_unlock(&bpf_mtx);
383e7bb21b3SJonathan Lemon 
384d1d74c28SJohn Baldwin 	if ((dev->si_flags & SI_NAMED) == 0)
385b0d17ba6SPoul-Henning Kamp 		make_dev(&bpf_cdevsw, minor(dev), UID_ROOT, GID_WHEEL, 0600,
386b0d17ba6SPoul-Henning Kamp 		    "bpf%d", dev2unit(dev));
387a163d034SWarner Losh 	MALLOC(d, struct bpf_d *, sizeof(*d), M_BPF, M_WAITOK | M_ZERO);
388bd3a5320SPoul-Henning Kamp 	dev->si_drv1 = d;
389df8bae1dSRodney W. Grimes 	d->bd_bufsize = bpf_bufsize;
39000a83887SPaul Traina 	d->bd_sig = SIGIO;
3918ed3828cSRobert Watson 	d->bd_seesent = 1;
39269f7644bSChristian S.J. Peron 	d->bd_pid = td->td_proc->p_pid;
39382f4445dSRobert Watson #ifdef MAC
39482f4445dSRobert Watson 	mac_init_bpfdesc(d);
39582f4445dSRobert Watson 	mac_create_bpfdesc(td->td_ucred, d);
39682f4445dSRobert Watson #endif
3976008862bSJohn Baldwin 	mtx_init(&d->bd_mtx, devtoname(dev), "bpf cdev lock", MTX_DEF);
39831199c84SGleb Smirnoff 	callout_init(&d->bd_callout, NET_CALLOUT_MPSAFE);
399571dcd15SSuleiman Souhlal 	knlist_init(&d->bd_sel.si_note, &d->bd_mtx, NULL, NULL, NULL);
400df8bae1dSRodney W. Grimes 
401df8bae1dSRodney W. Grimes 	return (0);
402df8bae1dSRodney W. Grimes }
403df8bae1dSRodney W. Grimes 
404df8bae1dSRodney W. Grimes /*
405df8bae1dSRodney W. Grimes  * Close the descriptor by detaching it from its interface,
406df8bae1dSRodney W. Grimes  * deallocating its buffers, and marking it free.
407df8bae1dSRodney W. Grimes  */
408df8bae1dSRodney W. Grimes /* ARGSUSED */
40987f6c662SJulian Elischer static	int
410b40ce416SJulian Elischer bpfclose(dev, flags, fmt, td)
41189c9c53dSPoul-Henning Kamp 	struct cdev *dev;
41260039670SBruce Evans 	int flags;
41360039670SBruce Evans 	int fmt;
414b40ce416SJulian Elischer 	struct thread *td;
415df8bae1dSRodney W. Grimes {
416e7bb21b3SJonathan Lemon 	struct bpf_d *d = dev->si_drv1;
417df8bae1dSRodney W. Grimes 
41881bda851SJohn Polstra 	BPFD_LOCK(d);
41981bda851SJohn Polstra 	if (d->bd_state == BPF_WAITING)
42081bda851SJohn Polstra 		callout_stop(&d->bd_callout);
42181bda851SJohn Polstra 	d->bd_state = BPF_IDLE;
42281bda851SJohn Polstra 	BPFD_UNLOCK(d);
423e649887bSAlfred Perlstein 	funsetown(&d->bd_sigio);
424e7bb21b3SJonathan Lemon 	mtx_lock(&bpf_mtx);
425df8bae1dSRodney W. Grimes 	if (d->bd_bif)
426df8bae1dSRodney W. Grimes 		bpf_detachd(d);
427e7bb21b3SJonathan Lemon 	mtx_unlock(&bpf_mtx);
4284549709fSBrian Feldman 	selwakeuppri(&d->bd_sel, PRINET);
42982f4445dSRobert Watson #ifdef MAC
43082f4445dSRobert Watson 	mac_destroy_bpfdesc(d);
43182f4445dSRobert Watson #endif /* MAC */
432ad3b9257SJohn-Mark Gurney 	knlist_destroy(&d->bd_sel.si_note);
433df8bae1dSRodney W. Grimes 	bpf_freed(d);
434d17d8184SRobert Watson 	dev->si_drv1 = NULL;
435d722be54SLuigi Rizzo 	free(d, M_BPF);
436df8bae1dSRodney W. Grimes 
437df8bae1dSRodney W. Grimes 	return (0);
438df8bae1dSRodney W. Grimes }
439df8bae1dSRodney W. Grimes 
440df8bae1dSRodney W. Grimes 
441df8bae1dSRodney W. Grimes /*
442df8bae1dSRodney W. Grimes  * Rotate the packet buffers in descriptor d.  Move the store buffer
443df8bae1dSRodney W. Grimes  * into the hold slot, and the free buffer into the store slot.
444df8bae1dSRodney W. Grimes  * Zero the length of the new store buffer.
445df8bae1dSRodney W. Grimes  */
446df8bae1dSRodney W. Grimes #define ROTATE_BUFFERS(d) \
447df8bae1dSRodney W. Grimes 	(d)->bd_hbuf = (d)->bd_sbuf; \
448df8bae1dSRodney W. Grimes 	(d)->bd_hlen = (d)->bd_slen; \
449df8bae1dSRodney W. Grimes 	(d)->bd_sbuf = (d)->bd_fbuf; \
450df8bae1dSRodney W. Grimes 	(d)->bd_slen = 0; \
451d17d8184SRobert Watson 	(d)->bd_fbuf = NULL;
452df8bae1dSRodney W. Grimes /*
453df8bae1dSRodney W. Grimes  *  bpfread - read next chunk of packets from buffers
454df8bae1dSRodney W. Grimes  */
45587f6c662SJulian Elischer static	int
45660039670SBruce Evans bpfread(dev, uio, ioflag)
45789c9c53dSPoul-Henning Kamp 	struct cdev *dev;
4588994a245SDag-Erling Smørgrav 	struct uio *uio;
45960039670SBruce Evans 	int ioflag;
460df8bae1dSRodney W. Grimes {
461e7bb21b3SJonathan Lemon 	struct bpf_d *d = dev->si_drv1;
46281bda851SJohn Polstra 	int timed_out;
463df8bae1dSRodney W. Grimes 	int error;
464df8bae1dSRodney W. Grimes 
465df8bae1dSRodney W. Grimes 	/*
466df8bae1dSRodney W. Grimes 	 * Restrict application to use a buffer the same size as
467df8bae1dSRodney W. Grimes 	 * as kernel buffers.
468df8bae1dSRodney W. Grimes 	 */
469df8bae1dSRodney W. Grimes 	if (uio->uio_resid != d->bd_bufsize)
470df8bae1dSRodney W. Grimes 		return (EINVAL);
471df8bae1dSRodney W. Grimes 
472e7bb21b3SJonathan Lemon 	BPFD_LOCK(d);
47381bda851SJohn Polstra 	if (d->bd_state == BPF_WAITING)
47481bda851SJohn Polstra 		callout_stop(&d->bd_callout);
47581bda851SJohn Polstra 	timed_out = (d->bd_state == BPF_TIMED_OUT);
47681bda851SJohn Polstra 	d->bd_state = BPF_IDLE;
477df8bae1dSRodney W. Grimes 	/*
478df8bae1dSRodney W. Grimes 	 * If the hold buffer is empty, then do a timed sleep, which
479df8bae1dSRodney W. Grimes 	 * ends when the timeout expires or when enough packets
480df8bae1dSRodney W. Grimes 	 * have arrived to fill the store buffer.
481df8bae1dSRodney W. Grimes 	 */
482572bde2aSRobert Watson 	while (d->bd_hbuf == NULL) {
48381bda851SJohn Polstra 		if ((d->bd_immediate || timed_out) && d->bd_slen != 0) {
484df8bae1dSRodney W. Grimes 			/*
485df8bae1dSRodney W. Grimes 			 * A packet(s) either arrived since the previous
486df8bae1dSRodney W. Grimes 			 * read or arrived while we were asleep.
487df8bae1dSRodney W. Grimes 			 * Rotate the buffers and return what's here.
488df8bae1dSRodney W. Grimes 			 */
489df8bae1dSRodney W. Grimes 			ROTATE_BUFFERS(d);
490df8bae1dSRodney W. Grimes 			break;
491df8bae1dSRodney W. Grimes 		}
492de5d9935SRobert Watson 
493de5d9935SRobert Watson 		/*
494de5d9935SRobert Watson 		 * No data is available, check to see if the bpf device
495de5d9935SRobert Watson 		 * is still pointed at a real interface.  If not, return
496de5d9935SRobert Watson 		 * ENXIO so that the userland process knows to rebind
497de5d9935SRobert Watson 		 * it before using it again.
498de5d9935SRobert Watson 		 */
499de5d9935SRobert Watson 		if (d->bd_bif == NULL) {
500e7bb21b3SJonathan Lemon 			BPFD_UNLOCK(d);
501de5d9935SRobert Watson 			return (ENXIO);
502de5d9935SRobert Watson 		}
503de5d9935SRobert Watson 
504e76eee55SPoul-Henning Kamp 		if (ioflag & O_NONBLOCK) {
505e7bb21b3SJonathan Lemon 			BPFD_UNLOCK(d);
506fba3cfdeSJohn Polstra 			return (EWOULDBLOCK);
507fba3cfdeSJohn Polstra 		}
508521f364bSDag-Erling Smørgrav 		error = msleep(d, &d->bd_mtx, PRINET|PCATCH,
509e7bb21b3SJonathan Lemon 		     "bpf", d->bd_rtout);
510df8bae1dSRodney W. Grimes 		if (error == EINTR || error == ERESTART) {
511e7bb21b3SJonathan Lemon 			BPFD_UNLOCK(d);
512df8bae1dSRodney W. Grimes 			return (error);
513df8bae1dSRodney W. Grimes 		}
514df8bae1dSRodney W. Grimes 		if (error == EWOULDBLOCK) {
515df8bae1dSRodney W. Grimes 			/*
516df8bae1dSRodney W. Grimes 			 * On a timeout, return what's in the buffer,
517df8bae1dSRodney W. Grimes 			 * which may be nothing.  If there is something
518df8bae1dSRodney W. Grimes 			 * in the store buffer, we can rotate the buffers.
519df8bae1dSRodney W. Grimes 			 */
520df8bae1dSRodney W. Grimes 			if (d->bd_hbuf)
521df8bae1dSRodney W. Grimes 				/*
522df8bae1dSRodney W. Grimes 				 * We filled up the buffer in between
523df8bae1dSRodney W. Grimes 				 * getting the timeout and arriving
524df8bae1dSRodney W. Grimes 				 * here, so we don't need to rotate.
525df8bae1dSRodney W. Grimes 				 */
526df8bae1dSRodney W. Grimes 				break;
527df8bae1dSRodney W. Grimes 
528df8bae1dSRodney W. Grimes 			if (d->bd_slen == 0) {
529e7bb21b3SJonathan Lemon 				BPFD_UNLOCK(d);
530df8bae1dSRodney W. Grimes 				return (0);
531df8bae1dSRodney W. Grimes 			}
532df8bae1dSRodney W. Grimes 			ROTATE_BUFFERS(d);
533df8bae1dSRodney W. Grimes 			break;
534df8bae1dSRodney W. Grimes 		}
535df8bae1dSRodney W. Grimes 	}
536df8bae1dSRodney W. Grimes 	/*
537df8bae1dSRodney W. Grimes 	 * At this point, we know we have something in the hold slot.
538df8bae1dSRodney W. Grimes 	 */
539e7bb21b3SJonathan Lemon 	BPFD_UNLOCK(d);
540df8bae1dSRodney W. Grimes 
541df8bae1dSRodney W. Grimes 	/*
542df8bae1dSRodney W. Grimes 	 * Move data from hold buffer into user space.
543df8bae1dSRodney W. Grimes 	 * We know the entire buffer is transferred since
544df8bae1dSRodney W. Grimes 	 * we checked above that the read buffer is bpf_bufsize bytes.
545df8bae1dSRodney W. Grimes 	 */
546e7bb21b3SJonathan Lemon 	error = uiomove(d->bd_hbuf, d->bd_hlen, uio);
547df8bae1dSRodney W. Grimes 
548e7bb21b3SJonathan Lemon 	BPFD_LOCK(d);
549df8bae1dSRodney W. Grimes 	d->bd_fbuf = d->bd_hbuf;
550572bde2aSRobert Watson 	d->bd_hbuf = NULL;
551df8bae1dSRodney W. Grimes 	d->bd_hlen = 0;
552e7bb21b3SJonathan Lemon 	BPFD_UNLOCK(d);
553df8bae1dSRodney W. Grimes 
554df8bae1dSRodney W. Grimes 	return (error);
555df8bae1dSRodney W. Grimes }
556df8bae1dSRodney W. Grimes 
557df8bae1dSRodney W. Grimes 
558df8bae1dSRodney W. Grimes /*
559df8bae1dSRodney W. Grimes  * If there are processes sleeping on this descriptor, wake them up.
560df8bae1dSRodney W. Grimes  */
561e7bb21b3SJonathan Lemon static __inline void
562df8bae1dSRodney W. Grimes bpf_wakeup(d)
5638994a245SDag-Erling Smørgrav 	struct bpf_d *d;
564df8bae1dSRodney W. Grimes {
565a3272e3cSChristian S.J. Peron 
566a3272e3cSChristian S.J. Peron 	BPFD_LOCK_ASSERT(d);
56781bda851SJohn Polstra 	if (d->bd_state == BPF_WAITING) {
56881bda851SJohn Polstra 		callout_stop(&d->bd_callout);
56981bda851SJohn Polstra 		d->bd_state = BPF_IDLE;
57081bda851SJohn Polstra 	}
571521f364bSDag-Erling Smørgrav 	wakeup(d);
572831d27a9SDon Lewis 	if (d->bd_async && d->bd_sig && d->bd_sigio)
573f1320723SAlfred Perlstein 		pgsigio(&d->bd_sigio, d->bd_sig, 0);
57400a83887SPaul Traina 
575512824f8SSeigo Tanimura 	selwakeuppri(&d->bd_sel, PRINET);
576ad3b9257SJohn-Mark Gurney 	KNOTE_LOCKED(&d->bd_sel.si_note, 0);
577df8bae1dSRodney W. Grimes }
578df8bae1dSRodney W. Grimes 
57981bda851SJohn Polstra static void
58081bda851SJohn Polstra bpf_timed_out(arg)
58181bda851SJohn Polstra 	void *arg;
58281bda851SJohn Polstra {
58381bda851SJohn Polstra 	struct bpf_d *d = (struct bpf_d *)arg;
58481bda851SJohn Polstra 
58581bda851SJohn Polstra 	BPFD_LOCK(d);
58681bda851SJohn Polstra 	if (d->bd_state == BPF_WAITING) {
58781bda851SJohn Polstra 		d->bd_state = BPF_TIMED_OUT;
58881bda851SJohn Polstra 		if (d->bd_slen != 0)
58981bda851SJohn Polstra 			bpf_wakeup(d);
59081bda851SJohn Polstra 	}
59181bda851SJohn Polstra 	BPFD_UNLOCK(d);
59281bda851SJohn Polstra }
59381bda851SJohn Polstra 
59487f6c662SJulian Elischer static	int
59560039670SBruce Evans bpfwrite(dev, uio, ioflag)
59689c9c53dSPoul-Henning Kamp 	struct cdev *dev;
597df8bae1dSRodney W. Grimes 	struct uio *uio;
59860039670SBruce Evans 	int ioflag;
599df8bae1dSRodney W. Grimes {
600e7bb21b3SJonathan Lemon 	struct bpf_d *d = dev->si_drv1;
601df8bae1dSRodney W. Grimes 	struct ifnet *ifp;
602df8bae1dSRodney W. Grimes 	struct mbuf *m;
603e7bb21b3SJonathan Lemon 	int error;
6048240bf1eSRobert Watson 	struct sockaddr dst;
605df8bae1dSRodney W. Grimes 
606572bde2aSRobert Watson 	if (d->bd_bif == NULL)
607df8bae1dSRodney W. Grimes 		return (ENXIO);
608df8bae1dSRodney W. Grimes 
609df8bae1dSRodney W. Grimes 	ifp = d->bd_bif->bif_ifp;
610df8bae1dSRodney W. Grimes 
6113518d220SSam Leffler 	if ((ifp->if_flags & IFF_UP) == 0)
6123518d220SSam Leffler 		return (ENETDOWN);
6133518d220SSam Leffler 
614df8bae1dSRodney W. Grimes 	if (uio->uio_resid == 0)
615df8bae1dSRodney W. Grimes 		return (0);
616df8bae1dSRodney W. Grimes 
6178240bf1eSRobert Watson 	bzero(&dst, sizeof(dst));
61893e39f0bSChristian S.J. Peron 	error = bpf_movein(uio, (int)d->bd_bif->bif_dlt, ifp->if_mtu,
61993e39f0bSChristian S.J. Peron 	    &m, &dst, d->bd_wfilter);
620df8bae1dSRodney W. Grimes 	if (error)
621df8bae1dSRodney W. Grimes 		return (error);
622df8bae1dSRodney W. Grimes 
623114ae644SMike Smith 	if (d->bd_hdrcmplt)
624114ae644SMike Smith 		dst.sa_family = pseudo_AF_HDRCMPLT;
625114ae644SMike Smith 
62682f4445dSRobert Watson #ifdef MAC
627f747d2ddSRobert Watson 	BPFD_LOCK(d);
62882f4445dSRobert Watson 	mac_create_mbuf_from_bpfdesc(d, m);
629f747d2ddSRobert Watson 	BPFD_UNLOCK(d);
63082f4445dSRobert Watson #endif
631b8f9429dSRobert Watson 	NET_LOCK_GIANT();
632572bde2aSRobert Watson 	error = (*ifp->if_output)(ifp, m, &dst, NULL);
633b8f9429dSRobert Watson 	NET_UNLOCK_GIANT();
634df8bae1dSRodney W. Grimes 	/*
635df8bae1dSRodney W. Grimes 	 * The driver frees the mbuf.
636df8bae1dSRodney W. Grimes 	 */
637df8bae1dSRodney W. Grimes 	return (error);
638df8bae1dSRodney W. Grimes }
639df8bae1dSRodney W. Grimes 
640df8bae1dSRodney W. Grimes /*
641df8bae1dSRodney W. Grimes  * Reset a descriptor by flushing its packet buffer and clearing the
642e7bb21b3SJonathan Lemon  * receive and drop counts.
643df8bae1dSRodney W. Grimes  */
644df8bae1dSRodney W. Grimes static void
645df8bae1dSRodney W. Grimes reset_d(d)
646df8bae1dSRodney W. Grimes 	struct bpf_d *d;
647df8bae1dSRodney W. Grimes {
648e7bb21b3SJonathan Lemon 
649e7bb21b3SJonathan Lemon 	mtx_assert(&d->bd_mtx, MA_OWNED);
650df8bae1dSRodney W. Grimes 	if (d->bd_hbuf) {
651df8bae1dSRodney W. Grimes 		/* Free the hold buffer. */
652df8bae1dSRodney W. Grimes 		d->bd_fbuf = d->bd_hbuf;
653572bde2aSRobert Watson 		d->bd_hbuf = NULL;
654df8bae1dSRodney W. Grimes 	}
655df8bae1dSRodney W. Grimes 	d->bd_slen = 0;
656df8bae1dSRodney W. Grimes 	d->bd_hlen = 0;
657df8bae1dSRodney W. Grimes 	d->bd_rcount = 0;
658df8bae1dSRodney W. Grimes 	d->bd_dcount = 0;
65969f7644bSChristian S.J. Peron 	d->bd_fcount = 0;
660df8bae1dSRodney W. Grimes }
661df8bae1dSRodney W. Grimes 
662df8bae1dSRodney W. Grimes /*
663df8bae1dSRodney W. Grimes  *  FIONREAD		Check for read packet available.
664df8bae1dSRodney W. Grimes  *  SIOCGIFADDR		Get interface address - convenient hook to driver.
665df8bae1dSRodney W. Grimes  *  BIOCGBLEN		Get buffer len [for read()].
666df8bae1dSRodney W. Grimes  *  BIOCSETF		Set ethernet read filter.
66793e39f0bSChristian S.J. Peron  *  BIOCSETWF		Set ethernet write filter.
668df8bae1dSRodney W. Grimes  *  BIOCFLUSH		Flush read packet buffer.
669df8bae1dSRodney W. Grimes  *  BIOCPROMISC		Put interface into promiscuous mode.
670df8bae1dSRodney W. Grimes  *  BIOCGDLT		Get link layer type.
671df8bae1dSRodney W. Grimes  *  BIOCGETIF		Get interface name.
672df8bae1dSRodney W. Grimes  *  BIOCSETIF		Set interface.
673df8bae1dSRodney W. Grimes  *  BIOCSRTIMEOUT	Set read timeout.
674df8bae1dSRodney W. Grimes  *  BIOCGRTIMEOUT	Get read timeout.
675df8bae1dSRodney W. Grimes  *  BIOCGSTATS		Get packet stats.
676df8bae1dSRodney W. Grimes  *  BIOCIMMEDIATE	Set immediate mode.
677df8bae1dSRodney W. Grimes  *  BIOCVERSION		Get filter language version.
678114ae644SMike Smith  *  BIOCGHDRCMPLT	Get "header already complete" flag
679114ae644SMike Smith  *  BIOCSHDRCMPLT	Set "header already complete" flag
6808ed3828cSRobert Watson  *  BIOCGSEESENT	Get "see packets sent" flag
6818ed3828cSRobert Watson  *  BIOCSSEESENT	Set "see packets sent" flag
68293e39f0bSChristian S.J. Peron  *  BIOCLOCK		Set "locked" flag
683df8bae1dSRodney W. Grimes  */
684df8bae1dSRodney W. Grimes /* ARGSUSED */
68587f6c662SJulian Elischer static	int
686b40ce416SJulian Elischer bpfioctl(dev, cmd, addr, flags, td)
68789c9c53dSPoul-Henning Kamp 	struct cdev *dev;
688ecbb00a2SDoug Rabson 	u_long cmd;
689df8bae1dSRodney W. Grimes 	caddr_t addr;
69060039670SBruce Evans 	int flags;
691b40ce416SJulian Elischer 	struct thread *td;
692df8bae1dSRodney W. Grimes {
693e7bb21b3SJonathan Lemon 	struct bpf_d *d = dev->si_drv1;
694e7bb21b3SJonathan Lemon 	int error = 0;
695df8bae1dSRodney W. Grimes 
696b75a24a0SChristian S.J. Peron 	/*
697b75a24a0SChristian S.J. Peron 	 * Refresh PID associated with this descriptor.
698b75a24a0SChristian S.J. Peron 	 */
699b75a24a0SChristian S.J. Peron 	d->bd_pid = td->td_proc->p_pid;
70081bda851SJohn Polstra 	BPFD_LOCK(d);
70181bda851SJohn Polstra 	if (d->bd_state == BPF_WAITING)
70281bda851SJohn Polstra 		callout_stop(&d->bd_callout);
70381bda851SJohn Polstra 	d->bd_state = BPF_IDLE;
70481bda851SJohn Polstra 	BPFD_UNLOCK(d);
70581bda851SJohn Polstra 
70693e39f0bSChristian S.J. Peron 	if (d->bd_locked == 1) {
70793e39f0bSChristian S.J. Peron 		switch (cmd) {
70893e39f0bSChristian S.J. Peron 		case BIOCGBLEN:
70993e39f0bSChristian S.J. Peron 		case BIOCFLUSH:
71093e39f0bSChristian S.J. Peron 		case BIOCGDLT:
71193e39f0bSChristian S.J. Peron 		case BIOCGDLTLIST:
71293e39f0bSChristian S.J. Peron 		case BIOCGETIF:
71393e39f0bSChristian S.J. Peron 		case BIOCGRTIMEOUT:
71493e39f0bSChristian S.J. Peron 		case BIOCGSTATS:
71593e39f0bSChristian S.J. Peron 		case BIOCVERSION:
71693e39f0bSChristian S.J. Peron 		case BIOCGRSIG:
71793e39f0bSChristian S.J. Peron 		case BIOCGHDRCMPLT:
71893e39f0bSChristian S.J. Peron 		case FIONREAD:
71993e39f0bSChristian S.J. Peron 		case BIOCLOCK:
72093e39f0bSChristian S.J. Peron 		case BIOCSRTIMEOUT:
72193e39f0bSChristian S.J. Peron 		case BIOCIMMEDIATE:
72293e39f0bSChristian S.J. Peron 		case TIOCGPGRP:
72393e39f0bSChristian S.J. Peron 			break;
72493e39f0bSChristian S.J. Peron 		default:
72593e39f0bSChristian S.J. Peron 			return (EPERM);
72693e39f0bSChristian S.J. Peron 		}
72793e39f0bSChristian S.J. Peron 	}
728df8bae1dSRodney W. Grimes 	switch (cmd) {
729df8bae1dSRodney W. Grimes 
730df8bae1dSRodney W. Grimes 	default:
731df8bae1dSRodney W. Grimes 		error = EINVAL;
732df8bae1dSRodney W. Grimes 		break;
733df8bae1dSRodney W. Grimes 
734df8bae1dSRodney W. Grimes 	/*
735df8bae1dSRodney W. Grimes 	 * Check for read packet available.
736df8bae1dSRodney W. Grimes 	 */
737df8bae1dSRodney W. Grimes 	case FIONREAD:
738df8bae1dSRodney W. Grimes 		{
739df8bae1dSRodney W. Grimes 			int n;
740df8bae1dSRodney W. Grimes 
741e7bb21b3SJonathan Lemon 			BPFD_LOCK(d);
742df8bae1dSRodney W. Grimes 			n = d->bd_slen;
743df8bae1dSRodney W. Grimes 			if (d->bd_hbuf)
744df8bae1dSRodney W. Grimes 				n += d->bd_hlen;
745e7bb21b3SJonathan Lemon 			BPFD_UNLOCK(d);
746df8bae1dSRodney W. Grimes 
747df8bae1dSRodney W. Grimes 			*(int *)addr = n;
748df8bae1dSRodney W. Grimes 			break;
749df8bae1dSRodney W. Grimes 		}
750df8bae1dSRodney W. Grimes 
751df8bae1dSRodney W. Grimes 	case SIOCGIFADDR:
752df8bae1dSRodney W. Grimes 		{
753df8bae1dSRodney W. Grimes 			struct ifnet *ifp;
754df8bae1dSRodney W. Grimes 
755572bde2aSRobert Watson 			if (d->bd_bif == NULL)
756df8bae1dSRodney W. Grimes 				error = EINVAL;
757df8bae1dSRodney W. Grimes 			else {
758df8bae1dSRodney W. Grimes 				ifp = d->bd_bif->bif_ifp;
759df8bae1dSRodney W. Grimes 				error = (*ifp->if_ioctl)(ifp, cmd, addr);
760df8bae1dSRodney W. Grimes 			}
761df8bae1dSRodney W. Grimes 			break;
762df8bae1dSRodney W. Grimes 		}
763df8bae1dSRodney W. Grimes 
764df8bae1dSRodney W. Grimes 	/*
765df8bae1dSRodney W. Grimes 	 * Get buffer len [for read()].
766df8bae1dSRodney W. Grimes 	 */
767df8bae1dSRodney W. Grimes 	case BIOCGBLEN:
768df8bae1dSRodney W. Grimes 		*(u_int *)addr = d->bd_bufsize;
769df8bae1dSRodney W. Grimes 		break;
770df8bae1dSRodney W. Grimes 
771df8bae1dSRodney W. Grimes 	/*
772df8bae1dSRodney W. Grimes 	 * Set buffer length.
773df8bae1dSRodney W. Grimes 	 */
774df8bae1dSRodney W. Grimes 	case BIOCSBLEN:
775572bde2aSRobert Watson 		if (d->bd_bif != NULL)
776df8bae1dSRodney W. Grimes 			error = EINVAL;
777df8bae1dSRodney W. Grimes 		else {
7788994a245SDag-Erling Smørgrav 			u_int size = *(u_int *)addr;
779df8bae1dSRodney W. Grimes 
780eba2a1aeSPoul-Henning Kamp 			if (size > bpf_maxbufsize)
781eba2a1aeSPoul-Henning Kamp 				*(u_int *)addr = size = bpf_maxbufsize;
782df8bae1dSRodney W. Grimes 			else if (size < BPF_MINBUFSIZE)
783df8bae1dSRodney W. Grimes 				*(u_int *)addr = size = BPF_MINBUFSIZE;
784df8bae1dSRodney W. Grimes 			d->bd_bufsize = size;
785df8bae1dSRodney W. Grimes 		}
786df8bae1dSRodney W. Grimes 		break;
787df8bae1dSRodney W. Grimes 
788df8bae1dSRodney W. Grimes 	/*
789df8bae1dSRodney W. Grimes 	 * Set link layer read filter.
790df8bae1dSRodney W. Grimes 	 */
791df8bae1dSRodney W. Grimes 	case BIOCSETF:
79293e39f0bSChristian S.J. Peron 	case BIOCSETWF:
79393e39f0bSChristian S.J. Peron 		error = bpf_setf(d, (struct bpf_program *)addr, cmd);
794df8bae1dSRodney W. Grimes 		break;
795df8bae1dSRodney W. Grimes 
796df8bae1dSRodney W. Grimes 	/*
797df8bae1dSRodney W. Grimes 	 * Flush read packet buffer.
798df8bae1dSRodney W. Grimes 	 */
799df8bae1dSRodney W. Grimes 	case BIOCFLUSH:
800e7bb21b3SJonathan Lemon 		BPFD_LOCK(d);
801df8bae1dSRodney W. Grimes 		reset_d(d);
802e7bb21b3SJonathan Lemon 		BPFD_UNLOCK(d);
803df8bae1dSRodney W. Grimes 		break;
804df8bae1dSRodney W. Grimes 
805df8bae1dSRodney W. Grimes 	/*
806df8bae1dSRodney W. Grimes 	 * Put interface into promiscuous mode.
807df8bae1dSRodney W. Grimes 	 */
808df8bae1dSRodney W. Grimes 	case BIOCPROMISC:
809572bde2aSRobert Watson 		if (d->bd_bif == NULL) {
810df8bae1dSRodney W. Grimes 			/*
811df8bae1dSRodney W. Grimes 			 * No interface attached yet.
812df8bae1dSRodney W. Grimes 			 */
813df8bae1dSRodney W. Grimes 			error = EINVAL;
814df8bae1dSRodney W. Grimes 			break;
815df8bae1dSRodney W. Grimes 		}
816df8bae1dSRodney W. Grimes 		if (d->bd_promisc == 0) {
817e7bb21b3SJonathan Lemon 			mtx_lock(&Giant);
818df8bae1dSRodney W. Grimes 			error = ifpromisc(d->bd_bif->bif_ifp, 1);
819e7bb21b3SJonathan Lemon 			mtx_unlock(&Giant);
820df8bae1dSRodney W. Grimes 			if (error == 0)
821df8bae1dSRodney W. Grimes 				d->bd_promisc = 1;
822df8bae1dSRodney W. Grimes 		}
823df8bae1dSRodney W. Grimes 		break;
824df8bae1dSRodney W. Grimes 
825df8bae1dSRodney W. Grimes 	/*
8268eab61f3SSam Leffler 	 * Get current data link type.
827df8bae1dSRodney W. Grimes 	 */
828df8bae1dSRodney W. Grimes 	case BIOCGDLT:
829572bde2aSRobert Watson 		if (d->bd_bif == NULL)
830df8bae1dSRodney W. Grimes 			error = EINVAL;
831df8bae1dSRodney W. Grimes 		else
832df8bae1dSRodney W. Grimes 			*(u_int *)addr = d->bd_bif->bif_dlt;
833df8bae1dSRodney W. Grimes 		break;
834df8bae1dSRodney W. Grimes 
835df8bae1dSRodney W. Grimes 	/*
8368eab61f3SSam Leffler 	 * Get a list of supported data link types.
8378eab61f3SSam Leffler 	 */
8388eab61f3SSam Leffler 	case BIOCGDLTLIST:
839572bde2aSRobert Watson 		if (d->bd_bif == NULL)
8408eab61f3SSam Leffler 			error = EINVAL;
8418eab61f3SSam Leffler 		else
8428eab61f3SSam Leffler 			error = bpf_getdltlist(d, (struct bpf_dltlist *)addr);
8438eab61f3SSam Leffler 		break;
8448eab61f3SSam Leffler 
8458eab61f3SSam Leffler 	/*
8468eab61f3SSam Leffler 	 * Set data link type.
8478eab61f3SSam Leffler 	 */
8488eab61f3SSam Leffler 	case BIOCSDLT:
849572bde2aSRobert Watson 		if (d->bd_bif == NULL)
8508eab61f3SSam Leffler 			error = EINVAL;
8518eab61f3SSam Leffler 		else
8528eab61f3SSam Leffler 			error = bpf_setdlt(d, *(u_int *)addr);
8538eab61f3SSam Leffler 		break;
8548eab61f3SSam Leffler 
8558eab61f3SSam Leffler 	/*
8561dd0feaaSArchie Cobbs 	 * Get interface name.
857df8bae1dSRodney W. Grimes 	 */
858df8bae1dSRodney W. Grimes 	case BIOCGETIF:
859572bde2aSRobert Watson 		if (d->bd_bif == NULL)
860df8bae1dSRodney W. Grimes 			error = EINVAL;
8611dd0feaaSArchie Cobbs 		else {
8621dd0feaaSArchie Cobbs 			struct ifnet *const ifp = d->bd_bif->bif_ifp;
8631dd0feaaSArchie Cobbs 			struct ifreq *const ifr = (struct ifreq *)addr;
8641dd0feaaSArchie Cobbs 
8659bf40edeSBrooks Davis 			strlcpy(ifr->ifr_name, ifp->if_xname,
8669bf40edeSBrooks Davis 			    sizeof(ifr->ifr_name));
8671dd0feaaSArchie Cobbs 		}
868df8bae1dSRodney W. Grimes 		break;
869df8bae1dSRodney W. Grimes 
870df8bae1dSRodney W. Grimes 	/*
871df8bae1dSRodney W. Grimes 	 * Set interface.
872df8bae1dSRodney W. Grimes 	 */
873df8bae1dSRodney W. Grimes 	case BIOCSETIF:
874df8bae1dSRodney W. Grimes 		error = bpf_setif(d, (struct ifreq *)addr);
875df8bae1dSRodney W. Grimes 		break;
876df8bae1dSRodney W. Grimes 
877df8bae1dSRodney W. Grimes 	/*
878df8bae1dSRodney W. Grimes 	 * Set read timeout.
879df8bae1dSRodney W. Grimes 	 */
880df8bae1dSRodney W. Grimes 	case BIOCSRTIMEOUT:
881df8bae1dSRodney W. Grimes 		{
882df8bae1dSRodney W. Grimes 			struct timeval *tv = (struct timeval *)addr;
883df8bae1dSRodney W. Grimes 
884bdc2cdc5SAlexander Langer 			/*
885bdc2cdc5SAlexander Langer 			 * Subtract 1 tick from tvtohz() since this isn't
886bdc2cdc5SAlexander Langer 			 * a one-shot timer.
887bdc2cdc5SAlexander Langer 			 */
888bdc2cdc5SAlexander Langer 			if ((error = itimerfix(tv)) == 0)
889bdc2cdc5SAlexander Langer 				d->bd_rtout = tvtohz(tv) - 1;
890df8bae1dSRodney W. Grimes 			break;
891df8bae1dSRodney W. Grimes 		}
892df8bae1dSRodney W. Grimes 
893df8bae1dSRodney W. Grimes 	/*
894df8bae1dSRodney W. Grimes 	 * Get read timeout.
895df8bae1dSRodney W. Grimes 	 */
896df8bae1dSRodney W. Grimes 	case BIOCGRTIMEOUT:
897df8bae1dSRodney W. Grimes 		{
898df8bae1dSRodney W. Grimes 			struct timeval *tv = (struct timeval *)addr;
899df8bae1dSRodney W. Grimes 
900bdc2cdc5SAlexander Langer 			tv->tv_sec = d->bd_rtout / hz;
901bdc2cdc5SAlexander Langer 			tv->tv_usec = (d->bd_rtout % hz) * tick;
902df8bae1dSRodney W. Grimes 			break;
903df8bae1dSRodney W. Grimes 		}
904df8bae1dSRodney W. Grimes 
905df8bae1dSRodney W. Grimes 	/*
906df8bae1dSRodney W. Grimes 	 * Get packet stats.
907df8bae1dSRodney W. Grimes 	 */
908df8bae1dSRodney W. Grimes 	case BIOCGSTATS:
909df8bae1dSRodney W. Grimes 		{
910df8bae1dSRodney W. Grimes 			struct bpf_stat *bs = (struct bpf_stat *)addr;
911df8bae1dSRodney W. Grimes 
912df8bae1dSRodney W. Grimes 			bs->bs_recv = d->bd_rcount;
913df8bae1dSRodney W. Grimes 			bs->bs_drop = d->bd_dcount;
914df8bae1dSRodney W. Grimes 			break;
915df8bae1dSRodney W. Grimes 		}
916df8bae1dSRodney W. Grimes 
917df8bae1dSRodney W. Grimes 	/*
918df8bae1dSRodney W. Grimes 	 * Set immediate mode.
919df8bae1dSRodney W. Grimes 	 */
920df8bae1dSRodney W. Grimes 	case BIOCIMMEDIATE:
921df8bae1dSRodney W. Grimes 		d->bd_immediate = *(u_int *)addr;
922df8bae1dSRodney W. Grimes 		break;
923df8bae1dSRodney W. Grimes 
924df8bae1dSRodney W. Grimes 	case BIOCVERSION:
925df8bae1dSRodney W. Grimes 		{
926df8bae1dSRodney W. Grimes 			struct bpf_version *bv = (struct bpf_version *)addr;
927df8bae1dSRodney W. Grimes 
928df8bae1dSRodney W. Grimes 			bv->bv_major = BPF_MAJOR_VERSION;
929df8bae1dSRodney W. Grimes 			bv->bv_minor = BPF_MINOR_VERSION;
930df8bae1dSRodney W. Grimes 			break;
931df8bae1dSRodney W. Grimes 		}
93200a83887SPaul Traina 
933114ae644SMike Smith 	/*
934114ae644SMike Smith 	 * Get "header already complete" flag
935114ae644SMike Smith 	 */
936114ae644SMike Smith 	case BIOCGHDRCMPLT:
937114ae644SMike Smith 		*(u_int *)addr = d->bd_hdrcmplt;
938114ae644SMike Smith 		break;
939114ae644SMike Smith 
94093e39f0bSChristian S.J. Peron 	case BIOCLOCK:
94193e39f0bSChristian S.J. Peron 		d->bd_locked = 1;
94293e39f0bSChristian S.J. Peron 		break;
943114ae644SMike Smith 	/*
944114ae644SMike Smith 	 * Set "header already complete" flag
945114ae644SMike Smith 	 */
946114ae644SMike Smith 	case BIOCSHDRCMPLT:
947114ae644SMike Smith 		d->bd_hdrcmplt = *(u_int *)addr ? 1 : 0;
948114ae644SMike Smith 		break;
949114ae644SMike Smith 
9508ed3828cSRobert Watson 	/*
9518ed3828cSRobert Watson 	 * Get "see sent packets" flag
9528ed3828cSRobert Watson 	 */
9538ed3828cSRobert Watson 	case BIOCGSEESENT:
9548ed3828cSRobert Watson 		*(u_int *)addr = d->bd_seesent;
9558ed3828cSRobert Watson 		break;
9568ed3828cSRobert Watson 
9578ed3828cSRobert Watson 	/*
9588ed3828cSRobert Watson 	 * Set "see sent packets" flag
9598ed3828cSRobert Watson 	 */
9608ed3828cSRobert Watson 	case BIOCSSEESENT:
9618ed3828cSRobert Watson 		d->bd_seesent = *(u_int *)addr;
9628ed3828cSRobert Watson 		break;
9638ed3828cSRobert Watson 
96400a83887SPaul Traina 	case FIONBIO:		/* Non-blocking I/O */
96500a83887SPaul Traina 		break;
96600a83887SPaul Traina 
96700a83887SPaul Traina 	case FIOASYNC:		/* Send signal on receive packets */
96800a83887SPaul Traina 		d->bd_async = *(int *)addr;
96900a83887SPaul Traina 		break;
97000a83887SPaul Traina 
971831d27a9SDon Lewis 	case FIOSETOWN:
972831d27a9SDon Lewis 		error = fsetown(*(int *)addr, &d->bd_sigio);
97300a83887SPaul Traina 		break;
97400a83887SPaul Traina 
975831d27a9SDon Lewis 	case FIOGETOWN:
97691e97a82SDon Lewis 		*(int *)addr = fgetown(&d->bd_sigio);
977831d27a9SDon Lewis 		break;
978831d27a9SDon Lewis 
979831d27a9SDon Lewis 	/* This is deprecated, FIOSETOWN should be used instead. */
980831d27a9SDon Lewis 	case TIOCSPGRP:
981831d27a9SDon Lewis 		error = fsetown(-(*(int *)addr), &d->bd_sigio);
982831d27a9SDon Lewis 		break;
983831d27a9SDon Lewis 
984831d27a9SDon Lewis 	/* This is deprecated, FIOGETOWN should be used instead. */
98500a83887SPaul Traina 	case TIOCGPGRP:
98691e97a82SDon Lewis 		*(int *)addr = -fgetown(&d->bd_sigio);
98700a83887SPaul Traina 		break;
98800a83887SPaul Traina 
98900a83887SPaul Traina 	case BIOCSRSIG:		/* Set receive signal */
99000a83887SPaul Traina 		{
99100a83887SPaul Traina 			u_int sig;
99200a83887SPaul Traina 
99300a83887SPaul Traina 			sig = *(u_int *)addr;
99400a83887SPaul Traina 
99500a83887SPaul Traina 			if (sig >= NSIG)
99600a83887SPaul Traina 				error = EINVAL;
99700a83887SPaul Traina 			else
99800a83887SPaul Traina 				d->bd_sig = sig;
99900a83887SPaul Traina 			break;
100000a83887SPaul Traina 		}
100100a83887SPaul Traina 	case BIOCGRSIG:
100200a83887SPaul Traina 		*(u_int *)addr = d->bd_sig;
100300a83887SPaul Traina 		break;
1004df8bae1dSRodney W. Grimes 	}
1005df8bae1dSRodney W. Grimes 	return (error);
1006df8bae1dSRodney W. Grimes }
1007df8bae1dSRodney W. Grimes 
1008df8bae1dSRodney W. Grimes /*
1009df8bae1dSRodney W. Grimes  * Set d's packet filter program to fp.  If this file already has a filter,
1010df8bae1dSRodney W. Grimes  * free it and replace it.  Returns EINVAL for bogus requests.
1011df8bae1dSRodney W. Grimes  */
1012f708ef1bSPoul-Henning Kamp static int
101393e39f0bSChristian S.J. Peron bpf_setf(d, fp, cmd)
1014df8bae1dSRodney W. Grimes 	struct bpf_d *d;
1015df8bae1dSRodney W. Grimes 	struct bpf_program *fp;
101693e39f0bSChristian S.J. Peron 	u_long cmd;
1017df8bae1dSRodney W. Grimes {
1018df8bae1dSRodney W. Grimes 	struct bpf_insn *fcode, *old;
101993e39f0bSChristian S.J. Peron 	u_int wfilter, flen, size;
1020df8bae1dSRodney W. Grimes 
102193e39f0bSChristian S.J. Peron 	if (cmd == BIOCSETWF) {
102293e39f0bSChristian S.J. Peron 		old = d->bd_wfilter;
102393e39f0bSChristian S.J. Peron 		wfilter = 1;
102493e39f0bSChristian S.J. Peron 	} else {
102593e39f0bSChristian S.J. Peron 		wfilter = 0;
102693e39f0bSChristian S.J. Peron 		old = d->bd_rfilter;
102793e39f0bSChristian S.J. Peron 	}
1028572bde2aSRobert Watson 	if (fp->bf_insns == NULL) {
1029df8bae1dSRodney W. Grimes 		if (fp->bf_len != 0)
1030df8bae1dSRodney W. Grimes 			return (EINVAL);
1031e7bb21b3SJonathan Lemon 		BPFD_LOCK(d);
103293e39f0bSChristian S.J. Peron 		if (wfilter)
103393e39f0bSChristian S.J. Peron 			d->bd_wfilter = NULL;
103493e39f0bSChristian S.J. Peron 		else
103593e39f0bSChristian S.J. Peron 			d->bd_rfilter = NULL;
1036df8bae1dSRodney W. Grimes 		reset_d(d);
1037e7bb21b3SJonathan Lemon 		BPFD_UNLOCK(d);
1038572bde2aSRobert Watson 		if (old != NULL)
1039bd3a5320SPoul-Henning Kamp 			free((caddr_t)old, M_BPF);
1040df8bae1dSRodney W. Grimes 		return (0);
1041df8bae1dSRodney W. Grimes 	}
1042df8bae1dSRodney W. Grimes 	flen = fp->bf_len;
10430eb20604SChristian S.J. Peron 	if (flen > bpf_maxinsns)
1044df8bae1dSRodney W. Grimes 		return (EINVAL);
1045df8bae1dSRodney W. Grimes 
1046df8bae1dSRodney W. Grimes 	size = flen * sizeof(*fp->bf_insns);
1047a163d034SWarner Losh 	fcode = (struct bpf_insn *)malloc(size, M_BPF, M_WAITOK);
1048df8bae1dSRodney W. Grimes 	if (copyin((caddr_t)fp->bf_insns, (caddr_t)fcode, size) == 0 &&
1049df8bae1dSRodney W. Grimes 	    bpf_validate(fcode, (int)flen)) {
1050e7bb21b3SJonathan Lemon 		BPFD_LOCK(d);
105193e39f0bSChristian S.J. Peron 		if (wfilter)
105293e39f0bSChristian S.J. Peron 			d->bd_wfilter = fcode;
105393e39f0bSChristian S.J. Peron 		else
105493e39f0bSChristian S.J. Peron 			d->bd_rfilter = fcode;
1055df8bae1dSRodney W. Grimes 		reset_d(d);
1056e7bb21b3SJonathan Lemon 		BPFD_UNLOCK(d);
1057572bde2aSRobert Watson 		if (old != NULL)
1058bd3a5320SPoul-Henning Kamp 			free((caddr_t)old, M_BPF);
1059df8bae1dSRodney W. Grimes 
1060df8bae1dSRodney W. Grimes 		return (0);
1061df8bae1dSRodney W. Grimes 	}
1062bd3a5320SPoul-Henning Kamp 	free((caddr_t)fcode, M_BPF);
1063df8bae1dSRodney W. Grimes 	return (EINVAL);
1064df8bae1dSRodney W. Grimes }
1065df8bae1dSRodney W. Grimes 
1066df8bae1dSRodney W. Grimes /*
1067df8bae1dSRodney W. Grimes  * Detach a file from its current interface (if attached at all) and attach
1068df8bae1dSRodney W. Grimes  * to the interface indicated by the name stored in ifr.
1069df8bae1dSRodney W. Grimes  * Return an errno or 0.
1070df8bae1dSRodney W. Grimes  */
1071df8bae1dSRodney W. Grimes static int
1072df8bae1dSRodney W. Grimes bpf_setif(d, ifr)
1073df8bae1dSRodney W. Grimes 	struct bpf_d *d;
1074df8bae1dSRodney W. Grimes 	struct ifreq *ifr;
1075df8bae1dSRodney W. Grimes {
1076df8bae1dSRodney W. Grimes 	struct bpf_if *bp;
1077e7bb21b3SJonathan Lemon 	int error;
10789b44ff22SGarrett Wollman 	struct ifnet *theywant;
1079df8bae1dSRodney W. Grimes 
10809b44ff22SGarrett Wollman 	theywant = ifunit(ifr->ifr_name);
1081572bde2aSRobert Watson 	if (theywant == NULL)
10829b44ff22SGarrett Wollman 		return ENXIO;
10839b44ff22SGarrett Wollman 
1084df8bae1dSRodney W. Grimes 	/*
1085df8bae1dSRodney W. Grimes 	 * Look through attached interfaces for the named one.
1086df8bae1dSRodney W. Grimes 	 */
1087e7bb21b3SJonathan Lemon 	mtx_lock(&bpf_mtx);
10884a3feeaaSRobert Watson 	LIST_FOREACH(bp, &bpf_iflist, bif_next) {
1089df8bae1dSRodney W. Grimes 		struct ifnet *ifp = bp->bif_ifp;
1090df8bae1dSRodney W. Grimes 
1091572bde2aSRobert Watson 		if (ifp == NULL || ifp != theywant)
1092df8bae1dSRodney W. Grimes 			continue;
109324a229f4SSam Leffler 		/* skip additional entry */
1094fc74a9f9SBrooks Davis 		if (bp->bif_driverp != &ifp->if_bpf)
109524a229f4SSam Leffler 			continue;
1096e7bb21b3SJonathan Lemon 
1097e7bb21b3SJonathan Lemon 		mtx_unlock(&bpf_mtx);
1098df8bae1dSRodney W. Grimes 		/*
1099df8bae1dSRodney W. Grimes 		 * We found the requested interface.
1100df8bae1dSRodney W. Grimes 		 * Allocate the packet buffers if we need to.
1101df8bae1dSRodney W. Grimes 		 * If we're already attached to requested interface,
1102df8bae1dSRodney W. Grimes 		 * just flush the buffer.
1103df8bae1dSRodney W. Grimes 		 */
1104572bde2aSRobert Watson 		if (d->bd_sbuf == NULL) {
1105df8bae1dSRodney W. Grimes 			error = bpf_allocbufs(d);
1106df8bae1dSRodney W. Grimes 			if (error != 0)
1107df8bae1dSRodney W. Grimes 				return (error);
1108df8bae1dSRodney W. Grimes 		}
1109df8bae1dSRodney W. Grimes 		if (bp != d->bd_bif) {
1110df8bae1dSRodney W. Grimes 			if (d->bd_bif)
1111df8bae1dSRodney W. Grimes 				/*
1112df8bae1dSRodney W. Grimes 				 * Detach if attached to something else.
1113df8bae1dSRodney W. Grimes 				 */
1114df8bae1dSRodney W. Grimes 				bpf_detachd(d);
1115df8bae1dSRodney W. Grimes 
1116df8bae1dSRodney W. Grimes 			bpf_attachd(d, bp);
1117df8bae1dSRodney W. Grimes 		}
1118e7bb21b3SJonathan Lemon 		BPFD_LOCK(d);
1119df8bae1dSRodney W. Grimes 		reset_d(d);
1120e7bb21b3SJonathan Lemon 		BPFD_UNLOCK(d);
1121df8bae1dSRodney W. Grimes 		return (0);
1122df8bae1dSRodney W. Grimes 	}
1123e7bb21b3SJonathan Lemon 	mtx_unlock(&bpf_mtx);
1124df8bae1dSRodney W. Grimes 	/* Not found. */
1125df8bae1dSRodney W. Grimes 	return (ENXIO);
1126df8bae1dSRodney W. Grimes }
1127df8bae1dSRodney W. Grimes 
1128df8bae1dSRodney W. Grimes /*
1129243ac7d8SPeter Wemm  * Support for select() and poll() system calls
1130df8bae1dSRodney W. Grimes  *
1131df8bae1dSRodney W. Grimes  * Return true iff the specific operation will not block indefinitely.
1132df8bae1dSRodney W. Grimes  * Otherwise, return false but make a note that a selwakeup() must be done.
1133df8bae1dSRodney W. Grimes  */
113437c84183SPoul-Henning Kamp static int
1135b40ce416SJulian Elischer bpfpoll(dev, events, td)
113689c9c53dSPoul-Henning Kamp 	struct cdev *dev;
1137243ac7d8SPeter Wemm 	int events;
1138b40ce416SJulian Elischer 	struct thread *td;
1139df8bae1dSRodney W. Grimes {
1140e7bb21b3SJonathan Lemon 	struct bpf_d *d;
11410832fc64SGarance A Drosehn 	int revents;
1142df8bae1dSRodney W. Grimes 
1143bd3a5320SPoul-Henning Kamp 	d = dev->si_drv1;
1144de5d9935SRobert Watson 	if (d->bd_bif == NULL)
1145de5d9935SRobert Watson 		return (ENXIO);
1146de5d9935SRobert Watson 
1147b75a24a0SChristian S.J. Peron 	/*
1148b75a24a0SChristian S.J. Peron 	 * Refresh PID associated with this descriptor.
1149b75a24a0SChristian S.J. Peron 	 */
1150b75a24a0SChristian S.J. Peron 	d->bd_pid = td->td_proc->p_pid;
11510832fc64SGarance A Drosehn 	revents = events & (POLLOUT | POLLWRNORM);
1152e7bb21b3SJonathan Lemon 	BPFD_LOCK(d);
115375c13541SPoul-Henning Kamp 	if (events & (POLLIN | POLLRDNORM)) {
115495aab9ccSJohn-Mark Gurney 		if (bpf_ready(d))
1155243ac7d8SPeter Wemm 			revents |= events & (POLLIN | POLLRDNORM);
115681bda851SJohn Polstra 		else {
1157ed01445dSJohn Baldwin 			selrecord(td, &d->bd_sel);
115881bda851SJohn Polstra 			/* Start the read timeout if necessary. */
115981bda851SJohn Polstra 			if (d->bd_rtout > 0 && d->bd_state == BPF_IDLE) {
116081bda851SJohn Polstra 				callout_reset(&d->bd_callout, d->bd_rtout,
116181bda851SJohn Polstra 				    bpf_timed_out, d);
116281bda851SJohn Polstra 				d->bd_state = BPF_WAITING;
116381bda851SJohn Polstra 			}
116481bda851SJohn Polstra 		}
116575c13541SPoul-Henning Kamp 	}
1166e7bb21b3SJonathan Lemon 	BPFD_UNLOCK(d);
1167243ac7d8SPeter Wemm 	return (revents);
1168df8bae1dSRodney W. Grimes }
1169df8bae1dSRodney W. Grimes 
1170df8bae1dSRodney W. Grimes /*
117195aab9ccSJohn-Mark Gurney  * Support for kevent() system call.  Register EVFILT_READ filters and
117295aab9ccSJohn-Mark Gurney  * reject all others.
117395aab9ccSJohn-Mark Gurney  */
117495aab9ccSJohn-Mark Gurney int
117595aab9ccSJohn-Mark Gurney bpfkqfilter(dev, kn)
117689c9c53dSPoul-Henning Kamp 	struct cdev *dev;
117795aab9ccSJohn-Mark Gurney 	struct knote *kn;
117895aab9ccSJohn-Mark Gurney {
117995aab9ccSJohn-Mark Gurney 	struct bpf_d *d = (struct bpf_d *)dev->si_drv1;
118095aab9ccSJohn-Mark Gurney 
118195aab9ccSJohn-Mark Gurney 	if (kn->kn_filter != EVFILT_READ)
118295aab9ccSJohn-Mark Gurney 		return (1);
118395aab9ccSJohn-Mark Gurney 
1184b75a24a0SChristian S.J. Peron 	/*
1185b75a24a0SChristian S.J. Peron 	 * Refresh PID associated with this descriptor.
1186b75a24a0SChristian S.J. Peron 	 */
1187b75a24a0SChristian S.J. Peron 	d->bd_pid = curthread->td_proc->p_pid;
118895aab9ccSJohn-Mark Gurney 	kn->kn_fop = &bpfread_filtops;
118995aab9ccSJohn-Mark Gurney 	kn->kn_hook = d;
1190ad3b9257SJohn-Mark Gurney 	knlist_add(&d->bd_sel.si_note, kn, 0);
119195aab9ccSJohn-Mark Gurney 
119295aab9ccSJohn-Mark Gurney 	return (0);
119395aab9ccSJohn-Mark Gurney }
119495aab9ccSJohn-Mark Gurney 
119595aab9ccSJohn-Mark Gurney static void
119695aab9ccSJohn-Mark Gurney filt_bpfdetach(kn)
119795aab9ccSJohn-Mark Gurney 	struct knote *kn;
119895aab9ccSJohn-Mark Gurney {
119995aab9ccSJohn-Mark Gurney 	struct bpf_d *d = (struct bpf_d *)kn->kn_hook;
120095aab9ccSJohn-Mark Gurney 
1201ad3b9257SJohn-Mark Gurney 	knlist_remove(&d->bd_sel.si_note, kn, 0);
120295aab9ccSJohn-Mark Gurney }
120395aab9ccSJohn-Mark Gurney 
120495aab9ccSJohn-Mark Gurney static int
120595aab9ccSJohn-Mark Gurney filt_bpfread(kn, hint)
120695aab9ccSJohn-Mark Gurney 	struct knote *kn;
120795aab9ccSJohn-Mark Gurney 	long hint;
120895aab9ccSJohn-Mark Gurney {
120995aab9ccSJohn-Mark Gurney 	struct bpf_d *d = (struct bpf_d *)kn->kn_hook;
121095aab9ccSJohn-Mark Gurney 	int ready;
121195aab9ccSJohn-Mark Gurney 
121286c9a453SJohn-Mark Gurney 	BPFD_LOCK_ASSERT(d);
121395aab9ccSJohn-Mark Gurney 	ready = bpf_ready(d);
121495aab9ccSJohn-Mark Gurney 	if (ready) {
121595aab9ccSJohn-Mark Gurney 		kn->kn_data = d->bd_slen;
121695aab9ccSJohn-Mark Gurney 		if (d->bd_hbuf)
121795aab9ccSJohn-Mark Gurney 			kn->kn_data += d->bd_hlen;
121895aab9ccSJohn-Mark Gurney 	}
121995aab9ccSJohn-Mark Gurney 	else if (d->bd_rtout > 0 && d->bd_state == BPF_IDLE) {
122095aab9ccSJohn-Mark Gurney 		callout_reset(&d->bd_callout, d->bd_rtout,
122195aab9ccSJohn-Mark Gurney 		    bpf_timed_out, d);
122295aab9ccSJohn-Mark Gurney 		d->bd_state = BPF_WAITING;
122395aab9ccSJohn-Mark Gurney 	}
122495aab9ccSJohn-Mark Gurney 
122595aab9ccSJohn-Mark Gurney 	return (ready);
122695aab9ccSJohn-Mark Gurney }
122795aab9ccSJohn-Mark Gurney 
122895aab9ccSJohn-Mark Gurney /*
1229df8bae1dSRodney W. Grimes  * Incoming linkage from device drivers.  Process the packet pkt, of length
1230df8bae1dSRodney W. Grimes  * pktlen, which is stored in a contiguous buffer.  The packet is parsed
1231df8bae1dSRodney W. Grimes  * by each process' filter, and if accepted, stashed into the corresponding
1232df8bae1dSRodney W. Grimes  * buffer.
1233df8bae1dSRodney W. Grimes  */
1234df8bae1dSRodney W. Grimes void
123524a229f4SSam Leffler bpf_tap(bp, pkt, pktlen)
123624a229f4SSam Leffler 	struct bpf_if *bp;
12378994a245SDag-Erling Smørgrav 	u_char *pkt;
12388994a245SDag-Erling Smørgrav 	u_int pktlen;
1239df8bae1dSRodney W. Grimes {
12408994a245SDag-Erling Smørgrav 	struct bpf_d *d;
12418994a245SDag-Erling Smørgrav 	u_int slen;
1242e7bb21b3SJonathan Lemon 
124346691dd8SRobert Watson 	/*
124446691dd8SRobert Watson 	 * Lockless read to avoid cost of locking the interface if there are
124546691dd8SRobert Watson 	 * no descriptors attached.
124646691dd8SRobert Watson 	 */
12474a3feeaaSRobert Watson 	if (LIST_EMPTY(&bp->bif_dlist))
124846691dd8SRobert Watson 		return;
124946691dd8SRobert Watson 
1250e7bb21b3SJonathan Lemon 	BPFIF_LOCK(bp);
12514a3feeaaSRobert Watson 	LIST_FOREACH(d, &bp->bif_dlist, bd_next) {
1252e7bb21b3SJonathan Lemon 		BPFD_LOCK(d);
1253df8bae1dSRodney W. Grimes 		++d->bd_rcount;
125493e39f0bSChristian S.J. Peron 		slen = bpf_filter(d->bd_rfilter, pkt, pktlen, pktlen);
1255ec272d87SRobert Watson 		if (slen != 0) {
125669f7644bSChristian S.J. Peron 			d->bd_fcount++;
1257ec272d87SRobert Watson #ifdef MAC
125824a229f4SSam Leffler 			if (mac_check_bpfdesc_receive(d, bp->bif_ifp) == 0)
1259ec272d87SRobert Watson #endif
1260df8bae1dSRodney W. Grimes 				catchpacket(d, pkt, pktlen, slen, bcopy);
1261ec272d87SRobert Watson 		}
1262e7bb21b3SJonathan Lemon 		BPFD_UNLOCK(d);
1263df8bae1dSRodney W. Grimes 	}
1264e7bb21b3SJonathan Lemon 	BPFIF_UNLOCK(bp);
1265df8bae1dSRodney W. Grimes }
1266df8bae1dSRodney W. Grimes 
1267df8bae1dSRodney W. Grimes /*
1268df8bae1dSRodney W. Grimes  * Copy data from an mbuf chain into a buffer.  This code is derived
1269df8bae1dSRodney W. Grimes  * from m_copydata in sys/uipc_mbuf.c.
1270df8bae1dSRodney W. Grimes  */
1271df8bae1dSRodney W. Grimes static void
1272df8bae1dSRodney W. Grimes bpf_mcopy(src_arg, dst_arg, len)
1273df8bae1dSRodney W. Grimes 	const void *src_arg;
1274df8bae1dSRodney W. Grimes 	void *dst_arg;
12758994a245SDag-Erling Smørgrav 	size_t len;
1276df8bae1dSRodney W. Grimes {
12778994a245SDag-Erling Smørgrav 	const struct mbuf *m;
12788994a245SDag-Erling Smørgrav 	u_int count;
1279df8bae1dSRodney W. Grimes 	u_char *dst;
1280df8bae1dSRodney W. Grimes 
1281df8bae1dSRodney W. Grimes 	m = src_arg;
1282df8bae1dSRodney W. Grimes 	dst = dst_arg;
1283df8bae1dSRodney W. Grimes 	while (len > 0) {
1284572bde2aSRobert Watson 		if (m == NULL)
1285df8bae1dSRodney W. Grimes 			panic("bpf_mcopy");
1286df8bae1dSRodney W. Grimes 		count = min(m->m_len, len);
12870453d3cbSBruce Evans 		bcopy(mtod(m, void *), dst, count);
1288df8bae1dSRodney W. Grimes 		m = m->m_next;
1289df8bae1dSRodney W. Grimes 		dst += count;
1290df8bae1dSRodney W. Grimes 		len -= count;
1291df8bae1dSRodney W. Grimes 	}
1292df8bae1dSRodney W. Grimes }
1293df8bae1dSRodney W. Grimes 
1294df8bae1dSRodney W. Grimes /*
1295df8bae1dSRodney W. Grimes  * Incoming linkage from device drivers, when packet is in an mbuf chain.
1296df8bae1dSRodney W. Grimes  */
1297df8bae1dSRodney W. Grimes void
129824a229f4SSam Leffler bpf_mtap(bp, m)
129924a229f4SSam Leffler 	struct bpf_if *bp;
1300df8bae1dSRodney W. Grimes 	struct mbuf *m;
1301df8bae1dSRodney W. Grimes {
1302df8bae1dSRodney W. Grimes 	struct bpf_d *d;
1303df8bae1dSRodney W. Grimes 	u_int pktlen, slen;
1304df8bae1dSRodney W. Grimes 
130546691dd8SRobert Watson 	/*
130646691dd8SRobert Watson 	 * Lockless read to avoid cost of locking the interface if there are
130746691dd8SRobert Watson 	 * no descriptors attached.
130846691dd8SRobert Watson 	 */
13094a3feeaaSRobert Watson 	if (LIST_EMPTY(&bp->bif_dlist))
131046691dd8SRobert Watson 		return;
131146691dd8SRobert Watson 
1312f0e2422bSPoul-Henning Kamp 	pktlen = m_length(m, NULL);
13137b831242SPoul-Henning Kamp 	if (pktlen == m->m_len) {
131424a229f4SSam Leffler 		bpf_tap(bp, mtod(m, u_char *), pktlen);
13157b831242SPoul-Henning Kamp 		return;
13167b831242SPoul-Henning Kamp 	}
1317df8bae1dSRodney W. Grimes 
1318e7bb21b3SJonathan Lemon 	BPFIF_LOCK(bp);
13194a3feeaaSRobert Watson 	LIST_FOREACH(d, &bp->bif_dlist, bd_next) {
13208ed3828cSRobert Watson 		if (!d->bd_seesent && (m->m_pkthdr.rcvif == NULL))
13218ed3828cSRobert Watson 			continue;
1322e7bb21b3SJonathan Lemon 		BPFD_LOCK(d);
1323df8bae1dSRodney W. Grimes 		++d->bd_rcount;
132493e39f0bSChristian S.J. Peron 		slen = bpf_filter(d->bd_rfilter, (u_char *)m, pktlen, 0);
13254ddfb531SChristian S.J. Peron 		if (slen != 0) {
132669f7644bSChristian S.J. Peron 			d->bd_fcount++;
13270c7fb534SRobert Watson #ifdef MAC
132824a229f4SSam Leffler 			if (mac_check_bpfdesc_receive(d, bp->bif_ifp) == 0)
13290c7fb534SRobert Watson #endif
13300c7fb534SRobert Watson 				catchpacket(d, (u_char *)m, pktlen, slen,
13310c7fb534SRobert Watson 				    bpf_mcopy);
13324ddfb531SChristian S.J. Peron 		}
1333e7bb21b3SJonathan Lemon 		BPFD_UNLOCK(d);
1334df8bae1dSRodney W. Grimes 	}
1335e7bb21b3SJonathan Lemon 	BPFIF_UNLOCK(bp);
1336df8bae1dSRodney W. Grimes }
1337df8bae1dSRodney W. Grimes 
1338df8bae1dSRodney W. Grimes /*
1339437ffe18SSam Leffler  * Incoming linkage from device drivers, when packet is in
1340437ffe18SSam Leffler  * an mbuf chain and to be prepended by a contiguous header.
1341437ffe18SSam Leffler  */
1342437ffe18SSam Leffler void
1343437ffe18SSam Leffler bpf_mtap2(bp, data, dlen, m)
1344437ffe18SSam Leffler 	struct bpf_if *bp;
1345437ffe18SSam Leffler 	void *data;
1346437ffe18SSam Leffler 	u_int dlen;
1347437ffe18SSam Leffler 	struct mbuf *m;
1348437ffe18SSam Leffler {
1349437ffe18SSam Leffler 	struct mbuf mb;
1350437ffe18SSam Leffler 	struct bpf_d *d;
1351437ffe18SSam Leffler 	u_int pktlen, slen;
1352437ffe18SSam Leffler 
135346691dd8SRobert Watson 	/*
135446691dd8SRobert Watson 	 * Lockless read to avoid cost of locking the interface if there are
135546691dd8SRobert Watson 	 * no descriptors attached.
135646691dd8SRobert Watson 	 */
13574a3feeaaSRobert Watson 	if (LIST_EMPTY(&bp->bif_dlist))
135846691dd8SRobert Watson 		return;
135946691dd8SRobert Watson 
1360437ffe18SSam Leffler 	pktlen = m_length(m, NULL);
1361437ffe18SSam Leffler 	/*
1362437ffe18SSam Leffler 	 * Craft on-stack mbuf suitable for passing to bpf_filter.
1363437ffe18SSam Leffler 	 * Note that we cut corners here; we only setup what's
1364437ffe18SSam Leffler 	 * absolutely needed--this mbuf should never go anywhere else.
1365437ffe18SSam Leffler 	 */
1366437ffe18SSam Leffler 	mb.m_next = m;
1367437ffe18SSam Leffler 	mb.m_data = data;
1368437ffe18SSam Leffler 	mb.m_len = dlen;
1369437ffe18SSam Leffler 	pktlen += dlen;
1370437ffe18SSam Leffler 
1371437ffe18SSam Leffler 	BPFIF_LOCK(bp);
13724a3feeaaSRobert Watson 	LIST_FOREACH(d, &bp->bif_dlist, bd_next) {
1373437ffe18SSam Leffler 		if (!d->bd_seesent && (m->m_pkthdr.rcvif == NULL))
1374437ffe18SSam Leffler 			continue;
1375437ffe18SSam Leffler 		BPFD_LOCK(d);
1376437ffe18SSam Leffler 		++d->bd_rcount;
137793e39f0bSChristian S.J. Peron 		slen = bpf_filter(d->bd_rfilter, (u_char *)&mb, pktlen, 0);
13784ddfb531SChristian S.J. Peron 		if (slen != 0) {
137969f7644bSChristian S.J. Peron 			d->bd_fcount++;
1380437ffe18SSam Leffler #ifdef MAC
1381437ffe18SSam Leffler 			if (mac_check_bpfdesc_receive(d, bp->bif_ifp) == 0)
1382437ffe18SSam Leffler #endif
1383437ffe18SSam Leffler 				catchpacket(d, (u_char *)&mb, pktlen, slen,
1384437ffe18SSam Leffler 				    bpf_mcopy);
13854ddfb531SChristian S.J. Peron 		}
1386437ffe18SSam Leffler 		BPFD_UNLOCK(d);
1387437ffe18SSam Leffler 	}
1388437ffe18SSam Leffler 	BPFIF_UNLOCK(bp);
1389437ffe18SSam Leffler }
1390437ffe18SSam Leffler 
1391437ffe18SSam Leffler /*
1392df8bae1dSRodney W. Grimes  * Move the packet data from interface memory (pkt) into the
13939e610888SDag-Erling Smørgrav  * store buffer.  "cpfn" is the routine called to do the actual data
1394df8bae1dSRodney W. Grimes  * transfer.  bcopy is passed in to copy contiguous chunks, while
1395df8bae1dSRodney W. Grimes  * bpf_mcopy is passed in to copy mbuf chains.  In the latter case,
1396df8bae1dSRodney W. Grimes  * pkt is really an mbuf.
1397df8bae1dSRodney W. Grimes  */
1398df8bae1dSRodney W. Grimes static void
1399df8bae1dSRodney W. Grimes catchpacket(d, pkt, pktlen, snaplen, cpfn)
14008994a245SDag-Erling Smørgrav 	struct bpf_d *d;
14018994a245SDag-Erling Smørgrav 	u_char *pkt;
14028994a245SDag-Erling Smørgrav 	u_int pktlen, snaplen;
14038994a245SDag-Erling Smørgrav 	void (*cpfn)(const void *, void *, size_t);
1404df8bae1dSRodney W. Grimes {
14058994a245SDag-Erling Smørgrav 	struct bpf_hdr *hp;
14068994a245SDag-Erling Smørgrav 	int totlen, curlen;
14078994a245SDag-Erling Smørgrav 	int hdrlen = d->bd_bif->bif_hdrlen;
14087819da79SJohn-Mark Gurney 	int do_wakeup = 0;
14099e610888SDag-Erling Smørgrav 
1410a3272e3cSChristian S.J. Peron 	BPFD_LOCK_ASSERT(d);
1411df8bae1dSRodney W. Grimes 	/*
1412df8bae1dSRodney W. Grimes 	 * Figure out how many bytes to move.  If the packet is
1413df8bae1dSRodney W. Grimes 	 * greater or equal to the snapshot length, transfer that
1414df8bae1dSRodney W. Grimes 	 * much.  Otherwise, transfer the whole packet (unless
1415df8bae1dSRodney W. Grimes 	 * we hit the buffer size limit).
1416df8bae1dSRodney W. Grimes 	 */
1417df8bae1dSRodney W. Grimes 	totlen = hdrlen + min(snaplen, pktlen);
1418df8bae1dSRodney W. Grimes 	if (totlen > d->bd_bufsize)
1419df8bae1dSRodney W. Grimes 		totlen = d->bd_bufsize;
1420df8bae1dSRodney W. Grimes 
1421df8bae1dSRodney W. Grimes 	/*
1422df8bae1dSRodney W. Grimes 	 * Round up the end of the previous packet to the next longword.
1423df8bae1dSRodney W. Grimes 	 */
1424df8bae1dSRodney W. Grimes 	curlen = BPF_WORDALIGN(d->bd_slen);
1425df8bae1dSRodney W. Grimes 	if (curlen + totlen > d->bd_bufsize) {
1426df8bae1dSRodney W. Grimes 		/*
1427df8bae1dSRodney W. Grimes 		 * This packet will overflow the storage buffer.
1428df8bae1dSRodney W. Grimes 		 * Rotate the buffers if we can, then wakeup any
1429df8bae1dSRodney W. Grimes 		 * pending reads.
1430df8bae1dSRodney W. Grimes 		 */
1431572bde2aSRobert Watson 		if (d->bd_fbuf == NULL) {
1432df8bae1dSRodney W. Grimes 			/*
1433df8bae1dSRodney W. Grimes 			 * We haven't completed the previous read yet,
1434df8bae1dSRodney W. Grimes 			 * so drop the packet.
1435df8bae1dSRodney W. Grimes 			 */
1436df8bae1dSRodney W. Grimes 			++d->bd_dcount;
1437df8bae1dSRodney W. Grimes 			return;
1438df8bae1dSRodney W. Grimes 		}
1439df8bae1dSRodney W. Grimes 		ROTATE_BUFFERS(d);
14407819da79SJohn-Mark Gurney 		do_wakeup = 1;
1441df8bae1dSRodney W. Grimes 		curlen = 0;
1442df8bae1dSRodney W. Grimes 	}
144381bda851SJohn Polstra 	else if (d->bd_immediate || d->bd_state == BPF_TIMED_OUT)
1444df8bae1dSRodney W. Grimes 		/*
144581bda851SJohn Polstra 		 * Immediate mode is set, or the read timeout has
144681bda851SJohn Polstra 		 * already expired during a select call.  A packet
144781bda851SJohn Polstra 		 * arrived, so the reader should be woken up.
1448df8bae1dSRodney W. Grimes 		 */
14497819da79SJohn-Mark Gurney 		do_wakeup = 1;
1450df8bae1dSRodney W. Grimes 
1451df8bae1dSRodney W. Grimes 	/*
1452df8bae1dSRodney W. Grimes 	 * Append the bpf header.
1453df8bae1dSRodney W. Grimes 	 */
1454df8bae1dSRodney W. Grimes 	hp = (struct bpf_hdr *)(d->bd_sbuf + curlen);
1455df8bae1dSRodney W. Grimes 	microtime(&hp->bh_tstamp);
1456df8bae1dSRodney W. Grimes 	hp->bh_datalen = pktlen;
1457df8bae1dSRodney W. Grimes 	hp->bh_hdrlen = hdrlen;
1458df8bae1dSRodney W. Grimes 	/*
1459df8bae1dSRodney W. Grimes 	 * Copy the packet data into the store buffer and update its length.
1460df8bae1dSRodney W. Grimes 	 */
1461df8bae1dSRodney W. Grimes 	(*cpfn)(pkt, (u_char *)hp + hdrlen, (hp->bh_caplen = totlen - hdrlen));
1462df8bae1dSRodney W. Grimes 	d->bd_slen = curlen + totlen;
14637819da79SJohn-Mark Gurney 
14647819da79SJohn-Mark Gurney 	if (do_wakeup)
14657819da79SJohn-Mark Gurney 		bpf_wakeup(d);
1466df8bae1dSRodney W. Grimes }
1467df8bae1dSRodney W. Grimes 
1468df8bae1dSRodney W. Grimes /*
1469df8bae1dSRodney W. Grimes  * Initialize all nonzero fields of a descriptor.
1470df8bae1dSRodney W. Grimes  */
1471df8bae1dSRodney W. Grimes static int
1472df8bae1dSRodney W. Grimes bpf_allocbufs(d)
14738994a245SDag-Erling Smørgrav 	struct bpf_d *d;
1474df8bae1dSRodney W. Grimes {
1475a163d034SWarner Losh 	d->bd_fbuf = (caddr_t)malloc(d->bd_bufsize, M_BPF, M_WAITOK);
1476572bde2aSRobert Watson 	if (d->bd_fbuf == NULL)
1477df8bae1dSRodney W. Grimes 		return (ENOBUFS);
1478df8bae1dSRodney W. Grimes 
1479a163d034SWarner Losh 	d->bd_sbuf = (caddr_t)malloc(d->bd_bufsize, M_BPF, M_WAITOK);
1480572bde2aSRobert Watson 	if (d->bd_sbuf == NULL) {
1481bd3a5320SPoul-Henning Kamp 		free(d->bd_fbuf, M_BPF);
1482df8bae1dSRodney W. Grimes 		return (ENOBUFS);
1483df8bae1dSRodney W. Grimes 	}
1484df8bae1dSRodney W. Grimes 	d->bd_slen = 0;
1485df8bae1dSRodney W. Grimes 	d->bd_hlen = 0;
1486df8bae1dSRodney W. Grimes 	return (0);
1487df8bae1dSRodney W. Grimes }
1488df8bae1dSRodney W. Grimes 
1489df8bae1dSRodney W. Grimes /*
1490df8bae1dSRodney W. Grimes  * Free buffers currently in use by a descriptor.
1491df8bae1dSRodney W. Grimes  * Called on close.
1492df8bae1dSRodney W. Grimes  */
1493df8bae1dSRodney W. Grimes static void
1494df8bae1dSRodney W. Grimes bpf_freed(d)
14958994a245SDag-Erling Smørgrav 	struct bpf_d *d;
1496df8bae1dSRodney W. Grimes {
1497df8bae1dSRodney W. Grimes 	/*
1498df8bae1dSRodney W. Grimes 	 * We don't need to lock out interrupts since this descriptor has
1499df8bae1dSRodney W. Grimes 	 * been detached from its interface and it yet hasn't been marked
1500df8bae1dSRodney W. Grimes 	 * free.
1501df8bae1dSRodney W. Grimes 	 */
1502572bde2aSRobert Watson 	if (d->bd_sbuf != NULL) {
1503bd3a5320SPoul-Henning Kamp 		free(d->bd_sbuf, M_BPF);
1504572bde2aSRobert Watson 		if (d->bd_hbuf != NULL)
1505bd3a5320SPoul-Henning Kamp 			free(d->bd_hbuf, M_BPF);
1506572bde2aSRobert Watson 		if (d->bd_fbuf != NULL)
1507bd3a5320SPoul-Henning Kamp 			free(d->bd_fbuf, M_BPF);
1508df8bae1dSRodney W. Grimes 	}
150993e39f0bSChristian S.J. Peron 	if (d->bd_rfilter)
151093e39f0bSChristian S.J. Peron 		free((caddr_t)d->bd_rfilter, M_BPF);
151193e39f0bSChristian S.J. Peron 	if (d->bd_wfilter)
151293e39f0bSChristian S.J. Peron 		free((caddr_t)d->bd_wfilter, M_BPF);
1513e7bb21b3SJonathan Lemon 	mtx_destroy(&d->bd_mtx);
1514df8bae1dSRodney W. Grimes }
1515df8bae1dSRodney W. Grimes 
1516df8bae1dSRodney W. Grimes /*
151724a229f4SSam Leffler  * Attach an interface to bpf.  dlt is the link layer type; hdrlen is the
151824a229f4SSam Leffler  * fixed size of the link header (variable length headers not yet supported).
1519df8bae1dSRodney W. Grimes  */
1520df8bae1dSRodney W. Grimes void
15219b44ff22SGarrett Wollman bpfattach(ifp, dlt, hdrlen)
1522df8bae1dSRodney W. Grimes 	struct ifnet *ifp;
1523df8bae1dSRodney W. Grimes 	u_int dlt, hdrlen;
1524df8bae1dSRodney W. Grimes {
152524a229f4SSam Leffler 
152624a229f4SSam Leffler 	bpfattach2(ifp, dlt, hdrlen, &ifp->if_bpf);
152724a229f4SSam Leffler }
152824a229f4SSam Leffler 
152924a229f4SSam Leffler /*
153024a229f4SSam Leffler  * Attach an interface to bpf.  ifp is a pointer to the structure
153124a229f4SSam Leffler  * defining the interface to be attached, dlt is the link layer type,
153224a229f4SSam Leffler  * and hdrlen is the fixed size of the link header (variable length
153324a229f4SSam Leffler  * headers are not yet supporrted).
153424a229f4SSam Leffler  */
153524a229f4SSam Leffler void
153624a229f4SSam Leffler bpfattach2(ifp, dlt, hdrlen, driverp)
153724a229f4SSam Leffler 	struct ifnet *ifp;
153824a229f4SSam Leffler 	u_int dlt, hdrlen;
153924a229f4SSam Leffler 	struct bpf_if **driverp;
154024a229f4SSam Leffler {
1541df8bae1dSRodney W. Grimes 	struct bpf_if *bp;
15426a40ecceSJohn Baldwin 	bp = (struct bpf_if *)malloc(sizeof(*bp), M_BPF, M_NOWAIT | M_ZERO);
1543572bde2aSRobert Watson 	if (bp == NULL)
1544df8bae1dSRodney W. Grimes 		panic("bpfattach");
1545df8bae1dSRodney W. Grimes 
15464a3feeaaSRobert Watson 	LIST_INIT(&bp->bif_dlist);
154724a229f4SSam Leffler 	bp->bif_driverp = driverp;
1548df8bae1dSRodney W. Grimes 	bp->bif_ifp = ifp;
1549df8bae1dSRodney W. Grimes 	bp->bif_dlt = dlt;
15506008862bSJohn Baldwin 	mtx_init(&bp->bif_mtx, "bpf interface lock", NULL, MTX_DEF);
1551df8bae1dSRodney W. Grimes 
1552e7bb21b3SJonathan Lemon 	mtx_lock(&bpf_mtx);
15534a3feeaaSRobert Watson 	LIST_INSERT_HEAD(&bpf_iflist, bp, bif_next);
1554e7bb21b3SJonathan Lemon 	mtx_unlock(&bpf_mtx);
1555df8bae1dSRodney W. Grimes 
1556572bde2aSRobert Watson 	*bp->bif_driverp = NULL;
1557df8bae1dSRodney W. Grimes 
1558df8bae1dSRodney W. Grimes 	/*
1559df8bae1dSRodney W. Grimes 	 * Compute the length of the bpf header.  This is not necessarily
1560df8bae1dSRodney W. Grimes 	 * equal to SIZEOF_BPF_HDR because we want to insert spacing such
1561df8bae1dSRodney W. Grimes 	 * that the network layer header begins on a longword boundary (for
1562df8bae1dSRodney W. Grimes 	 * performance reasons and to alleviate alignment restrictions).
1563df8bae1dSRodney W. Grimes 	 */
1564df8bae1dSRodney W. Grimes 	bp->bif_hdrlen = BPF_WORDALIGN(hdrlen + SIZEOF_BPF_HDR) - hdrlen;
1565df8bae1dSRodney W. Grimes 
15662eeab939SGarrett Wollman 	if (bootverbose)
156724a229f4SSam Leffler 		if_printf(ifp, "bpf attached\n");
1568df8bae1dSRodney W. Grimes }
156953ac6efbSJulian Elischer 
1570de5d9935SRobert Watson /*
1571de5d9935SRobert Watson  * Detach bpf from an interface.  This involves detaching each descriptor
1572de5d9935SRobert Watson  * associated with the interface, and leaving bd_bif NULL.  Notify each
1573de5d9935SRobert Watson  * descriptor as it's detached so that any sleepers wake up and get
1574de5d9935SRobert Watson  * ENXIO.
1575de5d9935SRobert Watson  */
1576de5d9935SRobert Watson void
1577de5d9935SRobert Watson bpfdetach(ifp)
1578de5d9935SRobert Watson 	struct ifnet *ifp;
1579de5d9935SRobert Watson {
15804a3feeaaSRobert Watson 	struct bpf_if	*bp;
1581de5d9935SRobert Watson 	struct bpf_d	*d;
1582de5d9935SRobert Watson 
1583de5d9935SRobert Watson 	/* Locate BPF interface information */
15848eab61f3SSam Leffler 	mtx_lock(&bpf_mtx);
15854a3feeaaSRobert Watson 	LIST_FOREACH(bp, &bpf_iflist, bif_next) {
1586de5d9935SRobert Watson 		if (ifp == bp->bif_ifp)
1587de5d9935SRobert Watson 			break;
1588de5d9935SRobert Watson 	}
1589de5d9935SRobert Watson 
1590de5d9935SRobert Watson 	/* Interface wasn't attached */
1591d79bf337SMatthew N. Dodd 	if ((bp == NULL) || (bp->bif_ifp == NULL)) {
1592e7bb21b3SJonathan Lemon 		mtx_unlock(&bpf_mtx);
15939bf40edeSBrooks Davis 		printf("bpfdetach: %s was not attached\n", ifp->if_xname);
1594de5d9935SRobert Watson 		return;
1595de5d9935SRobert Watson 	}
1596de5d9935SRobert Watson 
15974a3feeaaSRobert Watson 	LIST_REMOVE(bp, bif_next);
15988eab61f3SSam Leffler 	mtx_unlock(&bpf_mtx);
1599de5d9935SRobert Watson 
16004a3feeaaSRobert Watson 	while ((d = LIST_FIRST(&bp->bif_dlist)) != NULL) {
1601e7bb21b3SJonathan Lemon 		bpf_detachd(d);
1602e7bb21b3SJonathan Lemon 		BPFD_LOCK(d);
1603e7bb21b3SJonathan Lemon 		bpf_wakeup(d);
1604e7bb21b3SJonathan Lemon 		BPFD_UNLOCK(d);
1605e7bb21b3SJonathan Lemon 	}
1606e7bb21b3SJonathan Lemon 
1607e7bb21b3SJonathan Lemon 	mtx_destroy(&bp->bif_mtx);
1608de5d9935SRobert Watson 	free(bp, M_BPF);
16098eab61f3SSam Leffler }
1610de5d9935SRobert Watson 
16118eab61f3SSam Leffler /*
16128eab61f3SSam Leffler  * Get a list of available data link type of the interface.
16138eab61f3SSam Leffler  */
16148eab61f3SSam Leffler static int
16158eab61f3SSam Leffler bpf_getdltlist(d, bfl)
16168eab61f3SSam Leffler 	struct bpf_d *d;
16178eab61f3SSam Leffler 	struct bpf_dltlist *bfl;
16188eab61f3SSam Leffler {
16198eab61f3SSam Leffler 	int n, error;
16208eab61f3SSam Leffler 	struct ifnet *ifp;
16218eab61f3SSam Leffler 	struct bpf_if *bp;
16228eab61f3SSam Leffler 
16238eab61f3SSam Leffler 	ifp = d->bd_bif->bif_ifp;
16248eab61f3SSam Leffler 	n = 0;
16258eab61f3SSam Leffler 	error = 0;
16268eab61f3SSam Leffler 	mtx_lock(&bpf_mtx);
16274a3feeaaSRobert Watson 	LIST_FOREACH(bp, &bpf_iflist, bif_next) {
16288eab61f3SSam Leffler 		if (bp->bif_ifp != ifp)
16298eab61f3SSam Leffler 			continue;
16308eab61f3SSam Leffler 		if (bfl->bfl_list != NULL) {
16318eab61f3SSam Leffler 			if (n >= bfl->bfl_len) {
1632e7bb21b3SJonathan Lemon 				mtx_unlock(&bpf_mtx);
16338eab61f3SSam Leffler 				return (ENOMEM);
16348eab61f3SSam Leffler 			}
16358eab61f3SSam Leffler 			error = copyout(&bp->bif_dlt,
16368eab61f3SSam Leffler 			    bfl->bfl_list + n, sizeof(u_int));
16378eab61f3SSam Leffler 		}
16388eab61f3SSam Leffler 		n++;
16398eab61f3SSam Leffler 	}
16408eab61f3SSam Leffler 	mtx_unlock(&bpf_mtx);
16418eab61f3SSam Leffler 	bfl->bfl_len = n;
16428eab61f3SSam Leffler 	return (error);
16438eab61f3SSam Leffler }
16448eab61f3SSam Leffler 
16458eab61f3SSam Leffler /*
16468eab61f3SSam Leffler  * Set the data link type of a BPF instance.
16478eab61f3SSam Leffler  */
16488eab61f3SSam Leffler static int
16498eab61f3SSam Leffler bpf_setdlt(d, dlt)
16508eab61f3SSam Leffler 	struct bpf_d *d;
16518eab61f3SSam Leffler 	u_int dlt;
16528eab61f3SSam Leffler {
16538eab61f3SSam Leffler 	int error, opromisc;
16548eab61f3SSam Leffler 	struct ifnet *ifp;
16558eab61f3SSam Leffler 	struct bpf_if *bp;
16568eab61f3SSam Leffler 
16578eab61f3SSam Leffler 	if (d->bd_bif->bif_dlt == dlt)
16588eab61f3SSam Leffler 		return (0);
16598eab61f3SSam Leffler 	ifp = d->bd_bif->bif_ifp;
16608eab61f3SSam Leffler 	mtx_lock(&bpf_mtx);
16614a3feeaaSRobert Watson 	LIST_FOREACH(bp, &bpf_iflist, bif_next) {
16628eab61f3SSam Leffler 		if (bp->bif_ifp == ifp && bp->bif_dlt == dlt)
16638eab61f3SSam Leffler 			break;
16648eab61f3SSam Leffler 	}
16658eab61f3SSam Leffler 	mtx_unlock(&bpf_mtx);
16668eab61f3SSam Leffler 	if (bp != NULL) {
16678eab61f3SSam Leffler 		opromisc = d->bd_promisc;
16688eab61f3SSam Leffler 		bpf_detachd(d);
16698eab61f3SSam Leffler 		bpf_attachd(d, bp);
167093daabddSBrian Feldman 		BPFD_LOCK(d);
16718eab61f3SSam Leffler 		reset_d(d);
16728eab61f3SSam Leffler 		BPFD_UNLOCK(d);
16738eab61f3SSam Leffler 		if (opromisc) {
16748eab61f3SSam Leffler 			error = ifpromisc(bp->bif_ifp, 1);
16758eab61f3SSam Leffler 			if (error)
16768eab61f3SSam Leffler 				if_printf(bp->bif_ifp,
16778eab61f3SSam Leffler 					"bpf_setdlt: ifpromisc failed (%d)\n",
16788eab61f3SSam Leffler 					error);
16798eab61f3SSam Leffler 			else
16808eab61f3SSam Leffler 				d->bd_promisc = 1;
16818eab61f3SSam Leffler 		}
16828eab61f3SSam Leffler 	}
16838eab61f3SSam Leffler 	return (bp == NULL ? EINVAL : 0);
1684de5d9935SRobert Watson }
1685de5d9935SRobert Watson 
16863f54a085SPoul-Henning Kamp static void
16876a113b3dSRobert Watson bpf_clone(arg, cred, name, namelen, dev)
16883f54a085SPoul-Henning Kamp 	void *arg;
16896a113b3dSRobert Watson 	struct ucred *cred;
16903f54a085SPoul-Henning Kamp 	char *name;
16913f54a085SPoul-Henning Kamp 	int namelen;
169289c9c53dSPoul-Henning Kamp 	struct cdev **dev;
16933f54a085SPoul-Henning Kamp {
16943f54a085SPoul-Henning Kamp 	int u;
16953f54a085SPoul-Henning Kamp 
1696f3732fd1SPoul-Henning Kamp 	if (*dev != NULL)
16973f54a085SPoul-Henning Kamp 		return;
1698db901281SPoul-Henning Kamp 	if (dev_stdclone(name, NULL, "bpf", &u) != 1)
16993f54a085SPoul-Henning Kamp 		return;
1700b0d17ba6SPoul-Henning Kamp 	*dev = make_dev(&bpf_cdevsw, unit2minor(u), UID_ROOT, GID_WHEEL, 0600,
1701b0d17ba6SPoul-Henning Kamp 	    "bpf%d", u);
1702f4f6abcbSPoul-Henning Kamp 	dev_ref(*dev);
1703b0d17ba6SPoul-Henning Kamp 	(*dev)->si_flags |= SI_CHEAPCLONE;
17043f54a085SPoul-Henning Kamp 	return;
17053f54a085SPoul-Henning Kamp }
17063f54a085SPoul-Henning Kamp 
1707514ede09SBruce Evans static void
1708514ede09SBruce Evans bpf_drvinit(unused)
1709514ede09SBruce Evans 	void *unused;
171053ac6efbSJulian Elischer {
171153ac6efbSJulian Elischer 
17126008862bSJohn Baldwin 	mtx_init(&bpf_mtx, "bpf global lock", NULL, MTX_DEF);
17134a3feeaaSRobert Watson 	LIST_INIT(&bpf_iflist);
1714db901281SPoul-Henning Kamp 	EVENTHANDLER_REGISTER(dev_clone, bpf_clone, 0, 1000);
17157198bf47SJulian Elischer }
171653ac6efbSJulian Elischer 
171769f7644bSChristian S.J. Peron static void
171869f7644bSChristian S.J. Peron bpfstats_fill_xbpf(struct xbpf_d *d, struct bpf_d *bd)
171969f7644bSChristian S.J. Peron {
172069f7644bSChristian S.J. Peron 
172169f7644bSChristian S.J. Peron 	bzero(d, sizeof(*d));
172269f7644bSChristian S.J. Peron 	BPFD_LOCK_ASSERT(bd);
172369f7644bSChristian S.J. Peron 	d->bd_immediate = bd->bd_immediate;
172469f7644bSChristian S.J. Peron 	d->bd_promisc = bd->bd_promisc;
172569f7644bSChristian S.J. Peron 	d->bd_hdrcmplt = bd->bd_hdrcmplt;
172669f7644bSChristian S.J. Peron 	d->bd_seesent = bd->bd_seesent;
172769f7644bSChristian S.J. Peron 	d->bd_async = bd->bd_async;
172869f7644bSChristian S.J. Peron 	d->bd_rcount = bd->bd_rcount;
172969f7644bSChristian S.J. Peron 	d->bd_dcount = bd->bd_dcount;
173069f7644bSChristian S.J. Peron 	d->bd_fcount = bd->bd_fcount;
173169f7644bSChristian S.J. Peron 	d->bd_sig = bd->bd_sig;
173269f7644bSChristian S.J. Peron 	d->bd_slen = bd->bd_slen;
173369f7644bSChristian S.J. Peron 	d->bd_hlen = bd->bd_hlen;
173469f7644bSChristian S.J. Peron 	d->bd_bufsize = bd->bd_bufsize;
173569f7644bSChristian S.J. Peron 	d->bd_pid = bd->bd_pid;
173669f7644bSChristian S.J. Peron 	strlcpy(d->bd_ifname,
173769f7644bSChristian S.J. Peron 	    bd->bd_bif->bif_ifp->if_xname, IFNAMSIZ);
173893e39f0bSChristian S.J. Peron 	d->bd_locked = bd->bd_locked;
173969f7644bSChristian S.J. Peron }
174069f7644bSChristian S.J. Peron 
174169f7644bSChristian S.J. Peron static int
174269f7644bSChristian S.J. Peron bpf_stats_sysctl(SYSCTL_HANDLER_ARGS)
174369f7644bSChristian S.J. Peron {
1744422a63daSChristian S.J. Peron 	struct xbpf_d *xbdbuf, *xbd;
1745422a63daSChristian S.J. Peron 	int index, error;
174669f7644bSChristian S.J. Peron 	struct bpf_if *bp;
174769f7644bSChristian S.J. Peron 	struct bpf_d *bd;
174869f7644bSChristian S.J. Peron 
174969f7644bSChristian S.J. Peron 	/*
175069f7644bSChristian S.J. Peron 	 * XXX This is not technically correct. It is possible for non
175169f7644bSChristian S.J. Peron 	 * privileged users to open bpf devices. It would make sense
175269f7644bSChristian S.J. Peron 	 * if the users who opened the devices were able to retrieve
175369f7644bSChristian S.J. Peron 	 * the statistics for them, too.
175469f7644bSChristian S.J. Peron 	 */
175569f7644bSChristian S.J. Peron 	error = suser(req->td);
175669f7644bSChristian S.J. Peron 	if (error)
175769f7644bSChristian S.J. Peron 		return (error);
175869f7644bSChristian S.J. Peron 	if (req->oldptr == NULL)
1759422a63daSChristian S.J. Peron 		return (SYSCTL_OUT(req, 0, bpf_bpfd_cnt * sizeof(*xbd)));
176069f7644bSChristian S.J. Peron 	if (bpf_bpfd_cnt == 0)
176169f7644bSChristian S.J. Peron 		return (SYSCTL_OUT(req, 0, 0));
1762422a63daSChristian S.J. Peron 	xbdbuf = malloc(req->oldlen, M_BPF, M_WAITOK);
176369f7644bSChristian S.J. Peron 	mtx_lock(&bpf_mtx);
1764422a63daSChristian S.J. Peron 	if (req->oldlen < (bpf_bpfd_cnt * sizeof(*xbd))) {
1765422a63daSChristian S.J. Peron 		mtx_unlock(&bpf_mtx);
1766422a63daSChristian S.J. Peron 		free(xbdbuf, M_BPF);
1767422a63daSChristian S.J. Peron 		return (ENOMEM);
1768422a63daSChristian S.J. Peron 	}
1769422a63daSChristian S.J. Peron 	index = 0;
177069f7644bSChristian S.J. Peron 	LIST_FOREACH(bp, &bpf_iflist, bif_next) {
177169f7644bSChristian S.J. Peron 		LIST_FOREACH(bd, &bp->bif_dlist, bd_next) {
1772422a63daSChristian S.J. Peron 			xbd = &xbdbuf[index++];
177369f7644bSChristian S.J. Peron 			BPFD_LOCK(bd);
1774422a63daSChristian S.J. Peron 			bpfstats_fill_xbpf(xbd, bd);
177569f7644bSChristian S.J. Peron 			BPFD_UNLOCK(bd);
177669f7644bSChristian S.J. Peron 		}
177769f7644bSChristian S.J. Peron 	}
177869f7644bSChristian S.J. Peron 	mtx_unlock(&bpf_mtx);
1779422a63daSChristian S.J. Peron 	error = SYSCTL_OUT(req, xbdbuf, index * sizeof(*xbd));
1780422a63daSChristian S.J. Peron 	free(xbdbuf, M_BPF);
178169f7644bSChristian S.J. Peron 	return (error);
178269f7644bSChristian S.J. Peron }
178369f7644bSChristian S.J. Peron 
1784c9c7976fSPoul-Henning Kamp SYSINIT(bpfdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE,bpf_drvinit,NULL)
178553ac6efbSJulian Elischer 
17865bb5f2c9SPeter Wemm #else /* !DEV_BPF && !NETGRAPH_BPF */
1787f8dc4716SMike Smith /*
1788f8dc4716SMike Smith  * NOP stubs to allow bpf-using drivers to load and function.
1789f8dc4716SMike Smith  *
1790f8dc4716SMike Smith  * A 'better' implementation would allow the core bpf functionality
1791f8dc4716SMike Smith  * to be loaded at runtime.
1792f8dc4716SMike Smith  */
1793f8dc4716SMike Smith 
1794f8dc4716SMike Smith void
1795e5562beeSSam Leffler bpf_tap(bp, pkt, pktlen)
1796e5562beeSSam Leffler 	struct bpf_if *bp;
17978994a245SDag-Erling Smørgrav 	u_char *pkt;
17988994a245SDag-Erling Smørgrav 	u_int pktlen;
1799f8dc4716SMike Smith {
1800f8dc4716SMike Smith }
1801f8dc4716SMike Smith 
1802f8dc4716SMike Smith void
1803e5562beeSSam Leffler bpf_mtap(bp, m)
1804e5562beeSSam Leffler 	struct bpf_if *bp;
1805f8dc4716SMike Smith 	struct mbuf *m;
1806f8dc4716SMike Smith {
1807f8dc4716SMike Smith }
1808f8dc4716SMike Smith 
1809f8dc4716SMike Smith void
1810437ffe18SSam Leffler bpf_mtap2(bp, d, l, m)
1811437ffe18SSam Leffler 	struct bpf_if *bp;
1812c1dae2f0STim J. Robbins 	void *d;
1813437ffe18SSam Leffler 	u_int l;
1814437ffe18SSam Leffler 	struct mbuf *m;
1815437ffe18SSam Leffler {
1816437ffe18SSam Leffler }
1817437ffe18SSam Leffler 
1818437ffe18SSam Leffler void
1819f8dc4716SMike Smith bpfattach(ifp, dlt, hdrlen)
1820f8dc4716SMike Smith 	struct ifnet *ifp;
1821f8dc4716SMike Smith 	u_int dlt, hdrlen;
1822f8dc4716SMike Smith {
1823f8dc4716SMike Smith }
1824f8dc4716SMike Smith 
1825da626c17SBill Paul void
18265f7a7923SSam Leffler bpfattach2(ifp, dlt, hdrlen, driverp)
18275f7a7923SSam Leffler 	struct ifnet *ifp;
18285f7a7923SSam Leffler 	u_int dlt, hdrlen;
18295f7a7923SSam Leffler 	struct bpf_if **driverp;
18305f7a7923SSam Leffler {
18315f7a7923SSam Leffler }
18325f7a7923SSam Leffler 
18335f7a7923SSam Leffler void
1834da626c17SBill Paul bpfdetach(ifp)
1835da626c17SBill Paul 	struct ifnet *ifp;
1836da626c17SBill Paul {
1837da626c17SBill Paul }
1838da626c17SBill Paul 
1839f8dc4716SMike Smith u_int
1840f8dc4716SMike Smith bpf_filter(pc, p, wirelen, buflen)
18418994a245SDag-Erling Smørgrav 	const struct bpf_insn *pc;
18428994a245SDag-Erling Smørgrav 	u_char *p;
1843f8dc4716SMike Smith 	u_int wirelen;
18448994a245SDag-Erling Smørgrav 	u_int buflen;
1845f8dc4716SMike Smith {
1846f8dc4716SMike Smith 	return -1;	/* "no filter" behaviour */
1847f8dc4716SMike Smith }
1848f8dc4716SMike Smith 
18495bb5f2c9SPeter Wemm int
18505bb5f2c9SPeter Wemm bpf_validate(f, len)
18515bb5f2c9SPeter Wemm 	const struct bpf_insn *f;
18525bb5f2c9SPeter Wemm 	int len;
18535bb5f2c9SPeter Wemm {
18545bb5f2c9SPeter Wemm 	return 0;		/* false */
18555bb5f2c9SPeter Wemm }
18565bb5f2c9SPeter Wemm 
18575bb5f2c9SPeter Wemm #endif /* !DEV_BPF && !NETGRAPH_BPF */
1858