libvirt/tests
Daniel P. Berrangé 7431b3eb9a util: move virtual network firwall rules into private chains
The previous commit created new chains to hold the firewall rules. This
commit changes the code that creates rules to place them in the new
private chains instead of the builtin top level chains.

With two networks running, the rules in the filter table now look like

  -N LIBVIRT_FWI
  -N LIBVIRT_FWO
  -N LIBVIRT_FWX
  -N LIBVIRT_INP
  -N LIBVIRT_OUT
  -A INPUT -j LIBVIRT_INP
  -A FORWARD -j LIBVIRT_FWX
  -A FORWARD -j LIBVIRT_FWI
  -A FORWARD -j LIBVIRT_FWO
  -A OUTPUT -j LIBVIRT_OUT
  -A LIBVIRT_FWI -d 192.168.0.0/24 -o virbr0 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
  -A LIBVIRT_FWI -o virbr0 -j REJECT --reject-with icmp-port-unreachable
  -A LIBVIRT_FWI -d 192.168.1.0/24 -o virbr1 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
  -A LIBVIRT_FWI -o virbr1 -j REJECT --reject-with icmp-port-unreachable
  -A LIBVIRT_FWO -s 192.168.0.0/24 -i virbr0 -j ACCEPT
  -A LIBVIRT_FWO -i virbr0 -j REJECT --reject-with icmp-port-unreachable
  -A LIBVIRT_FWO -s 192.168.1.0/24 -i virbr1 -j ACCEPT
  -A LIBVIRT_FWO -i virbr1 -j REJECT --reject-with icmp-port-unreachable
  -A LIBVIRT_FWX -i virbr0 -o virbr0 -j ACCEPT
  -A LIBVIRT_FWX -i virbr1 -o virbr1 -j ACCEPT
  -A LIBVIRT_INP -i virbr0 -p udp -m udp --dport 53 -j ACCEPT
  -A LIBVIRT_INP -i virbr0 -p tcp -m tcp --dport 53 -j ACCEPT
  -A LIBVIRT_INP -i virbr0 -p udp -m udp --dport 67 -j ACCEPT
  -A LIBVIRT_INP -i virbr0 -p tcp -m tcp --dport 67 -j ACCEPT
  -A LIBVIRT_INP -i virbr1 -p udp -m udp --dport 53 -j ACCEPT
  -A LIBVIRT_INP -i virbr1 -p tcp -m tcp --dport 53 -j ACCEPT
  -A LIBVIRT_INP -i virbr1 -p udp -m udp --dport 67 -j ACCEPT
  -A LIBVIRT_INP -i virbr1 -p tcp -m tcp --dport 67 -j ACCEPT
  -A LIBVIRT_OUT -o virbr0 -p udp -m udp --dport 68 -j ACCEPT
  -A LIBVIRT_OUT -o virbr1 -p udp -m udp --dport 68 -j ACCEPT

While in the nat table:

  -N LIBVIRT_PRT
  -A POSTROUTING -j LIBVIRT_PRT
  -A LIBVIRT_PRT -s 192.168.0.0/24 -d 224.0.0.0/24 -j RETURN
  -A LIBVIRT_PRT -s 192.168.0.0/24 -d 255.255.255.255/32 -j RETURN
  -A LIBVIRT_PRT -s 192.168.0.0/24 ! -d 192.168.0.0/24 -p tcp -j MASQUERADE --to-ports 1024-65535
  -A LIBVIRT_PRT -s 192.168.0.0/24 ! -d 192.168.0.0/24 -p udp -j MASQUERADE --to-ports 1024-65535
  -A LIBVIRT_PRT -s 192.168.0.0/24 ! -d 192.168.0.0/24 -j MASQUERADE
  -A LIBVIRT_PRT -s 192.168.1.0/24 -d 224.0.0.0/24 -j RETURN
  -A LIBVIRT_PRT -s 192.168.1.0/24 -d 255.255.255.255/32 -j RETURN
  -A LIBVIRT_PRT -s 192.168.1.0/24 ! -d 192.168.1.0/24 -p tcp -j MASQUERADE --to-ports 1024-65535
  -A LIBVIRT_PRT -s 192.168.1.0/24 ! -d 192.168.1.0/24 -p udp -j MASQUERADE --to-ports 1024-65535
  -A LIBVIRT_PRT -s 192.168.1.0/24 ! -d 192.168.1.0/24 -j MASQUERADE

And finally the mangle table:

  -N LIBVIRT_PRT
  -A POSTROUTING -j LIBVIRT_PRT
  -A LIBVIRT_PRT -o virbr0 -p udp -m udp --dport 68 -j CHECKSUM --checksum-fill
  -A LIBVIRT_PRT -o virbr1 -p udp -m udp --dport 68 -j CHECKSUM --checksum-fill

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2019-01-29 13:37:11 +00:00
..
bhyveargv2xmldata
bhyvexml2argvdata bhyve: implement support for commandline args 2019-01-27 14:54:52 +04:00
bhyvexml2xmloutdata bhyve: implement support for commandline args 2019-01-27 14:54:52 +04:00
capabilityschemadata Add armv6l Support as guest 2018-12-03 14:31:41 +01:00
commanddata qemu: use line breaks in command line args written to log 2018-12-17 15:02:11 +00:00
cputestdata cpu_map: Add support for arch-capabilities feature 2019-01-10 16:39:57 +01:00
domaincapsschemadata Drop UML driver 2018-12-17 17:52:46 +01:00
domainconfdata
domainschemadata tests: unify qemu binary paths for all qemu related tests 2017-04-11 14:06:47 +02:00
domainsnapshotxml2xmlin
domainsnapshotxml2xmlout
fchostdata/fc_host
genericxml2xmlindata conf: Introduce cache monitor element in cachetune 2018-11-14 12:18:46 -05:00
genericxml2xmloutdata
interfaceschemadata
libxlxml2domconfigdata tests: add basic Xen PVH test 2018-11-26 16:33:25 -07:00
lxcconf2xmldata tests: Adding test case to include multiple network definitions. 2018-12-11 15:03:08 -05:00
lxcxml2xmldata
lxcxml2xmloutdata
networkxml2confdata
networkxml2firewalldata util: move virtual network firwall rules into private chains 2019-01-29 13:37:11 +00:00
networkxml2xmlin
networkxml2xmlout
networkxml2xmlupdatein
networkxml2xmlupdateout
nodedevschemadata
nssdata
nwfilterxml2firewalldata
nwfilterxml2xmlin nwfilter: remove bogus 'protocolid' attribute on arp/rarp fields 2017-12-07 09:21:04 +00:00
nwfilterxml2xmlout
qemuagentdata
qemuargv2xmldata
qemublocktestdata/xml2json
qemucapabilitiesdata tests: Add capabilities data for QEMU 4.0.0 x86_64 2019-01-21 17:29:10 -05:00
qemucaps2xmloutdata tests: Sync qemucaps2xml with qemucapabilities 2018-11-29 15:24:03 +01:00
qemuhotplugtestcpus
qemuhotplugtestdevices
qemuhotplugtestdomains
qemumemlockdata
qemumigparamsdata
qemumonitorjsondata
qemustatusxml2xmldata
qemuxml2argvdata qemu: format CCID controllers after USB hubs 2019-01-25 14:58:35 +01:00
qemuxml2startupxmloutdata tests: drop 'drive' from qemuxml2startup tests 2018-09-12 14:43:03 +02:00
qemuxml2xmloutdata tests: qemuxml2argv: Add test case for empty CDROM with cache mode 2019-01-21 17:04:26 +01:00
secretxml2xmlin
securityselinuxhelperdata
securityselinuxlabeldata
sexpr2xmldata
storagepoolschemadata
storagepoolxml2argvdata storage: Add tests for logical backend startup 2018-12-13 07:09:42 -05:00
storagepoolxml2xmlin tests: Add storagepool xml test for netfs-auto 2018-12-13 07:09:42 -05:00
storagepoolxml2xmlout tests: Add storagepool xml test for netfs-auto 2018-12-13 07:09:42 -05:00
storagevolschemadata
storagevolxml2argvdata util: require command args to be non-NULL 2018-12-17 14:43:33 +00:00
storagevolxml2xmlin util: require command args to be non-NULL 2018-12-17 14:43:33 +00:00
storagevolxml2xmlout
sysinfodata
vboxsnapshotxmldata
vircaps2xmldata conf: Introduce RDT monitor host capability 2018-09-20 13:06:02 -04:00
vircgroupdata vircgrouptest: add detect mounts test for hybrid cgroups 2018-10-05 15:53:29 +02:00
virconfdata
virfilecachedata
virfiledata virfile: Detect ceph as shared FS 2019-01-28 14:56:21 +01:00
virhostcpudata
virjsondata
virmacmaptestdata
virnetdaemondata
virnetdevtestdata/sys/class/net
virnwfilterbindingxml2xmldata
virpcitestdata
virresctrldata
virscsidata
virstorageutildata
virusbtestdata/sys_bus_usb/devices
vmwareverdata
vmx2xmldata
xlconfigdata xenconfig: add support for openvswitch configuration 2018-12-06 15:05:16 -07:00
xmconfigdata
xml2sexprdata
xml2vmxdata
.valgrind.supp
bhyveargv2xmlmock.c
bhyveargv2xmltest.c
bhyvexml2argvmock.c
bhyvexml2argvtest.c bhyve: implement support for commandline args 2019-01-27 14:54:52 +04:00
bhyvexml2xmltest.c bhyve: implement support for commandline args 2019-01-27 14:54:52 +04:00
check-file-access.pl
commandhelper.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
commandtest.c qemu: use line breaks in command line args written to log 2018-12-17 15:02:11 +00:00
cputest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
domaincapsmock.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
domaincapstest.c Drop UML driver 2018-12-17 17:52:46 +01:00
domainconftest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
domainsnapshotxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
esxutilstest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
eventtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
fchosttest.c
fdstreamtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
file_access_whitelist.txt
genericxml2xmltest.c conf: Introduce cache monitor element in cachetune 2018-11-14 12:18:46 -05:00
group-qemu-caps.pl
interfacexml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
libvirtd-fail Forget last daemon/ dir artefacts 2018-07-27 15:44:38 +02:00
libvirtd-pool
libxlxml2domconfigtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
lxcconf2xmltest.c tests: Adding test case to include multiple network definitions. 2018-12-11 15:03:08 -05:00
lxcxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
Makefile.am maint: Prefer AM_CPPFLAGS over INCLUDES 2019-01-07 16:46:55 -06:00
metadatatest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
networkxml2conftest.c lib: Use more of VIR_STEAL_PTR() 2019-01-28 14:46:58 +01:00
networkxml2firewalltest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
networkxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
networkxml2xmlupdatetest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
nodedevxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
nsslinktest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
nssmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
nsstest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
nwfilterebiptablestest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
nwfilterxml2firewalltest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
nwfilterxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
objecteventtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
objectlocking.ml Drop UML driver 2018-12-17 17:52:46 +01:00
oomtrace.pl
openvzutilstest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
openvzutilstest.conf
pkix_asn1_tab.c
qemuagenttest.c
qemuargv2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
qemublocktest.c util: storage: Properly parse URIs with missing trailing slash 2018-10-12 16:41:48 +02:00
qemucapabilitiestest.c tests: Add capabilities data for QEMU 4.0.0 x86_64 2019-01-21 17:29:10 -05:00
qemucaps2xmlmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
qemucaps2xmltest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
qemucapsfixreplies
qemucapsprobe.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
qemucapsprobemock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
qemucommandutiltest.c
qemucpumock.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
qemuhotplugtest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
qemumemlocktest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
qemumigparamstest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
qemumonitorjsontest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
qemumonitortestutils.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
qemumonitortestutils.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
qemusecuritymock.c tests: Introduce qemusecuritytest 2018-12-19 15:32:43 +01:00
qemusecuritytest.c tests: Introduce qemusecuritytest 2018-12-19 15:32:43 +01:00
qemusecuritytest.h tests: Introduce qemusecuritytest 2018-12-19 15:32:43 +01:00
qemuxml2argvmock.c conf: Add virDomainNetIsVirtioModel 2019-01-24 18:59:38 -05:00
qemuxml2argvtest.c qemu: add support for encrypted VNC TLS keys 2019-01-22 12:18:28 +01:00
qemuxml2xmltest.c qemu: Move <rng> validation out of qemu_command.c 2019-01-24 18:59:38 -05:00
scsihosttest.c
seclabeltest.c Revert "security_manager: Load lock plugin on init" 2018-11-16 13:42:39 +01:00
secretxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
securityselinuxhelper.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
securityselinuxlabeltest.c Fix minor typos in messages and docs 2018-12-05 10:39:54 +01:00
securityselinuxtest.c Revert "security_manager: Load lock plugin on init" 2018-11-16 13:42:39 +01:00
sexpr2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
shunloadhelper.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
shunloadtest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
sockettest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
ssh.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
storagebackendsheepdogtest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
storagepoolxml2argvtest.c qemu: use line breaks in command line args written to log 2018-12-17 15:02:11 +00:00
storagepoolxml2xmltest.c tests: Add storagepool xml test for netfs-auto 2018-12-13 07:09:42 -05:00
storagevolxml2argvtest.c qemu: use line breaks in command line args written to log 2018-12-17 15:02:11 +00:00
storagevolxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
sysinfotest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
test-lib.sh
test-wrap-argv.pl
testutils.c Remove even more Author(s): lines from source files 2019-01-03 13:24:18 +01:00
testutils.h Remove even more Author(s): lines from source files 2019-01-03 13:24:18 +01:00
testutilshostcpus.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
testutilslxc.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
testutilslxc.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
testutilsqemu.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
testutilsqemu.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
testutilsqemuschema.c
testutilsqemuschema.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
testutilsxen.c xenconfig: add support for type="pvh" 2018-11-26 16:38:26 -07:00
testutilsxen.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
utiltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
vboxsnapshotxmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
viralloctest.c
viratomictest.c
virauthconfigtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virbitmaptest.c
virbuftest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
vircaps2xmltest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
vircapstest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
vircgroupmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
vircgrouptest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virconftest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
vircryptotest.c
virdbusmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virdbustest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virdeterministichashmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virdrivermoduletest.c Drop UML driver 2018-12-17 17:52:46 +01:00
virendiantest.c
virerrortest.c tests: Fix possible NULL derefs in virErrorTestMsgs 2018-12-18 10:12:09 -05:00
virfilecachemock.c
virfilecachetest.c
virfilemock.c virfile: Detect ceph as shared FS 2019-01-28 14:56:21 +01:00
virfiletest.c virfile: Detect ceph as shared FS 2019-01-28 14:56:21 +01:00
virfilewrapper.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
virfilewrapper.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virfirewalltest.c util: pass layer into firewall query callback 2019-01-29 13:35:58 +00:00
virhashdata.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virhashtest.c Fix minor typos in messages and docs 2018-12-05 10:39:54 +01:00
virhostcpumock.c
virhostcputest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virhostdevtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
viridentitytest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
viriscsitest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virjsontest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
virkeycodetest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virkeyfiletest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virkmodtest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virlockspacetest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virlogtest.c
virmacmaptest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virmock.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virmocklibxl.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetdaemonmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetdaemontest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetdevbandwidthmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetdevbandwidthtest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virnetdevmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetdevtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetmessagetest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetserverclientmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetserverclienttest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnetsockettest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnettlscontexttest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnettlshelpers.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnettlshelpers.h Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virnettlssessiontest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virnumamock.c
virnwfilterbindingxml2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
virpcimock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virpcitest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virpolkittest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virportallocatormock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virportallocatortest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virrandommock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virresctrltest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virrotatingfiletest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virschematest.c tests: ignore XML files starting with a . 2018-12-18 14:49:46 +00:00
virscsitest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virsh-cpuset
virsh-define-dev-segfault
virsh-int-overflow
virsh-optparse
virsh-read-bufsiz
virsh-read-non-seekable
virsh-schedinfo
virsh-self-test
virsh-start
virsh-undefine virsh: Fix regression with duplicated error messages 2018-10-12 09:30:56 -05:00
virsh-uriprecedence
virsh-vcpupin
virshtest.c vsh-table: Get rid of trailing spaces 2018-11-28 13:18:48 +01:00
virstoragetest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virstorageutiltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
virstringtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virsystemdtest.c Enforce a standard header file guard symbol name 2018-12-14 10:47:13 +00:00
virt-aa-helper-test virt-aa-helper: generate rules for gl enabled graphics devices 2019-01-23 07:54:58 +01:00
virt-admin-self-test
virtestmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virtimetest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virtypedparamtest.c internal: Move <stdio.h> include to internal.h 2018-09-20 10:16:38 +02:00
viruritest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virusbmock.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
virusbtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
vmwarevertest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
vmx2xmltest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
vshtabletest.c vsh-table: Get rid of trailing spaces 2018-11-28 13:18:48 +01:00
xlconfigtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
xmconfigtest.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
xml2sexprtest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00
xml2vmxtest.c src: More cleanup of some system headers already contained in internal.h 2018-09-20 10:16:39 +02:00