从无符号指针读取 4 位值到 int:TCP 数据偏移读取受损
00000 45 00 02 87 8a 97 40 00 40 06 af d7 7f 00 00 01 E.....@.@.......
00016 7f 00 00 01 e0 56 00 50 0d 46 70 a8 0c e2 41 70 .....V.P.Fp...Ap
00032 80 18 01 01 b9 70 00 00 01 01 08 0a 00 64 fa 32 .....p.......d.2
这就是 Wireshark/tcpdump/my 代码表示存储在转储文件中的 TCP 数据包的一部分的方式。 第三行的第一个值 80
,它是 32 字节的正确 TCP 数据偏移量,或 8 个 32 位(4 字节)字。
但是,当(在我的代码中)通过该有效负载(包括 ip 标头偏移量等)创建 struct tcp_hdr 时,读取 my_tcphdr->doff
的结果是 6(相当于 24 个字节)。
假设从结构中读取此类数据在某种程度上不够健康。
给定(称为正确的)指针:unsigned char *doff = tcp_payload+MAGIC_16
,如何将这个 4 位(0xF0?)值读取为某个 int?
00000 45 00 02 87 8a 97 40 00 40 06 af d7 7f 00 00 01 E.....@.@.......
00016 7f 00 00 01 e0 56 00 50 0d 46 70 a8 0c e2 41 70 .....V.P.Fp...Ap
00032 80 18 01 01 b9 70 00 00 01 01 08 0a 00 64 fa 32 .....p.......d.2
This is how Wireshark/tcpdump/my code represents a part of TCP packet stored in dump file.
Third line's first value, 80
, it a correct TCP data offset of 32 bytes, or 8 32-bit (4 byte) words.
However, when (in my code), struct tcp_hdr is created over this payload (including ip header offset etc), the result of reading my_tcphdr->doff
is 6, (equivalent for 24 bytes).
Suppose that reading such data from structure somehow isn't enough healthy.
How can I read this 4-bit (0xF0?) value to some int, given the (known as correct) pointer: unsigned char *doff = tcp_payload+MAGIC_16
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要提取该字节并将其向右移动 4 个位置。
至于为什么你的 struct tcp_hdr 没有“工作”,你应该发布它。也许它使用了错误的字节序,或者结构被填充,因此它与在线格式不匹配。
You'd extract the byte and shift it 4 places to the right.
As of why your struct tcp_hdr didn't "work", you should post that. Perhaps it's using the wrong endian, or the struct get padded so it doesn't match the on wire format.