From 06875f9b360d3c5698f36af1af27116acc5bbaf9 Mon Sep 17 00:00:00 2001 From: Jamie Wilkinson Date: Thu, 19 Dec 2019 04:55:47 +1100 Subject: [PATCH] [mtail] Fuzz the github.com/google/mtail project. (#3136) * Add the github.com/google/mtail project. * [mtail] Generate the seed corpus in the build script. * [mtail] Specify the go-only fuzzing engine and sanitizers. --- projects/mtail/Dockerfile | 22 ++++++++++++++++++++++ projects/mtail/build.sh | 26 ++++++++++++++++++++++++++ projects/mtail/project.yaml | 6 ++++++ 3 files changed, 54 insertions(+) create mode 100644 projects/mtail/Dockerfile create mode 100755 projects/mtail/build.sh create mode 100644 projects/mtail/project.yaml diff --git a/projects/mtail/Dockerfile b/projects/mtail/Dockerfile new file mode 100644 index 000000000..42b94f5f5 --- /dev/null +++ b/projects/mtail/Dockerfile @@ -0,0 +1,22 @@ +# 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 jaq@spacepants.org +RUN mkdir -p github.com/google +RUN git clone --depth 1 https://github.com/google/mtail github.com/google/mtail +WORKDIR github.com/google/mtail +COPY build.sh $SRC/ diff --git a/projects/mtail/build.sh b/projects/mtail/build.sh new file mode 100755 index 000000000..58c6cf7f3 --- /dev/null +++ b/projects/mtail/build.sh @@ -0,0 +1,26 @@ +#!/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. +# +################################################################################ + +# We've used git checkout, not go get to fetch the source so set up the GOPATH to find our source. +export GOPATH=$GOPATH:/ + +# go-fuzz-build doesn't like modules until https://github.com/dvyukov/go-fuzz/issues/195 is fixed +# fetch and vendor all the dependencies so go-fuzz-build can find them +make GO111MODULE=off --debug install_deps +go mod vendor + +make GO111MODULE=off --debug $OUT/vm-fuzzer.dict $OUT/vm-fuzzer_seed_corpus.zip $OUT/vm-fuzzer diff --git a/projects/mtail/project.yaml b/projects/mtail/project.yaml new file mode 100644 index 000000000..3878cca55 --- /dev/null +++ b/projects/mtail/project.yaml @@ -0,0 +1,6 @@ +homepage: https://github.com/google/mtail +primary_contact: jaq@spacepants.org +fuzzing_engines: + - libfuzzer +sanitizers: + - address