blob: defa6a52fddb4f524ea878c7d35fb7afb088bc0d [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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_MEM_MAP_H_
18#define ART_RUNTIME_MEM_MAP_H_
Brian Carlstromdb4d5402011-08-09 12:18:28 -070019
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070020#include "base/mutex.h"
21
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070022#include <string>
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070023#include <map>
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070024
Brian Carlstrom27ec9612011-09-19 20:20:38 -070025#include <stddef.h>
Elliott Hughesa168c832012-06-12 15:34:20 -070026#include <sys/mman.h> // For the PROT_* and MAP_* constants.
Brian Carlstrom27ec9612011-09-19 20:20:38 -070027#include <sys/types.h>
Brian Carlstromdb4d5402011-08-09 12:18:28 -070028
Brian Carlstrom27ec9612011-09-19 20:20:38 -070029#include "globals.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070030
31namespace art {
32
Ian Rogersc3ccc102014-06-25 11:52:14 -070033#if defined(__LP64__) && (!defined(__x86_64__) || defined(__APPLE__))
34#define USE_ART_LOW_4G_ALLOCATOR 1
35#else
36#define USE_ART_LOW_4G_ALLOCATOR 0
37#endif
38
Ian Rogersc5f17732014-06-05 20:48:42 -070039#ifdef __linux__
40static constexpr bool kMadviseZeroes = true;
41#else
42static constexpr bool kMadviseZeroes = false;
43#endif
44
Brian Carlstromdb4d5402011-08-09 12:18:28 -070045// Used to keep track of mmap segments.
Andreas Gamped8f26db2014-05-19 17:01:13 -070046//
47// On 64b systems not supporting MAP_32BIT, the implementation of MemMap will do a linear scan
48// for free pages. For security, the start of this scan should be randomized. This requires a
49// dynamic initializer.
50// For this to work, it is paramount that there are no other static initializers that access MemMap.
51// Otherwise, calls might see uninitialized values.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070052class MemMap {
53 public:
Elliott Hughesecd3a6f2012-06-06 18:16:37 -070054 // Request an anonymous region of length 'byte_count' and a requested base address.
Elliott Hughes6c9c06d2011-11-07 16:43:47 -080055 // Use NULL as the requested base address if you don't care.
56 //
57 // The word "anonymous" in this context means "not backed by a file". The supplied
58 // 'ashmem_name' will be used -- on systems that support it -- to give the mapping
59 // a name.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070060 //
61 // On success, returns returns a MemMap instance. On failure, returns a NULL;
Ian Rogers8d31bbd2013-10-13 10:44:14 -070062 static MemMap* MapAnonymous(const char* ashmem_name, byte* addr, size_t byte_count, int prot,
Ian Rogersef7d42f2014-01-06 12:55:46 -080063 bool low_4gb, std::string* error_msg);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070064
65 // Map part of a file, taking care of non-page aligned offsets. The
66 // "start" offset is absolute, not relative.
67 //
68 // On success, returns returns a MemMap instance. On failure, returns a NULL;
Ian Rogers8d31bbd2013-10-13 10:44:14 -070069 static MemMap* MapFile(size_t byte_count, int prot, int flags, int fd, off_t start,
70 const char* filename, std::string* error_msg) {
71 return MapFileAtAddress(NULL, byte_count, prot, flags, fd, start, false, filename, error_msg);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070072 }
73
74 // Map part of a file, taking care of non-page aligned offsets. The
75 // "start" offset is absolute, not relative. This version allows
76 // requesting a specific address for the base of the mapping.
77 //
78 // On success, returns returns a MemMap instance. On failure, returns a NULL;
Ian Rogers8d31bbd2013-10-13 10:44:14 -070079 static MemMap* MapFileAtAddress(byte* addr, size_t byte_count, int prot, int flags, int fd,
80 off_t start, bool reuse, const char* filename,
81 std::string* error_msg);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070082
Brian Carlstrom27ec9612011-09-19 20:20:38 -070083 // Releases the memory mapping
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070084 ~MemMap() LOCKS_EXCLUDED(Locks::mem_maps_lock_);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070085
Brian Carlstrom0d6adac2014-02-05 17:39:16 -080086 const std::string& GetName() const {
87 return name_;
88 }
89
Logan Chiend88fa262012-06-06 15:23:32 +080090 bool Protect(int prot);
91
Ian Rogersc5f17732014-06-05 20:48:42 -070092 void MadviseDontNeedAndZero();
93
Ian Rogers1c849e52012-06-28 14:00:33 -070094 int GetProtect() const {
95 return prot_;
96 }
97
Ian Rogers30fab402012-01-23 15:43:46 -080098 byte* Begin() const {
99 return begin_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700100 }
101
Ian Rogers30fab402012-01-23 15:43:46 -0800102 size_t Size() const {
103 return size_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700104 }
105
Ian Rogers30fab402012-01-23 15:43:46 -0800106 byte* End() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700107 return Begin() + Size();
108 }
109
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800110 void* BaseBegin() const {
111 return base_begin_;
112 }
113
114 size_t BaseSize() const {
115 return base_size_;
116 }
117
118 void* BaseEnd() const {
119 return reinterpret_cast<byte*>(BaseBegin()) + BaseSize();
120 }
121
Mathieu Chartier2fde5332012-09-14 14:51:54 -0700122 bool HasAddress(const void* addr) const {
123 return Begin() <= addr && addr < End();
Brian Carlstromb765be02011-08-17 23:54:10 -0700124 }
125
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700126 // Unmap the pages at end and remap them to create another memory map.
127 MemMap* RemapAtEnd(byte* new_end, const char* tail_name, int tail_prot,
128 std::string* error_msg);
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700129
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700130 static bool CheckNoGaps(MemMap* begin_map, MemMap* end_map)
131 LOCKS_EXCLUDED(Locks::mem_maps_lock_);
132 static void DumpMaps(std::ostream& os)
133 LOCKS_EXCLUDED(Locks::mem_maps_lock_);
134
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700135 private:
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700136 MemMap(const std::string& name, byte* begin, size_t size, void* base_begin, size_t base_size,
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700137 int prot) LOCKS_EXCLUDED(Locks::mem_maps_lock_);
138
139 static void DumpMaps(std::ostream& os, const std::multimap<void*, MemMap*>& mem_maps)
140 LOCKS_EXCLUDED(Locks::mem_maps_lock_);
141 static void DumpMapsLocked(std::ostream& os, const std::multimap<void*, MemMap*>& mem_maps)
142 EXCLUSIVE_LOCKS_REQUIRED(Locks::mem_maps_lock_);
143 static bool HasMemMap(MemMap* map)
144 EXCLUSIVE_LOCKS_REQUIRED(Locks::mem_maps_lock_);
145 static MemMap* GetLargestMemMapAt(void* address)
146 EXCLUSIVE_LOCKS_REQUIRED(Locks::mem_maps_lock_);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700147
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -0700148 std::string name_;
Ian Rogers1c849e52012-06-28 14:00:33 -0700149 byte* const begin_; // Start of data.
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700150 size_t size_; // Length of data.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700151
Ian Rogers1c849e52012-06-28 14:00:33 -0700152 void* const base_begin_; // Page-aligned base address.
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700153 size_t base_size_; // Length of mapping. May be changed by RemapAtEnd (ie Zygote).
Ian Rogers1c849e52012-06-28 14:00:33 -0700154 int prot_; // Protection of the map.
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700155
Ian Rogersc3ccc102014-06-25 11:52:14 -0700156#if USE_ART_LOW_4G_ALLOCATOR
157 static uintptr_t next_mem_pos_; // Next memory location to check for low_4g extent.
Stuart Monteith8dba5aa2014-03-12 12:44:01 +0000158#endif
159
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700160 // All the non-empty MemMaps. Use a multimap as we do a reserve-and-divide (eg ElfMap::Load()).
161 static std::multimap<void*, MemMap*> maps_ GUARDED_BY(Locks::mem_maps_lock_);
162
Hiroshi Yamauchifd7e7f12013-10-22 14:17:48 -0700163 friend class MemMapTest; // To allow access to base_begin_ and base_size_.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700164};
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800165std::ostream& operator<<(std::ostream& os, const MemMap& mem_map);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700166
167} // namespace art
168
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700169#endif // ART_RUNTIME_MEM_MAP_H_