2020-06-09 04:21:17 +02:00
|
|
|
dir=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
|
|
|
|
|
|
|
CONFIG_SLAB_CANARY := true
|
2022-01-02 05:18:52 +01:00
|
|
|
# Clang 13 still doesn't enable sized deallocation by default
|
|
|
|
CXXFLAGS := -std=c++17 -fsized-deallocation
|
2020-06-09 04:21:17 +02:00
|
|
|
|
|
|
|
ifeq (,$(filter $(CONFIG_SLAB_CANARY),true false))
|
|
|
|
$(error CONFIG_SLAB_CANARY must be true or false)
|
|
|
|
endif
|
|
|
|
|
2021-11-02 20:22:05 +01:00
|
|
|
CPPFLAGS += -D_GNU_SOURCE \
|
|
|
|
-DSLAB_CANARY=$(CONFIG_SLAB_CANARY)
|
2020-06-09 04:21:17 +02:00
|
|
|
|
|
|
|
LDLIBS := -lhardened_malloc
|
|
|
|
|
2022-01-09 17:08:56 +01:00
|
|
|
LDFLAGS := -Wl,-L$(dir)../../out,-R,$(dir)../../out
|
2020-06-09 04:21:17 +02:00
|
|
|
|
2018-08-24 11:25:25 +02:00
|
|
|
EXECUTABLES := \
|
2018-08-24 09:09:23 +02:00
|
|
|
double_free_large \
|
2018-08-24 11:53:17 +02:00
|
|
|
double_free_large_delayed \
|
2018-08-24 09:09:23 +02:00
|
|
|
double_free_small \
|
2018-08-24 11:53:17 +02:00
|
|
|
double_free_small_delayed \
|
2018-08-24 09:09:23 +02:00
|
|
|
unaligned_free_large \
|
|
|
|
unaligned_free_small \
|
|
|
|
read_after_free_large \
|
|
|
|
read_after_free_small \
|
|
|
|
write_after_free_large \
|
2018-10-08 23:41:06 +02:00
|
|
|
write_after_free_large_reuse \
|
2018-08-24 09:09:23 +02:00
|
|
|
write_after_free_small \
|
2018-10-08 23:41:06 +02:00
|
|
|
write_after_free_small_reuse \
|
2018-08-24 09:09:23 +02:00
|
|
|
read_zero_size \
|
|
|
|
write_zero_size \
|
2018-08-24 10:45:48 +02:00
|
|
|
invalid_free_protected \
|
|
|
|
invalid_free_unprotected \
|
|
|
|
invalid_free_small_region \
|
2018-08-24 11:09:33 +02:00
|
|
|
invalid_free_small_region_far \
|
2021-12-27 13:17:58 +01:00
|
|
|
uninitialized_read_small \
|
|
|
|
uninitialized_read_large \
|
2018-08-24 11:02:00 +02:00
|
|
|
uninitialized_free \
|
|
|
|
uninitialized_realloc \
|
|
|
|
uninitialized_malloc_usable_size \
|
2022-01-04 03:20:15 +01:00
|
|
|
overflow_large_1_byte \
|
|
|
|
overflow_large_8_byte \
|
|
|
|
overflow_small_1_byte \
|
|
|
|
overflow_small_8_byte \
|
2018-10-11 07:44:41 +02:00
|
|
|
string_overflow \
|
2020-04-16 06:02:16 +02:00
|
|
|
delete_type_size_mismatch \
|
2020-09-17 23:23:13 +02:00
|
|
|
unaligned_malloc_usable_size_small \
|
|
|
|
invalid_malloc_usable_size_small \
|
|
|
|
invalid_malloc_usable_size_small_quarantine \
|
|
|
|
malloc_object_size \
|
|
|
|
malloc_object_size_offset \
|
|
|
|
invalid_malloc_object_size_small \
|
2021-12-28 12:27:28 +01:00
|
|
|
invalid_malloc_object_size_small_quarantine \
|
|
|
|
impossibly_large_malloc
|
2018-08-24 11:25:25 +02:00
|
|
|
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(EXECUTABLES)
|