2016-09-01 23:32:06 +00:00
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
2020-03-10 18:08:01 +00:00
|
|
|
"""Templates for OSS-Fuzz project files."""
|
2016-09-01 23:32:06 +00:00
|
|
|
|
2016-11-29 19:25:33 +00:00
|
|
|
PROJECT_YAML_TEMPLATE = """\
|
|
|
|
homepage: "<your_project_homepage>"
|
2021-11-04 13:30:49 +00:00
|
|
|
language: %(language)s
|
2016-11-29 19:25:33 +00:00
|
|
|
primary_contact: "<primary_contact_email>"
|
2020-12-09 22:49:27 +00:00
|
|
|
main_repo: "https://path/to/main/repo.git"
|
2022-06-08 01:47:51 +00:00
|
|
|
file_github_issue: true
|
2016-09-01 23:32:06 +00:00
|
|
|
"""
|
|
|
|
|
2016-10-05 20:45:12 +00:00
|
|
|
DOCKER_TEMPLATE = """\
|
2020-11-30 19:02:31 +00:00
|
|
|
# Copyright %(year)d Google LLC
|
2016-09-01 23:32:06 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2021-08-19 23:52:44 +00:00
|
|
|
FROM gcr.io/oss-fuzz-base/%(base_builder)s
|
2017-05-02 06:32:10 +00:00
|
|
|
RUN apt-get update && apt-get install -y make autoconf automake libtool
|
2016-11-29 20:55:35 +00:00
|
|
|
RUN git clone --depth 1 <git_url> %(project_name)s # or use other version control
|
2016-11-29 19:22:48 +00:00
|
|
|
WORKDIR %(project_name)s
|
2017-03-23 16:57:16 +00:00
|
|
|
COPY build.sh $SRC/
|
2016-09-01 23:32:06 +00:00
|
|
|
"""
|
|
|
|
|
2021-08-04 13:42:17 +00:00
|
|
|
EXTERNAL_DOCKER_TEMPLATE = """\
|
2021-09-21 00:10:06 +00:00
|
|
|
FROM gcr.io/oss-fuzz-base/%(base_builder)s:v1
|
2021-08-04 13:42:17 +00:00
|
|
|
RUN apt-get update && apt-get install -y make autoconf automake libtool
|
2021-11-03 19:49:42 +00:00
|
|
|
COPY . $SRC/%(project_name)s
|
2021-08-04 13:42:17 +00:00
|
|
|
WORKDIR %(project_name)s
|
2021-08-05 19:01:07 +00:00
|
|
|
COPY .clusterfuzzlite/build.sh $SRC/
|
2021-08-04 13:42:17 +00:00
|
|
|
"""
|
|
|
|
|
2016-10-05 20:45:12 +00:00
|
|
|
BUILD_TEMPLATE = """\
|
2016-09-01 23:32:06 +00:00
|
|
|
#!/bin/bash -eu
|
2020-11-30 19:02:31 +00:00
|
|
|
# Copyright %(year)d Google LLC
|
2016-09-01 23:32:06 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-11-29 19:33:34 +00:00
|
|
|
# build project
|
2016-09-02 16:57:31 +00:00
|
|
|
# e.g.
|
|
|
|
# ./autogen.sh
|
|
|
|
# ./configure
|
2016-11-01 20:23:40 +00:00
|
|
|
# make -j$(nproc) all
|
2016-09-02 16:57:31 +00:00
|
|
|
|
2016-11-29 19:33:34 +00:00
|
|
|
# build fuzzers
|
2016-09-02 16:57:31 +00:00
|
|
|
# e.g.
|
|
|
|
# $CXX $CXXFLAGS -std=c++11 -Iinclude \\
|
2017-03-30 16:48:35 +00:00
|
|
|
# /path/to/name_of_fuzzer.cc -o $OUT/name_of_fuzzer \\
|
2019-05-31 23:46:48 +00:00
|
|
|
# $LIB_FUZZING_ENGINE /path/to/library.a
|
2016-09-01 23:32:06 +00:00
|
|
|
"""
|
2021-08-04 13:42:17 +00:00
|
|
|
|
|
|
|
EXTERNAL_BUILD_TEMPLATE = """\
|
2021-09-30 13:34:02 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
|
2021-08-04 13:42:17 +00:00
|
|
|
# build project
|
|
|
|
# e.g.
|
|
|
|
# ./autogen.sh
|
|
|
|
# ./configure
|
|
|
|
# make -j$(nproc) all
|
|
|
|
|
|
|
|
# build fuzzers
|
|
|
|
# e.g.
|
|
|
|
# $CXX $CXXFLAGS -std=c++11 -Iinclude \\
|
|
|
|
# /path/to/name_of_fuzzer.cc -o $OUT/name_of_fuzzer \\
|
|
|
|
# $LIB_FUZZING_ENGINE /path/to/library.a
|
|
|
|
"""
|
|
|
|
|
2021-11-04 13:30:49 +00:00
|
|
|
EXTERNAL_PROJECT_YAML_TEMPLATE = """\
|
|
|
|
language: %(language)s
|
|
|
|
"""
|
|
|
|
|
2021-08-04 13:42:17 +00:00
|
|
|
TEMPLATES = {
|
|
|
|
'build.sh': BUILD_TEMPLATE,
|
|
|
|
'Dockerfile': DOCKER_TEMPLATE,
|
|
|
|
'project.yaml': PROJECT_YAML_TEMPLATE
|
|
|
|
}
|
|
|
|
|
|
|
|
EXTERNAL_TEMPLATES = {
|
|
|
|
'build.sh': EXTERNAL_BUILD_TEMPLATE,
|
2021-11-04 13:30:49 +00:00
|
|
|
'Dockerfile': EXTERNAL_DOCKER_TEMPLATE,
|
|
|
|
'project.yaml': EXTERNAL_PROJECT_YAML_TEMPLATE
|
2021-08-04 13:42:17 +00:00
|
|
|
}
|