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