-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug #703 #844 PR #846: optionally fix packet header length --fixhdrlen #861
Merged
fklassen
merged 15 commits into
4.5.0
from
Bug_703_844_PR_846_optionally_fix_pkt_hdr_len
Jun 2, 2024
Merged
Bug #703 #844 PR #846: optionally fix packet header length --fixhdrlen #861
fklassen
merged 15 commits into
4.5.0
from
Bug_703_844_PR_846_optionally_fix_pkt_hdr_len
Jun 2, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ottrill/tcpreplay into fix/844-ipv4-packet-order
Add option to turn on/off fix packet header length
added to control action on packet length changes Verification ``` ~/git/tcpreplay/build Bug_703_844_PR_846_optionally_fix_pkt_hdr_len* ⇡ ❯ src/tcprewrite --cachefile=pcaps/pcap.cache \ --infile=pcaps/cap-original-packet-3.pcap \ --outfile=pcaps/cap-4.5.0-packet-out.pcap \ --endpoints=10.200.1.1:10.200.1.2 Warning in ../../src/tcprewrite.c:post_args() line 231: pcaps/cap-original-packet-3.pcap was captured using a snaplen of 1514 bytes. This may mean you have truncated packets. ~/git/tcpreplay/build Bug_703_844_PR_846_optionally_fix_pkt_hdr_len* ⇡ ❯ diff pcaps/cap-4.4.0-packet-3.pcap pcaps/cap-4.5.0-packet-out.pcap ~/git/tcpreplay/build Bug_703_844_PR_846_optionally_fix_pkt_hdr_len* ⇡ ❯ ```
Triggers when attempting a checksum update but packet length does not match header length. Example: ``` tcprewrite -i test.pcap -o test2.rewrite_1ttl --ttl=58 Warning: skipping packet 11 because caplen 122 minus L2 length 22 does not equal IPv4 header length 255. Consider option '--fixhdrlen'. Warning: skipping packet 12 because caplen 114 minus L2 length 14 does not equal IPv4 header length 84. Consider option '--fixhdrlen'. Warning: skipping packet 14 because caplen 60 minus L2 length 14 does not equal IPv4 header length 28. Consider option '--fixhdrlen'. Warning: skipping packet 15 because caplen 60 minus L2 length 14 does not equal IPv4 header length 28. Consider option '--fixhdrlen'. Warning: skipping packet 16 because caplen 60 minus L2 length 14 does not equal IPv4 header length 28. Consider option '--fixhdrlen'. ```
Required to run tests on older bigendian machine. Also fix a usec to nsec conversion bug.
include tests for --fixhdrlen option
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.