blob: e294824d91303f0d966554a440ce2755d74462b2 [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
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070020#include <string>
21
Brian Carlstrom27ec9612011-09-19 20:20:38 -070022#include <stddef.h>
Elliott Hughesa168c832012-06-12 15:34:20 -070023#include <sys/mman.h> // For the PROT_* and MAP_* constants.
Brian Carlstrom27ec9612011-09-19 20:20:38 -070024#include <sys/types.h>
Brian Carlstromdb4d5402011-08-09 12:18:28 -070025
Brian Carlstrom27ec9612011-09-19 20:20:38 -070026#include "globals.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070027
28namespace art {
29
30// Used to keep track of mmap segments.
31class MemMap {
32 public:
Elliott Hughesecd3a6f2012-06-06 18:16:37 -070033 // Request an anonymous region of length 'byte_count' and a requested base address.
Elliott Hughes6c9c06d2011-11-07 16:43:47 -080034 // Use NULL as the requested base address if you don't care.
35 //
36 // The word "anonymous" in this context means "not backed by a file". The supplied
37 // 'ashmem_name' will be used -- on systems that support it -- to give the mapping
38 // a name.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070039 //
40 // On success, returns returns a MemMap instance. On failure, returns a NULL;
Elliott Hughesecd3a6f2012-06-06 18:16:37 -070041 static MemMap* MapAnonymous(const char* ashmem_name, byte* addr, size_t byte_count, int prot);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070042
43 // Map part of a file, taking care of non-page aligned offsets. The
44 // "start" offset is absolute, not relative.
45 //
46 // On success, returns returns a MemMap instance. On failure, returns a NULL;
Elliott Hughesecd3a6f2012-06-06 18:16:37 -070047 static MemMap* MapFile(size_t byte_count, int prot, int flags, int fd, off_t start) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080048 return MapFileAtAddress(NULL, byte_count, prot, flags, fd, start, false);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070049 }
50
51 // Map part of a file, taking care of non-page aligned offsets. The
52 // "start" offset is absolute, not relative. This version allows
53 // requesting a specific address for the base of the mapping.
54 //
55 // On success, returns returns a MemMap instance. On failure, returns a NULL;
Brian Carlstrom89521892011-12-07 22:05:07 -080056 static MemMap* MapFileAtAddress(
Brian Carlstrom700c8d32012-11-05 10:42:02 -080057 byte* addr, size_t byte_count, int prot, int flags, int fd, off_t start, bool reuse);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070058
Brian Carlstrom27ec9612011-09-19 20:20:38 -070059 // Releases the memory mapping
60 ~MemMap();
Brian Carlstromdb4d5402011-08-09 12:18:28 -070061
Logan Chiend88fa262012-06-06 15:23:32 +080062 bool Protect(int prot);
63
Ian Rogers1c849e52012-06-28 14:00:33 -070064 int GetProtect() const {
65 return prot_;
66 }
67
Ian Rogers30fab402012-01-23 15:43:46 -080068 byte* Begin() const {
69 return begin_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -070070 }
71
Ian Rogers30fab402012-01-23 15:43:46 -080072 size_t Size() const {
73 return size_;
Brian Carlstromdb4d5402011-08-09 12:18:28 -070074 }
75
Ian Rogers30fab402012-01-23 15:43:46 -080076 byte* End() const {
Mathieu Chartier2fde5332012-09-14 14:51:54 -070077 return Begin() + Size();
78 }
79
80 bool HasAddress(const void* addr) const {
81 return Begin() <= addr && addr < End();
Brian Carlstromb765be02011-08-17 23:54:10 -070082 }
83
Mathieu Chartiercc236d72012-07-20 10:29:05 -070084 // Trim by unmapping pages at the end of the map.
85 void UnMapAtEnd(byte* new_end);
86
Brian Carlstromdb4d5402011-08-09 12:18:28 -070087 private:
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070088 MemMap(const std::string& name, byte* begin, size_t size, void* base_begin, size_t base_size,
89 int prot);
Brian Carlstromdb4d5402011-08-09 12:18:28 -070090
Mathieu Chartier1c23e1e2012-10-12 14:14:11 -070091 std::string name_;
Ian Rogers1c849e52012-06-28 14:00:33 -070092 byte* const begin_; // Start of data.
Mathieu Chartiercc236d72012-07-20 10:29:05 -070093 size_t size_; // Length of data.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070094
Ian Rogers1c849e52012-06-28 14:00:33 -070095 void* const base_begin_; // Page-aligned base address.
96 const size_t base_size_; // Length of mapping.
97 int prot_; // Protection of the map.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070098};
99
100} // namespace art
101
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700102#endif // ART_RUNTIME_MEM_MAP_H_