add AFL_FORKSRV_UID and AFL_FORKSRV_GID env vars

This commit is contained in:
GRAUX Pierre
2025-04-23 14:39:31 +02:00
parent a9900f02cb
commit c8d1b66af3
23 changed files with 536 additions and 77 deletions

View File

@ -144,10 +144,10 @@ u8 *u_stringify_time_diff(u8 *buf, u64 cur_ms, u64 event_ms);
u32 get_map_size(void);
/* create a stream file */
FILE *create_ffile(u8 *fn);
FILE *create_ffile(u8 *fn, mode_t perm);
/* create a file */
s32 create_file(u8 *fn);
s32 create_file(u8 *fn, mode_t perm);
/* memmem implementation as not all platforms support this */
void *afl_memmem(const void *haystack, size_t haystacklen, const void *needle,