cpu_x86.c 80.6 KB
Newer Older
J
Jiri Denemark 已提交
1 2 3
/*
 * cpu_x86.c: CPU driver for CPUs with x86 compatible CPUID instruction
 *
4
 * Copyright (C) 2009-2014 Red Hat, Inc.
J
Jiri Denemark 已提交
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
J
Jiri Denemark 已提交
19 20 21 22 23
 */

#include <config.h>


24
#include "virlog.h"
25
#include "viralloc.h"
J
Jiri Denemark 已提交
26 27 28
#include "cpu.h"
#include "cpu_map.h"
#include "cpu_x86.h"
29
#include "virbuffer.h"
E
Eric Blake 已提交
30
#include "virendian.h"
31
#include "virstring.h"
32
#include "virhostcpu.h"
J
Jiri Denemark 已提交
33 34 35

#define VIR_FROM_THIS VIR_FROM_CPU

36 37
VIR_LOG_INIT("cpu.cpu_x86");

J
Jiri Denemark 已提交
38 39
#define VENDOR_STRING_LENGTH    12

40
static const virCPUx86CPUID cpuidNull = { 0 };
J
Jiri Denemark 已提交
41

42
static const virArch archs[] = { VIR_ARCH_I686, VIR_ARCH_X86_64 };
J
Jiri Denemark 已提交
43

44 45 46
typedef struct _virCPUx86Vendor virCPUx86Vendor;
typedef virCPUx86Vendor *virCPUx86VendorPtr;
struct _virCPUx86Vendor {
J
Jiri Denemark 已提交
47
    char *name;
48
    virCPUx86CPUID cpuid;
J
Jiri Denemark 已提交
49 50
};

51 52 53
typedef struct _virCPUx86Feature virCPUx86Feature;
typedef virCPUx86Feature *virCPUx86FeaturePtr;
struct _virCPUx86Feature {
J
Jiri Denemark 已提交
54
    char *name;
55
    virCPUx86Data data;
J
Jiri Denemark 已提交
56
    bool migratable;
J
Jiri Denemark 已提交
57 58
};

59

60 61 62
#define KVM_FEATURE_DEF(Name, Eax_in, Eax) \
    static virCPUx86CPUID Name ## _cpuid[] = { \
        { .eax_in = Eax_in, .eax = Eax }, \
63 64
    }

65 66 67 68 69 70 71
#define KVM_FEATURE(Name) \
    { \
        .name = (char *) Name, \
        .data = { \
            .len = ARRAY_CARDINALITY(Name ## _cpuid), \
            .data = Name ## _cpuid \
        } \
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
    }

KVM_FEATURE_DEF(VIR_CPU_x86_KVM_CLOCKSOURCE,
                0x40000001, 0x00000001);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_NOP_IO_DELAY,
                0x40000001, 0x00000002);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_MMU_OP,
                0x40000001, 0x00000004);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_CLOCKSOURCE2,
                0x40000001, 0x00000008);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_ASYNC_PF,
                0x40000001, 0x00000010);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_STEAL_TIME,
                0x40000001, 0x00000020);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_PV_EOI,
                0x40000001, 0x00000040);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_PV_UNHALT,
                0x40000001, 0x00000080);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_CLOCKSOURCE_STABLE_BIT,
                0x40000001, 0x01000000);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_RUNTIME,
                0x40000003, 0x00000001);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_SYNIC,
                0x40000003, 0x00000004);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_STIMER,
                0x40000003, 0x00000008);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_RELAXED,
                0x40000003, 0x00000020);
100
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_SPINLOCKS,
101 102 103 104 105 106 107
                0x40000003, 0x00000022);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_VAPIC,
                0x40000003, 0x00000030);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_VPINDEX,
                0x40000003, 0x00000040);
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_RESET,
                0x40000003, 0x00000080);
108 109
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_FREQUENCIES,
                0x40000003, 0x00000800);
110 111
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_REENLIGHTENMENT,
                0x40000003, 0x00002000);
112 113
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_TLBFLUSH,
                0x40000004, 0x00000004);
114 115
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_IPI,
                0x40000004, 0x00000400);
116 117
KVM_FEATURE_DEF(VIR_CPU_x86_KVM_HV_EVMCS,
                0x40000004, 0x00004000);
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133

static virCPUx86Feature x86_kvm_features[] =
{
    KVM_FEATURE(VIR_CPU_x86_KVM_CLOCKSOURCE),
    KVM_FEATURE(VIR_CPU_x86_KVM_NOP_IO_DELAY),
    KVM_FEATURE(VIR_CPU_x86_KVM_MMU_OP),
    KVM_FEATURE(VIR_CPU_x86_KVM_CLOCKSOURCE2),
    KVM_FEATURE(VIR_CPU_x86_KVM_ASYNC_PF),
    KVM_FEATURE(VIR_CPU_x86_KVM_STEAL_TIME),
    KVM_FEATURE(VIR_CPU_x86_KVM_PV_EOI),
    KVM_FEATURE(VIR_CPU_x86_KVM_PV_UNHALT),
    KVM_FEATURE(VIR_CPU_x86_KVM_CLOCKSOURCE_STABLE_BIT),
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_RUNTIME),
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_SYNIC),
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_STIMER),
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_RELAXED),
134
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_SPINLOCKS),
135 136 137
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_VAPIC),
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_VPINDEX),
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_RESET),
138
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_FREQUENCIES),
139
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_REENLIGHTENMENT),
140
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_TLBFLUSH),
141
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_IPI),
142
    KVM_FEATURE(VIR_CPU_x86_KVM_HV_EVMCS),
143 144
};

J
Jiri Denemark 已提交
145 146 147
typedef struct _virCPUx86Model virCPUx86Model;
typedef virCPUx86Model *virCPUx86ModelPtr;
struct _virCPUx86Model {
J
Jiri Denemark 已提交
148
    char *name;
149
    virCPUx86VendorPtr vendor;
150 151
    size_t nsignatures;
    uint32_t *signatures;
152
    virCPUx86Data data;
J
Jiri Denemark 已提交
153 154
};

J
Jiri Denemark 已提交
155 156 157
typedef struct _virCPUx86Map virCPUx86Map;
typedef virCPUx86Map *virCPUx86MapPtr;
struct _virCPUx86Map {
158 159
    size_t nvendors;
    virCPUx86VendorPtr *vendors;
160 161
    size_t nfeatures;
    virCPUx86FeaturePtr *features;
162 163
    size_t nmodels;
    virCPUx86ModelPtr *models;
164 165
    size_t nblockers;
    virCPUx86FeaturePtr *migrate_blockers;
J
Jiri Denemark 已提交
166 167
};

J
Jiri Denemark 已提交
168
static virCPUx86MapPtr cpuMap;
169

170 171
int virCPUx86DriverOnceInit(void);
VIR_ONCE_GLOBAL_INIT(virCPUx86Driver);
172

J
Jiri Denemark 已提交
173

174
typedef enum {
J
Jiri Denemark 已提交
175 176 177 178
    SUBSET,
    EQUAL,
    SUPERSET,
    UNRELATED
179
} virCPUx86CompareResult;
J
Jiri Denemark 已提交
180 181


182 183 184
typedef struct _virCPUx86DataIterator virCPUx86DataIterator;
typedef virCPUx86DataIterator *virCPUx86DataIteratorPtr;
struct _virCPUx86DataIterator {
185
    const virCPUx86Data *data;
J
Jiri Denemark 已提交
186 187
    int pos;
};
J
Jiri Denemark 已提交
188 189


190
#define virCPUx86DataIteratorInit(data) \
191
    { data, -1 }
J
Jiri Denemark 已提交
192 193


194
static bool
195 196
x86cpuidMatch(const virCPUx86CPUID *cpuid1,
              const virCPUx86CPUID *cpuid2)
J
Jiri Denemark 已提交
197 198 199 200 201 202 203 204
{
    return (cpuid1->eax == cpuid2->eax &&
            cpuid1->ebx == cpuid2->ebx &&
            cpuid1->ecx == cpuid2->ecx &&
            cpuid1->edx == cpuid2->edx);
}


205
static bool
206 207
x86cpuidMatchMasked(const virCPUx86CPUID *cpuid,
                    const virCPUx86CPUID *mask)
J
Jiri Denemark 已提交
208 209 210 211 212 213 214 215
{
    return ((cpuid->eax & mask->eax) == mask->eax &&
            (cpuid->ebx & mask->ebx) == mask->ebx &&
            (cpuid->ecx & mask->ecx) == mask->ecx &&
            (cpuid->edx & mask->edx) == mask->edx);
}


J
Jiri Denemark 已提交
216
static void
217 218
x86cpuidSetBits(virCPUx86CPUID *cpuid,
                const virCPUx86CPUID *mask)
J
Jiri Denemark 已提交
219
{
220 221 222
    if (!mask)
        return;

J
Jiri Denemark 已提交
223 224 225 226 227 228 229
    cpuid->eax |= mask->eax;
    cpuid->ebx |= mask->ebx;
    cpuid->ecx |= mask->ecx;
    cpuid->edx |= mask->edx;
}


J
Jiri Denemark 已提交
230
static void
231 232
x86cpuidClearBits(virCPUx86CPUID *cpuid,
                  const virCPUx86CPUID *mask)
J
Jiri Denemark 已提交
233
{
234 235 236
    if (!mask)
        return;

J
Jiri Denemark 已提交
237 238 239 240 241 242 243
    cpuid->eax &= ~mask->eax;
    cpuid->ebx &= ~mask->ebx;
    cpuid->ecx &= ~mask->ecx;
    cpuid->edx &= ~mask->edx;
}


J
Jiri Denemark 已提交
244
static void
245 246
x86cpuidAndBits(virCPUx86CPUID *cpuid,
                const virCPUx86CPUID *mask)
247
{
248 249 250
    if (!mask)
        return;

251 252 253 254 255 256
    cpuid->eax &= mask->eax;
    cpuid->ebx &= mask->ebx;
    cpuid->ecx &= mask->ecx;
    cpuid->edx &= mask->edx;
}

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

static virCPUx86FeaturePtr
x86FeatureFind(virCPUx86MapPtr map,
               const char *name)
{
    size_t i;

    for (i = 0; i < map->nfeatures; i++) {
        if (STREQ(map->features[i]->name, name))
            return map->features[i];
    }

    return NULL;
}


static virCPUx86FeaturePtr
x86FeatureFindInternal(const char *name)
{
    size_t i;
    size_t count = ARRAY_CARDINALITY(x86_kvm_features);

    for (i = 0; i < count; i++) {
        if (STREQ(x86_kvm_features[i].name, name))
            return x86_kvm_features + i;
    }

    return NULL;
}


288 289 290 291 292 293
static int
virCPUx86CPUIDSorter(const void *a, const void *b)
{
    virCPUx86CPUID *da = (virCPUx86CPUID *) a;
    virCPUx86CPUID *db = (virCPUx86CPUID *) b;

294
    if (da->eax_in > db->eax_in)
295
        return 1;
296
    else if (da->eax_in < db->eax_in)
297 298
        return -1;

299 300 301 302 303
    if (da->ecx_in > db->ecx_in)
        return 1;
    else if (da->ecx_in < db->ecx_in)
        return -1;

304 305 306
    return 0;
}

307

308
/* skips all zero CPUID leaves */
309
static virCPUx86CPUID *
310
x86DataCpuidNext(virCPUx86DataIteratorPtr iterator)
J
Jiri Denemark 已提交
311
{
312
    const virCPUx86Data *data = iterator->data;
J
Jiri Denemark 已提交
313

314
    if (!data)
J
Jiri Denemark 已提交
315 316
        return NULL;

317 318 319 320
    while (++iterator->pos < data->len) {
        if (!x86cpuidMatch(data->data + iterator->pos, &cpuidNull))
            return data->data + iterator->pos;
    }
J
Jiri Denemark 已提交
321

322
    return NULL;
J
Jiri Denemark 已提交
323 324 325
}


326
static virCPUx86CPUID *
327
x86DataCpuid(const virCPUx86Data *data,
328
             const virCPUx86CPUID *cpuid)
J
Jiri Denemark 已提交
329
{
330
    size_t i;
J
Jiri Denemark 已提交
331

332
    for (i = 0; i < data->len; i++) {
333 334
        if (data->data[i].eax_in == cpuid->eax_in &&
            data->data[i].ecx_in == cpuid->ecx_in)
335
            return data->data + i;
J
Jiri Denemark 已提交
336 337
    }

338
    return NULL;
J
Jiri Denemark 已提交
339 340
}

341
static void
342
virCPUx86DataClear(virCPUx86Data *data)
J
Jiri Denemark 已提交
343
{
344
    if (!data)
J
Jiri Denemark 已提交
345 346
        return;

347
    VIR_FREE(data->data);
J
Jiri Denemark 已提交
348 349 350
}


351
static void
J
Jiri Denemark 已提交
352
virCPUx86DataFree(virCPUDataPtr data)
353 354 355 356
{
    if (!data)
        return;

357
    virCPUx86DataClear(&data->data.x86);
358 359 360 361
    VIR_FREE(data);
}


362 363
static int
x86DataCopy(virCPUx86Data *dst, const virCPUx86Data *src)
J
Jiri Denemark 已提交
364
{
365
    size_t i;
J
Jiri Denemark 已提交
366

367 368
    if (VIR_ALLOC_N(dst->data, src->len) < 0)
        return -1;
J
Jiri Denemark 已提交
369

370 371 372
    dst->len = src->len;
    for (i = 0; i < src->len; i++)
        dst->data[i] = src->data[i];
J
Jiri Denemark 已提交
373

374
    return 0;
J
Jiri Denemark 已提交
375 376 377
}


378 379 380
static int
virCPUx86DataAddCPUIDInt(virCPUx86Data *data,
                         const virCPUx86CPUID *cpuid)
J
Jiri Denemark 已提交
381
{
382
    virCPUx86CPUID *existing;
J
Jiri Denemark 已提交
383

384
    if ((existing = x86DataCpuid(data, cpuid))) {
385 386 387 388 389
        x86cpuidSetBits(existing, cpuid);
    } else {
        if (VIR_APPEND_ELEMENT_COPY(data->data, data->len,
                                    *((virCPUx86CPUID *)cpuid)) < 0)
            return -1;
J
Jiri Denemark 已提交
390

391 392 393
        qsort(data->data, data->len,
              sizeof(virCPUx86CPUID), virCPUx86CPUIDSorter);
    }
J
Jiri Denemark 已提交
394

J
Jiri Denemark 已提交
395 396 397 398 399
    return 0;
}


static int
400 401
x86DataAdd(virCPUx86Data *data1,
           const virCPUx86Data *data2)
J
Jiri Denemark 已提交
402
{
403
    virCPUx86DataIterator iter = virCPUx86DataIteratorInit(data2);
404 405
    virCPUx86CPUID *cpuid1;
    virCPUx86CPUID *cpuid2;
J
Jiri Denemark 已提交
406

407
    while ((cpuid2 = x86DataCpuidNext(&iter))) {
408
        cpuid1 = x86DataCpuid(data1, cpuid2);
J
Jiri Denemark 已提交
409

410 411 412
        if (cpuid1) {
            x86cpuidSetBits(cpuid1, cpuid2);
        } else {
413
            if (virCPUx86DataAddCPUIDInt(data1, cpuid2) < 0)
414 415
                return -1;
        }
J
Jiri Denemark 已提交
416
    }
J
Jiri Denemark 已提交
417 418 419 420 421

    return 0;
}


422
static void
423 424
x86DataSubtract(virCPUx86Data *data1,
                const virCPUx86Data *data2)
425
{
426
    virCPUx86DataIterator iter = virCPUx86DataIteratorInit(data1);
427 428
    virCPUx86CPUID *cpuid1;
    virCPUx86CPUID *cpuid2;
429

430
    while ((cpuid1 = x86DataCpuidNext(&iter))) {
431
        cpuid2 = x86DataCpuid(data2, cpuid1);
432
        x86cpuidClearBits(cpuid1, cpuid2);
433 434 435 436
    }
}


J
Jiri Denemark 已提交
437
static void
438 439
x86DataIntersect(virCPUx86Data *data1,
                 const virCPUx86Data *data2)
440
{
441
    virCPUx86DataIterator iter = virCPUx86DataIteratorInit(data1);
442 443
    virCPUx86CPUID *cpuid1;
    virCPUx86CPUID *cpuid2;
444

J
Jiri Denemark 已提交
445
    while ((cpuid1 = x86DataCpuidNext(&iter))) {
446
        cpuid2 = x86DataCpuid(data2, cpuid1);
J
Jiri Denemark 已提交
447 448 449 450
        if (cpuid2)
            x86cpuidAndBits(cpuid1, cpuid2);
        else
            x86cpuidClearBits(cpuid1, cpuid1);
451 452 453 454
    }
}


J
Jiri Denemark 已提交
455
static bool
456
x86DataIsEmpty(virCPUx86Data *data)
J
Jiri Denemark 已提交
457
{
458
    virCPUx86DataIterator iter = virCPUx86DataIteratorInit(data);
J
Jiri Denemark 已提交
459

460
    return !x86DataCpuidNext(&iter);
J
Jiri Denemark 已提交
461
}
J
Jiri Denemark 已提交
462 463


J
Jiri Denemark 已提交
464
static bool
465 466
x86DataIsSubset(const virCPUx86Data *data,
                const virCPUx86Data *subset)
J
Jiri Denemark 已提交
467
{
468
    virCPUx86DataIterator iter = virCPUx86DataIteratorInit((virCPUx86Data *)subset);
469 470
    const virCPUx86CPUID *cpuid;
    const virCPUx86CPUID *cpuidSubset;
J
Jiri Denemark 已提交
471

J
Jiri Denemark 已提交
472
    while ((cpuidSubset = x86DataCpuidNext(&iter))) {
473
        if (!(cpuid = x86DataCpuid(data, cpuidSubset)) ||
J
Jiri Denemark 已提交
474 475
            !x86cpuidMatchMasked(cpuid, cpuidSubset))
            return false;
J
Jiri Denemark 已提交
476 477
    }

J
Jiri Denemark 已提交
478
    return true;
J
Jiri Denemark 已提交
479 480 481
}


482 483 484 485
/* also removes all detected features from data */
static int
x86DataToCPUFeatures(virCPUDefPtr cpu,
                     int policy,
486
                     virCPUx86Data *data,
J
Jiri Denemark 已提交
487
                     virCPUx86MapPtr map)
488
{
489
    size_t i;
490

491 492
    for (i = 0; i < map->nfeatures; i++) {
        virCPUx86FeaturePtr feature = map->features[i];
493 494
        if (x86DataIsSubset(data, &feature->data)) {
            x86DataSubtract(data, &feature->data);
J
Jiri Denemark 已提交
495 496
            if (virCPUDefAddFeature(cpu, feature->name, policy) < 0)
                return -1;
497 498 499 500 501 502 503
        }
    }

    return 0;
}


J
Jiri Denemark 已提交
504
/* also removes bits corresponding to vendor string from data */
505
static virCPUx86VendorPtr
J
Jiri Denemark 已提交
506
x86DataToVendor(const virCPUx86Data *data,
J
Jiri Denemark 已提交
507
                virCPUx86MapPtr map)
J
Jiri Denemark 已提交
508
{
509
    virCPUx86CPUID *cpuid;
510
    size_t i;
J
Jiri Denemark 已提交
511

512 513
    for (i = 0; i < map->nvendors; i++) {
        virCPUx86VendorPtr vendor = map->vendors[i];
514
        if ((cpuid = x86DataCpuid(data, &vendor->cpuid)) &&
J
Jiri Denemark 已提交
515 516 517 518 519 520 521 522 523 524
            x86cpuidMatchMasked(cpuid, &vendor->cpuid)) {
            x86cpuidClearBits(cpuid, &vendor->cpuid);
            return vendor;
        }
    }

    return NULL;
}


525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
static int
virCPUx86VendorToCPUID(const char *vendor,
                       virCPUx86CPUID *cpuid)
{
    if (strlen(vendor) != VENDOR_STRING_LENGTH) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Invalid CPU vendor string '%s'"), vendor);
        return -1;
    }

    cpuid->eax_in = 0;
    cpuid->ecx_in = 0;
    cpuid->ebx = virReadBufInt32LE(vendor);
    cpuid->edx = virReadBufInt32LE(vendor + 4);
    cpuid->ecx = virReadBufInt32LE(vendor + 8);

    return 0;
}


545 546
static uint32_t
x86MakeSignature(unsigned int family,
547 548
                 unsigned int model,
                 unsigned int stepping)
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
{
    uint32_t sig = 0;

    /*
     * CPU signature (eax from 0x1 CPUID leaf):
     *
     * |31 .. 28|27 .. 20|19 .. 16|15 .. 14|13 .. 12|11 .. 8|7 .. 4|3 .. 0|
     * |   R    | extFam | extMod |   R    | PType  |  Fam  | Mod  | Step |
     *
     * R        reserved
     * extFam   extended family (valid only if Fam == 0xf)
     * extMod   extended model
     * PType    processor type
     * Fam      family
     * Mod      model
     * Step     stepping
     *
     * family = eax[27:20] + eax[11:8]
     * model = eax[19:16] << 4 + eax[7:4]
568
     * stepping = eax[3:0]
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
     */

    /* extFam */
    if (family > 0xf) {
        sig |= (family - 0xf) << 20;
        family = 0xf;
    }

    /* extMod */
    sig |= (model >> 4) << 16;

    /* PType is always 0 */

    /* Fam */
    sig |= family << 8;

    /* Mod */
    sig |= (model & 0xf) << 4;

588 589
    /* Step */
    sig |= stepping & 0xf;
590 591 592 593 594

    return sig;
}


595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
static void
x86DataToSignatureFull(const virCPUx86Data *data,
                       unsigned int *family,
                       unsigned int *model,
                       unsigned int *stepping)
{
    virCPUx86CPUID leaf1 = { .eax_in = 0x1 };
    virCPUx86CPUID *cpuid;

    *family = *model = *stepping = 0;

    if (!(cpuid = x86DataCpuid(data, &leaf1)))
        return;

    *family = ((cpuid->eax >> 20) & 0xff) + ((cpuid->eax >> 8) & 0xf);
    *model = ((cpuid->eax >> 12) & 0xf0) + ((cpuid->eax >> 4) & 0xf);
    *stepping = cpuid->eax & 0xf;
}


615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
/* Mask out irrelevant bits (R and Step) from processor signature. */
#define SIGNATURE_MASK  0x0fff3ff0

static uint32_t
x86DataToSignature(const virCPUx86Data *data)
{
    virCPUx86CPUID leaf1 = { .eax_in = 0x1 };
    virCPUx86CPUID *cpuid;

    if (!(cpuid = x86DataCpuid(data, &leaf1)))
        return 0;

    return cpuid->eax & SIGNATURE_MASK;
}


static int
x86DataAddSignature(virCPUx86Data *data,
                    uint32_t signature)
{
    virCPUx86CPUID cpuid = { .eax_in = 0x1, .eax = signature };

637
    return virCPUx86DataAddCPUIDInt(data, &cpuid);
638 639 640
}


641
static virCPUDefPtr
642
x86DataToCPU(const virCPUx86Data *data,
J
Jiri Denemark 已提交
643
             virCPUx86ModelPtr model,
644 645
             virCPUx86MapPtr map,
             virDomainCapsCPUModelPtr hvModel)
646 647
{
    virCPUDefPtr cpu;
648 649
    virCPUx86Data copy = VIR_CPU_X86_DATA_INIT;
    virCPUx86Data modelData = VIR_CPU_X86_DATA_INIT;
650
    virCPUx86VendorPtr vendor;
651 652

    if (VIR_ALLOC(cpu) < 0 ||
653
        VIR_STRDUP(cpu->model, model->name) < 0 ||
654 655
        x86DataCopy(&copy, data) < 0 ||
        x86DataCopy(&modelData, &model->data) < 0)
656
        goto error;
657

658
    if ((vendor = x86DataToVendor(&copy, map)) &&
659
        VIR_STRDUP(cpu->vendor, vendor->name) < 0)
660
        goto error;
J
Jiri Denemark 已提交
661

662 663
    x86DataSubtract(&copy, &modelData);
    x86DataSubtract(&modelData, data);
664

665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
    /* The hypervisor's version of the CPU model (hvModel) may contain
     * additional features which may be currently unavailable. Such features
     * block usage of the CPU model and we need to explicitly disable them.
     */
    if (hvModel && hvModel->blockers) {
        char **blocker;
        virCPUx86FeaturePtr feature;

        for (blocker = hvModel->blockers; *blocker; blocker++) {
            if ((feature = x86FeatureFind(map, *blocker)) &&
                !x86DataIsSubset(&copy, &feature->data))
                x86DataAdd(&modelData, &feature->data);
        }
    }

680 681
    /* because feature policy is ignored for host CPU */
    cpu->type = VIR_CPU_TYPE_GUEST;
682

683 684
    if (x86DataToCPUFeatures(cpu, VIR_CPU_FEATURE_REQUIRE, &copy, map) ||
        x86DataToCPUFeatures(cpu, VIR_CPU_FEATURE_DISABLE, &modelData, map))
685
        goto error;
686

687
 cleanup:
688 689
    virCPUx86DataClear(&modelData);
    virCPUx86DataClear(&copy);
690 691
    return cpu;

692
 error:
693 694 695 696 697 698
    virCPUDefFree(cpu);
    cpu = NULL;
    goto cleanup;
}


J
Jiri Denemark 已提交
699
static void
700
x86VendorFree(virCPUx86VendorPtr vendor)
J
Jiri Denemark 已提交
701 702 703 704 705 706
{
    if (!vendor)
        return;

    VIR_FREE(vendor->name);
    VIR_FREE(vendor);
J
Jiri Denemark 已提交
707
}
J
Jiri Denemark 已提交
708 709


710
static virCPUx86VendorPtr
J
Jiri Denemark 已提交
711
x86VendorFind(virCPUx86MapPtr map,
J
Jiri Denemark 已提交
712 713
              const char *name)
{
714
    size_t i;
J
Jiri Denemark 已提交
715

716 717 718
    for (i = 0; i < map->nvendors; i++) {
        if (STREQ(map->vendors[i]->name, name))
            return map->vendors[i];
J
Jiri Denemark 已提交
719 720 721 722 723 724
    }

    return NULL;
}


725
static int
J
Jiri Denemark 已提交
726
x86VendorParse(xmlXPathContextPtr ctxt,
727 728
               const char *name,
               void *data)
J
Jiri Denemark 已提交
729
{
730
    virCPUx86MapPtr map = data;
731
    virCPUx86VendorPtr vendor = NULL;
J
Jiri Denemark 已提交
732
    char *string = NULL;
733
    int ret = -1;
J
Jiri Denemark 已提交
734 735

    if (VIR_ALLOC(vendor) < 0)
736
        goto cleanup;
J
Jiri Denemark 已提交
737

738
    if (VIR_STRDUP(vendor->name, name) < 0)
739
        goto cleanup;
J
Jiri Denemark 已提交
740 741

    if (x86VendorFind(map, vendor->name)) {
742 743
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("CPU vendor %s already defined"), vendor->name);
744
        goto cleanup;
J
Jiri Denemark 已提交
745 746 747 748
    }

    string = virXPathString("string(@string)", ctxt);
    if (!string) {
749
        virReportError(VIR_ERR_INTERNAL_ERROR,
750 751
                       _("Missing vendor string for CPU vendor %s"),
                       vendor->name);
752
        goto cleanup;
J
Jiri Denemark 已提交
753 754
    }

755
    if (virCPUx86VendorToCPUID(string, &vendor->cpuid) < 0)
756
        goto cleanup;
E
Eric Blake 已提交
757

758
    if (VIR_APPEND_ELEMENT(map->vendors, map->nvendors, vendor) < 0)
759
        goto cleanup;
760 761 762

    ret = 0;

J
Jiri Denemark 已提交
763
 cleanup:
764
    x86VendorFree(vendor);
J
Jiri Denemark 已提交
765
    VIR_FREE(string);
766
    return ret;
J
Jiri Denemark 已提交
767 768 769
}


770
static virCPUx86FeaturePtr
J
Jiri Denemark 已提交
771 772
x86FeatureNew(void)
{
773
    virCPUx86FeaturePtr feature;
J
Jiri Denemark 已提交
774 775 776 777 778 779 780 781

    if (VIR_ALLOC(feature) < 0)
        return NULL;

    return feature;
}


J
Jiri Denemark 已提交
782
static void
783
x86FeatureFree(virCPUx86FeaturePtr feature)
J
Jiri Denemark 已提交
784
{
785
    if (!feature)
J
Jiri Denemark 已提交
786 787 788
        return;

    VIR_FREE(feature->name);
789
    virCPUx86DataClear(&feature->data);
J
Jiri Denemark 已提交
790 791 792 793
    VIR_FREE(feature);
}


J
Jiri Denemark 已提交
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
static int
x86FeatureInData(const char *name,
                 const virCPUx86Data *data,
                 virCPUx86MapPtr map)
{
    virCPUx86FeaturePtr feature;

    if (!(feature = x86FeatureFind(map, name)) &&
        !(feature = x86FeatureFindInternal(name))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown CPU feature %s"), name);
        return -1;
    }

    if (x86DataIsSubset(data, &feature->data))
        return 1;
    else
        return 0;
}


815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
static bool
x86FeatureIsMigratable(const char *name,
                       void *cpu_map)
{
    virCPUx86MapPtr map = cpu_map;
    size_t i;

    for (i = 0; i < map->nblockers; i++) {
        if (STREQ(name, map->migrate_blockers[i]->name))
            return false;
    }

    return true;
}


831
static char *
J
Jiri Denemark 已提交
832
x86FeatureNames(virCPUx86MapPtr map,
833
                const char *separator,
834
                virCPUx86Data *data)
835 836 837
{
    virBuffer ret = VIR_BUFFER_INITIALIZER;
    bool first = true;
838
    size_t i;
839 840 841

    virBufferAdd(&ret, "", 0);

842 843
    for (i = 0; i < map->nfeatures; i++) {
        virCPUx86FeaturePtr feature = map->features[i];
844
        if (x86DataIsSubset(data, &feature->data)) {
845 846 847 848 849
            if (!first)
                virBufferAdd(&ret, separator, -1);
            else
                first = false;

850
            virBufferAdd(&ret, feature->name, -1);
851 852 853 854 855 856 857
        }
    }

    return virBufferContentAndReset(&ret);
}


858 859
static int
x86ParseCPUID(xmlXPathContextPtr ctxt,
860
              virCPUx86CPUID *cpuid)
861
{
862
    unsigned long eax_in, ecx_in;
863
    unsigned long eax, ebx, ecx, edx;
864
    int ret_eax_in, ret_ecx_in, ret_eax, ret_ebx, ret_ecx, ret_edx;
865 866 867

    memset(cpuid, 0, sizeof(*cpuid));

868
    eax_in = ecx_in = 0;
869 870
    eax = ebx = ecx = edx = 0;
    ret_eax_in = virXPathULongHex("string(@eax_in)", ctxt, &eax_in);
871
    ret_ecx_in = virXPathULongHex("string(@ecx_in)", ctxt, &ecx_in);
872 873 874 875 876
    ret_eax = virXPathULongHex("string(@eax)", ctxt, &eax);
    ret_ebx = virXPathULongHex("string(@ebx)", ctxt, &ebx);
    ret_ecx = virXPathULongHex("string(@ecx)", ctxt, &ecx);
    ret_edx = virXPathULongHex("string(@edx)", ctxt, &edx);

877
    if (ret_eax_in < 0 || ret_ecx_in == -2 ||
878
        ret_eax == -2 || ret_ebx == -2 || ret_ecx == -2 || ret_edx == -2)
879 880
        return -1;

881
    cpuid->eax_in = eax_in;
882
    cpuid->ecx_in = ecx_in;
883 884 885 886 887 888 889 890
    cpuid->eax = eax;
    cpuid->ebx = ebx;
    cpuid->ecx = ecx;
    cpuid->edx = edx;
    return 0;
}


891
static int
J
Jiri Denemark 已提交
892
x86FeatureParse(xmlXPathContextPtr ctxt,
893 894
                const char *name,
                void *data)
J
Jiri Denemark 已提交
895
{
896
    virCPUx86MapPtr map = data;
J
Jiri Denemark 已提交
897
    xmlNodePtr *nodes = NULL;
898
    virCPUx86FeaturePtr feature;
899
    virCPUx86CPUID cpuid;
900
    size_t i;
J
Jiri Denemark 已提交
901
    int n;
902
    char *str = NULL;
903
    int ret = -1;
J
Jiri Denemark 已提交
904

J
Jiri Denemark 已提交
905
    if (!(feature = x86FeatureNew()))
906
        goto cleanup;
J
Jiri Denemark 已提交
907

J
Jiri Denemark 已提交
908
    feature->migratable = true;
909 910

    if (VIR_STRDUP(feature->name, name) < 0)
911
        goto cleanup;
J
Jiri Denemark 已提交
912 913

    if (x86FeatureFind(map, feature->name)) {
914 915
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("CPU feature %s already defined"), feature->name);
916
        goto cleanup;
J
Jiri Denemark 已提交
917 918
    }

919 920
    str = virXPathString("string(@migratable)", ctxt);
    if (STREQ_NULLABLE(str, "no"))
J
Jiri Denemark 已提交
921
        feature->migratable = false;
922

923
    n = virXPathNodeSet("./cpuid", ctxt, &nodes);
J
Jiri Denemark 已提交
924
    if (n < 0)
925
        goto cleanup;
J
Jiri Denemark 已提交
926

927 928 929 930 931 932 933
    if (n == 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing cpuid for feature %s"),
                       feature->name);
        goto cleanup;
    }

J
Jiri Denemark 已提交
934 935
    for (i = 0; i < n; i++) {
        ctxt->node = nodes[i];
936
        if (x86ParseCPUID(ctxt, &cpuid) < 0) {
937
            virReportError(VIR_ERR_INTERNAL_ERROR,
938 939
                           _("Invalid cpuid[%zu] in %s feature"),
                           i, feature->name);
940
            goto cleanup;
J
Jiri Denemark 已提交
941
        }
942
        if (virCPUx86DataAddCPUIDInt(&feature->data, &cpuid))
943
            goto cleanup;
J
Jiri Denemark 已提交
944 945
    }

946 947 948 949
    if (!feature->migratable &&
        VIR_APPEND_ELEMENT_COPY(map->migrate_blockers,
                                map->nblockers,
                                feature) < 0)
950
        goto cleanup;
951 952

    if (VIR_APPEND_ELEMENT(map->features, map->nfeatures, feature) < 0)
953
        goto cleanup;
954 955 956

    ret = 0;

J
Jiri Denemark 已提交
957
 cleanup:
958
    x86FeatureFree(feature);
959
    VIR_FREE(nodes);
960
    VIR_FREE(str);
961
    return ret;
J
Jiri Denemark 已提交
962 963 964
}


J
Jiri Denemark 已提交
965
static virCPUx86ModelPtr
J
Jiri Denemark 已提交
966 967
x86ModelNew(void)
{
J
Jiri Denemark 已提交
968
    virCPUx86ModelPtr model;
J
Jiri Denemark 已提交
969 970 971 972 973 974 975 976

    if (VIR_ALLOC(model) < 0)
        return NULL;

    return model;
}


J
Jiri Denemark 已提交
977
static void
J
Jiri Denemark 已提交
978
x86ModelFree(virCPUx86ModelPtr model)
J
Jiri Denemark 已提交
979
{
980
    if (!model)
J
Jiri Denemark 已提交
981 982 983
        return;

    VIR_FREE(model->name);
984
    VIR_FREE(model->signatures);
985
    virCPUx86DataClear(&model->data);
J
Jiri Denemark 已提交
986 987 988 989
    VIR_FREE(model);
}


990 991 992 993
static int
x86ModelCopySignatures(virCPUx86ModelPtr dst,
                       virCPUx86ModelPtr src)
{
994 995
    size_t i;

996 997 998
    if (src->nsignatures == 0)
        return 0;

999 1000 1001 1002 1003 1004
    if (VIR_ALLOC_N(dst->signatures, src->nsignatures) < 0)
        return -1;

    dst->nsignatures = src->nsignatures;
    for (i = 0; i < src->nsignatures; i++)
        dst->signatures[i] = src->signatures[i];
1005 1006 1007 1008 1009

    return 0;
}


J
Jiri Denemark 已提交
1010 1011
static virCPUx86ModelPtr
x86ModelCopy(virCPUx86ModelPtr model)
J
Jiri Denemark 已提交
1012
{
J
Jiri Denemark 已提交
1013
    virCPUx86ModelPtr copy;
J
Jiri Denemark 已提交
1014

1015 1016
    if (VIR_ALLOC(copy) < 0 ||
        VIR_STRDUP(copy->name, model->name) < 0 ||
1017
        x86ModelCopySignatures(copy, model) < 0 ||
1018
        x86DataCopy(&copy->data, &model->data) < 0) {
J
Jiri Denemark 已提交
1019 1020 1021 1022
        x86ModelFree(copy);
        return NULL;
    }

J
Jiri Denemark 已提交
1023
    copy->vendor = model->vendor;
J
Jiri Denemark 已提交
1024 1025 1026 1027 1028

    return copy;
}


J
Jiri Denemark 已提交
1029
static virCPUx86ModelPtr
J
Jiri Denemark 已提交
1030
x86ModelFind(virCPUx86MapPtr map,
J
Jiri Denemark 已提交
1031 1032
             const char *name)
{
1033
    size_t i;
J
Jiri Denemark 已提交
1034

1035 1036 1037
    for (i = 0; i < map->nmodels; i++) {
        if (STREQ(map->models[i]->name, name))
            return map->models[i];
J
Jiri Denemark 已提交
1038 1039 1040 1041 1042 1043
    }

    return NULL;
}


1044 1045 1046 1047 1048 1049 1050 1051 1052
/*
 * Computes CPU model data from a CPU definition associated with features
 * matching @policy. If @policy equals -1, the computed model will describe
 * all CPU features, i.e., it will contain:
 *
 *      features from model
 *      + required and forced features
 *      - disabled and forbidden features
 */
J
Jiri Denemark 已提交
1053
static virCPUx86ModelPtr
1054
x86ModelFromCPU(const virCPUDef *cpu,
J
Jiri Denemark 已提交
1055
                virCPUx86MapPtr map,
J
Jiri Denemark 已提交
1056 1057
                int policy)
{
J
Jiri Denemark 已提交
1058
    virCPUx86ModelPtr model = NULL;
1059
    size_t i;
J
Jiri Denemark 已提交
1060

1061 1062 1063 1064
    /* host CPU only contains required features; requesting other features
     * just returns an empty model
     */
    if (cpu->type == VIR_CPU_TYPE_HOST &&
1065 1066
        policy != VIR_CPU_FEATURE_REQUIRE &&
        policy != -1)
1067 1068
        return x86ModelNew();

J
Jiri Denemark 已提交
1069 1070
    if (cpu->model &&
        (policy == VIR_CPU_FEATURE_REQUIRE || policy == -1)) {
1071
        if (!(model = x86ModelFind(map, cpu->model))) {
1072 1073
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown CPU model %s"), cpu->model);
1074
            return NULL;
J
Jiri Denemark 已提交
1075 1076
        }

1077 1078 1079
        model = x86ModelCopy(model);
    } else {
        model = x86ModelNew();
J
Jiri Denemark 已提交
1080
    }
J
Jiri Denemark 已提交
1081

1082 1083 1084
    if (!model)
        return NULL;

J
Jiri Denemark 已提交
1085
    for (i = 0; i < cpu->nfeatures; i++) {
1086
        virCPUx86FeaturePtr feature;
1087
        virCPUFeaturePolicy fpol;
J
Jiri Denemark 已提交
1088

1089 1090 1091 1092 1093 1094 1095
        if (cpu->features[i].policy == -1)
            fpol = VIR_CPU_FEATURE_REQUIRE;
        else
            fpol = cpu->features[i].policy;

        if ((policy == -1 && fpol == VIR_CPU_FEATURE_OPTIONAL) ||
            (policy != -1 && fpol != policy))
J
Jiri Denemark 已提交
1096 1097
            continue;

1098
        if (!(feature = x86FeatureFind(map, cpu->features[i].name))) {
1099 1100
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown CPU feature %s"), cpu->features[i].name);
J
Jiri Denemark 已提交
1101 1102 1103
            goto error;
        }

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
        if (policy == -1) {
            switch (fpol) {
            case VIR_CPU_FEATURE_FORCE:
            case VIR_CPU_FEATURE_REQUIRE:
                if (x86DataAdd(&model->data, &feature->data) < 0)
                    goto error;
                break;

            case VIR_CPU_FEATURE_DISABLE:
            case VIR_CPU_FEATURE_FORBID:
                x86DataSubtract(&model->data, &feature->data);
                break;

            /* coverity[dead_error_condition] */
            case VIR_CPU_FEATURE_OPTIONAL:
            case VIR_CPU_FEATURE_LAST:
                break;
            }
        } else if (x86DataAdd(&model->data, &feature->data) < 0) {
1123
            goto error;
1124
        }
J
Jiri Denemark 已提交
1125 1126 1127 1128
    }

    return model;

1129
 error:
J
Jiri Denemark 已提交
1130 1131 1132 1133 1134
    x86ModelFree(model);
    return NULL;
}


1135
static virCPUx86CompareResult
J
Jiri Denemark 已提交
1136 1137
x86ModelCompare(virCPUx86ModelPtr model1,
                virCPUx86ModelPtr model2)
J
Jiri Denemark 已提交
1138
{
1139
    virCPUx86CompareResult result = EQUAL;
1140 1141
    virCPUx86DataIterator iter1 = virCPUx86DataIteratorInit(&model1->data);
    virCPUx86DataIterator iter2 = virCPUx86DataIteratorInit(&model2->data);
1142 1143
    virCPUx86CPUID *cpuid1;
    virCPUx86CPUID *cpuid2;
J
Jiri Denemark 已提交
1144

J
Jiri Denemark 已提交
1145
    while ((cpuid1 = x86DataCpuidNext(&iter1))) {
1146
        virCPUx86CompareResult match = SUPERSET;
J
Jiri Denemark 已提交
1147

1148
        if ((cpuid2 = x86DataCpuid(&model2->data, cpuid1))) {
J
Jiri Denemark 已提交
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
            if (x86cpuidMatch(cpuid1, cpuid2))
                continue;
            else if (!x86cpuidMatchMasked(cpuid1, cpuid2))
                match = SUBSET;
        }

        if (result == EQUAL)
            result = match;
        else if (result != match)
            return UNRELATED;
    }

J
Jiri Denemark 已提交
1161
    while ((cpuid2 = x86DataCpuidNext(&iter2))) {
1162
        virCPUx86CompareResult match = SUBSET;
J
Jiri Denemark 已提交
1163

1164
        if ((cpuid1 = x86DataCpuid(&model1->data, cpuid2))) {
J
Jiri Denemark 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
            if (x86cpuidMatch(cpuid2, cpuid1))
                continue;
            else if (!x86cpuidMatchMasked(cpuid2, cpuid1))
                match = SUPERSET;
        }

        if (result == EQUAL)
            result = match;
        else if (result != match)
            return UNRELATED;
    }

    return result;
}


1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
static int
x86ModelParseAncestor(virCPUx86ModelPtr model,
                      xmlXPathContextPtr ctxt,
                      virCPUx86MapPtr map)
{
    VIR_AUTOFREE(char *) name = NULL;
    virCPUx86ModelPtr ancestor;
    int rc;

    if ((rc = virXPathBoolean("boolean(./model)", ctxt)) <= 0)
        return rc;

    name = virXPathString("string(./model/@name)", ctxt);
    if (!name) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing ancestor's name in CPU model %s"),
                       model->name);
        return -1;
    }

    if (!(ancestor = x86ModelFind(map, name))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Ancestor model %s not found for CPU model %s"),
                       name, model->name);
        return -1;
    }

    model->vendor = ancestor->vendor;
1209 1210
    if (x86ModelCopySignatures(model, ancestor) < 0 ||
        x86DataCopy(&model->data, &ancestor->data) < 0)
1211 1212 1213 1214 1215 1216
        return -1;

    return 0;
}


1217
static int
1218 1219
x86ModelParseSignatures(virCPUx86ModelPtr model,
                        xmlXPathContextPtr ctxt)
J
Jiri Denemark 已提交
1220
{
1221 1222 1223 1224 1225 1226 1227 1228
    VIR_AUTOFREE(xmlNodePtr *) nodes = NULL;
    xmlNodePtr root = ctxt->node;
    size_t i;
    int n;

    if ((n = virXPathNodeSet("./signature", ctxt, &nodes)) <= 0)
        return n;

1229 1230
    /* Remove inherited signatures. */
    VIR_FREE(model->signatures);
J
Jiri Denemark 已提交
1231

1232 1233 1234 1235 1236
    model->nsignatures = n;
    if (VIR_ALLOC_N(model->signatures, n) < 0)
       return -1;

    for (i = 0; i < n; i++) {
1237 1238 1239 1240
        unsigned int sigFamily = 0;
        unsigned int sigModel = 0;
        int rc;

1241
        ctxt->node = nodes[i];
1242

1243
        rc = virXPathUInt("string(@family)", ctxt, &sigFamily);
1244 1245 1246 1247
        if (rc < 0 || sigFamily == 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid CPU signature family in model %s"),
                           model->name);
1248
            return -1;
1249 1250
        }

1251
        rc = virXPathUInt("string(@model)", ctxt, &sigModel);
1252 1253 1254 1255
        if (rc < 0 || sigModel == 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid CPU signature model in model %s"),
                           model->name);
1256
            return -1;
1257 1258
        }

1259
        model->signatures[i] = x86MakeSignature(sigFamily, sigModel, 0);
1260 1261
    }

1262
    ctxt->node = root;
1263 1264 1265 1266
    return 0;
}


1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
static int
x86ModelParseVendor(virCPUx86ModelPtr model,
                    xmlXPathContextPtr ctxt,
                    virCPUx86MapPtr map)
{
    VIR_AUTOFREE(char *) vendor = NULL;
    int rc;

    if ((rc = virXPathBoolean("boolean(./vendor)", ctxt)) <= 0)
        return rc;

    vendor = virXPathString("string(./vendor/@name)", ctxt);
    if (!vendor) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Invalid vendor element in CPU model %s"),
                       model->name);
        return -1;
    }

    if (!(model->vendor = x86VendorFind(map, vendor))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unknown vendor %s referenced by CPU model %s"),
                       vendor, model->name);
        return -1;
    }

    return 0;
}


1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
static int
x86ModelParseFeatures(virCPUx86ModelPtr model,
                      xmlXPathContextPtr ctxt,
                      virCPUx86MapPtr map)
{
    VIR_AUTOFREE(xmlNodePtr *) nodes = NULL;
    size_t i;
    int n;

    if ((n = virXPathNodeSet("./feature", ctxt, &nodes)) <= 0)
        return n;

    for (i = 0; i < n; i++) {
        VIR_AUTOFREE(char *) ftname = NULL;
        virCPUx86FeaturePtr feature;

        if (!(ftname = virXMLPropString(nodes[i], "name"))) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing feature name for CPU model %s"),
                           model->name);
            return -1;
        }

        if (!(feature = x86FeatureFind(map, ftname))) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Feature %s required by CPU model %s not found"),
                           ftname, model->name);
            return -1;
        }

        if (x86DataAdd(&model->data, &feature->data))
            return -1;
    }

    return 0;
}


1335 1336 1337 1338 1339 1340
static int
x86ModelParse(xmlXPathContextPtr ctxt,
              const char *name,
              void *data)
{
    virCPUx86MapPtr map = data;
1341
    virCPUx86ModelPtr model = NULL;
1342 1343
    int ret = -1;

1344 1345 1346 1347 1348 1349
    if (x86ModelFind(map, name)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Multiple definitions of CPU model '%s'"), name);
        goto cleanup;
    }

1350 1351 1352 1353 1354 1355 1356 1357 1358
    if (!(model = x86ModelNew()))
        goto cleanup;

    if (VIR_STRDUP(model->name, name) < 0)
        goto cleanup;

    if (x86ModelParseAncestor(model, ctxt, map) < 0)
        goto cleanup;

1359
    if (x86ModelParseSignatures(model, ctxt) < 0)
1360 1361
        goto cleanup;

1362 1363
    if (x86ModelParseVendor(model, ctxt, map) < 0)
        goto cleanup;
J
Jiri Denemark 已提交
1364

1365
    if (x86ModelParseFeatures(model, ctxt, map) < 0)
1366
        goto cleanup;
J
Jiri Denemark 已提交
1367

1368
    if (VIR_APPEND_ELEMENT(map->models, map->nmodels, model) < 0)
1369
        goto cleanup;
1370 1371 1372

    ret = 0;

J
Jiri Denemark 已提交
1373
 cleanup:
1374
    x86ModelFree(model);
1375
    return ret;
J
Jiri Denemark 已提交
1376 1377 1378
}


J
Jiri Denemark 已提交
1379
static void
J
Jiri Denemark 已提交
1380
x86MapFree(virCPUx86MapPtr map)
J
Jiri Denemark 已提交
1381
{
1382 1383
    size_t i;

1384
    if (!map)
J
Jiri Denemark 已提交
1385 1386
        return;

1387 1388 1389
    for (i = 0; i < map->nfeatures; i++)
        x86FeatureFree(map->features[i]);
    VIR_FREE(map->features);
J
Jiri Denemark 已提交
1390

1391 1392 1393
    for (i = 0; i < map->nmodels; i++)
        x86ModelFree(map->models[i]);
    VIR_FREE(map->models);
J
Jiri Denemark 已提交
1394

1395 1396 1397
    for (i = 0; i < map->nvendors; i++)
        x86VendorFree(map->vendors[i]);
    VIR_FREE(map->vendors);
1398

1399 1400 1401 1402
    /* migrate_blockers only points to the features from map->features list,
     * which were already freed above
     */
    VIR_FREE(map->migrate_blockers);
1403

J
Jiri Denemark 已提交
1404 1405 1406 1407
    VIR_FREE(map);
}


J
Jiri Denemark 已提交
1408
static virCPUx86MapPtr
1409
virCPUx86LoadMap(void)
J
Jiri Denemark 已提交
1410
{
J
Jiri Denemark 已提交
1411
    virCPUx86MapPtr map;
J
Jiri Denemark 已提交
1412

1413
    if (VIR_ALLOC(map) < 0)
J
Jiri Denemark 已提交
1414 1415
        return NULL;

1416
    if (cpuMapLoad("x86", x86VendorParse, x86FeatureParse, x86ModelParse, map) < 0)
J
Jiri Denemark 已提交
1417 1418 1419 1420
        goto error;

    return map;

1421
 error:
J
Jiri Denemark 已提交
1422 1423 1424 1425 1426
    x86MapFree(map);
    return NULL;
}


1427
int
1428
virCPUx86DriverOnceInit(void)
1429
{
J
Jiri Denemark 已提交
1430
    if (!(cpuMap = virCPUx86LoadMap()))
1431 1432 1433 1434 1435 1436
        return -1;

    return 0;
}


J
Jiri Denemark 已提交
1437
static virCPUx86MapPtr
1438 1439
virCPUx86GetMap(void)
{
1440
    if (virCPUx86DriverInitialize() < 0)
1441 1442
        return NULL;

J
Jiri Denemark 已提交
1443
    return cpuMap;
1444 1445 1446
}


1447
static char *
J
Jiri Denemark 已提交
1448
virCPUx86DataFormat(const virCPUData *data)
1449
{
1450
    virCPUx86DataIterator iter = virCPUx86DataIteratorInit(&data->data.x86);
1451
    virCPUx86CPUID *cpuid;
1452 1453 1454 1455 1456
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    virBufferAddLit(&buf, "<cpudata arch='x86'>\n");
    while ((cpuid = x86DataCpuidNext(&iter))) {
        virBufferAsprintf(&buf,
1457
                          "  <cpuid eax_in='0x%08x' ecx_in='0x%08x'"
1458 1459
                          " eax='0x%08x' ebx='0x%08x'"
                          " ecx='0x%08x' edx='0x%08x'/>\n",
1460
                          cpuid->eax_in, cpuid->ecx_in,
1461 1462 1463 1464
                          cpuid->eax, cpuid->ebx, cpuid->ecx, cpuid->edx);
    }
    virBufferAddLit(&buf, "</cpudata>\n");

1465
    if (virBufferCheckError(&buf) < 0)
1466 1467 1468 1469 1470 1471 1472
        return NULL;

    return virBufferContentAndReset(&buf);
}


static virCPUDataPtr
J
Jiri Denemark 已提交
1473
virCPUx86DataParse(xmlXPathContextPtr ctxt)
1474 1475 1476
{
    xmlNodePtr *nodes = NULL;
    virCPUDataPtr cpuData = NULL;
1477
    virCPUx86CPUID cpuid;
1478 1479 1480
    size_t i;
    int n;

1481
    n = virXPathNodeSet("/cpudata/cpuid", ctxt, &nodes);
J
Jiri Denemark 已提交
1482
    if (n <= 0) {
1483 1484
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("no x86 CPU data found"));
1485
        goto error;
1486 1487
    }

1488 1489 1490
    if (!(cpuData = virCPUDataNew(VIR_ARCH_X86_64)))
        goto error;

1491 1492 1493 1494 1495
    for (i = 0; i < n; i++) {
        ctxt->node = nodes[i];
        if (x86ParseCPUID(ctxt, &cpuid) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("failed to parse cpuid[%zu]"), i);
1496
            goto error;
1497
        }
1498
        if (virCPUx86DataAddCPUID(cpuData, &cpuid) < 0)
1499
            goto error;
1500 1501
    }

1502
 cleanup:
1503 1504
    VIR_FREE(nodes);
    return cpuData;
1505 1506

 error:
J
Jiri Denemark 已提交
1507
    virCPUx86DataFree(cpuData);
1508 1509
    cpuData = NULL;
    goto cleanup;
1510 1511 1512
}


1513 1514 1515
/* A helper macro to exit the cpu computation function without writing
 * redundant code:
 * MSG: error message
1516
 * CPU_DEF: a virCPUx86Data pointer with flags that are conflicting
1517 1518 1519 1520
 * RET: return code to set
 *
 * This macro generates the error string outputs it into logs.
 */
1521 1522 1523 1524 1525 1526 1527 1528
#define virX86CpuIncompatible(MSG, CPU_DEF) \
        do { \
            char *flagsStr = NULL; \
            if (!(flagsStr = x86FeatureNames(map, ", ", (CPU_DEF)))) { \
                virReportOOMError(); \
                goto error; \
            } \
            if (message && \
1529
                virAsprintf(message, "%s: %s", _(MSG), flagsStr) < 0) { \
1530 1531 1532 1533 1534 1535
                VIR_FREE(flagsStr); \
                goto error; \
            } \
            VIR_DEBUG("%s: %s", MSG, flagsStr); \
            VIR_FREE(flagsStr); \
            ret = VIR_CPU_COMPARE_INCOMPATIBLE; \
1536 1537
        } while (0)

1538

J
Jiri Denemark 已提交
1539 1540 1541
static virCPUCompareResult
x86Compute(virCPUDefPtr host,
           virCPUDefPtr cpu,
1542
           virCPUDataPtr *guest,
1543
           char **message)
J
Jiri Denemark 已提交
1544
{
J
Jiri Denemark 已提交
1545
    virCPUx86MapPtr map = NULL;
J
Jiri Denemark 已提交
1546 1547 1548 1549 1550 1551 1552 1553
    virCPUx86ModelPtr host_model = NULL;
    virCPUx86ModelPtr cpu_force = NULL;
    virCPUx86ModelPtr cpu_require = NULL;
    virCPUx86ModelPtr cpu_optional = NULL;
    virCPUx86ModelPtr cpu_disable = NULL;
    virCPUx86ModelPtr cpu_forbid = NULL;
    virCPUx86ModelPtr diff = NULL;
    virCPUx86ModelPtr guest_model = NULL;
1554
    virCPUDataPtr guestData = NULL;
J
Jiri Denemark 已提交
1555
    virCPUCompareResult ret;
1556
    virCPUx86CompareResult result;
J
Jiri Denemark 已提交
1557
    virArch arch;
1558
    size_t i;
J
Jiri Denemark 已提交
1559

1560
    if (cpu->arch != VIR_ARCH_NONE) {
J
Jiri Denemark 已提交
1561 1562 1563
        bool found = false;

        for (i = 0; i < ARRAY_CARDINALITY(archs); i++) {
1564
            if (archs[i] == cpu->arch) {
J
Jiri Denemark 已提交
1565 1566 1567 1568 1569
                found = true;
                break;
            }
        }

1570
        if (!found) {
1571 1572
            VIR_DEBUG("CPU arch %s does not match host arch",
                      virArchToString(cpu->arch));
1573 1574 1575
            if (message &&
                virAsprintf(message,
                            _("CPU arch %s does not match host arch"),
1576
                            virArchToString(cpu->arch)) < 0)
1577
                goto error;
J
Jiri Denemark 已提交
1578
            return VIR_CPU_COMPARE_INCOMPATIBLE;
1579
        }
J
Jiri Denemark 已提交
1580 1581 1582
        arch = cpu->arch;
    } else {
        arch = host->arch;
J
Jiri Denemark 已提交
1583 1584
    }

J
Jiri Denemark 已提交
1585 1586 1587 1588
    if (cpu->vendor &&
        (!host->vendor || STRNEQ(cpu->vendor, host->vendor))) {
        VIR_DEBUG("host CPU vendor does not match required CPU vendor %s",
                  cpu->vendor);
1589 1590 1591 1592 1593
        if (message &&
            virAsprintf(message,
                        _("host CPU vendor does not match required "
                          "CPU vendor %s"),
                        cpu->vendor) < 0)
1594
            goto error;
1595

J
Jiri Denemark 已提交
1596 1597 1598
        return VIR_CPU_COMPARE_INCOMPATIBLE;
    }

1599
    if (!(map = virCPUx86GetMap()) ||
J
Jiri Denemark 已提交
1600
        !(host_model = x86ModelFromCPU(host, map, -1)) ||
J
Jiri Denemark 已提交
1601 1602 1603 1604 1605
        !(cpu_force = x86ModelFromCPU(cpu, map, VIR_CPU_FEATURE_FORCE)) ||
        !(cpu_require = x86ModelFromCPU(cpu, map, VIR_CPU_FEATURE_REQUIRE)) ||
        !(cpu_optional = x86ModelFromCPU(cpu, map, VIR_CPU_FEATURE_OPTIONAL)) ||
        !(cpu_disable = x86ModelFromCPU(cpu, map, VIR_CPU_FEATURE_DISABLE)) ||
        !(cpu_forbid = x86ModelFromCPU(cpu, map, VIR_CPU_FEATURE_FORBID)))
J
Jiri Denemark 已提交
1606 1607
        goto error;

1608 1609
    x86DataIntersect(&cpu_forbid->data, &host_model->data);
    if (!x86DataIsEmpty(&cpu_forbid->data)) {
1610
        virX86CpuIncompatible(N_("Host CPU provides forbidden features"),
1611
                              &cpu_forbid->data);
1612
        goto cleanup;
J
Jiri Denemark 已提交
1613 1614
    }

1615 1616 1617
    /* first remove features that were inherited from the CPU model and were
     * explicitly forced, disabled, or made optional
     */
1618 1619 1620
    x86DataSubtract(&cpu_require->data, &cpu_force->data);
    x86DataSubtract(&cpu_require->data, &cpu_optional->data);
    x86DataSubtract(&cpu_require->data, &cpu_disable->data);
J
Jiri Denemark 已提交
1621 1622
    result = x86ModelCompare(host_model, cpu_require);
    if (result == SUBSET || result == UNRELATED) {
1623
        x86DataSubtract(&cpu_require->data, &host_model->data);
1624 1625
        virX86CpuIncompatible(N_("Host CPU does not provide required "
                                 "features"),
1626
                              &cpu_require->data);
1627
        goto cleanup;
J
Jiri Denemark 已提交
1628 1629 1630 1631
    }

    ret = VIR_CPU_COMPARE_IDENTICAL;

1632
    if (!(diff = x86ModelCopy(host_model)))
1633
        goto error;
J
Jiri Denemark 已提交
1634

1635 1636 1637 1638
    x86DataSubtract(&diff->data, &cpu_optional->data);
    x86DataSubtract(&diff->data, &cpu_require->data);
    x86DataSubtract(&diff->data, &cpu_disable->data);
    x86DataSubtract(&diff->data, &cpu_force->data);
J
Jiri Denemark 已提交
1639

1640
    if (!x86DataIsEmpty(&diff->data))
J
Jiri Denemark 已提交
1641
        ret = VIR_CPU_COMPARE_SUPERSET;
J
Jiri Denemark 已提交
1642 1643 1644 1645

    if (ret == VIR_CPU_COMPARE_SUPERSET
        && cpu->type == VIR_CPU_TYPE_GUEST
        && cpu->match == VIR_CPU_MATCH_STRICT) {
1646 1647
        virX86CpuIncompatible(N_("Host CPU does not strictly match guest CPU: "
                                 "Extra features"),
1648
                              &diff->data);
1649
        goto cleanup;
J
Jiri Denemark 已提交
1650 1651
    }

1652 1653
    if (guest) {
        if (!(guest_model = x86ModelCopy(host_model)))
1654
            goto error;
J
Jiri Denemark 已提交
1655

1656
        if (cpu->vendor && host_model->vendor &&
1657 1658
            virCPUx86DataAddCPUIDInt(&guest_model->data,
                                     &host_model->vendor->cpuid) < 0)
1659 1660
            goto error;

1661 1662
        if (host_model->signatures &&
            x86DataAddSignature(&guest_model->data, *host_model->signatures) < 0)
1663 1664
            goto error;

J
Jiri Denemark 已提交
1665 1666
        if (cpu->type == VIR_CPU_TYPE_GUEST
            && cpu->match == VIR_CPU_MATCH_EXACT)
1667
            x86DataSubtract(&guest_model->data, &diff->data);
J
Jiri Denemark 已提交
1668

1669
        if (x86DataAdd(&guest_model->data, &cpu_force->data))
1670
            goto error;
J
Jiri Denemark 已提交
1671

1672
        x86DataSubtract(&guest_model->data, &cpu_disable->data);
J
Jiri Denemark 已提交
1673

1674 1675
        if (!(guestData = virCPUDataNew(arch)) ||
            x86DataCopy(&guestData->data.x86, &guest_model->data) < 0)
1676
            goto error;
1677 1678

        *guest = guestData;
J
Jiri Denemark 已提交
1679 1680
    }

1681
 cleanup:
J
Jiri Denemark 已提交
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
    x86ModelFree(host_model);
    x86ModelFree(diff);
    x86ModelFree(cpu_force);
    x86ModelFree(cpu_require);
    x86ModelFree(cpu_optional);
    x86ModelFree(cpu_disable);
    x86ModelFree(cpu_forbid);
    x86ModelFree(guest_model);

    return ret;

1693
 error:
J
Jiri Denemark 已提交
1694
    virCPUx86DataFree(guestData);
J
Jiri Denemark 已提交
1695
    ret = VIR_CPU_COMPARE_ERROR;
1696
    goto cleanup;
J
Jiri Denemark 已提交
1697
}
1698
#undef virX86CpuIncompatible
J
Jiri Denemark 已提交
1699 1700 1701


static virCPUCompareResult
J
Jiri Denemark 已提交
1702 1703 1704
virCPUx86Compare(virCPUDefPtr host,
                 virCPUDefPtr cpu,
                 bool failIncompatible)
J
Jiri Denemark 已提交
1705
{
J
Jiri Denemark 已提交
1706 1707 1708
    virCPUCompareResult ret = VIR_CPU_COMPARE_ERROR;
    virCPUx86MapPtr map;
    virCPUx86ModelPtr model = NULL;
1709 1710
    char *message = NULL;

J
Jiri Denemark 已提交
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
    if (!host || !host->model) {
        if (failIncompatible) {
            virReportError(VIR_ERR_CPU_INCOMPATIBLE, "%s",
                           _("unknown host CPU"));
        } else {
            VIR_WARN("unknown host CPU");
            ret = VIR_CPU_COMPARE_INCOMPATIBLE;
        }
        goto cleanup;
    }

1722 1723
    ret = x86Compute(host, cpu, NULL, &message);

J
Jiri Denemark 已提交
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
    if (ret == VIR_CPU_COMPARE_INCOMPATIBLE) {
        bool noTSX = false;

        if (STREQ_NULLABLE(cpu->model, "Haswell") ||
            STREQ_NULLABLE(cpu->model, "Broadwell")) {
            if (!(map = virCPUx86GetMap()))
                goto cleanup;

            if (!(model = x86ModelFromCPU(cpu, map, -1)))
                goto cleanup;

            noTSX = !x86FeatureInData("hle", &model->data, map) ||
                    !x86FeatureInData("rtm", &model->data, map);
        }

        if (failIncompatible) {
            ret = VIR_CPU_COMPARE_ERROR;
            if (message) {
                if (noTSX) {
                    virReportError(VIR_ERR_CPU_INCOMPATIBLE,
                                   _("%s; try using '%s-noTSX' CPU model"),
                                   message, cpu->model);
                } else {
                    virReportError(VIR_ERR_CPU_INCOMPATIBLE, "%s", message);
                }
            } else {
                if (noTSX) {
                    virReportError(VIR_ERR_CPU_INCOMPATIBLE,
                                   _("try using '%s-noTSX' CPU model"),
                                   cpu->model);
                } else {
                    virReportError(VIR_ERR_CPU_INCOMPATIBLE, NULL);
                }
            }
1758 1759 1760
        }
    }

J
Jiri Denemark 已提交
1761 1762 1763
 cleanup:
    VIR_FREE(message);
    x86ModelFree(model);
1764
    return ret;
J
Jiri Denemark 已提交
1765 1766 1767
}


1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
static bool
x86ModelHasSignature(virCPUx86ModelPtr model,
                     uint32_t signature)
{
    size_t i;

    for (i = 0; i < model->nsignatures; i++) {
        if (model->signatures[i] == signature)
            return true;
    }

    return false;
}


1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
static char *
x86FormatSignatures(virCPUx86ModelPtr model)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    size_t i;

    for (i = 0; i < model->nsignatures; i++) {
        virBufferAsprintf(&buf, "%06lx,",
                          (unsigned long)model->signatures[i]);
    }

    virBufferTrim(&buf, ",", -1);

    if (virBufferCheckError(&buf) < 0)
        return NULL;

    return virBufferContentAndReset(&buf);
}


1803
/*
1804 1805
 * Checks whether a candidate model is a better fit for the CPU data than the
 * current model.
1806
 *
1807 1808 1809
 * Returns 0 if current is better,
 *         1 if candidate is better,
 *         2 if candidate is the best one (search should stop now).
1810 1811
 */
static int
1812 1813 1814
x86DecodeUseCandidate(virCPUx86ModelPtr current,
                      virCPUDefPtr cpuCurrent,
                      virCPUx86ModelPtr candidate,
1815
                      virCPUDefPtr cpuCandidate,
1816
                      uint32_t signature,
1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
                      const char *preferred,
                      bool checkPolicy)
{
    if (checkPolicy) {
        size_t i;
        for (i = 0; i < cpuCandidate->nfeatures; i++) {
            if (cpuCandidate->features[i].policy == VIR_CPU_FEATURE_DISABLE)
                return 0;
            cpuCandidate->features[i].policy = -1;
        }
    }

1829 1830
    if (preferred && STREQ(cpuCandidate->model, preferred)) {
        VIR_DEBUG("%s is the preferred model", cpuCandidate->model);
1831
        return 2;
1832
    }
1833

1834 1835
    if (!cpuCurrent) {
        VIR_DEBUG("%s is better than nothing", cpuCandidate->model);
1836
        return 1;
1837
    }
1838

1839 1840 1841 1842 1843
    /* Ideally we want to select a model with family/model equal to
     * family/model of the real CPU. Once we found such model, we only
     * consider candidates with matching family/model.
     */
    if (signature &&
1844 1845
        x86ModelHasSignature(current, signature) &&
        !x86ModelHasSignature(candidate, signature)) {
1846 1847
        VIR_DEBUG("%s differs in signature from matching %s",
                  cpuCandidate->model, cpuCurrent->model);
1848
        return 0;
1849
    }
1850

1851 1852 1853
    if (cpuCurrent->nfeatures > cpuCandidate->nfeatures) {
        VIR_DEBUG("%s results in shorter feature list than %s",
                  cpuCandidate->model, cpuCurrent->model);
1854
        return 1;
1855
    }
1856

1857 1858 1859 1860
    /* Prefer a candidate with matching signature even though it would
     * result in longer list of features.
     */
    if (signature &&
1861 1862
        x86ModelHasSignature(candidate, signature) &&
        !x86ModelHasSignature(current, signature)) {
1863
        VIR_DEBUG("%s provides matching signature", cpuCandidate->model);
1864
        return 1;
1865
    }
1866

1867 1868
    VIR_DEBUG("%s does not result in shorter feature list than %s",
              cpuCandidate->model, cpuCurrent->model);
1869 1870 1871 1872
    return 0;
}


1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
/**
 * Drop broken TSX features.
 */
static void
x86DataFilterTSX(virCPUx86Data *data,
                 virCPUx86VendorPtr vendor,
                 virCPUx86MapPtr map)
{
    unsigned int family;
    unsigned int model;
    unsigned int stepping;

    if (!vendor || STRNEQ(vendor->name, "Intel"))
        return;

    x86DataToSignatureFull(data, &family, &model, &stepping);

    if (family == 6 &&
        ((model == 63 && stepping < 4) ||
         model == 60 ||
         model == 69 ||
         model == 70)) {
        virCPUx86FeaturePtr feature;

        VIR_DEBUG("Dropping broken TSX");

        if ((feature = x86FeatureFind(map, "hle")))
            x86DataSubtract(data, &feature->data);

        if ((feature = x86FeatureFind(map, "rtm")))
            x86DataSubtract(data, &feature->data);
    }
}


J
Jiri Denemark 已提交
1908 1909
static int
x86Decode(virCPUDefPtr cpu,
1910
          const virCPUx86Data *cpuData,
1911
          virDomainCapsCPUModelsPtr models,
1912
          const char *preferred,
1913
          bool migratable)
J
Jiri Denemark 已提交
1914 1915
{
    int ret = -1;
J
Jiri Denemark 已提交
1916
    virCPUx86MapPtr map;
J
Jiri Denemark 已提交
1917
    virCPUx86ModelPtr candidate;
1918
    virCPUDefPtr cpuCandidate;
1919
    virCPUx86ModelPtr model = NULL;
1920
    virCPUDefPtr cpuModel = NULL;
1921
    virCPUx86Data data = VIR_CPU_X86_DATA_INIT;
1922 1923
    virCPUx86Data copy = VIR_CPU_X86_DATA_INIT;
    virCPUx86Data features = VIR_CPU_X86_DATA_INIT;
J
Jiri Denemark 已提交
1924
    virCPUx86VendorPtr vendor;
1925
    virDomainCapsCPUModelPtr hvModel = NULL;
1926
    VIR_AUTOFREE(char *) sigs = NULL;
1927
    uint32_t signature;
1928
    ssize_t i;
1929
    int rc;
J
Jiri Denemark 已提交
1930

1931
    if (!cpuData || x86DataCopy(&data, cpuData) < 0)
J
Jiri Denemark 已提交
1932 1933
        return -1;

1934 1935 1936 1937 1938 1939 1940
    if (!(map = virCPUx86GetMap()))
        goto cleanup;

    vendor = x86DataToVendor(&data, map);
    signature = x86DataToSignature(&data);

    x86DataFilterTSX(&data, vendor, map);
J
Jiri Denemark 已提交
1941

1942 1943 1944 1945 1946
    /* Walk through the CPU models in reverse order to check newest
     * models first.
     */
    for (i = map->nmodels - 1; i >= 0; i--) {
        candidate = map->models[i];
1947 1948
        if (models &&
            !(hvModel = virDomainCapsCPUModelsGet(models, candidate->name))) {
1949 1950
            if (preferred && STREQ(candidate->name, preferred)) {
                if (cpu->fallback != VIR_CPU_FALLBACK_ALLOW) {
1951 1952 1953
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("CPU model %s is not supported by hypervisor"),
                                   preferred);
J
Jiri Denemark 已提交
1954
                    goto cleanup;
1955 1956 1957 1958 1959 1960 1961 1962 1963
                } else {
                    VIR_WARN("Preferred CPU model %s not allowed by"
                             " hypervisor; closest supported model will be"
                             " used", preferred);
                }
            } else {
                VIR_DEBUG("CPU model %s not allowed by hypervisor; ignoring",
                          candidate->name);
            }
1964
            continue;
J
Jiri Denemark 已提交
1965 1966
        }

J
Jiri Denemark 已提交
1967 1968 1969 1970
        /* Both vendor and candidate->vendor are pointers to a single list of
         * known vendors stored in the map.
         */
        if (vendor && candidate->vendor && vendor != candidate->vendor) {
J
Jiri Denemark 已提交
1971
            VIR_DEBUG("CPU vendor %s of model %s differs from %s; ignoring",
J
Jiri Denemark 已提交
1972
                      candidate->vendor->name, candidate->name, vendor->name);
1973
            continue;
J
Jiri Denemark 已提交
1974 1975
        }

1976
        if (!(cpuCandidate = x86DataToCPU(&data, candidate, map, hvModel)))
J
Jiri Denemark 已提交
1977 1978 1979
            goto cleanup;
        cpuCandidate->type = cpu->type;

1980 1981 1982
        if ((rc = x86DecodeUseCandidate(model, cpuModel,
                                        candidate, cpuCandidate,
                                        signature, preferred,
1983
                                        cpu->type == VIR_CPU_TYPE_HOST))) {
1984 1985
            virCPUDefFree(cpuModel);
            cpuModel = cpuCandidate;
1986
            model = candidate;
1987 1988
            if (rc == 2)
                break;
1989
        } else {
1990
            virCPUDefFree(cpuCandidate);
1991
        }
J
Jiri Denemark 已提交
1992 1993
    }

1994
    if (!cpuModel) {
1995 1996
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Cannot find suitable CPU model for given data"));
J
Jiri Denemark 已提交
1997
        goto cleanup;
J
Jiri Denemark 已提交
1998 1999
    }

2000 2001 2002
    /* Remove non-migratable features if requested
     * Note: this only works as long as no CPU model contains non-migratable
     * features directly */
2003
    if (migratable) {
2004 2005 2006 2007 2008
        i = 0;
        while (i < cpuModel->nfeatures) {
            if (x86FeatureIsMigratable(cpuModel->features[i].name, map)) {
                i++;
            } else {
2009 2010 2011
                VIR_FREE(cpuModel->features[i].name);
                VIR_DELETE_ELEMENT_INPLACE(cpuModel->features, i,
                                           cpuModel->nfeatures);
2012 2013 2014 2015
            }
        }
    }

J
Jiri Denemark 已提交
2016 2017 2018
    if (vendor && VIR_STRDUP(cpu->vendor, vendor->name) < 0)
        goto cleanup;

2019 2020 2021 2022 2023
    sigs = x86FormatSignatures(model);

    VIR_DEBUG("Using CPU model %s (signatures %s) for CPU with signature %06lx",
              model->name, NULLSTR(sigs), (unsigned long)signature);

2024 2025
    VIR_STEAL_PTR(cpu->model, cpuModel->model);
    VIR_STEAL_PTR(cpu->features, cpuModel->features);
2026
    cpu->nfeatures = cpuModel->nfeatures;
2027 2028 2029
    cpuModel->nfeatures = 0;
    cpu->nfeatures_max = cpuModel->nfeatures_max;
    cpuModel->nfeatures_max = 0;
J
Jiri Denemark 已提交
2030 2031 2032

    ret = 0;

J
Jiri Denemark 已提交
2033
 cleanup:
2034
    virCPUDefFree(cpuModel);
2035
    virCPUx86DataClear(&data);
2036 2037
    virCPUx86DataClear(&copy);
    virCPUx86DataClear(&features);
J
Jiri Denemark 已提交
2038 2039 2040
    return ret;
}

2041 2042
static int
x86DecodeCPUData(virCPUDefPtr cpu,
2043
                 const virCPUData *data,
2044
                 virDomainCapsCPUModelsPtr models)
2045
{
2046
    return x86Decode(cpu, &data->data.x86, models, NULL, false);
2047
}
J
Jiri Denemark 已提交
2048

2049

2050 2051 2052
static int
x86EncodePolicy(virCPUx86Data *data,
                const virCPUDef *cpu,
J
Jiri Denemark 已提交
2053
                virCPUx86MapPtr map,
2054
                virCPUFeaturePolicy policy)
J
Jiri Denemark 已提交
2055
{
J
Jiri Denemark 已提交
2056
    virCPUx86ModelPtr model;
J
Jiri Denemark 已提交
2057 2058

    if (!(model = x86ModelFromCPU(cpu, map, policy)))
2059
        return -1;
J
Jiri Denemark 已提交
2060

2061 2062 2063
    *data = model->data;
    model->data.len = 0;
    model->data.data = NULL;
J
Jiri Denemark 已提交
2064 2065
    x86ModelFree(model);

2066
    return 0;
J
Jiri Denemark 已提交
2067 2068 2069 2070
}


static int
J
Jiri Denemark 已提交
2071
x86Encode(virArch arch,
2072
          const virCPUDef *cpu,
2073 2074 2075 2076 2077 2078
          virCPUDataPtr *forced,
          virCPUDataPtr *required,
          virCPUDataPtr *optional,
          virCPUDataPtr *disabled,
          virCPUDataPtr *forbidden,
          virCPUDataPtr *vendor)
J
Jiri Denemark 已提交
2079
{
J
Jiri Denemark 已提交
2080
    virCPUx86MapPtr map = NULL;
2081 2082 2083 2084 2085 2086
    virCPUDataPtr data_forced = NULL;
    virCPUDataPtr data_required = NULL;
    virCPUDataPtr data_optional = NULL;
    virCPUDataPtr data_disabled = NULL;
    virCPUDataPtr data_forbidden = NULL;
    virCPUDataPtr data_vendor = NULL;
J
Jiri Denemark 已提交
2087

2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100
    if (forced)
        *forced = NULL;
    if (required)
        *required = NULL;
    if (optional)
        *optional = NULL;
    if (disabled)
        *disabled = NULL;
    if (forbidden)
        *forbidden = NULL;
    if (vendor)
        *vendor = NULL;

2101
    if (!(map = virCPUx86GetMap()))
J
Jiri Denemark 已提交
2102 2103
        goto error;

2104
    if (forced &&
2105 2106 2107
        (!(data_forced = virCPUDataNew(arch)) ||
         x86EncodePolicy(&data_forced->data.x86, cpu, map,
                         VIR_CPU_FEATURE_FORCE) < 0))
2108
        goto error;
J
Jiri Denemark 已提交
2109

2110
    if (required &&
2111 2112 2113
        (!(data_required = virCPUDataNew(arch)) ||
         x86EncodePolicy(&data_required->data.x86, cpu, map,
                         VIR_CPU_FEATURE_REQUIRE) < 0))
2114
        goto error;
J
Jiri Denemark 已提交
2115

2116
    if (optional &&
2117 2118 2119
        (!(data_optional = virCPUDataNew(arch)) ||
         x86EncodePolicy(&data_optional->data.x86, cpu, map,
                         VIR_CPU_FEATURE_OPTIONAL) < 0))
2120
        goto error;
J
Jiri Denemark 已提交
2121

2122
    if (disabled &&
2123 2124 2125
        (!(data_disabled = virCPUDataNew(arch)) ||
         x86EncodePolicy(&data_disabled->data.x86, cpu, map,
                         VIR_CPU_FEATURE_DISABLE) < 0))
2126
        goto error;
J
Jiri Denemark 已提交
2127

2128
    if (forbidden &&
2129 2130 2131
        (!(data_forbidden = virCPUDataNew(arch)) ||
         x86EncodePolicy(&data_forbidden->data.x86, cpu, map,
                         VIR_CPU_FEATURE_FORBID) < 0))
2132
        goto error;
J
Jiri Denemark 已提交
2133

J
Jiri Denemark 已提交
2134
    if (vendor) {
2135
        virCPUx86VendorPtr v = NULL;
J
Jiri Denemark 已提交
2136 2137

        if (cpu->vendor && !(v = x86VendorFind(map, cpu->vendor))) {
2138 2139
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("CPU vendor %s not found"), cpu->vendor);
J
Jiri Denemark 已提交
2140 2141 2142
            goto error;
        }

2143
        if (!(data_vendor = virCPUDataNew(arch)))
J
Jiri Denemark 已提交
2144 2145
            goto error;

2146
        if (v && virCPUx86DataAddCPUID(data_vendor, &v->cpuid) < 0)
2147 2148
            goto error;
    }
J
Jiri Denemark 已提交
2149

2150
    if (forced)
2151
        *forced = data_forced;
2152
    if (required)
2153
        *required = data_required;
2154
    if (optional)
2155
        *optional = data_optional;
2156
    if (disabled)
2157
        *disabled = data_disabled;
2158
    if (forbidden)
2159
        *forbidden = data_forbidden;
2160
    if (vendor)
2161 2162 2163 2164 2165
        *vendor = data_vendor;

    return 0;

 error:
J
Jiri Denemark 已提交
2166 2167 2168 2169 2170 2171
    virCPUx86DataFree(data_forced);
    virCPUx86DataFree(data_required);
    virCPUx86DataFree(data_optional);
    virCPUx86DataFree(data_disabled);
    virCPUx86DataFree(data_forbidden);
    virCPUx86DataFree(data_vendor);
2172
    return -1;
J
Jiri Denemark 已提交
2173 2174 2175
}


P
Pavel Hrdina 已提交
2176
#if defined(__i386__) || defined(__x86_64__)
J
Jiri Denemark 已提交
2177
static inline void
2178
cpuidCall(virCPUx86CPUID *cpuid)
J
Jiri Denemark 已提交
2179
{
2180
# if __x86_64__
2181
    asm("xor %%ebx, %%ebx;" /* clear the other registers as some cpuid */
2182
        "xor %%edx, %%edx;" /* functions may use them as additional arguments */
2183
        "cpuid;"
J
Jiri Denemark 已提交
2184 2185 2186 2187
        : "=a" (cpuid->eax),
          "=b" (cpuid->ebx),
          "=c" (cpuid->ecx),
          "=d" (cpuid->edx)
2188 2189
        : "a" (cpuid->eax_in),
          "c" (cpuid->ecx_in));
2190
# else
J
Jiri Denemark 已提交
2191 2192 2193 2194
    /* we need to avoid direct use of ebx for CPUID output as it is used
     * for global offset table on i386 with -fPIC
     */
    asm("push %%ebx;"
2195
        "xor %%ebx, %%ebx;" /* clear the other registers as some cpuid */
2196
        "xor %%edx, %%edx;" /* functions may use them as additional arguments */
J
Jiri Denemark 已提交
2197 2198 2199 2200 2201 2202 2203
        "cpuid;"
        "mov %%ebx, %1;"
        "pop %%ebx;"
        : "=a" (cpuid->eax),
          "=r" (cpuid->ebx),
          "=c" (cpuid->ecx),
          "=d" (cpuid->edx)
2204 2205
        : "a" (cpuid->eax_in),
          "c" (cpuid->ecx_in)
J
Jiri Denemark 已提交
2206
        : "cc");
2207
# endif
J
Jiri Denemark 已提交
2208 2209 2210
}


2211 2212 2213 2214 2215
/* Leaf 0x04: deterministic cache parameters
 *
 * Sub leaf n+1 is invalid if eax[4:0] in sub leaf n equals 0.
 */
static int
2216
cpuidSetLeaf4(virCPUDataPtr data,
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238
              virCPUx86CPUID *subLeaf0)
{
    virCPUx86CPUID cpuid = *subLeaf0;

    if (virCPUx86DataAddCPUID(data, subLeaf0) < 0)
        return -1;

    while (cpuid.eax & 0x1f) {
        cpuid.ecx_in++;
        cpuidCall(&cpuid);
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
    }
    return 0;
}


/* Leaf 0x07: structured extended feature flags enumeration
 *
 * Sub leaf n is invalid if n > eax in sub leaf 0.
 */
static int
2239
cpuidSetLeaf7(virCPUDataPtr data,
2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265
              virCPUx86CPUID *subLeaf0)
{
    virCPUx86CPUID cpuid = { .eax_in = 0x7 };
    uint32_t sub;

    if (virCPUx86DataAddCPUID(data, subLeaf0) < 0)
        return -1;

    for (sub = 1; sub <= subLeaf0->eax; sub++) {
        cpuid.ecx_in = sub;
        cpuidCall(&cpuid);
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
    }
    return 0;
}


/* Leaf 0x0b: extended topology enumeration
 *
 * Sub leaf n is invalid if it returns 0 in ecx[15:8].
 * Sub leaf n+1 is invalid if sub leaf n is invalid.
 * Some output values do not depend on ecx, thus sub leaf 0 provides
 * meaningful data even if it was (theoretically) considered invalid.
 */
static int
2266
cpuidSetLeafB(virCPUDataPtr data,
2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289
              virCPUx86CPUID *subLeaf0)
{
    virCPUx86CPUID cpuid = *subLeaf0;

    while (cpuid.ecx & 0xff00) {
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
        cpuid.ecx_in++;
        cpuidCall(&cpuid);
    }
    return 0;
}


/* Leaf 0x0d: processor extended state enumeration
 *
 * Sub leaves 0 and 1 are valid.
 * Sub leaf n (2 <= n < 32) is invalid if eax[n] from sub leaf 0 is not set
 * and ecx[n] from sub leaf 1 is not set.
 * Sub leaf n (32 <= n < 64) is invalid if edx[n-32] from sub leaf 0 is not set
 * and edx[n-32] from sub leaf 1 is not set.
 */
static int
2290
cpuidSetLeafD(virCPUDataPtr data,
2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336
              virCPUx86CPUID *subLeaf0)
{
    virCPUx86CPUID cpuid = { .eax_in = 0xd };
    virCPUx86CPUID sub0;
    virCPUx86CPUID sub1;
    uint32_t sub;

    if (virCPUx86DataAddCPUID(data, subLeaf0) < 0)
        return -1;

    cpuid.ecx_in = 1;
    cpuidCall(&cpuid);
    if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
        return -1;

    sub0 = *subLeaf0;
    sub1 = cpuid;
    for (sub = 2; sub < 64; sub++) {
        if (sub < 32 &&
            !(sub0.eax & (1 << sub)) &&
            !(sub1.ecx & (1 << sub)))
            continue;
        if (sub >= 32 &&
            !(sub0.edx & (1 << (sub - 32))) &&
            !(sub1.edx & (1 << (sub - 32))))
            continue;

        cpuid.ecx_in = sub;
        cpuidCall(&cpuid);
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
    }
    return 0;
}


/* Leaf 0x0f: L3 cached RDT monitoring capability enumeration
 * Leaf 0x10: RDT allocation enumeration
 *
 * res reports valid resource identification (ResID) starting at bit 1.
 * Values associated with each valid ResID are reported by ResID sub leaf.
 *
 * 0x0f: Sub leaf n is valid if edx[n] (= res[ResID]) from sub leaf 0 is set.
 * 0x10: Sub leaf n is valid if ebx[n] (= res[ResID]) from sub leaf 0 is set.
 */
static int
2337
cpuidSetLeafResID(virCPUDataPtr data,
2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
                  virCPUx86CPUID *subLeaf0,
                  uint32_t res)
{
    virCPUx86CPUID cpuid = { .eax_in = subLeaf0->eax_in };
    uint32_t sub;

    if (virCPUx86DataAddCPUID(data, subLeaf0) < 0)
        return -1;

    for (sub = 1; sub < 32; sub++) {
        if (!(res & (1 << sub)))
            continue;
        cpuid.ecx_in = sub;
        cpuidCall(&cpuid);
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
    }
    return 0;
}


/* Leaf 0x12: SGX capability enumeration
 *
 * Sub leaves 0 and 1 is supported if ebx[2] from leaf 0x7 (SGX) is set.
 * Sub leaves n >= 2 are valid as long as eax[3:0] != 0.
 */
static int
2365
cpuidSetLeaf12(virCPUDataPtr data,
2366 2367 2368 2369 2370
               virCPUx86CPUID *subLeaf0)
{
    virCPUx86CPUID cpuid = { .eax_in = 0x7 };
    virCPUx86CPUID *cpuid7;

2371
    if (!(cpuid7 = x86DataCpuid(&data->data.x86, &cpuid)) ||
2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
        !(cpuid7->ebx & (1 << 2)))
        return 0;

    if (virCPUx86DataAddCPUID(data, subLeaf0) < 0)
        return -1;

    cpuid.eax_in = 0x12;
    cpuid.ecx_in = 1;
    cpuidCall(&cpuid);
    if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
        return -1;

    cpuid.ecx_in = 2;
    cpuidCall(&cpuid);
    while (cpuid.eax & 0xf) {
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
        cpuid.ecx_in++;
        cpuidCall(&cpuid);
    }
    return 0;
}


/* Leaf 0x14: processor trace enumeration
 *
 * Sub leaf 0 reports the maximum supported sub leaf in eax.
 */
static int
2401
cpuidSetLeaf14(virCPUDataPtr data,
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425
               virCPUx86CPUID *subLeaf0)
{
    virCPUx86CPUID cpuid = { .eax_in = 0x14 };
    uint32_t sub;

    if (virCPUx86DataAddCPUID(data, subLeaf0) < 0)
        return -1;

    for (sub = 1; sub <= subLeaf0->eax; sub++) {
        cpuid.ecx_in = sub;
        cpuidCall(&cpuid);
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
    }
    return 0;
}


/* Leaf 0x17: SOC Vendor
 *
 * Sub leaf 0 is valid if eax >= 3.
 * Sub leaf 0 reports the maximum supported sub leaf in eax.
 */
static int
2426
cpuidSetLeaf17(virCPUDataPtr data,
2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447
               virCPUx86CPUID *subLeaf0)
{
    virCPUx86CPUID cpuid = { .eax_in = 0x17 };
    uint32_t sub;

    if (subLeaf0->eax < 3)
        return 0;

    if (virCPUx86DataAddCPUID(data, subLeaf0) < 0)
        return -1;

    for (sub = 1; sub <= subLeaf0->eax; sub++) {
        cpuid.ecx_in = sub;
        cpuidCall(&cpuid);
        if (virCPUx86DataAddCPUID(data, &cpuid) < 0)
            return -1;
    }
    return 0;
}


J
Jiri Denemark 已提交
2448
static int
2449
cpuidSet(uint32_t base, virCPUDataPtr data)
J
Jiri Denemark 已提交
2450
{
2451
    int rc;
J
Jiri Denemark 已提交
2452
    uint32_t max;
2453
    uint32_t leaf;
2454
    virCPUx86CPUID cpuid = { .eax_in = base };
J
Jiri Denemark 已提交
2455 2456

    cpuidCall(&cpuid);
2457
    max = cpuid.eax;
J
Jiri Denemark 已提交
2458

2459 2460
    for (leaf = base; leaf <= max; leaf++) {
        cpuid.eax_in = leaf;
2461
        cpuid.ecx_in = 0;
J
Jiri Denemark 已提交
2462
        cpuidCall(&cpuid);
2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488

        /* Handle CPUID leaves that depend on previously queried bits or
         * which provide additional sub leaves for ecx_in > 0
         */
        if (leaf == 0x4)
            rc = cpuidSetLeaf4(data, &cpuid);
        else if (leaf == 0x7)
            rc = cpuidSetLeaf7(data, &cpuid);
        else if (leaf == 0xb)
            rc = cpuidSetLeafB(data, &cpuid);
        else if (leaf == 0xd)
            rc = cpuidSetLeafD(data, &cpuid);
        else if (leaf == 0xf)
            rc = cpuidSetLeafResID(data, &cpuid, cpuid.edx);
        else if (leaf == 0x10)
            rc = cpuidSetLeafResID(data, &cpuid, cpuid.ebx);
        else if (leaf == 0x12)
            rc = cpuidSetLeaf12(data, &cpuid);
        else if (leaf == 0x14)
            rc = cpuidSetLeaf14(data, &cpuid);
        else if (leaf == 0x17)
            rc = cpuidSetLeaf17(data, &cpuid);
        else
            rc = virCPUx86DataAddCPUID(data, &cpuid);

        if (rc < 0)
2489
            return -1;
J
Jiri Denemark 已提交
2490 2491
    }

2492
    return 0;
J
Jiri Denemark 已提交
2493 2494 2495
}


2496
static int
2497
virCPUx86GetHost(virCPUDefPtr cpu,
2498
                 virDomainCapsCPUModelsPtr models)
J
Jiri Denemark 已提交
2499
{
2500
    virCPUDataPtr cpuData = NULL;
2501
    int ret = -1;
J
Jiri Denemark 已提交
2502

2503 2504 2505
    if (virCPUx86DriverInitialize() < 0)
        goto cleanup;

2506 2507
    if (!(cpuData = virCPUDataNew(archs[0])))
        goto cleanup;
J
Jiri Denemark 已提交
2508

2509 2510 2511
    if (cpuidSet(CPUX86_BASIC, cpuData) < 0 ||
        cpuidSet(CPUX86_EXTENDED, cpuData) < 0)
        goto cleanup;
2512

2513
    ret = x86DecodeCPUData(cpu, cpuData, models);
2514
    cpu->microcodeVersion = virHostCPUGetMicrocodeVersion();
J
Jiri Denemark 已提交
2515

2516
 cleanup:
J
Jiri Denemark 已提交
2517
    virCPUx86DataFree(cpuData);
2518
    return ret;
J
Jiri Denemark 已提交
2519 2520 2521 2522
}
#endif


2523
static virCPUDefPtr
2524 2525 2526
virCPUx86Baseline(virCPUDefPtr *cpus,
                  unsigned int ncpus,
                  virDomainCapsCPUModelsPtr models,
2527
                  const char **features,
2528
                  bool migratable)
2529
{
J
Jiri Denemark 已提交
2530
    virCPUx86MapPtr map = NULL;
J
Jiri Denemark 已提交
2531
    virCPUx86ModelPtr base_model = NULL;
2532
    virCPUDefPtr cpu = NULL;
2533
    size_t i;
2534
    virCPUx86VendorPtr vendor = NULL;
J
Jiri Denemark 已提交
2535
    virCPUx86ModelPtr model = NULL;
2536
    bool outputVendor = true;
2537 2538
    const char *modelName;
    bool matchingNames = true;
2539
    virCPUDataPtr featData = NULL;
2540

2541
    if (!(map = virCPUx86GetMap()))
2542 2543
        goto error;

2544
    if (!(base_model = x86ModelFromCPU(cpus[0], map, -1)))
2545 2546
        goto error;

2547
    if (VIR_ALLOC(cpu) < 0)
2548
        goto error;
2549

2550 2551
    cpu->type = VIR_CPU_TYPE_GUEST;
    cpu->match = VIR_CPU_MATCH_EXACT;
2552

2553
    if (!cpus[0]->vendor) {
2554
        outputVendor = false;
2555
    } else if (!(vendor = x86VendorFind(map, cpus[0]->vendor))) {
2556 2557
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("Unknown CPU vendor %s"), cpus[0]->vendor);
J
Jiri Denemark 已提交
2558 2559 2560
        goto error;
    }

2561
    modelName = cpus[0]->model;
2562
    for (i = 1; i < ncpus; i++) {
J
Jiri Denemark 已提交
2563 2564
        const char *vn = NULL;

2565 2566 2567 2568 2569 2570 2571 2572 2573
        if (matchingNames && cpus[i]->model) {
            if (!modelName) {
                modelName = cpus[i]->model;
            } else if (STRNEQ(modelName, cpus[i]->model)) {
                modelName = NULL;
                matchingNames = false;
            }
        }

2574
        if (!(model = x86ModelFromCPU(cpus[i], map, -1)))
2575 2576
            goto error;

J
Jiri Denemark 已提交
2577 2578
        if (cpus[i]->vendor && model->vendor &&
            STRNEQ(cpus[i]->vendor, model->vendor->name)) {
2579 2580 2581
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("CPU vendor %s of model %s differs from vendor %s"),
                           model->vendor->name, model->name, cpus[i]->vendor);
J
Jiri Denemark 已提交
2582 2583 2584
            goto error;
        }

2585
        if (cpus[i]->vendor) {
J
Jiri Denemark 已提交
2586
            vn = cpus[i]->vendor;
2587
        } else {
2588 2589 2590 2591
            outputVendor = false;
            if (model->vendor)
                vn = model->vendor->name;
        }
J
Jiri Denemark 已提交
2592 2593 2594 2595

        if (vn) {
            if (!vendor) {
                if (!(vendor = x86VendorFind(map, vn))) {
2596 2597
                    virReportError(VIR_ERR_OPERATION_FAILED,
                                   _("Unknown CPU vendor %s"), vn);
J
Jiri Denemark 已提交
2598 2599 2600
                    goto error;
                }
            } else if (STRNEQ(vendor->name, vn)) {
2601 2602
                virReportError(VIR_ERR_OPERATION_FAILED,
                               "%s", _("CPU vendors do not match"));
J
Jiri Denemark 已提交
2603 2604 2605 2606
                goto error;
            }
        }

2607
        x86DataIntersect(&base_model->data, &model->data);
2608
        x86ModelFree(model);
J
Jiri Denemark 已提交
2609
        model = NULL;
2610 2611
    }

2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626
    if (features) {
        virCPUx86FeaturePtr feat;

        if (!(featData = virCPUDataNew(archs[0])))
            goto cleanup;

        for (i = 0; features[i]; i++) {
            if ((feat = x86FeatureFind(map, features[i])) &&
                x86DataAdd(&featData->data.x86, &feat->data) < 0)
                goto cleanup;
        }

        x86DataIntersect(&base_model->data, &featData->data.x86);
    }

2627
    if (x86DataIsEmpty(&base_model->data)) {
2628 2629
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("CPUs are incompatible"));
2630 2631 2632
        goto error;
    }

2633 2634
    if (vendor &&
        virCPUx86DataAddCPUIDInt(&base_model->data, &vendor->cpuid) < 0)
2635
        goto error;
J
Jiri Denemark 已提交
2636

2637
    if (x86Decode(cpu, &base_model->data, models, modelName, migratable) < 0)
2638 2639
        goto error;

2640 2641 2642
    if (STREQ_NULLABLE(cpu->model, modelName))
        cpu->fallback = VIR_CPU_FALLBACK_FORBID;

2643 2644 2645
    if (!outputVendor)
        VIR_FREE(cpu->vendor);

2646
 cleanup:
2647
    x86ModelFree(base_model);
2648
    virCPUx86DataFree(featData);
2649 2650 2651

    return cpu;

2652
 error:
J
Jiri Denemark 已提交
2653
    x86ModelFree(model);
2654 2655 2656 2657 2658 2659
    virCPUDefFree(cpu);
    cpu = NULL;
    goto cleanup;
}


2660
static int
J
Jiri Denemark 已提交
2661
x86UpdateHostModel(virCPUDefPtr guest,
2662
                   const virCPUDef *host)
2663
{
J
Jiri Denemark 已提交
2664
    virCPUDefPtr updated = NULL;
2665
    size_t i;
J
Jiri Denemark 已提交
2666
    int ret = -1;
2667

J
Jiri Denemark 已提交
2668
    if (!(updated = virCPUDefCopyWithoutModel(host)))
2669 2670
        goto cleanup;

J
Jiri Denemark 已提交
2671 2672
    updated->type = VIR_CPU_TYPE_GUEST;
    updated->mode = VIR_CPU_MODE_CUSTOM;
2673
    if (virCPUDefCopyModel(updated, host, true) < 0)
J
Jiri Denemark 已提交
2674
        goto cleanup;
2675

J
Jiri Denemark 已提交
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685
    if (guest->vendor_id) {
        VIR_FREE(updated->vendor_id);
        if (VIR_STRDUP(updated->vendor_id, guest->vendor_id) < 0)
            goto cleanup;
    }

    for (i = 0; i < guest->nfeatures; i++) {
        if (virCPUDefUpdateFeature(updated,
                                   guest->features[i].name,
                                   guest->features[i].policy) < 0)
2686 2687 2688
            goto cleanup;
    }

2689 2690
    virCPUDefStealModel(guest, updated,
                        guest->mode == VIR_CPU_MODE_CUSTOM);
J
Jiri Denemark 已提交
2691 2692
    guest->mode = VIR_CPU_MODE_CUSTOM;
    guest->match = VIR_CPU_MATCH_EXACT;
2693 2694
    ret = 0;

2695
 cleanup:
J
Jiri Denemark 已提交
2696
    virCPUDefFree(updated);
2697 2698 2699
    return ret;
}

2700 2701

static int
J
Jiri Denemark 已提交
2702 2703
virCPUx86Update(virCPUDefPtr guest,
                const virCPUDef *host)
2704
{
J
Jiri Denemark 已提交
2705
    virCPUx86ModelPtr model = NULL;
J
Jiri Denemark 已提交
2706
    virCPUx86MapPtr map;
2707
    int ret = -1;
J
Jiri Denemark 已提交
2708
    size_t i;
2709

J
Jiri Denemark 已提交
2710 2711 2712 2713 2714
    if (!host) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("unknown host CPU model"));
        return -1;
    }
2715

J
Jiri Denemark 已提交
2716 2717
    if (!(map = virCPUx86GetMap()))
        return -1;
2718

J
Jiri Denemark 已提交
2719
    if (!(model = x86ModelFromCPU(host, map, -1)))
2720
        goto cleanup;
2721

J
Jiri Denemark 已提交
2722 2723 2724 2725 2726 2727 2728 2729 2730 2731
    for (i = 0; i < guest->nfeatures; i++) {
        if (guest->features[i].policy == VIR_CPU_FEATURE_OPTIONAL) {
            int supported = x86FeatureInData(guest->features[i].name,
                                             &model->data, map);
            if (supported < 0)
                goto cleanup;
            else if (supported)
                guest->features[i].policy = VIR_CPU_FEATURE_REQUIRE;
            else
                guest->features[i].policy = VIR_CPU_FEATURE_DISABLE;
2732 2733
        }
    }
2734

J
Jiri Denemark 已提交
2735 2736
    if (guest->mode == VIR_CPU_MODE_HOST_MODEL ||
        guest->match == VIR_CPU_MATCH_MINIMUM)
2737
        ret = x86UpdateHostModel(guest, host);
J
Jiri Denemark 已提交
2738 2739
    else
        ret = 0;
2740 2741

 cleanup:
J
Jiri Denemark 已提交
2742
    x86ModelFree(model);
2743
    return ret;
2744 2745 2746
}


2747 2748 2749 2750 2751 2752 2753 2754 2755
static int
virCPUx86UpdateLive(virCPUDefPtr cpu,
                    virCPUDataPtr dataEnabled,
                    virCPUDataPtr dataDisabled)
{
    virCPUx86MapPtr map;
    virCPUx86ModelPtr model = NULL;
    virCPUx86Data enabled = VIR_CPU_X86_DATA_INIT;
    virCPUx86Data disabled = VIR_CPU_X86_DATA_INIT;
2756 2757 2758 2759
    virBuffer bufAdded = VIR_BUFFER_INITIALIZER;
    virBuffer bufRemoved = VIR_BUFFER_INITIALIZER;
    char *added = NULL;
    char *removed = NULL;
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779
    size_t i;
    int ret = -1;

    if (!(map = virCPUx86GetMap()))
        return -1;

    if (!(model = x86ModelFromCPU(cpu, map, -1)))
        goto cleanup;

    if (dataEnabled &&
        x86DataCopy(&enabled, &dataEnabled->data.x86) < 0)
        goto cleanup;

    if (dataDisabled &&
        x86DataCopy(&disabled, &dataDisabled->data.x86) < 0)
        goto cleanup;

    for (i = 0; i < map->nfeatures; i++) {
        virCPUx86FeaturePtr feature = map->features[i];

2780 2781
        if (x86DataIsSubset(&enabled, &feature->data) &&
            !x86DataIsSubset(&model->data, &feature->data)) {
2782 2783 2784 2785 2786
            VIR_DEBUG("Feature '%s' enabled by the hypervisor", feature->name);
            if (cpu->check == VIR_CPU_CHECK_FULL)
                virBufferAsprintf(&bufAdded, "%s,", feature->name);
            else if (virCPUDefUpdateFeature(cpu, feature->name,
                                            VIR_CPU_FEATURE_REQUIRE) < 0)
2787 2788 2789
                goto cleanup;
        }

2790 2791 2792
        if (x86DataIsSubset(&disabled, &feature->data) ||
            (x86DataIsSubset(&model->data, &feature->data) &&
             !x86DataIsSubset(&enabled, &feature->data))) {
2793 2794 2795 2796 2797
            VIR_DEBUG("Feature '%s' disabled by the hypervisor", feature->name);
            if (cpu->check == VIR_CPU_CHECK_FULL)
                virBufferAsprintf(&bufRemoved, "%s,", feature->name);
            else if (virCPUDefUpdateFeature(cpu, feature->name,
                                            VIR_CPU_FEATURE_DISABLE) < 0)
2798 2799 2800 2801
                goto cleanup;
        }
    }

2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837
    virBufferTrim(&bufAdded, ",", -1);
    virBufferTrim(&bufRemoved, ",", -1);

    if (virBufferCheckError(&bufAdded) < 0 ||
        virBufferCheckError(&bufRemoved) < 0)
        goto cleanup;

    added = virBufferContentAndReset(&bufAdded);
    removed = virBufferContentAndReset(&bufRemoved);

    if (added || removed) {
        if (added && removed)
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("guest CPU doesn't match specification: "
                             "extra features: %s, missing features: %s"),
                           added, removed);
        else if (added)
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("guest CPU doesn't match specification: "
                             "extra features: %s"),
                           added);
        else
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("guest CPU doesn't match specification: "
                             "missing features: %s"),
                           removed);
        goto cleanup;
    }

    if (cpu->check == VIR_CPU_CHECK_FULL &&
        !x86DataIsEmpty(&disabled)) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("guest CPU doesn't match specification"));
        goto cleanup;
    }

2838 2839 2840 2841 2842 2843
    ret = 0;

 cleanup:
    x86ModelFree(model);
    virCPUx86DataClear(&enabled);
    virCPUx86DataClear(&disabled);
2844 2845 2846 2847
    VIR_FREE(added);
    VIR_FREE(removed);
    virBufferFreeAndReset(&bufAdded);
    virBufferFreeAndReset(&bufRemoved);
2848 2849 2850 2851
    return ret;
}


2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873
static int
virCPUx86CheckFeature(const virCPUDef *cpu,
                      const char *name)
{
    int ret = -1;
    virCPUx86MapPtr map;
    virCPUx86ModelPtr model = NULL;

    if (!(map = virCPUx86GetMap()))
        return -1;

    if (!(model = x86ModelFromCPU(cpu, map, -1)))
        goto cleanup;

    ret = x86FeatureInData(name, &model->data, map);

 cleanup:
    x86ModelFree(model);
    return ret;
}


2874
static int
2875 2876
virCPUx86DataCheckFeature(const virCPUData *data,
                          const char *name)
D
Daniel P. Berrange 已提交
2877
{
J
Jiri Denemark 已提交
2878
    virCPUx86MapPtr map;
D
Daniel P. Berrange 已提交
2879

2880
    if (!(map = virCPUx86GetMap()))
D
Daniel P. Berrange 已提交
2881 2882
        return -1;

J
Jiri Denemark 已提交
2883
    return x86FeatureInData(name, &data->data.x86, map);
D
Daniel P. Berrange 已提交
2884
}
2885

2886
static int
J
Jiri Denemark 已提交
2887
virCPUx86GetModels(char ***models)
2888
{
J
Jiri Denemark 已提交
2889
    virCPUx86MapPtr map;
2890
    size_t i;
2891 2892 2893 2894

    if (!(map = virCPUx86GetMap()))
        return -1;

2895 2896 2897
    if (models) {
        if (VIR_ALLOC_N(*models, map->nmodels + 1) < 0)
            goto error;
2898

2899 2900
        for (i = 0; i < map->nmodels; i++) {
            if (VIR_STRDUP((*models)[i], map->models[i]->name) < 0)
2901 2902
                goto error;
        }
2903 2904
    }

2905
    return map->nmodels;
2906 2907

 error:
2908
    if (models) {
2909
        virStringListFree(*models);
2910 2911
        *models = NULL;
    }
2912 2913 2914
    return -1;
}

2915

J
Jiri Denemark 已提交
2916 2917
static int
virCPUx86Translate(virCPUDefPtr cpu,
2918
                   virDomainCapsCPUModelsPtr models)
J
Jiri Denemark 已提交
2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932
{
    virCPUDefPtr translated = NULL;
    virCPUx86MapPtr map;
    virCPUx86ModelPtr model = NULL;
    size_t i;
    int ret = -1;

    if (!(map = virCPUx86GetMap()))
        goto cleanup;

    if (!(model = x86ModelFromCPU(cpu, map, -1)))
        goto cleanup;

    if (model->vendor &&
2933
        virCPUx86DataAddCPUIDInt(&model->data, &model->vendor->cpuid) < 0)
J
Jiri Denemark 已提交
2934 2935
        goto cleanup;

2936 2937
    if (model->signatures &&
        x86DataAddSignature(&model->data, model->signatures[0]) < 0)
J
Jiri Denemark 已提交
2938 2939 2940 2941 2942
        goto cleanup;

    if (!(translated = virCPUDefCopyWithoutModel(cpu)))
        goto cleanup;

2943
    if (x86Decode(translated, &model->data, models, NULL, false) < 0)
J
Jiri Denemark 已提交
2944 2945 2946 2947 2948 2949 2950 2951
        goto cleanup;

    for (i = 0; i < cpu->nfeatures; i++) {
        virCPUFeatureDefPtr f = cpu->features + i;
        if (virCPUDefUpdateFeature(translated, f->name, f->policy) < 0)
            goto cleanup;
    }

2952
    virCPUDefStealModel(cpu, translated, true);
J
Jiri Denemark 已提交
2953 2954 2955 2956 2957 2958 2959 2960 2961
    ret = 0;

 cleanup:
    virCPUDefFree(translated);
    x86ModelFree(model);
    return ret;
}


2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013
static int
virCPUx86ExpandFeatures(virCPUDefPtr cpu)
{
    virCPUx86MapPtr map;
    virCPUDefPtr expanded = NULL;
    virCPUx86ModelPtr model = NULL;
    bool host = cpu->type == VIR_CPU_TYPE_HOST;
    size_t i;
    int ret = -1;

    if (!(map = virCPUx86GetMap()))
        goto cleanup;

    if (!(expanded = virCPUDefCopy(cpu)))
        goto cleanup;

    virCPUDefFreeFeatures(expanded);

    if (!(model = x86ModelFind(map, cpu->model))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown CPU model %s"), cpu->model);
        goto cleanup;
    }

    if (!(model = x86ModelCopy(model)) ||
        x86DataToCPUFeatures(expanded, host ? -1 : VIR_CPU_FEATURE_REQUIRE,
                             &model->data, map) < 0)
        goto cleanup;

    for (i = 0; i < cpu->nfeatures; i++) {
        virCPUFeatureDefPtr f = cpu->features + i;

        if (!host &&
            f->policy != VIR_CPU_FEATURE_REQUIRE &&
            f->policy != VIR_CPU_FEATURE_DISABLE)
            continue;

        if (virCPUDefUpdateFeature(expanded, f->name, f->policy) < 0)
            goto cleanup;
    }

    virCPUDefFreeModel(cpu);

    ret = virCPUDefCopyModel(cpu, expanded, false);

 cleanup:
    virCPUDefFree(expanded);
    x86ModelFree(model);
    return ret;
}


3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037
static virCPUDefPtr
virCPUx86CopyMigratable(virCPUDefPtr cpu)
{
    virCPUDefPtr copy;
    virCPUx86MapPtr map;

    if (!(map = virCPUx86GetMap()))
        return NULL;

    if (!(copy = virCPUDefCopyWithoutModel(cpu)))
        return NULL;

    if (virCPUDefCopyModelFilter(copy, cpu, false,
                                 x86FeatureIsMigratable, map) < 0)
        goto error;

    return copy;

 error:
    virCPUDefFree(copy);
    return NULL;
}


3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059
static int
virCPUx86ValidateFeatures(virCPUDefPtr cpu)
{
    virCPUx86MapPtr map;
    size_t i;

    if (!(map = virCPUx86GetMap()))
        return -1;

    for (i = 0; i < cpu->nfeatures; i++) {
        if (!x86FeatureFind(map, cpu->features[i].name)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unknown CPU feature: %s"),
                           cpu->features[i].name);
            return -1;
        }
    }

    return 0;
}


3060 3061 3062 3063 3064 3065 3066 3067
int
virCPUx86DataAddCPUID(virCPUDataPtr cpuData,
                      const virCPUx86CPUID *cpuid)
{
    return virCPUx86DataAddCPUIDInt(&cpuData->data.x86, cpuid);
}


3068 3069 3070
int
virCPUx86DataSetSignature(virCPUDataPtr cpuData,
                          unsigned int family,
3071 3072
                          unsigned int model,
                          unsigned int stepping)
3073
{
3074
    uint32_t signature = x86MakeSignature(family, model, stepping);
3075 3076 3077 3078 3079

    return x86DataAddSignature(&cpuData->data.x86, signature);
}


3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091
uint32_t
virCPUx86DataGetSignature(virCPUDataPtr cpuData,
                          unsigned int *family,
                          unsigned int *model,
                          unsigned int *stepping)
{
    x86DataToSignatureFull(&cpuData->data.x86, family, model, stepping);

    return x86MakeSignature(*family, *model, *stepping);
}


3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104
int
virCPUx86DataSetVendor(virCPUDataPtr cpuData,
                       const char *vendor)
{
    virCPUx86CPUID cpuid = { 0 };

    if (virCPUx86VendorToCPUID(vendor, &cpuid) < 0)
        return -1;

    return virCPUx86DataAddCPUID(cpuData, &cpuid);
}


3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126
int
virCPUx86DataAddFeature(virCPUDataPtr cpuData,
                        const char *name)
{
    virCPUx86FeaturePtr feature;
    virCPUx86MapPtr map;

    if (!(map = virCPUx86GetMap()))
        return -1;

    /* ignore unknown features */
    if (!(feature = x86FeatureFind(map, name)) &&
        !(feature = x86FeatureFindInternal(name)))
        return 0;

    if (x86DataAdd(&cpuData->data.x86, &feature->data) < 0)
        return -1;

    return 0;
}


J
Jiri Denemark 已提交
3127 3128 3129 3130
struct cpuArchDriver cpuDriverX86 = {
    .name = "x86",
    .arch = archs,
    .narch = ARRAY_CARDINALITY(archs),
J
Jiri Denemark 已提交
3131
    .compare    = virCPUx86Compare,
3132
    .decode     = x86DecodeCPUData,
J
Jiri Denemark 已提交
3133
    .encode     = x86Encode,
J
Jiri Denemark 已提交
3134
    .dataFree   = virCPUx86DataFree,
P
Pavel Hrdina 已提交
3135
#if defined(__i386__) || defined(__x86_64__)
3136
    .getHost    = virCPUx86GetHost,
J
Jiri Denemark 已提交
3137
#endif
3138
    .baseline   = virCPUx86Baseline,
J
Jiri Denemark 已提交
3139
    .update     = virCPUx86Update,
3140
    .updateLive = virCPUx86UpdateLive,
3141
    .checkFeature = virCPUx86CheckFeature,
3142
    .dataCheckFeature = virCPUx86DataCheckFeature,
J
Jiri Denemark 已提交
3143
    .dataFormat = virCPUx86DataFormat,
J
Jiri Denemark 已提交
3144
    .dataParse  = virCPUx86DataParse,
J
Jiri Denemark 已提交
3145
    .getModels  = virCPUx86GetModels,
J
Jiri Denemark 已提交
3146
    .translate  = virCPUx86Translate,
3147
    .expandFeatures = virCPUx86ExpandFeatures,
3148
    .copyMigratable = virCPUx86CopyMigratable,
3149
    .validateFeatures = virCPUx86ValidateFeatures,
J
Jiri Denemark 已提交
3150
};