Skip to content

Commit

Permalink
ci: run daily ClusterFuzz report
Browse files Browse the repository at this point in the history
  • Loading branch information
riptl committed Feb 20, 2024
1 parent 4236893 commit 6284065
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/coverage_report_clusterfuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Creates a coverage report using only the ClusterFuzz corpus.
# This complements our main coverage report, which only uses local test
# vectors. As ClusterFuzz continually finds new things to fuzz, we run
# this script daily.

name: Coverage Report (ClusterFuzz)
on:
schedule:
- cron: 30 11 * * *
workflow_dispatch:
jobs:
coverage-report-clusterfuzz:
name: Coverage Report (ClusterFuzz)
runs-on: ubuntu-latest
env:
MACHINE: linux_clang_haswell
EXTRAS: llvm-cov
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/deps

- name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/auth@v2'
with:
credentials_json: ${{ secrets.FUZZ_SERVICE_ACCT_JSON_BUNDLE }}

- name: Build
run: make -j fuzz-test

- name: Replace corpus dir
run: contrib/test/fetch_clusterfuzz_corpus.sh

- name: Generate fuzz coverage
run: |
make run-fuzz-test
make build/linux/clang/haswell/cov/cov.lcov
- name: Upload coverage report to CodeCov
uses: codecov/codecov-action@v3
timeout-minutes: 5
with:
files: build/linux/clang/haswell/cov/cov.lcov
name: dist-cov-report-cf
functionalities: search
flags: clusterfuzz
26 changes: 26 additions & 0 deletions contrib/test/fetch_clusterfuzz_corpus.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env bash

# Downloads the latest ClusterFuzz corpus.
# WARNING: Destructive!

rm -rf corpus

gcloud storage ls gs://backup.isol-clusterfuzz.appspot.com/corpus/libFuzzer/ |
while read -r dir
do
TARGET_FULL="$(basename "$dir")" # fuzz_base64-highend
TARGET=$(sed -r 's/-[a-z]+$//' <<< "$TARGET_FULL") # fuzz_base64

CORPUS_DIR="corpus/$TARGET/$TARGET"
mkdir -v -p "$CORPUS_DIR"

TEMPFILE="$(mktemp)"
gcloud storage cp "$dir"latest.zip "$TEMPFILE"

TEMPDIR="$(mktemp -d)"
unzip -q "$TEMPFILE" -d "$TEMPDIR"
rm "$TEMPFILE"

find "$TEMPDIR" -type f -exec mv -nt "$CORPUS_DIR" {} +
rm -r "$TEMPDIR"
done

0 comments on commit 6284065

Please sign in to comment.