xref: /aosp_15_r20/external/llvm/lib/Fuzzer/FuzzerFlags.def (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker//===- FuzzerFlags.def - Run-time flags -------------------------*- C++ -* ===//
2*9880d681SAndroid Build Coastguard Worker//
3*9880d681SAndroid Build Coastguard Worker//                     The LLVM Compiler Infrastructure
4*9880d681SAndroid Build Coastguard Worker//
5*9880d681SAndroid Build Coastguard Worker// This file is distributed under the University of Illinois Open Source
6*9880d681SAndroid Build Coastguard Worker// License. See LICENSE.TXT for details.
7*9880d681SAndroid Build Coastguard Worker//
8*9880d681SAndroid Build Coastguard Worker//===----------------------------------------------------------------------===//
9*9880d681SAndroid Build Coastguard Worker// Flags. FUZZER_FLAG_INT/FUZZER_FLAG_STRING macros should be defined at the
10*9880d681SAndroid Build Coastguard Worker// point of inclusion. We are not using any flag parsing library for better
11*9880d681SAndroid Build Coastguard Worker// portability and independence.
12*9880d681SAndroid Build Coastguard Worker//===----------------------------------------------------------------------===//
13*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(verbosity, 1, "Verbosity level.")
14*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_UNSIGNED(seed, 0, "Random seed. If 0, seed is generated.")
15*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(runs, -1,
16*9880d681SAndroid Build Coastguard Worker            "Number of individual test runs (-1 for infinite runs).")
17*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(max_len, 0, "Maximum length of the test input. "
18*9880d681SAndroid Build Coastguard Worker    "If 0, libFuzzer tries to guess a good value based on the corpus "
19*9880d681SAndroid Build Coastguard Worker    "and reports it. ")
20*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
21*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(mutate_depth, 5,
22*9880d681SAndroid Build Coastguard Worker            "Apply this number of consecutive mutations to each input.")
23*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(shuffle, 1, "Shuffle inputs at startup")
24*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(prefer_small, 1,
25*9880d681SAndroid Build Coastguard Worker    "If 1, always prefer smaller inputs during the corpus shuffle.")
26*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(
27*9880d681SAndroid Build Coastguard Worker    timeout, 1200,
28*9880d681SAndroid Build Coastguard Worker    "Timeout in seconds (if positive). "
29*9880d681SAndroid Build Coastguard Worker    "If one unit runs more than this number of seconds the process will abort.")
30*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(timeout_exitcode, 77,
31*9880d681SAndroid Build Coastguard Worker                "Unless abort_on_timeout is set, use this exitcode on timeout.")
32*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(error_exit_code, 77, "When libFuzzer's signal handlers are in "
33*9880d681SAndroid Build Coastguard Worker  "use exit with this exitcode after catching a deadly signal.")
34*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(max_total_time, 0, "If positive, indicates the maximal total "
35*9880d681SAndroid Build Coastguard Worker                                   "time in seconds to run the fuzzer.")
36*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(help, 0, "Print help.")
37*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be "
38*9880d681SAndroid Build Coastguard Worker  "merged into the 1-st corpus. Only interesting units will be taken. "
39*9880d681SAndroid Build Coastguard Worker  "This flag can be used to minimize a corpus.")
40*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(use_counters, 1, "Use coverage counters")
41*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(use_indir_calls, 1, "Use indirect caller-callee counters")
42*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(use_traces, 0, "Experimental: use instruction traces")
43*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(use_memcmp, 1,
44*9880d681SAndroid Build Coastguard Worker                "Use hints from intercepting memcmp, strcmp, etc")
45*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(jobs, 0, "Number of jobs to run. If jobs >= 1 we spawn"
46*9880d681SAndroid Build Coastguard Worker                          " this number of jobs in separate worker processes"
47*9880d681SAndroid Build Coastguard Worker                          " with stdout/stderr redirected to fuzz-JOB.log.")
48*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(workers, 0,
49*9880d681SAndroid Build Coastguard Worker            "Number of simultaneous worker processes to run the jobs."
50*9880d681SAndroid Build Coastguard Worker            " If zero, \"min(jobs,NumberOfCpuCores()/2)\" is used.")
51*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(reload, 1,
52*9880d681SAndroid Build Coastguard Worker                "Reload the main corpus periodically to get new units"
53*9880d681SAndroid Build Coastguard Worker                " discovered by other processes.")
54*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(report_slow_units, 10,
55*9880d681SAndroid Build Coastguard Worker    "Report slowest units if they run for more than this number of seconds.")
56*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(only_ascii, 0,
57*9880d681SAndroid Build Coastguard Worker                "If 1, generate only ASCII (isprint+isspace) inputs.")
58*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_STRING(dict, "Experimental. Use the dictionary file.")
59*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_STRING(artifact_prefix, "Write fuzzing artifacts (crash, "
60*9880d681SAndroid Build Coastguard Worker                                    "timeout, or slow inputs) as "
61*9880d681SAndroid Build Coastguard Worker                                    "$(artifact_prefix)file")
62*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_STRING(exact_artifact_path,
63*9880d681SAndroid Build Coastguard Worker                   "Write the single artifact on failure (crash, timeout) "
64*9880d681SAndroid Build Coastguard Worker                   "as $(exact_artifact_path). This overrides -artifact_prefix "
65*9880d681SAndroid Build Coastguard Worker                   "and will not use checksum in the file name. Do not "
66*9880d681SAndroid Build Coastguard Worker                   "use the same path for several parallel processes.")
67*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(drill, 0, "Experimental: fuzz using a single unit as the seed "
68*9880d681SAndroid Build Coastguard Worker                          "corpus, then merge with the initial corpus")
69*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(output_csv, 0, "Enable pulse output in CSV format.")
70*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(print_new_cov_pcs, 0, "If 1, print out new covered pcs.")
71*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(print_final_stats, 0, "If 1, print statistics at exit.")
72*9880d681SAndroid Build Coastguard Worker
73*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.")
74*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGSEGV.")
75*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.")
76*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(handle_ill, 1, "If 1, try to intercept SIGILL.")
77*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(handle_fpe, 1, "If 1, try to intercept SIGFPE.")
78*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(handle_int, 1, "If 1, try to intercept SIGINT.")
79*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(handle_term, 1, "If 1, try to intercept SIGTERM.")
80*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(close_fd_mask, 0, "If 1, close stdout at startup; "
81*9880d681SAndroid Build Coastguard Worker    "if 2, close stderr; if 3, close both. "
82*9880d681SAndroid Build Coastguard Worker    "Be careful, this will also close e.g. asan's stderr/stdout.")
83*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(detect_leaks, 1, "If 1, and if LeakSanitizer is enabled "
84*9880d681SAndroid Build Coastguard Worker    "try to detect memory leaks during fuzzing (i.e. not only at shut down).")
85*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(rss_limit_mb, 2048, "If non-zero, the fuzzer will exit upon"
86*9880d681SAndroid Build Coastguard Worker    "reaching this limit of RSS memory usage.")
87*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(truncate_units, 0, "Try truncated units when loading corpus.")
88*9880d681SAndroid Build Coastguard WorkerFUZZER_FLAG_INT(prune_corpus, 1, "Prune corpus items without new coverage when "
89*9880d681SAndroid Build Coastguard Worker                                 "loading corpus.")
90*9880d681SAndroid Build Coastguard Worker
91*9880d681SAndroid Build Coastguard WorkerFUZZER_DEPRECATED_FLAG(exit_on_first)
92*9880d681SAndroid Build Coastguard WorkerFUZZER_DEPRECATED_FLAG(save_minimized_corpus)
93*9880d681SAndroid Build Coastguard WorkerFUZZER_DEPRECATED_FLAG(sync_command)
94*9880d681SAndroid Build Coastguard WorkerFUZZER_DEPRECATED_FLAG(sync_timeout)
95*9880d681SAndroid Build Coastguard WorkerFUZZER_DEPRECATED_FLAG(test_single_input)
96