-
Notifications
You must be signed in to change notification settings - Fork 1
/
RemoteMemoryRegion.cs
162 lines (136 loc) · 5.73 KB
/
RemoteMemoryRegion.cs
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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
namespace Squared.PE {
public class RemoteMemoryRegion : IDisposable {
public Process Process;
public IntPtr Address;
public UInt32 Size;
private RemoteMemoryRegion () {
}
public static RemoteMemoryRegion Allocate (Process process, UInt32 size) {
using (var handle = Win32.OpenProcessHandle(
ProcessAccessFlags.VMOperation | ProcessAccessFlags.VMRead | ProcessAccessFlags.VMWrite,
false, process.Id
)) {
return Allocate(process, handle, size);
}
}
public static RemoteMemoryRegion Allocate (Process process, SafeProcessHandle handle, UInt32 size) {
var result = new RemoteMemoryRegion {
Process = process,
Size = size
};
result.Address = Win32.VirtualAllocEx(
handle.DangerousGetHandle(), IntPtr.Zero,
size, AllocationType.Commit | AllocationType.Reserve,
MemoryProtection.ReadWrite
);
if (result.Address == IntPtr.Zero) {
var error = Win32.GetLastError();
throw new Exception(String.Format("Allocation failed: Error {0:x8}", error));
}
return result;
}
public static RemoteMemoryRegion Existing (Process process, IntPtr address, UInt32 size) {
return new RemoteMemoryRegion {
Process = process,
Address = address,
Size = size
};
}
public unsafe int Write (SafeProcessHandle handle, uint offset, uint size, byte* data) {
if (Address == IntPtr.Zero)
throw new ObjectDisposedException("RemoteMemoryRegion");
if ((offset + size) > Size)
throw new ArgumentException("Size too large for region");
int bytesWritten = 0;
int result = Win32.WriteProcessMemory(
handle.DangerousGetHandle(),
(uint)(Address.ToInt64() + offset),
new IntPtr(data), size, out bytesWritten
);
if (result == 0 || bytesWritten != size) {
var error = Win32.GetLastError();
throw new Exception(String.Format("Write failed: Error {0:x8}", error));
}
return bytesWritten;
}
private unsafe int Read (SafeProcessHandle handle, uint offset, uint size, byte* pBuffer) {
if (Address == IntPtr.Zero)
throw new ObjectDisposedException("RemoteMemoryRegion");
if ((offset + size) > Size)
throw new ArgumentException("Size too large for region");
int bytesRead = 0, result;
result = Win32.ReadProcessMemory(
handle.DangerousGetHandle(),
(uint)(Address.ToInt64() + offset),
new IntPtr(pBuffer), size, out bytesRead
);
if (result == 0 || bytesRead != size) {
var error = Win32.GetLastError();
throw new Exception(String.Format("Read failed: Error {0:x8}", error));
}
return bytesRead;
}
public unsafe int Read (SafeProcessHandle handle, uint offset, uint size, byte[] buffer) {
if ((buffer == null) || (size != buffer.Length))
throw new ArgumentException("Invalid buffer to read into");
fixed (byte* pBuffer = buffer)
return Read(handle, offset, size, pBuffer);
}
public byte[] ReadBytes (SafeProcessHandle handle, uint offset, uint size) {
if (size == 0)
return null;
byte[] buffer = new byte[size];
Read(handle, offset, (uint)size, buffer);
return buffer;
}
public void Protect (SafeProcessHandle handle, uint offset, uint size, MemoryProtection newProtect) {
if (Address == IntPtr.Zero)
throw new ObjectDisposedException("RemoteMemoryRegion");
if ((offset + size) > (Size))
throw new ArgumentException("Size too large for region");
MemoryProtection oldProtect;
int result = Win32.VirtualProtectEx(
handle.DangerousGetHandle(),
(uint)(Address.ToInt64() + offset),
size, newProtect, out oldProtect
);
if (result == 0) {
var error = Win32.GetLastError();
throw new Exception(String.Format("Protect failed: Error {0:x8}", error));
}
}
public SafeProcessHandle OpenHandle (ProcessAccessFlags flags) {
return Win32.OpenProcessHandle(flags, false, Process.Id);
}
public void Dispose () {
if (Address == IntPtr.Zero)
return;
try {
if (Process.HasExited)
return;
} catch {
return;
}
using (var handle = OpenHandle(ProcessAccessFlags.VMOperation | ProcessAccessFlags.VMRead | ProcessAccessFlags.VMWrite)) {
int result = Win32.VirtualFreeEx(
handle.DangerousGetHandle(),
Address, 0, FreeType.Release
);
if (result == 0) {
var error = Win32.GetLastError();
throw new Exception(String.Format(
"Failed to free region: Error {0:x8}", error
));
} else {
Address = IntPtr.Zero;
Size = 0;
}
}
}
}
}