Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
wtap.h
Go to the documentation of this file.
1
8
9#ifndef __WTAP_H__
10#define __WTAP_H__
11
12#include <wireshark.h>
13#include <time.h>
14#include <wsutil/array.h>
15#include <wsutil/buffer.h>
16#include <wsutil/nstime.h>
17#include <wsutil/inet_addr.h>
18#include <wsutil/file_compressed.h>
19#include "wtap_opttypes.h"
20
21#ifdef __cplusplus
22extern "C" {
23#endif /* __cplusplus */
24
25/* Encapsulation types. Choose names that truly reflect
26 * what is contained in the packet trace file.
27 *
28 * WTAP_ENCAP_PER_PACKET is a value passed to "wtap_dump_open()" or
29 * "wtap_dump_fdopen()" to indicate that there is no single encapsulation
30 * type for all packets in the file; this may cause those routines to
31 * fail if the capture file format being written can't support that.
32 * It's also returned by "wtap_file_encap()" for capture files that
33 * don't have a single encapsulation type for all packets in the file.
34 *
35 * WTAP_ENCAP_UNKNOWN is returned by "wtap_pcap_encap_to_wtap_encap()"
36 * if it's handed an unknown encapsulation. It is also used by file
37 * types for encapsulations which are unsupported by libwiretap.
38 *
39 * WTAP_ENCAP_NONE is an initial value used by file types like pcapng
40 * that do not have a single file level encapsulation type. If and when
41 * something that indicate encapsulation is read, the encapsulation will
42 * change (possibly to WTAP_ENCAP_PER_PACKET) and appropriate IDBs will
43 * be generated. If a file type uses this value, it MUST provide IDBs
44 * (possibly fake) when the encapsulation changes; otherwise, it should
45 * return WTAP_ENCAP_UNKNOWN so that attempts to write an output file
46 * without reading the entire input file first fail gracefully.
47 *
48 * WTAP_ENCAP_FDDI_BITSWAPPED is for FDDI captures on systems where the
49 * MAC addresses you get from the hardware are bit-swapped. Ideally,
50 * the driver would tell us that, but I know of none that do, so, for
51 * now, we base it on the machine on which we're *reading* the
52 * capture, rather than on the machine on which the capture was taken
53 * (they're probably likely to be the same). We assume that they're
54 * bit-swapped on everything except for systems running Ultrix, Alpha
55 * systems, and BSD/OS systems (that's what "tcpdump" does; I guess
56 * Digital decided to bit-swap addresses in the hardware or in the
57 * driver, and I guess BSDI bit-swapped them in the driver, given that
58 * BSD/OS generally runs on Boring Old PC's). If we create a wiretap
59 * save file format, we'd use the WTAP_ENCAP values to flag the
60 * encapsulation of a packet, so there we'd at least be able to base
61 * it on the machine on which the capture was taken.
62 *
63 * WTAP_ENCAP_LINUX_ATM_CLIP is the encapsulation you get with the
64 * ATM on Linux code from <http://linux-atm.sourceforge.net/>;
65 * that code adds a DLT_ATM_CLIP DLT_ code of 19, and that
66 * encapsulation isn't the same as the DLT_ATM_RFC1483 encapsulation
67 * presumably used on some BSD systems, which we turn into
68 * WTAP_ENCAP_ATM_RFC1483.
69 *
70 * WTAP_ENCAP_NULL corresponds to DLT_NULL from "libpcap". This
71 * corresponds to
72 *
73 * 1) PPP-over-HDLC encapsulation, at least with some versions
74 * of ISDN4BSD (but not the current ones, it appears, unless
75 * I've missed something);
76 *
77 * 2) a 4-byte header containing the AF_ address family, in
78 * the byte order of the machine that saved the capture,
79 * for the packet, as used on many BSD systems for the
80 * loopback device and some other devices, or a 4-byte header
81 * containing the AF_ address family in network byte order,
82 * as used on recent OpenBSD systems for the loopback device;
83 *
84 * 3) a 4-byte header containing 2 octets of 0 and an Ethernet
85 * type in the byte order from an Ethernet header, that being
86 * what older versions of "libpcap" on Linux turn the Ethernet
87 * header for loopback interfaces into (0.6.0 and later versions
88 * leave the Ethernet header alone and make it DLT_EN10MB). */
89#define WTAP_ENCAP_NONE -2
90#define WTAP_ENCAP_PER_PACKET -1
91#define WTAP_ENCAP_UNKNOWN 0
92#define WTAP_ENCAP_ETHERNET 1
93#define WTAP_ENCAP_TOKEN_RING 2
94#define WTAP_ENCAP_SLIP 3
95#define WTAP_ENCAP_PPP 4
96#define WTAP_ENCAP_FDDI 5
97#define WTAP_ENCAP_FDDI_BITSWAPPED 6
98#define WTAP_ENCAP_RAW_IP 7
99#define WTAP_ENCAP_ARCNET 8
100#define WTAP_ENCAP_ARCNET_LINUX 9
101#define WTAP_ENCAP_ATM_RFC1483 10
102#define WTAP_ENCAP_LINUX_ATM_CLIP 11
103#define WTAP_ENCAP_LAPB 12
104#define WTAP_ENCAP_ATM_PDUS 13
105#define WTAP_ENCAP_ATM_PDUS_UNTRUNCATED 14
106#define WTAP_ENCAP_NULL 15
107#define WTAP_ENCAP_ASCEND 16
108#define WTAP_ENCAP_ISDN 17
109#define WTAP_ENCAP_IP_OVER_FC 18
110#define WTAP_ENCAP_PPP_WITH_PHDR 19
111#define WTAP_ENCAP_IEEE_802_11 20
112#define WTAP_ENCAP_IEEE_802_11_PRISM 21
113#define WTAP_ENCAP_IEEE_802_11_WITH_RADIO 22
114#define WTAP_ENCAP_IEEE_802_11_RADIOTAP 23
115#define WTAP_ENCAP_IEEE_802_11_AVS 24
116#define WTAP_ENCAP_SLL 25
117#define WTAP_ENCAP_FRELAY 26
118#define WTAP_ENCAP_FRELAY_WITH_PHDR 27
119#define WTAP_ENCAP_CHDLC 28
120#define WTAP_ENCAP_CISCO_IOS 29
121#define WTAP_ENCAP_LOCALTALK 30
122#define WTAP_ENCAP_OLD_PFLOG 31
123#define WTAP_ENCAP_HHDLC 32
124#define WTAP_ENCAP_DOCSIS 33
125#define WTAP_ENCAP_COSINE 34
126#define WTAP_ENCAP_WFLEET_HDLC 35
127#define WTAP_ENCAP_SDLC 36
128#define WTAP_ENCAP_TZSP 37
129#define WTAP_ENCAP_ENC 38
130#define WTAP_ENCAP_PFLOG 39
131#define WTAP_ENCAP_CHDLC_WITH_PHDR 40
132#define WTAP_ENCAP_BLUETOOTH_H4 41
133#define WTAP_ENCAP_MTP2 42
134#define WTAP_ENCAP_MTP3 43
135#define WTAP_ENCAP_IRDA 44
136#define WTAP_ENCAP_USER0 45
137#define WTAP_ENCAP_USER1 46
138#define WTAP_ENCAP_USER2 47
139#define WTAP_ENCAP_USER3 48
140#define WTAP_ENCAP_USER4 49
141#define WTAP_ENCAP_USER5 50
142#define WTAP_ENCAP_USER6 51
143#define WTAP_ENCAP_USER7 52
144#define WTAP_ENCAP_USER8 53
145#define WTAP_ENCAP_USER9 54
146#define WTAP_ENCAP_USER10 55
147#define WTAP_ENCAP_USER11 56
148#define WTAP_ENCAP_USER12 57
149#define WTAP_ENCAP_USER13 58
150#define WTAP_ENCAP_USER14 59
151#define WTAP_ENCAP_USER15 60
152#define WTAP_ENCAP_SYMANTEC 61
153#define WTAP_ENCAP_APPLE_IP_OVER_IEEE1394 62
154#define WTAP_ENCAP_BACNET_MS_TP 63
155#define WTAP_ENCAP_NETTL_RAW_ICMP 64
156#define WTAP_ENCAP_NETTL_RAW_ICMPV6 65
157#define WTAP_ENCAP_GPRS_LLC 66
158#define WTAP_ENCAP_JUNIPER_ATM1 67
159#define WTAP_ENCAP_JUNIPER_ATM2 68
160#define WTAP_ENCAP_REDBACK 69
161#define WTAP_ENCAP_NETTL_RAW_IP 70
162#define WTAP_ENCAP_NETTL_ETHERNET 71
163#define WTAP_ENCAP_NETTL_TOKEN_RING 72
164#define WTAP_ENCAP_NETTL_FDDI 73
165#define WTAP_ENCAP_NETTL_UNKNOWN 74
166#define WTAP_ENCAP_MTP2_WITH_PHDR 75
167#define WTAP_ENCAP_JUNIPER_PPPOE 76
168#define WTAP_ENCAP_GCOM_TIE1 77
169#define WTAP_ENCAP_GCOM_SERIAL 78
170#define WTAP_ENCAP_NETTL_X25 79
171#define WTAP_ENCAP_K12 80
172#define WTAP_ENCAP_JUNIPER_MLPPP 81
173#define WTAP_ENCAP_JUNIPER_MLFR 82
174#define WTAP_ENCAP_JUNIPER_ETHER 83
175#define WTAP_ENCAP_JUNIPER_PPP 84
176#define WTAP_ENCAP_JUNIPER_FRELAY 85
177#define WTAP_ENCAP_JUNIPER_CHDLC 86
178#define WTAP_ENCAP_JUNIPER_GGSN 87
179#define WTAP_ENCAP_LINUX_LAPD 88
180#define WTAP_ENCAP_CATAPULT_DCT2000 89
181#define WTAP_ENCAP_BER 90
182#define WTAP_ENCAP_JUNIPER_VP 91
183#define WTAP_ENCAP_USB_FREEBSD 92
184#define WTAP_ENCAP_IEEE802_16_MAC_CPS 93
185#define WTAP_ENCAP_NETTL_RAW_TELNET 94
186#define WTAP_ENCAP_USB_LINUX 95
187#define WTAP_ENCAP_MPEG 96
188#define WTAP_ENCAP_PPI 97
189#define WTAP_ENCAP_ERF 98
190#define WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR 99
191#define WTAP_ENCAP_SITA 100
192#define WTAP_ENCAP_SCCP 101
193#define WTAP_ENCAP_BLUETOOTH_HCI 102 /*raw packets without a transport layer header e.g. H4*/
194#define WTAP_ENCAP_IPMB_KONTRON 103
195#define WTAP_ENCAP_IEEE802_15_4 104
196#define WTAP_ENCAP_X2E_XORAYA 105
197#define WTAP_ENCAP_FLEXRAY 106
198#define WTAP_ENCAP_LIN 107
199#define WTAP_ENCAP_MOST 108
200#define WTAP_ENCAP_CAN20B 109
201#define WTAP_ENCAP_LAYER1_EVENT 110
202#define WTAP_ENCAP_X2E_SERIAL 111
203#define WTAP_ENCAP_I2C_LINUX 112
204#define WTAP_ENCAP_IEEE802_15_4_NONASK_PHY 113
205#define WTAP_ENCAP_TNEF 114
206#define WTAP_ENCAP_USB_LINUX_MMAPPED 115
207#define WTAP_ENCAP_GSM_UM 116
208#define WTAP_ENCAP_DPNSS 117
209#define WTAP_ENCAP_PACKETLOGGER 118
210#define WTAP_ENCAP_NSTRACE_1_0 119
211#define WTAP_ENCAP_NSTRACE_2_0 120
212#define WTAP_ENCAP_FIBRE_CHANNEL_FC2 121
213#define WTAP_ENCAP_FIBRE_CHANNEL_FC2_WITH_FRAME_DELIMS 122
214#define WTAP_ENCAP_JPEG_JFIF 123 /* obsoleted by WTAP_ENCAP_MIME*/
215#define WTAP_ENCAP_IPNET 124
216#define WTAP_ENCAP_SOCKETCAN 125
217#define WTAP_ENCAP_IEEE_802_11_NETMON 126
218#define WTAP_ENCAP_IEEE802_15_4_NOFCS 127
219#define WTAP_ENCAP_RAW_IPFIX 128
220#define WTAP_ENCAP_RAW_IP4 129
221#define WTAP_ENCAP_RAW_IP6 130
222#define WTAP_ENCAP_LAPD 131
223#define WTAP_ENCAP_DVBCI 132
224#define WTAP_ENCAP_MUX27010 133
225#define WTAP_ENCAP_MIME 134
226#define WTAP_ENCAP_NETANALYZER 135
227#define WTAP_ENCAP_NETANALYZER_TRANSPARENT 136
228#define WTAP_ENCAP_IP_OVER_IB_SNOOP 137
229#define WTAP_ENCAP_MPEG_2_TS 138
230#define WTAP_ENCAP_PPP_ETHER 139
231#define WTAP_ENCAP_NFC_LLCP 140
232#define WTAP_ENCAP_NFLOG 141
233#define WTAP_ENCAP_V5_EF 142
234#define WTAP_ENCAP_BACNET_MS_TP_WITH_PHDR 143
235#define WTAP_ENCAP_IXVERIWAVE 144
236#define WTAP_ENCAP_SDH 145
237#define WTAP_ENCAP_DBUS 146
238#define WTAP_ENCAP_AX25_KISS 147
239#define WTAP_ENCAP_AX25 148
240#define WTAP_ENCAP_SCTP 149
241#define WTAP_ENCAP_INFINIBAND 150
242#define WTAP_ENCAP_JUNIPER_SVCS 151
243#define WTAP_ENCAP_USBPCAP 152
244#define WTAP_ENCAP_RTAC_SERIAL 153
245#define WTAP_ENCAP_BLUETOOTH_LE_LL 154
246#define WTAP_ENCAP_WIRESHARK_UPPER_PDU 155
247#define WTAP_ENCAP_STANAG_4607 156
248#define WTAP_ENCAP_STANAG_5066_D_PDU 157
249#define WTAP_ENCAP_NETLINK 158
250#define WTAP_ENCAP_BLUETOOTH_LINUX_MONITOR 159
251#define WTAP_ENCAP_BLUETOOTH_BREDR_BB 160
252#define WTAP_ENCAP_BLUETOOTH_LE_LL_WITH_PHDR 161
253#define WTAP_ENCAP_NSTRACE_3_0 162
254#define WTAP_ENCAP_LOGCAT 163
255#define WTAP_ENCAP_LOGCAT_BRIEF 164
256#define WTAP_ENCAP_LOGCAT_PROCESS 165
257#define WTAP_ENCAP_LOGCAT_TAG 166
258#define WTAP_ENCAP_LOGCAT_THREAD 167
259#define WTAP_ENCAP_LOGCAT_TIME 168
260#define WTAP_ENCAP_LOGCAT_THREADTIME 169
261#define WTAP_ENCAP_LOGCAT_LONG 170
262#define WTAP_ENCAP_PKTAP 171
263#define WTAP_ENCAP_EPON 172
264#define WTAP_ENCAP_IPMI_TRACE 173
265#define WTAP_ENCAP_LOOP 174
266#define WTAP_ENCAP_JSON 175
267#define WTAP_ENCAP_NSTRACE_3_5 176
268#define WTAP_ENCAP_ISO14443 177
269#define WTAP_ENCAP_GFP_T 178
270#define WTAP_ENCAP_GFP_F 179
271#define WTAP_ENCAP_IP_OVER_IB_PCAP 180
272#define WTAP_ENCAP_JUNIPER_VN 181
273#define WTAP_ENCAP_USB_DARWIN 182
274#define WTAP_ENCAP_LORATAP 183
275#define WTAP_ENCAP_3MB_ETHERNET 184
276#define WTAP_ENCAP_VSOCK 185
277#define WTAP_ENCAP_NORDIC_BLE 186
278#define WTAP_ENCAP_NETMON_NET_NETEVENT 187
279#define WTAP_ENCAP_NETMON_HEADER 188
280#define WTAP_ENCAP_NETMON_NET_FILTER 189
281#define WTAP_ENCAP_NETMON_NETWORK_INFO_EX 190
282#define WTAP_ENCAP_MA_WFP_CAPTURE_V4 191
283#define WTAP_ENCAP_MA_WFP_CAPTURE_V6 192
284#define WTAP_ENCAP_MA_WFP_CAPTURE_2V4 193
285#define WTAP_ENCAP_MA_WFP_CAPTURE_2V6 194
286#define WTAP_ENCAP_MA_WFP_CAPTURE_AUTH_V4 195
287#define WTAP_ENCAP_MA_WFP_CAPTURE_AUTH_V6 196
288#define WTAP_ENCAP_JUNIPER_ST 197
289#define WTAP_ENCAP_ETHERNET_MPACKET 198
290#define WTAP_ENCAP_DOCSIS31_XRA31 199
291#define WTAP_ENCAP_DPAUXMON 200
292#define WTAP_ENCAP_RUBY_MARSHAL 201
293#define WTAP_ENCAP_RFC7468 202
294#define WTAP_ENCAP_SYSTEMD_JOURNAL 203 /* Event, not a packet */
295#define WTAP_ENCAP_EBHSCR 204
296#define WTAP_ENCAP_VPP 205
297#define WTAP_ENCAP_IEEE802_15_4_TAP 206
298#define WTAP_ENCAP_LOG_3GPP 207
299#define WTAP_ENCAP_USB_2_0 208
300#define WTAP_ENCAP_MP4 209
301#define WTAP_ENCAP_SLL2 210
302#define WTAP_ENCAP_ZWAVE_SERIAL 211
303#define WTAP_ENCAP_ETW 212
304#define WTAP_ENCAP_ERI_ENB_LOG 213
305#define WTAP_ENCAP_ZBNCP 214
306#define WTAP_ENCAP_USB_2_0_LOW_SPEED 215
307#define WTAP_ENCAP_USB_2_0_FULL_SPEED 216
308#define WTAP_ENCAP_USB_2_0_HIGH_SPEED 217
309#define WTAP_ENCAP_AUTOSAR_DLT 218
310#define WTAP_ENCAP_AUERSWALD_LOG 219
311#define WTAP_ENCAP_ATSC_ALP 220
312#define WTAP_ENCAP_FIRA_UCI 221
313#define WTAP_ENCAP_SILABS_DEBUG_CHANNEL 222
314#define WTAP_ENCAP_MDB 223
315#define WTAP_ENCAP_EMS 224
316#define WTAP_ENCAP_DECT_NR 225
317#define WTAP_ENCAP_MMODULE 226
318#define WTAP_ENCAP_PROCMON 227
319#define WTAP_ENCAP_ZWAVE_TAP 228
320#define WTAP_ENCAP_DECT_NR_TAP 229
321#define WTAP_ENCAP_GSMTAP_UM 230
322
323/* After adding new item here, please also add new item to encap_table_base array */
324
325#define WTAP_NUM_ENCAP_TYPES wtap_get_num_encap_types()
326
327/* Value to be used as a file type/subtype value if the type is unknown */
328#define WTAP_FILE_TYPE_SUBTYPE_UNKNOWN -1
329
330/* timestamp precision (currently only these values are supported) */
331#define WTAP_TSPREC_UNKNOWN -2
332#define WTAP_TSPREC_PER_PACKET -1
333
334/*
335 * These values are the number of digits of precision after the integral part.
336 * They're the same as WS_TSPREC values; we define them here so that
337 * tools/make-enums.py sees them.
338 */
339#define WTAP_TSPREC_SEC 0
340#define WTAP_TSPREC_100_MSEC 1
341#define WTAP_TSPREC_DSEC 1
342#define WTAP_TSPREC_10_MSEC 2
343#define WTAP_TSPREC_CSEC 2
344#define WTAP_TSPREC_MSEC 3
345#define WTAP_TSPREC_100_USEC 4
346#define WTAP_TSPREC_10_USEC 5
347#define WTAP_TSPREC_USEC 6
348#define WTAP_TSPREC_100_NSEC 7
349#define WTAP_TSPREC_10_NSEC 8
350#define WTAP_TSPREC_NSEC 9
351/* if you add to the above, update wtap_tsprec_string() */
352
353/*
354 * Maximum packet sizes.
355 *
356 * For most link-layer types, we use 262144, which is currently
357 * libpcap's MAXIMUM_SNAPLEN.
358 *
359 * For WTAP_ENCAP_DBUS, the maximum is 128MiB, as per
360 *
361 * https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-messages
362 *
363 * For WTAP_ENCAP_EBHSCR, the maximum is 8MiB, as per
364 *
365 * https://www.elektrobit.com/ebhscr
366 *
367 * For WTAP_ENCAP_USBPCAP, the maximum is 128MiB, as per
368 *
369 * https://gitlab.com/wireshark/wireshark/-/issues/15985
370 *
371 * We don't want to write out files that specify a maximum packet size
372 * greater than 262144 if we don't have to, as software reading those
373 * files might allocate a buffer much larger than necessary, wasting memory.
374 */
375#define WTAP_MAX_PACKET_SIZE_STANDARD 262144U
376#define WTAP_MAX_PACKET_SIZE_USBPCAP (128U*1024U*1024U)
377#define WTAP_MAX_PACKET_SIZE_EBHSCR (32U*1024U*1024U)
378#define WTAP_MAX_PACKET_SIZE_DBUS (128U*1024U*1024U)
379
380/*
381 * "Pseudo-headers" are used to supply to the clients of wiretap
382 * per-packet information that's not part of the packet payload
383 * proper.
384 *
385 * NOTE: do not use pseudo-header structures to hold information
386 * used by the code to read a particular capture file type; to
387 * keep that sort of state information, define a private structure
388 * to hold that information in your code, and allocate one of those
389 * structures and set the "priv" member of the wth structure to
390 * point to the allocated structure in the "open" routine for that
391 * capture file type if the open succeeds. See various other capture
392 * file type handlers for examples of that.
393 */
394
395
399struct eth_phdr {
401};
402
403#define FROM_DCE 0x80
404
409 uint8_t flags;
410};
411
415struct isdn_phdr {
416 bool uton;
417 uint8_t channel;
418};
419
420/* Packet "pseudo-header" for ATM capture files.
421 Not all of this information is supplied by all capture types.
422 These originally came from the Network General (DOS-based)
423 ATM Sniffer file format, but we've added some additional
424 items. */
425
426/*
427 * Status bits.
428 */
429#define ATM_RAW_CELL 0x01 /* true if the packet is a single cell */
430#define ATM_NO_HEC 0x02 /* true if the cell has HEC stripped out */
431#define ATM_AAL2_NOPHDR 0x04 /* true if the AAL2 PDU has no pseudo-header */
432#define ATM_REASSEMBLY_ERROR 0x08 /* true if this is an incompletely-reassembled PDU */
433
434/*
435 * AAL types.
436 */
437#define AAL_UNKNOWN 0 /* AAL unknown */
438#define AAL_1 1 /* AAL1 */
439#define AAL_2 2 /* AAL2 */
440#define AAL_3_4 3 /* AAL3/4 */
441#define AAL_5 4 /* AAL5 */
442#define AAL_USER 5 /* User AAL */
443#define AAL_SIGNALLING 6 /* Signaling AAL */
444#define AAL_OAMCELL 7 /* OAM cell */
445
446/*
447 * Traffic types.
448 */
449#define TRAF_UNKNOWN 0 /* Unknown */
450#define TRAF_LLCMX 1 /* LLC multiplexed (RFC 1483) */
451#define TRAF_VCMX 2 /* VC multiplexed (RFC 1483) */
452#define TRAF_LANE 3 /* LAN Emulation */
453#define TRAF_ILMI 4 /* ILMI */
454#define TRAF_FR 5 /* Frame Relay */
455#define TRAF_SPANS 6 /* FORE SPANS */
456#define TRAF_IPSILON 7 /* Ipsilon */
457#define TRAF_UMTS_FP 8 /* UMTS Frame Protocol */
458#define TRAF_GPRS_NS 9 /* GPRS Network Services */
459#define TRAF_SSCOP 10 /* SSCOP */
460
461/*
462 * Traffic subtypes.
463 */
464#define TRAF_ST_UNKNOWN 0 /* Unknown */
465
466/*
467 * For TRAF_VCMX:
468 */
469#define TRAF_ST_VCMX_802_3_FCS 1 /* 802.3 with an FCS */
470#define TRAF_ST_VCMX_802_4_FCS 2 /* 802.4 with an FCS */
471#define TRAF_ST_VCMX_802_5_FCS 3 /* 802.5 with an FCS */
472#define TRAF_ST_VCMX_FDDI_FCS 4 /* FDDI with an FCS */
473#define TRAF_ST_VCMX_802_6_FCS 5 /* 802.6 with an FCS */
474#define TRAF_ST_VCMX_802_3 7 /* 802.3 without an FCS */
475#define TRAF_ST_VCMX_802_4 8 /* 802.4 without an FCS */
476#define TRAF_ST_VCMX_802_5 9 /* 802.5 without an FCS */
477#define TRAF_ST_VCMX_FDDI 10 /* FDDI without an FCS */
478#define TRAF_ST_VCMX_802_6 11 /* 802.6 without an FCS */
479#define TRAF_ST_VCMX_FRAGMENTS 12 /* Fragments */
480#define TRAF_ST_VCMX_BPDU 13 /* BPDU */
481
482/*
483 * For TRAF_LANE:
484 */
485#define TRAF_ST_LANE_LE_CTRL 1 /* LANE: LE Ctrl */
486#define TRAF_ST_LANE_802_3 2 /* LANE: 802.3 */
487#define TRAF_ST_LANE_802_5 3 /* LANE: 802.5 */
488#define TRAF_ST_LANE_802_3_MC 4 /* LANE: 802.3 multicast */
489#define TRAF_ST_LANE_802_5_MC 5 /* LANE: 802.5 multicast */
490
491/*
492 * For TRAF_IPSILON:
493 */
494#define TRAF_ST_IPSILON_FT0 1 /* Ipsilon: Flow Type 0 */
495#define TRAF_ST_IPSILON_FT1 2 /* Ipsilon: Flow Type 1 */
496#define TRAF_ST_IPSILON_FT2 3 /* Ipsilon: Flow Type 2 */
497
501struct atm_phdr {
502 uint32_t flags;
503 uint8_t aal;
504 uint8_t type;
505 uint8_t subtype;
506 uint16_t vpi;
507 uint16_t vci;
508 uint8_t aal2_cid;
509 uint16_t channel;
510 uint16_t cells;
511 uint16_t aal5t_u2u;
512 uint16_t aal5t_len;
513 uint32_t aal5t_chksum;
514};
515
516/* Packet "pseudo-header" for the output from "wandsession", "wannext",
517 "wandisplay", and similar commands on Lucent/Ascend access equipment. */
518
519#define ASCEND_MAX_STR_LEN 64
520
521#define ASCEND_PFX_WDS_X 1
522#define ASCEND_PFX_WDS_R 2
523#define ASCEND_PFX_WDD 3
524#define ASCEND_PFX_ISDN_X 4
525#define ASCEND_PFX_ISDN_R 5
526#define ASCEND_PFX_ETHER 6
527
532 uint16_t type;
533 char user[ASCEND_MAX_STR_LEN];
534 uint32_t sess;
535 char call_num[ASCEND_MAX_STR_LEN];
536 uint32_t chunk;
537 uint32_t task;
538};
539
543struct p2p_phdr {
544 bool sent;
545};
546
547/*
548 * Packet "pseudo-header" information for 802.11.
549 * Radio information is only present in this form for
550 * WTAP_ENCAP_IEEE_802_11_WITH_RADIO. This is used for file formats in
551 * which the radio information isn't provided as a pseudo-header in the
552 * packet data. It is also used by the dissectors for the pseudo-headers
553 * in the packet data to supply radio information, in a form independent
554 * of the file format and pseudo-header format, to the "802.11 radio"
555 * dissector.
556 *
557 * Signal strength, etc. information:
558 *
559 * Raw signal strength can be measured in milliwatts.
560 * It can also be represented as dBm, which is 10 times the log base 10
561 * of the signal strength in mW.
562 *
563 * The Receive Signal Strength Indicator is an integer in the range 0 to 255.
564 * The actual RSSI value for a given signal strength is dependent on the
565 * vendor (and perhaps on the adapter). The maximum possible RSSI value
566 * is also dependent on the vendor and perhaps the adapter.
567 *
568 * The signal strength can be represented as a percentage, which is 100
569 * times the ratio of the RSSI and the maximum RSSI.
570 */
571
572/*
573 * PHY types.
574 */
575#define PHDR_802_11_PHY_UNKNOWN 0 /* PHY not known */
576#define PHDR_802_11_PHY_11_FHSS 1 /* 802.11 FHSS */
577#define PHDR_802_11_PHY_11_IR 2 /* 802.11 IR */
578#define PHDR_802_11_PHY_11_DSSS 3 /* 802.11 DSSS */
579#define PHDR_802_11_PHY_11B 4 /* 802.11b */
580#define PHDR_802_11_PHY_11A 5 /* 802.11a */
581#define PHDR_802_11_PHY_11G 6 /* 802.11g */
582#define PHDR_802_11_PHY_11N 7 /* 802.11n */
583#define PHDR_802_11_PHY_11AC 8 /* 802.11ac */
584#define PHDR_802_11_PHY_11AD 9 /* 802.11ad */
585#define PHDR_802_11_PHY_11AH 10 /* 802.11ah */
586#define PHDR_802_11_PHY_11AX 11 /* 802.11ax */
587#define PHDR_802_11_PHY_11BE 12 /* 802.11be - EHT */
588
589/*
590 * PHY-specific information.
591 */
592
597 unsigned has_hop_set : 1;
598 unsigned has_hop_pattern : 1;
599 unsigned has_hop_index : 1;
600
601 uint8_t hop_set;
602 uint8_t hop_pattern;
603 uint8_t hop_index;
604};
605
606
611 unsigned has_short_preamble : 1;
612
614};
615
616
621 unsigned has_channel_type : 1;
622 unsigned has_turbo_type : 1;
623
624 unsigned channel_type : 2;
625 unsigned turbo_type : 2;
626};
627
628/*
629 * Channel type values.
630 */
631#define PHDR_802_11A_CHANNEL_TYPE_NORMAL 0
632#define PHDR_802_11A_CHANNEL_TYPE_HALF_CLOCKED 1
633#define PHDR_802_11A_CHANNEL_TYPE_QUARTER_CLOCKED 2
634
635/*
636 * "Turbo" is an Atheros proprietary extension with 40 MHz-wide channels.
637 * It can be dynamic or static.
638 *
639 * See
640 *
641 * http://wifi-insider.com/atheros/turbo.htm
642 */
643#define PHDR_802_11A_TURBO_TYPE_NORMAL 0
644#define PHDR_802_11A_TURBO_TYPE_TURBO 1 /* If we don't know whether it's static or dynamic */
645#define PHDR_802_11A_TURBO_TYPE_DYNAMIC_TURBO 2
646#define PHDR_802_11A_TURBO_TYPE_STATIC_TURBO 3
647
656 unsigned has_mode : 1;
657
658 uint32_t mode;
659};
660
661/*
662 * Mode values.
663 */
664#define PHDR_802_11G_MODE_NORMAL 0
665#define PHDR_802_11G_MODE_SUPER_G 1 /* Atheros Super G */
666
671 unsigned has_mcs_index : 1;
672 unsigned has_bandwidth : 1;
673 unsigned has_short_gi : 1;
674 unsigned has_greenfield : 1;
675 unsigned has_fec : 1;
676 unsigned has_stbc_streams : 1;
677 unsigned has_ness : 1;
678
679 uint16_t mcs_index;
680 unsigned bandwidth;
681 unsigned short_gi : 1;
682 unsigned greenfield : 1;
683 unsigned fec : 1;
684 unsigned stbc_streams : 2;
685 unsigned ness;
686};
687
688/*
689 * Bandwidth values; used for both 11n and 11ac.
690 */
691#define PHDR_802_11_BANDWIDTH_20_MHZ 0 /* 20 MHz */
692#define PHDR_802_11_BANDWIDTH_40_MHZ 1 /* 40 MHz */
693#define PHDR_802_11_BANDWIDTH_20_20L 2 /* 20 + 20L, 40 MHz */
694#define PHDR_802_11_BANDWIDTH_20_20U 3 /* 20 + 20U, 40 MHz */
695#define PHDR_802_11_BANDWIDTH_80_MHZ 4 /* 80 MHz */
696#define PHDR_802_11_BANDWIDTH_40_40L 5 /* 40 + 40L MHz, 80 MHz */
697#define PHDR_802_11_BANDWIDTH_40_40U 6 /* 40 + 40U MHz, 80 MHz */
698#define PHDR_802_11_BANDWIDTH_20LL 7 /* ???, 80 MHz */
699#define PHDR_802_11_BANDWIDTH_20LU 8 /* ???, 80 MHz */
700#define PHDR_802_11_BANDWIDTH_20UL 9 /* ???, 80 MHz */
701#define PHDR_802_11_BANDWIDTH_20UU 10 /* ???, 80 MHz */
702#define PHDR_802_11_BANDWIDTH_160_MHZ 11 /* 160 MHz */
703#define PHDR_802_11_BANDWIDTH_80_80L 12 /* 80 + 80L, 160 MHz */
704#define PHDR_802_11_BANDWIDTH_80_80U 13 /* 80 + 80U, 160 MHz */
705#define PHDR_802_11_BANDWIDTH_40LL 14 /* ???, 160 MHz */
706#define PHDR_802_11_BANDWIDTH_40LU 15 /* ???, 160 MHz */
707#define PHDR_802_11_BANDWIDTH_40UL 16 /* ???, 160 MHz */
708#define PHDR_802_11_BANDWIDTH_40UU 17 /* ???, 160 MHz */
709#define PHDR_802_11_BANDWIDTH_20LLL 18 /* ???, 160 MHz */
710#define PHDR_802_11_BANDWIDTH_20LLU 19 /* ???, 160 MHz */
711#define PHDR_802_11_BANDWIDTH_20LUL 20 /* ???, 160 MHz */
712#define PHDR_802_11_BANDWIDTH_20LUU 21 /* ???, 160 MHz */
713#define PHDR_802_11_BANDWIDTH_20ULL 22 /* ???, 160 MHz */
714#define PHDR_802_11_BANDWIDTH_20ULU 23 /* ???, 160 MHz */
715#define PHDR_802_11_BANDWIDTH_20UUL 24 /* ???, 160 MHz */
716#define PHDR_802_11_BANDWIDTH_20UUU 25 /* ???, 160 MHz */
717
722 unsigned has_stbc : 1;
724 unsigned has_short_gi : 1;
727 unsigned has_beamformed : 1;
728 unsigned has_bandwidth : 1;
729 unsigned has_fec : 1;
730 unsigned has_group_id : 1;
731 unsigned has_partial_aid : 1;
732
733 unsigned stbc : 1;
734 unsigned txop_ps_not_allowed : 1;
735 unsigned short_gi : 1;
738 unsigned beamformed : 1;
739 uint8_t bandwidth;
740 uint8_t mcs[4];
741 uint8_t nss[4];
742 uint8_t fec;
743 uint8_t group_id;
744 uint16_t partial_aid;
745};
746
747/*
748 * 802.11ad.
749 */
750
751/*
752 * Min and Max frequencies for 802.11ad and a macro for checking for 802.11ad.
753 */
754
755#define PHDR_802_11AD_MIN_FREQUENCY 57000
756#define PHDR_802_11AD_MAX_FREQUENCY 71000
757
758#define IS_80211AD(frequency) (((frequency) >= PHDR_802_11AD_MIN_FREQUENCY) &&\
759 ((frequency) <= PHDR_802_11AD_MAX_FREQUENCY))
760
765 unsigned has_mcs_index : 1;
766
767 uint8_t mcs;
768};
769
770
775 unsigned has_mcs_index : 1;
776 unsigned has_bwru : 1;
777 unsigned has_gi : 1;
778
779 uint8_t nsts : 4;
780 uint8_t mcs : 4;
781 uint8_t bwru : 4;
782 uint8_t gi : 2;
783};
784
785
790 unsigned sta_id_known : 1;
791 unsigned mcs_known : 1;
792 unsigned coding_known : 1;
793 unsigned rsv_known : 1;
794 unsigned nsts_known : 1;
795 unsigned bf_known : 1;
796 unsigned spatial_config_known : 1;
797 unsigned data_for_this_user : 1;
798 unsigned sta_id : 11;
799 unsigned ldpc_coding : 1;
800 unsigned mcs : 4;
801 unsigned nsts : 4;
802 unsigned rsv : 1;
803 unsigned beamform : 1;
804 unsigned rsv2 : 2;
805};
806
807#define PHDR_802_11BE_MAX_USERS 4
808
813 unsigned has_ru_mru_size : 1;
814 unsigned has_gi : 1;
815 unsigned has_bandwidth : 1;
816
817 uint8_t bandwidth;
818 uint8_t ru_mru_size : 4;
819 uint8_t gi : 2;
820 uint8_t num_users;
822};
823
824
846
852 unsigned decrypted : 1;
853 unsigned datapad : 1;
854 unsigned no_a_msdus : 1;
855 unsigned phy;
857
858 unsigned has_channel : 1;
859 unsigned has_frequency : 1;
860 unsigned has_data_rate : 1;
861 unsigned has_signal_percent : 1;
862 unsigned has_noise_percent : 1;
863 unsigned has_signal_dbm : 1;
864 unsigned has_noise_dbm : 1;
865 unsigned has_signal_db : 1;
866 unsigned has_noise_db : 1;
867 unsigned has_tsf_timestamp : 1;
868 unsigned has_aggregate_info : 1;
870
871 uint16_t channel;
872 uint32_t frequency;
873 uint16_t data_rate;
876 int8_t signal_dbm;
877 int8_t noise_dbm;
878 uint8_t signal_db;
879 uint8_t noise_db;
880 uint64_t tsf_timestamp;
882 uint32_t aggregate_id;
884};
885
886/*
887 * A-MPDU flags.
888 */
889#define PHDR_802_11_LAST_PART_OF_A_MPDU 0x00000001 /* this is the last part of an A-MPDU */
890#define PHDR_802_11_A_MPDU_DELIM_CRC_ERROR 0x00000002 /* delimiter CRC error after this part */
891
892/*
893 * Zero-length PSDU types.
894 */
895#define PHDR_802_11_SOUNDING_PSDU 0 /* sounding PPDU */
896#define PHDR_802_11_DATA_NOT_CAPTURED 1 /* data not captured, (e.g. multi-user PPDU) */
897#define PHDR_802_11_0_LENGTH_PSDU_VENDOR_SPECIFIC 0xff
898
899/* Packet "pseudo-header" for the output from CoSine L2 debug output. */
900
901#define COSINE_MAX_IF_NAME_LEN 128
902
903#define COSINE_ENCAP_TEST 1
904#define COSINE_ENCAP_PPoATM 2
905#define COSINE_ENCAP_PPoFR 3
906#define COSINE_ENCAP_ATM 4
907#define COSINE_ENCAP_FR 5
908#define COSINE_ENCAP_HDLC 6
909#define COSINE_ENCAP_PPP 7
910#define COSINE_ENCAP_ETH 8
911#define COSINE_ENCAP_UNKNOWN 99
912
913#define COSINE_DIR_TX 1
914#define COSINE_DIR_RX 2
915
920 uint8_t encap;
921 uint8_t direction;
922 char if_name[COSINE_MAX_IF_NAME_LEN];
923 uint16_t pro;
924 uint16_t off;
925 uint16_t pri;
926 uint16_t rm;
927 uint16_t err;
928};
929
930/* Packet "pseudo-header" for IrDA capture files. */
931
932/*
933 * Direction of the packet
934 */
935#define IRDA_INCOMING 0x0000
936#define IRDA_OUTGOING 0x0004
937
938/*
939 * "Inline" log messages produced by IrCOMM2k on Windows
940 */
941#define IRDA_LOG_MESSAGE 0x0100 /* log message */
942#define IRDA_MISSED_MSG 0x0101 /* missed log entry or frame */
943
944/*
945 * Differentiate between frames and log messages
946 */
947#define IRDA_CLASS_FRAME 0x0000
948#define IRDA_CLASS_LOG 0x0100
949#define IRDA_CLASS_MASK 0xFF00
950
954struct irda_phdr {
955 uint16_t pkttype;
956};
957
962 uint16_t subsys;
963 uint32_t devid;
964 uint32_t kind;
965 int32_t pid;
966 uint32_t uid;
967};
968
969/* Packet "pseudo-header" for MTP2 files. */
970
971#define MTP2_ANNEX_A_NOT_USED 0
972#define MTP2_ANNEX_A_USED 1
973#define MTP2_ANNEX_A_USED_UNKNOWN 2
974
978struct mtp2_phdr {
979 uint8_t sent;
980 uint8_t annex_a_used;
981 uint16_t link_number;
982};
983
991typedef union {
997 struct {
998 uint16_t vp;
999 uint16_t vc;
1000 uint16_t cid;
1001 } atm;
1002
1009 uint32_t ds0mask;
1011
1015struct k12_phdr {
1016 uint32_t input;
1017 const char *input_name;
1018 const char *stack_file;
1019 uint32_t input_type;
1021 uint8_t *extra_info;
1022 uint32_t extra_length;
1023 void *stuff;
1024};
1025
1026#define K12_PORT_DS0S 0x00010008
1027#define K12_PORT_DS1 0x00100008
1028#define K12_PORT_ATMPVC 0x01020000
1029
1038 uint16_t pkttype;
1039 uint8_t we_network;
1040};
1041
1050 union {
1052 struct atm_phdr atm;
1053 struct p2p_phdr p2p;
1054 } inner_pseudo_header;
1055
1056 int64_t seek_off;
1057 struct wtap *wth;
1058};
1059
1063struct erf_phdr {
1064 uint64_t ts;
1065 uint8_t type;
1066 uint8_t flags;
1067 uint16_t rlen;
1068 uint16_t lctr;
1069 uint16_t wlen;
1070};
1071
1075struct erf_ehdr {
1076 uint64_t ehdr;
1077};
1078
1079#define MAX_ERF_EHDR 16
1080
1085 uint8_t offset;
1086 uint8_t pad;
1087};
1088
1099
1101
1107 union {
1109 uint32_t mc_hdr;
1110 uint32_t aal2_hdr;
1112};
1113
1114#define SITA_FRAME_DIR_TXED (0x00) /* values of sita_phdr.flags */
1115#define SITA_FRAME_DIR_RXED (0x01)
1116#define SITA_FRAME_DIR (0x01) /* mask */
1117#define SITA_ERROR_NO_BUFFER (0x80)
1118
1119#define SITA_SIG_DSR (0x01) /* values of sita_phdr.signals */
1120#define SITA_SIG_DTR (0x02)
1121#define SITA_SIG_CTS (0x04)
1122#define SITA_SIG_RTS (0x08)
1123#define SITA_SIG_DCD (0x10)
1124#define SITA_SIG_UNDEF1 (0x20)
1125#define SITA_SIG_UNDEF2 (0x40)
1126#define SITA_SIG_UNDEF3 (0x80)
1127
1128#define SITA_ERROR_TX_UNDERRUN (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_TXED) */
1129#define SITA_ERROR_TX_CTS_LOST (0x02)
1130#define SITA_ERROR_TX_UART_ERROR (0x04)
1131#define SITA_ERROR_TX_RETX_LIMIT (0x08)
1132#define SITA_ERROR_TX_UNDEF1 (0x10)
1133#define SITA_ERROR_TX_UNDEF2 (0x20)
1134#define SITA_ERROR_TX_UNDEF3 (0x40)
1135#define SITA_ERROR_TX_UNDEF4 (0x80)
1136
1137#define SITA_ERROR_RX_FRAMING (0x01) /* values of sita_phdr.errors1 (if SITA_FRAME_DIR_RXED) */
1138#define SITA_ERROR_RX_PARITY (0x02)
1139#define SITA_ERROR_RX_COLLISION (0x04)
1140#define SITA_ERROR_RX_FRAME_LONG (0x08)
1141#define SITA_ERROR_RX_FRAME_SHORT (0x10)
1142#define SITA_ERROR_RX_UNDEF1 (0x20)
1143#define SITA_ERROR_RX_UNDEF2 (0x40)
1144#define SITA_ERROR_RX_UNDEF3 (0x80)
1145
1146#define SITA_ERROR_RX_NONOCTET_ALIGNED (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_RXED) */
1147#define SITA_ERROR_RX_ABORT (0x02)
1148#define SITA_ERROR_RX_CD_LOST (0x04)
1149#define SITA_ERROR_RX_DPLL (0x08)
1150#define SITA_ERROR_RX_OVERRUN (0x10)
1151#define SITA_ERROR_RX_FRAME_LEN_VIOL (0x20)
1152#define SITA_ERROR_RX_CRC (0x40)
1153#define SITA_ERROR_RX_BREAK (0x80)
1154
1155#define SITA_PROTO_UNUSED (0x00) /* values of sita_phdr.proto */
1156#define SITA_PROTO_BOP_LAPB (0x01)
1157#define SITA_PROTO_ETHERNET (0x02)
1158#define SITA_PROTO_ASYNC_INTIO (0x03)
1159#define SITA_PROTO_ASYNC_BLKIO (0x04)
1160#define SITA_PROTO_ALC (0x05)
1161#define SITA_PROTO_UTS (0x06)
1162#define SITA_PROTO_PPP_HDLC (0x07)
1163#define SITA_PROTO_SDLC (0x08)
1164#define SITA_PROTO_TOKENRING (0x09)
1165#define SITA_PROTO_I2C (0x10)
1166#define SITA_PROTO_DPM_LINK (0x11)
1167#define SITA_PROTO_BOP_FRL (0x12)
1168
1173 uint8_t sita_flags;
1177 uint8_t sita_proto;
1178};
1179
1184 bool sent;
1185 uint32_t channel;
1186};
1187
1188#define BTHCI_CHANNEL_COMMAND 1
1189#define BTHCI_CHANNEL_ACL 2
1190#define BTHCI_CHANNEL_SCO 3
1191#define BTHCI_CHANNEL_EVENT 4
1192#define BTHCI_CHANNEL_ISO 5
1193
1198 uint16_t adapter_id;
1199 uint16_t opcode;
1200};
1201
1206 bool uton;
1207};
1208
1212struct i2c_phdr {
1213 uint8_t is_event;
1214 uint8_t bus;
1215 uint32_t flags;
1216};
1217
1222 bool uplink;
1223 uint8_t channel;
1224 /* The following are only populated for downlink */
1225 uint8_t bsic;
1226 uint16_t arfcn;
1227 uint32_t tdma_frame;
1228 uint8_t error;
1229 uint16_t timeshift;
1230};
1231
1232#define GSM_UM_CHANNEL_UNKNOWN 0
1233#define GSM_UM_CHANNEL_BCCH 1
1234#define GSM_UM_CHANNEL_SDCCH 2
1235#define GSM_UM_CHANNEL_SACCH 3
1236#define GSM_UM_CHANNEL_FACCH 4
1237#define GSM_UM_CHANNEL_CCCH 5
1238#define GSM_UM_CHANNEL_RACH 6
1239#define GSM_UM_CHANNEL_AGCH 7
1240#define GSM_UM_CHANNEL_PCH 8
1241
1266
1271 struct eth_phdr eth;
1272 uint8_t stuff[4];
1273};
1274
1275#define LLCP_PHDR_FLAG_SENT 0
1276
1281 uint8_t adapter;
1282 uint8_t flags;
1283};
1284
1290};
1291
1300 uint8_t* title;
1301 uint32_t descLength;
1302 uint8_t* description;
1303
1304 unsigned sub_encap;
1305
1316};
1317
1318/* Record "pseudo-header" information for header data from MS ProcMon files. */
1319
1320struct procmon_process_t;
1321
1332
1333
1337struct ber_phdr {
1338 const char *pathname;
1339};
1340
1341
1346 uint8_t chunktype;
1347};
1348
1386
1387/*
1388 * Record type values.
1389 *
1390 * This list will expand over time, so don't assume everything will
1391 * forever be one of the types listed below.
1392 *
1393 * For file-type-specific records, the "ftsrec" field of the pseudo-header
1394 * contains a file-type-specific subtype value, such as a block type for
1395 * a pcapng file.
1396 *
1397 * An "event" is an indication that something happened during the capture
1398 * process, such as a status transition of some sort on the network.
1399 * These should, ideally, have a time stamp and, if they're relevant to
1400 * a particular interface on a multi-interface capture, should also have
1401 * an interface ID. The data for the event is file-type-specific and
1402 * subtype-specific. These should be dissected and displayed just as
1403 * packets are.
1404 *
1405 * A "report" supplies information not corresponding to an event;
1406 * for example, a pcapng Interface Statistics Block would be a report,
1407 * as it doesn't correspond to something happening on the network.
1408 * They may have a time stamp, and should be dissected and displayed
1409 * just as packets are.
1410 *
1411 * We distinguish between "events" and "reports" so that, for example,
1412 * the packet display can show the delta between a packet and an event
1413 * but not show the delta between a packet and a report, as the time
1414 * stamp of a report may not correspond to anything interesting on
1415 * the network but the time stamp of an event would.
1416 *
1417 * XXX - are there any file-type-specific records that *shouldn't* be
1418 * dissected and displayed? If so, they should be parsed and the
1419 * information in them stored somewhere, and used somewhere, whether
1420 * it's just used when saving the file in its native format or also
1421 * used to parse *other* file-type-specific records.
1422 *
1423 * These would be similar to, for example, pcapng Interface Description
1424 * Blocks, for which the position within the file is significant only
1425 * in that an IDB for an interface must appear before any packets from
1426 * the interface; the fact that an IDB appears at some point doesn't
1427 * necessarily mean something happened in the capture at that point.
1428 * Name Resolution Blocks are another example of such a record.
1429 *
1430 * (XXX - if you want to have a record that says "this interface first
1431 * showed up at this time", that needs to be a separate record type
1432 * from the IDB. We *could* add a "New Interface Description Block",
1433 * with a time stamp, for that purpose, but we'd *still* have to
1434 * provide IDBs for those interfaces, for compatibility with programs
1435 * that don't know about the NIDB. An ISB with only an isb_starttime
1436 * option would suffice for this purpose, so nothing needs to be
1437 * added to pcapng for this.)
1438 */
1439#define REC_TYPE_PACKET 0
1440#define REC_TYPE_FT_SPECIFIC_EVENT 1
1441#define REC_TYPE_FT_SPECIFIC_REPORT 2
1442#define REC_TYPE_SYSCALL 3
1443#define REC_TYPE_SYSTEMD_JOURNAL_EXPORT 4
1444#define REC_TYPE_CUSTOM_BLOCK 5
1445
1449typedef struct {
1450 uint32_t caplen;
1451 uint32_t len;
1453 uint32_t interface_id;
1454
1457
1458/*
1459 * The pcapng specification says "The word is encoded as an unsigned
1460 * 32-bit integer, using the endianness of the Section Header Block
1461 * scope it is in. In the following table, the bits are numbered with
1462 * 0 being the most-significant bit and 31 being the least-significant
1463 * bit of the 32-bit unsigned integer."
1464 *
1465 * From that, the direction, in bits 0 and 1, is at the *top* of the word.
1466 *
1467 * However, several implementations, such as:
1468 *
1469 * the Wireshark pcapng file reading code;
1470 *
1471 * macOS libpcap and tcpdump;
1472 *
1473 * text2pcap;
1474 *
1475 * and probably the software that generated the capture in bug 11665;
1476 *
1477 * treat 0 as the *least*-significant bit and bit 31 being the *most*-
1478 * significant bit of the flags word, and put the direction at the
1479 * *bottom* of the word.
1480 *
1481 * For now, we go with the known implementations.
1482 */
1483
1484/* Direction field of the packet flags */
1485#define PACK_FLAGS_DIRECTION_MASK 0x00000003 /* unshifted */
1486#define PACK_FLAGS_DIRECTION_SHIFT 0
1487#define PACK_FLAGS_DIRECTION(pack_flags) (((pack_flags) & PACK_FLAGS_DIRECTION_MASK) >> PACK_FLAGS_DIRECTION_SHIFT)
1488#define PACK_FLAGS_DIRECTION_UNKNOWN 0
1489#define PACK_FLAGS_DIRECTION_INBOUND 1
1490#define PACK_FLAGS_DIRECTION_OUTBOUND 2
1491
1492/* Reception type field of the packet flags */
1493#define PACK_FLAGS_RECEPTION_TYPE_MASK 0x0000001C /* unshifted */
1494#define PACK_FLAGS_RECEPTION_TYPE_SHIFT 2
1495#define PACK_FLAGS_RECEPTION_TYPE(pack_flags) (((pack_flags) & PACK_FLAGS_RECEPTION_TYPE_MASK) >> PACK_FLAGS_RECEPTION_TYPE_SHIFT)
1496#define PACK_FLAGS_RECEPTION_TYPE_UNSPECIFIED 0
1497#define PACK_FLAGS_RECEPTION_TYPE_UNICAST 1
1498#define PACK_FLAGS_RECEPTION_TYPE_MULTICAST 2
1499#define PACK_FLAGS_RECEPTION_TYPE_BROADCAST 3
1500#define PACK_FLAGS_RECEPTION_TYPE_PROMISCUOUS 4
1501
1502/* FCS length field of the packet flags */
1503#define PACK_FLAGS_FCS_LENGTH_MASK 0x000001E0 /* unshifted */
1504#define PACK_FLAGS_FCS_LENGTH_SHIFT 5
1505#define PACK_FLAGS_FCS_LENGTH(pack_flags) (((pack_flags) & PACK_FLAGS_FCS_LENGTH_MASK) >> PACK_FLAGS_FCS_LENGTH_SHIFT)
1506
1507/* Reserved bits of the packet flags */
1508#define PACK_FLAGS_RESERVED_MASK 0x0000FE00
1509
1510/* Link-layer-dependent errors of the packet flags */
1511
1512/* For Ethernet and possibly some other network types */
1513#define PACK_FLAGS_CRC_ERROR 0x01000000
1514#define PACK_FLAGS_PACKET_TOO_LONG 0x02000000
1515#define PACK_FLAGS_PACKET_TOO_SHORT 0x04000000
1516#define PACK_FLAGS_WRONG_INTER_FRAME_GAP 0x08000000
1517#define PACK_FLAGS_UNALIGNED_FRAME 0x10000000
1518#define PACK_FLAGS_START_FRAME_DELIMITER_ERROR 0x20000000
1519#define PACK_FLAGS_PREAMBLE_ERROR 0x40000000
1520#define PACK_FLAGS_SYMBOL_ERROR 0x80000000
1521
1522/* Construct a pack_flags value from its subfield values */
1523#define PACK_FLAGS_VALUE(direction, reception_type, fcs_length, ll_dependent_errors) \
1524 (((direction) << 30) | \
1525 ((reception_type) << 27) | \
1526 ((fcs_length) << 23) | \
1527 (ll_dependent_errors))
1528
1539
1543typedef struct {
1544 const char *pathname;
1545 unsigned record_type;
1547 uint64_t timestamp;
1548 uint64_t thread_id;
1549 uint32_t event_len;
1551 uint32_t nparams;
1552 uint32_t flags;
1553 uint16_t event_type;
1554 uint16_t cpu_id;
1556
1560typedef struct {
1561 uint32_t record_len;
1563
1567typedef struct {
1568 uint32_t pen;
1569 uint32_t length;
1572
1573/*
1574 * The largest nstime.secs value that can be put into an unsigned
1575 * 32-bit quantity.
1576 *
1577 * We assume that time_t is signed; it is signed on Windows/MSVC and
1578 * on many UN*Xes.
1579 *
1580 * So, if time_t is 32-bit, we define this as INT32_MAX, as that's
1581 * the largest value a time_t can have, and it fits in an unsigned
1582 * 32-bit quantity. If it's 64-bit or larger, we define this as
1583 * UINT32_MAX, as, even if it's signed, it can be as large as
1584 * UINT32_MAX, and that's the largest value that can fit in
1585 * a 32-bit unsigned quantity.
1586 *
1587 * Comparing against this, rather than against G_MAXINT2, when checking
1588 * whether a time stamp will fit in a 32-bit unsigned integer seconds
1589 * field in a capture file being written avoids signed vs. unsigned
1590 * warnings if time_t is a signed 32-bit type.
1591 *
1592 * XXX - what if time_t is unsigned? Are there any platforms where
1593 * it is?
1594 */
1595#define WTAP_NSTIME_32BIT_SECS_MAX ((time_t)(sizeof(time_t) > sizeof(int32_t) ? UINT32_MAX : INT32_MAX))
1596
1639
1640/*
1641 * Bits in presence_flags, indicating which of the fields we have.
1642 *
1643 * For the time stamp, we may need some more flags to indicate
1644 * whether the time stamp is an absolute date-and-time stamp, an
1645 * absolute time-only stamp (which can make relative time
1646 * calculations tricky, as you could in theory have two time
1647 * stamps separated by an unknown number of days), or a time stamp
1648 * relative to some unspecified time in the past (see mpeg.c).
1649 *
1650 * There is no presence flag for len - there has to be *some* length
1651 * value for the packet. (The "captured length" can be missing if
1652 * the file format doesn't report a captured length distinct from
1653 * the on-the-network length because the application(s) producing those
1654 * files don't support slicing packets.)
1655 *
1656 * There could be a presence flag for the packet encapsulation - if it's
1657 * absent, use the file encapsulation - but it's not clear that's useful;
1658 * we currently do that in the module for the file format.
1659 *
1660 * Only WTAP_HAS_TS and WTAP_HAS_SECTION_NUMBER apply to all record types.
1661 */
1662#define WTAP_HAS_TS 0x00000001
1663#define WTAP_HAS_CAP_LEN 0x00000002
1664#define WTAP_HAS_INTERFACE_ID 0x00000004
1665#define WTAP_HAS_SECTION_NUMBER 0x00000008
1666
1667/*
1668 * The old max name length define, both for backwards compatibility and because
1669 * other name types (in epan) use it. While Name Resolution Blocks (NRBs) only
1670 * support IPv4 and IPv6 currently, they could later support other name types.
1671 */
1672#ifndef MAXNAMELEN
1673#define MAXNAMELEN 64 /* max name length (most names: DNS labels, services, eth) */
1674#endif
1675
1676#ifndef MAXDNSNAMELEN
1677#define MAXDNSNAMELEN 256 /* max total length of a domain name in DNS */
1678#endif
1679
1683typedef struct hashipv4 {
1684 unsigned addr;
1685 uint8_t flags;
1686 char ip[WS_INET_ADDRSTRLEN];
1687 char name[MAXDNSNAMELEN];
1690
1691
1695typedef struct hashipv6 {
1696 uint8_t addr[16];
1697 uint8_t flags;
1698 char ip6[WS_INET6_ADDRSTRLEN];
1699 char name[MAXDNSNAMELEN];
1700 char cidr_addr[WS_INET6_CIDRADDRSTRLEN];
1702
1703
1711
1752
1753/* Zero-initializer for wtap_dump_params. */
1754#define WTAP_DUMP_PARAMS_INIT {.snaplen=0}
1755
1756struct wtap_dumper;
1757
1758typedef struct wtap wtap;
1759typedef struct wtap_dumper wtap_dumper;
1760
1761typedef struct wtap_reader *FILE_T;
1762
1781
1821 const char *name;
1823 const char *extensions;
1824};
1825
1857
1858typedef wtap_open_return_val (*wtap_open_routine_t)(struct wtap*, int *,
1859 char **);
1860
1885
1892WS_DLL_PUBLIC void init_open_routines(void);
1893
1900void cleanup_open_routines(void);
1901
1929 const char *name;
1931 wtap_open_routine_t open_routine;
1932 const char *extensions;
1935};
1936
1943WS_DLL_PUBLIC struct open_info *open_routines;
1944
1945/*
1946 * Types of comments.
1947 */
1953#define WTAP_COMMENT_PER_SECTION 0x00000001 /* per-file/per-file-section */
1954
1960#define WTAP_COMMENT_PER_INTERFACE 0x00000002 /* per-interface */
1961
1967#define WTAP_COMMENT_PER_PACKET 0x00000004 /* per-packet */
1968
1984
1995
2001#define OPTION_TYPES_SUPPORTED(option_type_array) \
2002 array_length(option_type_array), option_type_array
2003
2009#define NO_OPTIONS_SUPPORTED \
2010 0, NULL
2011
2020
2030
2031#define BLOCKS_SUPPORTED(block_type_array) \
2032 array_length(block_type_array), block_type_array
2033
2041 const char *description;
2042
2047 const char *name;
2048
2054
2062
2067
2072
2077
2086 int (*can_write_encap)(int);
2087
2092 bool (*dump_open)(wtap_dumper *, int *, char **);
2093
2099};
2100
2101#define WTAP_TYPE_AUTO 0
2102
2111WS_DLL_PUBLIC
2112void wtap_init(bool load_wiretap_plugins, const char* app_env_var_prefix, const struct file_extension_info* file_extensions, unsigned num_extensions);
2113
2131WS_DLL_PUBLIC
2132struct wtap* wtap_open_offline(const char *filename, unsigned int type, int *err,
2133 char **err_info, bool do_random, const char* app_env_var_prefix);
2134
2143WS_DLL_PUBLIC
2144void wtap_cleareof(wtap *wth);
2145
2156typedef void (*wtap_new_ipv4_callback_t) (const unsigned addr, const char *name, const bool static_entry);
2157
2167WS_DLL_PUBLIC
2169
2180typedef void (*wtap_new_ipv6_callback_t) (const ws_in6_addr *addrp, const char *name, const bool static_entry);
2181
2191WS_DLL_PUBLIC
2193
2204typedef void (*wtap_new_secrets_callback_t)(uint32_t secrets_type, const void *secrets, unsigned size);
2205
2215WS_DLL_PUBLIC
2217
2233WS_DLL_PUBLIC
2234bool wtap_read(wtap *wth, wtap_rec *rec, int *err, char **err_info,
2235 int64_t *offset);
2236
2253WS_DLL_PUBLIC
2254bool wtap_seek_read(wtap *wth, int64_t seek_off, wtap_rec *rec,
2255 int *err, char **err_info);
2256
2265WS_DLL_PUBLIC
2266void wtap_rec_init(wtap_rec *rec, size_t space);
2267
2276WS_DLL_PUBLIC
2277void wtap_rec_apply_snapshot(wtap_rec *rec, uint32_t snaplen);
2278
2286WS_DLL_PUBLIC
2287void wtap_rec_reset(wtap_rec *rec);
2288
2296WS_DLL_PUBLIC
2297void wtap_rec_cleanup(wtap_rec *rec);
2298
2308WS_DLL_PUBLIC
2310
2319WS_DLL_PUBLIC
2320void wtap_setup_packet_rec(wtap_rec *rec, int encap);
2321
2331WS_DLL_PUBLIC
2333 unsigned record_type);
2334
2344WS_DLL_PUBLIC
2346 unsigned record_type);
2347
2355WS_DLL_PUBLIC
2357
2365WS_DLL_PUBLIC
2367
2379WS_DLL_PUBLIC
2380void wtap_setup_custom_block_rec(wtap_rec *rec, uint32_t pen,
2381 uint32_t payload_length, bool copy_allowed);
2382
2391WS_DLL_PUBLIC
2392ws_compression_type wtap_get_compression_type(wtap *wth);
2393
2394/*** get various information snippets about the current file ***/
2395
2405WS_DLL_PUBLIC
2406int64_t wtap_read_so_far(wtap *wth);
2407
2417WS_DLL_PUBLIC
2418int64_t wtap_file_size(wtap *wth, int *err);
2419
2428WS_DLL_PUBLIC
2429unsigned wtap_snapshot_length(wtap *wth);
2430
2439WS_DLL_PUBLIC
2441
2450WS_DLL_PUBLIC
2451int wtap_file_encap(wtap *wth);
2452
2461WS_DLL_PUBLIC
2462int wtap_file_tsprec(wtap *wth);
2463
2472WS_DLL_PUBLIC
2473const nstime_t* wtap_file_start_ts(wtap *wth);
2474
2483WS_DLL_PUBLIC
2484const nstime_t* wtap_file_end_ts(wtap *wth);
2485
2493WS_DLL_PUBLIC
2494unsigned wtap_file_get_num_shbs(wtap *wth);
2495
2508WS_DLL_PUBLIC
2509wtap_block_t wtap_file_get_shb(wtap *wth, unsigned shb_num);
2510
2521WS_DLL_PUBLIC
2522void wtap_write_shb_comment(wtap *wth, char *comment);
2523
2535WS_DLL_PUBLIC
2536unsigned wtap_file_get_shb_global_interface_id(wtap *wth, unsigned shb_num, uint32_t interface_id);
2537
2548WS_DLL_PUBLIC
2550
2551
2558WS_DLL_PUBLIC
2560
2570WS_DLL_PUBLIC
2571wtap_block_t wtap_get_next_interface_description(wtap *wth);
2572
2585WS_DLL_PUBLIC
2587
2599WS_DLL_PUBLIC
2600char *wtap_get_debug_if_descr(const wtap_block_t if_descr,
2601 const int indent,
2602 const char* line_end);
2603
2616WS_DLL_PUBLIC
2617wtap_block_t wtap_file_get_nrb(wtap *wth);
2618
2626WS_DLL_PUBLIC
2627unsigned wtap_file_get_num_dsbs(wtap *wth);
2628
2639WS_DLL_PUBLIC
2640wtap_block_t wtap_file_get_dsb(wtap *wth, unsigned dsb_num);
2641
2650WS_DLL_PUBLIC
2651void wtap_file_add_decryption_secrets(wtap *wth, const wtap_block_t dsb);
2652
2661WS_DLL_PUBLIC
2663
2671WS_DLL_PUBLIC
2672void wtap_fdclose(wtap *wth);
2673
2684WS_DLL_PUBLIC
2685bool wtap_fdreopen(wtap *wth, const char *filename, int *err);
2686
2694WS_DLL_PUBLIC
2695void wtap_sequential_close(wtap *wth);
2696
2704WS_DLL_PUBLIC
2705void wtap_close(wtap *wth);
2706
2715WS_DLL_PUBLIC
2716bool wtap_dump_can_open(int filetype);
2717
2728WS_DLL_PUBLIC
2729int wtap_dump_required_file_encap_type(const GArray *file_encaps);
2730
2741WS_DLL_PUBLIC
2742bool wtap_dump_can_write_encap(int file_type_subtype, int encap);
2743
2752WS_DLL_PUBLIC
2754
2765WS_DLL_PUBLIC
2766void wtap_dump_params_init(wtap_dump_params *params, wtap *wth);
2767
2784WS_DLL_PUBLIC
2786
2794WS_DLL_PUBLIC
2796
2804WS_DLL_PUBLIC
2806
2813WS_DLL_PUBLIC
2815
2828WS_DLL_PUBLIC
2829wtap_dumper* wtap_dump_open(const char *filename, int file_type_subtype,
2830 ws_compression_type compression_type, const wtap_dump_params *params,
2831 int *err, char **err_info);
2832
2848WS_DLL_PUBLIC
2849wtap_dumper* wtap_dump_open_tempfile(const char *tmpdir, char **filenamep,
2850 const char *pfx,
2851 int file_type_subtype, ws_compression_type compression_type,
2852 const wtap_dump_params *params, int *err, char **err_info);
2853
2866WS_DLL_PUBLIC
2868 ws_compression_type compression_type, const wtap_dump_params *params,
2869 int *err, char **err_info);
2870
2882WS_DLL_PUBLIC
2884 ws_compression_type compression_type, const wtap_dump_params *params,
2885 int *err, char **err_info);
2886
2898WS_DLL_PUBLIC
2899bool wtap_dump_add_idb(wtap_dumper *wdh, wtap_block_t idb, int *err,
2900 char **err_info);
2901
2912WS_DLL_PUBLIC
2913bool wtap_dump(wtap_dumper *wdh, const wtap_rec *rec, int *err, char **err_info);
2914
2922WS_DLL_PUBLIC
2923bool wtap_dump_flush(wtap_dumper *wdh, int *err);
2924
2931WS_DLL_PUBLIC
2933
2940WS_DLL_PUBLIC
2941uint64_t wtap_get_bytes_dumped(const wtap_dumper *wdh);
2942
2949WS_DLL_PUBLIC
2950void wtap_set_bytes_dumped(wtap_dumper *wdh, uint64_t bytes_dumped);
2951
2952struct addrinfo;
2953
2960WS_DLL_PUBLIC
2962
2970WS_DLL_PUBLIC
2972
2978WS_DLL_PUBLIC
2980
2986WS_DLL_PUBLIC
2988
3005WS_DLL_PUBLIC
3006bool wtap_dump_close(wtap_dumper *wdh, bool *needs_reload,
3007 int *err, char **err_info);
3008
3025WS_DLL_PUBLIC
3026bool wtap_dump_can_write(const GArray *file_encaps, uint32_t required_comment_types);
3027
3041WS_DLL_PUBLIC
3042void wtap_buffer_append_epdu_tag(Buffer *buf, uint16_t epdu_tag, const uint8_t *data, uint16_t data_len);
3043
3052WS_DLL_PUBLIC
3053void wtap_buffer_append_epdu_uint(Buffer *buf, uint16_t epdu_tag, uint32_t val);
3054
3063WS_DLL_PUBLIC
3064void wtap_buffer_append_epdu_string(Buffer *buf, uint16_t epdu_tag, const char *val);
3065
3074WS_DLL_PUBLIC
3076
3084
3101WS_DLL_PUBLIC
3102GArray *wtap_get_savable_file_types_subtypes_for_file(int file_type_subtype,
3103 const GArray *file_encaps, uint32_t required_comment_types,
3104 ft_sort_order sort_order);
3105
3117WS_DLL_PUBLIC
3119
3120/*** various file type/subtype functions ***/
3130WS_DLL_PUBLIC
3131const char *wtap_file_type_subtype_description(int file_type_subtype);
3132
3141WS_DLL_PUBLIC
3142const char *wtap_file_type_subtype_name(int file_type_subtype);
3143
3153WS_DLL_PUBLIC
3154int wtap_name_to_file_type_subtype(const char *name);
3155
3161WS_DLL_PUBLIC
3163
3169WS_DLL_PUBLIC
3171
3177WS_DLL_PUBLIC
3179
3190WS_DLL_PUBLIC
3192 wtap_block_type_t type);
3193
3208WS_DLL_PUBLIC
3210 wtap_block_type_t type, unsigned opttype);
3211
3235WS_DLL_PUBLIC
3237
3253WS_DLL_PUBLIC
3255
3270WS_DLL_PUBLIC
3271void wtap_free_extensions_list(GSList *extensions);
3272
3284WS_DLL_PUBLIC
3285const char *wtap_default_file_extension(int file_type_subtype);
3286
3302WS_DLL_PUBLIC
3303GSList *wtap_get_file_extensions_list(int file_type_subtype, bool include_compressed);
3304
3313WS_DLL_PUBLIC
3314const char *wtap_encap_name(int encap);
3315
3324WS_DLL_PUBLIC
3325const char *wtap_encap_description(int encap);
3326
3336WS_DLL_PUBLIC
3337int wtap_name_to_encap(const char *short_name);
3338
3347WS_DLL_PUBLIC
3348const char* wtap_tsprec_string(int tsprec);
3349
3358WS_DLL_PUBLIC
3359const char *wtap_strerror(int err);
3360
3361
3362/*** get available number of file types and encapsulations ***/
3371WS_DLL_PUBLIC
3373
3381WS_DLL_PUBLIC
3382int wtap_get_num_encap_types(void);
3383
3384/*** get information for file type extension ***/
3385
3397WS_DLL_PUBLIC
3398const char *wtap_get_file_extension_type_name(int extension_type);
3399
3411WS_DLL_PUBLIC
3412GSList *wtap_get_file_extension_type_extensions(unsigned extension_type);
3413
3414/*** dynamically register new file types and encapsulations ***/
3415
3427WS_DLL_PUBLIC
3429
3440typedef struct {
3441 void (*register_wtap_module)(void);
3442} wtap_plugin;
3443
3455WS_DLL_PUBLIC
3457
3458
3472WS_DLL_PUBLIC
3473int wtap_plugins_supported(void);
3474
3475/* Registration and open-info */
3476
3482WS_DLL_PUBLIC
3483void wtap_register_open_info(struct open_info *oi, const bool first_routine);
3484
3490WS_DLL_PUBLIC
3491bool wtap_has_open_info(const char *name);
3492
3498WS_DLL_PUBLIC
3499bool wtap_uses_lua_filehandler(const wtap* wth);
3500
3505WS_DLL_PUBLIC
3506void wtap_deregister_open_info(const char *name);
3507
3508/* Type mapping and registration */
3509
3515WS_DLL_PUBLIC
3516unsigned int open_info_name_to_type(const char *name);
3517
3523WS_DLL_PUBLIC
3525
3530WS_DLL_PUBLIC
3531void wtap_deregister_file_type_subtype(const int file_type_subtype);
3532
3533/* Encapsulation and cleanup */
3540WS_DLL_PUBLIC
3541int wtap_register_encap_type(const char *description, const char *name);
3542
3546WS_DLL_PUBLIC
3547void wtap_cleanup(void);
3548
3552#define WTAP_ERR_NOT_REGULAR_FILE -1
3554
3555#define WTAP_ERR_RANDOM_OPEN_PIPE -2
3557
3558#define WTAP_ERR_FILE_UNKNOWN_FORMAT -3
3560
3561#define WTAP_ERR_UNSUPPORTED -4
3564
3565#define WTAP_ERR_CANT_WRITE_TO_PIPE -5
3567
3568#define WTAP_ERR_CANT_OPEN -6
3570
3571#define WTAP_ERR_UNWRITABLE_FILE_TYPE -7
3573
3574#define WTAP_ERR_UNWRITABLE_ENCAP -8
3577
3578#define WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED -9
3580
3581#define WTAP_ERR_CANT_WRITE -10
3583
3584#define WTAP_ERR_CANT_CLOSE -11
3586
3587#define WTAP_ERR_SHORT_READ -12
3589
3590#define WTAP_ERR_BAD_FILE -13
3592
3593#define WTAP_ERR_SHORT_WRITE -14
3595
3596#define WTAP_ERR_UNC_OVERFLOW -15
3598
3599#define WTAP_ERR_RANDOM_OPEN_STDIN -16
3601
3602#define WTAP_ERR_COMPRESSION_NOT_SUPPORTED -17
3604
3605#define WTAP_ERR_CANT_SEEK -18
3607
3608#define WTAP_ERR_CANT_SEEK_COMPRESSED -19
3610
3611#define WTAP_ERR_DECOMPRESS -20
3613
3614#define WTAP_ERR_INTERNAL -21
3616
3617#define WTAP_ERR_PACKET_TOO_LARGE -22
3620
3621#define WTAP_ERR_CHECK_WSLUA -23
3624
3625#define WTAP_ERR_UNWRITABLE_REC_TYPE -24
3627
3628#define WTAP_ERR_UNWRITABLE_REC_DATA -25
3630
3631#define WTAP_ERR_DECOMPRESSION_NOT_SUPPORTED -26
3633
3634#define WTAP_ERR_TIME_STAMP_NOT_SUPPORTED -27
3637
3638#define WTAP_ERR_REC_MALFORMED -28
3641
3642#ifdef __cplusplus
3643}
3644#endif /* __cplusplus */
3645
3646#endif /* __WTAP_H__ */
3647
3648/*
3649 * Editor modelines - https://www.wireshark.org/tools/modelines.html
3650 *
3651 * Local variables:
3652 * c-basic-offset: 4
3653 * tab-width: 8
3654 * indent-tabs-mode: nil
3655 * End:
3656 *
3657 * vi: set shiftwidth=4 tabstop=8 expandtab:
3658 * :indentSize=4:tabSize=8:noTabs=true:
3659 */
struct e_in6_addr ws_in6_addr
Represents a 128-bit IPv6 address.
#define WS_INET_CIDRADDRSTRLEN
Convert an IPv6 address to a string representation.
Definition inet_addr.h:155
A dynamic byte buffer with adjustable start and end positions.
Definition buffer.h:30
Aggregates lists of resolved IPv4 and IPv6 addresses for writing into a pcapng Name Resolution Block ...
Definition wtap.h:1707
GList * ipv6_addr_list
Definition wtap.h:1709
GList * ipv4_addr_list
Definition wtap.h:1708
Pseudo-header for Ascend WAN capture files carrying session, call, and task metadata.
Definition wtap.h:531
uint32_t chunk
Definition wtap.h:536
uint16_t type
Definition wtap.h:532
char call_num[64]
Definition wtap.h:535
uint32_t sess
Definition wtap.h:534
uint32_t task
Definition wtap.h:537
char user[64]
Definition wtap.h:533
Pseudo-header for ATM capture files carrying cell, circuit, and AAL-layer metadata.
Definition wtap.h:501
uint16_t vpi
Definition wtap.h:506
uint16_t aal5t_len
Definition wtap.h:512
uint16_t aal5t_u2u
Definition wtap.h:511
uint16_t channel
Definition wtap.h:509
uint8_t aal2_cid
Definition wtap.h:508
uint16_t cells
Definition wtap.h:510
uint8_t subtype
Definition wtap.h:505
uint32_t aal5t_chksum
Definition wtap.h:513
uint8_t aal
Definition wtap.h:503
uint16_t vci
Definition wtap.h:507
uint32_t flags
Definition wtap.h:502
uint8_t type
Definition wtap.h:504
Pseudo-header for BER (Basic Encoding Rules) data files.
Definition wtap.h:1337
const char * pathname
Definition wtap.h:1338
Pseudo-header for Bluetooth HCI capture files carrying direction and channel metadata.
Definition wtap.h:1183
bool sent
Definition wtap.h:1184
uint32_t channel
Definition wtap.h:1185
Pseudo-header for Linux Bluetooth Monitor (WTAP_ENCAP_BLUETOOTH_LINUX_MONITOR) capture files.
Definition wtap.h:1197
uint16_t opcode
Definition wtap.h:1199
uint16_t adapter_id
Definition wtap.h:1198
Pseudo-header for Catapult DCT2000 captures.
Definition wtap.h:1049
int64_t seek_off
Definition wtap.h:1056
struct wtap * wth
Definition wtap.h:1057
struct isdn_phdr isdn
Definition wtap.h:1051
struct p2p_phdr p2p
Definition wtap.h:1053
struct atm_phdr atm
Definition wtap.h:1052
Pseudo-header for CoSine Systems capture files carrying encapsulation, direction, and QoS metadata.
Definition wtap.h:919
uint16_t err
Definition wtap.h:927
uint16_t rm
Definition wtap.h:926
uint8_t direction
Definition wtap.h:921
uint16_t pro
Definition wtap.h:923
char if_name[128]
Definition wtap.h:922
uint16_t off
Definition wtap.h:924
uint16_t pri
Definition wtap.h:925
uint8_t encap
Definition wtap.h:920
Pseudo-header for DTE/DCE capture files (LAPB, V.120, Frame Relay) carrying direction metadata.
Definition wtap.h:408
uint8_t flags
Definition wtap.h:409
Holds a single ERF extension header word appended after the main ERF header.
Definition wtap.h:1075
uint64_t ehdr
Definition wtap.h:1076
Extended pseudo-header for ERF multi-channel (MC) packet records.
Definition wtap.h:1097
union erf_mc_phdr::@031203371227322325321065306065226045005243346162 subhdr
Protocol-specific subheader union.
struct wtap_erf_eth_hdr eth_hdr
Definition wtap.h:1108
struct erf_ehdr ehdr_list[16]
Definition wtap.h:1100
struct erf_phdr phdr
Definition wtap.h:1098
uint32_t aal2_hdr
Definition wtap.h:1110
uint32_t mc_hdr
Definition wtap.h:1109
Pseudo-header for Endace ERF (Extensible Record Format) capture files carrying timestamp and record m...
Definition wtap.h:1063
uint16_t lctr
Definition wtap.h:1068
uint16_t rlen
Definition wtap.h:1067
uint8_t type
Definition wtap.h:1065
uint8_t flags
Definition wtap.h:1066
uint64_t ts
Definition wtap.h:1064
uint16_t wlen
Definition wtap.h:1069
Pseudo-header for Ethernet capture files carrying FCS length metadata.
Definition wtap.h:399
int fcs_len
Definition wtap.h:400
For registering extensions used for file formats.
Definition wtap.h:1820
const char * extensions
Definition wtap.h:1823
const char * name
Definition wtap.h:1821
bool is_capture_file
Definition wtap.h:1822
Describes a single capture file type/subtype, including its metadata, capability flags,...
Definition wtap.h:2037
wtap_wslua_file_info_t * wslua_info
Definition wtap.h:2098
const char * name
Definition wtap.h:2047
const char * additional_file_extensions
Definition wtap.h:2061
int(* can_write_encap)(int)
Definition wtap.h:2086
const struct supported_block_type * supported_blocks
Definition wtap.h:2076
bool writing_must_seek
Definition wtap.h:2066
const char * description
Definition wtap.h:2041
bool(* dump_open)(wtap_dumper *, int *, char **)
Definition wtap.h:2092
size_t num_supported_blocks
Definition wtap.h:2071
const char * default_file_extension
Definition wtap.h:2053
Pseudo-header for GSM Um air interface (WTAP_ENCAP_GSM_UM) capture files.
Definition wtap.h:1221
bool uplink
Definition wtap.h:1222
uint8_t bsic
Definition wtap.h:1225
uint32_t tdma_frame
Definition wtap.h:1227
uint16_t arfcn
Definition wtap.h:1226
uint8_t channel
Definition wtap.h:1223
uint8_t error
Definition wtap.h:1228
uint16_t timeshift
Definition wtap.h:1229
Hash table entry for a resolved or unresolved IPv4 address.
Definition wtap.h:1683
char ip[WS_INET_ADDRSTRLEN]
Definition wtap.h:1686
char cidr_addr[WS_INET_CIDRADDRSTRLEN]
Definition wtap.h:1688
char name[256]
Definition wtap.h:1687
unsigned addr
Definition wtap.h:1684
uint8_t flags
Definition wtap.h:1685
Hash table entry for a resolved or unresolved IPv6 address.
Definition wtap.h:1695
char name[256]
Definition wtap.h:1699
char ip6[WS_INET6_ADDRSTRLEN]
Definition wtap.h:1698
uint8_t flags
Definition wtap.h:1697
uint8_t addr[16]
Definition wtap.h:1696
char cidr_addr[WS_INET6_CIDRADDRSTRLEN]
Definition wtap.h:1700
Pseudo-header for I2C bus capture files carrying bus number, event type, and flag metadata.
Definition wtap.h:1212
uint32_t flags
Definition wtap.h:1215
uint8_t bus
Definition wtap.h:1214
uint8_t is_event
Definition wtap.h:1213
Definition pcapio.c:117
PHY metadata for 802.11 legacy FHSS (Frequency Hopping Spread Spectrum) captures.
Definition wtap.h:596
unsigned has_hop_pattern
Definition wtap.h:598
uint8_t hop_set
Definition wtap.h:601
uint8_t hop_index
Definition wtap.h:603
uint8_t hop_pattern
Definition wtap.h:602
unsigned has_hop_set
Definition wtap.h:597
unsigned has_hop_index
Definition wtap.h:599
Pseudo-header for 802.11 wireless capture files carrying full PHY, signal, and frame metadata.
Definition wtap.h:850
unsigned has_noise_percent
Definition wtap.h:862
unsigned has_frequency
Definition wtap.h:859
uint32_t frequency
Definition wtap.h:872
unsigned has_signal_dbm
Definition wtap.h:863
unsigned has_signal_db
Definition wtap.h:865
int8_t noise_dbm
Definition wtap.h:877
unsigned phy
Definition wtap.h:855
unsigned has_aggregate_info
Definition wtap.h:868
unsigned has_signal_percent
Definition wtap.h:861
unsigned has_channel
Definition wtap.h:858
union ieee_802_11_phy_info phy_info
Definition wtap.h:856
unsigned has_zero_length_psdu_type
Definition wtap.h:869
unsigned datapad
Definition wtap.h:853
unsigned decrypted
Definition wtap.h:852
int fcs_len
Definition wtap.h:851
uint16_t channel
Definition wtap.h:871
uint8_t signal_db
Definition wtap.h:878
unsigned has_tsf_timestamp
Definition wtap.h:867
uint32_t aggregate_id
Definition wtap.h:882
uint16_t data_rate
Definition wtap.h:873
uint8_t signal_percent
Definition wtap.h:874
unsigned has_data_rate
Definition wtap.h:860
uint8_t zero_length_psdu_type
Definition wtap.h:883
uint8_t noise_percent
Definition wtap.h:875
uint64_t tsf_timestamp
Definition wtap.h:880
unsigned has_noise_db
Definition wtap.h:866
unsigned has_noise_dbm
Definition wtap.h:864
unsigned no_a_msdus
Definition wtap.h:854
uint8_t noise_db
Definition wtap.h:879
int8_t signal_dbm
Definition wtap.h:876
uint32_t aggregate_flags
Definition wtap.h:881
PHY metadata for 802.11a captures.
Definition wtap.h:620
unsigned channel_type
Definition wtap.h:624
unsigned has_channel_type
Definition wtap.h:621
unsigned has_turbo_type
Definition wtap.h:622
unsigned turbo_type
Definition wtap.h:625
PHY metadata for 802.11ac (VHT) captures.
Definition wtap.h:721
uint8_t fec
Definition wtap.h:742
unsigned has_short_gi
Definition wtap.h:724
unsigned short_gi_nsym_disambig
Definition wtap.h:736
unsigned txop_ps_not_allowed
Definition wtap.h:734
unsigned stbc
Definition wtap.h:733
uint8_t nss[4]
Definition wtap.h:741
uint16_t partial_aid
Definition wtap.h:744
unsigned has_beamformed
Definition wtap.h:727
unsigned has_ldpc_extra_ofdm_symbol
Definition wtap.h:726
uint8_t mcs[4]
Definition wtap.h:740
unsigned has_bandwidth
Definition wtap.h:728
unsigned has_stbc
Definition wtap.h:722
unsigned has_partial_aid
Definition wtap.h:731
unsigned has_fec
Definition wtap.h:729
unsigned beamformed
Definition wtap.h:738
unsigned short_gi
Definition wtap.h:735
unsigned has_short_gi_nsym_disambig
Definition wtap.h:725
uint8_t bandwidth
Definition wtap.h:739
unsigned has_group_id
Definition wtap.h:730
uint8_t group_id
Definition wtap.h:743
unsigned has_txop_ps_not_allowed
Definition wtap.h:723
unsigned ldpc_extra_ofdm_symbol
Definition wtap.h:737
PHY metadata for 802.11ad (WiGig/DMG) captures.
Definition wtap.h:764
uint8_t mcs
Definition wtap.h:767
unsigned has_mcs_index
Definition wtap.h:765
PHY metadata for 802.11ax (HE — High Efficiency) captures.
Definition wtap.h:774
uint8_t bwru
Definition wtap.h:781
uint8_t gi
Definition wtap.h:782
unsigned has_gi
Definition wtap.h:777
uint8_t mcs
Definition wtap.h:780
uint8_t nsts
Definition wtap.h:779
unsigned has_bwru
Definition wtap.h:776
unsigned has_mcs_index
Definition wtap.h:775
PHY metadata for 802.11b captures.
Definition wtap.h:610
unsigned has_short_preamble
Definition wtap.h:611
bool short_preamble
Definition wtap.h:613
Per-user PHY metadata for a single user within an 802.11be (EHT) MU transmission.
Definition wtap.h:789
unsigned data_for_this_user
Definition wtap.h:797
unsigned coding_known
Definition wtap.h:792
unsigned mcs_known
Definition wtap.h:791
unsigned sta_id
Definition wtap.h:798
unsigned spatial_config_known
Definition wtap.h:796
unsigned ldpc_coding
Definition wtap.h:799
unsigned bf_known
Definition wtap.h:795
unsigned nsts_known
Definition wtap.h:794
unsigned sta_id_known
Definition wtap.h:790
unsigned mcs
Definition wtap.h:800
unsigned rsv
Definition wtap.h:802
unsigned nsts
Definition wtap.h:801
unsigned beamform
Definition wtap.h:803
unsigned rsv_known
Definition wtap.h:793
unsigned rsv2
Definition wtap.h:804
PHY metadata for 802.11be (EHT — Extremely High Throughput) captures.
Definition wtap.h:812
uint8_t bandwidth
Definition wtap.h:817
unsigned has_bandwidth
Definition wtap.h:815
unsigned has_ru_mru_size
Definition wtap.h:813
uint8_t ru_mru_size
Definition wtap.h:818
unsigned has_gi
Definition wtap.h:814
uint8_t gi
Definition wtap.h:819
uint8_t num_users
Definition wtap.h:820
struct ieee_802_11be_user_info user[4]
Definition wtap.h:821
PHY metadata for 802.11g OFDM captures.
Definition wtap.h:655
uint32_t mode
Definition wtap.h:658
unsigned has_mode
Definition wtap.h:656
PHY metadata for 802.11n (HT) captures.
Definition wtap.h:670
unsigned fec
Definition wtap.h:683
unsigned short_gi
Definition wtap.h:681
unsigned has_fec
Definition wtap.h:675
unsigned has_greenfield
Definition wtap.h:674
uint16_t mcs_index
Definition wtap.h:679
unsigned has_stbc_streams
Definition wtap.h:676
unsigned ness
Definition wtap.h:685
unsigned greenfield
Definition wtap.h:682
unsigned has_ness
Definition wtap.h:677
unsigned stbc_streams
Definition wtap.h:684
unsigned has_mcs_index
Definition wtap.h:671
unsigned has_bandwidth
Definition wtap.h:672
unsigned bandwidth
Definition wtap.h:680
unsigned has_short_gi
Definition wtap.h:673
Pseudo-header carrying IrDA packet type metadata for captured IrDA frames.
Definition wtap.h:954
uint16_t pkttype
Definition wtap.h:955
Pseudo-header for ISDN capture files carrying direction and channel metadata.
Definition wtap.h:415
bool uton
Definition wtap.h:416
uint8_t channel
Definition wtap.h:417
Pseudo-header for Tektronix K12 capture files carrying input port, stack, and protocol metadata.
Definition wtap.h:1015
const char * input_name
Definition wtap.h:1017
uint32_t input
Definition wtap.h:1016
void * stuff
Definition wtap.h:1023
uint8_t * extra_info
Definition wtap.h:1021
k12_input_info_t input_info
Definition wtap.h:1020
uint32_t extra_length
Definition wtap.h:1022
uint32_t input_type
Definition wtap.h:1019
const char * stack_file
Definition wtap.h:1018
Pseudo-header for layer 1 event (WTAP_ENCAP_LAYER1_EVENT) capture files carrying signal direction met...
Definition wtap.h:1205
bool uton
Definition wtap.h:1206
LAPD pseudo-header for packet metadata.
Definition wtap.h:1037
uint8_t we_network
Definition wtap.h:1039
uint16_t pkttype
Definition wtap.h:1038
Pseudo-header for NFC Logical Link Control Protocol (LLCP) capture files.
Definition wtap.h:1280
uint8_t adapter
Definition wtap.h:1281
uint8_t flags
Definition wtap.h:1282
Pseudo-header for Android Logcat (WTAP_ENCAP_LOGCAT) capture files.
Definition wtap.h:1288
int version
Definition wtap.h:1289
Pseudo-header for M-Module binary files.
Definition wtap.h:1345
uint8_t chunktype
Definition wtap.h:1346
Pseudo-header carrying MTP2 link metadata for captured SS7 MTP2 frames.
Definition wtap.h:978
uint8_t annex_a_used
Definition wtap.h:980
uint16_t link_number
Definition wtap.h:981
uint8_t sent
Definition wtap.h:979
Pseudo-header metadata for packets captured in NetMon (Network Monitor) files.
Definition wtap.h:1299
unsigned sub_encap
Definition wtap.h:1304
uint8_t * description
Definition wtap.h:1302
uint8_t * title
Definition wtap.h:1300
uint32_t descLength
Definition wtap.h:1301
Pseudo-header for HP-UX nettl capture files carrying subsystem, device, and process metadata.
Definition wtap.h:961
int32_t pid
Definition wtap.h:965
uint16_t subsys
Definition wtap.h:962
uint32_t devid
Definition wtap.h:963
uint32_t kind
Definition wtap.h:964
uint32_t uid
Definition wtap.h:966
Pseudo-header for Nokia firewall capture files, extending the Ethernet pseudo-header with device-spec...
Definition wtap.h:1270
struct eth_phdr eth
Definition wtap.h:1271
uint8_t stuff[4]
Definition wtap.h:1272
Definition nstime.h:26
Pseudo-header for Citrix NetScaler nstrace capture files carrying field offset and record layout meta...
Definition wtap.h:1245
uint8_t dir_len
Definition wtap.h:1251
uint8_t src_vmname_len_offset
Definition wtap.h:1261
uint8_t clflags_offset
Definition wtap.h:1260
uint8_t srcnodeid_offset
Definition wtap.h:1258
uint8_t ns_activity_offset
Definition wtap.h:1263
uint8_t pcb_offset
Definition wtap.h:1253
uint8_t dst_vmname_len_offset
Definition wtap.h:1262
uint8_t coreid_offset
Definition wtap.h:1257
uint8_t data_offset
Definition wtap.h:1264
uint8_t rec_type
Definition wtap.h:1255
uint8_t destnodeid_offset
Definition wtap.h:1259
uint8_t nicno_offset
Definition wtap.h:1248
int64_t rec_offset
Definition wtap.h:1246
uint8_t nicno_len
Definition wtap.h:1249
uint8_t l_pcb_offset
Definition wtap.h:1254
uint8_t vlantag_offset
Definition wtap.h:1256
int32_t rec_len
Definition wtap.h:1247
uint8_t dir_offset
Definition wtap.h:1250
uint16_t eth_offset
Definition wtap.h:1252
Information about a given file type that applies to all subtypes of the file type.
Definition wtap.h:1928
const char * name
Definition wtap.h:1929
wtap_open_routine_t open_routine
Definition wtap.h:1931
void * wslua_data
Definition wtap.h:1934
const char * extensions
Definition wtap.h:1932
wtap_open_type type
Definition wtap.h:1930
char ** extensions_set
Definition wtap.h:1933
Pseudo-header for point-to-point link capture files carrying packet direction metadata.
Definition wtap.h:543
bool sent
Definition wtap.h:544
Pseudo-header for Microsoft ProcMon (Process Monitor) captures.
Definition wtap.h:1325
struct procmon_process_t * process_array
Definition wtap.h:1328
uint32_t * process_index_map
Definition wtap.h:1326
size_t process_array_size
Definition wtap.h:1329
size_t process_index_map_size
Definition wtap.h:1327
bool system_bitness
Definition wtap.h:1330
Describes a single process observed by Process Monitor, including its identity, security context,...
Definition procmon.h:30
Definition ngsniffer.c:82
Pseudo-header for SITA WAN capture files carrying signal, error, and protocol metadata.
Definition wtap.h:1172
uint8_t sita_signals
Definition wtap.h:1174
uint8_t sita_flags
Definition wtap.h:1173
uint8_t sita_errors2
Definition wtap.h:1176
uint8_t sita_proto
Definition wtap.h:1177
uint8_t sita_errors1
Definition wtap.h:1175
Describes a single block type supported by a file format, including its option support.
Definition wtap.h:2024
const struct supported_option_type * supported_options
Definition wtap.h:2028
block_support_t support
Definition wtap.h:2026
wtap_block_type_t type
Definition wtap.h:2025
size_t num_supported_options
Definition wtap.h:2027
Entry describing support level for a specific option type.
Definition wtap.h:1991
unsigned opt
Definition wtap.h:1992
option_support_t support
Definition wtap.h:1993
Header metadata for a pcapng Custom Block record.
Definition wtap.h:1567
uint32_t pen
Definition wtap.h:1568
uint32_t length
Definition wtap.h:1569
bool copy_allowed
Definition wtap.h:1570
Definition wtap.h:1728
const GArray * nrbs_growing
Definition wtap.h:1737
const GArray * dsbs_growing
Definition wtap.h:1741
int tsprec
Definition wtap.h:1731
GArray * shb_hdrs
Definition wtap.h:1732
int encap
Definition wtap.h:1729
bool dont_copy_idbs
Definition wtap.h:1750
GArray * dsbs_initial
Definition wtap.h:1740
wtapng_iface_descriptions_t * idb_inf
Definition wtap.h:1736
const GArray * mevs_growing
Definition wtap.h:1744
const GArray * shb_iface_to_global
Definition wtap.h:1733
const GArray * dpibs_growing
Definition wtap.h:1747
int snaplen
Definition wtap.h:1730
Wiretap dumper handle and associated state.
Definition wtap_module.h:163
ERF Ethernet subheader providing the frame offset for Ethernet ERF records.
Definition wtap.h:1084
uint8_t pad
Definition wtap.h:1086
uint8_t offset
Definition wtap.h:1085
Header metadata for a file-type-specific event or report record.
Definition wtap.h:1532
union wtap_pseudo_header pseudo_header
Definition wtap.h:1537
uint32_t record_len
Definition wtap.h:1535
int file_type_subtype
Definition wtap.h:1533
unsigned record_type
Definition wtap.h:1534
Header metadata for a captured network packet.
Definition wtap.h:1449
uint32_t caplen
Definition wtap.h:1450
uint32_t interface_id
Definition wtap.h:1453
int pkt_encap
Definition wtap.h:1452
union wtap_pseudo_header pseudo_header
Definition wtap.h:1455
uint32_t len
Definition wtap.h:1451
Plugin registration callback table.
Definition wtap.h:3440
Definition file_wrappers.c:96
Represents a single capture record read from or written to a capture file, regardless of record type.
Definition wtap.h:1600
wtap_syscall_header syscall_header
Definition wtap.h:1614
bool block_was_modified
Definition wtap.h:1628
unsigned rec_type
Definition wtap.h:1601
unsigned section_number
Definition wtap.h:1603
const char * rec_type_name
Definition wtap.h:1606
wtap_packet_header packet_header
Definition wtap.h:1612
wtap_block_t block
Block-level metadata associated with this record.
Definition wtap.h:1626
wtap_ft_specific_header ft_specific_header
Definition wtap.h:1613
wtap_custom_block_header custom_block_header
Definition wtap.h:1616
wtap_systemd_journal_export_header systemd_journal_export_header
Definition wtap.h:1615
int tsprec
Definition wtap.h:1605
Buffer options_buf
Reusable buffer holding serialized file-type-specific option data for this record.
Definition wtap.h:1635
uint32_t presence_flags
Definition wtap.h:1602
nstime_t ts
Definition wtap.h:1604
Buffer data
Definition wtap.h:1637
Header metadata for a system call record (e.g. from Sysdig/Falco captures).
Definition wtap.h:1543
uint16_t cpu_id
Definition wtap.h:1554
uint32_t event_data_len
Definition wtap.h:1550
const char * pathname
Definition wtap.h:1544
uint64_t thread_id
Definition wtap.h:1548
uint64_t timestamp
Definition wtap.h:1547
uint32_t nparams
Definition wtap.h:1551
uint32_t flags
Definition wtap.h:1552
unsigned record_type
Definition wtap.h:1545
uint16_t event_type
Definition wtap.h:1553
uint32_t event_len
Definition wtap.h:1549
int byte_order
Definition wtap.h:1546
Header metadata for a systemd journal export record.
Definition wtap.h:1560
uint32_t record_len
Definition wtap.h:1561
Companion metadata block for Lua-based file writers registered via wslua, carrying the write-open cal...
Definition wtap.h:1777
void * wslua_data
Definition wtap.h:1779
int(* wslua_can_write_encap)(int, void *)
Definition wtap.h:1778
Definition wtap_module.h:58
wtap_new_secrets_callback_t add_new_secrets
Definition wtap_module.h:113
const char * app_env_var_prefix
Definition wtap_module.h:74
int file_type_subtype
Definition wtap_module.h:62
wtap_new_ipv4_callback_t add_new_ipv4
Definition wtap_module.h:111
wtap_new_ipv6_callback_t add_new_ipv6
Definition wtap_module.h:112
Union representing physical layer information for IEEE 802.11 variants.
Definition wtap.h:835
struct ieee_802_11_fhss info_11_fhss
Definition wtap.h:836
struct ieee_802_11ac info_11ac
Definition wtap.h:841
struct ieee_802_11n info_11n
Definition wtap.h:840
struct ieee_802_11g info_11g
Definition wtap.h:839
struct ieee_802_11ax info_11ax
Definition wtap.h:843
struct ieee_802_11b info_11b
Definition wtap.h:837
struct ieee_802_11be info_11be
Definition wtap.h:844
struct ieee_802_11ad info_11ad
Definition wtap.h:842
struct ieee_802_11a info_11a
Definition wtap.h:838
Pseudo-header metadata for packets in K12 capture files.
Definition wtap.h:991
uint16_t vp
Definition wtap.h:998
uint16_t cid
Definition wtap.h:1000
uint16_t vc
Definition wtap.h:999
uint32_t ds0mask
DS0 channel bitmask.
Definition wtap.h:1009
Protocol-specific subheader union.
Definition wtap.h:1311
struct eth_phdr eth
Definition wtap.h:1312
struct atm_phdr atm
Definition wtap.h:1313
struct ieee_802_11_phdr ieee_802_11
Definition wtap.h:1314
Top-level union of all Wiretap pseudo-headers.
Definition wtap.h:1355
struct l1event_phdr l1event
Definition wtap.h:1374
struct lapd_phdr lapd
Definition wtap.h:1368
struct i2c_phdr i2c
Definition wtap.h:1375
struct p2p_phdr p2p
Definition wtap.h:1361
struct ieee_802_11_phdr ieee_802_11
Definition wtap.h:1362
struct k12_phdr k12
Definition wtap.h:1367
struct btmon_phdr btmon
Definition wtap.h:1373
struct nokia_phdr nokia
Definition wtap.h:1378
struct ber_phdr ber
Definition wtap.h:1383
struct sita_phdr sita
Definition wtap.h:1371
struct bthci_phdr bthci
Definition wtap.h:1372
struct llcp_phdr llcp
Definition wtap.h:1379
struct mtp2_phdr mtp2
Definition wtap.h:1366
struct logcat_phdr logcat
Definition wtap.h:1380
struct atm_phdr atm
Definition wtap.h:1359
struct dte_dce_phdr dte_dce
Definition wtap.h:1357
struct isdn_phdr isdn
Definition wtap.h:1358
struct catapult_dct2000_phdr dct2000
Definition wtap.h:1369
struct irda_phdr irda
Definition wtap.h:1364
struct netmon_phdr netmon
Definition wtap.h:1381
struct gsm_um_phdr gsm_um
Definition wtap.h:1376
struct nettl_phdr nettl
Definition wtap.h:1365
struct cosine_phdr cosine
Definition wtap.h:1363
struct erf_mc_phdr erf
Definition wtap.h:1370
struct ascend_phdr ascend
Definition wtap.h:1360
struct nstr_phdr nstr
Definition wtap.h:1377
struct mmodule_phdr mmodule
Definition wtap.h:1384
struct procmon_phdr procmon
Definition wtap.h:1382
struct eth_phdr eth
Definition wtap.h:1356
WS_DLL_PUBLIC bool wtap_dump_can_open(int filetype)
Check if a file type can be opened for dumping.
Definition file_access.c:2070
WS_DLL_PUBLIC void wtap_buffer_append_epdu_tag(Buffer *buf, uint16_t epdu_tag, const uint8_t *data, uint16_t data_len)
Generates arbitrary packet data in "exported PDU" format and appends it to buf.
Definition wtap.c:2293
WS_DLL_PUBLIC GSList * wtap_get_all_file_extensions_list(void)
Return a list of all extensions that are used by all file types that we can read, including compresse...
Definition file_access.c:2014
WS_DLL_PUBLIC wtap_dumper * wtap_dump_open(const char *filename, int file_type_subtype, ws_compression_type compression_type, const wtap_dump_params *params, int *err, char **err_info)
Opens a new capture file for writing.
Definition file_access.c:2243
void(* wtap_new_secrets_callback_t)(uint32_t secrets_type, const void *secrets, unsigned size)
Callback type for receiving new decryption secrets.
Definition wtap.h:2204
WS_DLL_PUBLIC int wtap_register_file_type_subtype(const struct file_type_subtype_info *fi)
Register a file type/subtype.
Definition file_access.c:1174
WS_DLL_PUBLIC bool wtap_dump_flush(wtap_dumper *wdh, int *err)
Flushes the dump file.
Definition file_access.c:2565
WS_DLL_PUBLIC int64_t wtap_file_size(wtap *wth, int *err)
Get the size of the capture file.
Definition wtap.c:81
WS_DLL_PUBLIC GSList * wtap_get_all_capture_file_extensions_list(void)
Return a list of all extensions that are used by all capture file types, including compressed extensi...
Definition file_access.c:1965
WS_DLL_PUBLIC wtap_dumper * wtap_dump_open_tempfile(const char *tmpdir, char **filenamep, const char *pfx, int file_type_subtype, ws_compression_type compression_type, const wtap_dump_params *params, int *err, char **err_info)
Creates a dumper for a temporary file.
Definition file_access.c:2285
option_support_t
Indicates how a file format supports a given option type.
Definition wtap.h:1979
@ MULTIPLE_OPTIONS_SUPPORTED
Definition wtap.h:1982
@ OPTION_NOT_SUPPORTED
Definition wtap.h:1980
@ ONE_OPTION_SUPPORTED
Definition wtap.h:1981
WS_DLL_PUBLIC GSList * wtap_get_file_extensions_list(int file_type_subtype, bool include_compressed)
Return a list of file extensions that are used by the specified file type and subtype.
Definition file_access.c:1908
struct hashipv6 hashipv6_t
Hash table entry for a resolved or unresolved IPv6 address.
WS_DLL_PUBLIC GArray * wtap_get_savable_file_types_subtypes_for_file(int file_type_subtype, const GArray *file_encaps, uint32_t required_comment_types, ft_sort_order sort_order)
Get savable file type/subtype candidates for saving a capture file.
Definition file_access.c:1457
WS_DLL_PUBLIC char * wtap_unwritable_rec_type_err_string(const wtap_rec *rec)
Return an error string for WTAP_ERR_UNWRITABLE_REC_TYPE.
Definition wtap.c:1793
WS_DLL_PUBLIC int wtap_plugins_supported(void)
Query whether libwiretap plugin loading is available.
Definition wtap.c:57
WS_DLL_PUBLIC const char * wtap_encap_description(int encap)
Get a human-readable description for an encapsulation type.
Definition wtap.c:1415
WS_DLL_PUBLIC wtap_block_t wtap_file_get_shb(wtap *wth, unsigned shb_num)
Gets existing section header block, not for new file.
Definition wtap.c:146
WS_DLL_PUBLIC const char * wtap_file_type_subtype_description(int file_type_subtype)
Get a human-readable description for a file type/subtype.
Definition file_access.c:1633
WS_DLL_PUBLIC void wtap_dump_params_cleanup(wtap_dump_params *params)
Free memory associated with the wtap_dump_params when it is no longer in use by wtap_dumper.
Definition wtap.c:644
void(* wtap_new_ipv6_callback_t)(const ws_in6_addr *addrp, const char *name, const bool static_entry)
Callback type for registering new IPv6 hostnames.
Definition wtap.h:2180
WS_DLL_PUBLIC wtapng_iface_descriptions_t * wtap_file_get_idb_info(wtap *wth)
Gets existing interface descriptions.
Definition wtap.c:198
WS_DLL_PUBLIC void wtap_setup_packet_rec(wtap_rec *rec, int encap)
Set up a wtap_rec for a packet (REC_TYPE_PACKET).
Definition wtap.c:1803
WS_DLL_PUBLIC GSList * wtap_get_file_extension_type_extensions(unsigned extension_type)
Get the list of extensions for a file extension type.
Definition file_access.c:208
WS_DLL_PUBLIC void wtap_deregister_open_info(const char *name)
Deregister an open_info handler by name.
Definition file_access.c:500
struct hashipv4 hashipv4_t
Hash table entry for a resolved or unresolved IPv4 address.
WS_DLL_PUBLIC bool wtap_dump_close(wtap_dumper *wdh, bool *needs_reload, int *err, char **err_info)
Definition file_access.c:2594
WS_DLL_PUBLIC void wtap_set_bytes_dumped(wtap_dumper *wdh, uint64_t bytes_dumped)
Set the number of bytes dumped by a capture file.
Definition file_access.c:2638
WS_DLL_PUBLIC wtap_block_t wtap_get_next_interface_description(wtap *wth)
Gets next interface description.
Definition wtap.c:221
ft_sort_order
Controls the sort key used when enumerating or presenting file type lists.
Definition wtap.h:3080
@ FT_SORT_BY_NAME
Definition wtap.h:3081
@ FT_SORT_BY_DESCRIPTION
Definition wtap.h:3082
WS_DLL_PUBLIC bool wtap_read(wtap *wth, wtap_rec *rec, int *err, char **err_info, int64_t *offset)
Read the next record in the file, filling in *phdr and *buf.
Definition wtap.c:1864
WS_DLL_PUBLIC void wtap_buffer_append_epdu_string(Buffer *buf, uint16_t epdu_tag, const char *val)
Generates packet data for a string in "exported PDU" format. For filetype readers to transform non-pa...
Definition wtap.c:2340
WS_DLL_PUBLIC void wtap_free_idb_info(wtapng_iface_descriptions_t *idb_info)
Free's a interface description block and all of its members.
Definition wtap.c:396
WS_DLL_PUBLIC struct wtap * wtap_open_offline(const char *filename, unsigned int type, int *err, char **err_info, bool do_random, const char *app_env_var_prefix)
Open a capture file for offline analysis.
Definition file_access.c:848
WS_DLL_PUBLIC int wtap_dump_file_type_subtype(const wtap_dumper *wdh)
Get the file type subtype of a dump file.
Definition file_access.c:2626
WS_DLL_PUBLIC int wtap_file_type_subtype(wtap *wth)
Get the file type subtype.
Definition wtap.c:104
WS_DLL_PUBLIC void wtap_register_file_type_extension(const struct file_extension_info *ei)
Register file extension information for a file type.
Definition file_access.c:152
WS_DLL_PUBLIC const char * wtap_get_file_extension_type_name(int extension_type)
Get the short name for a file extension type.
Definition file_access.c:166
WS_DLL_PUBLIC bool wtap_dump_add_idb(wtap_dumper *wdh, wtap_block_t idb, int *err, char **err_info)
Add an IDB to the list of IDBs for a file we're writing. Makes a copy of the IDB, so it can be freed ...
Definition file_access.c:2527
wtap_open_type
Strategy used to identify a file format.
Definition wtap.h:1881
@ OPEN_INFO_MAGIC
Definition wtap.h:1882
@ OPEN_INFO_HEURISTIC
Definition wtap.h:1883
WS_DLL_PUBLIC void wtap_dump_params_discard_decryption_secrets(wtap_dump_params *params)
Remove any decryption secret information from the per-file information; used if we're stripping decry...
Definition wtap.c:631
WS_DLL_PUBLIC void wtap_fdclose(wtap *wth)
Close all file descriptors for the current wiretap file.
Definition wtap.c:1611
wtap_open_return_val
For registering file types that we can open.
Definition wtap.h:1852
@ WTAP_OPEN_MINE
Definition wtap.h:1854
@ WTAP_OPEN_NOT_MINE
Definition wtap.h:1853
@ WTAP_OPEN_ERROR
Definition wtap.h:1855
WS_DLL_PUBLIC uint64_t wtap_get_bytes_dumped(const wtap_dumper *wdh)
Get the number of bytes dumped by a packet capture.
Definition file_access.c:2632
#define MAX_ERF_EHDR
Definition wtap.h:1079
WS_DLL_PUBLIC void wtap_rec_reset(wtap_rec *rec)
Re-initialize a wtap_rec structure.
Definition wtap.c:2130
WS_DLL_PUBLIC bool wtap_has_open_info(const char *name)
Check if an open_info handler with the given name is registered.
Definition file_access.c:524
WS_DLL_PUBLIC int wtap_dump_required_file_encap_type(const GArray *file_encaps)
Determine the required per-file encapsulation type.
Definition file_access.c:1291
WS_DLL_PUBLIC void wtap_dump_discard_name_resolution(wtap_dumper *wdh)
Discard name resolution information for a dump file.
Definition file_access.c:2663
WS_DLL_PUBLIC int wtap_file_encap(wtap *wth)
Get the encapsulation type for the capture file.
Definition wtap.c:116
WS_DLL_PUBLIC void wtap_dump_params_discard_name_resolution(wtap_dump_params *params)
Remove any name resolution information from the per-file information; used if we're stripping name re...
Definition wtap.c:625
WS_DLL_PUBLIC wtap_dumper * wtap_dump_open_stdout(int file_type_subtype, ws_compression_type compression_type, const wtap_dump_params *params, int *err, char **err_info)
Creates a dumper for the standard output.
Definition file_access.c:2388
WS_DLL_PUBLIC void wtap_dump_params_init_no_idbs(wtap_dump_params *params, wtap *wth)
Initialize the per-file information based on an existing file, but don't copy over the interface info...
Definition wtap.c:602
WS_DLL_PUBLIC wtap_dumper * wtap_dump_fdopen(int fd, int file_type_subtype, ws_compression_type compression_type, const wtap_dump_params *params, int *err, char **err_info)
Creates a dumper for an existing file descriptor.
Definition file_access.c:2350
WS_DLL_PUBLIC void wtap_buffer_append_epdu_uint(Buffer *buf, uint16_t epdu_tag, uint32_t val)
Generates packet data for an unsigned integer in "exported PDU" format. For filetype readers to trans...
Definition wtap.c:2324
WS_DLL_PUBLIC void wtap_dump_discard_decryption_secrets(wtap_dumper *wdh)
Discard decryption secrets for a dump file.
Definition file_access.c:2675
WS_DLL_PUBLIC const nstime_t * wtap_file_start_ts(wtap *wth)
Get the start timestamp of the capture file.
Definition wtap.c:128
WS_DLL_PUBLIC int wtap_get_num_file_type_extensions(void)
Return the number of registered file type extension groups.
Definition file_access.c:160
WS_DLL_PUBLIC void wtap_setup_custom_block_rec(wtap_rec *rec, uint32_t pen, uint32_t payload_length, bool copy_allowed)
Set up a wtap_rec for a custom block.
Definition wtap.c:1853
WS_DLL_PUBLIC const char * wtap_strerror(int err)
Return a human-readable error string for a WTAP error code.
Definition wtap.c:1560
WS_DLL_PUBLIC unsigned wtap_file_get_shb_global_interface_id(wtap *wth, unsigned shb_num, uint32_t interface_id)
Gets the unique interface id for a SHB's interface.
Definition wtap.c:155
WS_DLL_PUBLIC unsigned wtap_file_get_num_shbs(wtap *wth)
Gets number of section header blocks.
Definition wtap.c:140
WS_DLL_PUBLIC void wtap_register_plugin(const wtap_plugin *plug)
Register a wiretap plugin.
WS_DLL_PUBLIC void wtap_deregister_file_type_subtype(const int file_type_subtype)
Deregister a previously registered file type/subtype.
Definition file_access.c:1251
WS_DLL_PUBLIC void wtap_dump_params_init(wtap_dump_params *params, wtap *wth)
Initialize the per-file information based on an existing file.
Definition wtap.c:575
WS_DLL_PUBLIC bool wtap_dump(wtap_dumper *wdh, const wtap_rec *rec, int *err, char **err_info)
Write a record to the dump file.
Definition file_access.c:2557
WS_DLL_PUBLIC void wtap_free_extensions_list(GSList *extensions)
Free a list of file extension strings returned by extension helpers.
Definition file_access.c:2041
WS_DLL_PUBLIC bool wtap_uses_lua_filehandler(const wtap *wth)
Check whether a wtap handle uses a Lua-based file handler.
Definition file_access.c:544
WS_DLL_PUBLIC void wtap_write_shb_comment(wtap *wth, char *comment)
Sets or replaces the section header comment.
Definition wtap.c:190
block_support_t
Indicates how many instances of a given block type a file format supports.
Definition wtap.h:2015
@ MULTIPLE_BLOCKS_SUPPORTED
Definition wtap.h:2018
@ ONE_BLOCK_SUPPORTED
Definition wtap.h:2017
@ BLOCK_NOT_SUPPORTED
Definition wtap.h:2016
struct wtap_wslua_file_info wtap_wslua_file_info_t
Companion metadata block for Lua-based file writers registered via wslua, carrying the write-open cal...
WS_DLL_PUBLIC void init_open_routines(void)
Initialize registered file open routines.
Definition file_access.c:419
WS_DLL_PUBLIC int64_t wtap_read_so_far(wtap *wth)
Return an approximation of the amount of data read sequentially.
Definition wtap.c:2084
WS_DLL_PUBLIC void wtap_file_add_decryption_secrets(wtap *wth, const wtap_block_t dsb)
Adds a Decryption Secrets Block to the open wiretap session.
Definition wtap.c:262
WS_DLL_PUBLIC void wtap_set_cb_new_secrets(wtap *wth, wtap_new_secrets_callback_t add_new_secrets)
Set the callback for receiving new decryption secrets.
Definition wtap.c:1732
WS_DLL_PUBLIC void wtap_setup_systemd_journal_export_rec(wtap_rec *rec)
Set up a wtap_rec for a systemd journal export entry.
Definition wtap.c:1843
WS_DLL_PUBLIC void wtap_cleanup(void)
Clean up libwiretap internal registrations and plugin state.
Definition wtap.c:2393
WS_DLL_PUBLIC int wtap_pcapng_file_type_subtype(void)
Get the file type/subtype identifier for pcapng.
Definition file_access.c:1730
void cleanup_open_routines(void)
Clean up registered file open routines.
Definition file_access.c:2860
WS_DLL_PUBLIC void wtap_cleareof(wtap *wth)
Clear EOF status for a wiretap file.
Definition wtap.c:1651
struct addrinfo_lists addrinfo_lists_t
Aggregates lists of resolved IPv4 and IPv6 addresses for writing into a pcapng Name Resolution Block ...
WS_DLL_PUBLIC const nstime_t * wtap_file_end_ts(wtap *wth)
Get the end timestamp of the capture file.
Definition wtap.c:134
WS_DLL_PUBLIC unsigned wtap_file_get_num_dsbs(wtap *wth)
Gets number of decryption secrets blocks.
Definition wtap.c:244
WS_DLL_PUBLIC ws_compression_type wtap_get_compression_type(wtap *wth)
Get the compression type used for the capture file.
Definition file_wrappers.c:46
WS_DLL_PUBLIC int wtap_pcap_nsec_file_type_subtype(void)
Get the file type/subtype identifier for pcap with nanosecond timestamps.
Definition file_access.c:1716
WS_DLL_PUBLIC void wtap_close(wtap *wth)
Fully close the wiretap file and release all resources.
Definition wtap.c:1620
WS_DLL_PUBLIC void wtap_setup_syscall_rec(wtap_rec *rec)
Set up a wtap_rec for a system call.
Definition pcapng-sysdig.c:40
WS_DLL_PUBLIC bool wtap_dump_set_addrinfo_list(wtap_dumper *wdh, addrinfo_lists_t *addrinfo_lists)
Set the address information list for a dump file.
Definition file_access.c:2652
WS_DLL_PUBLIC void wtap_rec_apply_snapshot(wtap_rec *rec, uint32_t snaplen)
Apply a snapshot length to a wtap_rec.
Definition wtap.c:2104
WS_DLL_PUBLIC int wtap_file_tsprec(wtap *wth)
Get the timestamp precision for the capture file.
Definition wtap.c:122
WS_DLL_PUBLIC void wtap_init(bool load_wiretap_plugins, const char *app_env_var_prefix, const struct file_extension_info *file_extensions, unsigned num_extensions)
Initialize the Wiretap library.
Definition wtap.c:2374
WS_DLL_PUBLIC bool wtap_dump_can_write_encap(int file_type_subtype, int encap)
Check if a file type/subtype supports writing a given encapsulation.
Definition file_access.c:1304
WS_DLL_PUBLIC bool wtap_dump_can_write(const GArray *file_encaps, uint32_t required_comment_types)
Determine whether a capture file can be written with the specified options.
Definition file_access.c:1406
WS_DLL_PUBLIC const char * wtap_file_type_subtype_name(int file_type_subtype)
Get a short name for a file type/subtype.
Definition file_access.c:1646
WS_DLL_PUBLIC void wtap_setup_ft_specific_report_rec(wtap_rec *rec, int file_type_subtype, unsigned record_type)
Set up a wtap_rec for a file-type specific report.
Definition wtap.c:1829
WS_DLL_PUBLIC int wtap_get_num_encap_types(void)
Return the number of known encapsulation types.
Definition wtap.c:1381
WS_DLL_PUBLIC void wtap_rec_cleanup(wtap_rec *rec)
Clean up a wtap_rec structure.
Definition wtap.c:2139
WS_DLL_PUBLIC const char * wtap_tsprec_string(int tsprec)
Convert a timestamp precision constant to a string.
Definition wtap.c:1458
WS_DLL_PUBLIC unsigned int open_info_name_to_type(const char *name)
Convert an open_info short name to its numeric type.
Definition file_access.c:582
WS_DLL_PUBLIC wtap_block_t wtap_file_get_dsb(wtap *wth, unsigned dsb_num)
Gets existing decryption secrets block, not for new file.
Definition wtap.c:253
WS_DLL_PUBLIC bool wtap_dump_can_compress(int file_type_subtype)
Check if a file type/subtype supports compression.
Definition file_access.c:2102
WS_DLL_PUBLIC unsigned wtap_snapshot_length(wtap *wth)
Get the snapshot length for the capture file.
Definition wtap.c:110
WS_DLL_PUBLIC bool wtap_fdreopen(wtap *wth, const char *filename, int *err)
Reopen the random-access file descriptor for the current file.
Definition file_access.c:1033
WS_DLL_PUBLIC void wtap_rec_init(wtap_rec *rec, size_t space)
Initialize a wtap_rec structure.
Definition wtap.c:2091
WS_DLL_PUBLIC bool wtap_file_discard_decryption_secrets(wtap *wth)
Remove any decryption secret information from the per-file information; used if we're stripping decry...
Definition wtap.c:271
WS_DLL_PUBLIC void wtap_setup_ft_specific_event_rec(wtap_rec *rec, int file_type_subtype, unsigned record_type)
Set up a wtap_rec for a file-type specific event.
Definition wtap.c:1815
WS_DLL_PUBLIC void wtap_set_cb_new_ipv6(wtap *wth, wtap_new_ipv6_callback_t add_new_ipv6)
Set the callback for adding new IPv6 hostnames.
Definition wtap.c:1705
WS_DLL_PUBLIC const char * wtap_default_file_extension(int file_type_subtype)
Get the default file extension for a file type/subtype.
Definition file_access.c:2057
WS_DLL_PUBLIC int wtap_pcap_file_type_subtype(void)
Get the file type/subtype identifier for classic pcap (microsecond timestamps).
Definition file_access.c:1702
WS_DLL_PUBLIC void wtap_register_open_info(struct open_info *oi, const bool first_routine)
Register an open_info probe/open handler.
Definition file_access.c:464
WS_DLL_PUBLIC int wtap_buffer_append_epdu_end(Buffer *buf)
Close off a set of "exported PDUs" added to the buffer. For filetype readers to transform non-packeti...
Definition wtap.c:2357
WS_DLL_PUBLIC bool wtap_addrinfo_list_empty(const addrinfo_lists_t *addrinfo_lists)
Checks if the address information list is empty.
Definition file_access.c:2644
WS_DLL_PUBLIC wtapng_dpib_lookup_info_t * wtap_file_get_dpib_lookup_info(wtap *wth)
Gets the DPIB lookup information for the current file.
Definition wtap.c:210
WS_DLL_PUBLIC block_support_t wtap_file_type_subtype_supports_block(int file_type_subtype, wtap_block_type_t type)
Determine whether a capture file format supports a given block type.
Definition file_access.c:1744
WS_DLL_PUBLIC GArray * wtap_get_writable_file_types_subtypes(ft_sort_order sort_order)
Get a list of all writable file type/subtype values.
Definition file_access.c:1569
WS_DLL_PUBLIC const char * wtap_encap_name(int encap)
Get a short name for an encapsulation type.
Definition wtap.c:1401
WS_DLL_PUBLIC int wtap_register_encap_type(const char *description, const char *name)
Register a new packet encapsulation type.
Definition wtap.c:1387
WS_DLL_PUBLIC char * wtap_get_debug_if_descr(const wtap_block_t if_descr, const int indent, const char *line_end)
Gets a debug string of an interface description.
Definition wtap.c:406
#define PHDR_802_11BE_MAX_USERS
Definition wtap.h:807
WS_DLL_PUBLIC wtap_block_t wtap_file_get_nrb(wtap *wth)
Gets existing name resolution block, not for new file.
Definition wtap.c:545
WS_DLL_PUBLIC void wtap_set_cb_new_ipv4(wtap *wth, wtap_new_ipv4_callback_t add_new_ipv4)
Set the callback for adding new IPv4 hostnames.
Definition wtap.c:1685
WS_DLL_PUBLIC int wtap_name_to_file_type_subtype(const char *name)
Convert a file type/subtype name to its identifier.
Definition file_access.c:1670
WS_DLL_PUBLIC void wtap_sequential_close(wtap *wth)
Close the sequential-access side of the file.
Definition wtap.c:1587
void(* wtap_new_ipv4_callback_t)(const unsigned addr, const char *name, const bool static_entry)
Callback type for registering new IPv4 hostnames.
Definition wtap.h:2156
WS_DLL_PUBLIC option_support_t wtap_file_type_subtype_supports_option(int file_type_subtype, wtap_block_type_t type, unsigned opttype)
Determine whether a capture file format supports a specific option for a block.
Definition file_access.c:1779
WS_DLL_PUBLIC int wtap_name_to_encap(const char *short_name)
Convert a short encapsulation name to its WTAP_ENCAP_ value.
Definition wtap.c:1429
WS_DLL_PUBLIC bool wtap_seek_read(wtap *wth, int64_t seek_off, wtap_rec *rec, int *err, char **err_info)
Read the record at a specified offset in a capture file, filling in *phdr and *buf.
Definition wtap.c:2161
wtap_block_type_t
Currently supported blocks; these are not the pcapng block type values for them, they're identifiers ...
Definition wtap_opttypes.h:234
struct wtapng_dpib_lookup_info_s wtapng_dpib_lookup_info_t
struct wtapng_iface_descriptions_s wtapng_iface_descriptions_t