mirror of https://github.com/google/oss-fuzz.git
[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.
This commit is contained in:
parent
0428faf12d
commit
06875f9b36
|
@ -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/
|
|
@ -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
|
|
@ -0,0 +1,6 @@
|
||||||
|
homepage: https://github.com/google/mtail
|
||||||
|
primary_contact: jaq@spacepants.org
|
||||||
|
fuzzing_engines:
|
||||||
|
- libfuzzer
|
||||||
|
sanitizers:
|
||||||
|
- address
|
Loading…
Reference in New Issue