2020-01-13 23:25:12 +00:00
|
|
|
# Copyright 2020 Google LLC
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
"""Builds and runs specific OSS-Fuzz project's fuzzers for CI tools."""
|
2020-01-29 19:03:43 +00:00
|
|
|
import logging
|
2020-01-13 23:25:12 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2020-01-29 19:03:43 +00:00
|
|
|
# pylint: disable=wrong-import-position
|
|
|
|
sys.path.append(os.path.join(os.environ['OSS_FUZZ_ROOT'], 'infra', 'cifuzz'))
|
|
|
|
import cifuzz
|
|
|
|
|
|
|
|
# TODO: Turn default logging to INFO when CIFuzz is stable
|
|
|
|
logging.basicConfig(
|
|
|
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
|
|
|
level=logging.DEBUG)
|
|
|
|
|
2020-01-13 23:25:12 +00:00
|
|
|
|
|
|
|
def main():
|
2020-01-29 19:03:43 +00:00
|
|
|
"""Runs OSS-Fuzz project's fuzzers for CI tools.
|
|
|
|
This script is used to kick off the Github Actions CI tool. It is the
|
|
|
|
entrypoint of the Dockerfile in this directory. This action can be added to
|
|
|
|
any OSS-Fuzz project's workflow that uses Github.
|
|
|
|
|
|
|
|
Required environment variables:
|
|
|
|
PROJECT_NAME: The name of OSS-Fuzz project.
|
|
|
|
FUZZ_TIME: The length of time in seconds that fuzzers are to be run.
|
|
|
|
GITHUB_REPOSITORY: The name of the Github repo that called this script.
|
|
|
|
GITHUB_SHA: The commit SHA that triggered this script.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
0 on success or 1 on Failure.
|
|
|
|
"""
|
|
|
|
oss_fuzz_project_name = os.environ.get('PROJECT_NAME')
|
|
|
|
fuzz_seconds = int(os.environ.get('FUZZ_SECONDS', 360))
|
|
|
|
github_repo_name = os.path.basename(os.environ.get('GITHUB_REPOSITORY'))
|
|
|
|
commit_sha = os.environ.get('GITHUB_SHA')
|
|
|
|
|
|
|
|
# Get the shared volume directory and create required directorys.
|
|
|
|
workspace = os.environ.get('GITHUB_WORKSPACE')
|
|
|
|
if not workspace:
|
|
|
|
logging.error('This script needs to be run in the Github action context.')
|
|
|
|
return 1
|
|
|
|
git_workspace = os.path.join(workspace, 'storage')
|
|
|
|
os.makedirs(git_workspace, exist_ok=True)
|
|
|
|
out_dir = os.path.join(workspace, 'out')
|
|
|
|
os.makedirs(out_dir, exist_ok=True)
|
2020-01-13 23:25:12 +00:00
|
|
|
|
|
|
|
# Build the specified project's fuzzers from the current repo state.
|
2020-01-29 19:03:43 +00:00
|
|
|
if not cifuzz.build_fuzzers(oss_fuzz_project_name, github_repo_name,
|
|
|
|
commit_sha, git_workspace, out_dir):
|
|
|
|
logging.error('Error building fuzzers for project %s.',
|
|
|
|
oss_fuzz_project_name)
|
|
|
|
return 1
|
2020-01-13 23:25:12 +00:00
|
|
|
|
|
|
|
# Run the specified project's fuzzers from the build.
|
2020-01-29 19:03:43 +00:00
|
|
|
run_status, bug_found = cifuzz.run_fuzzers(oss_fuzz_project_name,
|
|
|
|
fuzz_seconds, out_dir)
|
|
|
|
if not run_status:
|
|
|
|
logging.error('Error occured while running fuzzers for project %s.',
|
|
|
|
oss_fuzz_project_name)
|
|
|
|
return 1
|
|
|
|
if bug_found:
|
|
|
|
logging.info('Bug found.')
|
|
|
|
# Return 2 when a bug was found by a fuzzer causing the CI to fail.
|
|
|
|
return 2
|
2020-01-13 23:25:12 +00:00
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|