Home | History | Annotate | Line # | Download | only in dist
pcap-snoop.c revision 1.4.10.1
      1  1.4.10.1  pgoyette /*	$NetBSD: pcap-snoop.c,v 1.4.10.1 2018/09/06 06:51:45 pgoyette Exp $	*/
      2       1.2  christos 
      3       1.1  christos /*
      4       1.1  christos  * Copyright (c) 1993, 1994, 1995, 1996, 1997
      5       1.1  christos  *	The Regents of the University of California.  All rights reserved.
      6       1.1  christos  *
      7       1.1  christos  * Redistribution and use in source and binary forms, with or without
      8       1.1  christos  * modification, are permitted provided that: (1) source code distributions
      9       1.1  christos  * retain the above copyright notice and this paragraph in its entirety, (2)
     10       1.1  christos  * distributions including binary code include the above copyright notice and
     11       1.1  christos  * this paragraph in its entirety in the documentation or other materials
     12       1.1  christos  * provided with the distribution, and (3) all advertising materials mentioning
     13       1.1  christos  * features or use of this software display the following acknowledgement:
     14       1.1  christos  * ``This product includes software developed by the University of California,
     15       1.1  christos  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
     16       1.1  christos  * the University nor the names of its contributors may be used to endorse
     17       1.1  christos  * or promote products derived from this software without specific prior
     18       1.1  christos  * written permission.
     19       1.1  christos  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
     20       1.1  christos  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
     21       1.1  christos  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     22       1.1  christos  */
     23       1.2  christos 
     24       1.2  christos #include <sys/cdefs.h>
     25  1.4.10.1  pgoyette __RCSID("$NetBSD: pcap-snoop.c,v 1.4.10.1 2018/09/06 06:51:45 pgoyette Exp $");
     26       1.1  christos 
     27       1.1  christos #ifdef HAVE_CONFIG_H
     28  1.4.10.1  pgoyette #include <config.h>
     29       1.1  christos #endif
     30       1.1  christos 
     31       1.1  christos #include <sys/param.h>
     32       1.1  christos #include <sys/file.h>
     33       1.1  christos #include <sys/ioctl.h>
     34       1.1  christos #include <sys/socket.h>
     35       1.1  christos #include <sys/time.h>
     36       1.1  christos 
     37       1.1  christos #include <net/raw.h>
     38       1.1  christos #include <net/if.h>
     39       1.1  christos 
     40       1.1  christos #include <netinet/in.h>
     41       1.1  christos #include <netinet/in_systm.h>
     42       1.1  christos #include <netinet/ip.h>
     43       1.1  christos #include <netinet/if_ether.h>
     44       1.1  christos #include <netinet/ip_var.h>
     45       1.1  christos #include <netinet/udp.h>
     46       1.1  christos #include <netinet/udp_var.h>
     47       1.1  christos #include <netinet/tcp.h>
     48       1.1  christos #include <netinet/tcpip.h>
     49       1.1  christos 
     50       1.1  christos #include <errno.h>
     51       1.1  christos #include <stdio.h>
     52       1.1  christos #include <stdlib.h>
     53       1.1  christos #include <string.h>
     54       1.1  christos #include <unistd.h>
     55       1.1  christos 
     56       1.1  christos #include "pcap-int.h"
     57       1.1  christos 
     58       1.1  christos #ifdef HAVE_OS_PROTO_H
     59       1.1  christos #include "os-proto.h"
     60       1.1  christos #endif
     61       1.1  christos 
     62       1.2  christos /*
     63       1.2  christos  * Private data for capturing on snoop devices.
     64       1.2  christos  */
     65       1.2  christos struct pcap_snoop {
     66       1.2  christos 	struct pcap_stat stat;
     67       1.2  christos };
     68       1.2  christos 
     69       1.1  christos static int
     70       1.1  christos pcap_read_snoop(pcap_t *p, int cnt, pcap_handler callback, u_char *user)
     71       1.1  christos {
     72       1.2  christos 	struct pcap_snoop *psn = p->priv;
     73       1.1  christos 	int cc;
     74       1.1  christos 	register struct snoopheader *sh;
     75       1.1  christos 	register u_int datalen;
     76       1.1  christos 	register u_int caplen;
     77       1.1  christos 	register u_char *cp;
     78       1.1  christos 
     79       1.1  christos again:
     80       1.1  christos 	/*
     81       1.1  christos 	 * Has "pcap_breakloop()" been called?
     82       1.1  christos 	 */
     83       1.1  christos 	if (p->break_loop) {
     84       1.1  christos 		/*
     85       1.1  christos 		 * Yes - clear the flag that indicates that it
     86       1.1  christos 		 * has, and return -2 to indicate that we were
     87       1.1  christos 		 * told to break out of the loop.
     88       1.1  christos 		 */
     89       1.1  christos 		p->break_loop = 0;
     90       1.1  christos 		return (-2);
     91       1.1  christos 	}
     92       1.1  christos 	cc = read(p->fd, (char *)p->buffer, p->bufsize);
     93       1.1  christos 	if (cc < 0) {
     94       1.1  christos 		/* Don't choke when we get ptraced */
     95       1.1  christos 		switch (errno) {
     96       1.1  christos 
     97       1.1  christos 		case EINTR:
     98       1.1  christos 			goto again;
     99       1.1  christos 
    100       1.1  christos 		case EWOULDBLOCK:
    101       1.1  christos 			return (0);			/* XXX */
    102       1.1  christos 		}
    103  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, sizeof(p->errbuf),
    104  1.4.10.1  pgoyette 		    errno, "read");
    105       1.1  christos 		return (-1);
    106       1.1  christos 	}
    107       1.1  christos 	sh = (struct snoopheader *)p->buffer;
    108       1.1  christos 	datalen = sh->snoop_packetlen;
    109       1.1  christos 
    110       1.1  christos 	/*
    111       1.1  christos 	 * XXX - Sigh, snoop_packetlen is a 16 bit quantity.  If we
    112       1.1  christos 	 * got a short length, but read a full sized snoop pakcet,
    113       1.1  christos 	 * assume we overflowed and add back the 64K...
    114       1.1  christos 	 */
    115       1.1  christos 	if (cc == (p->snapshot + sizeof(struct snoopheader)) &&
    116       1.1  christos 	    (datalen < p->snapshot))
    117       1.1  christos 		datalen += (64 * 1024);
    118       1.1  christos 
    119       1.1  christos 	caplen = (datalen < p->snapshot) ? datalen : p->snapshot;
    120       1.1  christos 	cp = (u_char *)(sh + 1) + p->offset;		/* XXX */
    121       1.1  christos 
    122       1.3  christos 	/*
    123       1.1  christos 	 * XXX unfortunately snoop loopback isn't exactly like
    124       1.1  christos 	 * BSD's.  The address family is encoded in the first 2
    125       1.1  christos 	 * bytes rather than the first 4 bytes!  Luckily the last
    126       1.1  christos 	 * two snoop loopback bytes are zeroed.
    127       1.1  christos 	 */
    128       1.1  christos 	if (p->linktype == DLT_NULL && *((short *)(cp + 2)) == 0) {
    129       1.1  christos 		u_int *uip = (u_int *)cp;
    130       1.1  christos 		*uip >>= 16;
    131       1.1  christos 	}
    132       1.1  christos 
    133       1.1  christos 	if (p->fcode.bf_insns == NULL ||
    134       1.1  christos 	    bpf_filter(p->fcode.bf_insns, cp, datalen, caplen)) {
    135       1.1  christos 		struct pcap_pkthdr h;
    136       1.2  christos 		++psn->stat.ps_recv;
    137       1.1  christos 		h.ts.tv_sec = sh->snoop_timestamp.tv_sec;
    138       1.1  christos 		h.ts.tv_usec = sh->snoop_timestamp.tv_usec;
    139       1.1  christos 		h.len = datalen;
    140       1.1  christos 		h.caplen = caplen;
    141       1.1  christos 		(*callback)(user, &h, cp);
    142       1.1  christos 		return (1);
    143       1.1  christos 	}
    144       1.1  christos 	return (0);
    145       1.1  christos }
    146       1.1  christos 
    147       1.1  christos static int
    148       1.1  christos pcap_inject_snoop(pcap_t *p, const void *buf, size_t size)
    149       1.1  christos {
    150       1.1  christos 	int ret;
    151       1.1  christos 
    152       1.1  christos 	/*
    153       1.1  christos 	 * XXX - libnet overwrites the source address with what I
    154       1.1  christos 	 * presume is the interface's address; is that required?
    155       1.1  christos 	 */
    156       1.1  christos 	ret = write(p->fd, buf, size);
    157       1.1  christos 	if (ret == -1) {
    158  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    159  1.4.10.1  pgoyette 		    errno, "send");
    160       1.1  christos 		return (-1);
    161       1.1  christos 	}
    162       1.1  christos 	return (ret);
    163       1.3  christos }
    164       1.1  christos 
    165       1.1  christos static int
    166       1.1  christos pcap_stats_snoop(pcap_t *p, struct pcap_stat *ps)
    167       1.1  christos {
    168       1.2  christos 	struct pcap_snoop *psn = p->priv;
    169       1.1  christos 	register struct rawstats *rs;
    170       1.1  christos 	struct rawstats rawstats;
    171       1.1  christos 
    172       1.1  christos 	rs = &rawstats;
    173       1.1  christos 	memset(rs, 0, sizeof(*rs));
    174       1.1  christos 	if (ioctl(p->fd, SIOCRAWSTATS, (char *)rs) < 0) {
    175  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, sizeof(p->errbuf),
    176  1.4.10.1  pgoyette 		    errno, "SIOCRAWSTATS");
    177       1.1  christos 		return (-1);
    178       1.1  christos 	}
    179       1.1  christos 
    180       1.1  christos 	/*
    181       1.1  christos 	 * "ifdrops" are those dropped by the network interface
    182       1.1  christos 	 * due to resource shortages or hardware errors.
    183       1.1  christos 	 *
    184       1.1  christos 	 * "sbdrops" are those dropped due to socket buffer limits.
    185       1.1  christos 	 *
    186       1.1  christos 	 * As filter is done in userland, "sbdrops" counts packets
    187       1.1  christos 	 * regardless of whether they would've passed the filter.
    188       1.1  christos 	 *
    189       1.1  christos 	 * XXX - does this count *all* Snoop or Drain sockets,
    190       1.1  christos 	 * rather than just this socket?  If not, why does it have
    191       1.1  christos 	 * both Snoop and Drain statistics?
    192       1.1  christos 	 */
    193       1.2  christos 	psn->stat.ps_drop =
    194       1.1  christos 	    rs->rs_snoop.ss_ifdrops + rs->rs_snoop.ss_sbdrops +
    195       1.1  christos 	    rs->rs_drain.ds_ifdrops + rs->rs_drain.ds_sbdrops;
    196       1.1  christos 
    197       1.1  christos 	/*
    198       1.1  christos 	 * "ps_recv" counts only packets that passed the filter.
    199       1.1  christos 	 * As filtering is done in userland, this does not include
    200       1.1  christos 	 * packets dropped because we ran out of buffer space.
    201       1.1  christos 	 */
    202       1.2  christos 	*ps = psn->stat;
    203       1.1  christos 	return (0);
    204       1.1  christos }
    205       1.1  christos 
    206       1.1  christos /* XXX can't disable promiscuous */
    207       1.1  christos static int
    208       1.1  christos pcap_activate_snoop(pcap_t *p)
    209       1.1  christos {
    210       1.1  christos 	int fd;
    211       1.1  christos 	struct sockaddr_raw sr;
    212       1.1  christos 	struct snoopfilter sf;
    213       1.1  christos 	u_int v;
    214       1.1  christos 	int ll_hdrlen;
    215       1.1  christos 	int snooplen;
    216       1.1  christos 	struct ifreq ifr;
    217       1.1  christos 
    218       1.1  christos 	fd = socket(PF_RAW, SOCK_RAW, RAWPROTO_SNOOP);
    219       1.1  christos 	if (fd < 0) {
    220  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    221  1.4.10.1  pgoyette 		    errno, "snoop socket");
    222       1.1  christos 		goto bad;
    223       1.1  christos 	}
    224       1.1  christos 	p->fd = fd;
    225       1.1  christos 	memset(&sr, 0, sizeof(sr));
    226       1.1  christos 	sr.sr_family = AF_RAW;
    227       1.4  christos 	(void)strncpy(sr.sr_ifname, p->opt.device, sizeof(sr.sr_ifname));
    228       1.1  christos 	if (bind(fd, (struct sockaddr *)&sr, sizeof(sr))) {
    229       1.4  christos 		/*
    230       1.4  christos 		 * XXX - there's probably a particular bind error that
    231       1.4  christos 		 * means "there's no such device" and a particular bind
    232       1.4  christos 		 * error that means "that device doesn't support snoop";
    233       1.4  christos 		 * they might be the same error, if they both end up
    234       1.4  christos 		 * meaning "snoop doesn't know about that device".
    235       1.4  christos 		 */
    236  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    237  1.4.10.1  pgoyette 		    errno, "snoop bind");
    238       1.1  christos 		goto bad;
    239       1.1  christos 	}
    240       1.1  christos 	memset(&sf, 0, sizeof(sf));
    241       1.1  christos 	if (ioctl(fd, SIOCADDSNOOP, &sf) < 0) {
    242  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    243  1.4.10.1  pgoyette 		    errno, "SIOCADDSNOOP");
    244       1.1  christos 		goto bad;
    245       1.1  christos 	}
    246       1.1  christos 	if (p->opt.buffer_size != 0)
    247       1.1  christos 		v = p->opt.buffer_size;
    248       1.1  christos 	else
    249       1.1  christos 		v = 64 * 1024;	/* default to 64K buffer size */
    250       1.1  christos 	(void)setsockopt(fd, SOL_SOCKET, SO_RCVBUF, (char *)&v, sizeof(v));
    251       1.1  christos 	/*
    252       1.1  christos 	 * XXX hack - map device name to link layer type
    253       1.1  christos 	 */
    254       1.4  christos 	if (strncmp("et", p->opt.device, 2) == 0 ||	/* Challenge 10 Mbit */
    255       1.4  christos 	    strncmp("ec", p->opt.device, 2) == 0 ||	/* Indigo/Indy 10 Mbit,
    256       1.1  christos 							   O2 10/100 */
    257       1.4  christos 	    strncmp("ef", p->opt.device, 2) == 0 ||	/* O200/2000 10/100 Mbit */
    258       1.4  christos 	    strncmp("eg", p->opt.device, 2) == 0 ||	/* Octane/O2xxx/O3xxx Gigabit */
    259       1.4  christos 	    strncmp("gfe", p->opt.device, 3) == 0 ||	/* GIO 100 Mbit */
    260       1.4  christos 	    strncmp("fxp", p->opt.device, 3) == 0 ||	/* Challenge VME Enet */
    261       1.4  christos 	    strncmp("ep", p->opt.device, 2) == 0 ||	/* Challenge 8x10 Mbit EPLEX */
    262       1.4  christos 	    strncmp("vfe", p->opt.device, 3) == 0 ||	/* Challenge VME 100Mbit */
    263       1.4  christos 	    strncmp("fa", p->opt.device, 2) == 0 ||
    264       1.4  christos 	    strncmp("qaa", p->opt.device, 3) == 0 ||
    265       1.4  christos 	    strncmp("cip", p->opt.device, 3) == 0 ||
    266       1.4  christos 	    strncmp("el", p->opt.device, 2) == 0) {
    267       1.1  christos 		p->linktype = DLT_EN10MB;
    268       1.1  christos 		p->offset = RAW_HDRPAD(sizeof(struct ether_header));
    269       1.1  christos 		ll_hdrlen = sizeof(struct ether_header);
    270       1.1  christos 		/*
    271       1.1  christos 		 * This is (presumably) a real Ethernet capture; give it a
    272       1.1  christos 		 * link-layer-type list with DLT_EN10MB and DLT_DOCSIS, so
    273       1.1  christos 		 * that an application can let you choose it, in case you're
    274       1.1  christos 		 * capturing DOCSIS traffic that a Cisco Cable Modem
    275       1.1  christos 		 * Termination System is putting out onto an Ethernet (it
    276       1.1  christos 		 * doesn't put an Ethernet header onto the wire, it puts raw
    277       1.1  christos 		 * DOCSIS frames out on the wire inside the low-level
    278       1.1  christos 		 * Ethernet framing).
    279       1.1  christos 		 *
    280       1.1  christos 		 * XXX - are there any sorts of "fake Ethernet" that have
    281       1.1  christos 		 * Ethernet link-layer headers but that *shouldn't offer
    282       1.1  christos 		 * DLT_DOCSIS as a Cisco CMTS won't put traffic onto it
    283       1.1  christos 		 * or get traffic bridged onto it?  "el" is for ATM LANE
    284       1.1  christos 		 * Ethernet devices, so that might be the case for them;
    285       1.1  christos 		 * the same applies for "qaa" classical IP devices.  If
    286       1.1  christos 		 * "fa" devices are for FORE SPANS, that'd apply to them
    287       1.1  christos 		 * as well; what are "cip" devices - some other ATM
    288       1.1  christos 		 * Classical IP devices?
    289       1.1  christos 		 */
    290       1.1  christos 		p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
    291       1.1  christos 		/*
    292       1.1  christos 		 * If that fails, just leave the list empty.
    293       1.1  christos 		 */
    294       1.1  christos 		if (p->dlt_list != NULL) {
    295       1.1  christos 			p->dlt_list[0] = DLT_EN10MB;
    296       1.1  christos 			p->dlt_list[1] = DLT_DOCSIS;
    297       1.1  christos 			p->dlt_count = 2;
    298       1.1  christos 		}
    299       1.4  christos 	} else if (strncmp("ipg", p->opt.device, 3) == 0 ||
    300       1.4  christos 		   strncmp("rns", p->opt.device, 3) == 0 ||	/* O2/200/2000 FDDI */
    301       1.4  christos 		   strncmp("xpi", p->opt.device, 3) == 0) {
    302       1.1  christos 		p->linktype = DLT_FDDI;
    303       1.1  christos 		p->offset = 3;				/* XXX yeah? */
    304       1.1  christos 		ll_hdrlen = 13;
    305       1.4  christos 	} else if (strncmp("ppp", p->opt.device, 3) == 0) {
    306       1.1  christos 		p->linktype = DLT_RAW;
    307       1.1  christos 		ll_hdrlen = 0;	/* DLT_RAW meaning "no PPP header, just the IP packet"? */
    308       1.4  christos 	} else if (strncmp("qfa", p->opt.device, 3) == 0) {
    309       1.1  christos 		p->linktype = DLT_IP_OVER_FC;
    310       1.1  christos 		ll_hdrlen = 24;
    311       1.4  christos 	} else if (strncmp("pl", p->opt.device, 2) == 0) {
    312       1.1  christos 		p->linktype = DLT_RAW;
    313       1.1  christos 		ll_hdrlen = 0;	/* Cray UNICOS/mp pseudo link */
    314       1.4  christos 	} else if (strncmp("lo", p->opt.device, 2) == 0) {
    315       1.1  christos 		p->linktype = DLT_NULL;
    316       1.1  christos 		ll_hdrlen = 4;
    317       1.1  christos 	} else {
    318       1.4  christos 		pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE,
    319       1.1  christos 		    "snoop: unknown physical layer type");
    320       1.1  christos 		goto bad;
    321       1.1  christos 	}
    322       1.1  christos 
    323       1.1  christos 	if (p->opt.rfmon) {
    324       1.1  christos 		/*
    325       1.1  christos 		 * No monitor mode on Irix (no Wi-Fi devices on
    326       1.1  christos 		 * hardware supported by Irix).
    327       1.1  christos 		 */
    328       1.1  christos 		return (PCAP_ERROR_RFMON_NOTSUP);
    329       1.1  christos 	}
    330       1.1  christos 
    331  1.4.10.1  pgoyette 	/*
    332  1.4.10.1  pgoyette 	 * Turn a negative snapshot value (invalid), a snapshot value of
    333  1.4.10.1  pgoyette 	 * 0 (unspecified), or a value bigger than the normal maximum
    334  1.4.10.1  pgoyette 	 * value, into the maximum allowed value.
    335  1.4.10.1  pgoyette 	 *
    336  1.4.10.1  pgoyette 	 * If some application really *needs* a bigger snapshot
    337  1.4.10.1  pgoyette 	 * length, we should just increase MAXIMUM_SNAPLEN.
    338  1.4.10.1  pgoyette 	 */
    339  1.4.10.1  pgoyette 	if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
    340  1.4.10.1  pgoyette 		p->snapshot = MAXIMUM_SNAPLEN;
    341  1.4.10.1  pgoyette 
    342       1.1  christos #ifdef SIOCGIFMTU
    343       1.1  christos 	/*
    344       1.1  christos 	 * XXX - IRIX appears to give you an error if you try to set the
    345       1.1  christos 	 * capture length to be greater than the MTU, so let's try to get
    346       1.1  christos 	 * the MTU first and, if that succeeds, trim the snap length
    347       1.1  christos 	 * to be no greater than the MTU.
    348       1.1  christos 	 */
    349       1.4  christos 	(void)strncpy(ifr.ifr_name, p->opt.device, sizeof(ifr.ifr_name));
    350       1.1  christos 	if (ioctl(fd, SIOCGIFMTU, (char *)&ifr) < 0) {
    351  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    352  1.4.10.1  pgoyette 		    errno, "SIOCGIFMTU");
    353       1.1  christos 		goto bad;
    354       1.1  christos 	}
    355       1.1  christos 	/*
    356       1.1  christos 	 * OK, we got it.
    357       1.1  christos 	 *
    358       1.1  christos 	 * XXX - some versions of IRIX 6.5 define "ifr_mtu" and have an
    359       1.1  christos 	 * "ifru_metric" member of the "ifr_ifru" union in an "ifreq"
    360       1.1  christos 	 * structure, others don't.
    361       1.1  christos 	 *
    362       1.1  christos 	 * I've no idea what's going on, so, if "ifr_mtu" isn't defined,
    363       1.1  christos 	 * we define it as "ifr_metric", as using that field appears to
    364       1.1  christos 	 * work on the versions that lack "ifr_mtu" (and, on those that
    365       1.1  christos 	 * don't lack it, "ifru_metric" and "ifru_mtu" are both "int"
    366       1.1  christos 	 * members of the "ifr_ifru" union, which suggests that they
    367       1.1  christos 	 * may be interchangeable in this case).
    368       1.1  christos 	 */
    369       1.1  christos #ifndef ifr_mtu
    370       1.1  christos #define ifr_mtu	ifr_metric
    371       1.1  christos #endif
    372       1.1  christos 	if (p->snapshot > ifr.ifr_mtu + ll_hdrlen)
    373       1.1  christos 		p->snapshot = ifr.ifr_mtu + ll_hdrlen;
    374       1.1  christos #endif
    375       1.1  christos 
    376       1.1  christos 	/*
    377       1.1  christos 	 * The argument to SIOCSNOOPLEN is the number of link-layer
    378       1.1  christos 	 * payload bytes to capture - it doesn't count link-layer
    379       1.1  christos 	 * header bytes.
    380       1.1  christos 	 */
    381       1.1  christos 	snooplen = p->snapshot - ll_hdrlen;
    382       1.1  christos 	if (snooplen < 0)
    383       1.1  christos 		snooplen = 0;
    384       1.1  christos 	if (ioctl(fd, SIOCSNOOPLEN, &snooplen) < 0) {
    385  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    386  1.4.10.1  pgoyette 		    errno, "SIOCSNOOPLEN");
    387       1.1  christos 		goto bad;
    388       1.1  christos 	}
    389       1.1  christos 	v = 1;
    390       1.1  christos 	if (ioctl(fd, SIOCSNOOPING, &v) < 0) {
    391  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    392  1.4.10.1  pgoyette 		    errno, "SIOCSNOOPING");
    393       1.1  christos 		goto bad;
    394       1.1  christos 	}
    395       1.1  christos 
    396       1.1  christos 	p->bufsize = 4096;				/* XXX */
    397       1.4  christos 	p->buffer = malloc(p->bufsize);
    398       1.1  christos 	if (p->buffer == NULL) {
    399  1.4.10.1  pgoyette 		pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
    400  1.4.10.1  pgoyette 		    errno, "malloc");
    401       1.1  christos 		goto bad;
    402       1.1  christos 	}
    403       1.1  christos 
    404       1.1  christos 	/*
    405       1.1  christos 	 * "p->fd" is a socket, so "select()" should work on it.
    406       1.1  christos 	 */
    407       1.1  christos 	p->selectable_fd = p->fd;
    408       1.1  christos 
    409       1.1  christos 	p->read_op = pcap_read_snoop;
    410       1.1  christos 	p->inject_op = pcap_inject_snoop;
    411       1.1  christos 	p->setfilter_op = install_bpf_program;	/* no kernel filtering */
    412       1.1  christos 	p->setdirection_op = NULL;	/* Not implemented. */
    413       1.1  christos 	p->set_datalink_op = NULL;	/* can't change data link type */
    414       1.1  christos 	p->getnonblock_op = pcap_getnonblock_fd;
    415       1.1  christos 	p->setnonblock_op = pcap_setnonblock_fd;
    416       1.1  christos 	p->stats_op = pcap_stats_snoop;
    417       1.1  christos 
    418       1.1  christos 	return (0);
    419       1.1  christos  bad:
    420       1.1  christos 	pcap_cleanup_live_common(p);
    421       1.1  christos 	return (PCAP_ERROR);
    422       1.1  christos }
    423       1.1  christos 
    424       1.1  christos pcap_t *
    425       1.4  christos pcap_create_interface(const char *device _U_, char *ebuf)
    426       1.1  christos {
    427       1.1  christos 	pcap_t *p;
    428       1.1  christos 
    429       1.4  christos 	p = pcap_create_common(ebuf, sizeof (struct pcap_snoop));
    430       1.1  christos 	if (p == NULL)
    431       1.1  christos 		return (NULL);
    432       1.1  christos 
    433       1.1  christos 	p->activate_op = pcap_activate_snoop;
    434       1.1  christos 	return (p);
    435       1.1  christos }
    436       1.1  christos 
    437       1.4  christos /*
    438       1.4  christos  * XXX - there's probably a particular bind error that means "that device
    439       1.4  christos  * doesn't support snoop"; if so, we should try a bind and use that.
    440       1.4  christos  */
    441       1.4  christos static int
    442       1.4  christos can_be_bound(const char *name _U_)
    443       1.4  christos {
    444       1.4  christos 	return (1);
    445       1.4  christos }
    446       1.4  christos 
    447  1.4.10.1  pgoyette static int
    448  1.4.10.1  pgoyette get_if_flags(const char *name _U_, bpf_u_int32 *flags _U_, char *errbuf _U_)
    449  1.4.10.1  pgoyette {
    450  1.4.10.1  pgoyette 	/*
    451  1.4.10.1  pgoyette 	 * Nothing we can do.
    452  1.4.10.1  pgoyette 	 * XXX - is there a way to find out whether an adapter has
    453  1.4.10.1  pgoyette 	 * something plugged into it?
    454  1.4.10.1  pgoyette 	 */
    455  1.4.10.1  pgoyette 	return (0);
    456  1.4.10.1  pgoyette }
    457  1.4.10.1  pgoyette 
    458       1.1  christos int
    459  1.4.10.1  pgoyette pcap_platform_finddevs(pcap_if_list_t *devlistp, char *errbuf)
    460  1.4.10.1  pgoyette {
    461  1.4.10.1  pgoyette 	return (pcap_findalldevs_interfaces(devlistp, errbuf, can_be_bound,
    462  1.4.10.1  pgoyette 	    get_if_flags));
    463  1.4.10.1  pgoyette }
    464  1.4.10.1  pgoyette 
    465  1.4.10.1  pgoyette /*
    466  1.4.10.1  pgoyette  * Libpcap version string.
    467  1.4.10.1  pgoyette  */
    468  1.4.10.1  pgoyette const char *
    469  1.4.10.1  pgoyette pcap_lib_version(void)
    470       1.1  christos {
    471  1.4.10.1  pgoyette 	return (PCAP_VERSION_STRING);
    472       1.1  christos }
    473