2013-07-15 14:53:13 +00:00
|
|
|
/*
|
|
|
|
* virclosecallbacks.c: Connection close callbacks routines
|
|
|
|
*
|
2014-04-04 23:36:25 +00:00
|
|
|
* Copyright (C) 2013-2014 Red Hat, Inc.
|
2013-07-15 14:53:13 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "viralloc.h"
|
|
|
|
#include "virclosecallbacks.h"
|
|
|
|
#include "virlog.h"
|
|
|
|
#include "virobject.h"
|
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2014-02-28 12:16:17 +00:00
|
|
|
VIR_LOG_INIT("util.closecallbacks");
|
|
|
|
|
2013-07-15 14:53:13 +00:00
|
|
|
typedef struct _virDriverCloseDef virDriverCloseDef;
|
|
|
|
typedef virDriverCloseDef *virDriverCloseDefPtr;
|
|
|
|
struct _virDriverCloseDef {
|
|
|
|
virConnectPtr conn;
|
|
|
|
virCloseCallback cb;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _virCloseCallbacks {
|
|
|
|
virObjectLockable parent;
|
|
|
|
|
|
|
|
/* UUID string to qemuDriverCloseDef mapping */
|
|
|
|
virHashTablePtr list;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static virClassPtr virCloseCallbacksClass;
|
|
|
|
static void virCloseCallbacksDispose(void *obj);
|
|
|
|
|
|
|
|
static int virCloseCallbacksOnceInit(void)
|
|
|
|
{
|
2018-04-17 15:42:33 +00:00
|
|
|
if (!VIR_CLASS_NEW(virCloseCallbacks, virClassForObjectLockable()))
|
2013-07-15 14:53:13 +00:00
|
|
|
return -1;
|
2018-04-17 15:42:33 +00:00
|
|
|
|
|
|
|
return 0;
|
2013-07-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
|
2019-01-20 17:23:29 +00:00
|
|
|
VIR_ONCE_GLOBAL_INIT(virCloseCallbacks);
|
2013-07-15 14:53:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
virCloseCallbacksPtr
|
|
|
|
virCloseCallbacksNew(void)
|
|
|
|
{
|
|
|
|
virCloseCallbacksPtr closeCallbacks;
|
|
|
|
|
|
|
|
if (virCloseCallbacksInitialize() < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!(closeCallbacks = virObjectLockableNew(virCloseCallbacksClass)))
|
|
|
|
return NULL;
|
|
|
|
|
2014-04-04 23:36:25 +00:00
|
|
|
closeCallbacks->list = virHashCreate(5, virHashValueFree);
|
2013-07-15 14:53:13 +00:00
|
|
|
if (!closeCallbacks->list) {
|
|
|
|
virObjectUnref(closeCallbacks);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return closeCallbacks;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virCloseCallbacksDispose(void *obj)
|
|
|
|
{
|
|
|
|
virCloseCallbacksPtr closeCallbacks = obj;
|
|
|
|
|
|
|
|
virHashFree(closeCallbacks->list);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
virCloseCallbacksSet(virCloseCallbacksPtr closeCallbacks,
|
|
|
|
virDomainObjPtr vm,
|
|
|
|
virConnectPtr conn,
|
|
|
|
virCloseCallback cb)
|
|
|
|
{
|
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virDriverCloseDefPtr closeDef;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
virUUIDFormat(vm->def->uuid, uuidstr);
|
|
|
|
VIR_DEBUG("vm=%s, uuid=%s, conn=%p, cb=%p",
|
|
|
|
vm->def->name, uuidstr, conn, cb);
|
|
|
|
|
|
|
|
virObjectLock(closeCallbacks);
|
|
|
|
|
|
|
|
closeDef = virHashLookup(closeCallbacks->list, uuidstr);
|
|
|
|
if (closeDef) {
|
|
|
|
if (closeDef->conn != conn) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Close callback for domain %s already registered"
|
|
|
|
" with another connection %p"),
|
|
|
|
vm->def->name, closeDef->conn);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (closeDef->cb && closeDef->cb != cb) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Another close callback is already defined for"
|
|
|
|
" domain %s"), vm->def->name);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
closeDef->cb = cb;
|
|
|
|
} else {
|
|
|
|
if (VIR_ALLOC(closeDef) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
closeDef->conn = conn;
|
|
|
|
closeDef->cb = cb;
|
|
|
|
if (virHashAddEntry(closeCallbacks->list, uuidstr, closeDef) < 0) {
|
|
|
|
VIR_FREE(closeDef);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
qemu: completely rework reference counting
There is one problem that causes various errors in the daemon. When
domain is waiting for a job, it is unlocked while waiting on the
condition. However, if that domain is for example transient and being
removed in another API (e.g. cancelling incoming migration), it get's
unref'd. If the first call, that was waiting, fails to get the job, it
unref's the domain object, and because it was the last reference, it
causes clearing of the whole domain object. However, when finishing the
call, the domain must be unlocked, but there is no way for the API to
know whether it was cleaned or not (unless there is some ugly temporary
variable, but let's scratch that).
The root cause is that our APIs don't ref the objects they are using and
all use the implicit reference that the object has when it is in the
domain list. That reference can be removed when the API is waiting for
a job. And because each domain doesn't do its ref'ing, it results in
the ugly checking of the return value of virObjectUnref() that we have
everywhere.
This patch changes qemuDomObjFromDomain() to ref the domain (using
virDomainObjListFindByUUIDRef()) and adds qemuDomObjEndAPI() which
should be the only function in which the return value of
virObjectUnref() is checked. This makes all reference counting
deterministic and makes the code a bit clearer.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
2014-12-04 13:41:36 +00:00
|
|
|
virObjectRef(vm);
|
2013-07-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
|
util: fix crash in virClassIsDerivedFrom for CloseCallbacks objects
There is a possibility that qemu driver frees by unreferencing its
closeCallbacks pointer as it has the only reference to the object,
while in fact not all users of CloseCallbacks called thier
virCloseCallbacksUnset.
Backtrace is the following:
Thread #1:
0 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
1 in virCondWait (c=<optimized out>, m=<optimized out>)
at util/virthread.c:154
2 in virThreadPoolFree (pool=0x7f0810110b50)
at util/virthreadpool.c:266
3 in qemuStateCleanup () at qemu/qemu_driver.c:1116
4 in virStateCleanup () at libvirt.c:808
5 in main (argc=<optimized out>, argv=<optimized out>)
at libvirtd.c:1660
Thread #2:
0 in virClassIsDerivedFrom (klass=0xdeadbeef, parent=0x7f0837c694d0) at util/virobject.c:169
1 in virObjectIsClass (anyobj=anyobj@entry=0x7f08101d4760, klass=<optimized out>) at util/virobject.c:365
2 in virObjectLock (anyobj=0x7f08101d4760) at util/virobject.c:317
3 in virCloseCallbacksUnset (closeCallbacks=0x7f08101d4760, vm=vm@entry=0x7f08101d47b0, cb=cb@entry=0x7f081d078fc0 <qemuProcessAutoDestroy>) at util/virclosecallbacks.c:163
4 in qemuProcessAutoDestroyRemove (driver=driver@entry=0x7f081018be50, vm=vm@entry=0x7f08101d47b0) at qemu/qemu_process.c:6368
5 in qemuProcessStop (driver=driver@entry=0x7f081018be50, vm=vm@entry=0x7f08101d47b0, reason=reason@entry=VIR_DOMAIN_SHUTOFF_SHUTDOWN, asyncJob=asyncJob@entry=QEMU_ASYNC_JOB_NONE, flags=flags@entry=0) at qemu/qemu_process.c:5854
6 in processMonitorEOFEvent (vm=0x7f08101d47b0, driver=0x7f081018be50) at qemu/qemu_driver.c:4585
7 qemuProcessEventHandler (data=<optimized out>, opaque=0x7f081018be50) at qemu/qemu_driver.c:4629
8 in virThreadPoolWorker (opaque=opaque@entry=0x7f0837c4f820) at util/virthreadpool.c:145
9 in virThreadHelper (data=<optimized out>) at util/virthread.c:206
10 in start_thread () from /lib64/libpthread.so.0
Let's reference CloseCallbacks object in virCloseCallbacksSet and
unreference in virCloseCallbacksUnset.
Signed-off-by: Maxim Nestratov <mnestratov@virtuozzo.com>
2016-06-06 14:42:16 +00:00
|
|
|
virObjectRef(closeCallbacks);
|
2013-07-15 14:53:13 +00:00
|
|
|
ret = 0;
|
2014-03-25 06:53:22 +00:00
|
|
|
cleanup:
|
2013-07-15 14:53:13 +00:00
|
|
|
virObjectUnlock(closeCallbacks);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
virCloseCallbacksUnset(virCloseCallbacksPtr closeCallbacks,
|
|
|
|
virDomainObjPtr vm,
|
|
|
|
virCloseCallback cb)
|
|
|
|
{
|
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virDriverCloseDefPtr closeDef;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
virUUIDFormat(vm->def->uuid, uuidstr);
|
|
|
|
VIR_DEBUG("vm=%s, uuid=%s, cb=%p",
|
|
|
|
vm->def->name, uuidstr, cb);
|
|
|
|
|
|
|
|
virObjectLock(closeCallbacks);
|
|
|
|
|
|
|
|
closeDef = virHashLookup(closeCallbacks->list, uuidstr);
|
|
|
|
if (!closeDef)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (closeDef->cb && closeDef->cb != cb) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Trying to remove mismatching close callback for"
|
|
|
|
" domain %s"), vm->def->name);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
qemu: completely rework reference counting
There is one problem that causes various errors in the daemon. When
domain is waiting for a job, it is unlocked while waiting on the
condition. However, if that domain is for example transient and being
removed in another API (e.g. cancelling incoming migration), it get's
unref'd. If the first call, that was waiting, fails to get the job, it
unref's the domain object, and because it was the last reference, it
causes clearing of the whole domain object. However, when finishing the
call, the domain must be unlocked, but there is no way for the API to
know whether it was cleaned or not (unless there is some ugly temporary
variable, but let's scratch that).
The root cause is that our APIs don't ref the objects they are using and
all use the implicit reference that the object has when it is in the
domain list. That reference can be removed when the API is waiting for
a job. And because each domain doesn't do its ref'ing, it results in
the ugly checking of the return value of virObjectUnref() that we have
everywhere.
This patch changes qemuDomObjFromDomain() to ref the domain (using
virDomainObjListFindByUUIDRef()) and adds qemuDomObjEndAPI() which
should be the only function in which the return value of
virObjectUnref() is checked. This makes all reference counting
deterministic and makes the code a bit clearer.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
2014-12-04 13:41:36 +00:00
|
|
|
if (virHashRemoveEntry(closeCallbacks->list, uuidstr) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
virObjectUnref(vm);
|
|
|
|
ret = 0;
|
2014-03-25 06:53:22 +00:00
|
|
|
cleanup:
|
2013-07-15 14:53:13 +00:00
|
|
|
virObjectUnlock(closeCallbacks);
|
util: fix crash in virClassIsDerivedFrom for CloseCallbacks objects
There is a possibility that qemu driver frees by unreferencing its
closeCallbacks pointer as it has the only reference to the object,
while in fact not all users of CloseCallbacks called thier
virCloseCallbacksUnset.
Backtrace is the following:
Thread #1:
0 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
1 in virCondWait (c=<optimized out>, m=<optimized out>)
at util/virthread.c:154
2 in virThreadPoolFree (pool=0x7f0810110b50)
at util/virthreadpool.c:266
3 in qemuStateCleanup () at qemu/qemu_driver.c:1116
4 in virStateCleanup () at libvirt.c:808
5 in main (argc=<optimized out>, argv=<optimized out>)
at libvirtd.c:1660
Thread #2:
0 in virClassIsDerivedFrom (klass=0xdeadbeef, parent=0x7f0837c694d0) at util/virobject.c:169
1 in virObjectIsClass (anyobj=anyobj@entry=0x7f08101d4760, klass=<optimized out>) at util/virobject.c:365
2 in virObjectLock (anyobj=0x7f08101d4760) at util/virobject.c:317
3 in virCloseCallbacksUnset (closeCallbacks=0x7f08101d4760, vm=vm@entry=0x7f08101d47b0, cb=cb@entry=0x7f081d078fc0 <qemuProcessAutoDestroy>) at util/virclosecallbacks.c:163
4 in qemuProcessAutoDestroyRemove (driver=driver@entry=0x7f081018be50, vm=vm@entry=0x7f08101d47b0) at qemu/qemu_process.c:6368
5 in qemuProcessStop (driver=driver@entry=0x7f081018be50, vm=vm@entry=0x7f08101d47b0, reason=reason@entry=VIR_DOMAIN_SHUTOFF_SHUTDOWN, asyncJob=asyncJob@entry=QEMU_ASYNC_JOB_NONE, flags=flags@entry=0) at qemu/qemu_process.c:5854
6 in processMonitorEOFEvent (vm=0x7f08101d47b0, driver=0x7f081018be50) at qemu/qemu_driver.c:4585
7 qemuProcessEventHandler (data=<optimized out>, opaque=0x7f081018be50) at qemu/qemu_driver.c:4629
8 in virThreadPoolWorker (opaque=opaque@entry=0x7f0837c4f820) at util/virthreadpool.c:145
9 in virThreadHelper (data=<optimized out>) at util/virthread.c:206
10 in start_thread () from /lib64/libpthread.so.0
Let's reference CloseCallbacks object in virCloseCallbacksSet and
unreference in virCloseCallbacksUnset.
Signed-off-by: Maxim Nestratov <mnestratov@virtuozzo.com>
2016-06-06 14:42:16 +00:00
|
|
|
if (!ret)
|
|
|
|
virObjectUnref(closeCallbacks);
|
2013-07-15 14:53:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
virCloseCallback
|
|
|
|
virCloseCallbacksGet(virCloseCallbacksPtr closeCallbacks,
|
|
|
|
virDomainObjPtr vm,
|
|
|
|
virConnectPtr conn)
|
|
|
|
{
|
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virDriverCloseDefPtr closeDef;
|
|
|
|
virCloseCallback cb = NULL;
|
|
|
|
|
|
|
|
virUUIDFormat(vm->def->uuid, uuidstr);
|
|
|
|
VIR_DEBUG("vm=%s, uuid=%s, conn=%p",
|
|
|
|
vm->def->name, uuidstr, conn);
|
|
|
|
|
|
|
|
virObjectLock(closeCallbacks);
|
|
|
|
|
|
|
|
closeDef = virHashLookup(closeCallbacks->list, uuidstr);
|
|
|
|
if (closeDef && (!conn || closeDef->conn == conn))
|
|
|
|
cb = closeDef->cb;
|
|
|
|
|
|
|
|
virObjectUnlock(closeCallbacks);
|
|
|
|
|
|
|
|
VIR_DEBUG("cb=%p", cb);
|
|
|
|
return cb;
|
|
|
|
}
|
|
|
|
|
2013-07-15 17:08:11 +00:00
|
|
|
virConnectPtr
|
|
|
|
virCloseCallbacksGetConn(virCloseCallbacksPtr closeCallbacks,
|
|
|
|
virDomainObjPtr vm)
|
|
|
|
{
|
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virDriverCloseDefPtr closeDef;
|
|
|
|
virConnectPtr conn = NULL;
|
|
|
|
|
|
|
|
virUUIDFormat(vm->def->uuid, uuidstr);
|
|
|
|
VIR_DEBUG("vm=%s, uuid=%s", vm->def->name, uuidstr);
|
|
|
|
|
|
|
|
virObjectLock(closeCallbacks);
|
|
|
|
|
|
|
|
closeDef = virHashLookup(closeCallbacks->list, uuidstr);
|
|
|
|
if (closeDef)
|
|
|
|
conn = closeDef->conn;
|
|
|
|
|
|
|
|
virObjectUnlock(closeCallbacks);
|
|
|
|
|
|
|
|
VIR_DEBUG("conn=%p", conn);
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-15 14:53:13 +00:00
|
|
|
typedef struct _virCloseCallbacksListEntry virCloseCallbacksListEntry;
|
|
|
|
typedef virCloseCallbacksListEntry *virCloseCallbacksListEntryPtr;
|
|
|
|
struct _virCloseCallbacksListEntry {
|
|
|
|
unsigned char uuid[VIR_UUID_BUFLEN];
|
|
|
|
virCloseCallback callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _virCloseCallbacksList virCloseCallbacksList;
|
|
|
|
typedef virCloseCallbacksList *virCloseCallbacksListPtr;
|
|
|
|
struct _virCloseCallbacksList {
|
|
|
|
size_t nentries;
|
|
|
|
virCloseCallbacksListEntryPtr entries;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct virCloseCallbacksData {
|
|
|
|
virConnectPtr conn;
|
|
|
|
virCloseCallbacksListPtr list;
|
|
|
|
bool oom;
|
|
|
|
};
|
|
|
|
|
2016-02-12 09:03:50 +00:00
|
|
|
static int
|
2013-07-15 14:53:13 +00:00
|
|
|
virCloseCallbacksGetOne(void *payload,
|
|
|
|
const void *key,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
struct virCloseCallbacksData *data = opaque;
|
|
|
|
virDriverCloseDefPtr closeDef = payload;
|
|
|
|
const char *uuidstr = key;
|
|
|
|
unsigned char uuid[VIR_UUID_BUFLEN];
|
|
|
|
|
|
|
|
if (virUUIDParse(uuidstr, uuid) < 0)
|
2016-02-12 09:03:50 +00:00
|
|
|
return 0;
|
2013-07-15 14:53:13 +00:00
|
|
|
|
|
|
|
VIR_DEBUG("conn=%p, thisconn=%p, uuid=%s, cb=%p",
|
|
|
|
closeDef->conn, data->conn, uuidstr, closeDef->cb);
|
|
|
|
|
|
|
|
if (data->conn != closeDef->conn || !closeDef->cb)
|
2016-02-12 09:03:50 +00:00
|
|
|
return 0;
|
2013-07-15 14:53:13 +00:00
|
|
|
|
|
|
|
if (VIR_EXPAND_N(data->list->entries,
|
|
|
|
data->list->nentries, 1) < 0) {
|
|
|
|
data->oom = true;
|
2016-02-12 09:03:50 +00:00
|
|
|
return 0;
|
2013-07-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(data->list->entries[data->list->nentries - 1].uuid,
|
|
|
|
uuid, VIR_UUID_BUFLEN);
|
|
|
|
data->list->entries[data->list->nentries - 1].callback = closeDef->cb;
|
2016-02-12 09:03:50 +00:00
|
|
|
return 0;
|
2013-07-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static virCloseCallbacksListPtr
|
|
|
|
virCloseCallbacksGetForConn(virCloseCallbacksPtr closeCallbacks,
|
|
|
|
virConnectPtr conn)
|
|
|
|
{
|
|
|
|
virCloseCallbacksListPtr list = NULL;
|
|
|
|
struct virCloseCallbacksData data;
|
|
|
|
|
|
|
|
if (VIR_ALLOC(list) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
data.conn = conn;
|
|
|
|
data.list = list;
|
|
|
|
data.oom = false;
|
|
|
|
|
|
|
|
virHashForEach(closeCallbacks->list, virCloseCallbacksGetOne, &data);
|
|
|
|
|
|
|
|
if (data.oom) {
|
|
|
|
VIR_FREE(list->entries);
|
|
|
|
VIR_FREE(list);
|
|
|
|
virReportOOMError();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
virCloseCallbacksRun(virCloseCallbacksPtr closeCallbacks,
|
|
|
|
virConnectPtr conn,
|
|
|
|
virDomainObjListPtr domains,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
virCloseCallbacksListPtr list;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
VIR_DEBUG("conn=%p", conn);
|
|
|
|
|
|
|
|
/* We must not hold the lock while running the callbacks,
|
|
|
|
* so first we obtain the list of callbacks, then remove
|
|
|
|
* them all from the hash. At that point we can release
|
|
|
|
* the lock and run the callbacks safely. */
|
|
|
|
|
|
|
|
virObjectLock(closeCallbacks);
|
|
|
|
list = virCloseCallbacksGetForConn(closeCallbacks, conn);
|
2017-01-10 06:23:49 +00:00
|
|
|
if (!list) {
|
2017-01-21 17:46:09 +00:00
|
|
|
virObjectUnlock(closeCallbacks);
|
2013-07-15 14:53:13 +00:00
|
|
|
return;
|
2017-01-10 06:23:49 +00:00
|
|
|
}
|
2013-07-15 14:53:13 +00:00
|
|
|
|
|
|
|
for (i = 0; i < list->nentries; i++) {
|
2015-04-08 03:22:39 +00:00
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virUUIDFormat(list->entries[i].uuid, uuidstr);
|
|
|
|
virHashRemoveEntry(closeCallbacks->list, uuidstr);
|
2013-07-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
virObjectUnlock(closeCallbacks);
|
|
|
|
|
|
|
|
for (i = 0; i < list->nentries; i++) {
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
|
2017-01-21 17:59:14 +00:00
|
|
|
/* Grab a ref and lock to the vm */
|
2018-03-09 15:47:46 +00:00
|
|
|
if (!(vm = virDomainObjListFindByUUID(domains,
|
|
|
|
list->entries[i].uuid))) {
|
2013-07-15 14:53:13 +00:00
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virUUIDFormat(list->entries[i].uuid, uuidstr);
|
|
|
|
VIR_DEBUG("No domain object with UUID %s", uuidstr);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-01-21 17:59:14 +00:00
|
|
|
/* Remove the ref taken out during virCloseCallbacksSet since
|
|
|
|
* we're about to call the callback function and we have another
|
|
|
|
* ref anyway (so it cannot be deleted).
|
|
|
|
*
|
2018-03-27 15:39:53 +00:00
|
|
|
* Call the callback function and end the API usage. */
|
2017-01-21 17:59:14 +00:00
|
|
|
virObjectUnref(vm);
|
2018-03-27 15:39:53 +00:00
|
|
|
list->entries[i].callback(vm, conn, opaque);
|
2017-01-21 17:59:14 +00:00
|
|
|
virDomainObjEndAPI(&vm);
|
2013-07-15 14:53:13 +00:00
|
|
|
}
|
|
|
|
VIR_FREE(list->entries);
|
|
|
|
VIR_FREE(list);
|
|
|
|
}
|