libvirt/src
Pavel Hrdina 0a476f1521 conf: Introduce virDomainDefPostParseMemtune
Previously we were ignoring "nodeset" attribute for hugepage pages
if there was no guest NUMA topology configured in the domain XML.
Commit <fa6bdf6afa878b8d7c5ed71664ee72be8967cdc5> partially fixed
that issue but it introduced a somehow valid regression.

In case that there is no guest NUMA topology configured and the
"nodeset" attribute is set to "0" it was accepted and was working
properly even though it was not completely valid XML.

This patch introduces a workaround that it will ignore the nodeset="0"
only in case that there is no guest NUMA topology in order not to
hit the validation error.

After this commit the following XML configuration is valid:

  <memoryBacking>
    <hugepages>
      <page size='2048' unit='KiB' nodeset='0'/>
    </hugepages>
  </memoryBacking>

but this configuration remains invalid:

  <memoryBacking>
    <hugepages>
      <page size='2048' unit='KiB' nodeset='0'/>
      <page size='1048576' unit='KiB'/>
    </hugepages>
  </memoryBacking>

The issue with the second configuration is that it was originally
working, however changing the order of the <page> elements resolved
into using different page size for the guest.  The code is written
in a way that it expect only one page configured and always uses only
the first page in case that there is no guest NUMA topology configured.
See qemuBuildMemPathStr() function for details.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1591235

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
2018-08-10 17:06:48 +02:00
..
access access: add nwfilter binding object permissions 2018-06-26 11:22:07 +01:00
admin make: split admin driver build rules into admin/Makefile.inc.am 2018-03-05 17:12:01 +00:00
bhyve events: add NULL check in virObjectEventStateQueue 2018-06-12 07:28:18 +02:00
conf conf: Introduce virDomainDefPostParseMemtune 2018-08-10 17:06:48 +02:00
cpu cpu: add 'amd-ssbd' and 'amd-no-ssb' CPU features (CVE-2018-3639) 2018-07-03 17:31:46 +01:00
esx esx: Fix double-free and freeing static strings in esxDomainSetAutostart 2018-08-02 21:06:19 +02:00
hyperv src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
interface virobject: Introduce VIR_CLASS_NEW() macro 2018-04-18 10:04:55 +02:00
keycodemapdb@16e5b07876 keycodemapdb: Update submodule 2018-03-12 16:30:49 +01:00
libxl src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
locking src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
logging src: Drop most of #ifdef WITH_GNUTLS 2018-06-05 14:32:36 +02:00
lxc Revert "util: cgroup: modify virCgroupFree to take virCgroupPtr" 2018-07-30 13:30:11 +02:00
network networkGetDHCPLeases: Don't always report error if unable to read leases file 2018-07-26 11:39:11 +02:00
node_device events: add NULL check in virObjectEventStateQueue 2018-06-12 07:28:18 +02:00
nwfilter nwfilter: Resolve SEGV for NWFilter Snoop processing 2018-07-26 09:35:40 -04:00
openvz src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
phyp phyp_driver: Set remoteOnly member of virConnectDriver 2018-07-11 13:16:59 +02:00
qemu conf: Move hugepage XML validation check out of qemu_command 2018-08-10 17:06:48 +02:00
remote remote: daemon: Make sure that JSON symbols are properly loaded at startup 2018-08-01 14:32:40 +02:00
rpc rpc: treat EADDRNOTAVAIL as non-fatal when listening 2018-07-25 16:55:55 +01:00
secret events: add NULL check in virObjectEventStateQueue 2018-06-12 07:28:18 +02:00
security src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
storage storage: tweak error message when skipping file 2018-08-09 11:19:15 +01:00
test src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
uml src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
util src: Move DLOPEN_LIBS to libraries introducing the dependency 2018-08-10 16:32:45 +02:00
vbox vbox: Fix resource leak 2018-06-11 18:33:13 -04:00
vmware conf: Clean up object referencing for Add and Remove 2018-05-03 19:09:03 -04:00
vmx qemu: Introduce a new graphics display type 'headless' 2018-07-18 18:16:07 +02:00
vz events: add NULL check in virObjectEventStateQueue 2018-06-12 07:28:18 +02:00
xenapi src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
xenconfig src: Make virStr*cpy*() functions return an int 2018-07-23 14:27:30 +02:00
admin_protocol-structs
check-aclperms.pl
check-aclrules.pl acl: remove various left over Xen ACL whitelist entries 2018-04-16 10:29:36 +01:00
check-driverimpls.pl check scripts: handle unintialized driver vars in check-driverimpls.pl 2018-04-19 11:05:00 +03:00
check-drivername.pl
check-symfile.pl
check-symsorting.pl
datatypes.c src: Fix memory leak in virNWFilterBindingDispose 2018-07-21 09:23:54 -04:00
datatypes.h nwfilter: export port binding concept in the public API 2018-06-26 11:22:07 +01:00
driver-hypervisor.h libvirt: Introduce virDomainGetLaunchSecurityInfo public API 2018-06-12 10:00:49 +02:00
driver-interface.h
driver-network.h
driver-nodedev.h
driver-nwfilter.h nwfilter: export port binding concept in the public API 2018-06-26 11:22:07 +01:00
driver-secret.h
driver-state.h
driver-storage.h storage: export virStoragePoolLookupByTargetPath as a public API 2018-02-09 11:05:10 +00:00
driver-stream.h
driver.c util: create new virmodule.{c,h} files for dlopen support code 2018-05-03 12:47:43 +01:00
driver.h driver.h: Add remoteOnly member to virConnectDriver struct 2018-07-11 12:55:26 +02:00
dtrace2systemtap.pl
internal.h po: provide custom make rules for po file management 2018-04-19 10:35:58 +01:00
libvirt_admin_private.syms
libvirt_admin_public.syms
libvirt_atomic.syms
libvirt_driver_modules.syms util: create new virmodule.{c,h} files for dlopen support code 2018-05-03 12:47:43 +01:00
libvirt_esx.syms
libvirt_internal.h driver: Add typedef for the anonymous enum used for driver features 2018-03-15 17:12:28 -04:00
libvirt_libssh2.syms
libvirt_libssh.syms
libvirt_linux.syms
libvirt_lxc.syms
libvirt_openvz.syms
libvirt_private.syms util: introduce virStorageSourceInitiator functions 2018-08-08 17:33:12 +02:00
libvirt_probes.d Forget last daemon/ dir artefacts 2018-07-27 15:44:38 +02:00
libvirt_public.syms nwfilter: export port binding concept in the public API 2018-06-26 11:22:07 +01:00
libvirt_qemu_probes.d
libvirt_qemu.syms
libvirt_remote.syms src: Dissolve libvirt_gnutls.syms in libvirt_remote.syms 2018-06-05 14:32:30 +02:00
libvirt_sasl.syms
libvirt_vmware.syms
libvirt_vmx.syms
libvirt_xenconfig.syms
libvirt-admin.c po: provide custom make rules for po file management 2018-04-19 10:35:58 +01:00
libvirt-admin.conf
libvirt-domain-snapshot.c src: Unify virObject member name 2018-04-18 10:04:55 +02:00
libvirt-domain.c qemu: Add entry for balloon stat stat-disk-caches 2018-07-16 17:42:23 -04:00
libvirt-host.c libvirt: Introduce virNodeGetSEVInfo public API 2018-06-12 09:52:00 +02:00
libvirt-interface.c src: Unify virObject member name 2018-04-18 10:04:55 +02:00
libvirt-lxc.c Revert "util: cgroup: modify virCgroupFree to take virCgroupPtr" 2018-07-30 13:30:11 +02:00
libvirt-lxc.pc.in
libvirt-network.c src: Unify virObject member name 2018-04-18 10:04:55 +02:00
libvirt-nodedev.c src: Unify virObject member name 2018-04-18 10:04:55 +02:00
libvirt-nwfilter.c nwfilter: export port binding concept in the public API 2018-06-26 11:22:07 +01:00
libvirt-qemu.c
libvirt-qemu.pc.in
libvirt-secret.c src: Unify virObject member name 2018-04-18 10:04:55 +02:00
libvirt-storage.c src: Unify virObject member name 2018-04-18 10:04:55 +02:00
libvirt-stream.c src: Unify virObject member name 2018-04-18 10:04:55 +02:00
libvirt.c libvirt.c: Return error when remoteOnly is set but server is empty 2018-07-11 12:55:26 +02:00
libvirt.conf
libvirt.pc.in
lock_protocol-structs
lxc_monitor_protocol-structs
lxc_protocol-structs
Makefile.am src: Move DLOPEN_LIBS to libraries introducing the dependency 2018-08-10 16:32:45 +02:00
qemu_protocol-structs
README
remote_protocol-structs remote: add support for nwfilter binding objects 2018-06-26 11:22:07 +01:00
virkeepaliveprotocol-structs
virnetprotocol-structs

       libvirt library code README
       ===========================

The directory provides the bulk of the libvirt codebase. Everything
except for the libvirtd daemon and client tools. The build uses a
large number of libtool convenience libraries - one for each child
directory, and then links them together for the final libvirt.so,
although some bits get linked directly to libvirtd daemon instead.

The files directly in this directory are supporting the public API
entry points & data structures.

There are two core shared modules to be aware of:

 * util/  - a collection of shared APIs that can be used by any
            code. This directory is always in the include path
            for all things built

 * conf/  - APIs for parsing / manipulating all the official XML
            files used by the public API. This directory is only
            in the include path for driver implementation modules

 * vmx/   - VMware VMX config handling (used by esx/ and vmware/)


Then there are the hypervisor implementations:

 * bhyve         - bhyve - The BSD Hypervisor
 * esx/          - VMware ESX and GSX support using vSphere API over SOAP
 * hyperv/       - Microsoft Hyper-V support using WinRM
 * lxc/          - Linux Native Containers
 * openvz/       - OpenVZ containers using cli tools
 * phyp/         - IBM Power Hypervisor using CLI tools over SSH
 * qemu/         - QEMU / KVM using qemu CLI/monitor
 * remote/       - Generic libvirt native RPC client
 * test/         - A "mock" driver for testing
 * uml/          - User Mode Linux
 * vbox/         - Virtual Box using native API
 * vmware/       - VMware Workstation and Player using the vmrun tool
 * xen/          - Xen using hypercalls, XenD SEXPR & XenStore
 * xenapi/       - Xen using libxenserver


Finally some secondary drivers that are shared for several HVs.
Currently these are used by LXC, OpenVZ, QEMU, UML and Xen drivers.
The ESX, Hyper-V, Power Hypervisor, Remote, Test & VirtualBox drivers all
implement the secondary drivers directly

 * cpu/          - CPU feature management
 * interface/    - Host network interface management
 * network/      - Virtual NAT networking
 * nwfilter/     - Network traffic filtering rules
 * node_device/  - Host device enumeration
 * secret/       - Secret management
 * security/     - Mandatory access control drivers
 * storage/      - Storage management drivers


Since both the hypervisor and secondary drivers can be built as
dlopen()able modules, it is *FORBIDDEN* to have build dependencies
between these directories. Drivers are only allowed to depend on
the public API, and the internal APIs in the util/ and conf/
directories