-
Notifications
You must be signed in to change notification settings - Fork 0
/
Process.cpp
283 lines (257 loc) · 8.48 KB
/
Process.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
#include <iostream>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
#include <windows.h>
#include <time.h>
#include <sys/types.h>
#include <psapi.h>
#include <tlhelp32.h>
#include "Analyse.h"
#include "Command.h"
#include "Process.h"
using namespace std;
#define MAX_CWD_LENS 128
#define MAX_BUFFER_SIZE 64
#define MAX_TOK_BUFSIZE 64
#define TOKEN_DELIMETERS " \t\r\n\a"
HANDLE hForeProcess;
///////////////////////////////////
//////// Xử lí tiến trình /////////
///////////////////////////////////
/**
* Đón tín hiệu ngắt Ctrl + C
**/
void sighandler(int signum) {
/**
* Đón tín hiệu ngắt Ctrl + C
**/
// printf("Caught signal %d, coming out...\n", signum);
if (hForeProcess != NULL) {
TerminateProcess(hForeProcess, 0);
hForeProcess = NULL;
}
exit(1);
}
/**
* In ra các tiến trình đang hoạt động
* In ra màn hình tên tiến trình, Process ID, Parent PID
* Câu lệnh: pc all
*
**/
int getProcessListAll() {
HANDLE hProcessSnap;
PROCESSENTRY32 pe32; // Cấu trúc của tiến trình khi được gọi snapshot
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); // Chụp lại các tiến trình
// Nếu hProcessSnap trả về lỗi return 0
if (hProcessSnap == INVALID_HANDLE_VALUE) {
cout << "ERROR: CreateToolhelp32Snapshot Fail " << GetLastError() << endl;
return 0;
}
pe32.dwSize = sizeof(PROCESSENTRY32);
// Kiểm tra thằng đầu tiên
if (!Process32First(hProcessSnap, &pe32)) {
// Nếu lỗi in ra...
cout << "ERROR: Process32First Fail " << GetLastError() << endl;
return 0;
}
printf("%-50s%-20s%-20s\n", "Process Name", "Process ID", "Parent Process ID");
printf("%-50s%-20s%-20s\n", "----------------------------------", "----------", "-----------");
do {
printf("%-50s%-20d%-20d\n", pe32.szExeFile, pe32.th32ProcessID, pe32.th32ParentProcessID);
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
return 1;
}
/**
* Tìm tiến trình bằng tên
* In ra màn hình tên tiến trình, Process ID, Parent PID
* Câu lệnh pc find [name_process]
*
**/
int findProcessID(char *name_process) {
HANDLE hProcessSnap;
PROCESSENTRY32 pe32; // Cấu trúc của tiến trình khi được gọi snap
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); // Chụp lại các tiến trình
// Nếu trả về lỗi return 0
if (hProcessSnap == INVALID_HANDLE_VALUE) {
return 0;
}
pe32.dwSize = sizeof(PROCESSENTRY32);
// Kiểm tra thằng đầu tiên
if (!Process32First(hProcessSnap, &pe32)) {
return 0;
}
printf("%-50s%-20s%-20s\n", "Process Name", "Process ID", "Parent Process ID");
printf("%-50s%-20s%-20s\n", "----------------------------------", "----------", "-----------");
do {
if (strcmp(name_process, pe32.szExeFile) == 0) {
// Nếu pe32.szExeFile trùng với tên tiến trình thì in ra
printf("%-50s%-20d%-20d\n", pe32.szExeFile, pe32.th32ProcessID, pe32.th32ParentProcessID);
}
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
return 1;
}
/**
* Đóng tiến trình bằng Process ID
* Câu lệnh: pc kill [process_id]
*
**/
int killProcessID(DWORD process_id) {
// Mở tiến trình đang chạy có Process ID là...
HANDLE hprocess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, process_id);
// Nếu hProcess trả về NULL thì báo lỗi
if (hprocess == NULL) {
cout << "ERROR: Failed!" << endl;
return 1;
}
// Đóng tiến trình hProcess
if (!TerminateProcess(hprocess, 0)) {
return 0;
}
return 1;
}
/**
* Đóng tất cả tiến trình có tên là name_process
* Câu lệnh pc kill [Name_Process]
*
* */
int killProcess(char *name_process) {
HANDLE hProcessSnap;
PROCESSENTRY32 pe32; // Cấu trúc của tiến trình khi được gọi snapshot
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); // Chụp lại các tiến trình
// Nếu trả về lỗi return 0
if (hProcessSnap == INVALID_HANDLE_VALUE) {
return 0;
}
pe32.dwSize = sizeof(PROCESSENTRY32);
// Kiểm tra thằng đầu tiên
if (!Process32First(hProcessSnap, &pe32)) {
return 0;
}
do {
if (strcmp(name_process, pe32.szExeFile) == 0) {
killProcessID(pe32.th32ProcessID);
}
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
return 1;
}
/**
* Đình chỉ một tiến trình đang thực hiện
* Câu lệnh pc suspend [process_id]
*
**/
int suspendProcess(DWORD process_id) {
// Chụp lại tất cả các luồng
HANDLE hThreadSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
THREADENTRY32 th32; // Cấu trúc của luồng khi được gọi snapshot
HANDLE hthread;
// Kiểm tra xem hThreadSnap có lỗi không nếu có thì in ra lỗi
if (hThreadSnap == INVALID_HANDLE_VALUE) {
cout << "ERROR: CreateToolhelp32Snapshot" << GetLastError();
return 0;
}
th32.dwSize = sizeof(THREADENTRY32);
// Kiểm tra thông tin của luồng đầu tiên
if (!Thread32First(hThreadSnap, &th32))
{
cout << "Thread32First Fail " << GetLastError(); // Nếu lỗi in ra lỗi
CloseHandle(hThreadSnap); // Đóng Handle snapshot
return 0;
}
// Duyệt các luồng khác
do {
// Kiểm tra xem các luồng này có thuộc tiến trình cần dừng không
if (th32.th32OwnerProcessID == process_id) {
hthread = OpenThread(THREAD_ALL_ACCESS, FALSE, th32.th32ThreadID); // Mở một luồng đang chạy
// Đình chỉ luồng đó
if (SuspendThread(hthread) == -1) {
return 0;
}
}
} while (Thread32Next(hThreadSnap, &th32));
CloseHandle(hThreadSnap);
return 1;
}
/**
* Tiếp tục một tiến trình bị đình chỉ
* Câu lệnh pc resume [process_id]
*
**/
int resumeProcess(DWORD process_id) {
// Chụp lại tất cả các luồng
HANDLE hThreadSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
THREADENTRY32 th32; // Cấu trúc của luồng khi được gọi snapshot
HANDLE hthread;
// Kiểm tra xem hThreadSnap có lỗi không nếu có thì in ra lỗi
if (hThreadSnap == INVALID_HANDLE_VALUE) {
cout << "ERROR: CreateToolhelp32Snapshot" << GetLastError();
return 0;
}
th32.dwSize = sizeof(THREADENTRY32);
// Kiểm tra thông tin của luồng đầu tiên
if (!Thread32First(hThreadSnap, &th32))
{
cout << "Thread32First Fail " << GetLastError(); // Nếu lỗi in ra lỗi
CloseHandle(hThreadSnap); // Đóng Handle snapshot
return 0;
}
// Duyệt các luồng khác
do {
// Kiểm tra xem các luồng này có thuộc tiến trình cần dừng không
if (th32.th32OwnerProcessID == process_id) {
hthread = OpenThread(THREAD_ALL_ACCESS, FALSE, th32.th32ThreadID); // Mở một luồng đang chạy
// Đình chỉ luồng đó
if (ResumeThread(hthread) == -1) {
return 0;
}
}
} while (Thread32Next(hThreadSnap, &th32));
CloseHandle(hThreadSnap);
return 1;
}
/**
* Tạo một tiến trình con
* Câu lệnh: pc bg [name_process/path](background mode)
* pc fg [name_process/path](foreground mode)
*
**/
int createNewProcess(char **args) {
// Cài wait time cho các tiến trình
int wait_time;
if (strcmp(args[1], "bg") == 0) {
wait_time = 0;
} else {
wait_time = INFINITE;
}
char *run_file = combinePath(args, 2); // Ghép lại tên tiến trình hoặc đường dẫn
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
si.wShowWindow = SW_SHOW;
si.dwFlags = STARTF_USESHOWWINDOW;
si.lpTitle = args[1];
ZeroMemory(&pi, sizeof(pi));
// Khởi tạo tiến trình con
if (!CreateProcess(NULL, run_file, NULL, NULL, FALSE, CREATE_NEW_CONSOLE, NULL, NULL, &si, &pi)) {
int error = GetLastError(); // Kiểm tra lỗi
if (error == 2)
cout << "The batch file or execute file '" << run_file << "' is not found." << endl;
else
cout << "Can't run this file" << endl;
return 1;
}
// gán handle cho tiến trình con vừa tạo
if (strcmp(args[1], "fg") == 0) {
hForeProcess = pi.hProcess;
}
// Thời gian đợi 1 tiến trình con
WaitForSingleObject(pi.hProcess, wait_time);
// Đóng các handle
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
return 1;
}