1996-08-19 20:36:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that: (1) source code distributions
|
|
|
|
* retain the above copyright notice and this paragraph in its entirety, (2)
|
|
|
|
* distributions including binary code include the above copyright notice and
|
|
|
|
* this paragraph in its entirety in the documentation or other materials
|
|
|
|
* provided with the distribution, and (3) all advertising materials mentioning
|
|
|
|
* features or use of this software display the following acknowledgement:
|
|
|
|
* ``This product includes software developed by the University of California,
|
|
|
|
* Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
|
|
|
|
* the University nor the names of its contributors may be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
1997-05-27 00:01:12 +00:00
|
|
|
*
|
1996-08-19 20:36:34 +00:00
|
|
|
* Modifications made to accommodate the new SunOS4.0 NIT facility by
|
|
|
|
* Micky Liu, micky@cunixc.cc.columbia.edu, Columbia University in May, 1989.
|
|
|
|
* This module now handles the STREAMS based NIT.
|
|
|
|
*/
|
|
|
|
|
2001-04-03 04:18:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
1997-05-27 00:01:12 +00:00
|
|
|
#endif
|
|
|
|
|
1996-08-19 20:36:34 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/timeb.h>
|
|
|
|
#include <sys/dir.h>
|
|
|
|
#include <sys/fcntlcom.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/stropts.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/nit.h>
|
|
|
|
#include <net/nit_if.h>
|
|
|
|
#include <net/nit_pf.h>
|
|
|
|
#include <net/nit_buf.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/if_ether.h>
|
|
|
|
#include <netinet/ip_var.h>
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
#include <netinet/udp_var.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <netinet/tcpip.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "pcap-int.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_OS_PROTO_H
|
|
|
|
#include "os-proto.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The chunk size for NIT. This is the amount of buffering
|
|
|
|
* done for read calls.
|
|
|
|
*/
|
|
|
|
#define CHUNKSIZE (2*1024)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The total buffer space used by NIT.
|
|
|
|
*/
|
|
|
|
#define BUFSPACE (4*CHUNKSIZE)
|
|
|
|
|
|
|
|
/* Forwards */
|
|
|
|
static int nit_setflags(int, int, int, char *);
|
|
|
|
|
2015-01-06 18:58:31 +00:00
|
|
|
/*
|
|
|
|
* Private data for capturing on STREAMS NIT devices.
|
|
|
|
*/
|
|
|
|
struct pcap_snit {
|
|
|
|
struct pcap_stat stat;
|
|
|
|
};
|
|
|
|
|
2004-03-31 09:07:39 +00:00
|
|
|
static int
|
|
|
|
pcap_stats_snit(pcap_t *p, struct pcap_stat *ps)
|
1996-08-19 20:36:34 +00:00
|
|
|
{
|
2015-01-06 18:58:31 +00:00
|
|
|
struct pcap_snit *psn = p->priv;
|
1996-08-19 20:36:34 +00:00
|
|
|
|
2002-06-21 01:36:27 +00:00
|
|
|
/*
|
|
|
|
* "ps_recv" counts packets handed to the filter, not packets
|
|
|
|
* that passed the filter. As filtering is done in userland,
|
|
|
|
* this does not include packets dropped because we ran out
|
|
|
|
* of buffer space.
|
|
|
|
*
|
|
|
|
* "ps_drop" counts packets dropped inside the "/dev/nit"
|
|
|
|
* device because of flow control requirements or resource
|
|
|
|
* exhaustion; it doesn't count packets dropped by the
|
|
|
|
* interface driver, or packets dropped upstream. As filtering
|
|
|
|
* is done in userland, it counts packets regardless of whether
|
|
|
|
* they would've passed the filter.
|
|
|
|
*
|
|
|
|
* These statistics don't include packets not yet read from the
|
|
|
|
* kernel by libpcap or packets not yet read from libpcap by the
|
|
|
|
* application.
|
|
|
|
*/
|
2015-01-06 18:58:31 +00:00
|
|
|
*ps = psn->stat;
|
1996-08-19 20:36:34 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2004-03-31 09:07:39 +00:00
|
|
|
static int
|
|
|
|
pcap_read_snit(pcap_t *p, int cnt, pcap_handler callback, u_char *user)
|
1996-08-19 20:36:34 +00:00
|
|
|
{
|
2015-01-06 18:58:31 +00:00
|
|
|
struct pcap_snit *psn = p->priv;
|
1996-08-19 20:36:34 +00:00
|
|
|
register int cc, n;
|
|
|
|
register u_char *bp, *cp, *ep;
|
|
|
|
register struct nit_bufhdr *hdrp;
|
|
|
|
register struct nit_iftime *ntp;
|
|
|
|
register struct nit_iflen *nlp;
|
|
|
|
register struct nit_ifdrops *ndp;
|
|
|
|
register int caplen;
|
|
|
|
|
|
|
|
cc = p->cc;
|
|
|
|
if (cc == 0) {
|
|
|
|
cc = read(p->fd, (char *)p->buffer, p->bufsize);
|
|
|
|
if (cc < 0) {
|
|
|
|
if (errno == EWOULDBLOCK)
|
|
|
|
return (0);
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, sizeof(p->errbuf), "pcap_read: %s",
|
1996-08-19 20:36:34 +00:00
|
|
|
pcap_strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
2017-02-12 07:04:44 +00:00
|
|
|
bp = (u_char *)p->buffer;
|
1996-08-19 20:36:34 +00:00
|
|
|
} else
|
|
|
|
bp = p->bp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* loop through each snapshot in the chunk
|
|
|
|
*/
|
|
|
|
n = 0;
|
|
|
|
ep = bp + cc;
|
|
|
|
while (bp < ep) {
|
2004-03-31 09:07:39 +00:00
|
|
|
/*
|
|
|
|
* Has "pcap_breakloop()" been called?
|
|
|
|
* If so, return immediately - if we haven't read any
|
|
|
|
* packets, clear the flag and return -2 to indicate
|
|
|
|
* that we were told to break out of the loop, otherwise
|
|
|
|
* leave the flag set, so that the *next* call will break
|
|
|
|
* out of the loop without having read any packets, and
|
|
|
|
* return the number of packets we've processed so far.
|
|
|
|
*/
|
|
|
|
if (p->break_loop) {
|
|
|
|
if (n == 0) {
|
|
|
|
p->break_loop = 0;
|
|
|
|
return (-2);
|
|
|
|
} else {
|
|
|
|
p->bp = bp;
|
|
|
|
p->cc = ep - bp;
|
|
|
|
return (n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 18:58:31 +00:00
|
|
|
++psn->stat.ps_recv;
|
1996-08-19 20:36:34 +00:00
|
|
|
cp = bp;
|
|
|
|
|
|
|
|
/* get past NIT buffer */
|
|
|
|
hdrp = (struct nit_bufhdr *)cp;
|
|
|
|
cp += sizeof(*hdrp);
|
|
|
|
|
|
|
|
/* get past NIT timer */
|
|
|
|
ntp = (struct nit_iftime *)cp;
|
|
|
|
cp += sizeof(*ntp);
|
|
|
|
|
|
|
|
ndp = (struct nit_ifdrops *)cp;
|
2015-01-06 18:58:31 +00:00
|
|
|
psn->stat.ps_drop = ndp->nh_drops;
|
1996-08-19 20:36:34 +00:00
|
|
|
cp += sizeof *ndp;
|
|
|
|
|
|
|
|
/* get past packet len */
|
|
|
|
nlp = (struct nit_iflen *)cp;
|
|
|
|
cp += sizeof(*nlp);
|
|
|
|
|
|
|
|
/* next snapshot */
|
|
|
|
bp += hdrp->nhb_totlen;
|
|
|
|
|
|
|
|
caplen = nlp->nh_pktlen;
|
|
|
|
if (caplen > p->snapshot)
|
|
|
|
caplen = p->snapshot;
|
|
|
|
|
2009-03-21 20:43:56 +00:00
|
|
|
if (bpf_filter(p->fcode.bf_insns, cp, nlp->nh_pktlen, caplen)) {
|
1996-08-19 20:36:34 +00:00
|
|
|
struct pcap_pkthdr h;
|
|
|
|
h.ts = ntp->nh_timestamp;
|
|
|
|
h.len = nlp->nh_pktlen;
|
|
|
|
h.caplen = caplen;
|
|
|
|
(*callback)(user, &h, cp);
|
2015-01-06 18:58:31 +00:00
|
|
|
if (++n >= cnt && !PACKET_COUNT_IS_UNLIMITED(cnt)) {
|
1996-08-19 20:36:34 +00:00
|
|
|
p->cc = ep - bp;
|
|
|
|
p->bp = bp;
|
|
|
|
return (n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p->cc = 0;
|
|
|
|
return (n);
|
|
|
|
}
|
|
|
|
|
2005-05-29 17:46:52 +00:00
|
|
|
static int
|
|
|
|
pcap_inject_snit(pcap_t *p, const void *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct strbuf ctl, data;
|
2017-02-12 07:04:44 +00:00
|
|
|
|
2005-05-29 17:46:52 +00:00
|
|
|
/*
|
|
|
|
* XXX - can we just do
|
|
|
|
*
|
|
|
|
ret = write(pd->f, buf, size);
|
|
|
|
*/
|
|
|
|
ctl.len = sizeof(*sa); /* XXX - what was this? */
|
|
|
|
ctl.buf = (char *)sa;
|
|
|
|
data.buf = buf;
|
|
|
|
data.len = size;
|
|
|
|
ret = putmsg(p->fd, &ctl, &data);
|
|
|
|
if (ret == -1) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "send: %s",
|
2005-05-29 17:46:52 +00:00
|
|
|
pcap_strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
1996-08-19 20:36:34 +00:00
|
|
|
static int
|
2015-01-06 18:58:31 +00:00
|
|
|
nit_setflags(pcap_t *p)
|
1996-08-19 20:36:34 +00:00
|
|
|
{
|
|
|
|
bpf_u_int32 flags;
|
|
|
|
struct strioctl si;
|
2015-01-06 18:58:31 +00:00
|
|
|
u_int zero = 0;
|
1996-08-19 20:36:34 +00:00
|
|
|
struct timeval timeout;
|
|
|
|
|
2015-01-06 18:58:31 +00:00
|
|
|
if (p->opt.immediate) {
|
|
|
|
/*
|
|
|
|
* Set the chunk size to zero, so that chunks get sent
|
|
|
|
* up immediately.
|
|
|
|
*/
|
|
|
|
si.ic_cmd = NIOCSCHUNK;
|
|
|
|
si.ic_len = sizeof(zero);
|
|
|
|
si.ic_dp = (char *)&zero;
|
|
|
|
if (ioctl(p->fd, I_STR, (char *)&si) < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "NIOCSCHUNK: %s",
|
2015-01-06 18:58:31 +00:00
|
|
|
pcap_strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
1996-08-19 20:36:34 +00:00
|
|
|
si.ic_timout = INFTIM;
|
2015-01-06 18:58:31 +00:00
|
|
|
if (p->opt.timeout != 0) {
|
|
|
|
timeout.tv_sec = p->opt.timeout / 1000;
|
|
|
|
timeout.tv_usec = (p->opt.timeout * 1000) % 1000000;
|
1996-08-19 20:36:34 +00:00
|
|
|
si.ic_cmd = NIOCSTIME;
|
|
|
|
si.ic_len = sizeof(timeout);
|
|
|
|
si.ic_dp = (char *)&timeout;
|
2015-01-06 18:58:31 +00:00
|
|
|
if (ioctl(p->fd, I_STR, (char *)&si) < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "NIOCSTIME: %s",
|
2001-04-03 04:18:09 +00:00
|
|
|
pcap_strerror(errno));
|
1996-08-19 20:36:34 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
flags = NI_TIMESTAMP | NI_LEN | NI_DROPS;
|
2015-01-06 18:58:31 +00:00
|
|
|
if (p->opt.promisc)
|
1996-08-19 20:36:34 +00:00
|
|
|
flags |= NI_PROMISC;
|
|
|
|
si.ic_cmd = NIOCSFLAGS;
|
|
|
|
si.ic_len = sizeof(flags);
|
|
|
|
si.ic_dp = (char *)&flags;
|
2015-01-06 18:58:31 +00:00
|
|
|
if (ioctl(p->fd, I_STR, (char *)&si) < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "NIOCSFLAGS: %s",
|
2001-04-03 04:18:09 +00:00
|
|
|
pcap_strerror(errno));
|
1996-08-19 20:36:34 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2009-03-21 20:43:56 +00:00
|
|
|
static int
|
|
|
|
pcap_activate_snit(pcap_t *p)
|
1996-08-19 20:36:34 +00:00
|
|
|
{
|
|
|
|
struct strioctl si; /* struct for ioctl() */
|
|
|
|
struct ifreq ifr; /* interface request struct */
|
|
|
|
int chunksize = CHUNKSIZE;
|
|
|
|
int fd;
|
2017-02-12 07:04:44 +00:00
|
|
|
static const char dev[] = "/dev/nit";
|
1996-08-19 20:36:34 +00:00
|
|
|
|
2009-03-21 20:43:56 +00:00
|
|
|
if (p->opt.rfmon) {
|
|
|
|
/*
|
|
|
|
* No monitor mode on SunOS 4.x (no Wi-Fi devices on
|
|
|
|
* hardware supported by SunOS 4.x).
|
|
|
|
*/
|
|
|
|
return (PCAP_ERROR_RFMON_NOTSUP);
|
1996-08-19 20:36:34 +00:00
|
|
|
}
|
|
|
|
|
2009-03-21 20:43:56 +00:00
|
|
|
if (p->snapshot < 96)
|
1996-08-19 20:36:34 +00:00
|
|
|
/*
|
|
|
|
* NIT requires a snapshot length of at least 96.
|
|
|
|
*/
|
2009-03-21 20:43:56 +00:00
|
|
|
p->snapshot = 96;
|
1996-08-19 20:36:34 +00:00
|
|
|
|
2005-05-29 17:46:52 +00:00
|
|
|
/*
|
|
|
|
* Initially try a read/write open (to allow the inject
|
|
|
|
* method to work). If that fails due to permission
|
|
|
|
* issues, fall back to read-only. This allows a
|
|
|
|
* non-root user to be granted specific access to pcap
|
|
|
|
* capabilities via file permissions.
|
|
|
|
*
|
|
|
|
* XXX - we should have an API that has a flag that
|
|
|
|
* controls whether to open read-only or read-write,
|
|
|
|
* so that denial of permission to send (or inability
|
|
|
|
* to send, if sending packets isn't supported on
|
|
|
|
* the device in question) can be indicated at open
|
|
|
|
* time.
|
|
|
|
*/
|
|
|
|
p->fd = fd = open(dev, O_RDWR);
|
|
|
|
if (fd < 0 && errno == EACCES)
|
|
|
|
p->fd = fd = open(dev, O_RDONLY);
|
1996-08-19 20:36:34 +00:00
|
|
|
if (fd < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "%s: %s", dev,
|
2001-04-03 04:18:09 +00:00
|
|
|
pcap_strerror(errno));
|
1996-08-19 20:36:34 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* arrange to get discrete messages from the STREAM and use NIT_BUF */
|
|
|
|
if (ioctl(fd, I_SRDOPT, (char *)RMSGD) < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "I_SRDOPT: %s",
|
2001-04-03 04:18:09 +00:00
|
|
|
pcap_strerror(errno));
|
1996-08-19 20:36:34 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (ioctl(fd, I_PUSH, "nbuf") < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "push nbuf: %s",
|
2001-04-03 04:18:09 +00:00
|
|
|
pcap_strerror(errno));
|
1996-08-19 20:36:34 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
/* set the chunksize */
|
|
|
|
si.ic_cmd = NIOCSCHUNK;
|
|
|
|
si.ic_timout = INFTIM;
|
|
|
|
si.ic_len = sizeof(chunksize);
|
|
|
|
si.ic_dp = (char *)&chunksize;
|
|
|
|
if (ioctl(fd, I_STR, (char *)&si) < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "NIOCSCHUNK: %s",
|
2001-04-03 04:18:09 +00:00
|
|
|
pcap_strerror(errno));
|
1996-08-19 20:36:34 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* request the interface */
|
2017-02-12 07:04:44 +00:00
|
|
|
strncpy(ifr.ifr_name, p->opt.device, sizeof(ifr.ifr_name));
|
2004-03-31 09:07:39 +00:00
|
|
|
ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0';
|
1996-08-19 20:36:34 +00:00
|
|
|
si.ic_cmd = NIOCBIND;
|
|
|
|
si.ic_len = sizeof(ifr);
|
|
|
|
si.ic_dp = (char *)𝔦
|
|
|
|
if (ioctl(fd, I_STR, (char *)&si) < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
/*
|
|
|
|
* XXX - is there an error that means "no such device"?
|
|
|
|
* Is there one that means "that device doesn't support
|
|
|
|
* STREAMS NIT"?
|
|
|
|
*/
|
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "NIOCBIND: %s: %s",
|
1996-08-19 20:36:34 +00:00
|
|
|
ifr.ifr_name, pcap_strerror(errno));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set the snapshot length */
|
|
|
|
si.ic_cmd = NIOCSSNAP;
|
2009-03-21 20:43:56 +00:00
|
|
|
si.ic_len = sizeof(p->snapshot);
|
|
|
|
si.ic_dp = (char *)&p->snapshot;
|
1996-08-19 20:36:34 +00:00
|
|
|
if (ioctl(fd, I_STR, (char *)&si) < 0) {
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_snprintf(p->errbuf, PCAP_ERRBUF_SIZE, "NIOCSSNAP: %s",
|
2001-04-03 04:18:09 +00:00
|
|
|
pcap_strerror(errno));
|
1996-08-19 20:36:34 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
2015-01-06 18:58:31 +00:00
|
|
|
if (nit_setflags(p) < 0)
|
1996-08-19 20:36:34 +00:00
|
|
|
goto bad;
|
|
|
|
|
|
|
|
(void)ioctl(fd, I_FLUSH, (char *)FLUSHR);
|
|
|
|
/*
|
|
|
|
* NIT supports only ethernets.
|
|
|
|
*/
|
|
|
|
p->linktype = DLT_EN10MB;
|
|
|
|
|
|
|
|
p->bufsize = BUFSPACE;
|
2017-02-12 07:04:44 +00:00
|
|
|
p->buffer = malloc(p->bufsize);
|
1996-08-19 20:36:34 +00:00
|
|
|
if (p->buffer == NULL) {
|
2009-03-21 20:43:56 +00:00
|
|
|
strlcpy(p->errbuf, pcap_strerror(errno), PCAP_ERRBUF_SIZE);
|
1996-08-19 20:36:34 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
2004-03-31 09:07:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* "p->fd" is an FD for a STREAMS device, so "select()" and
|
|
|
|
* "poll()" should work on it.
|
|
|
|
*/
|
|
|
|
p->selectable_fd = p->fd;
|
|
|
|
|
2005-05-29 17:46:52 +00:00
|
|
|
/*
|
|
|
|
* This is (presumably) a real Ethernet capture; give it a
|
|
|
|
* link-layer-type list with DLT_EN10MB and DLT_DOCSIS, so
|
|
|
|
* that an application can let you choose it, in case you're
|
|
|
|
* capturing DOCSIS traffic that a Cisco Cable Modem
|
|
|
|
* Termination System is putting out onto an Ethernet (it
|
|
|
|
* doesn't put an Ethernet header onto the wire, it puts raw
|
|
|
|
* DOCSIS frames out on the wire inside the low-level
|
|
|
|
* Ethernet framing).
|
|
|
|
*/
|
|
|
|
p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
|
|
|
|
/*
|
|
|
|
* If that fails, just leave the list empty.
|
|
|
|
*/
|
|
|
|
if (p->dlt_list != NULL) {
|
|
|
|
p->dlt_list[0] = DLT_EN10MB;
|
|
|
|
p->dlt_list[1] = DLT_DOCSIS;
|
|
|
|
p->dlt_count = 2;
|
|
|
|
}
|
|
|
|
|
2004-03-31 09:07:39 +00:00
|
|
|
p->read_op = pcap_read_snit;
|
2005-05-29 17:46:52 +00:00
|
|
|
p->inject_op = pcap_inject_snit;
|
2004-03-31 09:07:39 +00:00
|
|
|
p->setfilter_op = install_bpf_program; /* no kernel filtering */
|
2005-07-11 03:24:53 +00:00
|
|
|
p->setdirection_op = NULL; /* Not implemented. */
|
2004-03-31 09:07:39 +00:00
|
|
|
p->set_datalink_op = NULL; /* can't change data link type */
|
|
|
|
p->getnonblock_op = pcap_getnonblock_fd;
|
|
|
|
p->setnonblock_op = pcap_setnonblock_fd;
|
|
|
|
p->stats_op = pcap_stats_snit;
|
|
|
|
|
2009-03-21 20:43:56 +00:00
|
|
|
return (0);
|
1996-08-19 20:36:34 +00:00
|
|
|
bad:
|
Update libpcap to 1.1.1.
Changes:
Thu. April 1, 2010. guy@alum.mit.edu.
Summary for 1.1.1 libpcap release
Update CHANGES to reflect more of the changes in 1.1.0.
Fix build on RHEL5.
Fix shared library build on AIX.
Thu. March 11, 2010. ken@netfunctional.ca/guy@alum.mit.edu.
Summary for 1.1.0 libpcap release
Add SocketCAN capture support
Add Myricom SNF API support
Update Endace DAG and ERF support
Add support for shared libraries on Solaris, HP-UX, and AIX
Build, install, and un-install shared libraries by default;
don't build/install shared libraries on platforms we don't support
Fix building from a directory other than the source directory
Fix compiler warnings and builds on some platforms
Update config.guess and config.sub
Support monitor mode on mac80211 devices on Linux
Fix USB memory-mapped capturing on Linux; it requires a new DLT_
value
On Linux, scan /sys/class/net for devices if we have it; scan
it, or /proc/net/dev if we don't have /sys/class/net, even if
we have getifaddrs(), as it'll find interfaces with no
addresses
Add limited support for reading pcap-ng files
Fix BPF driver-loading error handling on AIX
Support getting the full-length interface description on FreeBSD
In the lexical analyzer, free up any addrinfo structure we got back
from getaddrinfo().
Add support for BPF and libdlpi in OpenSolaris (and SXCE)
Hyphenate "link-layer" everywhere
Add /sys/kernel/debug/usb/usbmon to the list of usbmon locations
In pcap_read_linux_mmap(), if there are no frames available, call
poll() even if we're in non-blocking mode, so we pick up
errors, and check for the errors in question.
Note that poll() works on BPF devices is Snow Leopard
If an ENXIO or ENETDOWN is received, it may mean the device has
gone away. Deal with it.
For BPF, raise the default capture buffer size to from 32k to 512k
Support ps_ifdrop on Linux
Added a bunch of #ifdef directives to make wpcap.dll (WinPcap) compile
under cygwin.
Changes to Linux mmapped captures.
Fix bug where create_ring would fail for particular snaplen and
buffer size combinations
Update pcap-config so that it handles libpcap requiring
additional libraries
Add workaround for threadsafeness on Windows
Add missing mapping for DLT_ENC <-> LINKTYPE_ENC
DLT: Add DLT_CAN_SOCKETCAN
DLT: Add Solaris ipnet
Don't check for DLT_IPNET if it's not defined
Add link-layer types for Fibre Channel FC-2
Add link-layer types for Wireless HART
Add link-layer types for AOS
Add link-layer types for DECT
Autoconf fixes (AIX, HP-UX, OSF/1, Tru64 cleanups)
Install headers unconditionally, and include vlan.h/bluetooth.h if
enabled
Autoconf fixes+cleanup
Support enabling/disabling bluetooth (--{en,dis}able-bluetooth)
Support disabling SITA support (--without-sita)
Return -1 on failure to create packet ring (if supported but
creation failed)
Fix handling of 'any' device, so that it can be opened, and no longer
attempt to open it in Monitor mode
Add support for snapshot length for USB Memory-Mapped Interface
Fix configure and build on recent Linux kernels
Fix memory-mapped Linux capture to support pcap_next() and
pcap_next_ex()
Fixes for Linux USB capture
DLT: Add DLT_LINUX_EVDEV
DLT: Add DLT_GSMTAP_UM
DLT: Add DLT_GSMTAP_ABIS
2010-10-28 16:22:13 +00:00
|
|
|
pcap_cleanup_live_common(p);
|
2009-03-21 20:43:56 +00:00
|
|
|
return (PCAP_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
pcap_t *
|
2017-02-12 07:04:44 +00:00
|
|
|
pcap_create_interface(const char *device _U_, char *ebuf)
|
2009-03-21 20:43:56 +00:00
|
|
|
{
|
|
|
|
pcap_t *p;
|
|
|
|
|
2017-02-12 07:04:44 +00:00
|
|
|
p = pcap_create_common(ebuf, sizeof (struct pcap_snit));
|
2009-03-21 20:43:56 +00:00
|
|
|
if (p == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
p->activate_op = pcap_activate_snit;
|
|
|
|
return (p);
|
1996-08-19 20:36:34 +00:00
|
|
|
}
|
|
|
|
|
2017-02-12 07:04:44 +00:00
|
|
|
/*
|
|
|
|
* XXX - there's probably a NIOCBIND error that means "that device
|
|
|
|
* doesn't support NIT"; if so, we should try an NIOCBIND and use that.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
can_be_bound(const char *name _U_)
|
|
|
|
{
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
1996-08-19 20:36:34 +00:00
|
|
|
int
|
2004-03-31 09:07:39 +00:00
|
|
|
pcap_platform_finddevs(pcap_if_t **alldevsp, char *errbuf)
|
1996-08-19 20:36:34 +00:00
|
|
|
{
|
2017-02-12 07:04:44 +00:00
|
|
|
return (pcap_findalldevs_interfaces(alldevsp, errbuf, can_be_bound));
|
1996-08-19 20:36:34 +00:00
|
|
|
}
|