forked from pool/libvirt
5674459f46
- CVE-2013-2230: Fix crash when multiple event callbacks were registered f38c8185-CVE-2013-2230.patch bnc#827801 - Update to libvirt 1.1.0 - Extensible migration APIs - Add a policy kit access control driver - various improvements in the Xen and libxl drivers - improve networking support on BSD - agent based vCPU hotplug support - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Drop upstream patches: 244e0b8c-CVE-2013-2218.patch OBS-URL: https://build.opensuse.org/request/show/182783 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=282
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
Allow qemu driver (and hence libvirtd) to load when qemu
|
|
user:group does not exist. The kvm package, which may not
|
|
exist on a xen host, creates qemu user:group.
|
|
|
|
A better (future) solution would be to build the libvirtd
|
|
drivers as loadable modules instead of built-in to the
|
|
daemon. Then the qemu driver would only be loaded when needed,
|
|
which would never be the case on a xen-only configuration.
|
|
|
|
Index: libvirt-1.1.0/src/qemu/qemu_conf.c
|
|
===================================================================
|
|
--- libvirt-1.1.0.orig/src/qemu/qemu_conf.c
|
|
+++ libvirt-1.1.0/src/qemu/qemu_conf.c
|
|
@@ -465,15 +465,15 @@ int virQEMUDriverConfigLoadFile(virQEMUD
|
|
|
|
p = virConfGetValue(conf, "user");
|
|
CHECK_TYPE("user", VIR_CONF_STRING);
|
|
- if (p && p->str &&
|
|
- virGetUserID(p->str, &cfg->user) < 0)
|
|
- goto cleanup;
|
|
+ if (p && p->str)
|
|
+ if (virGetUserID(p->str, &cfg->user) < 0)
|
|
+ VIR_WARN("User %s does not exist! Continuing...", p->str);
|
|
|
|
p = virConfGetValue(conf, "group");
|
|
CHECK_TYPE("group", VIR_CONF_STRING);
|
|
- if (p && p->str &&
|
|
- virGetGroupID(p->str, &cfg->group) < 0)
|
|
- goto cleanup;
|
|
+ if (p && p->str)
|
|
+ if (virGetGroupID(p->str, &cfg->group) < 0)
|
|
+ VIR_WARN("Group %s does not exist! Continuing...", p->str);
|
|
|
|
GET_VALUE_BOOL("dynamic_ownership", cfg->dynamicOwnership);
|
|
|