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