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