]> granicus.if.org Git - llvm/commit
hwasan: Improve precision of checks using short granule tags.
authorPeter Collingbourne <peter@pcc.me.uk>
Tue, 9 Jul 2019 20:22:36 +0000 (20:22 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Tue, 9 Jul 2019 20:22:36 +0000 (20:22 +0000)
commit132fdde04ea1dc6e68de59c90fbb3494d54df92d
tree2e516af5182705927610422dae757fb830a8a11d
parent7b04f74ca3fe11108a258824be92fd73f474ebc8
hwasan: Improve precision of checks using short granule tags.

A short granule is a granule of size between 1 and `TG-1` bytes. The size
of a short granule is stored at the location in shadow memory where the
granule's tag is normally stored, while the granule's actual tag is stored
in the last byte of the granule. This means that in order to verify that a
pointer tag matches a memory tag, HWASAN must check for two possibilities:

* the pointer tag is equal to the memory tag in shadow memory, or
* the shadow memory tag is actually a short granule size, the value being loaded
  is in bounds of the granule and the pointer tag is equal to the last byte of
  the granule.

Pointer tags between 1 to `TG-1` are possible and are as likely as any other
tag. This means that these tags in memory have two interpretations: the full
tag interpretation (where the pointer tag is between 1 and `TG-1` and the
last byte of the granule is ordinary data) and the short tag interpretation
(where the pointer tag is stored in the granule).

When HWASAN detects an error near a memory tag between 1 and `TG-1`, it
will show both the memory tag and the last byte of the granule. Currently,
it is up to the user to disambiguate the two possibilities.

Because this functionality obsoletes the right aligned heap feature of
the HWASAN memory allocator (and because we can no longer easily test
it), the feature is removed.

Also update the documentation to cover both short granule tags and
outlined checks.

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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365551 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/AArch64/AArch64AsmPrinter.cpp
lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
test/CodeGen/AArch64/hwasan-check-memaccess.ll
test/Instrumentation/HWAddressSanitizer/alloca-with-calls.ll
test/Instrumentation/HWAddressSanitizer/alloca.ll
test/Instrumentation/HWAddressSanitizer/basic.ll
test/Instrumentation/HWAddressSanitizer/kernel-alloca.ll