2012-06-25 16:40:10 +08:00
|
|
|
# First, add the subdirectories which contain feature-based runtime libraries
|
|
|
|
# and several convenience helper libraries.
|
2013-09-02 16:57:23 +08:00
|
|
|
|
2014-02-18 15:26:58 +08:00
|
|
|
include(AddCompilerRT)
|
|
|
|
include(SanitizerUtils)
|
2014-08-09 06:01:20 +08:00
|
|
|
|
2015-09-15 03:59:24 +08:00
|
|
|
if(COMPILER_RT_BUILD_BUILTINS)
|
|
|
|
add_subdirectory(builtins)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_BUILD_SANITIZERS)
|
2015-12-10 08:40:58 +08:00
|
|
|
if(COMPILER_RT_HAS_INTERCEPTION)
|
|
|
|
add_subdirectory(interception)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_SANITIZER_COMMON)
|
|
|
|
add_subdirectory(sanitizer_common)
|
2016-01-16 08:31:29 +08:00
|
|
|
add_subdirectory(stats)
|
2015-12-10 08:40:58 +08:00
|
|
|
add_subdirectory(lsan)
|
|
|
|
add_subdirectory(ubsan)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_ASAN)
|
|
|
|
add_subdirectory(asan)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_DFSAN)
|
|
|
|
add_subdirectory(dfsan)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_MSAN)
|
|
|
|
add_subdirectory(msan)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_PROFILE)
|
|
|
|
add_subdirectory(profile)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_TSAN)
|
|
|
|
add_subdirectory(tsan)
|
|
|
|
add_subdirectory(tsan/dd)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_SAFESTACK)
|
|
|
|
add_subdirectory(safestack)
|
|
|
|
endif()
|
2015-12-16 07:00:33 +08:00
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_CFI)
|
|
|
|
add_subdirectory(cfi)
|
|
|
|
endif()
|
2016-04-22 05:32:25 +08:00
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_ESAN)
|
|
|
|
add_subdirectory(esan)
|
|
|
|
endif()
|
[sanitizer] Initial implementation of a Hardened Allocator
Summary:
This is an initial implementation of a Hardened Allocator based on Sanitizer Common's CombinedAllocator.
It aims at mitigating heap based vulnerabilities by adding several features to the base allocator, while staying relatively fast.
The following were implemented:
- additional consistency checks on the allocation function parameters and on the heap chunks;
- use of checksum protected chunk header, to detect corruption;
- randomness to the allocator base;
- delayed freelist (quarantine), to mitigate use after free and overall determinism.
Additional mitigations are in the works.
Reviewers: eugenis, aizatsky, pcc, krasin, vitalybuka, glider, dvyukov, kcc
Subscribers: kubabrecka, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D20084
llvm-svn: 271968
2016-06-07 09:20:26 +08:00
|
|
|
|
|
|
|
if(COMPILER_RT_HAS_SCUDO)
|
|
|
|
add_subdirectory(scudo)
|
|
|
|
endif()
|
2015-06-16 05:08:47 +08:00
|
|
|
endif()
|