2015-01-29 16:58:29 +00:00
|
|
|
//===- FuzzerFlags.def - Run-time flags -------------------------*- C++ -* ===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2015-03-31 20:13:20 +00:00
|
|
|
// Flags. FUZZER_FLAG_INT/FUZZER_FLAG_STRING macros should be defined at the
|
|
|
|
// point of inclusion. We are not using any flag parsing library for better
|
|
|
|
// portability and independence.
|
2015-01-29 16:58:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2015-03-31 20:13:20 +00:00
|
|
|
FUZZER_FLAG_INT(verbosity, 1, "Verbosity level.")
|
2015-12-10 20:41:53 +00:00
|
|
|
FUZZER_FLAG_UNSIGNED(seed, 0, "Random seed. If 0, seed is generated.")
|
2015-03-31 20:13:20 +00:00
|
|
|
FUZZER_FLAG_INT(runs, -1,
|
2015-02-04 22:20:09 +00:00
|
|
|
"Number of individual test runs (-1 for infinite runs).")
|
2016-03-12 01:57:04 +00:00
|
|
|
FUZZER_FLAG_INT(max_len, 0, "Maximum length of the test input. "
|
|
|
|
"If 0, libFuzzer tries to guess a good value based on the corpus "
|
|
|
|
"and reports it. ")
|
2015-03-31 20:13:20 +00:00
|
|
|
FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
|
|
|
|
FUZZER_FLAG_INT(mutate_depth, 5,
|
2015-01-29 16:58:29 +00:00
|
|
|
"Apply this number of consecutive mutations to each input.")
|
2015-10-17 04:38:26 +00:00
|
|
|
FUZZER_FLAG_INT(shuffle, 1, "Shuffle inputs at startup")
|
2016-03-18 00:23:29 +00:00
|
|
|
FUZZER_FLAG_INT(prefer_small, 1,
|
|
|
|
"If 1, always prefer smaller inputs during the corpus shuffle.")
|
2015-05-19 22:12:57 +00:00
|
|
|
FUZZER_FLAG_INT(
|
2015-05-26 20:57:47 +00:00
|
|
|
timeout, 1200,
|
2015-05-19 22:12:57 +00:00
|
|
|
"Timeout in seconds (if positive). "
|
|
|
|
"If one unit runs more than this number of seconds the process will abort.")
|
2016-01-29 23:30:07 +00:00
|
|
|
FUZZER_FLAG_INT(timeout_exitcode, 77,
|
|
|
|
"Unless abort_on_timeout is set, use this exitcode on timeout.")
|
2016-03-01 22:19:21 +00:00
|
|
|
FUZZER_FLAG_INT(error_exit_code, 77, "When libFuzzer's signal handlers are in "
|
|
|
|
"use exit with this exitcode after catching a deadly signal.")
|
2015-10-02 20:47:55 +00:00
|
|
|
FUZZER_FLAG_INT(max_total_time, 0, "If positive, indicates the maximal total "
|
|
|
|
"time in seconds to run the fuzzer.")
|
2015-03-31 20:13:20 +00:00
|
|
|
FUZZER_FLAG_INT(help, 0, "Print help.")
|
2015-10-24 01:16:40 +00:00
|
|
|
FUZZER_FLAG_INT(merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be "
|
2016-05-09 19:11:36 +00:00
|
|
|
"merged into the 1-st corpus. Only interesting units will be taken. "
|
|
|
|
"This flag can be used to minimize a corpus.")
|
2016-09-01 01:22:27 +00:00
|
|
|
FUZZER_FLAG_INT(minimize_crash, 0, "If 1, minimizes the provided"
|
|
|
|
" crash input. Use with -runs=N or -max_total_time=N to limit "
|
|
|
|
"the number attempts")
|
|
|
|
FUZZER_FLAG_INT(minimize_crash_internal_step, 0, "internal flag")
|
2015-05-13 18:31:46 +00:00
|
|
|
FUZZER_FLAG_INT(use_counters, 1, "Use coverage counters")
|
2015-10-22 23:55:39 +00:00
|
|
|
FUZZER_FLAG_INT(use_indir_calls, 1, "Use indirect caller-callee counters")
|
2016-01-15 06:24:05 +00:00
|
|
|
FUZZER_FLAG_INT(use_memcmp, 1,
|
|
|
|
"Use hints from intercepting memcmp, strcmp, etc")
|
2016-07-15 23:27:19 +00:00
|
|
|
FUZZER_FLAG_INT(use_memmem, 1,
|
|
|
|
"Use hints from intercepting memmem, strstr, etc")
|
2016-08-16 19:33:51 +00:00
|
|
|
FUZZER_FLAG_INT(use_value_profile, 0,
|
|
|
|
"Experimental. Use value profile to guide fuzzing.")
|
2015-03-31 20:13:20 +00:00
|
|
|
FUZZER_FLAG_INT(jobs, 0, "Number of jobs to run. If jobs >= 1 we spawn"
|
2015-01-31 01:14:40 +00:00
|
|
|
" this number of jobs in separate worker processes"
|
|
|
|
" with stdout/stderr redirected to fuzz-JOB.log.")
|
2015-03-31 20:13:20 +00:00
|
|
|
FUZZER_FLAG_INT(workers, 0,
|
2015-05-12 18:51:57 +00:00
|
|
|
"Number of simultaneous worker processes to run the jobs."
|
|
|
|
" If zero, \"min(jobs,NumberOfCpuCores()/2)\" is used.")
|
2015-05-08 21:30:55 +00:00
|
|
|
FUZZER_FLAG_INT(reload, 1,
|
|
|
|
"Reload the main corpus periodically to get new units"
|
2015-08-12 20:00:10 +00:00
|
|
|
" discovered by other processes.")
|
2015-08-05 21:43:48 +00:00
|
|
|
FUZZER_FLAG_INT(report_slow_units, 10,
|
|
|
|
"Report slowest units if they run for more than this number of seconds.")
|
2015-08-11 01:44:42 +00:00
|
|
|
FUZZER_FLAG_INT(only_ascii, 0,
|
|
|
|
"If 1, generate only ASCII (isprint+isspace) inputs.")
|
2015-09-03 20:23:46 +00:00
|
|
|
FUZZER_FLAG_STRING(dict, "Experimental. Use the dictionary file.")
|
2015-10-09 03:57:59 +00:00
|
|
|
FUZZER_FLAG_STRING(artifact_prefix, "Write fuzzing artifacts (crash, "
|
|
|
|
"timeout, or slow inputs) as "
|
|
|
|
"$(artifact_prefix)file")
|
2015-11-25 21:40:46 +00:00
|
|
|
FUZZER_FLAG_STRING(exact_artifact_path,
|
|
|
|
"Write the single artifact on failure (crash, timeout) "
|
|
|
|
"as $(exact_artifact_path). This overrides -artifact_prefix "
|
|
|
|
"and will not use checksum in the file name. Do not "
|
|
|
|
"use the same path for several parallel processes.")
|
2015-11-12 01:02:01 +00:00
|
|
|
FUZZER_FLAG_INT(drill, 0, "Experimental: fuzz using a single unit as the seed "
|
|
|
|
"corpus, then merge with the initial corpus")
|
2015-11-12 04:38:40 +00:00
|
|
|
FUZZER_FLAG_INT(output_csv, 0, "Enable pulse output in CSV format.")
|
2016-08-25 22:35:08 +00:00
|
|
|
FUZZER_FLAG_INT(print_pcs, 0, "If 1, print out newly covered PCs.")
|
2016-02-26 22:42:23 +00:00
|
|
|
FUZZER_FLAG_INT(print_final_stats, 0, "If 1, print statistics at exit.")
|
2016-01-06 00:21:22 +00:00
|
|
|
|
2016-03-01 22:19:21 +00:00
|
|
|
FUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.")
|
|
|
|
FUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGSEGV.")
|
|
|
|
FUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.")
|
|
|
|
FUZZER_FLAG_INT(handle_ill, 1, "If 1, try to intercept SIGILL.")
|
|
|
|
FUZZER_FLAG_INT(handle_fpe, 1, "If 1, try to intercept SIGFPE.")
|
|
|
|
FUZZER_FLAG_INT(handle_int, 1, "If 1, try to intercept SIGINT.")
|
2016-03-24 21:03:58 +00:00
|
|
|
FUZZER_FLAG_INT(handle_term, 1, "If 1, try to intercept SIGTERM.")
|
2016-03-18 20:58:29 +00:00
|
|
|
FUZZER_FLAG_INT(close_fd_mask, 0, "If 1, close stdout at startup; "
|
2016-03-29 23:07:36 +00:00
|
|
|
"if 2, close stderr; if 3, close both. "
|
|
|
|
"Be careful, this will also close e.g. asan's stderr/stdout.")
|
2016-04-29 18:49:55 +00:00
|
|
|
FUZZER_FLAG_INT(detect_leaks, 1, "If 1, and if LeakSanitizer is enabled "
|
2016-04-20 00:24:21 +00:00
|
|
|
"try to detect memory leaks during fuzzing (i.e. not only at shut down).")
|
2016-05-06 23:38:07 +00:00
|
|
|
FUZZER_FLAG_INT(rss_limit_mb, 2048, "If non-zero, the fuzzer will exit upon"
|
2016-05-06 21:58:35 +00:00
|
|
|
"reaching this limit of RSS memory usage.")
|
2016-05-24 23:14:29 +00:00
|
|
|
FUZZER_FLAG_INT(truncate_units, 0, "Try truncated units when loading corpus.")
|
2016-06-07 18:16:32 +00:00
|
|
|
FUZZER_FLAG_INT(prune_corpus, 1, "Prune corpus items without new coverage when "
|
|
|
|
"loading corpus.")
|
2016-03-17 19:59:39 +00:00
|
|
|
|
2016-03-01 22:33:14 +00:00
|
|
|
FUZZER_DEPRECATED_FLAG(exit_on_first)
|
|
|
|
FUZZER_DEPRECATED_FLAG(save_minimized_corpus)
|
2016-03-17 19:59:39 +00:00
|
|
|
FUZZER_DEPRECATED_FLAG(sync_command)
|
|
|
|
FUZZER_DEPRECATED_FLAG(sync_timeout)
|
|
|
|
FUZZER_DEPRECATED_FLAG(test_single_input)
|