aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/nsmem.h
blob: 9b1f9103db08378e578d86b01f8b54470fc76114 (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
#pragma once
#include "pch.h"

// KittenPopo's memory stuff, made for northstar (because I really can't handle working with northstar's original memory stuff tbh)

#pragma region Pattern Scanning
namespace NSMem
{
	inline std::vector<int> HexBytesToString(const char* str)
	{
		std::vector<int> patternNums;
		int size = strlen(str);
		for (int i = 0; i < size; i++)
		{
			char c = str[i];

			// If this is a space character, ignore it
			if (c == ' ' || c == '\t')
				continue;

			if (c == '?')
			{
				// Add a wildcard (-1)
				patternNums.push_back(-1);
			}
			else if (i < size - 1)
			{
				BYTE result = 0;
				for (int j = 0; j < 2; j++)
				{
					int val = 0;
					char c = *(str + i + j);
					if (c >= 'a')
					{
						val = c - 'a' + 0xA;
					}
					else if (c >= 'A')
					{
						val = c - 'A' + 0xA;
					}
					else if (isdigit(c))
					{
						val = c - '0';
					}
					else
					{
						assert(false);
						val = -1;
					}

					result += (j == 0) ? val * 16 : val;
				}
				patternNums.push_back(result);
			}

			i++;
		}

		return patternNums;
	}

	inline void* PatternScan(void* module, const int* pattern, int patternSize, int offset)
	{
		if (!module)
			return NULL;

		auto dosHeader = (PIMAGE_DOS_HEADER)module;
		auto ntHeaders = (PIMAGE_NT_HEADERS)((BYTE*)module + dosHeader->e_lfanew);

		auto sizeOfImage = ntHeaders->OptionalHeader.SizeOfImage;

		auto scanBytes = (BYTE*)module;

		for (auto i = 0; i < sizeOfImage - patternSize; ++i)
		{
			bool found = true;
			for (auto j = 0; j < patternSize; ++j)
			{
				if (scanBytes[i + j] != pattern[j] && pattern[j] != -1)
				{
					found = false;
					break;
				}
			}

			if (found)
			{
				uintptr_t addressInt = (uintptr_t)(&scanBytes[i]) + offset;
				return (uint8_t*)addressInt;
			}
		}

		return nullptr;
	}

	inline void* PatternScan(const char* moduleName, const char* pattern, int offset = 0)
	{
		std::vector<int> patternNums = HexBytesToString(pattern);

		return PatternScan(GetModuleHandleA(moduleName), &patternNums[0], patternNums.size(), offset);
	}

	inline void BytePatch(uintptr_t address, const BYTE* vals, int size)
	{
		WriteProcessMemory(GetCurrentProcess(), (LPVOID)address, vals, size, NULL);
	}

	inline void BytePatch(uintptr_t address, std::initializer_list<BYTE> vals)
	{
		std::vector<BYTE> bytes = vals;
		if (!bytes.empty())
			BytePatch(address, &bytes[0], bytes.size());
	}

	inline void BytePatch(uintptr_t address, const char* bytesStr)
	{
		std::vector<int> byteInts = HexBytesToString(bytesStr);
		std::vector<BYTE> bytes;
		for (int v : byteInts)
			bytes.push_back(v);

		if (!bytes.empty())
			BytePatch(address, &bytes[0], bytes.size());
	}

	inline void NOP(uintptr_t address, int size)
	{
		BYTE* buf = (BYTE*)malloc(size);
		memset(buf, 0x90, size);
		BytePatch(address, buf, size);
		free(buf);
	}

	inline bool IsMemoryReadable(void* ptr, size_t size)
	{
		static SYSTEM_INFO sysInfo;
		if (!sysInfo.dwPageSize)
			GetSystemInfo(&sysInfo); // This should always be 4096 unless ur playing on NES or some shit but whatever

		MEMORY_BASIC_INFORMATION memInfo;

		if (!VirtualQuery(ptr, &memInfo, sizeof(memInfo)))
			return false;

		if (memInfo.RegionSize < size)
			return false;

		return (memInfo.State & MEM_COMMIT) && !(memInfo.Protect & PAGE_NOACCESS);
	}
} // namespace NSMem

#pragma region KHOOK
struct KHookPatternInfo
{
	const char *moduleName, *pattern;
	int offset = 0;

	KHookPatternInfo(const char* moduleName, const char* pattern, int offset = 0) : moduleName(moduleName), pattern(pattern), offset(offset)
	{
	}
};

struct KHook
{
	KHookPatternInfo targetFunc;
	void* targetFuncAddr;
	void* hookFunc;
	void** original;

	static inline std::vector<KHook*> _allHooks;

	KHook(KHookPatternInfo targetFunc, void* hookFunc, void** original) : targetFunc(targetFunc)
	{
		this->hookFunc = hookFunc;
		this->original = original;
		_allHooks.push_back(this);
	}

	bool Setup()
	{
		targetFuncAddr = NSMem::PatternScan(targetFunc.moduleName, targetFunc.pattern, targetFunc.offset);
		if (!targetFuncAddr)
			return false;

		return (MH_CreateHook(targetFuncAddr, hookFunc, original) == MH_OK) && (MH_EnableHook(targetFuncAddr) == MH_OK);
	}
};
#define KHOOK(name, funcPatternInfo, returnType, convention, args)                                                                         \
	returnType convention hk##name args;                                                                                                   \
	auto o##name = (returnType(convention*) args)0;                                                                                        \
	KHook k##name = KHook(KHookPatternInfo funcPatternInfo, reinterpret_cast<void*>(&hk##name), (void**)&o##name);                         \
	returnType convention hk##name args
#pragma endregion