Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(729)

Side by Side Diff: base/security_unittest.cc

Issue 12093035: TCMalloc: support userland ASLR on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove "using" statement to make Windows happy. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <fcntl.h>
5 #include <stdio.h> 6 #include <stdio.h>
6 #include <stdlib.h> 7 #include <stdlib.h>
7 #include <string.h> 8 #include <string.h>
9 #include <sys/stat.h>
10 #include <sys/types.h>
8 11
9 #include <algorithm> 12 #include <algorithm>
10 #include <limits> 13 #include <limits>
11 14
15 #include "base/file_util.h"
12 #include "base/logging.h" 16 #include "base/logging.h"
13 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
14 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
15 19
16 using std::nothrow; 20 using std::nothrow;
17 21
18 namespace { 22 namespace {
19 23
20 // Check that we can not allocate a memory range that cannot be indexed 24 // Check that we can not allocate a memory range that cannot be indexed
21 // via an int. This is used to mitigate vulnerabilities in libraries that use 25 // via an int. This is used to mitigate vulnerabilities in libraries that use
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } 97 }
94 } 98 }
95 99
96 TEST(SecurityTest, ALLOC_TEST(MemoryAllocationRestrictionsNewArray)) { 100 TEST(SecurityTest, ALLOC_TEST(MemoryAllocationRestrictionsNewArray)) {
97 if (!IsTcMallocBypassed()) { 101 if (!IsTcMallocBypassed()) {
98 scoped_ptr<char[]> ptr(new (nothrow) char[kTooBigAllocSize]); 102 scoped_ptr<char[]> ptr(new (nothrow) char[kTooBigAllocSize]);
99 ASSERT_TRUE(ptr == NULL); 103 ASSERT_TRUE(ptr == NULL);
100 } 104 }
101 } 105 }
102 106
107 #if (defined(OS_LINUX) || defined(OS_CHROMEOS)) && defined(__x86_64__)
108 // Useful for debugging.
109 void PrintProcSelfMaps() {
110 int fd = open("/proc/self/maps", O_RDONLY);
111 file_util::ScopedFD fd_closer(&fd);
112 ASSERT_GE(fd, 0);
113 char buffer[1<<13];
114 int ret;
115 ret = read(fd, buffer, sizeof(buffer) - 1);
116 ASSERT_GT(ret, 0);
117 buffer[ret - 1] = 0;
118 fprintf(stdout, "%s\n", buffer);
119 }
120
121 // Check if TCMalloc uses an underlying random memory allocator.
122 TEST(SecurityTest, ALLOC_TEST(RandomMemoryAllocations)) {
123 if (IsTcMallocBypassed())
124 return;
125 // Two successive calls to mmap() have roughly one chance out of 2^6 to be
126 // detected as having the same order. With 32 allocations, we see ~16 that
127 // trigger a call to mmap, so the chances of this test flaking is roughly
128 // 2^-(6*15), i.e. virtually impossible.
129 const int kAllocNumber = 32;
130 bool is_contiguous = true;
131 // Make kAllocNumber successive allocations of growing size and compare the
132 // successive pointers to detect adjacent mappings. We grow the size because
133 // TCMalloc can sometimes over-allocate.
134 scoped_ptr<char, base::FreeDeleter> ptr[kAllocNumber];
135 for (int i = 0; i < kAllocNumber; ++i) {
136 // Grow the Malloc size slightly sub-exponentially.
137 const size_t kMallocSize = 1 << (12 + (i>>1));
138 ptr[i].reset(static_cast<char*>(malloc(kMallocSize)));
139 ASSERT_TRUE(ptr[i] != NULL);
140 if (i > 0) {
141 // Without mmap randomization, the two high order nibbles
142 // of a 47 bits userland address address will be identical.
143 const uintptr_t kHighOrderMask = 0xff0000000000ULL;
144 bool pointer_have_same_high_order =
145 (reinterpret_cast<size_t>(ptr[i].get()) & kHighOrderMask) ==
146 (reinterpret_cast<size_t>(ptr[i - 1].get()) & kHighOrderMask);
147 if (!pointer_have_same_high_order) {
148 // PrintProcSelfMaps();
149 is_contiguous = false;
150 break;
151 }
152 }
153 }
154 ASSERT_FALSE(is_contiguous);
155 }
156
157 #endif // (defined(OS_LINUX) || defined(OS_CHROMEOS)) && defined(__x86_64__)
158
103 } // namespace 159 } // namespace
OLDNEW
« no previous file with comments | « no previous file | third_party/tcmalloc/chromium/src/system-alloc.cc » ('j') | third_party/tcmalloc/chromium/src/system-alloc.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698