mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 04:41:20 +00:00
e66451f685
All the unit tests that use iptables/ip6tables/ebtables have been written to omit the locking/exclusive use primitive on the generated commandlines. Even though none of the tests actually execute those commands (and so it doesn't matter for purposes of the test whether or not the commands support these options), it still made sense when some systems had these locking options and some didn't. We are now at a point where every supported Linux distro has supported the locking options on these commands for quite a long time, and are going to make their use non-optional. As a first step, this patch uses the virFirewallSetLockOverride() function, which is called at the beginning of all firewall-related tests, to set all the bools controlling whether or not the locking options are used to true. This means that all the test cases must be updated to include the proper locking option in their commandlines. The change to make actual execs of the commands unconditionally use the locking option will be in an upcoming patch - this one affects only the unit tests. Signed-off-by: Laine Stump <laine@redhat.com> Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
125 lines
2.1 KiB
Plaintext
125 lines
2.1 KiB
Plaintext
ebtables \
|
|
--concurrent \
|
|
-t nat \
|
|
-A libvirt-P-vnet0 \
|
|
-p 0x1234 \
|
|
-j ACCEPT
|
|
ebtables \
|
|
--concurrent \
|
|
-t nat \
|
|
-A libvirt-J-vnet0 \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:ff \
|
|
-d aa:bb:cc:dd:ee:ff/ff:ff:ff:ff:ff:ff \
|
|
-p ipv4 \
|
|
--ip-source 10.1.2.3/32 \
|
|
--ip-destination 10.1.2.3/32 \
|
|
--ip-protocol 17 \
|
|
--ip-source-port 291:564 \
|
|
--ip-destination-port 13398:17767 \
|
|
--ip-tos 0x32 \
|
|
-j ACCEPT
|
|
ebtables \
|
|
--concurrent \
|
|
-t nat \
|
|
-A libvirt-J-vnet0 \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:fe \
|
|
-d aa:bb:cc:dd:ee:ff/ff:ff:ff:ff:ff:80 \
|
|
-p ipv6 \
|
|
--ip6-source ::10.1.2.3/22 \
|
|
--ip6-destination ::10.1.2.3/113 \
|
|
--ip6-protocol 6 \
|
|
--ip6-source-port 273:400 \
|
|
--ip6-destination-port 13107:65535 \
|
|
-j ACCEPT
|
|
ebtables \
|
|
--concurrent \
|
|
-t nat \
|
|
-A libvirt-J-vnet0 \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:ff \
|
|
-d aa:bb:cc:dd:ee:ff/ff:ff:ff:ff:ff:ff \
|
|
-p 0x806 \
|
|
--arp-htype 18 \
|
|
--arp-opcode 1 \
|
|
--arp-ptype 0x56 \
|
|
--arp-mac-src 01:02:03:04:05:06 \
|
|
--arp-mac-dst 0a:0b:0c:0d:0e:0f \
|
|
-j ACCEPT
|
|
iptables \
|
|
-w \
|
|
-A FJ-vnet0 \
|
|
-p udp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 34 \
|
|
--sport 291:400 \
|
|
--dport 564:1092 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-j RETURN
|
|
iptables \
|
|
-w \
|
|
-A FP-vnet0 \
|
|
-p udp \
|
|
--source 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 34 \
|
|
--dport 291:400 \
|
|
--sport 564:1092 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j ACCEPT
|
|
iptables \
|
|
-w \
|
|
-A HJ-vnet0 \
|
|
-p udp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 34 \
|
|
--sport 291:400 \
|
|
--dport 564:1092 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-j RETURN
|
|
ip6tables \
|
|
-w \
|
|
-A FJ-vnet0 \
|
|
-p tcp \
|
|
--destination a:b:c::/128 \
|
|
-m dscp \
|
|
--dscp 57 \
|
|
--dport 32:33 \
|
|
--sport 256:4369 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j RETURN
|
|
ip6tables \
|
|
-w \
|
|
-A FP-vnet0 \
|
|
-p tcp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--source a:b:c::/128 \
|
|
-m dscp \
|
|
--dscp 57 \
|
|
--sport 32:33 \
|
|
--dport 256:4369 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-j ACCEPT
|
|
ip6tables \
|
|
-w \
|
|
-A HJ-vnet0 \
|
|
-p tcp \
|
|
--destination a:b:c::/128 \
|
|
-m dscp \
|
|
--dscp 57 \
|
|
--dport 32:33 \
|
|
--sport 256:4369 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j RETURN
|