Skip to content

Commit

Permalink
lto whitelist in test.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Jun 23, 2020
1 parent 2b450ae commit 49a769a
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 26 deletions.
4 changes: 2 additions & 2 deletions libdislocator/libdislocator.so.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
#if (defined(__linux__) && !defined(__ANDROID__)) || defined(__HAIKU__)
#include <unistd.h>
#ifdef __linux__
#include <sys/syscall.h>
#include <malloc.h>
#include <sys/syscall.h>
#include <malloc.h>
#endif
#ifdef __NR_getrandom
#define arc4random_buf(p, l) \
Expand Down
13 changes: 7 additions & 6 deletions libtokencap/libtokencap.so.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "../types.h"
#include "../config.h"

#if !defined __linux__ && !defined __APPLE__ && !defined __FreeBSD__ && \
#if !defined __linux__ && !defined __APPLE__ && !defined __FreeBSD__ && \
!defined __OpenBSD__ && !defined __NetBSD__ && !defined __DragonFly__ && \
!defined(__HAIKU__)
#error "Sorry, this library is unsupported in this platform for now!"
Expand Down Expand Up @@ -233,18 +233,19 @@ static void __tokencap_load_mappings(void) {
}

munmap(buf, len);
#elif defined __HAIKU__
#elif defined __HAIKU__
image_info ii;
int32_t group = 0;
int32_t group = 0;

while (get_next_image_info(0, &group, &ii) == B_OK) {

__tokencap_ro[__tokencap_ro_cnt].st = ii.text;
__tokencap_ro[__tokencap_ro_cnt].en = ((char *)ii.text) + ii.text_size;
__tokencap_ro[__tokencap_ro_cnt].st = ii.text;
__tokencap_ro[__tokencap_ro_cnt].en = ((char *)ii.text) + ii.text_size;

if (++__tokencap_ro_cnt == MAX_MAPPINGS) break;
if (++__tokencap_ro_cnt == MAX_MAPPINGS) break;

}

#endif

}
Expand Down
1 change: 1 addition & 0 deletions llvm_mode/LLVMInsTrim.so.cc
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ struct InsTrim : public ModulePass {
bool runOnModule(Module &M) override {

char be_quiet = 0;
setvbuf(stdout, NULL, _IONBF, 0);

if ((isatty(2) && !getenv("AFL_QUIET")) || getenv("AFL_DEBUG") != NULL) {

Expand Down
2 changes: 2 additions & 0 deletions llvm_mode/afl-llvm-lto-instrim.so.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ struct InsTrimLTO : public ModulePass {
char be_quiet = 0;
char *ptr;

setvbuf(stdout, NULL, _IONBF, 0);

if ((isatty(2) && !getenv("AFL_QUIET")) || getenv("AFL_DEBUG") != NULL) {

SAYF(cCYA "InsTrimLTO" VERSION cRST
Expand Down
3 changes: 2 additions & 1 deletion llvm_mode/afl-llvm-lto-instrumentation.so.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ bool AFLLTOPass::runOnModule(Module &M) {
IntegerType *Int64Ty = IntegerType::getInt64Ty(C);

/* Show a banner */
setvbuf(stdout, NULL, _IONBF, 0);

if ((isatty(2) && !getenv("AFL_QUIET")) || debug) {

Expand Down Expand Up @@ -162,7 +163,7 @@ bool AFLLTOPass::runOnModule(Module &M) {

}

if (debug) { fprintf(stderr, "map address is %lu\n", map_addr); }
if (debug) { fprintf(stderr, "map address is 0x%lx\n", map_addr); }

/* Get/set the globals for the SHM region. */

Expand Down
1 change: 1 addition & 0 deletions llvm_mode/afl-llvm-lto-whitelist.so.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ bool AFLwhitelist::runOnModule(Module &M) {
/* Show a banner */

char be_quiet = 0;
setvbuf(stdout, NULL, _IONBF, 0);

if ((isatty(2) && !getenv("AFL_QUIET")) || getenv("AFL_DEBUG") != NULL) {

Expand Down
1 change: 1 addition & 0 deletions llvm_mode/afl-llvm-pass.so.cc
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ bool AFLCoverage::runOnModule(Module &M) {
/* Show a banner */

char be_quiet = 0;
setvbuf(stdout, NULL, _IONBF, 0);

if (getenv("AFL_DEBUG")) debug = 1;

Expand Down
3 changes: 2 additions & 1 deletion src/afl-performance.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ static inline uint64_t rotl(const uint64_t x, int k) {
void rand_set_seed(afl_state_t *afl, s64 init_seed) {

afl->init_seed = init_seed;
afl->rand_seed[0] = hash64((void *)&afl->init_seed, sizeof(afl->init_seed), HASH_CONST);
afl->rand_seed[0] =
hash64((void *)&afl->init_seed, sizeof(afl->init_seed), HASH_CONST);
afl->rand_seed[1] = afl->rand_seed[0] ^ 0x1234567890abcdef;
afl->rand_seed[2] = afl->rand_seed[0] & 0x0123456789abcdef;
afl->rand_seed[3] = afl->rand_seed[0] | 0x01abcde43f567908;
Expand Down
31 changes: 15 additions & 16 deletions test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -459,24 +459,23 @@ test -e ../afl-clang-lto -a -e ../afl-llvm-lto-instrumentation.so && {
}
rm -f test-instr.plain

# Disabled whitelist until I have a different solution -mh
# echo foobar.c > whitelist.txt
# AFL_LLVM_WHITELIST=whitelist.txt ../afl-clang-lto -o test-compcov test-compcov.c > test.out 2>&1
# test -e test-compcov && {
# grep -q "No instrumentation targets found" test.out && {
# $ECHO "$GREEN[+] llvm_mode LTO whitelist feature works correctly"
# } || {
# $ECHO "$RED[!] llvm_mode LTO whitelist feature failed"
# CODE=1
# }
# } || {
# $ECHO "$RED[!] llvm_mode LTO whitelist feature compilation failed"
# CODE=1
# }
# rm -f test-compcov test.out whitelist.txt
echo foobar.c > whitelist.txt
AFL_DEBUG=1 AFL_LLVM_WHITELIST=whitelist.txt ../afl-clang-lto -o test-compcov test-compcov.c > test.out 2>&1
test -e test-compcov && {
grep -q "No instrumentation targets found" test.out && {
$ECHO "$GREEN[+] llvm_mode LTO whitelist feature works correctly"
} || {
$ECHO "$RED[!] llvm_mode LTO whitelist feature failed"
CODE=1
}
} || {
$ECHO "$RED[!] llvm_mode LTO whitelist feature compilation failed"
CODE=1
}
rm -f test-compcov test.out whitelist.txt
../afl-clang-lto -o test-persistent ../examples/persistent_demo/persistent_demo.c > /dev/null 2>&1
test -e test-persistent && {
echo foo | ../afl-showmap -o /dev/null -q -r ./test-persistent && {
echo foo | ../afl-showmap -m none -o /dev/null -q -r ./test-persistent && {
$ECHO "$GREEN[+] llvm_mode LTO persistent mode feature works correctly"
} || {
$ECHO "$RED[!] llvm_mode LTO persistent mode feature failed to work"
Expand Down

0 comments on commit 49a769a

Please sign in to comment.