2009-09-16 15:42:24 +00:00
|
|
|
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
|
|
|
|
|
2011-02-12 16:09:28 +00:00
|
|
|
* vmx/ - VMware VMX config handling (used by esx/ and vmware/)
|
|
|
|
|
2009-09-16 15:42:24 +00:00
|
|
|
|
|
|
|
Then there are the hypervisor implementations:
|
|
|
|
|
2014-03-01 09:04:56 +00:00
|
|
|
* bhyve - bhyve - The BSD Hypervisor
|
2009-09-16 15:42:24 +00:00
|
|
|
* esx/ - VMware ESX and GSX support using vSphere API over SOAP
|
2011-07-13 15:13:42 +00:00
|
|
|
* hyperv/ - Microsoft Hyper-V support using WinRM
|
2009-09-16 15:42:24 +00:00
|
|
|
* 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
|
2011-02-12 16:09:28 +00:00
|
|
|
* vmware/ - VMware Workstation and Player using the vmrun tool
|
2009-09-16 15:42:24 +00:00
|
|
|
* xen/ - Xen using hypercalls, XenD SEXPR & XenStore
|
|
|
|
|
|
|
|
|
|
|
|
Finally some secondary drivers that are shared for several HVs.
|
2018-12-14 13:45:07 +00:00
|
|
|
Currently these are used by LXC, OpenVZ, QEMU and Xen drivers.
|
2019-12-18 15:23:34 +00:00
|
|
|
The ESX, Hyper-V, Remote, Test & VirtualBox drivers all
|
Remove the Open Nebula driver
The Open Nebula driver has been unmaintained since it was first
introduced. The only commits have been for tree-wide cleanups.
It also has a major design flaw, in that it only knows about guests
that it has created itself, which makes it of very limited use.
Discussions wrt evolution of the VMWare ESX driver, concluded that
it should limit itself to single-node ESX operation and not try to
manage the multi-node architecture of VirtualCenter. Open Nebula
is a cluster like Virtual Center, not a single node system, so
the same reasoning applies.
The DeltaCloud project includes an Open Nebula driver and is a much
better fit architecturally, since it is explicitly targetting the
distributed multihost cluster scenario.
Thus this patch deletes the libvirt Open Nebula driver with the
recommendation that people use DeltaCloud for managing it instead.
* configure.ac: Remove probe for xmlrpc & --with-one arg
* daemon/Makefile.am, daemon/libvirtd.c, src/Makefile.am: Remove
ONE driver build
* src/opennebula/one_client.c, src/opennebula/one_client.h,
src/opennebula/one_conf.c, src/opennebula/one_conf.h,
src/opennebula/one_driver.c, src/opennebula/one_driver.c: Delete
files
* autobuild.sh, libvirt.spec.in, mingw32-libvirt.spec.in: Remove
build rules for Open Nebula
* docs/drivers.html.in, docs/sitemap.html.in: Remove reference
to OpenNebula
* docs/drvone.html.in: Delete file
2011-03-22 16:12:34 +00:00
|
|
|
implement the secondary drivers directly
|
2009-09-16 15:42:24 +00:00
|
|
|
|
2011-02-12 16:09:28 +00:00
|
|
|
* cpu/ - CPU feature management
|
2009-09-16 15:42:24 +00:00
|
|
|
* interface/ - Host network interface management
|
|
|
|
* network/ - Virtual NAT networking
|
2011-02-12 16:09:28 +00:00
|
|
|
* nwfilter/ - Network traffic filtering rules
|
2009-09-16 15:42:24 +00:00
|
|
|
* 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
|