111 lines
2.3 KiB
Python
111 lines
2.3 KiB
Python
# Fuzzing TensorFlow.
|
|
# Since we use OSSFuzz, gather all fuzzers into a single place.
|
|
# This way, we can use tooling to determine the status of the fuzzing efforts.
|
|
|
|
load("@xla//third_party/rules_python/python:py_library.bzl", "py_library")
|
|
load(
|
|
"//tensorflow/security/fuzzing:tf_fuzzing.bzl",
|
|
"tf_py_fuzz_target",
|
|
)
|
|
|
|
package(
|
|
# copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
py_library(
|
|
name = "python_fuzzing",
|
|
srcs = ["python_fuzzing.py"],
|
|
strict_deps = True,
|
|
deps = ["//tensorflow:tensorflow_py_no_contrib"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "abs_fuzz",
|
|
srcs = ["abs_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "acos_fuzz",
|
|
srcs = ["acos_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "acosh_fuzz",
|
|
srcs = ["acosh_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "add_fuzz",
|
|
srcs = ["add_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "constant_fuzz",
|
|
srcs = ["constant_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "raggedCountSparseOutput_fuzz",
|
|
srcs = ["raggedCountSparseOutput_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "dataFormatVecPermute_fuzz",
|
|
srcs = ["dataFormatVecPermute_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "sparseCountSparseOutput_fuzz",
|
|
srcs = ["sparseCountSparseOutput_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|
|
|
|
tf_py_fuzz_target(
|
|
name = "tf2migration_fuzz",
|
|
srcs = ["tf2migration_fuzz.py"],
|
|
tags = [
|
|
"noautofuzz",
|
|
"notap",
|
|
], # Run in OSS only.
|
|
deps = [":python_fuzzing"],
|
|
)
|