cpu.c 8.6 KB
Newer Older
J
Jiri Denemark 已提交
1 2 3
/*
 * cpu.c: internal functions for CPU manipulation
 *
4
 * Copyright (C) 2009--2010 Red Hat, Inc.
J
Jiri Denemark 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * 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>

26
#include "memory.h"
J
Jiri Denemark 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#include "xml.h"
#include "cpu.h"
#include "cpu_x86.h"
#include "cpu_generic.h"


#define NR_DRIVERS ARRAY_CARDINALITY(drivers)
#define VIR_FROM_THIS VIR_FROM_CPU

static struct cpuArchDriver *drivers[] = {
    &cpuDriverX86,
    /* generic driver must always be the last one */
    &cpuDriverGeneric
};


static struct cpuArchDriver *
44
cpuGetSubDriver(const char *arch)
J
Jiri Denemark 已提交
45 46 47 48 49
{
    unsigned int i;
    unsigned int j;

    if (arch == NULL) {
50
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
51
                          "%s", _("undefined hardware architecture"));
J
Jiri Denemark 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
        return NULL;
    }

    for (i = 0; i < NR_DRIVERS - 1; i++) {
        for (j = 0; j < drivers[i]->narch; j++) {
            if (STREQ(arch, drivers[i]->arch[j]))
                return drivers[i];
        }
    }

    /* use generic driver by default */
    return drivers[NR_DRIVERS - 1];
}


virCPUCompareResult
68
cpuCompareXML(virCPUDefPtr host,
J
Jiri Denemark 已提交
69 70 71 72 73 74 75 76 77 78
              const char *xml)
{
    xmlDocPtr doc = NULL;
    xmlXPathContextPtr ctxt = NULL;
    virCPUDefPtr cpu = NULL;
    virCPUCompareResult ret = VIR_CPU_COMPARE_ERROR;

    doc = xmlParseMemory(xml, strlen(xml));

    if (doc == NULL || (ctxt = xmlXPathNewContext(doc)) == NULL) {
79
        virReportOOMError();
J
Jiri Denemark 已提交
80 81 82 83 84
        goto cleanup;
    }

    ctxt->node = xmlDocGetRootElement(doc);

85
    cpu = virCPUDefParseXML(ctxt->node, ctxt, VIR_CPU_TYPE_AUTO);
J
Jiri Denemark 已提交
86 87 88
    if (cpu == NULL)
        goto cleanup;

89
    ret = cpuCompare(host, cpu);
J
Jiri Denemark 已提交
90 91 92 93 94 95 96 97 98 99 100

cleanup:
    virCPUDefFree(cpu);
    xmlXPathFreeContext(ctxt);
    xmlFreeDoc(doc);

    return ret;
}


virCPUCompareResult
101
cpuCompare(virCPUDefPtr host,
J
Jiri Denemark 已提交
102 103 104 105
           virCPUDefPtr cpu)
{
    struct cpuArchDriver *driver;

106
    if ((driver = cpuGetSubDriver(host->arch)) == NULL)
J
Jiri Denemark 已提交
107 108 109
        return VIR_CPU_COMPARE_ERROR;

    if (driver->compare == NULL) {
110
        virCPUReportError(VIR_ERR_NO_SUPPORT,
J
Jiri Denemark 已提交
111 112 113 114 115 116 117 118 119 120
                _("cannot compare CPUs of %s architecture"),
                host->arch);
        return VIR_CPU_COMPARE_ERROR;
    }

    return driver->compare(host, cpu);
}


int
121
cpuDecode(virCPUDefPtr cpu,
J
Jiri Denemark 已提交
122
          const union cpuData *data,
123 124
          const char **models,
          unsigned int nmodels)
J
Jiri Denemark 已提交
125 126 127
{
    struct cpuArchDriver *driver;

128
    if (models == NULL && nmodels != 0) {
129
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
130 131 132 133
                "%s", _("nonzero nmodels doesn't match with NULL models"));
        return -1;
    }

J
Jiri Denemark 已提交
134
    if (cpu == NULL) {
135
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
136
                          "%s", _("invalid CPU definition"));
J
Jiri Denemark 已提交
137 138 139
        return -1;
    }

140
    if ((driver = cpuGetSubDriver(cpu->arch)) == NULL)
J
Jiri Denemark 已提交
141 142 143
        return -1;

    if (driver->decode == NULL) {
144
        virCPUReportError(VIR_ERR_NO_SUPPORT,
J
Jiri Denemark 已提交
145 146 147 148 149
                _("cannot decode CPU data for %s architecture"),
                cpu->arch);
        return -1;
    }

150
    return driver->decode(cpu, data, models, nmodels);
J
Jiri Denemark 已提交
151 152 153 154
}


int
155
cpuEncode(const char *arch,
J
Jiri Denemark 已提交
156 157 158 159 160 161 162 163 164
          const virCPUDefPtr cpu,
          union cpuData **forced,
          union cpuData **required,
          union cpuData **optional,
          union cpuData **disabled,
          union cpuData **forbidden)
{
    struct cpuArchDriver *driver;

165
    if ((driver = cpuGetSubDriver(arch)) == NULL)
J
Jiri Denemark 已提交
166 167 168
        return -1;

    if (driver->encode == NULL) {
169
        virCPUReportError(VIR_ERR_NO_SUPPORT,
J
Jiri Denemark 已提交
170 171 172 173 174 175 176 177 178 179 180
                _("cannot encode CPU data for %s architecture"),
                arch);
        return -1;
    }

    return driver->encode(cpu, forced, required,
                          optional, disabled, forbidden);
}


void
181
cpuDataFree(const char *arch,
J
Jiri Denemark 已提交
182 183 184 185 186 187 188
            union cpuData *data)
{
    struct cpuArchDriver *driver;

    if (data == NULL)
        return;

189
    if ((driver = cpuGetSubDriver(arch)) == NULL)
J
Jiri Denemark 已提交
190 191 192
        return;

    if (driver->free == NULL) {
193
        virCPUReportError(VIR_ERR_NO_SUPPORT,
J
Jiri Denemark 已提交
194 195 196 197 198 199 200 201 202 203
                _("cannot free CPU data for %s architecture"),
                arch);
        return;
    }

    driver->free(data);
}


union cpuData *
204
cpuNodeData(const char *arch)
J
Jiri Denemark 已提交
205 206 207
{
    struct cpuArchDriver *driver;

208
    if ((driver = cpuGetSubDriver(arch)) == NULL)
J
Jiri Denemark 已提交
209 210 211
        return NULL;

    if (driver->nodeData == NULL) {
212
        virCPUReportError(VIR_ERR_NO_SUPPORT,
J
Jiri Denemark 已提交
213 214 215 216 217 218 219 220 221 222
                _("cannot get node CPU data for %s architecture"),
                arch);
        return NULL;
    }

    return driver->nodeData();
}


virCPUCompareResult
223
cpuGuestData(virCPUDefPtr host,
J
Jiri Denemark 已提交
224 225 226 227 228
             virCPUDefPtr guest,
             union cpuData **data)
{
    struct cpuArchDriver *driver;

229
    if ((driver = cpuGetSubDriver(host->arch)) == NULL)
J
Jiri Denemark 已提交
230 231 232
        return VIR_CPU_COMPARE_ERROR;

    if (driver->guestData == NULL) {
233
        virCPUReportError(VIR_ERR_NO_SUPPORT,
J
Jiri Denemark 已提交
234 235 236 237 238 239 240
                _("cannot compute guest CPU data for %s architecture"),
                host->arch);
        return VIR_CPU_COMPARE_ERROR;
    }

    return driver->guestData(host, guest, data);
}
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360


char *
cpuBaselineXML(const char **xmlCPUs,
               unsigned int ncpus,
               const char **models,
               unsigned int nmodels)
{
    xmlDocPtr doc = NULL;
    xmlXPathContextPtr ctxt = NULL;
    virCPUDefPtr *cpus = NULL;
    virCPUDefPtr cpu = NULL;
    char *cpustr;
    unsigned int i;

    if (xmlCPUs == NULL && ncpus != 0) {
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
                "%s", _("nonzero ncpus doesn't match with NULL xmlCPUs"));
        return NULL;
    }

    if (ncpus < 1) {
        virCPUReportError(VIR_ERR_INVALID_ARG, "%s", _("No CPUs given"));
        return NULL;
    }

    if (VIR_ALLOC_N(cpus, ncpus))
        goto no_memory;

    for (i = 0; i < ncpus; i++) {
        doc = xmlParseMemory(xmlCPUs[i], strlen(xmlCPUs[i]));
        if (doc == NULL || (ctxt = xmlXPathNewContext(doc)) == NULL)
            goto no_memory;

        ctxt->node = xmlDocGetRootElement(doc);

        cpus[i] = virCPUDefParseXML(ctxt->node, ctxt, VIR_CPU_TYPE_HOST);
        if (cpus[i] == NULL)
            goto error;

        xmlXPathFreeContext(ctxt);
        xmlFreeDoc(doc);
        ctxt = NULL;
        doc = NULL;
    }

    if (!(cpu = cpuBaseline(cpus, ncpus, models, nmodels)))
        goto error;

    cpustr = virCPUDefFormat(cpu, "", 0);

cleanup:
    if (cpus) {
        for (i = 0; i < ncpus; i++)
            virCPUDefFree(cpus[i]);
        VIR_FREE(cpus);
    }
    virCPUDefFree(cpu);
    xmlXPathFreeContext(ctxt);
    xmlFreeDoc(doc);

    return cpustr;

no_memory:
    virReportOOMError();
error:
    cpustr = NULL;
    goto cleanup;
}


virCPUDefPtr
cpuBaseline(virCPUDefPtr *cpus,
            unsigned int ncpus,
            const char **models,
            unsigned int nmodels)
{
    struct cpuArchDriver *driver;
    virCPUDefPtr cpu;

    if (cpus == NULL && ncpus != 0) {
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
                "%s", _("nonzero ncpus doesn't match with NULL cpus"));
        return NULL;
    }

    if (ncpus < 1) {
        virCPUReportError(VIR_ERR_INVALID_ARG, "%s", _("No CPUs given"));
        return NULL;
    }

    if (models == NULL && nmodels != 0) {
        virCPUReportError(VIR_ERR_INTERNAL_ERROR,
                "%s", _("nonzero nmodels doesn't match with NULL models"));
        return NULL;
    }

    if ((driver = cpuGetSubDriver(cpus[0]->arch)) == NULL)
        return NULL;

    if (driver->baseline == NULL) {
        virCPUReportError(VIR_ERR_NO_SUPPORT,
                _("cannot compute baseline CPU of %s architecture"),
                cpus[0]->arch);
        return NULL;
    }

    if ((cpu = driver->baseline(cpus, ncpus, models, nmodels))) {
        int i;

        cpu->type = VIR_CPU_TYPE_GUEST;
        cpu->match = VIR_CPU_MATCH_EXACT;
        VIR_FREE(cpu->arch);

        for (i = 0; i < cpu->nfeatures; i++)
            cpu->features[i].policy = VIR_CPU_FEATURE_REQUIRE;
    }

    return cpu;
}