2018-06-01 16:48:06 +00:00
|
|
|
#!/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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
#add next branch
|
2019-03-18 19:34:47 +00:00
|
|
|
for branch in v4 next
|
2018-06-01 16:48:06 +00:00
|
|
|
do
|
|
|
|
cd capstone$branch
|
|
|
|
# build project
|
|
|
|
mkdir build
|
|
|
|
# does not seem to work in source directory
|
|
|
|
# + make.sh overwrites CFLAGS
|
|
|
|
cd build
|
|
|
|
cmake -DCAPSTONE_BUILD_SHARED=0 ..
|
2021-03-22 01:56:42 +00:00
|
|
|
make
|
2018-06-01 16:48:06 +00:00
|
|
|
|
2018-06-25 13:54:34 +00:00
|
|
|
cd $SRC/capstone$branch/bindings/python
|
2018-06-22 14:55:13 +00:00
|
|
|
#better debug info
|
|
|
|
sed -i -e 's/#print/print/' capstone/__init__.py
|
|
|
|
(
|
|
|
|
export CFLAGS=""
|
2021-03-22 01:56:53 +00:00
|
|
|
export AFL_NOOPT=1
|
2018-06-18 14:24:19 +00:00
|
|
|
python setup.py install
|
2018-06-22 14:55:13 +00:00
|
|
|
)
|
2018-06-25 13:54:34 +00:00
|
|
|
cd $SRC/capstone$branch/suite
|
2018-06-18 14:24:19 +00:00
|
|
|
mkdir fuzz/corpus
|
|
|
|
find MC/ -name *.cs | ./test_corpus.py
|
|
|
|
cd fuzz
|
2018-06-26 13:34:00 +00:00
|
|
|
zip -r fuzz_disasm"$branch"_seed_corpus.zip corpus/
|
|
|
|
cp fuzz_disasm"$branch"_seed_corpus.zip $OUT/
|
2018-06-01 16:48:06 +00:00
|
|
|
|
|
|
|
# export other associated stuff
|
2018-06-12 19:41:58 +00:00
|
|
|
cp fuzz_disasm.options $OUT/fuzz_disasm$branch.options
|
2018-06-01 16:48:06 +00:00
|
|
|
|
2019-04-18 15:16:58 +00:00
|
|
|
cd ../../build
|
2018-06-01 16:48:06 +00:00
|
|
|
# build fuzz target
|
2019-04-18 15:16:58 +00:00
|
|
|
FUZZO=CMakeFiles/fuzz_disasm.dir/suite/fuzz/fuzz_disasm.c.o
|
|
|
|
if [ -f CMakeFiles/fuzz_disasm.dir/suite/fuzz/platform.c.o ]; then
|
|
|
|
FUZZO="$FUZZO CMakeFiles/fuzz_disasm.dir/suite/fuzz/platform.c.o"
|
|
|
|
fi
|
2019-05-01 15:09:55 +00:00
|
|
|
$CXX $CXXFLAGS $FUZZO -o $OUT/fuzz_disasm$branch libcapstone.a $LIB_FUZZING_ENGINE
|
2018-06-01 16:48:06 +00:00
|
|
|
|
2019-04-18 15:16:58 +00:00
|
|
|
cd ../../
|
2018-06-01 16:48:06 +00:00
|
|
|
done
|