-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathdllmain.cpp
825 lines (663 loc) · 25.4 KB
/
dllmain.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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 头文件
#include <WinSock2.h>
#include <Windows.h>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <stdio.h>
#include <detver.h>
#include <detours.h>
#include <string>
#include <vector>
#include <stdexcept>
#include <regex>
#include <map>
#include "socket_manager.h"
#include "proxy_info.h"
#include "encoding_utils.h"
#include "base64.h"
#include "log_utils.h"
#pragma comment(lib, "ws2_32.lib")
#if _WIN64
extern "C" {
FARPROC g_GetFileVersionInfoA;
FARPROC g_GetFileVersionInfoByHandle;
FARPROC g_GetFileVersionInfoExA;
FARPROC g_GetFileVersionInfoExW;
FARPROC g_GetFileVersionInfoSizeA;
FARPROC g_GetFileVersionInfoSizeExA;
FARPROC g_GetFileVersionInfoSizeExW;
FARPROC g_GetFileVersionInfoSizeW;
FARPROC g_GetFileVersionInfoW;
FARPROC g_VerFindFileA;
FARPROC g_VerFindFileW;
FARPROC g_VerInstallFileA;
FARPROC g_VerInstallFileW;
FARPROC g_VerLanguageNameA;
FARPROC g_VerLanguageNameW;
FARPROC g_VerQueryValueA;
FARPROC g_VerQueryValueW;
}
#else
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
#pragma comment(linker, "/EXPORT:GetFileVersionInfoA=_AheadLib_GetFileVersionInfoA,@1")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoByHandle=_AheadLib_GetFileVersionInfoByHandle,@2")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoExA=_AheadLib_GetFileVersionInfoExA,@3")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoExW=_AheadLib_GetFileVersionInfoExW,@4")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoSizeA=_AheadLib_GetFileVersionInfoSizeA,@5")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoSizeExA=_AheadLib_GetFileVersionInfoSizeExA,@6")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoSizeExW=_AheadLib_GetFileVersionInfoSizeExW,@7")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoSizeW=_AheadLib_GetFileVersionInfoSizeW,@8")
#pragma comment(linker, "/EXPORT:GetFileVersionInfoW=_AheadLib_GetFileVersionInfoW,@9")
#pragma comment(linker, "/EXPORT:VerFindFileA=_AheadLib_VerFindFileA,@10")
#pragma comment(linker, "/EXPORT:VerFindFileW=_AheadLib_VerFindFileW,@11")
#pragma comment(linker, "/EXPORT:VerInstallFileA=_AheadLib_VerInstallFileA,@12")
#pragma comment(linker, "/EXPORT:VerInstallFileW=_AheadLib_VerInstallFileW,@13")
#pragma comment(linker, "/EXPORT:VerLanguageNameA=_AheadLib_VerLanguageNameA,@14")
#pragma comment(linker, "/EXPORT:VerLanguageNameW=_AheadLib_VerLanguageNameW,@15")
#pragma comment(linker, "/EXPORT:VerQueryValueA=_AheadLib_VerQueryValueA,@16")
#pragma comment(linker, "/EXPORT:VerQueryValueW=_AheadLib_VerQueryValueW,@17")
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 原函数地址指针
PVOID g_GetFileVersionInfoA;
PVOID g_GetFileVersionInfoByHandle;
PVOID g_GetFileVersionInfoExA;
PVOID g_GetFileVersionInfoExW;
PVOID g_GetFileVersionInfoSizeA;
PVOID g_GetFileVersionInfoSizeExA;
PVOID g_GetFileVersionInfoSizeExW;
PVOID g_GetFileVersionInfoSizeW;
PVOID g_GetFileVersionInfoW;
PVOID g_VerFindFileA;
PVOID g_VerFindFileW;
PVOID g_VerInstallFileA;
PVOID g_VerInstallFileW;
PVOID g_VerLanguageNameA;
PVOID g_VerLanguageNameW;
PVOID g_VerQueryValueA;
PVOID g_VerQueryValueW;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 宏定义
#define EXTERNC extern "C"
#define NAKED __declspec(naked)
#define EXPORT __declspec(dllexport)
#define ALCPP EXPORT NAKED
#define ALSTD EXTERNC EXPORT NAKED void __stdcall
#define ALCFAST EXTERNC EXPORT NAKED void __fastcall
#define ALCDECL EXTERNC NAKED void __cdecl
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace DiscordProxy
{
HMODULE m_hModule = NULL; // 原始模块句柄
DWORD m_dwReturn[17] = { 0 }; // 原始函数返回地址
// 获取原始函数地址
FARPROC WINAPI GetAddress(PCSTR pszProcName, bool dontExit = false)
{
FARPROC fpAddress;
CHAR szProcName[16];
TCHAR tzTemp[MAX_PATH];
fpAddress = GetProcAddress(m_hModule, pszProcName);
if (fpAddress == NULL)
{
if (HIWORD(pszProcName) == 0)
{
wsprintfA(szProcName, "%d", pszProcName);
pszProcName = szProcName;
}
if (!dontExit) {
wsprintf(tzTemp, TEXT("无法找到函数 %hs,程序无法正常运行。"), pszProcName);
MessageBox(NULL, tzTemp, TEXT("DiscordProxy"), MB_ICONSTOP);
ExitProcess(-2);
}
}
return fpAddress;
}
// 初始化原始函数地址指针
inline VOID WINAPI InitializeAddresses()
{
g_GetFileVersionInfoA = GetAddress("GetFileVersionInfoA");
g_GetFileVersionInfoByHandle = GetAddress("GetFileVersionInfoByHandle");
g_GetFileVersionInfoExA = GetAddress("GetFileVersionInfoExA", true); //win7下没有
g_GetFileVersionInfoExW = GetAddress("GetFileVersionInfoExW");
g_GetFileVersionInfoSizeA = GetAddress("GetFileVersionInfoSizeA");
g_GetFileVersionInfoSizeExA = GetAddress("GetFileVersionInfoSizeExA", true); //win7下没有
g_GetFileVersionInfoSizeExW = GetAddress("GetFileVersionInfoSizeExW");
g_GetFileVersionInfoSizeW = GetAddress("GetFileVersionInfoSizeW");
g_GetFileVersionInfoW = GetAddress("GetFileVersionInfoW");
g_VerFindFileA = GetAddress("VerFindFileA");
g_VerFindFileW = GetAddress("VerFindFileW");
g_VerInstallFileA = GetAddress("VerInstallFileA");
g_VerInstallFileW = GetAddress("VerInstallFileW");
g_VerLanguageNameA = GetAddress("VerLanguageNameA");
g_VerLanguageNameW = GetAddress("VerLanguageNameW");
g_VerQueryValueA = GetAddress("VerQueryValueA");
g_VerQueryValueW = GetAddress("VerQueryValueW");
}
// 加载原始模块
inline BOOL WINAPI Load()
{
TCHAR tzPath[MAX_PATH];
TCHAR tzTemp[MAX_PATH * 2];
GetSystemDirectory(tzPath, MAX_PATH);
lstrcat(tzPath, TEXT("\\version.dll"));
m_hModule = LoadLibrary(tzPath);
if (m_hModule == NULL)
{
wsprintf(tzTemp, TEXT("无法加载 %s,程序无法正常运行。"), tzPath);
MessageBox(NULL, tzTemp, TEXT("AheadLib"), MB_ICONSTOP);
}
else
{
InitializeAddresses();
}
return (m_hModule != NULL);
}
// 释放原始模块
inline VOID WINAPI Free()
{
if (m_hModule)
{
FreeLibrary(m_hModule);
}
}
}
using namespace DiscordProxy;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
static HMODULE(WINAPI* pMyGetModuleHandleW)(LPCWSTR lpModuleName) = GetModuleHandleW;
static HMODULE(WINAPI* pMyLoadLibraryW)(LPCWSTR lpLibFileName) = LoadLibraryW;
static HMODULE(WINAPI* pMyLoadLibraryExW)(LPCWSTR lpLibFileName, HANDLE hFile, DWORD dwFlags) = LoadLibraryExW;
static DWORD(WINAPI* pMyGetEnvironmentVariableW)(LPCWSTR lpName,LPWSTR lpBuffer,DWORD nSize) = GetEnvironmentVariableW;
static SOCKET(WSAAPI* pMySocket)(int af, int type, int protocol) = socket;
static SOCKET(WSAAPI* pMyWSASocketW)(int af, int type, int protocol, LPWSAPROTOCOL_INFOW lpProtocolInfo, GROUP g, DWORD dwFlags) = WSASocketW;
static int (WSAAPI* pMySend)(SOCKET s, const char* buf, int len, int flags) = send;
static int (WSAAPI* pMyRecv)(SOCKET s, char* buf, int len, int flags) = recv;
static int (WSAAPI* pMyConnect)(SOCKET s, const struct sockaddr* name, int namelen) = connect;
static int (WSAAPI* pMyWSASend)(
SOCKET s,
LPWSABUF lpBuffers,
DWORD dwBufferCount,
LPDWORD lpNumberOfBytesSent,
DWORD dwFlags,
LPWSAOVERLAPPED lpOverlapped,
LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine
) = WSASend;
static int (WSAAPI* pMyWSARecv)(
SOCKET s,
LPWSABUF lpBuffers,
DWORD dwBufferCount,
LPDWORD lpNumberOfBytesRecvd,
LPDWORD lpFlags,
LPWSAOVERLAPPED lpOverlapped,
LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine
) = WSARecv;
static BOOL(WINAPI* pMyCreateProcessW)(
LPCWSTR lpApplicationName,
LPWSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes,
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCWSTR lpCurrentDirectory,
LPSTARTUPINFOW lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
) = CreateProcessW;
wchar_t g_proxy[512];
bool g_hasProxy;
SocketManager g_socketManager;
ProxyInfo g_configProxy;
bool g_updaterProcess = false;
HMODULE g_hModule = NULL;
//updater.node的代理获取方法
DWORD WINAPI MyGetEnvironmentVariableW(
LPCWSTR lpName,
LPWSTR lpBuffer,
DWORD nSize) {
if (g_updaterProcess && g_hasProxy) {
if (lstrcmpiW(lpName, L"HTTPS_PROXY") == 0 ||
lstrcmpiW(lpName, L"https_proxy") == 0 ||
lstrcmpiW(lpName, L"HTTP_PROXY") == 0 ||
lstrcmpiW(lpName, L"http_proxy") == 0) {
std::wstring wProxy = Utf8toWide(g_configProxy.GetProxyForceHttp().c_str());
OutputDebugStringW(wProxy.c_str());
wmemcpy(lpBuffer, wProxy.c_str(), lstrlenW(wProxy.c_str()));
return lstrlenW(wProxy.c_str());
}
}
return pMyGetEnvironmentVariableW(lpName, lpBuffer, nSize);
}
//discord.exe的代理获取方法
BOOL WINAPI MyCreateProcessW(
LPCWSTR lpApplicationName,
LPWSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes,
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCWSTR lpCurrentDirectory,
LPSTARTUPINFOW lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation) {
auto cmd = std::wstring(lpCommandLine);
std::string::size_type idx = cmd.find(L"\\Discord.exe");
std::string::size_type canaryIdx = cmd.find(L"\\DiscordCanary.exe");
if (g_hasProxy && (idx != std::string::npos || canaryIdx != std::string::npos)) {
std::string::size_type proxyServerIdx = cmd.find(L"--proxy-server");
if (proxyServerIdx == std::string::npos) {
cmd.append(L" --proxy-server==");
cmd.append(Utf8toWide(g_configProxy.GetProxyNoAuth().c_str()));
//LogDebug(lpApplicationName);
//LogDebug(lpCommandLine);
//LogDebug(targetPath.c_str());
if (lpApplicationName != nullptr) {
std::wstring targetPath = lpApplicationName;
size_t lastSlash = targetPath.find_last_of(L"\\/");
std::wstring targetDir;
if (lastSlash != std::wstring::npos) {
targetDir = targetPath.substr(0, lastSlash);
}
std::wstring targetVersionDll = targetDir + L"\\version.dll";
//LogDebug(targetVersionDll.c_str());
DWORD fileAttrs = GetFileAttributesW(targetVersionDll.c_str());
if (fileAttrs == INVALID_FILE_ATTRIBUTES) {
wchar_t currentDllPath[MAX_PATH];
GetModuleFileNameW(g_hModule, currentDllPath, MAX_PATH);
CopyFileW(currentDllPath, targetVersionDll.c_str(), FALSE);
}
else {
}
}
return pMyCreateProcessW(lpApplicationName, (LPWSTR)cmd.c_str(), lpProcessAttributes, lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment, lpCurrentDirectory, lpStartupInfo, lpProcessInformation);
}
}
return pMyCreateProcessW(lpApplicationName, lpCommandLine, lpProcessAttributes, lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment, lpCurrentDirectory, lpStartupInfo, lpProcessInformation);;
}
bool ParseHttpConnect(const char* buf, int len, std::string& host, int& port) {
std::string data(buf, len);
std::regex connectRegex("CONNECT ([^:]*):(\\d+)");
std::smatch match;
if (std::regex_search(data, match, connectRegex)) {
host = match[1].str();
port = std::stoi(match[2].str());
return true;
}
return false;
}
bool SendHttpToSocks(SOCKET sock, const char* buf, int len, int flags) {
std::string host;
int port;
if (!ParseHttpConnect(buf, len, host, port)) {
return false;
}
// SOCKS5握手,支持No Auth和Username/Password Auth
char handshake[] = { 0x05, 0x02, 0x00, 0x02 };
if (pMySend(sock, handshake, sizeof(handshake), flags) != sizeof(handshake)) {
return false;
}
// 等待服务器响应
fd_set readSet;
timeval timeout = { 10, 0 };
FD_ZERO(&readSet);
FD_SET(sock, &readSet);
if (select(0, &readSet, nullptr, nullptr, &timeout) != 1) {
return false;
}
char response[2];
if (pMyRecv(sock, response, 2, 0) != 2) {
return false;
}
if (response[0] != 0x05) {
return false;
}
if (response[1] == 0x00) {
//LogDebug("Socks No Authentication Required");
}
else if (response[1] == 0x02) {
// Chrome本身不支持认证,所以此实现无意义
std::string username = g_configProxy.username;
std::string password = g_configProxy.password;
if (username.length() > 255 || password.length() > 255) {
return false;
}
std::vector<char> authRequest;
authRequest.push_back(0x01); // Version
authRequest.push_back(static_cast<char>(username.length()));
authRequest.insert(authRequest.end(), username.begin(), username.end());
authRequest.push_back(static_cast<char>(password.length()));
authRequest.insert(authRequest.end(), password.begin(), password.end());
if (pMySend(sock, authRequest.data(), authRequest.size(), flags) != authRequest.size()) {
return false;
}
char authResponse[2];
if (pMyRecv(sock, authResponse, 2, 0) != 2) {
return false;
}
if (authResponse[0] != 0x01 || authResponse[1] != 0x00) {
// 认证失败
return false;
}
}
else {
// 不支持的认证模式
return false;
}
// 发送连接请求
std::vector<char> request;
request.push_back(0x05); // VER
request.push_back(0x01); // CMD: CONNECT
request.push_back(0x00); // RSV
request.push_back(0x03); // ATYP: DOMAIN
request.push_back(static_cast<char>(host.length())); // Domain length
request.insert(request.end(), host.begin(), host.end()); // Domain
request.push_back(static_cast<char>(port >> 8)); // Port high byte
request.push_back(static_cast<char>(port & 0xFF)); // Port low byte
if (pMySend(sock, request.data(), request.size(), flags) != request.size()) {
return false;
}
LogDebug("SendHttpToSocks#7");
g_socketManager.SetFakeHttpProxyFlag(sock);
return true;
}
SOCKET WSAAPI MySocket(int af, int type, int protocol) {
SOCKET sock = pMySocket(af, type, protocol);
if (!g_updaterProcess) {
return sock;
}
if (sock != INVALID_SOCKET) {
g_socketManager.Add(sock, type, protocol);
}
return sock;
}
SOCKET WSAAPI MyWSASocketW(int af, int type, int protocol,
LPWSAPROTOCOL_INFOW lpProtocolInfo, GROUP g, DWORD dwFlags) {
SOCKET sock = pMyWSASocketW(af, type, protocol, lpProtocolInfo, g, dwFlags);
if (!g_updaterProcess) {
return sock;
}
if (sock != INVALID_SOCKET) {
g_socketManager.Add(sock, type, protocol);
}
return sock;
}
int WSAAPI MySend(SOCKET s, const char* buf, int len, int flags) {
if (g_updaterProcess) {
SocketManagerItem item;
if (g_socketManager.IsFirstSend(s, item)) {
if (item.isTcp && g_configProxy.isSocks5) {
if (SendHttpToSocks(s, buf, len, flags)) {
return len;
}
}
}
}
return pMySend(s, buf, len, flags);
}
int WSAAPI MyRecv(SOCKET s, char* buf, int len, int flags) {
int ret = pMyRecv(s, buf, len, flags);
if (!g_updaterProcess) {
return ret;
}
if (ret > 0 && g_socketManager.ClearFakeHttpProxyFlag(s)) {
if (ret >= 10) {
if (memcmp(buf, "\x05\x00\x00", 3) == 0) {
const char* httpResponse =
"HTTP/1.1 200 Connection Established\r\n\r\n";
size_t respLen = strlen(httpResponse);
if (respLen <= len) {
memcpy(buf, httpResponse, respLen);
return respLen;
}
}
}
}
return ret;
}
BOOL APIENTRY InstallWsHook() {
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
DetourAttach((void**)&pMySocket, MySocket);
DetourAttach((void**)&pMyWSASocketW, MyWSASocketW);
DetourAttach((void**)&pMySend, MySend);
DetourAttach((void**)&pMyRecv, MyRecv);
LONG ret = DetourTransactionCommit();
return ret == NO_ERROR;
}
void OnModuleLoaded(LPCWSTR moduleName) {
//LogDebug(std::wstring(L"OnModuleLoaded " + std::wstring(moduleName)).c_str());
std::wstring moduleNameStr(moduleName);
const wchar_t* endsWith = L"\\updater.node";
if (g_updaterProcess == false && moduleNameStr.length() >= wcslen(endsWith) &&
moduleNameStr.compare(moduleNameStr.length() - wcslen(endsWith), wcslen(endsWith), endsWith) == 0) {
LogDebug(L"updater.node loaded");
g_updaterProcess = true;
//仅在updater中支持socks5,性能优化,chrome本身已支持,所以无需调用相关代码
//在此hook ws2_32.dll的相关函数
if (g_configProxy.isSocks5) {
InstallWsHook();
}
}
}
HMODULE WINAPI MyGetModuleHandleW(LPCWSTR lpModuleName) {
HMODULE hModule = pMyGetModuleHandleW(lpModuleName);
if (hModule && lpModuleName) {
OnModuleLoaded(lpModuleName);
}
return hModule;
}
HMODULE WINAPI MyLoadLibraryW(LPCWSTR lpLibFileName) {
HMODULE hModule = pMyLoadLibraryW(lpLibFileName);
if (hModule && lpLibFileName) {
OnModuleLoaded(lpLibFileName);
}
return hModule;
}
HMODULE WINAPI MyLoadLibraryExW(LPCWSTR lpLibFileName, HANDLE hFile, DWORD dwFlags) {
HMODULE hModule = pMyLoadLibraryExW(lpLibFileName, hFile, dwFlags);
if (hModule && lpLibFileName) {
OnModuleLoaded(lpLibFileName);
}
return hModule;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
BOOL APIENTRY LoadProxyConfig() {
auto commandLine = GetCommandLineA();
auto cmd = std::string(commandLine);
auto cmdTag = "--proxy-server=";
std::string::size_type proxyServerIdx = cmd.find(cmdTag);
if (cmd.find(cmdTag) != std::string::npos) {
using namespace std;
//OutputDebugStringA(cmd.c_str());
std::string regexp_string(".*--proxy-server(={1,2})(.[^\\s]*)(\\s{0,1}|$|.*)"); // Nothing to be escaped here, right?
std::regex regexp_to_match(regexp_string);
smatch matchResult;
if (std::regex_match(cmd, matchResult, regexp_to_match)) {
if (matchResult.size() == 4) {
//OutputDebugStringA(matchResult[2].str().c_str());
auto wide = Utf8toWide(matchResult[2].str());
wmemcpy(g_proxy, wide.c_str(), wide.size());
g_configProxy.Parse(matchResult[2].str());
g_hasProxy = true;
}
}
else {
//未找到关键字
}
} else {
//另一个配置方案,暂时不使用
const wchar_t* lpPath = L".\\proxy.ini";
auto result = GetPrivateProfileStringW(L"Config", L"Proxy", L"", g_proxy, 512, lpPath);
g_hasProxy = result != 0;
}
return g_hasProxy;
}
BOOL APIENTRY InstallHook() {
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
DetourAttach((void**)&pMyGetEnvironmentVariableW, MyGetEnvironmentVariableW);
DetourAttach((void**)&pMyCreateProcessW, MyCreateProcessW);
DetourAttach((void**)&pMyLoadLibraryW, MyLoadLibraryW);
DetourAttach((void**)&pMyLoadLibraryExW, MyLoadLibraryExW);
DetourAttach((void**)&pMyGetModuleHandleW, MyGetModuleHandleW);
LONG ret = DetourTransactionCommit();
return ret == NO_ERROR;
}
BOOL APIENTRY UnInstallHook() {
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
DetourDetach((void**)&pMyGetEnvironmentVariableW, MyGetEnvironmentVariableW);
DetourDetach((void**)&pMyCreateProcessW, MyCreateProcessW);
DetourDetach((void**)&pMySocket, MySocket);
DetourDetach((void**)&pMyWSASocketW, MyWSASocketW);
DetourDetach((void**)&pMySend, MySend);
DetourDetach((void**)&pMyRecv, MyRecv);
DetourDetach((void**)&pMyGetModuleHandleW, MyGetModuleHandleW);
DetourDetach((void**)&pMyLoadLibraryW, MyLoadLibraryW);
DetourDetach((void**)&pMyLoadLibraryExW, MyLoadLibraryExW);
LONG ret = DetourTransactionCommit();
return ret == NO_ERROR;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 入口函数
BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, PVOID pvReserved)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
g_hModule = hModule;
DisableThreadLibraryCalls(hModule);
bool result = Load();
LoadProxyConfig();
InstallHook();
return result;
}
else if (dwReason == DLL_PROCESS_DETACH)
{
Free();
}
return TRUE;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#if !_WIN64
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoA(void)
{
__asm JMP g_GetFileVersionInfoA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoByHandle(void)
{
__asm JMP g_GetFileVersionInfoByHandle;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoExA(void)
{
__asm JMP g_GetFileVersionInfoExA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoExW(void)
{
__asm JMP g_GetFileVersionInfoExW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoSizeA(void)
{
__asm JMP g_GetFileVersionInfoSizeA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoSizeExA(void)
{
__asm JMP g_GetFileVersionInfoSizeExA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoSizeExW(void)
{
__asm JMP g_GetFileVersionInfoSizeExW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoSizeW(void)
{
__asm JMP g_GetFileVersionInfoSizeW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_GetFileVersionInfoW(void)
{
__asm JMP g_GetFileVersionInfoW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerFindFileA(void)
{
__asm JMP g_VerFindFileA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerFindFileW(void)
{
__asm JMP g_VerFindFileW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerInstallFileA(void)
{
__asm JMP g_VerInstallFileA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerInstallFileW(void)
{
__asm JMP g_VerInstallFileW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerLanguageNameA(void)
{
__asm JMP g_VerLanguageNameA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerLanguageNameW(void)
{
__asm JMP g_VerLanguageNameW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerQueryValueA(void)
{
__asm JMP g_VerQueryValueA;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 导出函数
ALCDECL AheadLib_VerQueryValueW(void)
{
__asm JMP g_VerQueryValueW;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#endif