diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-03-09 11:24:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 11:24:10 +0100 |
commit | dba3595c0ae26795a78753ea33ff0c3edf9d6328 (patch) | |
tree | 03bcaf132705d6de222ef8d6eff9b5bc2f03ce54 /include/sharedmem.h | |
parent | c159b872ef17d4c09238f99ac11021e12975cb3a (diff) | |
download | afl++-dba3595c0ae26795a78753ea33ff0c3edf9d6328.tar.gz |
AFL without globals (#220)
* moved globals to afl, shm and fsrv * moved argv to afl state, less bugs * fixed unicorn docu * lists everywhere * merged custom mutators * fixed leaks in afl-fuzz
Diffstat (limited to 'include/sharedmem.h')
-rw-r--r-- | include/sharedmem.h | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/include/sharedmem.h b/include/sharedmem.h index 8c1c2b20..b90f7d87 100644 --- a/include/sharedmem.h +++ b/include/sharedmem.h @@ -27,11 +27,32 @@ #ifndef __AFL_SHAREDMEM_H #define __AFL_SHAREDMEM_H -void setup_shm(unsigned char dumb_mode); -void remove_shm(void); +typedef struct sharedmem { -extern int cmplog_mode; -extern struct cmp_map* cmp_map; + //extern unsigned char *trace_bits; + + #ifdef USEMMAP + /* ================ Proteas ================ */ + int g_shm_fd; + char g_shm_file_path[L_tmpnam]; + /* ========================================= */ + #else + s32 shm_id; /* ID of the SHM region */ + s32 cmplog_shm_id; + #endif + + u8 *map; /* shared memory region */ + + size_t size_alloc; /* actual allocated size */ + size_t size_used; /* in use by shmem app */ + + int cmplog_mode; + struct cmp_map *cmp_map; + +} sharedmem_t; + +u8 *afl_shm_init(sharedmem_t*, size_t, unsigned char dumb_mode); +void afl_shm_deinit(sharedmem_t*); #endif |