]> xenbits.xensource.com Git - xen.git/commitdiff
libxl: disallow enabling PoD and ALTP2M at the same time
authorWei Liu <wei.liu2@citrix.com>
Wed, 2 Nov 2016 14:10:37 +0000 (14:10 +0000)
committerWei Liu <wei.liu2@citrix.com>
Thu, 3 Nov 2016 10:41:40 +0000 (10:41 +0000)
That combination would cause Xen to crash.

Note that although this is a security issue, is not XSA-worthy because
ALTP2M is experimental.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Release-acked-by: Wei Liu <wei.liu2@citrix.com>
tools/libxl/libxl_create.c

index d986cd277bd9ee33e75569dfe5b1b0cd5f16642c..47c297b4bf1b899995dea9badce4c80ec3d29288 100644 (file)
@@ -885,6 +885,13 @@ static void initiate_domain_create(libxl__egc *egc,
         goto error_out;
     }
 
+    if (d_config->c_info.type == LIBXL_DOMAIN_TYPE_HVM &&
+        libxl_defbool_val(d_config->b_info.u.hvm.altp2m) &&
+        pod_enabled) {
+        LOG(ERROR, "Cannot enable PoD and ALTP2M at the same time");
+        goto error_out;
+    }
+
     /* PV vNUMA is not yet supported because there is an issue with
      * cpuid handling.
      */