2018-06-14 22:00:46 +00:00
|
|
|
# Code Coverage
|
|
|
|
|
|
|
|
You can generate code coverage report for your project using [Clang Source-based
|
|
|
|
Code Coverage].
|
|
|
|
|
|
|
|
|
2018-07-23 15:02:28 +00:00
|
|
|
## Pull the latest Docker images
|
|
|
|
|
|
|
|
Docker images get regularly updated with a newer version of build tools, build
|
|
|
|
configurations, scripts, and other changes. It is recommended to use the most
|
|
|
|
recent images for a better user experience.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
python infra/helper.py pull_images
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-06-14 22:00:46 +00:00
|
|
|
## Build fuzz targets
|
|
|
|
|
|
|
|
Code Coverage report generation requires a special build configuration to be
|
|
|
|
used. In order to produce such build for your project, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
python infra/helper.py build_image $project_name
|
2018-10-12 06:16:51 +00:00
|
|
|
python infra/helper.py build_fuzzers --sanitizer=coverage $project_name
|
2018-06-14 22:00:46 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Establish access to GCS
|
|
|
|
|
|
|
|
To get a good understanding of quality of the fuzz testing established for your
|
|
|
|
project, code coverage should be generated by running fuzz targets against the
|
|
|
|
corpus aggregated by OSS-Fuzz. The helper script will download the corpus
|
2018-06-15 17:44:18 +00:00
|
|
|
automatically using `gsutil` tool. To make it work, you need:
|
|
|
|
|
|
|
|
* Install [gsutil tool]
|
|
|
|
* Check whether you have access to the corpus for your project:
|
2018-06-14 22:00:46 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
gsutil ls gs://${project_name}-corpus.clusterfuzz-external.appspot.com/
|
|
|
|
```
|
|
|
|
|
|
|
|
If you see an authorization error from the command above, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
gcloud auth login
|
|
|
|
```
|
|
|
|
|
|
|
|
and try again. Once `gsutil` works, you can run the report generation.
|
|
|
|
|
|
|
|
|
|
|
|
## Generating code coverage reports
|
|
|
|
|
2018-06-18 21:19:48 +00:00
|
|
|
### Full project report
|
|
|
|
|
2018-06-14 22:00:46 +00:00
|
|
|
To generate code coverage report using the corpus aggregated on OSS-Fuzz, run:
|
|
|
|
|
|
|
|
```bash
|
2018-10-12 06:16:51 +00:00
|
|
|
python infra/helper.py coverage $project_name
|
2018-06-14 22:00:46 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
If you want to generate code coverage report using the corpus you have locally,
|
2018-06-15 17:44:18 +00:00
|
|
|
copy the corpus into `build/corpus/$project_name/$fuzz_target/` directories for
|
|
|
|
each fuzz target, then run:
|
2018-06-14 22:00:46 +00:00
|
|
|
|
|
|
|
```bash
|
2018-10-12 06:16:51 +00:00
|
|
|
python infra/helper.py coverage --no-corpus-download $project_name
|
2018-06-14 22:00:46 +00:00
|
|
|
```
|
|
|
|
|
2018-06-18 21:19:48 +00:00
|
|
|
### Single fuzz target
|
|
|
|
|
|
|
|
You can generate a code coverage report for a particular fuzz target with
|
|
|
|
`--fuzz-target` argument:
|
|
|
|
|
|
|
|
```bash
|
2018-10-12 06:16:51 +00:00
|
|
|
python infra/helper.py coverage --fuzz-target=<fuzz_target_name> $project_name
|
2018-06-18 21:19:48 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
In this mode, you can specify an arbitrary corpus location for the fuzz target
|
|
|
|
via `--corpus-dir` to be used instead of the corpus downloaded from OSS-Fuzz:
|
|
|
|
|
|
|
|
```bash
|
2018-10-12 06:16:51 +00:00
|
|
|
python infra/helper.py coverage --fuzz-target=<fuzz_target_name> --corpus-dir=<my_local_corpus_dir> $project_name
|
2018-06-18 21:19:48 +00:00
|
|
|
```
|
|
|
|
|
2018-07-19 22:58:58 +00:00
|
|
|
### Additional arguments for `llvm-cov`
|
|
|
|
|
|
|
|
You may want to use some of the options of [llvm-cov tool], for example,
|
2018-08-30 16:46:14 +00:00
|
|
|
`-ignore-filename-regex=`. You can pass those to the helper script after `--`:
|
2018-07-19 22:58:58 +00:00
|
|
|
|
|
|
|
```bash
|
2018-10-12 06:16:51 +00:00
|
|
|
python infra/helper.py coverage $project_name -- -ignore-filename-regex=.*code/to/be/ignored/.* <other_extra_args>
|
2018-07-19 22:58:58 +00:00
|
|
|
```
|
|
|
|
|
2018-08-30 16:46:14 +00:00
|
|
|
To specify particular source files or directories to show in the report, list
|
|
|
|
their paths at the end of the extra arguments sequence, for example:
|
2018-08-12 17:19:40 +00:00
|
|
|
|
|
|
|
```bash
|
2018-10-12 06:16:51 +00:00
|
|
|
python infra/helper.py coverage zlib -- <other_extra_args> /src/zlib/inftrees.c /src/zlib_uncompress_fuzzer.cc /src/zlib/zutil.c
|
2018-08-12 17:19:40 +00:00
|
|
|
```
|
2018-06-14 22:00:46 +00:00
|
|
|
|
2018-08-30 16:46:14 +00:00
|
|
|
If you want OSS-Fuzz to use some extra arguments when generating code coverage
|
|
|
|
reports for your project, add the arguments into `project.yaml` file as follows:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
coverage_extra_args: -ignore-filename-regex=.*crc.* -ignore-filename-regex=.*adler.* <other_extra_args>
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-06-14 22:00:46 +00:00
|
|
|
[Clang Source-based Code Coverage]: https://clang.llvm.org/docs/SourceBasedCodeCoverage.html
|
2018-06-15 17:44:18 +00:00
|
|
|
[gsutil tool]: https://cloud.google.com/storage/docs/gsutil_install
|
2018-07-19 22:58:58 +00:00
|
|
|
[llvm-cov tool]: https://llvm.org/docs/CommandGuide/llvm-cov.html
|