2004-03-31 09:07:39 +00:00
|
|
|
/*
|
2007-10-16 02:02:02 +00:00
|
|
|
* Copyright (c) 2002 - 2005 NetGroup, Politecnico di Torino (Italy)
|
|
|
|
* Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)
|
2004-03-31 09:07:39 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2007-10-16 02:02:02 +00:00
|
|
|
* 3. Neither the name of the Politecnico di Torino, CACE Technologies
|
|
|
|
* nor the names of its contributors may be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
2004-03-31 09:07:39 +00:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] _U_ =
|
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/fad-win32.c,v 1.15 2007-09-25 20:34:36 guy Exp $ (LBL)";
|
2004-03-31 09:07:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <pcap.h>
|
|
|
|
#include <pcap-int.h>
|
2007-10-16 02:02:02 +00:00
|
|
|
#include <Packet32.h>
|
2004-03-31 09:07:39 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add an entry to the list of addresses for an interface.
|
|
|
|
* "curdev" is the entry for that interface.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
add_addr_to_list(pcap_if_t *curdev, struct sockaddr *addr,
|
|
|
|
struct sockaddr *netmask, struct sockaddr *broadaddr,
|
|
|
|
struct sockaddr *dstaddr, char *errbuf)
|
|
|
|
{
|
|
|
|
pcap_addr_t *curaddr, *prevaddr, *nextaddr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate the new entry and fill it in.
|
|
|
|
*/
|
|
|
|
curaddr = (pcap_addr_t*)malloc(sizeof(pcap_addr_t));
|
|
|
|
if (curaddr == NULL) {
|
|
|
|
(void)snprintf(errbuf, PCAP_ERRBUF_SIZE,
|
|
|
|
"malloc: %s", pcap_strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
curaddr->next = NULL;
|
|
|
|
if (addr != NULL) {
|
|
|
|
curaddr->addr = (struct sockaddr*)dup_sockaddr(addr, sizeof(struct sockaddr_storage));
|
|
|
|
if (curaddr->addr == NULL) {
|
|
|
|
(void)snprintf(errbuf, PCAP_ERRBUF_SIZE,
|
|
|
|
"malloc: %s", pcap_strerror(errno));
|
|
|
|
free(curaddr);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
curaddr->addr = NULL;
|
|
|
|
|
|
|
|
if (netmask != NULL) {
|
|
|
|
curaddr->netmask = (struct sockaddr*)dup_sockaddr(netmask, sizeof(struct sockaddr_storage));
|
|
|
|
if (curaddr->netmask == NULL) {
|
|
|
|
(void)snprintf(errbuf, PCAP_ERRBUF_SIZE,
|
|
|
|
"malloc: %s", pcap_strerror(errno));
|
|
|
|
free(curaddr);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
curaddr->netmask = NULL;
|
|
|
|
|
|
|
|
if (broadaddr != NULL) {
|
|
|
|
curaddr->broadaddr = (struct sockaddr*)dup_sockaddr(broadaddr, sizeof(struct sockaddr_storage));
|
|
|
|
if (curaddr->broadaddr == NULL) {
|
|
|
|
(void)snprintf(errbuf, PCAP_ERRBUF_SIZE,
|
|
|
|
"malloc: %s", pcap_strerror(errno));
|
|
|
|
free(curaddr);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
curaddr->broadaddr = NULL;
|
|
|
|
|
|
|
|
if (dstaddr != NULL) {
|
|
|
|
curaddr->dstaddr = (struct sockaddr*)dup_sockaddr(dstaddr, sizeof(struct sockaddr_storage));
|
|
|
|
if (curaddr->dstaddr == NULL) {
|
|
|
|
(void)snprintf(errbuf, PCAP_ERRBUF_SIZE,
|
|
|
|
"malloc: %s", pcap_strerror(errno));
|
|
|
|
free(curaddr);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
curaddr->dstaddr = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the end of the list of addresses.
|
|
|
|
*/
|
|
|
|
for (prevaddr = curdev->addresses; prevaddr != NULL; prevaddr = nextaddr) {
|
|
|
|
nextaddr = prevaddr->next;
|
|
|
|
if (nextaddr == NULL) {
|
|
|
|
/*
|
|
|
|
* This is the end of the list.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prevaddr == NULL) {
|
|
|
|
/*
|
|
|
|
* The list was empty; this is the first member.
|
|
|
|
*/
|
|
|
|
curdev->addresses = curaddr;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* "prevaddr" is the last member of the list; append
|
|
|
|
* this member to it.
|
|
|
|
*/
|
|
|
|
prevaddr->next = curaddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
pcap_add_if_win32(pcap_if_t **devlist, char *name, const char *desc,
|
|
|
|
char *errbuf)
|
|
|
|
{
|
|
|
|
pcap_if_t *curdev;
|
|
|
|
npf_if_addr if_addrs[MAX_NETWORK_ADDRESSES];
|
|
|
|
LONG if_addr_size;
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
if_addr_size = MAX_NETWORK_ADDRESSES;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add an entry for this interface, with no addresses.
|
|
|
|
*/
|
2005-05-29 17:46:52 +00:00
|
|
|
if (add_or_find_if(&curdev, devlist, name, 0, desc, errbuf) == -1) {
|
2004-03-31 09:07:39 +00:00
|
|
|
/*
|
|
|
|
* Failure.
|
|
|
|
*/
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the list of addresses for the interface.
|
|
|
|
*/
|
|
|
|
if (!PacketGetNetInfoEx((void *)name, if_addrs, &if_addr_size)) {
|
|
|
|
/*
|
|
|
|
* Failure.
|
|
|
|
*
|
|
|
|
* We don't return an error, because this can happen with
|
|
|
|
* NdisWan interfaces, and we want to supply them even
|
|
|
|
* if we can't supply their addresses.
|
|
|
|
*
|
|
|
|
* We return an entry with an empty address list.
|
|
|
|
*/
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now add the addresses.
|
|
|
|
*/
|
|
|
|
while (if_addr_size-- > 0) {
|
|
|
|
/*
|
|
|
|
* "curdev" is an entry for this interface; add an entry for
|
|
|
|
* this address to its list of addresses.
|
|
|
|
*/
|
|
|
|
if(curdev == NULL)
|
|
|
|
break;
|
|
|
|
res = add_addr_to_list(curdev,
|
|
|
|
(struct sockaddr *)&if_addrs[if_addr_size].IPAddress,
|
|
|
|
(struct sockaddr *)&if_addrs[if_addr_size].SubnetMask,
|
|
|
|
(struct sockaddr *)&if_addrs[if_addr_size].Broadcast,
|
|
|
|
NULL,
|
|
|
|
errbuf);
|
|
|
|
if (res == -1) {
|
|
|
|
/*
|
|
|
|
* Failure.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get a list of all interfaces that are up and that we can open.
|
|
|
|
* Returns -1 on error, 0 otherwise.
|
|
|
|
* The list, as returned through "alldevsp", may be null if no interfaces
|
|
|
|
* were up and could be opened.
|
|
|
|
*
|
|
|
|
* Win32 implementation, based on WinPcap
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
pcap_findalldevs(pcap_if_t **alldevsp, char *errbuf)
|
|
|
|
{
|
|
|
|
pcap_if_t *devlist = NULL;
|
|
|
|
int ret = 0;
|
|
|
|
const char *desc;
|
2005-05-29 17:46:52 +00:00
|
|
|
char *AdaptersName;
|
|
|
|
ULONG NameLength;
|
2004-03-31 09:07:39 +00:00
|
|
|
char *name;
|
|
|
|
|
2007-10-16 02:02:02 +00:00
|
|
|
if (!PacketGetAdapterNames(NULL, &NameLength))
|
2006-09-04 19:43:23 +00:00
|
|
|
{
|
2007-10-16 02:02:02 +00:00
|
|
|
DWORD last_error = GetLastError();
|
|
|
|
|
|
|
|
if (last_error != ERROR_INSUFFICIENT_BUFFER)
|
|
|
|
{
|
|
|
|
snprintf(errbuf, PCAP_ERRBUF_SIZE,
|
|
|
|
"PacketGetAdapterNames: %s",
|
|
|
|
pcap_win32strerror());
|
|
|
|
return (-1);
|
|
|
|
}
|
2006-09-04 19:43:23 +00:00
|
|
|
}
|
2005-05-29 17:46:52 +00:00
|
|
|
|
|
|
|
if (NameLength > 0)
|
|
|
|
AdaptersName = (char*) malloc(NameLength);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*alldevsp = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (AdaptersName == NULL)
|
|
|
|
{
|
|
|
|
snprintf(errbuf, PCAP_ERRBUF_SIZE, "Cannot allocate enough memory to list the adapters.");
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2004-03-31 09:07:39 +00:00
|
|
|
if (!PacketGetAdapterNames(AdaptersName, &NameLength)) {
|
|
|
|
snprintf(errbuf, PCAP_ERRBUF_SIZE,
|
|
|
|
"PacketGetAdapterNames: %s",
|
|
|
|
pcap_win32strerror());
|
2005-05-29 17:46:52 +00:00
|
|
|
free(AdaptersName);
|
2004-03-31 09:07:39 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "PacketGetAdapterNames()" returned a list of
|
|
|
|
* null-terminated ASCII interface name strings,
|
|
|
|
* terminated by a null string, followed by a list
|
|
|
|
* of null-terminated ASCII interface description
|
|
|
|
* strings, terminated by a null string.
|
|
|
|
* This means there are two ASCII nulls at the end
|
|
|
|
* of the first list.
|
|
|
|
*
|
|
|
|
* Find the end of the first list; that's the
|
|
|
|
* beginning of the second list.
|
|
|
|
*/
|
|
|
|
desc = &AdaptersName[0];
|
|
|
|
while (*desc != '\0' || *(desc + 1) != '\0')
|
|
|
|
desc++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Found it - "desc" points to the first of the two
|
|
|
|
* nulls at the end of the list of names, so the
|
|
|
|
* first byte of the list of descriptions is two bytes
|
|
|
|
* after it.
|
|
|
|
*/
|
|
|
|
desc += 2;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Loop over the elements in the first list.
|
|
|
|
*/
|
|
|
|
name = &AdaptersName[0];
|
|
|
|
while (*name != '\0') {
|
2005-05-29 17:46:52 +00:00
|
|
|
/*
|
|
|
|
* Add an entry for this interface.
|
|
|
|
*/
|
|
|
|
if (pcap_add_if_win32(&devlist, name, desc, errbuf) == -1) {
|
2004-03-31 09:07:39 +00:00
|
|
|
/*
|
2005-05-29 17:46:52 +00:00
|
|
|
* Failure.
|
|
|
|
*/
|
2004-03-31 09:07:39 +00:00
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
name += strlen(name) + 1;
|
|
|
|
desc += strlen(desc) + 1;
|
|
|
|
}
|
2009-03-21 20:43:56 +00:00
|
|
|
|
|
|
|
if (ret != -1) {
|
|
|
|
/*
|
|
|
|
* We haven't had any errors yet; do any platform-specific
|
|
|
|
* operations to add devices.
|
|
|
|
*/
|
|
|
|
if (pcap_platform_finddevs(&devlist, errbuf) < 0)
|
|
|
|
ret = -1;
|
|
|
|
}
|
2004-03-31 09:07:39 +00:00
|
|
|
|
|
|
|
if (ret == -1) {
|
2005-05-29 17:46:52 +00:00
|
|
|
/*
|
|
|
|
* We had an error; free the list we've been constructing.
|
|
|
|
*/
|
|
|
|
if (devlist != NULL) {
|
2004-03-31 09:07:39 +00:00
|
|
|
pcap_freealldevs(devlist);
|
|
|
|
devlist = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*alldevsp = devlist;
|
2005-05-29 17:46:52 +00:00
|
|
|
free(AdaptersName);
|
2004-03-31 09:07:39 +00:00
|
|
|
return (ret);
|
|
|
|
}
|