libvirt/src
Daniel P. Berrangé 30626ed15b qemu: add ability to associate a string message with taint warning
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2021-02-03 17:31:31 +00:00
..
access
admin
bhyve bhyve: remove redundant code that adds "template" netdev name 2020-12-16 21:31:51 -05:00
conf conf: introduce new taint flag for deprecated configuration 2021-02-03 17:30:58 +00:00
cpu
cpu_map cpu_map: Remove intel-pt from x86 CPU models 2021-01-26 15:44:50 +01:00
esx util: move virStorageSource code into conf 2021-01-22 11:10:27 +01:00
hyperv hypervFreeInvokeParams: Don't use VIR_DISPOSE_N for freeing 'params' 2021-02-03 13:07:12 +01:00
hypervisor hostdevmgr: remove unneeded oldStateDir 2021-02-02 00:27:58 -05:00
interface
keycodemapdb@27acf0ef82
libxl libxlMakeNetworkDiskSrc: Use virSecureEraseString instead of VIR_AUTODISPOSE_STR 2021-02-03 13:07:13 +01:00
locking locking: sanlock: Avoid use of VIR_ALLOC_VAR for 'struct sanlk_resource' 2021-02-03 16:09:25 +01:00
logging
lxc use g_autoptr for all virConnectPtrs used with virGetConnectNetwork() 2021-01-08 11:34:59 -05:00
network network: explicitly set the MTU of the bridge device. 2021-01-15 12:20:00 -05:00
node_device udevProcessCCW: Initialize variable 2021-02-02 15:00:55 +01:00
nwfilter
openvz
qemu qemu: add ability to associate a string message with taint warning 2021-02-03 17:31:31 +00:00
remote Revert "remote: Add libvirtd dependency to virt-guest-shutdown.target" 2021-01-29 10:39:33 -07:00
rpc virnetlibsshsession: Replace VIR_DISPOSE_STRING with virSecureEraseString 2021-02-03 13:07:14 +01:00
secret
security security_dac.c: use g_auto* in hostdev label set/restore functions 2021-01-29 17:56:13 -03:00
storage virStorageBackendRBDOpenRADOSConn: Use virSecureEraseString instead of VIR_AUTODISPOSE_STR 2021-02-03 13:07:13 +01:00
storage_file virStorageSourceChainLookup: Handle names like 'vda[4]' internally 2021-01-27 07:49:57 +01:00
test
util viralloc: Remove VIR_ALLOC_VAR 2021-02-03 16:09:25 +01:00
vbox
vmware vmx: Allow missing cdrom image file in virVMXParseFileName 2021-01-06 02:05:10 +01:00
vmx vmx: Treat missing cdrom-image as empty drive 2021-01-06 02:05:10 +01:00
vz
admin_protocol-structs
datatypes.c
datatypes.h
driver-hypervisor.h
driver-interface.h
driver-network.h
driver-nodedev.h Use #pragma once in driver headers 2019-06-13 17:05:08 +02:00
driver-nwfilter.h
driver-secret.h
driver-state.h
driver-storage.h
driver-stream.h
driver.c log error if virConnectCacheOnceInit() fails 2021-02-02 00:27:27 -05:00
driver.h src: don't hide error in VIR_DRV_SUPPORTS_FEATURE 2021-01-06 17:10:10 +03:00
internal.h
libvirt_driver_modules.syms
libvirt_esx.syms
libvirt_internal.h
libvirt_libssh2.syms
libvirt_libssh.syms
libvirt_linux.syms
libvirt_lxc.syms
libvirt_openvz.syms
libvirt_private.syms viralloc: Remove VIR_ALLOC_VAR 2021-02-03 16:09:25 +01:00
libvirt_probes.d
libvirt_public.syms
libvirt_qemu.syms
libvirt_remote.syms
libvirt_sasl.syms
libvirt_vmware.syms
libvirt_vmx.syms
libvirt-domain-checkpoint.c
libvirt-domain-snapshot.c
libvirt-domain.c src: fix resource leak introduced in d4439a6b8 2021-01-07 18:39:12 +03:00
libvirt-host.c src: adopt to VIR_DRV_SUPPORTS_FEATURE return -1 2021-01-06 17:10:01 +03:00
libvirt-interface.c
libvirt-lxc.c use more virStrcpy() and virStrcpyStatic() 2021-01-04 20:18:24 +01:00
libvirt-lxc.pc.in
libvirt-network.c
libvirt-nodedev.c
libvirt-nwfilter.c
libvirt-qemu.c
libvirt-qemu.pc.in
libvirt-secret.c
libvirt-storage.c
libvirt-stream.c
libvirt.c src: adopt to VIR_DRV_SUPPORTS_FEATURE return -1 2021-01-06 17:10:01 +03:00
libvirt.conf
libvirt.pc.in
lock_protocol-structs
lxc_monitor_protocol-structs
lxc_protocol-structs
meson.build meson: Fix cross-building of dtrace probes 2021-01-26 10:59:45 +01:00
qemu_protocol-structs
README
remote_protocol-structs
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
 * qemu/         - QEMU / KVM using qemu CLI/monitor
 * remote/       - Generic libvirt native RPC client
 * test/         - A "mock" driver for testing
 * vbox/         - Virtual Box using native API
 * vmware/       - VMware Workstation and Player using the vmrun tool
 * xen/          - Xen using hypercalls, XenD SEXPR & XenStore


Finally some secondary drivers that are shared for several HVs.
Currently these are used by LXC, OpenVZ, QEMU and Xen drivers.
The ESX, Hyper-V, 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