Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_MEM_MAP_H_ |
| 18 | #define ART_RUNTIME_MEM_MAP_H_ |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 19 | |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 20 | #include <stddef.h> |
| 21 | #include <sys/types.h> |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 22 | |
Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 23 | #include <map> |
| 24 | #include <mutex> |
| 25 | #include <string> |
| 26 | |
| 27 | #include "android-base/thread_annotations.h" |
David Sehr | d1dbb74 | 2017-07-17 11:20:38 -0700 | [diff] [blame] | 28 | #include "android-base/unique_fd.h" |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 29 | |
| 30 | namespace art { |
| 31 | |
Andreas Gampe | 651ba59 | 2017-06-14 14:41:33 -0700 | [diff] [blame] | 32 | #if defined(__LP64__) && (defined(__aarch64__) || defined(__mips__) || defined(__APPLE__)) |
Ian Rogers | c3ccc10 | 2014-06-25 11:52:14 -0700 | [diff] [blame] | 33 | #define USE_ART_LOW_4G_ALLOCATOR 1 |
| 34 | #else |
Andreas Gampe | 651ba59 | 2017-06-14 14:41:33 -0700 | [diff] [blame] | 35 | #if defined(__LP64__) && !defined(__x86_64__) |
| 36 | #error "Unrecognized 64-bit architecture." |
| 37 | #endif |
Ian Rogers | c3ccc10 | 2014-06-25 11:52:14 -0700 | [diff] [blame] | 38 | #define USE_ART_LOW_4G_ALLOCATOR 0 |
| 39 | #endif |
| 40 | |
David Sehr | d1dbb74 | 2017-07-17 11:20:38 -0700 | [diff] [blame] | 41 | using android::base::unique_fd; |
| 42 | |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 43 | #ifdef __linux__ |
| 44 | static constexpr bool kMadviseZeroes = true; |
| 45 | #else |
| 46 | static constexpr bool kMadviseZeroes = false; |
| 47 | #endif |
| 48 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 49 | // Used to keep track of mmap segments. |
Andreas Gampe | d8f26db | 2014-05-19 17:01:13 -0700 | [diff] [blame] | 50 | // |
| 51 | // On 64b systems not supporting MAP_32BIT, the implementation of MemMap will do a linear scan |
| 52 | // for free pages. For security, the start of this scan should be randomized. This requires a |
| 53 | // dynamic initializer. |
| 54 | // For this to work, it is paramount that there are no other static initializers that access MemMap. |
| 55 | // Otherwise, calls might see uninitialized values. |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 56 | class MemMap { |
| 57 | public: |
Elliott Hughes | ecd3a6f | 2012-06-06 18:16:37 -0700 | [diff] [blame] | 58 | // Request an anonymous region of length 'byte_count' and a requested base address. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 59 | // Use null as the requested base address if you don't care. |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 60 | // "reuse" allows re-mapping an address range from an existing mapping. |
Elliott Hughes | 6c9c06d | 2011-11-07 16:43:47 -0800 | [diff] [blame] | 61 | // |
| 62 | // The word "anonymous" in this context means "not backed by a file". The supplied |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 63 | // 'name' will be used -- on systems that support it -- to give the mapping |
Elliott Hughes | 6c9c06d | 2011-11-07 16:43:47 -0800 | [diff] [blame] | 64 | // a name. |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 65 | // |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 66 | // On success, returns returns a MemMap instance. On failure, returns null. |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 67 | static MemMap* MapAnonymous(const char* name, |
Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 68 | uint8_t* addr, |
| 69 | size_t byte_count, |
| 70 | int prot, |
| 71 | bool low_4gb, |
| 72 | bool reuse, |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 73 | std::string* error_msg, |
Nicolas Geoffray | 58a73d2 | 2016-11-29 21:49:43 +0000 | [diff] [blame] | 74 | bool use_ashmem = true); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 75 | |
David Srbecky | 1baabf0 | 2015-06-16 17:12:34 +0000 | [diff] [blame] | 76 | // Create placeholder for a region allocated by direct call to mmap. |
| 77 | // This is useful when we do not have control over the code calling mmap, |
| 78 | // but when we still want to keep track of it in the list. |
| 79 | // The region is not considered to be owned and will not be unmmaped. |
| 80 | static MemMap* MapDummy(const char* name, uint8_t* addr, size_t byte_count); |
| 81 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 82 | // Map part of a file, taking care of non-page aligned offsets. The |
| 83 | // "start" offset is absolute, not relative. |
| 84 | // |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 85 | // On success, returns returns a MemMap instance. On failure, returns null. |
Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 86 | static MemMap* MapFile(size_t byte_count, |
| 87 | int prot, |
| 88 | int flags, |
| 89 | int fd, |
| 90 | off_t start, |
| 91 | bool low_4gb, |
| 92 | const char* filename, |
| 93 | std::string* error_msg) { |
| 94 | return MapFileAtAddress(nullptr, |
| 95 | byte_count, |
| 96 | prot, |
| 97 | flags, |
| 98 | fd, |
| 99 | start, |
| 100 | /*low_4gb*/low_4gb, |
| 101 | /*reuse*/false, |
| 102 | filename, |
| 103 | error_msg); |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Mathieu Chartier | ebe2dfc | 2015-11-24 13:47:52 -0800 | [diff] [blame] | 106 | // Map part of a file, taking care of non-page aligned offsets. The "start" offset is absolute, |
| 107 | // not relative. This version allows requesting a specific address for the base of the mapping. |
| 108 | // "reuse" allows us to create a view into an existing mapping where we do not take ownership of |
| 109 | // the memory. If error_msg is null then we do not print /proc/maps to the log if |
| 110 | // MapFileAtAddress fails. This helps improve performance of the fail case since reading and |
| 111 | // printing /proc/maps takes several milliseconds in the worst case. |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 112 | // |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 113 | // On success, returns returns a MemMap instance. On failure, returns null. |
Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 114 | static MemMap* MapFileAtAddress(uint8_t* addr, |
| 115 | size_t byte_count, |
| 116 | int prot, |
| 117 | int flags, |
| 118 | int fd, |
| 119 | off_t start, |
| 120 | bool low_4gb, |
| 121 | bool reuse, |
| 122 | const char* filename, |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 123 | std::string* error_msg); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 124 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 125 | // Releases the memory mapping. |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 126 | ~MemMap() REQUIRES(!MemMap::mem_maps_lock_); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 127 | |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 128 | const std::string& GetName() const { |
| 129 | return name_; |
| 130 | } |
| 131 | |
Vladimir Marko | 9bdf108 | 2016-01-21 12:15:52 +0000 | [diff] [blame] | 132 | bool Sync(); |
| 133 | |
Logan Chien | d88fa26 | 2012-06-06 15:23:32 +0800 | [diff] [blame] | 134 | bool Protect(int prot); |
| 135 | |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 136 | void MadviseDontNeedAndZero(); |
| 137 | |
Ian Rogers | 1c849e5 | 2012-06-28 14:00:33 -0700 | [diff] [blame] | 138 | int GetProtect() const { |
| 139 | return prot_; |
| 140 | } |
| 141 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 142 | uint8_t* Begin() const { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 143 | return begin_; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 146 | size_t Size() const { |
| 147 | return size_; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Mathieu Chartier | 379d09f | 2015-01-08 11:28:13 -0800 | [diff] [blame] | 150 | // Resize the mem-map by unmapping pages at the end. Currently only supports shrinking. |
| 151 | void SetSize(size_t new_size); |
| 152 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 153 | uint8_t* End() const { |
Mathieu Chartier | 2fde533 | 2012-09-14 14:51:54 -0700 | [diff] [blame] | 154 | return Begin() + Size(); |
| 155 | } |
| 156 | |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 157 | void* BaseBegin() const { |
| 158 | return base_begin_; |
| 159 | } |
| 160 | |
| 161 | size_t BaseSize() const { |
| 162 | return base_size_; |
| 163 | } |
| 164 | |
| 165 | void* BaseEnd() const { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 166 | return reinterpret_cast<uint8_t*>(BaseBegin()) + BaseSize(); |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 167 | } |
| 168 | |
Mathieu Chartier | 2fde533 | 2012-09-14 14:51:54 -0700 | [diff] [blame] | 169 | bool HasAddress(const void* addr) const { |
| 170 | return Begin() <= addr && addr < End(); |
Brian Carlstrom | b765be0 | 2011-08-17 23:54:10 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 173 | // Unmap the pages at end and remap them to create another memory map. |
David Sehr | d1dbb74 | 2017-07-17 11:20:38 -0700 | [diff] [blame] | 174 | // sharing_flags should be either MAP_PRIVATE or MAP_SHARED. |
Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 175 | MemMap* RemapAtEnd(uint8_t* new_end, |
| 176 | const char* tail_name, |
| 177 | int tail_prot, |
David Sehr | d1dbb74 | 2017-07-17 11:20:38 -0700 | [diff] [blame] | 178 | int sharing_flags, |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 179 | std::string* error_msg, |
David Sehr | d1dbb74 | 2017-07-17 11:20:38 -0700 | [diff] [blame] | 180 | bool use_ashmem = true, |
| 181 | unique_fd* shmem_fd = nullptr); |
Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 182 | |
Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 183 | static bool CheckNoGaps(MemMap* begin_map, MemMap* end_map) |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 184 | REQUIRES(!MemMap::mem_maps_lock_); |
Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 185 | static void DumpMaps(std::ostream& os, bool terse = false) |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 186 | REQUIRES(!MemMap::mem_maps_lock_); |
Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 187 | |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 188 | // Init and Shutdown are NOT thread safe. |
| 189 | // Both may be called multiple times and MemMap objects may be created any |
| 190 | // time after the first call to Init and before the first call to Shutodwn. |
| 191 | static void Init() REQUIRES(!MemMap::mem_maps_lock_); |
| 192 | static void Shutdown() REQUIRES(!MemMap::mem_maps_lock_); |
Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 193 | |
Hiroshi Yamauchi | 6edb9ae | 2016-02-08 14:18:21 -0800 | [diff] [blame] | 194 | // If the map is PROT_READ, try to read each page of the map to check it is in fact readable (not |
| 195 | // faulting). This is used to diagnose a bug b/19894268 where mprotect doesn't seem to be working |
| 196 | // intermittently. |
| 197 | void TryReadable(); |
| 198 | |
Hiroshi Yamauchi | 3c3c4a1 | 2017-02-21 16:49:59 -0800 | [diff] [blame] | 199 | // Align the map by unmapping the unaligned parts at the lower and the higher ends. |
| 200 | void AlignBy(size_t size); |
| 201 | |
Andreas Gampe | 0dfc315 | 2017-04-24 07:58:06 -0700 | [diff] [blame] | 202 | // For annotation reasons. |
| 203 | static std::mutex* GetMemMapsLock() RETURN_CAPABILITY(mem_maps_lock_) { |
| 204 | return nullptr; |
| 205 | } |
| 206 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 207 | private: |
Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 208 | MemMap(const std::string& name, |
| 209 | uint8_t* begin, |
| 210 | size_t size, |
| 211 | void* base_begin, |
| 212 | size_t base_size, |
| 213 | int prot, |
| 214 | bool reuse, |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 215 | size_t redzone_size = 0) REQUIRES(!MemMap::mem_maps_lock_); |
Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 216 | |
Vladimir Marko | 17a924a | 2015-05-08 15:17:32 +0100 | [diff] [blame] | 217 | static void DumpMapsLocked(std::ostream& os, bool terse) |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 218 | REQUIRES(MemMap::mem_maps_lock_); |
Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 219 | static bool HasMemMap(MemMap* map) |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 220 | REQUIRES(MemMap::mem_maps_lock_); |
Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 221 | static MemMap* GetLargestMemMapAt(void* address) |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 222 | REQUIRES(MemMap::mem_maps_lock_); |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 223 | static bool ContainedWithinExistingMap(uint8_t* ptr, size_t size, std::string* error_msg) |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 224 | REQUIRES(!MemMap::mem_maps_lock_); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 225 | |
Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 226 | // Internal version of mmap that supports low 4gb emulation. |
| 227 | static void* MapInternal(void* addr, |
| 228 | size_t length, |
| 229 | int prot, |
| 230 | int flags, |
| 231 | int fd, |
| 232 | off_t offset, |
Andreas Gampe | 651ba59 | 2017-06-14 14:41:33 -0700 | [diff] [blame] | 233 | bool low_4gb) |
| 234 | REQUIRES(!MemMap::mem_maps_lock_); |
| 235 | static void* MapInternalArtLow4GBAllocator(size_t length, |
| 236 | int prot, |
| 237 | int flags, |
| 238 | int fd, |
| 239 | off_t offset) |
| 240 | REQUIRES(!MemMap::mem_maps_lock_); |
Mathieu Chartier | 42bddce | 2015-11-09 15:16:56 -0800 | [diff] [blame] | 241 | |
Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 242 | const std::string name_; |
Hiroshi Yamauchi | 3c3c4a1 | 2017-02-21 16:49:59 -0800 | [diff] [blame] | 243 | uint8_t* begin_; // Start of data. May be changed by AlignBy. |
Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 244 | size_t size_; // Length of data. |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 245 | |
Hiroshi Yamauchi | 3c3c4a1 | 2017-02-21 16:49:59 -0800 | [diff] [blame] | 246 | void* base_begin_; // Page-aligned base address. May be changed by AlignBy. |
Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 247 | size_t base_size_; // Length of mapping. May be changed by RemapAtEnd (ie Zygote). |
Ian Rogers | 1c849e5 | 2012-06-28 14:00:33 -0700 | [diff] [blame] | 248 | int prot_; // Protection of the map. |
Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 249 | |
Jim_Guo | a62a588 | 2014-04-28 11:11:57 +0800 | [diff] [blame] | 250 | // When reuse_ is true, this is just a view of an existing mapping |
| 251 | // and we do not take ownership and are not responsible for |
| 252 | // unmapping. |
| 253 | const bool reuse_; |
| 254 | |
Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 255 | const size_t redzone_size_; |
| 256 | |
Ian Rogers | c3ccc10 | 2014-06-25 11:52:14 -0700 | [diff] [blame] | 257 | #if USE_ART_LOW_4G_ALLOCATOR |
| 258 | static uintptr_t next_mem_pos_; // Next memory location to check for low_4g extent. |
Stuart Monteith | 8dba5aa | 2014-03-12 12:44:01 +0000 | [diff] [blame] | 259 | #endif |
| 260 | |
David Sehr | 1b14fb8 | 2017-02-01 10:42:11 -0800 | [diff] [blame] | 261 | static std::mutex* mem_maps_lock_; |
| 262 | |
Hiroshi Yamauchi | fd7e7f1 | 2013-10-22 14:17:48 -0700 | [diff] [blame] | 263 | friend class MemMapTest; // To allow access to base_begin_ and base_size_. |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 264 | }; |
Mathieu Chartier | 6e6078a | 2016-10-24 15:45:41 -0700 | [diff] [blame] | 265 | |
Brian Carlstrom | 0d6adac | 2014-02-05 17:39:16 -0800 | [diff] [blame] | 266 | std::ostream& operator<<(std::ostream& os, const MemMap& mem_map); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 267 | |
Mathieu Chartier | 6e6078a | 2016-10-24 15:45:41 -0700 | [diff] [blame] | 268 | // Zero and release pages if possible, no requirements on alignments. |
| 269 | void ZeroAndReleasePages(void* address, size_t length); |
| 270 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 271 | } // namespace art |
| 272 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 273 | #endif // ART_RUNTIME_MEM_MAP_H_ |