diff options
author | van Hauser <vh@thc.org> | 2020-02-07 20:10:52 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-02-07 20:10:52 +0100 |
commit | 7c578962358be549868aaf9fbb12e4c03701a880 (patch) | |
tree | 9edf1e2aed2cfb0703a0999495140a3e3c0333e8 /libAflDyninst.cpp | |
parent | 8f863660162de3c905ab1444cf9b2273de29e51e (diff) | |
download | afl-dyninst-7c578962358be549868aaf9fbb12e4c03701a880.tar.gz |
code indention
Diffstat (limited to 'libAflDyninst.cpp')
-rw-r--r-- | libAflDyninst.cpp | 39 |
1 files changed, 18 insertions, 21 deletions
diff --git a/libAflDyninst.cpp b/libAflDyninst.cpp index fb0ba9c..e7c2a0f 100644 --- a/libAflDyninst.cpp +++ b/libAflDyninst.cpp @@ -1,16 +1,16 @@ -#include <cstdlib> +#include "config.h" +#include <algorithm> #include <cstdio> -#include <iostream> +#include <cstdlib> #include <cstring> -#include <vector> -#include <algorithm> -#include "config.h" -#include <sys/types.h> +#include <fcntl.h> +#include <iostream> #include <sys/shm.h> -#include <unistd.h> -#include <sys/wait.h> #include <sys/stat.h> -#include <fcntl.h> +#include <sys/types.h> +#include <sys/wait.h> +#include <unistd.h> +#include <vector> using namespace std; @@ -23,16 +23,16 @@ static unsigned short int prev_id = 0; static bool forkserver_installed = false; #if (__amd64__ || __x86_64__) static long saved_di; -register long rdi asm("di"); // the warning is fine - we need the warning because of a bug in dyninst +register long rdi asm("di"); // the warning is fine - we need the warning because of a bug in dyninst9 #endif -#define PRINT_ERROR(string) (void)(write(2, string, strlen(string))+1) // the (...+1) weirdness is so we do not get an ignoring return value warning +#define PRINT_ERROR(string) (void)(write(2, string, strlen(string)) + 1) // the (...+1) weirdness is so we do not get an ignoring return value warning void initAflForkServer() { if (forkserver_installed == true) return; forkserver_installed = true; - + // we can not use fprint* stdout/stderr functions here, it fucks up some programs char *shm_env_var = getenv(SHM_ENV_VAR); @@ -41,8 +41,8 @@ void initAflForkServer() { return; } shm_id = atoi(shm_env_var); - trace_bits = (u8 *) shmat(shm_id, NULL, 0); - if (trace_bits == (u8 *) - 1) { + trace_bits = (u8 *)shmat(shm_id, NULL, 0); + if (trace_bits == (u8 *)-1) { PRINT_ERROR("Error: shmat\n"); return; } @@ -89,9 +89,7 @@ void bbCallback(unsigned short id) { prev_id = id >> 1; } -void forceCleanExit() { - exit(0); -} +void forceCleanExit() { exit(0); } void save_rdi() { #if __amd64__ || __x86_64__ @@ -147,14 +145,13 @@ void initOnlyAflForkServer() { } } - void initAflForkServerVar(u8 *map) { // we can not use fprint* stdout/stderr functions here, it fucks up some programs if (forkserver_installed == true) return; forkserver_installed = true; - u8 **ptr = (u8**) map; + u8 **ptr = (u8 **)map; char *shm_env_var = getenv(SHM_ENV_VAR); if (!shm_env_var) { char buf[256]; @@ -165,8 +162,8 @@ void initAflForkServerVar(u8 *map) { } shm_id = atoi(shm_env_var); - *ptr = (u8*)shmat(shm_id, NULL, 0); - if ((u8*)*ptr == (u8 *) - 1) { + *ptr = (u8 *)shmat(shm_id, NULL, 0); + if ((u8 *)*ptr == (u8 *)-1) { PRINT_ERROR("Error: shmat\n"); return; } |