cpu_conf.c 11.2 KB
Newer Older
1 2 3
/*
 * cpu_conf.h: CPU XML handling
 *
4
 * Copyright (C) 2009, 2010 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Authors:
 *      Jiri Denemark <jdenemar@redhat.com>
 */

#include <config.h>

#include "virterror_internal.h"
#include "memory.h"
#include "util.h"
#include "buf.h"
#include "cpu_conf.h"

#define VIR_FROM_THIS VIR_FROM_CPU

34
#define virCPUReportError(code, ...)                              \
35
    virReportErrorHelper(NULL, VIR_FROM_CPU, code, __FILE__,      \
36
                         __FUNCTION__, __LINE__, __VA_ARGS__)
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

VIR_ENUM_IMPL(virCPUMatch, VIR_CPU_MATCH_LAST,
              "minimum",
              "exact",
              "strict")

VIR_ENUM_IMPL(virCPUFeaturePolicy, VIR_CPU_FEATURE_LAST,
              "force",
              "require",
              "optional",
              "disable",
              "forbid")


void
virCPUDefFree(virCPUDefPtr def)
{
    unsigned int i;

    if (!def)
        return;

    VIR_FREE(def->model);
    VIR_FREE(def->arch);

    for (i = 0 ; i < def->nfeatures ; i++)
        VIR_FREE(def->features[i].name);
    VIR_FREE(def->features);

    VIR_FREE(def);
}


70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
virCPUDefPtr
virCPUDefCopy(const virCPUDefPtr cpu)
{
    virCPUDefPtr copy;
    unsigned int i;

    if (!cpu)
        return NULL;

    if (VIR_ALLOC(copy) < 0
        || (cpu->arch && !(copy->arch = strdup(cpu->arch)))
        || (cpu->model && !(copy->model = strdup(cpu->model)))
        || VIR_ALLOC_N(copy->features, cpu->nfeatures) < 0)
        goto no_memory;

    copy->type = cpu->type;
    copy->match = cpu->match;
    copy->sockets = cpu->sockets;
    copy->cores = cpu->cores;
    copy->threads = cpu->threads;
    copy->nfeatures = cpu->nfeatures;

    for (i = 0; i < copy->nfeatures; i++) {
        copy->features[i].policy = cpu->features[i].policy;
        if (!(copy->features[i].name = strdup(cpu->features[i].name)))
            goto no_memory;
    }

    return copy;

no_memory:
    virReportOOMError();
    virCPUDefFree(copy);
    return NULL;
}


107 108
#ifndef PROXY
virCPUDefPtr
109
virCPUDefParseXML(const xmlNodePtr node,
110 111 112 113 114 115 116 117 118
                  xmlXPathContextPtr ctxt,
                  enum virCPUType mode)
{
    virCPUDefPtr def;
    xmlNodePtr *nodes = NULL;
    int n;
    unsigned int i;

    if (VIR_ALLOC(def) < 0) {
119
        virReportOOMError();
120 121 122
        return NULL;
    }

123
    if (mode == VIR_CPU_TYPE_AUTO) {
124
        if (virXPathBoolean("boolean(./arch)", ctxt))
125 126 127 128
            def->type = VIR_CPU_TYPE_HOST;
        else
            def->type = VIR_CPU_TYPE_GUEST;
    } else
129 130 131
        def->type = mode;

    if (def->type == VIR_CPU_TYPE_GUEST) {
132 133 134
        char *match = virXMLPropString(node, "match");

        if (!match) {
135
            if (virXPathBoolean("boolean(./model)", ctxt)) {
136
                virCPUReportError(VIR_ERR_INTERNAL_ERROR,
137 138 139 140 141 142 143 144 145
                        "%s", _("Missing match attribute for CPU specification"));
                goto error;
            }
            def->match = -1;
        } else {
            def->match = virCPUMatchTypeFromString(match);
            VIR_FREE(match);

            if (def->match < 0) {
146
                virCPUReportError(VIR_ERR_INTERNAL_ERROR,
147 148 149
                        "%s", _("Invalid match attribute for CPU specification"));
                goto error;
            }
150 151 152 153
        }
    }

    if (def->type == VIR_CPU_TYPE_HOST) {
154
        def->arch = virXPathString("string(./arch[1])", ctxt);
155
        if (!def->arch) {
156
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
157 158 159 160 161
                    "%s", _("Missing CPU architecture"));
            goto error;
        }
    }

162
    if (!(def->model = virXPathString("string(./model[1])", ctxt)) &&
163
        def->type == VIR_CPU_TYPE_HOST) {
164
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
165 166 167 168
                "%s", _("Missing CPU model name"));
        goto error;
    }

169
    if (virXPathNode("./topology[1]", ctxt)) {
170 171 172
        int ret;
        unsigned long ul;

173
        ret = virXPathULong("string(./topology[1]/@sockets)",
174 175
                            ctxt, &ul);
        if (ret < 0) {
176
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
177 178 179 180 181
                    "%s", _("Missing 'sockets' attribute in CPU topology"));
            goto error;
        }
        def->sockets = (unsigned int) ul;

182
        ret = virXPathULong("string(./topology[1]/@cores)",
183 184
                            ctxt, &ul);
        if (ret < 0) {
185
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
186 187 188 189 190
                    "%s", _("Missing 'cores' attribute in CPU topology"));
            goto error;
        }
        def->cores = (unsigned int) ul;

191
        ret = virXPathULong("string(./topology[1]/@threads)",
192 193
                            ctxt, &ul);
        if (ret < 0) {
194
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
195 196 197 198 199 200
                    "%s", _("Missing 'threads' attribute in CPU topology"));
            goto error;
        }
        def->threads = (unsigned int) ul;

        if (!def->sockets || !def->cores || !def->threads) {
201
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
202 203 204 205 206
                    "%s", _("Invalid CPU topology"));
            goto error;
        }
    }

207
    n = virXPathNodeSet("./feature", ctxt, &nodes);
208 209 210 211
    if (n < 0)
        goto error;

    if (n > 0) {
212
        if (!def->model) {
213
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
214 215 216 217
                    "%s", _("Non-empty feature list specified without CPU model"));
            goto error;
        }

218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
        if (VIR_ALLOC_N(def->features, n) < 0)
            goto no_memory;
        def->nfeatures = n;
    }

    for (i = 0 ; i < n ; i++) {
        char *name;
        int policy; /* enum virDomainCPUFeaturePolicy */
        unsigned int j;

        if (def->type == VIR_CPU_TYPE_GUEST) {
            char *strpolicy;

            strpolicy = virXMLPropString(nodes[i], "policy");
            policy = virCPUFeaturePolicyTypeFromString(strpolicy);
            VIR_FREE(strpolicy);

            if (policy < 0) {
236
                virCPUReportError(VIR_ERR_INTERNAL_ERROR,
237 238 239 240 241 242 243 244 245
                        "%s", _("Invalid CPU feature policy"));
                goto error;
            }
        }
        else
            policy = -1;

        if (!(name = virXMLPropString(nodes[i], "name")) || *name == 0) {
            VIR_FREE(name);
246
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
247 248 249 250 251 252
                    "%s", _("Invalid CPU feature name"));
            goto error;
        }

        for (j = 0 ; j < i ; j++) {
            if (STREQ(name, def->features[j].name)) {
253
                virCPUReportError(VIR_ERR_INTERNAL_ERROR,
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
                        _("CPU feature `%s' specified more than once"),
                        name);
                VIR_FREE(name);
                goto error;
            }
        }

        def->features[i].name = name;
        def->features[i].policy = policy;
    }

cleanup:
    VIR_FREE(nodes);

    return def;

no_memory:
271
    virReportOOMError();
272 273 274 275 276 277 278 279 280 281

error:
    virCPUDefFree(def);
    def = NULL;
    goto cleanup;
}
#endif


char *
282
virCPUDefFormat(virCPUDefPtr def,
283 284 285 286 287
                const char *indent,
                int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

288
    if (virCPUDefFormatBuf(&buf, def, indent, flags) < 0)
289 290 291 292 293 294 295 296
        goto cleanup;

    if (virBufferError(&buf))
        goto no_memory;

    return virBufferContentAndReset(&buf);

no_memory:
297
    virReportOOMError();
298
cleanup:
299
    virBufferFreeAndReset(&buf);
300 301 302 303 304
    return NULL;
}


int
305
virCPUDefFormatBuf(virBufferPtr buf,
306 307 308 309 310 311 312 313 314 315 316 317
                   virCPUDefPtr def,
                   const char *indent,
                   int flags)
{
    unsigned int i;

    if (!def)
        return 0;

    if (indent == NULL)
        indent = "";

318
    if (!def->model && def->nfeatures) {
319
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
320
                "%s", _("Non-empty feature list specified without CPU model"));
321 322 323 324
        return -1;
    }

    if (!(flags & VIR_CPU_FORMAT_EMBEDED)) {
325
        if (def->type == VIR_CPU_TYPE_GUEST && def->model) {
326 327
            const char *match;
            if (!(match = virCPUMatchTypeToString(def->match))) {
328
                virCPUReportError(VIR_ERR_INTERNAL_ERROR,
329 330 331 332 333 334 335 336 337 338 339 340 341
                        _("Unexpected CPU match policy %d"), def->match);
                return -1;
            }

            virBufferVSprintf(buf, "%s<cpu match='%s'>\n", indent, match);
        }
        else
            virBufferVSprintf(buf, "%s<cpu>\n", indent);

        if (def->arch)
            virBufferVSprintf(buf, "%s  <arch>%s</arch>\n", indent, def->arch);
    }

342 343
    if (def->model)
        virBufferVSprintf(buf, "%s  <model>%s</model>\n", indent, def->model);
344 345 346 347 348 349 350 351 352 353 354 355 356

    if (def->sockets && def->cores && def->threads) {
        virBufferVSprintf(buf, "%s  <topology", indent);
        virBufferVSprintf(buf, " sockets='%u'", def->sockets);
        virBufferVSprintf(buf, " cores='%u'", def->cores);
        virBufferVSprintf(buf, " threads='%u'", def->threads);
        virBufferAddLit(buf, "/>\n");
    }

    for (i = 0 ; i < def->nfeatures ; i++) {
        virCPUFeatureDefPtr feature = def->features + i;

        if (!feature->name) {
357
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
358 359 360 361 362 363 364 365 366
                    "%s", _("Missing CPU feature name"));
            return -1;
        }

        if (def->type == VIR_CPU_TYPE_GUEST) {
            const char *policy;

            policy = virCPUFeaturePolicyTypeToString(feature->policy);
            if (!policy) {
367
                virCPUReportError(VIR_ERR_INTERNAL_ERROR,
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
                        _("Unexpected CPU feature policy %d"), feature->policy);
                return -1;
            }
            virBufferVSprintf(buf, "%s  <feature policy='%s' name='%s'/>\n",
                    indent, policy, feature->name);
        }
        else {
            virBufferVSprintf(buf, "%s  <feature name='%s'/>\n",
                    indent, feature->name);
        }
    }

    if (!(flags & VIR_CPU_FORMAT_EMBEDED))
        virBufferVSprintf(buf, "%s</cpu>\n", indent);

    return 0;
}


int
388
virCPUDefAddFeature(virCPUDefPtr def,
389 390 391 392 393 394 395
                    const char *name,
                    int policy)
{
    int i;

    for (i = 0 ; i < def->nfeatures ; i++) {
        if (STREQ(name, def->features[i].name)) {
396
            virCPUReportError(VIR_ERR_INTERNAL_ERROR,
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
                    _("CPU feature `%s' specified more than once"), name);
            return -1;
        }
    }

    if (VIR_REALLOC_N(def->features, def->nfeatures + 1) < 0)
        goto no_memory;

    if (def->type == VIR_CPU_TYPE_HOST)
        policy = -1;

    if (!(def->features[def->nfeatures].name = strdup(name)))
        goto no_memory;

    def->features[def->nfeatures].policy = policy;
    def->nfeatures++;

    return 0;

no_memory:
417
    virReportOOMError();
418 419
    return -1;
}