]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
qemu: prevent use of <bios useserial='yes'> on non-x86 arches
authorDaniel P. Berrangé <berrange@redhat.com>
Wed, 8 Sep 2021 16:47:40 +0000 (17:47 +0100)
committerDaniel P. Berrangé <berrange@redhat.com>
Thu, 9 Sep 2021 15:17:30 +0000 (16:17 +0100)
The <bios useserial='yes'> config results in use of the '-device sga'
QEMU options. This in turn causes QEMU go load the sgabios.bin option
ROM, which contains x86 machine code. This cannot work on non-x86
arches, thus we should block the bad config.

Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
src/qemu/qemu_validate.c

index d8f39b6bdd1cf9ea83ab4e59be493a641a12e87f..3789361b57e38c307a56c5680f670f25b39028c5 100644 (file)
@@ -1194,6 +1194,14 @@ qemuValidateDomainDef(const virDomainDef *def,
 
     /* Serial graphics adapter */
     if (def->os.bios.useserial == VIR_TRISTATE_BOOL_YES) {
+        /* -device sga is only sane on x86, since the option ROM it
+         * loads contains x86 machine code.
+         */
+        if (!ARCH_IS_X86(def->os.arch)) {
+            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
+                           _("BIOS serial console only supported on x86 architectures"));
+            return -1;
+        }
         if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SGA)) {
             virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                            _("qemu does not support SGA"));