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
|
|
|
.\" @(#) $Header: /tcpdump/master/libpcap/pcap_findalldevs.3pcap,v 1.3 2008-04-06 02:53:22 guy Exp $
|
2009-03-21 20:43:56 +00:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1994, 1996, 1997
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
2012-01-31 17:22:07 +00:00
|
|
|
.TH PCAP_FINDALLDEVS 3PCAP "22 August 2010"
|
2009-03-21 20:43:56 +00:00
|
|
|
.SH NAME
|
2012-01-31 17:22:07 +00:00
|
|
|
pcap_findalldevs, pcap_freealldevs \- get a list of capture devices, and
|
|
|
|
free that list
|
2009-03-21 20:43:56 +00:00
|
|
|
.SH SYNOPSIS
|
|
|
|
.nf
|
|
|
|
.ft B
|
|
|
|
#include <pcap/pcap.h>
|
|
|
|
.ft
|
|
|
|
.LP
|
|
|
|
.nf
|
|
|
|
.ft B
|
|
|
|
char errbuf[PCAP_ERRBUF_SIZE];
|
|
|
|
.ft
|
|
|
|
.LP
|
|
|
|
.ft B
|
|
|
|
int pcap_findalldevs(pcap_if_t **alldevsp, char *errbuf);
|
2012-01-31 17:22:07 +00:00
|
|
|
void pcap_freealldevs(pcap_if_t *alldevs);
|
2009-03-21 20:43:56 +00:00
|
|
|
.ft
|
|
|
|
.fi
|
|
|
|
.SH DESCRIPTION
|
|
|
|
.B pcap_findalldevs()
|
|
|
|
constructs a list of network devices that can be opened with
|
|
|
|
.B pcap_create()
|
|
|
|
and
|
|
|
|
.B pcap_activate()
|
|
|
|
or with
|
|
|
|
.BR pcap_open_live() .
|
|
|
|
(Note that there may be network devices that cannot be opened by the
|
|
|
|
process calling
|
|
|
|
.BR pcap_findalldevs() ,
|
2012-01-31 17:22:07 +00:00
|
|
|
because, for example, that process does not have sufficient privileges
|
2009-03-21 20:43:56 +00:00
|
|
|
to open them for capturing; if so, those devices will not appear on the
|
|
|
|
list.)
|
2012-01-31 17:22:07 +00:00
|
|
|
If
|
|
|
|
.B pcap_findalldevs()
|
|
|
|
succeeds, the pointer pointed to by
|
2009-03-21 20:43:56 +00:00
|
|
|
.I alldevsp
|
2012-01-31 17:22:07 +00:00
|
|
|
is set to point to the first element of the list, or to
|
|
|
|
.B NULL
|
|
|
|
if no devices were found (this is considered success).
|
|
|
|
Each element of the list is of type
|
2009-03-21 20:43:56 +00:00
|
|
|
.BR pcap_if_t ,
|
|
|
|
and has the following members:
|
|
|
|
.RS
|
|
|
|
.TP
|
|
|
|
.B next
|
|
|
|
if not
|
|
|
|
.BR NULL ,
|
|
|
|
a pointer to the next element in the list;
|
|
|
|
.B NULL
|
|
|
|
for the last element of the list
|
|
|
|
.TP
|
|
|
|
.B name
|
|
|
|
a pointer to a string giving a name for the device to pass to
|
|
|
|
.B pcap_open_live()
|
|
|
|
.TP
|
|
|
|
.B description
|
|
|
|
if not
|
|
|
|
.BR NULL ,
|
|
|
|
a pointer to a string giving a human-readable description of the device
|
|
|
|
.TP
|
|
|
|
.B addresses
|
2012-01-31 17:22:07 +00:00
|
|
|
a pointer to the first element of a list of network addresses for the
|
|
|
|
device,
|
|
|
|
or
|
|
|
|
.B NULL
|
|
|
|
if the device has no addresses
|
2009-03-21 20:43:56 +00:00
|
|
|
.TP
|
|
|
|
.B flags
|
2012-01-31 17:22:07 +00:00
|
|
|
device flags:
|
2009-03-21 20:43:56 +00:00
|
|
|
.RS
|
|
|
|
.TP
|
|
|
|
.B PCAP_IF_LOOPBACK
|
2012-01-31 17:22:07 +00:00
|
|
|
set if the device is a loopback interface
|
2009-03-21 20:43:56 +00:00
|
|
|
.RE
|
|
|
|
.RE
|
|
|
|
.PP
|
|
|
|
Each element of the list of addresses is of type
|
|
|
|
.BR pcap_addr_t ,
|
|
|
|
and has the following members:
|
|
|
|
.RS
|
|
|
|
.TP
|
|
|
|
.B next
|
|
|
|
if not
|
|
|
|
.BR NULL ,
|
|
|
|
a pointer to the next element in the list;
|
|
|
|
.B NULL
|
|
|
|
for the last element of the list
|
|
|
|
.TP
|
|
|
|
.B addr
|
|
|
|
a pointer to a
|
|
|
|
.B "struct sockaddr"
|
|
|
|
containing an address
|
|
|
|
.TP
|
|
|
|
.B netmask
|
|
|
|
if not
|
|
|
|
.BR NULL ,
|
|
|
|
a pointer to a
|
|
|
|
.B "struct sockaddr"
|
|
|
|
that contains the netmask corresponding to the address pointed to by
|
|
|
|
.B addr
|
|
|
|
.TP
|
|
|
|
.B broadaddr
|
|
|
|
if not
|
|
|
|
.BR NULL ,
|
|
|
|
a pointer to a
|
|
|
|
.B "struct sockaddr"
|
|
|
|
that contains the broadcast address corresponding to the address pointed
|
|
|
|
to by
|
|
|
|
.BR addr ;
|
2012-01-31 17:22:07 +00:00
|
|
|
may be null if the device doesn't support broadcasts
|
2009-03-21 20:43:56 +00:00
|
|
|
.TP
|
|
|
|
.B dstaddr
|
|
|
|
if not
|
|
|
|
.BR NULL ,
|
|
|
|
a pointer to a
|
|
|
|
.B "struct sockaddr"
|
|
|
|
that contains the destination address corresponding to the address pointed
|
|
|
|
to by
|
|
|
|
.BR addr ;
|
2012-01-31 17:22:07 +00:00
|
|
|
may be null if the device isn't a point-to-point interface
|
2009-03-21 20:43:56 +00:00
|
|
|
.RE
|
|
|
|
.PP
|
2012-01-31 17:22:07 +00:00
|
|
|
Note that the addresses in the list of addresses might be IPv4
|
|
|
|
addresses, IPv6 addresses, or some other type of addresses, so you must
|
|
|
|
check the
|
2009-03-21 20:43:56 +00:00
|
|
|
.B sa_family
|
|
|
|
member of the
|
|
|
|
.B "struct sockaddr"
|
2012-01-31 17:22:07 +00:00
|
|
|
before interpreting the contents of the address; do not assume that the
|
|
|
|
addresses are all IPv4 addresses, or even all IPv4 or IPv6 addresses.
|
|
|
|
IPv4 addresses have the value
|
|
|
|
.BR AF_INET ,
|
|
|
|
IPv6 addresses have the value
|
|
|
|
.B AF_INET6
|
|
|
|
(which older operating systems that don't support IPv6 might not
|
|
|
|
define), and other addresses have other values. Whether other addresses
|
|
|
|
are returned, and what types they might have is platform-dependent.
|
|
|
|
For IPv4 addresses, the
|
|
|
|
.B "struct sockaddr"
|
|
|
|
pointer can be interpreted as if it pointed to a
|
|
|
|
.BR "struct sockaddr_in" ;
|
|
|
|
for IPv6 addresses, it can be interpreted as if it pointed to a
|
|
|
|
.BR "struct sockaddr_in6".
|
2009-03-21 20:43:56 +00:00
|
|
|
.PP
|
|
|
|
The list of devices must be freed with
|
2012-01-31 17:22:07 +00:00
|
|
|
.BR pcap_freealldevs() ,
|
|
|
|
whch frees the list pointed to by
|
|
|
|
.IR alldevs .
|
2009-03-21 20:43:56 +00:00
|
|
|
.SH RETURN VALUE
|
|
|
|
.B pcap_findalldevs()
|
2012-01-31 17:22:07 +00:00
|
|
|
returns 0 on success and \-1 on failure; as indicated, finding no
|
|
|
|
devices is considered success, rather than failure, so 0 will be
|
|
|
|
returned in that case.
|
2009-03-21 20:43:56 +00:00
|
|
|
If \-1 is returned,
|
|
|
|
.I errbuf
|
|
|
|
is filled in with an appropriate error message.
|
|
|
|
.I errbuf
|
|
|
|
is assumed to be able to hold at least
|
|
|
|
.B PCAP_ERRBUF_SIZE
|
|
|
|
chars.
|
|
|
|
.SH SEE ALSO
|
|
|
|
pcap(3PCAP), pcap_create(3PCAP), pcap_activate(3PCAP),
|
2012-01-31 17:22:07 +00:00
|
|
|
pcap_open_live(3PCAP)
|