-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Reland '[hwasan] Add fixed_shadow_base flag (#73980)' #95445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// Test fixed shadow base functionality. | ||
// | ||
// Default compiler instrumentation works with any shadow base (dynamic or fixed). | ||
// RUN: %clang_hwasan %s -o %t && %run %t | ||
// RUN: %clang_hwasan %s -o %t && HWASAN_OPTIONS=fixed_shadow_base=263878495698944 %run %t | ||
// RUN: %clang_hwasan %s -o %t && HWASAN_OPTIONS=fixed_shadow_base=4398046511104 %run %t | ||
// | ||
// If -hwasan-mapping-offset is set, then the fixed_shadow_base needs to match. | ||
// RUN: %clang_hwasan %s -mllvm -hwasan-mapping-offset=263878495698944 -o %t && HWASAN_OPTIONS=fixed_shadow_base=263878495698944 %run %t | ||
// RUN: %clang_hwasan %s -mllvm -hwasan-mapping-offset=4398046511104 -o %t && HWASAN_OPTIONS=fixed_shadow_base=4398046511104 %run %t | ||
// RUN: %clang_hwasan %s -mllvm -hwasan-mapping-offset=263878495698944 -o %t && HWASAN_OPTIONS=fixed_shadow_base=4398046511104 not %run %t | ||
// RUN: %clang_hwasan %s -mllvm -hwasan-mapping-offset=4398046511104 -o %t && HWASAN_OPTIONS=fixed_shadow_base=263878495698944 not %run %t | ||
// | ||
// Note: if fixed_shadow_base is not set, compiler-rt will dynamically choose a | ||
// shadow base, which has a tiny but non-zero probability of matching the | ||
// compiler instrumentation. To avoid test flake, we do not test this case. | ||
// | ||
// Assume 48-bit VMA | ||
// REQUIRES: aarch64-target-arch | ||
// | ||
// REQUIRES: Clang | ||
// | ||
// UNSUPPORTED: android | ||
|
||
#include <assert.h> | ||
#include <sanitizer/allocator_interface.h> | ||
#include <sanitizer/hwasan_interface.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <sys/mman.h> | ||
|
||
int main() { | ||
__hwasan_enable_allocator_tagging(); | ||
|
||
// We test that the compiler instrumentation is able to access shadow memory | ||
// for many different addresses. If we only test a small number of addresses, | ||
// it might work by chance even if the shadow base does not match between the | ||
// compiler instrumentation and compiler-rt. | ||
void **mmaps[256]; | ||
// 48-bit VMA | ||
for (int i = 0; i < 256; i++) { | ||
unsigned long long addr = (i * (1ULL << 40)); | ||
|
||
void *p = mmap((void *)addr, 4096, PROT_READ | PROT_WRITE, | ||
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); | ||
// We don't use MAP_FIXED, to avoid overwriting critical memory. | ||
// However, if we don't get allocated the requested address, it | ||
// isn't a useful test. | ||
if ((unsigned long long)p != addr) { | ||
munmap(p, 4096); | ||
mmaps[i] = MAP_FAILED; | ||
} else { | ||
mmaps[i] = p; | ||
} | ||
} | ||
|
||
int failures = 0; | ||
for (int i = 0; i < 256; i++) { | ||
if (mmaps[i] == MAP_FAILED) { | ||
failures++; | ||
} else { | ||
printf("%d %p\n", i, mmaps[i]); | ||
munmap(mmaps[i], 4096); | ||
} | ||
} | ||
|
||
// We expect roughly 17 failures: | ||
// - the page at address zero | ||
// - 16 failures because the shadow memory takes up 1/16th of the address space | ||
// We could also get unlucky e.g., if libraries or binaries are loaded into the | ||
// exact addresses where we tried to map. | ||
// To avoid test flake, we allow some margin of error. | ||
printf("Failed: %d\n", failures); | ||
assert(failures < 48); | ||
return 0; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.