-
Notifications
You must be signed in to change notification settings - Fork 67
/
e9compile.sh
executable file
·143 lines (130 loc) · 4.13 KB
/
e9compile.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
#!/bin/sh
#
# Copyright (C) National University of Singapore
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
set -e
if [ -t 1 ]
then
RED='\033[31m'
GREEN='\033[32m'
YELLOW='\033[33m'
BOLD='\033[1m'
OFF='\033[0m'
else
RED=
GREEN=
YELLOW=
BOLD=
OFF=
fi
if [ $# -lt 1 ]
then
echo "${YELLOW}usage${OFF}: $0 file.c [CFLAGS ...]" >&2
exit 1
fi
case "$1" in
*.s)
CC=gcc
EXTENSION=s
;;
*.c)
CC=gcc
EXTENSION=c
;;
*.cpp)
CC=g++
EXTENSION=cpp
;;
*)
echo >&2
echo "${RED}error${OFF}: file $1 must have a .c/.cpp/.s extension" >&2
echo >&2
exit 1
;;
esac
BASENAME=`basename $1 .$EXTENSION`
DIRNAME=`dirname $1`
shift
CFLAGS="-fno-stack-protector -fno-builtin -fno-exceptions \
-fpie -O2 -Wno-unused-function -U_FORTIFY_SOURCE \
-mno-mmx -mno-sse -mno-avx -mno-avx2 -mno-avx512f -msoft-float \
-mstringop-strategy=loop -fno-tree-vectorize -fomit-frame-pointer \
-I examples/"
COMPILE="$CC $CFLAGS -c -Wall $@ \"$DIRNAME/$BASENAME.$EXTENSION\""
echo "$COMPILE" | xargs
if ! eval "$COMPILE"
then
echo >&2
echo "${RED}error${OFF}: compilation of (${YELLOW}$BASENAME${OFF}) failed" >&2
echo >&2
exit 1
fi
CFLAGS="-pie -nostdlib \
-Wl,-z -Wl,max-page-size=4096 \
-Wl,-z -Wl,norelro \
-Wl,-z -Wl,stack-size=0 \
-Wl,--export-dynamic \
-Wl,--entry=0x0 \
-Wl,--strip-all"
COMPILE="$CC \"$BASENAME.o\" -o \"$BASENAME\" $CFLAGS"
echo "$COMPILE" | xargs
if ! eval "$COMPILE"
then
echo >&2
echo "${RED}error${OFF}: linking (${YELLOW}$BASENAME${OFF}) failed" >&2
echo >&2
exit 1
fi
if readelf -r "$BASENAME" | head -n 10 | grep -q 'R_X86_64_'
then
echo >&2
echo "${RED}warning${OFF}: the generated file (${YELLOW}$BASENAME${OFF}) contains relocations" >&2
echo >&2
echo "EXPLANATION:" >&2
echo >&2
echo " E9Tool's call instrumentation does not support relocations. These are" >&2
echo " usually caused by global variables that contain pointers, e.g.:" >&2
echo >&2
echo " ${YELLOW}const char *days[] = {\"mon\", \"tue\", \"wed\", \"thu\", \"fri\", \"sat\", \"sun\"};${OFF}" >&2
echo >&2
echo " Here, the global variable days[] is an array-of-pointers which usually" >&2
echo " results in relocations in the instrumentation binary. Currently, E9Tool's" >&2
echo " call instrumentation does not apply relocations, meaning that the final" >&2
echo " patched binary using the instrumentation may crash." >&2
echo >&2
echo " It may be possible to rewrite code to avoid relocations in exchange for" >&2
echo " extra padding, e.g.:" >&2
echo >&2
echo " ${YELLOW}const char days[][4] = {\"mon\", \"tue\", \"wed\", \"thu\", \"fri\", \"sat\", \"sun\"};${OFF}" >&2
echo >&2
fi
if [ "$NO_SIMD_CHECK" = "" ]
then
SIMD=`objdump -d "$BASENAME" | grep -E '%(x|y|z)mm[0-9]' | head -n 10`
if [ ! -z "$SIMD" ]
then
echo >&2
echo "${RED}warning${OFF}: the generated file (${YELLOW}$BASENAME${OFF}) contains SIMD instructions" >&2
echo >&2
echo "EXPLANATION:" >&2
echo >&2
echo " E9Tool's call instrumentation does not save/restore the extended CPU state." >&2
echo " This can lead to subtle bugs if this state is clobbered by the trampoline" >&2
echo " code. This warning can be ignored if you know what you are doing." >&2
echo " (define NO_SIMD_CHECK=1 to disable)." >&2
echo >&2
fi
fi
exit 0