Little endian packet treated as big endian by dpkt

600 Views Asked by At

I am using dpkt to parse some ieee80211 packets.
I see that the ieee80211 object created has wrong values.
Digging deeper I found that the ieee80211 treats the data as big endian while in practice the packets I am providing it are little endian.

Is there a way to detect the endianness of the packet in runtime so I could maybe change it to big endian before providing it to dpkt.ieee80211?

3

There are 3 best solutions below

0
On

The only way you're going to be able to detect endianness when you don't know one way or the other would be to inject a payload and have that parsed the same way.

You can then check for endianness by checking the identity of the payload you injected.

6
On

There shouldn't be anything to detect or guess. IEEE 802.11 is a standard protocol, and its specification states the correct endianess for each and every part of a frame. It the endianess is reversed, then the frame is malformed. You can grab the latest copy of the standard here.

Looking over the 3500+ page pdf (thank god for ctrl+f), it seems that most values are big-endian, just like in TCP/IP. But apparently, little-endian is used here and there. For instance, in some TKIP fields. Frankly, that's a bit surprising.

You haven't mentioned the frame/field you're trying to create/decode, so it's hard to say anything more specific than to look it up.

0
On

It turns out that for IEEE80211 under CAPWAP the frame control bytes are simply swapped.
It is probably an an-initial-mistake-gone-de-facto-standard case.
See answer in Wireshark Q&A