-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
432 lines (370 loc) · 14.6 KB
/
Makefile
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
.PHONY: pass analysis echo tg_ir audit audit-report \
transfer div-before-mul shared-var-get-shared shared-var-get-invoke unsafe-math reentrancy round variable struct-member admin-func public-func tautology lock-callback non-callback-private non-private-callback incorrect-json-type complex-loop \
clean clean_pass clean_demo clean_tg clean_tmp lint lint-diff lint-fix
# SHELL := /bin/bash # Use bash syntax
export
# Config Env
TOP = $(shell pwd)
ifeq ($(shell uname -s), Linux)
LLVM_DIR = $(shell llvm-config-15 --obj-root)
else ifeq ($(shell uname -s), Darwin)
LLVM_DIR = $(shell brew --prefix llvm@15)
else
LLVM_DIR = $(shell llvm-config --obj-root)
endif
# Binaries
LLVM_CONFIG = ${LLVM_DIR}/bin/llvm-config
LLVM_CLANG = ${LLVM_DIR}/bin/clang
LLVM_OPT = ${LLVM_DIR}/bin/opt
# Flags
INCLUDE = -I${TOP}/detectors
CXXFLAGS = $(shell $(LLVM_CONFIG) --cxxflags) ${INCLUDE} -fno-rtti -fPIC
LDFLAGS = $(shell $(LLVM_CONFIG) --ldflags) -shared
OPTFLAGS = -enable-new-pm=0
ifeq ($(shell uname -s), Darwin)
LDFLAGS += -undefined dynamic_lookup
endif
ifndef NEAR_TG_DIR
NEAR_TG_DIR=${NEAR_SRC_DIR}
endif
ifndef TMP_DIR
TMP_DIR=${TOP}/.tmp/
endif
export TG_MANIFESTS = $(shell find ${NEAR_SRC_DIR} -name "Cargo.toml" -not -path "**/node_modules/*")
echo:
@echo "NEAR_SRC_DIR = ${NEAR_SRC_DIR}"
@echo "NEAR_TG_DIR = ${NEAR_TG_DIR}"
@echo "TG_MANIFESTS = ${TG_MANIFESTS}"
pass:
make -C detectors pass
tg_ir:
-@for i in ${TG_MANIFESTS} ; do \
cargo rustc --target wasm32-unknown-unknown --manifest-path $$i -- -Awarnings --emit=llvm-ir,llvm-bc ; \
done
@mkdir -p ${TMP_DIR}
@make -C ${TOP} get-packages-name
@cat ${TMP_DIR}/.packages-name.tmp | xargs -I {} find ${NEAR_TG_DIR} -name '{}*.bc' > ${TMP_DIR}/.bitcodes.tmp
get-packages-name:
@python3 ./utils/getPackagesName.py
analysis: unsafe-math round reentrancy div-before-mul transfer timestamp promise-result upgrade-func self-transfer prepaid-gas unhandled-promise yocto-attach complex-loop \
tautology unused-ret inconsistency lock-callback non-callback-private non-private-callback incorrect-json-type
callback: tg_ir
@rm -f ${TMP_DIR}/.callback.tmp
@make -C detectors callback.so
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/callback.so -callback {} -o /dev/null
ext-call-trait: tg_ir
@rm -f ${TMP_DIR}/.ext-call.tmp
@make -C detectors ext_call_trait.so
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/ext_call_trait.so -ext-call-trait {} -o /dev/null
ext-call: tg_ir ext-call-trait
@make -C detectors ext_call.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/ext_call.so -ext-call {} -o /dev/null
complex-loop: tg_ir
rm -f ${TMP_DIR}/[email protected]
make -C detectors complex_loop.so
if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/complex_loop.so -complex-loop {} -o /dev/null
unsafe-math: tg_ir
@rm -f ${TMP_DIR}/[email protected] ${TMP_DIR}/[email protected]
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/unsafe-math-toml.py ${NEAR_SRC_DIR}
@make -C detectors unsafe_math.so
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/unsafe_math.so -unsafe-math {} -o /dev/null
round: tg_ir
@make -C detectors round.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/round.so -round {} -o /dev/null
struct-member: tg_ir find-struct
@make -C detectors struct_member.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/struct_member.so -struct-member {} -o /dev/null
reentrancy: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors reentrancy.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/reentrancy.so -reentrancy {} -o /dev/null
div-before-mul: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors div_before_mul.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/div_before_mul.so -div-before-mul {} -o /dev/null
transfer: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors transfer.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/transfer.so -transfer {} -o /dev/null
timestamp: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors timestamp.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/timestamp.so -timestamp {} -o /dev/null
promise-result: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors promise_result.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/promise_result.so -promise-result {} -o /dev/null
upgrade-func: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors upgrade_func.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/upgrade_func.so -upgrade-func {} -o /dev/null
self-transfer: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors self_transfer.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/self_transfer.so -self-transfer {} -o /dev/null
prepaid-gas: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors prepaid_gas.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/prepaid_gas.so -prepaid-gas {} -o /dev/null
all-call: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors all_call.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/all_call.so -all-call {} -o /dev/null
unhandled-promise: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors unhandled_promise.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/unhandled_promise.so -unhandled-promise {} -o /dev/null
yocto-attach: tg_ir callback
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors yocto_attach.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/yocto_attach.so -yocto-attach {} -o /dev/null
storage-gas: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors storage_gas.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/storage_gas.so -storage-gas {} -o /dev/null
unregistered-receiver: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors unregistered_receiver.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/unregistered_receiver.so -unregistered-receiver {} -o /dev/null
unsaved-changes: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors unsaved_changes.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/unsaved_changes.so -unsaved-changes {} -o /dev/null
nep%-interface: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors nep_interface.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@echo "\e[33m[*] Checking interfaces of NEP-$*\e[0m" #]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/nep_interface.so -nep-interface --nep-id $* {} -o /dev/null
unclaimed-storage-fee: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors unclaimed_storage_fee.so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/unclaimed_storage_fee.so -unclaimed-storage-fee {} -o /dev/null
nft-approval-check: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors $(subst -,_,$@).so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/$(subst -,_,$@).so -$@ {} -o /dev/null
nft-owner-check: tg_ir
@rm -f ${TMP_DIR}/[email protected]
@make -C detectors $(subst -,_,$@).so
@if test $(shell cat ${TMP_DIR}/.bitcodes.tmp | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@cat ${TMP_DIR}/.bitcodes.tmp | xargs -I {} $(LLVM_OPT) ${OPTFLAGS} -load detectors/$(subst -,_,$@).so -$@ {} -o /dev/null
tautology:
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/tautology.py ${NEAR_SRC_DIR}
unused-ret: all-call
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/unused-ret.py ${NEAR_SRC_DIR}
inconsistency:
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/inconsistency.py ${NEAR_SRC_DIR}
lock-callback: callback
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/lock-callback.py ${NEAR_SRC_DIR}
non-callback-private: callback
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/non-callback-private.py ${NEAR_SRC_DIR}
non-private-callback: callback
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/non-private-callback.py ${NEAR_SRC_DIR}
incorrect-json-type: find-struct
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/incorrect-json-type.py ${NEAR_SRC_DIR}
public-interface:
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/public-interface.py ${NEAR_SRC_DIR}
dup-collection-id:
@rm -f ${TMP_DIR}/[email protected]
@if test $(shell find ${NEAR_SRC_DIR}// -name '*.rs' | wc -c) -gt 0 ; then \
figlet $@ ; \
else \
echo -e "\e[31m[!] Source not found\e[0m" ; \
fi # ]]
@python3 ./detectors/dup-collection-id.py ${NEAR_SRC_DIR}
find-struct: # provide .struct.tmp and .struct-member.tmp
@python3 ./utils/findStruct.py ${NEAR_SRC_DIR}
audit: promise-result reentrancy transfer timestamp div-before-mul unsafe-math round find-struct upgrade-func self-transfer prepaid-gas unhandled-promise yocto-attach complex-loop \
tautology unused-ret inconsistency lock-callback non-callback-private non-private-callback incorrect-json-type
@python3 ./utils/audit.py ${NEAR_SRC_DIR}
audit-report:
@python3 ./utils/audit.py ${NEAR_SRC_DIR}
clean: clean_pass clean_example clean_tg
clean_pass:
make -C detectors clean
clean_example:
find examples -name "Cargo.toml" | xargs -I {} cargo clean --manifest-path={}
clean_tg:
@for i in ${TG_MANIFESTS} ; do \
cargo clean --manifest-path=$$i ; \
done
clean_tmp:
rm -rf ${TMP_DIR}
compile_commands.json: clean_pass
if [[ $(shell bear --version | cut -d' ' -f2) = 2.4.* ]] ; then \
bear make -C detectors pass ; \
else \
bear -- make -C detectors pass ; \
fi
compile_flags.txt: Makefile
echo ${LLVM_CLANG} ${CXXFLAGS} ${LDFLAGS} | sed 's/ /\n/g' > compile_flags.txt
lint:
rm -f clang-tidy-fixes.yaml
${LLVM_DIR}/bin/clang-tidy --quiet --export-fixes=clang-tidy-fixes.yaml detectors/*.cpp -- ${CXXFLAGS}
lint-fix:
${LLVM_DIR}/bin/clang-apply-replacements --style=file ${TOP}
format:
${LLVM_DIR}/bin/clang-format -i detectors/*.cpp detectors/*.h
find . -name "Cargo.toml" | xargs -I {} cargo fmt --manifest-path={}