Port the fauxserver changes to afl-cmplog and code format

This commit is contained in:
rish9101
2020-03-17 15:19:24 +05:30
parent 8cc39a3590
commit d1d2fceed8
2 changed files with 62 additions and 161 deletions

View File

@ -372,12 +372,17 @@ void init_cmplog_forkserver(afl_state_t *afl) {
u8 run_cmplog_target(afl_state_t *afl, u32 timeout) { u8 run_cmplog_target(afl_state_t *afl, u32 timeout) {
static struct itimerval it; static struct timeval it;
static u32 prev_timed_out = 0; static u32 prev_timed_out = 0;
static u64 exec_ms = 0; static u64 exec_ms = 0;
int status = 0; int status = 0;
int sret;
u32 tb4; u32 tb4;
s32 res;
fd_set readfds;
afl->fsrv.child_timed_out = 0; afl->fsrv.child_timed_out = 0;
@ -388,108 +393,8 @@ u8 run_cmplog_target(afl_state_t *afl, u32 timeout) {
memset(afl->fsrv.trace_bits, 0, MAP_SIZE); memset(afl->fsrv.trace_bits, 0, MAP_SIZE);
MEM_BARRIER(); MEM_BARRIER();
/* If we're running in "dumb" mode, we can't rely on the fork server /* Since we always have a forkserver (or a fauxserver) running, we can simply
logic compiled into the target program, so we will just keep calling tell them to have at it and read back the pid from it.*/
execve(). There is a bit of code duplication between here and
init_forkserver(), but c'est la vie. */
if (afl->dumb_mode == 1 || afl->no_forkserver) {
afl->cmplog_child_pid = fork();
if (afl->cmplog_child_pid < 0) PFATAL("fork() failed");
if (!afl->cmplog_child_pid) {
struct rlimit r;
if (afl->fsrv.mem_limit) {
r.rlim_max = r.rlim_cur = ((rlim_t)afl->fsrv.mem_limit) << 20;
#ifdef RLIMIT_AS
setrlimit(RLIMIT_AS, &r); /* Ignore errors */
#else
setrlimit(RLIMIT_DATA, &r); /* Ignore errors */
#endif /* ^RLIMIT_AS */
}
r.rlim_max = r.rlim_cur = 0;
setrlimit(RLIMIT_CORE, &r); /* Ignore errors */
/* Isolate the process and configure standard descriptors. If
afl->fsrv.out_file is specified, stdin is /dev/null; otherwise,
afl->fsrv.out_fd is cloned instead. */
setsid();
dup2(afl->fsrv.dev_null_fd, 1);
dup2(afl->fsrv.dev_null_fd, 2);
if (afl->fsrv.out_file) {
dup2(afl->fsrv.dev_null_fd, 0);
} else {
dup2(afl->fsrv.out_fd, 0);
close(afl->fsrv.out_fd);
}
/* On Linux, would be faster to use O_CLOEXEC. Maybe TODO. */
close(afl->fsrv.dev_null_fd);
close(afl->fsrv.out_dir_fd);
#ifndef HAVE_ARC4RANDOM
close(afl->fsrv.dev_urandom_fd);
#endif
close(fileno(afl->fsrv.plot_file));
/* Set sane defaults for ASAN if nothing else specified. */
setenv("ASAN_OPTIONS",
"abort_on_error=1:"
"detect_leaks=0:"
"symbolize=0:"
"allocator_may_return_null=1",
0);
setenv("MSAN_OPTIONS", "exit_code=" STRINGIFY(MSAN_ERROR) ":"
"symbolize=0:"
"msan_track_origins=0", 0);
setenv("___AFL_EINS_ZWEI_POLIZEI___", "1", 1);
if (!afl->qemu_mode && afl->argv[0] != afl->cmplog_binary) {
ck_free(afl->argv[0]);
afl->argv[0] = afl->cmplog_binary;
}
execv(afl->argv[0], afl->argv);
/* Use a distinctive bitmap value to tell the parent about execv()
falling through. */
*(u32 *)afl->fsrv.trace_bits = EXEC_FAIL_SIG;
exit(0);
}
} else {
s32 res;
/* In non-dumb mode, we have the fork server up and running, so simply
tell it to have at it, and then read back PID. */
if ((res = write(afl->cmplog_fsrv_ctl_fd, &prev_timed_out, 4)) != 4) { if ((res = write(afl->cmplog_fsrv_ctl_fd, &prev_timed_out, 4)) != 4) {
@ -510,33 +415,33 @@ u8 run_cmplog_target(afl_state_t *afl, u32 timeout) {
if (afl->cmplog_child_pid <= 0) if (afl->cmplog_child_pid <= 0)
FATAL("Cmplog fork server is misbehaving (OOM?)"); FATAL("Cmplog fork server is misbehaving (OOM?)");
}
/* Configure timeout, as requested by user, then wait for child to terminate. /* Configure timeout, as requested by user, then wait for child to terminate.
*/ */
it.it_value.tv_sec = (timeout / 1000); it.tv_sec = (timeout / 1000);
it.it_value.tv_usec = (timeout % 1000) * 1000; it.tv_usec = (timeout % 1000) * 1000;
setitimer(ITIMER_REAL, &it, NULL); FD_ZERO(&readfds);
FD_SET(afl->cmplog_fsrv_st_fd, &readfds);
it.tv_sec = ((timeout) / 1000);
it.tv_usec = ((timeout) % 1000) * 1000;
/* The SIGALRM handler simply kills the afl->cmplog_child_pid and sets sret = select(afl->cmplog_fsrv_st_fd + 1, &readfds, NULL, NULL, &it);
* afl->fsrv.child_timed_out. */
if (afl->dumb_mode == 1 || afl->no_forkserver) { if (sret == 0) {
if (waitpid(afl->cmplog_child_pid, &status, 0) <= 0) /* If there was no response from forkserver after timeout seconds,
PFATAL("waitpid() failed"); we kill the child. The forkserver should inform us afterwards */
} else { kill(afl->cmplog_child_pid, SIGKILL);
afl->fsrv.child_timed_out = 1;
s32 res; }
if ((res = read(afl->cmplog_fsrv_st_fd, &status, 4)) != 4) { if ((res = read(afl->cmplog_fsrv_st_fd, &status, 4)) != 4) {
if (afl->stop_soon) return 0; if (afl->stop_soon) return 0;
SAYF( SAYF("\n" cLRD "[-] " cRST
"\n" cLRD "[-] " cRST
"Unable to communicate with fork server. Some possible reasons:\n\n" "Unable to communicate with fork server. Some possible reasons:\n\n"
" - You've run out of memory. Use -m to increase the the memory " " - You've run out of memory. Use -m to increase the the memory "
"limit\n" "limit\n"
@ -554,19 +459,13 @@ u8 run_cmplog_target(afl_state_t *afl, u32 timeout) {
} }
}
if (!WIFSTOPPED(status)) afl->cmplog_child_pid = 0; if (!WIFSTOPPED(status)) afl->cmplog_child_pid = 0;
getitimer(ITIMER_REAL, &it); exec_ms = (u64)timeout - (it.tv_sec * 1000 + it.tv_usec / 1000);
exec_ms =
(u64)timeout - (it.it_value.tv_sec * 1000 + it.it_value.tv_usec / 1000);
if (afl->slowest_exec_ms < exec_ms) afl->slowest_exec_ms = exec_ms; if (afl->slowest_exec_ms < exec_ms) afl->slowest_exec_ms = exec_ms;
it.it_value.tv_sec = 0; it.tv_sec = 0;
it.it_value.tv_usec = 0; it.tv_usec = 0;
setitimer(ITIMER_REAL, &it, NULL);
++afl->total_execs; ++afl->total_execs;

View File

@ -1063,7 +1063,8 @@ static void handle_existing_out_dir(afl_state_t *afl) {
"directory manually,\n" "directory manually,\n"
" or specify a different output location for this job. To resume " " or specify a different output location for this job. To resume "
"the old\n" "the old\n"
" session, pass '-' as input directory in the command line ('-i -')\n" " session, pass '-' as input directory in the command line ('-i "
"-')\n"
" or set the 'AFL_AUTORESUME=1' env variable and try again.\n", " or set the 'AFL_AUTORESUME=1' env variable and try again.\n",
OUTPUT_GRACE); OUTPUT_GRACE);
@ -1510,7 +1511,8 @@ void check_crash_handling(void) {
" between stumbling upon a crash and having this information " " between stumbling upon a crash and having this information "
"relayed to the\n" "relayed to the\n"
" fuzzer via the standard waitpid() API.\n" " fuzzer via the standard waitpid() API.\n"
" If you're just testing, set 'AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1'.\n\n" " If you're just testing, set "
"'AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1'.\n\n"
" To avoid having crashes misinterpreted as timeouts, please log in " " To avoid having crashes misinterpreted as timeouts, please log in "
"as root\n" "as root\n"