-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxsave.c
198 lines (174 loc) · 3.79 KB
/
fxsave.c
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#define _GNU_SOURCE
#include <ctype.h>
#include <err.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <unistd.h>
#define ARRSZE(X) (sizeof(X) / sizeof(*(X)))
typedef uint64_t int128[2];
#define PR128(N, S, ...) \
printf(S ": %016"PRIx64"%016"PRIx64 "\n", __VA_ARGS__, (N)[1],(N)[0])
static struct {
int e; /* Use fxsave64 */
int p; /* pattern */
void (*c)();
int m, r, x;
} opts;
#define X(N, S) uint64_t N:S;
struct fxsave {
#include "fxsave.inc"
int128 mm[8];
int128 xmm[8];
int128 rsvd4[11];
int128 avail[3];
} __attribute__((packed));
struct fxsave64 {
#include "fxsave64.inc"
int128 mm[8];
int128 xmm[16];
int128 rsvd4[3];
int128 avail[3];
} __attribute__((packed));
#undef X
extern void fxsave(struct fxsave*);
extern void fxsave64(struct fxsave64*);
#ifdef __x86_64__
__asm__(
".global fxsave\n"
"fxsave:\n\t"
"fxsave (%rdi)\n\t"
"xor %rax, %rax\n\t"
"ret\n\t"
);
__asm__(
".global fxsave64\n"
"fxsave64:\n\t"
"mov %rdi, %r15\n\t"
".byte 0x48\n\t"
"fxsave (%rdi)\n\t"
"xor %rax, %rax\n\t"
"ret\n\t"
);
#define OPT_64 "e"
#else
__asm__(
".global fxsave\n"
"fxsave:\n\t"
"mov %eax, 8(%esp)\n\t"
"fxsave (%eax)\n\t"
"xor %eax, %eax\n\t"
"ret\n\t"
);
#define OPT_64 ""
#endif
#define def_print(N) \
static void print_pre_##N(struct N* b); \
static void print_##N(struct N* b) { \
print_pre_##N(b); \
for (size_t i = 0; opts.m && (i < ARRSZE(b->mm)); i++) \
PR128(b->mm[i], "mm[%zu]", i); \
for (size_t i = 0; opts.x && (i < ARRSZE(b->xmm)); i++) \
PR128(b->mm[i], "xmm[%zu]", i); \
for (size_t i = 0; opts.r && (i < ARRSZE(b->rsvd4)); i++) \
PR128(b->rsvd4[i], "rsvd[%zu]", i); \
for (size_t i = 0; opts.r && (i < ARRSZE(b->avail)); i++) \
PR128(b->avail[i], "avail[%zu]", i); \
} \
static void print_pre_##N(struct N* b)
#define X(N, S) printf(#N ": %" PRIx##S "\n", b->N);
def_print(fxsave) {
#include "fxsave.inc"
}
def_print(fxsave64) {
#include "fxsave64.inc"
}
#undef X
static void* mmap_end(size_t sze) {
char* out = mmap(0, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
if (out == MAP_FAILED)
err(1, "mmap");
if (mprotect(out + 4096, 4096, PROT_NONE) < 0)
err(1, "mprotect");
return out + 4096 - sze;
}
static void* execute_string(char* s) {
char* out = mmap(0, strlen(s) + 1, PROT_READ|PROT_WRITE|PROT_EXEC,
MAP_PRIVATE|MAP_ANON, -1, 0);
if (out == MAP_FAILED)
err(1, "mmap");
char* cur = out;
while (*s) {
while (*s && !isalnum(*s))
++s;
if (!*s)
break;
if (!isxdigit(*s))
errx(1, "Invalid hex code '%c'", *s);
char* nextp = s + 2;
char next = *nextp;
*nextp = 0;
*(cur++) = strtol(s, &s, 16);
*nextp = next;
}
*cur = 0xc3;
return out;
}
static int help(char* name) {
fprintf(stderr, "Usage: %s [-mxr"OPT_64"] [-p hex] [-c hex_code]\n"
"m, x, r: toggle mm, xmm, and reserved fields\n"
"p: initialization pattern of fxsave area\n"
"c: x86 code to execute before call to fxsave\n",
name);
if (*OPT_64)
fprintf(stderr, OPT_64": fxsave with rex.w = 1\n");
return 0;
}
int main(int argc, char** argv) {
int arg;
opts.p = 0x5a;
while ((arg = getopt(argc, argv, OPT_64 "p:c:mxrh")) != -1) {
switch (arg) {
case 'e':
opts.e = 1;
break;
case 'p':
opts.p = strtol(optarg, NULL, 16);
break;
case 'c':
opts.c = execute_string(optarg);
break;
case 'm':
opts.m ^= 1;
break;
case 'x':
opts.x ^= 1;
break;
case 'r':
opts.r ^= 1;
break;
case 'h':
return help(argv[0]);
}
}
if (opts.c)
opts.c();
#ifdef __x86_64__
if (opts.e)
{
struct fxsave64* buf = mmap_end(sizeof(*buf));
memset(buf, opts.p, sizeof(*buf));
fxsave64(buf);
print_fxsave64(buf);
} else
#endif
{
struct fxsave* buf = mmap_end(sizeof(*buf));
memset(buf, opts.p, sizeof(*buf));
fxsave(buf);
print_fxsave(buf);
}
}