| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1 | /* |
| 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 Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 19 | #include <inttypes.h> |
| Josh Gao | 0389cd5 | 2015-09-16 16:27:00 -0700 | [diff] [blame] | 20 | #include <stdlib.h> |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 21 | #include <sys/mman.h> // For the PROT_* and MAP_* constants. |
| 22 | #ifndef ANDROID_OS |
| 23 | #include <sys/resource.h> |
| 24 | #endif |
| Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 25 | |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 26 | #include <memory> |
| Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 27 | #include <sstream> |
| Elliott Hughes | ecd3a6f | 2012-06-06 18:16:37 -0700 | [diff] [blame] | 28 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 29 | #include "android-base/stringprintf.h" |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 30 | #include "android-base/unique_fd.h" |
| 31 | #include "backtrace/BacktraceMap.h" |
| 32 | #include "cutils/ashmem.h" |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 33 | |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 34 | #include "base/allocator.h" |
| 35 | #include "base/memory_tool.h" |
| 36 | #include "globals.h" |
| Elliott Hughes | e222ee0 | 2012-12-13 14:41:43 -0800 | [diff] [blame] | 37 | #include "utils.h" |
| 38 | |
| Elliott Hughes | 6c9c06d | 2011-11-07 16:43:47 -0800 | [diff] [blame] | 39 | |
| Ian Rogers | d6b6865 | 2014-06-23 14:07:03 -0700 | [diff] [blame] | 40 | #ifndef MAP_ANONYMOUS |
| 41 | #define MAP_ANONYMOUS MAP_ANON |
| 42 | #endif |
| 43 | |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 44 | namespace art { |
| 45 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 46 | using android::base::StringPrintf; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 47 | using android::base::unique_fd; |
| 48 | |
| 49 | using Maps = AllocationTrackingMultiMap<void*, MemMap*, kAllocatorTagMaps>; |
| 50 | |
| 51 | // All the non-empty MemMaps. Use a multimap as we do a reserve-and-divide (eg ElfMap::Load()). |
| 52 | static Maps* gMaps GUARDED_BY(MemMap::GetMemMapsLock()) = nullptr; |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 53 | |
| Christopher Ferris | 943af7d | 2014-01-16 12:41:46 -0800 | [diff] [blame] | 54 | static std::ostream& operator<<( |
| 55 | std::ostream& os, |
| 56 | std::pair<BacktraceMap::const_iterator, BacktraceMap::const_iterator> iters) { |
| 57 | for (BacktraceMap::const_iterator it = iters.first; it != iters.second; ++it) { |
| 58 | os << StringPrintf("0x%08x-0x%08x %c%c%c %s\n", |
| 59 | static_cast<uint32_t>(it->start), |
| 60 | static_cast<uint32_t>(it->end), |
| 61 | (it->flags & PROT_READ) ? 'r' : '-', |
| 62 | (it->flags & PROT_WRITE) ? 'w' : '-', |
| 63 | (it->flags & PROT_EXEC) ? 'x' : '-', it->name.c_str()); |
| Elliott Hughes | ecd3a6f | 2012-06-06 18:16:37 -0700 | [diff] [blame] | 64 | } |
| 65 | return os; |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 68 | std::ostream& operator<<(std::ostream& os, const Maps& mem_maps) { |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 69 | os << "MemMap:" << std::endl; |
| 70 | for (auto it = mem_maps.begin(); it != mem_maps.end(); ++it) { |
| 71 | void* base = it->first; |
| 72 | MemMap* map = it->second; |
| 73 | CHECK_EQ(base, map->BaseBegin()); |
| 74 | os << *map << std::endl; |
| 75 | } |
| 76 | return os; |
| 77 | } |
| 78 | |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 79 | std::mutex* MemMap::mem_maps_lock_ = nullptr; |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 80 | |
| Ian Rogers | c3ccc10 | 2014-06-25 11:52:14 -0700 | [diff] [blame] | 81 | #if USE_ART_LOW_4G_ALLOCATOR |
| Andreas Gampe | d8f26db | 2014-05-19 17:01:13 -0700 | [diff] [blame] | 82 | // Handling mem_map in 32b address range for 64b architectures that do not support MAP_32BIT. |
| 83 | |
| 84 | // The regular start of memory allocations. The first 64KB is protected by SELinux. |
| Andreas Gampe | 6bd621a | 2014-05-16 17:28:58 -0700 | [diff] [blame] | 85 | static constexpr uintptr_t LOW_MEM_START = 64 * KB; |
| Andreas Gampe | 7104cbf | 2014-03-21 11:44:43 -0700 | [diff] [blame] | 86 | |
| Andreas Gampe | d8f26db | 2014-05-19 17:01:13 -0700 | [diff] [blame] | 87 | // Generate random starting position. |
| 88 | // To not interfere with image position, take the image's address and only place it below. Current |
| 89 | // formula (sketch): |
| 90 | // |
| 91 | // ART_BASE_ADDR = 0001XXXXXXXXXXXXXXX |
| 92 | // ---------------------------------------- |
| 93 | // = 0000111111111111111 |
| 94 | // & ~(kPageSize - 1) =~0000000000000001111 |
| 95 | // ---------------------------------------- |
| 96 | // mask = 0000111111111110000 |
| 97 | // & random data = YYYYYYYYYYYYYYYYYYY |
| 98 | // ----------------------------------- |
| 99 | // tmp = 0000YYYYYYYYYYY0000 |
| 100 | // + LOW_MEM_START = 0000000000001000000 |
| 101 | // -------------------------------------- |
| 102 | // start |
| 103 | // |
| Josh Gao | 0389cd5 | 2015-09-16 16:27:00 -0700 | [diff] [blame] | 104 | // arc4random as an entropy source is exposed in Bionic, but not in glibc. When we |
| Andreas Gampe | d8f26db | 2014-05-19 17:01:13 -0700 | [diff] [blame] | 105 | // do not have Bionic, simply start with LOW_MEM_START. |
| 106 | |
| 107 | // Function is standalone so it can be tested somewhat in mem_map_test.cc. |
| 108 | #ifdef __BIONIC__ |
| 109 | uintptr_t CreateStartPos(uint64_t input) { |
| 110 | CHECK_NE(0, ART_BASE_ADDRESS); |
| 111 | |
| 112 | // Start with all bits below highest bit in ART_BASE_ADDRESS. |
| 113 | constexpr size_t leading_zeros = CLZ(static_cast<uint32_t>(ART_BASE_ADDRESS)); |
| 114 | constexpr uintptr_t mask_ones = (1 << (31 - leading_zeros)) - 1; |
| 115 | |
| 116 | // Lowest (usually 12) bits are not used, as aligned by page size. |
| 117 | constexpr uintptr_t mask = mask_ones & ~(kPageSize - 1); |
| 118 | |
| 119 | // Mask input data. |
| 120 | return (input & mask) + LOW_MEM_START; |
| 121 | } |
| 122 | #endif |
| 123 | |
| 124 | static uintptr_t GenerateNextMemPos() { |
| 125 | #ifdef __BIONIC__ |
| Josh Gao | 0389cd5 | 2015-09-16 16:27:00 -0700 | [diff] [blame] | 126 | uint64_t random_data; |
| 127 | arc4random_buf(&random_data, sizeof(random_data)); |
| 128 | return CreateStartPos(random_data); |
| Andreas Gampe | d8f26db | 2014-05-19 17:01:13 -0700 | [diff] [blame] | 129 | #else |
| Josh Gao | 0389cd5 | 2015-09-16 16:27:00 -0700 | [diff] [blame] | 130 | // No arc4random on host, see above. |
| Andreas Gampe | d8f26db | 2014-05-19 17:01:13 -0700 | [diff] [blame] | 131 | return LOW_MEM_START; |
| 132 | #endif |
| 133 | } |
| 134 | |
| 135 | // Initialize linear scan to random position. |
| 136 | uintptr_t MemMap::next_mem_pos_ = GenerateNextMemPos(); |
| Stuart Monteith | 8dba5aa | 2014-03-12 12:44:01 +0000 | [diff] [blame] | 137 | #endif |
| 138 | |
| Mathieu Chartier | 24a0fc8 | 2015-10-13 16:38:52 -0700 | [diff] [blame] | 139 | // Return true if the address range is contained in a single memory map by either reading |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 140 | // the gMaps variable or the /proc/self/map entry. |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 141 | bool MemMap::ContainedWithinExistingMap(uint8_t* ptr, size_t size, std::string* error_msg) { |
| Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 142 | uintptr_t begin = reinterpret_cast<uintptr_t>(ptr); |
| 143 | uintptr_t end = begin + size; |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 144 | |
| Mathieu Chartier | 24a0fc8 | 2015-10-13 16:38:52 -0700 | [diff] [blame] | 145 | // There is a suspicion that BacktraceMap::Create is occasionally missing maps. TODO: Investigate |
| 146 | // further. |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 147 | { |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 148 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 149 | for (auto& pair : *gMaps) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 150 | MemMap* const map = pair.second; |
| 151 | if (begin >= reinterpret_cast<uintptr_t>(map->Begin()) && |
| 152 | end <= reinterpret_cast<uintptr_t>(map->End())) { |
| 153 | return true; |
| 154 | } |
| 155 | } |
| 156 | } |
| 157 | |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 158 | std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(getpid(), true)); |
| Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 159 | if (map == nullptr) { |
| 160 | if (error_msg != nullptr) { |
| 161 | *error_msg = StringPrintf("Failed to build process map"); |
| 162 | } |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 163 | return false; |
| 164 | } |
| Christopher Ferris | 56f8b56 | 2016-06-16 23:19:36 -0700 | [diff] [blame] | 165 | |
| 166 | ScopedBacktraceMapIteratorLock lock(map.get()); |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 167 | for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) { |
| 168 | if ((begin >= it->start && begin < it->end) // start of new within old |
| 169 | && (end > it->start && end <= it->end)) { // end of new within old |
| 170 | return true; |
| 171 | } |
| 172 | } |
| Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 173 | if (error_msg != nullptr) { |
| 174 | PrintFileToLog("/proc/self/maps", LogSeverity::ERROR); |
| 175 | *error_msg = StringPrintf("Requested region 0x%08" PRIxPTR "-0x%08" PRIxPTR " does not overlap " |
| 176 | "any existing map. See process maps in the log.", begin, end); |
| 177 | } |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 178 | return false; |
| 179 | } |
| 180 | |
| 181 | // Return true if the address range does not conflict with any /proc/self/maps entry. |
| 182 | static bool CheckNonOverlapping(uintptr_t begin, |
| 183 | uintptr_t end, |
| 184 | std::string* error_msg) { |
| 185 | std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(getpid(), true)); |
| Christopher Ferris | 836572a | 2014-08-05 15:43:13 -0700 | [diff] [blame] | 186 | if (map.get() == nullptr) { |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 187 | *error_msg = StringPrintf("Failed to build process map"); |
| 188 | return false; |
| 189 | } |
| Christopher Ferris | 56f8b56 | 2016-06-16 23:19:36 -0700 | [diff] [blame] | 190 | ScopedBacktraceMapIteratorLock(map.get()); |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 191 | for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) { |
| 192 | if ((begin >= it->start && begin < it->end) // start of new within old |
| 193 | || (end > it->start && end < it->end) // end of new within old |
| 194 | || (begin <= it->start && end > it->end)) { // start/end of new includes all of old |
| 195 | std::ostringstream map_info; |
| 196 | map_info << std::make_pair(it, map->end()); |
| 197 | *error_msg = StringPrintf("Requested region 0x%08" PRIxPTR "-0x%08" PRIxPTR " overlaps with " |
| 198 | "existing map 0x%08" PRIxPTR "-0x%08" PRIxPTR " (%s)\n%s", |
| 199 | begin, end, |
| 200 | static_cast<uintptr_t>(it->start), static_cast<uintptr_t>(it->end), |
| 201 | it->name.c_str(), |
| 202 | map_info.str().c_str()); |
| 203 | return false; |
| 204 | } |
| 205 | } |
| 206 | return true; |
| 207 | } |
| 208 | |
| 209 | // CheckMapRequest to validate a non-MAP_FAILED mmap result based on |
| 210 | // the expected value, calling munmap if validation fails, giving the |
| 211 | // reason in error_msg. |
| 212 | // |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 213 | // If the expected_ptr is null, nothing is checked beyond the fact |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 214 | // that the actual_ptr is not MAP_FAILED. However, if expected_ptr is |
| 215 | // non-null, we check that pointer is the actual_ptr == expected_ptr, |
| 216 | // and if not, report in error_msg what the conflict mapping was if |
| 217 | // found, or a generic error in other cases. |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 218 | static bool CheckMapRequest(uint8_t* expected_ptr, void* actual_ptr, size_t byte_count, |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 219 | std::string* error_msg) { |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 220 | // Handled first by caller for more specific error messages. |
| 221 | CHECK(actual_ptr != MAP_FAILED); |
| 222 | |
| 223 | if (expected_ptr == nullptr) { |
| 224 | return true; |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 225 | } |
| Elliott Hughes | ecd3a6f | 2012-06-06 18:16:37 -0700 | [diff] [blame] | 226 | |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 227 | uintptr_t actual = reinterpret_cast<uintptr_t>(actual_ptr); |
| 228 | uintptr_t expected = reinterpret_cast<uintptr_t>(expected_ptr); |
| 229 | uintptr_t limit = expected + byte_count; |
| 230 | |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 231 | if (expected_ptr == actual_ptr) { |
| 232 | return true; |
| 233 | } |
| 234 | |
| 235 | // We asked for an address but didn't get what we wanted, all paths below here should fail. |
| 236 | int result = munmap(actual_ptr, byte_count); |
| 237 | if (result == -1) { |
| 238 | PLOG(WARNING) << StringPrintf("munmap(%p, %zd) failed", actual_ptr, byte_count); |
| 239 | } |
| 240 | |
| Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 241 | if (error_msg != nullptr) { |
| Mathieu Chartier | 83723ae | 2016-02-24 10:09:23 -0800 | [diff] [blame] | 242 | // We call this here so that we can try and generate a full error |
| 243 | // message with the overlapping mapping. There's no guarantee that |
| 244 | // that there will be an overlap though, since |
| 245 | // - The kernel is not *required* to honor expected_ptr unless MAP_FIXED is |
| 246 | // true, even if there is no overlap |
| 247 | // - There might have been an overlap at the point of mmap, but the |
| 248 | // overlapping region has since been unmapped. |
| 249 | std::string error_detail; |
| 250 | CheckNonOverlapping(expected, limit, &error_detail); |
| Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 251 | std::ostringstream os; |
| 252 | os << StringPrintf("Failed to mmap at expected address, mapped at " |
| 253 | "0x%08" PRIxPTR " instead of 0x%08" PRIxPTR, |
| 254 | actual, expected); |
| 255 | if (!error_detail.empty()) { |
| 256 | os << " : " << error_detail; |
| 257 | } |
| 258 | *error_msg = os.str(); |
| Christopher Ferris | 943af7d | 2014-01-16 12:41:46 -0800 | [diff] [blame] | 259 | } |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 260 | return false; |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| Mathieu Chartier | 38c8221 | 2015-06-04 16:22:41 -0700 | [diff] [blame] | 263 | #if USE_ART_LOW_4G_ALLOCATOR |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 264 | static inline void* TryMemMapLow4GB(void* ptr, |
| 265 | size_t page_aligned_byte_count, |
| 266 | int prot, |
| 267 | int flags, |
| 268 | int fd, |
| 269 | off_t offset) { |
| 270 | void* actual = mmap(ptr, page_aligned_byte_count, prot, flags, fd, offset); |
| Mathieu Chartier | 38c8221 | 2015-06-04 16:22:41 -0700 | [diff] [blame] | 271 | if (actual != MAP_FAILED) { |
| 272 | // Since we didn't use MAP_FIXED the kernel may have mapped it somewhere not in the low |
| 273 | // 4GB. If this is the case, unmap and retry. |
| 274 | if (reinterpret_cast<uintptr_t>(actual) + page_aligned_byte_count >= 4 * GB) { |
| 275 | munmap(actual, page_aligned_byte_count); |
| 276 | actual = MAP_FAILED; |
| 277 | } |
| 278 | } |
| 279 | return actual; |
| 280 | } |
| 281 | #endif |
| 282 | |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 283 | MemMap* MemMap::MapAnonymous(const char* name, |
| 284 | uint8_t* expected_ptr, |
| 285 | size_t byte_count, |
| 286 | int prot, |
| 287 | bool low_4gb, |
| 288 | bool reuse, |
| Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 289 | std::string* error_msg, |
| 290 | bool use_ashmem) { |
| Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 291 | #ifndef __LP64__ |
| 292 | UNUSED(low_4gb); |
| 293 | #endif |
| Nicolas Geoffray | 58a73d2 | 2016-11-29 21:49:43 +0000 | [diff] [blame] | 294 | use_ashmem = use_ashmem && !kIsTargetLinux; |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 295 | if (byte_count == 0) { |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 296 | return new MemMap(name, nullptr, 0, nullptr, 0, prot, false); |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 297 | } |
| Elliott Hughes | ecd3a6f | 2012-06-06 18:16:37 -0700 | [diff] [blame] | 298 | size_t page_aligned_byte_count = RoundUp(byte_count, kPageSize); |
| Elliott Hughes | 6c9c06d | 2011-11-07 16:43:47 -0800 | [diff] [blame] | 299 | |
| Elliott Hughes | 6c9c06d | 2011-11-07 16:43:47 -0800 | [diff] [blame] | 300 | int flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 301 | if (reuse) { |
| 302 | // reuse means it is okay that it overlaps an existing page mapping. |
| 303 | // Only use this if you actually made the page reservation yourself. |
| 304 | CHECK(expected_ptr != nullptr); |
| 305 | |
| Vladimir Marko | b550582 | 2015-05-08 11:10:16 +0100 | [diff] [blame] | 306 | DCHECK(ContainedWithinExistingMap(expected_ptr, byte_count, error_msg)) << *error_msg; |
| Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 307 | flags |= MAP_FIXED; |
| 308 | } |
| 309 | |
| Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 310 | if (use_ashmem) { |
| 311 | if (!kIsTargetBuild) { |
| Bilyan Borisov | 3071f80 | 2016-03-31 17:15:53 +0100 | [diff] [blame] | 312 | // When not on Android (either host or assuming a linux target) ashmem is faked using |
| 313 | // files in /tmp. Ensure that such files won't fail due to ulimit restrictions. If they |
| 314 | // will then use a regular mmap. |
| Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 315 | struct rlimit rlimit_fsize; |
| 316 | CHECK_EQ(getrlimit(RLIMIT_FSIZE, &rlimit_fsize), 0); |
| 317 | use_ashmem = (rlimit_fsize.rlim_cur == RLIM_INFINITY) || |
| 318 | (page_aligned_byte_count < rlimit_fsize.rlim_cur); |
| 319 | } |
| 320 | } |
| 321 | |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 322 | unique_fd fd; |
| 323 | |
| 324 | |
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 325 | if (use_ashmem) { |
| 326 | // android_os_Debug.cpp read_mapinfo assumes all ashmem regions associated with the VM are |
| 327 | // prefixed "dalvik-". |
| 328 | std::string debug_friendly_name("dalvik-"); |
| 329 | debug_friendly_name += name; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 330 | fd.reset(ashmem_create_region(debug_friendly_name.c_str(), page_aligned_byte_count)); |
| Richard Uhler | a5c61bf | 2016-10-24 15:54:44 +0100 | [diff] [blame] | 331 | |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 332 | if (fd.get() == -1) { |
| Richard Uhler | a5c61bf | 2016-10-24 15:54:44 +0100 | [diff] [blame] | 333 | // We failed to create the ashmem region. Print a warning, but continue |
| 334 | // anyway by creating a true anonymous mmap with an fd of -1. It is |
| 335 | // better to use an unlabelled anonymous map than to fail to create a |
| 336 | // map at all. |
| 337 | PLOG(WARNING) << "ashmem_create_region failed for '" << name << "'"; |
| 338 | } else { |
| 339 | // We succeeded in creating the ashmem region. Use the created ashmem |
| 340 | // region as backing for the mmap. |
| 341 | flags &= ~MAP_ANONYMOUS; |
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 342 | } |
| Ian Rogers | 997f0f9 | 2014-06-21 22:58:05 -0700 | [diff] [blame] | 343 | } |
| Stuart Monteith | 8dba5aa | 2014-03-12 12:44:01 +0000 | [diff] [blame] | 344 | |
| Brian Carlstrom | aa94cf3 | 2014-03-23 23:47:25 -0700 | [diff] [blame] | 345 | // We need to store and potentially set an error number for pretty printing of errors |
| 346 | int saved_errno = 0; |
| 347 | |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 348 | void* actual = MapInternal(expected_ptr, |
| 349 | page_aligned_byte_count, |
| 350 | prot, |
| 351 | flags, |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 352 | fd.get(), |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 353 | 0, |
| 354 | low_4gb); |
| Brian Carlstrom | aa94cf3 | 2014-03-23 23:47:25 -0700 | [diff] [blame] | 355 | saved_errno = errno; |
| Stuart Monteith | 8dba5aa | 2014-03-12 12:44:01 +0000 | [diff] [blame] | 356 | |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 357 | if (actual == MAP_FAILED) { |
| Mathieu Chartier | 83723ae | 2016-02-24 10:09:23 -0800 | [diff] [blame] | 358 | if (error_msg != nullptr) { |
| Andreas Gampe | 7fa5578 | 2016-06-15 17:45:01 -0700 | [diff] [blame] | 359 | if (kIsDebugBuild || VLOG_IS_ON(oat)) { |
| 360 | PrintFileToLog("/proc/self/maps", LogSeverity::WARNING); |
| 361 | } |
| Brian Carlstrom | aa94cf3 | 2014-03-23 23:47:25 -0700 | [diff] [blame] | 362 | |
| Mathieu Chartier | 83723ae | 2016-02-24 10:09:23 -0800 | [diff] [blame] | 363 | *error_msg = StringPrintf("Failed anonymous mmap(%p, %zd, 0x%x, 0x%x, %d, 0): %s. " |
| 364 | "See process maps in the log.", |
| 365 | expected_ptr, |
| 366 | page_aligned_byte_count, |
| 367 | prot, |
| 368 | flags, |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 369 | fd.get(), |
| Mathieu Chartier | 83723ae | 2016-02-24 10:09:23 -0800 | [diff] [blame] | 370 | strerror(saved_errno)); |
| 371 | } |
| Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 372 | return nullptr; |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 373 | } |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 374 | if (!CheckMapRequest(expected_ptr, actual, page_aligned_byte_count, error_msg)) { |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 375 | return nullptr; |
| 376 | } |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 377 | return new MemMap(name, reinterpret_cast<uint8_t*>(actual), byte_count, actual, |
| Mathieu Chartier | 01d4b50 | 2015-06-12 17:32:31 -0700 | [diff] [blame] | 378 | page_aligned_byte_count, prot, reuse); |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| David Srbecky | 1baabf0 | 2015-06-16 17:12:34 +0000 | [diff] [blame] | 381 | MemMap* MemMap::MapDummy(const char* name, uint8_t* addr, size_t byte_count) { |
| 382 | if (byte_count == 0) { |
| 383 | return new MemMap(name, nullptr, 0, nullptr, 0, 0, false); |
| 384 | } |
| 385 | const size_t page_aligned_byte_count = RoundUp(byte_count, kPageSize); |
| 386 | return new MemMap(name, addr, byte_count, addr, page_aligned_byte_count, 0, true /* reuse */); |
| 387 | } |
| 388 | |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 389 | MemMap* MemMap::MapFileAtAddress(uint8_t* expected_ptr, |
| 390 | size_t byte_count, |
| 391 | int prot, |
| 392 | int flags, |
| 393 | int fd, |
| 394 | off_t start, |
| 395 | bool low_4gb, |
| 396 | bool reuse, |
| 397 | const char* filename, |
| Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 398 | std::string* error_msg) { |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 399 | CHECK_NE(0, prot); |
| 400 | CHECK_NE(0, flags & (MAP_SHARED | MAP_PRIVATE)); |
| Narayan Kamath | b89c3da | 2014-08-21 17:38:09 +0100 | [diff] [blame] | 401 | |
| 402 | // Note that we do not allow MAP_FIXED unless reuse == true, i.e we |
| 403 | // expect his mapping to be contained within an existing map. |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 404 | if (reuse) { |
| 405 | // reuse means it is okay that it overlaps an existing page mapping. |
| 406 | // Only use this if you actually made the page reservation yourself. |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 407 | CHECK(expected_ptr != nullptr); |
| Mathieu Chartier | 66b1d57 | 2017-02-10 18:41:39 -0800 | [diff] [blame] | 408 | DCHECK(error_msg != nullptr); |
| Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 409 | DCHECK(ContainedWithinExistingMap(expected_ptr, byte_count, error_msg)) |
| 410 | << ((error_msg != nullptr) ? *error_msg : std::string()); |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 411 | flags |= MAP_FIXED; |
| 412 | } else { |
| 413 | CHECK_EQ(0, flags & MAP_FIXED); |
| Narayan Kamath | b89c3da | 2014-08-21 17:38:09 +0100 | [diff] [blame] | 414 | // Don't bother checking for an overlapping region here. We'll |
| 415 | // check this if required after the fact inside CheckMapRequest. |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 416 | } |
| 417 | |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 418 | if (byte_count == 0) { |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 419 | return new MemMap(filename, nullptr, 0, nullptr, 0, prot, false); |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 420 | } |
| Ian Rogers | f8adc60 | 2013-04-18 17:06:19 -0700 | [diff] [blame] | 421 | // Adjust 'offset' to be page-aligned as required by mmap. |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 422 | int page_offset = start % kPageSize; |
| 423 | off_t page_aligned_offset = start - page_offset; |
| Ian Rogers | f8adc60 | 2013-04-18 17:06:19 -0700 | [diff] [blame] | 424 | // Adjust 'byte_count' to be page-aligned as we will map this anyway. |
| Elliott Hughes | ecd3a6f | 2012-06-06 18:16:37 -0700 | [diff] [blame] | 425 | size_t page_aligned_byte_count = RoundUp(byte_count + page_offset, kPageSize); |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 426 | // The 'expected_ptr' is modified (if specified, ie non-null) to be page aligned to the file but |
| 427 | // not necessarily to virtual memory. mmap will page align 'expected' for us. |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 428 | uint8_t* page_aligned_expected = |
| 429 | (expected_ptr == nullptr) ? nullptr : (expected_ptr - page_offset); |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 430 | |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 431 | size_t redzone_size = 0; |
| 432 | if (RUNNING_ON_MEMORY_TOOL && kMemoryToolAddsRedzones && expected_ptr == nullptr) { |
| 433 | redzone_size = kPageSize; |
| 434 | page_aligned_byte_count += redzone_size; |
| 435 | } |
| 436 | |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 437 | uint8_t* actual = reinterpret_cast<uint8_t*>(MapInternal(page_aligned_expected, |
| 438 | page_aligned_byte_count, |
| 439 | prot, |
| 440 | flags, |
| 441 | fd, |
| 442 | page_aligned_offset, |
| 443 | low_4gb)); |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 444 | if (actual == MAP_FAILED) { |
| Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 445 | if (error_msg != nullptr) { |
| 446 | auto saved_errno = errno; |
| Brian Carlstrom | aa94cf3 | 2014-03-23 23:47:25 -0700 | [diff] [blame] | 447 | |
| Andreas Gampe | 7ec0904 | 2016-04-01 17:20:49 -0700 | [diff] [blame] | 448 | if (kIsDebugBuild || VLOG_IS_ON(oat)) { |
| 449 | PrintFileToLog("/proc/self/maps", LogSeverity::WARNING); |
| 450 | } |
| Brian Carlstrom | aa94cf3 | 2014-03-23 23:47:25 -0700 | [diff] [blame] | 451 | |
| Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 452 | *error_msg = StringPrintf("mmap(%p, %zd, 0x%x, 0x%x, %d, %" PRId64 |
| 453 | ") of file '%s' failed: %s. See process maps in the log.", |
| 454 | page_aligned_expected, page_aligned_byte_count, prot, flags, fd, |
| 455 | static_cast<int64_t>(page_aligned_offset), filename, |
| 456 | strerror(saved_errno)); |
| 457 | } |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 458 | return nullptr; |
| 459 | } |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 460 | if (!CheckMapRequest(expected_ptr, actual, page_aligned_byte_count, error_msg)) { |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 461 | return nullptr; |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 462 | } |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 463 | if (redzone_size != 0) { |
| 464 | const uint8_t *real_start = actual + page_offset; |
| 465 | const uint8_t *real_end = actual + page_offset + byte_count; |
| 466 | const uint8_t *mapping_end = actual + page_aligned_byte_count; |
| 467 | |
| 468 | MEMORY_TOOL_MAKE_NOACCESS(actual, real_start - actual); |
| 469 | MEMORY_TOOL_MAKE_NOACCESS(real_end, mapping_end - real_end); |
| 470 | page_aligned_byte_count -= redzone_size; |
| 471 | } |
| 472 | |
| Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 473 | return new MemMap(filename, actual + page_offset, byte_count, actual, page_aligned_byte_count, |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 474 | prot, reuse, redzone_size); |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | MemMap::~MemMap() { |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 478 | if (base_begin_ == nullptr && base_size_ == 0) { |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 479 | return; |
| 480 | } |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 481 | |
| 482 | // Unlike Valgrind, AddressSanitizer requires that all manually poisoned memory is unpoisoned |
| 483 | // before it is returned to the system. |
| 484 | if (redzone_size_ != 0) { |
| 485 | MEMORY_TOOL_MAKE_UNDEFINED( |
| 486 | reinterpret_cast<char*>(base_begin_) + base_size_ - redzone_size_, |
| 487 | redzone_size_); |
| 488 | } |
| 489 | |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 490 | if (!reuse_) { |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 491 | MEMORY_TOOL_MAKE_UNDEFINED(base_begin_, base_size_); |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 492 | int result = munmap(base_begin_, base_size_); |
| 493 | if (result == -1) { |
| 494 | PLOG(FATAL) << "munmap failed"; |
| 495 | } |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 496 | } |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 497 | |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 498 | // Remove it from gMaps. |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 499 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 500 | bool found = false; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 501 | DCHECK(gMaps != nullptr); |
| 502 | for (auto it = gMaps->lower_bound(base_begin_), end = gMaps->end(); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 503 | it != end && it->first == base_begin_; ++it) { |
| 504 | if (it->second == this) { |
| 505 | found = true; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 506 | gMaps->erase(it); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 507 | break; |
| 508 | } |
| 509 | } |
| 510 | CHECK(found) << "MemMap not found"; |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 511 | } |
| 512 | |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 513 | MemMap::MemMap(const std::string& name, uint8_t* begin, size_t size, void* base_begin, |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 514 | size_t base_size, int prot, bool reuse, size_t redzone_size) |
| Mathieu Chartier | 1c23e1e | 2012-10-12 14:14:11 -0700 | [diff] [blame] | 515 | : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size), |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 516 | prot_(prot), reuse_(reuse), redzone_size_(redzone_size) { |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 517 | if (size_ == 0) { |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 518 | CHECK(begin_ == nullptr); |
| 519 | CHECK(base_begin_ == nullptr); |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 520 | CHECK_EQ(base_size_, 0U); |
| 521 | } else { |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 522 | CHECK(begin_ != nullptr); |
| 523 | CHECK(base_begin_ != nullptr); |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 524 | CHECK_NE(base_size_, 0U); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 525 | |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 526 | // Add it to gMaps. |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 527 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 528 | DCHECK(gMaps != nullptr); |
| 529 | gMaps->insert(std::make_pair(base_begin_, this)); |
| Brian Carlstrom | 9004cb6 | 2013-07-26 15:48:31 -0700 | [diff] [blame] | 530 | } |
| Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 531 | } |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 532 | |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 533 | MemMap* MemMap::RemapAtEnd(uint8_t* new_end, const char* tail_name, int tail_prot, |
| Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 534 | std::string* error_msg, bool use_ashmem) { |
| Nicolas Geoffray | 58a73d2 | 2016-11-29 21:49:43 +0000 | [diff] [blame] | 535 | use_ashmem = use_ashmem && !kIsTargetLinux; |
| Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 536 | DCHECK_GE(new_end, Begin()); |
| 537 | DCHECK_LE(new_end, End()); |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 538 | DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_); |
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 539 | DCHECK_ALIGNED(begin_, kPageSize); |
| 540 | DCHECK_ALIGNED(base_begin_, kPageSize); |
| 541 | DCHECK_ALIGNED(reinterpret_cast<uint8_t*>(base_begin_) + base_size_, kPageSize); |
| 542 | DCHECK_ALIGNED(new_end, kPageSize); |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 543 | uint8_t* old_end = begin_ + size_; |
| 544 | uint8_t* old_base_end = reinterpret_cast<uint8_t*>(base_begin_) + base_size_; |
| 545 | uint8_t* new_base_end = new_end; |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 546 | DCHECK_LE(new_base_end, old_base_end); |
| 547 | if (new_base_end == old_base_end) { |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 548 | return new MemMap(tail_name, nullptr, 0, nullptr, 0, tail_prot, false); |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 549 | } |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 550 | size_ = new_end - reinterpret_cast<uint8_t*>(begin_); |
| 551 | base_size_ = new_base_end - reinterpret_cast<uint8_t*>(base_begin_); |
| 552 | DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_); |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 553 | size_t tail_size = old_end - new_end; |
| Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 554 | uint8_t* tail_base_begin = new_base_end; |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 555 | size_t tail_base_size = old_base_end - new_base_end; |
| 556 | DCHECK_EQ(tail_base_begin + tail_base_size, old_base_end); |
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 557 | DCHECK_ALIGNED(tail_base_size, kPageSize); |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 558 | |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 559 | unique_fd fd; |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 560 | int flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 561 | if (use_ashmem) { |
| 562 | // android_os_Debug.cpp read_mapinfo assumes all ashmem regions associated with the VM are |
| 563 | // prefixed "dalvik-". |
| 564 | std::string debug_friendly_name("dalvik-"); |
| 565 | debug_friendly_name += tail_name; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 566 | fd.reset(ashmem_create_region(debug_friendly_name.c_str(), tail_base_size)); |
| Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 567 | flags = MAP_PRIVATE | MAP_FIXED; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 568 | if (fd.get() == -1) { |
| Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 569 | *error_msg = StringPrintf("ashmem_create_region failed for '%s': %s", |
| 570 | tail_name, strerror(errno)); |
| 571 | return nullptr; |
| 572 | } |
| 573 | } |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 574 | |
| 575 | MEMORY_TOOL_MAKE_UNDEFINED(tail_base_begin, tail_base_size); |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 576 | // Unmap/map the tail region. |
| 577 | int result = munmap(tail_base_begin, tail_base_size); |
| 578 | if (result == -1) { |
| Andreas Gampe | a6dfdae | 2015-02-24 15:50:19 -0800 | [diff] [blame] | 579 | PrintFileToLog("/proc/self/maps", LogSeverity::WARNING); |
| 580 | *error_msg = StringPrintf("munmap(%p, %zd) failed for '%s'. See process maps in the log.", |
| 581 | tail_base_begin, tail_base_size, name_.c_str()); |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 582 | return nullptr; |
| 583 | } |
| 584 | // Don't cause memory allocation between the munmap and the mmap |
| 585 | // calls. Otherwise, libc (or something else) might take this memory |
| 586 | // region. Note this isn't perfect as there's no way to prevent |
| 587 | // other threads to try to take this memory region here. |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 588 | uint8_t* actual = reinterpret_cast<uint8_t*>(mmap(tail_base_begin, |
| 589 | tail_base_size, |
| 590 | tail_prot, |
| 591 | flags, |
| 592 | fd.get(), |
| 593 | 0)); |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 594 | if (actual == MAP_FAILED) { |
| Andreas Gampe | a6dfdae | 2015-02-24 15:50:19 -0800 | [diff] [blame] | 595 | PrintFileToLog("/proc/self/maps", LogSeverity::WARNING); |
| 596 | *error_msg = StringPrintf("anonymous mmap(%p, %zd, 0x%x, 0x%x, %d, 0) failed. See process " |
| 597 | "maps in the log.", tail_base_begin, tail_base_size, tail_prot, flags, |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 598 | fd.get()); |
| Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 599 | return nullptr; |
| 600 | } |
| Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 601 | return new MemMap(tail_name, actual, tail_size, actual, tail_base_size, tail_prot, false); |
| Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 602 | } |
| Logan Chien | d88fa26 | 2012-06-06 15:23:32 +0800 | [diff] [blame] | 603 | |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 604 | void MemMap::MadviseDontNeedAndZero() { |
| 605 | if (base_begin_ != nullptr || base_size_ != 0) { |
| 606 | if (!kMadviseZeroes) { |
| 607 | memset(base_begin_, 0, base_size_); |
| 608 | } |
| 609 | int result = madvise(base_begin_, base_size_, MADV_DONTNEED); |
| 610 | if (result == -1) { |
| 611 | PLOG(WARNING) << "madvise failed"; |
| 612 | } |
| 613 | } |
| 614 | } |
| 615 | |
| Vladimir Marko | 9bdf108 | 2016-01-21 12:15:52 +0000 | [diff] [blame] | 616 | bool MemMap::Sync() { |
| Hiroshi Yamauchi | 29ab360 | 2016-03-08 15:17:21 -0800 | [diff] [blame] | 617 | bool result; |
| 618 | if (redzone_size_ != 0) { |
| 619 | // To avoid valgrind errors, temporarily lift the lower-end noaccess protection before passing |
| 620 | // it to msync() as it only accepts page-aligned base address, and exclude the higher-end |
| 621 | // noaccess protection from the msync range. b/27552451. |
| 622 | uint8_t* base_begin = reinterpret_cast<uint8_t*>(base_begin_); |
| 623 | MEMORY_TOOL_MAKE_DEFINED(base_begin, begin_ - base_begin); |
| 624 | result = msync(BaseBegin(), End() - base_begin, MS_SYNC) == 0; |
| 625 | MEMORY_TOOL_MAKE_NOACCESS(base_begin, begin_ - base_begin); |
| 626 | } else { |
| 627 | result = msync(BaseBegin(), BaseSize(), MS_SYNC) == 0; |
| 628 | } |
| 629 | return result; |
| Vladimir Marko | 9bdf108 | 2016-01-21 12:15:52 +0000 | [diff] [blame] | 630 | } |
| 631 | |
| Logan Chien | d88fa26 | 2012-06-06 15:23:32 +0800 | [diff] [blame] | 632 | bool MemMap::Protect(int prot) { |
| Hiroshi Yamauchi | 4fb5df8 | 2014-03-13 15:10:27 -0700 | [diff] [blame] | 633 | if (base_begin_ == nullptr && base_size_ == 0) { |
| Ian Rogers | 1c849e5 | 2012-06-28 14:00:33 -0700 | [diff] [blame] | 634 | prot_ = prot; |
| Logan Chien | d88fa26 | 2012-06-06 15:23:32 +0800 | [diff] [blame] | 635 | return true; |
| 636 | } |
| 637 | |
| 638 | if (mprotect(base_begin_, base_size_, prot) == 0) { |
| Ian Rogers | 1c849e5 | 2012-06-28 14:00:33 -0700 | [diff] [blame] | 639 | prot_ = prot; |
| Logan Chien | d88fa26 | 2012-06-06 15:23:32 +0800 | [diff] [blame] | 640 | return true; |
| 641 | } |
| 642 | |
| Shih-wei Liao | a060ed9 | 2012-06-07 09:25:28 -0700 | [diff] [blame] | 643 | PLOG(ERROR) << "mprotect(" << reinterpret_cast<void*>(base_begin_) << ", " << base_size_ << ", " |
| 644 | << prot << ") failed"; |
| Logan Chien | d88fa26 | 2012-06-06 15:23:32 +0800 | [diff] [blame] | 645 | return false; |
| 646 | } |
| 647 | |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 648 | bool MemMap::CheckNoGaps(MemMap* begin_map, MemMap* end_map) { |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 649 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 650 | CHECK(begin_map != nullptr); |
| 651 | CHECK(end_map != nullptr); |
| 652 | CHECK(HasMemMap(begin_map)); |
| 653 | CHECK(HasMemMap(end_map)); |
| 654 | CHECK_LE(begin_map->BaseBegin(), end_map->BaseBegin()); |
| 655 | MemMap* map = begin_map; |
| 656 | while (map->BaseBegin() != end_map->BaseBegin()) { |
| 657 | MemMap* next_map = GetLargestMemMapAt(map->BaseEnd()); |
| 658 | if (next_map == nullptr) { |
| 659 | // Found a gap. |
| 660 | return false; |
| 661 | } |
| 662 | map = next_map; |
| 663 | } |
| 664 | return true; |
| 665 | } |
| 666 | |
| Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 667 | void MemMap::DumpMaps(std::ostream& os, bool terse) { |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 668 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 669 | DumpMapsLocked(os, terse); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 670 | } |
| 671 | |
| Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 672 | void MemMap::DumpMapsLocked(std::ostream& os, bool terse) { |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 673 | const auto& mem_maps = *gMaps; |
| Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 674 | if (!terse) { |
| 675 | os << mem_maps; |
| 676 | return; |
| 677 | } |
| 678 | |
| 679 | // Terse output example: |
| 680 | // [MemMap: 0x409be000+0x20P~0x11dP+0x20P~0x61cP+0x20P prot=0x3 LinearAlloc] |
| 681 | // [MemMap: 0x451d6000+0x6bP(3) prot=0x3 large object space allocation] |
| 682 | // The details: |
| 683 | // "+0x20P" means 0x20 pages taken by a single mapping, |
| 684 | // "~0x11dP" means a gap of 0x11d pages, |
| 685 | // "+0x6bP(3)" means 3 mappings one after another, together taking 0x6b pages. |
| 686 | os << "MemMap:" << std::endl; |
| 687 | for (auto it = mem_maps.begin(), maps_end = mem_maps.end(); it != maps_end;) { |
| 688 | MemMap* map = it->second; |
| 689 | void* base = it->first; |
| 690 | CHECK_EQ(base, map->BaseBegin()); |
| 691 | os << "[MemMap: " << base; |
| 692 | ++it; |
| 693 | // Merge consecutive maps with the same protect flags and name. |
| 694 | constexpr size_t kMaxGaps = 9; |
| 695 | size_t num_gaps = 0; |
| 696 | size_t num = 1u; |
| 697 | size_t size = map->BaseSize(); |
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 698 | CHECK_ALIGNED(size, kPageSize); |
| Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 699 | void* end = map->BaseEnd(); |
| 700 | while (it != maps_end && |
| 701 | it->second->GetProtect() == map->GetProtect() && |
| 702 | it->second->GetName() == map->GetName() && |
| 703 | (it->second->BaseBegin() == end || num_gaps < kMaxGaps)) { |
| 704 | if (it->second->BaseBegin() != end) { |
| 705 | ++num_gaps; |
| 706 | os << "+0x" << std::hex << (size / kPageSize) << "P"; |
| 707 | if (num != 1u) { |
| 708 | os << "(" << std::dec << num << ")"; |
| 709 | } |
| 710 | size_t gap = |
| 711 | reinterpret_cast<uintptr_t>(it->second->BaseBegin()) - reinterpret_cast<uintptr_t>(end); |
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 712 | CHECK_ALIGNED(gap, kPageSize); |
| Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 713 | os << "~0x" << std::hex << (gap / kPageSize) << "P"; |
| 714 | num = 0u; |
| 715 | size = 0u; |
| 716 | } |
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 717 | CHECK_ALIGNED(it->second->BaseSize(), kPageSize); |
| Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 718 | ++num; |
| 719 | size += it->second->BaseSize(); |
| 720 | end = it->second->BaseEnd(); |
| 721 | ++it; |
| 722 | } |
| 723 | os << "+0x" << std::hex << (size / kPageSize) << "P"; |
| 724 | if (num != 1u) { |
| 725 | os << "(" << std::dec << num << ")"; |
| 726 | } |
| 727 | os << " prot=0x" << std::hex << map->GetProtect() << " " << map->GetName() << "]" << std::endl; |
| 728 | } |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | bool MemMap::HasMemMap(MemMap* map) { |
| 732 | void* base_begin = map->BaseBegin(); |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 733 | for (auto it = gMaps->lower_bound(base_begin), end = gMaps->end(); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 734 | it != end && it->first == base_begin; ++it) { |
| 735 | if (it->second == map) { |
| 736 | return true; |
| 737 | } |
| 738 | } |
| 739 | return false; |
| 740 | } |
| 741 | |
| 742 | MemMap* MemMap::GetLargestMemMapAt(void* address) { |
| 743 | size_t largest_size = 0; |
| 744 | MemMap* largest_map = nullptr; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 745 | DCHECK(gMaps != nullptr); |
| 746 | for (auto it = gMaps->lower_bound(address), end = gMaps->end(); |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 747 | it != end && it->first == address; ++it) { |
| 748 | MemMap* map = it->second; |
| 749 | CHECK(map != nullptr); |
| 750 | if (largest_size < map->BaseSize()) { |
| 751 | largest_size = map->BaseSize(); |
| 752 | largest_map = map; |
| 753 | } |
| 754 | } |
| 755 | return largest_map; |
| 756 | } |
| 757 | |
| Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 758 | void MemMap::Init() { |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 759 | if (mem_maps_lock_ != nullptr) { |
| Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 760 | // dex2oat calls MemMap::Init twice since its needed before the runtime is created. |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 761 | return; |
| Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 762 | } |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 763 | mem_maps_lock_ = new std::mutex(); |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 764 | // Not for thread safety, but for the annotation that gMaps is GUARDED_BY(mem_maps_lock_). |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 765 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 766 | DCHECK(gMaps == nullptr); |
| 767 | gMaps = new Maps; |
| Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | void MemMap::Shutdown() { |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 771 | if (mem_maps_lock_ == nullptr) { |
| 772 | // If MemMap::Shutdown is called more than once, there is no effect. |
| 773 | return; |
| 774 | } |
| 775 | { |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 776 | // Not for thread safety, but for the annotation that gMaps is GUARDED_BY(mem_maps_lock_). |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 777 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 778 | DCHECK(gMaps != nullptr); |
| 779 | delete gMaps; |
| 780 | gMaps = nullptr; |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 781 | } |
| 782 | delete mem_maps_lock_; |
| 783 | mem_maps_lock_ = nullptr; |
| Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 784 | } |
| 785 | |
| Mathieu Chartier | 379d09f | 2015-01-08 11:28:13 -0800 | [diff] [blame] | 786 | void MemMap::SetSize(size_t new_size) { |
| 787 | if (new_size == base_size_) { |
| 788 | return; |
| 789 | } |
| 790 | CHECK_ALIGNED(new_size, kPageSize); |
| 791 | CHECK_EQ(base_size_, size_) << "Unsupported"; |
| 792 | CHECK_LE(new_size, base_size_); |
| Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 793 | MEMORY_TOOL_MAKE_UNDEFINED( |
| 794 | reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(BaseBegin()) + |
| 795 | new_size), |
| 796 | base_size_ - new_size); |
| Mathieu Chartier | 379d09f | 2015-01-08 11:28:13 -0800 | [diff] [blame] | 797 | CHECK_EQ(munmap(reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(BaseBegin()) + new_size), |
| 798 | base_size_ - new_size), 0) << new_size << " " << base_size_; |
| 799 | base_size_ = new_size; |
| 800 | size_ = new_size; |
| 801 | } |
| 802 | |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 803 | void* MemMap::MapInternal(void* addr, |
| 804 | size_t length, |
| 805 | int prot, |
| 806 | int flags, |
| 807 | int fd, |
| 808 | off_t offset, |
| 809 | bool low_4gb) { |
| 810 | #ifdef __LP64__ |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 811 | // When requesting low_4g memory and having an expectation, the requested range should fit into |
| 812 | // 4GB. |
| 813 | if (low_4gb && ( |
| 814 | // Start out of bounds. |
| 815 | (reinterpret_cast<uintptr_t>(addr) >> 32) != 0 || |
| 816 | // End out of bounds. For simplicity, this will fail for the last page of memory. |
| 817 | ((reinterpret_cast<uintptr_t>(addr) + length) >> 32) != 0)) { |
| 818 | LOG(ERROR) << "The requested address space (" << addr << ", " |
| 819 | << reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(addr) + length) |
| 820 | << ") cannot fit in low_4gb"; |
| 821 | return MAP_FAILED; |
| 822 | } |
| 823 | #else |
| 824 | UNUSED(low_4gb); |
| 825 | #endif |
| 826 | DCHECK_ALIGNED(length, kPageSize); |
| 827 | if (low_4gb) { |
| 828 | DCHECK_EQ(flags & MAP_FIXED, 0); |
| 829 | } |
| 830 | // TODO: |
| 831 | // A page allocator would be a useful abstraction here, as |
| 832 | // 1) It is doubtful that MAP_32BIT on x86_64 is doing the right job for us |
| 833 | void* actual = MAP_FAILED; |
| 834 | #if USE_ART_LOW_4G_ALLOCATOR |
| 835 | // MAP_32BIT only available on x86_64. |
| 836 | if (low_4gb && addr == nullptr) { |
| 837 | bool first_run = true; |
| 838 | |
| David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 839 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 840 | for (uintptr_t ptr = next_mem_pos_; ptr < 4 * GB; ptr += kPageSize) { |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 841 | // Use gMaps as an optimization to skip over large maps. |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 842 | // Find the first map which is address > ptr. |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 843 | auto it = gMaps->upper_bound(reinterpret_cast<void*>(ptr)); |
| 844 | if (it != gMaps->begin()) { |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 845 | auto before_it = it; |
| 846 | --before_it; |
| 847 | // Start at the end of the map before the upper bound. |
| 848 | ptr = std::max(ptr, reinterpret_cast<uintptr_t>(before_it->second->BaseEnd())); |
| 849 | CHECK_ALIGNED(ptr, kPageSize); |
| 850 | } |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 851 | while (it != gMaps->end()) { |
| Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 852 | // How much space do we have until the next map? |
| 853 | size_t delta = reinterpret_cast<uintptr_t>(it->first) - ptr; |
| 854 | // If the space may be sufficient, break out of the loop. |
| 855 | if (delta >= length) { |
| 856 | break; |
| 857 | } |
| 858 | // Otherwise, skip to the end of the map. |
| 859 | ptr = reinterpret_cast<uintptr_t>(it->second->BaseEnd()); |
| 860 | CHECK_ALIGNED(ptr, kPageSize); |
| 861 | ++it; |
| 862 | } |
| 863 | |
| 864 | // Try to see if we get lucky with this address since none of the ART maps overlap. |
| 865 | actual = TryMemMapLow4GB(reinterpret_cast<void*>(ptr), length, prot, flags, fd, offset); |
| 866 | if (actual != MAP_FAILED) { |
| 867 | next_mem_pos_ = reinterpret_cast<uintptr_t>(actual) + length; |
| 868 | return actual; |
| 869 | } |
| 870 | |
| 871 | if (4U * GB - ptr < length) { |
| 872 | // Not enough memory until 4GB. |
| 873 | if (first_run) { |
| 874 | // Try another time from the bottom; |
| 875 | ptr = LOW_MEM_START - kPageSize; |
| 876 | first_run = false; |
| 877 | continue; |
| 878 | } else { |
| 879 | // Second try failed. |
| 880 | break; |
| 881 | } |
| 882 | } |
| 883 | |
| 884 | uintptr_t tail_ptr; |
| 885 | |
| 886 | // Check pages are free. |
| 887 | bool safe = true; |
| 888 | for (tail_ptr = ptr; tail_ptr < ptr + length; tail_ptr += kPageSize) { |
| 889 | if (msync(reinterpret_cast<void*>(tail_ptr), kPageSize, 0) == 0) { |
| 890 | safe = false; |
| 891 | break; |
| 892 | } else { |
| 893 | DCHECK_EQ(errno, ENOMEM); |
| 894 | } |
| 895 | } |
| 896 | |
| 897 | next_mem_pos_ = tail_ptr; // update early, as we break out when we found and mapped a region |
| 898 | |
| 899 | if (safe == true) { |
| 900 | actual = TryMemMapLow4GB(reinterpret_cast<void*>(ptr), length, prot, flags, fd, offset); |
| 901 | if (actual != MAP_FAILED) { |
| 902 | return actual; |
| 903 | } |
| 904 | } else { |
| 905 | // Skip over last page. |
| 906 | ptr = tail_ptr; |
| 907 | } |
| 908 | } |
| 909 | |
| 910 | if (actual == MAP_FAILED) { |
| 911 | LOG(ERROR) << "Could not find contiguous low-memory space."; |
| 912 | errno = ENOMEM; |
| 913 | } |
| 914 | } else { |
| 915 | actual = mmap(addr, length, prot, flags, fd, offset); |
| 916 | } |
| 917 | |
| 918 | #else |
| 919 | #if defined(__LP64__) |
| 920 | if (low_4gb && addr == nullptr) { |
| 921 | flags |= MAP_32BIT; |
| 922 | } |
| 923 | #endif |
| 924 | actual = mmap(addr, length, prot, flags, fd, offset); |
| 925 | #endif |
| 926 | return actual; |
| 927 | } |
| 928 | |
| Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 929 | std::ostream& operator<<(std::ostream& os, const MemMap& mem_map) { |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 930 | os << StringPrintf("[MemMap: %p-%p prot=0x%x %s]", |
| 931 | mem_map.BaseBegin(), mem_map.BaseEnd(), mem_map.GetProtect(), |
| 932 | mem_map.GetName().c_str()); |
| Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 933 | return os; |
| 934 | } |
| 935 | |
| Hiroshi Yamauchi | 6edb9ae | 2016-02-08 14:18:21 -0800 | [diff] [blame] | 936 | void MemMap::TryReadable() { |
| 937 | if (base_begin_ == nullptr && base_size_ == 0) { |
| 938 | return; |
| 939 | } |
| 940 | CHECK_NE(prot_ & PROT_READ, 0); |
| 941 | volatile uint8_t* begin = reinterpret_cast<volatile uint8_t*>(base_begin_); |
| 942 | volatile uint8_t* end = begin + base_size_; |
| 943 | DCHECK(IsAligned<kPageSize>(begin)); |
| 944 | DCHECK(IsAligned<kPageSize>(end)); |
| 945 | // Read the first byte of each page. Use volatile to prevent the compiler from optimizing away the |
| 946 | // reads. |
| 947 | for (volatile uint8_t* ptr = begin; ptr < end; ptr += kPageSize) { |
| 948 | // This read could fault if protection wasn't set correctly. |
| 949 | uint8_t value = *ptr; |
| 950 | UNUSED(value); |
| 951 | } |
| 952 | } |
| 953 | |
| Mathieu Chartier | 6e6078a | 2016-10-24 15:45:41 -0700 | [diff] [blame] | 954 | void ZeroAndReleasePages(void* address, size_t length) { |
| 955 | uint8_t* const mem_begin = reinterpret_cast<uint8_t*>(address); |
| 956 | uint8_t* const mem_end = mem_begin + length; |
| 957 | uint8_t* const page_begin = AlignUp(mem_begin, kPageSize); |
| 958 | uint8_t* const page_end = AlignDown(mem_end, kPageSize); |
| 959 | if (!kMadviseZeroes || page_begin >= page_end) { |
| 960 | // No possible area to madvise. |
| 961 | std::fill(mem_begin, mem_end, 0); |
| 962 | } else { |
| 963 | // Spans one or more pages. |
| 964 | DCHECK_LE(mem_begin, page_begin); |
| 965 | DCHECK_LE(page_begin, page_end); |
| 966 | DCHECK_LE(page_end, mem_end); |
| 967 | std::fill(mem_begin, page_begin, 0); |
| 968 | CHECK_NE(madvise(page_begin, page_end - page_begin, MADV_DONTNEED), -1) << "madvise failed"; |
| 969 | std::fill(page_end, mem_end, 0); |
| 970 | } |
| 971 | } |
| 972 | |
| Hiroshi Yamauchi | 3c3c4a1 | 2017-02-21 16:49:59 -0800 | [diff] [blame] | 973 | void MemMap::AlignBy(size_t size) { |
| 974 | CHECK_EQ(begin_, base_begin_) << "Unsupported"; |
| 975 | CHECK_EQ(size_, base_size_) << "Unsupported"; |
| 976 | CHECK_GT(size, static_cast<size_t>(kPageSize)); |
| 977 | CHECK_ALIGNED(size, kPageSize); |
| 978 | if (IsAlignedParam(reinterpret_cast<uintptr_t>(base_begin_), size) && |
| 979 | IsAlignedParam(base_size_, size)) { |
| 980 | // Already aligned. |
| 981 | return; |
| 982 | } |
| 983 | uint8_t* base_begin = reinterpret_cast<uint8_t*>(base_begin_); |
| 984 | uint8_t* base_end = base_begin + base_size_; |
| 985 | uint8_t* aligned_base_begin = AlignUp(base_begin, size); |
| 986 | uint8_t* aligned_base_end = AlignDown(base_end, size); |
| 987 | CHECK_LE(base_begin, aligned_base_begin); |
| 988 | CHECK_LE(aligned_base_end, base_end); |
| 989 | size_t aligned_base_size = aligned_base_end - aligned_base_begin; |
| 990 | CHECK_LT(aligned_base_begin, aligned_base_end) |
| 991 | << "base_begin = " << reinterpret_cast<void*>(base_begin) |
| 992 | << " base_end = " << reinterpret_cast<void*>(base_end); |
| 993 | CHECK_GE(aligned_base_size, size); |
| 994 | // Unmap the unaligned parts. |
| 995 | if (base_begin < aligned_base_begin) { |
| 996 | MEMORY_TOOL_MAKE_UNDEFINED(base_begin, aligned_base_begin - base_begin); |
| 997 | CHECK_EQ(munmap(base_begin, aligned_base_begin - base_begin), 0) |
| 998 | << "base_begin=" << reinterpret_cast<void*>(base_begin) |
| 999 | << " aligned_base_begin=" << reinterpret_cast<void*>(aligned_base_begin); |
| 1000 | } |
| 1001 | if (aligned_base_end < base_end) { |
| 1002 | MEMORY_TOOL_MAKE_UNDEFINED(aligned_base_end, base_end - aligned_base_end); |
| 1003 | CHECK_EQ(munmap(aligned_base_end, base_end - aligned_base_end), 0) |
| 1004 | << "base_end=" << reinterpret_cast<void*>(base_end) |
| 1005 | << " aligned_base_end=" << reinterpret_cast<void*>(aligned_base_end); |
| 1006 | } |
| 1007 | std::lock_guard<std::mutex> mu(*mem_maps_lock_); |
| 1008 | base_begin_ = aligned_base_begin; |
| 1009 | base_size_ = aligned_base_size; |
| 1010 | begin_ = aligned_base_begin; |
| 1011 | size_ = aligned_base_size; |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 1012 | DCHECK(gMaps != nullptr); |
| Hiroshi Yamauchi | 3c3c4a1 | 2017-02-21 16:49:59 -0800 | [diff] [blame] | 1013 | if (base_begin < aligned_base_begin) { |
| Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 1014 | auto it = gMaps->find(base_begin); |
| 1015 | CHECK(it != gMaps->end()) << "MemMap not found"; |
| 1016 | gMaps->erase(it); |
| 1017 | gMaps->insert(std::make_pair(base_begin_, this)); |
| Hiroshi Yamauchi | 3c3c4a1 | 2017-02-21 16:49:59 -0800 | [diff] [blame] | 1018 | } |
| 1019 | } |
| 1020 | |
| Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1021 | } // namespace art |