summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/VirtualMemory.cpp
blob: 3bc57282db69b5806a27aedea31ae63213c871fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
#include "VirtualMemory.h"

void VirtualMemory::MapRegion(std::shared_ptr<MappedFileRegion> file, AddressRange mappedRange, uint64_t fileOffset)
{
	VirtualMemoryRegion region(fileOffset, std::move(file));

	// TODO: How to handle overlapping regions?
	for (const auto& [existingRange, existingRegion] : m_regions)
	{
		if (existingRange.Overlaps(mappedRange))
		{
			BinaryNinja::LogErrorF("Overlapping memory region {:#x}", existingRange.start);
		}
	}

	m_regions.insert_or_assign(mappedRange, std::move(region));
}

const VirtualMemoryRegion* VirtualMemory::FindRegionAtAddress(uint64_t address, uint64_t& addressOffset) const
{
	if (const auto& it = m_regions.find(address); it != m_regions.end())
	{
		// The VirtualMemoryRegion object returned contains the page, and more importantly, the file pointer (there can
		// be multiple in newer caches) This is relevant for reading out the data in the rest of this file. The second
		// item in the returned pair is the offset of `address` within the file.
		const auto& range = it->first;
		const auto& mapping = it->second;
		addressOffset = mapping.fileOffset + (address - range.start);
		return &mapping;
	}

	return nullptr;
}

const VirtualMemoryRegion* VirtualMemory::FindRegionAtAddress(uint64_t address) const
{
	uint64_t offset;
	return FindRegionAtAddress(address, offset);
}

bool VirtualMemory::IsAddressMapped(uint64_t address) const
{
	return m_regions.find(address) != m_regions.end();
}

uint64_t VirtualMemory::ReadPointer(uint64_t address) const
{
	switch (m_addressSize)
	{
	case 8:
		return ReadUInt64(address);
	case 4:
		return ReadUInt32(address);
	case 2:
		return ReadUInt16(address);
	default:
		throw std::runtime_error("Unsupported address size");
	}
}

std::string VirtualMemory::ReadCString(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadNullTermString(offset);
}

uint8_t VirtualMemory::ReadUInt8(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadUInt8(offset);
}

int8_t VirtualMemory::ReadInt8(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadInt8(offset);
}

uint16_t VirtualMemory::ReadUInt16(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadUInt16(offset);
}

int16_t VirtualMemory::ReadInt16(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadInt16(offset);
}

uint32_t VirtualMemory::ReadUInt32(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadUInt32(offset);
}

int32_t VirtualMemory::ReadInt32(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadInt32(offset);
}

uint64_t VirtualMemory::ReadUInt64(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadUInt64(offset);
}

int64_t VirtualMemory::ReadInt64(uint64_t address) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadInt64(offset);
}

BinaryNinja::DataBuffer VirtualMemory::ReadBuffer(uint64_t address, size_t length) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadBuffer(offset, length);
}

std::span<const uint8_t> VirtualMemory::ReadSpan(uint64_t address, size_t length) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	return region->file->ReadSpan(offset, length);
}

void VirtualMemory::Read(void* dest, uint64_t address, size_t length) const
{
	uint64_t offset;
	auto* region = FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	region->file->Read(dest, offset, length);
}

VirtualMemoryReader::VirtualMemoryReader(std::shared_ptr<VirtualMemory> memory)
{
	m_memory = memory;
	m_cursor = 0;
}

std::string VirtualMemoryReader::ReadCString(uint64_t address, size_t maxLength)
{
	uint64_t offset;
	auto* region = m_memory->FindRegionAtAddress(address, offset);
	if (!region)
		throw UnmappedRegionException(address);
	// TODO: Advance cursor?
	return region->file->ReadNullTermString(offset, maxLength);
}

uint64_t VirtualMemoryReader::ReadPointer()
{
	return ReadPointer(m_cursor);
}

uint64_t VirtualMemoryReader::ReadPointer(uint64_t address)
{
	m_cursor = address + m_memory->GetAddressSize();
	return m_memory->ReadPointer(address);
}

uint8_t VirtualMemoryReader::ReadUInt8()
{
	return ReadUInt8(m_cursor);
}

uint8_t VirtualMemoryReader::ReadUInt8(uint64_t address)
{
	m_cursor = address + 1;
	return m_memory->ReadUInt8(address);
}

int8_t VirtualMemoryReader::ReadInt8()
{
	return ReadInt8(m_cursor);
}

int8_t VirtualMemoryReader::ReadInt8(uint64_t address)
{
	m_cursor = address + 1;
	return m_memory->ReadInt8(address);
}

uint16_t VirtualMemoryReader::ReadUInt16()
{
	return ReadUInt16(m_cursor);
}

uint16_t VirtualMemoryReader::ReadUInt16(uint64_t address)
{
	m_cursor = address + 2;
	return m_memory->ReadUInt16(address);
}

int16_t VirtualMemoryReader::ReadInt16()
{
	return ReadInt16(m_cursor);
}

int16_t VirtualMemoryReader::ReadInt16(uint64_t address)
{
	m_cursor = address + 2;
	return m_memory->ReadInt16(address);
}

uint32_t VirtualMemoryReader::ReadUInt32()
{
	return ReadUInt32(m_cursor);
}

uint32_t VirtualMemoryReader::ReadUInt32(uint64_t address)
{
	m_cursor = address + 4;
	return m_memory->ReadUInt32(address);
}

int32_t VirtualMemoryReader::ReadInt32()
{
	return ReadInt32(m_cursor);
}

int32_t VirtualMemoryReader::ReadInt32(uint64_t address)
{
	m_cursor = address + 4;
	return m_memory->ReadInt32(address);
}

uint64_t VirtualMemoryReader::ReadUInt64()
{
	return ReadUInt64(m_cursor);
}

uint64_t VirtualMemoryReader::ReadUInt64(uint64_t address)
{
	m_cursor = address + 8;
	return m_memory->ReadUInt64(address);
}

int64_t VirtualMemoryReader::ReadInt64()
{
	return ReadInt64(m_cursor);
}

int64_t VirtualMemoryReader::ReadInt64(uint64_t address)
{
	m_cursor = address + 8;
	return m_memory->ReadInt64(address);
}

BinaryNinja::DataBuffer VirtualMemoryReader::ReadBuffer(size_t length)
{
	return ReadBuffer(m_cursor, length);
}

BinaryNinja::DataBuffer VirtualMemoryReader::ReadBuffer(uint64_t address, size_t length)
{
	m_cursor = address + length;
	return m_memory->ReadBuffer(address, length);
}

void VirtualMemoryReader::Read(void* dest, size_t length)
{
	Read(dest, m_cursor, length);
}

void VirtualMemoryReader::Read(void* dest, uint64_t address, size_t length)
{
	m_cursor = address + length;
	m_memory->Read(dest, address, length);
}