Skip to content

Commit

Permalink
[libwebp] Add fuzz target google#1 (google#1448)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdknsk authored and tmatth committed Oct 22, 2018
1 parent 438f481 commit 5d0ad66
Show file tree
Hide file tree
Showing 6 changed files with 166 additions and 0 deletions.
23 changes: 23 additions & 0 deletions projects/libwebp/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2018 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 pdknsk@gmail.com
RUN apt-get update && apt-get install -y autoconf make libtool wget
RUN git clone https://chromium.googlesource.com/webm/libwebp
RUN wget -q http://cdn.pwmon.org/oss-fuzz/libwebp/fuzz_seed_corpus.zip
COPY build.sh fuzz.dict fuzz_simple_api.cc fuzz_simple_api.options $SRC/
WORKDIR libwebp
38 changes: 38 additions & 0 deletions projects/libwebp/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/bash -eu
# Copyright 2018 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.
#
################################################################################

./autogen.sh
./configure \
--enable-libwebpdemux \
--disable-shared \
--disable-jpeg \
--disable-tiff \
--disable-gif \
--disable-wic
make clean
make -j$(nproc)

cp $SRC/fuzz.dict $OUT

# Simple Decoding API
$CXX $CXXFLAGS -std=c++11 \
-Isrc \
-lFuzzingEngine \
$SRC/fuzz_simple_api.cc -o $OUT/fuzz_simple_api \
src/.libs/libwebp.a
cp $SRC/fuzz_seed_corpus.zip $OUT/fuzz_simple_api_seed_corpus.zip
cp $SRC/fuzz_simple_api.options $OUT
13 changes: 13 additions & 0 deletions projects/libwebp/fuzz.dict
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# https://developers.google.com/speed/webp/docs/riff_container

name="ALPH"
name="ANIM"
name="ANMF"
name="EXIF"
name="ICCP"
name="RIFF"
name="VP8 "
name="VP8L"
name="VP8X"
name="WEBP"
name="XMP "
86 changes: 86 additions & 0 deletions projects/libwebp/fuzz_simple_api.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
#include <stdlib.h>

#include "webp/decode.h"

// Arbitrary limit of 4MB buffer to prevent OOM, timeout, or slow execution.
static const size_t px_limit = 1024 * 1024;

// Reads and sums (up to) 128 spread-out bytes.
static uint8_t hash(const uint8_t* data, size_t size) {
uint8_t value = 0;
size_t incr = size / 128;
if (!incr) incr = 1;
for (size_t i = 0; i < size; i += incr)
value += data[i];
return value;
}

extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
int w, h;
if (!WebPGetInfo(data, size, &w, &h))
return 0;
if ((size_t)w * h > px_limit)
return 0;

const uint8_t value = hash(data, size);
uint8_t* buf = nullptr;

// This is verbose, but covers all available variants.
// For functions that decode into an external buffer, an intentionally
// too small buffer can be given with low probability.
if (value < 0x16) {
buf = WebPDecodeRGBA(data, size, &w, &h);
} else if (value < 0x2b) {
buf = WebPDecodeARGB(data, size, &w, &h);
} else if (value < 0x40) {
buf = WebPDecodeBGRA(data, size, &w, &h);
} else if (value < 0x55) {
buf = WebPDecodeRGB(data, size, &w, &h);
} else if (value < 0x6a) {
buf = WebPDecodeBGR(data, size, &w, &h);
} else if (value < 0x7f) {
uint8_t *u, *v;
int stride, uv_stride;
buf = WebPDecodeYUV(data, size, &w, &h, &u, &v, &stride, &uv_stride);
} else if (value < 0xe8) {
int stride = (value < 0xbe ? 4 : 3) * w;
size_t buf_size = stride * h;
if (value % 0x10 == 0) buf_size--;
uint8_t* ext_buf = (uint8_t*)malloc(buf_size);
if (value < 0x94) {
WebPDecodeRGBAInto(data, size, ext_buf, buf_size, stride);
} else if (value < 0xa9) {
WebPDecodeARGBInto(data, size, ext_buf, buf_size, stride);
} else if (value < 0xbe) {
WebPDecodeBGRAInto(data, size, ext_buf, buf_size, stride);
} else if (value < 0xd3) {
WebPDecodeRGBInto(data, size, ext_buf, buf_size, stride);
} else {
WebPDecodeBGRInto(data, size, ext_buf, buf_size, stride);
}
free(ext_buf);
} else {
size_t luma_size = w * h;
int uv_stride = (w + 1) / 2;
size_t u_size = uv_stride * (h + 1) / 2;
size_t v_size = uv_stride * (h + 1) / 2;
if (value % 0x10 == 0) {
if (size & 1) luma_size--;
if (size & 2) u_size--;
if (size & 4) v_size--;
}
uint8_t* luma_buf = (uint8_t*)malloc(luma_size);
uint8_t* u_buf = (uint8_t*)malloc(u_size);
uint8_t* v_buf = (uint8_t*)malloc(v_size);
WebPDecodeYUVInto(data, size, luma_buf, luma_size, w /* luma_stride */,
u_buf, u_size, uv_stride, v_buf, v_size, uv_stride);
free(luma_buf);
free(u_buf);
free(v_buf);
}

if (buf)
WebPFree(buf);

return 0;
}
2 changes: 2 additions & 0 deletions projects/libwebp/fuzz_simple_api.options
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[libfuzzer]
dict = fuzz.dict
4 changes: 4 additions & 0 deletions projects/libwebp/project.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
homepage: "https://developers.google.com/speed/webp/"
primary_contact: "jzern@google.com"
sanitizers:
- address
- undefined
- memory

0 comments on commit 5d0ad66

Please sign in to comment.