libvirt/src
Daniel P. Berrange 0a4283cb94 Fix ReprotError vs ReportError typo in JSON code
* src/util/json.c: Fix ReprotError typo when YAJL is not available
2009-12-07 17:01:33 +00:00
..
conf Fix some locking issues 2009-12-03 17:06:38 +01:00
esx Add virIndexToDiskName and fix mapping gap 2009-12-03 18:07:49 +01:00
interface New APIs for checking some object properties 2009-11-10 17:00:26 +00:00
lxc Fix incorrect variable passed to LXC event callback 2009-11-13 11:50:14 +00:00
network only remove masquerade roles for VIR_NETWORK_FORWARD_NAT 2009-11-16 13:32:00 +01:00
node_device Removing devicePath member from dev struct 2009-11-19 16:02:18 +01:00
opennebula Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
openvz Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
phyp Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
qemu Fix some locking issues 2009-12-03 17:06:38 +01:00
remote Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
secret Add missing OOM error checks, reports and cleanups 2009-11-09 23:17:45 +01:00
security Support QEMU's virtual FAT block device driver 2009-11-23 12:17:16 +00:00
storage Implmentation of new APIs to checking state/persistence of objects 2009-11-10 17:00:27 +00:00
test Fix two leaks in test driver 2009-11-26 12:07:17 +00:00
uml Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
util Fix ReprotError vs ReportError typo in JSON code 2009-12-07 17:01:33 +00:00
vbox vbox: Use virIndexToDiskName() in vboxGenerateMediumName() 2009-12-04 17:08:28 +01:00
xen Support for interface model='netfront' 2009-12-04 16:55:59 +01:00
.gitignore Move virsh into tools/ directory 2009-09-21 14:41:45 +01:00
datatypes.c Allow NULL mac address in virGetInterface 2009-11-03 16:42:53 +01:00
datatypes.h Add public API definition for data stream handling 2009-09-29 15:48:52 +01:00
driver.c
driver.h Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
gnutls_1_0_compat.h
internal.h Add sentinel attribute for NULL terminated arg lists 2009-11-06 10:39:13 +01:00
libvirt_bridge.syms
libvirt_driver_modules.syms
libvirt_internal.h Support a new peer-to-peer migration mode & public API 2009-10-09 12:35:07 +01:00
libvirt_linux.syms
libvirt_private.syms Introduce a simple API for handling JSON data 2009-12-07 14:14:36 +00:00
libvirt_public.syms Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
libvirt.c Add virConnectGetLibvirtVersion API 2009-11-12 10:53:26 -05:00
Makefile.am Introduce a simple API for handling JSON data 2009-12-07 14:14:36 +00:00
nodeinfo.c Introduce virStrncpy. 2009-09-22 20:10:00 +02:00
nodeinfo.h
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