blob: 3a324b2dc5c46d6c52b0d976c0a95e2e4b0e9cce [file] [log] [blame]
Brian Carlstromdb4d5402011-08-09 12:18:28 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
David Sehr79e26072018-04-06 17:58:50 -070017#ifndef ART_LIBARTBASE_BASE_MEM_MAP_H_
18#define ART_LIBARTBASE_BASE_MEM_MAP_H_
Brian Carlstromdb4d5402011-08-09 12:18:28 -070019
Brian Carlstrom27ec9612011-09-19 20:20:38 -070020#include <stddef.h>
21#include <sys/types.h>
Brian Carlstromdb4d5402011-08-09 12:18:28 -070022
Andreas Gampe0dfc3152017-04-24 07:58:06 -070023#include <map>
Igor Murashkin5573c372017-11-16 13:34:30 -080024#include <mutex>
Andreas Gampe0dfc3152017-04-24 07:58:06 -070025#include <string>
26
27#include "android-base/thread_annotations.h"
David Sehr1979c642018-04-26 14:41:18 -070028#include "macros.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070029
30namespace art {
31
Andreas Gampe651ba592017-06-14 14:41:33 -070032#if defined(__LP64__) && (defined(__aarch64__) || defined(__mips__) || defined(__APPLE__))
Ian Rogersc3ccc102014-06-25 11:52:14 -070033#define USE_ART_LOW_4G_ALLOCATOR 1
34#else
Andreas Gampe651ba592017-06-14 14:41:33 -070035#if defined(__LP64__) && !defined(__x86_64__)
36#error "Unrecognized 64-bit architecture."
37#endif
Ian Rogersc3ccc102014-06-25 11:52:14 -070038#define USE_ART_LOW_4G_ALLOCATOR 0
39#endif
40
Ian Rogersc5f17732014-06-05 20:48:42 -070041#ifdef __linux__
42static constexpr bool kMadviseZeroes = true;
Alex Lightca97ada2018-02-02 09:25:31 -080043#define HAVE_MREMAP_SYSCALL true
Ian Rogersc5f17732014-06-05 20:48:42 -070044#else
45static constexpr bool kMadviseZeroes = false;
Alex Lightca97ada2018-02-02 09:25:31 -080046// We cannot ever perform MemMap::ReplaceWith on non-linux hosts since the syscall is not
47// present.
48#define HAVE_MREMAP_SYSCALL false
Ian Rogersc5f17732014-06-05 20:48:42 -070049#endif
50
Brian Carlstromdb4d5402011-08-09 12:18:28 -070051// Used to keep track of mmap segments.
Andreas Gamped8f26db2014-05-19 17:01:13 -070052//
53// On 64b systems not supporting MAP_32BIT, the implementation of MemMap will do a linear scan
54// for free pages. For security, the start of this scan should be randomized. This requires a
55// dynamic initializer.
56// For this to work, it is paramount that there are no other static initializers that access MemMap.
57// Otherwise, calls might see uninitialized values.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070058class MemMap {
59 public:
Alex Lightca97ada2018-02-02 09:25:31 -080060 static constexpr bool kCanReplaceMapping = HAVE_MREMAP_SYSCALL;
61
62 // Replace the data in this memmmap with the data in the memmap pointed to by source. The caller
63 // relinquishes ownership of the source mmap.
64 //
65 // For the call to be successful:
66 // * The range [dest->Begin, dest->Begin() + source->Size()] must not overlap with
67 // [source->Begin(), source->End()].
68 // * Neither source nor dest may be 'reused' mappings (they must own all the pages associated
69 // with them.
70 // * kCanReplaceMapping must be true.
71 // * Neither source nor dest may use manual redzones.
72 // * Both source and dest must have the same offset from the nearest page boundary.
73 // * mremap must succeed when called on the mappings.
74 //
75 // If this call succeeds it will return true and:
76 // * Deallocate *source
77 // * Sets *source to nullptr
78 // * The protection of this will remain the same.
79 // * The size of this will be the size of the source
80 // * The data in this will be the data from source.
81 //
82 // If this call fails it will return false and make no changes to *source or this. The ownership
83 // of the source mmap is returned to the caller.
84 bool ReplaceWith(/*in-out*/MemMap** source, /*out*/std::string* error);
85
Elliott Hughesecd3a6f2012-06-06 18:16:37 -070086 // Request an anonymous region of length 'byte_count' and a requested base address.
Mathieu Chartier2cebb242015-04-21 16:50:40 -070087 // Use null as the requested base address if you don't care.
Vladimir Marko5c42c292015-02-25 12:02:49 +000088 // "reuse" allows re-mapping an address range from an existing mapping.
Elliott Hughes6c9c06d2011-11-07 16:43:47 -080089 //
90 // The word "anonymous" in this context means "not backed by a file". The supplied
Nicolas Geoffraya25dce92016-01-12 16:41:10 +000091 // 'name' will be used -- on systems that support it -- to give the mapping
Elliott Hughes6c9c06d2011-11-07 16:43:47 -080092 // a name.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070093 //
Mathieu Chartier2cebb242015-04-21 16:50:40 -070094 // On success, returns returns a MemMap instance. On failure, returns null.
Nicolas Geoffraya25dce92016-01-12 16:41:10 +000095 static MemMap* MapAnonymous(const char* name,
Mathieu Chartier42bddce2015-11-09 15:16:56 -080096 uint8_t* addr,
97 size_t byte_count,
98 int prot,
99 bool low_4gb,
100 bool reuse,
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000101 std::string* error_msg,
Nicolas Geoffray58a73d22016-11-29 21:49:43 +0000102 bool use_ashmem = true);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700103
David Srbecky1baabf02015-06-16 17:12:34 +0000104 // Create placeholder for a region allocated by direct call to mmap.
105 // This is useful when we do not have control over the code calling mmap,
106 // but when we still want to keep track of it in the list.
107 // The region is not considered to be owned and will not be unmmaped.
108 static MemMap* MapDummy(const char* name, uint8_t* addr, size_t byte_count);
109
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700110 // Map part of a file, taking care of non-page aligned offsets. The
111 // "start" offset is absolute, not relative.
112 //
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700113 // On success, returns returns a MemMap instance. On failure, returns null.
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800114 static MemMap* MapFile(size_t byte_count,
115 int prot,
116 int flags,
117 int fd,
118 off_t start,
119 bool low_4gb,
120 const char* filename,
121 std::string* error_msg) {
122 return MapFileAtAddress(nullptr,
123 byte_count,
124 prot,
125 flags,
126 fd,
127 start,
128 /*low_4gb*/low_4gb,
129 /*reuse*/false,
130 filename,
131 error_msg);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700132 }
133
Mathieu Chartierebe2dfc2015-11-24 13:47:52 -0800134 // Map part of a file, taking care of non-page aligned offsets. The "start" offset is absolute,
135 // not relative. This version allows requesting a specific address for the base of the mapping.
136 // "reuse" allows us to create a view into an existing mapping where we do not take ownership of
137 // the memory. If error_msg is null then we do not print /proc/maps to the log if
138 // MapFileAtAddress fails. This helps improve performance of the fail case since reading and
139 // printing /proc/maps takes several milliseconds in the worst case.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700140 //
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700141 // On success, returns returns a MemMap instance. On failure, returns null.
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800142 static MemMap* MapFileAtAddress(uint8_t* addr,
143 size_t byte_count,
144 int prot,
145 int flags,
146 int fd,
147 off_t start,
148 bool low_4gb,
149 bool reuse,
150 const char* filename,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700151 std::string* error_msg);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700152
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700153 // Releases the memory mapping.
David Sehr1b14fb82017-02-01 10:42:11 -0800154 ~MemMap() REQUIRES(!MemMap::mem_maps_lock_);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700155
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800156 const std::string& GetName() const {
157 return name_;
158 }
159
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000160 bool Sync();
161
Logan Chiend88fa262012-06-06 15:23:32 +0800162 bool Protect(int prot);
163
Ian Rogersc5f17732014-06-05 20:48:42 -0700164 void MadviseDontNeedAndZero();
165
Ian Rogers1c849e52012-06-28 14:00:33 -0700166 int GetProtect() const {
167 return prot_;
168 }
169
Ian Rogers13735952014-10-08 12:43:28 -0700170 uint8_t* Begin() const {
Ian Rogers30fab402012-01-23 15:43:46 -0800171 return begin_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700172 }
173
Ian Rogers30fab402012-01-23 15:43:46 -0800174 size_t Size() const {
175 return size_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700176 }
177
Mathieu Chartier379d09f2015-01-08 11:28:13 -0800178 // Resize the mem-map by unmapping pages at the end. Currently only supports shrinking.
179 void SetSize(size_t new_size);
180
Ian Rogers13735952014-10-08 12:43:28 -0700181 uint8_t* End() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700182 return Begin() + Size();
183 }
184
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800185 void* BaseBegin() const {
186 return base_begin_;
187 }
188
189 size_t BaseSize() const {
190 return base_size_;
191 }
192
193 void* BaseEnd() const {
Ian Rogers13735952014-10-08 12:43:28 -0700194 return reinterpret_cast<uint8_t*>(BaseBegin()) + BaseSize();
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800195 }
196
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700197 bool HasAddress(const void* addr) const {
198 return Begin() <= addr && addr < End();
Brian Carlstromb765be02011-08-17 23:54:10 -0700199 }
200
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700201 // Unmap the pages at end and remap them to create another memory map.
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800202 MemMap* RemapAtEnd(uint8_t* new_end,
203 const char* tail_name,
204 int tail_prot,
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000205 std::string* error_msg,
Orion Hodsondbd05fe2017-08-10 11:41:35 +0100206 bool use_ashmem = true);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700207
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700208 static bool CheckNoGaps(MemMap* begin_map, MemMap* end_map)
David Sehr1b14fb82017-02-01 10:42:11 -0800209 REQUIRES(!MemMap::mem_maps_lock_);
Vladimir Marko17a924a2015-05-08 15:17:32 +0100210 static void DumpMaps(std::ostream& os, bool terse = false)
David Sehr1b14fb82017-02-01 10:42:11 -0800211 REQUIRES(!MemMap::mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700212
David Sehr1b14fb82017-02-01 10:42:11 -0800213 // Init and Shutdown are NOT thread safe.
214 // Both may be called multiple times and MemMap objects may be created any
215 // time after the first call to Init and before the first call to Shutodwn.
216 static void Init() REQUIRES(!MemMap::mem_maps_lock_);
217 static void Shutdown() REQUIRES(!MemMap::mem_maps_lock_);
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700218
Hiroshi Yamauchi6edb9ae2016-02-08 14:18:21 -0800219 // If the map is PROT_READ, try to read each page of the map to check it is in fact readable (not
220 // faulting). This is used to diagnose a bug b/19894268 where mprotect doesn't seem to be working
221 // intermittently.
222 void TryReadable();
223
Hiroshi Yamauchi3c3c4a12017-02-21 16:49:59 -0800224 // Align the map by unmapping the unaligned parts at the lower and the higher ends.
225 void AlignBy(size_t size);
226
Andreas Gampe0dfc3152017-04-24 07:58:06 -0700227 // For annotation reasons.
228 static std::mutex* GetMemMapsLock() RETURN_CAPABILITY(mem_maps_lock_) {
229 return nullptr;
230 }
231
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700232 private:
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800233 MemMap(const std::string& name,
234 uint8_t* begin,
235 size_t size,
236 void* base_begin,
237 size_t base_size,
238 int prot,
239 bool reuse,
David Sehr1b14fb82017-02-01 10:42:11 -0800240 size_t redzone_size = 0) REQUIRES(!MemMap::mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700241
Vladimir Marko17a924a2015-05-08 15:17:32 +0100242 static void DumpMapsLocked(std::ostream& os, bool terse)
David Sehr1b14fb82017-02-01 10:42:11 -0800243 REQUIRES(MemMap::mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700244 static bool HasMemMap(MemMap* map)
David Sehr1b14fb82017-02-01 10:42:11 -0800245 REQUIRES(MemMap::mem_maps_lock_);
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700246 static MemMap* GetLargestMemMapAt(void* address)
David Sehr1b14fb82017-02-01 10:42:11 -0800247 REQUIRES(MemMap::mem_maps_lock_);
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700248 static bool ContainedWithinExistingMap(uint8_t* ptr, size_t size, std::string* error_msg)
David Sehr1b14fb82017-02-01 10:42:11 -0800249 REQUIRES(!MemMap::mem_maps_lock_);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700250
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800251 // Internal version of mmap that supports low 4gb emulation.
252 static void* MapInternal(void* addr,
253 size_t length,
254 int prot,
255 int flags,
256 int fd,
257 off_t offset,
Andreas Gampe651ba592017-06-14 14:41:33 -0700258 bool low_4gb)
259 REQUIRES(!MemMap::mem_maps_lock_);
260 static void* MapInternalArtLow4GBAllocator(size_t length,
261 int prot,
262 int flags,
263 int fd,
264 off_t offset)
265 REQUIRES(!MemMap::mem_maps_lock_);
Mathieu Chartier42bddce2015-11-09 15:16:56 -0800266
Jim_Guoa62a5882014-04-28 11:11:57 +0800267 const std::string name_;
Hiroshi Yamauchi3c3c4a12017-02-21 16:49:59 -0800268 uint8_t* begin_; // Start of data. May be changed by AlignBy.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700269 size_t size_; // Length of data.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700270
Hiroshi Yamauchi3c3c4a12017-02-21 16:49:59 -0800271 void* base_begin_; // Page-aligned base address. May be changed by AlignBy.
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700272 size_t base_size_; // Length of mapping. May be changed by RemapAtEnd (ie Zygote).
Ian Rogers1c849e52012-06-28 14:00:33 -0700273 int prot_; // Protection of the map.
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700274
Jim_Guoa62a5882014-04-28 11:11:57 +0800275 // When reuse_ is true, this is just a view of an existing mapping
276 // and we do not take ownership and are not responsible for
277 // unmapping.
278 const bool reuse_;
279
Alex Lightca97ada2018-02-02 09:25:31 -0800280 // When already_unmapped_ is true the destructor will not call munmap.
281 bool already_unmapped_;
282
Evgenii Stepanov1e133742015-05-20 12:30:59 -0700283 const size_t redzone_size_;
284
Ian Rogersc3ccc102014-06-25 11:52:14 -0700285#if USE_ART_LOW_4G_ALLOCATOR
286 static uintptr_t next_mem_pos_; // Next memory location to check for low_4g extent.
Stuart Monteith8dba5aa2014-03-12 12:44:01 +0000287#endif
288
David Sehr1b14fb82017-02-01 10:42:11 -0800289 static std::mutex* mem_maps_lock_;
290
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700291 friend class MemMapTest; // To allow access to base_begin_ and base_size_.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700292};
Mathieu Chartier6e6078a2016-10-24 15:45:41 -0700293
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800294std::ostream& operator<<(std::ostream& os, const MemMap& mem_map);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700295
Mathieu Chartier6e6078a2016-10-24 15:45:41 -0700296// Zero and release pages if possible, no requirements on alignments.
297void ZeroAndReleasePages(void* address, size_t length);
298
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700299} // namespace art
300
David Sehr79e26072018-04-06 17:58:50 -0700301#endif // ART_LIBARTBASE_BASE_MEM_MAP_H_