diff options
author | van Hauser <vh@thc.org> | 2024-09-24 11:57:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 11:57:36 +0300 |
commit | d21fb1a558b25c4f46692fa999c0028dfe0eecc0 (patch) | |
tree | c503336edd8dc0ee4f8385c0fbc91a5e818ffcfb /include/forkserver.h | |
parent | 75d8c47a6b8ae94cd7ded2f0574e4d35a2021ab7 (diff) | |
parent | 2e6c74f9b9d3bc70ef9474eb08592b9cd151d3c7 (diff) | |
download | afl++-d21fb1a558b25c4f46692fa999c0028dfe0eecc0.tar.gz |
Merge pull request #2214 from AFLplusplus/dev
push to stable
Diffstat (limited to 'include/forkserver.h')
-rw-r--r-- | include/forkserver.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/forkserver.h b/include/forkserver.h index 6c649528..db1832c4 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -89,11 +89,14 @@ typedef struct { bool (*nyx_config_set_aux_buffer_size)(void *config, uint32_t aux_buffer_size); + uint64_t (*nyx_get_target_hash64)(void *config); + + void (*nyx_config_free)(void *config); + } nyx_plugin_handler_t; /* Imports helper functions to enable Nyx mode (Linux only )*/ nyx_plugin_handler_t *afl_load_libnyx_plugin(u8 *libnyx_binary); - #endif typedef struct afl_forkserver { @@ -204,6 +207,7 @@ typedef struct afl_forkserver { bool nyx_use_tmp_workdir; char *nyx_tmp_workdir_path; s32 nyx_log_fd; + u64 nyx_target_hash64; #endif #ifdef __AFL_CODE_COVERAGE @@ -241,6 +245,11 @@ void afl_fsrv_killall(void); void afl_fsrv_deinit(afl_forkserver_t *fsrv); void afl_fsrv_kill(afl_forkserver_t *fsrv); +#ifdef __linux__ +void nyx_load_target_hash(afl_forkserver_t *fsrv); +#endif + + #ifdef __APPLE__ #define MSG_FORK_ON_APPLE \ " - On MacOS X, the semantics of fork() syscalls are non-standard and " \ |