ongrep

A cleaned up fork of ngrep for OpenBSD
git clone git://git.sgregoratto.me/ongrep
Log | Files | Refs | README | LICENSE

commit 2c112b6db1b5487222885976d0f25b2eaaed78f0
parent 4ffce1f06c6bcf6e1e5566b6fd6410cee9bc0b0e
Author: Jordan Ritter <jpr5@darkridge.com>
Date:   Wed, 23 Jul 2014 20:49:09 +0000

Actual confirmed bugfix for VLAN parsing issue.

Originally ngrep only accounted for VLAN offset if it was
specified in the BPF filter.

Prior version 1.46 expanded the BPF filter to include IPv4/6
traffic, regardless of whether or not VLANs were in use -- but
the offset calculation didn't account for the variable presence
of VLAN headers.

This version keeps the inclusive BPF filter, but detects VLAN
frames in every packet and adjusts the offset on the fly.

Diffstat:
Mngrep.c | 37+++++++++++++++++++++----------------
Mngrep.h | 14+++++++++++++-
2 files changed, 34 insertions(+), 17 deletions(-)

diff --git a/ngrep.c b/ngrep.c @@ -155,7 +155,7 @@ void (*dump_func)(unsigned char *, uint32_t, uint16_t, uint16_t) = &dump_formatt char *filter = NULL, *filter_file = NULL; char pc_err[PCAP_ERRBUF_SIZE]; -uint8_t link_offset, vlan_offset = 0; +uint8_t link_offset; uint8_t radiotap_present = 0; pcap_t *pd = NULL, *pd_dumppcap = NULL; @@ -444,17 +444,6 @@ int main(int argc, char **argv) { } } - /* VLAN support: determine # of +4 offsets to accommodate */ - if (filter) { - char const bpf_vlan[] = "vlan"; - char *s = filter; - while (*s) - if (strncasecmp(s++, bpf_vlan, sizeof(bpf_vlan)-1) == 0) - vlan_offset++; - - vlan_offset *= VLANHDR_SIZE; - } - if (filter && quiet < 2) printf("filter: %s\n", filter); @@ -637,8 +626,6 @@ int main(int argc, char **argv) { clean_exit(-1); } - link_offset += vlan_offset; - if (dump_file) { pd_dump = pcap_dump_open(pd, dump_file); if (!pd_dump) { @@ -665,10 +652,28 @@ int main(int argc, char **argv) { return 0; } +static inline uint8_t vlan_frame_count(u_char *p, uint16_t limit) { + uint8_t *et = (uint8_t*)(p + 12); + uint16_t ether_type = EXTRACT_16BITS(et); + uint8_t count = 0; + + while ((void*)et < (void*)(p + limit) && + ether_type != ETHERTYPE_IP && + ether_type != ETHERTYPE_IPV6) { + count++; + et += VLANHDR_SIZE; + ether_type = EXTRACT_16BITS(et); + } + + return count; +} + void process(u_char *d, struct pcap_pkthdr *h, u_char *p) { - struct ip *ip4_pkt = (struct ip *) (p + link_offset); + uint8_t vlan_offset = vlan_frame_count(p, h->caplen) * VLANHDR_SIZE; + + struct ip *ip4_pkt = (struct ip *) (p + link_offset + vlan_offset); #if USE_IPv6 - struct ip6_hdr *ip6_pkt = (struct ip6_hdr*)(p + link_offset); + struct ip6_hdr *ip6_pkt = (struct ip6_hdr*)(p + link_offset + vlan_offset); #endif uint32_t ip_ver; diff --git a/ngrep.h b/ngrep.h @@ -24,6 +24,17 @@ #define PFLOGHDR_SIZE 48 #define VLANHDR_SIZE 4 +#ifndef ETHERTYPE_IP +#define ETHERTYPE_IP 0x0800 +#endif +#ifndef ETHERTYPE_IPV6 +#define ETHERTYPE_IPV6 0x86dd +#endif + +#define EXTRACT_16BITS(p) \ + ((uint16_t)((uint16_t)*((const uint8_t *)(p) + 0) << 8 | \ + (uint16_t)*((const uint8_t *)(p) + 1))) + /* * Default patterns for BPF and regular expression filters. * @@ -42,7 +53,8 @@ * While the behavior is technically consistent, to the user it can be * surprising, confusing, and therefore Dumb As Shit. For convenience' sake, we * fix this for them by including VLAN (optionally) back into the stream - * targeting IP traffic. + * targeting IP traffic, and compensating for the variable offset in the packet + * decoder. */ #if USE_IPv6