diff options
author | van Hauser <vh@thc.org> | 2021-07-19 10:31:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 10:31:56 +0200 |
commit | 939729e504ea269dd6d7252c363b160e01d1be1a (patch) | |
tree | 808710139e53d9958cdb660d61680d48e64e8c3a /frida_mode/src/entry.c | |
parent | 458eb0813a6f7d63eed97f18696bca8274533123 (diff) | |
parent | 18fd97fc5ffc5ad94e735cfbfa0d500463dcb585 (diff) | |
download | afl++-939729e504ea269dd6d7252c363b160e01d1be1a.tar.gz |
Merge pull request #1023 from AFLplusplus/dev
push to stable
Diffstat (limited to 'frida_mode/src/entry.c')
-rw-r--r-- | frida_mode/src/entry.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/frida_mode/src/entry.c b/frida_mode/src/entry.c index e95b923b..a0ffd028 100644 --- a/frida_mode/src/entry.c +++ b/frida_mode/src/entry.c @@ -4,12 +4,16 @@ #include "entry.h" #include "instrument.h" +#include "persistent.h" +#include "ranges.h" #include "stalker.h" +#include "stats.h" #include "util.h" extern void __afl_manual_init(); -guint64 entry_point = 0; +guint64 entry_point = 0; +gboolean entry_reached = FALSE; static void entry_launch(void) { @@ -17,7 +21,8 @@ static void entry_launch(void) { __afl_manual_init(); /* Child here */ - instrument_previous_pc = 0; + instrument_on_fork(); + stats_on_fork(); } @@ -50,6 +55,16 @@ static void entry_callout(GumCpuContext *cpu_context, gpointer user_data) { void entry_prologue(GumStalkerIterator *iterator, GumStalkerOutput *output) { UNUSED_PARAMETER(output); + OKF("AFL_ENTRYPOINT reached"); + + if (persistent_start == 0) { + + entry_reached = TRUE; + ranges_exclude(); + stalker_trust(); + + } + gum_stalker_iterator_put_callout(iterator, entry_callout, NULL, NULL); } |