oss-fuzz/infra
Sergey Bronnikov 8b6e3966c7
helper.py: make shell compatible with build_* (#9959)
`infra/helper.py shell project` used to open docker container with
different volumes mounted than `infra/helper.py build_fuzzers project`
Use the same logics in shell for project workdir calculation as it's
used during build procedure. This way we may easier troubleshoot build
issues in shell.
2023-03-20 11:09:24 -04:00
..
base-images pysecsan: refine and add as option in compile_python_fuzzer (#9169) 2023-03-08 12:10:01 -08:00
build Add main_repo to build status.json (#9822) 2023-03-01 10:56:18 +11:00
ci infra: remove temporary build image for Go (#9230) 2022-12-19 13:00:55 +11:00
cifuzz Cifuzz upload fix (#9899) 2023-03-16 11:35:55 -04:00
experimental SystemSan: log correct dns type and class (#9476) 2023-01-23 09:48:14 +11:00
tools Add helper scripts for wycheproof (#9008) 2022-11-21 17:20:42 -05:00
uploader
.dockerignore
README.md Update README.md (#7352) 2022-03-02 10:39:34 -05:00
bisector.py Fix exception in bisector.py (#9399) 2023-01-12 09:26:10 +11:00
bisector_test.py
build_fuzzers.Dockerfile [cifuzz] Fuzz in cifuzz-base (#6142) 2021-08-05 13:27:24 -07:00
build_specified_commit.py [helper] Change logging from error to info (#6200) 2021-08-11 11:09:24 -07:00
build_specified_commit_test.py [helper] Change logging from error to info (#6200) 2021-08-11 11:09:24 -07:00
constants.py Source-based code coverage reporting for Jazzer.js (#9758) 2023-02-23 18:51:21 +11:00
helper.py helper.py: make shell compatible with build_* (#9959) 2023-03-20 11:09:24 -04:00
helper_test.py [infra] Fix test failure. (#7098) 2022-01-05 15:00:00 -05:00
manifest.py [arm] Add manifest script (#8223) 2022-08-12 09:04:24 -04:00
presubmit.py Add license checking for more languages (#9630) 2023-02-07 21:09:32 +00:00
pytest.ini
repo_manager.py Consider submodules while commit and PR checkout (#7500) 2022-04-05 11:14:39 -04:00
repo_manager_test.py cflite: Support private repos (#6592) 2021-10-20 13:51:57 +11:00
retry.py
run_fuzzers.Dockerfile Cifuzz upload fix (#9899) 2023-03-16 11:35:55 -04:00
templates.py Enable github issue filing in new projects. (#7810) 2022-06-08 11:47:51 +10:00
test Enable centipede on a bunch of projects (#9643) 2023-02-13 14:24:42 -05:00
test_repos.py
utils.py [ClusterFuzzLite] Fix fuzz target search for coverage (#6799) 2021-11-09 07:49:21 -05:00
utils_test.py [cifuzz] Use javascript actions library for uploading artifacts (#6552) 2021-10-05 09:16:54 -04:00

README.md

infra

OSS-Fuzz project infrastructure

Core infrastructure:

  • base-images - docker images for building fuzz targets & corresponding jenkins pipeline.

Continuous Integration infrastructure:

  • ci - script to build projects in CI.

helper.py

script to automate common docker operations

Command Description
generate Generates skeleton files for a new project
build_image Builds a docker image for a given project
build_fuzzers Builds fuzz targets for a given project
run_fuzzer Runs a fuzz target in a docker container
coverage Runs fuzz target(s) in a docker container and generates a code coverage report. See Code Coverage doc
reproduce Runs a testcase to reproduce a crash
shell Starts a shell inside the docker image for a project