From 116a67cf5d68d28a8485cd10836299b1e852a93e Mon Sep 17 00:00:00 2001 From: Brandon Weeks Date: Wed, 9 Oct 2019 10:22:31 +1100 Subject: [PATCH] [go-attestation] Add project (#2921) --- projects/go-attestation/Dockerfile | 23 +++++++++++++++++++++ projects/go-attestation/build.sh | 31 ++++++++++++++++++++++++++++ projects/go-attestation/project.yaml | 9 ++++++++ 3 files changed, 63 insertions(+) create mode 100644 projects/go-attestation/Dockerfile create mode 100755 projects/go-attestation/build.sh create mode 100644 projects/go-attestation/project.yaml diff --git a/projects/go-attestation/Dockerfile b/projects/go-attestation/Dockerfile new file mode 100644 index 000000000..ff24e92c1 --- /dev/null +++ b/projects/go-attestation/Dockerfile @@ -0,0 +1,23 @@ +# Copyright 2019 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. +# +################################################################################ + +FROM gcr.io/oss-fuzz-base/base-builder +MAINTAINER bweeks@google.com + +RUN go get -u -d github.com/google/go-attestation/... + +WORKDIR go-attestation +COPY build.sh $SRC/ diff --git a/projects/go-attestation/build.sh b/projects/go-attestation/build.sh new file mode 100755 index 000000000..bf1eb52e2 --- /dev/null +++ b/projects/go-attestation/build.sh @@ -0,0 +1,31 @@ +#!/bin/bash -eu +# Copyright 2019 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. +# +################################################################################ + +# Based on the function from oss-fuzz/projects/golang/build.sh script. +function compile_fuzzer { + package=$1 + function=$2 + fuzzer=$3 + + # Instrument all Go files relevant to this fuzzer + go-fuzz-build -libfuzzer -func $function -o $fuzzer.a $package + + # Instrumented, compiled Go ($fuzzer.a) + fuzzing engine = fuzzer binary + $CXX $CXXFLAGS $LIB_FUZZING_ENGINE $fuzzer.a -lpthread -o $OUT/$fuzzer +} + +compile_fuzzer github.com/google/go-attestation/attest FuzzParseEventLog parse_event_log_fuzzer \ No newline at end of file diff --git a/projects/go-attestation/project.yaml b/projects/go-attestation/project.yaml new file mode 100644 index 000000000..ac3f56bf2 --- /dev/null +++ b/projects/go-attestation/project.yaml @@ -0,0 +1,9 @@ +homepage: "https://github.com/google/go-attestation" +primary_contact: "bweeks@google.com" +auto_ccs: + - "ericchiang@google.com" + - "jsonp@google.com" +fuzzing_engines: + - libfuzzer +sanitizers: + - address