Skip to content

Commit 9b415be

Browse files
committedDec 19, 2016
[libfuzzer] dump_coverage command line flag
Reviewers: kcc, vitalybuka Differential Revision: https://reviews.llvm.org/D27942 llvm-svn: 290138
1 parent 492c5a1 commit 9b415be

7 files changed

+28
-0
lines changed
 

‎llvm/lib/Fuzzer/FuzzerDriver.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,7 @@ int FuzzerDriver(int *argc, char ***argv, UserCallback Callback) {
433433
Options.PrintFinalStats = Flags.print_final_stats;
434434
Options.PrintCorpusStats = Flags.print_corpus_stats;
435435
Options.PrintCoverage = Flags.print_coverage;
436+
Options.DumpCoverage = Flags.dump_coverage;
436437
if (Flags.exit_on_src_pos)
437438
Options.ExitOnSrcPos = Flags.exit_on_src_pos;
438439
if (Flags.exit_on_item)

‎llvm/lib/Fuzzer/FuzzerFlags.def

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ FUZZER_FLAG_INT(print_corpus_stats, 0,
8181
"If 1, print statistics on corpus elements at exit.")
8282
FUZZER_FLAG_INT(print_coverage, 0, "If 1, print coverage information at exit."
8383
" Experimental, only with trace-pc-guard")
84+
FUZZER_FLAG_INT(dump_coverage, 0, "If 1, dump coverage information at exit."
85+
" Experimental, only with trace-pc-guard")
8486
FUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.")
8587
FUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGSEGV.")
8688
FUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.")

‎llvm/lib/Fuzzer/FuzzerLoop.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,8 @@ void Fuzzer::PrintStats(const char *Where, const char *End, size_t Units) {
375375
void Fuzzer::PrintFinalStats() {
376376
if (Options.PrintCoverage)
377377
TPC.PrintCoverage();
378+
if (Options.DumpCoverage)
379+
TPC.DumpCoverage();
378380
if (Options.PrintCorpusStats)
379381
Corpus.PrintStats();
380382
if (!Options.PrintFinalStats) return;

‎llvm/lib/Fuzzer/FuzzerOptions.h

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ struct FuzzingOptions {
5151
bool PrintFinalStats = false;
5252
bool PrintCorpusStats = false;
5353
bool PrintCoverage = false;
54+
bool DumpCoverage = false;
5455
bool DetectLeaks = true;
5556
int TraceMalloc = 0;
5657
bool HandleAbrt = false;

‎llvm/lib/Fuzzer/FuzzerTracePC.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "FuzzerTracePC.h"
2121
#include "FuzzerValueBitMap.h"
2222
#include <map>
23+
#include <sanitizer/coverage_interface.h>
2324
#include <set>
2425
#include <sstream>
2526

@@ -188,6 +189,10 @@ void TracePC::PrintCoverage() {
188189
}
189190
}
190191

192+
void TracePC::DumpCoverage() {
193+
__sanitizer_dump_coverage(PCs, GetNumPCs());
194+
}
195+
191196
// Value profile.
192197
// We keep track of various values that affect control flow.
193198
// These values are inserted into a bit-set-based hash map.

‎llvm/lib/Fuzzer/FuzzerTracePC.h

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ class TracePC {
7171
void PrintModuleInfo();
7272

7373
void PrintCoverage();
74+
void DumpCoverage();
7475

7576
void AddValueForMemcmp(void *caller_pc, const void *s1, const void *s2,
7677
size_t n);
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
RUN: DIR=%t_workdir
2+
RUN: BUILD_DIR=$(pwd)
3+
RUN: rm -rf $DIR && mkdir -p $DIR && cd $DIR
4+
RUN: not $BUILD_DIR/LLVMFuzzer-NullDerefTest -dump_coverage=1 2>&1 | FileCheck %s
5+
RUN: $BUILD_DIR/LLVMFuzzer-DSOTest -dump_coverage=1 -runs=0 2>&1 | FileCheck %s --check-prefix=DSO
6+
RUN: not $BUILD_DIR/LLVMFuzzer-NullDerefTest -dump_coverage=0 2>&1 | FileCheck %s --check-prefix=NOCOV
7+
RUN: rm -rf $DIR
8+
9+
10+
CHECK: SanitizerCoverage: ./LLVMFuzzer-NullDerefTest.{{.*}}.sancov {{.*}} PCs written
11+
12+
DSO: SanitizerCoverage: ./LLVMFuzzer-DSOTest.{{.*}}.sancov {{.*}} PCs written
13+
DSO-DAG: SanitizerCoverage: ./libLLVMFuzzer-DSO1.{{.*}}.sancov {{.*}} PCs written
14+
DSO-DAG: SanitizerCoverage: ./libLLVMFuzzer-DSO2.{{.*}}.sancov {{.*}} PCs written
15+
16+
NOCOV-NOT: SanitizerCoverage: {{.*}} PCs written

0 commit comments

Comments
 (0)
Please sign in to comment.