Main Page   Modules   Data Structures   File List   Data Fields   Globals   Related Pages  

pcap.c File Reference

#include <pcap-stdinc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include "pcap-int.h"

Go to the source code of this file.

Data Structures

struct  dlt_choice
struct  pkt_for_fakecallback
struct  singleton

Defines

#define DLT_CHOICE(code, description)   { #code, description, code }
#define DLT_CHOICE_SENTINEL   { NULL, NULL, 0 }

Functions

int pcap_dispatch (pcap_t *p, int cnt, pcap_handler callback, u_char *user)
 It collects a group of packets.

int pcap_read (pcap_t *p, int cnt, pcap_handler callback, u_char *user)
int pcap_loop (pcap_t *p, int cnt, pcap_handler callback, u_char *user)
 It collects a group of packets.

void pcap_oneshot (u_char *userData, const struct pcap_pkthdr *h, const u_char *pkt)
const u_char * pcap_next (pcap_t *p, struct pcap_pkthdr *h)
 It returns the next available packet.

void pcap_fakecallback (u_char *userData, const struct pcap_pkthdr *h, const u_char *pkt)
int pcap_next_ex (pcap_t *p, struct pcap_pkthdr **pkt_header, const u_char **pkt_data)
void pcap_breakloop (pcap_t *p)
int pcap_datalink (pcap_t *p)
 Returns the link layer of an adapter.

int pcap_list_datalinks (pcap_t *p, int **dlt_buffer)
int pcap_set_datalink (pcap_t *p, int dlt)
int pcap_strcasecmp (const char *s1, const char *s2)
int pcap_datalink_name_to_val (const char *name)
const char * pcap_datalink_val_to_name (int dlt)
const char * pcap_datalink_val_to_description (int dlt)
int pcap_snapshot (pcap_t *p)
 Returns the dimension of the packet portion (in bytes) that is delivered to the application.

int pcap_is_swapped (pcap_t *p)
 returns true if the current savefile uses a different byte order than the current system.

int pcap_major_version (pcap_t *p)
 returns the major version number of the pcap library used to write the savefile.

int pcap_minor_version (pcap_t *p)
 returns the minor version number of the pcap library used to write the savefile.

FILE * pcap_file (pcap_t *p)
 It returns the stdio stream of an offile capture.

int pcap_fileno (pcap_t *p)
 It returns the file descriptor of a capture device.

void pcap_perror (pcap_t *p, char *prefix)
 prints the text of the last pcap library error on stderr, prefixed by prefix.

char * pcap_geterr (pcap_t *p)
 returns the error text pertaining to the last pcap library error.

int pcap_getnonblock (pcap_t *p, char *errbuf)
 Gets the "non-blocking" state of an interface.

int pcap_setnonblock (pcap_t *p, int nonblock, char *errbuf)
 Switches between blocking and nonblocking mode.

char * pcap_win32strerror (void)
char * pcap_strerror (int errnum)
 pcap_strerror() is provided in case strerror() isn't available.

int pcap_setfilter (pcap_t *p, struct bpf_program *fp)
 Associates a filter to a capture.

int pcap_stats (pcap_t *p, struct pcap_stat *ps)
 It returns statistics on current capture.

int pcap_stats_dead (pcap_t *p, struct pcap_stat *ps)
void pcap_close_dead (pcap_t *p)
pcap_tpcap_open_dead (int linktype, int snaplen)
 It creates a pcap_t structure without starting a capture.

void pcap_close (pcap_t *p)
 closes the files associated with p and deallocates resources.

const char * pcap_lib_version (void)

Variables

const char rcsid[] _U_
dlt_choice dlt_choices []
const u_char charmap []
const char wpcap_version_string [] = "3.0"
const char pcap_version_string_fmt []
const char pcap_version_string_packet_dll_fmt []
char * pcap_version_string


Define Documentation

#define DLT_CHOICE code,
description       { #code, description, code }
 

Definition at line 340 of file pcap.c.

#define DLT_CHOICE_SENTINEL   { NULL, NULL, 0 }
 

Definition at line 341 of file pcap.c.


Function Documentation

void pcap_breakloop pcap_t   p
 

Definition at line 230 of file pcap.c.

void pcap_close pcap_t   p
 

closes the files associated with p and deallocates resources.

See also:
pcap_open_live(), pcap_open_offline(), pcap_open_dead()

Definition at line 728 of file pcap.c.

References pcap_freecode().

Referenced by daemon_endcapture(), daemon_opensource(), daemon_serviceloop(), daemon_startcapture(), pcap_compile_nopcap(), pcap_findalldevs_ex(), and pcap_opensource_remote().

void pcap_close_dead pcap_t   p [static]
 

Definition at line 706 of file pcap.c.

Referenced by pcap_open_dead().

int pcap_datalink pcap_t   p
 

Returns the link layer of an adapter.

pcap_datalink() returns the link layer type; link layer types it can return include:

  • DLT_NULL BSD loopback encapsulation; the link layer header is a 4-byte field, in host byte order, containing a PF_ value from socket.h for the network-layer protocol of the packet Note that "host byte order" is the byte order of the machine on which the packets are captured, and the PF_ values are for the OS of the machine on which the packets are captured; if a live capture is being done, "host byte order" is the byte order of the machine capturing the packets, and the PF_ values are those of the OS of the machine capturing the packets, but if a "savefile" is being read, the byte order and PF_ values are not necessarily those of the machine reading the capture file.
  • DLT_EN10MB Ethernet (10Mb, 100Mb, 1000Mb, and up)
  • DLT_IEEE802 IEEE 802.5 Token Ring
  • DLT_ARCNET ARCNET SLIP; the link layer header contains, in order: a 1-byte flag, which is 0 for packets received by the machine and 1 for packets sent by the machine; a 1-byte field, the upper 4 bits of which indicate the type of packet, as per RFC 1144:
    • 0x40 an unmodified IP datagram (TYPE_IP);
    • 0x70 an uncompressed-TCP IP datagram (UNCOMPRESSED_TCP), with that byte being the first byte of the raw IP header on the wire, containing the connection number in the protocol field;
    • 0x80 a compressed-TCP IP datagram (COMPRESSED_TCP), with that byte being the first byte of the compressed TCP/IP datagram header; for UNCOMPRESSED_TCP, the rest of the modified IP header, and for COMPRESSED_TCP, the compressed TCP/IP datagram header; for a total of 16 bytes; the uncompressed IP datagram follows the header
  • DLT_PPP PPP; if the first 2 bytes are 0xff and 0x03, it's PPP in HDLC-like framing, with the PPP header following those two bytes, otherwise it's PPP without framing, and the packet begins with the PPP header
  • DLT_FDDI FDDI
  • DLT_ATM_RFC1483 RFC 1483 LLC/SNAP-encapsulated ATM; the packet begins with an IEEE 802.2 LLC header
  • DLT_RAW raw IP; the packet begins with an IP header
  • DLT_PPP_SERIAL PPP in HDLC-like framing, as per RFC 1662, or Cisco PPP with HDLC framing, as per section or 0x8F for Cisco PPP with HDLC framing
  • DLT_PPP_ETHER PPPoE; the packet begins with a PPPoE header, as per RFC 2516
  • DLT_C_HDLC Cisco PPP with HDLC framing, as per section 4.3.1 of RFC 1547
  • DLT_IEEE802_11 IEEE 802.11 wireless LAN
  • DLT_LOOP OpenBSD loopback encapsulation; the link layer header is a 4-byte field, in network byte order, containing a PF_ value from OpenBSD's socket.h for the network-layer protocol of the packet Note that, if a "savefile" is being read, those PF_ values are not necessarily those of the machine reading the capture file.
  • DLT_LINUX_SLL Linux "cooked" capture encapsulation; the link layer header contains, in order: a 2-byte "packet type", in network byte order, which is one of:
    • 0 packet was sent to us by somebody else
    • 1 packet was broadcast by somebody else
    • 2 packet was multicast, but not broadcast, by somebody else
    • 3 packet was sent by somebody else to somebody else
    • 4 packet was sent by us a 2-byte field, in network byte order, containing a Linux ARPHRD_ value for the link layer device type; a 2-byte field, in network byte order, containing the length of the link layer address of the sender of the packet (which could be 0); bytes of the link layer header (if there are more than 8 bytes, only the first 8 are present); a 2-byte field containing an Ethernet protocol type, in network byte order, or containing 1 for Novell 802.3 frames without an 802.2 LLC header or 4 for frames beginning with an 802.2 LLC header.
  • DLT_LTALK Apple LocalTalk; the packet begins with an AppleTalk LLAP header

Definition at line 236 of file pcap.c.

Referenced by pcap_compile().

int pcap_datalink_name_to_val const char *    name
 

Definition at line 462 of file pcap.c.

References dlt_choice::dlt, dlt_choices, dlt_choice::name, and pcap_strcasecmp().

const char* pcap_datalink_val_to_description int    dlt
 

Definition at line 487 of file pcap.c.

References dlt_choice::description, dlt_choice::dlt, dlt_choices, and dlt_choice::name.

const char* pcap_datalink_val_to_name int    dlt
 

Definition at line 475 of file pcap.c.

References dlt_choice::dlt, dlt_choices, and dlt_choice::name.

Referenced by pcap_set_datalink().

int pcap_dispatch pcap_t   p,
int    cnt,
pcap_handler    callback,
u_char *    user
 

It collects a group of packets.

Deprecated:
Use the pcap_next_ex() instead.
It returns when cnt packets have been received or when the timeout set with pcap_open_live() expires.

pcap_dispatch() is used to collect and process packets. cnt specifies the maximum number of packets to process before returning. This is not a minimum number; when reading a live capture, only one bufferful of packets is read at a time, so fewer than cnt packets may be processed. A cnt of -1 processes all the packets received in one buffer when reading a live capture, or all the packets in the file when reading a "savefile". callback specifies a routine to be called with three arguments: a u_char pointer which is passed in from pcap_dispatch(), a pointer packet data.

The number of packets read is returned. 0 is returned if no packets were read from a live capture (if, for example, they were discarded because they didn't pass the packet filter, or if, on platforms that support a read timeout that starts before any packets arrive, the timeout expires before any packets arrive, or if the file descriptor for the capture device is in non-blocking mode and no packets were available to be read) or if no more packets are available in a "savefile." A return of -1 indicates an error in which case pcap_perror() or pcap_geterr() may be used to display the error text.

Note:
when reading a live capture, pcap_dispatch() will not necessarily return when the read times out; on some platforms, the read timeout isn't supported, and, on other platforms, the timer doesn't start until at least one packet arrives. This means that the read timeout should NOT be used in, for example, an interactive application, to allow the packet capture loop to "poll" for user input periodically, as there's no guarantee that pcap_dispatch() will return after the timeout expires.
See also:
pcap_loop(), pcap_next(), pcap_open_live(), pcap_open_offline(), pcap_handler

Definition at line 75 of file pcap.c.

Referenced by pcap_next().

void pcap_fakecallback u_char *    userData,
const struct pcap_pkthdr   h,
const u_char *    pkt
[static]
 

Definition at line 152 of file pcap.c.

References pkt_for_fakecallback::hdr, and pkt_for_fakecallback::pkt.

FILE* pcap_file pcap_t   p
 

It returns the stdio stream of an offile capture.

Deprecated:
Use the pcap_dump() instead.
pcap_file() returns the standard I/O stream of the "savefile", if a "savefile" was opened with pcap_open_offline(), or NULL, if a network device was opened with pcap_open_live().

See also:
pcap_open_offline(), pcap_open_live()

Definition at line 523 of file pcap.c.

int pcap_fileno pcap_t   p
 

It returns the file descriptor of a capture device.

Deprecated:
This function has different behaviours in Unix and Win32.
pcap_fileno() returns the file descriptor number from which captured packets are read, if a network device was opened with pcap_open_live(), or -1, if a "savefile" was opened with pcap_open_offline().

See also:
pcap_open_offline(), pcap_open_live()

Definition at line 529 of file pcap.c.

char* pcap_geterr pcap_t   p
 

returns the error text pertaining to the last pcap library error.

Note:
the pointer it returns will no longer point to a valid error message string after the pcap_t passed to it is closed; you must use or copy the string before closing the pcap_t.
See also:
pcap_perror()

Definition at line 561 of file pcap.c.

Referenced by bpf_error(), and daemon_thrdatamain().

int pcap_getnonblock pcap_t   p,
char *    errbuf
 

Gets the "non-blocking" state of an interface.

pcap_getnonblock() returns the current "non-blocking" state of the capture descriptor; it always returns 0 on "savefiles". If there is an error, -1 is returned and errbuf is filled in with an appropriate error message.

See also:
pcap_setnonblock()

Definition at line 567 of file pcap.c.

int pcap_is_swapped pcap_t   p
 

returns true if the current savefile uses a different byte order than the current system.

Definition at line 505 of file pcap.c.

const char* pcap_lib_version void   
 

Definition at line 763 of file pcap.c.

References PacketGetVersion(), pcap_version_string, pcap_version_string_fmt, and pcap_version_string_packet_dll_fmt.

int pcap_list_datalinks pcap_t   p,
int **    dlt_buffer
 

Definition at line 242 of file pcap.c.

References pcap_strerror(), and snprintf.

int pcap_loop pcap_t   p,
int    cnt,
pcap_handler    callback,
u_char *    user
 

It collects a group of packets.

Deprecated:
Use the pcap_next_ex() instead.
Returns when cnt packets have been received, but doesn't respect the timeout set with pcap_open_live(), therefore it can block forever.

pcap_loop() is similar to pcap_dispatch() except it keeps reading packets until cnt packets are processed or an error occurs. It does not return when live read timeouts occur. Rather, specifying a non-zero read timeout to pcap_open_live() and then calling pcap_dispatch() allows the reception and processing of any packets that arrive when the timeout occurs. A negative cnt causes pcap_loop() to loop forever (or at least until an error occur s).

See also:
pcap_dispatch(), pcap_next(), pcap_open_live(), pcap_open_offline(), pcap_handler

Definition at line 92 of file pcap.c.

References n, and pcap_offline_read().

Referenced by main().

int pcap_major_version pcap_t   p
 

returns the major version number of the pcap library used to write the savefile.

See also:
pcap_minor_version()

Definition at line 511 of file pcap.c.

int pcap_minor_version pcap_t   p
 

returns the minor version number of the pcap library used to write the savefile.

See also:
pcap_major_version()

Definition at line 517 of file pcap.c.

const u_char* pcap_next pcap_t   p,
struct pcap_pkthdr   h
 

It returns the next available packet.

Deprecated:
Use the pcap_next_ex() instead.
pcap_next() reads the next packet (by calling pcap_dispatch() with a cnt of 1) and returns a u_char pointer to the data in that packet. (The pcap_pkthdr struct for that packet is not supplied.)

See also:
pcap_dispatch(), pcap_loop()

Definition at line 136 of file pcap.c.

References singleton::hdr, pcap_dispatch(), and singleton::pkt.

int pcap_next_ex pcap_t   p,
struct pcap_pkthdr **    pkt_header,
const u_char **    pkt_data
 

Definition at line 162 of file pcap.c.

References pkt_for_fakecallback::hdr, pcap_offline_read(), pcap_read_nocb_remote(), pcap_startcapture_remote(), and pkt_for_fakecallback::pkt.

Referenced by daemon_thrdatamain(), and main().

void pcap_oneshot u_char *    userData,
const struct pcap_pkthdr   h,
const u_char *    pkt
[static]
 

Definition at line 128 of file pcap.c.

References singleton::hdr, and singleton::pkt.

pcap_t* pcap_open_dead int    linktype,
int    snaplen
 

It creates a pcap_t structure without starting a capture.

Deprecated:
Use the pcap_open() instead.
pcap_open_dead() is used for creating a pcap_t structure to use when calling the other functions in libpcap. It is typically used when just using libpcap for compiling BPF code.

See also:
pcap_open_offline(), pcap_open_live(), pcap_findalldevs(), pcap_compile(), pcap_setfilter(), pcap_close()

Definition at line 712 of file pcap.c.

References pcap_close_dead(), pcap_stats_dead(), and pcap_t.

Referenced by pcap_compile_nopcap().

void pcap_perror pcap_t   p,
char *    prefix
 

prints the text of the last pcap library error on stderr, prefixed by prefix.

See also:
pcap_geterr()

Definition at line 555 of file pcap.c.

int pcap_read pcap_t   p,
int    cnt,
pcap_handler    callback,
u_char *    user
 

Definition at line 85 of file pcap.c.

int pcap_set_datalink pcap_t   p,
int    dlt
 

Definition at line 273 of file pcap.c.

References pcap_datalink_val_to_name(), and snprintf.

int pcap_setfilter pcap_t   p,
struct bpf_program   fp
 

Associates a filter to a capture.

pcap_setfilter() is used to specify a filter program. fp is a pointer to a bpf_program struct, usually the result of a call to pcap_compile(). -1 is returned on failure, in which case pcap_geterr() may be used to display the error text; 0 is returned on success.

See also:
pcap_compile(), pcap_compile_nopcap()

Definition at line 686 of file pcap.c.

Referenced by daemon_unpackapplyfilter(), and main().

int pcap_setnonblock pcap_t   p,
int    nonblock,
char *    errbuf
 

Switches between blocking and nonblocking mode.

pcap_setnonblock() puts a capture descriptor, opened with pcap_open_live(), into "non-blocking" mode, or takes it out of "non-blocking" mode, depending on whether the nonblock argument is non-zero or zero. It has no effect on "savefiles". If there is an error, -1 is returned and errbuf is filled in with an appropriate error message; otherwise, 0 is returned. In "non-blocking" mode, an attempt to read from the capture descriptor with pcap_dispatch() will, if no packets are currently available to be read, return 0 immediately rather than blocking waiting for packets to arrive. pcap_loop() and pcap_next() will not work in "non-blocking" mode.

See also:
pcap_getnonblock(), pcap_dispatch()

Definition at line 599 of file pcap.c.

int pcap_snapshot pcap_t   p
 

Returns the dimension of the packet portion (in bytes) that is delivered to the application.

pcap_snapshot() returns the snapshot length specified when pcap_open_live was called.

See also:
pcap_open_live(), pcap_compile(), pcap_compile_nopcap()

Definition at line 499 of file pcap.c.

Referenced by pcap_compile().

int pcap_stats pcap_t   p,
struct pcap_stat   ps
 

It returns statistics on current capture.

Deprecated:
Use the pcap_next_ex() instead.
pcap_stats() returns 0 and fills in a pcap_stat struct. The values represent packet statistics from the start of the run to the time of the call. If there is an error or the underlying packet capture doesn't support packet statistics, -1 is returned and the error text can be obtained with pcap_perror() or pcap_geterr(). pcap_stats() is supported only on live captures, not on "savefiles"; no statistics are stored in "savefiles", so no statistics are available when reading from a "savefile".

See also:
pcap_stats_ex(), pcap_open_live()

Definition at line 692 of file pcap.c.

Referenced by daemon_getstats(), and daemon_serviceloop().

int pcap_stats_dead pcap_t   p,
struct pcap_stat   ps
[static]
 

Definition at line 698 of file pcap.c.

References snprintf.

Referenced by pcap_open_dead().

int pcap_strcasecmp const char *    s1,
const char *    s2
 

Definition at line 449 of file pcap.c.

References charmap, s1, and s2.

Referenced by pcap_datalink_name_to_val().

char* pcap_strerror int    error
 

pcap_strerror() is provided in case strerror() isn't available.

See also:
pcap_perror(), pcap_geterr()

Definition at line 669 of file pcap.c.

References snprintf.

Referenced by add_addr_to_iflist(), add_or_find_if(), daemon_AuthUserPwd(), daemon_checkauth(), daemon_unpackapplyfilter(), main_active(), main_passive(), pcap_dump_open(), pcap_findalldevs_ex(), pcap_list_datalinks(), pcap_open_live(), pcap_open_offline(), pcap_opensource_remote(), pcap_remoteact_accept(), pcap_setfilter_win32_dag(), pcap_startcapture_remote(), rpcap_deseraddr(), and sf_next_packet().

char* pcap_win32strerror void   
 

Definition at line 642 of file pcap.c.

References errbuf, and PCAP_ERRBUF_SIZE.

Referenced by pcap_open_live(), pcap_setfilter_win32_npf(), pcap_setnonblock_win32(), pcap_stats_ex(), and pcap_stats_win32().


Variable Documentation

const char rcsid [] _U_ [static]
 

Initial value:

    "@(#) $Header: /tcpdump/master/libpcap/pcap.c,v 1.70 2003/12/18 23:32:34 guy Exp $ (LBL)"

Definition at line 35 of file pcap.c.

const u_char charmap[] [static]
 

Definition at line 381 of file pcap.c.

Referenced by pcap_strcasecmp().

struct dlt_choice dlt_choices[] [static]
 

Definition at line 343 of file pcap.c.

Referenced by pcap_datalink_name_to_val(), pcap_datalink_val_to_description(), and pcap_datalink_val_to_name().

char* pcap_version_string [static]
 

Definition at line 760 of file pcap.c.

Referenced by pcap_lib_version().

const char pcap_version_string_fmt[] [static]
 

Initial value:

    "WinPcap version %s, based on libpcap version 0.8"

Definition at line 756 of file pcap.c.

Referenced by pcap_lib_version().

const char pcap_version_string_packet_dll_fmt[] [static]
 

Initial value:

    "WinPcap version %s (packet.dll version %s), based on libpcap version 0.8"

Definition at line 758 of file pcap.c.

Referenced by pcap_lib_version().

const char wpcap_version_string[] = "3.0" [static]
 

Definition at line 755 of file pcap.c.


documentation. Copyright (c) 2002-2003 Politecnico di Torino. All rights reserved.