libvirt/src
Laine Stump 1cddaea7ae util: new function virTimeLocalOffsetFromUTC
Since there isn't a single libc API to get this value, this patch
supplies one which gets the value by grabbing current time, then
converting that into a struct tm with gmtime_r(), then back to a
time_t using mktime.

The returned value is the difference between UTC and localtime in
seconds. If localtime is ahead of UTC (east) the offset will be a
positive number, and if localtime is behind UTC (west) the offset will
be negative.

This function should be POSIX-compliant, and is threadsafe, but not
async signal safe. If it was ever necessary to know this value in a
child process, we could cache it with a one-time init function when
libvirtd starts, then just supply the cached value, but that
complexity isn't needed for current usage; that would also have the
problem that it might not be accurate after a local daylight savings
boundary.

(If it weren't for DST, we could simply replace this entire function
with "-timezone"; timezone contains the offset of the current timezone
(negated from what we want) but doesn't account for DST. And in spite
of being guaranteed by POSIX, it isn't available on older versions of
mingw.)

Signed-off-by: Eric Blake <eblake@redhat.com>
2014-05-26 13:51:05 +03:00
..
access Introduce virDomain{Get,Set}Time APIs 2014-05-15 16:15:54 +02:00
bhyve bhyve: fix virObjectUnlock() usage 2014-05-21 19:45:29 +04:00
conf storage: Add NONE protocol type for network disks 2014-05-23 10:08:35 +02:00
cpu qemu: Implement a stub cpuArchDriver.compare() handler for arm and aarch64 2014-05-11 18:16:34 -04:00
esx ESX: add virStorageVolGetInfo in iSCSI backend. 2014-05-10 17:35:03 +02:00
hyperv Indent top-level labels by one space in the rest of src/ 2014-03-25 14:58:40 +01:00
interface Fix vlan ID detection in udev interface driver 2014-05-04 15:08:14 +02:00
libxl libxl: fix support for <interface type="hostdev"> syntax 2014-05-12 14:52:50 -06:00
locking sanlock: avoid leak in acquire() 2014-05-13 13:50:57 +02:00
lxc maint: shorten 'TypeType' function names 2014-05-16 00:22:18 -06:00
network conf: use typedefs for enums in "src/conf/{network,interface}_conf.h" 2014-05-05 16:04:53 -06:00
node_device conf: use typedefs for enums in node_device_conf, nwfilter_params 2014-05-12 16:49:43 -06:00
nwfilter nwfilter: Tear down temp. filters when tearing all filters 2014-04-30 12:51:38 -04:00
openvz drivers: use virDirRead API 2014-04-28 17:52:45 -06:00
parallels parallels: create VMs in the default place 2014-05-19 13:02:57 +01:00
phyp conf: track sizes directly in source struct 2014-04-02 06:03:00 -06:00
qemu storage: Add NONE protocol type for network disks 2014-05-23 10:08:35 +02:00
remote Introduce virDomain{Get,Set}Time APIs 2014-05-15 16:15:54 +02:00
rpc remote: Implement virDomainFSFreeze and virDomainFSThaw 2014-05-06 18:01:05 -06:00
secret drivers: use virDirRead API 2014-04-28 17:52:45 -06:00
security Fix crash in DAC driver with no seclabels 2014-05-19 15:31:42 +02:00
storage storage: Add storage file API to read file headers 2014-05-23 10:57:33 +02:00
test network: fix virNetworkObjAssignDef and persistence 2014-04-27 11:02:05 +03:00
uml Fix typos in src/* 2014-04-21 16:49:08 -06:00
util util: new function virTimeLocalOffsetFromUTC 2014-05-26 13:51:05 +03:00
vbox vbox: fix stale comment about vdi storage type 2014-05-16 00:22:18 -06:00
vmware Fix typos in src/* 2014-04-21 16:49:08 -06:00
vmx Replace Scsi with SCSI throughout 2014-04-08 11:10:31 +01:00
xen drivers: use virDirRead API 2014-04-28 17:52:45 -06:00
xenapi Indent top-level labels by one space in the rest of src/ 2014-03-25 14:58:40 +01:00
xenxs conf: move host disk type to util/ 2014-04-01 10:38:13 -06:00
check-aclperms.pl
check-aclrules.pl
check-driverimpls.pl
check-drivername.pl
check-symfile.pl
check-symsorting.pl
datatypes.c Indent top-level labels by one space in the rest of src/ 2014-03-25 14:58:40 +01:00
datatypes.h datatypes: Fix comment of secret uuid 2014-05-05 10:20:51 +02:00
driver.c Use virFileFindResource to locate driver plugins 2014-04-25 11:59:46 +01:00
driver.h Introduce virDomain{Get,Set}Time APIs 2014-05-15 16:15:54 +02:00
dtrace2systemtap.pl
fdstream.c Use virFileFindResource to locate iohelper for fdstream 2014-04-25 11:59:46 +01:00
fdstream.h Use virFileFindResource to locate iohelper for fdstream 2014-04-25 11:59:46 +01:00
gnutls_1_0_compat.h
internal.h Move dtrace probe macros into separate header file 2014-03-18 14:29:21 +00:00
libvirt_atomic.syms
libvirt_daemon.syms
libvirt_driver_modules.syms Use virFileFindResource to locate driver plugins 2014-04-25 11:59:46 +01:00
libvirt_esx.syms
libvirt_gnutls.syms
libvirt_internal.h
libvirt_libssh2.syms
libvirt_linux.syms
libvirt_lxc.syms
libvirt_openvz.syms
libvirt_private.syms util: new function virTimeLocalOffsetFromUTC 2014-05-26 13:51:05 +03:00
libvirt_probes.d
libvirt_public.syms Introduce virDomain{Get,Set}Time APIs 2014-05-15 16:15:54 +02:00
libvirt_qemu_probes.d
libvirt_qemu.syms qemu: new API for tracking arbitrary monitor events 2014-03-20 11:25:37 -06:00
libvirt_remote.syms
libvirt_sasl.syms
libvirt_vmware.syms
libvirt_vmx.syms
libvirt_xenxs.syms
libvirt-lxc.c Indent top-level labels by one space in the rest of src/ 2014-03-25 14:58:40 +01:00
libvirt-qemu.c Indent top-level labels by one space in the rest of src/ 2014-03-25 14:58:40 +01:00
libvirt.c Fix error message when TUNNELLED flag is used in non-p2p migration 2014-05-23 09:05:39 +02:00
libvirt.conf
lock_protocol-structs
lxc_monitor_protocol-structs
lxc_protocol-structs
Makefile.am qemu: extract common PCI handling functions 2014-05-13 20:17:54 +04:00
nodeinfo.c nodeinfo: use virDirRead API 2014-04-28 17:52:45 -06:00
nodeinfo.h Change file names in comments to match the files they are in 2014-03-10 14:26:04 +01:00
nodeinfopriv.h
qemu_protocol-structs qemu: wire up RPC for qemu monitor events 2014-03-20 11:25:37 -06:00
README bhyve: add basic documentation 2014-03-01 23:44:58 +04:00
remote_protocol-structs Introduce virDomain{Get,Set}Time APIs 2014-05-15 16:15:54 +02:00
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
 * 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