]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/log
people/liuw/libxenctrl-split/libvirt.git
11 years agovmware: fix parse of disk source
Eric Blake [Tue, 18 Mar 2014 21:41:28 +0000 (15:41 -0600)]
vmware: fix parse of disk source

While writing disk source refactoring, I discovered that conversion
from XML to vmware modified the disk source in place; if the same
code is reached twice, the second call behaves differently because
the first call didn't clean up its mess.

* src/vmware/vmware_conf.c (vmwareParsePath): Avoid munging input
string.
* src/vmware/vmware_conf.h (vmwareParsePath): Make static.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoqemuDomainGetImageIds: Skip <seclabel/> without label
Michal Privoznik [Mon, 24 Mar 2014 15:44:17 +0000 (16:44 +0100)]
qemuDomainGetImageIds: Skip <seclabel/> without label

It's easy to shed the daemon these days. With this XML snippet:

    <disk type='file' device='disk'>
      <driver name='qemu' type='raw'/>
      <source file='/some/dummy/path/test.bin'>
        <seclabel model='dac' relabel='no'/>
      </source>
      <target dev='vdb' bus='virtio'/>
      <readonly/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/>
    </disk>

I get the SIGSEGV when starting the domain. The thing is, when
starting a domain, we check for its disk presence. For some reason,
when determining the disk chain, we parse the <seclabel/> (don't ask
me why). However, there's no label attribute in the XML, so we end up
calling virParseOwnershipIds() over NULL string:

 [Switching to Thread 0x7ffff10c4700 (LWP 30956)]
 __strchr_sse42 () at ../sysdeps/x86_64/multiarch/strchr.S:136
 136     ../sysdeps/x86_64/multiarch/strchr.S: No such file or directory.
 (gdb) bt
 #0  __strchr_sse42 () at ../sysdeps/x86_64/multiarch/strchr.S:136
 #1  0x00007ffff749f800 in virParseOwnershipIds (label=0x0, uidPtr=uidPtr@entry=0x7ffff10c2df0, gidPtr=gidPtr@entry=0x7ffff10c2df4) at util/virutil.c:2115
 #2  0x00007fffe929f006 in qemuDomainGetImageIds (gid=0x7ffff10c2df4, uid=0x7ffff10c2df0, disk=0x7fffe40cb000, vm=0x7fffe40a6410, cfg=0x7fffe409ae00) at qemu/qemu_domain.c:2385
 #3  qemuDomainDetermineDiskChain (driver=driver@entry=0x7fffe40120e0, vm=vm@entry=0x7fffe40a6410, disk=disk@entry=0x7fffe40cb000, force=force@entry=false) at qemu/qemu_domain.c:2414
 #4  0x00007fffe929f128 in qemuDomainCheckDiskPresence (driver=driver@entry=0x7fffe40120e0, vm=vm@entry=0x7fffe40a6410, cold_boot=cold_boot@entry=true) at qemu/qemu_domain.c:2250
 #5  0x00007fffe92b6fc8 in qemuProcessStart (conn=conn@entry=0x7fffd4000b60, driver=driver@entry=0x7fffe40120e0, vm=vm@entry=0x7fffe40a6410, migrateFrom=migrateFrom@entry=0x0, stdin_fd=stdin_fd@entry=-1, stdin_path=stdin_path@entry=0x0, snapshot=snapshot@entry=0x0,
     vmop=vmop@entry=VIR_NETDEV_VPORT_PROFILE_OP_CREATE, flags=flags@entry=1) at qemu/qemu_process.c:3813
 #6  0x00007fffe93087e8 in qemuDomainObjStart (conn=0x7fffd4000b60, driver=driver@entry=0x7fffe40120e0, vm=vm@entry=0x7fffe40a6410, flags=flags@entry=0) at qemu/qemu_driver.c:6051
 #7  0x00007fffe9308e32 in qemuDomainCreateWithFlags (dom=0x7fffcc000d50, flags=0) at qemu/qemu_driver.c:6105
 #8  0x00007ffff753c5cc in virDomainCreate (domain=domain@entry=0x7fffcc000d50) at libvirt.c:8861

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
11 years agobhyve: add domainCreateWithFlags support
Roman Bogorodskiy [Tue, 18 Mar 2014 09:31:48 +0000 (13:31 +0400)]
bhyve: add domainCreateWithFlags support

The only supported flag for now is 'autodestroy'. In order to
support 'autodestroy', add support for close callbacks.

11 years agobhyve: MAC address configuration
Wojciech Macek [Thu, 20 Mar 2014 08:39:21 +0000 (09:39 +0100)]
bhyve: MAC address configuration

Add support for MAC address configuration on network bridge
interface.

11 years agolibxl_driver.c: cleanup code
Chunyan Liu [Wed, 19 Mar 2014 03:15:25 +0000 (11:15 +0800)]
libxl_driver.c: cleanup code

Following Jim's comments about "add pci passthrough to libxl" patch:

https://www.redhat.com/archives/libvir-list/2014-March/msg00170.html

Signed-off-by: Chunyan Liu <cyliu@suse.com>
11 years agoIntroduce virFDStreamOpenPTY
Roman Bogorodskiy [Mon, 10 Mar 2014 12:32:51 +0000 (16:32 +0400)]
Introduce virFDStreamOpenPTY

Add virFDStreamOpenPTY() function which is a wrapper around
virFDStreamOpenFileInternal() with putting the device it opens into a
raw mode.

Make virChrdevOpen() use virFDStreamOpenPTY() for
VIR_DOMAIN_CHR_TYPE_PTY devices.

This fixes mangled console output when libvirt runs on FreeBSD as it
requires device it opens to be placed into a raw mode explicitly.

11 years agoAdd stubs for virDBusCreateReply{,V}
Ján Tomko [Fri, 21 Mar 2014 13:27:34 +0000 (14:27 +0100)]
Add stubs for virDBusCreateReply{,V}

Fix the build without dbus.

11 years agoFix build on mingw32
Ján Tomko [Fri, 21 Mar 2014 11:14:12 +0000 (12:14 +0100)]
Fix build on mingw32

tests/viriscsitest.c:27:12: error: 'EXIT_AM_SKIP' undeclared
(first use in this function)

11 years agolibvirt support to force convergence of live guest migration
Chegu Vinod [Thu, 6 Feb 2014 23:44:36 +0000 (15:44 -0800)]
libvirt support to force convergence of live guest migration

Busy enterprise workloads hosted on large sized VM's tend to dirty
memory faster than the transfer rate achieved via live guest migration.
Despite some good recent improvements (& using dedicated 10Gig NICs
between hosts) the live migration may NOT converge.

Recently support was added in qemu (version 1.6) to allow a user to
choose if they wish to force convergence of their migration via a
new migration capability : "auto-converge". This feature allows for qemu
to auto-detect lack of convergence and trigger a throttle-down of the
VCPUs.

This patch includes the libvirt support needed to trigger this
feature. (Testing is in progress)

Signed-off-by: Chegu Vinod <chegu_vinod@hp.com>
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agocgroup: Fix start VMs coincidently failed
Wang Yufei [Thu, 20 Mar 2014 07:14:01 +0000 (07:14 +0000)]
cgroup: Fix start VMs coincidently failed

When I start multi VMs coincidently and any of the cgroup directories
named machine doesn't exist. There's a chance that VM start failed because
of creating directory failed:
Unable to initialize /machine cgroup: File exists
When the errno returned by mkdir in virCgroupMakeGroup is EEXIST,
we should pass it through and continue to start the VM.
Signed-off-by: Wang Yufei <james.wangyufei@huawei.com>
11 years agoAllow caller to handle DBus error messages
Daniel P. Berrange [Mon, 17 Mar 2014 17:56:48 +0000 (17:56 +0000)]
Allow caller to handle DBus error messages

The caller may not want all DBus error conditions to be turned
into libvirt errors, so provide a way for the caller to get
back the full DBusError object. They can then check the errors
and only report those that they consider to be fatal.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoIntroduce alternate way to encode/decode arrays in DBus messages
Daniel P. Berrange [Thu, 13 Mar 2014 15:38:18 +0000 (15:38 +0000)]
Introduce alternate way to encode/decode arrays in DBus messages

Currently the DBus helper APIs require the values for an array
to be passed inline in the variadic argument list. This change
introduces support for passing arrays using a pointer to a plain
C array of the basic type. This is of particular benefit for
decoding messages when you don't know how many array elements
are being received.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoRemove bogus call to dbus_set_error_from_message
Daniel P. Berrange [Mon, 17 Mar 2014 17:38:52 +0000 (17:38 +0000)]
Remove bogus call to dbus_set_error_from_message

The dbus_connection_send_with_reply_and_block method will
automatically call dbus_set_error_from_message for us. We
mistakenly thought we had todo it because of a flaw in the
systemd unit test mock impl. The latter should have directly
set the error object, instead of creating an error message
object.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoRemove bogus unref in virDBusMessageRead
Daniel P. Berrange [Wed, 19 Mar 2014 10:55:13 +0000 (10:55 +0000)]
Remove bogus unref in virDBusMessageRead

The virDBusMessageRead method should not have side-effects on
the message parameter passed in, so unref'ing it is wrong.
The caller should unref only when they decided they are done
with it.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoAdd DBus helper methods for creating reply messages
Daniel P. Berrange [Wed, 19 Mar 2014 10:58:42 +0000 (10:58 +0000)]
Add DBus helper methods for creating reply messages

The test suites often have to create DBus method reply messages
with payloads. Create two helpers for simplifying the process
of creating replies with payloads.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoRefactor dbus helper methods for method calls
Daniel P. Berrange [Thu, 13 Mar 2014 15:47:46 +0000 (15:47 +0000)]
Refactor dbus helper methods for method calls

Split the virDBusMethodCall method into a couple of new methods
virDBusCall, virDBusCreateMethod and virDBusCreateMethodV.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agovirlog: Modify virLogParseDefaultPriority's comment of return value
Zhou Yimin [Fri, 21 Mar 2014 06:52:40 +0000 (14:52 +0800)]
virlog: Modify virLogParseDefaultPriority's comment of return value

virLogParseDefaultPriority's successful return value is the same as
virLogSetDefaultPriority's successful return value. So it should be 0
rather than the parsed log level.

Signed-off-by: Zhou Yimin <zhouyimin@huawei.com>
11 years agoFix typo in configure.ac
Ján Tomko [Fri, 21 Mar 2014 09:04:59 +0000 (10:04 +0100)]
Fix typo in configure.ac

s/profram/program/

11 years agoDefine ISCSIADM unconditionally
Ján Tomko [Fri, 21 Mar 2014 08:02:44 +0000 (09:02 +0100)]
Define ISCSIADM unconditionally

Commit 5e1d5dd moved the functions using isciadm to util/viriscsi.c,
but ISCSIADM was only defined when the iscsi backend was compiled in.

Define it unconditionally to fix the build (and allow testing
of viriscsi.c) even if iscsi backend is disabled.

11 years agoCheck boot order on device attach
Jiri Denemark [Thu, 20 Mar 2014 14:34:32 +0000 (15:34 +0100)]
Check boot order on device attach

https://bugzilla.redhat.com/show_bug.cgi?id=1007754

When attaching a new device, we need to check if its boot order
configuration is compatible with current domain definition.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agoconf: Introduce virDomainDeviceGetInfo API
Jiri Denemark [Thu, 20 Mar 2014 21:34:00 +0000 (22:34 +0100)]
conf: Introduce virDomainDeviceGetInfo API

The offset of virDomainDeviceInfo structure within a device definition
varies with device type and some types do not contain the info structure
at all. This new API makes it easier to access the info structure from a
generic virDomainDeviceDef structure.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agoPass action to virDomainDefCompatibleDevice
Jiri Denemark [Thu, 20 Mar 2014 12:39:20 +0000 (13:39 +0100)]
Pass action to virDomainDefCompatibleDevice

When checking compatibility of a device with a domain definition, we
should know what we're going to do with the device. Because we may need
to check for different things when we're attaching a new device versus
detaching an existing device.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agoFix usage of virDomainDefCompatibleDevice
Jiri Denemark [Thu, 20 Mar 2014 12:04:06 +0000 (13:04 +0100)]
Fix usage of virDomainDefCompatibleDevice

A device needs to be checked for compatibility with the domain
definition it corresponds to. Specifically, for VIR_DOMAIN_AFFECT_CONFIG
case we should check against persistent def rather than active def.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agoqemu: Return meaningful error when qemu dies early
Jiri Denemark [Mon, 17 Mar 2014 10:04:07 +0000 (11:04 +0100)]
qemu: Return meaningful error when qemu dies early

https://bugzilla.redhat.com/show_bug.cgi?id=844378

When qemu dies early after connecting to its monitor but before we
actually try to read something from the monitor, we would just fail
domain start with useless message:

    "An error occurred, but the cause is unknown"

This is because the real error gets reported in a monitor EOF handler
executing within libvirt's event loop.

The fix is to take any error set in qemuMonitor structure and propagate
it into the thread-local error when qemuMonitorClose is called and no
thread-local error is set.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agotests: Set abs_*dir in a consistent way
Jiri Denemark [Wed, 19 Mar 2014 13:44:24 +0000 (14:44 +0100)]
tests: Set abs_*dir in a consistent way

Use $(shell cd $(...) && pwd) to set abs_*dir variables similarly to
what src/Makefile.am does.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agoqemu: allow filtering events by regex
Eric Blake [Thu, 6 Feb 2014 21:46:52 +0000 (14:46 -0700)]
qemu: allow filtering events by regex

When listening for a subset of monitor events, it can be tedious
to register for each event name in series; nicer is to register
for multiple events in one go.  Implement a flag to use regex
interpretation of the event filter.

While at it, prove how much I hate the shift key, by adding a
way to filter for 'shutdown' instead of 'SHUTDOWN'. :)

* include/libvirt/libvirt-qemu.h
(virConnectDomainQemuMonitorEventRegisterFlags): New enum.
* src/libvirt-qemu.c (virConnectDomainQemuMonitorEventRegister):
Document flags.
* tools/virsh-domain.c (cmdQemuMonitorEvent): Expose them.
* tools/virsh.pod (qemu-monitor-event): Document this.
* src/conf/domain_event.c
(virDomainQemuMonitorEventStateRegisterID): Add flags.
(virDomainQemuMonitorEventFilter): Handle regex, and optimize
client side.
(virDomainQemuMonitorEventCleanup): Clean up regex.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoqemu: enable monitor event filtering by name
Eric Blake [Fri, 31 Jan 2014 14:02:25 +0000 (07:02 -0700)]
qemu: enable monitor event filtering by name

Filtering monitor events by name requires tracking the name for
the duration of the filtering.  In order to free the name, I
found it easiest to just piggyback on the user's freecb function,
which gets called when the event is deregistered.

For events without a name filter, we have the design of multiple
client registrations sharing a common server registration, because
the server side uses the same callback function and we reject
duplicate use of the same function.  But with events in the mix,
we want to be able to allow the same function pointer to be used
with more than one event name.  The solution is to tweak the
duplicate detection code to only act when there is no additional
filtering; if name filtering is in use, there is exactly one
client registration per server registration.  Yes, this means
that there is no longer a bound on the number of server
registrations possible, so a malicious client could repeatedly
register for the same name event to exhaust server memory.  On
the other hand, we already restricted monitor events to require
write access (compared to normal events only needing read access),
and separated it into the intentionally unsupported
libvirt-qemu.so, with documentation that using this function is
for debug purposes only; so it is not a security risk worth
worrying about a client trying to abuse multiple registrations.

* src/conf/domain_event.c (virDomainQemuMonitorEventData): New
struct.
(virDomainQemuMonitorEventFilter)
(virDomainQemuMonitorEventCleanup): New functions.
(virDomainQemuMonitorEventDispatchFunc)
(virDomainQemuMonitorEventStateRegisterID): Use new struct.
* src/conf/object_event.c (virObjectEventCallbackListCount)
(virObjectEventCallbackListAddID)
(virObjectEventCallbackListRemoveID)
(virObjectEventCallbackListMarkDeleteID): Drop duplicate detection
when filtering is in effect.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoqemu: enable monitor event reporting
Eric Blake [Thu, 30 Jan 2014 00:14:44 +0000 (17:14 -0700)]
qemu: enable monitor event reporting

Wire up all the pieces to send arbitrary qemu events to a
client using libvirt-qemu.so.  If the extra bookkeeping of
generating event objects even when no one is listening turns
out to be noticeable, we can try to further optimize things
by adding a counter for how many connections are using events,
and only dump events when the counter is non-zero; but for
now, I didn't think it was worth the code complexity.

* src/qemu/qemu_driver.c
(qemuConnectDomainQemuMonitorEventRegister)
(qemuConnectDomainQemuMonitorEventDeregister): New functions.
* src/qemu/qemu_monitor.h (qemuMonitorEmitEvent): New prototype.
(qemuMonitorDomainEventCallback): New typedef.
* src/qemu/qemu_monitor_json.c (qemuMonitorJSONIOProcessEvent):
Report events.
* src/qemu/qemu_monitor.c (qemuMonitorEmitEvent): New function, to
pass events through.
* src/qemu/qemu_process.c (qemuProcessHandleEvent): Likewise.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoqemu: wire up RPC for qemu monitor events
Eric Blake [Wed, 29 Jan 2014 22:30:44 +0000 (15:30 -0700)]
qemu: wire up RPC for qemu monitor events

These are the first async events in the qemu protocol, so this
patch looks rather big compared to most RPC additions.  However,
a large majority of this patch is just mechanical copy-and-paste
from recently-added network events.  It didn't help that this
is also the first virConnect rather than virDomain prefix
associated with a qemu-specific API.

* src/remote/qemu_protocol.x (qemu_*_domain_monitor_event_*): New
structs and RPC messages.
* src/rpc/gendispatch.pl: Adjust naming conventions.
* daemon/libvirtd.h (daemonClientPrivate): Track qemu events.
* daemon/remote.c (remoteClientFreeFunc): Likewise.
(remoteRelayDomainQemuMonitorEvent)
(qemuDispatchConnectDomainMonitorEventRegister)
(qemuDispatchConnectDomainMonitorEventDeregister): New functions.
* src/remote/remote_driver.c (qemuEvents): Handle qemu events.
(doRemoteOpen): Register for events.
(remoteNetworkBuildEventLifecycle)
(remoteConnectDomainQemuMonitorEventRegister)
(remoteConnectDomainQemuMonitorEventDeregister): New functions.
* src/qemu_protocol-structs: Regenerate.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoqemu: create object for qemu monitor events
Eric Blake [Tue, 31 Dec 2013 13:33:42 +0000 (06:33 -0700)]
qemu: create object for qemu monitor events

Create qemu monitor events as a distinct class to normal domain
events, because they will be filtered differently.  For ease of
review, the logic for filtering by event name is saved for a later
patch.

* src/conf/domain_event.c (virDomainQemuMonitorEventClass): New
class.
(virDomainEventsOnceInit): Register it.
(virDomainQemuMonitorEventDispose, virDomainQemuMonitorEventNew)
(virDomainQemuMonitorEventDispatchFunc)
(virDomainQemuMonitorEventStateRegisterID): New functions.
* src/conf/domain_event.h (virDomainQemuMonitorEventNew)
(virDomainQemuMonitorEventStateRegisterID): New prototypes.
* src/libvirt_private.syms (conf/domain_conf.h): Export them.

11 years agoqemu: virsh wrapper for qemu events
Eric Blake [Fri, 31 Jan 2014 23:52:17 +0000 (16:52 -0700)]
qemu: virsh wrapper for qemu events

Any new API deserves a good virsh wrapper :)

    qemu-monitor-event [<domain>] [<event>] [--pretty] [--loop] [--timeout <number>]

Very similar to the previous work on 'virsh event'.  For an
example session:

$ virsh -c qemu:///system qemu-monitor-event --event SHUTDOWN&
$ virsh -c qemu:///system start f18-live
Domain f18-live started

$ virsh -c qemu:///system destroy f18-live
Domain f18-live destroyed

event SHUTDOWN at 1391212552.026544 for domain f18-live: (null)
events received: 1

[1]+  Done                    virsh -c qemu:///system qemu-monitor-event --event SHUTDOWN
$

* tools/virsh-domain.c (cmdQemuMonitorEvent): New command.
* tools/virsh.pod (qemu-monitor-event): Document it.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoqemu: new API for tracking arbitrary monitor events
Eric Blake [Thu, 19 Dec 2013 14:06:35 +0000 (07:06 -0700)]
qemu: new API for tracking arbitrary monitor events

Several times in the past, qemu has implemented a new event,
but libvirt has not yet caught up to reporting that event to
the user applications.  While it is possible to track libvirt
logs to see that an unknown event was received and ignored,
it would be nicer to copy what 'virsh qemu-monitor-command'
does, and expose this information to the end developer as
one of our unsupported qemu-specific commands.

If you find yourself needing to use this API for more than
just development purposes, please ask on the libvirt list
for a supported counterpart event to be added in libvirt.so.

While the supported virConnectDomainEventRegisterAny() API
takes an id which determines the signature of the callback,
this version takes a string filter and always uses the same
signature.  Furthermore, I chose to expose this as a new API
instead of trying to add a new eventID at the top level, in
part because the generic option lacks event name filtering,
and in part because the normal domain event namespace should
not be polluted by a qemu-only event.  I also added a flags
argument; unused for now, but we might decide to use it to
allow a user to request event names by glob or regex instead
of literal match.

This API intentionally requires full write access (while
normal event registration is allowed on read-only clients);
this is in part due to the fact that it should only be used
by debugging situations, and in part because the design of
per-event filtering in later patches ended up allowing for
duplicate registrations that could potentially be abused to
exhaust server memory - requiring write privileges means
that such abuse will not serve as a denial of service attack
against users with higher privileges.

* include/libvirt/libvirt-qemu.h
(virConnectDomainQemuMonitorEventCallback)
(virConnectDomainQemuMonitorEventRegister)
(virConnectDomainQemuMonitorEventDeregister): New prototypes.
* src/libvirt-qemu.c (virConnectDomainQemuMonitorEventRegister)
(virConnectDomainQemuMonitorEventDeregister): New functions.
* src/libvirt_qemu.syms (LIBVIRT_QEMU_1.2.1): Export them.
* src/driver.h (virDrvConnectDomainQemuMonitorEventRegister)
(virDrvConnectDomainQemuMonitorEventDeregister): New callbacks.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoFix indentation in iscsi storage backend
Ján Tomko [Thu, 20 Mar 2014 12:23:42 +0000 (13:23 +0100)]
Fix indentation in iscsi storage backend

11 years agoIgnore missing files on pool refresh
Ján Tomko [Thu, 20 Mar 2014 15:35:00 +0000 (16:35 +0100)]
Ignore missing files on pool refresh

If we cannot stat/open a file on pool refresh, returning -1 aborts
the refresh and the pool is undefined.

Only treat missing files as fatal unless VolOpenCheckMode is called
with the VIR_STORAGE_VOL_OPEN_ERROR flag. If this flag is missing
(when it's called from virStorageBackendProbeTarget in
virStorageBackendFileSystemRefresh), only emit a warning and return
-2 to let the caller skip over the file.

https://bugzilla.redhat.com/show_bug.cgi?id=977706

11 years agoIgnore char devices in storage pools by default
Ján Tomko [Thu, 20 Mar 2014 15:42:52 +0000 (16:42 +0100)]
Ignore char devices in storage pools by default

Without this, using /dev/mapper as a directory pool
fails in virStorageBackendUpdateVolTargetInfoFD:
cannot seek to end of file '/dev/mapper/control': Illegal seek

Skip over character devices by default.

https://bugzilla.redhat.com/show_bug.cgi?id=710866

11 years agoAdd test for virISCSIScanTargets
Ján Tomko [Wed, 19 Mar 2014 13:02:09 +0000 (14:02 +0100)]
Add test for virISCSIScanTargets

11 years agoAdd test for virISCSIGetSession
Ján Tomko [Fri, 21 Feb 2014 09:59:10 +0000 (10:59 +0100)]
Add test for virISCSIGetSession

Parse iscsiadm output with and without the recently introduced
flashnode info. [1]

This should check that commits like 57e17a7 (fixing [2]) do
not break iscsiadm output parsing.

[1] https://github.com/mikechristie/open-iscsi/commit/181af9a
[2] https://bugzilla.redhat.com/show_bug.cgi?id=1067173

11 years agoMove functions using iscsiadm to viriscsi.c
Ján Tomko [Wed, 19 Mar 2014 15:03:11 +0000 (16:03 +0100)]
Move functions using iscsiadm to viriscsi.c

Remove the 'StorageBackend' from names of the functions and fix
indentation.

11 years agoRemove storage pool from the arguments of a few functions
Ján Tomko [Wed, 19 Mar 2014 14:54:08 +0000 (15:54 +0100)]
Remove storage pool from the arguments of a few functions

virStorageBackendISCSISession only needs the path of the source
device and virStorageBackendISCSIRescanLUNs doesn't need the pool
at all.

This will allow the functions to be moved to src/util.

11 years agoDon't create iscsiadm command line in ISCSIPool{Start,Stop}
Ján Tomko [Wed, 19 Mar 2014 14:52:51 +0000 (15:52 +0100)]
Don't create iscsiadm command line in ISCSIPool{Start,Stop}

Create ISCSIConnection{Login,Logout} wrappers for that.

11 years agoSwitch virCommandRunRegex to use virStringSplit
Ján Tomko [Wed, 19 Mar 2014 12:16:13 +0000 (13:16 +0100)]
Switch virCommandRunRegex to use virStringSplit

Instead of running the command asynchronously and reading the output
via fgets, let virCommand collect the output and split it with
virStringSplit.

11 years agoMove virStorageBackendRun to vircommand
Ján Tomko [Tue, 18 Mar 2014 14:35:01 +0000 (15:35 +0100)]
Move virStorageBackendRun to vircommand

The only storage-specific parameter is the pool object, which
is only used for passing to the callback function.

11 years agoSort includes in storage_backend_iscsi.c
Ján Tomko [Tue, 18 Mar 2014 15:20:01 +0000 (16:20 +0100)]
Sort includes in storage_backend_iscsi.c

11 years agoRequire K&R styled curly braces around function bodies
Martin Kletzander [Fri, 20 Sep 2013 15:56:38 +0000 (17:56 +0200)]
Require K&R styled curly braces around function bodies

Although not explicitly requested, we are using K&R (or Kernel)
indentation for curly braces around functions in HACKING file and most
of the code.  Using grep -P, this patch add the syntax-check rule for
it (while skipping all the false positives with foreach constructs).

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in remaining files
Martin Kletzander [Tue, 18 Mar 2014 08:19:33 +0000 (09:19 +0100)]
Use K&R style for curly braces in remaining files

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/vbox/
Martin Kletzander [Tue, 18 Mar 2014 08:18:32 +0000 (09:18 +0100)]
Use K&R style for curly braces in src/vbox/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/network/bridge_driver.c
Martin Kletzander [Tue, 18 Mar 2014 08:18:16 +0000 (09:18 +0100)]
Use K&R style for curly braces in src/network/bridge_driver.c

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/lxc/lxc_driver.c
Martin Kletzander [Tue, 18 Mar 2014 08:18:09 +0000 (09:18 +0100)]
Use K&R style for curly braces in src/lxc/lxc_driver.c

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/uml/
Martin Kletzander [Tue, 18 Mar 2014 08:17:39 +0000 (09:17 +0100)]
Use K&R style for curly braces in src/uml/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/test/test_driver.c
Martin Kletzander [Tue, 18 Mar 2014 08:17:30 +0000 (09:17 +0100)]
Use K&R style for curly braces in src/test/test_driver.c

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/nwfilter/
Martin Kletzander [Tue, 18 Mar 2014 08:16:54 +0000 (09:16 +0100)]
Use K&R style for curly braces in src/nwfilter/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/openvz/
Martin Kletzander [Tue, 18 Mar 2014 08:16:47 +0000 (09:16 +0100)]
Use K&R style for curly braces in src/openvz/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/storage/
Martin Kletzander [Tue, 18 Mar 2014 08:15:36 +0000 (09:15 +0100)]
Use K&R style for curly braces in src/storage/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/qemu/
Martin Kletzander [Tue, 18 Mar 2014 08:15:21 +0000 (09:15 +0100)]
Use K&R style for curly braces in src/qemu/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/conf/
Martin Kletzander [Tue, 18 Mar 2014 08:15:05 +0000 (09:15 +0100)]
Use K&R style for curly braces in src/conf/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/rpc/
Martin Kletzander [Tue, 18 Mar 2014 08:14:54 +0000 (09:14 +0100)]
Use K&R style for curly braces in src/rpc/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/util/
Martin Kletzander [Tue, 18 Mar 2014 08:14:35 +0000 (09:14 +0100)]
Use K&R style for curly braces in src/util/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in src/xen*/
Martin Kletzander [Tue, 18 Mar 2014 08:14:16 +0000 (09:14 +0100)]
Use K&R style for curly braces in src/xen*/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agoUse K&R style for curly braces in tests/
Martin Kletzander [Tue, 18 Mar 2014 08:13:43 +0000 (09:13 +0100)]
Use K&R style for curly braces in tests/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agois_selinux_enabled() returns -1 on error, account for this.
Scott Sullivan [Thu, 20 Mar 2014 15:05:14 +0000 (16:05 +0100)]
is_selinux_enabled() returns -1 on error, account for this.

Per the documentation, is_selinux_enabled() returns -1 on error.
Account for this. Previously when -1 was being returned the condition
would still be true. I was noticing this because on my system that has
selinux disabled I was getting this in the libvirt.log every 5
seconds:

error : virIdentityGetSystem:173 : Unable to lookup SELinux process context: Invalid argument

With this patch applied, I no longer get these messages every 5
seconds. I am submitting this in case its deemed useful for inclusion.
Anyone have any comments on this change? This is a patch off current
master.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
11 years agobhyve: host API support
Wojciech Macek [Thu, 20 Mar 2014 08:39:23 +0000 (09:39 +0100)]
bhyve: host API support

New functionalities:
- connectGetMaxVcpus - on bhyve hardcode this value to 16
- nodeGetFreeMemory - do not use physmem_get on FreeBSD, since
                      it might get wrong value on systems with
                      more than 100GB of RAM
- nodeGetCPUMap - wrapper only for mapping function, currently not
                  supported by FreeBSD
- nodeSet/GetMemoryParameters - wrapper only for future improvements,
                                currently not supported by FreeBSD

11 years agoFix unitialized data in virSocketAddrMask
Daniel P. Berrange [Thu, 20 Mar 2014 10:31:37 +0000 (10:31 +0000)]
Fix unitialized data in virSocketAddrMask

The virSocketAddrMask method did not initialize all fields
in the sockaddr_in6 struct. In paticular the 'sin6_scope_id'
field could contain random garbage, which would in turn
affect the result of any later virSocketAddrFormat calls.
This led to ip6tables rules in the FORWARD chain which
matched on random garbage sin6_scope_id. Fortunately these
were ACCEPT rules, so the impact was merely that desired
traffic was blocked, rather than undesired traffic allowed.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoFix virQEMUCapsLoadCache leaks
Ján Tomko [Wed, 19 Mar 2014 16:13:19 +0000 (17:13 +0100)]
Fix virQEMUCapsLoadCache leaks

Valgrind reported leaking of maxCpus and arch strings from
virXPathString, as well as the leak of the machineMaxCpus array.

Don't use 'str' for the strings we don't want to free, to allow
freeing of 'str' in the cleanup label and free machineMaxCpus
in virCapsReset too.

11 years agodaemon: Enhance documentation for changing NOFILE limit
Jiri Denemark [Mon, 10 Feb 2014 14:17:05 +0000 (15:17 +0100)]
daemon: Enhance documentation for changing NOFILE limit

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agolibxl: move domain event handler to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 22:50:57 +0000 (15:50 -0700)]
libxl: move domain event handler to libxl_domain

Move the domain event handler and shutdown thread out of the main
driver module and into libxl_domain module

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: include a pointer to the driver in libxlDomainObjPrivate
Jim Fehlig [Wed, 26 Feb 2014 22:43:37 +0000 (15:43 -0700)]
libxl: include a pointer to the driver in libxlDomainObjPrivate

Include a pointer to the libxl driver in libxlDomainObjPrivate
object so it can be used in the domain event handler and
shutdown thread.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlVmStart to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 21:11:30 +0000 (14:11 -0700)]
libxl: move libxlVmStart to libxl_domain

Move libxlVmStart from libxl_driver to libxl_domain for
use by other libxl modules.  For consistency, rename to
libxlDomainStart.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlFreeMem to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 20:51:36 +0000 (13:51 -0700)]
libxl: move libxlFreeMem to libxl_domain

Move libxlFreeMem from libxl_driver to libxl_domain for
use by other libxl modules.  For consistency, rename to
libxlDomainFreeMem.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlDomainSetVcpuAffinities to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 20:48:11 +0000 (13:48 -0700)]
libxl: move libxlDomainSetVcpuAffinities to libxl_domain

Move libxlDomainSetVcpuAffinities from libxl_driver to libxl_domain
for use by other libxl modules.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlDoNodeGetInfo to libxl_conf
Jim Fehlig [Wed, 26 Feb 2014 20:44:09 +0000 (13:44 -0700)]
libxl: move libxlDoNodeGetInfo to libxl_conf

Move libxlDoNodeGetInfo from libxl_driver to libxl_conf
for use by other libxl modules.  For consistency, rename to
libxlDriverNodeGetInfo.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlDomainAutoCoreDump to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 19:33:46 +0000 (12:33 -0700)]
libxl: move libxlDomainAutoCoreDump to libxl_domain

Move libxlDomainAutoCoreDump from libxl_driver to libxl_domain
for use by other libxl modules.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlDomEventsRegister to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 19:28:44 +0000 (12:28 -0700)]
libxl: move libxlDomEventsRegister to libxl_domain

Move libxlDomEventsRegister from libxl_driver to libxl_domain for
use by other libxl modules.  For consistency, rename to
libxlDomainEventsRegister.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlVmCleanup{,Job} to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 19:04:34 +0000 (12:04 -0700)]
libxl: move libxlVmCleanup{,Job} to libxl_domain

Move libxlVmCleanup and libxlVmCleanupJob from libxl_driver to
libxl_domain for use by other libxl modules.  For consistency,
rename to libxlDomainCleanup and libxlDomainCleanupJob.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlSaveImageOpen to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 04:28:51 +0000 (21:28 -0700)]
libxl: move libxlSaveImageOpen to libxl_domain

Move libxlSaveImageOpen from libxl_driver to libxl_domain for
use by other libxl modules.  For consistency, rename to
libxlDomainSaveImageOpen.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlDomainManagedSavePath to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 03:55:47 +0000 (20:55 -0700)]
libxl: move libxlDomainManagedSavePath to libxl_domain

Move libxlDomainManagedSavePath from libxl_driver to libxl_domain
for use by other libxl modules.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agolibxl: move libxlDomainEventQueue to libxl_domain
Jim Fehlig [Wed, 26 Feb 2014 01:51:52 +0000 (18:51 -0700)]
libxl: move libxlDomainEventQueue to libxl_domain

Move libxlDomainEventQueue from libxl_driver to libxl_domain for
use by other libxl modules.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
11 years agovirNetClientSetTLSSession: Restore original signal mask
Michal Privoznik [Wed, 19 Mar 2014 17:10:34 +0000 (18:10 +0100)]
virNetClientSetTLSSession: Restore original signal mask

Currently, we use pthread_sigmask(SIG_BLOCK, ...) prior to calling
poll(). This is okay, as we don't want poll() to be interrupted.
However, then - immediately as we fall out from the poll() - we try to
restore the original sigmask - again using SIG_BLOCK. But as the man
page says, SIG_BLOCK adds signals to the signal mask:

SIG_BLOCK
      The set of blocked signals is the union of the current set and the set argument.

Therefore, when restoring the original mask, we need to completely
overwrite the one we set earlier and hence we should be using:

SIG_SETMASK
      The set of blocked signals is set to the argument set.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
11 years agonwfilter: Fix double free of pointer
Stefan Berger [Wed, 19 Mar 2014 17:38:44 +0000 (13:38 -0400)]
nwfilter: Fix double free of pointer

https://bugzilla.redhat.com/show_bug.cgi?id=1071181

Commit 49b59a15 fixed one problem but masks another one related to pointer
freeing.

Avoid putting of the virNWFilterSnoopReq once the thread has been started.
It belongs to the thread and the thread will call virNWFilterSnoopReqPut() on it.

Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
11 years agodomiftune: Reword bandwidth clearing paragraph
Michal Privoznik [Wed, 19 Mar 2014 10:25:03 +0000 (11:25 +0100)]
domiftune: Reword bandwidth clearing paragraph

s/of value/value of/

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
11 years agoconf: consistent comments about disk enum usage
Eric Blake [Wed, 19 Mar 2014 15:09:02 +0000 (09:09 -0600)]
conf: consistent comments about disk enum usage

Before refactoring this struct, I found it helpful to track which
'int' fields really contain an enum value.

* src/conf/domain_conf.h (_virDomainDiskDef): Add comments.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agobuild: Make sure src/util/virprobe.h is distributed
Jiri Denemark [Wed, 19 Mar 2014 13:46:01 +0000 (14:46 +0100)]
build: Make sure src/util/virprobe.h is distributed

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agoqemuhotplugtest: Fix mem-leaking testcases
Nehal J Wani [Tue, 18 Mar 2014 23:08:12 +0000 (04:38 +0530)]
qemuhotplugtest: Fix mem-leaking testcases

While running qemuhotplugtest, it was found that valgrind pointed out
the following memory leak:

==7906== 5 bytes in 1 blocks are definitely lost in loss record 7 of 121
==7906==    at 0x4A069EE: malloc (vg_replace_malloc.c:270)
==7906==    by 0x3E782A754D: xmlStrndup (in /usr/lib64/libxml2.so.2.7.6)
==7906==    by 0x4CDAE03: virDomainDeviceInfoParseXML.isra.32 (domain_conf.c:3685)
==7906==    by 0x4CE3BB9: virDomainNetDefParseXML (domain_conf.c:6707)
==7906==    by 0x4CFBA08: virDomainDefParseXML (domain_conf.c:12235)
==7906==    by 0x4CFBC1E: virDomainDefParseNode (domain_conf.c:13039)
==7906==    by 0x4CFBD95: virDomainDefParse (domain_conf.c:12981)
==7906==    by 0x41FEB4: testQemuHotplug (qemuhotplugtest.c:66)
==7906==    by 0x420F41: virtTestRun (testutils.c:201)
==7906==    by 0x41F287: mymain (qemuhotplugtest.c:422)
==7906==    by 0x4216BD: virtTestMain (testutils.c:784)
==7906==    by 0x3E6CE1ED1C: (below main) (libc-start.c:226)
...and 10 more.

Problem is, since 20745748 we do both, parse <alias/> elements from
XML files and call qemuAssignDeviceAliases(). While generating runtime
info for domain at runtime is just fine in the test, we can parse just
inactive XML and remove all <alias/>-es from the XML files.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
11 years agobuild: Fix make distcheck
Martin Kletzander [Wed, 19 Mar 2014 13:27:08 +0000 (14:27 +0100)]
build: Fix make distcheck

I forgot to delete the underscore in object_locking_SOURCES when
changing the name in one of previous cleanups.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
11 years agobuild: Fix build with old automake
Jiri Denemark [Fri, 14 Mar 2014 10:35:46 +0000 (11:35 +0100)]
build: Fix build with old automake

Ancient automake (such as from RHEL5) does not provide abs_srcdir and
abs_builddir variables which are used by a recent commit of mine
(e562e82).

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
11 years agoAdd ability to register callback for virCommand dry run
Daniel P. Berrange [Fri, 7 Mar 2014 11:39:48 +0000 (11:39 +0000)]
Add ability to register callback for virCommand dry run

To allow for fault injection of the virCommand dry run,
add the ability to register a callback. The callback will
be passed the argv, env and stdin buffer and is expected
to return the exit status and optionally fill stdout and
stderr buffers.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoChange CMD_STOPONERR(1) to use true
Daniel P. Berrange [Fri, 14 Mar 2014 16:01:57 +0000 (16:01 +0000)]
Change CMD_STOPONERR(1) to use true

The CMD_STOPONERR macro uses its parameter as a boolean, so should
be passed true rather than 1.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoChange 'int isTempChain' to bool in nwfilter
Daniel P. Berrange [Fri, 14 Mar 2014 16:00:49 +0000 (16:00 +0000)]
Change 'int isTempChain' to bool in nwfilter

The 'int isTempChain' parameter to various nwfilter methods
only takes two values so should be a bool type.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoRemove pointless return values in nwfilter methods
Daniel P. Berrange [Fri, 14 Mar 2014 13:39:51 +0000 (13:39 +0000)]
Remove pointless return values in nwfilter methods

Many nwfilter methods have an int return value but only ever
return 0 and their callers never check the return value either.
These methods can all be void.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoRemove 'int stopOnError' parameters in nwfilter methods
Daniel P. Berrange [Fri, 14 Mar 2014 13:31:57 +0000 (13:31 +0000)]
Remove 'int stopOnError' parameters in nwfilter methods

Many nwfilter methods have an 'int stopOnError' parameter but
with 1 exception, the callers always pass '1'. The parameter
can therefore be removed from all except one method. That method
will be changed to 'bool stopOnError'

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoRemove pointless brackets around boolean
Daniel P. Berrange [Fri, 14 Mar 2014 13:24:28 +0000 (13:24 +0000)]
Remove pointless brackets around boolean

A lot of methods have a 'bool incoming' parameter but then
do  (incoming) ? ... : .... The round brackets here add nothing
to the code so can be removed.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoChange 'int incoming' to 'bool incoming' in nwfilter code
Daniel P. Berrange [Fri, 14 Mar 2014 13:21:52 +0000 (13:21 +0000)]
Change 'int incoming' to 'bool incoming' in nwfilter code

Many methods in the nwfilter code have an 'int incoming' parameter
that only takes 0 or 1, so should use a bool instead.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agovirhostdev.h: remove ATTRIBUTE_NONNULL from oldStateDir
Chunyan Liu [Wed, 19 Mar 2014 03:17:22 +0000 (11:17 +0800)]
virhostdev.h: remove ATTRIBUTE_NONNULL from oldStateDir

In libxl driver oldStateDir is NULL when calling
virHostdevReAttachDomainHostdevs. This is allowed.
Remove ATTRIBUTE_NONNULL setting from oldStateDir.

Introduced by commit 6225cb3.

Signed-off-by: Chunyan Liu <cyliu@suse.com>
Signed-off-by: Ján Tomko <jtomko@redhat.com>
11 years agolibxl: fix framebuffer port setting for HVM domains
Jim Fehlig [Mon, 17 Mar 2014 20:22:44 +0000 (14:22 -0600)]
libxl: fix framebuffer port setting for HVM domains

libxl uses the libxl_vnc_info and libxl_sdl_info fields from the
hvm union in libxl_domain_build_info struct when generating QEMU
args for VNC or SDL.  These fields were left unset by the libxl
driver, causing libxl to ignore any user settings.  E.g. with

  <graphics type='vnc' port='5950'/>

port would be ignored and QEMU would instead be invoked with

  -vnc 127.0.0.1:0,to=99

Unlike the libxl_domain_config struct, the libxl_domain_build_info
contains only a single libxl_vnc_info and libxl_sdl_info, so
populate these fields from the first vfb in
libxl_domain_config->vfbs.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
Signed-off-by: David Kiarie <davidkiarie4@gmail.com>
11 years agomaint: avoid unbalanced {} across vbox #ifdef
Eric Blake [Tue, 18 Mar 2014 20:10:27 +0000 (14:10 -0600)]
maint: avoid unbalanced {} across vbox #ifdef

Emacs is fairly good about navigating across function and scope
boundaries, provided that the code has balanced {}.  The vbox
code, however, violated that premise, by splitting 'if () {'
across several #ifdef branches, but sharing the '} else {...}'
outside of the branches.  The extra lines of code is worth my
sanity, in a function that is already a horrendous 1100+ lines
long.

* src/vbox/vbox_tmpl.c (vboxDomainGetXMLDesc) Duplicate code
rather than trying to share else branch across #ifdef.

Signed-off-by: Eric Blake <eblake@redhat.com>
11 years agoRemove global log buffer feature entirely
Daniel P. Berrange [Mon, 3 Mar 2014 14:54:33 +0000 (14:54 +0000)]
Remove global log buffer feature entirely

A earlier commit changed the global log buffer so that it only
records messages that are explicitly requested via the log
filters setting. This removes the performance burden, and
improves the signal/noise ratio for messages in the global
buffer. At the same time though, it is somewhat pointless, since
all the recorded log messages are already going to be sent to an
explicit log output like syslog, stderr or the journal. The
global log buffer is thus just duplicating this data on stderr
upon crash.

The log_buffer_size config parameter is left in the augeas
lens to prevent breakage for users on upgrade. It is however
completely ignored hereafter.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoSwitch to filtering based on log source name instead of filename
Daniel P. Berrange [Fri, 28 Feb 2014 13:55:11 +0000 (13:55 +0000)]
Switch to filtering based on log source name instead of filename

Currently the log filter strings are used in a string comparison
against the source filename each time log message is emitted.
If no log filters at all are set, there's obviously no string
comparison to be done. If any single log filter is set though,
this imposes a compute burden on every logging call even if logs
from the file in question are disabled. This string comparison
must also be done while the logging mutex is held, which has
implications for concurrency when multiple threads are emitting
log messages.

This changes the log filtering to be done based on the virLogSource
object name. The virLogSource struct is extended to contain
'serial' and 'priority' fields. Any time the global log filter
rules are changed a global serial number is incremented. When a
log message is emitted, the serial in the virLogSource instance
is compared with the global serial number. If out of date, then
the 'priority' field in the virLogSource instance is updated based
on the new filter rules. The 'priority' field is checked to see
whether the log message should be sent to the log outputs.

The comparisons of the 'serial' and 'priority' fields are done
with no locks held. So in the common case each logging call has
an overhead of 2 integer comparisons, with no locks held. Only
if the decision is made to forward the message to the log output,
or if the 'serial' value is out of date do locks need to be
acquired.

Technically the comparisons of the 'serial' and 'priority' fields
should be done with locks held, or using atomic operations. Both
of these options have a notable performance impact, however, and
since all writes a protected by a global mutex, it is believed
that worst case behaviour where the fields are read concurrently
with being written would merely result in an mistaken emission
or dropping of the log message in question. This is an acceptable
tradeoff for the performance benefit of avoiding locking.

As a quick benchmark, a demo program that registers 500 file
descriptors with the event loop (eg equiv of 500 QEMU monitor
commands), creates pending read I/O on every FD, and then runs
virEventRunDefaultImpl() took 4.6 seconds to do 51200 iterations.
After this optimization it only takes 3.3 seconds, with the log
APIs no longer being a relevant factor in the running time.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoAdd virLogSource variables to all source files
Daniel P. Berrange [Fri, 28 Feb 2014 12:16:17 +0000 (12:16 +0000)]
Add virLogSource variables to all source files

Any source file which calls the logging APIs now needs
to have a VIR_LOG_INIT("source.name") declaration at
the start of the file. This provides a static variable
of the virLogSource type.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoTurn virLogSource into a struct instead of an enum
Daniel P. Berrange [Thu, 27 Feb 2014 17:44:53 +0000 (17:44 +0000)]
Turn virLogSource into a struct instead of an enum

As part of the goal to get away from doing string matching on
filenames when deciding whether to emit a log message, turn
the virLogSource enum into a struct which contains a log
"name". There will eventually be one virLogSource instance
statically declared per source file. To minimise churn in this
commit though, a single global instance is used.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoMove dtrace probe macros into separate header file
Daniel P. Berrange [Thu, 27 Feb 2014 13:41:11 +0000 (13:41 +0000)]
Move dtrace probe macros into separate header file

The dtrace probe macros rely on the logging API. We can't make
the internal.h header include the virlog.h header though since
that'd be a circular include. Instead simply split the dtrace
probes into their own header file, since there's no compelling
reason for them to be in the main internal.h header.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 years agoRefactor code that skips logging of error messages
Daniel P. Berrange [Mon, 3 Mar 2014 18:29:33 +0000 (18:29 +0000)]
Refactor code that skips logging of error messages

The error reporting code will invoke a callback when any error
is raised and the default callback will print to stderr. The
virRaiseErrorFull method also sends all error messages on to the
logging code, which also prints to stderr by default. To avoid
duplicated data on stderr, the logging code has some logic to
skip emission when no log outputs are configured, which checks
whether the virLogSource == VIR_LOG_FROM_ERROR.

Meanwhile the libvirtd daemon can register another callback which
is used to reduce log message priority from error to a lower level.
When this is used we do want messages to end up on stderr, so the
error code will conditionally use either VIR_LOG_FROM_FILE or
VIR_LOG_FROM_ERROR depending on whether such a callback is provided.

This will all complicate later refactoring. By pushing the checks
for whether a log output is present up a level into the error code,
the special cases can be isolated in one place.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>