2 * File module.c - module handling for the wine debugger
4 * Copyright (C) 1993, Eric Youngdale.
5 * 2000-2007, Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "dbghelp_private.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp
);
35 const WCHAR S_ElfW
[] = {'<','e','l','f','>','\0'};
36 const WCHAR S_WineLoaderW
[] = {'<','w','i','n','e','-','l','o','a','d','e','r','>','\0'};
37 static const WCHAR S_DotSoW
[] = {'.','s','o','\0'};
38 static const WCHAR S_DotPdbW
[] = {'.','p','d','b','\0'};
39 static const WCHAR S_DotDbgW
[] = {'.','d','b','g','\0'};
40 const WCHAR S_WinePThreadW
[] = {'w','i','n','e','-','p','t','h','r','e','a','d','\0'};
41 const WCHAR S_WineKThreadW
[] = {'w','i','n','e','-','k','t','h','r','e','a','d','\0'};
42 const WCHAR S_SlashW
[] = {'/','\0'};
44 static const WCHAR S_AcmW
[] = {'.','a','c','m','\0'};
45 static const WCHAR S_DllW
[] = {'.','d','l','l','\0'};
46 static const WCHAR S_DrvW
[] = {'.','d','r','v','\0'};
47 static const WCHAR S_ExeW
[] = {'.','e','x','e','\0'};
48 static const WCHAR S_OcxW
[] = {'.','o','c','x','\0'};
49 static const WCHAR S_VxdW
[] = {'.','v','x','d','\0'};
50 static const WCHAR
* const ext
[] = {S_AcmW
, S_DllW
, S_DrvW
, S_ExeW
, S_OcxW
, S_VxdW
, NULL
};
52 static int match_ext(const WCHAR
* ptr
, size_t len
)
54 const WCHAR
* const *e
;
57 for (e
= ext
; *e
; e
++)
60 if (l
>= len
) return FALSE
;
61 if (strncmpiW(&ptr
[len
- l
], *e
, l
)) continue;
67 static const WCHAR
* get_filename(const WCHAR
* name
, const WCHAR
* endptr
)
71 if (!endptr
) endptr
= name
+ strlenW(name
);
72 for (ptr
= endptr
- 1; ptr
>= name
; ptr
--)
74 if (*ptr
== '/' || *ptr
== '\\') break;
79 static void module_fill_module(const WCHAR
* in
, WCHAR
* out
, size_t size
)
81 const WCHAR
*ptr
, *endptr
;
84 ptr
= get_filename(in
, endptr
= in
+ strlenW(in
));
85 len
= min(endptr
- ptr
, size
- 1);
86 memcpy(out
, ptr
, len
* sizeof(WCHAR
));
88 if (len
> 4 && (l
= match_ext(out
, len
)))
91 (!strcmpiW(out
+ len
- 12, S_WinePThreadW
) ||
92 !strcmpiW(out
+ len
- 12, S_WineKThreadW
)))
93 lstrcpynW(out
, S_WineLoaderW
, size
);
96 if (len
> 3 && !strcmpiW(&out
[len
- 3], S_DotSoW
) &&
97 (l
= match_ext(out
, len
- 3)))
98 strcpyW(&out
[len
- l
- 3], S_ElfW
);
100 while ((*out
= tolowerW(*out
))) out
++;
103 void module_set_module(struct module
* module
, const WCHAR
* name
)
105 module_fill_module(name
, module
->module
.ModuleName
, sizeof(module
->module
.ModuleName
));
106 WideCharToMultiByte(CP_ACP
, 0, module
->module
.ModuleName
, -1,
107 module
->module_name
, sizeof(module
->module_name
),
111 static const char* get_module_type(enum module_type type
, BOOL
virtual)
115 case DMT_ELF
: return virtual ? "Virtual ELF" : "ELF";
116 case DMT_PE
: return virtual ? "Virtual PE" : "PE";
117 default: return "---";
121 /***********************************************************************
122 * Creates and links a new module to a process
124 struct module
* module_new(struct process
* pcs
, const WCHAR
* name
,
125 enum module_type type
, BOOL
virtual,
126 unsigned long mod_addr
, unsigned long size
,
127 unsigned long stamp
, unsigned long checksum
)
129 struct module
* module
;
131 assert(type
== DMT_ELF
|| type
== DMT_PE
);
132 if (!(module
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*module
))))
135 module
->next
= pcs
->lmodules
;
136 pcs
->lmodules
= module
;
138 TRACE("=> %s %08lx-%08lx %s\n",
139 get_module_type(type
, virtual), mod_addr
, mod_addr
+ size
,
142 pool_init(&module
->pool
, 65536);
144 module
->module
.SizeOfStruct
= sizeof(module
->module
);
145 module
->module
.BaseOfImage
= mod_addr
;
146 module
->module
.ImageSize
= size
;
147 module_set_module(module
, name
);
148 module
->module
.ImageName
[0] = '\0';
149 lstrcpynW(module
->module
.LoadedImageName
, name
, sizeof(module
->module
.LoadedImageName
) / sizeof(WCHAR
));
150 module
->module
.SymType
= SymNone
;
151 module
->module
.NumSyms
= 0;
152 module
->module
.TimeDateStamp
= stamp
;
153 module
->module
.CheckSum
= checksum
;
155 memset(module
->module
.LoadedPdbName
, 0, sizeof(module
->module
.CVData
));
156 module
->module
.CVSig
= 0;
157 memset(module
->module
.CVData
, 0, sizeof(module
->module
.CVData
));
158 module
->module
.PdbSig
= 0;
159 memset(&module
->module
.PdbSig70
, 0, sizeof(module
->module
.PdbSig70
));
160 module
->module
.PdbAge
= 0;
161 module
->module
.PdbUnmatched
= FALSE
;
162 module
->module
.DbgUnmatched
= FALSE
;
163 module
->module
.LineNumbers
= FALSE
;
164 module
->module
.GlobalSymbols
= FALSE
;
165 module
->module
.TypeInfo
= FALSE
;
166 module
->module
.SourceIndexed
= FALSE
;
167 module
->module
.Publics
= FALSE
;
170 module
->is_virtual
= virtual ? TRUE
: FALSE
;
171 module
->sortlist_valid
= FALSE
;
172 module
->addr_sorttab
= NULL
;
173 /* FIXME: this seems a bit too high (on a per module basis)
174 * need some statistics about this
176 hash_table_init(&module
->pool
, &module
->ht_symbols
, 4096);
177 hash_table_init(&module
->pool
, &module
->ht_types
, 4096);
178 vector_init(&module
->vtypes
, sizeof(struct symt
*), 32);
180 module
->sources_used
= 0;
181 module
->sources_alloc
= 0;
187 /***********************************************************************
188 * module_find_by_name
191 struct module
* module_find_by_name(const struct process
* pcs
, const WCHAR
* name
)
193 struct module
* module
;
195 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
197 if (!strcmpiW(name
, module
->module
.ModuleName
)) return module
;
199 SetLastError(ERROR_INVALID_NAME
);
203 struct module
* module_find_by_nameA(const struct process
* pcs
, const char* name
)
205 WCHAR wname
[MAX_PATH
];
207 MultiByteToWideChar(CP_ACP
, 0, name
, -1, wname
, sizeof(wname
) / sizeof(WCHAR
));
208 return module_find_by_name(pcs
, wname
);
211 /***********************************************************************
212 * module_is_already_loaded
215 struct module
* module_is_already_loaded(const struct process
* pcs
, const WCHAR
* name
)
217 struct module
* module
;
218 const WCHAR
* filename
;
220 /* first compare the loaded image name... */
221 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
223 if (!strcmpiW(name
, module
->module
.LoadedImageName
))
226 /* then compare the standard filenames (without the path) ... */
227 filename
= get_filename(name
, NULL
);
228 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
230 if (!strcmpiW(filename
, get_filename(module
->module
.LoadedImageName
, NULL
)))
233 SetLastError(ERROR_INVALID_NAME
);
237 /***********************************************************************
238 * module_get_container
241 struct module
* module_get_container(const struct process
* pcs
,
242 const struct module
* inner
)
244 struct module
* module
;
246 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
248 if (module
!= inner
&&
249 module
->module
.BaseOfImage
<= inner
->module
.BaseOfImage
&&
250 module
->module
.BaseOfImage
+ module
->module
.ImageSize
>=
251 inner
->module
.BaseOfImage
+ inner
->module
.ImageSize
)
257 /***********************************************************************
258 * module_get_containee
261 struct module
* module_get_containee(const struct process
* pcs
,
262 const struct module
* outter
)
264 struct module
* module
;
266 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
268 if (module
!= outter
&&
269 outter
->module
.BaseOfImage
<= module
->module
.BaseOfImage
&&
270 outter
->module
.BaseOfImage
+ outter
->module
.ImageSize
>=
271 module
->module
.BaseOfImage
+ module
->module
.ImageSize
)
277 /******************************************************************
280 * get the debug information from a module:
281 * - if the module's type is deferred, then force loading of debug info (and return
283 * - if the module has no debug info and has an ELF container, then return the ELF
284 * container (and also force the ELF container's debug info loading if deferred)
285 * - otherwise return the module itself if it has some debug info
287 BOOL
module_get_debug(struct module_pair
* pair
)
289 IMAGEHLP_DEFERRED_SYMBOL_LOADW64 idslW64
;
291 if (!pair
->requested
) return FALSE
;
292 /* for a PE builtin, always get info from container */
293 if (!(pair
->effective
= module_get_container(pair
->pcs
, pair
->requested
)))
294 pair
->effective
= pair
->requested
;
295 /* if deferred, force loading */
296 if (pair
->effective
->module
.SymType
== SymDeferred
)
300 if (pair
->effective
->is_virtual
) ret
= FALSE
;
301 else switch (pair
->effective
->type
)
304 ret
= elf_load_debug_info(pair
->effective
, NULL
);
307 idslW64
.SizeOfStruct
= sizeof(idslW64
);
308 idslW64
.BaseOfImage
= pair
->effective
->module
.BaseOfImage
;
309 idslW64
.CheckSum
= pair
->effective
->module
.CheckSum
;
310 idslW64
.TimeDateStamp
= pair
->effective
->module
.TimeDateStamp
;
311 memcpy(idslW64
.FileName
, pair
->effective
->module
.ImageName
,
312 sizeof(pair
->effective
->module
.ImageName
));
313 idslW64
.Reparse
= FALSE
;
314 idslW64
.hFile
= INVALID_HANDLE_VALUE
;
316 pcs_callback(pair
->pcs
, CBA_DEFERRED_SYMBOL_LOAD_START
, &idslW64
);
317 ret
= pe_load_debug_info(pair
->pcs
, pair
->effective
);
318 pcs_callback(pair
->pcs
,
319 ret
? CBA_DEFERRED_SYMBOL_LOAD_COMPLETE
: CBA_DEFERRED_SYMBOL_LOAD_FAILURE
,
326 if (!ret
) pair
->effective
->module
.SymType
= SymNone
;
327 assert(pair
->effective
->module
.SymType
!= SymDeferred
);
328 pair
->effective
->module
.NumSyms
= pair
->effective
->ht_symbols
.num_elts
;
330 return pair
->effective
->module
.SymType
!= SymNone
;
333 /***********************************************************************
334 * module_find_by_addr
336 * either the addr where module is loaded, or any address inside the
339 struct module
* module_find_by_addr(const struct process
* pcs
, unsigned long addr
,
340 enum module_type type
)
342 struct module
* module
;
344 if (type
== DMT_UNKNOWN
)
346 if ((module
= module_find_by_addr(pcs
, addr
, DMT_PE
)) ||
347 (module
= module_find_by_addr(pcs
, addr
, DMT_ELF
)))
352 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
354 if (type
== module
->type
&& addr
>= module
->module
.BaseOfImage
&&
355 addr
< module
->module
.BaseOfImage
+ module
->module
.ImageSize
)
359 SetLastError(ERROR_INVALID_ADDRESS
);
363 /******************************************************************
364 * module_is_elf_container_loaded
366 * checks whether the ELF container, for a (supposed) PE builtin is
369 static BOOL
module_is_elf_container_loaded(const struct process
* pcs
,
370 const WCHAR
* ImageName
, DWORD base
)
373 struct module
* module
;
374 PCWSTR filename
, modname
;
376 if (!base
) return FALSE
;
377 filename
= get_filename(ImageName
, NULL
);
378 len
= strlenW(filename
);
380 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
382 if (module
->type
== DMT_ELF
&&
383 base
>= module
->module
.BaseOfImage
&&
384 base
< module
->module
.BaseOfImage
+ module
->module
.ImageSize
)
386 modname
= get_filename(module
->module
.LoadedImageName
, NULL
);
387 if (!strncmpiW(modname
, filename
, len
) &&
388 !memcmp(modname
+ len
, S_DotSoW
, 3 * sizeof(WCHAR
)))
394 /* likely a native PE module */
395 WARN("Couldn't find container for %s\n", debugstr_w(ImageName
));
399 /******************************************************************
400 * module_get_type_by_name
402 * Guesses a filename type from its extension
404 enum module_type
module_get_type_by_name(const WCHAR
* name
)
406 int len
= strlenW(name
);
408 /* Skip all version extensions (.[digits]) regex: "(\.\d+)*$" */
413 while (i
&& isdigit(name
[i
- 1])) i
--;
415 if (i
&& name
[i
- 1] == '.')
421 /* check for terminating .so or .so.[digit] */
422 if (len
> 3 && !memcmp(name
+ len
- 3, S_DotSoW
, 3))
425 if (len
> 4 && !strncmpiW(name
+ len
- 4, S_DotPdbW
, 4))
428 if (len
> 4 && !strncmpiW(name
+ len
- 4, S_DotDbgW
, 4))
431 /* wine-[kp]thread is also an ELF module */
432 if (((len
> 12 && name
[len
- 13] == '/') || len
== 12) &&
433 (!strncmpiW(name
+ len
- 12, S_WinePThreadW
, 12) ||
434 !strncmpiW(name
+ len
- 12, S_WineKThreadW
, 12)))
441 /***********************************************************************
442 * SymLoadModule (DBGHELP.@)
444 DWORD WINAPI
SymLoadModule(HANDLE hProcess
, HANDLE hFile
, PCSTR ImageName
,
445 PCSTR ModuleName
, DWORD BaseOfDll
, DWORD SizeOfDll
)
447 return SymLoadModuleEx(hProcess
, hFile
, ImageName
, ModuleName
, BaseOfDll
,
451 /***********************************************************************
452 * SymLoadModuleEx (DBGHELP.@)
454 DWORD64 WINAPI
SymLoadModuleEx(HANDLE hProcess
, HANDLE hFile
, PCSTR ImageName
,
455 PCSTR ModuleName
, DWORD64 BaseOfDll
, DWORD DllSize
,
456 PMODLOAD_DATA Data
, DWORD Flags
)
458 PWSTR wImageName
, wModuleName
;
462 TRACE("(%p %p %s %s %s %08x %p %08x)\n",
463 hProcess
, hFile
, debugstr_a(ImageName
), debugstr_a(ModuleName
),
464 wine_dbgstr_longlong(BaseOfDll
), DllSize
, Data
, Flags
);
468 len
= MultiByteToWideChar(CP_ACP
, 0, ImageName
, -1, NULL
, 0);
469 wImageName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
470 MultiByteToWideChar(CP_ACP
, 0, ImageName
, -1, wImageName
, len
);
472 else wImageName
= NULL
;
475 len
= MultiByteToWideChar(CP_ACP
, 0, ModuleName
, -1, NULL
, 0);
476 wModuleName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
477 MultiByteToWideChar(CP_ACP
, 0, ModuleName
, -1, wModuleName
, len
);
479 else wModuleName
= NULL
;
481 ret
= SymLoadModuleExW(hProcess
, hFile
, wImageName
, wModuleName
,
482 BaseOfDll
, DllSize
, Data
, Flags
);
483 HeapFree(GetProcessHeap(), 0, wImageName
);
484 HeapFree(GetProcessHeap(), 0, wModuleName
);
488 /***********************************************************************
489 * SymLoadModuleExW (DBGHELP.@)
491 DWORD64 WINAPI
SymLoadModuleExW(HANDLE hProcess
, HANDLE hFile
, PCWSTR wImageName
,
492 PCWSTR wModuleName
, DWORD64 BaseOfDll
, DWORD SizeOfDll
,
493 PMODLOAD_DATA Data
, DWORD Flags
)
496 struct module
* module
= NULL
;
498 TRACE("(%p %p %s %s %s %08x %p %08x)\n",
499 hProcess
, hFile
, debugstr_w(wImageName
), debugstr_w(wModuleName
),
500 wine_dbgstr_longlong(BaseOfDll
), SizeOfDll
, Data
, Flags
);
503 FIXME("Unsupported load data parameter %p for %s\n",
504 Data
, debugstr_w(wImageName
));
505 if (!validate_addr64(BaseOfDll
)) return FALSE
;
507 if (!(pcs
= process_find_by_handle(hProcess
))) return FALSE
;
509 if (Flags
& SLMFLAG_VIRTUAL
)
511 module
= module_new(pcs
, wImageName
, module_get_type_by_name(wImageName
),
512 TRUE
, (DWORD
)BaseOfDll
, SizeOfDll
, 0, 0);
513 if (!module
) return FALSE
;
514 if (wModuleName
) module_set_module(module
, wModuleName
);
515 module
->module
.SymType
= SymVirtual
;
519 if (Flags
& ~(SLMFLAG_VIRTUAL
))
520 FIXME("Unsupported Flags %08x for %s\n", Flags
, debugstr_w(wImageName
));
522 /* force transparent ELF loading / unloading */
523 elf_synchronize_module_list(pcs
);
525 /* this is a Wine extension to the API just to redo the synchronisation */
526 if (!wImageName
&& !hFile
) return 0;
528 /* check if the module is already loaded, or if it's a builtin PE module with
529 * an containing ELF module
533 module
= module_is_already_loaded(pcs
, wImageName
);
534 if (!module
&& module_is_elf_container_loaded(pcs
, wImageName
, BaseOfDll
))
536 /* force the loading of DLL as builtin */
537 module
= pe_load_builtin_module(pcs
, wImageName
, BaseOfDll
, SizeOfDll
);
542 /* otherwise, try a regular PE module */
543 if (!(module
= pe_load_native_module(pcs
, wImageName
, hFile
, BaseOfDll
, SizeOfDll
)))
545 /* and finally and ELF module */
546 if (module_get_type_by_name(wImageName
) == DMT_ELF
)
547 module
= elf_load_module(pcs
, wImageName
, BaseOfDll
);
552 WARN("Couldn't locate %s\n", debugstr_w(wImageName
));
555 module
->module
.NumSyms
= module
->ht_symbols
.num_elts
;
556 /* by default module_new fills module.ModuleName from a derivation
557 * of LoadedImageName. Overwrite it, if we have better information
560 module_set_module(module
, wModuleName
);
561 lstrcpynW(module
->module
.ImageName
, wImageName
,
562 sizeof(module
->module
.ImageName
) / sizeof(WCHAR
));
564 return module
->module
.BaseOfImage
;
567 /***********************************************************************
568 * SymLoadModule64 (DBGHELP.@)
570 DWORD64 WINAPI
SymLoadModule64(HANDLE hProcess
, HANDLE hFile
, PCSTR ImageName
,
571 PCSTR ModuleName
, DWORD64 BaseOfDll
, DWORD SizeOfDll
)
573 if (!validate_addr64(BaseOfDll
)) return FALSE
;
574 return SymLoadModule(hProcess
, hFile
, ImageName
, ModuleName
, (DWORD
)BaseOfDll
, SizeOfDll
);
577 /******************************************************************
581 BOOL
module_remove(struct process
* pcs
, struct module
* module
)
585 TRACE("%s (%p)\n", debugstr_w(module
->module
.ModuleName
), module
);
586 hash_table_destroy(&module
->ht_symbols
);
587 hash_table_destroy(&module
->ht_types
);
588 HeapFree(GetProcessHeap(), 0, module
->sources
);
589 HeapFree(GetProcessHeap(), 0, module
->addr_sorttab
);
590 HeapFree(GetProcessHeap(), 0, module
->dwarf2_info
);
591 pool_destroy(&module
->pool
);
592 /* native dbghelp doesn't invoke registered callback(,CBA_SYMBOLS_UNLOADED,) here
595 for (p
= &pcs
->lmodules
; *p
; p
= &(*p
)->next
)
600 HeapFree(GetProcessHeap(), 0, module
);
604 FIXME("This shouldn't happen\n");
608 /******************************************************************
609 * SymUnloadModule (DBGHELP.@)
612 BOOL WINAPI
SymUnloadModule(HANDLE hProcess
, DWORD BaseOfDll
)
615 struct module
* module
;
617 pcs
= process_find_by_handle(hProcess
);
618 if (!pcs
) return FALSE
;
619 module
= module_find_by_addr(pcs
, BaseOfDll
, DMT_UNKNOWN
);
620 if (!module
) return FALSE
;
621 return module_remove(pcs
, module
);
624 /******************************************************************
625 * SymUnloadModule64 (DBGHELP.@)
628 BOOL WINAPI
SymUnloadModule64(HANDLE hProcess
, DWORD64 BaseOfDll
)
631 struct module
* module
;
633 pcs
= process_find_by_handle(hProcess
);
634 if (!pcs
) return FALSE
;
635 if (!validate_addr64(BaseOfDll
)) return FALSE
;
636 module
= module_find_by_addr(pcs
, (DWORD
)BaseOfDll
, DMT_UNKNOWN
);
637 if (!module
) return FALSE
;
638 return module_remove(pcs
, module
);
641 /******************************************************************
642 * SymEnumerateModules (DBGHELP.@)
645 struct enum_modW64_32
647 PSYM_ENUMMODULES_CALLBACK cb
;
649 char module
[MAX_PATH
];
652 static BOOL CALLBACK
enum_modW64_32(PCWSTR name
, DWORD64 base
, PVOID user
)
654 struct enum_modW64_32
* x
= user
;
656 WideCharToMultiByte(CP_ACP
, 0, name
, -1, x
->module
, sizeof(x
->module
), NULL
, NULL
);
657 return x
->cb(x
->module
, (DWORD
)base
, x
->user
);
660 BOOL WINAPI
SymEnumerateModules(HANDLE hProcess
,
661 PSYM_ENUMMODULES_CALLBACK EnumModulesCallback
,
664 struct enum_modW64_32 x
;
666 x
.cb
= EnumModulesCallback
;
667 x
.user
= UserContext
;
669 return SymEnumerateModulesW64(hProcess
, enum_modW64_32
, &x
);
672 /******************************************************************
673 * SymEnumerateModules64 (DBGHELP.@)
676 struct enum_modW64_64
678 PSYM_ENUMMODULES_CALLBACK64 cb
;
680 char module
[MAX_PATH
];
683 static BOOL CALLBACK
enum_modW64_64(PCWSTR name
, DWORD64 base
, PVOID user
)
685 struct enum_modW64_64
* x
= user
;
687 WideCharToMultiByte(CP_ACP
, 0, name
, -1, x
->module
, sizeof(x
->module
), NULL
, NULL
);
688 return x
->cb(x
->module
, base
, x
->user
);
691 BOOL WINAPI
SymEnumerateModules64(HANDLE hProcess
,
692 PSYM_ENUMMODULES_CALLBACK64 EnumModulesCallback
,
695 struct enum_modW64_64 x
;
697 x
.cb
= EnumModulesCallback
;
698 x
.user
= UserContext
;
700 return SymEnumerateModulesW64(hProcess
, enum_modW64_64
, &x
);
703 /******************************************************************
704 * SymEnumerateModulesW64 (DBGHELP.@)
707 BOOL WINAPI
SymEnumerateModulesW64(HANDLE hProcess
,
708 PSYM_ENUMMODULES_CALLBACKW64 EnumModulesCallback
,
711 struct process
* pcs
= process_find_by_handle(hProcess
);
712 struct module
* module
;
714 if (!pcs
) return FALSE
;
716 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
718 if (!(dbghelp_options
& SYMOPT_WINE_WITH_ELF_MODULES
) && module
->type
== DMT_ELF
)
720 if (!EnumModulesCallback(module
->module
.ModuleName
,
721 module
->module
.BaseOfImage
, UserContext
))
727 /******************************************************************
728 * EnumerateLoadedModules64 (DBGHELP.@)
731 struct enum_load_modW64_64
733 PENUMLOADED_MODULES_CALLBACK64 cb
;
735 char module
[MAX_PATH
];
738 static BOOL CALLBACK
enum_load_modW64_64(PCWSTR name
, DWORD64 base
, ULONG size
,
741 struct enum_load_modW64_64
* x
= user
;
743 WideCharToMultiByte(CP_ACP
, 0, name
, -1, x
->module
, sizeof(x
->module
), NULL
, NULL
);
744 return x
->cb(x
->module
, base
, size
, x
->user
);
747 BOOL WINAPI
EnumerateLoadedModules64(HANDLE hProcess
,
748 PENUMLOADED_MODULES_CALLBACK64 EnumLoadedModulesCallback
,
751 struct enum_load_modW64_64 x
;
753 x
.cb
= EnumLoadedModulesCallback
;
754 x
.user
= UserContext
;
756 return EnumerateLoadedModulesW64(hProcess
, enum_load_modW64_64
, &x
);
759 /******************************************************************
760 * EnumerateLoadedModules (DBGHELP.@)
763 struct enum_load_modW64_32
765 PENUMLOADED_MODULES_CALLBACK cb
;
767 char module
[MAX_PATH
];
770 static BOOL CALLBACK
enum_load_modW64_32(PCWSTR name
, DWORD64 base
, ULONG size
,
773 struct enum_load_modW64_32
* x
= user
;
774 WideCharToMultiByte(CP_ACP
, 0, name
, -1, x
->module
, sizeof(x
->module
), NULL
, NULL
);
775 return x
->cb(x
->module
, (DWORD
)base
, size
, x
->user
);
778 BOOL WINAPI
EnumerateLoadedModules(HANDLE hProcess
,
779 PENUMLOADED_MODULES_CALLBACK EnumLoadedModulesCallback
,
782 struct enum_load_modW64_32 x
;
784 x
.cb
= EnumLoadedModulesCallback
;
785 x
.user
= UserContext
;
787 return EnumerateLoadedModulesW64(hProcess
, enum_load_modW64_32
, &x
);
790 /******************************************************************
791 * EnumerateLoadedModulesW64 (DBGHELP.@)
794 BOOL WINAPI
EnumerateLoadedModulesW64(HANDLE hProcess
,
795 PENUMLOADED_MODULES_CALLBACKW64 EnumLoadedModulesCallback
,
799 WCHAR baseW
[256], modW
[256];
803 hMods
= HeapAlloc(GetProcessHeap(), 0, 256 * sizeof(hMods
[0]));
804 if (!hMods
) return FALSE
;
806 if (!EnumProcessModules(hProcess
, hMods
, 256 * sizeof(hMods
[0]), &sz
))
808 /* hProcess should also be a valid process handle !! */
809 FIXME("If this happens, bump the number in mod\n");
810 HeapFree(GetProcessHeap(), 0, hMods
);
813 sz
/= sizeof(HMODULE
);
814 for (i
= 0; i
< sz
; i
++)
816 if (!GetModuleInformation(hProcess
, hMods
[i
], &mi
, sizeof(mi
)) ||
817 !GetModuleBaseNameW(hProcess
, hMods
[i
], baseW
, sizeof(baseW
) / sizeof(WCHAR
)))
819 module_fill_module(baseW
, modW
, sizeof(modW
) / sizeof(CHAR
));
820 EnumLoadedModulesCallback(modW
, (DWORD_PTR
)mi
.lpBaseOfDll
, mi
.SizeOfImage
,
823 HeapFree(GetProcessHeap(), 0, hMods
);
825 return sz
!= 0 && i
== sz
;
828 /******************************************************************
829 * SymGetModuleInfo (DBGHELP.@)
832 BOOL WINAPI
SymGetModuleInfo(HANDLE hProcess
, DWORD dwAddr
,
833 PIMAGEHLP_MODULE ModuleInfo
)
836 IMAGEHLP_MODULEW64 miw64
;
838 if (sizeof(mi
) < ModuleInfo
->SizeOfStruct
) FIXME("Wrong size\n");
840 miw64
.SizeOfStruct
= sizeof(miw64
);
841 if (!SymGetModuleInfoW64(hProcess
, dwAddr
, &miw64
)) return FALSE
;
843 mi
.SizeOfStruct
= miw64
.SizeOfStruct
;
844 mi
.BaseOfImage
= miw64
.BaseOfImage
;
845 mi
.ImageSize
= miw64
.ImageSize
;
846 mi
.TimeDateStamp
= miw64
.TimeDateStamp
;
847 mi
.CheckSum
= miw64
.CheckSum
;
848 mi
.NumSyms
= miw64
.NumSyms
;
849 mi
.SymType
= miw64
.SymType
;
850 WideCharToMultiByte(CP_ACP
, 0, miw64
.ModuleName
, -1,
851 mi
.ModuleName
, sizeof(mi
.ModuleName
), NULL
, NULL
);
852 WideCharToMultiByte(CP_ACP
, 0, miw64
.ImageName
, -1,
853 mi
.ImageName
, sizeof(mi
.ImageName
), NULL
, NULL
);
854 WideCharToMultiByte(CP_ACP
, 0, miw64
.LoadedImageName
, -1,
855 mi
.LoadedImageName
, sizeof(mi
.LoadedImageName
), NULL
, NULL
);
857 memcpy(ModuleInfo
, &mi
, ModuleInfo
->SizeOfStruct
);
862 /******************************************************************
863 * SymGetModuleInfoW (DBGHELP.@)
866 BOOL WINAPI
SymGetModuleInfoW(HANDLE hProcess
, DWORD dwAddr
,
867 PIMAGEHLP_MODULEW ModuleInfo
)
869 IMAGEHLP_MODULEW64 miw64
;
870 IMAGEHLP_MODULEW miw
;
872 if (sizeof(miw
) < ModuleInfo
->SizeOfStruct
) FIXME("Wrong size\n");
874 miw64
.SizeOfStruct
= sizeof(miw64
);
875 if (!SymGetModuleInfoW64(hProcess
, dwAddr
, &miw64
)) return FALSE
;
877 miw
.SizeOfStruct
= miw64
.SizeOfStruct
;
878 miw
.BaseOfImage
= miw64
.BaseOfImage
;
879 miw
.ImageSize
= miw64
.ImageSize
;
880 miw
.TimeDateStamp
= miw64
.TimeDateStamp
;
881 miw
.CheckSum
= miw64
.CheckSum
;
882 miw
.NumSyms
= miw64
.NumSyms
;
883 miw
.SymType
= miw64
.SymType
;
884 strcpyW(miw
.ModuleName
, miw64
.ModuleName
);
885 strcpyW(miw
.ImageName
, miw64
.ImageName
);
886 strcpyW(miw
.LoadedImageName
, miw64
.LoadedImageName
);
887 memcpy(ModuleInfo
, &miw
, ModuleInfo
->SizeOfStruct
);
892 /******************************************************************
893 * SymGetModuleInfo64 (DBGHELP.@)
896 BOOL WINAPI
SymGetModuleInfo64(HANDLE hProcess
, DWORD64 dwAddr
,
897 PIMAGEHLP_MODULE64 ModuleInfo
)
899 IMAGEHLP_MODULE64 mi64
;
900 IMAGEHLP_MODULEW64 miw64
;
902 if (sizeof(mi64
) < ModuleInfo
->SizeOfStruct
)
904 SetLastError(ERROR_MOD_NOT_FOUND
); /* NOTE: native returns this error */
905 WARN("Wrong size %u\n", ModuleInfo
->SizeOfStruct
);
909 miw64
.SizeOfStruct
= sizeof(miw64
);
910 if (!SymGetModuleInfoW64(hProcess
, dwAddr
, &miw64
)) return FALSE
;
912 mi64
.SizeOfStruct
= miw64
.SizeOfStruct
;
913 mi64
.BaseOfImage
= miw64
.BaseOfImage
;
914 mi64
.ImageSize
= miw64
.ImageSize
;
915 mi64
.TimeDateStamp
= miw64
.TimeDateStamp
;
916 mi64
.CheckSum
= miw64
.CheckSum
;
917 mi64
.NumSyms
= miw64
.NumSyms
;
918 mi64
.SymType
= miw64
.SymType
;
919 WideCharToMultiByte(CP_ACP
, 0, miw64
.ModuleName
, -1,
920 mi64
.ModuleName
, sizeof(mi64
.ModuleName
), NULL
, NULL
);
921 WideCharToMultiByte(CP_ACP
, 0, miw64
.ImageName
, -1,
922 mi64
.ImageName
, sizeof(mi64
.ImageName
), NULL
, NULL
);
923 WideCharToMultiByte(CP_ACP
, 0, miw64
.LoadedImageName
, -1,
924 mi64
.LoadedImageName
, sizeof(mi64
.LoadedImageName
), NULL
, NULL
);
925 WideCharToMultiByte(CP_ACP
, 0, miw64
.LoadedPdbName
, -1,
926 mi64
.LoadedPdbName
, sizeof(mi64
.LoadedPdbName
), NULL
, NULL
);
928 mi64
.CVSig
= miw64
.CVSig
;
929 WideCharToMultiByte(CP_ACP
, 0, miw64
.CVData
, -1,
930 mi64
.CVData
, sizeof(mi64
.CVData
), NULL
, NULL
);
931 mi64
.PdbSig
= miw64
.PdbSig
;
932 mi64
.PdbSig70
= miw64
.PdbSig70
;
933 mi64
.PdbAge
= miw64
.PdbAge
;
934 mi64
.PdbUnmatched
= miw64
.PdbUnmatched
;
935 mi64
.DbgUnmatched
= miw64
.DbgUnmatched
;
936 mi64
.LineNumbers
= miw64
.LineNumbers
;
937 mi64
.GlobalSymbols
= miw64
.GlobalSymbols
;
938 mi64
.TypeInfo
= miw64
.TypeInfo
;
939 mi64
.SourceIndexed
= miw64
.SourceIndexed
;
940 mi64
.Publics
= miw64
.Publics
;
942 memcpy(ModuleInfo
, &mi64
, ModuleInfo
->SizeOfStruct
);
947 /******************************************************************
948 * SymGetModuleInfoW64 (DBGHELP.@)
951 BOOL WINAPI
SymGetModuleInfoW64(HANDLE hProcess
, DWORD64 dwAddr
,
952 PIMAGEHLP_MODULEW64 ModuleInfo
)
954 struct process
* pcs
= process_find_by_handle(hProcess
);
955 struct module
* module
;
956 IMAGEHLP_MODULEW64 miw64
;
958 TRACE("%p %s %p\n", hProcess
, wine_dbgstr_longlong(dwAddr
), ModuleInfo
);
960 if (!pcs
) return FALSE
;
961 if (ModuleInfo
->SizeOfStruct
> sizeof(*ModuleInfo
)) return FALSE
;
962 module
= module_find_by_addr(pcs
, dwAddr
, DMT_UNKNOWN
);
963 if (!module
) return FALSE
;
965 miw64
= module
->module
;
967 /* update debug information from container if any */
968 if (module
->module
.SymType
== SymNone
)
970 module
= module_get_container(pcs
, module
);
971 if (module
&& module
->module
.SymType
!= SymNone
)
973 miw64
.SymType
= module
->module
.SymType
;
974 miw64
.NumSyms
= module
->module
.NumSyms
;
977 memcpy(ModuleInfo
, &miw64
, ModuleInfo
->SizeOfStruct
);
981 /***********************************************************************
982 * SymGetModuleBase (DBGHELP.@)
984 DWORD WINAPI
SymGetModuleBase(HANDLE hProcess
, DWORD dwAddr
)
986 struct process
* pcs
= process_find_by_handle(hProcess
);
987 struct module
* module
;
990 module
= module_find_by_addr(pcs
, dwAddr
, DMT_UNKNOWN
);
991 if (!module
) return 0;
992 return module
->module
.BaseOfImage
;
995 /***********************************************************************
996 * SymGetModuleBase64 (DBGHELP.@)
998 DWORD64 WINAPI
SymGetModuleBase64(HANDLE hProcess
, DWORD64 dwAddr
)
1000 if (!validate_addr64(dwAddr
)) return 0;
1001 return SymGetModuleBase(hProcess
, (DWORD
)dwAddr
);
1004 /******************************************************************
1005 * module_reset_debug_info
1006 * Removes any debug information linked to a given module.
1008 void module_reset_debug_info(struct module
* module
)
1010 module
->sortlist_valid
= TRUE
;
1011 module
->addr_sorttab
= NULL
;
1012 hash_table_destroy(&module
->ht_symbols
);
1013 module
->ht_symbols
.num_buckets
= 0;
1014 module
->ht_symbols
.buckets
= NULL
;
1015 hash_table_destroy(&module
->ht_types
);
1016 module
->ht_types
.num_buckets
= 0;
1017 module
->ht_types
.buckets
= NULL
;
1018 module
->vtypes
.num_elts
= 0;
1019 hash_table_destroy(&module
->ht_symbols
);
1020 module
->sources_used
= module
->sources_alloc
= 0;
1021 module
->sources
= NULL
;