[scudo] 32-bit and hardware agnostic support
authorKostya Kortchinsky <kostyak@google.com>
Wed, 30 Nov 2016 17:32:20 +0000 (17:32 +0000)
committerKostya Kortchinsky <kostyak@google.com>
Wed, 30 Nov 2016 17:32:20 +0000 (17:32 +0000)
commit1148dc52745f86413615518bd416c8e970b7e028
tree8e4ddf7a747e4c00d2fb8dbb4bd1baf29e62c112
parent2419d670c22402b39f5f46208ddcf472f3440fce
[scudo] 32-bit and hardware agnostic support

Summary:
This update introduces i386 support for the Scudo Hardened Allocator, and
offers software alternatives for functions that used to require hardware
specific instruction sets. This should make porting to new architectures
easier.

Among the changes:
- The chunk header has been changed to accomodate the size limitations
  encountered on 32-bit architectures. We now fit everything in 64-bit. This
  was achieved by storing the amount of unused bytes in an allocation rather
  than the size itself, as one can be deduced from the other with the help
  of the GetActuallyAllocatedSize function. As it turns out, this header can
  be used for both 64 and 32 bit, and as such we dropped the requirement for
  the 128-bit compare and exchange instruction support (cmpxchg16b).
- Add 32-bit support for the checksum and the PRNG functions: if the SSE 4.2
  instruction set is supported, use the 32-bit CRC32 instruction, and in the
  XorShift128, use a 32-bit based state instead of 64-bit.
- Add software support for CRC32: if SSE 4.2 is not supported, fallback on a
  software implementation.
- Modify tests that were not 32-bit compliant, and expand them to cover more
  allocation and alignment sizes. The random shuffle test has been deactivated
  for linux-i386 & linux-i686 as the 32-bit sanitizer allocator doesn't
  currently randomize chunks.

Reviewers: alekseyshl, kcc

Subscribers: filcab, llvm-commits, tberghammer, danalbert, srhines, mgorny, modocache

Differential Revision: https://reviews.llvm.org/D26358

llvm-svn: 288255
25 files changed:
compiler-rt/cmake/config-ix.cmake
compiler-rt/lib/scudo/CMakeLists.txt
compiler-rt/lib/scudo/scudo_allocator.cpp
compiler-rt/lib/scudo/scudo_allocator.h
compiler-rt/lib/scudo/scudo_allocator_secondary.h
compiler-rt/lib/scudo/scudo_flags.cpp
compiler-rt/lib/scudo/scudo_flags.h
compiler-rt/lib/scudo/scudo_interceptors.cpp
compiler-rt/lib/scudo/scudo_new_delete.cpp
compiler-rt/lib/scudo/scudo_termination.cpp
compiler-rt/lib/scudo/scudo_utils.cpp
compiler-rt/lib/scudo/scudo_utils.h
compiler-rt/test/scudo/CMakeLists.txt
compiler-rt/test/scudo/alignment.cpp
compiler-rt/test/scudo/double-free.cpp
compiler-rt/test/scudo/interface.cpp [new file with mode: 0644]
compiler-rt/test/scudo/lit.cfg
compiler-rt/test/scudo/lit.site.cfg.in
compiler-rt/test/scudo/malloc.cpp
compiler-rt/test/scudo/memalign.cpp
compiler-rt/test/scudo/mismatch.cpp
compiler-rt/test/scudo/overflow.cpp
compiler-rt/test/scudo/preinit.cpp
compiler-rt/test/scudo/random_shuffle.cpp
compiler-rt/test/scudo/realloc.cpp