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