2021-02-04 11:52:32 +01:00
|
|
|
# virtio-gpu tests
|
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
# later. See the COPYING file in the top-level directory.
|
|
|
|
|
|
|
|
|
|
|
|
from avocado_qemu import BUILD_DIR
|
2021-09-27 18:14:33 +02:00
|
|
|
from avocado_qemu import QemuSystemTest
|
2021-02-04 11:52:32 +01:00
|
|
|
from avocado_qemu import wait_for_console_pattern
|
|
|
|
from avocado_qemu import exec_command_and_wait_for_pattern
|
|
|
|
from avocado_qemu import is_readable_executable_file
|
|
|
|
|
2021-05-27 23:16:53 +02:00
|
|
|
from qemu.utils import kvm_available
|
2021-02-04 11:52:32 +01:00
|
|
|
|
|
|
|
import os
|
|
|
|
import socket
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
|
|
|
|
def pick_default_vug_bin():
|
|
|
|
relative_path = "./contrib/vhost-user-gpu/vhost-user-gpu"
|
|
|
|
if is_readable_executable_file(relative_path):
|
|
|
|
return relative_path
|
|
|
|
|
|
|
|
bld_dir_path = os.path.join(BUILD_DIR, relative_path)
|
|
|
|
if is_readable_executable_file(bld_dir_path):
|
|
|
|
return bld_dir_path
|
|
|
|
|
|
|
|
|
2021-09-27 18:14:33 +02:00
|
|
|
class VirtioGPUx86(QemuSystemTest):
|
2021-02-04 11:52:32 +01:00
|
|
|
"""
|
|
|
|
:avocado: tags=virtio-gpu
|
2021-07-14 19:40:47 +02:00
|
|
|
:avocado: tags=arch:x86_64
|
2021-07-14 19:40:48 +02:00
|
|
|
:avocado: tags=cpu:host
|
2021-02-04 11:52:32 +01:00
|
|
|
"""
|
|
|
|
|
2021-07-14 19:40:49 +02:00
|
|
|
KERNEL_COMMAND_LINE = "printk.time=0 console=ttyS0 rdinit=/bin/bash"
|
2021-02-04 11:52:32 +01:00
|
|
|
KERNEL_URL = (
|
|
|
|
"https://archives.fedoraproject.org/pub/fedora"
|
|
|
|
"/linux/releases/33/Everything/x86_64/os/images"
|
|
|
|
"/pxeboot/vmlinuz"
|
|
|
|
)
|
2021-07-14 19:40:51 +02:00
|
|
|
KERNEL_HASH = '1433cfe3f2ffaa44de4ecfb57ec25dc2399cdecf'
|
2021-02-04 11:52:32 +01:00
|
|
|
INITRD_URL = (
|
|
|
|
"https://archives.fedoraproject.org/pub/fedora"
|
|
|
|
"/linux/releases/33/Everything/x86_64/os/images"
|
|
|
|
"/pxeboot/initrd.img"
|
|
|
|
)
|
2021-07-14 19:40:51 +02:00
|
|
|
INITRD_HASH = 'c828d68a027b53e5220536585efe03412332c2d9'
|
2021-02-04 11:52:32 +01:00
|
|
|
|
|
|
|
def wait_for_console_pattern(self, success_message, vm=None):
|
|
|
|
wait_for_console_pattern(
|
|
|
|
self,
|
|
|
|
success_message,
|
|
|
|
failure_message="Kernel panic - not syncing",
|
|
|
|
vm=vm,
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_virtio_vga_virgl(self):
|
|
|
|
"""
|
2021-07-14 19:40:50 +02:00
|
|
|
:avocado: tags=device:virtio-vga-gl
|
2021-02-04 11:52:32 +01:00
|
|
|
"""
|
|
|
|
# FIXME: should check presence of virtio, virgl etc
|
2021-07-14 19:40:46 +02:00
|
|
|
self.require_accelerator('kvm')
|
2021-02-04 11:52:32 +01:00
|
|
|
|
2021-07-14 19:40:51 +02:00
|
|
|
kernel_path = self.fetch_asset(self.KERNEL_URL, self.KERNEL_HASH)
|
|
|
|
initrd_path = self.fetch_asset(self.INITRD_URL, self.INITRD_HASH)
|
2021-02-04 11:52:32 +01:00
|
|
|
|
|
|
|
self.vm.set_console()
|
|
|
|
self.vm.add_args("-m", "2G")
|
|
|
|
self.vm.add_args("-machine", "pc,accel=kvm")
|
2021-07-14 19:40:50 +02:00
|
|
|
self.vm.add_args("-device", "virtio-vga-gl")
|
2021-02-04 11:52:32 +01:00
|
|
|
self.vm.add_args("-display", "egl-headless")
|
|
|
|
self.vm.add_args(
|
|
|
|
"-kernel",
|
|
|
|
kernel_path,
|
|
|
|
"-initrd",
|
|
|
|
initrd_path,
|
|
|
|
"-append",
|
2021-07-14 19:40:49 +02:00
|
|
|
self.KERNEL_COMMAND_LINE,
|
2021-02-04 11:52:32 +01:00
|
|
|
)
|
2021-02-22 11:14:52 +01:00
|
|
|
try:
|
|
|
|
self.vm.launch()
|
|
|
|
except:
|
|
|
|
# TODO: probably fails because we are missing the VirGL features
|
|
|
|
self.cancel("VirGL not enabled?")
|
|
|
|
|
2021-02-04 11:52:32 +01:00
|
|
|
self.wait_for_console_pattern("as init process")
|
|
|
|
exec_command_and_wait_for_pattern(
|
|
|
|
self, "/usr/sbin/modprobe virtio_gpu", ""
|
|
|
|
)
|
|
|
|
self.wait_for_console_pattern("features: +virgl +edid")
|
|
|
|
|
|
|
|
def test_vhost_user_vga_virgl(self):
|
|
|
|
"""
|
|
|
|
:avocado: tags=device:vhost-user-vga
|
|
|
|
"""
|
|
|
|
# FIXME: should check presence of vhost-user-gpu, virgl, memfd etc
|
2021-07-14 19:40:46 +02:00
|
|
|
self.require_accelerator('kvm')
|
2021-02-04 11:52:32 +01:00
|
|
|
|
|
|
|
vug = pick_default_vug_bin()
|
|
|
|
if not vug:
|
|
|
|
self.cancel("Could not find vhost-user-gpu")
|
|
|
|
|
2021-07-14 19:40:51 +02:00
|
|
|
kernel_path = self.fetch_asset(self.KERNEL_URL, self.KERNEL_HASH)
|
|
|
|
initrd_path = self.fetch_asset(self.INITRD_URL, self.INITRD_HASH)
|
2021-02-04 11:52:32 +01:00
|
|
|
|
|
|
|
# Create socketpair to connect proxy and remote processes
|
|
|
|
qemu_sock, vug_sock = socket.socketpair(
|
|
|
|
socket.AF_UNIX, socket.SOCK_STREAM
|
|
|
|
)
|
|
|
|
os.set_inheritable(qemu_sock.fileno(), True)
|
|
|
|
os.set_inheritable(vug_sock.fileno(), True)
|
|
|
|
|
|
|
|
self._vug_log_path = os.path.join(
|
2021-02-11 23:01:46 +01:00
|
|
|
self.logdir, "vhost-user-gpu.log"
|
2021-02-04 11:52:32 +01:00
|
|
|
)
|
|
|
|
self._vug_log_file = open(self._vug_log_path, "wb")
|
2021-02-11 23:01:46 +01:00
|
|
|
self.log.info('Complete vhost-user-gpu.log file can be '
|
|
|
|
'found at %s', self._vug_log_path)
|
2021-02-04 11:52:32 +01:00
|
|
|
|
|
|
|
vugp = subprocess.Popen(
|
|
|
|
[vug, "--virgl", "--fd=%d" % vug_sock.fileno()],
|
|
|
|
stdin=subprocess.DEVNULL,
|
|
|
|
stdout=self._vug_log_file,
|
|
|
|
stderr=subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
close_fds=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.vm.set_console()
|
|
|
|
self.vm.add_args("-m", "2G")
|
|
|
|
self.vm.add_args("-object", "memory-backend-memfd,id=mem,size=2G")
|
|
|
|
self.vm.add_args("-machine", "pc,memory-backend=mem,accel=kvm")
|
|
|
|
self.vm.add_args("-chardev", "socket,id=vug,fd=%d" % qemu_sock.fileno())
|
|
|
|
self.vm.add_args("-device", "vhost-user-vga,chardev=vug")
|
|
|
|
self.vm.add_args("-display", "egl-headless")
|
|
|
|
self.vm.add_args(
|
|
|
|
"-kernel",
|
|
|
|
kernel_path,
|
|
|
|
"-initrd",
|
|
|
|
initrd_path,
|
|
|
|
"-append",
|
2021-07-14 19:40:49 +02:00
|
|
|
self.KERNEL_COMMAND_LINE,
|
2021-02-04 11:52:32 +01:00
|
|
|
)
|
|
|
|
self.vm.launch()
|
|
|
|
self.wait_for_console_pattern("as init process")
|
|
|
|
exec_command_and_wait_for_pattern(
|
|
|
|
self, "/usr/sbin/modprobe virtio_gpu", ""
|
|
|
|
)
|
|
|
|
self.wait_for_console_pattern("features: +virgl -edid")
|
|
|
|
self.vm.shutdown()
|
|
|
|
qemu_sock.close()
|
|
|
|
vugp.terminate()
|
|
|
|
vugp.wait()
|