minor code restructure for Ethernet FCS header processing

This commit is contained in:
Michael Rash
2014-08-21 21:08:27 -04:00
parent e04f3fef21
commit dfcfb2e47b
2 changed files with 4 additions and 11 deletions
+3 -11
View File
@@ -135,7 +135,6 @@ process_packet(unsigned char *args, const struct pcap_pkthdr *packet_header,
if (ip_hdr_words < MIN_IPV4_WORDS)
return;
/* Support for the cases where libpcap returns the Ethernet Frame Check
* Sequence (4 bytes at the end of the Ethernet frame) as part of the
* capture. libpcap returning the FCS is fairly rare. Default settings on
@@ -145,18 +144,11 @@ process_packet(unsigned char *args, const struct pcap_pkthdr *packet_header,
*
* Calculate the new pkt_end from the length in the ip header.
*/
unsigned char *pcap_with_fcs_workaround_pkt_end =
((unsigned char*)iph_p) + ntohs(iph_p->tot_len);
/* Only accept the new end if it is shorter than the original pkt_end
* provided by libpcap.
*/
if(pcap_with_fcs_workaround_pkt_end < pkt_end) {
log_msg(LOG_DEBUG, "Adjusting packet end from %u to %u (likely due to Ethernet FCS being included in the capture)", pkt_end, pcap_with_fcs_workaround_pkt_end);
pkt_end = pcap_with_fcs_workaround_pkt_end;
if(((unsigned char*)iph_p)+ntohs(iph_p->tot_len) == pkt_end-FCS_HEADER_LEN) {
log_msg(LOG_DEBUG, "Adjusting packet end to account for FCS header on Ethernet frame");
pkt_end -= FCS_HEADER_LEN;
}
/* Now, find the packet data payload (depending on IPPROTO).
*/
src_ip = iph_p->saddr;
+1
View File
@@ -33,6 +33,7 @@
#define IPV4_VER_MASK 0x15
#define MIN_IPV4_WORDS 0x05
#define FCS_HEADER_LEN 0x04
/* For items not defined by this system
*/