-
Notifications
You must be signed in to change notification settings - Fork 24
/
rr_record.cpp
501 lines (481 loc) · 16.4 KB
/
rr_record.cpp
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/*
* ____ ____ _____
* | _ \| _ \| ___| _ ________
* | |_) | |_) | |_ | | | |_ /_ /
* | _ <| _ <| _|| |_| |/ / / /
* |_| \_\_| \_\_| \__,_/___/___|
*
* Copyright (C) National University of Singapore
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Push auxillary information onto the aux vector.
*/
void AUXVEC::push(const void *buf, size_t size, uint8_t mask, unsigned kind)
{
if (i >= MAX)
error("auxillary buffer overflow");
if (size >= AUX_MAX)
error("auxillary data is too big; max is %u, got %zu", AUX_MAX,
size);
size_t len = sizeof(AUX) + size;
AUX *aux = (AUX *)xmalloc(len);
aux->kind = kind;
aux->size = size;
aux->mask = mask;
memcpy(aux->data, buf, size);
vec[i].iov_base = aux;
vec[i].iov_len = len;
i++;
}
void AUXVEC::end(void)
{
push(NULL, 0, 0x0, AEND);
}
void AUXVEC::push(const struct msghdr *msg, uint8_t mask, unsigned kind)
{
size_t size = sizeof(*msg);
size_t iov_size = msg->msg_iovlen * sizeof(struct iovec);
size += msg->msg_namelen;
size += msg->msg_controllen;
size += iov_size;
uint8_t buf[size];
uint8_t *ptr = buf;
memcpy(ptr, msg, sizeof(*msg));
ptr += sizeof(*msg);
memcpy(ptr, msg->msg_name, msg->msg_namelen);
ptr += msg->msg_namelen;
memcpy(ptr, msg->msg_control, msg->msg_controllen);
ptr += msg->msg_controllen;
memcpy(ptr, msg->msg_iov, iov_size);
push(buf, size, mask, kind);
}
/*
* Record thread start.
*/
static void record_start(int id)
{
SYSCALL call_0 = {0};
SYSCALL *call = &call_0;
call->no = SYS_start;
call->id = id;
AUXVEC auxv(call);
auxv.end();
pcap_write(option_pcap, auxv.iov(), auxv.iovcnt(), SIZE_MAX, SCHED_FD,
OUTBOUND);
print_hook(stderr, call);
}
/*
* Record program start.
*/
static void record_init(char **argv, char **envp)
{
SYSCALL call_0 = {0};
SYSCALL *call = &call_0;
// First message must be SYS_setenvp
PRINTER P;
uint32_t argc = 0, envl = 0;
for (char **p = argv; *p != NULL; p++)
{
P.put(*p);
P.put('\0');
argc++;
}
for (char **p = envp; *p != NULL; p++)
{
P.put(*p);
P.put('\0');
envl++;
}
pid_t pid = getpid();
size_t size = sizeof(CONTEXT) + P.len();
CONTEXT *ctx = (CONTEXT *)xmalloc(size);
memcpy(ctx->nonce, option_nonce, sizeof(ctx->nonce));
ctx->cpu = option_cpu;
ctx->pid = pid;
ctx->fork = option_fork;
ctx->argc = argc;
ctx->envl = envl;
ctx->size = P.len();
memcpy(ctx->args, P.str(), P.len());
call->no = SYS_setcontext;
call->id = 1;
call->arg0.buf = (uint8_t *)ctx;
call->arg1.size = size;
{
AUXVEC auxv(call);
auxv.push(ctx, size, MI_____, ACTX);
auxv.end();
pcap_write(option_pcap, auxv.iov(), auxv.iovcnt(), SIZE_MAX,
SCHED_FD, OUTBOUND);
}
print_hook(stderr, call);
xfree((void *)ctx);
asm volatile ("mov %0,%%fs:0x2d4" : : "r"(pid));
}
/*
* Record a mmap().
*/
static intptr_t record_mmap(FILE *pcap, AUXVEC *auxv, void *addr,
size_t length, int prot, int flags, int fd, ssize_t offset)
{
if (flags & MAP_ANONYMOUS)
{
intptr_t r = (intptr_t)mmap(addr, length, prot, flags, fd, offset);
return (r < 0? -errno: r);
}
int flags1 = MAP_ANONYMOUS | MAP_PRIVATE | (flags & MAP_FIXED);
void *ptr = mmap(addr, length, PROT_READ | PROT_WRITE, flags1, -1, 0);
if (ptr == MAP_FAILED)
return -errno;
struct stat buf;
if (fstat(fd, &buf) < 0)
{
mmap_error:
intptr_t r = -errno;
(void)munmap(ptr, length);
return r;
}
size_t size = buf.st_size;
size = (size > (size_t)offset? size - offset: 0);
size = (size > length? length: size);
auxv->push((uint8_t *)&size, sizeof(size), M_I____, ASIZ);
void *map = ptr;
int prot1 = prot | PROT_READ;
if (size > 0)
{
map = mmap(ptr, size, prot1, flags | MAP_FIXED, fd, offset);
if (map != ptr)
goto mmap_error;
}
if (size <= MMAP_RECORD_MAX)
pcap_write(pcap, (uint8_t *)map, size, fd, INBOUND);
if (prot != prot1)
(void)mprotect(map, size, prot);
return (intptr_t)map;
}
/*
* Called during recording whenever a syscall occurs.
* Execute the syscall and record the result into the pcap file.
*/
static int record_hook(STATE *state)
{
SYSCALL call_0 = {0};
SYSCALL *call = &call_0;
syscall_init(call, state, /*replay=*/false);
call->id = thread_self()->id;
call->no = (int)state->rax;
AUXVEC auxv(call);
bool unlock = syscall_unlock(call);
if (unlock)
{
THREAD_UNLOCK();
SIGNAL_UNBLOCK();
}
FILE *pcap = option_pcap;
// Execute the syscall:
switch (call->no)
{
case SYS_close:
switch (call->arg0.fd)
{
case PCAP_FILENO: case STDERR_FILENO:
// Stop program closing useful fds
call->result = 0;
break;
default:
goto syscall;
}
break;
case /*SYS_close_range=*/436:
call->result = -ENOSYS;
break;
case SYS_rt_sigaction:
call->result = signal_action(call->arg0.sig,
call->arg1.action, call->arg2.action);
break;
case SYS_rt_sigprocmask:
call->result = signal_procmask(call->arg0.i32,
call->arg1.sigset, call->arg2.sigset);
break;
case SYS_sched_setaffinity:
call->result = -EPERM;
break;
case SYS_shmget: case SYS_shmctl: case SYS_shmat: case SYS_execve:
case SYS_execveat: case SYS_arch_prctl: case SYS_get_thread_area:
case /*SYS_rseq=*/334:
call->result = 0;
break;
case SYS_set_thread_area:
call->result = -ENOSYS;
break;
case SYS_fork: case SYS_vfork:
call->result = thread_fork();
break;
case SYS_rdtsc:
call->result = rdtsc();
break;
case SYS_clone:
call->result = thread_clone(state);
break;
case /*SYS_clone3=*/435:
call->result = thread_clone3(state);
break;
case SYS_madvise:
if (call->arg2.i32 == MADV_DONTNEED &&
(uintptr_t)call >= call->arg0.u64 &&
(uintptr_t)call < call->arg0.u64 + call->arg1.u64)
{
// Ignore MADV_DONTNEED on current stack:
call->result = -ENOSYS;
}
else
call->result = syscall(call);
break;
case SYS_ioctl:
if (ioctl_info(call->arg1.i32)->fail)
call->result = -ENOSYS;
else
call->result = syscall(call);
break;
case SYS_fcntl:
if (fcntl_info(call->arg1.i32)->fail)
call->result = -ENOSYS;
else
call->result = syscall(call);
break;
case SYS_prctl:
if (prctl_info(call->arg0.i32)->fail)
call->result = -ENOSYS;
else
call->result = syscall(call);
break;
case SYS_mmap:
call->result = record_mmap(pcap, &auxv, call->arg0.ptr,
call->arg1.size, call->arg2.flags, call->arg3.flags,
call->arg4.fd, call->arg5.offset);
break;
case SYS_sendmmsg: case SYS_recvmmsg:
{
// For simplicity, we truncate these calls to a single message.
// This effectively converts sendmmsg()/recvmmsg() into hacked
// versions of sendmsg()/recvmsg().
unsigned vlen = (unsigned)call->arg2.u32;
call->result = 0;
if (vlen == 0) break;
struct mmsghdr *mmsg = call->arg1.mmsg;
call->result = syscall(call->no, call->arg0.fd, mmsg, /*vlen=*/1,
call->arg3.u32);
call->result = (call->result > 0? (intptr_t)mmsg->msg_len:
call->result);
break;
}
case SYS_exit: case SYS_exit_group:
// Syscall does not return, so defer execution
call->result = 0;
break;
case SYS_kill:
call->result = syscall(SYS_kill, call->arg0.pid, 0);
break;
case SYS_tgkill:
call->result = syscall(SYS_tgkill, call->arg0.pid, call->arg1.pid,
0);
break;
default:
syscall:
call->result = syscall(call);
break;
}
if (unlock)
{
SIGNAL_BLOCK();
THREAD_LOCK();
}
ENTRY *E = NULL, *F = NULL;
int flags, *fds;
if (call->result < 0)
goto handler;
char name[BUFSIZ];
switch (call->no)
{
// Special cases:
case SYS_open: case SYS_openat:
path_name((int)call->result,
(call->no == SYS_open? call->arg0.path: call->arg1.path),
name, sizeof(name));
flags = (call->no == SYS_open? call->arg1.flags: call->arg2.flags);
E = fd_open((int)call->result, S_IFREG, SOCK_STREAM, flags, name);
pcap_write_open(pcap, (int)call->result);
auxv.push(E->name, strlen(E->name)+1,
(call->no == SYS_open? MI_____: M_I____), APTH);
goto handler;
case SYS_socket:
E = fd_open((int)call->result, S_IFSOCK, call->arg2.i32, 0x0,
socket_name((int)call->result, name, sizeof(name)));
goto handler;
case SYS_socketpair:
fds = call->arg3.fds;
E = fd_open(fds[0], S_IFSOCK, call->arg2.i32, 0x0,
socket_name(fds[0], name, sizeof(name)));
F = fd_open(fds[1], S_IFSOCK, call->arg2.i32, 0x0,
socket_name(fds[0], name, sizeof(name)));
goto handler;
case SYS_eventfd: case SYS_eventfd2:
E = fd_open((int)call->result, S_IFSOCK, SOCK_DGRAM, 0x0,
event_name((int)call->result, name, sizeof(name)));
goto handler;
case SYS_epoll_create: case SYS_epoll_create1:
E = fd_open((int)call->result, S_IFSOCK, SOCK_DGRAM, 0x0,
epoll_name((int)call->result, name, sizeof(name)));
goto handler;
case SYS_connect: case SYS_bind:
E = fd_bind(call->arg0.fd, call->arg1.addr, call->arg2.size);
pcap_write_open(pcap, call->arg0.fd);
goto handler;
case SYS_accept: case SYS_accept4:
E = fd_entry(call->arg0.fd);
flags = (call->no == SYS_accept4? call->arg3.i32: 0x0);
E = fd_open((int)call->result, S_IFSOCK, E->socktype, flags, NULL);
goto handler;
case /*SYS_memfd_create=*/319:
E = fd_open((int)call->result, S_IFSOCK, SOCK_STREAM, O_CREAT,
memfd_name((int)call->result, call->arg0.path, name,
sizeof(name)));
goto handler;
case SYS_pipe: case SYS_pipe2:
fds = call->arg0.fds;
flags = (call->no == SYS_pipe2? call->arg1.i32: 0x0);
E = fd_open(fds[0], S_IFIFO, SOCK_STREAM, flags,
pipe_name(fds[0], 0, name, sizeof(name)));
F = fd_open(fds[1], S_IFIFO, SOCK_STREAM, flags,
pipe_name(fds[1], 1, name, sizeof(name)));
pcap_write_open(pcap, fds[0]);
pcap_write_open(pcap, fds[1]);
goto handler;
case SYS_dup: case SYS_dup2: case SYS_dup3:
E = fd_dup(fd_get(call->arg0.fd), (int)call->result);
goto handler;
case SYS_fcntl:
switch (call->arg1.i32)
{
case /*F_DUPFD=*/0: case /*F_DUPFD_CLOEXEC=*/1030:
E = fd_dup(fd_get(call->arg0.fd), (int)call->result);
break;
default:
break;
}
goto handler;
case SYS_close:
if (call->arg0.fd == PCAP_FILENO)
goto handler;
pcap_write_close(pcap, call->arg0.fd);
fd_close(call->arg0.fd);
goto handler;
handler:
default: // Generic syscall hander:
{
if ((size_t)call->no >= sizeof(TABLE) / sizeof(TABLE[0]))
error("syscall number %d is not yet implemented", call->no);
if (E != NULL)
{
auxv.push(&E->port, sizeof(E->port), MR_, APRT);
auxv.push(E->name, strlen(E->name)+1, MR_, ANAM);
}
if (F != NULL)
{
auxv.push(&F->port, sizeof(F->port), M_R, APRT);
auxv.push(F->name, strlen(F->name)+1, M_R, ANAM);
}
const INFO *info = &TABLE[call->no];
int fd = -1;
bool success = (call->result >= 0);
int n = syscall_arity(call);
for (int i = 0; i < n; i++)
{
uint8_t arg = info->args[i];
if (arg == A___)
break;
fd = (arg == A_FD? call->args[i].fd: fd);
uint8_t mask = (MI_____ << i);
bool outbound = syscall_is_output(call, i);
if (!success)
continue; // Nothing to record
if (!syscall_used(call, i))
continue;
size_t size = 0;
const uint8_t *buf = syscall_buf(call, i, &size);
if (buf == NULL)
continue;
const struct iovec *iov = (struct iovec *)buf;
const struct msghdr *msg = (struct msghdr *)buf;
const struct mmsghdr *mmsg = (struct mmsghdr *)buf;
bool io = (info->kind == P_IO) && (fd >= 0);
switch (arg)
{
case ABUF:
if (io)
pcap_write(pcap, buf, call->result, fd, outbound);
else
auxv.push(buf, size, mask, arg);
break;
case AIOV:
pcap_write(pcap, iov, size / sizeof(struct iovec),
call->result, fd, outbound);
auxv.push(buf, size, mask, AIOV);
break;
case AMSG:
pcap_write(pcap, msg->msg_iov, msg->msg_iovlen,
call->result, fd, outbound);
auxv.push(msg, mask, AMSG);
break;
case A_MM:
pcap_write(pcap, mmsg->msg_hdr.msg_iov,
mmsg->msg_hdr.msg_iovlen, call->result,
fd, outbound);
auxv.push(&mmsg->msg_hdr, mask, A_MM);
break;
default:
auxv.push(buf, size, mask, arg);
break;
}
}
break;
}
}
auxv.end();
pcap_write(pcap, auxv.iov(), auxv.iovcnt(), SIZE_MAX, SCHED_FD, OUTBOUND);
print_hook(stderr, call);
// Special handling:
switch (call->no)
{
case SYS_tgkill: case SYS_kill:
(void)syscall(call);
break;
case SYS_exit_group:
fclose(pcap);
syscall(SYS_exit_group, call->arg0.i32);
abort(); // Not reached
case SYS_exit:
thread_exit(state);
abort(); // Not reached
case SYS_sendmmsg: case SYS_recvmmsg:
call->result = (call->result >= 0? 1: call->result);
break;
default:
break;
}
state->rax = call->result;
return REPLACE;
}