Internet-Draft | pcapng | September 2020 |
Tuexen, et al. | Expires 1 April 2021 | [Page] |
This document describes a format to record captured packets to a file. This format is extensible; Wireshark can currently read and write it, and libpcap can currently read some pcapng files.¶
RFCEDITOR-please-remove: this document is being worked on at: https://github.com/pcapng/pcapng.git¶
This note is to be removed before publishing as an RFC.¶
Discussion of this document takes place on the OPSAWG Working Group mailing list (opsawg@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/opsawg/.¶
Source for this draft and an issue tracker can be found at https://github.com/pcapng/pcapng.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 1 April 2021.¶
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
The problem of exchanging packet traces becomes more and more critical every day; unfortunately, no standard solutions exist for this task right now. One of the most accepted packet interchange formats is the one defined by libpcap, which is rather old and is lacking in functionality for more modern applications particularly from the extensibility point of view.¶
This document proposes a new format for recording packet traces. The following goals are being pursued:¶
Extensibility: It should be possible to add new standard capabilities to the file format over time, and third parties should be able to enrich the information embedded in the file with proprietary extensions, with tools unaware of newer extensions being able to ignore them.¶
Portability: A capture trace must contain all the information needed to read data independently from network, hardware and operating system of the machine that made the capture.¶
Merge/Append data: It should be possible to add data at the end of a given file, and the resulting file must still be readable.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
A capture file is organized in blocks, that are appended one to another to form the file. All the blocks share a common format, which is shown in Figure 1.¶
The fields have the following meaning:¶
o Block Type (32 bits): a unique unsigned value that identifies the block. Values whose Most Significant Bit (MSB) is equal to 1 are reserved for local use. They can be used to make extensions to the file format to save private data to the file. The list of currently defined types can be found in Section 11.1.¶
o Block Total Length (32 bits): an unsigned value giving the total size of this block, in octets. For instance, the length of a block that does not have a body is 12 octets: 4 octets for the Block Type, 4 octets for the initial Block Total Length and 4 octets for the trailing Block Total Length. This value MUST be a multiple of 4.¶
o Block Body: content of the block.¶
o Block Total Length: total size of this block, in octets. This field is duplicated to permit backward file navigation.¶
This structure, shared among all blocks, makes it easy to process a file and to skip unneeded or unknown blocks. Some blocks can contain other blocks inside (nested blocks). Some of the blocks are mandatory, i.e. a capture file is not valid if they are not present, other are optional.¶
The General Block Structure allows defining other blocks if needed. A parser that does not understand them can simply ignore their content.¶
The currently standardized Block Type codes are specified in Section 11.1; they have been grouped in the following four categories:¶
The following MANDATORY block MUST appear at least once in each file:¶
o Section Header Block (Section 4.1): it defines the most important characteristics of the capture file.¶
The following OPTIONAL blocks MAY appear in a file:¶
o Interface Description Block (Section 4.2): it defines the most important characteristics of the interface(s) used for capturing traffic. This block is required in certain cases, as described later.¶
o Enhanced Packet Block (Section 4.3): it contains a single captured packet, or a portion of it. It represents an evolution of the original, now obsolete, Packet Block (Appendix A). If this appears in a file, an Interface Description Block is also required, before this block.¶
o Simple Packet Block (Section 4.4): it contains a single captured packet, or a portion of it, with only a minimal set of information about it. If this appears in a file, an Interface Description Block is also required, before this block.¶
o Name Resolution Block (Section 4.5): it defines the mapping from numeric addresses present in the packet capture and the canonical name counterpart.¶
o Interface Statistics Block (Section 4.6): it defines how to store some statistical data (e.g. packet dropped, etc) which can be useful to understand the conditions in which the capture has been made. If this appears in a file, an Interface Description Block is also required, before this block.¶
o Custom Block (Section 4.9): it contains vendor-specific data in a portable fashion.¶
The following OBSOLETE block SHOULD NOT appear in newly written files (but is documented in the Appendix for reference):¶
o Packet Block (Appendix A): it contains a single captured packet, or a portion of it. It is OBSOLETE, and superseded by the Enhanced Packet Block (Section 4.3).¶
The following EXPERIMENTAL blocks are considered interesting but the authors believe that they deserve more in-depth discussion before being defined:¶
o Alternative Packet Blocks¶
o Compression Block¶
o Encryption Block¶
o Fixed Length Block¶
o Directory Block¶
o Traffic Statistics and Monitoring Blocks¶
o Event/Security Blocks¶
Requests for new standardized Block Type codes should be sent to the pcap-ng-format mailing list [1].¶
The blocks build a logical hierarchy as they refer to each other. Figure 2 shows the logical hierarchy of the currently defined blocks in the form of a "tree view":¶
For example: each captured packet refers to a specific capture interface, the interface itself refers to a specific section.¶
The file MUST begin with a Section Header Block. However, more than one Section Header Block can be present in the capture file, each one covering the data following it until the next one (or the end of file). A Section includes the data delimited by two Section Header Blocks (or by a Section Header Block and the end of the file), including the first Section Header Block.¶
In case an application cannot read a Section because of different version number, it MUST skip everything until the next Section Header Block. Note that, in order to properly skip the blocks until the next section, all blocks MUST have the fields Type and Length at the beginning. In order to properly skip blocks in the backward direction, all blocks MUST have the Length repeated at the end of the block. These are mandatory requirements that MUST be maintained in future versions of the block format.¶
Figure 3 shows a typical file layout, with a single Section Header that covers the whole file.¶
Figure 4 shows a file that contains three headers, and is normally the result of file concatenation. An application that understands only version 1.0 of the file format skips the intermediate section and restart processing the packets after the third Section Header.¶
Figure 5 shows a file comparable to a "classic libpcap" file - the minimum for a useful capture file. It contains a single Section Header Block (SHB), a single Interface Description Block (IDB) and a few Enhanced Packet Blocks (EPB).¶
Figure 6 shows a complex example file. In addition to the minimum file above, it contains packets captured from three interfaces, capturing on the third of which begins after packets have arrived on other interfaces, and also includes some Name Resolution Blocks (NRB) and an Interface Statistics Block (ISB).¶
The last example should make it obvious that the block structure makes the file format very flexible compared to the classical libpcap format.¶
All the block bodies MAY embed optional fields. Optional fields can be used to insert some information that may be useful when reading data, but that is not really needed for packet processing.¶
Therefore, each tool can either read the content of the optional fields (if any), or skip some of them or even all at once.¶
A block that may contain options must be structured so that the number of octets of data in the Block Body that precede the options can be determined from that data; that allows the beginning of the options to be found. That is true for all standard blocks that support options; for Custom Blocks that support options, the Custom Data must be structured in such a fashion. This means that the Block Length field (present in the General Block Structure, see Section 3.1) can be used to determine how many octets of optional fields, if any, are present in the block. That number can be used to determine whether the block has optional fields (if it is zero, there are no optional fields), to check, when processing optional fields, whether any optional fields remain, and to skip all the optional fields at once.¶
Options are a list of Type - Length - Value fields, each one containing a single value:¶
o Option Type (16 bits): an unsigned value that contains the code that specifies the type of the current TLV record. Option types whose Most Significant Bit is equal to one are reserved for local use; therefore, there is no guarantee that the code used is unique among all capture files (generated by other applications), and is most certainly not portable. For cross-platform globally unique vendor-specific extensions, the Custom Option MUST be used instead, as defined in Section 3.5.1).¶
o Option Length (16 bits): an unsigned value that contains the actual length of the following 'Option Value' field without the padding octets.¶
o Option Value (variable length): the value of the given option, padded to a 32-bit boundary. The actual length of this field (i.e. without the padding octets) is specified by the Option Length field.¶
Requests for new standardized option codes for a given block should be sent to the pcap-ng-format mailing list [2].¶
A given option may have a fixed length, in which case all instances of that option have a length that is equal to the specified fixed length, or a variable length, in which case the option has a minimum length and all instances of that option must have a length equal to or greater than the specified minimum length. The length of fixed- length options, and the minimum length of variable-length options, is specified in the description of the option; if the minimum length of a variable-length option is not specified, a zero-length option is valid. Software that reads these files SHOULD report options that have an invalid length as errors; the software MAY stop processing the file if it sees an option that has invalid length, or MAY ignore the option and continue processing it. Software that writes these files MUST not write files with options that have invalid lengths.¶
If an option's value is a string, the value is not necessarily zero- terminated. Software that reads these files MUST NOT assume that strings are zero-terminated, and MUST treat a zero-value octet as a string terminator.¶
Some options may be repeated several times; for example, a block can have multiple comments, and an Interface Description Block can give multiple IPv4 or IPv6 addresses for the interface if it has multiple IPv4 or IPv6 addresses assigned to it. Other options may appear at most once in a given block.¶
The option list is terminated by a option which uses the special 'End of Option' code (opt_endofopt). Code that writes pcapng files MUST put an opt_endofopt option at the end of an option list. Code that reads pcapng files MUST NOT assume an option list will have an opt_endofopt option at the end; it MUST also check for the end of the block, and SHOULD treat blocks where the option list has no opt_endofopt option as if the option list had an opt_endofopt option at the end.¶
The format of the optional fields is shown in Figure 7.¶
The following codes can always be present in any optional field:¶
Examples: "This packet is the beginning of all of our problems", "Packets 17-23 showing a bogus TCP retransmission!\r\n This is reported in bugzilla entry 1486.\nIt will be fixed in the future.".¶
Customs Options are used for portable, vendor-specific data related to the block they're in. A Custom Option can be in any block type that can have options, can be repeated any number of times in a block, and may come before or after other option types - except the opt_endofopt which is always the last option. Different Custom Options, of different type codes and/or different Private Enterprise Numbers, may be used in the same pcapng file. See Section 6 for additional details.¶
The Custom Option has the following fields:¶
o Custom Option Code: The code number for the Custom Option, which can be one of the following decimal numbers:¶
2988: This option code identifies a Custom Option containing a UTF-8 string in the Custom Data portion. The string is not zero-terminated. This Custom Option can be safely copied to a new file if the pcapng file is manipulated by an application; otherwise 19372 should be used instead. See Section 6.2 for details. 2989: This option code identifies a Custom Option containing binary octets in the Custom Data portion. This Custom Option can be safely copied to a new file if the pcapng file is manipulated by an application; otherwise 19372 should be used instead. See Section 6.2 for details. 19372: This option code identifies a Custom Option containing a UTF-8 string in the Custom Data portion. The string is not zero-terminated. This Custom Option should not be copied to a new file if the pcapng file is manipulated by an application. See Section 6.2 for details. 19373: This option code identifies a Custom Option containing binary octets in the Custom Data portion. This Custom Option should not be copied to a new file if the pcapng file is manipulated by an application. See Section 6.2 for details.¶
o Option Length: as described in Section 3.1, this contains the length of the option's value, which includes the 4-octet Private Enterprise Number and variable-length Custom Data fields, without the padding octets.¶
o Private Enterprise Number: An IANA-assigned Private Enterprise Number identifying the organization which defined the Custom Option. See Section 6.1 for details. The PEN number MUST be encoded using the same endianness as the Section Header Block it is within the scope of.¶
o Custom Data: the custom data, padded to a 32 bit boundary.¶
Data contained in each section will always be saved according to the characteristics (little endian / big endian) of the capturing machine. This refers to all the fields that are saved as numbers and that span over two or more octets.¶
The approach of having each section saved in the native format of the generating host is more efficient because it avoids translation of data when reading / writing on the host itself, which is the most common case when generating/processing capture captures.¶
Please note: The endianness is indicated by the Section Header Block (Section 4.1). Since this block can appear several times in a pcapng file, a single file can contain both endianness variants.¶
All fields of this specification use proper alignment for 16- and 32-bit values. This makes it easier and faster to read/write file contents if using techniques like memory mapped files.¶
The alignment octets (marked in this document e.g. with "padded to 32 bits") MUST be filled with zeroes.¶
Please note: 64-bit values are not aligned to 64-bit boundaries. This is because the file is naturally aligned to 32-bit boundaries only. Special care MUST be taken when reading and writing such values. (Note also that some 64-bit values are represented as a 64-bit integer in the endianness of the machine that wrote the file, and others are represented as 2 32-bit values, one containing the upper 32 bits of the value and one containing the lower 32 bits of the value, each written as 32-bit integers in the endianness of the machine that wrote the file. Neither of these formats guarantee 64-bit alignment.)¶
This section details the format of the blocks currently defined.¶
The Section Header Block (SHB) is mandatory. It identifies the beginning of a section of the capture capture file. The Section Header Block does not contain data but it rather identifies a list of blocks (interfaces, packets) that are logically correlated. Its format is shown in Figure 9.¶
The meaning of the fields is:¶
o Block Type: The block type of the Section Header Block is the integer corresponding to the 4-char string "\n\r\r\n" (0x0A0D0D0A). This particular value is used for 2 reasons:¶
1. This number is used to detect if a file has been transferred via FTP or HTTP from a machine to another with an inappropriate ASCII conversion. In this case, the value of this field will differ from the standard one ("\n\r\r\n") and the reader can detect a possibly corrupted file. 2. This value is palindromic, so that the reader is able to recognize the Section Header Block regardless of the endianness of the section. The endianness is recognized by reading the Byte Order Magic, that is located 8 octets after the Block Type.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Byte-Order Magic (32 bits): an unsigned magic number, whose value is the hexadecimal number 0x1A2B3C4D. This number can be used to distinguish sections that have been saved on little-endian machines from the ones saved on big-endian machines, and to heuristically identify pcapng files.¶
o Major Version (16 bits): an unsigned value, giving the number of the current major version of the format. The value for the current version of the format is 1. This value should change if the format changes in such a way that code that reads the new format could not read the old format (i.e., code to read both formats would have to check the version number and use different code paths for the two formats) and code that reads the old format could not read the new format. Note that adding a new block type or a new option is NOT such a change.¶
o Minor Version (16 bits): an unsigned value, giving the number of the current minor version of the format. The value is for the current version of the format is 0. This value should change if the format changes in such a way that code that reads the new format could read the old format without checking the version number but code that reads the old format could not read all files in the new format. Note that adding a new block type or a new option is NOT such a change.¶
o Section Length (64 bits): a signed value specifying the length in octets of the following section, excluding the Section Header Block itself. This field can be used to skip the section, for faster navigation inside large files. If the Section Length is -1 (0xFFFFFFFFFFFFFFFF), this means that the size of the section is not specified, and the only way to skip the section is to parse the blocks that it contains. Please note that if this field is valid (i.e. not negative), its value is always a multiple of 4, as all the blocks are aligned to and padded to 32-bit (4 octet) boundaries. Also, special care should be taken in accessing this field: since the alignment of all the blocks in the file is 32-bits, this field is not guaranteed to be aligned to a 64-bit boundary. This could be a problem on 64-bit processors.¶
o Options: optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present.¶
Adding new block types or options would not necessarily require that either Major or Minor numbers be changed, as code that does not know about the block type or option should just skip it; only if skipping a block or option does not work should the minor version number be changed.¶
Aside from the options defined in Section 3.5, the following options are valid within this block:¶
The shb_hardware option is a UTF-8 string containing the description of the hardware used to create this section. The string is not zero-terminated.¶
Examples: "x86 Personal Computer", "Sun Sparc Workstation".¶
The shb_os option is a UTF-8 string containing the name of the operating system used to create this section. The string is not zero-terminated.¶
Examples: "Windows XP SP2", "openSUSE 10.2".¶
The shb_userappl option is a UTF-8 string containing the name of the application used to create this section. The string is not zero-terminated.¶
Examples: "dumpcap V0.99.7".¶
(XXX Open issue: does a program which re-writes a capture file change the original hardware/os/application info?)¶
An Interface Description Block (IDB) is the container for information describing an interface on which packet data is captured.¶
Tools that write / read the capture file associate an incrementing unsigned 32-bit number (starting from '0') to each Interface Definition Block, called the Interface ID for the interface in question. This number is unique within each Section and identifies the interface to which the IDB refers; it is only unique inside the current section, so, two Sections can have different interfaces identified by the same Interface ID values. This unique identifier is referenced by other blocks, such as Enhanced Packet Blocks and Interface Statistic Blocks, to indicate the interface to which the block refers (such the interface that was used to capture the packet that an Enhanced Packet Block contains or to which the statistics in an Interface Statistic Block refer).¶
There must be an Interface Description Block for each interface to which another block refers. Blocks such as an Enhanced Packet Block or an Interface Statistics Block contain an Interface ID value referring to a particular interface, and a Simple Packet Block implicitly refers to an interface with an Interface ID of 0. If the file does not contain any blocks that use an Interface ID, then the file does not need to have any IDBs.¶
An Interface Description Block is valid only inside the section to which it belongs. The structure of a Interface Description Block is shown in Figure 10.¶
The meaning of the fields is:¶
o Block Type: The block type of the Interface Description Block is 1.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o LinkType (16 bits): an unsigned value that defines the link layer type of this interface. The list of Standardized Link Layer Type codes is available in the tcpdump.org link-layer header types registry [3].¶
o Reserved (16 bits): not used - MUST be filled with 0 by pcap file writers, and MUST be ignored by pcapng file readers.¶
o SnapLen (32 bits): an unsigned value indicating the maximum number of octets captured from each packet. The portion of each packet that exceeds this value will not be stored in the file. A value of zero indicates no limit.¶
o Options: optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present.¶
In addition to the options defined in Section 3.5, the following options are valid within this block:¶
Examples: "eth0", "\Device\NPF\_{AD1CE675-96D0-47C5-ADD0-2504B9126B68}".¶
Examples: "Wi-Fi", "Local Area Connection", "Wireless Network Connection", "First Ethernet Interface".¶
Examples: '192 168 1 1 255 255 255 0'.¶
Example: 2001:0db8:85a3:08d3:1319:8a2e:0370:7344/64 is written (in hex) as '20 01 0d b8 85 a3 08 d3 13 19 8a 2e 03 70 73 44 40'.¶
Example: '00 01 02 03 04 05'.¶
Example: the 64-bit decimal number 100000000 for 100Mbps.¶
Example: '6'.¶
Example: '00'"tcp port 23 and host 192.0.2.5".¶
Examples: "Windows XP SP2", "openSUSE 10.2".¶
Example: '4'.¶
Example: '1234'.¶
Examples: "Broadcom NetXtreme", "Intel(R) PRO/1000 MT Network Connection", "NETGEAR WNA1000Mv2 N150 Wireless USB Micro Adapter".¶
An Enhanced Packet Block (EPB) is the standard container for storing the packets coming from the network. The Enhanced Packet Block is optional because packets can be stored either by means of this block or the Simple Packet Block, which can be used to speed up capture file generation; or a file may have no packets in it. The format of an Enhanced Packet Block is shown in Figure 11.¶
The Enhanced Packet Block is an improvement over the original, now obsolete, Packet Block (Appendix A):¶
o it stores the Interface Identifier as a 32-bit integer value. This is a requirement when a capture stores packets coming from a large number of interfaces;¶
o unlike the Packet Block (Appendix A), the number of packets dropped by the capture system between this packet and the previous one is not stored in the header, but rather in an option of the block itself.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x00000006 | +---------------------------------------------------------------+ 4 | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 8 | Interface ID | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 12 | Timestamp (High) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 16 | Timestamp (Low) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 20 | Captured Packet Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 24 | Original Packet Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 28 / / / Packet Data / / variable length, padded to 32 bits / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ / / / Options (variable) / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 11: Enhanced Packet Block Format¶
The Enhanced Packet Block has the following fields:¶
o Block Type: The block type of the Enhanced Packet Block is 6.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Interface ID (32 bits): an unsigned value that specifies the interface on which this packet was received or transmitted; the correct interface will be the one whose Interface Description Block (within the current Section of the file) is identified by the same number (see Section 4.2) of this field. The interface ID MUST be valid, which means that an matching interface description block MUST exist.¶
o Timestamp (High) and Timestamp (Low): upper 32 bits and lower 32 bits of a 64-bit timestamp. The timestamp is a single 64-bit unsigned integer that represents the number of units of time that have elapsed since 1970-01-01 00:00:00 UTC. The length of a unit of time is specified by the 'if_tsresol' option (see Figure 10) of the Interface Description Block referenced by this packet. Note that, unlike timestamps in the libpcap file format, timestamps in Enhanced Packet Blocks are not saved as two 32-bit values that represent the seconds and microseconds that have elapsed since 1970-01-01 00:00:00 UTC. Timestamps in Enhanced Packet Blocks are saved as two 32-bit words that represent the upper and lower 32 bits of a single 64-bit quantity.¶
o Captured Packet Length (32 bits): an unsigned value that indicates the number of octets captured from the packet (i.e. the length of the Packet Data field). It will be the minimum value among the Original Packet Length and the snapshot length for the interface (SnapLen, defined in Figure 10). The value of this field does not include the padding octets added at the end of the Packet Data field to align the Packet Data field to a 32-bit boundary.¶
o Original Packet Length (32 bits): an unsigned value that indicates the actual length of the packet when it was transmitted on the network. It can be different from the Captured Packet Length if the packet has been truncated by the capture process.¶
o Packet Data: the data coming from the network, including link- layer headers. The actual length of this field is Captured Packet Length plus the padding to a 32-bit boundary. The format of the link-layer headers depends on the LinkType field specified in the Interface Description Block (see Section 4.2) and it is specified in the entry for that format in the the tcpdump.org link-layer header types registry [4].¶
o Options: optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present.¶
In addition to the options defined in Section 3.5, the following options are valid within this block:¶
+---------------+------+----------------------------+---------------+ | Name | Code | Length | Multiple | | | | | allowed? | +---------------+------+----------------------------+---------------+ | epb_flags | 2 | 4 | no | | epb_hash | 3 | variable, minimum hash | yes | | | | type-dependent | | | epb_dropcount | 4 | 8 | no | +---------------+------+----------------------------+---------------+ Table 4: Enhanced Packet Block Options¶
Example: '0'.¶
Examples: '02 EC 1D 87 97', '03 45 6E C2 17 7C 10 1E 3C 2E 99 6E C2 9A 3D 50 8E'.¶
Example: '0'.¶
The Enhanced Packet Block Flags Word is a 32-bit value that contains link-layer information about the packet.¶
The word is encoded as an unsigned 32-bit integer, using the endianness of the Section Header Block scope it is in. In the following table, the bits are numbered with 0 being the least- significant bit and 31 being the most-significant bit of the 32-bit unsigned integer. The meaning of the bits is the following:¶
+--------+----------------------------------------------------------+ | Bit | Description | | Number | | +--------+----------------------------------------------------------+ | 0-1 | Inbound / Outbound packet (00 = information not | | | available, 01 = inbound, 10 = outbound) | | 2-4 | Reception type (000 = not specified, 001 = unicast, 010 | | | = multicast, 011 = broadcast, 100 = promiscuous). | | 5-8 | FCS length, in octets (0000 if this information is not | | | available). This value overrides the if_fcslen option | | | of the Interface Description Block, and is used with | | | those link layers (e.g. PPP) where the length of the FCS | | | can change during time. | | 9-15 | Reserved (MUST be set to zero). | | 16-31 | link-layer-dependent errors (Bit 31 = symbol error, Bit | | | 30 = preamble error, Bit 29 = Start Frame Delimiter | | | error, Bit 28 = unaligned frame error, Bit 27 = wrong | | | Inter Frame Gap error, Bit 26 = packet too short error, | | | Bit 25 = packet too long error, Bit 24 = CRC error, | | | other?? are 16 bit enough?). | +--------+----------------------------------------------------------+¶
NOTE: in earlier versions of this specification, the bits were specified as being numbered with 0 being the most-significant bit and 31 being the least-significant bit of the 32-bit unsigned integer, rather than with 0 being the least-significant bit and 31 being the most-significant bit. Several implementations number the bits with 0 being the least-significant bit, and no known implementations number them with 0 being the most-significant bit, so the specification was changed to reflect that reality.¶
The Simple Packet Block (SPB) is a lightweight container for storing the packets coming from the network. Its presence is optional.¶
A Simple Packet Block is similar to an Enhanced Packet Block (see Section 4.3), but it is smaller, simpler to process and contains only a minimal set of information. This block is preferred to the standard Enhanced Packet Block when performance or space occupation are critical factors, such as in sustained traffic capture applications. A capture file can contain both Enhanced Packet Blocks and Simple Packet Blocks: for example, a capture tool could switch from Enhanced Packet Blocks to Simple Packet Blocks when the hardware resources become critical.¶
The Simple Packet Block does not contain the Interface ID field. Therefore, it MUST be assumed that all the Simple Packet Blocks have been captured on the interface previously specified in the first Interface Description Block.¶
Figure 12 shows the format of the Simple Packet Block.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x00000003 | +---------------------------------------------------------------+ 4 | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 8 | Original Packet Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 12 / / / Packet Data / / variable length, padded to 32 bits / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 12: Simple Packet Block Format¶
The Simple Packet Block has the following fields:¶
o Block Type: The block type of the Simple Packet Block is 3.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Original Packet Length (32 bits): an unsigned value indicating the actual length of the packet when it was transmitted on the network. It can be different from length of the Packet Data field's length if the packet has been truncated by the capture process, in which case the SnapLen value in Section 4.2 will be less than this Original Packet Length value, and the SnapLen value MUST be used to determine the size of the Packet Data field length.¶
o Packet Data: the data coming from the network, including link- layer headers. The length of this field can be derived from the field Block Total Length, present in the Block Header, and it is the minimum value among the SnapLen (present in the Interface Description Block) and the Original Packet Length (present in this header). The format of the data within this Packet Data field depends on the LinkType field specified in the Interface Description Block (see Section 4.2) and it is specified in the entry for that format in the tcpdump.org link-layer header types registry [5].¶
The Simple Packet Block does not contain the timestamp because this is often one of the most costly operations on PCs. Additionally, there are applications that do not require it; e.g. an Intrusion Detection System is interested in packets, not in their timestamp.¶
A Simple Packet Block cannot be present in a Section that has more than one interface because of the impossibility to refer to the correct one (it does not contain any Interface ID field).¶
The Simple Packet Block is very efficient in term of disk space: a snapshot whose length is 100 octets requires only 16 octets of overhead, which corresponds to an efficiency of more than 86%.¶
The Name Resolution Block (NRB) is used to support the correlation of numeric addresses (present in the captured packets) and their corresponding canonical names and it is optional. Having the literal names saved in the file prevents the need for performing name resolution at a later time, when the association between names and addresses may be different from the one in use at capture time. Moreover, the NRB avoids the need for issuing a lot of DNS requests every time the trace capture is opened, and also provides name resolution when reading the capture with a machine not connected to the network.¶
A Name Resolution Block is often placed at the beginning of the file, but no assumptions can be taken about its position. Multiple NRBs can exist in a pcapng file, either due to memory constraints or because additional name resolutions were performed by file processing tools, like network analyzers.¶
A Name Resolution Block need not contain any Records, except the nrb_record_end Record which MUST be the last Record. The addresses and names in NRB Records MAY be repeated multiple times; i.e., the same IP address may resolve to multiple names, the same name may resolve to the multiple IP addresses, and even the same address-to- name pair may appear multiple times, in the same NRB or across NRBs.¶
The format of the Name Resolution Block is shown in Figure 13.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x00000004 | +---------------------------------------------------------------+ 4 | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 8 | Record Type | Record Value Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 12 / Record Value / / variable length, padded to 32 bits / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ . . . . . . other records . . . . . . +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Record Type = nrb_record_end | Record Value Length = 0 | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ / / / Options (variable) / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 13: Name Resolution Block Format¶
The Name Resolution Block has the following fields:¶
o Block Type: The block type of the Name Resolution Block is 4.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
This is followed by zero or more Name Resolution Records (in the TLV format), each of which contains an association between a network address and a name. An nrb_record_end MUST be added after the last Record, and MUST exist even if there are no other Records in the NRB. There are currently three possible types of records:¶
+-----------------+--------+----------+ | Name | Code | Length | +-----------------+--------+----------+ | nrb_record_end | 0x0000 | 0 | | nrb_record_ipv4 | 0x0001 | variable | | nrb_record_ipv6 | 0x0002 | variable | +-----------------+--------+----------+ Table 5: Name Resolution Block Records¶
Example: '127 0 0 1'"localhost". [Open issue: is an empty string (i.e., just a zero-value octet) valid?]¶
Example: '20 01 0d b8 00 00 00 00 00 00 00 00 12 34 56 78'"somehost". (Open issue: is an empty string (i.e., just a zero-value octet) valid?)¶
Record Types other than those specified earlier MUST be ignored and skipped past. More Record Types will likely be defined in the future, and MUST NOT break backwards compatibility.¶
Each Record Value is aligned to and padded to a 32-bit boundary. The corresponding Record Value Length reflects the actual length of the Record Value; it does not include the lengths of the Record Type field, the Record Value Length field, any padding for the Record Value, or anything after the Record Value. For Record Types with name strings, the Record Length does include the zero-value octet terminating that string. A Record Length of 0 is valid, unless indicated otherwise.¶
After the list of Name Resolution Records, optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present.¶
In addition to the options defined in Section 3.5, the following options are valid within this block:¶
+---------------+------+----------+-------------------+ | Name | Code | Length | Multiple allowed? | +---------------+------+----------+-------------------+ | ns_dnsname | 2 | variable | no | | ns_dnsIP4addr | 3 | 4 | no | | ns_dnsIP6addr | 4 | 16 | no | +---------------+------+----------+-------------------+ Table 6: Name Resolution Block Options¶
Example: "our\_nameserver".¶
Example: '192 168 0 1'.¶
The Interface Statistics Block (ISB) contains the capture statistics for a given interface and it is optional. The statistics are referred to the interface defined in the current Section identified by the Interface ID field. An Interface Statistics Block is normally placed at the end of the file, but no assumptions can be taken about its position - it can even appear multiple times for the same interface.¶
The format of the Interface Statistics Block is shown in Figure 14.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x00000005 | +---------------------------------------------------------------+ 4 | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 8 | Interface ID | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 12 | Timestamp (High) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 16 | Timestamp (Low) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 20 / / / Options (variable) / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 14: Interface Statistics Block Format¶
The fields have the following meaning:¶
o Block Type: The block type of the Interface Statistics Block is 5.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Interface ID: specifies the interface these statistics refers to; the correct interface will be the one whose Interface Description Block (within the current Section of the file) is identified by same number (see Section 4.2) of this field.¶
o Timestamp: time this statistics refers to. The format of the timestamp is the same already defined in the Enhanced Packet Block (Section 4.3); the length of a unit of time is specified by the 'if_tsresol' option (see Figure 10) of the Interface Description Block referenced by this packet.¶
o Options: optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present.¶
All the statistic fields are defined as options in order to deal with systems that do not have a complete set of statistics. Therefore, In addition to the options defined in Section 3.5, the following options are valid within this block:¶
+------------------+------+--------+-------------------+ | Name | Code | Length | Multiple allowed? | +------------------+------+--------+-------------------+ | isb_starttime | 2 | 8 | no | | isb_endtime | 3 | 8 | no | | isb_ifrecv | 4 | 8 | no | | isb_ifdrop | 5 | 8 | no | | isb_filteraccept | 6 | 8 | no | | isb_osdrop | 7 | 8 | no | | isb_usrdeliv | 8 | 8 | no | +------------------+------+--------+-------------------+ Table 7: Interface Statistics Block Options¶
Example: '96 c3 04 00 73 89 6a 65', in Little Endian, decodes to 2012-06-29 06:17:00.834163 UTC.¶
Example: '97 c3 04 00 aa 47 ca 64', in Little Endian, decodes to 2012-06-29 07:28:25.298858 UTC.¶
Example: the decimal number 100.¶
Example: '0'.¶
Example: the decimal number 100.¶
Example: '0'.¶
Example: '0'.¶
All the fields that refer to packet counters are 64-bit values, represented with the octet order of the current section. Special care must be taken in accessing these fields: since all the blocks are aligned to a 32-bit boundary, such fields are not guaranteed to be aligned on a 64-bit boundary.¶
The systemd [6] Journal Export Block [7] is a lightweight containter for systemd Journal Export Format entry data.¶
One of the primary components of the systemd System and Service Manager is the "Journal", a message logging system that uses arrays of key-value pairs. Journal entries are stored in a databse-like file on disk but can be serialized to easily parseable "Journal Export Format" data or to a JSON object. The block described here is limited to Journal Export Format data only.¶
A systemd Journal Export Block contains a single systemd Journal Export Format entry. Each entry MUST contain a __REALTIME_TIMESTAMP= field. If a timestamp for the block is required it can be derived from this field. Each entry MUST be zero-padded to 32 bits. Although the primary use of this block is intended for importing data from systemd, it could potentially be used to include arbitrary key- value data in a capture file.¶
Figure 15 shows the format of the Journal Export Block.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x00000009 | +---------------------------------------------------------------+ 4 | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 8 / / / Journal Entry / / variable length, padded to 32 bits / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 15: systemd Journal Export Block Format¶
The systemd Journal Export Block has the following fields:¶
o Block Type: The block type of the Journal Export Block is 9.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Journal Entry: A journal entry as described in the Journal Export Format [8] documentation. Entries consist of a series of field names followed by text or binary field data. Common field names can be found in the systemd.journal-fields [9] documentation. The __REALTIME_TIMESTAMP= field MUST be present and valid as described above. Entries are not guaranteed to be a multiple of four octets and must be zero-padded. This allows the length of the entry to be be determined by finding the last non-zero octet in the Journal Entry data. An entry may contain an entry separator (trailing newline) as described in the Journal Export Format specification¶
A Decryption Secrets Block (DSB) stores (session) secrets that enable decryption of packets within the capture file. The format of these secrets is defined by the Secrets Type.¶
Multiple DSBs can exist in a pcapng file, but they SHOULD be written before packet blocks that require those secrets. Tools MAY limit decryption to secrets that appear before packet blocks.¶
The structure of a Decryption Secrets Block is shown in Figure 16.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x0000000A | +---------------------------------------------------------------+ 4 | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 8 | Secrets Type | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 12 | Secrets Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 16 / / / Secrets Data / / (variable length, padded to 32 bits) / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ / / / Options (variable) / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ / Block Total Length / +---------------------------------------------------------------+ Figure 16: Decryption Secrets Block Format¶
The Decryption Secrets Block has the following fields.¶
o Block Type: The block type of the Decryption Secrets Block is 10.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Secrets Type (32 bits): an unsigned integer identifier that describes the format of the following Secrets field. Requests for new Secrets Type codes should be sent to the pcap-ng-format mailing list [10].¶
o Secrets Length (32 bits): an unsigned integer that indicates the size of the following Secrets field, without any padding octets.¶
o Secrets Data: binary data containing secrets, padded to a 32 bit boundary.¶
o Options: optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present. No DSB-specific options are currently defined.¶
The following is a list of Secrets Types.¶
Warning: LOCAL\_STATIC\_PRIVATE\_KEY and potentially PRESHARED\_KEY are long-term secrets, users SHOULD only store non-production keys, or ensure proper protection of the pcapng file.¶
A Custom Block (CB) is the container for storing custom data that is not part of another block; for storing custom data as part of another block, see Section 3.5.1. The Custom Block is optional, can be repeated any number of times, and can appear before or after any other block except the first Section Header Block which must come first in the file. Different Custom Blocks, of different type codes and/or different Private Enterprise Numbers, may be used in the same pcapng file. The format of a Custom Block is shown in Figure 17.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x00000BAD or 0x40000BAD | +---------------------------------------------------------------+ 4 | Block Total Length | +---------------------------------------------------------------+ 8 | Private Enterprise Number (PEN) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 12 / / / Custom Data / / variable length, padded to 32 bits / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ / / / Options (variable) / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 17: Custom Block Format¶
The Custom Block uses the type code 0x00000BAD (2989 in decimal) for a custom block that pcapng re-writers can copy into new files, and the type code 0x40000BAD (1073744813 in decimal) for one that should not be copied. See Section 6.2 for details.¶
The Custom Block has the following fields:¶
o Block Type: The block type of the Custom Block is 0x00000BAD or 0x40000BAD, as described previously.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Private Enterprise Number (32 bits): An IANA-assigned Private Enterprise Number identifying the organization which defined the Custom Block. See Section 6.1 for details. The PEN MUST be encoded using the same endianness as the Section Header Block it is within the scope of.¶
o Custom Data: the custom data, padded to a 32 bit boundary.¶
o Options: optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present. Note that custom options for the Custom Block still use the custom option format and type code, as described in Section 3.5.1.¶
Can some other packet blocks (besides the ones described in the previous paragraphs) be useful?¶
The Compression Block is optional. A file can contain an arbitrary number of these blocks. A Compression Block, as the name says, is used to store compressed data. Its format is shown in Figure 18.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ | Block Type = ? | +---------------------------------------------------------------+ | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Compr. Type | | +-+-+-+-+-+-+-+-+ | | | | Compressed Data | | | | variable length, octet-aligned and padded to end on a 32-bit | | boundary | | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 18: Compression Block Format¶
The fields have the following meaning:¶
o Block Type: The block type of the Compression Block is not yet assigned.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Compression Type (8 bits): an unsigned value that specifies the compression algorithm. Possible values for this field are 0 (uncompressed), 1 (Lempel-Ziv), 2 (Gzip), other?? Probably some kind of dumb and fast compression algorithm could be effective with some types of traffic (for example web), but which?¶
o Compressed Data: data of this block. Once decompressed, it is made of other blocks.¶
The Encryption Block is optional. A file can contain an arbitrary number of these blocks. An Encryption Block is used to store encrypted data. Its format is shown in Figure 19.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ | Block Type = ? | +---------------------------------------------------------------+ | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Encr. Type | | +-+-+-+-+-+-+-+-+ | | | | Encrypted Data | | | | variable length, octet-aligned | | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 19: Encryption Block Format¶
The fields have the following meaning:¶
o Block Type: The block type of the Encryption Block is not yet assigned.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Encryption Type (8 bits): an unsigned value that specifies the encryption algorithm. Possible values for this field are ??? (TODO) NOTE: this block should probably contain other fields, depending on the encryption algorithm. To be defined precisely.¶
o Encrypted Data: data of this block. Once decrypted, it originates other blocks.¶
The Fixed Length Block is optional. A file can contain an arbitrary number of these blocks. A Fixed Length Block can be used to optimize the access to the file. Its format is shown in Figure 20. A Fixed Length Block stores records with constant size. It contains a set of Blocks (normally Enhanced Packet Blocks or Simple Packet Blocks), of which it specifies the size. Knowing this size a priori helps to scan the file and to load some portions of it without truncating a block, and is particularly useful with cell-based networks like ATM.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ | Block Type = ? | +---------------------------------------------------------------+ | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Cell Size | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | | | Fixed Size Data | | | | variable length, octet-aligned | | | | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 20: Fixed Length Block Format¶
The fields have the following meaning:¶
o Block Type: The block type of the Fixed Length Block is not yet assigned.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Cell size (16 bits): an unsigned value that indicates the size of the blocks contained in the data field.¶
o Fixed Size Data: data of this block.¶
If present, this block contains the following information:¶
o number of indexed packets (N)¶
o table with position and length of any indexed packet (N entries)¶
A directory block MUST be followed by at least N packets, otherwise it MUST be considered invalid. It can be used to efficiently load portions of the file to memory and to support operations on memory mapped files. This block can be added by tools like network analyzers as a consequence of file processing.¶
One or more blocks could be defined to contain network statistics or traffic monitoring information. They could be use to store data collected from RMON or Netflow probes, or from other network monitoring tools.¶
This block could be used to store events. Events could contain generic information (for example network load over 50%, server down...) or security alerts. An event could be:¶
o skipped, if the application doesn't know how to do with it¶
o processed independently by the packets. In other words, the applications skips the packets and processes only the alerts¶
o processed in relation to packets: for example, a security tool could load only the packets of the file that are near a security alert; a monitoring tool could skip the packets captured while the server was down.¶
This section uses the term "vendor" to describe an organization which extends the pcapng file with custom, proprietary blocks or options. It should be noted, however, that the "vendor" is just an abstract entity that agrees on a custom extension format: for example it may¶
be a manufacturer, industry association, an individual user, or collective group of users.¶
There are two different supported use-cases for vendor-specific custom extensions: local and portable. Local use means the custom data is only expected to be usable on the same machine, and the same application, which encoded it into the file. This limitation is due to the lack of a common registry for the local use number codes (the block or option type code numbers with the Most Significant Bit set). Since two different vendors may choose the same number, one vendor's application reading the other vendor's file would result in decoding failure. Therefore, vendors SHOULD instead use the portable method, as described next.¶
The portable use-case supports vendor-specific custom extensions in pcapng files which can be shared across systems, organizations, etc. To avoid number space collisions, an IANA-registered Private Enterprise Number (PEN) is encoded into the Custom Block or Custom Option, using the PEN number that belongs to the vendor defining the extension. Anyone can register a new PEN with IANA, for free, by filling out the online request form at http://pen.iana.org/pen/ PenApplication.page [14].¶
Both Custom Blocks and Custom Options support two different codes to distinguish their "copy" behavior: a code for when the block or option can be safely copied into a new pcapng file by a pcapng manipulating application, and a code for when it should not be copied. A common reason for not copying a Custom Block or Custom Option is because it depends on other blocks or options in some way that would invalidate the custom data if the other blocks/options were removed or re-ordered. For example, if a Custom Block's data includes an Interface ID number in its Custom Data portion, then it cannot be safely copied by a pcapng application that merges pcapng files, because the merging application might re-order or remove one or more of the Interface Description Blocks, and thereby change the Interface IDs that the Custom Block depends upon. The same issue arises if a Custom Block or Custom Option depends on the presence of, or specific ordering of, other standard-based or custom-defined blocks or options.¶
Note that the copy semantics is not related to privacy - there is no guarantee that a pcapng anonymizer will remove a Custom Block or Custom Option, even if the appropriate code is used requesting it not be copied; and the original pcapng file can be shared anyway. If the Custom Data portion of the Custom Block or Custom Option contains sensitive information, then it should be encrypted in some fashion.¶
For the Custom Options, there are two Custom Data formats supported: a UTF-8 string and a binary data payload. The rationale for this separation is that a pcapng display application which does not understand the specific PEN's Custom Option can still display the data as a string if it's a string type code, rather than as hex-ascii of the octets.¶
Implementers writing Custom Blocks or Custom Options should be aware that a pcapng file can be re-written by machines using a different endianness than the original file, which means all known fields of the pcapng file will change endianness in the new file. Since the Custom Data payload of the Custom Block or Custom Option might be an arbitrary sequence of unknown octets to such machines, they cannot convert multi-octet values inside the Custom Data into the appropriate endianness.¶
For example, a little-endian machine can create a new pcapng file and add some binary data Custom Options to some Block(s) in the file. This file can then be sent to a big-endian host, which will convert it to big-endian format if it re-writes the file. It will, however, leave the Custom Data payload alone (as little-endian format). If this file then gets sent back to the little-endian machine, then when that little-endian machine reads the file it will detect the format is big- endian, and swap the endianness while it parses the file - but that will cause the Custom Data payload to be incorrect since it was already in little-endian format.¶
Therefore, the vendor should either encode all of their fields in a consistent manner, such as always in big-endian or always little- endian format, regardless of the host platform's endianness, or should encode some flag in the Custom Data payload to indicate in which endianness the rest of the payload is written.¶
The recommended file name extension for the "PCAP Next Generation Capture File Format" specified in this document is ".pcapng".¶
On Windows and macOS, files are distinguished by an extension to their filename. Such an extension is technically not actually required, as applications should be able to automatically detect the pcapng file format through the "magic bytes" at the beginning of the file, as some other UN*X desktop environments do. However, using name extensions makes it easier to work with files (e.g. visually distinguish file formats) so it is recommended - though not required - to use .pcapng as the name extension for files following this specification.¶
Please note: To avoid confusion (such as the current usage of .cap for a plethora of different capture file formats) other file name extensions than .pcapng should be avoided.¶
The file format proposed in this document should be very versatile and satisfy a wide range of applications. In the simplest case, it can contain a raw capture of the network data, made of a series of Simple Packet Blocks. In the most complex case, it can be used as a repository for heterogeneous information. In every case, the file remains easy to parse and an application can always skip the data it is not interested in; at the same time, different applications can share the file, and each of them can benefit of the information produced by the others. Two or more files can be concatenated obtaining another valid file.¶
Some known implementations that read or write the pcapng file format are listed on the pcapng GitHub wiki [15].¶
TBD.¶
[Open issue: decide whether the block types, option types, NRB Record types, etc. should be IANA registries. And if so, what the IANA policy for each should be (see RFC 5226)]¶
Every Block is uniquely identified by a 32-bit integer value, stored in the Block Header.¶
As pointed out in Section 3.1, Block Type codes whose Most Significant Bit (bit 31) is set to 1 are reserved for local use by the application.¶
All the remaining Block Type codes (0x00000000 to 0x7FFFFFFF) are standardized by this document. Requests for new Block Type codes should be sent to the pcap-ng-format mailing list [16].¶
The following is a list of the Standardized Block Type Codes:¶
+-----------------------+-------------------------------------------+ | Block Type Code | Description | +-----------------------+-------------------------------------------+ | 0x00000000 | Reserved ??? | | 0x00000001 | Interface Description Block (Section 4.2) | | 0x00000002 | Packet Block (Appendix A) | | 0x00000003 | Simple Packet Block (Section 4.4) | | 0x00000004 | Name Resolution Block (Section 4.5) | | 0x00000005 | Interface Statistics Block (Section 4.6) | | 0x00000006 | Enhanced Packet Block (Section 4.3) | | 0x00000007 | IRIG Timestamp Block (requested by | | | Gianluca Varenni | | | <gianluca.varenni@cacetech.com>, CACE | | | Technologies LLC); code also used for | | | Socket Aggregation Event Block [17] | | 0x00000008 | ARINC 429 [18] in AFDX Encapsulation | | | Information Block (requested by Gianluca | | | Varenni <gianluca.varenni@cacetech.com>, | | | CACE Technologies LLC) | | 0x00000009 | systemd Journal Export Block (Section | | | 4.7) | | 0x0000000A | Decryption Secrets Block (Section 4.8) | | 0x00000101 | Hone Project [19] Machine Info Block [20] | | | (see also Google version [21]) | | 0x00000102 | Hone Project [22] Connection Event Block | | | [23] (see also Google version [24]) | | 0x00000201 | Sysdig [25] Machine Info Block | | 0x00000202 | Sysdig [26] Process Info Block, version 1 | | 0x00000203 | Sysdig [27] FD List Block | | 0x00000204 | Sysdig [28] Event Block | | 0x00000205 | Sysdig [29] Interface List Block | | 0x00000206 | Sysdig [30] User List Block | | 0x00000207 | Sysdig [31] Process Info Block, version 2 | | 0x00000208 | Sysdig [32] Event Block with flags | | 0x00000209 | Sysdig [33] Process Info Block, version 3 | | 0x00000210 | Sysdig [34] Process Info Block, version 4 | | 0x00000211 | Sysdig [35] Process Info Block, version 5 | | 0x00000212 | Sysdig [36] Process Info Block, version 6 | | 0x00000213 | Sysdig [37] Process Info Block, version 7 | | 0x00000BAD | Custom Block that rewriters can copy into | | | new files (Section 4.9) | | 0x40000BAD | Custom Block that rewriters should not | | | copy into new files (Section 4.9) | | 0x0A0D0D0A | Section Header Block (Section 4.1) | | 0x0A0D0A00-0x0A0D0AFF | Reserved. Used to detect trace files | | | corrupted because of file transfers using | | | the HTTP protocol in text mode. | | 0x000A0D0A-0xFF0A0D0A | Reserved. Used to detect trace files | | | corrupted because of file transfers using | | | the HTTP protocol in text mode. | | 0x000A0D0D-0xFF0A0D0D | Reserved. Used to detect trace files | | | corrupted because of file transfers using | | | the HTTP protocol in text mode. | | 0x0D0D0A00-0x0D0D0AFF | Reserved. Used to detect trace files | | | corrupted because of file transfers using | | | the FTP protocol in text mode. | | 0x80000000-0xFFFFFFFF | Reserved for local use. | +-----------------------+-------------------------------------------+ Table 8: Standardized Block Type Codes¶
[Open issue: reserve 0x40000000-0x7FFFFFFF for do-not-copy-bit range of base types?]¶
Loris Degioanni and Gianluca Varenni were coauthoring this document before it was submitted to the IETF.¶
The authors wish to thank Anders Broman, Ulf Lamping, Richard Sharpe and many others for their invaluable comments.¶
To be translated into proper references.¶
[2] https://www.winpcap.org/mailman/listinfo/pcap-ng-format [3] http://www.tcpdump.org/linktypes.html [4] http://www.tcpdump.org/linktypes.html [5] http://www.tcpdump.org/linktypes.html [6] https://www.freedesktop.org/wiki/Software/systemd/ [7] https://www.freedesktop.org/wiki/Software/systemd/export/ [8] https://www.freedesktop.org/wiki/Software/systemd/export/ [9] https://www.freedesktop.org/software/systemd/man/systemd.journal- fields.html [10] https://www.winpcap.org/mailman/listinfo/pcap-ng-format [11] https://developer.mozilla.org/NSS_Key_Log_Format [12] https://git.zx2c4.com/WireGuard/tree/contrib/examples/extract- handshakes/README [13] https://www.wireguard.com/ [14] http://pen.iana.org/pen/PenApplication.page [15] https://github.com/pcapng/pcapng/wiki/Implementations [16] https://www.winpcap.org/mailman/listinfo/pcap-ng-format [17] https://github.com/google/linux-sensor/blob/master/hone- pcapng.txt [18] https://en.wikipedia.org/wiki/ARINC_429 [19] https://github.com/HoneProject [20] https://github.com/HoneProject/Linux-Sensor/wiki/Augmented-PCAP- Next-Generation-Dump-File-Format [21] https://github.com/google/linux-sensor/blob/master/hone- pcapng.txt [22] https://github.com/HoneProject [23] https://github.com/HoneProject/Linux-Sensor/wiki/Augmented-PCAP- Next-Generation-Dump-File-Format [24] https://github.com/google/linux-sensor/blob/master/hone- pcapng.txt [25] https://github.com/draios/sysdig [26] https://github.com/draios/sysdig [27] https://github.com/draios/sysdig [28] https://github.com/draios/sysdig [29] https://github.com/draios/sysdig [30] https://github.com/draios/sysdig [31] https://github.com/draios/sysdig [32] https://github.com/draios/sysdig [33] https://github.com/draios/sysdig [34] https://github.com/draios/sysdig [35] https://github.com/draios/sysdig [36] https://github.com/draios/sysdig [37] https://github.com/draios/sysdig [38] http://www.tcpdump.org/linktypes.html¶
The Packet Block is obsolete, and MUST NOT be used in new files. Use the Enhanced Packet Block or Simple Packet Block instead. This section is for historical reference only.¶
A Packet Block was a container for storing packets coming from the network.¶
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +---------------------------------------------------------------+ 0 | Block Type = 0x00000002 | +---------------------------------------------------------------+ 4 | Block Total Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 8 | Interface ID | Drops Count | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 12 | Timestamp (High) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 16 | Timestamp (Low) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 20 | Captured Packet Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 24 | Original Packet Length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 28 / / / Packet Data / / variable length, padded to 32 bits / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ / / / Options (variable) / / / +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Block Total Length | +---------------------------------------------------------------+ Figure 21: Packet Block Format¶
The Packet Block has the following fields:¶
o Block Type: The block type of the Packet Block is 2.¶
o Block Total Length: total size of this block, as described in Section 3.1.¶
o Interface ID: specifies the interface this packet comes from; the correct interface will be the one whose Interface Description Block (within the current Section of the file) is identified by the same number (see Section 4.2) of this field. The interface ID MUST be valid, which means that an matching interface description block MUST exist.¶
o Drops Count: a local drop counter. It specifies the number of packets lost (by the interface and the operating system) between this packet and the preceding one. The value xFFFF (in hexadecimal) is reserved for those systems in which this information is not available.¶
o Timestamp (High) and Timestamp (Low): timestamp of the packet. The format of the timestamp is the same as was already defined for the Enhanced Packet Block (Section 4.3).¶
o Captured Packet Length: number of octets captured from the packet (i.e. the length of the Packet Data field). It will be the minimum value among the Original Packet Length and the snapshot length for the interface (SnapLen, defined in Figure 10). The value of this field does not include the padding octets added at the end of the Packet Data field to align the Packet Data field to a 32-bit boundary.¶
o Original Packet Length: actual length of the packet when it was transmitted on the network. It can be different from Captured Packet Length if the packet has been truncated by the capture process.¶
o Packet Data: the data coming from the network, including link- layer headers. The actual length of this field is Captured Packet Length plus the padding to a 32-bit boundary. The format of the link-layer headers depends on the LinkType field specified in the Interface Description Block (see Section 4.2) and it is specified in the entry for that format in the the tcpdump.org link-layer header types registry [38].¶
o Options: optionally, a list of options (formatted according to the rules defined in Section 3.5) can be present.¶
In addition to the options defined in Section 3.5, the following options were valid within this block:¶
+------------+------+----------+-------------------+ | Name | Code | Length | Multiple allowed? | +------------+------+----------+-------------------+ | pack_flags | 2 | 4 | no | | pack_hash | 3 | variable | yes | +------------+------+----------+-------------------+ Table 9: Packet Block Options¶
Example: '0'.¶
Examples: '02 EC 1D 87 97', '03 45 6E C2 17 7C 10 1E 3C 2E 99 6E C2 9A 3D 50 8E'.¶