mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 19:31:18 +00:00
9b73290f46
Currently, during XML parsing, when a call to a FromString() function to get an enum value fails, the error which is reported is either VIR_ERR_CONFIG_UNSUPPORTED, VIR_ERR_INTERNAL_ERROR or VIR_ERR_XML_ERROR. This commit makes such conversion failures consistently return VIR_ERR_CONFIG_UNSUPPORTED.
825 lines
24 KiB
C
825 lines
24 KiB
C
/*
|
|
* cpu_conf.c: CPU XML handling
|
|
*
|
|
* Copyright (C) 2009-2013 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/>.
|
|
*
|
|
* Authors:
|
|
* Jiri Denemark <jdenemar@redhat.com>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "virerror.h"
|
|
#include "viralloc.h"
|
|
#include "virbuffer.h"
|
|
#include "cpu_conf.h"
|
|
#include "domain_conf.h"
|
|
#include "virstring.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_CPU
|
|
|
|
VIR_ENUM_IMPL(virCPU, VIR_CPU_TYPE_LAST,
|
|
"host", "guest", "auto")
|
|
|
|
VIR_ENUM_IMPL(virCPUMode, VIR_CPU_MODE_LAST,
|
|
"custom",
|
|
"host-model",
|
|
"host-passthrough")
|
|
|
|
VIR_ENUM_IMPL(virCPUMatch, VIR_CPU_MATCH_LAST,
|
|
"minimum",
|
|
"exact",
|
|
"strict")
|
|
|
|
VIR_ENUM_IMPL(virCPUFallback, VIR_CPU_FALLBACK_LAST,
|
|
"allow",
|
|
"forbid")
|
|
|
|
VIR_ENUM_IMPL(virCPUFeaturePolicy, VIR_CPU_FEATURE_LAST,
|
|
"force",
|
|
"require",
|
|
"optional",
|
|
"disable",
|
|
"forbid")
|
|
|
|
|
|
void ATTRIBUTE_NONNULL(1)
|
|
virCPUDefFreeModel(virCPUDefPtr def)
|
|
{
|
|
size_t i;
|
|
|
|
VIR_FREE(def->model);
|
|
VIR_FREE(def->vendor);
|
|
VIR_FREE(def->vendor_id);
|
|
|
|
for (i = 0; i < def->nfeatures; i++)
|
|
VIR_FREE(def->features[i].name);
|
|
VIR_FREE(def->features);
|
|
}
|
|
|
|
void
|
|
virCPUDefFree(virCPUDefPtr def)
|
|
{
|
|
size_t i;
|
|
|
|
if (!def)
|
|
return;
|
|
|
|
virCPUDefFreeModel(def);
|
|
|
|
for (i = 0; i < def->ncells; i++) {
|
|
virBitmapFree(def->cells[i].cpumask);
|
|
VIR_FREE(def->cells[i].cpustr);
|
|
}
|
|
VIR_FREE(def->cells);
|
|
VIR_FREE(def->vendor_id);
|
|
|
|
VIR_FREE(def);
|
|
}
|
|
|
|
|
|
int ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
|
virCPUDefCopyModel(virCPUDefPtr dst,
|
|
const virCPUDef *src,
|
|
bool resetPolicy)
|
|
{
|
|
size_t i;
|
|
|
|
if (VIR_STRDUP(dst->model, src->model) < 0 ||
|
|
VIR_STRDUP(dst->vendor, src->vendor) < 0 ||
|
|
VIR_STRDUP(dst->vendor_id, src->vendor_id) < 0 ||
|
|
VIR_ALLOC_N(dst->features, src->nfeatures) < 0)
|
|
return -1;
|
|
dst->nfeatures_max = dst->nfeatures = src->nfeatures;
|
|
|
|
for (i = 0; i < dst->nfeatures; i++) {
|
|
if (dst->type != src->type && resetPolicy) {
|
|
if (dst->type == VIR_CPU_TYPE_HOST)
|
|
dst->features[i].policy = -1;
|
|
else if (src->features[i].policy == -1)
|
|
dst->features[i].policy = VIR_CPU_FEATURE_REQUIRE;
|
|
else
|
|
dst->features[i].policy = src->features[i].policy;
|
|
} else {
|
|
dst->features[i].policy = src->features[i].policy;
|
|
}
|
|
|
|
if (VIR_STRDUP(dst->features[i].name, src->features[i].name) < 0)
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
virCPUDefPtr
|
|
virCPUDefCopy(const virCPUDef *cpu)
|
|
{
|
|
virCPUDefPtr copy;
|
|
size_t i;
|
|
|
|
if (!cpu || VIR_ALLOC(copy) < 0)
|
|
return NULL;
|
|
|
|
copy->type = cpu->type;
|
|
copy->mode = cpu->mode;
|
|
copy->match = cpu->match;
|
|
copy->fallback = cpu->fallback;
|
|
copy->sockets = cpu->sockets;
|
|
copy->cores = cpu->cores;
|
|
copy->threads = cpu->threads;
|
|
copy->arch = cpu->arch;
|
|
|
|
if (virCPUDefCopyModel(copy, cpu, false) < 0)
|
|
goto error;
|
|
|
|
if (cpu->ncells) {
|
|
if (VIR_ALLOC_N(copy->cells, cpu->ncells) < 0)
|
|
goto error;
|
|
copy->ncells_max = copy->ncells = cpu->ncells;
|
|
|
|
for (i = 0; i < cpu->ncells; i++) {
|
|
copy->cells[i].cellid = cpu->cells[i].cellid;
|
|
copy->cells[i].mem = cpu->cells[i].mem;
|
|
|
|
copy->cells[i].cpumask = virBitmapNewCopy(cpu->cells[i].cpumask);
|
|
|
|
if (!copy->cells[i].cpumask)
|
|
goto error;
|
|
|
|
if (VIR_STRDUP(copy->cells[i].cpustr, cpu->cells[i].cpustr) < 0)
|
|
goto error;
|
|
}
|
|
copy->cells_cpus = cpu->cells_cpus;
|
|
}
|
|
|
|
return copy;
|
|
|
|
error:
|
|
virCPUDefFree(copy);
|
|
return NULL;
|
|
}
|
|
|
|
virCPUDefPtr
|
|
virCPUDefParseXML(xmlNodePtr node,
|
|
xmlXPathContextPtr ctxt,
|
|
enum virCPUType mode)
|
|
{
|
|
virCPUDefPtr def;
|
|
xmlNodePtr *nodes = NULL;
|
|
int n;
|
|
size_t i;
|
|
char *cpuMode;
|
|
char *fallback = NULL;
|
|
char *vendor_id = NULL;
|
|
|
|
if (!xmlStrEqual(node->name, BAD_CAST "cpu")) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("XML does not contain expected 'cpu' element"));
|
|
return NULL;
|
|
}
|
|
|
|
if (VIR_ALLOC(def) < 0)
|
|
return NULL;
|
|
|
|
if (mode == VIR_CPU_TYPE_AUTO) {
|
|
if (virXPathBoolean("boolean(./arch)", ctxt)) {
|
|
if (virXPathBoolean("boolean(./@match)", ctxt)) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("'arch' element element cannot be used inside 'cpu'"
|
|
" element with 'match' attribute'"));
|
|
goto error;
|
|
}
|
|
def->type = VIR_CPU_TYPE_HOST;
|
|
} else {
|
|
def->type = VIR_CPU_TYPE_GUEST;
|
|
}
|
|
} else {
|
|
def->type = mode;
|
|
}
|
|
|
|
if ((cpuMode = virXMLPropString(node, "mode"))) {
|
|
if (def->type == VIR_CPU_TYPE_HOST) {
|
|
VIR_FREE(cpuMode);
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Attribute mode is only allowed for guest CPU"));
|
|
goto error;
|
|
} else {
|
|
def->mode = virCPUModeTypeFromString(cpuMode);
|
|
|
|
if (def->mode < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Invalid mode attribute '%s'"),
|
|
cpuMode);
|
|
VIR_FREE(cpuMode);
|
|
goto error;
|
|
}
|
|
VIR_FREE(cpuMode);
|
|
}
|
|
} else {
|
|
if (def->type == VIR_CPU_TYPE_HOST)
|
|
def->mode = -1;
|
|
else
|
|
def->mode = VIR_CPU_MODE_CUSTOM;
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST) {
|
|
char *match = virXMLPropString(node, "match");
|
|
|
|
if (!match) {
|
|
if (virXPathBoolean("boolean(./model)", ctxt))
|
|
def->match = VIR_CPU_MATCH_EXACT;
|
|
else
|
|
def->match = -1;
|
|
} else {
|
|
def->match = virCPUMatchTypeFromString(match);
|
|
VIR_FREE(match);
|
|
|
|
if (def->match < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Invalid match attribute for CPU "
|
|
"specification"));
|
|
goto error;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_HOST) {
|
|
char *arch = virXPathString("string(./arch[1])", ctxt);
|
|
if (!arch) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing CPU architecture"));
|
|
goto error;
|
|
}
|
|
if ((def->arch = virArchFromString(arch)) == VIR_ARCH_NONE) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Unknown architecture %s"), arch);
|
|
VIR_FREE(arch);
|
|
goto error;
|
|
}
|
|
VIR_FREE(arch);
|
|
}
|
|
|
|
if (!(def->model = virXPathString("string(./model[1])", ctxt)) &&
|
|
def->type == VIR_CPU_TYPE_HOST) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing CPU model name"));
|
|
goto error;
|
|
}
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST &&
|
|
def->mode != VIR_CPU_MODE_HOST_PASSTHROUGH) {
|
|
|
|
if ((fallback = virXPathString("string(./model[1]/@fallback)", ctxt))) {
|
|
if ((def->fallback = virCPUFallbackTypeFromString(fallback)) < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Invalid fallback attribute"));
|
|
goto error;
|
|
}
|
|
}
|
|
|
|
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 %d characters long"),
|
|
VIR_CPU_VENDOR_ID_LENGTH);
|
|
goto error;
|
|
}
|
|
|
|
/* ensure that the string can be passed to qemu*/
|
|
if (strchr(vendor_id, ',')) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("vendor id is invalid"));
|
|
goto error;
|
|
}
|
|
|
|
def->vendor_id = vendor_id;
|
|
vendor_id = NULL;
|
|
}
|
|
}
|
|
|
|
def->vendor = virXPathString("string(./vendor[1])", ctxt);
|
|
if (def->vendor && !def->model) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("CPU vendor specified without CPU model"));
|
|
goto error;
|
|
}
|
|
|
|
if (virXPathNode("./topology[1]", ctxt)) {
|
|
int ret;
|
|
unsigned long ul;
|
|
|
|
ret = virXPathULong("string(./topology[1]/@sockets)",
|
|
ctxt, &ul);
|
|
if (ret < 0) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing 'sockets' attribute in CPU topology"));
|
|
goto error;
|
|
}
|
|
def->sockets = (unsigned int) ul;
|
|
|
|
ret = virXPathULong("string(./topology[1]/@cores)",
|
|
ctxt, &ul);
|
|
if (ret < 0) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing 'cores' attribute in CPU topology"));
|
|
goto error;
|
|
}
|
|
def->cores = (unsigned int) ul;
|
|
|
|
ret = virXPathULong("string(./topology[1]/@threads)",
|
|
ctxt, &ul);
|
|
if (ret < 0) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing 'threads' attribute in CPU topology"));
|
|
goto error;
|
|
}
|
|
def->threads = (unsigned int) ul;
|
|
|
|
if (!def->sockets || !def->cores || !def->threads) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Invalid CPU topology"));
|
|
goto error;
|
|
}
|
|
}
|
|
|
|
if ((n = virXPathNodeSet("./feature", ctxt, &nodes)) < 0)
|
|
goto error;
|
|
|
|
if (n > 0) {
|
|
if (!def->model && def->mode != VIR_CPU_MODE_HOST_MODEL) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Non-empty feature list specified without "
|
|
"CPU model"));
|
|
goto error;
|
|
}
|
|
|
|
if (VIR_RESIZE_N(def->features, def->nfeatures_max,
|
|
def->nfeatures, n) < 0)
|
|
goto error;
|
|
|
|
def->nfeatures = n;
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
|
char *name;
|
|
int policy; /* enum virDomainCPUFeaturePolicy */
|
|
size_t j;
|
|
|
|
if (def->type == VIR_CPU_TYPE_GUEST) {
|
|
char *strpolicy;
|
|
|
|
strpolicy = virXMLPropString(nodes[i], "policy");
|
|
if (strpolicy == NULL)
|
|
policy = VIR_CPU_FEATURE_REQUIRE;
|
|
else
|
|
policy = virCPUFeaturePolicyTypeFromString(strpolicy);
|
|
VIR_FREE(strpolicy);
|
|
|
|
if (policy < 0) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Invalid CPU feature policy"));
|
|
goto error;
|
|
}
|
|
} else {
|
|
policy = -1;
|
|
}
|
|
|
|
if (!(name = virXMLPropString(nodes[i], "name")) || *name == 0) {
|
|
VIR_FREE(name);
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Invalid CPU feature name"));
|
|
goto error;
|
|
}
|
|
|
|
for (j = 0; j < i; j++) {
|
|
if (STREQ(name, def->features[j].name)) {
|
|
virReportError(VIR_ERR_XML_ERROR,
|
|
_("CPU feature `%s' specified more than once"),
|
|
name);
|
|
VIR_FREE(name);
|
|
goto error;
|
|
}
|
|
}
|
|
|
|
def->features[i].name = name;
|
|
def->features[i].policy = policy;
|
|
}
|
|
|
|
if (virXPathNode("./numa[1]", ctxt)) {
|
|
VIR_FREE(nodes);
|
|
n = virXPathNodeSet("./numa[1]/cell", ctxt, &nodes);
|
|
if (n <= 0) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("NUMA topology defined without NUMA cells"));
|
|
goto error;
|
|
}
|
|
|
|
if (VIR_RESIZE_N(def->cells, def->ncells_max,
|
|
def->ncells, n) < 0)
|
|
goto error;
|
|
|
|
def->ncells = n;
|
|
|
|
for (i = 0; i < n; i++) {
|
|
char *cpus, *memory;
|
|
int ret, ncpus = 0;
|
|
|
|
def->cells[i].cellid = i;
|
|
cpus = virXMLPropString(nodes[i], "cpus");
|
|
if (!cpus) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing 'cpus' attribute in NUMA cell"));
|
|
goto error;
|
|
}
|
|
def->cells[i].cpustr = cpus;
|
|
|
|
ncpus = virBitmapParse(cpus, 0, &def->cells[i].cpumask,
|
|
VIR_DOMAIN_CPUMASK_LEN);
|
|
if (ncpus <= 0)
|
|
goto error;
|
|
def->cells_cpus += ncpus;
|
|
|
|
memory = virXMLPropString(nodes[i], "memory");
|
|
if (!memory) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Missing 'memory' attribute in NUMA cell"));
|
|
goto error;
|
|
}
|
|
|
|
ret = virStrToLong_ui(memory, NULL, 10, &def->cells[i].mem);
|
|
if (ret == -1) {
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
_("Invalid 'memory' attribute in NUMA cell"));
|
|
VIR_FREE(memory);
|
|
goto error;
|
|
}
|
|
VIR_FREE(memory);
|
|
}
|
|
}
|
|
|
|
cleanup:
|
|
VIR_FREE(fallback);
|
|
VIR_FREE(vendor_id);
|
|
VIR_FREE(nodes);
|
|
return def;
|
|
|
|
error:
|
|
virCPUDefFree(def);
|
|
def = NULL;
|
|
goto cleanup;
|
|
}
|
|
|
|
|
|
char *
|
|
virCPUDefFormat(virCPUDefPtr def,
|
|
unsigned int flags)
|
|
{
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
if (virCPUDefFormatBufFull(&buf, def, flags) < 0)
|
|
goto cleanup;
|
|
|
|
if (virBufferError(&buf))
|
|
goto no_memory;
|
|
|
|
return virBufferContentAndReset(&buf);
|
|
|
|
no_memory:
|
|
virReportOOMError();
|
|
cleanup:
|
|
virBufferFreeAndReset(&buf);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
int
|
|
virCPUDefFormatBufFull(virBufferPtr buf,
|
|
virCPUDefPtr def,
|
|
unsigned int flags)
|
|
{
|
|
if (!def)
|
|
return 0;
|
|
|
|
virBufferAddLit(buf, "<cpu");
|
|
if (def->type == VIR_CPU_TYPE_GUEST) {
|
|
const char *tmp;
|
|
|
|
if (def->mode != VIR_CPU_MODE_CUSTOM || def->model) {
|
|
if (!(tmp = virCPUModeTypeToString(def->mode))) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unexpected CPU mode %d"), def->mode);
|
|
return -1;
|
|
}
|
|
virBufferAsprintf(buf, " mode='%s'", tmp);
|
|
}
|
|
|
|
if (def->model &&
|
|
(def->mode == VIR_CPU_MODE_CUSTOM ||
|
|
(flags & VIR_DOMAIN_XML_UPDATE_CPU))) {
|
|
if (!(tmp = virCPUMatchTypeToString(def->match))) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unexpected CPU match policy %d"),
|
|
def->match);
|
|
return -1;
|
|
}
|
|
virBufferAsprintf(buf, " match='%s'", tmp);
|
|
}
|
|
}
|
|
virBufferAddLit(buf, ">\n");
|
|
|
|
if (def->arch)
|
|
virBufferAsprintf(buf, " <arch>%s</arch>\n",
|
|
virArchToString(def->arch));
|
|
|
|
virBufferAdjustIndent(buf, 2);
|
|
if (virCPUDefFormatBuf(buf, def, flags) < 0)
|
|
return -1;
|
|
virBufferAdjustIndent(buf, -2);
|
|
|
|
virBufferAddLit(buf, "</cpu>\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
virCPUDefFormatBuf(virBufferPtr buf,
|
|
virCPUDefPtr def,
|
|
unsigned int flags)
|
|
{
|
|
size_t i;
|
|
bool formatModel;
|
|
bool formatFallback;
|
|
|
|
if (!def)
|
|
return 0;
|
|
|
|
formatModel = (def->mode == VIR_CPU_MODE_CUSTOM ||
|
|
(flags & VIR_DOMAIN_XML_UPDATE_CPU));
|
|
formatFallback = (def->type == VIR_CPU_TYPE_GUEST &&
|
|
(def->mode == VIR_CPU_MODE_HOST_MODEL ||
|
|
(def->mode == VIR_CPU_MODE_CUSTOM && def->model)));
|
|
|
|
if (!def->model &&
|
|
def->mode != VIR_CPU_MODE_HOST_MODEL &&
|
|
def->nfeatures) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
_("Non-empty feature list specified without CPU model"));
|
|
return -1;
|
|
}
|
|
|
|
if ((formatModel && def->model) || formatFallback) {
|
|
virBufferAddLit(buf, "<model");
|
|
if (formatFallback) {
|
|
const char *fallback;
|
|
|
|
fallback = virCPUFallbackTypeToString(def->fallback);
|
|
if (!fallback) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Unexpected CPU fallback value: %d"),
|
|
def->fallback);
|
|
return -1;
|
|
}
|
|
virBufferAsprintf(buf, " fallback='%s'", fallback);
|
|
if (def->vendor_id)
|
|
virBufferAsprintf(buf, " vendor_id='%s'", def->vendor_id);
|
|
}
|
|
if (formatModel && def->model) {
|
|
virBufferAsprintf(buf, ">%s</model>\n", def->model);
|
|
} else {
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
}
|
|
|
|
if (formatModel && def->vendor)
|
|
virBufferAsprintf(buf, "<vendor>%s</vendor>\n", def->vendor);
|
|
|
|
if (def->sockets && def->cores && def->threads) {
|
|
virBufferAddLit(buf, "<topology");
|
|
virBufferAsprintf(buf, " sockets='%u'", def->sockets);
|
|
virBufferAsprintf(buf, " cores='%u'", def->cores);
|
|
virBufferAsprintf(buf, " threads='%u'", def->threads);
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
|
|
for (i = 0; i < def->nfeatures; i++) {
|
|
virCPUFeatureDefPtr 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 %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);
|
|
}
|
|
}
|
|
|
|
if (def->ncells) {
|
|
virBufferAddLit(buf, "<numa>\n");
|
|
for (i = 0; i < def->ncells; i++) {
|
|
virBufferAddLit(buf, " <cell");
|
|
virBufferAsprintf(buf, " cpus='%s'", def->cells[i].cpustr);
|
|
virBufferAsprintf(buf, " memory='%d'", def->cells[i].mem);
|
|
virBufferAddLit(buf, "/>\n");
|
|
}
|
|
virBufferAddLit(buf, "</numa>\n");
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
virCPUDefUpdateFeatureInternal(virCPUDefPtr def,
|
|
const char *name,
|
|
int policy,
|
|
bool update)
|
|
{
|
|
size_t i;
|
|
|
|
if (def->type == VIR_CPU_TYPE_HOST)
|
|
policy = -1;
|
|
|
|
for (i = 0; i < def->nfeatures; i++) {
|
|
if (STREQ(name, def->features[i].name)) {
|
|
if (update) {
|
|
def->features[i].policy = policy;
|
|
return 0;
|
|
}
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("CPU feature `%s' specified more than once"),
|
|
name);
|
|
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if (VIR_RESIZE_N(def->features, def->nfeatures_max,
|
|
def->nfeatures, 1) < 0)
|
|
return -1;
|
|
|
|
if (VIR_STRDUP(def->features[def->nfeatures].name, name) < 0)
|
|
return -1;
|
|
|
|
def->features[def->nfeatures].policy = policy;
|
|
def->nfeatures++;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
virCPUDefUpdateFeature(virCPUDefPtr def,
|
|
const char *name,
|
|
int policy)
|
|
{
|
|
return virCPUDefUpdateFeatureInternal(def, name, policy, true);
|
|
}
|
|
|
|
int
|
|
virCPUDefAddFeature(virCPUDefPtr def,
|
|
const char *name,
|
|
int policy)
|
|
{
|
|
return virCPUDefUpdateFeatureInternal(def, name, policy, false);
|
|
}
|
|
|
|
bool
|
|
virCPUDefIsEqual(virCPUDefPtr src,
|
|
virCPUDefPtr dst)
|
|
{
|
|
bool identical = false;
|
|
size_t i;
|
|
|
|
if (!src && !dst)
|
|
return true;
|
|
|
|
if ((src && !dst) || (!src && dst)) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
_("Target CPU does not match source"));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->type != dst->type) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU type %s does not match source %s"),
|
|
virCPUTypeToString(dst->type),
|
|
virCPUTypeToString(src->type));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->mode != dst->mode) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU mode %s does not match source %s"),
|
|
virCPUModeTypeToString(dst->mode),
|
|
virCPUModeTypeToString(src->mode));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->arch != dst->arch) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU arch %s does not match source %s"),
|
|
virArchToString(dst->arch),
|
|
virArchToString(src->arch));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (STRNEQ_NULLABLE(src->model, dst->model)) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU model %s does not match source %s"),
|
|
NULLSTR(dst->model), NULLSTR(src->model));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (STRNEQ_NULLABLE(src->vendor, dst->vendor)) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU vendor %s does not match source %s"),
|
|
NULLSTR(dst->vendor), NULLSTR(src->vendor));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (STRNEQ_NULLABLE(src->vendor_id, dst->vendor_id)) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU vendor id %s does not match source %s"),
|
|
NULLSTR(dst->vendor_id), NULLSTR(src->vendor_id));
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->sockets != dst->sockets) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU sockets %d does not match source %d"),
|
|
dst->sockets, src->sockets);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->cores != dst->cores) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU cores %d does not match source %d"),
|
|
dst->cores, src->cores);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->threads != dst->threads) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU threads %d does not match source %d"),
|
|
dst->threads, src->threads);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->nfeatures != dst->nfeatures) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU feature count %zu does not match source %zu"),
|
|
dst->nfeatures, src->nfeatures);
|
|
goto cleanup;
|
|
}
|
|
|
|
for (i = 0; i < src->nfeatures; i++) {
|
|
if (STRNEQ(src->features[i].name, dst->features[i].name)) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU feature %s does not match source %s"),
|
|
dst->features[i].name, src->features[i].name);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (src->features[i].policy != dst->features[i].policy) {
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
_("Target CPU feature policy %s does not match source %s"),
|
|
virCPUFeaturePolicyTypeToString(dst->features[i].policy),
|
|
virCPUFeaturePolicyTypeToString(src->features[i].policy));
|
|
goto cleanup;
|
|
}
|
|
}
|
|
|
|
identical = true;
|
|
|
|
cleanup:
|
|
return identical;
|
|
}
|