aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2021-01-30 14:57:17 +0100
committervan Hauser <vh@thc.org>2021-01-30 14:57:17 +0100
commit3b3565269d0453c9f4b5b2847f809cd5d315fff2 (patch)
treea1aaa4c20545100d15b10d09425d7f732662e293 /src
parent2f96f1e9204f60d0a1b91a01f5da34b64b29cf9b (diff)
downloadafl++-3b3565269d0453c9f4b5b2847f809cd5d315fff2.tar.gz
foreign sync from ctime to mtime (libfuzzer)
Diffstat (limited to 'src')
-rw-r--r--src/afl-fuzz-init.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c
index 84f81112..1808f0a1 100644
--- a/src/afl-fuzz-init.c
+++ b/src/afl-fuzz-init.c
@@ -468,7 +468,7 @@ void read_foreign_testcases(afl_state_t *afl, int first) {
afl->foreign_syncs[iter].dir[0] != 0) {
if (first) ACTF("Scanning '%s'...", afl->foreign_syncs[iter].dir);
- time_t ctime_max = 0;
+ time_t mtime_max = 0;
u8 * name = strrchr(afl->foreign_syncs[iter].dir, '/');
if (!name) { name = afl->foreign_syncs[iter].dir; }
if (!strcmp(name, "queue") || !strcmp(name, "out") ||
@@ -482,8 +482,8 @@ void read_foreign_testcases(afl_state_t *afl, int first) {
}
- /* We do not use sorting yet and do a more expensive ctime check instead.
- a ctimesort() implementation would be better though. */
+ /* We do not use sorting yet and do a more expensive mtime check instead.
+ a mtimesort() implementation would be better though. */
nl_cnt = scandir(afl->foreign_syncs[iter].dir, &nl, NULL, NULL);
@@ -537,8 +537,8 @@ void read_foreign_testcases(afl_state_t *afl, int first) {
}
- /* we detect new files by their ctime */
- if (likely(st.st_ctime <= afl->foreign_syncs[iter].ctime)) {
+ /* we detect new files by their mtime */
+ if (likely(st.st_mtime <= afl->foreign_syncs[iter].mtime)) {
ck_free(fn2);
continue;
@@ -600,11 +600,11 @@ void read_foreign_testcases(afl_state_t *afl, int first) {
munmap(mem, st.st_size);
close(fd);
- if (st.st_ctime > ctime_max) ctime_max = st.st_ctime;
+ if (st.st_mtime > mtime_max) mtime_max = st.st_mtime;
}
- afl->foreign_syncs[iter].ctime = ctime_max;
+ afl->foreign_syncs[iter].mtime = mtime_max;
free(nl); /* not tracked */
}