mirror of
https://github.com/openvswitch/ovs
synced 2025-08-29 05:18:13 +00:00
This fixes the flake8 error on pyhton version older than 3.6 as ModuleNotFoundError in not available before 3.6. ../../tests/mfex_fuzzy.py:5:8: F821 undefined name 'ModuleNotFoundError' Makefile:5826: recipe for target 'flake8-check' failed Since it doesn't really make any sense to catch this exception, try-except block is just removed. Additionally the check for scapy replaced with the more reliable one. Imports re-ordered, because standard imports should go first. Fixes: 50be6715c0 ("test/sytem-dpdk: Add unit test for mfex autovalidator") Signed-off-by: kumar Amber <kumar.amber@intel.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
33 lines
1.0 KiB
Python
Executable File
33 lines
1.0 KiB
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import sys
|
|
|
|
from scapy.all import RandMAC, RandIP, PcapWriter, RandIP6, RandShort, fuzz
|
|
from scapy.all import IPv6, Dot1Q, IP, Ether, UDP, TCP
|
|
|
|
path = str(sys.argv[1]) + "/pcap/fuzzy.pcap"
|
|
pktdump = PcapWriter(path, append=False, sync=True)
|
|
|
|
for i in range(0, 2000):
|
|
|
|
# Generate random protocol bases, use a fuzz() over the combined packet
|
|
# for full fuzzing.
|
|
eth = Ether(src=RandMAC(), dst=RandMAC())
|
|
vlan = Dot1Q()
|
|
ipv4 = IP(src=RandIP(), dst=RandIP())
|
|
ipv6 = IPv6(src=RandIP6(), dst=RandIP6())
|
|
udp = UDP(dport=RandShort(), sport=RandShort())
|
|
tcp = TCP(dport=RandShort(), sport=RandShort())
|
|
|
|
# IPv4 packets with fuzzing
|
|
pktdump.write(fuzz(eth / ipv4 / udp))
|
|
pktdump.write(fuzz(eth / ipv4 / tcp))
|
|
pktdump.write(fuzz(eth / vlan / ipv4 / udp))
|
|
pktdump.write(fuzz(eth / vlan / ipv4 / tcp))
|
|
|
|
# IPv6 packets with fuzzing
|
|
pktdump.write(fuzz(eth / ipv6 / udp))
|
|
pktdump.write(fuzz(eth / ipv6 / tcp))
|
|
pktdump.write(fuzz(eth / vlan / ipv6 / udp))
|
|
pktdump.write(fuzz(eth / vlan / ipv6 / tcp))
|