]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
nwfilter: hold filter update lock when creating/deleting bindings
authorDaniel P. Berrangé <berrange@redhat.com>
Thu, 24 Feb 2022 18:41:29 +0000 (18:41 +0000)
committerDaniel P. Berrangé <berrange@redhat.com>
Tue, 8 Mar 2022 12:19:39 +0000 (12:19 +0000)
The nwfilter update lock is historically acquired by the virt
drivers in order to achieve serialization between nwfilter
define/undefine, and instantiation/teardown of filters.

When running in the modular daemons, however, the mutex that
the virt drivers are locking is in a completely different
process from the mutex that the nwfilter driver is locking.

Serialization is lost and thus call from the virt driver to
virNWFilterBindingCreateXML can deadlock with a concurrent
call to the virNWFilterDefineXML method.

The solution is surprisingly easy, the update lock simply
needs acquiring in the virNWFilterBindingCreateXML method
and virNWFilterBindingUndefine method instead of in the
virt drivers.

The only semantic difference here is that when a virtual
machine has multiple NICs, the instantiation and teardown
of filters is no longer serialized for the whole VM, but
rather for each NIC. This should not be a problem since
the virt drivers already need to cope with tearing down
a partially created VM where only some of the NICs are
setup.

Reviewed-by: Laine Stump <laine@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
src/nwfilter/nwfilter_driver.c

index 08f138dd79762e8d7ab03e3155d749c7708f5907..3ce8fce7f920dbb40deac82cf4d8035f4164cfdf 100644 (file)
@@ -760,11 +760,14 @@ nwfilterBindingCreateXML(virConnectPtr conn,
     if (!(ret = virGetNWFilterBinding(conn, def->portdevname, def->filter)))
         goto cleanup;
 
+    virNWFilterReadLockFilterUpdates();
     if (virNWFilterInstantiateFilter(driver, def) < 0) {
+        virNWFilterUnlockFilterUpdates();
         virNWFilterBindingObjListRemove(driver->bindings, obj);
         g_clear_pointer(&ret, virObjectUnref);
         goto cleanup;
     }
+    virNWFilterUnlockFilterUpdates();
     virNWFilterBindingObjSave(obj, driver->bindingDir);
 
  cleanup:
@@ -801,7 +804,9 @@ nwfilterBindingDelete(virNWFilterBindingPtr binding)
     if (virNWFilterBindingDeleteEnsureACL(binding->conn, def) < 0)
         goto cleanup;
 
+    virNWFilterReadLockFilterUpdates();
     virNWFilterTeardownFilter(def);
+    virNWFilterUnlockFilterUpdates();
     virNWFilterBindingObjDelete(obj, driver->bindingDir);
     virNWFilterBindingObjListRemove(driver->bindings, obj);