libvirt/src
Daniel P. Berrange d47ef780f2 Fix security driver configuration
The security driver was mistakenly initialized before the QEMU
config file was loaded. This prevents it being turned off again.
The capabilities XML was also getting the wrong security driver
name, due to the stacked driver arrangement.

* src/qemu/qemu_driver.c: Fix initialization order and capabilities
  model name
2010-02-10 11:49:23 +00:00
..
conf Escape strings serialized in XML 2010-02-10 10:23:30 +01:00
cpu Remove conn parameter from virXPath* functions 2010-02-09 01:04:54 +01:00
esx Remove conn parameter from virXPath* functions 2010-02-09 01:04:54 +01:00
interface Remove conn parameter from virReportOOMError 2010-02-09 01:04:54 +01:00
lxc Remove conn parameter from Linux stats functions 2010-02-09 01:04:55 +01:00
network Remove conn parameter from util functions 2010-02-09 01:04:54 +01:00
node_device Remove conn parameter from util functions 2010-02-09 01:04:54 +01:00
opennebula Remove conn parameter from virReportOOMError 2010-02-09 01:04:54 +01:00
openvz Remove conn parameter from util functions 2010-02-09 01:04:54 +01:00
phyp Remove conn parameter from util functions 2010-02-09 01:04:54 +01:00
qemu Fix security driver configuration 2010-02-10 11:49:23 +00:00
remote Re-generate remote protocol files for new APIs 2010-02-09 12:09:05 +00:00
secret Remove conn parameter from util functions 2010-02-09 01:04:54 +01:00
security Remove conn parameter from USB functions 2010-02-09 01:04:55 +01:00
storage Create raw storage files with O_DSYNC 2010-02-09 16:51:15 +01:00
test Remove conn parameter from virXPath* functions 2010-02-09 01:04:54 +01:00
uml Remove conn parameter from util functions 2010-02-09 01:04:54 +01:00
util virAsprintf: remove its warn_unused_result attribute 2010-02-10 12:30:13 +01:00
vbox Remove conn parameter from virReportOOMError 2010-02-09 01:04:54 +01:00
xen Remove conn parameter from PCI functions 2010-02-09 01:04:55 +01:00
.gitignore Move virsh into tools/ directory 2009-09-21 14:41:45 +01:00
datatypes.c Remove conn parameter from virReportOOMError 2010-02-09 01:04:54 +01:00
datatypes.h Add public API definition for data stream handling 2009-09-29 15:48:52 +01:00
driver.c Log dlopen() errors more verbosely 2009-05-08 10:05:56 +00:00
driver.h Internal API 2010-02-08 10:49:42 -07:00
gnutls_1_0_compat.h
internal.h maint: avoid excess parens in STREQ 2010-02-01 17:21:26 +01:00
libvirt_bridge.syms Support networking in UML driver 2009-06-03 11:13:33 +00:00
libvirt_driver_modules.syms Move --with-driver-modules symbols into a separate sym file 2009-01-05 14:06:41 +00:00
libvirt_internal.h Support a new peer-to-peer migration mode & public API 2009-10-09 12:35:07 +01:00
libvirt_linux.syms migrate linux-specific symbol names into their own sym file 2009-01-05 14:08:26 +00:00
libvirt_private.syms Fix log locking problem when using fork() in the library 2010-02-03 17:12:57 +01:00
libvirt_public.syms Public API 2010-02-08 10:48:16 -07:00
libvirt.c Remove conn parameter from virReportOOMError 2010-02-09 01:04:54 +01:00
Makefile.am Introduce a new DAC security driver for QEMU 2010-01-21 14:00:16 +00:00
nodeinfo.c Remove conn parameter from virReportSystemError 2010-02-09 01:04:54 +01:00
nodeinfo.h Generic shared impls of all NUMA apis 2009-06-03 13:28:02 +00:00
README Add a README file to src/ explaining the directory structure 2009-09-21 14:41:47 +01: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


Then there are the hypervisor implementations:

 * esx/          - VMware ESX and GSX support using vSphere API over SOAP
 * lxc/          - Linux Native Containers
 * opennebula/   - Open Nebula using XMLRPC
 * 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
 * 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, UML and Xen drivers.
The ESX, OpenNebula, Power Hypervisor, Remote, Test & VirtualBox
drivers all implement the secondary drivers directly

 * interface/    - Host network interface management
 * network/      - Virtual NAT networking
 * 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