mirror of https://github.com/google/oss-fuzz.git
107 lines
3.5 KiB
Bash
Executable File
107 lines
3.5 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
# Copyright 2021 Google LLC
|
|
#
|
|
# 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.
|
|
#
|
|
################################################################################
|
|
|
|
# compile latest go from git
|
|
(
|
|
cd $SRC/goroot/src
|
|
(
|
|
# temporary workaround for https://github.com/golang/go/issues/53190
|
|
cd runtime
|
|
grep nosplit libfuzzer.go || sed -i 's/func libfuzzerTraceConstCmp/\n\/\/go:nosplit\nfunc libfuzzerTraceConstCmp/' libfuzzer.go
|
|
)
|
|
./make.bash
|
|
)
|
|
rm -Rf /root/.go/
|
|
mv $SRC/goroot /root/.go
|
|
|
|
compile_package () {
|
|
pkg=$1
|
|
pkg_flat=`echo $pkg | sed 's/\//_/g'`
|
|
args=`cat $SRC/ngolo-fuzzing/std/args.txt | grep "^$pkg_flat " | cut -d" " -f2-`
|
|
./ngolo-fuzzing $args $pkg fuzz_ng_$pkg_flat
|
|
# applies special python patcher if any
|
|
ls $SRC/ngolo-fuzzing/std/$pkg_flat.py && (
|
|
python $SRC/ngolo-fuzzing/std/$pkg_flat.py fuzz_ng_$pkg_flat/fuzz_ng.go > fuzz_ng_$pkg_flat/fuzz_ngp.go
|
|
mv fuzz_ng_$pkg_flat/fuzz_ngp.go fuzz_ng_$pkg_flat/fuzz_ng.go
|
|
)
|
|
(
|
|
cd fuzz_ng_$pkg_flat
|
|
$SRC/LPM/external.protobuf/bin/protoc --go_out=./ ngolofuzz.proto
|
|
mkdir cpp
|
|
$SRC/LPM/external.protobuf/bin/protoc --cpp_out=./cpp ngolofuzz.proto
|
|
$CXX -DNDEBUG -stdlib=libc++ -c -I . -I $SRC/LPM/external.protobuf/include cpp/ngolofuzz.pb.cc
|
|
$CXX $CXXFLAGS -c -Icpp -I $SRC/libprotobuf-mutator/ -I $SRC/LPM/external.protobuf/include $SRC/ngolo-fuzzing/lpm/ngolofuzz.cc
|
|
)
|
|
if [ "$SANITIZER" = "coverage" ]
|
|
then
|
|
(
|
|
if [[ `echo $pkg | grep runtime | wc -l` == '1' ]]; then
|
|
continue
|
|
fi
|
|
cd fuzz_ng_$pkg_flat
|
|
compile_go_fuzzer . FuzzNG_unsure fuzz_ngo_$pkg_flat
|
|
)
|
|
else
|
|
(
|
|
cd fuzz_ng_$pkg_flat
|
|
compile_go_fuzzer . FuzzNG_unsure fuzz_ngo_$pkg_flat
|
|
)
|
|
./go114-fuzz-build/go114-fuzz-build -func FuzzNG_valid -o fuzz_ng_$pkg_flat.a ./fuzz_ng_$pkg_flat
|
|
|
|
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE fuzz_ng_$pkg_flat/ngolofuzz.pb.o fuzz_ng_$pkg_flat//ngolofuzz.o fuzz_ng_$pkg_flat.a $SRC/LPM/src/libfuzzer/libprotobuf-mutator-libfuzzer.a $SRC/LPM/src/libprotobuf-mutator.a $SRC/LPM/external.protobuf/lib/libprotobuf.a -o $OUT/fuzz_ng_$pkg_flat
|
|
fi
|
|
}
|
|
|
|
# in $SRC/ngolo-fuzzing
|
|
go build
|
|
|
|
(
|
|
cd go114-fuzz-build
|
|
go build
|
|
)
|
|
|
|
# maybe we should git clone --depth 1 https://github.com/golang/go.git
|
|
find /root/.go/src/ -type d | cut -d/ -f5- | while read pkg; do
|
|
if [[ `ls /root/.go/src/$pkg/*.go | wc -l` == '0' ]]; then
|
|
continue
|
|
fi
|
|
if [[ `echo $pkg | grep internal | wc -l` == '1' ]]; then
|
|
continue
|
|
fi
|
|
if [[ `echo $pkg | grep vendor | wc -l` == '1' ]]; then
|
|
continue
|
|
fi
|
|
if [[ `echo $pkg | grep testdata | wc -l` == '1' ]]; then
|
|
continue
|
|
fi
|
|
if compile_package $pkg; then
|
|
echo $pkg >> ok.txt
|
|
else
|
|
echo "Failed for $pkg"
|
|
# hard fail if the package is meant to be supported
|
|
grep ^$pkg$ $SRC/ngolo-fuzzing/std/supported.txt && exit 1
|
|
echo $pkg >> ko.txt
|
|
fi
|
|
|
|
done
|
|
|
|
echo "Failed packages:"
|
|
cat ko.txt
|
|
|
|
echo "Succesful packages:"
|
|
cat ok.txt
|