2017-06-16 22:42:56 -05:00
|
|
|
-include ../tools.mk
|
|
|
|
|
2017-09-07 15:36:23 -05:00
|
|
|
LOG := $(TMPDIR)/log.txt
|
|
|
|
|
2017-06-16 22:42:56 -05:00
|
|
|
# This test builds a shared object, then an executable that links it as a native
|
|
|
|
# rust library (constrast to an rlib). The shared library and executable both
|
|
|
|
# are compiled with address sanitizer, and we assert that a fault in the cdylib
|
|
|
|
# is correctly detected.
|
|
|
|
|
|
|
|
ifeq ($(TARGET),x86_64-unknown-linux-gnu)
|
|
|
|
ASAN_SUPPORT=$(SANITIZER_SUPPORT)
|
2017-09-07 15:36:23 -05:00
|
|
|
|
|
|
|
# See comment in sanitizer-address/Makefile for why this is here
|
|
|
|
EXTRA_RUSTFLAG=-C relocation-model=dynamic-no-pic
|
2017-06-16 22:42:56 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
all:
|
|
|
|
ifeq ($(ASAN_SUPPORT),1)
|
2017-09-07 15:36:23 -05:00
|
|
|
$(RUSTC) -g -Z sanitizer=address --crate-type cdylib --target $(TARGET) $(EXTRA_RUSTFLAG) library.rs
|
|
|
|
$(RUSTC) -g -Z sanitizer=address --crate-type bin --target $(TARGET) $(EXTRA_RUSTFLAG) -llibrary program.rs
|
|
|
|
LD_LIBRARY_PATH=$(TMPDIR) $(TMPDIR)/program 2>&1 | tee $(LOG)
|
|
|
|
grep -q stack-buffer-overflow $(LOG)
|
2017-06-16 22:42:56 -05:00
|
|
|
endif
|