Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
wtap.h
Go to the documentation of this file.
1
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
320/* After adding new item here, please also add new item to encap_table_base array */
321
322#define WTAP_NUM_ENCAP_TYPES wtap_get_num_encap_types()
323
324/* Value to be used as a file type/subtype value if the type is unknown */
325#define WTAP_FILE_TYPE_SUBTYPE_UNKNOWN -1
326
327/* timestamp precision (currently only these values are supported) */
328#define WTAP_TSPREC_UNKNOWN -2
329#define WTAP_TSPREC_PER_PACKET -1
331/*
332 * These values are the number of digits of precision after the integral part.
333 * They're the same as WS_TSPREC values; we define them here so that
334 * tools/make-enums.py sees them.
335 */
336#define WTAP_TSPREC_SEC 0
337#define WTAP_TSPREC_100_MSEC 1
338#define WTAP_TSPREC_DSEC 1
339#define WTAP_TSPREC_10_MSEC 2
340#define WTAP_TSPREC_CSEC 2
341#define WTAP_TSPREC_MSEC 3
342#define WTAP_TSPREC_100_USEC 4
343#define WTAP_TSPREC_10_USEC 5
344#define WTAP_TSPREC_USEC 6
345#define WTAP_TSPREC_100_NSEC 7
346#define WTAP_TSPREC_10_NSEC 8
347#define WTAP_TSPREC_NSEC 9
348/* if you add to the above, update wtap_tsprec_string() */
349
350/*
351 * Maximum packet sizes.
352 *
353 * For most link-layer types, we use 262144, which is currently
354 * libpcap's MAXIMUM_SNAPLEN.
355 *
356 * For WTAP_ENCAP_DBUS, the maximum is 128MiB, as per
357 *
358 * https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-messages
359 *
360 * For WTAP_ENCAP_EBHSCR, the maximum is 8MiB, as per
361 *
362 * https://www.elektrobit.com/ebhscr
363 *
364 * For WTAP_ENCAP_USBPCAP, the maximum is 128MiB, as per
365 *
366 * https://gitlab.com/wireshark/wireshark/-/issues/15985
367 *
368 * We don't want to write out files that specify a maximum packet size
369 * greater than 262144 if we don't have to, as software reading those
370 * files might allocate a buffer much larger than necessary, wasting memory.
371 */
372#define WTAP_MAX_PACKET_SIZE_STANDARD 262144U
373#define WTAP_MAX_PACKET_SIZE_USBPCAP (128U*1024U*1024U)
374#define WTAP_MAX_PACKET_SIZE_EBHSCR (32U*1024U*1024U)
375#define WTAP_MAX_PACKET_SIZE_DBUS (128U*1024U*1024U)
376
377/*
378 * "Pseudo-headers" are used to supply to the clients of wiretap
379 * per-packet information that's not part of the packet payload
380 * proper.
381 *
382 * NOTE: do not use pseudo-header structures to hold information
383 * used by the code to read a particular capture file type; to
384 * keep that sort of state information, define a private structure
385 * to hold that information in your code, and allocate one of those
386 * structures and set the "priv" member of the wth structure to
387 * point to the allocated structure in the "open" routine for that
388 * capture file type if the open succeeds. See various other capture
389 * file type handlers for examples of that.
390 */
391
392
393/* Packet "pseudo-header" information for Ethernet capture files. */
394struct eth_phdr {
395 int fcs_len; /* Number of bytes of FCS - -1 means "unknown" */
396};
397
398/* Packet "pseudo-header" information for capture files for traffic
399 between DTE and DCE. */
400#define FROM_DCE 0x80
402 uint8_t flags; /* ENCAP_LAPB, ENCAP_V120, ENCAP_FRELAY: 1st bit means From DCE */
403};
404
405/* Packet "pseudo-header" information for ISDN capture files. */
406
407/* Direction */
408struct isdn_phdr {
409 bool uton;
410 uint8_t channel; /* 0 = D-channel; n = B-channel n */
411};
412
413/* Packet "pseudo-header" for ATM capture files.
414 Not all of this information is supplied by all capture types.
415 These originally came from the Network General (DOS-based)
416 ATM Sniffer file format, but we've added some additional
417 items. */
418
419/*
420 * Status bits.
421 */
422#define ATM_RAW_CELL 0x01 /* true if the packet is a single cell */
423#define ATM_NO_HEC 0x02 /* true if the cell has HEC stripped out */
424#define ATM_AAL2_NOPHDR 0x04 /* true if the AAL2 PDU has no pseudo-header */
425#define ATM_REASSEMBLY_ERROR 0x08 /* true if this is an incompletely-reassembled PDU */
426
427/*
428 * AAL types.
429 */
430#define AAL_UNKNOWN 0 /* AAL unknown */
431#define AAL_1 1 /* AAL1 */
432#define AAL_2 2 /* AAL2 */
433#define AAL_3_4 3 /* AAL3/4 */
434#define AAL_5 4 /* AAL5 */
435#define AAL_USER 5 /* User AAL */
436#define AAL_SIGNALLING 6 /* Signaling AAL */
437#define AAL_OAMCELL 7 /* OAM cell */
438
439/*
440 * Traffic types.
441 */
442#define TRAF_UNKNOWN 0 /* Unknown */
443#define TRAF_LLCMX 1 /* LLC multiplexed (RFC 1483) */
444#define TRAF_VCMX 2 /* VC multiplexed (RFC 1483) */
445#define TRAF_LANE 3 /* LAN Emulation */
446#define TRAF_ILMI 4 /* ILMI */
447#define TRAF_FR 5 /* Frame Relay */
448#define TRAF_SPANS 6 /* FORE SPANS */
449#define TRAF_IPSILON 7 /* Ipsilon */
450#define TRAF_UMTS_FP 8 /* UMTS Frame Protocol */
451#define TRAF_GPRS_NS 9 /* GPRS Network Services */
452#define TRAF_SSCOP 10 /* SSCOP */
453
454/*
455 * Traffic subtypes.
456 */
457#define TRAF_ST_UNKNOWN 0 /* Unknown */
458
459/*
460 * For TRAF_VCMX:
461 */
462#define TRAF_ST_VCMX_802_3_FCS 1 /* 802.3 with an FCS */
463#define TRAF_ST_VCMX_802_4_FCS 2 /* 802.4 with an FCS */
464#define TRAF_ST_VCMX_802_5_FCS 3 /* 802.5 with an FCS */
465#define TRAF_ST_VCMX_FDDI_FCS 4 /* FDDI with an FCS */
466#define TRAF_ST_VCMX_802_6_FCS 5 /* 802.6 with an FCS */
467#define TRAF_ST_VCMX_802_3 7 /* 802.3 without an FCS */
468#define TRAF_ST_VCMX_802_4 8 /* 802.4 without an FCS */
469#define TRAF_ST_VCMX_802_5 9 /* 802.5 without an FCS */
470#define TRAF_ST_VCMX_FDDI 10 /* FDDI without an FCS */
471#define TRAF_ST_VCMX_802_6 11 /* 802.6 without an FCS */
472#define TRAF_ST_VCMX_FRAGMENTS 12 /* Fragments */
473#define TRAF_ST_VCMX_BPDU 13 /* BPDU */
474
475/*
476 * For TRAF_LANE:
477 */
478#define TRAF_ST_LANE_LE_CTRL 1 /* LANE: LE Ctrl */
479#define TRAF_ST_LANE_802_3 2 /* LANE: 802.3 */
480#define TRAF_ST_LANE_802_5 3 /* LANE: 802.5 */
481#define TRAF_ST_LANE_802_3_MC 4 /* LANE: 802.3 multicast */
482#define TRAF_ST_LANE_802_5_MC 5 /* LANE: 802.5 multicast */
483
484/*
485 * For TRAF_IPSILON:
486 */
487#define TRAF_ST_IPSILON_FT0 1 /* Ipsilon: Flow Type 0 */
488#define TRAF_ST_IPSILON_FT1 2 /* Ipsilon: Flow Type 1 */
489#define TRAF_ST_IPSILON_FT2 3 /* Ipsilon: Flow Type 2 */
490
491struct atm_phdr {
492 uint32_t flags; /* status flags */
493 uint8_t aal; /* AAL of the traffic */
494 uint8_t type; /* traffic type */
495 uint8_t subtype; /* traffic subtype */
496 uint16_t vpi; /* virtual path identifier */
497 uint16_t vci; /* virtual circuit identifier */
498 uint8_t aal2_cid; /* channel id */
499 uint16_t channel; /* link: 0 for DTE->DCE, 1 for DCE->DTE */
500 uint16_t cells; /* number of cells */
501 uint16_t aal5t_u2u; /* user-to-user indicator */
502 uint16_t aal5t_len; /* length of the packet */
503 uint32_t aal5t_chksum; /* checksum for AAL5 packet */
504};
505
506/* Packet "pseudo-header" for the output from "wandsession", "wannext",
507 "wandisplay", and similar commands on Lucent/Ascend access equipment. */
508
509#define ASCEND_MAX_STR_LEN 64
510
511#define ASCEND_PFX_WDS_X 1
512#define ASCEND_PFX_WDS_R 2
513#define ASCEND_PFX_WDD 3
514#define ASCEND_PFX_ISDN_X 4
515#define ASCEND_PFX_ISDN_R 5
516#define ASCEND_PFX_ETHER 6
517
519 uint16_t type; /* ASCEND_PFX_*, as defined above */
520 char user[ASCEND_MAX_STR_LEN]; /* Username, from wandsession header */
521 uint32_t sess; /* Session number, from wandsession header */
522 char call_num[ASCEND_MAX_STR_LEN]; /* Called number, from WDD header */
523 uint32_t chunk; /* Chunk number, from WDD header */
524 uint32_t task; /* Task number */
525};
526
527/* Packet "pseudo-header" for point-to-point links with direction flags. */
528struct p2p_phdr {
529 bool sent;
530};
531
532/*
533 * Packet "pseudo-header" information for 802.11.
534 * Radio information is only present in this form for
535 * WTAP_ENCAP_IEEE_802_11_WITH_RADIO. This is used for file formats in
536 * which the radio information isn't provided as a pseudo-header in the
537 * packet data. It is also used by the dissectors for the pseudo-headers
538 * in the packet data to supply radio information, in a form independent
539 * of the file format and pseudo-header format, to the "802.11 radio"
540 * dissector.
541 *
542 * Signal strength, etc. information:
543 *
544 * Raw signal strength can be measured in milliwatts.
545 * It can also be represented as dBm, which is 10 times the log base 10
546 * of the signal strength in mW.
547 *
548 * The Receive Signal Strength Indicator is an integer in the range 0 to 255.
549 * The actual RSSI value for a given signal strength is dependent on the
550 * vendor (and perhaps on the adapter). The maximum possible RSSI value
551 * is also dependent on the vendor and perhaps the adapter.
552 *
553 * The signal strength can be represented as a percentage, which is 100
554 * times the ratio of the RSSI and the maximum RSSI.
555 */
556
557/*
558 * PHY types.
559 */
560#define PHDR_802_11_PHY_UNKNOWN 0 /* PHY not known */
561#define PHDR_802_11_PHY_11_FHSS 1 /* 802.11 FHSS */
562#define PHDR_802_11_PHY_11_IR 2 /* 802.11 IR */
563#define PHDR_802_11_PHY_11_DSSS 3 /* 802.11 DSSS */
564#define PHDR_802_11_PHY_11B 4 /* 802.11b */
565#define PHDR_802_11_PHY_11A 5 /* 802.11a */
566#define PHDR_802_11_PHY_11G 6 /* 802.11g */
567#define PHDR_802_11_PHY_11N 7 /* 802.11n */
568#define PHDR_802_11_PHY_11AC 8 /* 802.11ac */
569#define PHDR_802_11_PHY_11AD 9 /* 802.11ad */
570#define PHDR_802_11_PHY_11AH 10 /* 802.11ah */
571#define PHDR_802_11_PHY_11AX 11 /* 802.11ax */
572#define PHDR_802_11_PHY_11BE 12 /* 802.11be - EHT */
573
574/*
575 * PHY-specific information.
576 */
577
578/*
579 * 802.11 legacy FHSS.
580 */
582 unsigned has_hop_set:1;
583 unsigned has_hop_pattern:1;
584 unsigned has_hop_index:1;
585
586 uint8_t hop_set; /* Hop set */
587 uint8_t hop_pattern; /* Hop pattern */
588 uint8_t hop_index; /* Hop index */
589};
590
591/*
592 * 802.11b.
593 */
595 /* Which of this information is present? */
596 unsigned has_short_preamble:1;
597
598 bool short_preamble; /* Short preamble */
599};
600
601/*
602 * 802.11a.
603 */
605 /* Which of this information is present? */
606 unsigned has_channel_type:1;
607 unsigned has_turbo_type:1;
608
609 unsigned channel_type:2;
610 unsigned turbo_type:2;
611};
612
613/*
614 * Channel type values.
615 */
616#define PHDR_802_11A_CHANNEL_TYPE_NORMAL 0
617#define PHDR_802_11A_CHANNEL_TYPE_HALF_CLOCKED 1
618#define PHDR_802_11A_CHANNEL_TYPE_QUARTER_CLOCKED 2
619
620/*
621 * "Turbo" is an Atheros proprietary extension with 40 MHz-wide channels.
622 * It can be dynamic or static.
623 *
624 * See
625 *
626 * http://wifi-insider.com/atheros/turbo.htm
627 */
628#define PHDR_802_11A_TURBO_TYPE_NORMAL 0
629#define PHDR_802_11A_TURBO_TYPE_TURBO 1 /* If we don't know whether it's static or dynamic */
630#define PHDR_802_11A_TURBO_TYPE_DYNAMIC_TURBO 2
631#define PHDR_802_11A_TURBO_TYPE_STATIC_TURBO 3
632
633/*
634 * 802.11g.
635 *
636 * This should only be used for packets sent using OFDM; packets
637 * sent on an 11g network using DSSS should have the PHY set to
638 * 11b.
639 */
641 /* Which of this information is present? */
642 unsigned has_mode:1;
643
644 uint32_t mode; /* Various proprietary extensions */
645};
646
647/*
648 * Mode values.
649 */
650#define PHDR_802_11G_MODE_NORMAL 0
651#define PHDR_802_11G_MODE_SUPER_G 1 /* Atheros Super G */
652
653/*
654 * 802.11n.
655 */
657 /* Which of this information is present? */
658 unsigned has_mcs_index:1;
659 unsigned has_bandwidth:1;
660 unsigned has_short_gi:1;
661 unsigned has_greenfield:1;
662 unsigned has_fec:1;
663 unsigned has_stbc_streams:1;
664 unsigned has_ness:1;
665
666 uint16_t mcs_index; /* MCS index */
667 unsigned bandwidth; /* Bandwidth = 20 MHz, 40 MHz, etc. */
668 unsigned short_gi:1; /* True for short guard interval */
669 unsigned greenfield:1; /* True for greenfield, short for mixed */
670 unsigned fec:1; /* FEC: 0 = BCC, 1 = LDPC */
671 unsigned stbc_streams:2; /* Number of STBC streams */
672 unsigned ness; /* Number of extension spatial streams */
673};
674
675/*
676 * Bandwidth values; used for both 11n and 11ac.
677 */
678#define PHDR_802_11_BANDWIDTH_20_MHZ 0 /* 20 MHz */
679#define PHDR_802_11_BANDWIDTH_40_MHZ 1 /* 40 MHz */
680#define PHDR_802_11_BANDWIDTH_20_20L 2 /* 20 + 20L, 40 MHz */
681#define PHDR_802_11_BANDWIDTH_20_20U 3 /* 20 + 20U, 40 MHz */
682#define PHDR_802_11_BANDWIDTH_80_MHZ 4 /* 80 MHz */
683#define PHDR_802_11_BANDWIDTH_40_40L 5 /* 40 + 40L MHz, 80 MHz */
684#define PHDR_802_11_BANDWIDTH_40_40U 6 /* 40 + 40U MHz, 80 MHz */
685#define PHDR_802_11_BANDWIDTH_20LL 7 /* ???, 80 MHz */
686#define PHDR_802_11_BANDWIDTH_20LU 8 /* ???, 80 MHz */
687#define PHDR_802_11_BANDWIDTH_20UL 9 /* ???, 80 MHz */
688#define PHDR_802_11_BANDWIDTH_20UU 10 /* ???, 80 MHz */
689#define PHDR_802_11_BANDWIDTH_160_MHZ 11 /* 160 MHz */
690#define PHDR_802_11_BANDWIDTH_80_80L 12 /* 80 + 80L, 160 MHz */
691#define PHDR_802_11_BANDWIDTH_80_80U 13 /* 80 + 80U, 160 MHz */
692#define PHDR_802_11_BANDWIDTH_40LL 14 /* ???, 160 MHz */
693#define PHDR_802_11_BANDWIDTH_40LU 15 /* ???, 160 MHz */
694#define PHDR_802_11_BANDWIDTH_40UL 16 /* ???, 160 MHz */
695#define PHDR_802_11_BANDWIDTH_40UU 17 /* ???, 160 MHz */
696#define PHDR_802_11_BANDWIDTH_20LLL 18 /* ???, 160 MHz */
697#define PHDR_802_11_BANDWIDTH_20LLU 19 /* ???, 160 MHz */
698#define PHDR_802_11_BANDWIDTH_20LUL 20 /* ???, 160 MHz */
699#define PHDR_802_11_BANDWIDTH_20LUU 21 /* ???, 160 MHz */
700#define PHDR_802_11_BANDWIDTH_20ULL 22 /* ???, 160 MHz */
701#define PHDR_802_11_BANDWIDTH_20ULU 23 /* ???, 160 MHz */
702#define PHDR_802_11_BANDWIDTH_20UUL 24 /* ???, 160 MHz */
703#define PHDR_802_11_BANDWIDTH_20UUU 25 /* ???, 160 MHz */
704
705/*
706 * 802.11ac.
707 */
709 /* Which of this information is present? */
710 unsigned has_stbc:1;
711 unsigned has_txop_ps_not_allowed:1;
712 unsigned has_short_gi:1;
713 unsigned has_short_gi_nsym_disambig:1;
714 unsigned has_ldpc_extra_ofdm_symbol:1;
715 unsigned has_beamformed:1;
716 unsigned has_bandwidth:1;
717 unsigned has_fec:1;
718 unsigned has_group_id:1;
719 unsigned has_partial_aid:1;
720
721 unsigned stbc:1; /* 1 if all spatial streams have STBC */
722 unsigned txop_ps_not_allowed:1;
723 unsigned short_gi:1; /* True for short guard interval */
724 unsigned short_gi_nsym_disambig:1;
725 unsigned ldpc_extra_ofdm_symbol:1;
726 unsigned beamformed:1;
727 uint8_t bandwidth; /* Bandwidth = 20 MHz, 40 MHz, etc. */
728 uint8_t mcs[4]; /* MCS index per user */
729 uint8_t nss[4]; /* NSS per user */
730 uint8_t fec; /* Bit array of FEC per user: 0 = BCC, 1 = LDPC */
731 uint8_t group_id;
732 uint16_t partial_aid;
733};
734
735/*
736 * 802.11ad.
737 */
738
739/*
740 * Min and Max frequencies for 802.11ad and a macro for checking for 802.11ad.
741 */
742
743#define PHDR_802_11AD_MIN_FREQUENCY 57000
744#define PHDR_802_11AD_MAX_FREQUENCY 71000
745
746#define IS_80211AD(frequency) (((frequency) >= PHDR_802_11AD_MIN_FREQUENCY) &&\
747 ((frequency) <= PHDR_802_11AD_MAX_FREQUENCY))
748
750 /* Which of this information is present? */
751 unsigned has_mcs_index:1;
752
753 uint8_t mcs; /* MCS index */
754};
755
756/*
757 * 802.11ax (HE).
758 */
760 /* Which of this information is present? */
761 unsigned has_mcs_index:1;
762 unsigned has_bwru:1;
763 unsigned has_gi:1;
764
765 uint8_t nsts:4; /* Number of Space-time Streams */
766 uint8_t mcs:4; /* MCS index */
767 uint8_t bwru:4; /* Bandwidth/RU allocation */
768 uint8_t gi:2; /* Guard Interval */
769};
770
771/*
772 * 802.11be (EHT).
773 */
775 unsigned sta_id_known:1;
776 unsigned mcs_known:1;
777 unsigned coding_known:1;
778 unsigned rsv_known:1;
779 unsigned nsts_known:1;
780 unsigned bf_known:1;
781 unsigned spatial_config_known:1;
782 unsigned data_for_this_user:1;
783 unsigned sta_id:11;
784 unsigned ldpc_coding:1;
785 unsigned mcs:4;
786 unsigned nsts:4;
787 unsigned rsv:1;
788 unsigned beamform:1;
789 unsigned rsv2:2;
790};
791
792#define PHDR_802_11BE_MAX_USERS 4
794 /* Which of this information is present? */
795 unsigned has_ru_mru_size:1;
796 unsigned has_gi:1;
797 unsigned has_bandwidth:1;
798
799 uint8_t bandwidth;
800 uint8_t ru_mru_size:4; /* RU/MRU allocation */
801 uint8_t gi:2; /* Guard Interval */
802 uint8_t num_users;
803 struct ieee_802_11be_user_info user[PHDR_802_11BE_MAX_USERS]; /* Adding info for only upto 4 users */
804};
805
806
828
830 int fcs_len; /* Number of bytes of FCS - -1 means "unknown" */
831 unsigned decrypted:1; /* true if frame is decrypted even if "protected" bit is set */
832 unsigned datapad:1; /* true if frame has padding between 802.11 header and payload */
833 unsigned no_a_msdus:1; /* true if we should ignore the A-MSDU bit */
834 unsigned phy; /* PHY type */
835 union ieee_802_11_phy_info phy_info;
836
837 /* Which of this information is present? */
838 unsigned has_channel:1;
839 unsigned has_frequency:1;
840 unsigned has_data_rate:1;
841 unsigned has_signal_percent:1;
842 unsigned has_noise_percent:1;
843 unsigned has_signal_dbm:1;
844 unsigned has_noise_dbm:1;
845 unsigned has_signal_db:1;
846 unsigned has_noise_db:1;
847 unsigned has_tsf_timestamp:1;
848 unsigned has_aggregate_info:1; /* aggregate flags and ID */
849 unsigned has_zero_length_psdu_type:1; /* zero-length PSDU type */
850
851 uint16_t channel; /* Channel number */
852 uint32_t frequency; /* Channel center frequency */
853 uint16_t data_rate; /* Data rate, in .5 Mb/s units */
854 uint8_t signal_percent; /* Signal level, as a percentage */
855 uint8_t noise_percent; /* Noise level, as a percentage */
856 int8_t signal_dbm; /* Signal level, in dBm */
857 int8_t noise_dbm; /* Noise level, in dBm */
858 uint8_t signal_db; /* Signal level, in dB from an arbitrary point */
859 uint8_t noise_db; /* Noise level, in dB from an arbitrary point */
860 uint64_t tsf_timestamp;
861 uint32_t aggregate_flags; /* A-MPDU flags */
862 uint32_t aggregate_id; /* ID for A-MPDU reassembly */
863 uint8_t zero_length_psdu_type; /* type of zero-length PSDU */
864};
865
866/*
867 * A-MPDU flags.
868 */
869#define PHDR_802_11_LAST_PART_OF_A_MPDU 0x00000001 /* this is the last part of an A-MPDU */
870#define PHDR_802_11_A_MPDU_DELIM_CRC_ERROR 0x00000002 /* delimiter CRC error after this part */
871
872/*
873 * Zero-length PSDU types.
874 */
875#define PHDR_802_11_SOUNDING_PSDU 0 /* sounding PPDU */
876#define PHDR_802_11_DATA_NOT_CAPTURED 1 /* data not captured, (e.g. multi-user PPDU) */
877#define PHDR_802_11_0_LENGTH_PSDU_VENDOR_SPECIFIC 0xff
878
879/* Packet "pseudo-header" for the output from CoSine L2 debug output. */
880
881#define COSINE_MAX_IF_NAME_LEN 128
882
883#define COSINE_ENCAP_TEST 1
884#define COSINE_ENCAP_PPoATM 2
885#define COSINE_ENCAP_PPoFR 3
886#define COSINE_ENCAP_ATM 4
887#define COSINE_ENCAP_FR 5
888#define COSINE_ENCAP_HDLC 6
889#define COSINE_ENCAP_PPP 7
890#define COSINE_ENCAP_ETH 8
891#define COSINE_ENCAP_UNKNOWN 99
892
893#define COSINE_DIR_TX 1
894#define COSINE_DIR_RX 2
895
897 uint8_t encap; /* COSINE_ENCAP_* as defined above */
898 uint8_t direction; /* COSINE_DIR_*, as defined above */
899 char if_name[COSINE_MAX_IF_NAME_LEN]; /* Encap & Logical I/F name */
900 uint16_t pro; /* Protocol */
901 uint16_t off; /* Offset */
902 uint16_t pri; /* Priority */
903 uint16_t rm; /* Rate Marking */
904 uint16_t err; /* Error Code */
905};
906
907/* Packet "pseudo-header" for IrDA capture files. */
908
909/*
910 * Direction of the packet
911 */
912#define IRDA_INCOMING 0x0000
913#define IRDA_OUTGOING 0x0004
914
915/*
916 * "Inline" log messages produced by IrCOMM2k on Windows
917 */
918#define IRDA_LOG_MESSAGE 0x0100 /* log message */
919#define IRDA_MISSED_MSG 0x0101 /* missed log entry or frame */
920
921/*
922 * Differentiate between frames and log messages
923 */
924#define IRDA_CLASS_FRAME 0x0000
925#define IRDA_CLASS_LOG 0x0100
926#define IRDA_CLASS_MASK 0xFF00
927
928struct irda_phdr {
929 uint16_t pkttype; /* packet type */
930};
931
932/* Packet "pseudo-header" for nettl (HP-UX) capture files. */
933
935 uint16_t subsys;
936 uint32_t devid;
937 uint32_t kind;
938 int32_t pid;
939 uint32_t uid;
940};
941
942/* Packet "pseudo-header" for MTP2 files. */
943
944#define MTP2_ANNEX_A_NOT_USED 0
945#define MTP2_ANNEX_A_USED 1
946#define MTP2_ANNEX_A_USED_UNKNOWN 2
947
948struct mtp2_phdr {
949 uint8_t sent;
950 uint8_t annex_a_used;
951 uint16_t link_number;
952};
953
961typedef union {
967 struct {
968 uint16_t vp;
969 uint16_t vc;
970 uint16_t cid;
971 } atm;
972
979 uint32_t ds0mask;
981
982struct k12_phdr {
983 uint32_t input;
984 const char *input_name;
985 const char *stack_file;
986 uint32_t input_type;
987 k12_input_info_t input_info;
988 uint8_t *extra_info;
989 uint32_t extra_length;
990 void* stuff;
991};
992
993#define K12_PORT_DS0S 0x00010008
994#define K12_PORT_DS1 0x00100008
995#define K12_PORT_ATMPVC 0x01020000
996
1005 uint16_t pkttype;
1006 uint8_t we_network;
1007};
1008
1017 union {
1019 struct atm_phdr atm;
1020 struct p2p_phdr p2p;
1021 } inner_pseudo_header;
1022
1023 int64_t seek_off;
1024 struct wtap *wth;
1025};
1026
1027/*
1028 * Endace Record Format pseudo header
1029 */
1030struct erf_phdr {
1031 uint64_t ts; /* Time stamp */
1032 uint8_t type;
1033 uint8_t flags;
1034 uint16_t rlen;
1035 uint16_t lctr;
1036 uint16_t wlen;
1037};
1038
1039struct erf_ehdr {
1040 uint64_t ehdr;
1041};
1042
1043/*
1044 * ERF pseudo header with optional subheader
1045 * (Multichannel or Ethernet)
1046 */
1047
1048#define MAX_ERF_EHDR 16
1049
1051 uint8_t offset;
1052 uint8_t pad;
1053};
1054
1066 struct erf_ehdr ehdr_list[MAX_ERF_EHDR];
1073 union {
1075 uint32_t mc_hdr;
1076 uint32_t aal2_hdr;
1078};
1079
1080#define SITA_FRAME_DIR_TXED (0x00) /* values of sita_phdr.flags */
1081#define SITA_FRAME_DIR_RXED (0x01)
1082#define SITA_FRAME_DIR (0x01) /* mask */
1083#define SITA_ERROR_NO_BUFFER (0x80)
1084
1085#define SITA_SIG_DSR (0x01) /* values of sita_phdr.signals */
1086#define SITA_SIG_DTR (0x02)
1087#define SITA_SIG_CTS (0x04)
1088#define SITA_SIG_RTS (0x08)
1089#define SITA_SIG_DCD (0x10)
1090#define SITA_SIG_UNDEF1 (0x20)
1091#define SITA_SIG_UNDEF2 (0x40)
1092#define SITA_SIG_UNDEF3 (0x80)
1093
1094#define SITA_ERROR_TX_UNDERRUN (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_TXED) */
1095#define SITA_ERROR_TX_CTS_LOST (0x02)
1096#define SITA_ERROR_TX_UART_ERROR (0x04)
1097#define SITA_ERROR_TX_RETX_LIMIT (0x08)
1098#define SITA_ERROR_TX_UNDEF1 (0x10)
1099#define SITA_ERROR_TX_UNDEF2 (0x20)
1100#define SITA_ERROR_TX_UNDEF3 (0x40)
1101#define SITA_ERROR_TX_UNDEF4 (0x80)
1102
1103#define SITA_ERROR_RX_FRAMING (0x01) /* values of sita_phdr.errors1 (if SITA_FRAME_DIR_RXED) */
1104#define SITA_ERROR_RX_PARITY (0x02)
1105#define SITA_ERROR_RX_COLLISION (0x04)
1106#define SITA_ERROR_RX_FRAME_LONG (0x08)
1107#define SITA_ERROR_RX_FRAME_SHORT (0x10)
1108#define SITA_ERROR_RX_UNDEF1 (0x20)
1109#define SITA_ERROR_RX_UNDEF2 (0x40)
1110#define SITA_ERROR_RX_UNDEF3 (0x80)
1111
1112#define SITA_ERROR_RX_NONOCTET_ALIGNED (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_RXED) */
1113#define SITA_ERROR_RX_ABORT (0x02)
1114#define SITA_ERROR_RX_CD_LOST (0x04)
1115#define SITA_ERROR_RX_DPLL (0x08)
1116#define SITA_ERROR_RX_OVERRUN (0x10)
1117#define SITA_ERROR_RX_FRAME_LEN_VIOL (0x20)
1118#define SITA_ERROR_RX_CRC (0x40)
1119#define SITA_ERROR_RX_BREAK (0x80)
1120
1121#define SITA_PROTO_UNUSED (0x00) /* values of sita_phdr.proto */
1122#define SITA_PROTO_BOP_LAPB (0x01)
1123#define SITA_PROTO_ETHERNET (0x02)
1124#define SITA_PROTO_ASYNC_INTIO (0x03)
1125#define SITA_PROTO_ASYNC_BLKIO (0x04)
1126#define SITA_PROTO_ALC (0x05)
1127#define SITA_PROTO_UTS (0x06)
1128#define SITA_PROTO_PPP_HDLC (0x07)
1129#define SITA_PROTO_SDLC (0x08)
1130#define SITA_PROTO_TOKENRING (0x09)
1131#define SITA_PROTO_I2C (0x10)
1132#define SITA_PROTO_DPM_LINK (0x11)
1133#define SITA_PROTO_BOP_FRL (0x12)
1134
1136 uint8_t sita_flags;
1137 uint8_t sita_signals;
1138 uint8_t sita_errors1;
1139 uint8_t sita_errors2;
1140 uint8_t sita_proto;
1141};
1142
1143/*pseudo header for Bluetooth HCI*/
1145 bool sent;
1146 uint32_t channel;
1147};
1148
1149#define BTHCI_CHANNEL_COMMAND 1
1150#define BTHCI_CHANNEL_ACL 2
1151#define BTHCI_CHANNEL_SCO 3
1152#define BTHCI_CHANNEL_EVENT 4
1153#define BTHCI_CHANNEL_ISO 5
1154
1155/* pseudo header for WTAP_ENCAP_BLUETOOTH_LINUX_MONITOR */
1157 uint16_t adapter_id;
1158 uint16_t opcode;
1159};
1160
1161/* pseudo header for WTAP_ENCAP_LAYER1_EVENT */
1163 bool uton;
1164};
1165
1166/* * I2C pseudo header */
1167struct i2c_phdr {
1168 uint8_t is_event;
1169 uint8_t bus;
1170 uint32_t flags;
1171};
1172
1173/* pseudo header for WTAP_ENCAP_GSM_UM */
1175 bool uplink;
1176 uint8_t channel;
1177 /* The following are only populated for downlink */
1178 uint8_t bsic;
1179 uint16_t arfcn;
1180 uint32_t tdma_frame;
1181 uint8_t error;
1182 uint16_t timeshift;
1183};
1184
1185#define GSM_UM_CHANNEL_UNKNOWN 0
1186#define GSM_UM_CHANNEL_BCCH 1
1187#define GSM_UM_CHANNEL_SDCCH 2
1188#define GSM_UM_CHANNEL_SACCH 3
1189#define GSM_UM_CHANNEL_FACCH 4
1190#define GSM_UM_CHANNEL_CCCH 5
1191#define GSM_UM_CHANNEL_RACH 6
1192#define GSM_UM_CHANNEL_AGCH 7
1193#define GSM_UM_CHANNEL_PCH 8
1194
1195/* Pseudo-header for nstrace packets */
1197 int64_t rec_offset;
1198 int32_t rec_len;
1199 uint8_t nicno_offset;
1200 uint8_t nicno_len;
1201 uint8_t dir_offset;
1202 uint8_t dir_len;
1203 uint16_t eth_offset;
1204 uint8_t pcb_offset;
1205 uint8_t l_pcb_offset;
1206 uint8_t rec_type;
1207 uint8_t vlantag_offset;
1208 uint8_t coreid_offset;
1209 uint8_t srcnodeid_offset;
1210 uint8_t destnodeid_offset;
1211 uint8_t clflags_offset;
1212 uint8_t src_vmname_len_offset;
1213 uint8_t dst_vmname_len_offset;
1214 uint8_t ns_activity_offset;
1215 uint8_t data_offset;
1216};
1217
1218/* Packet "pseudo-header" for Nokia output */
1220 struct eth_phdr eth;
1221 uint8_t stuff[4]; /* mysterious stuff */
1222};
1223
1224#define LLCP_PHDR_FLAG_SENT 0
1226 uint8_t adapter;
1227 uint8_t flags;
1228};
1229
1230/* pseudo header for WTAP_ENCAP_LOGCAT */
1232 int version;
1233};
1234
1243 uint8_t* title;
1244 uint32_t descLength;
1245 uint8_t* description;
1247 unsigned sub_encap;
1259};
1260
1261/* Record "pseudo-header" information for header data from MS ProcMon files. */
1262
1263struct procmon_process_t;
1264
1275
1276
1280struct ber_phdr {
1281 const char *pathname;
1282};
1283
1284
1289 uint8_t chunktype;
1290};
1291
1329
1330/*
1331 * Record type values.
1332 *
1333 * This list will expand over time, so don't assume everything will
1334 * forever be one of the types listed below.
1335 *
1336 * For file-type-specific records, the "ftsrec" field of the pseudo-header
1337 * contains a file-type-specific subtype value, such as a block type for
1338 * a pcapng file.
1339 *
1340 * An "event" is an indication that something happened during the capture
1341 * process, such as a status transition of some sort on the network.
1342 * These should, ideally, have a time stamp and, if they're relevant to
1343 * a particular interface on a multi-interface capture, should also have
1344 * an interface ID. The data for the event is file-type-specific and
1345 * subtype-specific. These should be dissected and displayed just as
1346 * packets are.
1347 *
1348 * A "report" supplies information not corresponding to an event;
1349 * for example, a pcapng Interface Statistics Block would be a report,
1350 * as it doesn't correspond to something happening on the network.
1351 * They may have a time stamp, and should be dissected and displayed
1352 * just as packets are.
1353 *
1354 * We distinguish between "events" and "reports" so that, for example,
1355 * the packet display can show the delta between a packet and an event
1356 * but not show the delta between a packet and a report, as the time
1357 * stamp of a report may not correspond to anything interesting on
1358 * the network but the time stamp of an event would.
1359 *
1360 * XXX - are there any file-type-specific records that *shouldn't* be
1361 * dissected and displayed? If so, they should be parsed and the
1362 * information in them stored somewhere, and used somewhere, whether
1363 * it's just used when saving the file in its native format or also
1364 * used to parse *other* file-type-specific records.
1365 *
1366 * These would be similar to, for example, pcapng Interface Description
1367 * Blocks, for which the position within the file is significant only
1368 * in that an IDB for an interface must appear before any packets from
1369 * the interface; the fact that an IDB appears at some point doesn't
1370 * necessarily mean something happened in the capture at that point.
1371 * Name Resolution Blocks are another example of such a record.
1372 *
1373 * (XXX - if you want to have a record that says "this interface first
1374 * showed up at this time", that needs to be a separate record type
1375 * from the IDB. We *could* add a "New Interface Description Block",
1376 * with a time stamp, for that purpose, but we'd *still* have to
1377 * provide IDBs for those interfaces, for compatibility with programs
1378 * that don't know about the NIDB. An ISB with only an isb_starttime
1379 * option would suffice for this purpose, so nothing needs to be
1380 * added to pcapng for this.)
1381 */
1382#define REC_TYPE_PACKET 0
1383#define REC_TYPE_FT_SPECIFIC_EVENT 1
1384#define REC_TYPE_FT_SPECIFIC_REPORT 2
1385#define REC_TYPE_SYSCALL 3
1386#define REC_TYPE_SYSTEMD_JOURNAL_EXPORT 4
1387#define REC_TYPE_CUSTOM_BLOCK 5
1392typedef struct {
1393 uint32_t caplen;
1394 uint32_t len;
1396 uint32_t interface_id;
1398 union wtap_pseudo_header pseudo_header;
1400
1401/*
1402 * The pcapng specification says "The word is encoded as an unsigned
1403 * 32-bit integer, using the endianness of the Section Header Block
1404 * scope it is in. In the following table, the bits are numbered with
1405 * 0 being the most-significant bit and 31 being the least-significant
1406 * bit of the 32-bit unsigned integer."
1407 *
1408 * From that, the direction, in bits 0 and 1, is at the *top* of the word.
1409 *
1410 * However, several implementations, such as:
1411 *
1412 * the Wireshark pcapng file reading code;
1413 *
1414 * macOS libpcap and tcpdump;
1415 *
1416 * text2pcap;
1417 *
1418 * and probably the software that generated the capture in bug 11665;
1419 *
1420 * treat 0 as the *least*-significant bit and bit 31 being the *most*-
1421 * significant bit of the flags word, and put the direction at the
1422 * *bottom* of the word.
1423 *
1424 * For now, we go with the known implementations.
1425 */
1426
1427/* Direction field of the packet flags */
1428#define PACK_FLAGS_DIRECTION_MASK 0x00000003 /* unshifted */
1429#define PACK_FLAGS_DIRECTION_SHIFT 0
1430#define PACK_FLAGS_DIRECTION(pack_flags) (((pack_flags) & PACK_FLAGS_DIRECTION_MASK) >> PACK_FLAGS_DIRECTION_SHIFT)
1431#define PACK_FLAGS_DIRECTION_UNKNOWN 0
1432#define PACK_FLAGS_DIRECTION_INBOUND 1
1433#define PACK_FLAGS_DIRECTION_OUTBOUND 2
1434
1435/* Reception type field of the packet flags */
1436#define PACK_FLAGS_RECEPTION_TYPE_MASK 0x0000001C /* unshifted */
1437#define PACK_FLAGS_RECEPTION_TYPE_SHIFT 2
1438#define PACK_FLAGS_RECEPTION_TYPE(pack_flags) (((pack_flags) & PACK_FLAGS_RECEPTION_TYPE_MASK) >> PACK_FLAGS_RECEPTION_TYPE_SHIFT)
1439#define PACK_FLAGS_RECEPTION_TYPE_UNSPECIFIED 0
1440#define PACK_FLAGS_RECEPTION_TYPE_UNICAST 1
1441#define PACK_FLAGS_RECEPTION_TYPE_MULTICAST 2
1442#define PACK_FLAGS_RECEPTION_TYPE_BROADCAST 3
1443#define PACK_FLAGS_RECEPTION_TYPE_PROMISCUOUS 4
1444
1445/* FCS length field of the packet flags */
1446#define PACK_FLAGS_FCS_LENGTH_MASK 0x000001E0 /* unshifted */
1447#define PACK_FLAGS_FCS_LENGTH_SHIFT 5
1448#define PACK_FLAGS_FCS_LENGTH(pack_flags) (((pack_flags) & PACK_FLAGS_FCS_LENGTH_MASK) >> PACK_FLAGS_FCS_LENGTH_SHIFT)
1449
1450/* Reserved bits of the packet flags */
1451#define PACK_FLAGS_RESERVED_MASK 0x0000FE00
1452
1453/* Link-layer-dependent errors of the packet flags */
1454
1455/* For Ethernet and possibly some other network types */
1456#define PACK_FLAGS_CRC_ERROR 0x01000000
1457#define PACK_FLAGS_PACKET_TOO_LONG 0x02000000
1458#define PACK_FLAGS_PACKET_TOO_SHORT 0x04000000
1459#define PACK_FLAGS_WRONG_INTER_FRAME_GAP 0x08000000
1460#define PACK_FLAGS_UNALIGNED_FRAME 0x10000000
1461#define PACK_FLAGS_START_FRAME_DELIMITER_ERROR 0x20000000
1462#define PACK_FLAGS_PREAMBLE_ERROR 0x40000000
1463#define PACK_FLAGS_SYMBOL_ERROR 0x80000000
1464
1465/* Construct a pack_flags value from its subfield values */
1466#define PACK_FLAGS_VALUE(direction, reception_type, fcs_length, ll_dependent_errors) \
1467 (((direction) << 30) | \
1468 ((reception_type) << 27) | \
1469 ((fcs_length) << 23) | \
1470 (ll_dependent_errors))
1471
1475typedef struct {
1477 unsigned record_type;
1478 uint32_t record_len;
1480 union wtap_pseudo_header pseudo_header;
1482
1486typedef struct {
1487 const char *pathname;
1488 unsigned record_type;
1490 uint64_t timestamp;
1491 uint64_t thread_id;
1492 uint32_t event_len;
1494 uint32_t nparams;
1495 uint32_t flags;
1496 uint16_t event_type;
1497 uint16_t cpu_id;
1499
1503typedef struct {
1504 uint32_t record_len;
1506
1510typedef struct {
1511 uint32_t pen;
1512 uint32_t length;
1515
1516/*
1517 * The largest nstime.secs value that can be put into an unsigned
1518 * 32-bit quantity.
1519 *
1520 * We assume that time_t is signed; it is signed on Windows/MSVC and
1521 * on many UN*Xes.
1522 *
1523 * So, if time_t is 32-bit, we define this as INT32_MAX, as that's
1524 * the largest value a time_t can have, and it fits in an unsigned
1525 * 32-bit quantity. If it's 64-bit or larger, we define this as
1526 * UINT32_MAX, as, even if it's signed, it can be as large as
1527 * UINT32_MAX, and that's the largest value that can fit in
1528 * a 32-bit unsigned quantity.
1529 *
1530 * Comparing against this, rather than against G_MAXINT2, when checking
1531 * whether a time stamp will fit in a 32-bit unsigned integer seconds
1532 * field in a capture file being written avoids signed vs. unsigned
1533 * warnings if time_t is a signed 32-bit type.
1534 *
1535 * XXX - what if time_t is unsigned? Are there any platforms where
1536 * it is?
1537 */
1538#define WTAP_NSTIME_32BIT_SECS_MAX ((time_t)(sizeof(time_t) > sizeof(int32_t) ? UINT32_MAX : INT32_MAX))
1539
1540typedef struct wtap_rec {
1541 unsigned rec_type; /* what type of record is this? */
1542 uint32_t presence_flags; /* what stuff do we have? */
1543 unsigned section_number; /* section, within file, containing this record */
1544 nstime_t ts; /* time stamp */
1545 int tsprec; /* WTAP_TSPREC_ value for this record */
1546 const char *rec_type_name; /* name of this record type */
1547 union {
1548 wtap_packet_header packet_header;
1549 wtap_ft_specific_header ft_specific_header;
1550 wtap_syscall_header syscall_header;
1551 wtap_systemd_journal_export_header systemd_journal_export_header;
1552 wtap_custom_block_header custom_block_header;
1553 } rec_header;
1554
1555 /*
1556 * XXX - some if not all of the rec_header information may belong
1557 * here, or may already be here. Eliminating rec_header in favor
1558 * of this might simplify the process of adding new record/block
1559 * types. For example, some of it might belong in block->mandatory_data.
1560 *
1561 * It also has a type field that's somewhat equivalent to rec_type.
1562 *
1563 * It's null for some record types.
1564 */
1565 wtap_block_t block; /* block information */
1566 bool block_was_modified; /* true if ANY aspect of the block has been modified */
1567
1568 /*
1569 * We use a Buffer so that we don't have to allocate and free
1570 * a buffer for the options for each record.
1571 */
1572 Buffer options_buf; /* file-type specific data */
1573
1574 /* Buffer for the record data. */
1575 Buffer data;
1576} wtap_rec;
1577
1578/*
1579 * Bits in presence_flags, indicating which of the fields we have.
1580 *
1581 * For the time stamp, we may need some more flags to indicate
1582 * whether the time stamp is an absolute date-and-time stamp, an
1583 * absolute time-only stamp (which can make relative time
1584 * calculations tricky, as you could in theory have two time
1585 * stamps separated by an unknown number of days), or a time stamp
1586 * relative to some unspecified time in the past (see mpeg.c).
1587 *
1588 * There is no presence flag for len - there has to be *some* length
1589 * value for the packet. (The "captured length" can be missing if
1590 * the file format doesn't report a captured length distinct from
1591 * the on-the-network length because the application(s) producing those
1592 * files don't support slicing packets.)
1593 *
1594 * There could be a presence flag for the packet encapsulation - if it's
1595 * absent, use the file encapsulation - but it's not clear that's useful;
1596 * we currently do that in the module for the file format.
1597 *
1598 * Only WTAP_HAS_TS and WTAP_HAS_SECTION_NUMBER apply to all record types.
1599 */
1600#define WTAP_HAS_TS 0x00000001
1601#define WTAP_HAS_CAP_LEN 0x00000002
1602#define WTAP_HAS_INTERFACE_ID 0x00000004
1603#define WTAP_HAS_SECTION_NUMBER 0x00000008
1605/*
1606 * The old max name length define, both for backwards compatibility and because
1607 * other name types (in epan) use it. While Name Resolution Blocks (NRBs) only
1608 * support IPv4 and IPv6 currently, they could later support other name types.
1609 */
1610#ifndef MAXNAMELEN
1611#define MAXNAMELEN 64 /* max name length (most names: DNS labels, services, eth) */
1612#endif
1613
1614#ifndef MAXDNSNAMELEN
1615#define MAXDNSNAMELEN 256 /* max total length of a domain name in DNS */
1616#endif
1617
1618typedef struct hashipv4 {
1619 unsigned addr;
1620 uint8_t flags; /* B0 dummy_entry, B1 resolve, B2 If the address is used in the trace */
1621 char ip[WS_INET_ADDRSTRLEN];
1622 char name[MAXDNSNAMELEN];
1623 char cidr_addr[WS_INET_CIDRADDRSTRLEN];
1624} hashipv4_t;
1625
1626typedef struct hashipv6 {
1627 uint8_t addr[16];
1628 uint8_t flags; /* B0 dummy_entry, B1 resolve, B2 If the address is used in the trace */
1629 char ip6[WS_INET6_ADDRSTRLEN];
1630 char name[MAXDNSNAMELEN];
1631 char cidr_addr[WS_INET6_CIDRADDRSTRLEN];
1632} hashipv6_t;
1633
1641
1682
1683/* Zero-initializer for wtap_dump_params. */
1684#define WTAP_DUMP_PARAMS_INIT {.snaplen=0}
1685
1686struct wtap_dumper;
1687
1688typedef struct wtap wtap;
1689typedef struct wtap_dumper wtap_dumper;
1690
1691typedef struct wtap_reader *FILE_T;
1692
1693/* Similar to the wtap_open_routine_info for open routines, the following
1694 * wtap_wslua_file_info struct is used by wslua code for Lua-based file writers.
1695 *
1696 * This concept is necessary because when wslua goes to invoke the
1697 * registered dump/write_open routine callback in Lua, it needs the ref number representing
1698 * the hooked function inside Lua. This will be stored in the thing pointed to
1699 * by the void* data here. This 'data' pointer will be copied into the
1700 * wtap_dumper struct's 'void* data' member when calling the dump_open function,
1701 * which is how wslua finally retrieves it. Unlike wtap_dumper's 'priv' member, its
1702 * 'data' member is not free'd in wtap_dump_close().
1703 */
1704typedef struct wtap_wslua_file_info {
1705 int (*wslua_can_write_encap)(int, void*); /* a can_write_encap func for wslua uses */
1706 void* wslua_data; /* holds the wslua data */
1708
1748 const char *name;
1750 const char *extensions;
1751};
1752
1784
1785typedef wtap_open_return_val (*wtap_open_routine_t)(struct wtap*, int *,
1786 char **);
1787
1812
1819WS_DLL_PUBLIC void init_open_routines(void);
1820
1827void cleanup_open_routines(void);
1828
1856 const char *name;
1858 wtap_open_routine_t open_routine;
1859 const char *extensions;
1862};
1863
1870WS_DLL_PUBLIC struct open_info *open_routines;
1871
1872/*
1873 * Types of comments.
1874 */
1880#define WTAP_COMMENT_PER_SECTION 0x00000001 /* per-file/per-file-section */
1881
1887#define WTAP_COMMENT_PER_INTERFACE 0x00000002 /* per-interface */
1888
1894#define WTAP_COMMENT_PER_PACKET 0x00000004 /* per-packet */
1895
1911
1922
1928#define OPTION_TYPES_SUPPORTED(option_type_array) \
1929 array_length(option_type_array), option_type_array
1930
1936#define NO_OPTIONS_SUPPORTED \
1937 0, NULL
1938
1947
1957
1958#define BLOCKS_SUPPORTED(block_type_array) \
1959 array_length(block_type_array), block_type_array
1960
1965 const char *description;
1966
1971 const char *name;
1972
1978
1986
1991
1996
2001
2010 int (*can_write_encap)(int);
2011
2016 bool (*dump_open)(wtap_dumper *, int *, char **);
2017
2023};
2024
2025#define WTAP_TYPE_AUTO 0
2026
2035WS_DLL_PUBLIC
2036void wtap_init(bool load_wiretap_plugins, const char* app_env_var_prefix, const struct file_extension_info* file_extensions, unsigned num_extensions);
2037
2055WS_DLL_PUBLIC
2056struct wtap* wtap_open_offline(const char *filename, unsigned int type, int *err,
2057 char **err_info, bool do_random, const char* app_env_var_prefix);
2058
2067WS_DLL_PUBLIC
2068void wtap_cleareof(wtap *wth);
2069
2080typedef void (*wtap_new_ipv4_callback_t) (const unsigned addr, const char *name, const bool static_entry);
2081
2091WS_DLL_PUBLIC
2093
2104typedef void (*wtap_new_ipv6_callback_t) (const ws_in6_addr *addrp, const char *name, const bool static_entry);
2105
2115WS_DLL_PUBLIC
2117
2128typedef void (*wtap_new_secrets_callback_t)(uint32_t secrets_type, const void *secrets, unsigned size);
2129
2139WS_DLL_PUBLIC
2141
2157WS_DLL_PUBLIC
2158bool wtap_read(wtap *wth, wtap_rec *rec, int *err, char **err_info,
2159 int64_t *offset);
2160
2177WS_DLL_PUBLIC
2178bool wtap_seek_read(wtap *wth, int64_t seek_off, wtap_rec *rec,
2179 int *err, char **err_info);
2180
2189WS_DLL_PUBLIC
2190void wtap_rec_init(wtap_rec *rec, size_t space);
2191
2200WS_DLL_PUBLIC
2201void wtap_rec_apply_snapshot(wtap_rec *rec, uint32_t snaplen);
2202
2210WS_DLL_PUBLIC
2211void wtap_rec_reset(wtap_rec *rec);
2212
2220WS_DLL_PUBLIC
2221void wtap_rec_cleanup(wtap_rec *rec);
2222
2232WS_DLL_PUBLIC
2234
2243WS_DLL_PUBLIC
2244void wtap_setup_packet_rec(wtap_rec *rec, int encap);
2245
2255WS_DLL_PUBLIC
2257 unsigned record_type);
2258
2268WS_DLL_PUBLIC
2270 unsigned record_type);
2271
2279WS_DLL_PUBLIC
2281
2289WS_DLL_PUBLIC
2291
2303WS_DLL_PUBLIC
2304void wtap_setup_custom_block_rec(wtap_rec *rec, uint32_t pen,
2305 uint32_t payload_length, bool copy_allowed);
2306
2315WS_DLL_PUBLIC
2316ws_compression_type wtap_get_compression_type(wtap *wth);
2317
2318/*** get various information snippets about the current file ***/
2319
2329WS_DLL_PUBLIC
2330int64_t wtap_read_so_far(wtap *wth);
2331
2341WS_DLL_PUBLIC
2342int64_t wtap_file_size(wtap *wth, int *err);
2343
2352WS_DLL_PUBLIC
2353unsigned wtap_snapshot_length(wtap *wth);
2354
2363WS_DLL_PUBLIC
2365
2374WS_DLL_PUBLIC
2375int wtap_file_encap(wtap *wth);
2376
2385WS_DLL_PUBLIC
2386int wtap_file_tsprec(wtap *wth);
2387
2396WS_DLL_PUBLIC
2397const nstime_t* wtap_file_start_ts(wtap *wth);
2398
2407WS_DLL_PUBLIC
2408const nstime_t* wtap_file_end_ts(wtap *wth);
2409
2417WS_DLL_PUBLIC
2418unsigned wtap_file_get_num_shbs(wtap *wth);
2419
2432WS_DLL_PUBLIC
2433wtap_block_t wtap_file_get_shb(wtap *wth, unsigned shb_num);
2434
2445WS_DLL_PUBLIC
2446void wtap_write_shb_comment(wtap *wth, char *comment);
2447
2459WS_DLL_PUBLIC
2460unsigned wtap_file_get_shb_global_interface_id(wtap *wth, unsigned shb_num, uint32_t interface_id);
2461
2472WS_DLL_PUBLIC
2474
2475
2482WS_DLL_PUBLIC
2484
2494WS_DLL_PUBLIC
2496
2509WS_DLL_PUBLIC
2511
2523WS_DLL_PUBLIC
2524char *wtap_get_debug_if_descr(const wtap_block_t if_descr,
2525 const int indent,
2526 const char* line_end);
2527
2540WS_DLL_PUBLIC
2542
2550WS_DLL_PUBLIC
2551unsigned wtap_file_get_num_dsbs(wtap *wth);
2552
2563WS_DLL_PUBLIC
2564wtap_block_t wtap_file_get_dsb(wtap *wth, unsigned dsb_num);
2565
2574WS_DLL_PUBLIC
2576
2585WS_DLL_PUBLIC
2587
2595WS_DLL_PUBLIC
2596void wtap_fdclose(wtap *wth);
2597
2608WS_DLL_PUBLIC
2609bool wtap_fdreopen(wtap *wth, const char *filename, int *err);
2610
2618WS_DLL_PUBLIC
2619void wtap_sequential_close(wtap *wth);
2620
2628WS_DLL_PUBLIC
2629void wtap_close(wtap *wth);
2630
2639WS_DLL_PUBLIC
2640bool wtap_dump_can_open(int filetype);
2641
2652WS_DLL_PUBLIC
2653int wtap_dump_required_file_encap_type(const GArray *file_encaps);
2654
2665WS_DLL_PUBLIC
2666bool wtap_dump_can_write_encap(int file_type_subtype, int encap);
2667
2676WS_DLL_PUBLIC
2678
2689WS_DLL_PUBLIC
2690void wtap_dump_params_init(wtap_dump_params *params, wtap *wth);
2691
2708WS_DLL_PUBLIC
2710
2718WS_DLL_PUBLIC
2720
2728WS_DLL_PUBLIC
2730
2737WS_DLL_PUBLIC
2739
2752WS_DLL_PUBLIC
2753wtap_dumper* wtap_dump_open(const char *filename, int file_type_subtype,
2754 ws_compression_type compression_type, const wtap_dump_params *params,
2755 int *err, char **err_info);
2756
2772WS_DLL_PUBLIC
2773wtap_dumper* wtap_dump_open_tempfile(const char *tmpdir, char **filenamep,
2774 const char *pfx,
2775 int file_type_subtype, ws_compression_type compression_type,
2776 const wtap_dump_params *params, int *err, char **err_info);
2777
2790WS_DLL_PUBLIC
2792 ws_compression_type compression_type, const wtap_dump_params *params,
2793 int *err, char **err_info);
2794
2806WS_DLL_PUBLIC
2808 ws_compression_type compression_type, const wtap_dump_params *params,
2809 int *err, char **err_info);
2810
2822WS_DLL_PUBLIC
2823bool wtap_dump_add_idb(wtap_dumper *wdh, wtap_block_t idb, int *err,
2824 char **err_info);
2825
2836WS_DLL_PUBLIC
2837bool wtap_dump(wtap_dumper *wdh, const wtap_rec *rec, int *err, char **err_info);
2838
2846WS_DLL_PUBLIC
2847bool wtap_dump_flush(wtap_dumper *wdh, int *err);
2848
2855WS_DLL_PUBLIC
2857
2864WS_DLL_PUBLIC
2865int64_t wtap_get_bytes_dumped(const wtap_dumper *wdh);
2866
2873WS_DLL_PUBLIC
2874void wtap_set_bytes_dumped(wtap_dumper *wdh, int64_t bytes_dumped);
2875
2876struct addrinfo;
2877
2884WS_DLL_PUBLIC
2886
2894WS_DLL_PUBLIC
2896
2902WS_DLL_PUBLIC
2904
2910WS_DLL_PUBLIC
2912
2929WS_DLL_PUBLIC
2930bool wtap_dump_close(wtap_dumper *wdh, bool *needs_reload,
2931 int *err, char **err_info);
2932
2949WS_DLL_PUBLIC
2950bool wtap_dump_can_write(const GArray *file_encaps, uint32_t required_comment_types);
2951
2965WS_DLL_PUBLIC
2966void wtap_buffer_append_epdu_tag(Buffer *buf, uint16_t epdu_tag, const uint8_t *data, uint16_t data_len);
2967
2976WS_DLL_PUBLIC
2977void wtap_buffer_append_epdu_uint(Buffer *buf, uint16_t epdu_tag, uint32_t val);
2978
2987WS_DLL_PUBLIC
2988void wtap_buffer_append_epdu_string(Buffer *buf, uint16_t epdu_tag, const char *val);
2989
2998WS_DLL_PUBLIC
3000
3008
3025WS_DLL_PUBLIC
3026GArray *wtap_get_savable_file_types_subtypes_for_file(int file_type_subtype,
3027 const GArray *file_encaps, uint32_t required_comment_types,
3028 ft_sort_order sort_order);
3029
3041WS_DLL_PUBLIC
3043
3044/*** various file type/subtype functions ***/
3054WS_DLL_PUBLIC
3055const char *wtap_file_type_subtype_description(int file_type_subtype);
3056
3065WS_DLL_PUBLIC
3066const char *wtap_file_type_subtype_name(int file_type_subtype);
3067
3077WS_DLL_PUBLIC
3078int wtap_name_to_file_type_subtype(const char *name);
3079
3085WS_DLL_PUBLIC
3087
3093WS_DLL_PUBLIC
3095
3101WS_DLL_PUBLIC
3103
3114WS_DLL_PUBLIC
3116 wtap_block_type_t type);
3117
3132WS_DLL_PUBLIC
3134 wtap_block_type_t type, unsigned opttype);
3135
3159WS_DLL_PUBLIC
3161
3177WS_DLL_PUBLIC
3179
3194WS_DLL_PUBLIC
3195void wtap_free_extensions_list(GSList *extensions);
3196
3208WS_DLL_PUBLIC
3209const char *wtap_default_file_extension(int file_type_subtype);
3210
3226WS_DLL_PUBLIC
3227GSList *wtap_get_file_extensions_list(int file_type_subtype, bool include_compressed);
3228
3237WS_DLL_PUBLIC
3238const char *wtap_encap_name(int encap);
3239
3248WS_DLL_PUBLIC
3249const char *wtap_encap_description(int encap);
3250
3260WS_DLL_PUBLIC
3261int wtap_name_to_encap(const char *short_name);
3262
3271WS_DLL_PUBLIC
3272const char* wtap_tsprec_string(int tsprec);
3273
3282WS_DLL_PUBLIC
3283const char *wtap_strerror(int err);
3284
3285
3286/*** get available number of file types and encapsulations ***/
3295WS_DLL_PUBLIC
3297
3305WS_DLL_PUBLIC
3306int wtap_get_num_encap_types(void);
3307
3308/*** get information for file type extension ***/
3309
3321WS_DLL_PUBLIC
3322const char *wtap_get_file_extension_type_name(int extension_type);
3323
3335WS_DLL_PUBLIC
3336GSList *wtap_get_file_extension_type_extensions(unsigned extension_type);
3337
3338/*** dynamically register new file types and encapsulations ***/
3339
3351WS_DLL_PUBLIC
3353
3364typedef struct {
3365 void (*register_wtap_module)(void);
3366} wtap_plugin;
3367
3379WS_DLL_PUBLIC
3381
3382
3396WS_DLL_PUBLIC
3397int wtap_plugins_supported(void);
3398
3399/* Registration and open-info */
3400
3406WS_DLL_PUBLIC
3407void wtap_register_open_info(struct open_info *oi, const bool first_routine);
3408
3414WS_DLL_PUBLIC
3415bool wtap_has_open_info(const char *name);
3416
3422WS_DLL_PUBLIC
3423bool wtap_uses_lua_filehandler(const wtap* wth);
3424
3429WS_DLL_PUBLIC
3430void wtap_deregister_open_info(const char *name);
3431
3432/* Type mapping and registration */
3433
3439WS_DLL_PUBLIC
3440unsigned int open_info_name_to_type(const char *name);
3441
3447WS_DLL_PUBLIC
3449
3454WS_DLL_PUBLIC
3455void wtap_deregister_file_type_subtype(const int file_type_subtype);
3456
3457/* Encapsulation and cleanup */
3464WS_DLL_PUBLIC
3465int wtap_register_encap_type(const char *description, const char *name);
3466
3470WS_DLL_PUBLIC
3471void wtap_cleanup(void);
3472
3476#define WTAP_ERR_NOT_REGULAR_FILE -1
3479#define WTAP_ERR_RANDOM_OPEN_PIPE -2
3482#define WTAP_ERR_FILE_UNKNOWN_FORMAT -3
3485#define WTAP_ERR_UNSUPPORTED -4
3489#define WTAP_ERR_CANT_WRITE_TO_PIPE -5
3492#define WTAP_ERR_CANT_OPEN -6
3495#define WTAP_ERR_UNWRITABLE_FILE_TYPE -7
3498#define WTAP_ERR_UNWRITABLE_ENCAP -8
3502#define WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED -9
3505#define WTAP_ERR_CANT_WRITE -10
3508#define WTAP_ERR_CANT_CLOSE -11
3511#define WTAP_ERR_SHORT_READ -12
3514#define WTAP_ERR_BAD_FILE -13
3517#define WTAP_ERR_SHORT_WRITE -14
3520#define WTAP_ERR_UNC_OVERFLOW -15
3523#define WTAP_ERR_RANDOM_OPEN_STDIN -16
3526#define WTAP_ERR_COMPRESSION_NOT_SUPPORTED -17
3529#define WTAP_ERR_CANT_SEEK -18
3532#define WTAP_ERR_CANT_SEEK_COMPRESSED -19
3535#define WTAP_ERR_DECOMPRESS -20
3538#define WTAP_ERR_INTERNAL -21
3541#define WTAP_ERR_PACKET_TOO_LARGE -22
3545#define WTAP_ERR_CHECK_WSLUA -23
3549#define WTAP_ERR_UNWRITABLE_REC_TYPE -24
3552#define WTAP_ERR_UNWRITABLE_REC_DATA -25
3555#define WTAP_ERR_DECOMPRESSION_NOT_SUPPORTED -26
3558#define WTAP_ERR_TIME_STAMP_NOT_SUPPORTED -27
3562#define WTAP_ERR_REC_MALFORMED -28
3566#ifdef __cplusplus
3567}
3568#endif /* __cplusplus */
3569
3570#endif /* __WTAP_H__ */
3571
3572/*
3573 * Editor modelines - https://www.wireshark.org/tools/modelines.html
3574 *
3575 * Local variables:
3576 * c-basic-offset: 4
3577 * tab-width: 8
3578 * indent-tabs-mode: nil
3579 * End:
3580 *
3581 * vi: set shiftwidth=4 tabstop=8 expandtab:
3582 * :indentSize=4:tabSize=8:noTabs=true:
3583 */
#define WS_INET_CIDRADDRSTRLEN
Convert an IPv6 address to a string representation.
Definition inet_addr.h:155
Definition packet-eth.h:15
A dynamic byte buffer with adjustable start and end positions.
Definition buffer.h:30
Definition wtap.h:1637
GList * ipv6_addr_list
Definition wtap.h:1639
GList * ipv4_addr_list
Definition wtap.h:1638
Definition wtap.h:518
Definition wtap.h:491
Pseudo-header for BER (Basic Encoding Rules) data files.
Definition wtap.h:1280
const char * pathname
Definition wtap.h:1281
Definition wtap.h:1144
Definition wtap.h:1156
Pseudo-header for Catapult DCT2000 captures.
Definition wtap.h:1016
int64_t seek_off
Definition wtap.h:1023
struct wtap * wth
Definition wtap.h:1024
struct isdn_phdr isdn
Definition wtap.h:1018
struct p2p_phdr p2p
Definition wtap.h:1020
struct atm_phdr atm
Definition wtap.h:1019
Definition wtap.h:896
Definition wtap.h:401
Represents a 128-bit IPv6 address.
Definition inet_addr.h:27
Definition wtap.h:1039
Extended pseudo-header for ERF multi-channel (MC) packet records.
Definition wtap.h:1063
union erf_mc_phdr::@648 subhdr
Protocol-specific subheader union.
struct erf_ehdr ehdr_list[16]
Definition wtap.h:1066
struct erf_phdr phdr
Definition wtap.h:1064
uint32_t aal2_hdr
Definition wtap.h:1076
uint32_t mc_hdr
Definition wtap.h:1075
Definition wtap.h:1030
Definition wtap.h:394
For registering extensions used for file formats.
Definition wtap.h:1747
const char * extensions
Definition wtap.h:1750
const char * name
Definition wtap.h:1748
bool is_capture_file
Definition wtap.h:1749
Definition wtap.h:1961
wtap_wslua_file_info_t * wslua_info
Definition wtap.h:2022
const char * name
Definition wtap.h:1971
const char * additional_file_extensions
Definition wtap.h:1985
int(* can_write_encap)(int)
Definition wtap.h:2010
const struct supported_block_type * supported_blocks
Definition wtap.h:2000
bool writing_must_seek
Definition wtap.h:1990
const char * description
Definition wtap.h:1965
bool(* dump_open)(wtap_dumper *, int *, char **)
Definition wtap.h:2016
size_t num_supported_blocks
Definition wtap.h:1995
const char * default_file_extension
Definition wtap.h:1977
Definition wtap.h:1174
Definition wtap.h:1618
Definition wtap.h:1626
Definition wtap.h:1167
Definition pcapio.c:117
Definition wtap.h:581
Definition wtap.h:829
Definition wtap.h:604
Definition wtap.h:708
Definition wtap.h:749
Definition wtap.h:759
Definition wtap.h:594
Definition wtap.h:774
Definition wtap.h:793
Definition wtap.h:640
Definition wtap.h:656
Definition tvbuff_lz77huff.c:32
Definition wtap.h:928
Definition wtap.h:408
Definition wtap.h:982
Definition wtap.h:1162
LAPD pseudo-header for packet metadata.
Definition wtap.h:1004
uint8_t we_network
Definition wtap.h:1006
uint16_t pkttype
Definition wtap.h:1005
Definition wtap.h:1225
Definition wtap.h:1231
Pseudo-header for M-Module binary files.
Definition wtap.h:1288
uint8_t chunktype
Definition wtap.h:1289
Definition wtap.h:948
Pseudo-header metadata for packets captured in NetMon (Network Monitor) files.
Definition wtap.h:1242
unsigned sub_encap
Definition wtap.h:1247
uint8_t * description
Definition wtap.h:1245
uint8_t * title
Definition wtap.h:1243
uint32_t descLength
Definition wtap.h:1244
Definition wtap.h:934
Definition wtap.h:1219
Definition nstime.h:26
Definition wtap.h:1196
Information about a given file type that applies to all subtypes of the file type.
Definition wtap.h:1855
const char * name
Definition wtap.h:1856
wtap_open_routine_t open_routine
Definition wtap.h:1858
void * wslua_data
Definition wtap.h:1861
const char * extensions
Definition wtap.h:1859
wtap_open_type type
Definition wtap.h:1857
char ** extensions_set
Definition wtap.h:1860
Definition wtap.h:528
Pseudo-header for Microsoft ProcMon (Process Monitor) captures.
Definition wtap.h:1268
struct procmon_process_t * process_array
Definition wtap.h:1271
uint32_t * process_index_map
Definition wtap.h:1269
size_t process_array_size
Definition wtap.h:1272
size_t process_index_map_size
Definition wtap.h:1270
bool system_bitness
Definition wtap.h:1273
Definition procmon.h:24
Definition ngsniffer.c:82
Definition wtap.h:1135
Describes a single block type supported by a file format, including its option support.
Definition wtap.h:1951
const struct supported_option_type * supported_options
Definition wtap.h:1955
block_support_t support
Definition wtap.h:1953
wtap_block_type_t type
Definition wtap.h:1952
size_t num_supported_options
Definition wtap.h:1954
Entry describing support level for a specific option type.
Definition wtap.h:1918
unsigned opt
Definition wtap.h:1919
option_support_t support
Definition wtap.h:1920
Definition wtap_opttypes.h:272
Header metadata for a pcapng Custom Block record.
Definition wtap.h:1510
uint32_t pen
Definition wtap.h:1511
uint32_t length
Definition wtap.h:1512
bool copy_allowed
Definition wtap.h:1513
Definition wtap.h:1658
const GArray * nrbs_growing
Definition wtap.h:1667
const GArray * dsbs_growing
Definition wtap.h:1671
int tsprec
Definition wtap.h:1661
GArray * shb_hdrs
Definition wtap.h:1662
int encap
Definition wtap.h:1659
bool dont_copy_idbs
Definition wtap.h:1680
GArray * dsbs_initial
Definition wtap.h:1670
wtapng_iface_descriptions_t * idb_inf
Definition wtap.h:1666
const GArray * mevs_growing
Definition wtap.h:1674
const GArray * shb_iface_to_global
Definition wtap.h:1663
const GArray * dpibs_growing
Definition wtap.h:1677
int snaplen
Definition wtap.h:1660
Wiretap dumper handle and associated state.
Definition wtap_module.h:163
Definition wtap.h:1050
Header metadata for a file-type-specific event or report record.
Definition wtap.h:1475
uint32_t record_len
Definition wtap.h:1478
int file_type_subtype
Definition wtap.h:1476
unsigned record_type
Definition wtap.h:1477
Header metadata for a captured network packet.
Definition wtap.h:1392
uint32_t caplen
Definition wtap.h:1393
uint32_t interface_id
Definition wtap.h:1396
int pkt_encap
Definition wtap.h:1395
uint32_t len
Definition wtap.h:1394
Plugin registration callback table.
Definition wtap.h:3364
Definition file_wrappers.c:96
Definition wtap.h:1540
Header metadata for a system call record (e.g. from Sysdig/Falco captures).
Definition wtap.h:1486
uint16_t cpu_id
Definition wtap.h:1497
uint32_t event_data_len
Definition wtap.h:1493
const char * pathname
Definition wtap.h:1487
uint64_t thread_id
Definition wtap.h:1491
uint64_t timestamp
Definition wtap.h:1490
uint32_t nparams
Definition wtap.h:1494
uint32_t flags
Definition wtap.h:1495
unsigned record_type
Definition wtap.h:1488
uint16_t event_type
Definition wtap.h:1496
uint32_t event_len
Definition wtap.h:1492
int byte_order
Definition wtap.h:1489
Header metadata for a systemd journal export record.
Definition wtap.h:1503
uint32_t record_len
Definition wtap.h:1504
Definition wtap.h:1704
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
Definition wtap_opttypes.h:308
Definition wtap_opttypes.h:300
Union representing physical layer information for IEEE 802.11 variants.
Definition wtap.h:817
struct ieee_802_11_fhss info_11_fhss
Definition wtap.h:818
struct ieee_802_11ac info_11ac
Definition wtap.h:823
struct ieee_802_11n info_11n
Definition wtap.h:822
struct ieee_802_11g info_11g
Definition wtap.h:821
struct ieee_802_11ax info_11ax
Definition wtap.h:825
struct ieee_802_11b info_11b
Definition wtap.h:819
struct ieee_802_11be info_11be
Definition wtap.h:826
struct ieee_802_11ad info_11ad
Definition wtap.h:824
struct ieee_802_11a info_11a
Definition wtap.h:820
Pseudo-header metadata for packets in K12 capture files.
Definition wtap.h:961
uint16_t vp
Definition wtap.h:968
uint16_t cid
Definition wtap.h:970
uint16_t vc
Definition wtap.h:969
uint32_t ds0mask
DS0 channel bitmask.
Definition wtap.h:979
Protocol-specific subheader union.
Definition wtap.h:1254
struct eth_phdr eth
Definition wtap.h:1255
struct atm_phdr atm
Definition wtap.h:1256
struct ieee_802_11_phdr ieee_802_11
Definition wtap.h:1257
Top-level union of all Wiretap pseudo-headers.
Definition wtap.h:1298
struct l1event_phdr l1event
Definition wtap.h:1317
struct lapd_phdr lapd
Definition wtap.h:1311
struct i2c_phdr i2c
Definition wtap.h:1318
struct p2p_phdr p2p
Definition wtap.h:1304
struct ieee_802_11_phdr ieee_802_11
Definition wtap.h:1305
struct k12_phdr k12
Definition wtap.h:1310
struct btmon_phdr btmon
Definition wtap.h:1316
struct nokia_phdr nokia
Definition wtap.h:1321
struct ber_phdr ber
Definition wtap.h:1326
struct sita_phdr sita
Definition wtap.h:1314
struct bthci_phdr bthci
Definition wtap.h:1315
struct llcp_phdr llcp
Definition wtap.h:1322
struct mtp2_phdr mtp2
Definition wtap.h:1309
struct logcat_phdr logcat
Definition wtap.h:1323
struct atm_phdr atm
Definition wtap.h:1302
struct dte_dce_phdr dte_dce
Definition wtap.h:1300
struct isdn_phdr isdn
Definition wtap.h:1301
struct catapult_dct2000_phdr dct2000
Definition wtap.h:1312
struct irda_phdr irda
Definition wtap.h:1307
struct netmon_phdr netmon
Definition wtap.h:1324
struct gsm_um_phdr gsm_um
Definition wtap.h:1319
struct nettl_phdr nettl
Definition wtap.h:1308
struct cosine_phdr cosine
Definition wtap.h:1306
struct erf_mc_phdr erf
Definition wtap.h:1313
struct ascend_phdr ascend
Definition wtap.h:1303
struct nstr_phdr nstr
Definition wtap.h:1320
struct mmodule_phdr mmodule
Definition wtap.h:1327
struct procmon_phdr procmon
Definition wtap.h:1325
struct eth_phdr eth
Definition wtap.h:1299
WS_DLL_PUBLIC bool wtap_dump_can_open(int filetype)
Check if a file type can be opened for dumping.
Definition file_access.c:2068
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:2281
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:2012
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:2241
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:2128
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:1172
WS_DLL_PUBLIC bool wtap_dump_flush(wtap_dumper *wdh, int *err)
Flushes the dump file.
Definition file_access.c:2563
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:1963
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:2283
option_support_t
Indicates how a file format supports a given option type.
Definition wtap.h:1906
@ MULTIPLE_OPTIONS_SUPPORTED
Definition wtap.h:1909
@ OPTION_NOT_SUPPORTED
Definition wtap.h:1907
@ ONE_OPTION_SUPPORTED
Definition wtap.h:1908
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:1906
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:1455
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:1781
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:1403
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:1631
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:2104
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:1791
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:207
WS_DLL_PUBLIC void wtap_deregister_open_info(const char *name)
Deregister an open_info handler by name.
Definition file_access.c:498
WS_DLL_PUBLIC void wtap_set_bytes_dumped(wtap_dumper *wdh, int64_t bytes_dumped)
Set the number of bytes dumped by a capture file.
Definition file_access.c:2636
WS_DLL_PUBLIC bool wtap_dump_close(wtap_dumper *wdh, bool *needs_reload, int *err, char **err_info)
Definition file_access.c:2592
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:3004
@ FT_SORT_BY_NAME
Definition wtap.h:3005
@ FT_SORT_BY_DESCRIPTION
Definition wtap.h:3006
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:1852
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:2328
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:846
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:2624
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:151
WS_DLL_PUBLIC struct open_info * open_routines
Table of registered wiretap file open handlers.
Definition wtap.h:1870
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:165
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:2525
wtap_open_type
Strategy used to identify a file format.
Definition wtap.h:1808
@ OPEN_INFO_MAGIC
Definition wtap.h:1809
@ OPEN_INFO_HEURISTIC
Definition wtap.h:1810
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:1599
wtap_open_return_val
For registering file types that we can open.
Definition wtap.h:1779
@ WTAP_OPEN_MINE
Definition wtap.h:1781
@ WTAP_OPEN_NOT_MINE
Definition wtap.h:1780
@ WTAP_OPEN_ERROR
Definition wtap.h:1782
WS_DLL_PUBLIC void wtap_rec_reset(wtap_rec *rec)
Re-initialize a wtap_rec structure.
Definition wtap.c:2118
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:522
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:1289
WS_DLL_PUBLIC void wtap_dump_discard_name_resolution(wtap_dumper *wdh)
Discard name resolution information for a dump file.
Definition file_access.c:2661
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:2386
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:2348
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:2312
WS_DLL_PUBLIC void wtap_dump_discard_decryption_secrets(wtap_dumper *wdh)
Discard decryption secrets for a dump file.
Definition file_access.c:2673
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:159
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:1841
WS_DLL_PUBLIC const char * wtap_strerror(int err)
Return a human-readable error string for a WTAP error code.
Definition wtap.c:1548
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:1249
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:2555
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:2039
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:542
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:1942
@ MULTIPLE_BLOCKS_SUPPORTED
Definition wtap.h:1945
@ ONE_BLOCK_SUPPORTED
Definition wtap.h:1944
@ BLOCK_NOT_SUPPORTED
Definition wtap.h:1943
WS_DLL_PUBLIC void init_open_routines(void)
Initialize registered file open routines.
Definition file_access.c:417
WS_DLL_PUBLIC int64_t wtap_read_so_far(wtap *wth)
Return an approximation of the amount of data read sequentially.
Definition wtap.c:2072
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:1720
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:1831
WS_DLL_PUBLIC void wtap_cleanup(void)
Clean up libwiretap internal registrations and plugin state.
Definition wtap.c:2381
WS_DLL_PUBLIC int wtap_pcapng_file_type_subtype(void)
Get the file type/subtype identifier for pcapng.
Definition file_access.c:1728
void cleanup_open_routines(void)
Clean up registered file open routines.
Definition file_access.c:2858
WS_DLL_PUBLIC int64_t wtap_get_bytes_dumped(const wtap_dumper *wdh)
Get the number of bytes dumped by a packet capture.
Definition file_access.c:2630
WS_DLL_PUBLIC void wtap_cleareof(wtap *wth)
Clear EOF status for a wiretap file.
Definition wtap.c:1639
struct addrinfo_lists addrinfo_lists_t
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:1714
WS_DLL_PUBLIC void wtap_close(wtap *wth)
Fully close the wiretap file and release all resources.
Definition wtap.c:1608
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:2650
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:2092
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:2362
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:1302
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:1404
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:1644
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:1817
WS_DLL_PUBLIC int wtap_get_num_encap_types(void)
Return the number of known encapsulation types.
Definition wtap.c:1369
WS_DLL_PUBLIC void wtap_rec_cleanup(wtap_rec *rec)
Clean up a wtap_rec structure.
Definition wtap.c:2127
WS_DLL_PUBLIC const char * wtap_tsprec_string(int tsprec)
Convert a timestamp precision constant to a string.
Definition wtap.c:1446
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:580
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:2100
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:1031
WS_DLL_PUBLIC void wtap_rec_init(wtap_rec *rec, size_t space)
Initialize a wtap_rec structure.
Definition wtap.c:2079
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:1803
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:1693
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:2055
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:1700
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:462
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:2345
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:2642
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:1742
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:1567
WS_DLL_PUBLIC const char * wtap_encap_name(int encap)
Get a short name for an encapsulation type.
Definition wtap.c:1389
WS_DLL_PUBLIC int wtap_register_encap_type(const char *description, const char *name)
Register a new packet encapsulation type.
Definition wtap.c:1375
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
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:1673
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:1668
WS_DLL_PUBLIC void wtap_sequential_close(wtap *wth)
Close the sequential-access side of the file.
Definition wtap.c:1575
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:2080
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:1777
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:1417
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:2149
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