We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When cache is set with a packet, modifying a value either in the payload or in a packet field does not reset the cache in the main packet.
This does not seem consistent with cache being reset on a final packet being modified.
2.6.1
3.8.6
Windows
No response
Final packet modification:
class F(Packet): fields_desc = [ ByteField("value", default=0), ] f = F(bytes.fromhex("01")) print(f"(before) f.raw_packet_cache={f.raw_packet_cache!r}") f.value = 2 print(f"(after) f.raw_packet_cache={f.raw_packet_cache!r}")
Output:
(before) f.raw_packet_cache=b'\x01' (after) f.raw_packet_cache=None
Cache is automatically reset.
Payload modification:
class M1(Packet): pass bind_layers(M1, F) m1 = M1(bytes.fromhex("01")) print(f"(before) m1.raw_packet_cache={m1.raw_packet_cache!r}") m1.value = 2 print(f"(after) m1.raw_packet_cache={m1.raw_packet_cache!r}")
(before) m1.raw_packet_cache=b'' (after) m1.raw_packet_cache=b''
Cache on the underlayer is unchanged.
Packet field modification:
class M2(Packet): fields_desc = [ PacketField("f", pkt_cls=F, default=F()), ] m2 = M2(bytes.fromhex("01")) print(f"(before) m2.raw_packet_cache={m2.raw_packet_cache!r}") m2.f.value = 2 print(f"(after) m2.raw_packet_cache={m2.raw_packet_cache!r}")
(before) m2.raw_packet_cache=b'\x01' (after) m2.raw_packet_cache=b'\x01'
Cache on the parent packet is unchanged.
Cache on underlayer and/or parent packets is unchanged.
Cache of underlayer and parent packets should be automatically reset when a subpacket (either payload or packet field) is modified.
The text was updated successfully, but these errors were encountered:
PacketField
clear_cache()
See #4707 for an implementation proposal.
Sorry, something went wrong.
No branches or pull requests
Brief description
When cache is set with a packet, modifying a value either in the payload or in a packet field does not reset the cache in the main packet.
This does not seem consistent with cache being reset on a final packet being modified.
Scapy version
2.6.1
Python version
3.8.6
Operating system
Windows
Additional environment information
No response
How to reproduce
Final packet modification:
Output:
Cache is automatically reset.
Payload modification:
Output:
Cache on the underlayer is unchanged.
Packet field modification:
Output:
Cache on the parent packet is unchanged.
Actual result
Cache on underlayer and/or parent packets is unchanged.
Expected result
Cache of underlayer and parent packets should be automatically reset when a subpacket (either payload or packet field) is modified.
Related resources
No response
The text was updated successfully, but these errors were encountered: