blob: 8abf8a6003ebaf88010f7b8aac38be19172d656a [file] [log] [blame]
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "mem_map.h"
18
Ian Rogersc7dd2952014-10-21 23:31:19 -070019#include <inttypes.h>
Josh Gao0389cd52015-09-16 16:27:00 -070020#include <stdlib.h>
Andreas Gampe0dfc3152017-04-24 07:58:06 -070021#include <sys/mman.h> // For the PROT_* and MAP_* constants.
22#ifndef ANDROID_OS
23#include <sys/resource.h>
24#endif
Ian Rogersc7dd2952014-10-21 23:31:19 -070025
Andreas Gampe3b7dc352017-06-06 20:02:03 -070026#include <map>
Ian Rogers700a4022014-05-19 16:49:03 -070027#include <memory>
Ian Rogersc7dd2952014-10-21 23:31:19 -070028#include <sstream>
Elliott Hughesecd3a6f2012-06-06 18:16:37 -070029
Andreas Gampe46ee31b2016-12-14 10:11:49 -080030#include "android-base/stringprintf.h"
Andreas Gampe0dfc3152017-04-24 07:58:06 -070031#include "android-base/unique_fd.h"
32#include "backtrace/BacktraceMap.h"
33#include "cutils/ashmem.h"
Andreas Gampe46ee31b2016-12-14 10:11:49 -080034
Andreas Gampe0dfc3152017-04-24 07:58:06 -070035#include "base/allocator.h"
Andreas Gampe3b7dc352017-06-06 20:02:03 -070036#include "base/bit_utils.h"
David Sehr891a50e2017-10-27 17:01:07 -070037#include "base/file_utils.h"
Andreas Gampe57943812017-12-06 21:39:13 -080038#include "base/logging.h" // For VLOG_IS_ON.
Andreas Gampe0dfc3152017-04-24 07:58:06 -070039#include "base/memory_tool.h"
40#include "globals.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080041#include "utils.h"
42
Ian Rogersd6b68652014-06-23 14:07:03 -070043#ifndef MAP_ANONYMOUS
44#define MAP_ANONYMOUS MAP_ANON
45#endif
46
Brian Carlstrom27ec9612011-09-19 20:20:38 -070047namespace art {
48
Andreas Gampe46ee31b2016-12-14 10:11:49 -080049using android::base::StringPrintf;
Andreas Gampe0dfc3152017-04-24 07:58:06 -070050using android::base::unique_fd;
51
Andreas Gampe3b7dc352017-06-06 20:02:03 -070052template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
53using AllocationTrackingMultiMap =
54 std::multimap<Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>>;
55
Andreas Gampe0dfc3152017-04-24 07:58:06 -070056using Maps = AllocationTrackingMultiMap<void*, MemMap*, kAllocatorTagMaps>;
57
58// All the non-empty MemMaps. Use a multimap as we do a reserve-and-divide (eg ElfMap::Load()).
59static Maps* gMaps GUARDED_BY(MemMap::GetMemMapsLock()) = nullptr;
Andreas Gampe46ee31b2016-12-14 10:11:49 -080060
Christopher Ferris943af7d2014-01-16 12:41:46 -080061static std::ostream& operator<<(
62 std::ostream& os,
Christopher Ferris5cf8b532017-12-03 12:46:17 -080063 std::pair<BacktraceMap::iterator, BacktraceMap::iterator> iters) {
64 for (BacktraceMap::iterator it = iters.first; it != iters.second; ++it) {
65 const backtrace_map_t* entry = *it;
Christopher Ferris943af7d2014-01-16 12:41:46 -080066 os << StringPrintf("0x%08x-0x%08x %c%c%c %s\n",
Christopher Ferris5cf8b532017-12-03 12:46:17 -080067 static_cast<uint32_t>(entry->start),
68 static_cast<uint32_t>(entry->end),
69 (entry->flags & PROT_READ) ? 'r' : '-',
70 (entry->flags & PROT_WRITE) ? 'w' : '-',
71 (entry->flags & PROT_EXEC) ? 'x' : '-', entry->name.c_str());
Elliott Hughesecd3a6f2012-06-06 18:16:37 -070072 }
73 return os;
Brian Carlstrom27ec9612011-09-19 20:20:38 -070074}
75
Andreas Gampe0dfc3152017-04-24 07:58:06 -070076std::ostream& operator<<(std::ostream& os, const Maps& mem_maps) {
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070077 os << "MemMap:" << std::endl;
78 for (auto it = mem_maps.begin(); it != mem_maps.end(); ++it) {
79 void* base = it->first;
80 MemMap* map = it->second;
81 CHECK_EQ(base, map->BaseBegin());
82 os << *map << std::endl;
83 }
84 return os;
85}
86
David Sehr1b14fb82017-02-01 10:42:11 -080087std::mutex* MemMap::mem_maps_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070088
Ian Rogersc3ccc102014-06-25 11:52:14 -070089#if USE_ART_LOW_4G_ALLOCATOR
Andreas Gamped8f26db2014-05-19 17:01:13 -070090// Handling mem_map in 32b address range for 64b architectures that do not support MAP_32BIT.
91
92// The regular start of memory allocations. The first 64KB is protected by SELinux.
Andreas Gampe6bd621a2014-05-16 17:28:58 -070093static constexpr uintptr_t LOW_MEM_START = 64 * KB;
Andreas Gampe7104cbf2014-03-21 11:44:43 -070094
Andreas Gamped8f26db2014-05-19 17:01:13 -070095// Generate random starting position.
96// To not interfere with image position, take the image's address and only place it below. Current
97// formula (sketch):
98//
99// ART_BASE_ADDR = 0001XXXXXXXXXXXXXXX
100// ----------------------------------------
101// = 0000111111111111111
102// & ~(kPageSize - 1) =~0000000000000001111
103// ----------------------------------------
104// mask = 0000111111111110000
105// & random data = YYYYYYYYYYYYYYYYYYY
106// -----------------------------------
107// tmp = 0000YYYYYYYYYYY0000
108// + LOW_MEM_START = 0000000000001000000
109// --------------------------------------
110// start
111//
Josh Gao0389cd52015-09-16 16:27:00 -0700112// arc4random as an entropy source is exposed in Bionic, but not in glibc. When we
Andreas Gamped8f26db2014-05-19 17:01:13 -0700113// do not have Bionic, simply start with LOW_MEM_START.
114
115// Function is standalone so it can be tested somewhat in mem_map_test.cc.
116#ifdef __BIONIC__
117uintptr_t CreateStartPos(uint64_t input) {
118 CHECK_NE(0, ART_BASE_ADDRESS);
119
120 // Start with all bits below highest bit in ART_BASE_ADDRESS.
121 constexpr size_t leading_zeros = CLZ(static_cast<uint32_t>(ART_BASE_ADDRESS));
122 constexpr uintptr_t mask_ones = (1 << (31 - leading_zeros)) - 1;
123
124 // Lowest (usually 12) bits are not used, as aligned by page size.
125 constexpr uintptr_t mask = mask_ones & ~(kPageSize - 1);
126
127 // Mask input data.
128 return (input & mask) + LOW_MEM_START;
129}
130#endif
131
132static uintptr_t GenerateNextMemPos() {
133#ifdef __BIONIC__
Josh Gao0389cd52015-09-16 16:27:00 -0700134 uint64_t random_data;
135 arc4random_buf(&random_data, sizeof(random_data));
136 return CreateStartPos(random_data);
Andreas Gamped8f26db2014-05-19 17:01:13 -0700137#else
Josh Gao0389cd52015-09-16 16:27:00 -0700138 // No arc4random on host, see above.
Andreas Gamped8f26db2014-05-19 17:01:13 -0700139 return LOW_MEM_START;
140#endif
141}
142
143// Initialize linear scan to random position.
144uintptr_t MemMap::next_mem_pos_ = GenerateNextMemPos();
Stuart Monteith8dba5aa2014-03-12 12:44:01 +0000145#endif
146
Mathieu Chartier24a0fc82015-10-13 16:38:52 -0700147// Return true if the address range is contained in a single memory map by either reading
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700148// the gMaps variable or the /proc/self/map entry.
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700149bool MemMap::ContainedWithinExistingMap(uint8_t* ptr, size_t size, std::string* error_msg) {
Vladimir Marko5c42c292015-02-25 12:02:49 +0000150 uintptr_t begin = reinterpret_cast<uintptr_t>(ptr);
151 uintptr_t end = begin + size;
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700152
Mathieu Chartier24a0fc82015-10-13 16:38:52 -0700153 // There is a suspicion that BacktraceMap::Create is occasionally missing maps. TODO: Investigate
154 // further.
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700155 {
David Sehr1b14fb82017-02-01 10:42:11 -0800156 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700157 for (auto& pair : *gMaps) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700158 MemMap* const map = pair.second;
159 if (begin >= reinterpret_cast<uintptr_t>(map->Begin()) &&
160 end <= reinterpret_cast<uintptr_t>(map->End())) {
161 return true;
162 }
163 }
164 }
165
Jim_Guoa62a5882014-04-28 11:11:57 +0800166 std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(getpid(), true));
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800167 if (map == nullptr) {
168 if (error_msg != nullptr) {
169 *error_msg = StringPrintf("Failed to build process map");
170 }
Jim_Guoa62a5882014-04-28 11:11:57 +0800171 return false;
172 }
Christopher Ferris56f8b562016-06-16 23:19:36 -0700173
174 ScopedBacktraceMapIteratorLock lock(map.get());
Christopher Ferris5cf8b532017-12-03 12:46:17 -0800175 for (BacktraceMap::iterator it = map->begin(); it != map->end(); ++it) {
176 const backtrace_map_t* entry = *it;
177 if ((begin >= entry->start && begin < entry->end) // start of new within old
178 && (end > entry->start && end <= entry->end)) { // end of new within old
Jim_Guoa62a5882014-04-28 11:11:57 +0800179 return true;
180 }
181 }
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800182 if (error_msg != nullptr) {
183 PrintFileToLog("/proc/self/maps", LogSeverity::ERROR);
184 *error_msg = StringPrintf("Requested region 0x%08" PRIxPTR "-0x%08" PRIxPTR " does not overlap "
185 "any existing map. See process maps in the log.", begin, end);
186 }
Jim_Guoa62a5882014-04-28 11:11:57 +0800187 return false;
188}
189
190// Return true if the address range does not conflict with any /proc/self/maps entry.
191static bool CheckNonOverlapping(uintptr_t begin,
192 uintptr_t end,
193 std::string* error_msg) {
194 std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(getpid(), true));
Christopher Ferris836572a2014-08-05 15:43:13 -0700195 if (map.get() == nullptr) {
Jim_Guoa62a5882014-04-28 11:11:57 +0800196 *error_msg = StringPrintf("Failed to build process map");
197 return false;
198 }
Andreas Gampef45d61c2017-06-07 10:29:33 -0700199 ScopedBacktraceMapIteratorLock lock(map.get());
Christopher Ferris5cf8b532017-12-03 12:46:17 -0800200 for (BacktraceMap::iterator it = map->begin(); it != map->end(); ++it) {
201 const backtrace_map_t* entry = *it;
202 if ((begin >= entry->start && begin < entry->end) // start of new within old
203 || (end > entry->start && end < entry->end) // end of new within old
204 || (begin <= entry->start && end > entry->end)) { // start/end of new includes all of old
Jim_Guoa62a5882014-04-28 11:11:57 +0800205 std::ostringstream map_info;
206 map_info << std::make_pair(it, map->end());
207 *error_msg = StringPrintf("Requested region 0x%08" PRIxPTR "-0x%08" PRIxPTR " overlaps with "
208 "existing map 0x%08" PRIxPTR "-0x%08" PRIxPTR " (%s)\n%s",
209 begin, end,
Christopher Ferris5cf8b532017-12-03 12:46:17 -0800210 static_cast<uintptr_t>(entry->start), static_cast<uintptr_t>(entry->end),
211 entry->name.c_str(),
Jim_Guoa62a5882014-04-28 11:11:57 +0800212 map_info.str().c_str());
213 return false;
214 }
215 }
216 return true;
217}
218
219// CheckMapRequest to validate a non-MAP_FAILED mmap result based on
220// the expected value, calling munmap if validation fails, giving the
221// reason in error_msg.
222//
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700223// If the expected_ptr is null, nothing is checked beyond the fact
Jim_Guoa62a5882014-04-28 11:11:57 +0800224// that the actual_ptr is not MAP_FAILED. However, if expected_ptr is
225// non-null, we check that pointer is the actual_ptr == expected_ptr,
226// and if not, report in error_msg what the conflict mapping was if
227// found, or a generic error in other cases.
Ian Rogers13735952014-10-08 12:43:28 -0700228static bool CheckMapRequest(uint8_t* expected_ptr, void* actual_ptr, size_t byte_count,
Jim_Guoa62a5882014-04-28 11:11:57 +0800229 std::string* error_msg) {
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700230 // Handled first by caller for more specific error messages.
231 CHECK(actual_ptr != MAP_FAILED);
232
233 if (expected_ptr == nullptr) {
234 return true;
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700235 }
Elliott Hughesecd3a6f2012-06-06 18:16:37 -0700236
Jim_Guoa62a5882014-04-28 11:11:57 +0800237 uintptr_t actual = reinterpret_cast<uintptr_t>(actual_ptr);
238 uintptr_t expected = reinterpret_cast<uintptr_t>(expected_ptr);
239 uintptr_t limit = expected + byte_count;
240
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700241 if (expected_ptr == actual_ptr) {
242 return true;
243 }
244
245 // We asked for an address but didn't get what we wanted, all paths below here should fail.
246 int result = munmap(actual_ptr, byte_count);
247 if (result == -1) {
248 PLOG(WARNING) << StringPrintf("munmap(%p, %zd) failed", actual_ptr, byte_count);
249 }
250
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800251 if (error_msg != nullptr) {
Mathieu Chartier83723ae2016-02-24 10:09:23 -0800252 // We call this here so that we can try and generate a full error
253 // message with the overlapping mapping. There's no guarantee that
254 // that there will be an overlap though, since
255 // - The kernel is not *required* to honor expected_ptr unless MAP_FIXED is
256 // true, even if there is no overlap
257 // - There might have been an overlap at the point of mmap, but the
258 // overlapping region has since been unmapped.
259 std::string error_detail;
260 CheckNonOverlapping(expected, limit, &error_detail);
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800261 std::ostringstream os;
262 os << StringPrintf("Failed to mmap at expected address, mapped at "
263 "0x%08" PRIxPTR " instead of 0x%08" PRIxPTR,
264 actual, expected);
265 if (!error_detail.empty()) {
266 os << " : " << error_detail;
267 }
268 *error_msg = os.str();
Christopher Ferris943af7d2014-01-16 12:41:46 -0800269 }
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700270 return false;
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700271}
272
Mathieu Chartier38c82212015-06-04 16:22:41 -0700273#if USE_ART_LOW_4G_ALLOCATOR
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800274static inline void* TryMemMapLow4GB(void* ptr,
275 size_t page_aligned_byte_count,
276 int prot,
277 int flags,
278 int fd,
279 off_t offset) {
280 void* actual = mmap(ptr, page_aligned_byte_count, prot, flags, fd, offset);
Mathieu Chartier38c82212015-06-04 16:22:41 -0700281 if (actual != MAP_FAILED) {
282 // Since we didn't use MAP_FIXED the kernel may have mapped it somewhere not in the low
283 // 4GB. If this is the case, unmap and retry.
284 if (reinterpret_cast<uintptr_t>(actual) + page_aligned_byte_count >= 4 * GB) {
285 munmap(actual, page_aligned_byte_count);
286 actual = MAP_FAILED;
287 }
288 }
289 return actual;
290}
291#endif
292
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800293MemMap* MemMap::MapAnonymous(const char* name,
294 uint8_t* expected_ptr,
295 size_t byte_count,
296 int prot,
297 bool low_4gb,
298 bool reuse,
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000299 std::string* error_msg,
300 bool use_ashmem) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700301#ifndef __LP64__
302 UNUSED(low_4gb);
303#endif
Nicolas Geoffray58a73d22016-11-29 21:49:43 +0000304 use_ashmem = use_ashmem && !kIsTargetLinux;
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700305 if (byte_count == 0) {
Jim_Guoa62a5882014-04-28 11:11:57 +0800306 return new MemMap(name, nullptr, 0, nullptr, 0, prot, false);
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700307 }
Elliott Hughesecd3a6f2012-06-06 18:16:37 -0700308 size_t page_aligned_byte_count = RoundUp(byte_count, kPageSize);
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800309
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800310 int flags = MAP_PRIVATE | MAP_ANONYMOUS;
Vladimir Marko5c42c292015-02-25 12:02:49 +0000311 if (reuse) {
312 // reuse means it is okay that it overlaps an existing page mapping.
313 // Only use this if you actually made the page reservation yourself.
314 CHECK(expected_ptr != nullptr);
315
Vladimir Markob5505822015-05-08 11:10:16 +0100316 DCHECK(ContainedWithinExistingMap(expected_ptr, byte_count, error_msg)) << *error_msg;
Vladimir Marko5c42c292015-02-25 12:02:49 +0000317 flags |= MAP_FIXED;
318 }
319
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000320 if (use_ashmem) {
321 if (!kIsTargetBuild) {
Bilyan Borisov3071f802016-03-31 17:15:53 +0100322 // When not on Android (either host or assuming a linux target) ashmem is faked using
323 // files in /tmp. Ensure that such files won't fail due to ulimit restrictions. If they
324 // will then use a regular mmap.
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000325 struct rlimit rlimit_fsize;
326 CHECK_EQ(getrlimit(RLIMIT_FSIZE, &rlimit_fsize), 0);
327 use_ashmem = (rlimit_fsize.rlim_cur == RLIM_INFINITY) ||
328 (page_aligned_byte_count < rlimit_fsize.rlim_cur);
329 }
330 }
331
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700332 unique_fd fd;
333
334
Ian Rogers997f0f92014-06-21 22:58:05 -0700335 if (use_ashmem) {
336 // android_os_Debug.cpp read_mapinfo assumes all ashmem regions associated with the VM are
337 // prefixed "dalvik-".
338 std::string debug_friendly_name("dalvik-");
339 debug_friendly_name += name;
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700340 fd.reset(ashmem_create_region(debug_friendly_name.c_str(), page_aligned_byte_count));
Richard Uhlera5c61bf2016-10-24 15:54:44 +0100341
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700342 if (fd.get() == -1) {
Richard Uhlera5c61bf2016-10-24 15:54:44 +0100343 // We failed to create the ashmem region. Print a warning, but continue
344 // anyway by creating a true anonymous mmap with an fd of -1. It is
345 // better to use an unlabelled anonymous map than to fail to create a
346 // map at all.
347 PLOG(WARNING) << "ashmem_create_region failed for '" << name << "'";
348 } else {
349 // We succeeded in creating the ashmem region. Use the created ashmem
350 // region as backing for the mmap.
351 flags &= ~MAP_ANONYMOUS;
Ian Rogers997f0f92014-06-21 22:58:05 -0700352 }
Ian Rogers997f0f92014-06-21 22:58:05 -0700353 }
Stuart Monteith8dba5aa2014-03-12 12:44:01 +0000354
Brian Carlstromaa94cf32014-03-23 23:47:25 -0700355 // We need to store and potentially set an error number for pretty printing of errors
356 int saved_errno = 0;
357
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800358 void* actual = MapInternal(expected_ptr,
359 page_aligned_byte_count,
360 prot,
361 flags,
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700362 fd.get(),
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800363 0,
364 low_4gb);
Brian Carlstromaa94cf32014-03-23 23:47:25 -0700365 saved_errno = errno;
Stuart Monteith8dba5aa2014-03-12 12:44:01 +0000366
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700367 if (actual == MAP_FAILED) {
Mathieu Chartier83723ae2016-02-24 10:09:23 -0800368 if (error_msg != nullptr) {
Andreas Gampe7fa55782016-06-15 17:45:01 -0700369 if (kIsDebugBuild || VLOG_IS_ON(oat)) {
370 PrintFileToLog("/proc/self/maps", LogSeverity::WARNING);
371 }
Brian Carlstromaa94cf32014-03-23 23:47:25 -0700372
Mathieu Chartier83723ae2016-02-24 10:09:23 -0800373 *error_msg = StringPrintf("Failed anonymous mmap(%p, %zd, 0x%x, 0x%x, %d, 0): %s. "
374 "See process maps in the log.",
375 expected_ptr,
376 page_aligned_byte_count,
377 prot,
378 flags,
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700379 fd.get(),
Mathieu Chartier83723ae2016-02-24 10:09:23 -0800380 strerror(saved_errno));
381 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700382 return nullptr;
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700383 }
Jim_Guoa62a5882014-04-28 11:11:57 +0800384 if (!CheckMapRequest(expected_ptr, actual, page_aligned_byte_count, error_msg)) {
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700385 return nullptr;
386 }
Ian Rogers13735952014-10-08 12:43:28 -0700387 return new MemMap(name, reinterpret_cast<uint8_t*>(actual), byte_count, actual,
Mathieu Chartier01d4b502015-06-12 17:32:31 -0700388 page_aligned_byte_count, prot, reuse);
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700389}
390
David Srbecky1baabf02015-06-16 17:12:34 +0000391MemMap* MemMap::MapDummy(const char* name, uint8_t* addr, size_t byte_count) {
392 if (byte_count == 0) {
393 return new MemMap(name, nullptr, 0, nullptr, 0, 0, false);
394 }
395 const size_t page_aligned_byte_count = RoundUp(byte_count, kPageSize);
396 return new MemMap(name, addr, byte_count, addr, page_aligned_byte_count, 0, true /* reuse */);
397}
398
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800399MemMap* MemMap::MapFileAtAddress(uint8_t* expected_ptr,
400 size_t byte_count,
401 int prot,
402 int flags,
403 int fd,
404 off_t start,
405 bool low_4gb,
406 bool reuse,
407 const char* filename,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700408 std::string* error_msg) {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700409 CHECK_NE(0, prot);
410 CHECK_NE(0, flags & (MAP_SHARED | MAP_PRIVATE));
Narayan Kamathb89c3da2014-08-21 17:38:09 +0100411
412 // Note that we do not allow MAP_FIXED unless reuse == true, i.e we
413 // expect his mapping to be contained within an existing map.
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700414 if (reuse) {
415 // reuse means it is okay that it overlaps an existing page mapping.
416 // Only use this if you actually made the page reservation yourself.
Jim_Guoa62a5882014-04-28 11:11:57 +0800417 CHECK(expected_ptr != nullptr);
Mathieu Chartier66b1d572017-02-10 18:41:39 -0800418 DCHECK(error_msg != nullptr);
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800419 DCHECK(ContainedWithinExistingMap(expected_ptr, byte_count, error_msg))
420 << ((error_msg != nullptr) ? *error_msg : std::string());
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700421 flags |= MAP_FIXED;
422 } else {
423 CHECK_EQ(0, flags & MAP_FIXED);
Narayan Kamathb89c3da2014-08-21 17:38:09 +0100424 // Don't bother checking for an overlapping region here. We'll
425 // check this if required after the fact inside CheckMapRequest.
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700426 }
427
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700428 if (byte_count == 0) {
Jim_Guoa62a5882014-04-28 11:11:57 +0800429 return new MemMap(filename, nullptr, 0, nullptr, 0, prot, false);
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700430 }
Ian Rogersf8adc602013-04-18 17:06:19 -0700431 // Adjust 'offset' to be page-aligned as required by mmap.
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700432 int page_offset = start % kPageSize;
433 off_t page_aligned_offset = start - page_offset;
Ian Rogersf8adc602013-04-18 17:06:19 -0700434 // Adjust 'byte_count' to be page-aligned as we will map this anyway.
Elliott Hughesecd3a6f2012-06-06 18:16:37 -0700435 size_t page_aligned_byte_count = RoundUp(byte_count + page_offset, kPageSize);
Jim_Guoa62a5882014-04-28 11:11:57 +0800436 // The 'expected_ptr' is modified (if specified, ie non-null) to be page aligned to the file but
437 // not necessarily to virtual memory. mmap will page align 'expected' for us.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700438 uint8_t* page_aligned_expected =
439 (expected_ptr == nullptr) ? nullptr : (expected_ptr - page_offset);
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700440
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700441 size_t redzone_size = 0;
442 if (RUNNING_ON_MEMORY_TOOL && kMemoryToolAddsRedzones && expected_ptr == nullptr) {
443 redzone_size = kPageSize;
444 page_aligned_byte_count += redzone_size;
445 }
446
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800447 uint8_t* actual = reinterpret_cast<uint8_t*>(MapInternal(page_aligned_expected,
448 page_aligned_byte_count,
449 prot,
450 flags,
451 fd,
452 page_aligned_offset,
453 low_4gb));
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700454 if (actual == MAP_FAILED) {
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800455 if (error_msg != nullptr) {
456 auto saved_errno = errno;
Brian Carlstromaa94cf32014-03-23 23:47:25 -0700457
Andreas Gampe7ec09042016-04-01 17:20:49 -0700458 if (kIsDebugBuild || VLOG_IS_ON(oat)) {
459 PrintFileToLog("/proc/self/maps", LogSeverity::WARNING);
460 }
Brian Carlstromaa94cf32014-03-23 23:47:25 -0700461
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800462 *error_msg = StringPrintf("mmap(%p, %zd, 0x%x, 0x%x, %d, %" PRId64
463 ") of file '%s' failed: %s. See process maps in the log.",
464 page_aligned_expected, page_aligned_byte_count, prot, flags, fd,
465 static_cast<int64_t>(page_aligned_offset), filename,
466 strerror(saved_errno));
467 }
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700468 return nullptr;
469 }
Jim_Guoa62a5882014-04-28 11:11:57 +0800470 if (!CheckMapRequest(expected_ptr, actual, page_aligned_byte_count, error_msg)) {
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700471 return nullptr;
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700472 }
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700473 if (redzone_size != 0) {
474 const uint8_t *real_start = actual + page_offset;
475 const uint8_t *real_end = actual + page_offset + byte_count;
476 const uint8_t *mapping_end = actual + page_aligned_byte_count;
477
478 MEMORY_TOOL_MAKE_NOACCESS(actual, real_start - actual);
479 MEMORY_TOOL_MAKE_NOACCESS(real_end, mapping_end - real_end);
480 page_aligned_byte_count -= redzone_size;
481 }
482
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800483 return new MemMap(filename, actual + page_offset, byte_count, actual, page_aligned_byte_count,
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700484 prot, reuse, redzone_size);
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700485}
486
487MemMap::~MemMap() {
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700488 if (base_begin_ == nullptr && base_size_ == 0) {
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700489 return;
490 }
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700491
492 // Unlike Valgrind, AddressSanitizer requires that all manually poisoned memory is unpoisoned
493 // before it is returned to the system.
494 if (redzone_size_ != 0) {
495 MEMORY_TOOL_MAKE_UNDEFINED(
496 reinterpret_cast<char*>(base_begin_) + base_size_ - redzone_size_,
497 redzone_size_);
498 }
499
Jim_Guoa62a5882014-04-28 11:11:57 +0800500 if (!reuse_) {
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700501 MEMORY_TOOL_MAKE_UNDEFINED(base_begin_, base_size_);
Jim_Guoa62a5882014-04-28 11:11:57 +0800502 int result = munmap(base_begin_, base_size_);
503 if (result == -1) {
Orion Hodsondbd05fe2017-08-10 11:41:35 +0100504 PLOG(FATAL) << "munmap failed";
Jim_Guoa62a5882014-04-28 11:11:57 +0800505 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700506 }
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700507
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700508 // Remove it from gMaps.
David Sehr1b14fb82017-02-01 10:42:11 -0800509 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700510 bool found = false;
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700511 DCHECK(gMaps != nullptr);
512 for (auto it = gMaps->lower_bound(base_begin_), end = gMaps->end();
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700513 it != end && it->first == base_begin_; ++it) {
514 if (it->second == this) {
515 found = true;
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700516 gMaps->erase(it);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700517 break;
518 }
519 }
520 CHECK(found) << "MemMap not found";
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700521}
522
Ian Rogers13735952014-10-08 12:43:28 -0700523MemMap::MemMap(const std::string& name, uint8_t* begin, size_t size, void* base_begin,
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700524 size_t base_size, int prot, bool reuse, size_t redzone_size)
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700525 : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size),
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700526 prot_(prot), reuse_(reuse), redzone_size_(redzone_size) {
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700527 if (size_ == 0) {
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700528 CHECK(begin_ == nullptr);
529 CHECK(base_begin_ == nullptr);
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700530 CHECK_EQ(base_size_, 0U);
531 } else {
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700532 CHECK(begin_ != nullptr);
533 CHECK(base_begin_ != nullptr);
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700534 CHECK_NE(base_size_, 0U);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700535
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700536 // Add it to gMaps.
David Sehr1b14fb82017-02-01 10:42:11 -0800537 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700538 DCHECK(gMaps != nullptr);
539 gMaps->insert(std::make_pair(base_begin_, this));
Brian Carlstrom9004cb62013-07-26 15:48:31 -0700540 }
Andreas Gampec8ccf682014-09-29 20:07:43 -0700541}
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700542
Orion Hodsondbd05fe2017-08-10 11:41:35 +0100543MemMap* MemMap::RemapAtEnd(uint8_t* new_end, const char* tail_name, int tail_prot,
544 std::string* error_msg, bool use_ashmem) {
Nicolas Geoffray58a73d22016-11-29 21:49:43 +0000545 use_ashmem = use_ashmem && !kIsTargetLinux;
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700546 DCHECK_GE(new_end, Begin());
547 DCHECK_LE(new_end, End());
Ian Rogers13735952014-10-08 12:43:28 -0700548 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_);
Roland Levillain14d90572015-07-16 10:52:26 +0100549 DCHECK_ALIGNED(begin_, kPageSize);
550 DCHECK_ALIGNED(base_begin_, kPageSize);
551 DCHECK_ALIGNED(reinterpret_cast<uint8_t*>(base_begin_) + base_size_, kPageSize);
552 DCHECK_ALIGNED(new_end, kPageSize);
Ian Rogers13735952014-10-08 12:43:28 -0700553 uint8_t* old_end = begin_ + size_;
554 uint8_t* old_base_end = reinterpret_cast<uint8_t*>(base_begin_) + base_size_;
555 uint8_t* new_base_end = new_end;
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700556 DCHECK_LE(new_base_end, old_base_end);
557 if (new_base_end == old_base_end) {
Jim_Guoa62a5882014-04-28 11:11:57 +0800558 return new MemMap(tail_name, nullptr, 0, nullptr, 0, tail_prot, false);
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700559 }
Ian Rogers13735952014-10-08 12:43:28 -0700560 size_ = new_end - reinterpret_cast<uint8_t*>(begin_);
561 base_size_ = new_base_end - reinterpret_cast<uint8_t*>(base_begin_);
562 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_);
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700563 size_t tail_size = old_end - new_end;
Ian Rogers13735952014-10-08 12:43:28 -0700564 uint8_t* tail_base_begin = new_base_end;
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700565 size_t tail_base_size = old_base_end - new_base_end;
566 DCHECK_EQ(tail_base_begin + tail_base_size, old_base_end);
Roland Levillain14d90572015-07-16 10:52:26 +0100567 DCHECK_ALIGNED(tail_base_size, kPageSize);
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700568
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700569 unique_fd fd;
Orion Hodsondbd05fe2017-08-10 11:41:35 +0100570 int flags = MAP_PRIVATE | MAP_ANONYMOUS;
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000571 if (use_ashmem) {
572 // android_os_Debug.cpp read_mapinfo assumes all ashmem regions associated with the VM are
573 // prefixed "dalvik-".
574 std::string debug_friendly_name("dalvik-");
575 debug_friendly_name += tail_name;
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700576 fd.reset(ashmem_create_region(debug_friendly_name.c_str(), tail_base_size));
Orion Hodsondbd05fe2017-08-10 11:41:35 +0100577 flags = MAP_PRIVATE | MAP_FIXED;
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700578 if (fd.get() == -1) {
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000579 *error_msg = StringPrintf("ashmem_create_region failed for '%s': %s",
580 tail_name, strerror(errno));
581 return nullptr;
582 }
583 }
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700584
585 MEMORY_TOOL_MAKE_UNDEFINED(tail_base_begin, tail_base_size);
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700586 // Unmap/map the tail region.
587 int result = munmap(tail_base_begin, tail_base_size);
588 if (result == -1) {
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800589 PrintFileToLog("/proc/self/maps", LogSeverity::WARNING);
590 *error_msg = StringPrintf("munmap(%p, %zd) failed for '%s'. See process maps in the log.",
591 tail_base_begin, tail_base_size, name_.c_str());
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700592 return nullptr;
593 }
594 // Don't cause memory allocation between the munmap and the mmap
595 // calls. Otherwise, libc (or something else) might take this memory
596 // region. Note this isn't perfect as there's no way to prevent
597 // other threads to try to take this memory region here.
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700598 uint8_t* actual = reinterpret_cast<uint8_t*>(mmap(tail_base_begin,
599 tail_base_size,
600 tail_prot,
601 flags,
602 fd.get(),
603 0));
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700604 if (actual == MAP_FAILED) {
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800605 PrintFileToLog("/proc/self/maps", LogSeverity::WARNING);
606 *error_msg = StringPrintf("anonymous mmap(%p, %zd, 0x%x, 0x%x, %d, 0) failed. See process "
607 "maps in the log.", tail_base_begin, tail_base_size, tail_prot, flags,
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700608 fd.get());
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700609 return nullptr;
610 }
Jim_Guoa62a5882014-04-28 11:11:57 +0800611 return new MemMap(tail_name, actual, tail_size, actual, tail_base_size, tail_prot, false);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700612}
Logan Chiend88fa262012-06-06 15:23:32 +0800613
Ian Rogersc5f17732014-06-05 20:48:42 -0700614void MemMap::MadviseDontNeedAndZero() {
615 if (base_begin_ != nullptr || base_size_ != 0) {
616 if (!kMadviseZeroes) {
617 memset(base_begin_, 0, base_size_);
618 }
619 int result = madvise(base_begin_, base_size_, MADV_DONTNEED);
620 if (result == -1) {
621 PLOG(WARNING) << "madvise failed";
622 }
623 }
624}
625
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000626bool MemMap::Sync() {
Hiroshi Yamauchi29ab3602016-03-08 15:17:21 -0800627 bool result;
628 if (redzone_size_ != 0) {
629 // To avoid valgrind errors, temporarily lift the lower-end noaccess protection before passing
630 // it to msync() as it only accepts page-aligned base address, and exclude the higher-end
631 // noaccess protection from the msync range. b/27552451.
632 uint8_t* base_begin = reinterpret_cast<uint8_t*>(base_begin_);
633 MEMORY_TOOL_MAKE_DEFINED(base_begin, begin_ - base_begin);
634 result = msync(BaseBegin(), End() - base_begin, MS_SYNC) == 0;
635 MEMORY_TOOL_MAKE_NOACCESS(base_begin, begin_ - base_begin);
636 } else {
637 result = msync(BaseBegin(), BaseSize(), MS_SYNC) == 0;
638 }
639 return result;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000640}
641
Logan Chiend88fa262012-06-06 15:23:32 +0800642bool MemMap::Protect(int prot) {
Hiroshi Yamauchi4fb5df82014-03-13 15:10:27 -0700643 if (base_begin_ == nullptr && base_size_ == 0) {
Ian Rogers1c849e52012-06-28 14:00:33 -0700644 prot_ = prot;
Logan Chiend88fa262012-06-06 15:23:32 +0800645 return true;
646 }
647
648 if (mprotect(base_begin_, base_size_, prot) == 0) {
Ian Rogers1c849e52012-06-28 14:00:33 -0700649 prot_ = prot;
Logan Chiend88fa262012-06-06 15:23:32 +0800650 return true;
651 }
652
Shih-wei Liaoa060ed92012-06-07 09:25:28 -0700653 PLOG(ERROR) << "mprotect(" << reinterpret_cast<void*>(base_begin_) << ", " << base_size_ << ", "
654 << prot << ") failed";
Logan Chiend88fa262012-06-06 15:23:32 +0800655 return false;
656}
657
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700658bool MemMap::CheckNoGaps(MemMap* begin_map, MemMap* end_map) {
David Sehr1b14fb82017-02-01 10:42:11 -0800659 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700660 CHECK(begin_map != nullptr);
661 CHECK(end_map != nullptr);
662 CHECK(HasMemMap(begin_map));
663 CHECK(HasMemMap(end_map));
664 CHECK_LE(begin_map->BaseBegin(), end_map->BaseBegin());
665 MemMap* map = begin_map;
666 while (map->BaseBegin() != end_map->BaseBegin()) {
667 MemMap* next_map = GetLargestMemMapAt(map->BaseEnd());
668 if (next_map == nullptr) {
669 // Found a gap.
670 return false;
671 }
672 map = next_map;
673 }
674 return true;
675}
676
Vladimir Marko17a924a2015-05-08 15:17:32 +0100677void MemMap::DumpMaps(std::ostream& os, bool terse) {
David Sehr1b14fb82017-02-01 10:42:11 -0800678 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
Vladimir Marko17a924a2015-05-08 15:17:32 +0100679 DumpMapsLocked(os, terse);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700680}
681
Vladimir Marko17a924a2015-05-08 15:17:32 +0100682void MemMap::DumpMapsLocked(std::ostream& os, bool terse) {
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700683 const auto& mem_maps = *gMaps;
Vladimir Marko17a924a2015-05-08 15:17:32 +0100684 if (!terse) {
685 os << mem_maps;
686 return;
687 }
688
689 // Terse output example:
690 // [MemMap: 0x409be000+0x20P~0x11dP+0x20P~0x61cP+0x20P prot=0x3 LinearAlloc]
691 // [MemMap: 0x451d6000+0x6bP(3) prot=0x3 large object space allocation]
692 // The details:
693 // "+0x20P" means 0x20 pages taken by a single mapping,
694 // "~0x11dP" means a gap of 0x11d pages,
695 // "+0x6bP(3)" means 3 mappings one after another, together taking 0x6b pages.
696 os << "MemMap:" << std::endl;
697 for (auto it = mem_maps.begin(), maps_end = mem_maps.end(); it != maps_end;) {
698 MemMap* map = it->second;
699 void* base = it->first;
700 CHECK_EQ(base, map->BaseBegin());
701 os << "[MemMap: " << base;
702 ++it;
703 // Merge consecutive maps with the same protect flags and name.
704 constexpr size_t kMaxGaps = 9;
705 size_t num_gaps = 0;
706 size_t num = 1u;
707 size_t size = map->BaseSize();
Roland Levillain14d90572015-07-16 10:52:26 +0100708 CHECK_ALIGNED(size, kPageSize);
Vladimir Marko17a924a2015-05-08 15:17:32 +0100709 void* end = map->BaseEnd();
710 while (it != maps_end &&
711 it->second->GetProtect() == map->GetProtect() &&
712 it->second->GetName() == map->GetName() &&
713 (it->second->BaseBegin() == end || num_gaps < kMaxGaps)) {
714 if (it->second->BaseBegin() != end) {
715 ++num_gaps;
716 os << "+0x" << std::hex << (size / kPageSize) << "P";
717 if (num != 1u) {
718 os << "(" << std::dec << num << ")";
719 }
720 size_t gap =
721 reinterpret_cast<uintptr_t>(it->second->BaseBegin()) - reinterpret_cast<uintptr_t>(end);
Roland Levillain14d90572015-07-16 10:52:26 +0100722 CHECK_ALIGNED(gap, kPageSize);
Vladimir Marko17a924a2015-05-08 15:17:32 +0100723 os << "~0x" << std::hex << (gap / kPageSize) << "P";
724 num = 0u;
725 size = 0u;
726 }
Roland Levillain14d90572015-07-16 10:52:26 +0100727 CHECK_ALIGNED(it->second->BaseSize(), kPageSize);
Vladimir Marko17a924a2015-05-08 15:17:32 +0100728 ++num;
729 size += it->second->BaseSize();
730 end = it->second->BaseEnd();
731 ++it;
732 }
733 os << "+0x" << std::hex << (size / kPageSize) << "P";
734 if (num != 1u) {
735 os << "(" << std::dec << num << ")";
736 }
737 os << " prot=0x" << std::hex << map->GetProtect() << " " << map->GetName() << "]" << std::endl;
738 }
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700739}
740
741bool MemMap::HasMemMap(MemMap* map) {
742 void* base_begin = map->BaseBegin();
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700743 for (auto it = gMaps->lower_bound(base_begin), end = gMaps->end();
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700744 it != end && it->first == base_begin; ++it) {
745 if (it->second == map) {
746 return true;
747 }
748 }
749 return false;
750}
751
752MemMap* MemMap::GetLargestMemMapAt(void* address) {
753 size_t largest_size = 0;
754 MemMap* largest_map = nullptr;
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700755 DCHECK(gMaps != nullptr);
756 for (auto it = gMaps->lower_bound(address), end = gMaps->end();
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700757 it != end && it->first == address; ++it) {
758 MemMap* map = it->second;
759 CHECK(map != nullptr);
760 if (largest_size < map->BaseSize()) {
761 largest_size = map->BaseSize();
762 largest_map = map;
763 }
764 }
765 return largest_map;
766}
767
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700768void MemMap::Init() {
David Sehr1b14fb82017-02-01 10:42:11 -0800769 if (mem_maps_lock_ != nullptr) {
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700770 // dex2oat calls MemMap::Init twice since its needed before the runtime is created.
David Sehr1b14fb82017-02-01 10:42:11 -0800771 return;
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700772 }
David Sehr1b14fb82017-02-01 10:42:11 -0800773 mem_maps_lock_ = new std::mutex();
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700774 // Not for thread safety, but for the annotation that gMaps is GUARDED_BY(mem_maps_lock_).
David Sehr1b14fb82017-02-01 10:42:11 -0800775 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700776 DCHECK(gMaps == nullptr);
777 gMaps = new Maps;
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700778}
779
780void MemMap::Shutdown() {
David Sehr1b14fb82017-02-01 10:42:11 -0800781 if (mem_maps_lock_ == nullptr) {
782 // If MemMap::Shutdown is called more than once, there is no effect.
783 return;
784 }
785 {
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700786 // Not for thread safety, but for the annotation that gMaps is GUARDED_BY(mem_maps_lock_).
David Sehr1b14fb82017-02-01 10:42:11 -0800787 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700788 DCHECK(gMaps != nullptr);
789 delete gMaps;
790 gMaps = nullptr;
David Sehr1b14fb82017-02-01 10:42:11 -0800791 }
792 delete mem_maps_lock_;
793 mem_maps_lock_ = nullptr;
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700794}
795
Mathieu Chartier379d09f2015-01-08 11:28:13 -0800796void MemMap::SetSize(size_t new_size) {
797 if (new_size == base_size_) {
798 return;
799 }
800 CHECK_ALIGNED(new_size, kPageSize);
801 CHECK_EQ(base_size_, size_) << "Unsupported";
802 CHECK_LE(new_size, base_size_);
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700803 MEMORY_TOOL_MAKE_UNDEFINED(
804 reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(BaseBegin()) +
805 new_size),
806 base_size_ - new_size);
Mathieu Chartier379d09f2015-01-08 11:28:13 -0800807 CHECK_EQ(munmap(reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(BaseBegin()) + new_size),
808 base_size_ - new_size), 0) << new_size << " " << base_size_;
809 base_size_ = new_size;
810 size_ = new_size;
811}
812
Andreas Gampe651ba592017-06-14 14:41:33 -0700813void* MemMap::MapInternalArtLow4GBAllocator(size_t length,
814 int prot,
815 int flags,
816 int fd,
817 off_t offset) {
818#if USE_ART_LOW_4G_ALLOCATOR
819 void* actual = MAP_FAILED;
820
821 bool first_run = true;
822
823 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
824 for (uintptr_t ptr = next_mem_pos_; ptr < 4 * GB; ptr += kPageSize) {
825 // Use gMaps as an optimization to skip over large maps.
826 // Find the first map which is address > ptr.
827 auto it = gMaps->upper_bound(reinterpret_cast<void*>(ptr));
828 if (it != gMaps->begin()) {
829 auto before_it = it;
830 --before_it;
831 // Start at the end of the map before the upper bound.
832 ptr = std::max(ptr, reinterpret_cast<uintptr_t>(before_it->second->BaseEnd()));
833 CHECK_ALIGNED(ptr, kPageSize);
834 }
835 while (it != gMaps->end()) {
836 // How much space do we have until the next map?
837 size_t delta = reinterpret_cast<uintptr_t>(it->first) - ptr;
838 // If the space may be sufficient, break out of the loop.
839 if (delta >= length) {
840 break;
841 }
842 // Otherwise, skip to the end of the map.
843 ptr = reinterpret_cast<uintptr_t>(it->second->BaseEnd());
844 CHECK_ALIGNED(ptr, kPageSize);
845 ++it;
846 }
847
848 // Try to see if we get lucky with this address since none of the ART maps overlap.
849 actual = TryMemMapLow4GB(reinterpret_cast<void*>(ptr), length, prot, flags, fd, offset);
850 if (actual != MAP_FAILED) {
851 next_mem_pos_ = reinterpret_cast<uintptr_t>(actual) + length;
852 return actual;
853 }
854
855 if (4U * GB - ptr < length) {
856 // Not enough memory until 4GB.
857 if (first_run) {
858 // Try another time from the bottom;
859 ptr = LOW_MEM_START - kPageSize;
860 first_run = false;
861 continue;
862 } else {
863 // Second try failed.
864 break;
865 }
866 }
867
868 uintptr_t tail_ptr;
869
870 // Check pages are free.
871 bool safe = true;
872 for (tail_ptr = ptr; tail_ptr < ptr + length; tail_ptr += kPageSize) {
873 if (msync(reinterpret_cast<void*>(tail_ptr), kPageSize, 0) == 0) {
874 safe = false;
875 break;
876 } else {
877 DCHECK_EQ(errno, ENOMEM);
878 }
879 }
880
881 next_mem_pos_ = tail_ptr; // update early, as we break out when we found and mapped a region
882
883 if (safe == true) {
884 actual = TryMemMapLow4GB(reinterpret_cast<void*>(ptr), length, prot, flags, fd, offset);
885 if (actual != MAP_FAILED) {
886 return actual;
887 }
888 } else {
889 // Skip over last page.
890 ptr = tail_ptr;
891 }
892 }
893
894 if (actual == MAP_FAILED) {
895 LOG(ERROR) << "Could not find contiguous low-memory space.";
896 errno = ENOMEM;
897 }
898 return actual;
899#else
900 UNUSED(length, prot, flags, fd, offset);
901 LOG(FATAL) << "Unreachable";
902 UNREACHABLE();
903#endif
904}
905
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800906void* MemMap::MapInternal(void* addr,
907 size_t length,
908 int prot,
909 int flags,
910 int fd,
911 off_t offset,
912 bool low_4gb) {
913#ifdef __LP64__
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800914 // When requesting low_4g memory and having an expectation, the requested range should fit into
915 // 4GB.
916 if (low_4gb && (
917 // Start out of bounds.
918 (reinterpret_cast<uintptr_t>(addr) >> 32) != 0 ||
919 // End out of bounds. For simplicity, this will fail for the last page of memory.
920 ((reinterpret_cast<uintptr_t>(addr) + length) >> 32) != 0)) {
921 LOG(ERROR) << "The requested address space (" << addr << ", "
922 << reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(addr) + length)
923 << ") cannot fit in low_4gb";
924 return MAP_FAILED;
925 }
926#else
927 UNUSED(low_4gb);
928#endif
929 DCHECK_ALIGNED(length, kPageSize);
930 if (low_4gb) {
931 DCHECK_EQ(flags & MAP_FIXED, 0);
932 }
933 // TODO:
934 // A page allocator would be a useful abstraction here, as
935 // 1) It is doubtful that MAP_32BIT on x86_64 is doing the right job for us
936 void* actual = MAP_FAILED;
937#if USE_ART_LOW_4G_ALLOCATOR
938 // MAP_32BIT only available on x86_64.
939 if (low_4gb && addr == nullptr) {
Andreas Gampe651ba592017-06-14 14:41:33 -0700940 // The linear-scan allocator has an issue when executable pages are denied (e.g., by selinux
941 // policies in sensitive processes). In that case, the error code will still be ENOMEM. So
942 // the allocator will scan all low 4GB twice, and still fail. This is *very* slow.
943 //
944 // To avoid the issue, always map non-executable first, and mprotect if necessary.
945 const int orig_prot = prot;
946 const int prot_non_exec = prot & ~PROT_EXEC;
947 actual = MapInternalArtLow4GBAllocator(length, prot_non_exec, flags, fd, offset);
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800948
949 if (actual == MAP_FAILED) {
Andreas Gampe651ba592017-06-14 14:41:33 -0700950 return MAP_FAILED;
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800951 }
Andreas Gampe651ba592017-06-14 14:41:33 -0700952
953 // See if we need to remap with the executable bit now.
954 if (orig_prot != prot_non_exec) {
955 if (mprotect(actual, length, orig_prot) != 0) {
956 PLOG(ERROR) << "Could not protect to requested prot: " << orig_prot;
957 munmap(actual, length);
958 errno = ENOMEM;
959 return MAP_FAILED;
960 }
961 }
962 return actual;
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800963 }
964
Andreas Gampe651ba592017-06-14 14:41:33 -0700965 actual = mmap(addr, length, prot, flags, fd, offset);
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800966#else
967#if defined(__LP64__)
968 if (low_4gb && addr == nullptr) {
969 flags |= MAP_32BIT;
970 }
971#endif
972 actual = mmap(addr, length, prot, flags, fd, offset);
973#endif
974 return actual;
975}
976
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800977std::ostream& operator<<(std::ostream& os, const MemMap& mem_map) {
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700978 os << StringPrintf("[MemMap: %p-%p prot=0x%x %s]",
979 mem_map.BaseBegin(), mem_map.BaseEnd(), mem_map.GetProtect(),
980 mem_map.GetName().c_str());
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800981 return os;
982}
983
Hiroshi Yamauchi6edb9ae2016-02-08 14:18:21 -0800984void MemMap::TryReadable() {
985 if (base_begin_ == nullptr && base_size_ == 0) {
986 return;
987 }
988 CHECK_NE(prot_ & PROT_READ, 0);
989 volatile uint8_t* begin = reinterpret_cast<volatile uint8_t*>(base_begin_);
990 volatile uint8_t* end = begin + base_size_;
991 DCHECK(IsAligned<kPageSize>(begin));
992 DCHECK(IsAligned<kPageSize>(end));
993 // Read the first byte of each page. Use volatile to prevent the compiler from optimizing away the
994 // reads.
995 for (volatile uint8_t* ptr = begin; ptr < end; ptr += kPageSize) {
996 // This read could fault if protection wasn't set correctly.
997 uint8_t value = *ptr;
998 UNUSED(value);
999 }
1000}
1001
Mathieu Chartier6e6078a2016-10-24 15:45:41 -07001002void ZeroAndReleasePages(void* address, size_t length) {
Mathieu Chartier7c928f02017-06-05 17:23:44 -07001003 if (length == 0) {
1004 return;
1005 }
Mathieu Chartier6e6078a2016-10-24 15:45:41 -07001006 uint8_t* const mem_begin = reinterpret_cast<uint8_t*>(address);
1007 uint8_t* const mem_end = mem_begin + length;
1008 uint8_t* const page_begin = AlignUp(mem_begin, kPageSize);
1009 uint8_t* const page_end = AlignDown(mem_end, kPageSize);
1010 if (!kMadviseZeroes || page_begin >= page_end) {
1011 // No possible area to madvise.
1012 std::fill(mem_begin, mem_end, 0);
1013 } else {
1014 // Spans one or more pages.
1015 DCHECK_LE(mem_begin, page_begin);
1016 DCHECK_LE(page_begin, page_end);
1017 DCHECK_LE(page_end, mem_end);
1018 std::fill(mem_begin, page_begin, 0);
1019 CHECK_NE(madvise(page_begin, page_end - page_begin, MADV_DONTNEED), -1) << "madvise failed";
1020 std::fill(page_end, mem_end, 0);
1021 }
1022}
1023
Hiroshi Yamauchi3c3c4a12017-02-21 16:49:59 -08001024void MemMap::AlignBy(size_t size) {
1025 CHECK_EQ(begin_, base_begin_) << "Unsupported";
1026 CHECK_EQ(size_, base_size_) << "Unsupported";
1027 CHECK_GT(size, static_cast<size_t>(kPageSize));
1028 CHECK_ALIGNED(size, kPageSize);
1029 if (IsAlignedParam(reinterpret_cast<uintptr_t>(base_begin_), size) &&
1030 IsAlignedParam(base_size_, size)) {
1031 // Already aligned.
1032 return;
1033 }
1034 uint8_t* base_begin = reinterpret_cast<uint8_t*>(base_begin_);
1035 uint8_t* base_end = base_begin + base_size_;
1036 uint8_t* aligned_base_begin = AlignUp(base_begin, size);
1037 uint8_t* aligned_base_end = AlignDown(base_end, size);
1038 CHECK_LE(base_begin, aligned_base_begin);
1039 CHECK_LE(aligned_base_end, base_end);
1040 size_t aligned_base_size = aligned_base_end - aligned_base_begin;
1041 CHECK_LT(aligned_base_begin, aligned_base_end)
1042 << "base_begin = " << reinterpret_cast<void*>(base_begin)
1043 << " base_end = " << reinterpret_cast<void*>(base_end);
1044 CHECK_GE(aligned_base_size, size);
1045 // Unmap the unaligned parts.
1046 if (base_begin < aligned_base_begin) {
1047 MEMORY_TOOL_MAKE_UNDEFINED(base_begin, aligned_base_begin - base_begin);
1048 CHECK_EQ(munmap(base_begin, aligned_base_begin - base_begin), 0)
1049 << "base_begin=" << reinterpret_cast<void*>(base_begin)
1050 << " aligned_base_begin=" << reinterpret_cast<void*>(aligned_base_begin);
1051 }
1052 if (aligned_base_end < base_end) {
1053 MEMORY_TOOL_MAKE_UNDEFINED(aligned_base_end, base_end - aligned_base_end);
1054 CHECK_EQ(munmap(aligned_base_end, base_end - aligned_base_end), 0)
1055 << "base_end=" << reinterpret_cast<void*>(base_end)
1056 << " aligned_base_end=" << reinterpret_cast<void*>(aligned_base_end);
1057 }
1058 std::lock_guard<std::mutex> mu(*mem_maps_lock_);
1059 base_begin_ = aligned_base_begin;
1060 base_size_ = aligned_base_size;
1061 begin_ = aligned_base_begin;
1062 size_ = aligned_base_size;
Andreas Gampe0dfc3152017-04-24 07:58:06 -07001063 DCHECK(gMaps != nullptr);
Hiroshi Yamauchi3c3c4a12017-02-21 16:49:59 -08001064 if (base_begin < aligned_base_begin) {
Andreas Gampe0dfc3152017-04-24 07:58:06 -07001065 auto it = gMaps->find(base_begin);
1066 CHECK(it != gMaps->end()) << "MemMap not found";
1067 gMaps->erase(it);
1068 gMaps->insert(std::make_pair(base_begin_, this));
Hiroshi Yamauchi3c3c4a12017-02-21 16:49:59 -08001069 }
1070}
1071
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001072} // namespace art