The PKT File Library is a high-performance C library designed for efficient handling and manipulation of .pkt
files, a custom binary file format intended for lightweight packet storage. This library provides a robust API for creating, reading, and modifying .pkt
files, making it ideal for applications such as packet capture, storage, and analysis.
.pkt
file format for storing packets with metadata.This project allows for the creation, manipulation, and reading of .pkt
files, each containing a sequence of packets along with a header that stores essential file metadata. The format is designed to be lightweight and easy to use, making it suitable for network tools, data analysis applications, and custom networking protocols.
The .pkt
file format is structured into a file header and multiple packet entries, each with its own metadata. Below is a breakdown of the structure:
The header contains critical information about the file:
Offset | Field | Size |
---|---|---|
0 | Magic Number | 4 bytes |
4 | Version | 1 byte |
5 | Reserved | 2 bytes |
8 | Packet Count | 4 bytes |
.pkt
format.Each packet entry contains information about an individual packet:
Offset | Field | Size |
---|---|---|
0 | Packet Type | 2 bytes |
2 | Timestamp | 8 bytes |
10 | Packet Length | 4 bytes |
14 | Packet Data | Variable |
Packet Length
.To build the project, clone the repository and use Meson to configure and build the project.
Clone the repository:
git clone https://github.com/torbenconto/libpkt.git
cd libpkt
Create the build directory and generate the Makefiles using CMake:
mkdir build
meson build
cd build
Build the project:
meson compile
Install the library:
sudo meson install
To use the PKT File Library in your own CMake project, you can use pkg-config to find the library and link it to your target:
find_package(PkgConfig REQUIRED)
pkg_check_modules(LIBPKT REQUIRED libpkt)
add_executable(my_program main.c)
# Properly include directories and link libraries
target_include_directories(my_program PRIVATE ${LIBPKT_INCLUDE_DIRS})
target_link_libraries(my_program PRIVATE ${LIBPKT_LIBRARIES})
target_compile_options(my_program PRIVATE ${LIBPKT_CFLAGS_OTHER})
To use the PKT File Library in your own Meson project, you can use the dependency()
function to find the library and link it to your target:
libpkt_dep = dependency('libpkt')
executable('my_program', 'main.c', dependencies:[libpkt_dep])
To use the PKT File Library, include the header file in your project:
#include <lipkt.h>
This is a common issue when the library is not installed in a standard location. To fix this, you can set the LD_LIBRARY_PATH
environment variable to include the directory where the library is installed:
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
Alternatively, you can copy the library to a standard location like /usr/lib
or /usr/local/lib
.
You can also use ldconfig to update the library cache:
echo "/usr/local/lib/x86_64-linux-gnu" | sudo tee /etc/ld.so.conf.d/libpkt.conf
sudo ldconfig
pkt_header_t *header = pkt_header_create();
// ... use the header ...
pkt_header_destroy(header);
pkt_t *packet = pkt_create(length);
// ... use the packet ...
pkt_destroy(packet);
pkt_file_t *file = pkt_open("example.pkt");
// ... use the file ...
pkt_close(file);
int result = pkt_write_header(file, header);
pkt_header_t *read_header = pkt_read_header(file);
int result = pkt_append_packet(file, packet);
pkt_t *read_packet_at_index = pkt_read_packet(file, index);
pkt_array_t all_packets = pkt_read_all_packets(file);
0x00000001
We welcome contributions to the PKT File Library! Whether it’s bug fixes, feature requests, or improvements, feel free to fork the repository and submit a pull request.
Please ensure that you write unit tests for new features or bug fixes, and ensure all existing tests pass.
This project is licensed under the MIT License.