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
629 Views Asked by Keeto At
1
There are 1 best solutions below
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in LIBPCAP
- Are Berkeley Packet Filter opcode values implementation defined?
- Merging two pcap files with libpcap
- pcap_dispatch() always returns 0 on Mac OSX for wifi interface
- Performing TCP connections automatically with libpcap
- Writing pcap packets into a structure with libpcap
- Querying Interfaces to find device with libpcap
- Capture RRC Messages using Libpcap on android
- Finding host address range in C
- Set timeout to unresponded hosts in ARP request with libpcap
- ladvd and libpcap installation?
- How to Match a URL in UDP payload using POSIX regexec and libpcap in C
- Pcap functions have "undefined reference"
- How to install Python libpcap module on Mac OS X
- How can I merge 'split/partial' packets with libpcap?
- Programming with pcap example
Related Questions in TCPDUMP
- Are Berkeley Packet Filter opcode values implementation defined?
- filter packet data based on the type of content they carry
- TCPDump working from adb shell but not from device
- TCPDump on rooted android devices
- Find the SYN and ACK flags from the TCP Packets By TCPDUMP
- rsyslog to resend event from client after abnormal server crash
- Python dpkt with pcap - how can I print the packet data?
- Debugging slow download with curl
- Tap interface is not receiving packets
- Asterisc(*) signal on DNS Responses with tcpdump
- Ethernet sniffer not capturing everything, with tcpdump in parallel it does
- Use IP or TCP packet length to analyze how much data transferred
- Trying to understand packets captured with tcpdump
- Greping a tcpdump with tshark
- Unable to get Grep get information in Terminal
Related Questions in LIBNET
- libnl-3 neighbor cache - rtnl_neigh_alloc_cache called for multicast address
- Trouble installing libnet-0.10.11 on Ubuntu-9.10
- Libnet missing some defines flags
- Creating Fragmented UDP Packets in C Using Libnet
- Libnet vs Raw Sockets for packet injection
- Ruby Network programming with libnet4r or similar gem
- How to build ICMPv6 packet with libnet?
- Libnet TCP checksum error
- Where can I find documentation for Net::Libnet?
- libnet creates UDP packets with invalid checksums
- dereferencing pointer to incomplete type ‘struct tcphdr’?
- Tcp connection with libnet C
- libnet error : success
- Pylibnet installation error ubuntu 14
- How to get pylibnet installed on a Mac
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)
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?
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.