I need to pickle a scapy packet. Most of the time this works, but sometimes the pickler complains about a function object. As a rule of thumb: ARP packets pickle fine. Some UDP packets are problematic.

link|improve this question

Background is usage in conjunction with the multiprocessing module. It requires objects to be pickleable if you want to transfer them through a Queue. – Helmut Nov 16 '10 at 12:22
Could someone answer this question, so I can award the bounty? – Helmut Nov 23 '10 at 12:37
feedback

6 Answers

up vote 3 down vote accepted

My solution (as inspired by the scapy mailing list) is as follows:

class PicklablePacket:
    """A container for scapy packets that can be pickled (in contrast
    to scapy packets themselves)."""
    def __init__(self, pkt):
        self.contents = str(pkt)
        self.time = pkt.time

    def __call__(self):
        """Get the original scapy packet."""
        pkt = scapy.Ether(self.contents)
        pkt.time = self.time
        return pkt

Anywhere I wish to pass a scapy Packet through a Queue I simply wrap it in a PicklablePacket and __call__ it afterwards. I am not aware of data that is not retained this way. However this approach only works with Ethernet packets. (All packets sniffed on a regular NIC (not WLAN) are Ethernet.) It could probably be extended to work for other types, too.

link|improve this answer
Thanks for posting back. While I didn't need your exact solution, it helped me find my own. – Mr. Shickadance Mar 24 '11 at 13:50
feedback

(This is more for reference, so no votes expected)

The Scapy list scapy.ml@secdev.org is well-monitored and tends to be very responsive. If you don't get answers here, try there as well.

link|improve this answer
Oh that's where communication goes on? The issue tracker seems pretty inactive. At least one of my bugs stayed there for half a year without any response. – Helmut Nov 16 '10 at 10:53
as a side note, 500 packets per second might be more than Scapy handles as well. It's designed for flexibility not speed :) Ask on the list. I don't really use it much, so I am no expert. – Gregg Lind Nov 17 '10 at 13:49
Actually I can confirm, that scapy handles 500 packets per second very well. Granted I use more than one thread and (after this question) more than one process. – Helmut Nov 23 '10 at 11:00
feedback

If by pickle you mean generically serialize you can always use the pcap import/export methods: rdpcap and wrpcap.

wrpcap("pkt.pcap",pkt)
pkt = rdpcap("pkt.pcap")

Or you could start up your process and grab the packets in another process. If there is some pattern you can match, say a known port or source IP tcpdump will work:

tcpdump -i eth0 -w FOO.pcap host 172.20.33.12 and \(udp or arp\)

You can then read the generated pcap in as above:

pkts = rdpcap('FOO.pcap')
link|improve this answer
1) I am talking about 500 packets per second. – Helmut Nov 16 '10 at 10:47
2) This method actually looses data. For instance the timestamp is rounded. This is not necessarily a problem, but has to be taken into account. – Helmut Nov 16 '10 at 10:48
Can scapy even push out 500 packets per second? I've found that when sending packets it's much less than that. You could always run a tcpdump in another terminal. – Paul Rubel Nov 18 '10 at 20:46
Scapy can. See comment on other answer. – Helmut Nov 23 '10 at 11:00
Your updated answer addresses neither of my concerns. – Helmut Nov 23 '10 at 14:49
show 2 more comments
feedback

You can monkeypatch the Packet class and inject __getstate__ and __setstate__ methods that convert the function in the object from and to a picklable representation. See here for details.

def packet_getstate(self):
    # todo

def packet_setstate(self, state):
    # todo

from scapy.packet import Packet
Packet.__getstate__ = packet_getstate
Packet.__setstate__ = packet_setstate
link|improve this answer
This is kind of obvious to me. The non-obvious part is the todo part. – Helmut Nov 23 '10 at 14:44
Interactively inspecting a Packet object that fails pickling (pprint.pprint(packet.__dict__)) would easily show what the function is, if it's a lambda, a function or an instance method. Do you already know what kind of function is? – piro Nov 24 '10 at 13:42
The full traceback is too long for a comment, but you can easily reproduce that yourself. The final line is: pickle.PicklingError: Can't pickle <function <lambda> at 0x8bb2bc4>: it's not found as scapy.layers.inet.<lambda> – Helmut Nov 25 '10 at 11:07
feedback

I've tested everything and I finally decided to go for a trimmed down version of the Picklable solution. I create a tuple with the [pkt.time,str(packet)] I shuffle around my tasks...

link|improve this answer
Pedro, did you mean (pkt.time,str(packet)) or do you create a list, either one will work of course. – dc5553 Apr 25 at 14:44
feedback

Helmut,

Try exporting the packet to a string by simply

a = str(packet)

Then pickle the string in the normal way

Later unpickle the string to retrieve the string

Lastly turn the string back into a packet making sure you start the packet with the first layer Ether() or IP() or whatever..

a = Ether()

Let me know how it works out..

dc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.