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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
.. SPDX-License-Identifier: CC-BY-4.0
Microcode Loading
=================
Like many other pieces of hardware, CPUs themselves have errata which are
discovered after shipping, and need to be addressed in the field. Microcode
can be considered as firmware for the processor, and updates are published as
needed by the CPU vendors.
Microcode is included as part of the system firmware by an OEM, and a system
firmware update is the preferred way of obtaining updated microcode. However,
this is often not the most expedient way to get updates, so Xen supports
loading microcode itself.
Distros typically package microcode updates for users, and may provide hooks
to cause microcode to be automatically loaded at boot time. Consult your dom0
distro guidance for microcode loading.
Microcode can make almost arbitrary changes to the processor, including to
software visible features. This includes removing features (e.g. the Haswell
TSX errata which necessitated disabling the feature entirely), or the addition
of brand new features (e.g. the Spectre v2 controls to work around speculative
execution vulnerabilities).
Boot time microcode loading
---------------------------
Where possible, microcode should be loaded at boot time. This allows the CPU
to be updated to its eventual configuration before Xen starts making setup
decisions based on the visible features.
Xen will report during boot if it performed a microcode update::
[root@host ~]# xl dmesg | grep microcode
(XEN) microcode: CPU0 updated from revision 0x1a to 0x25, date = 2018-04-02
(XEN) microcode: CPU2 updated from revision 0x1a to 0x25, date = 2018-04-02
(XEN) microcode: CPU4 updated from revision 0x1a to 0x25, date = 2018-04-02
(XEN) microcode: CPU6 updated from revision 0x1a to 0x25, date = 2018-04-02
The exact details printed are system and microcode specific. After boot, the
current microcode version can obtained from with dom0::
[root@host ~]# head /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 60
model name : Intel(R) Xeon(R) CPU E3-1240 v3 @ 3.40GHz
stepping : 3
microcode : 0x25
cpu MHz : 3392.148
cache size : 8192 KB
physical id : 0
Loading microcode from a single file
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Xen handles microcode blobs in the binary form shipped by vendors, which is
also the format which the processor accepts. This format contains header
information which Xen and various userspace tools can use to identify the
correct blob for a specific CPU.
Tools such as Dracut will identify the correct blob for the current CPU, which
will be a few kilobytes, for minimal overhead during boot.
Additionally, Xen is capable of handling a number of blobs concatenated
together, and will locate the appropriate blob based on the header
information.
This option is less efficient during boot, but may be preferred in situations
where the exact CPU details aren't known ahead of booting (e.g. install
media).
The file containing the blob(s) needs to be accessible to Xen as early as
possible.
* For multiboot/multiboot2 boots, this is achieved by loading the file as a
multiboot module. The ``ucode=$num`` command line option can be used to
identify which multiboot module contains the microcode, including negative
indexing to count from the end.
* For EFI boots, there isn't really a concept of modules. A microcode file
can be specified in the EFI configuration file with ``ucode=$file``. Use of
this mechanism will override any ``ucode=`` settings on the command line.
Loading microcode from a Linux initrd
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For systems using a Linux based dom0, it usually suffices to install the
appropriate distro package, and add ``ucode=scan`` to Xen's command line.
Xen is compatible with the Linux initrd microcode protocol. The initrd is
expected to be generated with an uncompressed CPIO archive at the beginning
which contains contains one of these two files::
kernel/x86/microcode/GenuineIntel.bin
kernel/x86/microcode/AuthenticAMD.bin
The ``ucode=scan`` command line option will cause Xen to search through all
modules to find any CPIO archives, and search the archive for the applicable
file. Xen will stop searching at the first match.
Runtime microcode loading
-------------------------
.. warning::
If at all possible, microcode updates should be done by firmware updates,
or at boot time. Not all microcode updates (or parts thereof) can be
applied at runtime.
Given the proprietary nature of microcode, we are unable to make any claim
that runtime microcode loading is risk-free. Any runtime microcode loading
needs adequate testing on a development instance before being rolled out to
production systems.
The ``xen-ucode`` utility can be used to initiate a runtime microcode load::
[root@host ~]# xen-ucode
xen-ucode: Xen microcode updating tool
Usage: xen-ucode <microcode blob>
[root@host ~]#
The details of microcode blobs (if even packaged to begin with) are specific
to the dom0 distribution. Consult your dom0 OS documentation for details.
One example with a Linux dom0 on a Haswell system might look like::
[root@host ~]# xen-ucode /lib/firmware/intel-ucode/06-3c-03
[root@host ~]#
It will pass the blob to Xen, which will check to see whether the blob is
correct for the processor, and newer than the running microcode.
If these checks pass, the entire system will be rendezvoused and an update
will be initiated on all CPUs in parallel. As with boot time loading,
diagnostics will be put out onto the console::
[root@host ~]# xl dmesg | grep microcode
(XEN) microcode: CPU0 updated from revision 0x1a to 0x25, date = 2018-04-02
(XEN) microcode: CPU2 updated from revision 0x1a to 0x25, date = 2018-04-02
(XEN) microcode: CPU4 updated from revision 0x1a to 0x25, date = 2018-04-02
(XEN) microcode: CPU6 updated from revision 0x1a to 0x25, date = 2018-04-02
(XEN) 4 cores are to update their microcode
(XEN) microcode: CPU0 updated from revision 0x25 to 0x27, date = 2019-02-26
(XEN) microcode: CPU4 updated from revision 0x25 to 0x27, date = 2019-02-26
(XEN) microcode: CPU2 updated from revision 0x25 to 0x27, date = 2019-02-26
(XEN) microcode: CPU6 updated from revision 0x25 to 0x27, date = 2019-02-26
|