2 * Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the Computer Systems
16 * Engineering Group at Lawrence Berkeley Laboratory.
17 * 4. Neither the name of the University nor of the Laboratory may be used
18 * to endorse or promote products derived from this software without
19 * specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #include <pcap-types.h>
40 #include <sys/param.h>
44 #include <sys/ioctl.h>
45 #include <sys/socket.h>
46 #ifdef HAVE_SYS_SOCKIO_H
47 #include <sys/sockio.h>
50 struct mbuf
; /* Squelch compiler warnings on some platforms for */
51 struct rtentry
; /* declarations in <net/if.h> */
53 #include <netinet/in.h>
59 #if !defined(_MSC_VER) && !defined(__BORLANDC__) && !defined(__MINGW32__)
66 #include "diag-control.h"
68 #ifdef HAVE_OS_PROTO_H
82 #endif /* HAVE_DAG_API */
84 #ifdef HAVE_SEPTEL_API
85 #include "pcap-septel.h"
86 #endif /* HAVE_SEPTEL_API */
90 #endif /* HAVE_SNF_API */
94 #endif /* HAVE_TC_API */
96 #ifdef PCAP_SUPPORT_LINUX_USBMON
97 #include "pcap-usb-linux.h"
100 #ifdef PCAP_SUPPORT_BT
101 #include "pcap-bt-linux.h"
104 #ifdef PCAP_SUPPORT_BT_MONITOR
105 #include "pcap-bt-monitor-linux.h"
108 #ifdef PCAP_SUPPORT_NETFILTER
109 #include "pcap-netfilter-linux.h"
112 #ifdef PCAP_SUPPORT_NETMAP
113 #include "pcap-netmap.h"
116 #ifdef PCAP_SUPPORT_DBUS
117 #include "pcap-dbus.h"
120 #ifdef PCAP_SUPPORT_RDMASNIFF
121 #include "pcap-rdmasniff.h"
124 #ifdef PCAP_SUPPORT_DPDK
125 #include "pcap-dpdk.h"
128 #ifdef HAVE_AIRPCAP_API
129 #include "pcap-airpcap.h"
134 * DllMain(), required when built as a Windows DLL.
136 * To quote the WSAStartup() documentation:
138 * The WSAStartup function typically leads to protocol-specific helper
139 * DLLs being loaded. As a result, the WSAStartup function should not
140 * be called from the DllMain function in a application DLL. This can
141 * potentially cause deadlocks.
143 * and the WSACleanup() documentation:
145 * The WSACleanup function typically leads to protocol-specific helper
146 * DLLs being unloaded. As a result, the WSACleanup function should not
147 * be called from the DllMain function in a application DLL. This can
148 * potentially cause deadlocks.
150 * So we don't initialize Winsock here. pcap_init() should be called
151 * to initialize pcap on both UN*X and Windows; it will initialize
152 * Winsock on Windows. (It will also be initialized as needed if
153 * pcap_init() hasn't been called.)
158 LPVOID lpvReserved _U_
169 internal_wsockinit(char *errbuf
)
171 WORD wVersionRequested
;
181 * Versions of Windows that don't support Winsock 2.2 are
184 wVersionRequested
= MAKEWORD(2, 2);
185 status
= WSAStartup(wVersionRequested
, &wsaData
);
188 if (errbuf
!= NULL
) {
189 pcap_fmt_errmsg_for_win32_err(errbuf
, PCAP_ERRBUF_SIZE
,
190 status
, "WSAStartup() failed");
194 atexit ((void(*)(void))WSACleanup
);
200 * Exported in case some applications using WinPcap/Npcap called it,
201 * even though it wasn't exported.
206 return (internal_wsockinit(NULL
));
210 * This is the exported function; new programs should call this.
211 * *Newer* programs should call pcap_init().
216 return (internal_wsockinit(NULL
));
221 * Do whatever initialization is needed for libpcap.
223 * The argument specifies whether we use the local code page or UTF-8
224 * for strings; on UN*X, we just assume UTF-8 in places where the encoding
225 * would matter, whereas, on Windows, we use the local code page for
226 * PCAP_CHAR_ENC_LOCAL and UTF-8 for PCAP_CHAR_ENC_UTF_8.
228 * On Windows, we also disable the hack in pcap_create() to deal with
229 * being handed UTF-16 strings, because if the user calls this they're
230 * explicitly declaring that they will either be passing local code
231 * page strings or UTF-8 strings, so we don't need to allow UTF-16LE
232 * strings to be passed. For good measure, on Windows *and* UN*X,
233 * we disable pcap_lookupdev(), to prevent anybody from even
234 * *trying* to pass the result of pcap_lookupdev() - which might be
235 * UTF-16LE on Windows, for ugly compatibility reasons - to pcap_create()
236 * or pcap_open_live() or pcap_open().
238 * Returns 0 on success, -1 on error.
240 int pcap_new_api
; /* pcap_lookupdev() always fails */
241 int pcap_utf_8_mode
; /* Strings should be in UTF-8. */
244 pcap_init(unsigned int opts
, char *errbuf
)
246 static int initialized
;
249 * Don't allow multiple calls that set different modes; that
250 * may mean a library is initializing pcap in one mode and
251 * a program using that library, or another library used by
252 * that program, is initializing it in another mode.
256 case PCAP_CHAR_ENC_LOCAL
:
257 /* Leave "UTF-8 mode" off. */
259 if (pcap_utf_8_mode
) {
260 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
261 "Multiple pcap_init calls with different character encodings");
267 case PCAP_CHAR_ENC_UTF_8
:
268 /* Turn on "UTF-8 mode". */
270 if (!pcap_utf_8_mode
) {
271 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
272 "Multiple pcap_init calls with different character encodings");
280 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "Unknown options specified");
285 * Turn the appropriate mode on for error messages; those routines
286 * are also used in rpcapd, which has no access to pcap's internal
287 * UTF-8 mode flag, so we have to call a routine to set its
290 pcap_fmt_set_encoding(opts
);
294 * Nothing more to do; for example, on Windows, we've
295 * already initialized Winsock.
302 * Now set up Winsock.
304 if (internal_wsockinit(errbuf
) == -1) {
319 * String containing the library version.
320 * Not explicitly exported via a header file - the right API to use
321 * is pcap_lib_version() - but some programs referred to it, so we
324 * We declare it here, right before defining it, to squelch any
325 * warnings we might get from compilers about the lack of a
328 PCAP_EXPORTED_DATA
char pcap_version
[];
329 PCAP_EXPORTED_DATA_DEF
char pcap_version
[] = PACKAGE_VERSION
;
332 pcap_set_not_initialized_message(pcap_t
*pcap
)
334 if (pcap
->activated
) {
335 /* A module probably forgot to set the function pointer */
336 (void)snprintf(pcap
->errbuf
, sizeof(pcap
->errbuf
),
337 "This operation isn't properly handled by that device");
340 /* in case the caller doesn't check for PCAP_ERROR_NOT_ACTIVATED */
341 (void)snprintf(pcap
->errbuf
, sizeof(pcap
->errbuf
),
342 "This handle hasn't been activated yet");
346 pcap_read_not_initialized(pcap_t
*pcap
, int cnt _U_
, pcap_handler callback _U_
,
349 pcap_set_not_initialized_message(pcap
);
350 /* this means 'not initialized' */
351 return (PCAP_ERROR_NOT_ACTIVATED
);
355 pcap_inject_not_initialized(pcap_t
*pcap
, const void * buf _U_
, int size _U_
)
357 pcap_set_not_initialized_message(pcap
);
358 /* this means 'not initialized' */
359 return (PCAP_ERROR_NOT_ACTIVATED
);
363 pcap_setfilter_not_initialized(pcap_t
*pcap
, struct bpf_program
*fp _U_
)
365 pcap_set_not_initialized_message(pcap
);
366 /* this means 'not initialized' */
367 return (PCAP_ERROR_NOT_ACTIVATED
);
371 pcap_setdirection_not_initialized(pcap_t
*pcap
, pcap_direction_t d _U_
)
373 pcap_set_not_initialized_message(pcap
);
374 /* this means 'not initialized' */
375 return (PCAP_ERROR_NOT_ACTIVATED
);
379 pcap_set_datalink_not_initialized(pcap_t
*pcap
, int dlt _U_
)
381 pcap_set_not_initialized_message(pcap
);
382 /* this means 'not initialized' */
383 return (PCAP_ERROR_NOT_ACTIVATED
);
387 pcap_getnonblock_not_initialized(pcap_t
*pcap
)
389 pcap_set_not_initialized_message(pcap
);
390 /* this means 'not initialized' */
391 return (PCAP_ERROR_NOT_ACTIVATED
);
395 pcap_stats_not_initialized(pcap_t
*pcap
, struct pcap_stat
*ps _U_
)
397 pcap_set_not_initialized_message(pcap
);
398 /* this means 'not initialized' */
399 return (PCAP_ERROR_NOT_ACTIVATED
);
403 static struct pcap_stat
*
404 pcap_stats_ex_not_initialized(pcap_t
*pcap
, int *pcap_stat_size _U_
)
406 pcap_set_not_initialized_message(pcap
);
411 pcap_setbuff_not_initialized(pcap_t
*pcap
, int dim _U_
)
413 pcap_set_not_initialized_message(pcap
);
414 /* this means 'not initialized' */
415 return (PCAP_ERROR_NOT_ACTIVATED
);
419 pcap_setmode_not_initialized(pcap_t
*pcap
, int mode _U_
)
421 pcap_set_not_initialized_message(pcap
);
422 /* this means 'not initialized' */
423 return (PCAP_ERROR_NOT_ACTIVATED
);
427 pcap_setmintocopy_not_initialized(pcap_t
*pcap
, int size _U_
)
429 pcap_set_not_initialized_message(pcap
);
430 /* this means 'not initialized' */
431 return (PCAP_ERROR_NOT_ACTIVATED
);
435 pcap_getevent_not_initialized(pcap_t
*pcap
)
437 pcap_set_not_initialized_message(pcap
);
438 return (INVALID_HANDLE_VALUE
);
442 pcap_oid_get_request_not_initialized(pcap_t
*pcap
, bpf_u_int32 oid _U_
,
443 void *data _U_
, size_t *lenp _U_
)
445 pcap_set_not_initialized_message(pcap
);
446 return (PCAP_ERROR_NOT_ACTIVATED
);
450 pcap_oid_set_request_not_initialized(pcap_t
*pcap
, bpf_u_int32 oid _U_
,
451 const void *data _U_
, size_t *lenp _U_
)
453 pcap_set_not_initialized_message(pcap
);
454 return (PCAP_ERROR_NOT_ACTIVATED
);
458 pcap_sendqueue_transmit_not_initialized(pcap_t
*pcap
, pcap_send_queue
* queue _U_
,
461 pcap_set_not_initialized_message(pcap
);
466 pcap_setuserbuffer_not_initialized(pcap_t
*pcap
, int size _U_
)
468 pcap_set_not_initialized_message(pcap
);
469 return (PCAP_ERROR_NOT_ACTIVATED
);
473 pcap_live_dump_not_initialized(pcap_t
*pcap
, char *filename _U_
, int maxsize _U_
,
476 pcap_set_not_initialized_message(pcap
);
477 return (PCAP_ERROR_NOT_ACTIVATED
);
481 pcap_live_dump_ended_not_initialized(pcap_t
*pcap
, int sync _U_
)
483 pcap_set_not_initialized_message(pcap
);
484 return (PCAP_ERROR_NOT_ACTIVATED
);
487 static PAirpcapHandle
488 pcap_get_airpcap_handle_not_initialized(pcap_t
*pcap
)
490 pcap_set_not_initialized_message(pcap
);
496 * Returns 1 if rfmon mode can be set on the pcap_t, 0 if it can't,
497 * a PCAP_ERROR value on an error.
500 pcap_can_set_rfmon(pcap_t
*p
)
502 return (p
->can_set_rfmon_op(p
));
506 * For systems where rfmon mode is never supported.
509 pcap_cant_set_rfmon(pcap_t
*p _U_
)
515 * Sets *tstamp_typesp to point to an array 1 or more supported time stamp
516 * types; the return value is the number of supported time stamp types.
517 * The list should be freed by a call to pcap_free_tstamp_types() when
518 * you're done with it.
520 * A return value of 0 means "you don't get a choice of time stamp type",
521 * in which case *tstamp_typesp is set to null.
523 * PCAP_ERROR is returned on error.
526 pcap_list_tstamp_types(pcap_t
*p
, int **tstamp_typesp
)
528 if (p
->tstamp_type_count
== 0) {
530 * We don't support multiple time stamp types.
531 * That means the only type we support is PCAP_TSTAMP_HOST;
532 * set up a list containing only that type.
534 *tstamp_typesp
= (int*)malloc(sizeof(**tstamp_typesp
));
535 if (*tstamp_typesp
== NULL
) {
536 pcap_fmt_errmsg_for_errno(p
->errbuf
, sizeof(p
->errbuf
),
540 **tstamp_typesp
= PCAP_TSTAMP_HOST
;
543 *tstamp_typesp
= (int*)calloc(sizeof(**tstamp_typesp
),
544 p
->tstamp_type_count
);
545 if (*tstamp_typesp
== NULL
) {
546 pcap_fmt_errmsg_for_errno(p
->errbuf
, sizeof(p
->errbuf
),
550 (void)memcpy(*tstamp_typesp
, p
->tstamp_type_list
,
551 sizeof(**tstamp_typesp
) * p
->tstamp_type_count
);
552 return (p
->tstamp_type_count
);
557 * In Windows, you might have a library built with one version of the
558 * C runtime library and an application built with another version of
559 * the C runtime library, which means that the library might use one
560 * version of malloc() and free() and the application might use another
561 * version of malloc() and free(). If so, that means something
562 * allocated by the library cannot be freed by the application, so we
563 * need to have a pcap_free_tstamp_types() routine to free up the list
564 * allocated by pcap_list_tstamp_types(), even though it's just a wrapper
568 pcap_free_tstamp_types(int *tstamp_type_list
)
570 free(tstamp_type_list
);
574 * Default one-shot callback; overridden for capture types where the
575 * packet data cannot be guaranteed to be available after the callback
576 * returns, so that a copy must be made.
579 pcap_oneshot(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*pkt
)
581 struct oneshot_userdata
*sp
= (struct oneshot_userdata
*)user
;
588 pcap_next(pcap_t
*p
, struct pcap_pkthdr
*h
)
590 struct oneshot_userdata s
;
596 if (pcap_dispatch(p
, 1, p
->oneshot_callback
, (u_char
*)&s
) <= 0)
602 pcap_next_ex(pcap_t
*p
, struct pcap_pkthdr
**pkt_header
,
603 const u_char
**pkt_data
)
605 struct oneshot_userdata s
;
607 s
.hdr
= &p
->pcap_header
;
611 /* Saves a pointer to the packet headers */
612 *pkt_header
= &p
->pcap_header
;
614 if (p
->rfile
!= NULL
) {
617 /* We are on an offline capture */
618 status
= pcap_offline_read(p
, 1, p
->oneshot_callback
,
622 * Return codes for pcap_offline_read() are:
626 * The first one ('0') conflicts with the return code of
627 * 0 from pcap_read() meaning "no packets arrived before
628 * the timeout expired", so we map it to -2 so you can
629 * distinguish between an EOF from a savefile and a
630 * "no packets arrived before the timeout expired, try
631 * again" from a live capture.
640 * Return codes for pcap_read() are:
643 * - -2: loop was broken out of with pcap_breakloop()
645 * The first one ('0') conflicts with the return code of 0 from
646 * pcap_offline_read() meaning "end of file".
648 return (p
->read_op(p
, 1, p
->oneshot_callback
, (u_char
*)&s
));
652 * Implementation of a pcap_if_list_t.
654 struct pcap_if_list
{
655 pcap_if_t
*beginning
;
658 static struct capture_source_type
{
659 int (*findalldevs_op
)(pcap_if_list_t
*, char *);
660 pcap_t
*(*create_op
)(const char *, char *, int *);
661 } capture_source_types
[] = {
663 { dag_findalldevs
, dag_create
},
665 #ifdef HAVE_SEPTEL_API
666 { septel_findalldevs
, septel_create
},
669 { snf_findalldevs
, snf_create
},
672 { TcFindAllDevs
, TcCreate
},
674 #ifdef PCAP_SUPPORT_BT
675 { bt_findalldevs
, bt_create
},
677 #ifdef PCAP_SUPPORT_BT_MONITOR
678 { bt_monitor_findalldevs
, bt_monitor_create
},
680 #ifdef PCAP_SUPPORT_LINUX_USBMON
681 { usb_findalldevs
, usb_create
},
683 #ifdef PCAP_SUPPORT_NETFILTER
684 { netfilter_findalldevs
, netfilter_create
},
686 #ifdef PCAP_SUPPORT_NETMAP
687 { pcap_netmap_findalldevs
, pcap_netmap_create
},
689 #ifdef PCAP_SUPPORT_DBUS
690 { dbus_findalldevs
, dbus_create
},
692 #ifdef PCAP_SUPPORT_RDMASNIFF
693 { rdmasniff_findalldevs
, rdmasniff_create
},
695 #ifdef PCAP_SUPPORT_DPDK
696 { pcap_dpdk_findalldevs
, pcap_dpdk_create
},
698 #ifdef HAVE_AIRPCAP_API
699 { airpcap_findalldevs
, airpcap_create
},
705 * Get a list of all capture sources that are up and that we can open.
706 * Returns -1 on error, 0 otherwise.
707 * The list, as returned through "alldevsp", may be null if no interfaces
708 * were up and could be opened.
711 pcap_findalldevs(pcap_if_t
**alldevsp
, char *errbuf
)
714 pcap_if_list_t devlist
;
717 * Find all the local network interfaces on which we
720 devlist
.beginning
= NULL
;
721 if (pcap_platform_finddevs(&devlist
, errbuf
) == -1) {
723 * Failed - free all of the entries we were given
726 if (devlist
.beginning
!= NULL
)
727 pcap_freealldevs(devlist
.beginning
);
733 * Ask each of the non-local-network-interface capture
734 * source types what interfaces they have.
736 for (i
= 0; capture_source_types
[i
].findalldevs_op
!= NULL
; i
++) {
737 if (capture_source_types
[i
].findalldevs_op(&devlist
, errbuf
) == -1) {
739 * We had an error; free the list we've been
742 if (devlist
.beginning
!= NULL
)
743 pcap_freealldevs(devlist
.beginning
);
750 * Return the first entry of the list of all devices.
752 *alldevsp
= devlist
.beginning
;
756 static struct sockaddr
*
757 dup_sockaddr(struct sockaddr
*sa
, size_t sa_length
)
759 struct sockaddr
*newsa
;
761 if ((newsa
= malloc(sa_length
)) == NULL
)
763 return (memcpy(newsa
, sa
, sa_length
));
767 * Construct a "figure of merit" for an interface, for use when sorting
768 * the list of interfaces, in which interfaces that are up are superior
769 * to interfaces that aren't up, interfaces that are up and running are
770 * superior to interfaces that are up but not running, and non-loopback
771 * interfaces that are up and running are superior to loopback interfaces,
772 * and interfaces with the same flags have a figure of merit that's higher
773 * the lower the instance number.
775 * The goal is to try to put the interfaces most likely to be useful for
776 * capture at the beginning of the list.
778 * The figure of merit, which is lower the "better" the interface is,
779 * has the uppermost bit set if the interface isn't running, the bit
780 * below that set if the interface isn't up, the bit below that
781 * set if the interface is a loopback interface, and the bit below
782 * that set if it's the "any" interface.
784 * Note: we don't sort by unit number because 1) not all interfaces have
785 * a unit number (systemd, for example, might assign interface names
786 * based on the interface's MAC address or on the physical location of
787 * the adapter's connector), and 2) if the name does end with a simple
788 * unit number, it's not a global property of the interface, it's only
789 * useful as a sort key for device names with the same prefix, so xyz0
790 * shouldn't necessarily sort before abc2. This means that interfaces
791 * with the same figure of merit will be sorted by the order in which
792 * the mechanism from which we're getting the interfaces supplies them.
795 get_figure_of_merit(pcap_if_t
*dev
)
800 if (!(dev
->flags
& PCAP_IF_RUNNING
))
802 if (!(dev
->flags
& PCAP_IF_UP
))
806 * Give non-wireless interfaces that aren't disconnected a better
807 * figure of merit than interfaces that are disconnected, as
808 * "disconnected" should indicate that the interface isn't
809 * plugged into a network and thus won't give you any traffic.
811 * For wireless interfaces, it means "associated with a network",
812 * which we presume not to necessarily prevent capture, as you
813 * might run the adapter in some flavor of monitor mode.
815 if (!(dev
->flags
& PCAP_IF_WIRELESS
) &&
816 (dev
->flags
& PCAP_IF_CONNECTION_STATUS
) == PCAP_IF_CONNECTION_STATUS_DISCONNECTED
)
820 * Sort loopback devices after non-loopback devices, *except* for
821 * disconnected devices.
823 if (dev
->flags
& PCAP_IF_LOOPBACK
)
827 * Sort the "any" device before loopback and disconnected devices,
828 * but after all other devices.
830 if (strcmp(dev
->name
, "any") == 0)
838 * Try to get a description for a given device.
839 * Returns a mallocated description if it could and NULL if it couldn't.
841 * XXX - on FreeBSDs that support it, should it get the sysctl named
842 * "dev.{adapter family name}.{adapter unit}.%desc" to get a description
843 * of the adapter? Note that "dev.an.0.%desc" is "Aironet PC4500/PC4800"
844 * with my Cisco 350 card, so the name isn't entirely descriptive. The
845 * "dev.an.0.%pnpinfo" has a better description, although one might argue
846 * that the problem is really a driver bug - if it can find out that it's
847 * a Cisco 340 or 350, rather than an old Aironet card, it should use
848 * that in the description.
850 * Do NetBSD, DragonflyBSD, or OpenBSD support this as well? FreeBSD
851 * and OpenBSD let you get a description, but it's not generated by the OS,
852 * it's set with another ioctl that ifconfig supports; we use that to get
853 * a description in FreeBSD and OpenBSD, but if there is no such
854 * description available, it still might be nice to get some description
855 * string based on the device type or something such as that.
857 * In macOS, the System Configuration framework can apparently return
858 * names in 10.4 and later.
860 * It also appears that freedesktop.org's HAL offers an "info.product"
861 * string, but the HAL specification says it "should not be used in any
862 * UI" and "subsystem/capability specific properties" should be used
863 * instead and, in any case, I think HAL is being deprecated in
864 * favor of other stuff such as DeviceKit. DeviceKit doesn't appear
865 * to have any obvious product information for devices, but maybe
866 * I haven't looked hard enough.
868 * Using the System Configuration framework, or HAL, or DeviceKit, or
869 * whatever, would require that libpcap applications be linked with
870 * the frameworks/libraries in question. That shouldn't be a problem
871 * for programs linking with the shared version of libpcap (unless
872 * you're running on AIX - which I think is the only UN*X that doesn't
873 * support linking a shared library with other libraries on which it
874 * depends, and having an executable linked only with the first shared
875 * library automatically pick up the other libraries when started -
876 * and using HAL or whatever). Programs linked with the static
877 * version of libpcap would have to use pcap-config with the --static
878 * flag in order to get the right linker flags in order to pick up
879 * the additional libraries/frameworks; those programs need that anyway
880 * for libpcap 1.1 and beyond on Linux, as, by default, it requires
883 * Do any other UN*Xes, or desktop environments support getting a
888 get_if_description(const char *name
)
890 char *description
= NULL
;
892 struct ifreq ifrdesc
;
894 size_t descrlen
= 64;
896 size_t descrlen
= IFDESCRSIZE
;
897 #endif /* IFDESCRSIZE */
900 * Get the description for the interface.
902 memset(&ifrdesc
, 0, sizeof ifrdesc
);
903 pcap_strlcpy(ifrdesc
.ifr_name
, name
, sizeof ifrdesc
.ifr_name
);
904 s
= socket(AF_INET
, SOCK_DGRAM
, 0);
908 * On FreeBSD, if the buffer isn't big enough for the
909 * description, the ioctl succeeds, but the description
910 * isn't copied, ifr_buffer.length is set to the description
911 * length, and ifr_buffer.buffer is set to NULL.
915 if ((description
= malloc(descrlen
)) != NULL
) {
916 ifrdesc
.ifr_buffer
.buffer
= description
;
917 ifrdesc
.ifr_buffer
.length
= descrlen
;
918 if (ioctl(s
, SIOCGIFDESCR
, &ifrdesc
) == 0) {
919 if (ifrdesc
.ifr_buffer
.buffer
==
923 descrlen
= ifrdesc
.ifr_buffer
.length
;
926 * Failed to get interface description.
935 #else /* __FreeBSD__ */
937 * The only other OS that currently supports
938 * SIOCGIFDESCR is OpenBSD, and it has no way
939 * to get the description length - it's clamped
940 * to a maximum of IFDESCRSIZE.
942 if ((description
= malloc(descrlen
)) != NULL
) {
943 ifrdesc
.ifr_data
= (caddr_t
)description
;
944 if (ioctl(s
, SIOCGIFDESCR
, &ifrdesc
) != 0) {
946 * Failed to get interface description.
952 #endif /* __FreeBSD__ */
954 if (description
!= NULL
&& description
[0] == '\0') {
956 * Description is empty, so discard it.
965 * For FreeBSD, if we didn't get a description, and this is
966 * a device with a name of the form usbusN, label it as a USB
969 if (description
== NULL
) {
970 if (strncmp(name
, "usbus", 5) == 0) {
972 * OK, it begins with "usbus".
978 busnum
= strtol(name
+ 5, &p
, 10);
979 if (errno
== 0 && p
!= name
+ 5 && *p
== '\0' &&
980 busnum
>= 0 && busnum
<= INT_MAX
) {
982 * OK, it's a valid number that's not
983 * bigger than INT_MAX. Construct
984 * a description from it.
985 * (If that fails, we don't worry about
986 * it, we just return NULL.)
988 if (pcap_asprintf(&description
,
989 "USB bus number %ld", busnum
) == -1) {
997 return (description
);
998 #else /* SIOCGIFDESCR */
999 get_if_description(const char *name _U_
)
1002 #endif /* SIOCGIFDESCR */
1006 * Look for a given device in the specified list of devices.
1008 * If we find it, return a pointer to its entry.
1010 * If we don't find it, attempt to add an entry for it, with the specified
1011 * IFF_ flags and description, and, if that succeeds, return a pointer to
1012 * the new entry, otherwise return NULL and set errbuf to an error message.
1015 find_or_add_if(pcap_if_list_t
*devlistp
, const char *name
,
1016 bpf_u_int32 if_flags
, get_if_flags_func get_flags_func
, char *errbuf
)
1018 bpf_u_int32 pcap_flags
;
1021 * Convert IFF_ flags to pcap flags.
1025 if (if_flags
& IFF_LOOPBACK
)
1026 pcap_flags
|= PCAP_IF_LOOPBACK
;
1029 * We don't have IFF_LOOPBACK, so look at the device name to
1030 * see if it looks like a loopback device.
1032 if (name
[0] == 'l' && name
[1] == 'o' &&
1033 (PCAP_ISDIGIT(name
[2]) || name
[2] == '\0'))
1034 pcap_flags
|= PCAP_IF_LOOPBACK
;
1037 if (if_flags
& IFF_UP
)
1038 pcap_flags
|= PCAP_IF_UP
;
1041 if (if_flags
& IFF_RUNNING
)
1042 pcap_flags
|= PCAP_IF_RUNNING
;
1046 * Attempt to find an entry for this device; if we don't find one,
1047 * attempt to add one.
1049 return (find_or_add_dev(devlistp
, name
, pcap_flags
,
1050 get_flags_func
, get_if_description(name
), errbuf
));
1054 * Look for a given device in the specified list of devices.
1056 * If we find it, then, if the specified address isn't null, add it to
1057 * the list of addresses for the device and return 0.
1059 * If we don't find it, attempt to add an entry for it, with the specified
1060 * IFF_ flags and description, and, if that succeeds, add the specified
1061 * address to its list of addresses if that address is non-null, and
1062 * return 0, otherwise return -1 and set errbuf to an error message.
1064 * (We can get called with a null address because we might get a list
1065 * of interface name/address combinations from the underlying OS, with
1066 * the address being absent in some cases, rather than a list of
1067 * interfaces with each interface having a list of addresses, so this
1068 * call may be the only call made to add to the list, and we want to
1069 * add interfaces even if they have no addresses.)
1072 add_addr_to_if(pcap_if_list_t
*devlistp
, const char *name
,
1073 bpf_u_int32 if_flags
, get_if_flags_func get_flags_func
,
1074 struct sockaddr
*addr
, size_t addr_size
,
1075 struct sockaddr
*netmask
, size_t netmask_size
,
1076 struct sockaddr
*broadaddr
, size_t broadaddr_size
,
1077 struct sockaddr
*dstaddr
, size_t dstaddr_size
,
1083 * Check whether the device exists and, if not, add it.
1085 curdev
= find_or_add_if(devlistp
, name
, if_flags
, get_flags_func
,
1087 if (curdev
== NULL
) {
1096 * There's no address to add; this entry just meant
1097 * "here's a new interface".
1103 * "curdev" is an entry for this interface, and we have an
1104 * address for it; add an entry for that address to the
1105 * interface's list of addresses.
1107 return (add_addr_to_dev(curdev
, addr
, addr_size
, netmask
,
1108 netmask_size
, broadaddr
, broadaddr_size
, dstaddr
,
1109 dstaddr_size
, errbuf
));
1114 * Add an entry to the list of addresses for an interface.
1115 * "curdev" is the entry for that interface.
1118 add_addr_to_dev(pcap_if_t
*curdev
,
1119 struct sockaddr
*addr
, size_t addr_size
,
1120 struct sockaddr
*netmask
, size_t netmask_size
,
1121 struct sockaddr
*broadaddr
, size_t broadaddr_size
,
1122 struct sockaddr
*dstaddr
, size_t dstaddr_size
,
1125 pcap_addr_t
*curaddr
, *prevaddr
, *nextaddr
;
1128 * Allocate the new entry and fill it in.
1130 curaddr
= (pcap_addr_t
*)malloc(sizeof(pcap_addr_t
));
1131 if (curaddr
== NULL
) {
1132 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1137 curaddr
->next
= NULL
;
1138 if (addr
!= NULL
&& addr_size
!= 0) {
1139 curaddr
->addr
= (struct sockaddr
*)dup_sockaddr(addr
, addr_size
);
1140 if (curaddr
->addr
== NULL
) {
1141 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1147 curaddr
->addr
= NULL
;
1149 if (netmask
!= NULL
&& netmask_size
!= 0) {
1150 curaddr
->netmask
= (struct sockaddr
*)dup_sockaddr(netmask
, netmask_size
);
1151 if (curaddr
->netmask
== NULL
) {
1152 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1154 if (curaddr
->addr
!= NULL
)
1155 free(curaddr
->addr
);
1160 curaddr
->netmask
= NULL
;
1162 if (broadaddr
!= NULL
&& broadaddr_size
!= 0) {
1163 curaddr
->broadaddr
= (struct sockaddr
*)dup_sockaddr(broadaddr
, broadaddr_size
);
1164 if (curaddr
->broadaddr
== NULL
) {
1165 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1167 if (curaddr
->netmask
!= NULL
)
1168 free(curaddr
->netmask
);
1169 if (curaddr
->addr
!= NULL
)
1170 free(curaddr
->addr
);
1175 curaddr
->broadaddr
= NULL
;
1177 if (dstaddr
!= NULL
&& dstaddr_size
!= 0) {
1178 curaddr
->dstaddr
= (struct sockaddr
*)dup_sockaddr(dstaddr
, dstaddr_size
);
1179 if (curaddr
->dstaddr
== NULL
) {
1180 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1182 if (curaddr
->broadaddr
!= NULL
)
1183 free(curaddr
->broadaddr
);
1184 if (curaddr
->netmask
!= NULL
)
1185 free(curaddr
->netmask
);
1186 if (curaddr
->addr
!= NULL
)
1187 free(curaddr
->addr
);
1192 curaddr
->dstaddr
= NULL
;
1195 * Find the end of the list of addresses.
1197 for (prevaddr
= curdev
->addresses
; prevaddr
!= NULL
; prevaddr
= nextaddr
) {
1198 nextaddr
= prevaddr
->next
;
1199 if (nextaddr
== NULL
) {
1201 * This is the end of the list.
1207 if (prevaddr
== NULL
) {
1209 * The list was empty; this is the first member.
1211 curdev
->addresses
= curaddr
;
1214 * "prevaddr" is the last member of the list; append
1215 * this member to it.
1217 prevaddr
->next
= curaddr
;
1224 * Look for a given device in the specified list of devices.
1226 * If we find it, return 0 and set *curdev_ret to point to it.
1228 * If we don't find it, attempt to add an entry for it, with the specified
1229 * flags and description, and, if that succeeds, return 0, otherwise
1230 * return -1 and set errbuf to an error message.
1233 find_or_add_dev(pcap_if_list_t
*devlistp
, const char *name
, bpf_u_int32 flags
,
1234 get_if_flags_func get_flags_func
, const char *description
, char *errbuf
)
1239 * Is there already an entry in the list for this device?
1241 curdev
= find_dev(devlistp
, name
);
1242 if (curdev
!= NULL
) {
1250 * No, we didn't find it.
1254 * Try to get additional flags for the device.
1256 if ((*get_flags_func
)(name
, &flags
, errbuf
) == -1) {
1264 * Now, try to add it to the list of devices.
1266 return (add_dev(devlistp
, name
, flags
, description
, errbuf
));
1270 * Look for a given device in the specified list of devices, and return
1271 * the entry for it if we find it or NULL if we don't.
1274 find_dev(pcap_if_list_t
*devlistp
, const char *name
)
1279 * Is there an entry in the list for this device?
1281 for (curdev
= devlistp
->beginning
; curdev
!= NULL
;
1282 curdev
= curdev
->next
) {
1283 if (strcmp(name
, curdev
->name
) == 0) {
1285 * We found it, so, yes, there is. No need to
1286 * add it. Provide the entry we found to our
1300 * Attempt to add an entry for a device, with the specified flags
1301 * and description, and, if that succeeds, return 0 and return a pointer
1302 * to the new entry, otherwise return NULL and set errbuf to an error
1305 * If we weren't given a description, try to get one.
1308 add_dev(pcap_if_list_t
*devlistp
, const char *name
, bpf_u_int32 flags
,
1309 const char *description
, char *errbuf
)
1311 pcap_if_t
*curdev
, *prevdev
, *nextdev
;
1312 u_int this_figure_of_merit
, nextdev_figure_of_merit
;
1314 curdev
= malloc(sizeof(pcap_if_t
));
1315 if (curdev
== NULL
) {
1316 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1322 * Fill in the entry.
1324 curdev
->next
= NULL
;
1325 curdev
->name
= strdup(name
);
1326 if (curdev
->name
== NULL
) {
1327 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1332 if (description
== NULL
) {
1334 * We weren't handed a description for the interface.
1336 curdev
->description
= NULL
;
1339 * We were handed a description; make a copy.
1341 curdev
->description
= strdup(description
);
1342 if (curdev
->description
== NULL
) {
1343 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1350 curdev
->addresses
= NULL
; /* list starts out as empty */
1351 curdev
->flags
= flags
;
1354 * Add it to the list, in the appropriate location.
1355 * First, get the "figure of merit" for this interface.
1357 this_figure_of_merit
= get_figure_of_merit(curdev
);
1360 * Now look for the last interface with an figure of merit
1361 * less than or equal to the new interface's figure of merit.
1363 * We start with "prevdev" being NULL, meaning we're before
1364 * the first element in the list.
1369 * Get the interface after this one.
1371 if (prevdev
== NULL
) {
1373 * The next element is the first element.
1375 nextdev
= devlistp
->beginning
;
1377 nextdev
= prevdev
->next
;
1380 * Are we at the end of the list?
1382 if (nextdev
== NULL
) {
1384 * Yes - we have to put the new entry after "prevdev".
1390 * Is the new interface's figure of merit less
1391 * than the next interface's figure of merit,
1392 * meaning that the new interface is better
1393 * than the next interface?
1395 nextdev_figure_of_merit
= get_figure_of_merit(nextdev
);
1396 if (this_figure_of_merit
< nextdev_figure_of_merit
) {
1398 * Yes - we should put the new entry
1399 * before "nextdev", i.e. after "prevdev".
1408 * Insert before "nextdev".
1410 curdev
->next
= nextdev
;
1413 * Insert after "prevdev" - unless "prevdev" is null,
1414 * in which case this is the first interface.
1416 if (prevdev
== NULL
) {
1418 * This is the first interface. Make it
1419 * the first element in the list of devices.
1421 devlistp
->beginning
= curdev
;
1423 prevdev
->next
= curdev
;
1428 * Free a list of interfaces.
1431 pcap_freealldevs(pcap_if_t
*alldevs
)
1433 pcap_if_t
*curdev
, *nextdev
;
1434 pcap_addr_t
*curaddr
, *nextaddr
;
1436 for (curdev
= alldevs
; curdev
!= NULL
; curdev
= nextdev
) {
1437 nextdev
= curdev
->next
;
1440 * Free all addresses.
1442 for (curaddr
= curdev
->addresses
; curaddr
!= NULL
; curaddr
= nextaddr
) {
1443 nextaddr
= curaddr
->next
;
1445 free(curaddr
->addr
);
1446 if (curaddr
->netmask
)
1447 free(curaddr
->netmask
);
1448 if (curaddr
->broadaddr
)
1449 free(curaddr
->broadaddr
);
1450 if (curaddr
->dstaddr
)
1451 free(curaddr
->dstaddr
);
1456 * Free the name string.
1461 * Free the description string, if any.
1463 if (curdev
->description
!= NULL
)
1464 free(curdev
->description
);
1467 * Free the interface.
1474 * pcap-npf.c has its own pcap_lookupdev(), for compatibility reasons, as
1475 * it actually returns the names of all interfaces, with a NUL separator
1476 * between them; some callers may depend on that.
1478 * MS-DOS has its own pcap_lookupdev(), but that might be useful only
1479 * as an optimization.
1481 * In all other cases, we just use pcap_findalldevs() to get a list of
1482 * devices, and pick from that list.
1484 #if !defined(HAVE_PACKET32) && !defined(MSDOS)
1486 * Return the name of a network interface attached to the system, or NULL
1487 * if none can be found. The interface must be configured up; the
1488 * lowest unit number is preferred; loopback is ignored.
1491 pcap_lookupdev(char *errbuf
)
1496 * Windows - use the same size as the old WinPcap 3.1 code.
1497 * XXX - this is probably bigger than it needs to be.
1499 #define IF_NAMESIZE 8192
1502 * UN*X - use the system's interface name size.
1503 * XXX - that might not be large enough for capture devices
1504 * that aren't regular network interfaces.
1506 /* for old BSD systems, including bsdi3 */
1508 #define IF_NAMESIZE IFNAMSIZ
1511 static char device
[IF_NAMESIZE
+ 1];
1515 * We disable this in "new API" mode, because 1) in WinPcap/Npcap,
1516 * it may return UTF-16 strings, for backwards-compatibility
1517 * reasons, and we're also disabling the hack to make that work,
1518 * for not-going-past-the-end-of-a-string reasons, and 2) we
1519 * want its behavior to be consistent.
1521 * In addition, it's not thread-safe, so we've marked it as
1525 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1526 "pcap_lookupdev() is deprecated and is not supported in programs calling pcap_init()");
1530 if (pcap_findalldevs(&alldevs
, errbuf
) == -1)
1533 if (alldevs
== NULL
|| (alldevs
->flags
& PCAP_IF_LOOPBACK
)) {
1535 * There are no devices on the list, or the first device
1536 * on the list is a loopback device, which means there
1537 * are no non-loopback devices on the list. This means
1538 * we can't return any device.
1540 * XXX - why not return a loopback device? If we can't
1541 * capture on it, it won't be on the list, and if it's
1542 * on the list, there aren't any non-loopback devices,
1543 * so why not just supply it as the default device?
1545 (void)pcap_strlcpy(errbuf
, "no suitable device found",
1550 * Return the name of the first device on the list.
1552 (void)pcap_strlcpy(device
, alldevs
->name
, sizeof(device
));
1556 pcap_freealldevs(alldevs
);
1559 #endif /* !defined(HAVE_PACKET32) && !defined(MSDOS) */
1561 #if !defined(_WIN32) && !defined(MSDOS)
1563 * We don't just fetch the entire list of devices, search for the
1564 * particular device, and use its first IPv4 address, as that's too
1565 * much work to get just one device's netmask.
1567 * If we had an API to get attributes for a given device, we could
1571 pcap_lookupnet(const char *device
, bpf_u_int32
*netp
, bpf_u_int32
*maskp
,
1575 register struct sockaddr_in
*sin4
;
1579 * The pseudo-device "any" listens on all interfaces and therefore
1580 * has the network address and -mask "0.0.0.0" therefore catching
1581 * all traffic. Using NULL for the interface is the same as "any".
1583 if (!device
|| strcmp(device
, "any") == 0
1585 || strstr(device
, "dag") != NULL
1587 #ifdef HAVE_SEPTEL_API
1588 || strstr(device
, "septel") != NULL
1590 #ifdef PCAP_SUPPORT_BT
1591 || strstr(device
, "bluetooth") != NULL
1593 #ifdef PCAP_SUPPORT_LINUX_USBMON
1594 || strstr(device
, "usbmon") != NULL
1597 || strstr(device
, "snf") != NULL
1599 #ifdef PCAP_SUPPORT_NETMAP
1600 || strncmp(device
, "netmap:", 7) == 0
1601 || strncmp(device
, "vale", 4) == 0
1603 #ifdef PCAP_SUPPORT_DPDK
1604 || strncmp(device
, "dpdk:", 5) == 0
1611 fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
1613 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1617 memset(&ifr
, 0, sizeof(ifr
));
1619 /* XXX Work around Linux kernel bug */
1620 ifr
.ifr_addr
.sa_family
= AF_INET
;
1622 (void)pcap_strlcpy(ifr
.ifr_name
, device
, sizeof(ifr
.ifr_name
));
1623 if (ioctl(fd
, SIOCGIFADDR
, (char *)&ifr
) < 0) {
1624 if (errno
== EADDRNOTAVAIL
) {
1625 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1626 "%s: no IPv4 address assigned", device
);
1628 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1629 errno
, "SIOCGIFADDR: %s", device
);
1634 sin4
= (struct sockaddr_in
*)&ifr
.ifr_addr
;
1635 *netp
= sin4
->sin_addr
.s_addr
;
1636 memset(&ifr
, 0, sizeof(ifr
));
1638 /* XXX Work around Linux kernel bug */
1639 ifr
.ifr_addr
.sa_family
= AF_INET
;
1641 (void)pcap_strlcpy(ifr
.ifr_name
, device
, sizeof(ifr
.ifr_name
));
1642 if (ioctl(fd
, SIOCGIFNETMASK
, (char *)&ifr
) < 0) {
1643 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1644 errno
, "SIOCGIFNETMASK: %s", device
);
1649 *maskp
= sin4
->sin_addr
.s_addr
;
1651 if (IN_CLASSA(*netp
))
1652 *maskp
= IN_CLASSA_NET
;
1653 else if (IN_CLASSB(*netp
))
1654 *maskp
= IN_CLASSB_NET
;
1655 else if (IN_CLASSC(*netp
))
1656 *maskp
= IN_CLASSC_NET
;
1658 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1659 "inet class for 0x%x unknown", *netp
);
1666 #endif /* !defined(_WIN32) && !defined(MSDOS) */
1668 #ifdef ENABLE_REMOTE
1669 #include "pcap-rpcap.h"
1672 * Extract a substring from a string.
1675 get_substring(const char *p
, size_t len
, char *ebuf
)
1679 token
= malloc(len
+ 1);
1680 if (token
== NULL
) {
1681 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1685 memcpy(token
, p
, len
);
1691 * Parse a capture source that might be a URL.
1693 * If the source is not a URL, *schemep, *userinfop, *hostp, and *portp
1694 * are set to NULL, *pathp is set to point to the source, and 0 is
1697 * If source is a URL, and the URL refers to a local device (a special
1698 * case of rpcap:), *schemep, *userinfop, *hostp, and *portp are set
1699 * to NULL, *pathp is set to point to the device name, and 0 is returned.
1701 * If source is a URL, and it's not a special case that refers to a local
1702 * device, and the parse succeeds:
1704 * *schemep is set to point to an allocated string containing the scheme;
1706 * if user information is present in the URL, *userinfop is set to point
1707 * to an allocated string containing the user information, otherwise
1710 * if host information is present in the URL, *hostp is set to point
1711 * to an allocated string containing the host information, otherwise
1714 * if a port number is present in the URL, *portp is set to point
1715 * to an allocated string containing the port number, otherwise
1718 * *pathp is set to point to an allocated string containing the
1721 * and 0 is returned.
1723 * If the parse fails, ebuf is set to an error string, and -1 is returned.
1726 pcap_parse_source(const char *source
, char **schemep
, char **userinfop
,
1727 char **hostp
, char **portp
, char **pathp
, char *ebuf
)
1733 size_t authority_len
;
1735 char *parsep
, *atsignp
, *bracketp
;
1736 char *userinfo
, *host
, *port
, *path
;
1739 * Start out returning nothing.
1750 * URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
1752 * hier-part = "//" authority path-abempty
1757 * authority = [ userinfo "@" ] host [ ":" port ]
1759 * userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
1761 * Step 1: look for the ":" at the end of the scheme.
1762 * A colon in the source is *NOT* sufficient to indicate that
1763 * this is a URL, as interface names on some platforms might
1764 * include colons (e.g., I think some Solaris interfaces
1767 colonp
= strchr(source
, ':');
1768 if (colonp
== NULL
) {
1770 * The source is the device to open.
1771 * Return a NULL pointer for the scheme, user information,
1772 * host, and port, and return the device as the path.
1774 *pathp
= strdup(source
);
1775 if (*pathp
== NULL
) {
1776 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1784 * All schemes must have "//" after them, i.e. we only support
1785 * hier-part = "//" authority path-abempty, not
1786 * hier-part = path-absolute
1787 * hier-part = path-rootless
1788 * hier-part = path-empty
1790 * We need that in order to distinguish between a local device
1791 * name that happens to contain a colon and a URI.
1793 if (strncmp(colonp
+ 1, "//", 2) != 0) {
1795 * The source is the device to open.
1796 * Return a NULL pointer for the scheme, user information,
1797 * host, and port, and return the device as the path.
1799 *pathp
= strdup(source
);
1800 if (*pathp
== NULL
) {
1801 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1809 * XXX - check whether the purported scheme could be a scheme?
1813 * OK, this looks like a URL.
1816 scheme_len
= colonp
- source
;
1817 scheme
= malloc(scheme_len
+ 1);
1818 if (scheme
== NULL
) {
1819 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1823 memcpy(scheme
, source
, scheme_len
);
1824 scheme
[scheme_len
] = '\0';
1827 * Treat file: specially - take everything after file:// as
1830 if (pcap_strcasecmp(scheme
, "file") == 0) {
1831 *pathp
= strdup(colonp
+ 3);
1832 if (*pathp
== NULL
) {
1833 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1843 * The WinPcap documentation says you can specify a local
1844 * interface with "rpcap://{device}"; we special-case
1845 * that here. If the scheme is "rpcap", and there are
1846 * no slashes past the "//", we just return the device.
1850 if ((pcap_strcasecmp(scheme
, "rpcap") == 0 ||
1851 pcap_strcasecmp(scheme
, "rpcaps") == 0) &&
1852 strchr(colonp
+ 3, '/') == NULL
) {
1856 * Return a NULL pointer for the scheme, user information,
1857 * host, and port, and return the device as the path.
1860 *pathp
= strdup(colonp
+ 3);
1861 if (*pathp
== NULL
) {
1862 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1870 * OK, now start parsing the authority.
1871 * Get token, terminated with / or terminated at the end of
1874 authority_len
= strcspn(colonp
+ 3, "/");
1875 authority
= get_substring(colonp
+ 3, authority_len
, ebuf
);
1876 if (authority
== NULL
) {
1883 endp
= colonp
+ 3 + authority_len
;
1886 * Now carve the authority field into its components.
1891 * Is there a userinfo field?
1893 atsignp
= strchr(parsep
, '@');
1894 if (atsignp
!= NULL
) {
1898 size_t userinfo_len
;
1900 userinfo_len
= atsignp
- parsep
;
1901 userinfo
= get_substring(parsep
, userinfo_len
, ebuf
);
1902 if (userinfo
== NULL
) {
1910 parsep
= atsignp
+ 1;
1919 * Is there a host field?
1921 if (*parsep
== '\0') {
1923 * No; there's no host field or port field.
1934 * Is it an IP-literal?
1936 if (*parsep
== '[') {
1939 * Treat verything up to the closing square
1940 * bracket as the IP-Literal; we don't worry
1941 * about whether it's a valid IPv6address or
1942 * IPvFuture (or an IPv4address, for that
1943 * matter, just in case we get handed a
1944 * URL with an IPv4 IP-Literal, of the sort
1945 * that pcap_createsrcstr() used to generate,
1946 * and that pcap_parsesrcstr(), in the original
1947 * WinPcap code, accepted).
1949 bracketp
= strchr(parsep
, ']');
1950 if (bracketp
== NULL
) {
1952 * There's no closing square bracket.
1954 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1955 "IP-literal in URL doesn't end with ]");
1961 if (*(bracketp
+ 1) != '\0' &&
1962 *(bracketp
+ 1) != ':') {
1964 * There's extra crud after the
1965 * closing square bracketn.
1967 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1968 "Extra text after IP-literal in URL");
1974 host_len
= (bracketp
- 1) - parsep
;
1975 host
= get_substring(parsep
+ 1, host_len
, ebuf
);
1985 parsep
= bracketp
+ 1;
1989 * Treat everything up to a : or the end of
1990 * the string as the host.
1992 host_len
= strcspn(parsep
, ":");
1993 host
= get_substring(parsep
, host_len
, ebuf
);
2003 parsep
= parsep
+ host_len
;
2007 * Is there a port field?
2009 if (*parsep
== ':') {
2011 * Yes. It's the rest of the authority field.
2016 port_len
= strlen(parsep
);
2017 port
= get_substring(parsep
, port_len
, ebuf
);
2038 * Everything else is the path. Strip off the leading /.
2043 path
= strdup(endp
+ 1);
2045 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
2054 *userinfop
= userinfo
;
2062 pcap_createsrcstr_ex(char *source
, int type
, const char *host
, const char *port
,
2063 const char *name
, unsigned char uses_ssl
, char *errbuf
)
2068 pcap_strlcpy(source
, PCAP_SRC_FILE_STRING
, PCAP_BUF_SIZE
);
2069 if (name
!= NULL
&& *name
!= '\0') {
2070 pcap_strlcat(source
, name
, PCAP_BUF_SIZE
);
2073 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
2074 "The file name cannot be NULL.");
2078 case PCAP_SRC_IFREMOTE
:
2079 pcap_strlcpy(source
,
2080 (uses_ssl
? "rpcaps://" : PCAP_SRC_IF_STRING
),
2082 if (host
!= NULL
&& *host
!= '\0') {
2083 if (strchr(host
, ':') != NULL
) {
2085 * The host name contains a colon, so it's
2086 * probably an IPv6 address, and needs to
2087 * be included in square brackets.
2089 pcap_strlcat(source
, "[", PCAP_BUF_SIZE
);
2090 pcap_strlcat(source
, host
, PCAP_BUF_SIZE
);
2091 pcap_strlcat(source
, "]", PCAP_BUF_SIZE
);
2093 pcap_strlcat(source
, host
, PCAP_BUF_SIZE
);
2095 if (port
!= NULL
&& *port
!= '\0') {
2096 pcap_strlcat(source
, ":", PCAP_BUF_SIZE
);
2097 pcap_strlcat(source
, port
, PCAP_BUF_SIZE
);
2100 pcap_strlcat(source
, "/", PCAP_BUF_SIZE
);
2102 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
2103 "The host name cannot be NULL.");
2107 if (name
!= NULL
&& *name
!= '\0')
2108 pcap_strlcat(source
, name
, PCAP_BUF_SIZE
);
2112 case PCAP_SRC_IFLOCAL
:
2113 pcap_strlcpy(source
, PCAP_SRC_IF_STRING
, PCAP_BUF_SIZE
);
2115 if (name
!= NULL
&& *name
!= '\0')
2116 pcap_strlcat(source
, name
, PCAP_BUF_SIZE
);
2121 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
2122 "The interface type is not valid.");
2129 pcap_createsrcstr(char *source
, int type
, const char *host
, const char *port
,
2130 const char *name
, char *errbuf
)
2132 return (pcap_createsrcstr_ex(source
, type
, host
, port
, name
, 0, errbuf
));
2136 pcap_parsesrcstr_ex(const char *source
, int *type
, char *host
, char *port
,
2137 char *name
, unsigned char *uses_ssl
, char *errbuf
)
2139 char *scheme
, *tmpuserinfo
, *tmphost
, *tmpport
, *tmppath
;
2141 /* Initialization stuff */
2151 /* Parse the source string */
2152 if (pcap_parse_source(source
, &scheme
, &tmpuserinfo
, &tmphost
,
2153 &tmpport
, &tmppath
, errbuf
) == -1) {
2160 if (scheme
== NULL
) {
2164 if (name
&& tmppath
)
2165 pcap_strlcpy(name
, tmppath
, PCAP_BUF_SIZE
);
2167 *type
= PCAP_SRC_IFLOCAL
;
2176 if (strcmp(scheme
, "rpcaps") == 0) {
2178 if (uses_ssl
) *uses_ssl
= 1;
2179 } else if (strcmp(scheme
, "rpcap") == 0) {
2187 * pcap_parse_source() has already handled the case of
2190 if (host
&& tmphost
) {
2192 snprintf(host
, PCAP_BUF_SIZE
, "%s@%s",
2193 tmpuserinfo
, tmphost
);
2195 pcap_strlcpy(host
, tmphost
, PCAP_BUF_SIZE
);
2197 if (port
&& tmpport
)
2198 pcap_strlcpy(port
, tmpport
, PCAP_BUF_SIZE
);
2199 if (name
&& tmppath
)
2200 pcap_strlcpy(name
, tmppath
, PCAP_BUF_SIZE
);
2202 *type
= PCAP_SRC_IFREMOTE
;
2211 if (strcmp(scheme
, "file") == 0) {
2215 if (name
&& tmppath
)
2216 pcap_strlcpy(name
, tmppath
, PCAP_BUF_SIZE
);
2218 *type
= PCAP_SRC_FILE
;
2228 * Neither rpcap: nor file:; just treat the entire string
2229 * as a local device.
2232 pcap_strlcpy(name
, source
, PCAP_BUF_SIZE
);
2234 *type
= PCAP_SRC_IFLOCAL
;
2244 pcap_parsesrcstr(const char *source
, int *type
, char *host
, char *port
,
2245 char *name
, char *errbuf
)
2247 return (pcap_parsesrcstr_ex(source
, type
, host
, port
, name
, NULL
, errbuf
));
2252 pcap_create(const char *device
, char *errbuf
)
2260 * A null device name is equivalent to the "any" device -
2261 * which might not be supported on this platform, but
2262 * this means that you'll get a "not supported" error
2263 * rather than, say, a crash when we try to dereference
2267 device_str
= strdup("any");
2271 * On Windows, for backwards compatibility reasons,
2272 * pcap_lookupdev() returns a pointer to a sequence of
2273 * pairs of UTF-16LE device names and local code page
2274 * description strings.
2276 * This means that if a program uses pcap_lookupdev()
2277 * to get a default device, and hands that to an API
2278 * that opens devices, we'll get handed a UTF-16LE
2279 * string, not a string in the local code page.
2281 * To work around that, we check whether the string
2282 * looks as if it might be a UTF-16LE string and, if
2283 * so, convert it back to the local code page's
2286 * We disable that check in "new API" mode, because:
2288 * 1) You *cannot* reliably detect whether a
2289 * string is UTF-16LE or not; "a" could either
2290 * be a one-character ASCII string or the first
2291 * character of a UTF-16LE string.
2293 * 2) Doing that test can run past the end of
2294 * the string, if it's a 1-character ASCII
2297 * This particular version of this heuristic dates
2298 * back to WinPcap 4.1.1; PacketOpenAdapter() does
2299 * uses the same heuristic, with the exact same
2302 * That's why we disable this in "new API" mode.
2303 * We keep it around in legacy mode for backwards
2306 if (!pcap_new_api
&& device
[0] != '\0' && device
[1] == '\0') {
2309 length
= wcslen((wchar_t *)device
);
2310 device_str
= (char *)malloc(length
+ 1);
2311 if (device_str
== NULL
) {
2312 pcap_fmt_errmsg_for_errno(errbuf
,
2313 PCAP_ERRBUF_SIZE
, errno
,
2318 snprintf(device_str
, length
+ 1, "%ws",
2319 (const wchar_t *)device
);
2322 device_str
= strdup(device
);
2324 if (device_str
== NULL
) {
2325 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
2331 * Try each of the non-local-network-interface capture
2332 * source types until we find one that works for this
2333 * device or run out of types.
2335 for (i
= 0; capture_source_types
[i
].create_op
!= NULL
; i
++) {
2337 p
= capture_source_types
[i
].create_op(device_str
, errbuf
,
2341 * The device name refers to a device of the
2342 * type in question; either it succeeded,
2343 * in which case p refers to a pcap_t to
2344 * later activate for the device, or it
2345 * failed, in which case p is null and we
2346 * should return that to report the failure
2351 * We assume the caller filled in errbuf.
2356 p
->opt
.device
= device_str
;
2362 * OK, try it as a regular network interface.
2364 p
= pcap_create_interface(device_str
, errbuf
);
2367 * We assume the caller filled in errbuf.
2372 p
->opt
.device
= device_str
;
2377 * Set nonblocking mode on an unactivated pcap_t; this sets a flag
2378 * checked by pcap_activate(), which sets the mode after calling
2379 * the activate routine.
2382 pcap_setnonblock_unactivated(pcap_t
*p
, int nonblock
)
2384 p
->opt
.nonblock
= nonblock
;
2389 initialize_ops(pcap_t
*p
)
2392 * Set operation pointers for operations that only work on
2393 * an activated pcap_t to point to a routine that returns
2394 * a "this isn't activated" error.
2396 p
->read_op
= pcap_read_not_initialized
;
2397 p
->inject_op
= pcap_inject_not_initialized
;
2398 p
->setfilter_op
= pcap_setfilter_not_initialized
;
2399 p
->setdirection_op
= pcap_setdirection_not_initialized
;
2400 p
->set_datalink_op
= pcap_set_datalink_not_initialized
;
2401 p
->getnonblock_op
= pcap_getnonblock_not_initialized
;
2402 p
->stats_op
= pcap_stats_not_initialized
;
2404 p
->stats_ex_op
= pcap_stats_ex_not_initialized
;
2405 p
->setbuff_op
= pcap_setbuff_not_initialized
;
2406 p
->setmode_op
= pcap_setmode_not_initialized
;
2407 p
->setmintocopy_op
= pcap_setmintocopy_not_initialized
;
2408 p
->getevent_op
= pcap_getevent_not_initialized
;
2409 p
->oid_get_request_op
= pcap_oid_get_request_not_initialized
;
2410 p
->oid_set_request_op
= pcap_oid_set_request_not_initialized
;
2411 p
->sendqueue_transmit_op
= pcap_sendqueue_transmit_not_initialized
;
2412 p
->setuserbuffer_op
= pcap_setuserbuffer_not_initialized
;
2413 p
->live_dump_op
= pcap_live_dump_not_initialized
;
2414 p
->live_dump_ended_op
= pcap_live_dump_ended_not_initialized
;
2415 p
->get_airpcap_handle_op
= pcap_get_airpcap_handle_not_initialized
;
2419 * Default cleanup operation - implementations can override
2420 * this, but should call pcap_cleanup_live_common() after
2421 * doing their own additional cleanup.
2423 p
->cleanup_op
= pcap_cleanup_live_common
;
2426 * In most cases, the standard one-shot callback can
2427 * be used for pcap_next()/pcap_next_ex().
2429 p
->oneshot_callback
= pcap_oneshot
;
2432 * Default breakloop operation - implementations can override
2433 * this, but should call pcap_breakloop_common() before doing
2436 p
->breakloop_op
= pcap_breakloop_common
;
2440 pcap_alloc_pcap_t(char *ebuf
, size_t total_size
, size_t private_offset
)
2446 * total_size is the size of a structure containing a pcap_t
2447 * followed by a private structure.
2449 chunk
= calloc(total_size
, 1);
2450 if (chunk
== NULL
) {
2451 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
2457 * Get a pointer to the pcap_t at the beginning.
2459 p
= (pcap_t
*)chunk
;
2462 p
->handle
= INVALID_HANDLE_VALUE
; /* not opened yet */
2464 p
->fd
= -1; /* not opened yet */
2466 p
->selectable_fd
= -1;
2467 p
->required_select_timeout
= NULL
;
2472 * private_offset is the offset, in bytes, of the private
2473 * data from the beginning of the structure.
2475 * Set the pointer to the private data; that's private_offset
2476 * bytes past the pcap_t.
2478 p
->priv
= (void *)(chunk
+ private_offset
);
2484 pcap_create_common(char *ebuf
, size_t total_size
, size_t private_offset
)
2488 p
= pcap_alloc_pcap_t(ebuf
, total_size
, private_offset
);
2493 * Default to "can't set rfmon mode"; if it's supported by
2494 * a platform, the create routine that called us can set
2495 * the op to its routine to check whether a particular
2496 * device supports it.
2498 p
->can_set_rfmon_op
= pcap_cant_set_rfmon
;
2501 * If pcap_setnonblock() is called on a not-yet-activated
2502 * pcap_t, default to setting a flag and turning
2503 * on non-blocking mode when activated.
2505 p
->setnonblock_op
= pcap_setnonblock_unactivated
;
2509 /* put in some defaults*/
2510 p
->snapshot
= 0; /* max packet size unspecified */
2511 p
->opt
.timeout
= 0; /* no timeout specified */
2512 p
->opt
.buffer_size
= 0; /* use the platform's default */
2515 p
->opt
.immediate
= 0;
2516 p
->opt
.tstamp_type
= -1; /* default to not setting time stamp type */
2517 p
->opt
.tstamp_precision
= PCAP_TSTAMP_PRECISION_MICRO
;
2519 * Platform-dependent options.
2522 p
->opt
.protocol
= 0;
2525 p
->opt
.nocapture_local
= 0;
2529 * Start out with no BPF code generation flags set.
2531 p
->bpf_codegen_flags
= 0;
2537 pcap_check_activated(pcap_t
*p
)
2540 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
, "can't perform "
2541 " operation on activated capture");
2548 pcap_set_snaplen(pcap_t
*p
, int snaplen
)
2550 if (pcap_check_activated(p
))
2551 return (PCAP_ERROR_ACTIVATED
);
2552 p
->snapshot
= snaplen
;
2557 pcap_set_promisc(pcap_t
*p
, int promisc
)
2559 if (pcap_check_activated(p
))
2560 return (PCAP_ERROR_ACTIVATED
);
2561 p
->opt
.promisc
= promisc
;
2566 pcap_set_rfmon(pcap_t
*p
, int rfmon
)
2568 if (pcap_check_activated(p
))
2569 return (PCAP_ERROR_ACTIVATED
);
2570 p
->opt
.rfmon
= rfmon
;
2575 pcap_set_timeout(pcap_t
*p
, int timeout_ms
)
2577 if (pcap_check_activated(p
))
2578 return (PCAP_ERROR_ACTIVATED
);
2579 p
->opt
.timeout
= timeout_ms
;
2584 pcap_set_tstamp_type(pcap_t
*p
, int tstamp_type
)
2588 if (pcap_check_activated(p
))
2589 return (PCAP_ERROR_ACTIVATED
);
2592 * The argument should have been u_int, but that's too late
2593 * to change now - it's an API.
2595 if (tstamp_type
< 0)
2596 return (PCAP_WARNING_TSTAMP_TYPE_NOTSUP
);
2599 * If p->tstamp_type_count is 0, we only support PCAP_TSTAMP_HOST;
2600 * the default time stamp type is PCAP_TSTAMP_HOST.
2602 if (p
->tstamp_type_count
== 0) {
2603 if (tstamp_type
== PCAP_TSTAMP_HOST
) {
2604 p
->opt
.tstamp_type
= tstamp_type
;
2609 * Check whether we claim to support this type of time stamp.
2611 for (i
= 0; i
< p
->tstamp_type_count
; i
++) {
2612 if (p
->tstamp_type_list
[i
] == (u_int
)tstamp_type
) {
2616 p
->opt
.tstamp_type
= tstamp_type
;
2623 * We don't support this type of time stamp.
2625 return (PCAP_WARNING_TSTAMP_TYPE_NOTSUP
);
2629 pcap_set_immediate_mode(pcap_t
*p
, int immediate
)
2631 if (pcap_check_activated(p
))
2632 return (PCAP_ERROR_ACTIVATED
);
2633 p
->opt
.immediate
= immediate
;
2638 pcap_set_buffer_size(pcap_t
*p
, int buffer_size
)
2640 if (pcap_check_activated(p
))
2641 return (PCAP_ERROR_ACTIVATED
);
2642 if (buffer_size
<= 0) {
2644 * Silently ignore invalid values.
2648 p
->opt
.buffer_size
= buffer_size
;
2653 pcap_set_tstamp_precision(pcap_t
*p
, int tstamp_precision
)
2657 if (pcap_check_activated(p
))
2658 return (PCAP_ERROR_ACTIVATED
);
2661 * The argument should have been u_int, but that's too late
2662 * to change now - it's an API.
2664 if (tstamp_precision
< 0)
2665 return (PCAP_ERROR_TSTAMP_PRECISION_NOTSUP
);
2668 * If p->tstamp_precision_count is 0, we only support setting
2669 * the time stamp precision to microsecond precision; every
2670 * pcap module *MUST* support microsecond precision, even if
2671 * it does so by converting the native precision to
2674 if (p
->tstamp_precision_count
== 0) {
2675 if (tstamp_precision
== PCAP_TSTAMP_PRECISION_MICRO
) {
2676 p
->opt
.tstamp_precision
= tstamp_precision
;
2681 * Check whether we claim to support this precision of
2684 for (i
= 0; i
< p
->tstamp_precision_count
; i
++) {
2685 if (p
->tstamp_precision_list
[i
] == (u_int
)tstamp_precision
) {
2689 p
->opt
.tstamp_precision
= tstamp_precision
;
2696 * We don't support this time stamp precision.
2698 return (PCAP_ERROR_TSTAMP_PRECISION_NOTSUP
);
2702 pcap_get_tstamp_precision(pcap_t
*p
)
2704 return (p
->opt
.tstamp_precision
);
2708 pcap_activate(pcap_t
*p
)
2713 * Catch attempts to re-activate an already-activated
2714 * pcap_t; this should, for example, catch code that
2715 * calls pcap_open_live() followed by pcap_activate(),
2716 * as some code that showed up in a Stack Exchange
2719 if (pcap_check_activated(p
))
2720 return (PCAP_ERROR_ACTIVATED
);
2721 status
= p
->activate_op(p
);
2724 * If somebody requested non-blocking mode before
2725 * calling pcap_activate(), turn it on now.
2727 if (p
->opt
.nonblock
) {
2728 status
= p
->setnonblock_op(p
, 1);
2731 * Failed. Undo everything done by
2732 * the activate operation.
2741 if (p
->errbuf
[0] == '\0') {
2743 * No error message supplied by the activate routine;
2744 * for the benefit of programs that don't specially
2745 * handle errors other than PCAP_ERROR, return the
2746 * error message corresponding to the status.
2748 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
, "%s",
2749 pcap_statustostr(status
));
2753 * Undo any operation pointer setting, etc. done by
2754 * the activate operation.
2762 pcap_open_live(const char *device
, int snaplen
, int promisc
, int to_ms
, char *errbuf
)
2766 #ifdef ENABLE_REMOTE
2767 char host
[PCAP_BUF_SIZE
+ 1];
2768 char port
[PCAP_BUF_SIZE
+ 1];
2769 char name
[PCAP_BUF_SIZE
+ 1];
2773 * A null device name is equivalent to the "any" device -
2774 * which might not be supported on this platform, but
2775 * this means that you'll get a "not supported" error
2776 * rather than, say, a crash when we try to dereference
2783 * Retrofit - we have to make older applications compatible with
2785 * So we're calling pcap_open_remote() from here; this is a very
2787 * Obviously, we cannot exploit all the new features; for instance,
2788 * we cannot send authentication, we cannot use a UDP data connection,
2791 if (pcap_parsesrcstr(device
, &srctype
, host
, port
, name
, errbuf
))
2794 if (srctype
== PCAP_SRC_IFREMOTE
) {
2796 * Although we already have host, port and iface, we prefer
2797 * to pass only 'device' to pcap_open_rpcap(), so that it has
2798 * to call pcap_parsesrcstr() again.
2799 * This is less optimized, but much clearer.
2801 return (pcap_open_rpcap(device
, snaplen
,
2802 promisc
? PCAP_OPENFLAG_PROMISCUOUS
: 0, to_ms
,
2805 if (srctype
== PCAP_SRC_FILE
) {
2806 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "unknown URL scheme \"file\"");
2809 if (srctype
== PCAP_SRC_IFLOCAL
) {
2811 * If it starts with rpcap://, that refers to a local device
2812 * (no host part in the URL). Remove the rpcap://, and
2813 * fall through to the regular open path.
2815 if (strncmp(device
, PCAP_SRC_IF_STRING
, strlen(PCAP_SRC_IF_STRING
)) == 0) {
2816 size_t len
= strlen(device
) - strlen(PCAP_SRC_IF_STRING
) + 1;
2819 device
+= strlen(PCAP_SRC_IF_STRING
);
2822 #endif /* ENABLE_REMOTE */
2824 p
= pcap_create(device
, errbuf
);
2827 status
= pcap_set_snaplen(p
, snaplen
);
2830 status
= pcap_set_promisc(p
, promisc
);
2833 status
= pcap_set_timeout(p
, to_ms
);
2837 * Mark this as opened with pcap_open_live(), so that, for
2838 * example, we show the full list of DLT_ values, rather
2839 * than just the ones that are compatible with capturing
2840 * when not in monitor mode. That allows existing applications
2841 * to work the way they used to work, but allows new applications
2842 * that know about the new open API to, for example, find out the
2843 * DLT_ values that they can select without changing whether
2844 * the adapter is in monitor mode or not.
2847 status
= pcap_activate(p
);
2852 if (status
== PCAP_ERROR
)
2853 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %.*s", device
,
2854 PCAP_ERRBUF_SIZE
- 3, p
->errbuf
);
2855 else if (status
== PCAP_ERROR_NO_SUCH_DEVICE
||
2856 status
== PCAP_ERROR_PERM_DENIED
||
2857 status
== PCAP_ERROR_PROMISC_PERM_DENIED
)
2858 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %s (%.*s)", device
,
2859 pcap_statustostr(status
), PCAP_ERRBUF_SIZE
- 6, p
->errbuf
);
2861 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %s", device
,
2862 pcap_statustostr(status
));
2868 pcap_open_offline_common(char *ebuf
, size_t total_size
, size_t private_offset
)
2872 p
= pcap_alloc_pcap_t(ebuf
, total_size
, private_offset
);
2876 p
->opt
.tstamp_precision
= PCAP_TSTAMP_PRECISION_MICRO
;
2882 pcap_dispatch(pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*user
)
2884 return (p
->read_op(p
, cnt
, callback
, user
));
2888 pcap_loop(pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*user
)
2893 if (p
->rfile
!= NULL
) {
2895 * 0 means EOF, so don't loop if we get 0.
2897 n
= pcap_offline_read(p
, cnt
, callback
, user
);
2900 * XXX keep reading until we get something
2901 * (or an error occurs)
2904 n
= p
->read_op(p
, cnt
, callback
, user
);
2909 if (!PACKET_COUNT_IS_UNLIMITED(cnt
)) {
2918 * Force the loop in "pcap_read()" or "pcap_read_offline()" to terminate.
2921 pcap_breakloop(pcap_t
*p
)
2927 pcap_datalink(pcap_t
*p
)
2930 return (PCAP_ERROR_NOT_ACTIVATED
);
2931 return (p
->linktype
);
2935 pcap_datalink_ext(pcap_t
*p
)
2938 return (PCAP_ERROR_NOT_ACTIVATED
);
2939 return (p
->linktype_ext
);
2943 pcap_list_datalinks(pcap_t
*p
, int **dlt_buffer
)
2946 return (PCAP_ERROR_NOT_ACTIVATED
);
2947 if (p
->dlt_count
== 0) {
2949 * We couldn't fetch the list of DLTs, which means
2950 * this platform doesn't support changing the
2951 * DLT for an interface. Return a list of DLTs
2952 * containing only the DLT this device supports.
2954 *dlt_buffer
= (int*)malloc(sizeof(**dlt_buffer
));
2955 if (*dlt_buffer
== NULL
) {
2956 pcap_fmt_errmsg_for_errno(p
->errbuf
, sizeof(p
->errbuf
),
2958 return (PCAP_ERROR
);
2960 **dlt_buffer
= p
->linktype
;
2963 *dlt_buffer
= (int*)calloc(sizeof(**dlt_buffer
), p
->dlt_count
);
2964 if (*dlt_buffer
== NULL
) {
2965 pcap_fmt_errmsg_for_errno(p
->errbuf
, sizeof(p
->errbuf
),
2967 return (PCAP_ERROR
);
2969 (void)memcpy(*dlt_buffer
, p
->dlt_list
,
2970 sizeof(**dlt_buffer
) * p
->dlt_count
);
2971 return (p
->dlt_count
);
2976 * In Windows, you might have a library built with one version of the
2977 * C runtime library and an application built with another version of
2978 * the C runtime library, which means that the library might use one
2979 * version of malloc() and free() and the application might use another
2980 * version of malloc() and free(). If so, that means something
2981 * allocated by the library cannot be freed by the application, so we
2982 * need to have a pcap_free_datalinks() routine to free up the list
2983 * allocated by pcap_list_datalinks(), even though it's just a wrapper
2987 pcap_free_datalinks(int *dlt_list
)
2993 pcap_set_datalink(pcap_t
*p
, int dlt
)
2996 const char *dlt_name
;
3001 if (p
->dlt_count
== 0 || p
->set_datalink_op
== NULL
) {
3003 * We couldn't fetch the list of DLTs, or we don't
3004 * have a "set datalink" operation, which means
3005 * this platform doesn't support changing the
3006 * DLT for an interface. Check whether the new
3007 * DLT is the one this interface supports.
3009 if (p
->linktype
!= dlt
)
3013 * It is, so there's nothing we need to do here.
3017 for (i
= 0; i
< p
->dlt_count
; i
++)
3018 if (p
->dlt_list
[i
] == (u_int
)dlt
)
3020 if (i
>= p
->dlt_count
)
3022 if (p
->dlt_count
== 2 && p
->dlt_list
[0] == DLT_EN10MB
&&
3023 dlt
== DLT_DOCSIS
) {
3025 * This is presumably an Ethernet device, as the first
3026 * link-layer type it offers is DLT_EN10MB, and the only
3027 * other type it offers is DLT_DOCSIS. That means that
3028 * we can't tell the driver to supply DOCSIS link-layer
3029 * headers - we're just pretending that's what we're
3030 * getting, as, presumably, we're capturing on a dedicated
3031 * link to a Cisco Cable Modem Termination System, and
3032 * it's putting raw DOCSIS frames on the wire inside low-level
3038 if (p
->set_datalink_op(p
, dlt
) == -1)
3044 dlt_name
= pcap_datalink_val_to_name(dlt
);
3045 if (dlt_name
!= NULL
) {
3046 (void) snprintf(p
->errbuf
, sizeof(p
->errbuf
),
3047 "%s is not one of the DLTs supported by this device",
3050 (void) snprintf(p
->errbuf
, sizeof(p
->errbuf
),
3051 "DLT %d is not one of the DLTs supported by this device",
3058 * This array is designed for mapping upper and lower case letter
3059 * together for a case independent comparison. The mappings are
3060 * based upon ascii character sequences.
3062 static const u_char charmap
[] = {
3063 (u_char
)'\000', (u_char
)'\001', (u_char
)'\002', (u_char
)'\003',
3064 (u_char
)'\004', (u_char
)'\005', (u_char
)'\006', (u_char
)'\007',
3065 (u_char
)'\010', (u_char
)'\011', (u_char
)'\012', (u_char
)'\013',
3066 (u_char
)'\014', (u_char
)'\015', (u_char
)'\016', (u_char
)'\017',
3067 (u_char
)'\020', (u_char
)'\021', (u_char
)'\022', (u_char
)'\023',
3068 (u_char
)'\024', (u_char
)'\025', (u_char
)'\026', (u_char
)'\027',
3069 (u_char
)'\030', (u_char
)'\031', (u_char
)'\032', (u_char
)'\033',
3070 (u_char
)'\034', (u_char
)'\035', (u_char
)'\036', (u_char
)'\037',
3071 (u_char
)'\040', (u_char
)'\041', (u_char
)'\042', (u_char
)'\043',
3072 (u_char
)'\044', (u_char
)'\045', (u_char
)'\046', (u_char
)'\047',
3073 (u_char
)'\050', (u_char
)'\051', (u_char
)'\052', (u_char
)'\053',
3074 (u_char
)'\054', (u_char
)'\055', (u_char
)'\056', (u_char
)'\057',
3075 (u_char
)'\060', (u_char
)'\061', (u_char
)'\062', (u_char
)'\063',
3076 (u_char
)'\064', (u_char
)'\065', (u_char
)'\066', (u_char
)'\067',
3077 (u_char
)'\070', (u_char
)'\071', (u_char
)'\072', (u_char
)'\073',
3078 (u_char
)'\074', (u_char
)'\075', (u_char
)'\076', (u_char
)'\077',
3079 (u_char
)'\100', (u_char
)'\141', (u_char
)'\142', (u_char
)'\143',
3080 (u_char
)'\144', (u_char
)'\145', (u_char
)'\146', (u_char
)'\147',
3081 (u_char
)'\150', (u_char
)'\151', (u_char
)'\152', (u_char
)'\153',
3082 (u_char
)'\154', (u_char
)'\155', (u_char
)'\156', (u_char
)'\157',
3083 (u_char
)'\160', (u_char
)'\161', (u_char
)'\162', (u_char
)'\163',
3084 (u_char
)'\164', (u_char
)'\165', (u_char
)'\166', (u_char
)'\167',
3085 (u_char
)'\170', (u_char
)'\171', (u_char
)'\172', (u_char
)'\133',
3086 (u_char
)'\134', (u_char
)'\135', (u_char
)'\136', (u_char
)'\137',
3087 (u_char
)'\140', (u_char
)'\141', (u_char
)'\142', (u_char
)'\143',
3088 (u_char
)'\144', (u_char
)'\145', (u_char
)'\146', (u_char
)'\147',
3089 (u_char
)'\150', (u_char
)'\151', (u_char
)'\152', (u_char
)'\153',
3090 (u_char
)'\154', (u_char
)'\155', (u_char
)'\156', (u_char
)'\157',
3091 (u_char
)'\160', (u_char
)'\161', (u_char
)'\162', (u_char
)'\163',
3092 (u_char
)'\164', (u_char
)'\165', (u_char
)'\166', (u_char
)'\167',
3093 (u_char
)'\170', (u_char
)'\171', (u_char
)'\172', (u_char
)'\173',
3094 (u_char
)'\174', (u_char
)'\175', (u_char
)'\176', (u_char
)'\177',
3095 (u_char
)'\200', (u_char
)'\201', (u_char
)'\202', (u_char
)'\203',
3096 (u_char
)'\204', (u_char
)'\205', (u_char
)'\206', (u_char
)'\207',
3097 (u_char
)'\210', (u_char
)'\211', (u_char
)'\212', (u_char
)'\213',
3098 (u_char
)'\214', (u_char
)'\215', (u_char
)'\216', (u_char
)'\217',
3099 (u_char
)'\220', (u_char
)'\221', (u_char
)'\222', (u_char
)'\223',
3100 (u_char
)'\224', (u_char
)'\225', (u_char
)'\226', (u_char
)'\227',
3101 (u_char
)'\230', (u_char
)'\231', (u_char
)'\232', (u_char
)'\233',
3102 (u_char
)'\234', (u_char
)'\235', (u_char
)'\236', (u_char
)'\237',
3103 (u_char
)'\240', (u_char
)'\241', (u_char
)'\242', (u_char
)'\243',
3104 (u_char
)'\244', (u_char
)'\245', (u_char
)'\246', (u_char
)'\247',
3105 (u_char
)'\250', (u_char
)'\251', (u_char
)'\252', (u_char
)'\253',
3106 (u_char
)'\254', (u_char
)'\255', (u_char
)'\256', (u_char
)'\257',
3107 (u_char
)'\260', (u_char
)'\261', (u_char
)'\262', (u_char
)'\263',
3108 (u_char
)'\264', (u_char
)'\265', (u_char
)'\266', (u_char
)'\267',
3109 (u_char
)'\270', (u_char
)'\271', (u_char
)'\272', (u_char
)'\273',
3110 (u_char
)'\274', (u_char
)'\275', (u_char
)'\276', (u_char
)'\277',
3111 (u_char
)'\300', (u_char
)'\341', (u_char
)'\342', (u_char
)'\343',
3112 (u_char
)'\344', (u_char
)'\345', (u_char
)'\346', (u_char
)'\347',
3113 (u_char
)'\350', (u_char
)'\351', (u_char
)'\352', (u_char
)'\353',
3114 (u_char
)'\354', (u_char
)'\355', (u_char
)'\356', (u_char
)'\357',
3115 (u_char
)'\360', (u_char
)'\361', (u_char
)'\362', (u_char
)'\363',
3116 (u_char
)'\364', (u_char
)'\365', (u_char
)'\366', (u_char
)'\367',
3117 (u_char
)'\370', (u_char
)'\371', (u_char
)'\372', (u_char
)'\333',
3118 (u_char
)'\334', (u_char
)'\335', (u_char
)'\336', (u_char
)'\337',
3119 (u_char
)'\340', (u_char
)'\341', (u_char
)'\342', (u_char
)'\343',
3120 (u_char
)'\344', (u_char
)'\345', (u_char
)'\346', (u_char
)'\347',
3121 (u_char
)'\350', (u_char
)'\351', (u_char
)'\352', (u_char
)'\353',
3122 (u_char
)'\354', (u_char
)'\355', (u_char
)'\356', (u_char
)'\357',
3123 (u_char
)'\360', (u_char
)'\361', (u_char
)'\362', (u_char
)'\363',
3124 (u_char
)'\364', (u_char
)'\365', (u_char
)'\366', (u_char
)'\367',
3125 (u_char
)'\370', (u_char
)'\371', (u_char
)'\372', (u_char
)'\373',
3126 (u_char
)'\374', (u_char
)'\375', (u_char
)'\376', (u_char
)'\377',
3130 pcap_strcasecmp(const char *s1
, const char *s2
)
3132 register const u_char
*cm
= charmap
,
3133 *us1
= (const u_char
*)s1
,
3134 *us2
= (const u_char
*)s2
;
3136 while (cm
[*us1
] == cm
[*us2
++])
3139 return (cm
[*us1
] - cm
[*--us2
]);
3144 const char *description
;
3148 #define DLT_CHOICE(code, description) { #code, description, DLT_ ## code }
3149 #define DLT_CHOICE_SENTINEL { NULL, NULL, 0 }
3151 static struct dlt_choice dlt_choices
[] = {
3152 DLT_CHOICE(NULL
, "BSD loopback"),
3153 DLT_CHOICE(EN10MB
, "Ethernet"),
3154 DLT_CHOICE(IEEE802
, "Token ring"),
3155 DLT_CHOICE(ARCNET
, "BSD ARCNET"),
3156 DLT_CHOICE(SLIP
, "SLIP"),
3157 DLT_CHOICE(PPP
, "PPP"),
3158 DLT_CHOICE(FDDI
, "FDDI"),
3159 DLT_CHOICE(ATM_RFC1483
, "RFC 1483 LLC-encapsulated ATM"),
3160 DLT_CHOICE(RAW
, "Raw IP"),
3161 DLT_CHOICE(SLIP_BSDOS
, "BSD/OS SLIP"),
3162 DLT_CHOICE(PPP_BSDOS
, "BSD/OS PPP"),
3163 DLT_CHOICE(ATM_CLIP
, "Linux Classical IP over ATM"),
3164 DLT_CHOICE(PPP_SERIAL
, "PPP over serial"),
3165 DLT_CHOICE(PPP_ETHER
, "PPPoE"),
3166 DLT_CHOICE(SYMANTEC_FIREWALL
, "Symantec Firewall"),
3167 DLT_CHOICE(C_HDLC
, "Cisco HDLC"),
3168 DLT_CHOICE(IEEE802_11
, "802.11"),
3169 DLT_CHOICE(FRELAY
, "Frame Relay"),
3170 DLT_CHOICE(LOOP
, "OpenBSD loopback"),
3171 DLT_CHOICE(ENC
, "OpenBSD encapsulated IP"),
3172 DLT_CHOICE(LINUX_SLL
, "Linux cooked v1"),
3173 DLT_CHOICE(LTALK
, "Localtalk"),
3174 DLT_CHOICE(PFLOG
, "OpenBSD pflog file"),
3175 DLT_CHOICE(PFSYNC
, "Packet filter state syncing"),
3176 DLT_CHOICE(PRISM_HEADER
, "802.11 plus Prism header"),
3177 DLT_CHOICE(IP_OVER_FC
, "RFC 2625 IP-over-Fibre Channel"),
3178 DLT_CHOICE(SUNATM
, "Sun raw ATM"),
3179 DLT_CHOICE(IEEE802_11_RADIO
, "802.11 plus radiotap header"),
3180 DLT_CHOICE(ARCNET_LINUX
, "Linux ARCNET"),
3181 DLT_CHOICE(JUNIPER_MLPPP
, "Juniper Multi-Link PPP"),
3182 DLT_CHOICE(JUNIPER_MLFR
, "Juniper Multi-Link Frame Relay"),
3183 DLT_CHOICE(JUNIPER_ES
, "Juniper Encryption Services PIC"),
3184 DLT_CHOICE(JUNIPER_GGSN
, "Juniper GGSN PIC"),
3185 DLT_CHOICE(JUNIPER_MFR
, "Juniper FRF.16 Frame Relay"),
3186 DLT_CHOICE(JUNIPER_ATM2
, "Juniper ATM2 PIC"),
3187 DLT_CHOICE(JUNIPER_SERVICES
, "Juniper Advanced Services PIC"),
3188 DLT_CHOICE(JUNIPER_ATM1
, "Juniper ATM1 PIC"),
3189 DLT_CHOICE(APPLE_IP_OVER_IEEE1394
, "Apple IP-over-IEEE 1394"),
3190 DLT_CHOICE(MTP2_WITH_PHDR
, "SS7 MTP2 with Pseudo-header"),
3191 DLT_CHOICE(MTP2
, "SS7 MTP2"),
3192 DLT_CHOICE(MTP3
, "SS7 MTP3"),
3193 DLT_CHOICE(SCCP
, "SS7 SCCP"),
3194 DLT_CHOICE(DOCSIS
, "DOCSIS"),
3195 DLT_CHOICE(LINUX_IRDA
, "Linux IrDA"),
3196 DLT_CHOICE(IEEE802_11_RADIO_AVS
, "802.11 plus AVS radio information header"),
3197 DLT_CHOICE(JUNIPER_MONITOR
, "Juniper Passive Monitor PIC"),
3198 DLT_CHOICE(BACNET_MS_TP
, "BACnet MS/TP"),
3199 DLT_CHOICE(PPP_PPPD
, "PPP for pppd, with direction flag"),
3200 DLT_CHOICE(JUNIPER_PPPOE
, "Juniper PPPoE"),
3201 DLT_CHOICE(JUNIPER_PPPOE_ATM
, "Juniper PPPoE/ATM"),
3202 DLT_CHOICE(GPRS_LLC
, "GPRS LLC"),
3203 DLT_CHOICE(GPF_T
, "GPF-T"),
3204 DLT_CHOICE(GPF_F
, "GPF-F"),
3205 DLT_CHOICE(JUNIPER_PIC_PEER
, "Juniper PIC Peer"),
3206 DLT_CHOICE(ERF_ETH
, "Ethernet with Endace ERF header"),
3207 DLT_CHOICE(ERF_POS
, "Packet-over-SONET with Endace ERF header"),
3208 DLT_CHOICE(LINUX_LAPD
, "Linux vISDN LAPD"),
3209 DLT_CHOICE(JUNIPER_ETHER
, "Juniper Ethernet"),
3210 DLT_CHOICE(JUNIPER_PPP
, "Juniper PPP"),
3211 DLT_CHOICE(JUNIPER_FRELAY
, "Juniper Frame Relay"),
3212 DLT_CHOICE(JUNIPER_CHDLC
, "Juniper C-HDLC"),
3213 DLT_CHOICE(MFR
, "FRF.16 Frame Relay"),
3214 DLT_CHOICE(JUNIPER_VP
, "Juniper Voice PIC"),
3215 DLT_CHOICE(A429
, "Arinc 429"),
3216 DLT_CHOICE(A653_ICM
, "Arinc 653 Interpartition Communication"),
3217 DLT_CHOICE(USB_FREEBSD
, "USB with FreeBSD header"),
3218 DLT_CHOICE(BLUETOOTH_HCI_H4
, "Bluetooth HCI UART transport layer"),
3219 DLT_CHOICE(IEEE802_16_MAC_CPS
, "IEEE 802.16 MAC Common Part Sublayer"),
3220 DLT_CHOICE(USB_LINUX
, "USB with Linux header"),
3221 DLT_CHOICE(CAN20B
, "Controller Area Network (CAN) v. 2.0B"),
3222 DLT_CHOICE(IEEE802_15_4_LINUX
, "IEEE 802.15.4 with Linux padding"),
3223 DLT_CHOICE(PPI
, "Per-Packet Information"),
3224 DLT_CHOICE(IEEE802_16_MAC_CPS_RADIO
, "IEEE 802.16 MAC Common Part Sublayer plus radiotap header"),
3225 DLT_CHOICE(JUNIPER_ISM
, "Juniper Integrated Service Module"),
3226 DLT_CHOICE(IEEE802_15_4
, "IEEE 802.15.4 with FCS"),
3227 DLT_CHOICE(SITA
, "SITA pseudo-header"),
3228 DLT_CHOICE(ERF
, "Endace ERF header"),
3229 DLT_CHOICE(RAIF1
, "Ethernet with u10 Networks pseudo-header"),
3230 DLT_CHOICE(IPMB_KONTRON
, "IPMB with Kontron pseudo-header"),
3231 DLT_CHOICE(JUNIPER_ST
, "Juniper Secure Tunnel"),
3232 DLT_CHOICE(BLUETOOTH_HCI_H4_WITH_PHDR
, "Bluetooth HCI UART transport layer plus pseudo-header"),
3233 DLT_CHOICE(AX25_KISS
, "AX.25 with KISS header"),
3234 DLT_CHOICE(IPMB_LINUX
, "IPMB with Linux/Pigeon Point pseudo-header"),
3235 DLT_CHOICE(IEEE802_15_4_NONASK_PHY
, "IEEE 802.15.4 with non-ASK PHY data"),
3236 DLT_CHOICE(MPLS
, "MPLS with label as link-layer header"),
3237 DLT_CHOICE(LINUX_EVDEV
, "Linux evdev events"),
3238 DLT_CHOICE(USB_LINUX_MMAPPED
, "USB with padded Linux header"),
3239 DLT_CHOICE(DECT
, "DECT"),
3240 DLT_CHOICE(AOS
, "AOS Space Data Link protocol"),
3241 DLT_CHOICE(WIHART
, "Wireless HART"),
3242 DLT_CHOICE(FC_2
, "Fibre Channel FC-2"),
3243 DLT_CHOICE(FC_2_WITH_FRAME_DELIMS
, "Fibre Channel FC-2 with frame delimiters"),
3244 DLT_CHOICE(IPNET
, "Solaris ipnet"),
3245 DLT_CHOICE(CAN_SOCKETCAN
, "CAN-bus with SocketCAN headers"),
3246 DLT_CHOICE(IPV4
, "Raw IPv4"),
3247 DLT_CHOICE(IPV6
, "Raw IPv6"),
3248 DLT_CHOICE(IEEE802_15_4_NOFCS
, "IEEE 802.15.4 without FCS"),
3249 DLT_CHOICE(DBUS
, "D-Bus"),
3250 DLT_CHOICE(JUNIPER_VS
, "Juniper Virtual Server"),
3251 DLT_CHOICE(JUNIPER_SRX_E2E
, "Juniper SRX E2E"),
3252 DLT_CHOICE(JUNIPER_FIBRECHANNEL
, "Juniper Fibre Channel"),
3253 DLT_CHOICE(DVB_CI
, "DVB-CI"),
3254 DLT_CHOICE(MUX27010
, "MUX27010"),
3255 DLT_CHOICE(STANAG_5066_D_PDU
, "STANAG 5066 D_PDUs"),
3256 DLT_CHOICE(JUNIPER_ATM_CEMIC
, "Juniper ATM CEMIC"),
3257 DLT_CHOICE(NFLOG
, "Linux netfilter log messages"),
3258 DLT_CHOICE(NETANALYZER
, "Ethernet with Hilscher netANALYZER pseudo-header"),
3259 DLT_CHOICE(NETANALYZER_TRANSPARENT
, "Ethernet with Hilscher netANALYZER pseudo-header and with preamble and SFD"),
3260 DLT_CHOICE(IPOIB
, "RFC 4391 IP-over-Infiniband"),
3261 DLT_CHOICE(MPEG_2_TS
, "MPEG-2 transport stream"),
3262 DLT_CHOICE(NG40
, "ng40 protocol tester Iub/Iur"),
3263 DLT_CHOICE(NFC_LLCP
, "NFC LLCP PDUs with pseudo-header"),
3264 DLT_CHOICE(INFINIBAND
, "InfiniBand"),
3265 DLT_CHOICE(SCTP
, "SCTP"),
3266 DLT_CHOICE(USBPCAP
, "USB with USBPcap header"),
3267 DLT_CHOICE(RTAC_SERIAL
, "Schweitzer Engineering Laboratories RTAC packets"),
3268 DLT_CHOICE(BLUETOOTH_LE_LL
, "Bluetooth Low Energy air interface"),
3269 DLT_CHOICE(NETLINK
, "Linux netlink"),
3270 DLT_CHOICE(BLUETOOTH_LINUX_MONITOR
, "Bluetooth Linux Monitor"),
3271 DLT_CHOICE(BLUETOOTH_BREDR_BB
, "Bluetooth Basic Rate/Enhanced Data Rate baseband packets"),
3272 DLT_CHOICE(BLUETOOTH_LE_LL_WITH_PHDR
, "Bluetooth Low Energy air interface with pseudo-header"),
3273 DLT_CHOICE(PROFIBUS_DL
, "PROFIBUS data link layer"),
3274 DLT_CHOICE(PKTAP
, "Apple DLT_PKTAP"),
3275 DLT_CHOICE(EPON
, "Ethernet with 802.3 Clause 65 EPON preamble"),
3276 DLT_CHOICE(IPMI_HPM_2
, "IPMI trace packets"),
3277 DLT_CHOICE(ZWAVE_R1_R2
, "Z-Wave RF profile R1 and R2 packets"),
3278 DLT_CHOICE(ZWAVE_R3
, "Z-Wave RF profile R3 packets"),
3279 DLT_CHOICE(WATTSTOPPER_DLM
, "WattStopper Digital Lighting Management (DLM) and Legrand Nitoo Open protocol"),
3280 DLT_CHOICE(ISO_14443
, "ISO 14443 messages"),
3281 DLT_CHOICE(RDS
, "IEC 62106 Radio Data System groups"),
3282 DLT_CHOICE(USB_DARWIN
, "USB with Darwin header"),
3283 DLT_CHOICE(OPENFLOW
, "OpenBSD DLT_OPENFLOW"),
3284 DLT_CHOICE(SDLC
, "IBM SDLC frames"),
3285 DLT_CHOICE(TI_LLN_SNIFFER
, "TI LLN sniffer frames"),
3286 DLT_CHOICE(VSOCK
, "Linux vsock"),
3287 DLT_CHOICE(NORDIC_BLE
, "Nordic Semiconductor Bluetooth LE sniffer frames"),
3288 DLT_CHOICE(DOCSIS31_XRA31
, "Excentis XRA-31 DOCSIS 3.1 RF sniffer frames"),
3289 DLT_CHOICE(ETHERNET_MPACKET
, "802.3br mPackets"),
3290 DLT_CHOICE(DISPLAYPORT_AUX
, "DisplayPort AUX channel monitoring data"),
3291 DLT_CHOICE(LINUX_SLL2
, "Linux cooked v2"),
3292 DLT_CHOICE(OPENVIZSLA
, "OpenVizsla USB"),
3293 DLT_CHOICE(EBHSCR
, "Elektrobit High Speed Capture and Replay (EBHSCR)"),
3294 DLT_CHOICE(VPP_DISPATCH
, "VPP graph dispatch tracer"),
3295 DLT_CHOICE(DSA_TAG_BRCM
, "Broadcom tag"),
3296 DLT_CHOICE(DSA_TAG_BRCM_PREPEND
, "Broadcom tag (prepended)"),
3297 DLT_CHOICE(IEEE802_15_4_TAP
, "IEEE 802.15.4 with pseudo-header"),
3298 DLT_CHOICE(DSA_TAG_DSA
, "Marvell DSA"),
3299 DLT_CHOICE(DSA_TAG_EDSA
, "Marvell EDSA"),
3300 DLT_CHOICE(ELEE
, "ELEE lawful intercept packets"),
3301 DLT_CHOICE(Z_WAVE_SERIAL
, "Z-Wave serial frames between host and chip"),
3302 DLT_CHOICE(USB_2_0
, "USB 2.0/1.1/1.0 as transmitted over the cable"),
3303 DLT_CHOICE(ATSC_ALP
, "ATSC Link-Layer Protocol packets"),
3304 DLT_CHOICE(ETW
, "Event Tracing for Windows messages"),
3309 pcap_datalink_name_to_val(const char *name
)
3313 for (i
= 0; dlt_choices
[i
].name
!= NULL
; i
++) {
3314 if (pcap_strcasecmp(dlt_choices
[i
].name
, name
) == 0)
3315 return (dlt_choices
[i
].dlt
);
3321 pcap_datalink_val_to_name(int dlt
)
3325 for (i
= 0; dlt_choices
[i
].name
!= NULL
; i
++) {
3326 if (dlt_choices
[i
].dlt
== dlt
)
3327 return (dlt_choices
[i
].name
);
3333 pcap_datalink_val_to_description(int dlt
)
3337 for (i
= 0; dlt_choices
[i
].name
!= NULL
; i
++) {
3338 if (dlt_choices
[i
].dlt
== dlt
)
3339 return (dlt_choices
[i
].description
);
3345 pcap_datalink_val_to_description_or_dlt(int dlt
)
3347 static char unkbuf
[40];
3348 const char *description
;
3350 description
= pcap_datalink_val_to_description(dlt
);
3351 if (description
!= NULL
) {
3354 (void)snprintf(unkbuf
, sizeof(unkbuf
), "DLT %u", dlt
);
3359 struct tstamp_type_choice
{
3361 const char *description
;
3365 static struct tstamp_type_choice tstamp_type_choices
[] = {
3366 { "host", "Host", PCAP_TSTAMP_HOST
},
3367 { "host_lowprec", "Host, low precision", PCAP_TSTAMP_HOST_LOWPREC
},
3368 { "host_hiprec", "Host, high precision", PCAP_TSTAMP_HOST_HIPREC
},
3369 { "adapter", "Adapter", PCAP_TSTAMP_ADAPTER
},
3370 { "adapter_unsynced", "Adapter, not synced with system time", PCAP_TSTAMP_ADAPTER_UNSYNCED
},
3371 { "host_hiprec_unsynced", "Host, high precision, not synced with system time", PCAP_TSTAMP_HOST_HIPREC_UNSYNCED
},
3376 pcap_tstamp_type_name_to_val(const char *name
)
3380 for (i
= 0; tstamp_type_choices
[i
].name
!= NULL
; i
++) {
3381 if (pcap_strcasecmp(tstamp_type_choices
[i
].name
, name
) == 0)
3382 return (tstamp_type_choices
[i
].type
);
3384 return (PCAP_ERROR
);
3388 pcap_tstamp_type_val_to_name(int tstamp_type
)
3392 for (i
= 0; tstamp_type_choices
[i
].name
!= NULL
; i
++) {
3393 if (tstamp_type_choices
[i
].type
== tstamp_type
)
3394 return (tstamp_type_choices
[i
].name
);
3400 pcap_tstamp_type_val_to_description(int tstamp_type
)
3404 for (i
= 0; tstamp_type_choices
[i
].name
!= NULL
; i
++) {
3405 if (tstamp_type_choices
[i
].type
== tstamp_type
)
3406 return (tstamp_type_choices
[i
].description
);
3412 pcap_snapshot(pcap_t
*p
)
3415 return (PCAP_ERROR_NOT_ACTIVATED
);
3416 return (p
->snapshot
);
3420 pcap_is_swapped(pcap_t
*p
)
3423 return (PCAP_ERROR_NOT_ACTIVATED
);
3424 return (p
->swapped
);
3428 pcap_major_version(pcap_t
*p
)
3431 return (PCAP_ERROR_NOT_ACTIVATED
);
3432 return (p
->version_major
);
3436 pcap_minor_version(pcap_t
*p
)
3439 return (PCAP_ERROR_NOT_ACTIVATED
);
3440 return (p
->version_minor
);
3444 pcap_bufsize(pcap_t
*p
)
3447 return (PCAP_ERROR_NOT_ACTIVATED
);
3448 return (p
->bufsize
);
3452 pcap_file(pcap_t
*p
)
3459 pcap_fileno(pcap_t
*p
)
3461 if (p
->handle
!= INVALID_HANDLE_VALUE
) {
3463 * This is a bogus and now-deprecated API; we
3464 * squelch the narrowing warning for the cast
3465 * from HANDLE to DWORD. If Windows programmmers
3466 * need to get at the HANDLE for a pcap_t, *if*
3467 * there is one, they should request such a
3468 * routine (and be prepared for it to return
3469 * INVALID_HANDLE_VALUE).
3472 return ((int)(DWORD
)p
->handle
);
3475 return (PCAP_ERROR
);
3479 pcap_fileno(pcap_t
*p
)
3485 #if !defined(_WIN32) && !defined(MSDOS)
3487 pcap_get_selectable_fd(pcap_t
*p
)
3489 return (p
->selectable_fd
);
3492 const struct timeval
*
3493 pcap_get_required_select_timeout(pcap_t
*p
)
3495 return (p
->required_select_timeout
);
3500 pcap_perror(pcap_t
*p
, const char *prefix
)
3502 fprintf(stderr
, "%s: %s\n", prefix
, p
->errbuf
);
3506 pcap_geterr(pcap_t
*p
)
3512 pcap_getnonblock(pcap_t
*p
, char *errbuf
)
3516 ret
= p
->getnonblock_op(p
);
3519 * The get nonblock operation sets p->errbuf; this
3520 * function *shouldn't* have had a separate errbuf
3521 * argument, as it didn't need one, but I goofed
3524 * We copy the error message to errbuf, so callers
3525 * can find it in either place.
3527 pcap_strlcpy(errbuf
, p
->errbuf
, PCAP_ERRBUF_SIZE
);
3533 * Get the current non-blocking mode setting, under the assumption that
3534 * it's just the standard POSIX non-blocking flag.
3536 #if !defined(_WIN32) && !defined(MSDOS)
3538 pcap_getnonblock_fd(pcap_t
*p
)
3542 fdflags
= fcntl(p
->fd
, F_GETFL
, 0);
3543 if (fdflags
== -1) {
3544 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3548 if (fdflags
& O_NONBLOCK
)
3556 pcap_setnonblock(pcap_t
*p
, int nonblock
, char *errbuf
)
3560 ret
= p
->setnonblock_op(p
, nonblock
);
3563 * The set nonblock operation sets p->errbuf; this
3564 * function *shouldn't* have had a separate errbuf
3565 * argument, as it didn't need one, but I goofed
3568 * We copy the error message to errbuf, so callers
3569 * can find it in either place.
3571 pcap_strlcpy(errbuf
, p
->errbuf
, PCAP_ERRBUF_SIZE
);
3576 #if !defined(_WIN32) && !defined(MSDOS)
3578 * Set non-blocking mode, under the assumption that it's just the
3579 * standard POSIX non-blocking flag. (This can be called by the
3580 * per-platform non-blocking-mode routine if that routine also
3581 * needs to do some additional work.)
3584 pcap_setnonblock_fd(pcap_t
*p
, int nonblock
)
3588 fdflags
= fcntl(p
->fd
, F_GETFL
, 0);
3589 if (fdflags
== -1) {
3590 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3595 fdflags
|= O_NONBLOCK
;
3597 fdflags
&= ~O_NONBLOCK
;
3598 if (fcntl(p
->fd
, F_SETFL
, fdflags
) == -1) {
3599 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3608 * Generate error strings for PCAP_ERROR_ and PCAP_WARNING_ values.
3611 pcap_statustostr(int errnum
)
3613 static char ebuf
[15+10+1];
3618 return("Generic warning");
3620 case PCAP_WARNING_TSTAMP_TYPE_NOTSUP
:
3621 return ("That type of time stamp is not supported by that device");
3623 case PCAP_WARNING_PROMISC_NOTSUP
:
3624 return ("That device doesn't support promiscuous mode");
3627 return("Generic error");
3629 case PCAP_ERROR_BREAK
:
3630 return("Loop terminated by pcap_breakloop");
3632 case PCAP_ERROR_NOT_ACTIVATED
:
3633 return("The pcap_t has not been activated");
3635 case PCAP_ERROR_ACTIVATED
:
3636 return ("The setting can't be changed after the pcap_t is activated");
3638 case PCAP_ERROR_NO_SUCH_DEVICE
:
3639 return ("No such device exists");
3641 case PCAP_ERROR_RFMON_NOTSUP
:
3642 return ("That device doesn't support monitor mode");
3644 case PCAP_ERROR_NOT_RFMON
:
3645 return ("That operation is supported only in monitor mode");
3647 case PCAP_ERROR_PERM_DENIED
:
3648 return ("You don't have permission to capture on that device");
3650 case PCAP_ERROR_IFACE_NOT_UP
:
3651 return ("That device is not up");
3653 case PCAP_ERROR_CANTSET_TSTAMP_TYPE
:
3654 return ("That device doesn't support setting the time stamp type");
3656 case PCAP_ERROR_PROMISC_PERM_DENIED
:
3657 return ("You don't have permission to capture in promiscuous mode on that device");
3659 case PCAP_ERROR_TSTAMP_PRECISION_NOTSUP
:
3660 return ("That device doesn't support that time stamp precision");
3662 (void)snprintf(ebuf
, sizeof ebuf
, "Unknown error: %d", errnum
);
3667 * Not all systems have strerror().
3670 pcap_strerror(int errnum
)
3672 #ifdef HAVE_STRERROR
3674 static char errbuf
[PCAP_ERRBUF_SIZE
];
3675 errno_t err
= strerror_s(errbuf
, PCAP_ERRBUF_SIZE
, errnum
);
3677 if (err
!= 0) /* err = 0 if successful */
3678 pcap_strlcpy(errbuf
, "strerror_s() error", PCAP_ERRBUF_SIZE
);
3681 return (strerror(errnum
));
3684 extern int sys_nerr
;
3685 extern const char *const sys_errlist
[];
3686 static char errbuf
[PCAP_ERRBUF_SIZE
];
3688 if ((unsigned int)errnum
< sys_nerr
)
3689 return ((char *)sys_errlist
[errnum
]);
3690 (void)snprintf(errbuf
, sizeof errbuf
, "Unknown error: %d", errnum
);
3696 pcap_setfilter(pcap_t
*p
, struct bpf_program
*fp
)
3698 return (p
->setfilter_op(p
, fp
));
3702 * Set direction flag, which controls whether we accept only incoming
3703 * packets, only outgoing packets, or both.
3704 * Note that, depending on the platform, some or all direction arguments
3705 * might not be supported.
3708 pcap_setdirection(pcap_t
*p
, pcap_direction_t d
)
3710 if (p
->setdirection_op
== NULL
) {
3711 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3712 "Setting direction is not supported on this device");
3723 return (p
->setdirection_op(p
, d
));
3727 * Invalid direction.
3729 snprintf(p
->errbuf
, sizeof(p
->errbuf
),
3730 "Invalid direction");
3737 pcap_stats(pcap_t
*p
, struct pcap_stat
*ps
)
3739 return (p
->stats_op(p
, ps
));
3744 pcap_stats_ex(pcap_t
*p
, int *pcap_stat_size
)
3746 return (p
->stats_ex_op(p
, pcap_stat_size
));
3750 pcap_setbuff(pcap_t
*p
, int dim
)
3752 return (p
->setbuff_op(p
, dim
));
3756 pcap_setmode(pcap_t
*p
, int mode
)
3758 return (p
->setmode_op(p
, mode
));
3762 pcap_setmintocopy(pcap_t
*p
, int size
)
3764 return (p
->setmintocopy_op(p
, size
));
3768 pcap_getevent(pcap_t
*p
)
3770 return (p
->getevent_op(p
));
3774 pcap_oid_get_request(pcap_t
*p
, bpf_u_int32 oid
, void *data
, size_t *lenp
)
3776 return (p
->oid_get_request_op(p
, oid
, data
, lenp
));
3780 pcap_oid_set_request(pcap_t
*p
, bpf_u_int32 oid
, const void *data
, size_t *lenp
)
3782 return (p
->oid_set_request_op(p
, oid
, data
, lenp
));
3786 pcap_sendqueue_alloc(u_int memsize
)
3788 pcap_send_queue
*tqueue
;
3790 /* Allocate the queue */
3791 tqueue
= (pcap_send_queue
*)malloc(sizeof(pcap_send_queue
));
3792 if (tqueue
== NULL
){
3796 /* Allocate the buffer */
3797 tqueue
->buffer
= (char *)malloc(memsize
);
3798 if (tqueue
->buffer
== NULL
) {
3803 tqueue
->maxlen
= memsize
;
3810 pcap_sendqueue_destroy(pcap_send_queue
*queue
)
3812 free(queue
->buffer
);
3817 pcap_sendqueue_queue(pcap_send_queue
*queue
, const struct pcap_pkthdr
*pkt_header
, const u_char
*pkt_data
)
3819 if (queue
->len
+ sizeof(struct pcap_pkthdr
) + pkt_header
->caplen
> queue
->maxlen
){
3823 /* Copy the pcap_pkthdr header*/
3824 memcpy(queue
->buffer
+ queue
->len
, pkt_header
, sizeof(struct pcap_pkthdr
));
3825 queue
->len
+= sizeof(struct pcap_pkthdr
);
3827 /* copy the packet */
3828 memcpy(queue
->buffer
+ queue
->len
, pkt_data
, pkt_header
->caplen
);
3829 queue
->len
+= pkt_header
->caplen
;
3835 pcap_sendqueue_transmit(pcap_t
*p
, pcap_send_queue
*queue
, int sync
)
3837 return (p
->sendqueue_transmit_op(p
, queue
, sync
));
3841 pcap_setuserbuffer(pcap_t
*p
, int size
)
3843 return (p
->setuserbuffer_op(p
, size
));
3847 pcap_live_dump(pcap_t
*p
, char *filename
, int maxsize
, int maxpacks
)
3849 return (p
->live_dump_op(p
, filename
, maxsize
, maxpacks
));
3853 pcap_live_dump_ended(pcap_t
*p
, int sync
)
3855 return (p
->live_dump_ended_op(p
, sync
));
3859 pcap_get_airpcap_handle(pcap_t
*p
)
3861 PAirpcapHandle handle
;
3863 handle
= p
->get_airpcap_handle_op(p
);
3864 if (handle
== NULL
) {
3865 (void)snprintf(p
->errbuf
, sizeof(p
->errbuf
),
3866 "This isn't an AirPcap device");
3873 * On some platforms, we need to clean up promiscuous or monitor mode
3874 * when we close a device - and we want that to happen even if the
3875 * application just exits without explicitl closing devices.
3876 * On those platforms, we need to register a "close all the pcaps"
3877 * routine to be called when we exit, and need to maintain a list of
3878 * pcaps that need to be closed to clean up modes.
3880 * XXX - not thread-safe.
3884 * List of pcaps on which we've done something that needs to be
3886 * If there are any such pcaps, we arrange to call "pcap_close_all()"
3887 * when we exit, and have it close all of them.
3889 static struct pcap
*pcaps_to_close
;
3892 * TRUE if we've already called "atexit()" to cause "pcap_close_all()" to
3893 * be called on exit.
3895 static int did_atexit
;
3898 pcap_close_all(void)
3900 struct pcap
*handle
;
3902 while ((handle
= pcaps_to_close
) != NULL
) {
3906 * If a pcap module adds a pcap_t to the "close all"
3907 * list by calling pcap_add_to_pcaps_to_close(), it
3908 * must have a cleanup routine that removes it from the
3909 * list, by calling pcap_remove_from_pcaps_to_close(),
3910 * and must make that cleanup routine the cleanup_op
3913 * That means that, after pcap_close() - which calls
3914 * the cleanup_op for the pcap_t - the pcap_t must
3915 * have been removed from the list, so pcaps_to_close
3916 * must not be equal to handle.
3918 * We check for that, and abort if handle is still
3919 * at the head of the list, to prevent infinite loops.
3921 if (pcaps_to_close
== handle
)
3927 pcap_do_addexit(pcap_t
*p
)
3930 * If we haven't already done so, arrange to have
3931 * "pcap_close_all()" called when we exit.
3934 if (atexit(pcap_close_all
) != 0) {
3936 * "atexit()" failed; let our caller know.
3938 pcap_strlcpy(p
->errbuf
, "atexit failed", PCAP_ERRBUF_SIZE
);
3947 pcap_add_to_pcaps_to_close(pcap_t
*p
)
3949 p
->next
= pcaps_to_close
;
3954 pcap_remove_from_pcaps_to_close(pcap_t
*p
)
3956 pcap_t
*pc
, *prevpc
;
3958 for (pc
= pcaps_to_close
, prevpc
= NULL
; pc
!= NULL
;
3959 prevpc
= pc
, pc
= pc
->next
) {
3962 * Found it. Remove it from the list.
3964 if (prevpc
== NULL
) {
3966 * It was at the head of the list.
3968 pcaps_to_close
= pc
->next
;
3971 * It was in the middle of the list.
3973 prevpc
->next
= pc
->next
;
3981 pcap_breakloop_common(pcap_t
*p
)
3988 pcap_cleanup_live_common(pcap_t
*p
)
3990 if (p
->buffer
!= NULL
) {
3994 if (p
->dlt_list
!= NULL
) {
3999 if (p
->tstamp_type_list
!= NULL
) {
4000 free(p
->tstamp_type_list
);
4001 p
->tstamp_type_list
= NULL
;
4002 p
->tstamp_type_count
= 0;
4004 if (p
->tstamp_precision_list
!= NULL
) {
4005 free(p
->tstamp_precision_list
);
4006 p
->tstamp_precision_list
= NULL
;
4007 p
->tstamp_precision_count
= 0;
4009 pcap_freecode(&p
->fcode
);
4010 #if !defined(_WIN32) && !defined(MSDOS)
4015 p
->selectable_fd
= -1;
4020 * API compatible with WinPcap's "send a packet" routine - returns -1
4021 * on error, 0 otherwise.
4023 * XXX - what if we get a short write?
4026 pcap_sendpacket(pcap_t
*p
, const u_char
*buf
, int size
)
4029 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4030 errno
, "The number of bytes to be sent must be positive");
4031 return (PCAP_ERROR
);
4034 if (p
->inject_op(p
, buf
, size
) == -1)
4040 * API compatible with OpenBSD's "send a packet" routine - returns -1 on
4041 * error, number of bytes written otherwise.
4044 pcap_inject(pcap_t
*p
, const void *buf
, size_t size
)
4047 * We return the number of bytes written, so the number of
4048 * bytes to write must fit in an int.
4050 if (size
> INT_MAX
) {
4051 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4052 errno
, "More than %d bytes cannot be injected", INT_MAX
);
4053 return (PCAP_ERROR
);
4057 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4058 errno
, "The number of bytes to be injected must not be zero");
4059 return (PCAP_ERROR
);
4062 return (p
->inject_op(p
, buf
, (int)size
));
4066 pcap_close(pcap_t
*p
)
4068 if (p
->opt
.device
!= NULL
)
4069 free(p
->opt
.device
);
4075 * Helpers for safely loding code at run time.
4076 * Currently Windows-only.
4080 // This wrapper around loadlibrary appends the system folder (usually
4081 // C:\Windows\System32) to the relative path of the DLL, so that the DLL
4082 // is always loaded from an absolute path (it's no longer possible to
4083 // load modules from the application folder).
4084 // This solves the DLL Hijacking issue discovered in August 2010:
4086 // https://blog.rapid7.com/2010/08/23/exploiting-dll-hijacking-flaws/
4087 // https://blog.rapid7.com/2010/08/23/application-dll-load-hijacking/
4088 // (the purported Rapid7 blog post link in the first of those two links
4089 // is broken; the second of those links works.)
4091 // If any links there are broken from all the content shuffling Rapid&
4092 // did, see archived versions of the posts at their original homes, at
4094 // https://web.archive.org/web/20110122175058/http://blog.metasploit.com/2010/08/exploiting-dll-hijacking-flaws.html
4095 // https://web.archive.org/web/20100828112111/http://blog.rapid7.com/?p=5325
4098 pcap_load_code(const char *name
)
4101 * XXX - should this work in UTF-16LE rather than in the local
4104 CHAR path
[MAX_PATH
];
4105 CHAR fullFileName
[MAX_PATH
];
4107 HMODULE hModule
= NULL
;
4111 res
= GetSystemDirectoryA(path
, MAX_PATH
);
4115 // some bad failure occurred;
4120 if (res
> MAX_PATH
) {
4122 // the buffer was not big enough
4124 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
4128 if (res
+ 1 + strlen(name
) + 1 < MAX_PATH
) {
4129 memcpy(fullFileName
, path
, res
* sizeof(TCHAR
));
4130 fullFileName
[res
] = '\\';
4131 memcpy(&fullFileName
[res
+ 1], name
, (strlen(name
) + 1) * sizeof(TCHAR
));
4133 hModule
= LoadLibraryA(fullFileName
);
4135 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
4143 pcap_find_function(pcap_code_handle_t code
, const char *func
)
4145 return (GetProcAddress(code
, func
));
4150 * Given a BPF program, a pcap_pkthdr structure for a packet, and the raw
4151 * data for the packet, check whether the packet passes the filter.
4152 * Returns the return value of the filter program, which will be zero if
4153 * the packet doesn't pass and non-zero if the packet does pass.
4156 pcap_offline_filter(const struct bpf_program
*fp
, const struct pcap_pkthdr
*h
,
4159 const struct bpf_insn
*fcode
= fp
->bf_insns
;
4162 return (pcap_filter(fcode
, pkt
, h
->len
, h
->caplen
));
4168 pcap_can_set_rfmon_dead(pcap_t
*p
)
4170 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4171 "Rfmon mode doesn't apply on a pcap_open_dead pcap_t");
4172 return (PCAP_ERROR
);
4176 pcap_read_dead(pcap_t
*p
, int cnt _U_
, pcap_handler callback _U_
,
4179 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4180 "Packets aren't available from a pcap_open_dead pcap_t");
4185 pcap_inject_dead(pcap_t
*p
, const void *buf _U_
, int size _U_
)
4187 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4188 "Packets can't be sent on a pcap_open_dead pcap_t");
4193 pcap_setfilter_dead(pcap_t
*p
, struct bpf_program
*fp _U_
)
4195 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4196 "A filter cannot be set on a pcap_open_dead pcap_t");
4201 pcap_setdirection_dead(pcap_t
*p
, pcap_direction_t d _U_
)
4203 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4204 "The packet direction cannot be set on a pcap_open_dead pcap_t");
4209 pcap_set_datalink_dead(pcap_t
*p
, int dlt _U_
)
4211 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4212 "The link-layer header type cannot be set on a pcap_open_dead pcap_t");
4217 pcap_getnonblock_dead(pcap_t
*p
)
4219 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4220 "A pcap_open_dead pcap_t does not have a non-blocking mode setting");
4225 pcap_setnonblock_dead(pcap_t
*p
, int nonblock _U_
)
4227 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4228 "A pcap_open_dead pcap_t does not have a non-blocking mode setting");
4233 pcap_stats_dead(pcap_t
*p
, struct pcap_stat
*ps _U_
)
4235 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4236 "Statistics aren't available from a pcap_open_dead pcap_t");
4241 static struct pcap_stat
*
4242 pcap_stats_ex_dead(pcap_t
*p
, int *pcap_stat_size _U_
)
4244 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4245 "Statistics aren't available from a pcap_open_dead pcap_t");
4250 pcap_setbuff_dead(pcap_t
*p
, int dim _U_
)
4252 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4253 "The kernel buffer size cannot be set on a pcap_open_dead pcap_t");
4258 pcap_setmode_dead(pcap_t
*p
, int mode _U_
)
4260 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4261 "impossible to set mode on a pcap_open_dead pcap_t");
4266 pcap_setmintocopy_dead(pcap_t
*p
, int size _U_
)
4268 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4269 "The mintocopy parameter cannot be set on a pcap_open_dead pcap_t");
4274 pcap_getevent_dead(pcap_t
*p
)
4276 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4277 "A pcap_open_dead pcap_t has no event handle");
4278 return (INVALID_HANDLE_VALUE
);
4282 pcap_oid_get_request_dead(pcap_t
*p
, bpf_u_int32 oid _U_
, void *data _U_
,
4285 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4286 "An OID get request cannot be performed on a pcap_open_dead pcap_t");
4287 return (PCAP_ERROR
);
4291 pcap_oid_set_request_dead(pcap_t
*p
, bpf_u_int32 oid _U_
, const void *data _U_
,
4294 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4295 "An OID set request cannot be performed on a pcap_open_dead pcap_t");
4296 return (PCAP_ERROR
);
4300 pcap_sendqueue_transmit_dead(pcap_t
*p
, pcap_send_queue
*queue _U_
,
4303 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4304 "Packets cannot be transmitted on a pcap_open_dead pcap_t");
4309 pcap_setuserbuffer_dead(pcap_t
*p
, int size _U_
)
4311 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4312 "The user buffer cannot be set on a pcap_open_dead pcap_t");
4317 pcap_live_dump_dead(pcap_t
*p
, char *filename _U_
, int maxsize _U_
,
4320 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4321 "Live packet dumping cannot be performed on a pcap_open_dead pcap_t");
4326 pcap_live_dump_ended_dead(pcap_t
*p
, int sync _U_
)
4328 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4329 "Live packet dumping cannot be performed on a pcap_open_dead pcap_t");
4333 static PAirpcapHandle
4334 pcap_get_airpcap_handle_dead(pcap_t
*p _U_
)
4341 pcap_cleanup_dead(pcap_t
*p _U_
)
4343 /* Nothing to do. */
4347 pcap_open_dead_with_tstamp_precision(int linktype
, int snaplen
, u_int precision
)
4351 switch (precision
) {
4353 case PCAP_TSTAMP_PRECISION_MICRO
:
4354 case PCAP_TSTAMP_PRECISION_NANO
:
4359 * This doesn't really matter, but we don't have any way
4360 * to report particular errors, so the only failure we
4361 * should have is a memory allocation failure. Just
4362 * pick microsecond precision.
4364 precision
= PCAP_TSTAMP_PRECISION_MICRO
;
4367 p
= malloc(sizeof(*p
));
4370 memset (p
, 0, sizeof(*p
));
4371 p
->snapshot
= snaplen
;
4372 p
->linktype
= linktype
;
4373 p
->opt
.tstamp_precision
= precision
;
4374 p
->can_set_rfmon_op
= pcap_can_set_rfmon_dead
;
4375 p
->read_op
= pcap_read_dead
;
4376 p
->inject_op
= pcap_inject_dead
;
4377 p
->setfilter_op
= pcap_setfilter_dead
;
4378 p
->setdirection_op
= pcap_setdirection_dead
;
4379 p
->set_datalink_op
= pcap_set_datalink_dead
;
4380 p
->getnonblock_op
= pcap_getnonblock_dead
;
4381 p
->setnonblock_op
= pcap_setnonblock_dead
;
4382 p
->stats_op
= pcap_stats_dead
;
4384 p
->stats_ex_op
= pcap_stats_ex_dead
;
4385 p
->setbuff_op
= pcap_setbuff_dead
;
4386 p
->setmode_op
= pcap_setmode_dead
;
4387 p
->setmintocopy_op
= pcap_setmintocopy_dead
;
4388 p
->getevent_op
= pcap_getevent_dead
;
4389 p
->oid_get_request_op
= pcap_oid_get_request_dead
;
4390 p
->oid_set_request_op
= pcap_oid_set_request_dead
;
4391 p
->sendqueue_transmit_op
= pcap_sendqueue_transmit_dead
;
4392 p
->setuserbuffer_op
= pcap_setuserbuffer_dead
;
4393 p
->live_dump_op
= pcap_live_dump_dead
;
4394 p
->live_dump_ended_op
= pcap_live_dump_ended_dead
;
4395 p
->get_airpcap_handle_op
= pcap_get_airpcap_handle_dead
;
4397 p
->cleanup_op
= pcap_cleanup_dead
;
4400 * A "dead" pcap_t never requires special BPF code generation.
4402 p
->bpf_codegen_flags
= 0;
4409 pcap_open_dead(int linktype
, int snaplen
)
4411 return (pcap_open_dead_with_tstamp_precision(linktype
, snaplen
,
4412 PCAP_TSTAMP_PRECISION_MICRO
));
4417 * Set the internal "debug printout" flag for the filter expression parser.
4418 * The code to print that stuff is present only if YYDEBUG is defined, so
4419 * the flag, and the routine to set it, are defined only if YYDEBUG is
4422 * This is intended for libpcap developers, not for general use.
4423 * If you want to set these in a program, you'll have to declare this
4424 * routine yourself, with the appropriate DLL import attribute on Windows;
4425 * it's not declared in any header file, and won't be declared in any
4426 * header file provided by libpcap.
4428 PCAP_EXPORTED_C_FUNC
void pcap_set_parser_debug(int value
);
4431 pcap_set_parser_debug(int value
)