mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-30 01:43:23 +00:00
5f354d5cc0
Signed-off-by: Jiri Denemark <jdenemar@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
1222 lines
35 KiB
C
1222 lines
35 KiB
C
/*
|
|
* cpu_conf.c: CPU XML handling
|
|
*
|
|
* Copyright (C) 2009-2015 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "configmake.h"
|
|
#include "virerror.h"
|
|
#include "viralloc.h"
|
|
#include "virbuffer.h"
|
|
#include "virfile.h"
|
|
#include "cpu_conf.h"
|
|
#include "virlog.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_CPU
|
|
|
|
VIR_LOG_INIT("conf.cpu_conf");
|
|
|
|
VIR_ENUM_IMPL(virCPU,
|
|
VIR_CPU_TYPE_LAST,
|
|
"host", "guest", "auto",
|
|
);
|
|
|
|
VIR_ENUM_IMPL(virCPUMode,
|
|
VIR_CPU_MODE_LAST,
|
|
"custom",
|
|
"host-model",
|
|
"host-passthrough",
|
|
"maximum",
|
|
);
|
|
|
|
VIR_ENUM_IMPL(virCPUMatch,
|
|
VIR_CPU_MATCH_LAST,
|
|
"exact",
|
|
"minimum",
|
|
"strict",
|
|
);
|
|
|
|
VIR_ENUM_IMPL(virCPUCheck,
|
|
VIR_CPU_CHECK_LAST,
|
|
"default",
|
|
"none",
|
|
"partial",
|
|
"full",
|
|
);
|
|
|
|
VIR_ENUM_IMPL(virCPUFallback,
|
|
VIR_CPU_FALLBACK_LAST,
|
|
"allow",
|
|
"forbid",
|
|
);
|
|
|
|
VIR_ENUM_IMPL(virCPUFeaturePolicy,
|
|
VIR_CPU_FEATURE_LAST,
|
|
"force",
|
|
"require",
|
|
"optional",
|
|
"disable",
|
|
"forbid",
|
|
);
|
|
|
|
VIR_ENUM_IMPL(virCPUCacheMode,
|
|
VIR_CPU_CACHE_MODE_LAST,
|
|
"emulate",
|
|
"passthrough",
|
|
"disable",
|
|
);
|
|
|
|
VIR_ENUM_IMPL(virCPUMaxPhysAddrMode,
|
|
VIR_CPU_MAX_PHYS_ADDR_MODE_LAST,
|
|
"emulate",
|
|
"passthrough",
|
|
);
|
|
|
|
|
|
virCPUDef *virCPUDefNew(void)
|
|
{
|
|
virCPUDef *cpu = g_new0(virCPUDef, 1);
|
|
cpu->refs = 1;
|
|
return cpu;
|
|
}
|
|
|
|
void
|
|
virCPUDefFreeFeatures(virCPUDef *def)
|
|
{
|
|
size_t i;
|
|
|
|
for (i = 0; i < def->nfeatures; i++)
|
|
VIR_FREE(def->features[i].name);
|
|
VIR_FREE(def->features);
|
|
|
|
def->nfeatures = def->nfeatures_max = 0;
|
|
}
|
|
|
|
|
|
void ATTRIBUTE_NONNULL(1)
|
|
virCPUDefFreeModel(virCPUDef *def)
|
|
{
|
|
VIR_FREE(def->model);
|
|
VIR_FREE(def->vendor);
|
|
VIR_FREE(def->vendor_id);
|
|
virCPUDefFreeFeatures(def);
|
|
}
|
|
|
|
void
|
|
virCPUDefRef(virCPUDef *def)
|
|
{
|
|
g_atomic_int_inc(&def->refs);
|
|
}
|
|
|
|
void
|
|
virCPUDefFree(virCPUDef *def)
|
|
{
|
|
if (!def)
|
|
return;
|
|
|
|
if (g_atomic_int_dec_and_test(&def->refs)) {
|
|
virCPUDefFreeModel(def);
|
|
g_free(def->cache);
|
|
g_free(def->addr);
|
|
g_free(def->tsc);
|
|
g_free(def);
|
|
}
|
|
}
|
|
|
|
|
|
void ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
|
virCPUDefCopyModel(virCPUDef *dst,
|
|
const virCPUDef *src,
|
|
bool resetPolicy)
|
|
{
|
|
virCPUDefCopyModelFilter(dst, src, resetPolicy, NULL, NULL);
|
|
}
|
|
|
|
|
|
void
|
|
virCPUDefCopyModelFilter(virCPUDef *dst,
|
|
const virCPUDef *src,
|
|
bool resetPolicy,
|
|
virCPUDefFeatureFilter filter,
|
|
void *opaque)
|
|
{
|
|
size_t i;
|
|
size_t n;
|
|
|
|
dst->features = g_new0(virCPUFeatureDef, src->nfeatures);
|
|
dst->model = g_strdup(src->model);
|
|
dst->vendor = g_strdup(src->vendor);
|
|
dst->vendor_id = g_strdup(src->vendor_id);
|
|
dst->microcodeVersion = src->microcodeVersion;
|
|
dst->nfeatures_max = src->nfeatures;
|
|
dst->nfeatures = 0;
|
|
|
|
for (i = 0; i < src->nfeatures; i++) {
|
|
if (filter && !filter(src->features[i].name, src->features[i].policy, opaque))
|
|
continue;
|
|
|
|
n = dst->nfeatures++;
|
|
if (dst->type != src->type && resetPolicy) {
|
|
if (dst->type == VIR_CPU_TYPE_HOST)
|
|
dst->features[n].policy = -1;
|
|
else if (src->features[i].policy == -1)
|
|
dst->features[n].policy = VIR_CPU_FEATURE_REQUIRE;
|
|
else
|
|
dst->features[n].policy = src->features[i].policy;
|
|
} else {
|
|
dst->features[n].policy = src->features[i].policy;
|
|
}
|
|
|
|
dst->features[n].name = g_strdup(src->features[i].name);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* virCPUDefStealModel:
|
|
*
|
|
* Move CPU model related parts virCPUDef from @src to @dst. If @keepVendor
|
|
* is true, the function keeps the original vendor/vendor_id in @dst rather
|
|
* than overwriting it with the values from @src.
|
|
*/
|
|
void
|
|
virCPUDefStealModel(virCPUDef *dst,
|
|
virCPUDef *src,
|
|
bool keepVendor)
|
|
{
|
|
char *vendor = NULL;
|
|
char *vendor_id = NULL;
|
|
|
|
if (keepVendor) {
|
|
vendor = g_steal_pointer(&dst->vendor);
|
|
vendor_id = g_steal_pointer(&dst->vendor_id);
|
|
}
|
|
|
|
virCPUDefFreeModel(dst);
|
|
|
|
dst->model = g_steal_pointer(&src->model);
|
|
dst->features = g_steal_pointer(&src->features);
|
|
dst->microcodeVersion = src->microcodeVersion;
|
|
dst->nfeatures_max = src->nfeatures_max;
|
|
src->nfeatures_max = 0;
|
|
dst->nfeatures = src->nfeatures;
|
|
src->nfeatures = 0;
|
|
|
|
if (keepVendor) {
|
|
dst->vendor = vendor;
|
|
dst->vendor_id = vendor_id;
|
|
} else {
|
|
dst->vendor = g_steal_pointer(&src->vendor);
|
|
dst->vendor_id = g_steal_pointer(&src->vendor_id);
|
|
}
|
|
}
|
|
|
|
|
|
virCPUDef *
|
|
virCPUDefCopyWithoutModel(const virCPUDef *cpu)
|
|
{
|
|
g_autoptr(virCPUDef) copy = NULL;
|
|
|
|
copy = virCPUDefNew();
|
|
copy->type = cpu->type;
|
|
copy->mode = cpu->mode;
|
|
copy->match = cpu->match;
|
|
copy->check = cpu->check;
|
|
copy->fallback = cpu->fallback;
|
|
copy->sockets = cpu->sockets;
|
|
copy->dies = cpu->dies;
|
|
copy->cores = cpu->cores;
|
|
copy->threads = cpu->threads;
|
|
copy->arch = cpu->arch;
|
|
copy->migratable = cpu->migratable;
|
|
copy->sigFamily = cpu->sigFamily;
|
|
copy->sigModel = cpu->sigModel;
|
|
copy->sigStepping = cpu->sigStepping;
|
|
|
|
if (cpu->cache) {
|
|
copy->cache = g_new0(virCPUCacheDef, 1);
|
|
*copy->cache = *cpu->cache;
|
|
}
|
|
|
|
if (cpu->addr) {
|
|
copy->addr = g_new0(virCPUMaxPhysAddrDef, 1);
|
|
*copy->addr = *cpu->addr;
|
|
}
|
|
|
|
if (cpu->tsc) {
|
|
copy->tsc = g_new0(virHostCPUTscInfo, 1);
|
|
*copy->tsc = *cpu->tsc;
|
|
}
|
|
|
|
return g_steal_pointer(©);
|
|
}
|
|
|
|
|
|
virCPUDef *
|
|
virCPUDefCopy(const virCPUDef *cpu)
|
|
{
|
|
g_autoptr(virCPUDef) copy = virCPUDefCopyWithoutModel(cpu);
|
|
|
|
virCPUDefCopyModel(copy, cpu, false);
|
|
|
|
return g_steal_pointer(©);
|
|
}
|
|
|
|
|
|
int
|
|
virCPUDefParseXMLString(const char *xml,
|
|
virCPUType type,
|
|
virCPUDef **cpu,
|
|
bool validateXML)
|
|
{
|
|
g_autoptr(xmlDoc) doc = NULL;
|
|
g_autoptr(xmlXPathContext) ctxt = NULL;
|
|
|
|
if (!xml) {
|
|
virReportError(VIR_ERR_INVALID_ARG, "%s", _("missing CPU definition"));
|
|
return -1;
|
|
}
|
|
|
|
if (!(doc = virXMLParseStringCtxt(xml, _("(CPU_definition)"), &ctxt)))
|
|
return -1;
|
|
|
|
if (virCPUDefParseXML(ctxt, NULL, type, cpu, validateXML) < 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
static int
|
|
virCPUDefParseXMLCache(virCPUDef *def,
|
|
xmlNodePtr node)
|
|
{
|
|
int rc;
|
|
|
|
def->cache = g_new0(virCPUCacheDef, 1);
|
|
|
|
if ((rc = virXMLPropInt(node, "level", 10, VIR_XML_PROP_NONNEGATIVE,
|
|
&def->cache->level, -1)) < 0)
|
|
return -1;
|
|
|
|
if (rc == 1) {
|
|
if (def->cache->level < 1 || def->cache->level > 3) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("invalid CPU cache level, must be in range [1,3]"));
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if (virXMLPropEnum(node, "mode", virCPUCacheModeTypeFromString,
|
|
VIR_XML_PROP_REQUIRED, &def->cache->mode) < 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*
|
|
* Parses CPU definition XML from a node pointed to by @xpath. If @xpath is
|
|
* NULL, the current node of @ctxt is used (i.e., it is a shortcut to ".").
|
|
*
|
|
* Missing <cpu> element in the XML document is not considered an error unless
|
|
* @xpath is NULL in which case the function expects it was provided with a
|
|
* valid <cpu> element already. In other words, the function returns success
|
|
* and sets @cpu to NULL if @xpath is not NULL and the node pointed to by
|
|
* @xpath is not found.
|
|
*
|
|
* Returns 0 on success, -1 on error.
|
|
*/
|
|
int
|
|
virCPUDefParseXML(xmlXPathContextPtr ctxt,
|
|
const char *xpath,
|
|
virCPUType type,
|
|
virCPUDef **cpu,
|
|
bool validateXML)
|
|
{
|
|
g_autoptr(virCPUDef) def = NULL;
|
|
g_autofree xmlNodePtr *nodes = NULL;
|
|
xmlNodePtr topology = NULL;
|
|
xmlNodePtr maxphysaddrNode = NULL;
|
|
g_autofree xmlNodePtr *cacheNodes = NULL;
|
|
ssize_t ncacheNodes = 0;
|
|
VIR_XPATH_NODE_AUTORESTORE(ctxt)
|
|
int n;
|
|
int rv;
|
|
size_t i;
|
|
g_autofree char *cpuMode = NULL;
|
|
g_autofree char *fallback = NULL;
|
|
g_autofree char *vendor_id = NULL;
|
|
g_autofree virHostCPUTscInfo *tsc = NULL;
|
|
|
|
*cpu = NULL;
|
|
|
|
if (xpath && !(ctxt->node = virXPathNode(xpath, ctxt)))
|
|
return 0;
|
|
|
|
if (!virXMLNodeNameEqual(ctxt->node, "cpu")) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("XML does not contain expected 'cpu' element"));
|
|
return -1;
|
|
}
|
|
|
|
if (validateXML) {
|
|
g_autofree char *schemafile = NULL;
|
|
|
|
if (!(schemafile = virFileFindResource("cpu.rng",
|
|
abs_top_srcdir "/src/conf/schemas",
|
|
PKGDATADIR "/schemas")))
|
|
return -1;
|
|
|
|
if (virXMLValidateNodeAgainstSchema(schemafile, ctxt->node) < 0)
|
|
return -1;
|
|
}
|
|
|
|
def = virCPUDefNew();
|
|
|
|
if (type == VIR_CPU_TYPE_AUTO) {
|
|
if (virXPathBoolean("boolean(./arch)", ctxt)) {
|
|
if (virXPathBoolean("boolean(./@match)", ctxt)) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("'arch' element cannot be used inside 'cpu'"
|
|
" element with 'match' attribute'"));
|
|
return -1;
|
|
}
|
|
def->type = VIR_CPU_TYPE_HOST;
|
|
} else {
|
|
def->type = VIR_CPU_TYPE_GUEST;
|
|
}
|
|
} else {
|
|
def->type = type;
|
|
}
|
|
|
|
if ((cpuMode = virXMLPropString(ctxt->node, "mode"))) {
|
|
if (def->type == VIR_CPU_TYPE_HOST) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Attribute mode is only allowed for guest CPU"));
|
|
return -1;
|
|
} else {
|
|
def->mode = virCPUModeTypeFromString(cpuMode);
|
|
|
|
if (def->mode < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Invalid mode attribute '%1$s'"),
|
|
cpuMode);
|
|
return -1;
|
|
}
|
|
}
|
|
} else {
|
|
if (def->type == VIR_CPU_TYPE_HOST)
|
|
def->mode = -1;
|
|
else
|
|
def->mode = VIR_CPU_MODE_CUSTOM;
|
|
}
|
|
|
|
if ((rv = virXMLPropTristateSwitch(ctxt->node, "migratable",
|
|
VIR_XML_PROP_NONE,
|
|
&def->migratable)) < 0) {
|
|
return -1;
|
|
} else if (rv > 0 &&
|
|
def->mode != VIR_CPU_MODE_HOST_PASSTHROUGH &&
|
|
def->mode != VIR_CPU_MODE_MAXIMUM) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Attribute migratable is only allowed for "
|
|
"'host-passthrough' / 'maximum' CPU mode"));
|
|
return -1;
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST) {
|
|
if (virXMLPropEnum(ctxt->node, "match",
|
|
virCPUMatchTypeFromString,
|
|
VIR_XML_PROP_NONE,
|
|
&def->match) < 0)
|
|
return -1;
|
|
|
|
if (virXMLPropEnum(ctxt->node, "check", virCPUCheckTypeFromString,
|
|
VIR_XML_PROP_NONE, &def->check) < 0)
|
|
return -1;
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_HOST) {
|
|
g_autofree char *arch = virXPathString("string(./arch[1])", ctxt);
|
|
xmlNodePtr counter_node = NULL;
|
|
xmlNodePtr signature_node = NULL;
|
|
|
|
if (!arch) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing CPU architecture"));
|
|
return -1;
|
|
}
|
|
if ((def->arch = virArchFromString(arch)) == VIR_ARCH_NONE) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Unknown architecture %1$s"), arch);
|
|
return -1;
|
|
}
|
|
|
|
if (virXPathBoolean("boolean(./microcode[1]/@version)", ctxt) > 0 &&
|
|
virXPathUInt("string(./microcode[1]/@version)", ctxt,
|
|
&def->microcodeVersion) < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("invalid microcode version"));
|
|
return -1;
|
|
}
|
|
|
|
if ((signature_node = virXPathNode("./signature[1]", ctxt))) {
|
|
if (virXMLPropUInt(signature_node, "family", 10,
|
|
VIR_XML_PROP_REQUIRED | VIR_XML_PROP_NONZERO,
|
|
&def->sigFamily) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (virXMLPropUInt(signature_node, "model", 10,
|
|
VIR_XML_PROP_REQUIRED,
|
|
&def->sigModel) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (virXMLPropUInt(signature_node, "stepping", 10,
|
|
VIR_XML_PROP_REQUIRED,
|
|
&def->sigStepping) < 0) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if ((counter_node = virXPathNode("./counter[@name='tsc']", ctxt))) {
|
|
tsc = g_new0(virHostCPUTscInfo, 1);
|
|
|
|
if (virXMLPropULongLong(counter_node, "frequency", 10,
|
|
VIR_XML_PROP_REQUIRED,
|
|
&tsc->frequency) < 0)
|
|
return -1;
|
|
|
|
if (virXMLPropTristateBool(counter_node, "scaling",
|
|
VIR_XML_PROP_NONE,
|
|
&tsc->scaling) < 0)
|
|
return -1;
|
|
|
|
def->tsc = g_steal_pointer(&tsc);
|
|
}
|
|
}
|
|
|
|
if (!(def->model = virXPathString("string(./model[1])", ctxt)) &&
|
|
def->type == VIR_CPU_TYPE_HOST) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing CPU model name"));
|
|
return -1;
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST &&
|
|
def->mode != VIR_CPU_MODE_HOST_PASSTHROUGH &&
|
|
def->mode != VIR_CPU_MODE_MAXIMUM) {
|
|
|
|
if ((fallback = virXPathString("string(./model[1]/@fallback)", ctxt))) {
|
|
if ((def->fallback = virCPUFallbackTypeFromString(fallback)) < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Invalid fallback attribute"));
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if ((vendor_id = virXPathString("string(./model[1]/@vendor_id)",
|
|
ctxt))) {
|
|
if (strlen(vendor_id) != VIR_CPU_VENDOR_ID_LENGTH) {
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("vendor_id must be exactly %1$d characters long"),
|
|
VIR_CPU_VENDOR_ID_LENGTH);
|
|
return -1;
|
|
}
|
|
|
|
/* ensure that the string can be passed to qemu */
|
|
if (strchr(vendor_id, ',')) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("vendor id is invalid"));
|
|
return -1;
|
|
}
|
|
|
|
def->vendor_id = g_steal_pointer(&vendor_id);
|
|
}
|
|
}
|
|
|
|
def->vendor = virXPathString("string(./vendor[1])", ctxt);
|
|
if (def->vendor && !def->model) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("CPU vendor specified without CPU model"));
|
|
return -1;
|
|
}
|
|
|
|
if ((topology = virXPathNode("./topology[1]", ctxt))) {
|
|
|
|
if (virXMLPropUInt(topology, "sockets", 10,
|
|
VIR_XML_PROP_REQUIRED | VIR_XML_PROP_NONZERO,
|
|
&def->sockets) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (virXMLPropUIntDefault(topology, "dies", 10,
|
|
VIR_XML_PROP_NONZERO,
|
|
&def->dies, 1) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (virXMLPropUInt(topology, "cores", 10,
|
|
VIR_XML_PROP_REQUIRED | VIR_XML_PROP_NONZERO,
|
|
&def->cores) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (virXMLPropUInt(topology, "threads", 10,
|
|
VIR_XML_PROP_REQUIRED | VIR_XML_PROP_NONZERO,
|
|
&def->threads) < 0) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if ((n = virXPathNodeSet("./feature", ctxt, &nodes)) < 0)
|
|
return -1;
|
|
|
|
if (n > 0) {
|
|
if (!def->model && def->mode == VIR_CPU_MODE_CUSTOM) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Non-empty feature list specified without "
|
|
"CPU model"));
|
|
return -1;
|
|
}
|
|
|
|
VIR_RESIZE_N(def->features, def->nfeatures_max, def->nfeatures, n);
|
|
def->nfeatures = n;
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
|
g_autofree char *name = NULL;
|
|
int policy; /* enum virDomainCPUFeaturePolicy */
|
|
size_t j;
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST) {
|
|
g_autofree char *strpolicy = NULL;
|
|
|
|
strpolicy = virXMLPropString(nodes[i], "policy");
|
|
if (strpolicy == NULL)
|
|
policy = VIR_CPU_FEATURE_REQUIRE;
|
|
else
|
|
policy = virCPUFeaturePolicyTypeFromString(strpolicy);
|
|
|
|
if (policy < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Invalid CPU feature policy"));
|
|
return -1;
|
|
}
|
|
} else {
|
|
policy = -1;
|
|
}
|
|
|
|
if (!(name = virXMLPropString(nodes[i], "name")) || *name == 0) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Invalid CPU feature name"));
|
|
return -1;
|
|
}
|
|
|
|
for (j = 0; j < i; j++) {
|
|
if (STREQ(name, def->features[j].name)) {
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("CPU feature '%1$s' specified more than once"),
|
|
name);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
def->features[i].name = g_steal_pointer(&name);
|
|
def->features[i].policy = policy;
|
|
}
|
|
|
|
if ((ncacheNodes = virXPathNodeSet("./cache", ctxt, &cacheNodes)) > 0) {
|
|
if (ncacheNodes > 1) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("at most one CPU cache element may be specified"));
|
|
return -1;
|
|
}
|
|
|
|
if (virCPUDefParseXMLCache(def, cacheNodes[0]) < 0)
|
|
return -1;
|
|
}
|
|
|
|
if ((maxphysaddrNode = virXPathNode("./maxphysaddr[1]", ctxt))) {
|
|
def->addr = g_new0(virCPUMaxPhysAddrDef, 1);
|
|
|
|
if (virXMLPropEnum(maxphysaddrNode, "mode",
|
|
virCPUMaxPhysAddrModeTypeFromString,
|
|
VIR_XML_PROP_REQUIRED,
|
|
&def->addr->mode) < 0)
|
|
return -1;
|
|
|
|
if (virXMLPropInt(maxphysaddrNode, "bits", 10,
|
|
VIR_XML_PROP_NONNEGATIVE,
|
|
&def->addr->bits, -1) < 0)
|
|
return -1;
|
|
}
|
|
|
|
*cpu = g_steal_pointer(&def);
|
|
return 0;
|
|
}
|
|
|
|
|
|
char *
|
|
virCPUDefFormat(virCPUDef *def,
|
|
virDomainNuma *numa)
|
|
{
|
|
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
if (virCPUDefFormatBufFull(&buf, def, numa) < 0)
|
|
return NULL;
|
|
|
|
return virBufferContentAndReset(&buf);
|
|
}
|
|
|
|
|
|
int
|
|
virCPUDefFormatBufFull(virBuffer *buf,
|
|
virCPUDef *def,
|
|
virDomainNuma *numa)
|
|
{
|
|
g_auto(virBuffer) attributeBuf = VIR_BUFFER_INITIALIZER;
|
|
g_auto(virBuffer) childrenBuf = VIR_BUFFER_INIT_CHILD(buf);
|
|
|
|
if (!def)
|
|
return 0;
|
|
|
|
/* Format attributes for guest CPUs unless they only specify
|
|
* topology or cache. */
|
|
if (def->type == VIR_CPU_TYPE_GUEST &&
|
|
(def->mode != VIR_CPU_MODE_CUSTOM || def->model)) {
|
|
const char *tmp;
|
|
|
|
if (!(tmp = virCPUModeTypeToString(def->mode))) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unexpected CPU mode %1$d"), def->mode);
|
|
return -1;
|
|
}
|
|
virBufferAsprintf(&attributeBuf, " mode='%s'", tmp);
|
|
|
|
if (def->mode == VIR_CPU_MODE_CUSTOM) {
|
|
if (!(tmp = virCPUMatchTypeToString(def->match))) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unexpected CPU match policy %1$d"),
|
|
def->match);
|
|
return -1;
|
|
}
|
|
virBufferAsprintf(&attributeBuf, " match='%s'", tmp);
|
|
}
|
|
|
|
if (def->check) {
|
|
virBufferAsprintf(&attributeBuf, " check='%s'",
|
|
virCPUCheckTypeToString(def->check));
|
|
}
|
|
|
|
if ((def->mode == VIR_CPU_MODE_HOST_PASSTHROUGH ||
|
|
def->mode == VIR_CPU_MODE_MAXIMUM) &&
|
|
def->migratable) {
|
|
virBufferAsprintf(&attributeBuf, " migratable='%s'",
|
|
virTristateSwitchTypeToString(def->migratable));
|
|
}
|
|
}
|
|
|
|
/* Format children */
|
|
if (def->type == VIR_CPU_TYPE_HOST && def->arch)
|
|
virBufferAsprintf(&childrenBuf, "<arch>%s</arch>\n",
|
|
virArchToString(def->arch));
|
|
if (virCPUDefFormatBuf(&childrenBuf, def) < 0)
|
|
return -1;
|
|
|
|
if (virDomainNumaDefFormatXML(&childrenBuf, numa) < 0)
|
|
return -1;
|
|
|
|
virXMLFormatElement(buf, "cpu", &attributeBuf, &childrenBuf);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
virCPUDefFormatBuf(virBuffer *buf,
|
|
virCPUDef *def)
|
|
{
|
|
size_t i;
|
|
bool formatModel;
|
|
|
|
if (!def)
|
|
return 0;
|
|
|
|
formatModel = (def->mode == VIR_CPU_MODE_CUSTOM ||
|
|
def->mode == VIR_CPU_MODE_HOST_MODEL);
|
|
|
|
if (!def->model && def->mode == VIR_CPU_MODE_CUSTOM && def->nfeatures) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
_("Non-empty feature list specified without CPU model"));
|
|
return -1;
|
|
}
|
|
|
|
if (formatModel && (def->model || def->vendor_id)) {
|
|
virBufferAddLit(buf, "<model");
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST && def->model) {
|
|
const char *fallback;
|
|
|
|
fallback = virCPUFallbackTypeToString(def->fallback);
|
|
if (!fallback) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unexpected CPU fallback value: %1$d"),
|
|
def->fallback);
|
|
return -1;
|
|
}
|
|
virBufferAsprintf(buf, " fallback='%s'", fallback);
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST)
|
|
virBufferEscapeString(buf, " vendor_id='%s'", def->vendor_id);
|
|
|
|
if (def->model)
|
|
virBufferEscapeString(buf, ">%s</model>\n", def->model);
|
|
else
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
|
|
if (formatModel && def->vendor)
|
|
virBufferEscapeString(buf, "<vendor>%s</vendor>\n", def->vendor);
|
|
|
|
if (def->type == VIR_CPU_TYPE_HOST && def->microcodeVersion)
|
|
virBufferAsprintf(buf, "<microcode version='%u'/>\n",
|
|
def->microcodeVersion);
|
|
|
|
if (def->type == VIR_CPU_TYPE_HOST && def->sigFamily) {
|
|
virBufferAddLit(buf, "<signature");
|
|
virBufferAsprintf(buf, " family='%u'", def->sigFamily);
|
|
virBufferAsprintf(buf, " model='%u'", def->sigModel);
|
|
virBufferAsprintf(buf, " stepping='%u'", def->sigStepping);
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_HOST && def->tsc) {
|
|
virBufferAddLit(buf, "<counter name='tsc'");
|
|
virBufferAsprintf(buf, " frequency='%llu'", def->tsc->frequency);
|
|
if (def->tsc->scaling) {
|
|
virBufferAsprintf(buf, " scaling='%s'",
|
|
virTristateBoolTypeToString(def->tsc->scaling));
|
|
}
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
|
|
if (def->sockets && def->dies && def->cores && def->threads) {
|
|
virBufferAddLit(buf, "<topology");
|
|
virBufferAsprintf(buf, " sockets='%u'", def->sockets);
|
|
virBufferAsprintf(buf, " dies='%u'", def->dies);
|
|
virBufferAsprintf(buf, " cores='%u'", def->cores);
|
|
virBufferAsprintf(buf, " threads='%u'", def->threads);
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
|
|
if (def->cache) {
|
|
virBufferAddLit(buf, "<cache ");
|
|
if (def->cache->level != -1)
|
|
virBufferAsprintf(buf, "level='%d' ", def->cache->level);
|
|
virBufferAsprintf(buf, "mode='%s'",
|
|
virCPUCacheModeTypeToString(def->cache->mode));
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
|
|
if (def->addr) {
|
|
virBufferAddLit(buf, "<maxphysaddr ");
|
|
virBufferAsprintf(buf, "mode='%s'",
|
|
virCPUMaxPhysAddrModeTypeToString(def->addr->mode));
|
|
if (def->addr->bits != -1)
|
|
virBufferAsprintf(buf, " bits='%d'", def->addr->bits);
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
|
|
for (i = 0; i < def->nfeatures; i++) {
|
|
virCPUFeatureDef *feature = def->features + i;
|
|
|
|
if (!feature->name) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
_("Missing CPU feature name"));
|
|
return -1;
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST) {
|
|
const char *policy;
|
|
|
|
policy = virCPUFeaturePolicyTypeToString(feature->policy);
|
|
if (!policy) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unexpected CPU feature policy %1$d"),
|
|
feature->policy);
|
|
return -1;
|
|
}
|
|
virBufferAsprintf(buf, "<feature policy='%s' name='%s'/>\n",
|
|
policy, feature->name);
|
|
} else {
|
|
virBufferAsprintf(buf, "<feature name='%s'/>\n",
|
|
feature->name);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
typedef enum {
|
|
VIR_CPU_ADD_FEATURE_MODE_EXCLUSIVE, /* Fail if feature exists */
|
|
VIR_CPU_ADD_FEATURE_MODE_UPDATE, /* Add feature or update policy */
|
|
VIR_CPU_ADD_FEATURE_MODE_NEW, /* Add feature if it does not exist */
|
|
} virCPUDefAddFeatureMode;
|
|
|
|
static int
|
|
virCPUDefAddFeatureInternal(virCPUDef *def,
|
|
const char *name,
|
|
int policy,
|
|
virCPUDefAddFeatureMode mode)
|
|
{
|
|
virCPUFeatureDef *feat;
|
|
|
|
if (def->type == VIR_CPU_TYPE_HOST)
|
|
policy = -1;
|
|
|
|
if ((feat = virCPUDefFindFeature(def, name))) {
|
|
switch (mode) {
|
|
case VIR_CPU_ADD_FEATURE_MODE_NEW:
|
|
return 0;
|
|
|
|
case VIR_CPU_ADD_FEATURE_MODE_UPDATE:
|
|
feat->policy = policy;
|
|
return 0;
|
|
|
|
case VIR_CPU_ADD_FEATURE_MODE_EXCLUSIVE:
|
|
default:
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("CPU feature '%1$s' specified more than once"),
|
|
name);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
VIR_RESIZE_N(def->features, def->nfeatures_max, def->nfeatures, 1);
|
|
def->features[def->nfeatures].name = g_strdup(name);
|
|
def->features[def->nfeatures].policy = policy;
|
|
def->nfeatures++;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
virCPUDefUpdateFeature(virCPUDef *def,
|
|
const char *name,
|
|
int policy)
|
|
{
|
|
return virCPUDefAddFeatureInternal(def, name, policy,
|
|
VIR_CPU_ADD_FEATURE_MODE_UPDATE);
|
|
}
|
|
|
|
int
|
|
virCPUDefAddFeature(virCPUDef *def,
|
|
const char *name,
|
|
int policy)
|
|
{
|
|
return virCPUDefAddFeatureInternal(def, name, policy,
|
|
VIR_CPU_ADD_FEATURE_MODE_EXCLUSIVE);
|
|
}
|
|
|
|
|
|
int
|
|
virCPUDefAddFeatureIfMissing(virCPUDef *def,
|
|
const char *name,
|
|
int policy)
|
|
{
|
|
return virCPUDefAddFeatureInternal(def, name, policy,
|
|
VIR_CPU_ADD_FEATURE_MODE_NEW);
|
|
}
|
|
|
|
|
|
virCPUFeatureDef *
|
|
virCPUDefFindFeature(const virCPUDef *def,
|
|
const char *name)
|
|
{
|
|
size_t i;
|
|
|
|
for (i = 0; i < def->nfeatures; i++) {
|
|
if (STREQ(name, def->features[i].name))
|
|
return def->features + i;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
int
|
|
virCPUDefFilterFeatures(virCPUDef *cpu,
|
|
virCPUDefFeatureFilter filter,
|
|
void *opaque)
|
|
{
|
|
size_t i = 0;
|
|
|
|
while (i < cpu->nfeatures) {
|
|
if (filter(cpu->features[i].name, cpu->features[i].policy, opaque)) {
|
|
i++;
|
|
continue;
|
|
}
|
|
|
|
VIR_FREE(cpu->features[i].name);
|
|
if (VIR_DELETE_ELEMENT_INPLACE(cpu->features, i, cpu->nfeatures) < 0)
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* virCPUDefCheckFeatures:
|
|
*
|
|
* Check CPU features for which @filter reports true and store them in a NULL
|
|
* terminated list returned via @features.
|
|
*
|
|
* Returns the number of features matching @filter or -1 on error.
|
|
*/
|
|
int
|
|
virCPUDefCheckFeatures(virCPUDef *cpu,
|
|
virCPUDefFeatureFilter filter,
|
|
void *opaque,
|
|
char ***features)
|
|
{
|
|
size_t n = 0;
|
|
size_t i;
|
|
|
|
*features = NULL;
|
|
|
|
if (cpu->nfeatures == 0)
|
|
return 0;
|
|
|
|
*features = g_new0(char *, cpu->nfeatures + 1);
|
|
|
|
for (i = 0; i < cpu->nfeatures; i++) {
|
|
if (filter(cpu->features[i].name, cpu->features[i].policy, opaque))
|
|
(*features)[n++] = g_strdup(cpu->features[i].name);
|
|
}
|
|
|
|
return n;
|
|
}
|
|
|
|
|
|
bool
|
|
virCPUDefIsEqual(virCPUDef *src,
|
|
virCPUDef *dst,
|
|
bool reportError)
|
|
{
|
|
size_t i;
|
|
|
|
if (!src && !dst)
|
|
return true;
|
|
|
|
#define MISMATCH(fmt, ...) \
|
|
if (reportError) \
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, fmt, __VA_ARGS__)
|
|
|
|
if ((src && !dst) || (!src && dst)) {
|
|
MISMATCH("%s", _("Target CPU does not match source"));
|
|
return false;
|
|
}
|
|
|
|
if (src->type != dst->type) {
|
|
MISMATCH(_("Target CPU type %1$s does not match source %2$s"),
|
|
virCPUTypeToString(dst->type),
|
|
virCPUTypeToString(src->type));
|
|
return false;
|
|
}
|
|
|
|
if (src->mode != dst->mode) {
|
|
MISMATCH(_("Target CPU mode %1$s does not match source %2$s"),
|
|
virCPUModeTypeToString(dst->mode),
|
|
virCPUModeTypeToString(src->mode));
|
|
return false;
|
|
}
|
|
|
|
if (src->check != dst->check) {
|
|
MISMATCH(_("Target CPU check %1$s does not match source %2$s"),
|
|
virCPUCheckTypeToString(dst->check),
|
|
virCPUCheckTypeToString(src->check));
|
|
return false;
|
|
}
|
|
|
|
if (src->arch != dst->arch) {
|
|
MISMATCH(_("Target CPU arch %1$s does not match source %2$s"),
|
|
virArchToString(dst->arch),
|
|
virArchToString(src->arch));
|
|
return false;
|
|
}
|
|
|
|
if (STRNEQ_NULLABLE(src->model, dst->model)) {
|
|
MISMATCH(_("Target CPU model %1$s does not match source %2$s"),
|
|
NULLSTR(dst->model), NULLSTR(src->model));
|
|
return false;
|
|
}
|
|
|
|
if (STRNEQ_NULLABLE(src->vendor, dst->vendor)) {
|
|
MISMATCH(_("Target CPU vendor %1$s does not match source %2$s"),
|
|
NULLSTR(dst->vendor), NULLSTR(src->vendor));
|
|
return false;
|
|
}
|
|
|
|
if (STRNEQ_NULLABLE(src->vendor_id, dst->vendor_id)) {
|
|
MISMATCH(_("Target CPU vendor id %1$s does not match source %2$s"),
|
|
NULLSTR(dst->vendor_id), NULLSTR(src->vendor_id));
|
|
return false;
|
|
}
|
|
|
|
if (src->sockets != dst->sockets) {
|
|
MISMATCH(_("Target CPU sockets %1$d does not match source %2$d"),
|
|
dst->sockets, src->sockets);
|
|
return false;
|
|
}
|
|
|
|
if (src->dies != dst->dies) {
|
|
MISMATCH(_("Target CPU dies %1$d does not match source %2$d"),
|
|
dst->dies, src->dies);
|
|
return false;
|
|
}
|
|
|
|
if (src->cores != dst->cores) {
|
|
MISMATCH(_("Target CPU cores %1$d does not match source %2$d"),
|
|
dst->cores, src->cores);
|
|
return false;
|
|
}
|
|
|
|
if (src->threads != dst->threads) {
|
|
MISMATCH(_("Target CPU threads %1$d does not match source %2$d"),
|
|
dst->threads, src->threads);
|
|
return false;
|
|
}
|
|
|
|
if ((src->addr && !dst->addr) ||
|
|
(!src->addr && dst->addr) ||
|
|
(src->addr && dst->addr &&
|
|
(src->addr->mode != dst->addr->mode ||
|
|
src->addr->bits != dst->addr->bits))) {
|
|
MISMATCH("%s", _("Target CPU maxphysaddr does not match source"));
|
|
return false;
|
|
}
|
|
|
|
if (src->nfeatures != dst->nfeatures) {
|
|
MISMATCH(_("Target CPU feature count %1$zu does not match source %2$zu"),
|
|
dst->nfeatures, src->nfeatures);
|
|
return false;
|
|
}
|
|
|
|
for (i = 0; i < src->nfeatures; i++) {
|
|
if (STRNEQ(src->features[i].name, dst->features[i].name)) {
|
|
MISMATCH(_("Target CPU feature %1$s does not match source %2$s"),
|
|
dst->features[i].name, src->features[i].name);
|
|
return false;
|
|
}
|
|
|
|
if (src->features[i].policy != dst->features[i].policy) {
|
|
MISMATCH(_("Target CPU feature policy %1$s does not match source %2$s"),
|
|
virCPUFeaturePolicyTypeToString(dst->features[i].policy),
|
|
virCPUFeaturePolicyTypeToString(src->features[i].policy));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ((src->cache && !dst->cache) ||
|
|
(!src->cache && dst->cache) ||
|
|
(src->cache && dst->cache &&
|
|
(src->cache->level != dst->cache->level ||
|
|
src->cache->mode != dst->cache->mode))) {
|
|
MISMATCH("%s", _("Target CPU cache does not match source"));
|
|
return false;
|
|
}
|
|
|
|
#undef MISMATCH
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
/*
|
|
* Parses a list of CPU XMLs into a NULL-terminated list of CPU defs.
|
|
*/
|
|
virCPUDef **
|
|
virCPUDefListParse(const char **xmlCPUs,
|
|
unsigned int ncpus,
|
|
virCPUType cpuType)
|
|
{
|
|
virCPUDef **cpus = NULL;
|
|
size_t i;
|
|
|
|
VIR_DEBUG("xmlCPUs=%p, ncpus=%u", xmlCPUs, ncpus);
|
|
|
|
if (xmlCPUs) {
|
|
for (i = 0; i < ncpus; i++)
|
|
VIR_DEBUG("xmlCPUs[%zu]=%s", i, NULLSTR(xmlCPUs[i]));
|
|
}
|
|
|
|
if (!xmlCPUs && ncpus != 0) {
|
|
virReportError(VIR_ERR_INVALID_ARG, "%s",
|
|
_("nonzero ncpus doesn't match with NULL xmlCPUs"));
|
|
goto error;
|
|
}
|
|
|
|
if (ncpus == 0) {
|
|
virReportError(VIR_ERR_INVALID_ARG, "%s", _("no CPUs given"));
|
|
goto error;
|
|
}
|
|
|
|
cpus = g_new0(virCPUDef *, ncpus + 1);
|
|
|
|
for (i = 0; i < ncpus; i++) {
|
|
g_autoptr(xmlDoc) doc = NULL;
|
|
g_autoptr(xmlXPathContext) ctxt = NULL;
|
|
|
|
if (!(doc = virXMLParseStringCtxt(xmlCPUs[i], _("(CPU_definition)"), &ctxt)))
|
|
goto error;
|
|
|
|
if (virCPUDefParseXML(ctxt, NULL, cpuType, &cpus[i], false) < 0)
|
|
goto error;
|
|
}
|
|
|
|
return cpus;
|
|
|
|
error:
|
|
virCPUDefListFree(cpus);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
/*
|
|
* Frees NULL-terminated list of CPUs created by virCPUDefListParse.
|
|
*/
|
|
void
|
|
virCPUDefListFree(virCPUDef **cpus)
|
|
{
|
|
virCPUDef **cpu;
|
|
|
|
if (!cpus)
|
|
return;
|
|
|
|
for (cpu = cpus; *cpu != NULL; cpu++)
|
|
virCPUDefFree(*cpu);
|
|
|
|
g_free(cpus);
|
|
}
|