1c5f01b2fSopenharmony_ci//===- FuzzerFlags.def - Run-time flags -------------------------*- C++ -* ===// 2c5f01b2fSopenharmony_ci// 3c5f01b2fSopenharmony_ci// The LLVM Compiler Infrastructure 4c5f01b2fSopenharmony_ci// 5c5f01b2fSopenharmony_ci// This file is distributed under the University of Illinois Open Source 6c5f01b2fSopenharmony_ci// License. See LICENSE.TXT for details. 7c5f01b2fSopenharmony_ci// 8c5f01b2fSopenharmony_ci//===----------------------------------------------------------------------===// 9c5f01b2fSopenharmony_ci// Flags. FUZZER_FLAG_INT/FUZZER_FLAG_STRING macros should be defined at the 10c5f01b2fSopenharmony_ci// point of inclusion. We are not using any flag parsing library for better 11c5f01b2fSopenharmony_ci// portability and independence. 12c5f01b2fSopenharmony_ci//===----------------------------------------------------------------------===// 13c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(verbosity, 1, "Verbosity level.") 14c5f01b2fSopenharmony_ciFUZZER_FLAG_UNSIGNED(seed, 0, "Random seed. If 0, seed is generated.") 15c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(runs, -1, 16c5f01b2fSopenharmony_ci "Number of individual test runs (-1 for infinite runs).") 17c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(max_len, 0, "Maximum length of the test input. " 18c5f01b2fSopenharmony_ci "If 0, libFuzzer tries to guess a good value based on the corpus " 19c5f01b2fSopenharmony_ci "and reports it. ") 20c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.") 21c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(mutate_depth, 5, 22c5f01b2fSopenharmony_ci "Apply this number of consecutive mutations to each input.") 23c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(shuffle, 1, "Shuffle inputs at startup") 24c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(prefer_small, 1, 25c5f01b2fSopenharmony_ci "If 1, always prefer smaller inputs during the corpus shuffle.") 26c5f01b2fSopenharmony_ciFUZZER_FLAG_INT( 27c5f01b2fSopenharmony_ci timeout, 1200, 28c5f01b2fSopenharmony_ci "Timeout in seconds (if positive). " 29c5f01b2fSopenharmony_ci "If one unit runs more than this number of seconds the process will abort.") 30c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(error_exitcode, 77, "When libFuzzer itself reports a bug " 31c5f01b2fSopenharmony_ci "this exit code will be used.") 32c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(timeout_exitcode, 77, "When libFuzzer reports a timeout " 33c5f01b2fSopenharmony_ci "this exit code will be used.") 34c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(max_total_time, 0, "If positive, indicates the maximal total " 35c5f01b2fSopenharmony_ci "time in seconds to run the fuzzer.") 36c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(help, 0, "Print help.") 37c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be " 38c5f01b2fSopenharmony_ci "merged into the 1-st corpus. Only interesting units will be taken. " 39c5f01b2fSopenharmony_ci "This flag can be used to minimize a corpus.") 40c5f01b2fSopenharmony_ciFUZZER_FLAG_STRING(merge_control_file, "internal flag") 41c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(minimize_crash, 0, "If 1, minimizes the provided" 42c5f01b2fSopenharmony_ci " crash input. Use with -runs=N or -max_total_time=N to limit " 43c5f01b2fSopenharmony_ci "the number attempts") 44c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(minimize_crash_internal_step, 0, "internal flag") 45c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(use_counters, 1, "Use coverage counters") 46c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(use_indir_calls, 1, "Use indirect caller-callee counters") 47c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(use_memcmp, 1, 48c5f01b2fSopenharmony_ci "Use hints from intercepting memcmp, strcmp, etc") 49c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(use_memmem, 1, 50c5f01b2fSopenharmony_ci "Use hints from intercepting memmem, strstr, etc") 51c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(use_value_profile, 0, 52c5f01b2fSopenharmony_ci "Experimental. Use value profile to guide fuzzing.") 53c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(use_cmp, 1, "Use CMP traces to guide mutations") 54c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(shrink, 0, "Experimental. Try to shrink corpus elements.") 55c5f01b2fSopenharmony_ciFUZZER_FLAG_UNSIGNED(jobs, 0, "Number of jobs to run. If jobs >= 1 we spawn" 56c5f01b2fSopenharmony_ci " this number of jobs in separate worker processes" 57c5f01b2fSopenharmony_ci " with stdout/stderr redirected to fuzz-JOB.log.") 58c5f01b2fSopenharmony_ciFUZZER_FLAG_UNSIGNED(workers, 0, 59c5f01b2fSopenharmony_ci "Number of simultaneous worker processes to run the jobs." 60c5f01b2fSopenharmony_ci " If zero, \"min(jobs,NumberOfCpuCores()/2)\" is used.") 61c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(reload, 1, 62c5f01b2fSopenharmony_ci "Reload the main corpus every <N> seconds to get new units" 63c5f01b2fSopenharmony_ci " discovered by other processes. If 0, disabled") 64c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(report_slow_units, 10, 65c5f01b2fSopenharmony_ci "Report slowest units if they run for more than this number of seconds.") 66c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(only_ascii, 0, 67c5f01b2fSopenharmony_ci "If 1, generate only ASCII (isprint+isspace) inputs.") 68c5f01b2fSopenharmony_ciFUZZER_FLAG_STRING(dict, "Experimental. Use the dictionary file.") 69c5f01b2fSopenharmony_ciFUZZER_FLAG_STRING(artifact_prefix, "Write fuzzing artifacts (crash, " 70c5f01b2fSopenharmony_ci "timeout, or slow inputs) as " 71c5f01b2fSopenharmony_ci "$(artifact_prefix)file") 72c5f01b2fSopenharmony_ciFUZZER_FLAG_STRING(exact_artifact_path, 73c5f01b2fSopenharmony_ci "Write the single artifact on failure (crash, timeout) " 74c5f01b2fSopenharmony_ci "as $(exact_artifact_path). This overrides -artifact_prefix " 75c5f01b2fSopenharmony_ci "and will not use checksum in the file name. Do not " 76c5f01b2fSopenharmony_ci "use the same path for several parallel processes.") 77c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(output_csv, 0, "Enable pulse output in CSV format.") 78c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(print_pcs, 0, "If 1, print out newly covered PCs.") 79c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(print_final_stats, 0, "If 1, print statistics at exit.") 80c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(print_corpus_stats, 0, 81c5f01b2fSopenharmony_ci "If 1, print statistics on corpus elements at exit.") 82c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(print_coverage, 0, "If 1, print coverage information at exit." 83c5f01b2fSopenharmony_ci " Experimental, only with trace-pc-guard") 84c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(dump_coverage, 0, "If 1, dump coverage information at exit." 85c5f01b2fSopenharmony_ci " Experimental, only with trace-pc-guard") 86c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.") 87c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGSEGV.") 88c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.") 89c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(handle_ill, 1, "If 1, try to intercept SIGILL.") 90c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(handle_fpe, 1, "If 1, try to intercept SIGFPE.") 91c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(handle_int, 1, "If 1, try to intercept SIGINT.") 92c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(handle_term, 1, "If 1, try to intercept SIGTERM.") 93c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(close_fd_mask, 0, "If 1, close stdout at startup; " 94c5f01b2fSopenharmony_ci "if 2, close stderr; if 3, close both. " 95c5f01b2fSopenharmony_ci "Be careful, this will also close e.g. asan's stderr/stdout.") 96c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(detect_leaks, 1, "If 1, and if LeakSanitizer is enabled " 97c5f01b2fSopenharmony_ci "try to detect memory leaks during fuzzing (i.e. not only at shut down).") 98c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(trace_malloc, 0, "If >= 1 will print all mallocs/frees. " 99c5f01b2fSopenharmony_ci "If >= 2 will also print stack traces.") 100c5f01b2fSopenharmony_ciFUZZER_FLAG_INT(rss_limit_mb, 2048, "If non-zero, the fuzzer will exit upon" 101c5f01b2fSopenharmony_ci "reaching this limit of RSS memory usage.") 102c5f01b2fSopenharmony_ciFUZZER_FLAG_STRING(exit_on_src_pos, "Exit if a newly found PC originates" 103c5f01b2fSopenharmony_ci " from the given source location. Example: -exit_on_src_pos=foo.cc:123. " 104c5f01b2fSopenharmony_ci "Used primarily for testing libFuzzer itself.") 105c5f01b2fSopenharmony_ciFUZZER_FLAG_STRING(exit_on_item, "Exit if an item with a given sha1 sum" 106c5f01b2fSopenharmony_ci " was added to the corpus. " 107c5f01b2fSopenharmony_ci "Used primarily for testing libFuzzer itself.") 108c5f01b2fSopenharmony_ci 109c5f01b2fSopenharmony_ciFUZZER_DEPRECATED_FLAG(exit_on_first) 110c5f01b2fSopenharmony_ciFUZZER_DEPRECATED_FLAG(save_minimized_corpus) 111c5f01b2fSopenharmony_ciFUZZER_DEPRECATED_FLAG(sync_command) 112c5f01b2fSopenharmony_ciFUZZER_DEPRECATED_FLAG(sync_timeout) 113c5f01b2fSopenharmony_ciFUZZER_DEPRECATED_FLAG(test_single_input) 114c5f01b2fSopenharmony_ciFUZZER_DEPRECATED_FLAG(drill) 115c5f01b2fSopenharmony_ciFUZZER_DEPRECATED_FLAG(truncate_units) 116