vmm_core/cpuid/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! VM CPUID support.

pub mod topology;

use hvdef::VIRTUALIZATION_STACK_CPUID_INTERFACE;
use hvdef::VIRTUALIZATION_STACK_CPUID_PROPERTIES;
use hvdef::VIRTUALIZATION_STACK_CPUID_VENDOR;
use hvdef::VS1_PARTITION_PROPERTIES_EAX_EXTENDED_IOAPIC_RTE;
use hvdef::VS1_PARTITION_PROPERTIES_EAX_IS_PORTABLE;
use virt::CpuidLeaf;
use x86defs::cpuid::CpuidFunction;

/// A function used to query the cpuid result for a given input value (`eax`,
/// `ecx`).
pub type CpuidFn<'a> = &'a dyn Fn(u32, u32) -> [u32; 4];

/// Returns CPUID leaves for Hyper-V-style VMs.
///
/// `extended_ioapic_rte` indicates that MSIs and the IOAPIC can reference a
/// 15-bit APIC ID instead of the architectural 8-bit value. To match Hyper-V
/// behavior, this should be enabled for non-PCAT VMs.
pub fn hyperv_cpuid_leaves(extended_ioapic_rte: bool) -> impl Iterator<Item = CpuidLeaf> {
    [
        // Enable the virtualization bit.
        //
        // Not all hypervisors (e.g. KVM) enable this automatically.
        CpuidLeaf::new(CpuidFunction::VersionAndFeatures.0, [0, 0, 1 << 31, 0]).masked([
            0,
            0,
            1 << 31,
            0,
        ]),
        CpuidLeaf::new(
            VIRTUALIZATION_STACK_CPUID_VENDOR,
            [
                VIRTUALIZATION_STACK_CPUID_PROPERTIES,
                u32::from_le_bytes(*b"Micr"),
                u32::from_le_bytes(*b"osof"),
                u32::from_le_bytes(*b"t VS"),
            ],
        ),
        CpuidLeaf::new(
            VIRTUALIZATION_STACK_CPUID_INTERFACE,
            [u32::from_le_bytes(*b"VS#1"), 0, 0, 0],
        ),
        CpuidLeaf::new(
            VIRTUALIZATION_STACK_CPUID_PROPERTIES,
            [
                VS1_PARTITION_PROPERTIES_EAX_IS_PORTABLE
                    | if extended_ioapic_rte {
                        VS1_PARTITION_PROPERTIES_EAX_EXTENDED_IOAPIC_RTE
                    } else {
                        0
                    },
                0,
                0,
                0,
            ],
        ),
    ]
    .into_iter()
}