mirror of https://github.com/google/oss-fuzz.git
bzip2: Add bzip2 to oss-fuzz (#1887)
This commit is contained in:
parent
36d4c69e69
commit
c6a08db58c
|
@ -0,0 +1,22 @@
|
|||
# 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 bshas3@gmail.com
|
||||
RUN apt-get update && apt-get install -y make autoconf automake libtool wget
|
||||
RUN wget ftp://sources.redhat.com/pub/bzip2/v102/bzip2-1.0.2.tar.gz
|
||||
COPY build.sh *.c $SRC/
|
||||
WORKDIR $SRC
|
|
@ -0,0 +1,37 @@
|
|||
#!/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.
|
||||
#
|
||||
################################################################################
|
||||
|
||||
tar xzf bzip2-*.tar.gz && rm -f bzip2-*.tar.gz
|
||||
cd bzip2-*
|
||||
SRCL=(blocksort.o huffman.o crctable.o randtable.o compress.o decompress.o bzlib.o)
|
||||
|
||||
for source in ${SRCL[@]}; do
|
||||
name=$(basename $source .o)
|
||||
$CC $CFLAGS -c ${name}.c
|
||||
done
|
||||
rm -f libbz2.a
|
||||
ar cq libbz2.a ${SRCL[@]} && ranlib libbz2.a
|
||||
|
||||
# build fuzzers
|
||||
for file in $SRC/*.c;
|
||||
do
|
||||
name=$(basename $file .c)
|
||||
$CC $CFLAGS -c -I . $SRC/${name}.c -o $OUT/${name}.o
|
||||
$CXX $CXXFLAGS -o $OUT/${name} $OUT/${name}.o -lFuzzingEngine \
|
||||
libbz2.a
|
||||
rm -f $OUT/${name}.o
|
||||
done
|
|
@ -0,0 +1,73 @@
|
|||
/*
|
||||
# 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.
|
||||
#
|
||||
###############################################################################
|
||||
*/
|
||||
|
||||
#include "bzlib.h"
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
extern int BZ2_bzBuffToBuffCompress(char* dest,
|
||||
unsigned int* destLen,
|
||||
char* source,
|
||||
unsigned int sourceLen,
|
||||
int blockSize100k,
|
||||
int verbosity,
|
||||
int workFactor);
|
||||
|
||||
extern int BZ2_bzBuffToBuffDecompress(char* dest,
|
||||
unsigned int* destLen,
|
||||
char* source,
|
||||
unsigned int sourceLen,
|
||||
int small,
|
||||
int verbosity);
|
||||
|
||||
int
|
||||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
||||
{
|
||||
int r;
|
||||
unsigned int nZ, nOut;
|
||||
char *zbuf = malloc(size + 600 + (size / 100));
|
||||
|
||||
r = BZ2_bzBuffToBuffCompress(zbuf, &nZ, (char *)data, size, 9, 0, 30);
|
||||
if (r != BZ_OK) {
|
||||
#ifdef __DEBUG__
|
||||
fprintf(stdout, "Compression error: %d\n", r);
|
||||
#endif
|
||||
free(zbuf);
|
||||
return 0;
|
||||
}
|
||||
|
||||
nOut = size*2;
|
||||
char *outbuf = malloc(nOut);
|
||||
r = BZ2_bzBuffToBuffDecompress(outbuf, &nOut, zbuf, nZ, 0, 0);
|
||||
if (r != BZ_OK) {
|
||||
#ifdef __DEBUG__
|
||||
fprintf(stdout, "Decompression error: %d\n", r);
|
||||
#endif
|
||||
free(zbuf);
|
||||
free(outbuf);
|
||||
return 0;
|
||||
}
|
||||
|
||||
assert(nOut == size);
|
||||
assert(memcmp(data, outbuf, size) == 0);
|
||||
free(zbuf);
|
||||
free(outbuf);
|
||||
return 0;
|
||||
}
|
|
@ -0,0 +1,54 @@
|
|||
/*
|
||||
# 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.
|
||||
#
|
||||
###############################################################################
|
||||
*/
|
||||
|
||||
#include "bzlib.h"
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
extern int BZ2_bzBuffToBuffDecompress(char* dest,
|
||||
unsigned int* destLen,
|
||||
char* source,
|
||||
unsigned int sourceLen,
|
||||
int small,
|
||||
int verbosity);
|
||||
|
||||
int
|
||||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
||||
{
|
||||
int r;
|
||||
unsigned int nZ, nOut;
|
||||
|
||||
nOut = size*2;
|
||||
char *outbuf = malloc(nOut);
|
||||
r = BZ2_bzBuffToBuffDecompress(outbuf, &nOut, (char *)data, size, 0, 0);
|
||||
|
||||
if (r != BZ_OK) {
|
||||
#ifdef __DEBUG__
|
||||
fprintf(stdout, "Decompression error: %d\n", r);
|
||||
#endif
|
||||
free(outbuf);
|
||||
return 0;
|
||||
}
|
||||
|
||||
assert(nOut == size);
|
||||
assert(memcmp(data, outbuf, size) == 0);
|
||||
free(outbuf);
|
||||
return 0;
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
homepage: "http://www.bzip.org/"
|
||||
primary_contact: "jseward@acm.org"
|
||||
auto_ccs:
|
||||
- "bshas3@gmail.com"
|
||||
sanitizers:
|
||||
- address
|
||||
- undefined
|
||||
- memory
|
Loading…
Reference in New Issue