1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This file is a partial translation of
# //third_party/fuzztest/src/centipede/BUILD
# into BUILD.gn format.
#
# It contains support for both:
# - centipede, a way of building and running Chromium's existing fuzzing
# targets using an out-of-process runner.
# - fuzztest, a way of building new fuzzing targets using simpler macros.
import("//build/config/android/config.gni")
import("//build/config/sanitizers/sanitizers.gni")
import("//build_overrides/build.gni")
# Retain full optimization level for the engine parts independent of the
# optimizations set for the fuzz target.
fuzztest_remove_configs = fuzzing_engine_remove_configs +
[ "//build/config/compiler:default_optimization" ]
fuzztest_add_configs = fuzzing_engine_add_configs + [
"//build/config/compiler:optimize",
":fuzztest_internal_config",
":fuzztest_public_config",
]
config("fuzztest_internal_config") {
cflags = [
"-Wno-unused-private-field",
"-Wno-unreachable-code-return",
"-Wno-unused-but-set-variable",
"-Wno-shadow",
"-Wno-unused-const-variable",
"-Wno-unused-function",
"-Wno-inconsistent-missing-override",
"-Wno-unused-lambda-capture",
"-Wno-c++98-compat-extra-semi",
"-Wno-deprecated-declarations",
]
# int_utils.h depends on an SSE 4.2 intrinsic.
if (current_cpu == "x64") {
cflags += [ "-msse4.2" ]
}
}
config("fuzztest_public_config") {
include_dirs = [ "src" ]
defines = [
# Riegeli is a library which centipede can use to store data more
# efficiently. It's not yet available in Chromium, so disable
# for now.
"CENTIPEDE_DISABLE_RIEGELI",
]
if (!enable_fuzztest_fuzz) {
defines += [
# In fuzztest's unit-test mode, coverage collection doesn't work
# with multiple DSOs, which Chromium needs even in non-component
# builds. Note that this doesn't impact actual fuzzing mode e.g.
# centipede.
"FUZZTEST_NO_LEGACY_COVERAGE",
]
}
if (use_centipede) {
defines += [ "FUZZTEST_USE_CENTIPEDE" ]
} else if (use_fuzzing_engine && fuzzing_engine_supports_custom_main) {
defines += [ "FUZZTEST_COMPATIBILITY_MODE" ]
}
# These flags will be applied to Chrome test code, so keep to the minimum
# set required to compile fuzztest's headers. Those required to compile
# fuzztest .cc files should go into fuzztest_internal_config
cflags = [
"-Wno-sign-compare", # https://github.com/google/centipede/issues/487,
]
}
if (use_centipede) {
source_set("centipede_common") {
testonly = true
sources = [
"src/centipede/binary_info.cc",
"src/centipede/binary_info.h",
"src/centipede/byte_array_mutator.cc",
"src/centipede/byte_array_mutator.h",
"src/centipede/command.cc",
"src/centipede/control_flow.cc",
"src/centipede/execution_metadata.cc",
"src/centipede/execution_metadata.h",
"src/centipede/feature.cc",
"src/centipede/feature.h",
"src/centipede/knobs.cc",
"src/centipede/knobs.h",
"src/centipede/pc_info.cc",
"src/centipede/pc_info.h",
"src/centipede/reverse_pc_table.h",
"src/centipede/runner_cmp_trace.h",
"src/centipede/runner_request.cc",
"src/centipede/runner_request.h",
"src/centipede/runner_result.cc",
"src/centipede/runner_result.h",
"src/centipede/shared_memory_blob_sequence.cc",
"src/centipede/shared_memory_blob_sequence.h",
"src/centipede/stop.cc",
"src/centipede/stop.h",
"src/centipede/symbol_table.cc",
"src/centipede/util.cc",
]
deps = [ "//third_party/abseil-cpp:absl_full" ]
public_deps = [ ":common" ]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
}
source_set("centipede_runner_no_main") {
testonly = true
sources = [
"src/centipede/runner.cc",
"src/centipede/runner.h",
"src/centipede/runner_dl_info.cc",
"src/centipede/runner_dl_info.h",
"src/centipede/runner_fork_server.cc",
"src/centipede/runner_interceptors.cc",
"src/centipede/runner_interface.h",
"src/centipede/runner_sancov.cc",
"src/centipede/runner_sancov_object.cc",
"src/centipede/runner_sancov_object.h",
"src/centipede/runner_utils.cc",
"src/centipede/runner_utils.h",
]
deps = [
":centipede_common",
"//third_party/abseil-cpp:absl_full",
]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
# Ensure that the centipede driver executable is also built
# whenever we build any centipede-based fuzzer
data_deps = [ ":centipede" ]
# sancov symbols need to be exported for centipede to work correctly with
# multi-dso.
configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
configs += [ "//build/config/gcc:symbol_visibility_default" ]
}
source_set("centipede_runner_main") {
testonly = true
deps = [
":centipede_runner_no_main",
"//third_party/abseil-cpp:absl",
]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
sources = [ "src/centipede/runner_main.cc" ]
}
# Parts of centipede which are used for the external execution executable,
# but are also now built into fuzztests themselves so that they no longer
# depend on an external runner
source_set("centipede_executable_engine") {
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
include_dirs = [ "src" ]
testonly = true
public_deps = [ ":centipede_common" ]
if (is_linux) {
libs = [ "atomic" ]
}
deps = [
":fuzztest_internal",
"//third_party/abseil-cpp:absl_full",
]
sources = [
"src/centipede/analyze_corpora.cc",
"src/centipede/call_graph.cc",
"src/centipede/centipede.cc",
"src/centipede/centipede_callbacks.cc",
"src/centipede/centipede_default_callbacks.cc",
"src/centipede/centipede_interface.cc",
"src/centipede/config_file.cc",
"src/centipede/config_init.cc",
"src/centipede/config_util.cc",
"src/centipede/corpus.cc",
"src/centipede/corpus_io.cc",
"src/centipede/coverage.cc",
"src/centipede/distill.cc",
"src/centipede/distill.h",
"src/centipede/environment.cc",
"src/centipede/feature_set.cc",
"src/centipede/feature_set.h",
"src/centipede/fuzztest_mutator.cc",
"src/centipede/fuzztest_mutator.h",
"src/centipede/minimize_crash.cc",
"src/centipede/periodic_action.cc",
"src/centipede/periodic_action.h",
"src/centipede/resource_pool.cc",
"src/centipede/rusage_profiler.cc",
"src/centipede/rusage_stats.cc",
"src/centipede/seed_corpus_maker_lib.cc",
"src/centipede/seed_corpus_maker_lib.h",
"src/centipede/stats.cc",
"src/centipede/workdir.cc",
"src/centipede/workdir.h",
]
}
# The centipede out-of-process runner executable.
executable("centipede") {
testonly = true
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
deps = [
":centipede_executable_engine",
"//third_party/abseil-cpp:absl_full",
]
sources = [
"src/centipede/centipede_main.cc",
"src/centipede/environment_flags.cc",
"src/centipede/environment_flags.h",
]
}
}
if (use_centipede || enable_fuzztest_fuzz) {
source_set("centipede_weak_sancov_stubs") {
sources = [ "src/centipede/weak_sancov_stubs.cc" ]
}
}
# Parts of fuzztest internals which are safe to include in all sorts
# of test-related code, including other fuzzers.
source_set("fuzztest_internal") {
if (defined(android_ndk_major_version) && android_ndk_major_version < 28) {
# Android API level 28+ has posix_spawnp
defines = [ "FUZZTEST_DISABLE_SUBPROCESS" ]
}
sources = [
"src/fuzztest/domain.h",
"src/fuzztest/domain_core.h",
"src/fuzztest/fuzzing_bit_gen.cc",
"src/fuzztest/fuzzing_bit_gen.h",
"src/fuzztest/fuzztest.h",
"src/fuzztest/fuzztest_macros.cc",
"src/fuzztest/fuzztest_macros.h",
"src/fuzztest/googletest_fixture_adapter.h",
"src/fuzztest/internal/any.h",
"src/fuzztest/internal/centipede_adaptor.h",
"src/fuzztest/internal/compatibility_mode.h",
"src/fuzztest/internal/configuration.cc",
"src/fuzztest/internal/configuration.h",
"src/fuzztest/internal/corpus_database.cc",
"src/fuzztest/internal/corpus_database.h",
"src/fuzztest/internal/coverage.cc",
"src/fuzztest/internal/coverage.h",
"src/fuzztest/internal/domains/absl_helpers.h",
"src/fuzztest/internal/domains/aggregate_of_impl.h",
"src/fuzztest/internal/domains/arbitrary_impl.h",
"src/fuzztest/internal/domains/bit_flag_combination_of_impl.h",
"src/fuzztest/internal/domains/bit_gen_ref.h",
"src/fuzztest/internal/domains/container_mutation_helpers.h",
"src/fuzztest/internal/domains/container_of_impl.h",
"src/fuzztest/internal/domains/domain_base.h",
"src/fuzztest/internal/domains/element_of_impl.h",
"src/fuzztest/internal/domains/filter_impl.h",
"src/fuzztest/internal/domains/flat_map_impl.h",
"src/fuzztest/internal/domains/in_grammar_impl.cc",
"src/fuzztest/internal/domains/in_grammar_impl.h",
"src/fuzztest/internal/domains/in_range_impl.h",
"src/fuzztest/internal/domains/in_regexp_impl.cc",
"src/fuzztest/internal/domains/in_regexp_impl.h",
"src/fuzztest/internal/domains/map_impl.h",
"src/fuzztest/internal/domains/one_of_impl.h",
"src/fuzztest/internal/domains/optional_of_impl.h",
"src/fuzztest/internal/domains/protobuf_domain_impl.h",
"src/fuzztest/internal/domains/regexp_dfa.cc",
"src/fuzztest/internal/domains/regexp_dfa.h",
"src/fuzztest/internal/domains/rune.cc",
"src/fuzztest/internal/domains/rune.h",
"src/fuzztest/internal/domains/serialization_helpers.h",
"src/fuzztest/internal/domains/smart_pointer_of_impl.h",
"src/fuzztest/internal/domains/unique_elements_container_of_impl.h",
"src/fuzztest/internal/domains/utf.cc",
"src/fuzztest/internal/domains/utf.h",
"src/fuzztest/internal/domains/value_mutation_helpers.h",
"src/fuzztest/internal/domains/variant_of_impl.h",
"src/fuzztest/internal/escaping.cc",
"src/fuzztest/internal/escaping.h",
"src/fuzztest/internal/fixture_driver.cc",
"src/fuzztest/internal/fixture_driver.h",
"src/fuzztest/internal/googletest_adaptor.cc",
"src/fuzztest/internal/googletest_adaptor.h",
"src/fuzztest/internal/io.cc",
"src/fuzztest/internal/io.h",
"src/fuzztest/internal/logging.cc",
"src/fuzztest/internal/logging.h",
"src/fuzztest/internal/meta.h",
"src/fuzztest/internal/register_fuzzing_mocks.cc",
"src/fuzztest/internal/register_fuzzing_mocks.h",
"src/fuzztest/internal/registration.h",
"src/fuzztest/internal/registry.cc",
"src/fuzztest/internal/registry.h",
"src/fuzztest/internal/runtime.cc",
"src/fuzztest/internal/runtime.h",
"src/fuzztest/internal/seed_seq.cc",
"src/fuzztest/internal/seed_seq.h",
"src/fuzztest/internal/serialization.cc",
"src/fuzztest/internal/serialization.h",
"src/fuzztest/internal/status.cc",
"src/fuzztest/internal/status.h",
"src/fuzztest/internal/subprocess.cc",
"src/fuzztest/internal/subprocess.h",
"src/fuzztest/internal/table_of_recent_compares.h",
"src/fuzztest/internal/type_support.cc",
"src/fuzztest/internal/type_support.h",
]
testonly = true
deps = [
"//testing/gtest",
"//third_party/abseil-cpp:absl_full",
]
# TODO(https://crbug.com/337736622): Remove this after M129 when V8 moves
# protobuf back to //third_party/protobuf.
if (!defined(protobuf_target_prefix)) {
protobuf_target_prefix = "//third_party/protobuf"
}
public_deps = [
":common",
"//third_party/abseil-cpp:absl",
# For RE2 mutators. It's questionable whether we want to pull this library
# into every fuzztest target, but this is the approach used in other
# fuzztest contexts so we'll do the same
"//third_party/re2",
# For protobuf mutators
"$protobuf_target_prefix:protobuf_lite",
]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
}
source_set("common") {
sources = [
"src/common/bazel.cc",
"src/common/bazel.h",
"src/common/blob_file.cc",
"src/common/blob_file.h",
"src/common/defs.h",
"src/common/hash.cc",
"src/common/hash.h",
"src/common/logging.h",
"src/common/remote_file.cc",
"src/common/remote_file.h",
"src/common/remote_file_oss.cc",
"src/common/sha1.cc",
"src/common/sha1.h",
"src/common/temp_dir.cc",
"src/common/temp_dir.h",
]
deps = [ "//third_party/abseil-cpp:absl_full" ]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
}
# Fuzztest support. This allows regular test executables to contain
# a FUZZ_TEST. Such tests/executables should depend directly on this target;
# at this time there's no need to use a special gn template for fuzz tests.
# The resulting executables may be used in a variety of modes:
# ./my_test # just runs. The FUZZ_TEST runs for 1 second.
# ./my_test --fuzz= # runs fuzzing indefinitely.
# # Requires enable_fuzztest_fuzz gn argument.
# ./my_test --fuzz= # If use_libfuzzer gn argument is enabled, this
# # causes the test to emulate a regular libfuzzer fuzzer.
# centipede --binary=./mytest # Allows the binary to be run using centipede
# # out of process execution environment.
# # Requires use_centipede gn argument.
# Nothing in this target depends upon //testing/libfuzzer:is_a_fuzz_target,
# so dependent binaries won't directly be built by the fuzzing build job.
# However, any uses of the test("...") template which declare that they
# have fuzztests will cause wrapper executables to be built (because they
# will depend upon :is_a_fuzz_target). Such executables will have a data_dep
# on the underlying fuzztest executable, so it will get built.
source_set("fuzztest") {
deps = [
"//testing/gtest",
"//third_party/abseil-cpp:absl_full",
]
if (use_centipede) {
# If we are building for centipede, we want to make fuzztest executables
# which can be used as centipede fuzzers.
sources = [ "src/fuzztest/internal/centipede_adaptor.cc" ]
deps += [
":centipede_executable_engine",
":centipede_runner_no_main",
]
} else if (use_fuzzing_engine && fuzzing_engine_supports_custom_main) {
# Typically, libfuzzer.
sources = [ "src/fuzztest/internal/compatibility_mode.cc" ]
deps += [ "//testing/libfuzzer:fuzzing_engine_no_main_core" ]
}
public_deps = [ ":fuzztest_internal" ]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
public_configs = [ ":fuzztest_public_config" ]
testonly = true
}
# Depend on this if you're a test runner executable (or similar)
# with its own main() but you need to call InitFuzzTest.
source_set("init_fuzztest") {
sources = [
"src/fuzztest/init_fuzztest.cc",
"src/fuzztest/init_fuzztest.h",
]
deps = [
"//testing/gtest",
"//third_party/abseil-cpp:absl_full",
]
public_deps = [ ":fuzztest_internal" ]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
testonly = true
}
# Depend upon this if you need a main() function
source_set("fuzztest_gtest_main") {
deps = [
"//testing/gtest",
"//third_party/abseil-cpp:absl_full",
]
sources = [ "src/fuzztest/fuzztest_gtest_main.cc" ]
configs -= fuzztest_remove_configs
configs += fuzztest_add_configs
public_deps = [
":init_fuzztest",
"//testing/gtest",
]
if (use_centipede) {
data_deps = [ ":centipede" ]
}
testonly = true
}
|