-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sh
executable file
·140 lines (122 loc) · 4.06 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#!/bin/bash
set -e
###
# build the pyFuzzer
###
WORK_DIR=$(readlink -f .)
SCRIPT_DIR=$(readlink -f ./scripts)
cd $WORK_DIR
CPYTHON_VERSION=3.13.0b3
ATHERIS_VERSION=2.3.0
ATHERIS_PATH=$(readlink -f ./atheris)
CPYTHON_PATH=$(readlink -f ./cpython)
CPYTHON_BUILD_PATH=$(readlink -f ./cpython_build)
CPYTHON_BIN_PATH=$(readlink -f ./cpython_bin)
BUILD_PATH=$(readlink -f build)
SRC_PATH=$(readlink -f ./src)
USING_CORE=7
# force to reconfigure and rebuild cpython
BUILD_CPYTHON=0
# force to reconfigure and rebuild fuzzer
FORCE_MODE=0
# COLORs
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m'
while [ "$1" != "" ]; do
case $1 in
-p | --force-cpython)
BUILD_CPYTHON=1
;;
-f | --force)
FORCE_MODE=1
;;
-j | --jobs)
shift
USING_CORE=$1
;;
--clean)
rm -rf $ATHERIS_PATH $BUILD_PATH $CPYTHON_PATH $CPYTHON_BUILD_PATH $CPYTHON_BIN_PATH
exit
;;
*)
echo "Invalid argument $1"
exit
;;
esac
shift
done
# if [ -d $ATHERIS_PATH ]; then
# echo -e "[WARN] using cached atheris"
# else
# echo -e "[INFO] cloning atheris into $ATHERIS_PATH"
# git clone --quiet --depth=1 --branch=$ATHERIS_VERSION https://github.com/google/atheris.git $ATHERIS_PATH
# FORCE_MODE=1
# cd $WORK_DIR
# fi
if [ -d $CPYTHON_PATH ]; then
echo -e "[WARN] using cached cpython"
else
echo -e "[INFO] cloning cpython into $CPYTHON_PATH"
git clone --quiet --depth=1 --branch=v$CPYTHON_VERSION https://github.com/python/cpython.git $CPYTHON_PATH
BUILD_CPYTHON=1
FORCE_MODE=1
cd $WORK_DIR
fi
if [ $BUILD_CPYTHON -eq 0 ]; then
echo -e "${GREEN}[INFO] skipping force building Atheris and CPython$NC"
else
echo -e "${GREEN}[INFO] building Atheris and CPython$NC"
# cd $ATHERIS_PATH
# echo -e "${GREEN}[INFO] patching Atheris$NC"
# cd $ATHERIS_PATH
# git reset --hard HEAD
# git apply $WORK_DIR/atheris-nix-bash.patch
echo -e "${GREEN}[INFO] patching CPython$NC"
cd $CPYTHON_PATH
# redo the patch for nix
git reset --hard HEAD
nix-shell --pure --command "patch -p1 < \$PYTHON_NOLDPATCH" $SCRIPT_DIR/cpython.nix
# export the symbols we need, and add additional CFLAGS and LDFLAGS
python $SCRIPT_DIR/patch_python.py
cd $WORK_DIR
if [ -d $CPYTHON_BUILD_PATH ]; then
rm -rf $CPYTHON_BUILD_PATH
fi
if [ -d $CPYTHON_BIN_PATH ]; then
rm -rf $CPYTHON_BIN_PATH
fi
echo -e "${GREEN}[INFO] building CPython$NC"
mkdir -p $CPYTHON_BUILD_PATH
mkdir -p $CPYTHON_BIN_PATH
cd $CPYTHON_BUILD_PATH
# cannot use --enable-optimizations, otherwise it will be an error about it's too expensive
nix-shell --pure --command "$CPYTHON_PATH/configure ac_cv_func_lchmod=no --enable-shared --prefix=\"$CPYTHON_BIN_PATH\" --with-openssl=\"\$OPENSSL_DEV\" --with-system-expat --with-ensurepip" $SCRIPT_DIR/cpython.nix
nix-shell --pure --command "make altinstall -j$USING_CORE" $SCRIPT_DIR/cpython.nix
fi
echo -e "${GREEN}[INFO] building pyFuzzer$NC"
if [ $FORCE_MODE -eq 1 ]; then
echo -e "${GREEN}[INFO] force building pyFuzzer$NC"
if [ -d $BUILD_PATH ]; then
rm -rf $BUILD_PATH
fi
# -- codegen --
mkdir -p $SRC_PATH/codgen
python $SCRIPT_DIR/codgen/deepcopy_ast.py $(readlink -f $CPYTHON_BIN_PATH/include/python3.*/internal/pycore_ast.h) $SRC_PATH/codgen/deepcopy_gen
python $SCRIPT_DIR/codgen/override_func.py $SRC_PATH/codgen/override_func_gen
fi
mkdir -p $BUILD_PATH
cd $BUILD_PATH
# if exit makefile, skip cmake configure
if [ -f "Makefile" ]; then
echo -e "${GREEN}[INFO] skipping configuring cmake$NC"
else
echo -e "${GREEN}[INFO] configuring cmake$NC"
nix-shell --pure --command "PYTHON_PATH=$CPYTHON_BIN_PATH cmake $SRC_PATH -DCMAKE_BUILD_TYPE=Debug" $SCRIPT_DIR/cpython.nix
fi
nix-shell --pure --command "make -j$USING_CORE" $SCRIPT_DIR/cpython.nix
cd $WORK_DIR
# echo -e "${GREEN}[INFO] patching output ELF files for Atheris$NC"
# # check https://github.com/google/atheris/issues/54
# $SCRIPT_DIR/patched_all_elf.sh
echo -e "${GREEN}[INFO] finished building pyFuzzer$NC"