https://bugzilla.redhat.com/show_bug.cgi?id=
1755303
With the recent work in daemon split and socket activation
daemons can come and go. They can and will be started many times
during a session which results in objects being autostarted
multiple times. This is not optimal. Use
virDriverShouldAutostart() to determine if autostart should be
done or not.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
virStateInhibitCallback callback ATTRIBUTE_UNUSED,
void *opaque ATTRIBUTE_UNUSED)
{
+ bool autostart = true;
+
if (!privileged) {
VIR_INFO("Not running privileged, disabling driver");
return VIR_DRV_STATE_INIT_SKIPPED;
virBhyveProcessReconnectAll(bhyve_driver);
- bhyveAutostartDomains(bhyve_driver);
+ if (virDriverShouldAutostart(BHYVE_STATE_DIR, &autostart) < 0)
+ goto cleanup;
+
+ if (autostart)
+ bhyveAutostartDomains(bhyve_driver);
return VIR_DRV_STATE_INIT_COMPLETE;
libxlDriverConfigPtr cfg;
char *driverConf = NULL;
char ebuf[1024];
+ bool autostart = true;
if (!libxlDriverShouldLoad(privileged))
return VIR_DRV_STATE_INIT_SKIPPED;
NULL, NULL) < 0)
goto error;
- virDomainObjListForEach(libxl_driver->domains, false,
- libxlAutostartDomain,
- libxl_driver);
+ if (virDriverShouldAutostart(cfg->stateDir, &autostart) < 0)
+ goto error;
+
+ if (autostart) {
+ virDomainObjListForEach(libxl_driver->domains, false,
+ libxlAutostartDomain,
+ libxl_driver);
+ }
virDomainObjListForEach(libxl_driver->domains, false,
libxlDomainManagedSaveLoad,
{
virCapsPtr caps = NULL;
virLXCDriverConfigPtr cfg = NULL;
+ bool autostart = true;
/* Check that the user is root, silently disable if not */
if (!privileged) {
NULL, NULL) < 0)
goto cleanup;
- virLXCProcessAutostartAll(lxc_driver);
+ if (virDriverShouldAutostart(cfg->stateDir, &autostart) < 0)
+ goto cleanup;
+
+ if (autostart)
+ virLXCProcessAutostartAll(lxc_driver);
virObjectUnref(caps);
return VIR_DRV_STATE_INIT_COMPLETE;
int ret = VIR_DRV_STATE_INIT_ERROR;
char *configdir = NULL;
char *rundir = NULL;
+ bool autostart = true;
#ifdef WITH_FIREWALLD
DBusConnection *sysbus = NULL;
#endif
networkReloadFirewallRules(network_driver, true);
networkRefreshDaemons(network_driver);
- virNetworkObjListForEach(network_driver->networks,
- networkAutostartConfig,
- network_driver);
+ if (virDriverShouldAutostart(network_driver->stateDir, &autostart) < 0)
+ goto error;
+
+ if (autostart) {
+ virNetworkObjListForEach(network_driver->networks,
+ networkAutostartConfig,
+ network_driver);
+ }
network_driver->networkEventState = virObjectEventStateNew();
gid_t run_gid = -1;
char *hugepagePath = NULL;
char *memoryBackingPath = NULL;
+ bool autostart = true;
size_t i;
if (VIR_ALLOC(qemu_driver) < 0)
qemuProcessReconnectAll(qemu_driver);
- qemuAutostartDomains(qemu_driver);
+ if (virDriverShouldAutostart(cfg->stateDir, &autostart) < 0)
+ goto error;
+
+ if (autostart)
+ qemuAutostartDomains(qemu_driver);
return VIR_DRV_STATE_INIT_COMPLETE;
{
VIR_AUTOFREE(char *) configdir = NULL;
VIR_AUTOFREE(char *) rundir = NULL;
+ bool autostart = true;
if (VIR_ALLOC(driver) < 0)
return VIR_DRV_STATE_INIT_ERROR;
storagePoolUpdateAllState();
- storageDriverAutostart();
+ if (virDriverShouldAutostart(driver->stateDir, &autostart) < 0)
+ goto error;
+
+ if (autostart)
+ storageDriverAutostart();
driver->storageEventState = virObjectEventStateNew();