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>
60 #if !defined(_MSC_VER) && !defined(__BORLANDC__) && !defined(__MINGW32__)
67 #ifdef HAVE_OS_PROTO_H
81 #endif /* HAVE_DAG_API */
83 #ifdef HAVE_SEPTEL_API
84 #include "pcap-septel.h"
85 #endif /* HAVE_SEPTEL_API */
89 #endif /* HAVE_SNF_API */
93 #endif /* HAVE_TC_API */
95 #ifdef PCAP_SUPPORT_USB
96 #include "pcap-usb-linux.h"
99 #ifdef PCAP_SUPPORT_BT
100 #include "pcap-bt-linux.h"
103 #ifdef PCAP_SUPPORT_BT_MONITOR
104 #include "pcap-bt-monitor-linux.h"
107 #ifdef PCAP_SUPPORT_NETFILTER
108 #include "pcap-netfilter-linux.h"
111 #ifdef PCAP_SUPPORT_NETMAP
112 #include "pcap-netmap.h"
115 #ifdef PCAP_SUPPORT_DBUS
116 #include "pcap-dbus.h"
119 #ifdef PCAP_SUPPORT_RDMASNIFF
120 #include "pcap-rdmasniff.h"
123 #ifdef PCAP_SUPPORT_DPDK
124 #include "pcap-dpdk.h"
129 * DllMain(), required when built as a Windows DLL.
142 * Exported in case some applications using WinPcap/Npcap called it,
143 * even though it wasn't exported.
148 WORD wVersionRequested
;
156 wVersionRequested
= MAKEWORD( 1, 1);
157 err
= WSAStartup( wVersionRequested
, &wsaData
);
158 atexit ((void(*)(void))WSACleanup
);
167 * This is the exported function; new programs should call this.
172 return (wsockinit());
177 * String containing the library version.
178 * Not explicitly exported via a header file - the right API to use
179 * is pcap_lib_version() - but some programs included it, so we
182 * We declare it here, right before defining it, to squelch any
183 * warnings we might get from compilers about the lack of a
186 PCAP_API
char pcap_version
[];
187 PCAP_API_DEF
char pcap_version
[] = PACKAGE_VERSION
;
190 pcap_set_not_initialized_message(pcap_t
*pcap
)
192 if (pcap
->activated
) {
193 /* A module probably forgot to set the function pointer */
194 (void)pcap_snprintf(pcap
->errbuf
, sizeof(pcap
->errbuf
),
195 "This operation isn't properly handled by that device");
198 /* in case the caller doesn't check for PCAP_ERROR_NOT_ACTIVATED */
199 (void)pcap_snprintf(pcap
->errbuf
, sizeof(pcap
->errbuf
),
200 "This handle hasn't been activated yet");
204 pcap_read_not_initialized(pcap_t
*pcap
, int cnt _U_
, pcap_handler callback _U_
,
207 pcap_set_not_initialized_message(pcap
);
208 /* this means 'not initialized' */
209 return (PCAP_ERROR_NOT_ACTIVATED
);
213 pcap_inject_not_initialized(pcap_t
*pcap
, const void * buf _U_
, int size _U_
)
215 pcap_set_not_initialized_message(pcap
);
216 /* this means 'not initialized' */
217 return (PCAP_ERROR_NOT_ACTIVATED
);
221 pcap_setfilter_not_initialized(pcap_t
*pcap
, struct bpf_program
*fp _U_
)
223 pcap_set_not_initialized_message(pcap
);
224 /* this means 'not initialized' */
225 return (PCAP_ERROR_NOT_ACTIVATED
);
229 pcap_setdirection_not_initialized(pcap_t
*pcap
, pcap_direction_t d _U_
)
231 pcap_set_not_initialized_message(pcap
);
232 /* this means 'not initialized' */
233 return (PCAP_ERROR_NOT_ACTIVATED
);
237 pcap_set_datalink_not_initialized(pcap_t
*pcap
, int dlt _U_
)
239 pcap_set_not_initialized_message(pcap
);
240 /* this means 'not initialized' */
241 return (PCAP_ERROR_NOT_ACTIVATED
);
245 pcap_getnonblock_not_initialized(pcap_t
*pcap
)
247 pcap_set_not_initialized_message(pcap
);
248 /* this means 'not initialized' */
249 return (PCAP_ERROR_NOT_ACTIVATED
);
253 pcap_stats_not_initialized(pcap_t
*pcap
, struct pcap_stat
*ps _U_
)
255 pcap_set_not_initialized_message(pcap
);
256 /* this means 'not initialized' */
257 return (PCAP_ERROR_NOT_ACTIVATED
);
262 pcap_stats_ex_not_initialized(pcap_t
*pcap
, int *pcap_stat_size _U_
)
264 pcap_set_not_initialized_message(pcap
);
269 pcap_setbuff_not_initialized(pcap_t
*pcap
, int dim _U_
)
271 pcap_set_not_initialized_message(pcap
);
272 /* this means 'not initialized' */
273 return (PCAP_ERROR_NOT_ACTIVATED
);
277 pcap_setmode_not_initialized(pcap_t
*pcap
, int mode _U_
)
279 pcap_set_not_initialized_message(pcap
);
280 /* this means 'not initialized' */
281 return (PCAP_ERROR_NOT_ACTIVATED
);
285 pcap_setmintocopy_not_initialized(pcap_t
*pcap
, int size _U_
)
287 pcap_set_not_initialized_message(pcap
);
288 /* this means 'not initialized' */
289 return (PCAP_ERROR_NOT_ACTIVATED
);
293 pcap_getevent_not_initialized(pcap_t
*pcap
)
295 pcap_set_not_initialized_message(pcap
);
296 return (INVALID_HANDLE_VALUE
);
300 pcap_oid_get_request_not_initialized(pcap_t
*pcap
, bpf_u_int32 oid _U_
,
301 void *data _U_
, size_t *lenp _U_
)
303 pcap_set_not_initialized_message(pcap
);
304 return (PCAP_ERROR_NOT_ACTIVATED
);
308 pcap_oid_set_request_not_initialized(pcap_t
*pcap
, bpf_u_int32 oid _U_
,
309 const void *data _U_
, size_t *lenp _U_
)
311 pcap_set_not_initialized_message(pcap
);
312 return (PCAP_ERROR_NOT_ACTIVATED
);
316 pcap_sendqueue_transmit_not_initialized(pcap_t
*pcap
, pcap_send_queue
* queue
, int sync
)
318 pcap_set_not_initialized_message(pcap
);
323 pcap_setuserbuffer_not_initialized(pcap_t
*pcap
, int size _U_
)
325 pcap_set_not_initialized_message(pcap
);
326 return (PCAP_ERROR_NOT_ACTIVATED
);
330 pcap_live_dump_not_initialized(pcap_t
*pcap
, char *filename _U_
, int maxsize _U_
,
333 pcap_set_not_initialized_message(pcap
);
334 return (PCAP_ERROR_NOT_ACTIVATED
);
338 pcap_live_dump_ended_not_initialized(pcap_t
*pcap
, int sync _U_
)
340 pcap_set_not_initialized_message(pcap
);
341 return (PCAP_ERROR_NOT_ACTIVATED
);
344 static PAirpcapHandle
345 pcap_get_airpcap_handle_not_initialized(pcap_t
*pcap
)
347 pcap_set_not_initialized_message(pcap
);
353 * Returns 1 if rfmon mode can be set on the pcap_t, 0 if it can't,
354 * a PCAP_ERROR value on an error.
357 pcap_can_set_rfmon(pcap_t
*p
)
359 return (p
->can_set_rfmon_op(p
));
363 * For systems where rfmon mode is never supported.
366 pcap_cant_set_rfmon(pcap_t
*p _U_
)
372 * Sets *tstamp_typesp to point to an array 1 or more supported time stamp
373 * types; the return value is the number of supported time stamp types.
374 * The list should be freed by a call to pcap_free_tstamp_types() when
375 * you're done with it.
377 * A return value of 0 means "you don't get a choice of time stamp type",
378 * in which case *tstamp_typesp is set to null.
380 * PCAP_ERROR is returned on error.
383 pcap_list_tstamp_types(pcap_t
*p
, int **tstamp_typesp
)
385 if (p
->tstamp_type_count
== 0) {
387 * We don't support multiple time stamp types.
389 *tstamp_typesp
= NULL
;
391 *tstamp_typesp
= (int*)calloc(sizeof(**tstamp_typesp
),
392 p
->tstamp_type_count
);
393 if (*tstamp_typesp
== NULL
) {
394 pcap_fmt_errmsg_for_errno(p
->errbuf
, sizeof(p
->errbuf
),
398 (void)memcpy(*tstamp_typesp
, p
->tstamp_type_list
,
399 sizeof(**tstamp_typesp
) * p
->tstamp_type_count
);
401 return (p
->tstamp_type_count
);
405 * In Windows, you might have a library built with one version of the
406 * C runtime library and an application built with another version of
407 * the C runtime library, which means that the library might use one
408 * version of malloc() and free() and the application might use another
409 * version of malloc() and free(). If so, that means something
410 * allocated by the library cannot be freed by the application, so we
411 * need to have a pcap_free_tstamp_types() routine to free up the list
412 * allocated by pcap_list_tstamp_types(), even though it's just a wrapper
416 pcap_free_tstamp_types(int *tstamp_type_list
)
418 free(tstamp_type_list
);
422 * Default one-shot callback; overridden for capture types where the
423 * packet data cannot be guaranteed to be available after the callback
424 * returns, so that a copy must be made.
427 pcap_oneshot(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*pkt
)
429 struct oneshot_userdata
*sp
= (struct oneshot_userdata
*)user
;
436 pcap_next(pcap_t
*p
, struct pcap_pkthdr
*h
)
438 struct oneshot_userdata s
;
444 if (pcap_dispatch(p
, 1, p
->oneshot_callback
, (u_char
*)&s
) <= 0)
450 pcap_next_ex(pcap_t
*p
, struct pcap_pkthdr
**pkt_header
,
451 const u_char
**pkt_data
)
453 struct oneshot_userdata s
;
455 s
.hdr
= &p
->pcap_header
;
459 /* Saves a pointer to the packet headers */
460 *pkt_header
= &p
->pcap_header
;
462 if (p
->rfile
!= NULL
) {
465 /* We are on an offline capture */
466 status
= pcap_offline_read(p
, 1, p
->oneshot_callback
,
470 * Return codes for pcap_offline_read() are:
474 * The first one ('0') conflicts with the return code of
475 * 0 from pcap_read() meaning "no packets arrived before
476 * the timeout expired", so we map it to -2 so you can
477 * distinguish between an EOF from a savefile and a
478 * "no packets arrived before the timeout expired, try
479 * again" from a live capture.
488 * Return codes for pcap_read() are:
491 * - -2: loop was broken out of with pcap_breakloop()
493 * The first one ('0') conflicts with the return code of 0 from
494 * pcap_offline_read() meaning "end of file".
496 return (p
->read_op(p
, 1, p
->oneshot_callback
, (u_char
*)&s
));
500 * Implementation of a pcap_if_list_t.
502 struct pcap_if_list
{
503 pcap_if_t
*beginning
;
506 static struct capture_source_type
{
507 int (*findalldevs_op
)(pcap_if_list_t
*, char *);
508 pcap_t
*(*create_op
)(const char *, char *, int *);
509 } capture_source_types
[] = {
511 { dag_findalldevs
, dag_create
},
513 #ifdef HAVE_SEPTEL_API
514 { septel_findalldevs
, septel_create
},
517 { snf_findalldevs
, snf_create
},
520 { TcFindAllDevs
, TcCreate
},
522 #ifdef PCAP_SUPPORT_BT
523 { bt_findalldevs
, bt_create
},
525 #ifdef PCAP_SUPPORT_BT_MONITOR
526 { bt_monitor_findalldevs
, bt_monitor_create
},
528 #ifdef PCAP_SUPPORT_USB
529 { usb_findalldevs
, usb_create
},
531 #ifdef PCAP_SUPPORT_NETFILTER
532 { netfilter_findalldevs
, netfilter_create
},
534 #ifdef PCAP_SUPPORT_NETMAP
535 { pcap_netmap_findalldevs
, pcap_netmap_create
},
537 #ifdef PCAP_SUPPORT_DBUS
538 { dbus_findalldevs
, dbus_create
},
540 #ifdef PCAP_SUPPORT_RDMASNIFF
541 { rdmasniff_findalldevs
, rdmasniff_create
},
543 #ifdef PCAP_SUPPORT_DPDK
544 { pcap_dpdk_findalldevs
, pcap_dpdk_create
},
550 * Get a list of all capture sources that are up and that we can open.
551 * Returns -1 on error, 0 otherwise.
552 * The list, as returned through "alldevsp", may be null if no interfaces
553 * were up and could be opened.
556 pcap_findalldevs(pcap_if_t
**alldevsp
, char *errbuf
)
559 pcap_if_list_t devlist
;
562 * Find all the local network interfaces on which we
565 devlist
.beginning
= NULL
;
566 if (pcap_platform_finddevs(&devlist
, errbuf
) == -1) {
568 * Failed - free all of the entries we were given
571 if (devlist
.beginning
!= NULL
)
572 pcap_freealldevs(devlist
.beginning
);
578 * Ask each of the non-local-network-interface capture
579 * source types what interfaces they have.
581 for (i
= 0; capture_source_types
[i
].findalldevs_op
!= NULL
; i
++) {
582 if (capture_source_types
[i
].findalldevs_op(&devlist
, errbuf
) == -1) {
584 * We had an error; free the list we've been
587 if (devlist
.beginning
!= NULL
)
588 pcap_freealldevs(devlist
.beginning
);
595 * Return the first entry of the list of all devices.
597 *alldevsp
= devlist
.beginning
;
601 static struct sockaddr
*
602 dup_sockaddr(struct sockaddr
*sa
, size_t sa_length
)
604 struct sockaddr
*newsa
;
606 if ((newsa
= malloc(sa_length
)) == NULL
)
608 return (memcpy(newsa
, sa
, sa_length
));
612 * Construct a "figure of merit" for an interface, for use when sorting
613 * the list of interfaces, in which interfaces that are up are superior
614 * to interfaces that aren't up, interfaces that are up and running are
615 * superior to interfaces that are up but not running, and non-loopback
616 * interfaces that are up and running are superior to loopback interfaces,
617 * and interfaces with the same flags have a figure of merit that's higher
618 * the lower the instance number.
620 * The goal is to try to put the interfaces most likely to be useful for
621 * capture at the beginning of the list.
623 * The figure of merit, which is lower the "better" the interface is,
624 * has the uppermost bit set if the interface isn't running, the bit
625 * below that set if the interface isn't up, the bit below that set
626 * if the interface is a loopback interface, and the interface index
627 * in the 29 bits below that. (Yes, we assume u_int is 32 bits.)
630 get_figure_of_merit(pcap_if_t
*dev
)
635 if (strcmp(dev
->name
, "any") == 0) {
637 * Give the "any" device an artificially high instance
638 * number, so it shows up after all other non-loopback
641 n
= 0x1FFFFFFF; /* 29 all-1 bits */
644 * A number at the end of the device name string is
645 * assumed to be an instance number. Add 1 to the
646 * instance number, and use 0 for "no instance
647 * number", so we don't put "no instance number"
648 * devices and "instance 0" devices together.
650 cp
= dev
->name
+ strlen(dev
->name
) - 1;
651 while (cp
-1 >= dev
->name
&& *(cp
-1) >= '0' && *(cp
-1) <= '9')
653 if (*cp
>= '0' && *cp
<= '9')
658 if (!(dev
->flags
& PCAP_IF_RUNNING
))
660 if (!(dev
->flags
& PCAP_IF_UP
))
664 * Give non-wireless interfaces that aren't disconnected a better
665 * figure of merit than interfaces that are disconnected, as
666 * "disconnected" should indicate that the interface isn't
667 * plugged into a network and thus won't give you any traffic.
669 * For wireless interfaces, it means "associated with a network",
670 * which we presume not to necessarily prevent capture, as you
671 * might run the adapter in some flavor of monitor mode.
673 if (!(dev
->flags
& PCAP_IF_WIRELESS
) &&
674 (dev
->flags
& PCAP_IF_CONNECTION_STATUS
) == PCAP_IF_CONNECTION_STATUS_DISCONNECTED
)
678 * Sort loopback devices after non-loopback devices, *except* for
679 * disconnected devices.
681 if (dev
->flags
& PCAP_IF_LOOPBACK
)
689 * Try to get a description for a given device.
690 * Returns a mallocated description if it could and NULL if it couldn't.
692 * XXX - on FreeBSDs that support it, should it get the sysctl named
693 * "dev.{adapter family name}.{adapter unit}.%desc" to get a description
694 * of the adapter? Note that "dev.an.0.%desc" is "Aironet PC4500/PC4800"
695 * with my Cisco 350 card, so the name isn't entirely descriptive. The
696 * "dev.an.0.%pnpinfo" has a better description, although one might argue
697 * that the problem is really a driver bug - if it can find out that it's
698 * a Cisco 340 or 350, rather than an old Aironet card, it should use
699 * that in the description.
701 * Do NetBSD, DragonflyBSD, or OpenBSD support this as well? FreeBSD
702 * and OpenBSD let you get a description, but it's not generated by the OS,
703 * it's set with another ioctl that ifconfig supports; we use that to get
704 * a description in FreeBSD and OpenBSD, but if there is no such
705 * description available, it still might be nice to get some description
706 * string based on the device type or something such as that.
708 * In macOS, the System Configuration framework can apparently return
709 * names in 10.4 and later.
711 * It also appears that freedesktop.org's HAL offers an "info.product"
712 * string, but the HAL specification says it "should not be used in any
713 * UI" and "subsystem/capability specific properties" should be used
714 * instead and, in any case, I think HAL is being deprecated in
715 * favor of other stuff such as DeviceKit. DeviceKit doesn't appear
716 * to have any obvious product information for devices, but maybe
717 * I haven't looked hard enough.
719 * Using the System Configuration framework, or HAL, or DeviceKit, or
720 * whatever, would require that libpcap applications be linked with
721 * the frameworks/libraries in question. That shouldn't be a problem
722 * for programs linking with the shared version of libpcap (unless
723 * you're running on AIX - which I think is the only UN*X that doesn't
724 * support linking a shared library with other libraries on which it
725 * depends, and having an executable linked only with the first shared
726 * library automatically pick up the other libraries when started -
727 * and using HAL or whatever). Programs linked with the static
728 * version of libpcap would have to use pcap-config with the --static
729 * flag in order to get the right linker flags in order to pick up
730 * the additional libraries/frameworks; those programs need that anyway
731 * for libpcap 1.1 and beyond on Linux, as, by default, it requires
734 * Do any other UN*Xes, or desktop environments support getting a
739 get_if_description(const char *name
)
741 char *description
= NULL
;
743 struct ifreq ifrdesc
;
745 size_t descrlen
= 64;
747 size_t descrlen
= IFDESCRSIZE
;
748 #endif /* IFDESCRSIZE */
751 * Get the description for the interface.
753 memset(&ifrdesc
, 0, sizeof ifrdesc
);
754 pcap_strlcpy(ifrdesc
.ifr_name
, name
, sizeof ifrdesc
.ifr_name
);
755 s
= socket(AF_INET
, SOCK_DGRAM
, 0);
759 * On FreeBSD, if the buffer isn't big enough for the
760 * description, the ioctl succeeds, but the description
761 * isn't copied, ifr_buffer.length is set to the description
762 * length, and ifr_buffer.buffer is set to NULL.
766 if ((description
= malloc(descrlen
)) != NULL
) {
767 ifrdesc
.ifr_buffer
.buffer
= description
;
768 ifrdesc
.ifr_buffer
.length
= descrlen
;
769 if (ioctl(s
, SIOCGIFDESCR
, &ifrdesc
) == 0) {
770 if (ifrdesc
.ifr_buffer
.buffer
==
774 descrlen
= ifrdesc
.ifr_buffer
.length
;
777 * Failed to get interface description.
786 #else /* __FreeBSD__ */
788 * The only other OS that currently supports
789 * SIOCGIFDESCR is OpenBSD, and it has no way
790 * to get the description length - it's clamped
791 * to a maximum of IFDESCRSIZE.
793 if ((description
= malloc(descrlen
)) != NULL
) {
794 ifrdesc
.ifr_data
= (caddr_t
)description
;
795 if (ioctl(s
, SIOCGIFDESCR
, &ifrdesc
) != 0) {
797 * Failed to get interface description.
803 #endif /* __FreeBSD__ */
805 if (description
!= NULL
&& description
[0] == '\0') {
807 * Description is empty, so discard it.
816 * For FreeBSD, if we didn't get a description, and this is
817 * a device with a name of the form usbusN, label it as a USB
820 if (description
== NULL
) {
821 if (strncmp(name
, "usbus", 5) == 0) {
823 * OK, it begins with "usbus".
829 busnum
= strtol(name
+ 5, &p
, 10);
830 if (errno
== 0 && p
!= name
+ 5 && *p
== '\0' &&
831 busnum
>= 0 && busnum
<= INT_MAX
) {
833 * OK, it's a valid number that's not
834 * bigger than INT_MAX. Construct
835 * a description from it.
836 * (If that fails, we don't worry about
837 * it, we just return NULL.)
839 if (pcap_asprintf(&description
,
840 "USB bus number %ld", busnum
) == -1) {
848 return (description
);
849 #else /* SIOCGIFDESCR */
850 get_if_description(const char *name _U_
)
853 #endif /* SIOCGIFDESCR */
857 * Look for a given device in the specified list of devices.
859 * If we find it, return a pointer to its entry.
861 * If we don't find it, attempt to add an entry for it, with the specified
862 * IFF_ flags and description, and, if that succeeds, return a pointer to
863 * the new entry, otherwise return NULL and set errbuf to an error message.
866 find_or_add_if(pcap_if_list_t
*devlistp
, const char *name
,
867 bpf_u_int32 if_flags
, get_if_flags_func get_flags_func
, char *errbuf
)
869 bpf_u_int32 pcap_flags
;
872 * Convert IFF_ flags to pcap flags.
876 if (if_flags
& IFF_LOOPBACK
)
877 pcap_flags
|= PCAP_IF_LOOPBACK
;
880 * We don't have IFF_LOOPBACK, so look at the device name to
881 * see if it looks like a loopback device.
883 if (name
[0] == 'l' && name
[1] == 'o' &&
884 (isdigit((unsigned char)(name
[2])) || name
[2] == '\0')
885 pcap_flags
|= PCAP_IF_LOOPBACK
;
888 if (if_flags
& IFF_UP
)
889 pcap_flags
|= PCAP_IF_UP
;
892 if (if_flags
& IFF_RUNNING
)
893 pcap_flags
|= PCAP_IF_RUNNING
;
897 * Attempt to find an entry for this device; if we don't find one,
898 * attempt to add one.
900 return (find_or_add_dev(devlistp
, name
, pcap_flags
,
901 get_flags_func
, get_if_description(name
), errbuf
));
905 * Look for a given device in the specified list of devices.
907 * If we find it, then, if the specified address isn't null, add it to
908 * the list of addresses for the device and return 0.
910 * If we don't find it, attempt to add an entry for it, with the specified
911 * IFF_ flags and description, and, if that succeeds, add the specified
912 * address to its list of addresses if that address is non-null, and
913 * return 0, otherwise return -1 and set errbuf to an error message.
915 * (We can get called with a null address because we might get a list
916 * of interface name/address combinations from the underlying OS, with
917 * the address being absent in some cases, rather than a list of
918 * interfaces with each interface having a list of addresses, so this
919 * call may be the only call made to add to the list, and we want to
920 * add interfaces even if they have no addresses.)
923 add_addr_to_if(pcap_if_list_t
*devlistp
, const char *name
,
924 bpf_u_int32 if_flags
, get_if_flags_func get_flags_func
,
925 struct sockaddr
*addr
, size_t addr_size
,
926 struct sockaddr
*netmask
, size_t netmask_size
,
927 struct sockaddr
*broadaddr
, size_t broadaddr_size
,
928 struct sockaddr
*dstaddr
, size_t dstaddr_size
,
934 * Check whether the device exists and, if not, add it.
936 curdev
= find_or_add_if(devlistp
, name
, if_flags
, get_flags_func
,
938 if (curdev
== NULL
) {
947 * There's no address to add; this entry just meant
948 * "here's a new interface".
954 * "curdev" is an entry for this interface, and we have an
955 * address for it; add an entry for that address to the
956 * interface's list of addresses.
958 return (add_addr_to_dev(curdev
, addr
, addr_size
, netmask
,
959 netmask_size
, broadaddr
, broadaddr_size
, dstaddr
,
960 dstaddr_size
, errbuf
));
965 * Add an entry to the list of addresses for an interface.
966 * "curdev" is the entry for that interface.
969 add_addr_to_dev(pcap_if_t
*curdev
,
970 struct sockaddr
*addr
, size_t addr_size
,
971 struct sockaddr
*netmask
, size_t netmask_size
,
972 struct sockaddr
*broadaddr
, size_t broadaddr_size
,
973 struct sockaddr
*dstaddr
, size_t dstaddr_size
,
976 pcap_addr_t
*curaddr
, *prevaddr
, *nextaddr
;
979 * Allocate the new entry and fill it in.
981 curaddr
= (pcap_addr_t
*)malloc(sizeof(pcap_addr_t
));
982 if (curaddr
== NULL
) {
983 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
988 curaddr
->next
= NULL
;
989 if (addr
!= NULL
&& addr_size
!= 0) {
990 curaddr
->addr
= (struct sockaddr
*)dup_sockaddr(addr
, addr_size
);
991 if (curaddr
->addr
== NULL
) {
992 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
998 curaddr
->addr
= NULL
;
1000 if (netmask
!= NULL
&& netmask_size
!= 0) {
1001 curaddr
->netmask
= (struct sockaddr
*)dup_sockaddr(netmask
, netmask_size
);
1002 if (curaddr
->netmask
== NULL
) {
1003 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1005 if (curaddr
->addr
!= NULL
)
1006 free(curaddr
->addr
);
1011 curaddr
->netmask
= NULL
;
1013 if (broadaddr
!= NULL
&& broadaddr_size
!= 0) {
1014 curaddr
->broadaddr
= (struct sockaddr
*)dup_sockaddr(broadaddr
, broadaddr_size
);
1015 if (curaddr
->broadaddr
== NULL
) {
1016 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1018 if (curaddr
->netmask
!= NULL
)
1019 free(curaddr
->netmask
);
1020 if (curaddr
->addr
!= NULL
)
1021 free(curaddr
->addr
);
1026 curaddr
->broadaddr
= NULL
;
1028 if (dstaddr
!= NULL
&& dstaddr_size
!= 0) {
1029 curaddr
->dstaddr
= (struct sockaddr
*)dup_sockaddr(dstaddr
, dstaddr_size
);
1030 if (curaddr
->dstaddr
== NULL
) {
1031 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1033 if (curaddr
->broadaddr
!= NULL
)
1034 free(curaddr
->broadaddr
);
1035 if (curaddr
->netmask
!= NULL
)
1036 free(curaddr
->netmask
);
1037 if (curaddr
->addr
!= NULL
)
1038 free(curaddr
->addr
);
1043 curaddr
->dstaddr
= NULL
;
1046 * Find the end of the list of addresses.
1048 for (prevaddr
= curdev
->addresses
; prevaddr
!= NULL
; prevaddr
= nextaddr
) {
1049 nextaddr
= prevaddr
->next
;
1050 if (nextaddr
== NULL
) {
1052 * This is the end of the list.
1058 if (prevaddr
== NULL
) {
1060 * The list was empty; this is the first member.
1062 curdev
->addresses
= curaddr
;
1065 * "prevaddr" is the last member of the list; append
1066 * this member to it.
1068 prevaddr
->next
= curaddr
;
1075 * Look for a given device in the specified list of devices.
1077 * If we find it, return 0 and set *curdev_ret to point to it.
1079 * If we don't find it, attempt to add an entry for it, with the specified
1080 * flags and description, and, if that succeeds, return 0, otherwise
1081 * return -1 and set errbuf to an error message.
1084 find_or_add_dev(pcap_if_list_t
*devlistp
, const char *name
, bpf_u_int32 flags
,
1085 get_if_flags_func get_flags_func
, const char *description
, char *errbuf
)
1090 * Is there already an entry in the list for this device?
1092 curdev
= find_dev(devlistp
, name
);
1093 if (curdev
!= NULL
) {
1101 * No, we didn't find it.
1105 * Try to get additional flags for the device.
1107 if ((*get_flags_func
)(name
, &flags
, errbuf
) == -1) {
1115 * Now, try to add it to the list of devices.
1117 return (add_dev(devlistp
, name
, flags
, description
, errbuf
));
1121 * Look for a given device in the specified list of devices, and return
1122 * the entry for it if we find it or NULL if we don't.
1125 find_dev(pcap_if_list_t
*devlistp
, const char *name
)
1130 * Is there an entry in the list for this device?
1132 for (curdev
= devlistp
->beginning
; curdev
!= NULL
;
1133 curdev
= curdev
->next
) {
1134 if (strcmp(name
, curdev
->name
) == 0) {
1136 * We found it, so, yes, there is. No need to
1137 * add it. Provide the entry we found to our
1151 * Attempt to add an entry for a device, with the specified flags
1152 * and description, and, if that succeeds, return 0 and return a pointer
1153 * to the new entry, otherwise return NULL and set errbuf to an error
1156 * If we weren't given a description, try to get one.
1159 add_dev(pcap_if_list_t
*devlistp
, const char *name
, bpf_u_int32 flags
,
1160 const char *description
, char *errbuf
)
1162 pcap_if_t
*curdev
, *prevdev
, *nextdev
;
1163 u_int this_figure_of_merit
, nextdev_figure_of_merit
;
1165 curdev
= malloc(sizeof(pcap_if_t
));
1166 if (curdev
== NULL
) {
1167 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1173 * Fill in the entry.
1175 curdev
->next
= NULL
;
1176 curdev
->name
= strdup(name
);
1177 if (curdev
->name
== NULL
) {
1178 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1183 if (description
== NULL
) {
1185 * We weren't handed a description for the interface.
1187 curdev
->description
= NULL
;
1190 * We were handed a description; make a copy.
1192 curdev
->description
= strdup(description
);
1193 if (curdev
->description
== NULL
) {
1194 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1201 curdev
->addresses
= NULL
; /* list starts out as empty */
1202 curdev
->flags
= flags
;
1205 * Add it to the list, in the appropriate location.
1206 * First, get the "figure of merit" for this interface.
1208 this_figure_of_merit
= get_figure_of_merit(curdev
);
1211 * Now look for the last interface with an figure of merit
1212 * less than or equal to the new interface's figure of merit.
1214 * We start with "prevdev" being NULL, meaning we're before
1215 * the first element in the list.
1220 * Get the interface after this one.
1222 if (prevdev
== NULL
) {
1224 * The next element is the first element.
1226 nextdev
= devlistp
->beginning
;
1228 nextdev
= prevdev
->next
;
1231 * Are we at the end of the list?
1233 if (nextdev
== NULL
) {
1235 * Yes - we have to put the new entry after "prevdev".
1241 * Is the new interface's figure of merit less
1242 * than the next interface's figure of merit,
1243 * meaning that the new interface is better
1244 * than the next interface?
1246 nextdev_figure_of_merit
= get_figure_of_merit(nextdev
);
1247 if (this_figure_of_merit
< nextdev_figure_of_merit
) {
1249 * Yes - we should put the new entry
1250 * before "nextdev", i.e. after "prevdev".
1259 * Insert before "nextdev".
1261 curdev
->next
= nextdev
;
1264 * Insert after "prevdev" - unless "prevdev" is null,
1265 * in which case this is the first interface.
1267 if (prevdev
== NULL
) {
1269 * This is the first interface. Make it
1270 * the first element in the list of devices.
1272 devlistp
->beginning
= curdev
;
1274 prevdev
->next
= curdev
;
1279 * Free a list of interfaces.
1282 pcap_freealldevs(pcap_if_t
*alldevs
)
1284 pcap_if_t
*curdev
, *nextdev
;
1285 pcap_addr_t
*curaddr
, *nextaddr
;
1287 for (curdev
= alldevs
; curdev
!= NULL
; curdev
= nextdev
) {
1288 nextdev
= curdev
->next
;
1291 * Free all addresses.
1293 for (curaddr
= curdev
->addresses
; curaddr
!= NULL
; curaddr
= nextaddr
) {
1294 nextaddr
= curaddr
->next
;
1296 free(curaddr
->addr
);
1297 if (curaddr
->netmask
)
1298 free(curaddr
->netmask
);
1299 if (curaddr
->broadaddr
)
1300 free(curaddr
->broadaddr
);
1301 if (curaddr
->dstaddr
)
1302 free(curaddr
->dstaddr
);
1307 * Free the name string.
1312 * Free the description string, if any.
1314 if (curdev
->description
!= NULL
)
1315 free(curdev
->description
);
1318 * Free the interface.
1325 * pcap-npf.c has its own pcap_lookupdev(), for compatibility reasons, as
1326 * it actually returns the names of all interfaces, with a NUL separator
1327 * between them; some callers may depend on that.
1329 * MS-DOS has its own pcap_lookupdev(), but that might be useful only
1330 * as an optimization.
1332 * In all other cases, we just use pcap_findalldevs() to get a list of
1333 * devices, and pick from that list.
1335 #if !defined(HAVE_PACKET32) && !defined(MSDOS)
1337 * Return the name of a network interface attached to the system, or NULL
1338 * if none can be found. The interface must be configured up; the
1339 * lowest unit number is preferred; loopback is ignored.
1342 pcap_lookupdev(char *errbuf
)
1347 * Windows - use the same size as the old WinPcap 3.1 code.
1348 * XXX - this is probably bigger than it needs to be.
1350 #define IF_NAMESIZE 8192
1353 * UN*X - use the system's interface name size.
1354 * XXX - that might not be large enough for capture devices
1355 * that aren't regular network interfaces.
1357 /* for old BSD systems, including bsdi3 */
1359 #define IF_NAMESIZE IFNAMSIZ
1362 static char device
[IF_NAMESIZE
+ 1];
1365 if (pcap_findalldevs(&alldevs
, errbuf
) == -1)
1368 if (alldevs
== NULL
|| (alldevs
->flags
& PCAP_IF_LOOPBACK
)) {
1370 * There are no devices on the list, or the first device
1371 * on the list is a loopback device, which means there
1372 * are no non-loopback devices on the list. This means
1373 * we can't return any device.
1375 * XXX - why not return a loopback device? If we can't
1376 * capture on it, it won't be on the list, and if it's
1377 * on the list, there aren't any non-loopback devices,
1378 * so why not just supply it as the default device?
1380 (void)pcap_strlcpy(errbuf
, "no suitable device found",
1385 * Return the name of the first device on the list.
1387 (void)pcap_strlcpy(device
, alldevs
->name
, sizeof(device
));
1391 pcap_freealldevs(alldevs
);
1394 #endif /* !defined(HAVE_PACKET32) && !defined(MSDOS) */
1396 #if !defined(_WIN32) && !defined(MSDOS)
1398 * We don't just fetch the entire list of devices, search for the
1399 * particular device, and use its first IPv4 address, as that's too
1400 * much work to get just one device's netmask.
1402 * If we had an API to get attributes for a given device, we could
1406 pcap_lookupnet(const char *device
, bpf_u_int32
*netp
, bpf_u_int32
*maskp
,
1410 register struct sockaddr_in
*sin4
;
1414 * The pseudo-device "any" listens on all interfaces and therefore
1415 * has the network address and -mask "0.0.0.0" therefore catching
1416 * all traffic. Using NULL for the interface is the same as "any".
1418 if (!device
|| strcmp(device
, "any") == 0
1420 || strstr(device
, "dag") != NULL
1422 #ifdef HAVE_SEPTEL_API
1423 || strstr(device
, "septel") != NULL
1425 #ifdef PCAP_SUPPORT_BT
1426 || strstr(device
, "bluetooth") != NULL
1428 #ifdef PCAP_SUPPORT_USB
1429 || strstr(device
, "usbmon") != NULL
1432 || strstr(device
, "snf") != NULL
1434 #ifdef PCAP_SUPPORT_NETMAP
1435 || strncmp(device
, "netmap:", 7) == 0
1436 || strncmp(device
, "vale", 4) == 0
1438 #ifdef PCAP_SUPPORT_DPDK
1439 || strncmp(device
, "dpdk:", 5) == 0
1446 fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
1448 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1452 memset(&ifr
, 0, sizeof(ifr
));
1454 /* XXX Work around Linux kernel bug */
1455 ifr
.ifr_addr
.sa_family
= AF_INET
;
1457 (void)pcap_strlcpy(ifr
.ifr_name
, device
, sizeof(ifr
.ifr_name
));
1458 if (ioctl(fd
, SIOCGIFADDR
, (char *)&ifr
) < 0) {
1459 if (errno
== EADDRNOTAVAIL
) {
1460 (void)pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1461 "%s: no IPv4 address assigned", device
);
1463 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1464 errno
, "SIOCGIFADDR: %s", device
);
1469 sin4
= (struct sockaddr_in
*)&ifr
.ifr_addr
;
1470 *netp
= sin4
->sin_addr
.s_addr
;
1471 memset(&ifr
, 0, sizeof(ifr
));
1473 /* XXX Work around Linux kernel bug */
1474 ifr
.ifr_addr
.sa_family
= AF_INET
;
1476 (void)pcap_strlcpy(ifr
.ifr_name
, device
, sizeof(ifr
.ifr_name
));
1477 if (ioctl(fd
, SIOCGIFNETMASK
, (char *)&ifr
) < 0) {
1478 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1479 errno
, "SIOCGIFNETMASK: %s", device
);
1484 *maskp
= sin4
->sin_addr
.s_addr
;
1486 if (IN_CLASSA(*netp
))
1487 *maskp
= IN_CLASSA_NET
;
1488 else if (IN_CLASSB(*netp
))
1489 *maskp
= IN_CLASSB_NET
;
1490 else if (IN_CLASSC(*netp
))
1491 *maskp
= IN_CLASSC_NET
;
1493 (void)pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1494 "inet class for 0x%x unknown", *netp
);
1501 #endif /* !defined(_WIN32) && !defined(MSDOS) */
1503 #ifdef ENABLE_REMOTE
1504 #include "pcap-rpcap.h"
1507 * Extract a substring from a string.
1510 get_substring(const char *p
, size_t len
, char *ebuf
)
1514 token
= malloc(len
+ 1);
1515 if (token
== NULL
) {
1516 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1520 memcpy(token
, p
, len
);
1526 * Parse a capture source that might be a URL.
1528 * If the source is not a URL, *schemep, *userinfop, *hostp, and *portp
1529 * are set to NULL, *pathp is set to point to the source, and 0 is
1532 * If source is a URL, and the URL refers to a local device (a special
1533 * case of rpcap:), *schemep, *userinfop, *hostp, and *portp are set
1534 * to NULL, *pathp is set to point to the device name, and 0 is returned.
1536 * If source is a URL, and it's not a special case that refers to a local
1537 * device, and the parse succeeds:
1539 * *schemep is set to point to an allocated string containing the scheme;
1541 * if user information is present in the URL, *userinfop is set to point
1542 * to an allocated string containing the user information, otherwise
1545 * if host information is present in the URL, *hostp is set to point
1546 * to an allocated string containing the host information, otherwise
1549 * if a port number is present in the URL, *portp is set to point
1550 * to an allocated string containing the port number, otherwise
1553 * *pathp is set to point to an allocated string containing the
1556 * and 0 is returned.
1558 * If the parse fails, ebuf is set to an error string, and -1 is returned.
1561 pcap_parse_source(const char *source
, char **schemep
, char **userinfop
,
1562 char **hostp
, char **portp
, char **pathp
, char *ebuf
)
1568 size_t authority_len
;
1570 char *parsep
, *atsignp
, *bracketp
;
1571 char *userinfo
, *host
, *port
, *path
;
1574 * Start out returning nothing.
1585 * URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
1587 * hier-part = "//" authority path-abempty
1592 * authority = [ userinfo "@" ] host [ ":" port ]
1594 * userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
1596 * Step 1: look for the ":" at the end of the scheme.
1597 * A colon in the source is *NOT* sufficient to indicate that
1598 * this is a URL, as interface names on some platforms might
1599 * include colons (e.g., I think some Solaris interfaces
1602 colonp
= strchr(source
, ':');
1603 if (colonp
== NULL
) {
1605 * The source is the device to open.
1606 * Return a NULL pointer for the scheme, user information,
1607 * host, and port, and return the device as the path.
1609 *pathp
= strdup(source
);
1610 if (*pathp
== NULL
) {
1611 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1619 * All schemes must have "//" after them, i.e. we only support
1620 * hier-part = "//" authority path-abempty, not
1621 * hier-part = path-absolute
1622 * hier-part = path-rootless
1623 * hier-part = path-empty
1625 * We need that in order to distinguish between a local device
1626 * name that happens to contain a colon and a URI.
1628 if (strncmp(colonp
+ 1, "//", 2) != 0) {
1630 * The source is the device to open.
1631 * Return a NULL pointer for the scheme, user information,
1632 * host, and port, and return the device as the path.
1634 *pathp
= strdup(source
);
1635 if (*pathp
== NULL
) {
1636 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1644 * XXX - check whether the purported scheme could be a scheme?
1648 * OK, this looks like a URL.
1651 scheme_len
= colonp
- source
;
1652 scheme
= malloc(scheme_len
+ 1);
1653 if (scheme
== NULL
) {
1654 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1658 memcpy(scheme
, source
, scheme_len
);
1659 scheme
[scheme_len
] = '\0';
1662 * Treat file: specially - take everything after file:// as
1665 if (pcap_strcasecmp(scheme
, "file") == 0) {
1666 *pathp
= strdup(colonp
+ 3);
1667 if (*pathp
== NULL
) {
1668 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1678 * The WinPcap documentation says you can specify a local
1679 * interface with "rpcap://{device}"; we special-case
1680 * that here. If the scheme is "rpcap", and there are
1681 * no slashes past the "//", we just return the device.
1685 if ((pcap_strcasecmp(scheme
, "rpcap") == 0 ||
1686 pcap_strcasecmp(scheme
, "rpcaps") == 0) &&
1687 strchr(colonp
+ 3, '/') == NULL
) {
1691 * Return a NULL pointer for the scheme, user information,
1692 * host, and port, and return the device as the path.
1695 *pathp
= strdup(colonp
+ 3);
1696 if (*pathp
== NULL
) {
1697 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1705 * OK, now start parsing the authority.
1706 * Get token, terminated with / or terminated at the end of
1709 authority_len
= strcspn(colonp
+ 3, "/");
1710 authority
= get_substring(colonp
+ 3, authority_len
, ebuf
);
1711 if (authority
== NULL
) {
1718 endp
= colonp
+ 3 + authority_len
;
1721 * Now carve the authority field into its components.
1726 * Is there a userinfo field?
1728 atsignp
= strchr(parsep
, '@');
1729 if (atsignp
!= NULL
) {
1733 size_t userinfo_len
;
1735 userinfo_len
= atsignp
- parsep
;
1736 userinfo
= get_substring(parsep
, userinfo_len
, ebuf
);
1737 if (userinfo
== NULL
) {
1745 parsep
= atsignp
+ 1;
1754 * Is there a host field?
1756 if (*parsep
== '\0') {
1758 * No; there's no host field or port field.
1769 * Is it an IP-literal?
1771 if (*parsep
== '[') {
1774 * Treat verything up to the closing square
1775 * bracket as the IP-Literal; we don't worry
1776 * about whether it's a valid IPv6address or
1777 * IPvFuture (or an IPv4address, for that
1778 * matter, just in case we get handed a
1779 * URL with an IPv4 IP-Literal, of the sort
1780 * that pcap_createsrcstr() used to generate,
1781 * and that pcap_parsesrcstr(), in the original
1782 * WinPcap code, accepted).
1784 bracketp
= strchr(parsep
, ']');
1785 if (bracketp
== NULL
) {
1787 * There's no closing square bracket.
1789 pcap_snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1790 "IP-literal in URL doesn't end with ]");
1796 if (*(bracketp
+ 1) != '\0' &&
1797 *(bracketp
+ 1) != ':') {
1799 * There's extra crud after the
1800 * closing square bracketn.
1802 pcap_snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1803 "Extra text after IP-literal in URL");
1809 host_len
= (bracketp
- 1) - parsep
;
1810 host
= get_substring(parsep
+ 1, host_len
, ebuf
);
1820 parsep
= bracketp
+ 1;
1824 * Treat everything up to a : or the end of
1825 * the string as the host.
1827 host_len
= strcspn(parsep
, ":");
1828 host
= get_substring(parsep
, host_len
, ebuf
);
1838 parsep
= parsep
+ host_len
;
1842 * Is there a port field?
1844 if (*parsep
== ':') {
1846 * Yes. It's the rest of the authority field.
1851 port_len
= strlen(parsep
);
1852 port
= get_substring(parsep
, port_len
, ebuf
);
1873 * Everything else is the path. Strip off the leading /.
1878 path
= strdup(endp
+ 1);
1880 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1889 *userinfop
= userinfo
;
1897 pcap_createsrcstr_ex(char *source
, int type
, const char *host
, const char *port
,
1898 const char *name
, unsigned char uses_ssl
, char *errbuf
)
1903 pcap_strlcpy(source
, PCAP_SRC_FILE_STRING
, PCAP_BUF_SIZE
);
1904 if (name
!= NULL
&& *name
!= '\0') {
1905 pcap_strlcat(source
, name
, PCAP_BUF_SIZE
);
1908 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1909 "The file name cannot be NULL.");
1913 case PCAP_SRC_IFREMOTE
:
1914 pcap_strlcpy(source
,
1915 (uses_ssl
? "rpcaps://" : PCAP_SRC_IF_STRING
),
1917 if (host
!= NULL
&& *host
!= '\0') {
1918 if (strchr(host
, ':') != NULL
) {
1920 * The host name contains a colon, so it's
1921 * probably an IPv6 address, and needs to
1922 * be included in square brackets.
1924 pcap_strlcat(source
, "[", PCAP_BUF_SIZE
);
1925 pcap_strlcat(source
, host
, PCAP_BUF_SIZE
);
1926 pcap_strlcat(source
, "]", PCAP_BUF_SIZE
);
1928 pcap_strlcat(source
, host
, PCAP_BUF_SIZE
);
1930 if (port
!= NULL
&& *port
!= '\0') {
1931 pcap_strlcat(source
, ":", PCAP_BUF_SIZE
);
1932 pcap_strlcat(source
, port
, PCAP_BUF_SIZE
);
1935 pcap_strlcat(source
, "/", PCAP_BUF_SIZE
);
1937 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1938 "The host name cannot be NULL.");
1942 if (name
!= NULL
&& *name
!= '\0')
1943 pcap_strlcat(source
, name
, PCAP_BUF_SIZE
);
1947 case PCAP_SRC_IFLOCAL
:
1948 pcap_strlcpy(source
, PCAP_SRC_IF_STRING
, PCAP_BUF_SIZE
);
1950 if (name
!= NULL
&& *name
!= '\0')
1951 pcap_strlcat(source
, name
, PCAP_BUF_SIZE
);
1956 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
1957 "The interface type is not valid.");
1964 pcap_createsrcstr(char *source
, int type
, const char *host
, const char *port
,
1965 const char *name
, char *errbuf
)
1967 return (pcap_createsrcstr_ex(source
, type
, host
, port
, name
, 0, errbuf
));
1971 pcap_parsesrcstr_ex(const char *source
, int *type
, char *host
, char *port
,
1972 char *name
, unsigned char *uses_ssl
, char *errbuf
)
1974 char *scheme
, *tmpuserinfo
, *tmphost
, *tmpport
, *tmppath
;
1976 /* Initialization stuff */
1986 /* Parse the source string */
1987 if (pcap_parse_source(source
, &scheme
, &tmpuserinfo
, &tmphost
,
1988 &tmpport
, &tmppath
, errbuf
) == -1) {
1995 if (scheme
== NULL
) {
1999 if (name
&& tmppath
)
2000 pcap_strlcpy(name
, tmppath
, PCAP_BUF_SIZE
);
2002 *type
= PCAP_SRC_IFLOCAL
;
2011 if (strcmp(scheme
, "rpcaps") == 0) {
2013 if (uses_ssl
) *uses_ssl
= 1;
2014 } else if (strcmp(scheme
, "rpcap") == 0) {
2022 * pcap_parse_source() has already handled the case of
2025 if (host
&& tmphost
) {
2027 pcap_snprintf(host
, PCAP_BUF_SIZE
, "%s@%s",
2028 tmpuserinfo
, tmphost
);
2030 pcap_strlcpy(host
, tmphost
, PCAP_BUF_SIZE
);
2032 if (port
&& tmpport
)
2033 pcap_strlcpy(port
, tmpport
, PCAP_BUF_SIZE
);
2034 if (name
&& tmppath
)
2035 pcap_strlcpy(name
, tmppath
, PCAP_BUF_SIZE
);
2037 *type
= PCAP_SRC_IFREMOTE
;
2046 if (strcmp(scheme
, "file") == 0) {
2050 if (name
&& tmppath
)
2051 pcap_strlcpy(name
, tmppath
, PCAP_BUF_SIZE
);
2053 *type
= PCAP_SRC_FILE
;
2063 * Neither rpcap: nor file:; just treat the entire string
2064 * as a local device.
2067 pcap_strlcpy(name
, source
, PCAP_BUF_SIZE
);
2069 *type
= PCAP_SRC_IFLOCAL
;
2079 pcap_parsesrcstr(const char *source
, int *type
, char *host
, char *port
,
2080 char *name
, char *errbuf
)
2082 return (pcap_parsesrcstr_ex(source
, type
, host
, port
, name
, NULL
, errbuf
));
2087 pcap_create(const char *device
, char *errbuf
)
2095 * A null device name is equivalent to the "any" device -
2096 * which might not be supported on this platform, but
2097 * this means that you'll get a "not supported" error
2098 * rather than, say, a crash when we try to dereference
2102 device_str
= strdup("any");
2106 * On Windows, for backwards compatibility reasons,
2107 * pcap_lookupdev() returns a pointer to a sequence of
2108 * pairs of UTF-16LE device names and local code page
2109 * description strings.
2111 * This means that if a program uses pcap_lookupdev()
2112 * to get a default device, and hands that to an API
2113 * that opens devices, we'll get handed a UTF-16LE
2114 * string, not a string in the local code page.
2116 * To work around that, we check whether the string
2117 * looks as if it might be a UTF-16LE strinh and, if
2118 * so, convert it back to the local code page's
2121 * XXX - you *cannot* reliably detect whether a
2122 * string is UTF-16LE or not; "a" could either
2123 * be a one-character ASCII string or the first
2124 * character of a UTF-16LE string. This particular
2125 * version of this heuristic dates back to WinPcap
2126 * 4.1.1; PacketOpenAdapter() does uses the same
2127 * heuristic, with the exact same vulnerability.
2129 if (device
[0] != '\0' && device
[1] == '\0') {
2132 length
= wcslen((wchar_t *)device
);
2133 device_str
= (char *)malloc(length
+ 1);
2134 if (device_str
== NULL
) {
2135 pcap_fmt_errmsg_for_errno(errbuf
,
2136 PCAP_ERRBUF_SIZE
, errno
,
2141 pcap_snprintf(device_str
, length
+ 1, "%ws",
2142 (const wchar_t *)device
);
2145 device_str
= strdup(device
);
2147 if (device_str
== NULL
) {
2148 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
2154 * Try each of the non-local-network-interface capture
2155 * source types until we find one that works for this
2156 * device or run out of types.
2158 for (i
= 0; capture_source_types
[i
].create_op
!= NULL
; i
++) {
2160 p
= capture_source_types
[i
].create_op(device_str
, errbuf
,
2164 * The device name refers to a device of the
2165 * type in question; either it succeeded,
2166 * in which case p refers to a pcap_t to
2167 * later activate for the device, or it
2168 * failed, in which case p is null and we
2169 * should return that to report the failure
2174 * We assume the caller filled in errbuf.
2179 p
->opt
.device
= device_str
;
2185 * OK, try it as a regular network interface.
2187 p
= pcap_create_interface(device_str
, errbuf
);
2190 * We assume the caller filled in errbuf.
2195 p
->opt
.device
= device_str
;
2200 * Set nonblocking mode on an unactivated pcap_t; this sets a flag
2201 * checked by pcap_activate(), which sets the mode after calling
2202 * the activate routine.
2205 pcap_setnonblock_unactivated(pcap_t
*p
, int nonblock
)
2207 p
->opt
.nonblock
= nonblock
;
2212 initialize_ops(pcap_t
*p
)
2215 * Set operation pointers for operations that only work on
2216 * an activated pcap_t to point to a routine that returns
2217 * a "this isn't activated" error.
2219 p
->read_op
= pcap_read_not_initialized
;
2220 p
->inject_op
= pcap_inject_not_initialized
;
2221 p
->setfilter_op
= pcap_setfilter_not_initialized
;
2222 p
->setdirection_op
= pcap_setdirection_not_initialized
;
2223 p
->set_datalink_op
= pcap_set_datalink_not_initialized
;
2224 p
->getnonblock_op
= pcap_getnonblock_not_initialized
;
2225 p
->stats_op
= pcap_stats_not_initialized
;
2227 p
->stats_ex_op
= pcap_stats_ex_not_initialized
;
2228 p
->setbuff_op
= pcap_setbuff_not_initialized
;
2229 p
->setmode_op
= pcap_setmode_not_initialized
;
2230 p
->setmintocopy_op
= pcap_setmintocopy_not_initialized
;
2231 p
->getevent_op
= pcap_getevent_not_initialized
;
2232 p
->oid_get_request_op
= pcap_oid_get_request_not_initialized
;
2233 p
->oid_set_request_op
= pcap_oid_set_request_not_initialized
;
2234 p
->sendqueue_transmit_op
= pcap_sendqueue_transmit_not_initialized
;
2235 p
->setuserbuffer_op
= pcap_setuserbuffer_not_initialized
;
2236 p
->live_dump_op
= pcap_live_dump_not_initialized
;
2237 p
->live_dump_ended_op
= pcap_live_dump_ended_not_initialized
;
2238 p
->get_airpcap_handle_op
= pcap_get_airpcap_handle_not_initialized
;
2242 * Default cleanup operation - implementations can override
2243 * this, but should call pcap_cleanup_live_common() after
2244 * doing their own additional cleanup.
2246 p
->cleanup_op
= pcap_cleanup_live_common
;
2249 * In most cases, the standard one-shot callback can
2250 * be used for pcap_next()/pcap_next_ex().
2252 p
->oneshot_callback
= pcap_oneshot
;
2255 * Default breakloop operation - implementations can override
2256 * this, but should call pcap_breakloop_common() before doing
2259 p
->breakloop_op
= pcap_breakloop_common
;
2263 pcap_alloc_pcap_t(char *ebuf
, size_t size
)
2269 * Allocate a chunk of memory big enough for a pcap_t
2270 * plus a structure following it of size "size". The
2271 * structure following it is a private data structure
2272 * for the routines that handle this pcap_t.
2274 * The structure following it must be aligned on
2275 * the appropriate alignment boundary for this platform.
2276 * We align on an 8-byte boundary as that's probably what
2277 * at least some platforms do, even with 32-bit integers,
2278 * and because we can't be sure that some values won't
2279 * require 8-byte alignment even on platforms with 32-bit
2282 #define PCAP_T_ALIGNED_SIZE ((sizeof(pcap_t) + 7U) & ~0x7U)
2283 chunk
= malloc(PCAP_T_ALIGNED_SIZE
+ size
);
2284 if (chunk
== NULL
) {
2285 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
2289 memset(chunk
, 0, PCAP_T_ALIGNED_SIZE
+ size
);
2292 * Get a pointer to the pcap_t at the beginning.
2294 p
= (pcap_t
*)chunk
;
2297 p
->handle
= INVALID_HANDLE_VALUE
; /* not opened yet */
2299 p
->fd
= -1; /* not opened yet */
2301 p
->selectable_fd
= -1;
2302 p
->required_select_timeout
= NULL
;
2307 /* No private data was requested. */
2311 * Set the pointer to the private data; that's the structure
2312 * of size "size" following the pcap_t.
2314 p
->priv
= (void *)(chunk
+ PCAP_T_ALIGNED_SIZE
);
2321 pcap_create_common(char *ebuf
, size_t size
)
2325 p
= pcap_alloc_pcap_t(ebuf
, size
);
2330 * Default to "can't set rfmon mode"; if it's supported by
2331 * a platform, the create routine that called us can set
2332 * the op to its routine to check whether a particular
2333 * device supports it.
2335 p
->can_set_rfmon_op
= pcap_cant_set_rfmon
;
2338 * If pcap_setnonblock() is called on a not-yet-activated
2339 * pcap_t, default to setting a flag and turning
2340 * on non-blocking mode when activated.
2342 p
->setnonblock_op
= pcap_setnonblock_unactivated
;
2346 /* put in some defaults*/
2347 p
->snapshot
= 0; /* max packet size unspecified */
2348 p
->opt
.timeout
= 0; /* no timeout specified */
2349 p
->opt
.buffer_size
= 0; /* use the platform's default */
2352 p
->opt
.immediate
= 0;
2353 p
->opt
.tstamp_type
= -1; /* default to not setting time stamp type */
2354 p
->opt
.tstamp_precision
= PCAP_TSTAMP_PRECISION_MICRO
;
2356 * Platform-dependent options.
2359 p
->opt
.protocol
= 0;
2362 p
->opt
.nocapture_local
= 0;
2366 * Start out with no BPF code generation flags set.
2368 p
->bpf_codegen_flags
= 0;
2374 pcap_check_activated(pcap_t
*p
)
2377 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
, "can't perform "
2378 " operation on activated capture");
2385 pcap_set_snaplen(pcap_t
*p
, int snaplen
)
2387 if (pcap_check_activated(p
))
2388 return (PCAP_ERROR_ACTIVATED
);
2389 p
->snapshot
= snaplen
;
2394 pcap_set_promisc(pcap_t
*p
, int promisc
)
2396 if (pcap_check_activated(p
))
2397 return (PCAP_ERROR_ACTIVATED
);
2398 p
->opt
.promisc
= promisc
;
2403 pcap_set_rfmon(pcap_t
*p
, int rfmon
)
2405 if (pcap_check_activated(p
))
2406 return (PCAP_ERROR_ACTIVATED
);
2407 p
->opt
.rfmon
= rfmon
;
2412 pcap_set_timeout(pcap_t
*p
, int timeout_ms
)
2414 if (pcap_check_activated(p
))
2415 return (PCAP_ERROR_ACTIVATED
);
2416 p
->opt
.timeout
= timeout_ms
;
2421 pcap_set_tstamp_type(pcap_t
*p
, int tstamp_type
)
2425 if (pcap_check_activated(p
))
2426 return (PCAP_ERROR_ACTIVATED
);
2429 * The argument should have been u_int, but that's too late
2430 * to change now - it's an API.
2432 if (tstamp_type
< 0)
2433 return (PCAP_WARNING_TSTAMP_TYPE_NOTSUP
);
2436 * If p->tstamp_type_count is 0, we only support PCAP_TSTAMP_HOST;
2437 * the default time stamp type is PCAP_TSTAMP_HOST.
2439 if (p
->tstamp_type_count
== 0) {
2440 if (tstamp_type
== PCAP_TSTAMP_HOST
) {
2441 p
->opt
.tstamp_type
= tstamp_type
;
2446 * Check whether we claim to support this type of time stamp.
2448 for (i
= 0; i
< p
->tstamp_type_count
; i
++) {
2449 if (p
->tstamp_type_list
[i
] == (u_int
)tstamp_type
) {
2453 p
->opt
.tstamp_type
= tstamp_type
;
2460 * We don't support this type of time stamp.
2462 return (PCAP_WARNING_TSTAMP_TYPE_NOTSUP
);
2466 pcap_set_immediate_mode(pcap_t
*p
, int immediate
)
2468 if (pcap_check_activated(p
))
2469 return (PCAP_ERROR_ACTIVATED
);
2470 p
->opt
.immediate
= immediate
;
2475 pcap_set_buffer_size(pcap_t
*p
, int buffer_size
)
2477 if (pcap_check_activated(p
))
2478 return (PCAP_ERROR_ACTIVATED
);
2479 if (buffer_size
<= 0) {
2481 * Silently ignore invalid values.
2485 p
->opt
.buffer_size
= buffer_size
;
2490 pcap_set_tstamp_precision(pcap_t
*p
, int tstamp_precision
)
2494 if (pcap_check_activated(p
))
2495 return (PCAP_ERROR_ACTIVATED
);
2498 * The argument should have been u_int, but that's too late
2499 * to change now - it's an API.
2501 if (tstamp_precision
< 0)
2502 return (PCAP_ERROR_TSTAMP_PRECISION_NOTSUP
);
2505 * If p->tstamp_precision_count is 0, we only support setting
2506 * the time stamp precision to microsecond precision; every
2507 * pcap module *MUST* support microsecond precision, even if
2508 * it does so by converting the native precision to
2511 if (p
->tstamp_precision_count
== 0) {
2512 if (tstamp_precision
== PCAP_TSTAMP_PRECISION_MICRO
) {
2513 p
->opt
.tstamp_precision
= tstamp_precision
;
2518 * Check whether we claim to support this precision of
2521 for (i
= 0; i
< p
->tstamp_precision_count
; i
++) {
2522 if (p
->tstamp_precision_list
[i
] == (u_int
)tstamp_precision
) {
2526 p
->opt
.tstamp_precision
= tstamp_precision
;
2533 * We don't support this time stamp precision.
2535 return (PCAP_ERROR_TSTAMP_PRECISION_NOTSUP
);
2539 pcap_get_tstamp_precision(pcap_t
*p
)
2541 return (p
->opt
.tstamp_precision
);
2545 pcap_activate(pcap_t
*p
)
2550 * Catch attempts to re-activate an already-activated
2551 * pcap_t; this should, for example, catch code that
2552 * calls pcap_open_live() followed by pcap_activate(),
2553 * as some code that showed up in a Stack Exchange
2556 if (pcap_check_activated(p
))
2557 return (PCAP_ERROR_ACTIVATED
);
2558 status
= p
->activate_op(p
);
2561 * If somebody requested non-blocking mode before
2562 * calling pcap_activate(), turn it on now.
2564 if (p
->opt
.nonblock
) {
2565 status
= p
->setnonblock_op(p
, 1);
2568 * Failed. Undo everything done by
2569 * the activate operation.
2578 if (p
->errbuf
[0] == '\0') {
2580 * No error message supplied by the activate routine;
2581 * for the benefit of programs that don't specially
2582 * handle errors other than PCAP_ERROR, return the
2583 * error message corresponding to the status.
2585 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
, "%s",
2586 pcap_statustostr(status
));
2590 * Undo any operation pointer setting, etc. done by
2591 * the activate operation.
2599 pcap_open_live(const char *device
, int snaplen
, int promisc
, int to_ms
, char *errbuf
)
2603 #ifdef ENABLE_REMOTE
2604 char host
[PCAP_BUF_SIZE
+ 1];
2605 char port
[PCAP_BUF_SIZE
+ 1];
2606 char name
[PCAP_BUF_SIZE
+ 1];
2610 * A null device name is equivalent to the "any" device -
2611 * which might not be supported on this platform, but
2612 * this means that you'll get a "not supported" error
2613 * rather than, say, a crash when we try to dereference
2620 * Retrofit - we have to make older applications compatible with
2622 * So we're calling pcap_open_remote() from here; this is a very
2624 * Obviously, we cannot exploit all the new features; for instance,
2625 * we cannot send authentication, we cannot use a UDP data connection,
2628 if (pcap_parsesrcstr(device
, &srctype
, host
, port
, name
, errbuf
))
2631 if (srctype
== PCAP_SRC_IFREMOTE
) {
2633 * Although we already have host, port and iface, we prefer
2634 * to pass only 'device' to pcap_open_rpcap(), so that it has
2635 * to call pcap_parsesrcstr() again.
2636 * This is less optimized, but much clearer.
2638 return (pcap_open_rpcap(device
, snaplen
,
2639 promisc
? PCAP_OPENFLAG_PROMISCUOUS
: 0, to_ms
,
2642 if (srctype
== PCAP_SRC_FILE
) {
2643 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "unknown URL scheme \"file\"");
2646 if (srctype
== PCAP_SRC_IFLOCAL
) {
2648 * If it starts with rpcap://, that refers to a local device
2649 * (no host part in the URL). Remove the rpcap://, and
2650 * fall through to the regular open path.
2652 if (strncmp(device
, PCAP_SRC_IF_STRING
, strlen(PCAP_SRC_IF_STRING
)) == 0) {
2653 size_t len
= strlen(device
) - strlen(PCAP_SRC_IF_STRING
) + 1;
2656 device
+= strlen(PCAP_SRC_IF_STRING
);
2659 #endif /* ENABLE_REMOTE */
2661 p
= pcap_create(device
, errbuf
);
2664 status
= pcap_set_snaplen(p
, snaplen
);
2667 status
= pcap_set_promisc(p
, promisc
);
2670 status
= pcap_set_timeout(p
, to_ms
);
2674 * Mark this as opened with pcap_open_live(), so that, for
2675 * example, we show the full list of DLT_ values, rather
2676 * than just the ones that are compatible with capturing
2677 * when not in monitor mode. That allows existing applications
2678 * to work the way they used to work, but allows new applications
2679 * that know about the new open API to, for example, find out the
2680 * DLT_ values that they can select without changing whether
2681 * the adapter is in monitor mode or not.
2684 status
= pcap_activate(p
);
2689 if (status
== PCAP_ERROR
)
2690 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %.*s", device
,
2691 PCAP_ERRBUF_SIZE
- 3, p
->errbuf
);
2692 else if (status
== PCAP_ERROR_NO_SUCH_DEVICE
||
2693 status
== PCAP_ERROR_PERM_DENIED
||
2694 status
== PCAP_ERROR_PROMISC_PERM_DENIED
)
2695 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %s (%.*s)", device
,
2696 pcap_statustostr(status
), PCAP_ERRBUF_SIZE
- 6, p
->errbuf
);
2698 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %s", device
,
2699 pcap_statustostr(status
));
2705 pcap_open_offline_common(char *ebuf
, size_t size
)
2709 p
= pcap_alloc_pcap_t(ebuf
, size
);
2713 p
->opt
.tstamp_precision
= PCAP_TSTAMP_PRECISION_MICRO
;
2719 pcap_dispatch(pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*user
)
2721 return (p
->read_op(p
, cnt
, callback
, user
));
2725 pcap_loop(pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*user
)
2730 if (p
->rfile
!= NULL
) {
2732 * 0 means EOF, so don't loop if we get 0.
2734 n
= pcap_offline_read(p
, cnt
, callback
, user
);
2737 * XXX keep reading until we get something
2738 * (or an error occurs)
2741 n
= p
->read_op(p
, cnt
, callback
, user
);
2746 if (!PACKET_COUNT_IS_UNLIMITED(cnt
)) {
2755 * Force the loop in "pcap_read()" or "pcap_read_offline()" to terminate.
2758 pcap_breakloop(pcap_t
*p
)
2764 pcap_datalink(pcap_t
*p
)
2767 return (PCAP_ERROR_NOT_ACTIVATED
);
2768 return (p
->linktype
);
2772 pcap_datalink_ext(pcap_t
*p
)
2775 return (PCAP_ERROR_NOT_ACTIVATED
);
2776 return (p
->linktype_ext
);
2780 pcap_list_datalinks(pcap_t
*p
, int **dlt_buffer
)
2783 return (PCAP_ERROR_NOT_ACTIVATED
);
2784 if (p
->dlt_count
== 0) {
2786 * We couldn't fetch the list of DLTs, which means
2787 * this platform doesn't support changing the
2788 * DLT for an interface. Return a list of DLTs
2789 * containing only the DLT this device supports.
2791 *dlt_buffer
= (int*)malloc(sizeof(**dlt_buffer
));
2792 if (*dlt_buffer
== NULL
) {
2793 pcap_fmt_errmsg_for_errno(p
->errbuf
, sizeof(p
->errbuf
),
2795 return (PCAP_ERROR
);
2797 **dlt_buffer
= p
->linktype
;
2800 *dlt_buffer
= (int*)calloc(sizeof(**dlt_buffer
), p
->dlt_count
);
2801 if (*dlt_buffer
== NULL
) {
2802 pcap_fmt_errmsg_for_errno(p
->errbuf
, sizeof(p
->errbuf
),
2804 return (PCAP_ERROR
);
2806 (void)memcpy(*dlt_buffer
, p
->dlt_list
,
2807 sizeof(**dlt_buffer
) * p
->dlt_count
);
2808 return (p
->dlt_count
);
2813 * In Windows, you might have a library built with one version of the
2814 * C runtime library and an application built with another version of
2815 * the C runtime library, which means that the library might use one
2816 * version of malloc() and free() and the application might use another
2817 * version of malloc() and free(). If so, that means something
2818 * allocated by the library cannot be freed by the application, so we
2819 * need to have a pcap_free_datalinks() routine to free up the list
2820 * allocated by pcap_list_datalinks(), even though it's just a wrapper
2824 pcap_free_datalinks(int *dlt_list
)
2830 pcap_set_datalink(pcap_t
*p
, int dlt
)
2833 const char *dlt_name
;
2838 if (p
->dlt_count
== 0 || p
->set_datalink_op
== NULL
) {
2840 * We couldn't fetch the list of DLTs, or we don't
2841 * have a "set datalink" operation, which means
2842 * this platform doesn't support changing the
2843 * DLT for an interface. Check whether the new
2844 * DLT is the one this interface supports.
2846 if (p
->linktype
!= dlt
)
2850 * It is, so there's nothing we need to do here.
2854 for (i
= 0; i
< p
->dlt_count
; i
++)
2855 if (p
->dlt_list
[i
] == (u_int
)dlt
)
2857 if (i
>= p
->dlt_count
)
2859 if (p
->dlt_count
== 2 && p
->dlt_list
[0] == DLT_EN10MB
&&
2860 dlt
== DLT_DOCSIS
) {
2862 * This is presumably an Ethernet device, as the first
2863 * link-layer type it offers is DLT_EN10MB, and the only
2864 * other type it offers is DLT_DOCSIS. That means that
2865 * we can't tell the driver to supply DOCSIS link-layer
2866 * headers - we're just pretending that's what we're
2867 * getting, as, presumably, we're capturing on a dedicated
2868 * link to a Cisco Cable Modem Termination System, and
2869 * it's putting raw DOCSIS frames on the wire inside low-level
2875 if (p
->set_datalink_op(p
, dlt
) == -1)
2881 dlt_name
= pcap_datalink_val_to_name(dlt
);
2882 if (dlt_name
!= NULL
) {
2883 (void) pcap_snprintf(p
->errbuf
, sizeof(p
->errbuf
),
2884 "%s is not one of the DLTs supported by this device",
2887 (void) pcap_snprintf(p
->errbuf
, sizeof(p
->errbuf
),
2888 "DLT %d is not one of the DLTs supported by this device",
2895 * This array is designed for mapping upper and lower case letter
2896 * together for a case independent comparison. The mappings are
2897 * based upon ascii character sequences.
2899 static const u_char charmap
[] = {
2900 (u_char
)'\000', (u_char
)'\001', (u_char
)'\002', (u_char
)'\003',
2901 (u_char
)'\004', (u_char
)'\005', (u_char
)'\006', (u_char
)'\007',
2902 (u_char
)'\010', (u_char
)'\011', (u_char
)'\012', (u_char
)'\013',
2903 (u_char
)'\014', (u_char
)'\015', (u_char
)'\016', (u_char
)'\017',
2904 (u_char
)'\020', (u_char
)'\021', (u_char
)'\022', (u_char
)'\023',
2905 (u_char
)'\024', (u_char
)'\025', (u_char
)'\026', (u_char
)'\027',
2906 (u_char
)'\030', (u_char
)'\031', (u_char
)'\032', (u_char
)'\033',
2907 (u_char
)'\034', (u_char
)'\035', (u_char
)'\036', (u_char
)'\037',
2908 (u_char
)'\040', (u_char
)'\041', (u_char
)'\042', (u_char
)'\043',
2909 (u_char
)'\044', (u_char
)'\045', (u_char
)'\046', (u_char
)'\047',
2910 (u_char
)'\050', (u_char
)'\051', (u_char
)'\052', (u_char
)'\053',
2911 (u_char
)'\054', (u_char
)'\055', (u_char
)'\056', (u_char
)'\057',
2912 (u_char
)'\060', (u_char
)'\061', (u_char
)'\062', (u_char
)'\063',
2913 (u_char
)'\064', (u_char
)'\065', (u_char
)'\066', (u_char
)'\067',
2914 (u_char
)'\070', (u_char
)'\071', (u_char
)'\072', (u_char
)'\073',
2915 (u_char
)'\074', (u_char
)'\075', (u_char
)'\076', (u_char
)'\077',
2916 (u_char
)'\100', (u_char
)'\141', (u_char
)'\142', (u_char
)'\143',
2917 (u_char
)'\144', (u_char
)'\145', (u_char
)'\146', (u_char
)'\147',
2918 (u_char
)'\150', (u_char
)'\151', (u_char
)'\152', (u_char
)'\153',
2919 (u_char
)'\154', (u_char
)'\155', (u_char
)'\156', (u_char
)'\157',
2920 (u_char
)'\160', (u_char
)'\161', (u_char
)'\162', (u_char
)'\163',
2921 (u_char
)'\164', (u_char
)'\165', (u_char
)'\166', (u_char
)'\167',
2922 (u_char
)'\170', (u_char
)'\171', (u_char
)'\172', (u_char
)'\133',
2923 (u_char
)'\134', (u_char
)'\135', (u_char
)'\136', (u_char
)'\137',
2924 (u_char
)'\140', (u_char
)'\141', (u_char
)'\142', (u_char
)'\143',
2925 (u_char
)'\144', (u_char
)'\145', (u_char
)'\146', (u_char
)'\147',
2926 (u_char
)'\150', (u_char
)'\151', (u_char
)'\152', (u_char
)'\153',
2927 (u_char
)'\154', (u_char
)'\155', (u_char
)'\156', (u_char
)'\157',
2928 (u_char
)'\160', (u_char
)'\161', (u_char
)'\162', (u_char
)'\163',
2929 (u_char
)'\164', (u_char
)'\165', (u_char
)'\166', (u_char
)'\167',
2930 (u_char
)'\170', (u_char
)'\171', (u_char
)'\172', (u_char
)'\173',
2931 (u_char
)'\174', (u_char
)'\175', (u_char
)'\176', (u_char
)'\177',
2932 (u_char
)'\200', (u_char
)'\201', (u_char
)'\202', (u_char
)'\203',
2933 (u_char
)'\204', (u_char
)'\205', (u_char
)'\206', (u_char
)'\207',
2934 (u_char
)'\210', (u_char
)'\211', (u_char
)'\212', (u_char
)'\213',
2935 (u_char
)'\214', (u_char
)'\215', (u_char
)'\216', (u_char
)'\217',
2936 (u_char
)'\220', (u_char
)'\221', (u_char
)'\222', (u_char
)'\223',
2937 (u_char
)'\224', (u_char
)'\225', (u_char
)'\226', (u_char
)'\227',
2938 (u_char
)'\230', (u_char
)'\231', (u_char
)'\232', (u_char
)'\233',
2939 (u_char
)'\234', (u_char
)'\235', (u_char
)'\236', (u_char
)'\237',
2940 (u_char
)'\240', (u_char
)'\241', (u_char
)'\242', (u_char
)'\243',
2941 (u_char
)'\244', (u_char
)'\245', (u_char
)'\246', (u_char
)'\247',
2942 (u_char
)'\250', (u_char
)'\251', (u_char
)'\252', (u_char
)'\253',
2943 (u_char
)'\254', (u_char
)'\255', (u_char
)'\256', (u_char
)'\257',
2944 (u_char
)'\260', (u_char
)'\261', (u_char
)'\262', (u_char
)'\263',
2945 (u_char
)'\264', (u_char
)'\265', (u_char
)'\266', (u_char
)'\267',
2946 (u_char
)'\270', (u_char
)'\271', (u_char
)'\272', (u_char
)'\273',
2947 (u_char
)'\274', (u_char
)'\275', (u_char
)'\276', (u_char
)'\277',
2948 (u_char
)'\300', (u_char
)'\341', (u_char
)'\342', (u_char
)'\343',
2949 (u_char
)'\344', (u_char
)'\345', (u_char
)'\346', (u_char
)'\347',
2950 (u_char
)'\350', (u_char
)'\351', (u_char
)'\352', (u_char
)'\353',
2951 (u_char
)'\354', (u_char
)'\355', (u_char
)'\356', (u_char
)'\357',
2952 (u_char
)'\360', (u_char
)'\361', (u_char
)'\362', (u_char
)'\363',
2953 (u_char
)'\364', (u_char
)'\365', (u_char
)'\366', (u_char
)'\367',
2954 (u_char
)'\370', (u_char
)'\371', (u_char
)'\372', (u_char
)'\333',
2955 (u_char
)'\334', (u_char
)'\335', (u_char
)'\336', (u_char
)'\337',
2956 (u_char
)'\340', (u_char
)'\341', (u_char
)'\342', (u_char
)'\343',
2957 (u_char
)'\344', (u_char
)'\345', (u_char
)'\346', (u_char
)'\347',
2958 (u_char
)'\350', (u_char
)'\351', (u_char
)'\352', (u_char
)'\353',
2959 (u_char
)'\354', (u_char
)'\355', (u_char
)'\356', (u_char
)'\357',
2960 (u_char
)'\360', (u_char
)'\361', (u_char
)'\362', (u_char
)'\363',
2961 (u_char
)'\364', (u_char
)'\365', (u_char
)'\366', (u_char
)'\367',
2962 (u_char
)'\370', (u_char
)'\371', (u_char
)'\372', (u_char
)'\373',
2963 (u_char
)'\374', (u_char
)'\375', (u_char
)'\376', (u_char
)'\377',
2967 pcap_strcasecmp(const char *s1
, const char *s2
)
2969 register const u_char
*cm
= charmap
,
2970 *us1
= (const u_char
*)s1
,
2971 *us2
= (const u_char
*)s2
;
2973 while (cm
[*us1
] == cm
[*us2
++])
2976 return (cm
[*us1
] - cm
[*--us2
]);
2981 const char *description
;
2985 #define DLT_CHOICE(code, description) { #code, description, DLT_ ## code }
2986 #define DLT_CHOICE_SENTINEL { NULL, NULL, 0 }
2988 static struct dlt_choice dlt_choices
[] = {
2989 DLT_CHOICE(NULL
, "BSD loopback"),
2990 DLT_CHOICE(EN10MB
, "Ethernet"),
2991 DLT_CHOICE(IEEE802
, "Token ring"),
2992 DLT_CHOICE(ARCNET
, "BSD ARCNET"),
2993 DLT_CHOICE(SLIP
, "SLIP"),
2994 DLT_CHOICE(PPP
, "PPP"),
2995 DLT_CHOICE(FDDI
, "FDDI"),
2996 DLT_CHOICE(ATM_RFC1483
, "RFC 1483 LLC-encapsulated ATM"),
2997 DLT_CHOICE(RAW
, "Raw IP"),
2998 DLT_CHOICE(SLIP_BSDOS
, "BSD/OS SLIP"),
2999 DLT_CHOICE(PPP_BSDOS
, "BSD/OS PPP"),
3000 DLT_CHOICE(ATM_CLIP
, "Linux Classical IP-over-ATM"),
3001 DLT_CHOICE(PPP_SERIAL
, "PPP over serial"),
3002 DLT_CHOICE(PPP_ETHER
, "PPPoE"),
3003 DLT_CHOICE(SYMANTEC_FIREWALL
, "Symantec Firewall"),
3004 DLT_CHOICE(C_HDLC
, "Cisco HDLC"),
3005 DLT_CHOICE(IEEE802_11
, "802.11"),
3006 DLT_CHOICE(FRELAY
, "Frame Relay"),
3007 DLT_CHOICE(LOOP
, "OpenBSD loopback"),
3008 DLT_CHOICE(ENC
, "OpenBSD encapsulated IP"),
3009 DLT_CHOICE(LINUX_SLL
, "Linux cooked v1"),
3010 DLT_CHOICE(LTALK
, "Localtalk"),
3011 DLT_CHOICE(PFLOG
, "OpenBSD pflog file"),
3012 DLT_CHOICE(PFSYNC
, "Packet filter state syncing"),
3013 DLT_CHOICE(PRISM_HEADER
, "802.11 plus Prism header"),
3014 DLT_CHOICE(IP_OVER_FC
, "RFC 2625 IP-over-Fibre Channel"),
3015 DLT_CHOICE(SUNATM
, "Sun raw ATM"),
3016 DLT_CHOICE(IEEE802_11_RADIO
, "802.11 plus radiotap header"),
3017 DLT_CHOICE(ARCNET_LINUX
, "Linux ARCNET"),
3018 DLT_CHOICE(JUNIPER_MLPPP
, "Juniper Multi-Link PPP"),
3019 DLT_CHOICE(JUNIPER_MLFR
, "Juniper Multi-Link Frame Relay"),
3020 DLT_CHOICE(JUNIPER_ES
, "Juniper Encryption Services PIC"),
3021 DLT_CHOICE(JUNIPER_GGSN
, "Juniper GGSN PIC"),
3022 DLT_CHOICE(JUNIPER_MFR
, "Juniper FRF.16 Frame Relay"),
3023 DLT_CHOICE(JUNIPER_ATM2
, "Juniper ATM2 PIC"),
3024 DLT_CHOICE(JUNIPER_SERVICES
, "Juniper Advanced Services PIC"),
3025 DLT_CHOICE(JUNIPER_ATM1
, "Juniper ATM1 PIC"),
3026 DLT_CHOICE(APPLE_IP_OVER_IEEE1394
, "Apple IP-over-IEEE 1394"),
3027 DLT_CHOICE(MTP2_WITH_PHDR
, "SS7 MTP2 with Pseudo-header"),
3028 DLT_CHOICE(MTP2
, "SS7 MTP2"),
3029 DLT_CHOICE(MTP3
, "SS7 MTP3"),
3030 DLT_CHOICE(SCCP
, "SS7 SCCP"),
3031 DLT_CHOICE(DOCSIS
, "DOCSIS"),
3032 DLT_CHOICE(LINUX_IRDA
, "Linux IrDA"),
3033 DLT_CHOICE(IEEE802_11_RADIO_AVS
, "802.11 plus AVS radio information header"),
3034 DLT_CHOICE(JUNIPER_MONITOR
, "Juniper Passive Monitor PIC"),
3035 DLT_CHOICE(BACNET_MS_TP
, "BACnet MS/TP"),
3036 DLT_CHOICE(PPP_PPPD
, "PPP for pppd, with direction flag"),
3037 DLT_CHOICE(JUNIPER_PPPOE
, "Juniper PPPoE"),
3038 DLT_CHOICE(JUNIPER_PPPOE_ATM
, "Juniper PPPoE/ATM"),
3039 DLT_CHOICE(GPRS_LLC
, "GPRS LLC"),
3040 DLT_CHOICE(GPF_T
, "GPF-T"),
3041 DLT_CHOICE(GPF_F
, "GPF-F"),
3042 DLT_CHOICE(JUNIPER_PIC_PEER
, "Juniper PIC Peer"),
3043 DLT_CHOICE(ERF_ETH
, "Ethernet with Endace ERF header"),
3044 DLT_CHOICE(ERF_POS
, "Packet-over-SONET with Endace ERF header"),
3045 DLT_CHOICE(LINUX_LAPD
, "Linux vISDN LAPD"),
3046 DLT_CHOICE(JUNIPER_ETHER
, "Juniper Ethernet"),
3047 DLT_CHOICE(JUNIPER_PPP
, "Juniper PPP"),
3048 DLT_CHOICE(JUNIPER_FRELAY
, "Juniper Frame Relay"),
3049 DLT_CHOICE(JUNIPER_CHDLC
, "Juniper C-HDLC"),
3050 DLT_CHOICE(MFR
, "FRF.16 Frame Relay"),
3051 DLT_CHOICE(JUNIPER_VP
, "Juniper Voice PIC"),
3052 DLT_CHOICE(A429
, "Arinc 429"),
3053 DLT_CHOICE(A653_ICM
, "Arinc 653 Interpartition Communication"),
3054 DLT_CHOICE(USB_FREEBSD
, "USB with FreeBSD header"),
3055 DLT_CHOICE(BLUETOOTH_HCI_H4
, "Bluetooth HCI UART transport layer"),
3056 DLT_CHOICE(IEEE802_16_MAC_CPS
, "IEEE 802.16 MAC Common Part Sublayer"),
3057 DLT_CHOICE(USB_LINUX
, "USB with Linux header"),
3058 DLT_CHOICE(CAN20B
, "Controller Area Network (CAN) v. 2.0B"),
3059 DLT_CHOICE(IEEE802_15_4_LINUX
, "IEEE 802.15.4 with Linux padding"),
3060 DLT_CHOICE(PPI
, "Per-Packet Information"),
3061 DLT_CHOICE(IEEE802_16_MAC_CPS_RADIO
, "IEEE 802.16 MAC Common Part Sublayer plus radiotap header"),
3062 DLT_CHOICE(JUNIPER_ISM
, "Juniper Integrated Service Module"),
3063 DLT_CHOICE(IEEE802_15_4
, "IEEE 802.15.4 with FCS"),
3064 DLT_CHOICE(SITA
, "SITA pseudo-header"),
3065 DLT_CHOICE(ERF
, "Endace ERF header"),
3066 DLT_CHOICE(RAIF1
, "Ethernet with u10 Networks pseudo-header"),
3067 DLT_CHOICE(IPMB_KONTRON
, "IPMB with Kontron pseudo-header"),
3068 DLT_CHOICE(JUNIPER_ST
, "Juniper Secure Tunnel"),
3069 DLT_CHOICE(BLUETOOTH_HCI_H4_WITH_PHDR
, "Bluetooth HCI UART transport layer plus pseudo-header"),
3070 DLT_CHOICE(AX25_KISS
, "AX.25 with KISS header"),
3071 DLT_CHOICE(IPMB_LINUX
, "IPMB with Linux/Pigeon Point pseudo-header"),
3072 DLT_CHOICE(IEEE802_15_4_NONASK_PHY
, "IEEE 802.15.4 with non-ASK PHY data"),
3073 DLT_CHOICE(MPLS
, "MPLS with label as link-layer header"),
3074 DLT_CHOICE(LINUX_EVDEV
, "Linux evdev events"),
3075 DLT_CHOICE(USB_LINUX_MMAPPED
, "USB with padded Linux header"),
3076 DLT_CHOICE(DECT
, "DECT"),
3077 DLT_CHOICE(AOS
, "AOS Space Data Link protocol"),
3078 DLT_CHOICE(WIHART
, "Wireless HART"),
3079 DLT_CHOICE(FC_2
, "Fibre Channel FC-2"),
3080 DLT_CHOICE(FC_2_WITH_FRAME_DELIMS
, "Fibre Channel FC-2 with frame delimiters"),
3081 DLT_CHOICE(IPNET
, "Solaris ipnet"),
3082 DLT_CHOICE(CAN_SOCKETCAN
, "CAN-bus with SocketCAN headers"),
3083 DLT_CHOICE(IPV4
, "Raw IPv4"),
3084 DLT_CHOICE(IPV6
, "Raw IPv6"),
3085 DLT_CHOICE(IEEE802_15_4_NOFCS
, "IEEE 802.15.4 without FCS"),
3086 DLT_CHOICE(DBUS
, "D-Bus"),
3087 DLT_CHOICE(JUNIPER_VS
, "Juniper Virtual Server"),
3088 DLT_CHOICE(JUNIPER_SRX_E2E
, "Juniper SRX E2E"),
3089 DLT_CHOICE(JUNIPER_FIBRECHANNEL
, "Juniper Fibre Channel"),
3090 DLT_CHOICE(DVB_CI
, "DVB-CI"),
3091 DLT_CHOICE(MUX27010
, "MUX27010"),
3092 DLT_CHOICE(STANAG_5066_D_PDU
, "STANAG 5066 D_PDUs"),
3093 DLT_CHOICE(JUNIPER_ATM_CEMIC
, "Juniper ATM CEMIC"),
3094 DLT_CHOICE(NFLOG
, "Linux netfilter log messages"),
3095 DLT_CHOICE(NETANALYZER
, "Ethernet with Hilscher netANALYZER pseudo-header"),
3096 DLT_CHOICE(NETANALYZER_TRANSPARENT
, "Ethernet with Hilscher netANALYZER pseudo-header and with preamble and SFD"),
3097 DLT_CHOICE(IPOIB
, "RFC 4391 IP-over-Infiniband"),
3098 DLT_CHOICE(MPEG_2_TS
, "MPEG-2 transport stream"),
3099 DLT_CHOICE(NG40
, "ng40 protocol tester Iub/Iur"),
3100 DLT_CHOICE(NFC_LLCP
, "NFC LLCP PDUs with pseudo-header"),
3101 DLT_CHOICE(INFINIBAND
, "InfiniBand"),
3102 DLT_CHOICE(SCTP
, "SCTP"),
3103 DLT_CHOICE(USBPCAP
, "USB with USBPcap header"),
3104 DLT_CHOICE(RTAC_SERIAL
, "Schweitzer Engineering Laboratories RTAC packets"),
3105 DLT_CHOICE(BLUETOOTH_LE_LL
, "Bluetooth Low Energy air interface"),
3106 DLT_CHOICE(NETLINK
, "Linux netlink"),
3107 DLT_CHOICE(BLUETOOTH_LINUX_MONITOR
, "Bluetooth Linux Monitor"),
3108 DLT_CHOICE(BLUETOOTH_BREDR_BB
, "Bluetooth Basic Rate/Enhanced Data Rate baseband packets"),
3109 DLT_CHOICE(BLUETOOTH_LE_LL_WITH_PHDR
, "Bluetooth Low Energy air interface with pseudo-header"),
3110 DLT_CHOICE(PROFIBUS_DL
, "PROFIBUS data link layer"),
3111 DLT_CHOICE(PKTAP
, "Apple DLT_PKTAP"),
3112 DLT_CHOICE(EPON
, "Ethernet with 802.3 Clause 65 EPON preamble"),
3113 DLT_CHOICE(IPMI_HPM_2
, "IPMI trace packets"),
3114 DLT_CHOICE(ZWAVE_R1_R2
, "Z-Wave RF profile R1 and R2 packets"),
3115 DLT_CHOICE(ZWAVE_R3
, "Z-Wave RF profile R3 packets"),
3116 DLT_CHOICE(WATTSTOPPER_DLM
, "WattStopper Digital Lighting Management (DLM) and Legrand Nitoo Open protocol"),
3117 DLT_CHOICE(ISO_14443
, "ISO 14443 messages"),
3118 DLT_CHOICE(RDS
, "IEC 62106 Radio Data System groups"),
3119 DLT_CHOICE(USB_DARWIN
, "USB with Darwin header"),
3120 DLT_CHOICE(OPENFLOW
, "OpenBSD DLT_OPENFLOW"),
3121 DLT_CHOICE(SDLC
, "IBM SDLC frames"),
3122 DLT_CHOICE(TI_LLN_SNIFFER
, "TI LLN sniffer frames"),
3123 DLT_CHOICE(VSOCK
, "Linux vsock"),
3124 DLT_CHOICE(NORDIC_BLE
, "Nordic Semiconductor Bluetooth LE sniffer frames"),
3125 DLT_CHOICE(DOCSIS31_XRA31
, "Excentis XRA-31 DOCSIS 3.1 RF sniffer frames"),
3126 DLT_CHOICE(ETHERNET_MPACKET
, "802.3br mPackets"),
3127 DLT_CHOICE(DISPLAYPORT_AUX
, "DisplayPort AUX channel monitoring data"),
3128 DLT_CHOICE(LINUX_SLL2
, "Linux cooked v2"),
3129 DLT_CHOICE(OPENVIZSLA
, "OpenVizsla USB"),
3130 DLT_CHOICE(EBHSCR
, "Elektrobit High Speed Capture and Replay (EBHSCR)"),
3131 DLT_CHOICE(VPP_DISPATCH
, "VPP graph dispatch tracer"),
3132 DLT_CHOICE(DSA_TAG_BRCM
, "Broadcom tag"),
3133 DLT_CHOICE(DSA_TAG_BRCM_PREPEND
, "Broadcom tag (prepended)"),
3134 DLT_CHOICE(IEEE802_15_4_TAP
, "IEEE 802.15.4 with pseudo-header"),
3135 DLT_CHOICE(DSA_TAG_DSA
, "Marvell DSA"),
3136 DLT_CHOICE(DSA_TAG_EDSA
, "Marvell EDSA"),
3137 DLT_CHOICE(ELEE
, "ELEE lawful intercept packets"),
3138 DLT_CHOICE(Z_WAVE_SERIAL
, "Z-Wave serial frames between host and chip"),
3139 DLT_CHOICE(USB_2_0
, "USB 2.0/1.1/1.0 as transmitted over the cable"),
3144 pcap_datalink_name_to_val(const char *name
)
3148 for (i
= 0; dlt_choices
[i
].name
!= NULL
; i
++) {
3149 if (pcap_strcasecmp(dlt_choices
[i
].name
, name
) == 0)
3150 return (dlt_choices
[i
].dlt
);
3156 pcap_datalink_val_to_name(int dlt
)
3160 for (i
= 0; dlt_choices
[i
].name
!= NULL
; i
++) {
3161 if (dlt_choices
[i
].dlt
== dlt
)
3162 return (dlt_choices
[i
].name
);
3168 pcap_datalink_val_to_description(int dlt
)
3172 for (i
= 0; dlt_choices
[i
].name
!= NULL
; i
++) {
3173 if (dlt_choices
[i
].dlt
== dlt
)
3174 return (dlt_choices
[i
].description
);
3180 pcap_datalink_val_to_description_or_dlt(int dlt
)
3182 static char unkbuf
[40];
3183 const char *description
;
3185 description
= pcap_datalink_val_to_description(dlt
);
3186 if (description
!= NULL
) {
3189 (void)pcap_snprintf(unkbuf
, sizeof(unkbuf
), "DLT %u", dlt
);
3194 struct tstamp_type_choice
{
3196 const char *description
;
3200 static struct tstamp_type_choice tstamp_type_choices
[] = {
3201 { "host", "Host", PCAP_TSTAMP_HOST
},
3202 { "host_lowprec", "Host, low precision", PCAP_TSTAMP_HOST_LOWPREC
},
3203 { "host_hiprec", "Host, high precision", PCAP_TSTAMP_HOST_HIPREC
},
3204 { "adapter", "Adapter", PCAP_TSTAMP_ADAPTER
},
3205 { "adapter_unsynced", "Adapter, not synced with system time", PCAP_TSTAMP_ADAPTER_UNSYNCED
},
3210 pcap_tstamp_type_name_to_val(const char *name
)
3214 for (i
= 0; tstamp_type_choices
[i
].name
!= NULL
; i
++) {
3215 if (pcap_strcasecmp(tstamp_type_choices
[i
].name
, name
) == 0)
3216 return (tstamp_type_choices
[i
].type
);
3218 return (PCAP_ERROR
);
3222 pcap_tstamp_type_val_to_name(int tstamp_type
)
3226 for (i
= 0; tstamp_type_choices
[i
].name
!= NULL
; i
++) {
3227 if (tstamp_type_choices
[i
].type
== tstamp_type
)
3228 return (tstamp_type_choices
[i
].name
);
3234 pcap_tstamp_type_val_to_description(int tstamp_type
)
3238 for (i
= 0; tstamp_type_choices
[i
].name
!= NULL
; i
++) {
3239 if (tstamp_type_choices
[i
].type
== tstamp_type
)
3240 return (tstamp_type_choices
[i
].description
);
3246 pcap_snapshot(pcap_t
*p
)
3249 return (PCAP_ERROR_NOT_ACTIVATED
);
3250 return (p
->snapshot
);
3254 pcap_is_swapped(pcap_t
*p
)
3257 return (PCAP_ERROR_NOT_ACTIVATED
);
3258 return (p
->swapped
);
3262 pcap_major_version(pcap_t
*p
)
3265 return (PCAP_ERROR_NOT_ACTIVATED
);
3266 return (p
->version_major
);
3270 pcap_minor_version(pcap_t
*p
)
3273 return (PCAP_ERROR_NOT_ACTIVATED
);
3274 return (p
->version_minor
);
3278 pcap_bufsize(pcap_t
*p
)
3281 return (PCAP_ERROR_NOT_ACTIVATED
);
3282 return (p
->bufsize
);
3286 pcap_file(pcap_t
*p
)
3292 pcap_fileno(pcap_t
*p
)
3297 if (p
->handle
!= INVALID_HANDLE_VALUE
)
3298 return ((int)(DWORD
)p
->handle
);
3300 return (PCAP_ERROR
);
3304 #if !defined(_WIN32) && !defined(MSDOS)
3306 pcap_get_selectable_fd(pcap_t
*p
)
3308 return (p
->selectable_fd
);
3312 pcap_get_required_select_timeout(pcap_t
*p
)
3314 return (p
->required_select_timeout
);
3319 pcap_perror(pcap_t
*p
, const char *prefix
)
3321 fprintf(stderr
, "%s: %s\n", prefix
, p
->errbuf
);
3325 pcap_geterr(pcap_t
*p
)
3331 pcap_getnonblock(pcap_t
*p
, char *errbuf
)
3335 ret
= p
->getnonblock_op(p
);
3338 * The get nonblock operation sets p->errbuf; this
3339 * function *shouldn't* have had a separate errbuf
3340 * argument, as it didn't need one, but I goofed
3343 * We copy the error message to errbuf, so callers
3344 * can find it in either place.
3346 pcap_strlcpy(errbuf
, p
->errbuf
, PCAP_ERRBUF_SIZE
);
3352 * Get the current non-blocking mode setting, under the assumption that
3353 * it's just the standard POSIX non-blocking flag.
3355 #if !defined(_WIN32) && !defined(MSDOS)
3357 pcap_getnonblock_fd(pcap_t
*p
)
3361 fdflags
= fcntl(p
->fd
, F_GETFL
, 0);
3362 if (fdflags
== -1) {
3363 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3367 if (fdflags
& O_NONBLOCK
)
3375 pcap_setnonblock(pcap_t
*p
, int nonblock
, char *errbuf
)
3379 ret
= p
->setnonblock_op(p
, nonblock
);
3382 * The set nonblock operation sets p->errbuf; this
3383 * function *shouldn't* have had a separate errbuf
3384 * argument, as it didn't need one, but I goofed
3387 * We copy the error message to errbuf, so callers
3388 * can find it in either place.
3390 pcap_strlcpy(errbuf
, p
->errbuf
, PCAP_ERRBUF_SIZE
);
3395 #if !defined(_WIN32) && !defined(MSDOS)
3397 * Set non-blocking mode, under the assumption that it's just the
3398 * standard POSIX non-blocking flag. (This can be called by the
3399 * per-platform non-blocking-mode routine if that routine also
3400 * needs to do some additional work.)
3403 pcap_setnonblock_fd(pcap_t
*p
, int nonblock
)
3407 fdflags
= fcntl(p
->fd
, F_GETFL
, 0);
3408 if (fdflags
== -1) {
3409 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3414 fdflags
|= O_NONBLOCK
;
3416 fdflags
&= ~O_NONBLOCK
;
3417 if (fcntl(p
->fd
, F_SETFL
, fdflags
) == -1) {
3418 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3427 * Generate error strings for PCAP_ERROR_ and PCAP_WARNING_ values.
3430 pcap_statustostr(int errnum
)
3432 static char ebuf
[15+10+1];
3437 return("Generic warning");
3439 case PCAP_WARNING_TSTAMP_TYPE_NOTSUP
:
3440 return ("That type of time stamp is not supported by that device");
3442 case PCAP_WARNING_PROMISC_NOTSUP
:
3443 return ("That device doesn't support promiscuous mode");
3446 return("Generic error");
3448 case PCAP_ERROR_BREAK
:
3449 return("Loop terminated by pcap_breakloop");
3451 case PCAP_ERROR_NOT_ACTIVATED
:
3452 return("The pcap_t has not been activated");
3454 case PCAP_ERROR_ACTIVATED
:
3455 return ("The setting can't be changed after the pcap_t is activated");
3457 case PCAP_ERROR_NO_SUCH_DEVICE
:
3458 return ("No such device exists");
3460 case PCAP_ERROR_RFMON_NOTSUP
:
3461 return ("That device doesn't support monitor mode");
3463 case PCAP_ERROR_NOT_RFMON
:
3464 return ("That operation is supported only in monitor mode");
3466 case PCAP_ERROR_PERM_DENIED
:
3467 return ("You don't have permission to capture on that device");
3469 case PCAP_ERROR_IFACE_NOT_UP
:
3470 return ("That device is not up");
3472 case PCAP_ERROR_CANTSET_TSTAMP_TYPE
:
3473 return ("That device doesn't support setting the time stamp type");
3475 case PCAP_ERROR_PROMISC_PERM_DENIED
:
3476 return ("You don't have permission to capture in promiscuous mode on that device");
3478 case PCAP_ERROR_TSTAMP_PRECISION_NOTSUP
:
3479 return ("That device doesn't support that time stamp precision");
3481 (void)pcap_snprintf(ebuf
, sizeof ebuf
, "Unknown error: %d", errnum
);
3486 * Not all systems have strerror().
3489 pcap_strerror(int errnum
)
3491 #ifdef HAVE_STRERROR
3493 static char errbuf
[PCAP_ERRBUF_SIZE
];
3494 errno_t err
= strerror_s(errbuf
, PCAP_ERRBUF_SIZE
, errnum
);
3496 if (err
!= 0) /* err = 0 if successful */
3497 pcap_strlcpy(errbuf
, "strerror_s() error", PCAP_ERRBUF_SIZE
);
3500 return (strerror(errnum
));
3503 extern int sys_nerr
;
3504 extern const char *const sys_errlist
[];
3505 static char errbuf
[PCAP_ERRBUF_SIZE
];
3507 if ((unsigned int)errnum
< sys_nerr
)
3508 return ((char *)sys_errlist
[errnum
]);
3509 (void)pcap_snprintf(errbuf
, sizeof errbuf
, "Unknown error: %d", errnum
);
3515 pcap_setfilter(pcap_t
*p
, struct bpf_program
*fp
)
3517 return (p
->setfilter_op(p
, fp
));
3521 * Set direction flag, which controls whether we accept only incoming
3522 * packets, only outgoing packets, or both.
3523 * Note that, depending on the platform, some or all direction arguments
3524 * might not be supported.
3527 pcap_setdirection(pcap_t
*p
, pcap_direction_t d
)
3529 if (p
->setdirection_op
== NULL
) {
3530 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3531 "Setting direction is not implemented on this platform");
3534 return (p
->setdirection_op(p
, d
));
3538 pcap_stats(pcap_t
*p
, struct pcap_stat
*ps
)
3540 return (p
->stats_op(p
, ps
));
3545 pcap_stats_ex(pcap_t
*p
, int *pcap_stat_size
)
3547 return (p
->stats_ex_op(p
, pcap_stat_size
));
3551 pcap_setbuff(pcap_t
*p
, int dim
)
3553 return (p
->setbuff_op(p
, dim
));
3557 pcap_setmode(pcap_t
*p
, int mode
)
3559 return (p
->setmode_op(p
, mode
));
3563 pcap_setmintocopy(pcap_t
*p
, int size
)
3565 return (p
->setmintocopy_op(p
, size
));
3569 pcap_getevent(pcap_t
*p
)
3571 return (p
->getevent_op(p
));
3575 pcap_oid_get_request(pcap_t
*p
, bpf_u_int32 oid
, void *data
, size_t *lenp
)
3577 return (p
->oid_get_request_op(p
, oid
, data
, lenp
));
3581 pcap_oid_set_request(pcap_t
*p
, bpf_u_int32 oid
, const void *data
, size_t *lenp
)
3583 return (p
->oid_set_request_op(p
, oid
, data
, lenp
));
3587 pcap_sendqueue_alloc(u_int memsize
)
3589 pcap_send_queue
*tqueue
;
3591 /* Allocate the queue */
3592 tqueue
= (pcap_send_queue
*)malloc(sizeof(pcap_send_queue
));
3593 if (tqueue
== NULL
){
3597 /* Allocate the buffer */
3598 tqueue
->buffer
= (char *)malloc(memsize
);
3599 if (tqueue
->buffer
== NULL
) {
3604 tqueue
->maxlen
= memsize
;
3611 pcap_sendqueue_destroy(pcap_send_queue
*queue
)
3613 free(queue
->buffer
);
3618 pcap_sendqueue_queue(pcap_send_queue
*queue
, const struct pcap_pkthdr
*pkt_header
, const u_char
*pkt_data
)
3620 if (queue
->len
+ sizeof(struct pcap_pkthdr
) + pkt_header
->caplen
> queue
->maxlen
){
3624 /* Copy the pcap_pkthdr header*/
3625 memcpy(queue
->buffer
+ queue
->len
, pkt_header
, sizeof(struct pcap_pkthdr
));
3626 queue
->len
+= sizeof(struct pcap_pkthdr
);
3628 /* copy the packet */
3629 memcpy(queue
->buffer
+ queue
->len
, pkt_data
, pkt_header
->caplen
);
3630 queue
->len
+= pkt_header
->caplen
;
3636 pcap_sendqueue_transmit(pcap_t
*p
, pcap_send_queue
*queue
, int sync
)
3638 return (p
->sendqueue_transmit_op(p
, queue
, sync
));
3642 pcap_setuserbuffer(pcap_t
*p
, int size
)
3644 return (p
->setuserbuffer_op(p
, size
));
3648 pcap_live_dump(pcap_t
*p
, char *filename
, int maxsize
, int maxpacks
)
3650 return (p
->live_dump_op(p
, filename
, maxsize
, maxpacks
));
3654 pcap_live_dump_ended(pcap_t
*p
, int sync
)
3656 return (p
->live_dump_ended_op(p
, sync
));
3660 pcap_get_airpcap_handle(pcap_t
*p
)
3662 PAirpcapHandle handle
;
3664 handle
= p
->get_airpcap_handle_op(p
);
3665 if (handle
== NULL
) {
3666 (void)pcap_snprintf(p
->errbuf
, sizeof(p
->errbuf
),
3667 "This isn't an AirPcap device");
3674 * On some platforms, we need to clean up promiscuous or monitor mode
3675 * when we close a device - and we want that to happen even if the
3676 * application just exits without explicitl closing devices.
3677 * On those platforms, we need to register a "close all the pcaps"
3678 * routine to be called when we exit, and need to maintain a list of
3679 * pcaps that need to be closed to clean up modes.
3681 * XXX - not thread-safe.
3685 * List of pcaps on which we've done something that needs to be
3687 * If there are any such pcaps, we arrange to call "pcap_close_all()"
3688 * when we exit, and have it close all of them.
3690 static struct pcap
*pcaps_to_close
;
3693 * TRUE if we've already called "atexit()" to cause "pcap_close_all()" to
3694 * be called on exit.
3696 static int did_atexit
;
3699 pcap_close_all(void)
3701 struct pcap
*handle
;
3703 while ((handle
= pcaps_to_close
) != NULL
)
3708 pcap_do_addexit(pcap_t
*p
)
3711 * If we haven't already done so, arrange to have
3712 * "pcap_close_all()" called when we exit.
3715 if (atexit(pcap_close_all
) != 0) {
3717 * "atexit()" failed; let our caller know.
3719 pcap_strlcpy(p
->errbuf
, "atexit failed", PCAP_ERRBUF_SIZE
);
3728 pcap_add_to_pcaps_to_close(pcap_t
*p
)
3730 p
->next
= pcaps_to_close
;
3735 pcap_remove_from_pcaps_to_close(pcap_t
*p
)
3737 pcap_t
*pc
, *prevpc
;
3739 for (pc
= pcaps_to_close
, prevpc
= NULL
; pc
!= NULL
;
3740 prevpc
= pc
, pc
= pc
->next
) {
3743 * Found it. Remove it from the list.
3745 if (prevpc
== NULL
) {
3747 * It was at the head of the list.
3749 pcaps_to_close
= pc
->next
;
3752 * It was in the middle of the list.
3754 prevpc
->next
= pc
->next
;
3762 pcap_breakloop_common(pcap_t
*p
)
3769 pcap_cleanup_live_common(pcap_t
*p
)
3771 if (p
->buffer
!= NULL
) {
3775 if (p
->dlt_list
!= NULL
) {
3780 if (p
->tstamp_type_list
!= NULL
) {
3781 free(p
->tstamp_type_list
);
3782 p
->tstamp_type_list
= NULL
;
3783 p
->tstamp_type_count
= 0;
3785 if (p
->tstamp_precision_list
!= NULL
) {
3786 free(p
->tstamp_precision_list
);
3787 p
->tstamp_precision_list
= NULL
;
3788 p
->tstamp_precision_count
= 0;
3790 pcap_freecode(&p
->fcode
);
3791 #if !defined(_WIN32) && !defined(MSDOS)
3796 p
->selectable_fd
= -1;
3801 * API compatible with WinPcap's "send a packet" routine - returns -1
3802 * on error, 0 otherwise.
3804 * XXX - what if we get a short write?
3807 pcap_sendpacket(pcap_t
*p
, const u_char
*buf
, int size
)
3810 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3811 errno
, "The number of bytes to be sent must be positive");
3812 return (PCAP_ERROR
);
3815 if (p
->inject_op(p
, buf
, size
) == -1)
3821 * API compatible with OpenBSD's "send a packet" routine - returns -1 on
3822 * error, number of bytes written otherwise.
3825 pcap_inject(pcap_t
*p
, const void *buf
, size_t size
)
3828 * We return the number of bytes written, so the number of
3829 * bytes to write must fit in an int.
3831 if (size
> INT_MAX
) {
3832 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3833 errno
, "More than %d bytes cannot be injected", INT_MAX
);
3834 return (PCAP_ERROR
);
3838 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3839 errno
, "The number of bytes to be injected must not be zero");
3840 return (PCAP_ERROR
);
3843 return (p
->inject_op(p
, buf
, (int)size
));
3847 pcap_close(pcap_t
*p
)
3849 if (p
->opt
.device
!= NULL
)
3850 free(p
->opt
.device
);
3856 * Given a BPF program, a pcap_pkthdr structure for a packet, and the raw
3857 * data for the packet, check whether the packet passes the filter.
3858 * Returns the return value of the filter program, which will be zero if
3859 * the packet doesn't pass and non-zero if the packet does pass.
3862 pcap_offline_filter(const struct bpf_program
*fp
, const struct pcap_pkthdr
*h
,
3865 const struct bpf_insn
*fcode
= fp
->bf_insns
;
3868 return (pcap_filter(fcode
, pkt
, h
->len
, h
->caplen
));
3874 pcap_can_set_rfmon_dead(pcap_t
*p
)
3876 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3877 "Rfmon mode doesn't apply on a pcap_open_dead pcap_t");
3878 return (PCAP_ERROR
);
3882 pcap_read_dead(pcap_t
*p
, int cnt _U_
, pcap_handler callback _U_
,
3885 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3886 "Packets aren't available from a pcap_open_dead pcap_t");
3891 pcap_inject_dead(pcap_t
*p
, const void *buf _U_
, int size _U_
)
3893 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3894 "Packets can't be sent on a pcap_open_dead pcap_t");
3899 pcap_setfilter_dead(pcap_t
*p
, struct bpf_program
*fp _U_
)
3901 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3902 "A filter cannot be set on a pcap_open_dead pcap_t");
3907 pcap_setdirection_dead(pcap_t
*p
, pcap_direction_t d _U_
)
3909 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3910 "The packet direction cannot be set on a pcap_open_dead pcap_t");
3915 pcap_set_datalink_dead(pcap_t
*p
, int dlt _U_
)
3917 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3918 "The link-layer header type cannot be set on a pcap_open_dead pcap_t");
3923 pcap_getnonblock_dead(pcap_t
*p
)
3925 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3926 "A pcap_open_dead pcap_t does not have a non-blocking mode setting");
3931 pcap_setnonblock_dead(pcap_t
*p
, int nonblock _U_
)
3933 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3934 "A pcap_open_dead pcap_t does not have a non-blocking mode setting");
3939 pcap_stats_dead(pcap_t
*p
, struct pcap_stat
*ps _U_
)
3941 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3942 "Statistics aren't available from a pcap_open_dead pcap_t");
3948 pcap_stats_ex_dead(pcap_t
*p
, int *pcap_stat_size _U_
)
3950 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3951 "Statistics aren't available from a pcap_open_dead pcap_t");
3956 pcap_setbuff_dead(pcap_t
*p
, int dim
)
3958 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3959 "The kernel buffer size cannot be set on a pcap_open_dead pcap_t");
3964 pcap_setmode_dead(pcap_t
*p
, int mode
)
3966 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3967 "impossible to set mode on a pcap_open_dead pcap_t");
3972 pcap_setmintocopy_dead(pcap_t
*p
, int size
)
3974 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3975 "The mintocopy parameter cannot be set on a pcap_open_dead pcap_t");
3980 pcap_getevent_dead(pcap_t
*p
)
3982 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3983 "A pcap_open_dead pcap_t has no event handle");
3984 return (INVALID_HANDLE_VALUE
);
3988 pcap_oid_get_request_dead(pcap_t
*p
, bpf_u_int32 oid _U_
, void *data _U_
,
3991 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
3992 "An OID get request cannot be performed on a pcap_open_dead pcap_t");
3993 return (PCAP_ERROR
);
3997 pcap_oid_set_request_dead(pcap_t
*p
, bpf_u_int32 oid _U_
, const void *data _U_
,
4000 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4001 "An OID set request cannot be performed on a pcap_open_dead pcap_t");
4002 return (PCAP_ERROR
);
4006 pcap_sendqueue_transmit_dead(pcap_t
*p
, pcap_send_queue
*queue
, int sync
)
4008 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4009 "Packets cannot be transmitted on a pcap_open_dead pcap_t");
4014 pcap_setuserbuffer_dead(pcap_t
*p
, int size
)
4016 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4017 "The user buffer cannot be set on a pcap_open_dead pcap_t");
4022 pcap_live_dump_dead(pcap_t
*p
, char *filename
, int maxsize
, int maxpacks
)
4024 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4025 "Live packet dumping cannot be performed on a pcap_open_dead pcap_t");
4030 pcap_live_dump_ended_dead(pcap_t
*p
, int sync
)
4032 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
4033 "Live packet dumping cannot be performed on a pcap_open_dead pcap_t");
4037 static PAirpcapHandle
4038 pcap_get_airpcap_handle_dead(pcap_t
*p
)
4045 pcap_cleanup_dead(pcap_t
*p _U_
)
4047 /* Nothing to do. */
4051 pcap_open_dead_with_tstamp_precision(int linktype
, int snaplen
, u_int precision
)
4055 switch (precision
) {
4057 case PCAP_TSTAMP_PRECISION_MICRO
:
4058 case PCAP_TSTAMP_PRECISION_NANO
:
4063 * This doesn't really matter, but we don't have any way
4064 * to report particular errors, so the only failure we
4065 * should have is a memory allocation failure. Just
4066 * pick microsecond precision.
4068 precision
= PCAP_TSTAMP_PRECISION_MICRO
;
4071 p
= malloc(sizeof(*p
));
4074 memset (p
, 0, sizeof(*p
));
4075 p
->snapshot
= snaplen
;
4076 p
->linktype
= linktype
;
4077 p
->opt
.tstamp_precision
= precision
;
4078 p
->can_set_rfmon_op
= pcap_can_set_rfmon_dead
;
4079 p
->read_op
= pcap_read_dead
;
4080 p
->inject_op
= pcap_inject_dead
;
4081 p
->setfilter_op
= pcap_setfilter_dead
;
4082 p
->setdirection_op
= pcap_setdirection_dead
;
4083 p
->set_datalink_op
= pcap_set_datalink_dead
;
4084 p
->getnonblock_op
= pcap_getnonblock_dead
;
4085 p
->setnonblock_op
= pcap_setnonblock_dead
;
4086 p
->stats_op
= pcap_stats_dead
;
4088 p
->stats_ex_op
= pcap_stats_ex_dead
;
4089 p
->setbuff_op
= pcap_setbuff_dead
;
4090 p
->setmode_op
= pcap_setmode_dead
;
4091 p
->setmintocopy_op
= pcap_setmintocopy_dead
;
4092 p
->getevent_op
= pcap_getevent_dead
;
4093 p
->oid_get_request_op
= pcap_oid_get_request_dead
;
4094 p
->oid_set_request_op
= pcap_oid_set_request_dead
;
4095 p
->sendqueue_transmit_op
= pcap_sendqueue_transmit_dead
;
4096 p
->setuserbuffer_op
= pcap_setuserbuffer_dead
;
4097 p
->live_dump_op
= pcap_live_dump_dead
;
4098 p
->live_dump_ended_op
= pcap_live_dump_ended_dead
;
4099 p
->get_airpcap_handle_op
= pcap_get_airpcap_handle_dead
;
4101 p
->cleanup_op
= pcap_cleanup_dead
;
4104 * A "dead" pcap_t never requires special BPF code generation.
4106 p
->bpf_codegen_flags
= 0;
4113 pcap_open_dead(int linktype
, int snaplen
)
4115 return (pcap_open_dead_with_tstamp_precision(linktype
, snaplen
,
4116 PCAP_TSTAMP_PRECISION_MICRO
));
4121 * Set the internal "debug printout" flag for the filter expression parser.
4122 * The code to print that stuff is present only if YYDEBUG is defined, so
4123 * the flag, and the routine to set it, are defined only if YYDEBUG is
4126 * This is intended for libpcap developers, not for general use.
4127 * If you want to set these in a program, you'll have to declare this
4128 * routine yourself, with the appropriate DLL import attribute on Windows;
4129 * it's not declared in any header file, and won't be declared in any
4130 * header file provided by libpcap.
4132 PCAP_API
void pcap_set_parser_debug(int value
);
4135 pcap_set_parser_debug(int value
)