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