mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-30 01:43:23 +00:00
Add several missing vir*Free calls in libvirtd's remote code
Justin Clift reported a problem with adding virStoragePoolIsPersistent to virsh's pool-info command, resulting in a strange problem. Here's an example: virsh # pool-create-as images_dir3 dir - - - - "/home/images2" Pool images_dir3 created virsh # pool-info images_dir3 Name: images_dir3 UUID: 90301885-94eb-4ca7-14c2-f30b25a29a36 State: running Capacity: 395.20 GB Allocation: 30.88 GB Available: 364.33 GB virsh # pool-destroy images_dir3 Pool images_dir3 destroyed At this point the images_dir3 pool should be gone (because it was transient) and we should be able to create a new pool with the same name: virsh # pool-create-as images_dir3 dir - - - - "/home/images2" Pool images_dir3 created virsh # pool-info images_dir3 Name: images_dir3 UUID: 90301885-94eb-4ca7-14c2-f30b25a29a36 error: Storage pool not found The new pool got the same UUID as the first one, but we didn't specify one. libvirt should have picked a random UUID, but it didn't. It turned out that virStoragePoolIsPersistent leaks a reference to the storage pool object (actually remoteDispatchStoragePoolIsPersistent does). As a result, pool-destroy doesn't remove the virStoragePool for the "images_dir3" pool from the virConnectPtr's storagePools hash on libvirtd's side. Then the second pool-create-as get's the stale virStoragePool object associated with the "images_dir3" name. But this object has the old UUID. This commit ensures that all get_nonnull_* and make_nonnull_* calls for libvirt objects are matched properly with vir*Free calls. This fixes the reference leaks and the reported problem. All remoteDispatch*IsActive and remoteDispatch*IsPersistent functions were affected. But also remoteDispatchDomainMigrateFinish2 was affected in the success path. I wonder why that didn't surface earlier. Probably because domainMigrateFinish2 is executed on the destination host and in the common case this connection is opened especially for the migration and gets closed after the migration is done. So there was no chance to run into a problem because of the leaked reference.
This commit is contained in:
parent
02d57c2bce
commit
08d42b52f1
@ -979,6 +979,7 @@ remoteDispatchDomainMemoryStats (struct qemud_server *server ATTRIBUTE_UNUSED,
|
|||||||
|
|
||||||
/* Allocate stats array for making dispatch call */
|
/* Allocate stats array for making dispatch call */
|
||||||
if (VIR_ALLOC_N(stats, args->maxStats) < 0) {
|
if (VIR_ALLOC_N(stats, args->maxStats) < 0) {
|
||||||
|
virDomainFree (dom);
|
||||||
remoteDispatchOOMError(rerr);
|
remoteDispatchOOMError(rerr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@ -1913,6 +1914,7 @@ remoteDispatchDomainMigrateFinish2 (struct qemud_server *server ATTRIBUTE_UNUSED
|
|||||||
}
|
}
|
||||||
|
|
||||||
make_nonnull_domain (&ret->ddom, ddom);
|
make_nonnull_domain (&ret->ddom, ddom);
|
||||||
|
virDomainFree (ddom);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -5598,10 +5600,12 @@ static int remoteDispatchDomainIsActive(struct qemud_server *server ATTRIBUTE_UN
|
|||||||
ret->active = virDomainIsActive(domain);
|
ret->active = virDomainIsActive(domain);
|
||||||
|
|
||||||
if (ret->active < 0) {
|
if (ret->active < 0) {
|
||||||
|
virDomainFree(domain);
|
||||||
remoteDispatchConnError(err, conn);
|
remoteDispatchConnError(err, conn);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virDomainFree(domain);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5624,10 +5628,12 @@ static int remoteDispatchDomainIsPersistent(struct qemud_server *server ATTRIBUT
|
|||||||
ret->persistent = virDomainIsPersistent(domain);
|
ret->persistent = virDomainIsPersistent(domain);
|
||||||
|
|
||||||
if (ret->persistent < 0) {
|
if (ret->persistent < 0) {
|
||||||
|
virDomainFree(domain);
|
||||||
remoteDispatchConnError(err, conn);
|
remoteDispatchConnError(err, conn);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virDomainFree(domain);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5650,10 +5656,12 @@ static int remoteDispatchInterfaceIsActive(struct qemud_server *server ATTRIBUTE
|
|||||||
ret->active = virInterfaceIsActive(iface);
|
ret->active = virInterfaceIsActive(iface);
|
||||||
|
|
||||||
if (ret->active < 0) {
|
if (ret->active < 0) {
|
||||||
|
virInterfaceFree(iface);
|
||||||
remoteDispatchConnError(err, conn);
|
remoteDispatchConnError(err, conn);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virInterfaceFree(iface);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5676,10 +5684,12 @@ static int remoteDispatchNetworkIsActive(struct qemud_server *server ATTRIBUTE_U
|
|||||||
ret->active = virNetworkIsActive(network);
|
ret->active = virNetworkIsActive(network);
|
||||||
|
|
||||||
if (ret->active < 0) {
|
if (ret->active < 0) {
|
||||||
|
virNetworkFree(network);
|
||||||
remoteDispatchConnError(err, conn);
|
remoteDispatchConnError(err, conn);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virNetworkFree(network);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5702,10 +5712,12 @@ static int remoteDispatchNetworkIsPersistent(struct qemud_server *server ATTRIBU
|
|||||||
ret->persistent = virNetworkIsPersistent(network);
|
ret->persistent = virNetworkIsPersistent(network);
|
||||||
|
|
||||||
if (ret->persistent < 0) {
|
if (ret->persistent < 0) {
|
||||||
|
virNetworkFree(network);
|
||||||
remoteDispatchConnError(err, conn);
|
remoteDispatchConnError(err, conn);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virNetworkFree(network);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5728,10 +5740,12 @@ static int remoteDispatchStoragePoolIsActive(struct qemud_server *server ATTRIBU
|
|||||||
ret->active = virStoragePoolIsActive(pool);
|
ret->active = virStoragePoolIsActive(pool);
|
||||||
|
|
||||||
if (ret->active < 0) {
|
if (ret->active < 0) {
|
||||||
|
virStoragePoolFree(pool);
|
||||||
remoteDispatchConnError(err, conn);
|
remoteDispatchConnError(err, conn);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virStoragePoolFree(pool);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5754,10 +5768,12 @@ static int remoteDispatchStoragePoolIsPersistent(struct qemud_server *server ATT
|
|||||||
ret->persistent = virStoragePoolIsPersistent(pool);
|
ret->persistent = virStoragePoolIsPersistent(pool);
|
||||||
|
|
||||||
if (ret->persistent < 0) {
|
if (ret->persistent < 0) {
|
||||||
|
virStoragePoolFree(pool);
|
||||||
remoteDispatchConnError(err, conn);
|
remoteDispatchConnError(err, conn);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virStoragePoolFree(pool);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user