I am trying to build a TCP packet using libnet library. I use '0' for autocomputation of checksum value in the libnet_build_tcp function. However, it seems the checksum ignores the pseudo-header when being computed resulting in a useless packet because of checksum error. Does anyone know how to solve this?
Libnet TCP checksum error
632 views Asked by Keeto At
1
There are 1 answers
Related Questions in C
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in LIBPCAP
- Problem with detect IP Layer When Pcap file have several Ethernet
- Facing Issue while writing data to a pcap file using C language
- Github /usr/bin/ld: cannot find -lpcap: No such file or directory
- libpcap disable monitor mode (C, macOS)
- PCAP Memory USage
- How to use libpcap in a Podman container?
- tcpdump is buffering incoming packets and storing into pcap file
- Reconstructing files coming on UDP with Rust pcap lib
- Tcpdump captured traffic for GRE reassembled packets
- pcap4j failes to capture all trafic
- What's the difference between `PCAP_IF_UP` and `PCAP_IF_RUNNING`?
- Distinguish between VLAN-tagged and non-VLAN frames
- libpcap doesn't do anything (Windows)
- Signal SIGINT (CTRL+C) Waits until Program Finishes to arise an Exception and call the given handler (Python3 + Libpcap)
- How to compile C code with pcaplib to WASM
Related Questions in TCPDUMP
- how to include wlan_logs in bugreport
- Understanding the PCAPng file format
- How to Pipe `tcpdump` and the `until statement` into a Single and Working Shell Script?
- Why TCP packets loss occurs when using Exanic X10 NIC to get frame data which the firmware version is 20210604?
- Troubleshooting network connectivity issues in a local network environment after adding dummy interface to the local subnet
- tcpdump -z flag problem for run a bash script file
- Unable to preserve HTTP/2 headers list when extracting frame using editcap. Hex Dump Matches
- tcpcopy [warn] slide win:too many packs:50849,p:47872
- Tcpdump captured traffic for GRE reassembled packets
- how to close a tcpdump via paramiko
- Filtering for Quic Client Hello packets with tcpdump
- Windows 2019 WMI RPC communication ISystemActivator-RemoteCreateInstace response not reaching source
- Delay in sending TCP ACK
- is it possible to filter pcap files with tcpdump by relative sequence number ? want read pcap files of only first 10Mbyte per session
- What is the relationship between TCP Connection and TCP Stream?
Related Questions in LIBNET
- Creating Fragmented UDP Packets in C Using Libnet
- Alpine image unable to resolve more than 63 IP addresses for domain (`java.net.InetAddress`)
- Why is server.close() executing earlier than server.on('connection')?
- Decoding ICMPv4 packets with libpcap and libnet
- Tcp connection with libnet C
- dereferencing pointer to incomplete type ‘struct tcphdr’?
- /bin/sh: 0 cannot open ./configure during install libnet-1.0.2a
- Rst packets sent with libnet do not reset the connection
- How to supply the Libnet header to Nemesis during installation?
- Function return type is unsigned while it returns -1 for error
- libnet.h no such file or directory
- Socket receives packet wrong
- Error compiling honeyd in Debian
- ip4 packet assembled as ip6 - libnet
- libnet error : success
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
As far as I can see in the code, as long as you haven't used
libnet_toggle_checksum(l, ptag, 1);your0in thesumparameter oflibnet_build_tcp()should be causing it to autocompute a checksum for you by callinglibnet_pblock_setflags(p, LIBNET_PBLOCK_DO_CHECKSUM).I couldn't really tell you how to solve it but since you are the one building the packet maybe you could opt for creating your own checksum?
The TCP pseudoheader is a 12 byte field containing the source and destination IP addresses which are both 4 bytes each, a reserved field which is 2 bytes and always set to zeros, and a 4 byte TCP segment length which is equal to the size of the TCP header + the payload length.
You could create something like this:
First create your variables:
Then create the actual function where b->len is the total size of the packet (just add all the headers + the payload and get the total size) and you would just have to memcpy your header and data to pkt_data:
And just use the checksum function provided by https://www.rfc-editor.org/rfc/rfc1071 to calculate the checksum over the buffer:
I use this in a realistic environment to calculate checksums at 5 million PPS.