Skip to content

Commit 6ae99e9

Browse files
JoshuaWattBastian-Krause
authored andcommitted
qemudriver: Handle Virtio GL change in 6.1.0
Starting with version 6.1.0, the QEMU command line argument to enable virtio with VirGL support was changed from "-vga virtio" to "-device virtio-vgal-gl". To correctly handle this, scrape the QEMU version number from the command output and use it to pass the correct arguments. Signed-off-by: Joshua Watt <[email protected]> [bst: cherry-picked from commit df4f6a9] Signed-off-by: Bastian Krause <[email protected]>
1 parent b1f68a7 commit 6ae99e9

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

labgrid/driver/qemudriver.py

+20-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import shutil
77
import socket
88
import subprocess
9+
import re
910
import tempfile
1011
import time
1112

@@ -108,6 +109,17 @@ def _atexit(self):
108109
self._child.kill()
109110
self._child.communicate(timeout=1)
110111

112+
def get_qemu_version(self, qemu_bin):
113+
p = subprocess.run([qemu_bin, "-version"], stdout=subprocess.PIPE, encoding="utf-8")
114+
if p.returncode != 0:
115+
raise ExecutionError(f"Unable to get QEMU version. QEMU exited with: {p.returncode}")
116+
117+
m = re.search(r'(?P<major>\d+)\.(?P<minor>\d+)\.(?P<micro>\d+)', p.stdout.splitlines()[0])
118+
if m is None:
119+
raise ExecutionError(f"Unable to find QEMU version in: {p.stdout.splitlines()[0]}")
120+
121+
return (int(m.group('major')), int(m.group('minor')), int(m.group('micro')))
122+
111123
def on_activate(self):
112124
self._tempdir = tempfile.mkdtemp(prefix="labgrid-qemu-tmp-")
113125
sockpath = f"{self._tempdir}/serialrw"
@@ -121,6 +133,8 @@ def on_activate(self):
121133
"QEMU Binary Path not configured in tools configuration key")
122134
self._cmd = [qemu_bin]
123135

136+
self._qemu_version = self.get_qemu_version(qemu_bin)
137+
124138
boot_args = []
125139

126140
if self.kernel is not None:
@@ -190,8 +204,12 @@ def on_activate(self):
190204
self._cmd.append("-display")
191205
self._cmd.append("none")
192206
elif self.display == "egl-headless":
193-
self._cmd.append("-vga")
194-
self._cmd.append("virtio")
207+
if self._qemu_version >= (6, 1, 0):
208+
self._cmd.append("-device")
209+
self._cmd.append("virtio-vga-gl")
210+
else:
211+
self._cmd.append("-vga")
212+
self._cmd.append("virtio")
195213
self._cmd.append("-display")
196214
self._cmd.append("egl-headless")
197215
else:

tests/test_qemudriver.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,28 @@ def qemu_mock(mocker):
6060
socket_mock = mocker.patch('socket.socket')
6161
socket_mock.return_value.accept.return_value = mocker.MagicMock(), ''
6262

63+
@pytest.fixture
64+
def qemu_version_mock(mocker):
65+
run_mock = mocker.patch('subprocess.run')
66+
run_mock.return_value.returncode = 0
67+
run_mock.return_value.stdout = "QEMU emulator version 4.2.1"
68+
6369
def test_qemu_instance(qemu_target, qemu_driver):
6470
assert (isinstance(qemu_driver, QEMUDriver))
6571

66-
def test_qemu_activate_deactivate(qemu_target, qemu_driver):
72+
def test_qemu_activate_deactivate(qemu_target, qemu_driver, qemu_version_mock):
6773
qemu_target.activate(qemu_driver)
6874
qemu_target.deactivate(qemu_driver)
6975

70-
def test_qemu_on_off(qemu_target, qemu_driver, qemu_mock):
76+
def test_qemu_on_off(qemu_target, qemu_driver, qemu_mock, qemu_version_mock):
7177
qemu_target.activate(qemu_driver)
7278

7379
qemu_driver.on()
7480
qemu_driver.off()
7581

7682
qemu_target.deactivate(qemu_driver)
7783

78-
def test_qemu_read_write(qemu_target, qemu_driver, qemu_mock):
84+
def test_qemu_read_write(qemu_target, qemu_driver, qemu_mock, qemu_version_mock):
7985
qemu_target.activate(qemu_driver)
8086

8187
qemu_driver.on()

0 commit comments

Comments
 (0)