This repository was archived by the owner on Apr 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
322 lines (238 loc) · 6.99 KB
/
main.cpp
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
// Suspend/Resume Process
#define _CRT_SECURE_NO_WARNINGS
#include <Windows.h>
#include <TlHelp32.h>
#include <stdio.h>
#include <string.h>
#include "ini-parser/ini_parser.h"
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
typedef LONG (NTAPI *NtSuspendProcessFn)(IN HANDLE processHandle);
typedef LONG (NTAPI *NtResumeProcessFn)(IN HANDLE processHandle);
//-----------------------------------------------------------------------------
// Settings from configuration file
//-----------------------------------------------------------------------------
const char *g_pszProcessName = NULL;
const wchar_t *g_pwcProcessName = NULL;
bool g_bAutoSuspend = false;
bool g_bHoldMode = false;
DWORD g_GetProcessDelay = 50;
DWORD g_ToggleKey = 0x2D;
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
HANDLE g_hProcess = NULL;
DWORD g_dwProcessID = 0;
//-----------------------------------------------------------------------------
// Purpose: get process id
//-----------------------------------------------------------------------------
bool GetProcessID(const wchar_t *pwcProcessName, DWORD &dwProcessID)
{
HANDLE hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL);
PROCESSENTRY32 modEntry;
modEntry.dwSize = sizeof(PROCESSENTRY32);
do
{
if (!_wcsicmp(modEntry.szExeFile, pwcProcessName))
{
dwProcessID = (DWORD)modEntry.th32ProcessID;
CloseHandle(hSnapshot);
return true;
}
} while (Process32Next(hSnapshot, &modEntry));
CloseHandle(hSnapshot);
return false;
}
//-----------------------------------------------------------------------------
// Purpose: get process handle
//-----------------------------------------------------------------------------
bool GetProcessHandle(HANDLE &hProcess, DWORD dwProcessID, DWORD dwAccess)
{
hProcess = OpenProcess(dwAccess, FALSE, dwProcessID);
return hProcess != NULL;
}
//-----------------------------------------------------------------------------
// Purpose: suspend process
//-----------------------------------------------------------------------------
void SuspendProcess(HANDLE hProcess)
{
static HMODULE hModule = NULL;
static NtSuspendProcessFn NtSuspendProcess = NULL;
if (!hModule)
hModule = GetModuleHandle(L"ntdll.dll");
if (!NtSuspendProcess)
NtSuspendProcess = (NtSuspendProcessFn)GetProcAddress(hModule, "NtSuspendProcess");
NtSuspendProcess(hProcess);
}
inline void SuspendProcess_Wrapper(HANDLE hProcess, bool &bSuspended)
{
SuspendProcess(g_hProcess);
bSuspended = true;
printf("Process is suspended\n");
}
//-----------------------------------------------------------------------------
// Purpose: resume process
//-----------------------------------------------------------------------------
void ResumeProcess(HANDLE hProcess)
{
static HMODULE hModule = NULL;
static NtResumeProcessFn NtResumeProcess = NULL;
if (!hModule)
hModule = GetModuleHandle(L"ntdll.dll");
if (!NtResumeProcess)
NtResumeProcess = (NtResumeProcessFn)GetProcAddress(hModule, "NtResumeProcess");
NtResumeProcess(hProcess);
}
inline void ResumeProcess_Wrapper(HANDLE g_hProcess, bool &bSuspended)
{
ResumeProcess(g_hProcess);
bSuspended = false;
printf("Process is resumed\n");
}
//-----------------------------------------------------------------------------
// Purpose: parse configuration file
//-----------------------------------------------------------------------------
bool ParseFile()
{
printf("Trying to find the config file...\n");
ini_data data;
ini_datatype datatype;
if (!ini_parse_data("suspend_process.ini", &data))
{
if (ini_get_last_error() == INI_MISSING_FILE)
printf("Missing file suspend_process.ini to parse\n");
else
printf("Syntax error: %s in line %d\n", ini_get_last_error_msg(), ini_get_last_line());
return false;
}
INI_FIELDTYPE_CSTRING(datatype);
if (ini_read_data(&data, "SETTINGS", "ProcessName", &datatype, -1))
{
g_pszProcessName = datatype.m_pszString;
}
else
{
printf("Missing parameter ProcessName in section SETTINGS");
return false;
}
INI_FIELDTYPE_BOOL(datatype);
if (ini_read_data(&data, "SETTINGS", "AutoSuspend", &datatype, -1))
{
g_bAutoSuspend = datatype.m_bool;
}
else
{
printf("Missing parameter AutoSuspend in section SETTINGS");
return false;
}
INI_FIELDTYPE_BOOL(datatype);
if (ini_read_data(&data, "SETTINGS", "HoldMode", &datatype, -1))
{
g_bHoldMode = datatype.m_bool;
}
else
{
printf("Missing parameter HoldMode in section SETTINGS");
return false;
}
INI_FIELDTYPE_UINT32(datatype, 10);
if (ini_read_data(&data, "SETTINGS", "GetProcessDelay", &datatype, -1))
{
g_GetProcessDelay = datatype.m_uint32;
}
else
{
printf("Missing parameter GetProcessDelay in section SETTINGS");
return false;
}
INI_FIELDTYPE_UINT32(datatype, 16);
if (ini_read_data(&data, "CONTROLS", "ToggleKey", &datatype, -1))
{
g_ToggleKey = datatype.m_uint32;
}
else
{
printf("Missing parameter ToggleKey in section CONTROLS");
return false;
}
printf("Parsed the config file\n");
ini_free_data(&data, 0);
return true;
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
int main()
{
bool bSuspendUntilPressKey = false;
bool bSuspended = false;
bool bKeyPressed = false;
if (!ParseFile())
{
printf("Failed to parse the config file\n");
Sleep(5000);
return 1;
}
const size_t length = strlen(g_pszProcessName) + 1;
g_pwcProcessName = new wchar_t[length];
mbstowcs((wchar_t *)g_pwcProcessName, g_pszProcessName, length);
printf("Trying to get process called %s\n", g_pszProcessName);
while (!g_hProcess)
{
if (GetProcessID(g_pwcProcessName, g_dwProcessID))
GetProcessHandle(g_hProcess, g_dwProcessID, PROCESS_QUERY_LIMITED_INFORMATION | PROCESS_SUSPEND_RESUME);
Sleep(g_GetProcessDelay);
}
printf("Connected to the process\n");
if (g_bAutoSuspend)
{
if (g_bHoldMode)
bSuspendUntilPressKey = true;
else
goto FORCE_SUSPEND;
}
while (true)
{
DWORD dwExitCode;
GetExitCodeProcess(g_hProcess, &dwExitCode);
if (!dwExitCode)
{
printf("The process has been closed\nExiting...\n");
break;
}
if (GetAsyncKeyState(g_ToggleKey) || bSuspendUntilPressKey)
{
if (g_bHoldMode)
{
if (!bSuspended)
{
SuspendProcess_Wrapper(g_hProcess, bSuspended);
}
else if (bSuspendUntilPressKey && GetAsyncKeyState(g_ToggleKey))
{
bSuspendUntilPressKey = false;
}
}
else if (!bKeyPressed)
{
if (bSuspended)
{
ResumeProcess_Wrapper(g_hProcess, bSuspended);
}
else
{
FORCE_SUSPEND:
SuspendProcess_Wrapper(g_hProcess, bSuspended);
}
}
bKeyPressed = true;
}
else
{
if (g_bHoldMode && bSuspended)
ResumeProcess_Wrapper(g_hProcess, bSuspended);
bKeyPressed = false;
}
Sleep(10);
}
Sleep(3000);
return 0;
}