]> Git Repo - qemu.git/commitdiff
python/aqmp: fix race condition in legacy.py
authorJohn Snow <[email protected]>
Fri, 25 Feb 2022 20:59:47 +0000 (15:59 -0500)
committerJohn Snow <[email protected]>
Mon, 7 Mar 2022 19:36:41 +0000 (14:36 -0500)
legacy.py provides a synchronous model. iotests frequently uses this
paradigm:

 - create QMP client object
 - start QEMU process
 - await connection from QEMU process

In the switch from sync to async QMP, the QMP client object stopped
calling bind() and listen() during the QMP object creation step, which
creates a race condition if the QEMU process dials in too quickly.

With refactoring out of the way, restore the former behavior of calling
bind() and listen() during __init__() to fix this race condition.

Signed-off-by: John Snow <[email protected]>
Acked-by: Kevin Wolf <[email protected]>
Reviewed-by: Daniel P. BerrangĂ© <[email protected]>
Message-id: 20220225205948.3693480[email protected]
[Expanded commit message. --js]
Signed-off-by: John Snow <[email protected]>
python/qemu/aqmp/legacy.py

index dca1e76ed4994959caf542031363b4fafd052fcd..cb50e60564823fdc0aeeb194c5e3d41cfc09b1ed 100644 (file)
@@ -57,7 +57,7 @@ class QEMUMonitorProtocol(qemu.qmp.QEMUMonitorProtocol):
         self._timeout: Optional[float] = None
 
         if server:
-            self._aqmp._bind_hack(address)  # pylint: disable=protected-access
+            self._sync(self._aqmp.start_server(address))
 
     _T = TypeVar('_T')
 
@@ -90,10 +90,7 @@ class QEMUMonitorProtocol(qemu.qmp.QEMUMonitorProtocol):
         self._aqmp.await_greeting = True
         self._aqmp.negotiate = True
 
-        self._sync(
-            self._aqmp.start_server_and_accept(self._address),
-            timeout
-        )
+        self._sync(self._aqmp.accept(), timeout)
 
         ret = self._get_greeting()
         assert ret is not None
This page took 0.030143 seconds and 4 git commands to generate.