libvirt/src
2011-10-11 16:44:43 +01:00
..
conf snapshot: implement snapshot children listing in qemu 2011-10-10 17:31:06 -06:00
cpu xml: Clean up rest of virtual XML document names for XML strings 2011-09-14 09:09:04 -06:00
esx snapshot: implement snapshot children listing in esx 2011-10-10 17:33:27 -06:00
hyperv hyperv: Report an error for acceptable URI schemes with a transport 2011-09-29 10:26:18 +02:00
interface
libxl libxl: avoid a dereference of a null pointer 2011-09-08 11:00:30 +01:00
locking virLockManagerNopInit: Rename flags to unused_flags 2011-09-27 11:11:14 +02:00
lxc maint: typo fixes 2011-10-10 14:02:06 -06:00
network network: fill in bandwidth from portgroup for all forward modes 2011-10-04 09:13:18 -04:00
node_device debug: Annotate some variables as unused 2011-09-27 10:16:46 +02:00
nwfilter nwfilter: tolerate disappearing interfaces while instantiating filter 2011-08-11 06:56:50 -04:00
openvz openvz: Allow to undefine a running domain 2011-08-19 21:48:47 +08:00
phyp destroy: Implement internal API for phyp driver 2011-07-21 20:41:27 +02:00
qemu snapshot: implement snapshot children listing in qemu 2011-10-10 17:31:06 -06:00
remote snapshot: remote protocol for snapshot children 2011-10-10 17:28:13 -06:00
rpc Rewrite all the DTrace/SystemTAP probing 2011-10-11 11:26:13 +01:00
secret build: rename files.h to virfile.h 2011-07-21 10:34:51 -06:00
security security: properly chown/label bidirectional and unidirectional fifos 2011-09-28 09:38:22 -04:00
storage maint: typo fixes 2011-10-10 14:02:06 -06:00
test Revert "test: Cleanup improper VIR_ERR_NO_SUPPORT use" 2011-09-01 17:37:11 +08:00
uml Avoid using "devname" as an identifier. 2011-09-16 20:49:04 +08:00
util Rewrite all the DTrace/SystemTAP probing 2011-10-11 11:26:13 +01:00
vbox maint: typo fixes 2011-10-10 14:02:06 -06:00
vmware vmware: Allow to undefine a running domain 2011-08-19 21:52:12 +08:00
vmx vmx: avoid memory leak 2011-09-19 13:43:36 -06:00
xen xen: use typical allocations 2011-09-21 16:17:16 +08:00
xenapi vbox, xenapi: add virDomainUndefineFlags 2011-08-12 07:44:54 -06:00
xenxs xen_xs: Guard against set but empty kernel argument 2011-10-10 22:58:04 +02:00
.gitignore Rewrite all the DTrace/SystemTAP probing 2011-10-11 11:26:13 +01:00
datatypes.c
datatypes.h
driver.c
driver.h snapshot: new virDomainSnapshotListChildrenNames API 2011-10-10 16:54:16 -06:00
dtrace2systemtap.pl Rewrite all the DTrace/SystemTAP probing 2011-10-11 11:26:13 +01:00
fdstream.c fdstream: drop delete argument 2011-08-02 14:53:43 -06:00
fdstream.h fdstream: drop delete argument 2011-08-02 14:53:43 -06:00
gnutls_1_0_compat.h Fix detection of GnuTLS 1.x.y 2011-08-03 19:22:29 +02:00
internal.h Rewrite all the DTrace/SystemTAP probing 2011-10-11 11:26:13 +01:00
libvirt_bridge.syms
libvirt_daemon.syms
libvirt_driver_modules.syms
libvirt_internal.h qemu: Migration job on source daemon 2011-07-27 08:45:10 -06:00
libvirt_linux.syms
libvirt_macvtap.syms
libvirt_network.syms network: provide internal API to return IP of a network 2011-07-25 13:48:55 +08:00
libvirt_nwfilter.syms
libvirt_private.syms Make libvirt.so include the RPC server code 2011-10-11 11:11:52 +01:00
libvirt_public.syms snapshot: new virDomainSnapshotListChildrenNames API 2011-10-10 16:54:16 -06:00
libvirt_qemu.syms
libvirt_vmx.syms
libvirt_xenxs.syms
libvirt-qemu.c qemu_api: doc improvements 2011-09-15 13:56:38 -06:00
libvirt.c snapshot: new virDomainSnapshotListChildrenNames API 2011-10-10 16:54:16 -06:00
Makefile.am Fix deps for probes.o to ensure correct build ordering 2011-10-11 16:44:43 +01:00
nodeinfo.c nodeinfo: Fix incorrect error codes 2011-09-01 17:35:23 +08:00
nodeinfo.h
probes.d Rewrite all the DTrace/SystemTAP probing 2011-10-11 11:26:13 +01:00
qemu_protocol-structs
README hyperv: Add basic documentation 2011-08-26 17:52:55 +02:00
remote_protocol-structs snapshot: remote protocol for snapshot children 2011-10-10 17:28:13 -06:00
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:

 * 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