mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
1df7c7f1d4
Signed-off-by: Tad <tad@spotco.us>
35 lines
1.4 KiB
Diff
35 lines
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Sun, 12 Mar 2017 17:49:13 -0400
|
|
Subject: [PATCH] on 64-bit, zero the leading stack canary byte
|
|
|
|
This reduces entropy of the canary from 64-bit to 56-bit in exchange for
|
|
mitigating non-terminated C string overflows.
|
|
---
|
|
libc/bionic/__libc_init_main_thread.cpp | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/libc/bionic/__libc_init_main_thread.cpp b/libc/bionic/__libc_init_main_thread.cpp
|
|
index 78d25fd97..ae2245829 100644
|
|
--- a/libc/bionic/__libc_init_main_thread.cpp
|
|
+++ b/libc/bionic/__libc_init_main_thread.cpp
|
|
@@ -47,8 +47,18 @@ extern "C" int __set_tid_address(int* tid_address);
|
|
__attribute__((aligned(PAGE_SIZE)))
|
|
uintptr_t __stack_chk_guard[PAGE_SIZE / sizeof(uintptr_t)] = {0};
|
|
|
|
+#if __LP64__
|
|
+static const uintptr_t canary_mask = __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ ?
|
|
+ 0xffffffffffffff00UL :
|
|
+ 0x00ffffffffffffffUL;
|
|
+#endif
|
|
+
|
|
void __libc_init_global_stack_chk_guard(KernelArgumentBlock& args) {
|
|
__libc_safe_arc4random_buf(&__stack_chk_guard[0], sizeof(__stack_chk_guard[0]), args);
|
|
+#if __LP64__
|
|
+ // Sacrifice 8 bits of entropy on 64-bit to mitigate non-terminated C string overflows
|
|
+ __stack_chk_guard[0] &= canary_mask;
|
|
+#endif
|
|
if (mprotect(__stack_chk_guard, sizeof(__stack_chk_guard), PROT_READ) == -1) {
|
|
async_safe_fatal("mprotect __stack_chk_guard: %s", strerror(errno));
|
|
}
|