-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathWinAPIUtils.pas
More file actions
273 lines (218 loc) · 7.36 KB
/
WinAPIUtils.pas
File metadata and controls
273 lines (218 loc) · 7.36 KB
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
unit WinAPIUtils;
interface
uses Windows, SysUtils;
function _QueryPerformanceCounter: Int64;
function _QueryPerformanceFrequency: Int64;
function _QueryThreadCycleTime(const ThreadHandle: THandle): UInt64;
function _QueryProcessCycleTime(const ProcessHandle: THandle): UInt64;
function _GetThreadId(ThreadHandle: THandle): DWORD;
function GetProcessCPUTime(const hProcess: THandle): UInt64;
function GetThreadCPUTime(const hThread: THandle): UInt64;
function FileTimeToDateTime(const FileTime: TFileTime): TDateTime;
function FileTimeToInt64(const FileTime: TFileTime): UInt64; inline;
function Int64ToFileTime(const Value: UInt64): TFileTime; inline;
function Int64ToDateTime(const Value: UInt64): TDateTime; inline;
function DebugBreakProcess(Process: THandle): BOOL; stdcall;
function DebugSetProcessKillOnExit(KillOnExit: BOOL): BOOL; stdcall;
function DebugActiveProcessStop(dwProcessId: DWORD): BOOL; stdcall;
function SuspendProcess(const PID: DWORD): LongBool;
function ResumeProcess(const PID: DWORD): LongBool;
function GetFileVersion(const AFileName: string): string;
function GetGUID: String;
procedure Check(const Value: LongBool); inline;
implementation
type
NTSTATUS = LongInt;
TProcFunction = function(ProcHandle: THandle): NTSTATUS; stdcall;
const
STATUS_SUCCESS = $00000000;
PROCESS_SUSPEND_RESUME = $0800;
function QueryThreadCycleTime(ThreadHandle: THandle; CycleTime: PUInt64): BOOL; stdcall; external kernel32 name 'QueryThreadCycleTime';
function QueryProcessCycleTime(ProcessHandle: THandle; CycleTime: PUInt64): BOOL; stdcall; external kernel32 name 'QueryProcessCycleTime';
//function SuspendProcess(ProcessHandle: THandle): NTSTATUS; stdcall; external kernel32 name 'NtSuspendProcess';
//function ResumeProcess(ProcessHandle: THandle): NTSTATUS; stdcall; external kernel32 name 'NtResumeProcess';
function DebugBreakProcess(Process: THandle): BOOL; stdcall; external kernel32 name 'DebugBreakProcess';
function DebugSetProcessKillOnExit(KillOnExit: BOOL): BOOL; stdcall; external kernel32;
function DebugActiveProcessStop(dwProcessId: DWORD): BOOL; stdcall; external kernel32;
function GetThreadId(ThreadHandle: THandle): DWORD; stdcall; external kernel32 name 'GetThreadId';
function CoCreateGuid(out guid: TGUID): HResult; stdcall; external 'ole32.dll' name 'CoCreateGuid';
function NtQueryVirtualMemory(ProcessHandle: THandle; BaseAddress: Pointer; MemoryInformationClass: DWORD; MemoryInformation: Pointer;
MemoryInformationLength :ULONG; ReturnLength :PULONG): LongInt; stdcall; external 'ntdll.dll';
var
_KernelLibHandle: THandle = 0;
NtSuspendProcess: TProcFunction = Nil;
NtResumeProcess: TProcFunction = Nil;
procedure Check(const Value: LongBool);
begin
if not Value then
RaiseLastOSError;
end;
procedure _LoadKernelProcs;
begin
_KernelLibHandle := SafeLoadLibrary('ntdll.dll');
if _KernelLibHandle <> 0 then
begin
@NtSuspendProcess := GetProcAddress(_KernelLibHandle, 'NtSuspendProcess');
@NtResumeProcess := GetProcAddress(_KernelLibHandle, 'NtResumeProcess');
end;
end;
function SuspendProcess(const PID: DWORD): LongBool;
var
ProcHandle: THandle;
begin
Result := False;
if @NtSuspendProcess <> nil then
begin
ProcHandle := OpenProcess(PROCESS_SUSPEND_RESUME, False, PID);
if ProcHandle <> 0 then
begin
Result := NtSuspendProcess(ProcHandle) = STATUS_SUCCESS;
CloseHandle(ProcHandle);
end;
end;
end;
function ResumeProcess(const PID: DWORD): LongBool;
var
ProcHandle: THandle;
begin
Result := False;
if @NtResumeProcess <> nil then
begin
ProcHandle := OpenProcess(PROCESS_SUSPEND_RESUME, False, PID);
if ProcHandle <> 0 then
begin
Result := NtResumeProcess(ProcHandle) = STATUS_SUCCESS;
CloseHandle(ProcHandle);
end;
end;
end;
function GetGUID: String;
var
G: TGUID;
begin
CoCreateGuid(G);
Result := GUIDToString(G);
Result := Copy(Result, 2, Length(Result) - 2);
end;
var
_AppVersion: String = '';
function GetFileVersion(const AFileName: string): String;
var
FileName: string;
InfoSize, Wnd: DWORD;
VerBuf: Pointer;
FI: PVSFixedFileInfo;
VerSize: DWORD;
Major1, Major2, Minor1, Minor2: Cardinal;
begin
Result := _AppVersion;
if Result <> '' then Exit;
FileName := AFileName;
UniqueString(FileName);
InfoSize := GetFileVersionInfoSize(PChar(FileName), Wnd);
if InfoSize <> 0 then
begin
GetMem(VerBuf, InfoSize);
try
if GetFileVersionInfo(PChar(FileName), Wnd, InfoSize, VerBuf) then
if VerQueryValue(VerBuf, '\', Pointer(FI), VerSize) then
begin
Major1 := FI.dwFileVersionMS shr 16;
Major2 := FI.dwFileVersionMS and $FFFF;
Minor1 := FI.dwFileVersionLS shr 16;
Minor2 := FI.dwFileVersionLS and $FFFF;
_AppVersion := Format('%d.%d.%d.%d', [Major1, Major2, Minor1, Minor2]);
Result := _AppVersion;
end;
finally
FreeMem(VerBuf);
end;
end;
end;
type
EWinAPIException = class(Exception);
procedure RaiseWinAPIException;
begin
raise EWinAPIException.Create('');
end;
function _QueryThreadCycleTime(const ThreadHandle: THandle): UInt64;
begin
Result := 0;
if not QueryThreadCycleTime(ThreadHandle, @Result) then
RaiseWinAPIException;
end;
function _QueryProcessCycleTime(const ProcessHandle: THandle): UInt64;
begin
Result := 0;
if not QueryProcessCycleTime(ProcessHandle, @Result) then
RaiseWinAPIException;
end;
function FileTimeToDateTime(const FileTime: TFileTime): TDateTime;
var
SystemTime: TSystemTime;
begin
Result := 0;
if FileTimeToSystemTime(@FileTime, SystemTime) then
begin
Result := SystemTimeToDateTime(SystemTime);
Exit;
end;
RaiseWinAPIException;
end;
function FileTimeToInt64(const FileTime: TFileTime): UInt64;
begin
Result := UInt64(UInt64(FileTime.dwHighDateTime) shl 32) or FileTime.dwLowDateTime;
end;
function Int64ToFileTime(const Value: UInt64): TFileTime;
begin
Result.dwLowDateTime := DWORD(Value);
Result.dwHighDateTime := DWORD(Value shr 32);
end;
function Int64ToDateTime(const Value: UInt64): TDateTime;
begin
Result := FileTimeToDateTime(Int64ToFileTime(Value));
end;
type
PCPUTime = ^RCPUTime;
RCPUTime = record
CT, ET, KT, UT: TFileTime;
end;
threadvar
_CPUTimeRes: RCPUTime;
function GetProcessCPUTime(const hProcess: THandle): UInt64;
begin
Result := 0;
with _CPUTimeRes do
if GetProcessTimes(hProcess, CT, ET, KT, UT) then
Result := FileTimeToInt64(KT) + FileTimeToInt64(UT)
else
RaiseWinAPIException;
end;
function GetThreadCPUTime(const hThread: THandle): UInt64;
begin
Result := 0;
with _CPUTimeRes do
if GetThreadTimes(hThread, CT, ET, KT, UT) then
Result := FileTimeToInt64(KT) + FileTimeToInt64(UT)
else
RaiseWinAPIException;
end;
function _QueryPerformanceCounter: Int64;
begin
Result := 0;
if not QueryPerformanceCounter(Result) then
RaiseWinAPIException;
end;
function _QueryPerformanceFrequency: Int64;
begin
Result := 0;
if not QueryPerformanceFrequency(Result) then
RaiseWinAPIException;
end;
function _GetThreadId(ThreadHandle: THandle): DWORD;
begin
Result := GetThreadId(ThreadHandle);
end;
initialization
_LoadKernelProcs;
end.