[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 1 | // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
[email protected] | 1b556f8 | 2013-01-31 02:23:43 | [diff] [blame] | 5 | #include <fcntl.h> |
avi | 9b6f4293 | 2015-12-26 22:15:14 | [diff] [blame] | 6 | #include <stddef.h> |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 7 | #include <stdio.h> |
| 8 | #include <stdlib.h> |
| 9 | #include <string.h> |
[email protected] | 1b556f8 | 2013-01-31 02:23:43 | [diff] [blame] | 10 | #include <sys/stat.h> |
| 11 | #include <sys/types.h> |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 12 | |
| 13 | #include <algorithm> |
| 14 | #include <limits> |
dcheng | 093de9b | 2016-04-04 21:25:51 | [diff] [blame] | 15 | #include <memory> |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 16 | |
primiano | 3038b2f | 2017-05-26 15:48:32 | [diff] [blame] | 17 | #include "base/allocator/features.h" |
[email protected] | e3177dd5 | 2014-08-13 20:22:14 | [diff] [blame] | 18 | #include "base/files/file_util.h" |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 19 | #include "base/logging.h" |
dcheng | db5935f | 2016-03-26 00:16:27 | [diff] [blame] | 20 | #include "base/memory/free_deleter.h" |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 21 | #include "build/build_config.h" |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 22 | #include "testing/gtest/include/gtest/gtest.h" |
| 23 | |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 24 | #if defined(OS_POSIX) |
| 25 | #include <sys/mman.h> |
| 26 | #include <unistd.h> |
| 27 | #endif |
| 28 | |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 29 | using std::nothrow; |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 30 | using std::numeric_limits; |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 31 | |
| 32 | namespace { |
| 33 | |
[email protected] | fe394f3 | 2013-02-06 03:23:49 | [diff] [blame] | 34 | // This function acts as a compiler optimization barrier. We use it to |
| 35 | // prevent the compiler from making an expression a compile-time constant. |
| 36 | // We also use it so that the compiler doesn't discard certain return values |
| 37 | // as something we don't need (see the comment with calloc below). |
| 38 | template <typename Type> |
thakis | 189ce1f | 2015-04-23 02:58:29 | [diff] [blame] | 39 | NOINLINE Type HideValueFromCompiler(volatile Type value) { |
[email protected] | 1cdfdb7 | 2013-04-04 12:02:35 | [diff] [blame] | 40 | #if defined(__GNUC__) |
| 41 | // In a GCC compatible compiler (GCC or Clang), make this compiler barrier |
| 42 | // more robust than merely using "volatile". |
| 43 | __asm__ volatile ("" : "+r" (value)); |
| 44 | #endif // __GNUC__ |
[email protected] | fe394f3 | 2013-02-06 03:23:49 | [diff] [blame] | 45 | return value; |
| 46 | } |
| 47 | |
primiano | 3038b2f | 2017-05-26 15:48:32 | [diff] [blame] | 48 | // TCmalloc, currently supported only by Linux/CrOS, supports malloc limits. |
[email protected] | 5fcce3f7 | 2014-03-05 20:07:26 | [diff] [blame] | 49 | // - NO_TCMALLOC (should be defined if compiled with use_allocator!="tcmalloc") |
primiano | 3038b2f | 2017-05-26 15:48:32 | [diff] [blame] | 50 | // - ADDRESS_SANITIZER it has its own memory allocator |
| 51 | #if defined(OS_LINUX) && !defined(NO_TCMALLOC) && !defined(ADDRESS_SANITIZER) |
wfh | 74a449ca | 2015-01-13 03:11:40 | [diff] [blame] | 52 | #define MALLOC_OVERFLOW_TEST(function) function |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 53 | #else |
wfh | 74a449ca | 2015-01-13 03:11:40 | [diff] [blame] | 54 | #define MALLOC_OVERFLOW_TEST(function) DISABLED_##function |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 55 | #endif |
| 56 | |
wfh | 1bf9399 | 2015-09-21 02:21:14 | [diff] [blame] | 57 | #if defined(OS_LINUX) && defined(__x86_64__) |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 58 | // Detect runtime TCMalloc bypasses. |
| 59 | bool IsTcMallocBypassed() { |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 60 | // This should detect a TCMalloc bypass from Valgrind. |
| 61 | char* g_slice = getenv("G_SLICE"); |
| 62 | if (g_slice && !strcmp(g_slice, "always-malloc")) |
| 63 | return true; |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 64 | return false; |
| 65 | } |
[email protected] | d6a6cea | 2013-02-15 06:10:40 | [diff] [blame] | 66 | #endif |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 67 | |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 68 | // There are platforms where these tests are known to fail. We would like to |
| 69 | // be able to easily check the status on the bots, but marking tests as |
| 70 | // FAILS_ is too clunky. |
| 71 | void OverflowTestsSoftExpectTrue(bool overflow_detected) { |
| 72 | if (!overflow_detected) { |
| 73 | #if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_MACOSX) |
| 74 | // Sadly, on Linux, Android, and OSX we don't have a good story yet. Don't |
| 75 | // fail the test, but report. |
| 76 | printf("Platform has overflow: %s\n", |
| 77 | !overflow_detected ? "yes." : "no."); |
| 78 | #else |
| 79 | // Otherwise, fail the test. (Note: EXPECT are ok in subfunctions, ASSERT |
| 80 | // aren't). |
| 81 | EXPECT_TRUE(overflow_detected); |
| 82 | #endif |
| 83 | } |
| 84 | } |
| 85 | |
thakis | bc1c109 | 2017-03-01 13:05:35 | [diff] [blame] | 86 | #if defined(OS_IOS) || defined(ADDRESS_SANITIZER) || \ |
| 87 | defined(THREAD_SANITIZER) || defined(MEMORY_SANITIZER) |
John Abd-El-Malek | 17727ff | 2014-10-02 22:55:15 | [diff] [blame] | 88 | #define MAYBE_NewOverflow DISABLED_NewOverflow |
| 89 | #else |
| 90 | #define MAYBE_NewOverflow NewOverflow |
| 91 | #endif |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 92 | // Test array[TooBig][X] and array[X][TooBig] allocations for int overflows. |
| 93 | // IOS doesn't honor nothrow, so disable the test there. |
thakis | a71e1c4d | 2017-02-21 17:20:41 | [diff] [blame] | 94 | // Disabled under XSan because asan aborts when new returns nullptr, |
thakis | 4d7b56b | 2017-02-14 16:21:35 | [diff] [blame] | 95 | // https://bugs.chromium.org/p/chromium/issues/detail?id=690271#c15 |
John Abd-El-Malek | 17727ff | 2014-10-02 22:55:15 | [diff] [blame] | 96 | TEST(SecurityTest, MAYBE_NewOverflow) { |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 97 | const size_t kArraySize = 4096; |
| 98 | // We want something "dynamic" here, so that the compiler doesn't |
| 99 | // immediately reject crazy arrays. |
| 100 | const size_t kDynamicArraySize = HideValueFromCompiler(kArraySize); |
thakis | 4d7b56b | 2017-02-14 16:21:35 | [diff] [blame] | 101 | const size_t kMaxSizeT = std::numeric_limits<size_t>::max(); |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 102 | const size_t kArraySize2 = kMaxSizeT / kArraySize + 10; |
| 103 | const size_t kDynamicArraySize2 = HideValueFromCompiler(kArraySize2); |
| 104 | { |
dcheng | 093de9b | 2016-04-04 21:25:51 | [diff] [blame] | 105 | std::unique_ptr<char[][kArraySize]> array_pointer( |
| 106 | new (nothrow) char[kDynamicArraySize2][kArraySize]); |
thakis | 4d7b56b | 2017-02-14 16:21:35 | [diff] [blame] | 107 | // Prevent clang from optimizing away the whole test. |
| 108 | char* volatile p = reinterpret_cast<char*>(array_pointer.get()); |
| 109 | OverflowTestsSoftExpectTrue(!p); |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 110 | } |
[email protected] | 1cdfdb7 | 2013-04-04 12:02:35 | [diff] [blame] | 111 | // On windows, the compiler prevents static array sizes of more than |
| 112 | // 0x7fffffff (error C2148). |
Peter Kasting | be940e9 | 2014-11-20 23:14:08 | [diff] [blame] | 113 | #if defined(OS_WIN) && defined(ARCH_CPU_64_BITS) |
| 114 | ALLOW_UNUSED_LOCAL(kDynamicArraySize); |
| 115 | #else |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 116 | { |
dcheng | 093de9b | 2016-04-04 21:25:51 | [diff] [blame] | 117 | std::unique_ptr<char[][kArraySize2]> array_pointer( |
| 118 | new (nothrow) char[kDynamicArraySize][kArraySize2]); |
thakis | 4d7b56b | 2017-02-14 16:21:35 | [diff] [blame] | 119 | // Prevent clang from optimizing away the whole test. |
| 120 | char* volatile p = reinterpret_cast<char*>(array_pointer.get()); |
| 121 | OverflowTestsSoftExpectTrue(!p); |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 122 | } |
[email protected] | 1cdfdb7 | 2013-04-04 12:02:35 | [diff] [blame] | 123 | #endif // !defined(OS_WIN) || !defined(ARCH_CPU_64_BITS) |
[email protected] | 9c4729b | 2013-01-26 04:41:15 | [diff] [blame] | 124 | } |
| 125 | |
[email protected] | ab68db2d | 2014-04-15 20:58:09 | [diff] [blame] | 126 | #if defined(OS_LINUX) && defined(__x86_64__) |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 127 | // Check if ptr1 and ptr2 are separated by less than size chars. |
| 128 | bool ArePointersToSameArea(void* ptr1, void* ptr2, size_t size) { |
| 129 | ptrdiff_t ptr_diff = reinterpret_cast<char*>(std::max(ptr1, ptr2)) - |
| 130 | reinterpret_cast<char*>(std::min(ptr1, ptr2)); |
| 131 | return static_cast<size_t>(ptr_diff) <= size; |
| 132 | } |
| 133 | |
[email protected] | 1b556f8 | 2013-01-31 02:23:43 | [diff] [blame] | 134 | // Check if TCMalloc uses an underlying random memory allocator. |
wfh | 74a449ca | 2015-01-13 03:11:40 | [diff] [blame] | 135 | TEST(SecurityTest, MALLOC_OVERFLOW_TEST(RandomMemoryAllocations)) { |
[email protected] | 1b556f8 | 2013-01-31 02:23:43 | [diff] [blame] | 136 | if (IsTcMallocBypassed()) |
| 137 | return; |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 138 | size_t kPageSize = 4096; // We support x86_64 only. |
| 139 | // Check that malloc() returns an address that is neither the kernel's |
| 140 | // un-hinted mmap area, nor the current brk() area. The first malloc() may |
| 141 | // not be at a random address because TCMalloc will first exhaust any memory |
| 142 | // that it has allocated early on, before starting the sophisticated |
| 143 | // allocators. |
| 144 | void* default_mmap_heap_address = |
Ivan Kotenkov | a16212a5 | 2017-11-08 12:37:33 | [diff] [blame^] | 145 | mmap(nullptr, kPageSize, PROT_READ | PROT_WRITE, |
| 146 | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 147 | ASSERT_NE(default_mmap_heap_address, |
| 148 | static_cast<void*>(MAP_FAILED)); |
| 149 | ASSERT_EQ(munmap(default_mmap_heap_address, kPageSize), 0); |
| 150 | void* brk_heap_address = sbrk(0); |
| 151 | ASSERT_NE(brk_heap_address, reinterpret_cast<void*>(-1)); |
Ivan Kotenkov | a16212a5 | 2017-11-08 12:37:33 | [diff] [blame^] | 152 | ASSERT_TRUE(brk_heap_address != nullptr); |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 153 | // 1 MB should get us past what TCMalloc pre-allocated before initializing |
| 154 | // the sophisticated allocators. |
| 155 | size_t kAllocSize = 1<<20; |
dcheng | 093de9b | 2016-04-04 21:25:51 | [diff] [blame] | 156 | std::unique_ptr<char, base::FreeDeleter> ptr( |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 157 | static_cast<char*>(malloc(kAllocSize))); |
Ivan Kotenkov | a16212a5 | 2017-11-08 12:37:33 | [diff] [blame^] | 158 | ASSERT_TRUE(ptr != nullptr); |
[email protected] | 547683f | 2013-02-04 23:39:48 | [diff] [blame] | 159 | // If two pointers are separated by less than 512MB, they are considered |
| 160 | // to be in the same area. |
| 161 | // Our random pointer could be anywhere within 0x3fffffffffff (46bits), |
| 162 | // and we are checking that it's not withing 1GB (30 bits) from two |
| 163 | // addresses (brk and mmap heap). We have roughly one chance out of |
| 164 | // 2^15 to flake. |
| 165 | const size_t kAreaRadius = 1<<29; |
| 166 | bool in_default_mmap_heap = ArePointersToSameArea( |
| 167 | ptr.get(), default_mmap_heap_address, kAreaRadius); |
| 168 | EXPECT_FALSE(in_default_mmap_heap); |
| 169 | |
| 170 | bool in_default_brk_heap = ArePointersToSameArea( |
| 171 | ptr.get(), brk_heap_address, kAreaRadius); |
| 172 | EXPECT_FALSE(in_default_brk_heap); |
| 173 | |
| 174 | // In the implementation, we always mask our random addresses with |
| 175 | // kRandomMask, so we use it as an additional detection mechanism. |
| 176 | const uintptr_t kRandomMask = 0x3fffffffffffULL; |
| 177 | bool impossible_random_address = |
| 178 | reinterpret_cast<uintptr_t>(ptr.get()) & ~kRandomMask; |
| 179 | EXPECT_FALSE(impossible_random_address); |
[email protected] | 1b556f8 | 2013-01-31 02:23:43 | [diff] [blame] | 180 | } |
| 181 | |
[email protected] | ab68db2d | 2014-04-15 20:58:09 | [diff] [blame] | 182 | #endif // defined(OS_LINUX) && defined(__x86_64__) |
[email protected] | 1b556f8 | 2013-01-31 02:23:43 | [diff] [blame] | 183 | |
[email protected] | b5bf9a13 | 2013-01-15 20:16:33 | [diff] [blame] | 184 | } // namespace |