[golang-protobuf] Add Dockerfile and build.sh. (#2942)

This commit is contained in:
Damien Neil 2019-10-11 11:40:23 -07:00 committed by Max Moroz
parent 54cc1468a3
commit 7b8279e634
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# 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 dneil@google.com
ENV GO111MODULE="on"
ENV GOFUZZ111MODULE="on"
RUN go get google.golang.org/protobuf/proto
RUN git clone https://go.googlesource.com/protobuf $SRC/protobuf
COPY build.sh $SRC/
WORKDIR $SRC/protobuf

View File

@ -0,0 +1,17 @@
function compile_fuzzer {
path=$1
function=$2
fuzzer=$3
# Instrument all Go files relevant to this fuzzer
go-fuzz-build -libfuzzer -func $function -o $fuzzer.a $path
# Instrumented, compiled Go ($fuzzer.a) + fuzzing engine = fuzzer binary
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE $fuzzer.a -lpthread -o $OUT/$fuzzer
}
for x in internal/fuzz/*; do
if [ -d $x ]; then
compile_fuzzer ./$x Fuzz $(basename $x)_fuzzer
fi
done