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
|
//===-- klee-replay.c -----------------------------------------------------===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "klee-replay.h"
#include "klee/Internal/ADT/KTest.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <unistd.h>
#include <sys/signal.h>
#include <sys/wait.h>
static void __emit_error(const char *msg);
static KTest* input;
static unsigned obj_index;
static const char *progname = 0;
static unsigned monitored_pid = 0;
static unsigned monitored_timeout;
static void stop_monitored(int process) {
fprintf(stderr, "TIMEOUT: ATTEMPTING GDB EXIT\n");
int pid = fork();
if (pid < 0) {
fprintf(stderr, "ERROR: gdb_exit: fork failed\n");
} else if (pid == 0) {
/* Run gdb in a child process. */
const char *gdbargs[] = {
"/usr/bin/gdb",
"--pid", "",
"-q",
"--batch",
"--eval-command=call exit(1)",
0,
0
};
char pids[64];
sprintf(pids, "%d", process);
gdbargs[2] = pids;
/* Make sure gdb doesn't talk to the user */
close(0);
fprintf(stderr, "RUNNING GDB: ");
unsigned i;
for (i = 0; i != 5; ++i)
fprintf(stderr, "%s ", gdbargs[i]);
fprintf(stderr, "\n");
execvp(gdbargs[0], (char * const *) gdbargs);
perror("execvp");
_exit(66);
} else {
/* Parent process, wait for gdb to finish. */
int res, status;
do {
res = waitpid(pid, &status, 0);
} while (res < 0 && errno == EINTR);
if (res < 0) {
perror("waitpid");
_exit(66);
}
}
}
static void int_handler(int signal) {
fprintf(stderr, "%s: Received signal %d. Killing monitored process(es)\n",
progname, signal);
if (monitored_pid) {
stop_monitored(monitored_pid);
/* Kill the process group of monitored_pid. Since we called
setpgrp() for pid, this will not kill us, or any of our
ancestors */
kill(-monitored_pid, SIGKILL);
} else {
_exit(99);
}
}
static void timeout_handler(int signal) {
fprintf(stderr, "%s: EXIT STATUS: TIMED OUT (%d seconds)\n", progname,
monitored_timeout);
if (monitored_pid) {
stop_monitored(monitored_pid);
/* Kill the process group of monitored_pid. Since we called
setpgrp() for pid, this will not kill us, or any of our
ancestors */
kill(-monitored_pid, SIGKILL);
} else {
_exit(88);
}
}
void process_status(int status,
time_t elapsed,
const char *pfx) {
fprintf(stderr, "%s: ", progname);
if (pfx)
fprintf(stderr, "%s: ", pfx);
if (WIFSIGNALED(status)) {
fprintf(stderr, "EXIT STATUS: CRASHED signal %d (%d seconds)\n",
WTERMSIG(status), (int) elapsed);
_exit(77);
} else if (WIFEXITED(status)) {
int rc = WEXITSTATUS(status);
char msg[64];
if (rc == 0) {
strcpy(msg, "NORMAL");
} else {
sprintf(msg, "ABNORMAL %d", rc);
}
fprintf(stderr, "EXIT STATUS: %s (%d seconds)\n", msg, (int) elapsed);
_exit(rc);
} else {
fprintf(stderr, "EXIT STATUS: NONE (%d seconds)\n", (int) elapsed);
_exit(0);
}
}
static void run_monitored(char *executable, int argc, char **argv) {
int pid;
const char *t = getenv("KLEE_REPLAY_TIMEOUT");
if (!t)
t = "10000000";
monitored_timeout = atoi(t);
if (monitored_timeout==0) {
fprintf(stderr, "ERROR: invalid timeout (%s)\n", t);
_exit(1);
}
/* Kill monitored process(es) on SIGINT and SIGTERM */
signal(SIGINT, int_handler);
signal(SIGTERM, int_handler);
signal(SIGALRM, timeout_handler);
pid = fork();
if (pid < 0) {
perror("fork");
_exit(66);
} else if (pid == 0) {
/* This process actually executes the target program.
*
* Create a new process group for pid, and the process tree it may spawn. We
* do this, because later on we might want to kill pid _and_ all processes
* spawned by it and its descendants.
*/
setpgrp();
execv(executable, argv);
perror("execv");
_exit(66);
} else {
/* Parent process which monitors the child. */
int res, status;
time_t start = time(0);
sigset_t masked;
sigemptyset(&masked);
sigaddset(&masked, SIGALRM);
monitored_pid = pid;
alarm(monitored_timeout);
do {
res = waitpid(pid, &status, 0);
} while (res < 0 && errno == EINTR);
if (res < 0) {
perror("waitpid");
_exit(66);
}
/* Just in case, kill the process group of pid. Since we called setpgrp()
for pid, this will not kill us, or any of our ancestors */
kill(-pid, SIGKILL);
process_status(status, time(0) - start, 0);
}
}
static void usage(void) {
fprintf(stderr, "Usage: %s <executable> { <ktest-files> }\n", progname);
fprintf(stderr, " or: %s --create-files-only <ktest-file>\n", progname);
fprintf(stderr, "\n");
fprintf(stderr, "Set KLEE_REPLAY_TIMEOUT environment variable to set a timeout (in seconds).\n");
exit(1);
}
int main(int argc, char** argv) {
int prg_argc;
char ** prg_argv;
progname = argv[0];
if (argc < 3)
usage();
/* Special case hack for only creating files and not actually executing the
* program.
*/
if (strcmp(argv[1], "--create-files-only") == 0) {
if (argc != 3)
usage();
char* input_fname = argv[2];
input = kTest_fromFile(input_fname);
if (!input) {
fprintf(stderr, "%s: error: input file %s not valid.\n", progname,
input_fname);
exit(1);
}
prg_argc = input->numArgs;
prg_argv = input->args;
prg_argv[0] = argv[1];
klee_init_env(&prg_argc, &prg_argv);
replay_create_files(&__exe_fs);
return 0;
}
/* Normal execution path ... */
char* executable = argv[1];
/* Verify the executable exists. */
FILE *f = fopen(executable, "r");
if (!f) {
fprintf(stderr, "Error: executable %s not found.\n", executable);
exit(1);
}
fclose(f);
int idx = 0;
for (idx = 2; idx != argc; ++idx) {
char* input_fname = argv[idx];
unsigned i;
input = kTest_fromFile(input_fname);
if (!input) {
fprintf(stderr, "%s: error: input file %s not valid.\n", progname,
input_fname);
exit(1);
}
obj_index = 0;
prg_argc = input->numArgs;
prg_argv = input->args;
prg_argv[0] = argv[1];
klee_init_env(&prg_argc, &prg_argv);
if (idx > 2)
fprintf(stderr, "\n");
fprintf(stderr, "%s: TEST CASE: %s\n", progname, input_fname);
fprintf(stderr, "%s: ARGS: ", progname);
for (i=0; i != (unsigned) prg_argc; ++i) {
char *s = prg_argv[i];
if (s[0]=='A' && s[1] && !s[2]) s[1] = '\0';
fprintf(stderr, "\"%s\" ", prg_argv[i]);
}
fprintf(stderr, "\n");
/* Run the test case machinery in a subprocess, eventually this parent
process should be a script or something which shells out to the actual
execution tool. */
int pid = fork();
if (pid < 0) {
perror("fork");
_exit(66);
} else if (pid == 0) {
/* Create the input files, pipes, etc., and run the process. */
replay_create_files(&__exe_fs);
run_monitored(executable, prg_argc, prg_argv);
_exit(0);
} else {
/* Wait for the test case. */
int res, status;
do {
res = waitpid(pid, &status, 0);
} while (res < 0 && errno == EINTR);
if (res < 0) {
perror("waitpid");
_exit(66);
}
}
}
return 0;
}
/* Klee functions */
int __fputc_unlocked(int c, FILE *f) {
return fputc_unlocked(c, f);
}
int __fgetc_unlocked(FILE *f) {
return fgetc_unlocked(f);
}
int klee_get_errno() {
return errno;
}
void klee_warning(char *name) {
fprintf(stderr, "WARNING: %s\n", name);
}
void klee_warning_once(char *name) {
fprintf(stderr, "WARNING: %s\n", name);
}
int klee_assume(int x) {
if (!x) {
fprintf(stderr, "WARNING: klee_assume(0)!\n");
}
return 0;
}
int klee_is_symbolic(int x) {
return 0;
}
void klee_prefer_cex(void *buffer, unsigned condition) {
;
}
void klee_make_symbolic(void *addr, unsigned nbytes, const char *name) {
/* XXX remove model version code once new tests gen'd */
if (obj_index >= input->numObjects) {
if (strcmp("model_version", name) == 0) {
assert(nbytes == 4);
*((int*) addr) = 0;
} else {
__emit_error("ran out of appropriate inputs");
}
} else {
KTestObject *boo = &input->objects[obj_index];
if (strcmp("model_version", name) == 0 &&
strcmp("model_version", boo->name) != 0) {
assert(nbytes == 4);
*((int*) addr) = 0;
} else {
if (boo->numBytes != nbytes) {
fprintf(stderr, "make_symbolic mismatch, different sizes: "
"%d in input file, %d in code\n", boo->numBytes, nbytes);
exit(1);
} else {
memcpy(addr, boo->bytes, nbytes);
obj_index++;
}
}
}
}
/* Redefined here so that we can check the value read. */
int klee_range(int min, int max, const char* name) {
int r;
klee_make_symbolic(&r, sizeof r, name);
if (r < min || r >= max) {
fprintf(stderr, "klee_range(%d, %d, %s) returned invalid result: %d\n",
min, max, name, r);
exit(1);
}
return r;
}
void klee_report_error(const char *file, int line,
const char *message, const char *suffix) {
__emit_error(message);
}
void klee_mark_global(void *object) {
;
}
/*** HELPER FUNCTIONS ***/
static void __emit_error(const char *msg) {
fprintf(stderr, "ERROR: %s\n", msg);
exit(1);
}
|