forked from angr/angr-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·324 lines (282 loc) · 7.98 KB
/
setup.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
#!/bin/bash -e
SCRIPT_DIR=$(dirname $0)
cd $SCRIPT_DIR
function usage
{
echo "Usage: $0 [-i] [-e ENV] [-p ENV] [-r REMOTE] [EXTRA_REPOS]"
echo
echo " -i install required packages"
echo " -C don't do the actual installation (quit after cloning)"
echo " -w use pre-built packages where available"
echo " -v verbose (don't redirect installation logging)"
echo " -e ENV create a cpython environment ENV"
echo " -E ENV re-create a cpython environment ENV"
echo " -p ENV create a pypy environment ENV"
echo " -P ENV re-create a pypy environment ENV"
echo " -r REMOTE use a different remote base (default: https://github.com/angr/)"
echo " Can be specified multiple times."
echo " -b BRANCH Check out a given branch across all the repositories."
echo " -D Ignore the default repo list."
echo " EXTRA_REPOS any extra repositories you want to clone from the angr org."
echo
echo "This script clones all the angr repositories and sets up an angr"
echo "development environment."
exit 1
}
DEBS=${DEBS-virtualenvwrapper python2.7-dev build-essential libxml2-dev libxslt1-dev git libffi-dev cmake libreadline-dev libtool debootstrap debian-archive-keyring libglib2.0-dev libpixman-1-dev}
REPOS=${REPOS-ana idalink cooldict mulpyplexer capstone unicorn monkeyhex superstruct archinfo vex pyvex cle claripy simuvex angr angr-management angrop angr-doc binaries}
ORIGIN_REMOTE=$(git remote -v | grep origin | head -n1 | awk '{print $2}' | sed -e "s/\/angr-dev.*//")
REMOTES=${REMOTES-${ORIGIN_REMOTE/\/github.com/\/git:@github.com} https://git:@github.com/zardus https://git:@github.com/rhelmot https://git:@github.com/salls}
INSTALL_REQS=0
ANGR_VENV=
USE_PYPY=
RMVENV=0
INSTALL=1
WHEELS=0
VERBOSE=0
BRANCH=
while getopts "iCwDve:E:p:P:r:b:h" opt
do
case $opt in
i)
INSTALL_REQS=1
;;
v)
VERBOSE=1
;;
e)
ANGR_VENV=$OPTARG
USE_PYPY=0
;;
E)
ANGR_VENV=$OPTARG
USE_PYPY=0
RMVENV=1
;;
p)
ANGR_VENV=$OPTARG
USE_PYPY=1
;;
P)
ANGR_VENV=$OPTARG
USE_PYPY=1
RMVENV=1
;;
b)
BRANCH=$OPTARG
;;
r)
REMOTES="$OPTARG $REMOTES"
;;
C)
INSTALL=0
;;
w)
WHEELS=1
;;
D)
REPOS=""
;;
\?)
usage
;;
h)
usage
;;
esac
done
if [ $WHEELS -eq 1 ]
then
REPOS="$REPOS wheels"
REPOS=${REPOS// unicorn/}
REPOS=${REPOS// capstone/}
fi
EXTRA_REPOS=${@:$OPTIND:$OPTIND+100}
REPOS="$REPOS $EXTRA_REPOS"
if [ $VERBOSE -eq 1 ]
then
OUTFILE=/dev/stdout
ERRFILE=/dev/stderr
else
OUTFILE=/tmp/pip-$$
ERRFILE=/tmp/pip-$$
fi
function info
{
echo "$(tput setaf 4 2>/dev/null)[+] $@$(tput sgr0 2>/dev/null)"
}
function warning
{
echo "$(tput setaf 3 2>/dev/null)[!] $@$(tput sgr0 2>/dev/null)"
}
function debug
{
echo "$(tput setaf 6 2>/dev/null)[-] $@$(tput sgr0 2>/dev/null)"
}
function error
{
echo "$(tput setaf 1 2>/dev/null)[!!] $@$(tput sgr0 2>/dev/null)" >&2
exit 1
}
if [ "$INSTALL_REQS" -eq 1 ]
then
info Installing dependencies...
[ -e /etc/debian_version ] && sudo apt-get install -y $DEBS
[ ! -e /etc/debian_version ] && error "We don't know which dependencies to install for this sytem.\nPlease install the equivalents of these debian packages: $DEBS."
fi
info "Checking dependencies..."
[ -e /etc/debian_version -a $(dpkg --get-selections $DEBS | wc -l) -ne $(echo $DEBS | wc -w) ] && echo "Please install the following packages: $DEBS" && exit 1
[ ! -e /etc/debian_version ] && echo -e "WARNING: make sure you have dependencies installed.\nThe debian equivalents are: $DEBS.\nPress enter to continue." && read a
set +e
source /etc/bash_completion.d/virtualenvwrapper
set -e
if [ -n "$ANGR_VENV" ]
then
set +e
if [ -n "$VIRTUAL_ENV" ]
then
# We can't just deactivate, since those functions are in the parent shell.
# So, we do some hackish stuff.
PATH=${PATH/$VIRTUAL_ENV\/bin:/}
unset VIRTUAL_ENV
fi
if [ "$RMVENV" -eq 1 ]
then
info "Removing existing virtual environment $ANGR_VENV..."
rmvirtualenv $ANGR_VENV || error "Failed to remote virtualenv $ANGR_VENV."
elif lsvirtualenv | grep -q "^$ANGR_VENV$"
then
error "Virtualenv $ANGR_VENV already exists. Use -E instead of -e if you want to re-create the environment."
fi
if [ "$USE_PYPY" -eq 1 ]
then
./pypy_venv.sh $ANGR_VENV
else
mkvirtualenv --python=$(which python2) $ANGR_VENV
fi
set -e
workon $ANGR_VENV || error "Unable to activate the virtual environment."
fi
function try_remote
{
URL=$1
debug "Trying to clone from $URL"
rm -f /tmp/clone-$$
git clone $URL >> /tmp/clone-$$ 2>> /tmp/clone-$$
r=$?
if grep -q -E "(ssh_exchange_identification: read: Connection reset by peer|ssh_exchange_identification: Connection closed by remote host)" /tmp/clone-$$
then
warning "Too many concurrent connections to the server. Retrying after sleep."
sleep $[$RANDOM % 5]
try_remote $URL
return $?
else
[ $r -eq 0 ] && rm -f /tmp/clone-$$
return $r
fi
}
function clone_repo
{
NAME=$1
if [ -e $NAME ]
then
info "Skipping $NAME -- already cloned. Use ./git_all.sh pull for update."
return 0
fi
info "Cloning repo $NAME."
for r in $REMOTES
do
URL="$r/$NAME"
try_remote $URL && debug "Success!" && break
done
if [ ! -e $NAME ]
then
error "Failed to clone $NAME. Error was:"
cat /tmp/clone-$$
rm -f /tmp/clone-$$
return 1
fi
return 0
}
function install_wheels
{
#LATEST_Z3=$(ls -tr wheels/angr_only_z3_custom-*)
#echo "Installing $LATEST_Z3..." >> $OUTFILE 2>> $ERRFILE
#pip install $LATEST_Z3 >> $OUTFILE 2>> $ERRFILE
LATEST_VEX=$(ls -tr wheels/vex-*)
echo "Extracting $LATEST_VEX..." >> $OUTFILE 2>> $ERRFILE
tar xvzf $LATEST_VEX >> $OUTFILE 2>> $ERRFILE
touch vex/*/*.o vex/libvex.a
#LATEST_QEMU=$(ls -tr wheels/shellphish_qemu-*)
#echo "Installing $LATEST_QEMU" >> $OUTFILE 2>> $ERRFILE
#pip install $LATEST_QEMU >> $OUTFILE 2>> $ERRFILE
#LATEST_AFL=$(ls -tr wheels/shellphish_afl-*)
#echo "Installing $LATEST_AFL" >> $OUTFILE 2>> $ERRFILE
#pip install $LATEST_AFL >> $OUTFILE 2>> $ERRFILE
}
info "Cloning angr components!"
for r in $REPOS
do
clone_repo $r || exit 1
[ -e "$NAME/setup.py" ] && TO_INSTALL="$TO_INSTALL $NAME"
done
if [ -n "$BRANCH" ]
then
info "Checking out branch $BRANCH."
./git_all.sh checkout $BRANCH
fi
if [ $INSTALL -eq 1 ]
then
if [ -z "$VIRTUAL_ENV" ]
then
warning "You are installing angr outside of a virtualenv. This is NOT"
warning "RECOMMENDED. Activate a virtualenv before running this script"
warning "or use one of the following options: -e -E -p -P. Please type"
warning "\"I know this is a bad idea.\" (without quotes) and press enter"
warning "to continue."
read ans
if [ "$ans" != "I know this is a bad idea." ]
then
exit 1
fi
fi
if [ $VERBOSE -eq 1 ]
then
info "Installing python packages!"
else
info "Installing python packages (logging to $OUTFILE)!"
fi
if [ $WHEELS -eq 1 ]
then
install_wheels
PIP_OPTIONS="$PIP_OPTIONS --find-links=$PWD/wheels"
fi
# remove angr-management if running in pypy or in travis
(python --version 2>&1| grep -q PyPy) && TO_INSTALL=${TO_INSTALL// angr-management/}
[ -n "$TRAVIS" ] && TO_INSTALL=${TO_INSTALL// angr-management/}
if pip install $PIP_OPTIONS -v ${TO_INSTALL// / -e } >> $OUTFILE 2>> $ERRFILE
then
info "Success!"
[ $VERBOSE -eq 1 ] || rm -f $OUTFILE
else
error "Something failed to install. Check $OUTFILE for details, or read it here:"
cat $OUTFILE
exit 1
fi
info "Installing some other helpful stuff (logging to $OUTFILE)."
if pip install ipython pylint ipdb nose nose-timer coverage >> $OUTFILE 2>> $ERRFILE
then
info "Success!"
[ $VERBOSE -eq 1 ] || rm -f $OUTFILE
else
error "Something failed to install. Check $OUTFILE for details, or read it here:"
cat $OUTFILE
exit 1
fi
fi
echo ''
info "All done! Execute \"workon $ANGR_VENV\" to use your new angr virtual"
info "environment. Any changes you make in the repositories will reflect"
info "immediately in the virtual environment, with the exception of things"
info "requiring compilation (i.e., pyvex). For those, you will need to rerun"
info "the install after changes (i.e., \"pip install -I -e pyvex\")."