aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-04 20:14:36 +0100
committervan Hauser <vh@thc.org>2020-02-04 20:14:36 +0100
commit599f78a4bd9657f28a9ab0baeb9c001dbbba49a9 (patch)
tree61e2e9af0f383fbc65884c32740eb5a9ae454496
parent5fa62e40b197d751dca429dfa3ecef737daabcbc (diff)
downloadafl++-599f78a4bd9657f28a9ab0baeb9c001dbbba49a9.tar.gz
afl-showmap -i with stdin
-rw-r--r--src/afl-showmap.c41
1 files changed, 35 insertions, 6 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c
index 5061ca31..a0bcbb4c 100644
--- a/src/afl-showmap.c
+++ b/src/afl-showmap.c
@@ -67,7 +67,7 @@ s32 forksrv_pid, /* PID of the fork server */
s32 fsrv_ctl_fd, /* Fork server control pipe (write) */
fsrv_st_fd; /* Fork server status pipe (read) */
-s32 out_fd; /* Persistent fd for out_file */
+s32 out_fd; /* Persistent fd for stdin_file */
s32 dev_null_fd = -1; /* FD to /dev/null */
s32 out_fd = -1, out_dir_fd = -1, dev_urandom_fd = -1;
@@ -77,6 +77,7 @@ u8 uses_asan;
u8* trace_bits; /* SHM with instrumentation bitmap */
u8 *out_file, /* Trace output file */
+ *stdin_file, /* stdin file */
*in_dir, /* input folder */
*doc_path, /* Path to docs */
*at_file; /* Substitution string for @@ */
@@ -158,6 +159,14 @@ static void classify_counts(u8* mem, const u8* map) {
}
+/* Get rid of temp files (atexit handler). */
+
+static void at_exit_handler(void) {
+
+ if (out_file) unlink(out_file); /* Ignore errors */
+
+}
+
/* Write results. */
static u32 write_results_to_file(u8 *out_file) {
@@ -265,12 +274,12 @@ static void write_to_testcase(void* mem, u32 len) {
if (use_stdin) {
- lseek(0, 0, SEEK_SET);
+ lseek(out_fd, 0, SEEK_SET);
- ck_write(0, mem, len, out_file);
+ ck_write(out_fd, mem, len, out_file);
- if (ftruncate(0, len)) PFATAL("ftruncate() failed");
- lseek(0, 0, SEEK_SET);
+ if (ftruncate(out_fd, len)) PFATAL("ftruncate() failed");
+ lseek(out_fd, 0, SEEK_SET);
}
@@ -887,7 +896,7 @@ int main(int argc, char** argv) {
if (!quiet_mode) {
show_banner();
- ACTF("Executing '%s'...\n", target_path);
+ ACTF("Executing '%s'...", target_path);
}
@@ -932,6 +941,24 @@ int main(int argc, char** argv) {
PFATAL("cannot create output directory %s", out_file);
if (arg_offset) argv[arg_offset] = infile;
+ else {
+
+ u8* use_dir = ".";
+
+ if (access(use_dir, R_OK | W_OK | X_OK)) {
+
+ use_dir = getenv("TMPDIR");
+ if (!use_dir) use_dir = "/tmp";
+
+ }
+
+ stdin_file = alloc_printf("%s/.afl-tmin-temp-%u", use_dir, getpid());
+ unlink(stdin_file);
+ atexit(at_exit_handler);
+ out_fd = open(stdin_file, O_RDWR | O_CREAT | O_EXCL, 0600);
+ if (out_fd < 0) PFATAL("Unable to create '%s'", out_file);
+
+ }
init_forkserver(use_argv);
@@ -950,6 +977,8 @@ int main(int argc, char** argv) {
}
}
+
+ if (!quiet_mode) OKF("Processed %u input files.", total_execs);
} else {