forked from bo3b/3Dmigoto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.cpp
607 lines (502 loc) · 19.1 KB
/
util.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
#include <util.h>
#include <sddl.h>
#include <io.h>
#include <fcntl.h>
#include <Dbghelp.h>
#include "DirectX11\HackerDevice.h"
#include "DirectX11\HackerContext.h"
// Sometimes game directories get funny permissions that cause us problems. I
// have no clue how or why this happens, and the usual way to deal with it is
// to recursively reset the permissions and ownership on the game directory
// with something like:
//
// takeown /F <path> /R
// icacls <path> /T /Q /C /RESET
//
// But, I'd like to see if we can do better and handle this from 3DMigoto to
// ensure that we always have access to the files and directories we create if
// at all possible. I don't fully understand windows filesystem permissions,
// but then I doubt many people really and truly do - the ACL complexity is
// where this problem stems from after all (I would say give me UNIX
// permissions over this any day, but then some masochist went and created
// SELinux so now we have a similar headache over there who's only saving grace
// is that we can turn it off), so this is partially (and possibly naively)
// based on this MSDN article:
//
// https://msdn.microsoft.com/en-us/library/windows/desktop/ms717798(v=vs.85).aspx
//
static SECURITY_ATTRIBUTES* init_security_attributes(SECURITY_ATTRIBUTES *sa)
{
sa->nLength = sizeof(SECURITY_ATTRIBUTES);
sa->bInheritHandle = FALSE;
sa->lpSecurityDescriptor = NULL;
if (ConvertStringSecurityDescriptorToSecurityDescriptor(
L"D:" // Discretionary ACL
// Removed string from MSDN that denies guests/anonymous users
L"(A;OICI;GRGX;;;WD)" // Give everyone read/execute access
L"(A;OICI;GA;;;AU)" // Allow full control to authenticated users (GRGWGX is not enough to delete contents?)
// Using "CO" for Creator/Owner instead of "AU" seems ineffective
L"(A;OICI;GA;;;BA)" // Allow full control to administrators
, SDDL_REVISION_1, &sa->lpSecurityDescriptor, NULL)) {
return sa;
}
LogInfo("ConvertStringSecurityDescriptorToSecurityDescriptor failed\n");
return NULL;
}
BOOL CreateDirectoryEnsuringAccess(LPCWSTR path)
{
SECURITY_ATTRIBUTES sa, *psa = NULL;
BOOL ret = false;
psa = init_security_attributes(&sa);
ret = CreateDirectory(path, psa);
LocalFree(sa.lpSecurityDescriptor);
return ret;
}
// Replacement for _wfopen_s that ensures the permissions will be set so we can
// read it back later.
errno_t wfopen_ensuring_access(FILE** pFile, const wchar_t *filename, const wchar_t *mode)
{
SECURITY_ATTRIBUTES sa, *psa = NULL;
HANDLE fh = NULL;
int fd = -1;
FILE *fp = NULL;
int osf_flags = 0;
*pFile = NULL;
if (wcsstr(mode, L"w") == NULL) {
// This function is for creating new files for now. We could
// make it do some heroics on read/append as well, but I don't
// want to push this further than we need to.
LogInfo("FIXME: wfopen_ensuring_access only supports opening for write\n");
DoubleBeepExit();
}
if (wcsstr(mode, L"b") == NULL)
osf_flags |= _O_TEXT;
// We use _wfopen_s so that we can use formatted print routines, but to
// set security attributes at creation time to make sure the
// permissions give us read access we need to use CreateFile, and
// convert the resulting handle into a C file descriptor, then a FILE*
// that can be used as per usual.
psa = init_security_attributes(&sa);
fh = CreateFile(filename, GENERIC_WRITE, 0, psa, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
LocalFree(sa.lpSecurityDescriptor);
if (fh == INVALID_HANDLE_VALUE) {
// FIXME: Map GetLastError() to appropriate errno
return EIO;
}
// Convert the HANDLE into a file descriptor.
fd = _open_osfhandle((intptr_t)fh, osf_flags);
if (fd == -1) {
CloseHandle(fh);
return EIO;
}
// From this point on, we do not use CloseHandle(fh), as it will be
// implicitly closed with close(fd)
// Convert the file descriptor into a file pointer.
fp = _wfdopen(fd, mode);
if (!fp) {
_close(fd);
return EIO;
}
// From this point on, we do not use CloseHandle(fh) or close(fd) as it
// will be implicitly closed with fclose(fp). Convenient for us,
// because it means the caller doesn't have to care about the fh or fd.
*pFile = fp;
return 0;
}
void set_file_last_write_time(wchar_t *path, FILETIME *ftWrite, DWORD flags)
{
HANDLE f;
f = CreateFile(path, GENERIC_WRITE, FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | flags, NULL);
if (f == INVALID_HANDLE_VALUE)
return;
SetFileTime(f, NULL, NULL, ftWrite);
CloseHandle(f);
}
void touch_file(wchar_t *path, DWORD flags)
{
FILETIME ft;
SYSTEMTIME st;
GetSystemTime(&st);
SystemTimeToFileTime(&st, &ft);
set_file_last_write_time(path, &ft, flags);
}
// -----------------------------------------------------------------------------------------------
// When logging, it's not very helpful to have long sequences of hex instead of
// the actual names of the objects in question.
// e.g.
// DEFINE_GUID(IID_IDXGIFactory,0x7b7166ec,0x21c7,0x44ae,0xb2,0x1a,0xc9,0xae,0x32,0x1a,0xe3,0x69);
//
std::string NameFromIID(IID id)
{
// Adding every MIDL_INTERFACE from d3d11_1.h to make this reporting complete.
// Doesn't seem useful to do every object from d3d11.h itself.
if (__uuidof(IUnknown) == id)
return "IUnknown";
if (__uuidof(ID3D10Multithread) == id)
return "ID3D10Multithread";
if (__uuidof(ID3D11DeviceChild) == id)
return "ID3D11DeviceChild";
if (__uuidof(ID3DDeviceContextState) == id)
return "ID3DDeviceContextState";
if (__uuidof(IDirect3DDevice9) == id)
return "IDirect3DDevice9";
if (__uuidof(ID3D10Device) == id)
return "ID3D10Device";
if (__uuidof(ID3D11Device) == id)
return "ID3D11Device";
if (__uuidof(ID3D11Device1) == id)
return "ID3D11Device1";
if (__uuidof(ID3D11Device2) == id) // d3d11_2.h when the time comes
return "ID3D11Device2";
if (IID_HackerDevice == id)
return "HackerDevice";
if (__uuidof(ID3D11DeviceContext) == id)
return "ID3D11DeviceContext";
if (__uuidof(ID3D11DeviceContext1) == id)
return "ID3D11DeviceContext1";
if (__uuidof(ID3D11DeviceContext2) == id) // d3d11_2.h when the time comes
return "ID3D11DeviceContext2";
if (IID_HackerContext == id)
return "HackerContext";
if (__uuidof(ID3D11InfoQueue) == id)
return "ID3D11InfoQueue";
if (__uuidof(ID3DUserDefinedAnnotation) == id)
return "ID3DUserDefinedAnnotation";
if (__uuidof(ID3D11BlendState) == id)
return "ID3D11BlendState";
if (__uuidof(ID3D11BlendState1) == id)
return "ID3D11BlendState1";
if (__uuidof(ID3D11RasterizerState) == id)
return "ID3D11RasterizerState";
if (__uuidof(ID3D11RasterizerState1) == id)
return "ID3D11RasterizerState1";
if (__uuidof(ID3D11Texture2D) == id) // Used to fetch backbuffer
return "ID3D11Texture2D";
// All the DXGI interfaces from dxgi.h, and dxgi1_2.h
if (__uuidof(IDXGIObject) == id)
return "IDXGIObject";
if (__uuidof(IDXGIDeviceSubObject) == id)
return "IDXGIDeviceSubObject";
if (__uuidof(IDXGIFactory) == id)
return "IDXGIFactory";
if (__uuidof(IDXGIFactory1) == id)
return "IDXGIFactory1";
if (__uuidof(IDXGIFactory2) == id)
return "IDXGIFactory2";
if (__uuidof(IDXGIDevice) == id)
return "IDXGIDevice";
if (__uuidof(IDXGIDevice1) == id)
return "IDXGIDevice1";
if (__uuidof(IDXGIDevice2) == id)
return "IDXGIDevice2";
if (__uuidof(IDXGISwapChain) == id)
return "IDXGISwapChain";
if (__uuidof(IDXGISwapChain1) == id)
return "IDXGISwapChain1";
if (__uuidof(IDXGISwapChain2) == id) // dxgi1_3 A8BE2AC4-199F-4946-B331-79599FB98DE7
return "IDXGISwapChain2";
if (__uuidof(IDXGISwapChain3) == id) // dxgi1_4 94D99BDB-F1F8-4AB0-B236-7DA0170EDAB1
return "IDXGISwapChain3";
if (__uuidof(IDXGISwapChain4) == id) // dxgi1_5 3D585D5A-BD4A-489E-B1F4-3DBCB6452FFB
return "IDXGISwapChain4";
if (__uuidof(IDXGIAdapter) == id)
return "IDXGIAdapter";
if (__uuidof(IDXGIAdapter1) == id)
return "IDXGIAdapter1";
if (__uuidof(IDXGIAdapter2) == id)
return "IDXGIAdapter2";
if (__uuidof(IDXGIOutputDuplication) == id)
return "IDXGIOutputDuplication";
if (__uuidof(IDXGIDisplayControl) == id)
return "IDXGIDisplayControl";
if (__uuidof(IDXGIOutput) == id)
return "IDXGIOutput";
if (__uuidof(IDXGIOutput1) == id)
return "IDXGIOutput1";
if (__uuidof(IDXGIResource) == id)
return "IDXGIResource";
if (__uuidof(IDXGIResource1) == id)
return "IDXGIResource1";
if (__uuidof(IDXGISurface) == id)
return "IDXGISurface";
if (__uuidof(IDXGISurface1) == id)
return "IDXGIResource";
if (__uuidof(IDXGISurface2) == id)
return "IDXGISurface2";
if (__uuidof(IDXGIKeyedMutex) == id)
return "IDXGIKeyedMutex";
// For unknown IIDs lets return the hex string.
// Converting from wchar_t to string using stackoverflow suggestion.
std::string iidString;
wchar_t wiid[128];
if (SUCCEEDED(StringFromGUID2(id, wiid, 128)))
{
std::wstring convert = std::wstring(wiid);
iidString = std::string(convert.begin(), convert.end());
}
else
{
iidString = "unknown";
}
return iidString;
}
static void WarnIfConflictingFileExists(wchar_t *path, wchar_t *conflicting_path, const char *message)
{
DWORD attrib = GetFileAttributes(conflicting_path);
if (attrib == INVALID_FILE_ATTRIBUTES)
return;
LogOverlay(LOG_DIRE, "WARNING: %s\"%S\" conflicts with \"%S\"\n", message, conflicting_path, path);
}
void WarnIfConflictingShaderExists(wchar_t *orig_path, const char *message)
{
wchar_t conflicting_path[MAX_PATH], *postfix;
wcscpy_s(conflicting_path, MAX_PATH, orig_path);
// If we're using a HLSL shader, make sure there are no conflicting
// assembly shaders, either text or binary:
postfix = wcsstr(conflicting_path, L"_replace");
if (postfix) {
wcscpy_s(postfix, conflicting_path + MAX_PATH - postfix, L".txt");
WarnIfConflictingFileExists(orig_path, conflicting_path, message);
wcscpy_s(postfix, conflicting_path + MAX_PATH - postfix, L".bin");
WarnIfConflictingFileExists(orig_path, conflicting_path, message);
return;
}
// If we're using an assembly shader, make sure there are no
// conflicting HLSL shaders, either text or binary:
postfix = wcsstr(conflicting_path, L".");
if (postfix) {
wcscpy_s(postfix, conflicting_path + MAX_PATH - postfix, L"_replace.txt");
WarnIfConflictingFileExists(orig_path, conflicting_path, message);
wcscpy_s(postfix, conflicting_path + MAX_PATH - postfix, L"_replace.bin");
WarnIfConflictingFileExists(orig_path, conflicting_path, message);
return;
}
}
void save_om_state(ID3D11DeviceContext *context, struct OMState *state)
{
int i;
// OMGetRenderTargetAndUnorderedAccessViews is a poorly designed API as
// to use it properly to get all RTVs and UAVs we need to pass it some
// information that we don't know. So, we have to do a few extra steps
// to find that info.
context->OMGetRenderTargets(D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT, state->rtvs, &state->dsv);
state->NumRTVs = 0;
for (i = 0; i < D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT; i++) {
if (state->rtvs[i])
state->NumRTVs = i + 1;
}
state->UAVStartSlot = state->NumRTVs;
// Set NumUAVs to the max to retrieve them all now, and so that later
// when rebinding them we will unbind any others that the command list
// bound in the meantime
state->NumUAVs = D3D11_PS_CS_UAV_REGISTER_COUNT - state->UAVStartSlot;
// Finally get all the UAVs. Since we already retrieved the RTVs and
// DSV we can skip getting them:
context->OMGetRenderTargetsAndUnorderedAccessViews(0, NULL, NULL, state->UAVStartSlot, state->NumUAVs, state->uavs);
}
void restore_om_state(ID3D11DeviceContext *context, struct OMState *state)
{
static const UINT uav_counts[D3D11_PS_CS_UAV_REGISTER_COUNT] = {(UINT)-1, (UINT)-1, (UINT)-1, (UINT)-1, (UINT)-1, (UINT)-1, (UINT)-1, (UINT)-1};
UINT i;
context->OMSetRenderTargetsAndUnorderedAccessViews(state->NumRTVs, state->rtvs, state->dsv,
state->UAVStartSlot, state->NumUAVs, state->uavs, uav_counts);
for (i = 0; i < state->NumRTVs; i++) {
if (state->rtvs[i])
state->rtvs[i]->Release();
}
if (state->dsv)
state->dsv->Release();
for (i = 0; i < state->NumUAVs; i++) {
if (state->uavs[i])
state->uavs[i]->Release();
}
}
IDXGISwapChain *last_fullscreen_swap_chain;
static CRITICAL_SECTION crash_handler_lock;
static int crash_handler_level;
static DWORD WINAPI crash_handler_switch_to_window(_In_ LPVOID lpParameter)
{
// Debugging is a pain in exclusive full screen, especially without a
// second monitor attached (and even with one if you don't know about
// the win+arrow or alt+space shortcuts you may be stuck - alt+tab to
// the debugger, either win+down or alt+space and choose "Restore",
// either win+left/right several times to move it to the other monitor
// or alt+space again and choose "Move", press any arrow key to start
// moving and *then* you can use the mouse to move the window to the
// other monitor)... Try to switch to windowed mode to make our lives a
// lot easier, but depending on the crash this might just hang (DirectX
// might get stuck waiting on a lock or the window message queue might
// not be pumping), so we do this in a new thread to allow the main
// crash handler to continue responding to other keys:
//
// TODO: See if we can find a way to make this more reliable
//
if (last_fullscreen_swap_chain) {
LogInfo("Attempting emergency switch to windowed mode on swap chain %p\n",
last_fullscreen_swap_chain);
last_fullscreen_swap_chain->SetFullscreenState(FALSE, NULL);
//last_fullscreen_swap_chain->ResizeBuffers(0, 0, 0, DXGI_FORMAT_UNKNOWN, DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH);
}
if (LogFile)
fflush(LogFile);
return 0;
}
static LONG WINAPI migoto_exception_filter(_In_ struct _EXCEPTION_POINTERS *ExceptionInfo)
{
wchar_t path[MAX_PATH];
tm timestruct;
time_t ltime;
LONG ret = EXCEPTION_CONTINUE_EXECUTION;
// SOS
Beep(250, 100); Beep(250, 100); Beep(250, 100);
Beep(200, 300); Beep(200, 200); Beep(200, 200);
Beep(250, 100); Beep(250, 100); Beep(250, 100);
// Before anything else, flush the log file and log exception info
if (LogFile) {
fflush(LogFile);
LogInfo("\n\n ######################################\n"
" ### 3DMigoto Crash Handler Invoked ###\n");
int i = 0;
for (auto record = ExceptionInfo->ExceptionRecord; record; record = record->ExceptionRecord, i++) {
LogInfo(" ######################################\n"
" ### Exception Record %i\n"
" ### ExceptionCode: 0x%08x\n"
" ### ExceptionFlags: 0x%08x\n"
" ### ExceptionAddress: 0x%p\n"
" ### NumberParameters: 0x%u\n"
" ###",
i,
record->ExceptionCode,
record->ExceptionFlags,
record->ExceptionAddress,
record->NumberParameters);
for (unsigned j = 0; j < record->NumberParameters; j++)
LogInfo(" %08Ix", record->ExceptionInformation[j]);
LogInfo("\n");
}
fflush(LogFile);
}
// Next, write a minidump file so we can examine this in a debugger
// later. Note that if the stack is corrupt there is some possibility
// this could fail - if we really want a robust crash handler we could
// bring in something like breakpad
ltime = time(NULL);
localtime_s(×truct, <ime);
wcsftime(path, MAX_PATH, L"3DM-%Y%m%d%H%M%S.dmp", ×truct);
// If multiple threads crash only allow one to write the crash dump and
// the rest stop here:
EnterCriticalSectionPretty(&crash_handler_lock);
auto fp = CreateFile(path, GENERIC_WRITE, FILE_SHARE_READ,
0, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL);
if (fp != INVALID_HANDLE_VALUE) {
LogInfo("Writing minidump to %S...\n", path);
MINIDUMP_EXCEPTION_INFORMATION dump_info =
{ GetCurrentThreadId(), ExceptionInfo, FALSE };
if (MiniDumpWriteDump(GetCurrentProcess(), GetCurrentProcessId(),
fp, MiniDumpWithHandleData, &dump_info, NULL, NULL))
LogInfo("Succeeded\n");
else
LogInfo("Failed :(\n");
CloseHandle(fp);
} else
LogInfo("Error creating minidump file \"%S\": %d\n", path, GetLastError());
if (LogFile)
fflush(LogFile);
// If crash is set to 2 instead of continuing we will stop and start
// responding to various key bindings, sounding a reminder tone every
// 5 seconds. All key bindings in this mode are prefixed with Ctrl+Alt
// to prevent them being accidentally triggered.
if (crash_handler_level == 2) {
if (LogFile) {
LogInfo("3DMigoto interactive crash handler invoked:\n");
LogInfo(" Ctrl+Alt+Q: Quit (execute exception handler)\n");
LogInfo(" Ctrl+Alt+K: Kill process\n");
LogInfo(" Ctrl+Alt+C: Continue execution\n");
LogInfo(" Ctrl+Alt+B: Break into the debugger (make sure one is attached)\n");
LogInfo(" Ctrl+Alt+W: Attempt to switch to Windowed mode\n");
LogInfo("\n");
fflush(LogFile);
}
while (1) {
Beep(500, 100);
for (int i = 0; i < 50; i++) {
Sleep(100);
if (GetAsyncKeyState(VK_CONTROL) < 0 &&
GetAsyncKeyState(VK_MENU) < 0) {
if (GetAsyncKeyState('C') < 0) {
LogInfo("Attempting to continue...\n"); fflush(LogFile); Beep(1000, 100);
ret = EXCEPTION_CONTINUE_EXECUTION;
goto unlock;
}
if (GetAsyncKeyState('Q') < 0) {
LogInfo("Executing exception handler...\n"); fflush(LogFile); Beep(1000, 100);
ret = EXCEPTION_EXECUTE_HANDLER;
goto unlock;
}
if (GetAsyncKeyState('K') < 0) {
LogInfo("Killing process...\n"); fflush(LogFile); Beep(1000, 100);
ExitProcess(0x3D819070);
}
// TODO:
// S = Suspend all other threads
// R = Resume all other threads
if (GetAsyncKeyState('B') < 0) {
LogInfo("Dropping to debugger...\n"); fflush(LogFile); Beep(1000, 100);
__debugbreak();
goto unlock;
}
if (GetAsyncKeyState('W') < 0) {
LogInfo("Attempting to switch to windowed mode...\n"); fflush(LogFile); Beep(1000, 100);
CreateThread(NULL, 0, crash_handler_switch_to_window, NULL, 0, NULL);
Sleep(1000);
}
}
}
}
}
unlock:
LeaveCriticalSection(&crash_handler_lock);
return ret;
}
static DWORD WINAPI exception_keyboard_monitor(_In_ LPVOID lpParameter)
{
while (1) {
Sleep(1000);
if (GetAsyncKeyState(VK_CONTROL) < 0 &&
GetAsyncKeyState(VK_MENU) < 0 &&
GetAsyncKeyState(VK_F11) < 0) {
// User must be really committed to this to invoke the
// crash handler, and this is a simple measure against
// accidentally invoking it multiple times in a row:
Sleep(3000);
if (GetAsyncKeyState(VK_CONTROL) < 0 &&
GetAsyncKeyState(VK_MENU) < 0 &&
GetAsyncKeyState(VK_F11) < 0) {
// Make sure 3DMigoto's exception handler is
// still installed and trigger it:
SetUnhandledExceptionFilter(migoto_exception_filter);
RaiseException(0x3D819070, 0, 0, NULL);
}
}
}
}
void install_crash_handler(int level)
{
LPTOP_LEVEL_EXCEPTION_FILTER old_handler;
UINT old_mode;
crash_handler_level = level;
old_handler = SetUnhandledExceptionFilter(migoto_exception_filter);
// TODO: Call set_terminate() on every thread to catch unhandled C++
// exceptions as well
if (old_handler == migoto_exception_filter) {
LogInfo(" > 3DMigoto crash handler already installed\n");
return;
}
InitializeCriticalSectionPretty(&crash_handler_lock);
old_mode = SetErrorMode(SEM_FAILCRITICALERRORS);
LogInfo(" > Installed 3DMigoto crash handler, previous exception filter: %p, previous error mode: %x\n",
old_handler, old_mode);
// Spawn a thread to monitor for a keyboard salute to trigger the
// exception handler in the event of a hang/deadlock:
CreateThread(NULL, 0, exception_keyboard_monitor, NULL, 0, NULL);
}