ReactOS 0.4.15-dev-7788-g1ad9096
pdb.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: Test for dbghelp PDB functions
5 * COPYRIGHT: Copyright 2017-2019 Mark Jansen (mark.jansen@reactos.org)
6 */
7
8#include <ntstatus.h>
9#define WIN32_NO_STATUS
10#include <windows.h>
11#include <dbghelp.h>
12#include <cvconst.h> // SymTagXXX
13#include <stdio.h>
14#include <delayimp.h>
15
16#include "wine/test.h"
17
19
20#define ok_ulonglong(expression, result) \
21 do { \
22 ULONG64 _value = (expression); \
23 ULONG64 _result = (result); \
24 ok(_value == (result), "Wrong value for '%s', expected: " #result " (%s), got: %s\n", \
25 #expression, wine_dbgstr_longlong(_result), wine_dbgstr_longlong(_value)); \
26 } while (0)
27
28
29// data.c
31int extract_msvc_dll(char szFile[MAX_PATH], char szPath[MAX_PATH]);
32void cleanup_msvc_dll();
33
34static HANDLE proc()
35{
36 return GetCurrentProcess();
37}
38
39static BOOL init_sym_imp(BOOL fInvadeProcess, const char* file, int line)
40{
41 if (!SymInitialize(proc(), NULL, fInvadeProcess))
42 {
44 ok_(file, line)(0, "Failed to init: 0x%x\n", err);
45 return FALSE;
46 }
47 return TRUE;
48}
49
50static void deinit_sym()
51{
53}
54
55#define init_sym(fInvadeProcess) init_sym_imp(fInvadeProcess, __FILE__, __LINE__)
56
57#define INIT_PSYM(buff) do { \
58 memset((buff), 0, sizeof((buff))); \
59 ((PSYMBOL_INFO)(buff))->SizeOfStruct = sizeof(SYMBOL_INFO); \
60 ((PSYMBOL_INFO)(buff))->MaxNameLen = MAX_SYM_NAME; \
61} while (0)
62
63/* modified copy of function from apitests/apphelp/apitest.c */
67{
68 BOOL res = FALSE;
69 HRSRC hResInfo;
70 char *errmsg;
71 DWORD dwSize, errcode = 0;
72 UINT uLen;
73 HGLOBAL hResData = 0;
74 LPVOID pRes = NULL;
75 HLOCAL pResCopy = 0;
76 VS_FIXEDFILEINFO *lpFfi;
77
78 if (fileinfo == NULL)
79 {
80 errmsg = "fileinfo is NULL.\n";
81 goto cleanup;
82 }
83
85 if (hResInfo == 0)
86 {
87 errmsg = "FindResource failed";
89 goto cleanup;
90 }
91
92 dwSize = SizeofResource(mod, hResInfo);
93 if (dwSize == 0)
94 {
95 errmsg = "SizeofResource failed";
97 goto cleanup;
98 }
99
100 hResData = LoadResource(mod, hResInfo);
101 if (hResData == 0)
102 {
103 errmsg = "LoadResource failed";
105 goto cleanup;
106 }
107
108 pRes = LockResource(hResData);
109 if (pRes == NULL)
110 {
111 errmsg = "LockResource failed";
113 goto cleanup;
114 }
115
116 pResCopy = LocalAlloc(LMEM_FIXED, dwSize);
117 if (pResCopy == NULL)
118 {
119 errmsg = "LocalAlloc failed";
121 goto cleanup;
122 }
123
124 CopyMemory(pResCopy, pRes, dwSize);
125
126 if (VerQueryValueW(pResCopy, L"\\", (LPVOID*)&lpFfi, &uLen))
127 {
128 *fileinfo = *lpFfi;
129 res = TRUE;
130 }
131
132cleanup:
133 /* cleanup */
134 if (hResData != 0)
135 FreeResource(hResData);
136 if (pResCopy != NULL)
137 LocalFree(pResCopy);
138 /* if it was good */
139 if (res == TRUE)
140 return TRUE;
141 /* failure path */
142 if (errcode == 0)
143 trace("get_module_version - %s.\n", errmsg);
144 else
145 trace("get_module_version - %s (lasterror %d).\n", errmsg, errcode);
146 return FALSE;
147}
148
151{
154 HMODULE hDLL;
155 DWORD fileLen;
156 VS_FIXEDFILEINFO fileInfo;
157
159
160 /* get internal file version */
162 if (v == NULL)
163 return;
164
165 /* get module file version */
166 hDLL = GetModuleHandleW(L"dbghelp.dll");
167 if (hDLL == 0)
168 {
169 ok(FALSE, "Dbghelp.dll is not loaded!\n");
170 return;
171 }
172 if (!get_module_version(hDLL, &fileInfo))
173 memset(&fileInfo, 0, sizeof(fileInfo));
174 dbghelpFileVer = fileInfo;
175
176 /* get full file path */
177 fileLen = GetModuleFileNameW(hDLL, filenameW, MAX_PATH + 1);
178 if (fileLen == 0)
179 {
180 ok(FALSE, "GetModuleFileNameW for dbghelp.dll failed!\n");
181 return;
182 }
183
184 trace("Using %S\n", filenameW);
185 trace(" API-Version: %hu.%hu.%hu (%hu)\n",
186 v->MajorVersion, v->MinorVersion, v->Revision, v->Reserved);
187
188 trace(" Fileversion: %hu.%hu.%hu.%hu\n",
189 HIWORD(fileInfo.dwProductVersionMS),
190 LOWORD(fileInfo.dwProductVersionMS),
191 HIWORD(fileInfo.dwProductVersionLS),
192 LOWORD(fileInfo.dwProductVersionLS));
193}
194
195static
197
198static
200{
202 return FALSE;
203}
204
205/* A delay-load failure hook will be called when resolving a delay-load dependency (dll or function) fails */
206FARPROC WINAPI DliFailHook(unsigned dliNotify, PDelayLoadInfo pdli)
207{
208 /* Was the failure a function, and did we get info */
209 if (dliNotify == dliFailGetProc && pdli)
210 {
211 /* Is it our function? */
212 if (pdli->dlp.fImportByName && !strcmp(pdli->dlp.szProcName, "SymRegisterCallbackW64"))
213 {
214 /* Redirect execution to the stub */
216 }
217 }
218 /* This is not the function you are looking for, continue default behavior (throw exception) */
219 return NULL;
220}
221
222/* Maybe our dbghelp.dll is too old? */
224{
226 BOOL Ret;
227
228 memset(&ModuleInfo, 0, sizeof(ModuleInfo));
229 ModuleInfo.SizeOfStruct = sizeof(ModuleInfo);
231
232 return Ret && ModuleInfo.SymType == SymPdb;
233}
234
235
237{
238 BOOL Ret;
239 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME * sizeof(TCHAR)];
241
242 if (!supports_pdb(hProc, BaseAddress))
243 {
244 skip("dbghelp.dll too old or cannot enumerate symbols!\n");
245 }
246 else
247 {
249 Ret = SymFromName(hProc, "DllMain", pSymbol);
250 ok_int(Ret, TRUE);
252 ok_hex(pSymbol->Flags, 0);
253 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1010);
254 ok_hex(pSymbol->Tag, SymTagFunction);
255 ok_str(pSymbol->Name, "DllMain");
256
258 Ret = SymFromName(hProc, "_DllMain@12", pSymbol);
259 ok_int(Ret, TRUE);
261 ok_hex(pSymbol->Flags, 0x400000); // ??
262 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1010);
263 ok_hex(pSymbol->Tag, SymTagPublicSymbol);
264 ok_str(pSymbol->Name, "_DllMain@12");
265
267 Ret = SymFromName(hProc, "FfsChkdsk", pSymbol);
268 ok_int(Ret, TRUE);
270 ok_hex(pSymbol->Flags, 0);
271 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1040);
272 ok_hex(pSymbol->Tag, SymTagFunction);
273 ok_str(pSymbol->Name, "FfsChkdsk");
274
276 Ret = SymFromName(hProc, "_FfsChkdsk@24", pSymbol);
277 ok_int(Ret, TRUE);
279 ok_hex(pSymbol->Flags, 0x400000); // ??
280 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1040);
281 ok_hex(pSymbol->Tag, SymTagPublicSymbol);
282 ok_str(pSymbol->Name, "_FfsChkdsk@24");
283
285 Ret = SymFromName(hProc, "FfsFormat", pSymbol);
286 ok_int(Ret, TRUE);
288 ok_hex(pSymbol->Flags, 0);
289 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1070);
290 ok_hex(pSymbol->Tag, SymTagFunction);
291 ok_str(pSymbol->Name, "FfsFormat");
292
294 Ret = SymFromName(hProc, "_FfsFormat@24", pSymbol);
295 ok_int(Ret, TRUE);
297 ok_hex(pSymbol->Flags, 0x400000); // ??
298 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1070);
299 ok_hex(pSymbol->Tag, SymTagPublicSymbol);
300 ok_str(pSymbol->Name, "_FfsFormat@24");
301 }
302}
303
305{
306 BOOL Ret;
307 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME * sizeof(TCHAR)];
309
310 DWORD64 Displacement;
311 DWORD dwErr;
312
313 if (!supports_pdb(hProc, BaseAddress))
314 {
315 skip("dbghelp.dll too old or cannot enumerate symbols!\n");
316 }
317 else
318 {
319
320 /* No address found before load address of module */
321 Displacement = 0;
323 Ret = SymFromAddr(hProc, BaseAddress -1, &Displacement, pSymbol);
325 ok_int(Ret, FALSE);
327
328 /* Right at the start of the module is recognized as the first symbol found */
329 Displacement = 0;
331 Ret = SymFromAddr(hProc, BaseAddress, &Displacement, pSymbol);
332 ok_int(Ret, TRUE);
333 ok_ulonglong(Displacement, 0xffffffffffffffff);
335 ok_hex(pSymbol->Flags, 0);
336 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1010);
337 ok_hex(pSymbol->Tag, SymTagFunction);
338 ok_str(pSymbol->Name, "DllMain");
339
340 /* The actual first instruction of the function */
341 Displacement = 0;
343 Ret = SymFromAddr(hProc, BaseAddress + 0x1010, &Displacement, pSymbol);
344 ok_int(Ret, TRUE);
345 ok_ulonglong(Displacement, 0);
347 ok_hex(pSymbol->Flags, 0);
348 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1010);
349 ok_hex(pSymbol->Tag, SymTagFunction);
350 ok_str(pSymbol->Name, "DllMain");
351
352 /* The last instruction in the function */
353 Displacement = 0;
355 Ret = SymFromAddr(hProc, BaseAddress + 0x102D, &Displacement, pSymbol);
356 ok_int(Ret, TRUE);
357 ok_ulonglong(Displacement, 0x1d);
359 ok_hex(pSymbol->Flags, 0);
360 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1010);
361 ok_hex(pSymbol->Tag, SymTagFunction);
362 ok_str(pSymbol->Name, "DllMain");
363
364 /* The padding below the function */
365 Displacement = 0;
367 Ret = SymFromAddr(hProc, BaseAddress + 0x102E, &Displacement, pSymbol);
368 ok_int(Ret, TRUE);
369 ok_ulonglong(Displacement, 0x1e);
371 ok_hex(pSymbol->Flags, 0);
372 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1010);
373 ok_hex(pSymbol->Tag, SymTagFunction);
374 ok_str(pSymbol->Name, "DllMain");
375
376 /* One byte before the next function */
377 Displacement = 0;
379 Ret = SymFromAddr(hProc, BaseAddress + 0x103f, &Displacement, pSymbol);
380 ok_int(Ret, TRUE);
381 ok_ulonglong(Displacement, 0x2f);
383 ok_hex(pSymbol->Flags, 0);
384 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1010);
385 ok_hex(pSymbol->Tag, SymTagFunction);
386 ok_str(pSymbol->Name, "DllMain");
387
388 /* First byte of the next function */
389 Displacement = 0;
391 Ret = SymFromAddr(hProc, BaseAddress + 0x1040, &Displacement, pSymbol);
392 ok_int(Ret, TRUE);
393 ok_ulonglong(Displacement, 0);
395 ok_hex(pSymbol->Flags, 0);
396 ok_ulonglong(pSymbol->Address, BaseAddress + 0x1040);
397 ok_hex(pSymbol->Tag, SymTagFunction);
398 ok_str(pSymbol->Name, "FfsChkdsk");
399
400 /* .idata */
401 Displacement = 0;
403 Ret = SymFromAddr(hProc, BaseAddress + 0x2000, &Displacement, pSymbol);
404 ok_int(Ret, TRUE);
405 ok_ulonglong(Displacement, 0);
407 ok_hex(pSymbol->Flags, 0);
408 ok_ulonglong(pSymbol->Address, BaseAddress + 0x2000);
409 ok_hex(pSymbol->Tag, SymTagPublicSymbol);
410 ok_str(pSymbol->Name, "__imp__DbgPrint");
411 }
412}
413
414typedef struct _test_context
415{
419
420static struct _test_data {
424 const char* Name;
425} test_data[] = {
426 /* TODO: Order is based on magic, should find entries based on name, and mark as 'seen' */
427 { 0x1070, 36, SymTagFunction, "FfsFormat" },
428 { 0x1010, 32, SymTagFunction, "DllMain" },
429 { 0x1040, 36, SymTagFunction, "FfsChkdsk" },
430
431 { 0x2100, 0, SymTagPublicSymbol, "__IMPORT_DESCRIPTOR_ntdll" },
432 { 0x109a, 0, SymTagPublicSymbol, "_DbgPrint" },
433 { 0x2004, 0, SymTagPublicSymbol, "\x7fntdll_NULL_THUNK_DATA" },
434 { 0x2000, 0, SymTagPublicSymbol, "__imp__DbgPrint" },
435 { 0x2114, 0, SymTagPublicSymbol, "__NULL_IMPORT_DESCRIPTOR" },
437
438static BOOL CALLBACK EnumSymProc(PSYMBOL_INFO pSymInfo, ULONG SymbolSize, PVOID UserContext)
439{
440 test_context* ctx = UserContext;
441
442 if (ctx->Index < ARRAYSIZE(test_data))
443 {
444 ok_ulonglong(pSymInfo->ModBase, ctx->BaseAddress);
445 ok_ulonglong(pSymInfo->Address, ctx->BaseAddress + test_data[ctx->Index].AddressOffset);
446 ok_hex(pSymInfo->Tag, test_data[ctx->Index].Tag);
447 ok_str(pSymInfo->Name, test_data[ctx->Index].Name);
448
449 ctx->Index++;
450 }
451 else
452 {
453 ok(0, "Out of bounds (%lu), max is: %i!\n", ctx->Index, ARRAYSIZE(test_data));
454 }
455
456 return TRUE;
457}
458
460{
461 BOOL Ret;
463
464 ctx.Index = 0;
465 ctx.BaseAddress = BaseAddress;
466
467 if (!supports_pdb(hProc, ctx.BaseAddress))
468 {
469 skip("dbghelp.dll too old or cannot enumerate symbols!\n");
470 }
471 else
472 {
473 Ret = SymEnumSymbols(hProc, ctx.BaseAddress, NULL, EnumSymProc, &ctx);
474 ok_int(Ret, TRUE);
475 ok_int(ctx.Index, ARRAYSIZE(test_data));
476 }
477}
478
480{
484
490 { CBA_READ_MEMORY },
494
497 ULONG ActionCode,
499 ULONG64 UserContext)
500{
502 ctx = (symregcallback_context*)(ULONG_PTR)UserContext;
503
504 if (ctx->idx > sizeof(symregcallback_test_data))
505 {
506 ok(FALSE, "SymRegisterCallback64Proc: Too many calls.\n");
507 }
508 else
509 {
510 ok(ActionCode == symregcallback_test_data[ctx->idx].ActionCode,
511 "ActionCode (idx %u) expected %u, got %u\n",
512 ctx->idx, symregcallback_test_data[ctx->idx].ActionCode, ActionCode);
513 }
514 ctx->idx++;
515
516 return FALSE;
517}
518
519static void test_SymRegCallback(HANDLE hProc, const char* szModuleName, BOOL testANSI)
520{
521 BOOL Ret;
522 DWORD dwErr;
525
526 ctx.idx = 0;
527 ctx.isANSI = testANSI;
528
529 if (!init_sym(FALSE))
530 return;
531
532 if (testANSI)
533 {
535 }
536 else
537 {
540 {
541 skip("SymRegisterCallbackW64 not found in dbghelp.dll\n");
542 return;
543 }
544 }
545
546 ok_int(Ret, TRUE);
547 if (!Ret)
548 return;
549
551 BaseAddress = SymLoadModule64(hProc, NULL, szModuleName, NULL, 0x600000, 0);
553
554 ok_ulonglong(BaseAddress, 0x600000);
556
557 /* this is what we want to test ... we expect 5 calls */
558 ok_int(ctx.idx, 5);
559
560 deinit_sym();
561}
562
564{
565 char szDllName[MAX_PATH];
566 char szDllPath[MAX_PATH], szOldDir[MAX_PATH];
567 HMODULE hMod;
570
573 //Options |= SYMOPT_DEBUG;
575
576 if (!extract_msvc_dll(szDllName, szDllPath))
577 {
578 ok(0, "Failed extracting files\n");
579 return;
580 }
581
583
584 /* Register the failure hook using the magic name '__pfnDliFailureHook2'. */
586
587 if (init_sym(FALSE))
588 {
590 BaseAddress = SymLoadModule64(proc(), NULL, szDllName, NULL, 0x600000, 0);
592
593 ok_ulonglong(BaseAddress, 0x600000);
595
596 if (BaseAddress == 0x600000)
597 {
598 trace("Module loaded by SymLoadModule64\n");
602 }
603
604 deinit_sym();
605 }
606
607 /* This needs to load the module by itself */
610
611 hMod = LoadLibraryA(szDllName);
612 if (hMod)
613 {
615 /* Make sure we can find the pdb */
616 GetCurrentDirectoryA(_countof(szOldDir), szOldDir);
617 SetCurrentDirectoryA(szDllPath);
618 /* Invade process */
619 if (init_sym(TRUE))
620 {
621 trace("Module loaded by LoadLibraryA\n");
625
626 deinit_sym();
627 }
628 /* Restore working dir */
629 SetCurrentDirectoryA(szOldDir);
630
631 FreeLibrary(hMod);
632 }
633
635}
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469
#define ok_hex(expression, result)
Definition: atltest.h:94
#define trace
Definition: atltest.h:70
#define ok_str(x, y)
Definition: atltest.h:127
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
#define START_TEST(x)
Definition: atltest.h:75
#define ok_(x1, x2)
Definition: atltest.h:61
#define ok_int(expression, result)
Definition: atltest.h:134
_In_ ULONG _Out_writes_bytes_opt_ InformationLength PAUX_MODULE_EXTENDED_INFO ModuleInfo
Definition: aux_klib.h:65
DWORD dwErr
Definition: service.c:36
EXPORT int errmsg(char *msg, va_alist)
Definition: comerr.c:192
int errcode
Definition: crtdefs.h:373
static PDB pdb
Definition: db.cpp:172
LPAPI_VERSION WINAPI ImagehlpApiVersion(void)
Definition: dbghelp.c:837
@ dliFailGetProc
Definition: delayimp.h:38
FARPROC(WINAPI * PfnDliHook)(unsigned, PDelayLoadInfo)
Definition: delayimp.h:77
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define ARRAYSIZE(array)
Definition: filtermapper.c:47
static const WCHAR szDllName[]
Definition: sip.c:61
BOOL WINAPI SymFromAddr(HANDLE hProcess, DWORD64 Address, DWORD64 *Displacement, PSYMBOL_INFO Symbol)
Definition: symbol.c:1263
struct _SYMBOL_INFO * PSYMBOL_INFO
#define MAX_SYM_NAME
Definition: compat.h:975
#define ERROR_MOD_NOT_FOUND
Definition: compat.h:104
BOOL WINAPI SymCleanup(HANDLE hProcess)
Definition: dbghelp.c:557
BOOL WINAPI SymInitialize(HANDLE hProcess, PCSTR UserSearchPath, BOOL fInvadeProcess)
Definition: dbghelp.c:534
@ SymPdb
Definition: compat.h:1059
int(* FARPROC)()
Definition: compat.h:36
#define SetLastError(x)
Definition: compat.h:752
#define CBA_DEFERRED_SYMBOL_LOAD_COMPLETE
Definition: compat.h:977
#define FreeLibrary(x)
Definition: compat.h:748
#define GetCurrentProcess()
Definition: compat.h:759
struct _SYMBOL_INFO SYMBOL_INFO
@ SymTagFunction
Definition: compat.h:1586
@ SymTagPublicSymbol
Definition: compat.h:1591
#define CBA_DEFERRED_SYMBOL_LOAD_CANCEL
Definition: compat.h:982
BOOL(CALLBACK * PSYMBOL_REGISTERED_CALLBACK64)(HANDLE, ULONG, ULONG64, ULONG64)
Definition: compat.h:1182
#define MAX_PATH
Definition: compat.h:34
#define SYMOPT_UNDNAME
Definition: compat.h:988
#define CBA_READ_MEMORY
Definition: compat.h:981
#define CBA_DEFERRED_SYMBOL_LOAD_PARTIAL
Definition: compat.h:985
#define CALLBACK
Definition: compat.h:35
#define CBA_DEFERRED_SYMBOL_LOAD_START
Definition: compat.h:976
DWORD WINAPI SymSetOptions(DWORD opts)
Definition: dbghelp.c:585
BOOL WINAPI SymRegisterCallbackW64(HANDLE hProcess, PSYMBOL_REGISTERED_CALLBACK64 CallbackFunction, ULONG64 UserContext)
Definition: dbghelp.c:822
DWORD WINAPI SymGetOptions(void)
Definition: dbghelp.c:600
BOOL WINAPI SymRegisterCallback64(HANDLE hProcess, PSYMBOL_REGISTERED_CALLBACK64 CallbackFunction, ULONG64 UserContext)
Definition: dbghelp.c:810
DWORD64 WINAPI SymLoadModule64(HANDLE hProcess, HANDLE hFile, PCSTR ImageName, PCSTR ModuleName, DWORD64 BaseOfDll, DWORD SizeOfDll)
Definition: module.c:878
BOOL WINAPI SymGetModuleInfo64(HANDLE hProcess, DWORD64 dwAddr, PIMAGEHLP_MODULE64 ModuleInfo)
Definition: module.c:1219
static void cleanup(void)
Definition: main.c:1335
DWORD WINAPI GetModuleFileNameW(HINSTANCE hModule, LPWSTR lpFilename, DWORD nSize)
Definition: loader.c:600
HMODULE WINAPI GetModuleHandleW(LPCWSTR lpModuleName)
Definition: loader.c:838
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
DWORD WINAPI GetCurrentDirectoryA(IN DWORD nBufferLength, OUT LPSTR lpBuffer)
Definition: path.c:2146
BOOL WINAPI SetCurrentDirectoryA(IN LPCSTR lpPathName)
Definition: path.c:2206
BOOL WINAPI FreeResource(HGLOBAL handle)
Definition: res.c:559
DWORD WINAPI SizeofResource(HINSTANCE hModule, HRSRC hRsrc)
Definition: res.c:568
LPVOID WINAPI LockResource(HGLOBAL handle)
Definition: res.c:550
HGLOBAL WINAPI LoadResource(HINSTANCE hModule, HRSRC hRsrc)
Definition: res.c:532
BOOL WINAPI VerQueryValueW(LPCVOID pBlock, LPCWSTR lpSubBlock, LPVOID *lplpBuffer, PUINT puLen)
Definition: version.c:1049
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
const GLdouble * v
Definition: gl.h:2040
GLuint res
Definition: glext.h:9613
GLuint buffer
Definition: glext.h:5915
HLOCAL NTAPI LocalAlloc(UINT uFlags, SIZE_T dwBytes)
Definition: heapmem.c:1390
HLOCAL NTAPI LocalFree(HLOCAL hMem)
Definition: heapmem.c:1594
static int mod
Definition: i386-dis.c:1288
_In_ BOOL _In_ HANDLE hProcess
Definition: mapping.h:71
unsigned __int64 ULONG64
Definition: imports.h:198
LPCWSTR szPath
Definition: env.c:37
LPCWSTR LPCWSTR szModuleName
Definition: env.c:37
PSDBQUERYRESULT_VISTA PVOID DWORD * dwSize
Definition: env.c:56
static const WCHAR filenameW[]
Definition: amstream.c:41
#define _Out_
Definition: ms_sal.h:345
#define _In_
Definition: ms_sal.h:308
unsigned int UINT
Definition: ndis.h:50
_In_ HANDLE _Outptr_result_bytebuffer_ ViewSize PVOID * BaseAddress
Definition: mmfuncs.h:404
#define L(x)
Definition: ntvdm.h:50
#define VS_VERSION_INFO
PfnDliHook __pfnDliFailureHook2
Definition: delayimp.h:81
#define INIT_PSYM(buff)
Definition: pdb.c:57
int extract_msvc_dll(char szFile[MAX_PATH], char szPath[MAX_PATH])
Definition: data.c:72
static BOOL WINAPI SymRegisterCallbackW64_Stub(HANDLE hProcess, PSYMBOL_REGISTERED_CALLBACK64 CallbackFunction, ULONG64 UserContext)
Definition: pdb.c:199
static void test_SymEnumSymbols(HANDLE hProc, DWORD64 BaseAddress)
Definition: pdb.c:459
static BOOL CALLBACK SymRegisterCallback64Proc(HANDLE hProcess, ULONG ActionCode, ULONG64 CallbackData, ULONG64 UserContext)
Definition: pdb.c:495
static BOOL CALLBACK EnumSymProc(PSYMBOL_INFO pSymInfo, ULONG SymbolSize, PVOID UserContext)
Definition: pdb.c:438
static BOOL init_sym_imp(BOOL fInvadeProcess, const char *file, int line)
Definition: pdb.c:39
static HANDLE proc()
Definition: pdb.c:34
struct _test_context test_context
static VS_FIXEDFILEINFO dbghelpFileVer
Definition: pdb.c:149
void create_compressed_files()
#define init_sym(fInvadeProcess)
Definition: pdb.c:55
static void deinit_sym()
Definition: pdb.c:50
struct _symregcallback_context symregcallback_context
void cleanup_msvc_dll()
Definition: data.c:90
FARPROC WINAPI DliFailHook(unsigned dliNotify, PDelayLoadInfo pdli)
Definition: pdb.c:206
#define ok_ulonglong(expression, result)
Definition: pdb.c:20
static void test_SymFromAddr(HANDLE hProc, DWORD64 BaseAddress)
Definition: pdb.c:304
static void init_dbghelp_version()
Definition: pdb.c:150
static int g_SymRegisterCallbackW64NotFound
Definition: pdb.c:196
BOOL get_module_version(_In_ HMODULE mod, _Out_ VS_FIXEDFILEINFO *fileinfo)
Definition: pdb.c:64
static void test_SymRegCallback(HANDLE hProc, const char *szModuleName, BOOL testANSI)
Definition: pdb.c:519
static BOOL supports_pdb(HANDLE hProc, DWORD64 BaseAddress)
Definition: pdb.c:223
static struct _symregcallback_test_data symregcallback_test_data[]
static void test_SymFromName(HANDLE hProc, DWORD64 BaseAddress)
Definition: pdb.c:236
#define LOWORD(l)
Definition: pedump.c:82
#define RT_VERSION
Definition: pedump.c:376
#define err(...)
#define memset(x, y, z)
Definition: compat.h:39
#define _countof(array)
Definition: sndvol32.h:68
DelayLoadProc dlp
Definition: delayimp.h:71
BOOL fImportByName
Definition: delayimp.h:57
LPCSTR szProcName
Definition: delayimp.h:60
ULONG64 ModBase
Definition: compat.h:1043
ULONG Tag
Definition: compat.h:1049
CHAR Name[1]
Definition: compat.h:1052
ULONG64 Address
Definition: compat.h:1046
ULONG Flags
Definition: compat.h:1044
SIZE_T Index
Definition: pdb.c:417
DWORD64 BaseAddress
Definition: pdb.c:416
ULONG Tag
Definition: pdb.c:423
ULONG Size
Definition: pdb.c:422
const char * Name
Definition: pdb.c:424
DWORD64 AddressOffset
Definition: pdb.c:421
Definition: fci.c:127
Definition: parser.c:49
DWORD dwProductVersionLS
Definition: compat.h:905
DWORD dwProductVersionMS
Definition: compat.h:904
BOOL WINAPI SymEnumSymbols(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask, PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback, PVOID UserContext)
Definition: symbol.c:1147
BOOL WINAPI SymFromName(HANDLE hProcess, PCSTR Name, PSYMBOL_INFO Symbol)
Definition: symbol.c:1392
uint32_t DWORD_PTR
Definition: typedefs.h:65
uint64_t DWORD64
Definition: typedefs.h:67
ULONG_PTR SIZE_T
Definition: typedefs.h:80
uint32_t ULONG_PTR
Definition: typedefs.h:65
uint32_t ULONG
Definition: typedefs.h:59
#define HIWORD(l)
Definition: typedefs.h:247
_In_ PWDFDEVICE_INIT _In_ PWDF_REMOVE_LOCK_OPTIONS Options
Definition: wdfdevice.h:3534
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define CopyMemory
Definition: winbase.h:1710
#define FindResource
Definition: winbase.h:3728
#define LMEM_FIXED
Definition: winbase.h:368
#define WINAPI
Definition: msvc.h:6
#define MAKEINTRESOURCE
Definition: winuser.h:591
_In_ PCALLBACK_FUNCTION CallbackFunction
Definition: exfuncs.h:1034
char TCHAR
Definition: xmlstorage.h:189
__wchar_t WCHAR
Definition: xmlstorage.h:180