From f0b42c3d7b01e62a54118d298e6669e98b59f50a Mon Sep 17 00:00:00 2001 From: Robert Obryk Date: Wed, 29 Mar 2017 05:41:07 +0200 Subject: [PATCH] Add a new project: Guetzli. (#480) The undefined fuzzer is disabled for now, because we have one piece of undefined behaviour that gets nearly always hit. I've ran the fuzzer for ~tens of minutes, and had no issues reported. --- projects/guetzli/Dockerfile | 27 +++++++++++++++++++++++++++ projects/guetzli/build.sh | 22 ++++++++++++++++++++++ projects/guetzli/project.yaml | 4 ++++ 3 files changed, 53 insertions(+) create mode 100644 projects/guetzli/Dockerfile create mode 100755 projects/guetzli/build.sh create mode 100644 projects/guetzli/project.yaml diff --git a/projects/guetzli/Dockerfile b/projects/guetzli/Dockerfile new file mode 100644 index 000000000..e65aceb58 --- /dev/null +++ b/projects/guetzli/Dockerfile @@ -0,0 +1,27 @@ +# 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. +# +################################################################################ + +FROM gcr.io/oss-fuzz-base/base-builder +MAINTAINER robryk@google.com +RUN apt-get install -y make autoconf automake libtool libpng-dev pkg-config curl + +RUN mkdir afl-testcases +RUN cd afl-testcases/ && curl http://lcamtuf.coredump.cx/afl/demo/afl_testcases.tgz | tar -xz +RUN zip guetzli_fuzzer_seed_corpus.zip afl-testcases/jpeg/full/images/* afl-testcases/jpeg_turbo/full/images/* $SRC/libjpeg-turbo/testimages/ + +RUN git clone --depth=1 https://github.com/google/guetzli guetzli +WORKDIR guetzli +COPY build.sh $SRC/ diff --git a/projects/guetzli/build.sh b/projects/guetzli/build.sh new file mode 100755 index 000000000..d45917d15 --- /dev/null +++ b/projects/guetzli/build.sh @@ -0,0 +1,22 @@ +#!/bin/bash -eu +# 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. +# +################################################################################ + +make guetzli_static +$CXX $CXXFLAGS -std=c++11 -I. fuzz_target.cc -lFuzzingEngine \ + -o /out/guetzli_fuzzer bin/Release/libguetzli_static.a + +cp $SRC/guetzli_fuzzer_seed_corpus.zip $OUT/ diff --git a/projects/guetzli/project.yaml b/projects/guetzli/project.yaml new file mode 100644 index 000000000..06527e07d --- /dev/null +++ b/projects/guetzli/project.yaml @@ -0,0 +1,4 @@ +homepage: "https://github.com/google/guetzli" +primary_contact: "robryk@google.com" +sanitizers: +- address