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
|
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <errno.h>
#include <string.h>
#include <inttypes.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <xenctrl.h>
static xc_interface *xch;
static const char intel_id[] = "GenuineIntel";
static const char amd_id[] = "AuthenticAMD";
static void show_curr_cpu(FILE *f)
{
int ret;
struct xenpf_pcpu_version cpu_ver = { .xen_cpuid = 0 };
struct xenpf_ucode_revision ucode_rev = { .cpu = 0 };
/* Always exit with 2 when called during usage-info */
int exit_code = (f == stderr) ? 2 : 1;
ret = xc_get_cpu_version(xch, &cpu_ver);
if ( ret )
{
fprintf(stderr, "Failed to get CPU information. (err: %s)\n",
strerror(errno));
exit(exit_code);
}
ret = xc_get_ucode_revision(xch, &ucode_rev);
if ( ret )
{
fprintf(stderr, "Failed to get microcode information. (err: %s)\n",
strerror(errno));
exit(exit_code);
}
/*
* Print signature in a form that allows to quickly identify which ucode
* blob to load, e.g.:
*
* Intel: /lib/firmware/intel-ucode/06-55-04
* AMD: /lib/firmware/amd-ucode/microcode_amd_fam19h.bin
*/
if ( memcmp(cpu_ver.vendor_id, intel_id,
sizeof(cpu_ver.vendor_id)) == 0 )
{
fprintf(f,
"CPU signature %02x-%02x-%02x (raw 0x%08x) pf %#x revision 0x%08x\n",
cpu_ver.family, cpu_ver.model, cpu_ver.stepping,
ucode_rev.signature, ucode_rev.pf, ucode_rev.revision);
}
else if ( memcmp(cpu_ver.vendor_id, amd_id,
sizeof(cpu_ver.vendor_id)) == 0 )
{
fprintf(f,
"CPU signature %02x-%02x-%02x (raw 0x%08x) revision 0x%08x\n",
cpu_ver.family, cpu_ver.model, cpu_ver.stepping,
ucode_rev.signature, ucode_rev.revision);
}
else
{
fprintf(f, "Unsupported CPU vendor: %s\n", cpu_ver.vendor_id);
exit(exit_code);
}
}
int main(int argc, char *argv[])
{
int fd, ret;
char *filename, *buf;
size_t len;
struct stat st;
xch = xc_interface_open(NULL, NULL, 0);
if ( xch == NULL )
{
fprintf(stderr, "Error opening xc interface. (err: %s)\n",
strerror(errno));
exit(1);
}
if ( argc < 2 )
{
fprintf(stderr,
"xen-ucode: Xen microcode updating tool\n"
"Usage: %s [<microcode file> | show-cpu-info]\n", argv[0]);
show_curr_cpu(stderr);
exit(2);
}
if ( !strcmp(argv[1], "show-cpu-info") )
{
show_curr_cpu(stdout);
return 0;
}
filename = argv[1];
fd = open(filename, O_RDONLY);
if ( fd < 0 )
{
fprintf(stderr, "Could not open %s. (err: %s)\n",
filename, strerror(errno));
exit(1);
}
if ( fstat(fd, &st) != 0 )
{
fprintf(stderr, "Could not get the size of %s. (err: %s)\n",
filename, strerror(errno));
exit(1);
}
len = st.st_size;
buf = mmap(0, len, PROT_READ, MAP_PRIVATE, fd, 0);
if ( buf == MAP_FAILED )
{
fprintf(stderr, "mmap failed. (error: %s)\n", strerror(errno));
exit(1);
}
ret = xc_microcode_update(xch, buf, len);
if ( ret )
{
fprintf(stderr, "Failed to update microcode. (err: %s)\n",
strerror(errno));
exit(1);
}
xc_interface_close(xch);
if ( munmap(buf, len) )
{
printf("Could not unmap: %d(%s)\n", errno, strerror(errno));
exit(1);
}
close(fd);
return 0;
}
|