]> The Tcpdump Group git mirrors - tcpdump/commit
fix bug #303 (DLT_IEEE802_11_RADIO ext. bitmaps)
authorDenis Ovsienko <[email protected]>
Sun, 28 Apr 2013 13:20:28 +0000 (17:20 +0400)
committerDenis Ovsienko <[email protected]>
Sun, 28 Apr 2013 14:26:53 +0000 (18:26 +0400)
commitb766ec9d3be6d4103a510ffb18d6497df1e50dc8
tree503280d4fbcf57c01f1f16807cd429f379e8e73a
parent3e3cc1fce3f6573695f13227f027efc22b4fb8af
fix bug #303 (DLT_IEEE802_11_RADIO ext. bitmaps)

This bug was discovered and pinned down by Wim Torfs.

The code in question handles DLT_IEEE802_11_RADIO datalink type, which
consists of a variable-sized header, a variable number of fields and the
actual 802.11 frame. The integers contained in the fields are aligned,
properly extracting them is exactly the purpose of the existing "cpack"
module. The issue with the current code is that it sets alignment base
for cpack at the end of the variable-sized header, in other words,
64-bit integers would be properly extracted only so long as the header
is 64-bit long, which only happens when the total number of bitmaps in
it is odd (the minimum number of bitmaps is one). Once this condition
isn't met, as is with two bitmaps, decoding becomes incorrect. The
reporter's point that the alignment base must be the beginning of the
variable-sized header is accurate.

This commit adds a new cpack_advance() function to fast-forward the
"c_next" pointer of a cpack_state context by an arbitrary number of
octets. The ieee802_11_radio_print() function now uses it to skip the
header and all its bitmaps, and the alignment base is now the header
start.
cpack.c
cpack.h
print-802_11.c
tests/ieee802.11_exthdr.out