kernel32/tests: Document a few FormatMessage tests which are broken on older Windows.
[wine] / dlls / dbghelp / module.c
1 /*
2  * File module.c - module handling for the wine debugger
3  *
4  * Copyright (C) 1993,      Eric Youngdale.
5  *               2000-2007, Eric Pouech
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "config.h"
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <assert.h>
27
28 #include "dbghelp_private.h"
29 #include "psapi.h"
30 #include "winternl.h"
31 #include "wine/debug.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
34
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_DotDylibW[]    = {'.','d','y','l','i','b','\0'};
39 static const WCHAR S_DotPdbW[]      = {'.','p','d','b','\0'};
40 static const WCHAR S_DotDbgW[]      = {'.','d','b','g','\0'};
41 const WCHAR        S_WineW[]        = {'w','i','n','e',0};
42 const WCHAR        S_SlashW[]       = {'/','\0'};
43
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};
51
52 static int match_ext(const WCHAR* ptr, size_t len)
53 {
54     const WCHAR* const *e;
55     size_t      l;
56
57     for (e = ext; *e; e++)
58     {
59         l = strlenW(*e);
60         if (l >= len) return FALSE;
61         if (strncmpiW(&ptr[len - l], *e, l)) continue;
62         return l;
63     }
64     return 0;
65 }
66
67 static const WCHAR* get_filename(const WCHAR* name, const WCHAR* endptr)
68 {
69     const WCHAR*        ptr;
70
71     if (!endptr) endptr = name + strlenW(name);
72     for (ptr = endptr - 1; ptr >= name; ptr--)
73     {
74         if (*ptr == '/' || *ptr == '\\') break;
75     }
76     return ++ptr;
77 }
78
79 static void module_fill_module(const WCHAR* in, WCHAR* out, size_t size)
80 {
81     const WCHAR *ptr, *endptr;
82     size_t      len, l;
83
84     ptr = get_filename(in, endptr = in + strlenW(in));
85     len = min(endptr - ptr, size - 1);
86     memcpy(out, ptr, len * sizeof(WCHAR));
87     out[len] = '\0';
88     if (len > 4 && (l = match_ext(out, len)))
89         out[len - l] = '\0';
90     else if (len > 4 && !strcmpiW(out + len - 4, S_WineW))
91         lstrcpynW(out, S_WineLoaderW, size);
92     else
93     {
94         if (len > 3 && !strcmpiW(&out[len - 3], S_DotSoW) &&
95             (l = match_ext(out, len - 3)))
96             strcpyW(&out[len - l - 3], S_ElfW);
97     }
98     while ((*out = tolowerW(*out))) out++;
99 }
100
101 void module_set_module(struct module* module, const WCHAR* name)
102 {
103     module_fill_module(name, module->module.ModuleName, sizeof(module->module.ModuleName));
104     WideCharToMultiByte(CP_ACP, 0, module->module.ModuleName, -1,
105                         module->module_name, sizeof(module->module_name),
106                         NULL, NULL);
107 }
108
109 static const char*      get_module_type(enum module_type type, BOOL virtual)
110 {
111     switch (type)
112     {
113     case DMT_ELF: return virtual ? "Virtual ELF" : "ELF";
114     case DMT_PE: return virtual ? "Virtual PE" : "PE";
115     case DMT_MACHO: return virtual ? "Virtual Mach-O" : "Mach-O";
116     default: return "---";
117     }
118 }
119
120 /***********************************************************************
121  * Creates and links a new module to a process
122  */
123 struct module* module_new(struct process* pcs, const WCHAR* name,
124                           enum module_type type, BOOL virtual,
125                           DWORD64 mod_addr, DWORD64 size,
126                           unsigned long stamp, unsigned long checksum)
127 {
128     struct module*      module;
129     unsigned            i;
130
131     assert(type == DMT_ELF || type == DMT_PE || type == DMT_MACHO);
132     if (!(module = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*module))))
133         return NULL;
134
135     module->next = pcs->lmodules;
136     pcs->lmodules = module;
137
138     TRACE("=> %s %s-%s %s\n",
139           get_module_type(type, virtual),
140           wine_dbgstr_longlong(mod_addr), wine_dbgstr_longlong(mod_addr + size),
141           debugstr_w(name));
142
143     pool_init(&module->pool, 65536);
144
145     module->module.SizeOfStruct = sizeof(module->module);
146     module->module.BaseOfImage = mod_addr;
147     module->module.ImageSize = size;
148     module_set_module(module, name);
149     module->module.ImageName[0] = '\0';
150     lstrcpynW(module->module.LoadedImageName, name, sizeof(module->module.LoadedImageName) / sizeof(WCHAR));
151     module->module.SymType = SymNone;
152     module->module.NumSyms = 0;
153     module->module.TimeDateStamp = stamp;
154     module->module.CheckSum = checksum;
155
156     memset(module->module.LoadedPdbName, 0, sizeof(module->module.CVData));
157     module->module.CVSig = 0;
158     memset(module->module.CVData, 0, sizeof(module->module.CVData));
159     module->module.PdbSig = 0;
160     memset(&module->module.PdbSig70, 0, sizeof(module->module.PdbSig70));
161     module->module.PdbAge = 0;
162     module->module.PdbUnmatched = FALSE;
163     module->module.DbgUnmatched = FALSE;
164     module->module.LineNumbers = FALSE;
165     module->module.GlobalSymbols = FALSE;
166     module->module.TypeInfo = FALSE;
167     module->module.SourceIndexed = FALSE;
168     module->module.Publics = FALSE;
169
170     module->reloc_delta       = 0;
171     module->type              = type;
172     module->is_virtual        = virtual ? TRUE : FALSE;
173     for (i = 0; i < DFI_LAST; i++) module->format_info[i] = NULL;
174     module->sortlist_valid    = FALSE;
175     module->sorttab_size      = 0;
176     module->addr_sorttab      = NULL;
177     module->num_sorttab       = 0;
178     module->num_symbols       = 0;
179
180     vector_init(&module->vsymt, sizeof(struct symt*), 128);
181     /* FIXME: this seems a bit too high (on a per module basis)
182      * need some statistics about this
183      */
184     hash_table_init(&module->pool, &module->ht_symbols, 4096);
185     hash_table_init(&module->pool, &module->ht_types,   4096);
186     vector_init(&module->vtypes, sizeof(struct symt*),  32);
187
188     module->sources_used      = 0;
189     module->sources_alloc     = 0;
190     module->sources           = 0;
191
192     return module;
193 }
194
195 /***********************************************************************
196  *      module_find_by_name
197  *
198  */
199 static struct module* module_find_by_name(const struct process* pcs, const WCHAR* name)
200 {
201     struct module*      module;
202
203     for (module = pcs->lmodules; module; module = module->next)
204     {
205         if (!strcmpiW(name, module->module.ModuleName)) return module;
206     }
207     SetLastError(ERROR_INVALID_NAME);
208     return NULL;
209 }
210
211 struct module* module_find_by_nameA(const struct process* pcs, const char* name)
212 {
213     WCHAR wname[MAX_PATH];
214
215     MultiByteToWideChar(CP_ACP, 0, name, -1, wname, sizeof(wname) / sizeof(WCHAR));
216     return module_find_by_name(pcs, wname);
217 }
218
219 /***********************************************************************
220  *      module_is_already_loaded
221  *
222  */
223 struct module* module_is_already_loaded(const struct process* pcs, const WCHAR* name)
224 {
225     struct module*      module;
226     const WCHAR*        filename;
227
228     /* first compare the loaded image name... */
229     for (module = pcs->lmodules; module; module = module->next)
230     {
231         if (!strcmpiW(name, module->module.LoadedImageName))
232             return module;
233     }
234     /* then compare the standard filenames (without the path) ... */
235     filename = get_filename(name, NULL);
236     for (module = pcs->lmodules; module; module = module->next)
237     {
238         if (!strcmpiW(filename, get_filename(module->module.LoadedImageName, NULL)))
239             return module;
240     }
241     SetLastError(ERROR_INVALID_NAME);
242     return NULL;
243 }
244
245 /***********************************************************************
246  *           module_get_container
247  *
248  */
249 static struct module* module_get_container(const struct process* pcs,
250                                     const struct module* inner)
251 {
252     struct module*      module;
253      
254     for (module = pcs->lmodules; module; module = module->next)
255     {
256         if (module != inner &&
257             module->module.BaseOfImage <= inner->module.BaseOfImage &&
258             module->module.BaseOfImage + module->module.ImageSize >=
259             inner->module.BaseOfImage + inner->module.ImageSize)
260             return module;
261     }
262     return NULL;
263 }
264
265 /***********************************************************************
266  *           module_get_containee
267  *
268  */
269 struct module* module_get_containee(const struct process* pcs, 
270                                     const struct module* outter)
271 {
272     struct module*      module;
273      
274     for (module = pcs->lmodules; module; module = module->next)
275     {
276         if (module != outter &&
277             outter->module.BaseOfImage <= module->module.BaseOfImage &&
278             outter->module.BaseOfImage + outter->module.ImageSize >=
279             module->module.BaseOfImage + module->module.ImageSize)
280             return module;
281     }
282     return NULL;
283 }
284
285 /******************************************************************
286  *              module_get_debug
287  *
288  * get the debug information from a module:
289  * - if the module's type is deferred, then force loading of debug info (and return
290  *   the module itself)
291  * - if the module has no debug info and has an ELF container, then return the ELF
292  *   container (and also force the ELF container's debug info loading if deferred)
293  * - otherwise return the module itself if it has some debug info
294  */
295 BOOL module_get_debug(struct module_pair* pair)
296 {
297     IMAGEHLP_DEFERRED_SYMBOL_LOADW64    idslW64;
298
299     if (!pair->requested) return FALSE;
300     /* for a PE builtin, always get info from container */
301     if (!(pair->effective = module_get_container(pair->pcs, pair->requested)))
302         pair->effective = pair->requested;
303     /* if deferred, force loading */
304     if (pair->effective->module.SymType == SymDeferred)
305     {
306         BOOL ret;
307         
308         if (pair->effective->is_virtual) ret = FALSE;
309         else switch (pair->effective->type)
310         {
311         case DMT_ELF:
312             ret = elf_load_debug_info(pair->effective, NULL);
313             break;
314         case DMT_PE:
315             idslW64.SizeOfStruct = sizeof(idslW64);
316             idslW64.BaseOfImage = pair->effective->module.BaseOfImage;
317             idslW64.CheckSum = pair->effective->module.CheckSum;
318             idslW64.TimeDateStamp = pair->effective->module.TimeDateStamp;
319             memcpy(idslW64.FileName, pair->effective->module.ImageName,
320                    sizeof(pair->effective->module.ImageName));
321             idslW64.Reparse = FALSE;
322             idslW64.hFile = INVALID_HANDLE_VALUE;
323
324             pcs_callback(pair->pcs, CBA_DEFERRED_SYMBOL_LOAD_START, &idslW64);
325             ret = pe_load_debug_info(pair->pcs, pair->effective);
326             pcs_callback(pair->pcs,
327                          ret ? CBA_DEFERRED_SYMBOL_LOAD_COMPLETE : CBA_DEFERRED_SYMBOL_LOAD_FAILURE,
328                          &idslW64);
329             break;
330         case DMT_MACHO:
331             ret = macho_load_debug_info(pair->effective, NULL);
332             break;
333         default:
334             ret = FALSE;
335             break;
336         }
337         if (!ret) pair->effective->module.SymType = SymNone;
338         assert(pair->effective->module.SymType != SymDeferred);
339         pair->effective->module.NumSyms = pair->effective->ht_symbols.num_elts;
340     }
341     return pair->effective->module.SymType != SymNone;
342 }
343
344 /***********************************************************************
345  *      module_find_by_addr
346  *
347  * either the addr where module is loaded, or any address inside the 
348  * module
349  */
350 struct module* module_find_by_addr(const struct process* pcs, unsigned long addr, 
351                                    enum module_type type)
352 {
353     struct module*      module;
354     
355     if (type == DMT_UNKNOWN)
356     {
357         if ((module = module_find_by_addr(pcs, addr, DMT_PE)) ||
358             (module = module_find_by_addr(pcs, addr, DMT_ELF)) ||
359             (module = module_find_by_addr(pcs, addr, DMT_MACHO)))
360             return module;
361     }
362     else
363     {
364         for (module = pcs->lmodules; module; module = module->next)
365         {
366             if (type == module->type && addr >= module->module.BaseOfImage &&
367                 addr < module->module.BaseOfImage + module->module.ImageSize) 
368                 return module;
369         }
370     }
371     SetLastError(ERROR_INVALID_ADDRESS);
372     return module;
373 }
374
375 /******************************************************************
376  *              module_is_container_loaded
377  *
378  * checks whether the native container, for a (supposed) PE builtin is
379  * already loaded
380  */
381 static BOOL module_is_container_loaded(const struct process* pcs,
382                                        const WCHAR* ImageName, DWORD64 base)
383 {
384     size_t              len;
385     struct module*      module;
386     PCWSTR              filename, modname;
387
388     if (!base) return FALSE;
389     filename = get_filename(ImageName, NULL);
390     len = strlenW(filename);
391
392     for (module = pcs->lmodules; module; module = module->next)
393     {
394         if ((module->type == DMT_ELF || module->type == DMT_MACHO) &&
395             base >= module->module.BaseOfImage &&
396             base < module->module.BaseOfImage + module->module.ImageSize)
397         {
398             modname = get_filename(module->module.LoadedImageName, NULL);
399             if (!strncmpiW(modname, filename, len) &&
400                 !memcmp(modname + len, S_DotSoW, 3 * sizeof(WCHAR)))
401             {
402                 return TRUE;
403             }
404         }
405     }
406     /* likely a native PE module */
407     WARN("Couldn't find container for %s\n", debugstr_w(ImageName));
408     return FALSE;
409 }
410
411 /******************************************************************
412  *              module_get_type_by_name
413  *
414  * Guesses a filename type from its extension
415  */
416 enum module_type module_get_type_by_name(const WCHAR* name)
417 {
418     int len = strlenW(name);
419
420     /* Skip all version extensions (.[digits]) regex: "(\.\d+)*$" */
421     do
422     {
423         int i = len;
424
425         while (i && isdigit(name[i - 1])) i--;
426
427         if (i && name[i - 1] == '.')
428             len = i - 1;
429         else
430             break;
431     } while (len);
432
433     /* check for terminating .so or .so.[digit] */
434     /* FIXME: Can't rely solely on extension; have to check magic or
435      *        stop using .so on Mac OS X.  For now, base on platform. */
436     if (len > 3 && !memcmp(name + len - 3, S_DotSoW, 3))
437 #ifdef __APPLE__
438         return DMT_MACHO;
439 #else
440         return DMT_ELF;
441 #endif
442
443     if (len > 6 && !strncmpiW(name + len - 6, S_DotDylibW, 6))
444         return DMT_MACHO;
445
446     if (len > 4 && !strncmpiW(name + len - 4, S_DotPdbW, 4))
447         return DMT_PDB;
448
449     if (len > 4 && !strncmpiW(name + len - 4, S_DotDbgW, 4))
450         return DMT_DBG;
451
452     /* wine is also a native module (Mach-O on Mac OS X, ELF elsewhere) */
453     if (((len > 4 && name[len - 5] == '/') || len == 4) && !strcmpiW(name + len - 4, S_WineW))
454     {
455 #ifdef __APPLE__
456         return DMT_MACHO;
457 #else
458         return DMT_ELF;
459 #endif
460     }
461     return DMT_PE;
462 }
463
464 /******************************************************************
465  *                              refresh_module_list
466  */
467 static BOOL refresh_module_list(struct process* pcs)
468 {
469     /* force transparent ELF and Mach-O loading / unloading */
470     return elf_synchronize_module_list(pcs) || macho_synchronize_module_list(pcs);
471 }
472
473 /***********************************************************************
474  *                      SymLoadModule (DBGHELP.@)
475  */
476 DWORD WINAPI SymLoadModule(HANDLE hProcess, HANDLE hFile, PCSTR ImageName,
477                            PCSTR ModuleName, DWORD BaseOfDll, DWORD SizeOfDll)
478 {
479     return SymLoadModuleEx(hProcess, hFile, ImageName, ModuleName, BaseOfDll,
480                            SizeOfDll, NULL, 0);
481 }
482
483 /***********************************************************************
484  *                      SymLoadModuleEx (DBGHELP.@)
485  */
486 DWORD64 WINAPI  SymLoadModuleEx(HANDLE hProcess, HANDLE hFile, PCSTR ImageName,
487                                 PCSTR ModuleName, DWORD64 BaseOfDll, DWORD DllSize,
488                                 PMODLOAD_DATA Data, DWORD Flags)
489 {
490     PWSTR       wImageName, wModuleName;
491     unsigned    len;
492     DWORD64     ret;
493
494     TRACE("(%p %p %s %s %s %08x %p %08x)\n",
495           hProcess, hFile, debugstr_a(ImageName), debugstr_a(ModuleName),
496           wine_dbgstr_longlong(BaseOfDll), DllSize, Data, Flags);
497
498     if (ImageName)
499     {
500         len = MultiByteToWideChar(CP_ACP, 0, ImageName, -1, NULL, 0);
501         wImageName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
502         MultiByteToWideChar(CP_ACP, 0, ImageName, -1, wImageName, len);
503     }
504     else wImageName = NULL;
505     if (ModuleName)
506     {
507         len = MultiByteToWideChar(CP_ACP, 0, ModuleName, -1, NULL, 0);
508         wModuleName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
509         MultiByteToWideChar(CP_ACP, 0, ModuleName, -1, wModuleName, len);
510     }
511     else wModuleName = NULL;
512
513     ret = SymLoadModuleExW(hProcess, hFile, wImageName, wModuleName,
514                           BaseOfDll, DllSize, Data, Flags);
515     HeapFree(GetProcessHeap(), 0, wImageName);
516     HeapFree(GetProcessHeap(), 0, wModuleName);
517     return ret;
518 }
519
520 /***********************************************************************
521  *                      SymLoadModuleExW (DBGHELP.@)
522  */
523 DWORD64 WINAPI  SymLoadModuleExW(HANDLE hProcess, HANDLE hFile, PCWSTR wImageName,
524                                  PCWSTR wModuleName, DWORD64 BaseOfDll, DWORD SizeOfDll,
525                                  PMODLOAD_DATA Data, DWORD Flags)
526 {
527     struct process*     pcs;
528     struct module*      module = NULL;
529
530     TRACE("(%p %p %s %s %s %08x %p %08x)\n",
531           hProcess, hFile, debugstr_w(wImageName), debugstr_w(wModuleName),
532           wine_dbgstr_longlong(BaseOfDll), SizeOfDll, Data, Flags);
533
534     if (Data)
535         FIXME("Unsupported load data parameter %p for %s\n",
536               Data, debugstr_w(wImageName));
537     if (!validate_addr64(BaseOfDll)) return FALSE;
538
539     if (!(pcs = process_find_by_handle(hProcess))) return FALSE;
540
541     if (Flags & SLMFLAG_VIRTUAL)
542     {
543         if (!wImageName) return FALSE;
544         module = module_new(pcs, wImageName, module_get_type_by_name(wImageName),
545                             TRUE, BaseOfDll, SizeOfDll, 0, 0);
546         if (!module) return FALSE;
547         if (wModuleName) module_set_module(module, wModuleName);
548         module->module.SymType = SymVirtual;
549
550         return TRUE;
551     }
552     if (Flags & ~(SLMFLAG_VIRTUAL))
553         FIXME("Unsupported Flags %08x for %s\n", Flags, debugstr_w(wImageName));
554
555     refresh_module_list(pcs);
556
557     /* this is a Wine extension to the API just to redo the synchronisation */
558     if (!wImageName && !hFile) return 0;
559
560     /* check if the module is already loaded, or if it's a builtin PE module with
561      * an containing ELF module
562      */
563     if (wImageName)
564     {
565         module = module_is_already_loaded(pcs, wImageName);
566         if (!module && module_is_container_loaded(pcs, wImageName, BaseOfDll))
567         {
568             /* force the loading of DLL as builtin */
569             module = pe_load_builtin_module(pcs, wImageName, BaseOfDll, SizeOfDll);
570         }
571     }
572     if (!module)
573     {
574         /* otherwise, try a regular PE module */
575         if (!(module = pe_load_native_module(pcs, wImageName, hFile, BaseOfDll, SizeOfDll)) &&
576             wImageName)
577         {
578             /* and finally an ELF or Mach-O module */
579             switch (module_get_type_by_name(wImageName))
580             {
581                 case DMT_ELF:
582                     module = elf_load_module(pcs, wImageName, BaseOfDll);
583                     break;
584                 case DMT_MACHO:
585                     module = macho_load_module(pcs, wImageName, BaseOfDll);
586                     break;
587                 default:
588                     /* Ignored */
589                     break;
590             }
591         }
592     }
593     if (!module)
594     {
595         WARN("Couldn't locate %s\n", debugstr_w(wImageName));
596         return 0;
597     }
598     module->module.NumSyms = module->ht_symbols.num_elts;
599     /* by default module_new fills module.ModuleName from a derivation
600      * of LoadedImageName. Overwrite it, if we have better information
601      */
602     if (wModuleName)
603         module_set_module(module, wModuleName);
604     if (wImageName)
605         lstrcpynW(module->module.ImageName, wImageName,
606               sizeof(module->module.ImageName) / sizeof(WCHAR));
607
608     return module->module.BaseOfImage;
609 }
610
611 /***********************************************************************
612  *                     SymLoadModule64 (DBGHELP.@)
613  */
614 DWORD64 WINAPI SymLoadModule64(HANDLE hProcess, HANDLE hFile, PCSTR ImageName,
615                                PCSTR ModuleName, DWORD64 BaseOfDll, DWORD SizeOfDll)
616 {
617     if (!validate_addr64(BaseOfDll)) return FALSE;
618     return SymLoadModule(hProcess, hFile, ImageName, ModuleName, (DWORD)BaseOfDll, SizeOfDll);
619 }
620
621 /******************************************************************
622  *              module_remove
623  *
624  */
625 BOOL module_remove(struct process* pcs, struct module* module)
626 {
627     struct module_format*modfmt;
628     struct module**     p;
629     unsigned            i;
630
631     TRACE("%s (%p)\n", debugstr_w(module->module.ModuleName), module);
632
633     for (i = 0; i < DFI_LAST; i++)
634     {
635         if ((modfmt = module->format_info[i]) && modfmt->remove)
636             modfmt->remove(pcs, module->format_info[i]);
637     }
638     hash_table_destroy(&module->ht_symbols);
639     hash_table_destroy(&module->ht_types);
640     HeapFree(GetProcessHeap(), 0, module->sources);
641     HeapFree(GetProcessHeap(), 0, module->addr_sorttab);
642     pool_destroy(&module->pool);
643     /* native dbghelp doesn't invoke registered callback(,CBA_SYMBOLS_UNLOADED,) here
644      * so do we
645      */
646     for (p = &pcs->lmodules; *p; p = &(*p)->next)
647     {
648         if (*p == module)
649         {
650             *p = module->next;
651             HeapFree(GetProcessHeap(), 0, module);
652             return TRUE;
653         }
654     }
655     FIXME("This shouldn't happen\n");
656     return FALSE;
657 }
658
659 /******************************************************************
660  *              SymUnloadModule (DBGHELP.@)
661  *
662  */
663 BOOL WINAPI SymUnloadModule(HANDLE hProcess, DWORD BaseOfDll)
664 {
665     struct process*     pcs;
666     struct module*      module;
667
668     pcs = process_find_by_handle(hProcess);
669     if (!pcs) return FALSE;
670     module = module_find_by_addr(pcs, BaseOfDll, DMT_UNKNOWN);
671     if (!module) return FALSE;
672     return module_remove(pcs, module);
673 }
674
675 /******************************************************************
676  *              SymUnloadModule64 (DBGHELP.@)
677  *
678  */
679 BOOL WINAPI SymUnloadModule64(HANDLE hProcess, DWORD64 BaseOfDll)
680 {
681     struct process*     pcs;
682     struct module*      module;
683
684     pcs = process_find_by_handle(hProcess);
685     if (!pcs) return FALSE;
686     if (!validate_addr64(BaseOfDll)) return FALSE;
687     module = module_find_by_addr(pcs, (DWORD)BaseOfDll, DMT_UNKNOWN);
688     if (!module) return FALSE;
689     return module_remove(pcs, module);
690 }
691
692 /******************************************************************
693  *              SymEnumerateModules (DBGHELP.@)
694  *
695  */
696 struct enum_modW64_32
697 {
698     PSYM_ENUMMODULES_CALLBACK   cb;
699     PVOID                       user;
700     char                        module[MAX_PATH];
701 };
702
703 static BOOL CALLBACK enum_modW64_32(PCWSTR name, DWORD64 base, PVOID user)
704 {
705     struct enum_modW64_32*      x = user;
706
707     WideCharToMultiByte(CP_ACP, 0, name, -1, x->module, sizeof(x->module), NULL, NULL);
708     return x->cb(x->module, (DWORD)base, x->user);
709 }
710
711 BOOL  WINAPI SymEnumerateModules(HANDLE hProcess,
712                                  PSYM_ENUMMODULES_CALLBACK EnumModulesCallback,  
713                                  PVOID UserContext)
714 {
715     struct enum_modW64_32       x;
716
717     x.cb = EnumModulesCallback;
718     x.user = UserContext;
719
720     return SymEnumerateModulesW64(hProcess, enum_modW64_32, &x);
721 }
722
723 /******************************************************************
724  *              SymEnumerateModules64 (DBGHELP.@)
725  *
726  */
727 struct enum_modW64_64
728 {
729     PSYM_ENUMMODULES_CALLBACK64 cb;
730     PVOID                       user;
731     char                        module[MAX_PATH];
732 };
733
734 static BOOL CALLBACK enum_modW64_64(PCWSTR name, DWORD64 base, PVOID user)
735 {
736     struct enum_modW64_64*      x = user;
737
738     WideCharToMultiByte(CP_ACP, 0, name, -1, x->module, sizeof(x->module), NULL, NULL);
739     return x->cb(x->module, base, x->user);
740 }
741
742 BOOL  WINAPI SymEnumerateModules64(HANDLE hProcess,
743                                    PSYM_ENUMMODULES_CALLBACK64 EnumModulesCallback,  
744                                    PVOID UserContext)
745 {
746     struct enum_modW64_64       x;
747
748     x.cb = EnumModulesCallback;
749     x.user = UserContext;
750
751     return SymEnumerateModulesW64(hProcess, enum_modW64_64, &x);
752 }
753
754 /******************************************************************
755  *              SymEnumerateModulesW64 (DBGHELP.@)
756  *
757  */
758 BOOL  WINAPI SymEnumerateModulesW64(HANDLE hProcess,
759                                     PSYM_ENUMMODULES_CALLBACKW64 EnumModulesCallback,
760                                     PVOID UserContext)
761 {
762     struct process*     pcs = process_find_by_handle(hProcess);
763     struct module*      module;
764
765     if (!pcs) return FALSE;
766     
767     for (module = pcs->lmodules; module; module = module->next)
768     {
769         if (!(dbghelp_options & SYMOPT_WINE_WITH_NATIVE_MODULES) &&
770             (module->type == DMT_ELF || module->type == DMT_MACHO))
771             continue;
772         if (!EnumModulesCallback(module->module.ModuleName,
773                                  module->module.BaseOfImage, UserContext))
774             break;
775     }
776     return TRUE;
777 }
778
779 /******************************************************************
780  *              EnumerateLoadedModules64 (DBGHELP.@)
781  *
782  */
783 struct enum_load_modW64_64
784 {
785     PENUMLOADED_MODULES_CALLBACK64      cb;
786     PVOID                               user;
787     char                                module[MAX_PATH];
788 };
789
790 static BOOL CALLBACK enum_load_modW64_64(PCWSTR name, DWORD64 base, ULONG size,
791                                          PVOID user)
792 {
793     struct enum_load_modW64_64* x = user;
794
795     WideCharToMultiByte(CP_ACP, 0, name, -1, x->module, sizeof(x->module), NULL, NULL);
796     return x->cb(x->module, base, size, x->user);
797 }
798
799 BOOL  WINAPI EnumerateLoadedModules64(HANDLE hProcess,
800                                       PENUMLOADED_MODULES_CALLBACK64 EnumLoadedModulesCallback,
801                                       PVOID UserContext)
802 {
803     struct enum_load_modW64_64  x;
804
805     x.cb = EnumLoadedModulesCallback;
806     x.user = UserContext;
807
808     return EnumerateLoadedModulesW64(hProcess, enum_load_modW64_64, &x);
809 }
810
811 /******************************************************************
812  *              EnumerateLoadedModules (DBGHELP.@)
813  *
814  */
815 struct enum_load_modW64_32
816 {
817     PENUMLOADED_MODULES_CALLBACK        cb;
818     PVOID                               user;
819     char                                module[MAX_PATH];
820 };
821
822 static BOOL CALLBACK enum_load_modW64_32(PCWSTR name, DWORD64 base, ULONG size,
823                                          PVOID user)
824 {
825     struct enum_load_modW64_32* x = user;
826     WideCharToMultiByte(CP_ACP, 0, name, -1, x->module, sizeof(x->module), NULL, NULL);
827     return x->cb(x->module, (DWORD)base, size, x->user);
828 }
829
830 BOOL  WINAPI EnumerateLoadedModules(HANDLE hProcess,
831                                     PENUMLOADED_MODULES_CALLBACK EnumLoadedModulesCallback,
832                                     PVOID UserContext)
833 {
834     struct enum_load_modW64_32  x;
835
836     x.cb = EnumLoadedModulesCallback;
837     x.user = UserContext;
838
839     return EnumerateLoadedModulesW64(hProcess, enum_load_modW64_32, &x);
840 }
841
842 /******************************************************************
843  *              EnumerateLoadedModulesW64 (DBGHELP.@)
844  *
845  */
846 BOOL  WINAPI EnumerateLoadedModulesW64(HANDLE hProcess,
847                                        PENUMLOADED_MODULES_CALLBACKW64 EnumLoadedModulesCallback,
848                                        PVOID UserContext)
849 {
850     HMODULE*    hMods;
851     WCHAR       baseW[256], modW[256];
852     DWORD       i, sz;
853     MODULEINFO  mi;
854
855     hMods = HeapAlloc(GetProcessHeap(), 0, 256 * sizeof(hMods[0]));
856     if (!hMods) return FALSE;
857
858     if (!EnumProcessModules(hProcess, hMods, 256 * sizeof(hMods[0]), &sz))
859     {
860         /* hProcess should also be a valid process handle !! */
861         FIXME("If this happens, bump the number in mod\n");
862         HeapFree(GetProcessHeap(), 0, hMods);
863         return FALSE;
864     }
865     sz /= sizeof(HMODULE);
866     for (i = 0; i < sz; i++)
867     {
868         if (!GetModuleInformation(hProcess, hMods[i], &mi, sizeof(mi)) ||
869             !GetModuleBaseNameW(hProcess, hMods[i], baseW, sizeof(baseW) / sizeof(WCHAR)))
870             continue;
871         module_fill_module(baseW, modW, sizeof(modW) / sizeof(CHAR));
872         EnumLoadedModulesCallback(modW, (DWORD_PTR)mi.lpBaseOfDll, mi.SizeOfImage,
873                                   UserContext);
874     }
875     HeapFree(GetProcessHeap(), 0, hMods);
876
877     return sz != 0 && i == sz;
878 }
879
880 /******************************************************************
881  *              SymGetModuleInfo (DBGHELP.@)
882  *
883  */
884 BOOL  WINAPI SymGetModuleInfo(HANDLE hProcess, DWORD dwAddr,
885                               PIMAGEHLP_MODULE ModuleInfo)
886 {
887     IMAGEHLP_MODULE     mi;
888     IMAGEHLP_MODULEW64  miw64;
889
890     if (sizeof(mi) < ModuleInfo->SizeOfStruct) FIXME("Wrong size\n");
891
892     miw64.SizeOfStruct = sizeof(miw64);
893     if (!SymGetModuleInfoW64(hProcess, dwAddr, &miw64)) return FALSE;
894
895     mi.SizeOfStruct  = miw64.SizeOfStruct;
896     mi.BaseOfImage   = miw64.BaseOfImage;
897     mi.ImageSize     = miw64.ImageSize;
898     mi.TimeDateStamp = miw64.TimeDateStamp;
899     mi.CheckSum      = miw64.CheckSum;
900     mi.NumSyms       = miw64.NumSyms;
901     mi.SymType       = miw64.SymType;
902     WideCharToMultiByte(CP_ACP, 0, miw64.ModuleName, -1,
903                         mi.ModuleName, sizeof(mi.ModuleName), NULL, NULL);
904     WideCharToMultiByte(CP_ACP, 0, miw64.ImageName, -1,
905                         mi.ImageName, sizeof(mi.ImageName), NULL, NULL);
906     WideCharToMultiByte(CP_ACP, 0, miw64.LoadedImageName, -1,
907                         mi.LoadedImageName, sizeof(mi.LoadedImageName), NULL, NULL);
908
909     memcpy(ModuleInfo, &mi, ModuleInfo->SizeOfStruct);
910
911     return TRUE;
912 }
913
914 /******************************************************************
915  *              SymGetModuleInfoW (DBGHELP.@)
916  *
917  */
918 BOOL  WINAPI SymGetModuleInfoW(HANDLE hProcess, DWORD dwAddr,
919                                PIMAGEHLP_MODULEW ModuleInfo)
920 {
921     IMAGEHLP_MODULEW64  miw64;
922     IMAGEHLP_MODULEW    miw;
923
924     if (sizeof(miw) < ModuleInfo->SizeOfStruct) FIXME("Wrong size\n");
925
926     miw64.SizeOfStruct = sizeof(miw64);
927     if (!SymGetModuleInfoW64(hProcess, dwAddr, &miw64)) return FALSE;
928
929     miw.SizeOfStruct  = miw64.SizeOfStruct;
930     miw.BaseOfImage   = miw64.BaseOfImage;
931     miw.ImageSize     = miw64.ImageSize;
932     miw.TimeDateStamp = miw64.TimeDateStamp;
933     miw.CheckSum      = miw64.CheckSum;
934     miw.NumSyms       = miw64.NumSyms;
935     miw.SymType       = miw64.SymType;
936     strcpyW(miw.ModuleName, miw64.ModuleName);
937     strcpyW(miw.ImageName, miw64.ImageName);
938     strcpyW(miw.LoadedImageName, miw64.LoadedImageName);
939     memcpy(ModuleInfo, &miw, ModuleInfo->SizeOfStruct);
940
941     return TRUE;
942 }
943
944 /******************************************************************
945  *              SymGetModuleInfo64 (DBGHELP.@)
946  *
947  */
948 BOOL  WINAPI SymGetModuleInfo64(HANDLE hProcess, DWORD64 dwAddr,
949                                 PIMAGEHLP_MODULE64 ModuleInfo)
950 {
951     IMAGEHLP_MODULE64   mi64;
952     IMAGEHLP_MODULEW64  miw64;
953
954     if (sizeof(mi64) < ModuleInfo->SizeOfStruct)
955     {
956         SetLastError(ERROR_MOD_NOT_FOUND); /* NOTE: native returns this error */
957         WARN("Wrong size %u\n", ModuleInfo->SizeOfStruct);
958         return FALSE;
959     }
960
961     miw64.SizeOfStruct = sizeof(miw64);
962     if (!SymGetModuleInfoW64(hProcess, dwAddr, &miw64)) return FALSE;
963
964     mi64.SizeOfStruct  = miw64.SizeOfStruct;
965     mi64.BaseOfImage   = miw64.BaseOfImage;
966     mi64.ImageSize     = miw64.ImageSize;
967     mi64.TimeDateStamp = miw64.TimeDateStamp;
968     mi64.CheckSum      = miw64.CheckSum;
969     mi64.NumSyms       = miw64.NumSyms;
970     mi64.SymType       = miw64.SymType;
971     WideCharToMultiByte(CP_ACP, 0, miw64.ModuleName, -1,
972                         mi64.ModuleName, sizeof(mi64.ModuleName), NULL, NULL);
973     WideCharToMultiByte(CP_ACP, 0, miw64.ImageName, -1,
974                         mi64.ImageName, sizeof(mi64.ImageName), NULL, NULL);
975     WideCharToMultiByte(CP_ACP, 0, miw64.LoadedImageName, -1,
976                         mi64.LoadedImageName, sizeof(mi64.LoadedImageName), NULL, NULL);
977     WideCharToMultiByte(CP_ACP, 0, miw64.LoadedPdbName, -1,
978                         mi64.LoadedPdbName, sizeof(mi64.LoadedPdbName), NULL, NULL);
979
980     mi64.CVSig         = miw64.CVSig;
981     WideCharToMultiByte(CP_ACP, 0, miw64.CVData, -1,
982                         mi64.CVData, sizeof(mi64.CVData), NULL, NULL);
983     mi64.PdbSig        = miw64.PdbSig;
984     mi64.PdbSig70      = miw64.PdbSig70;
985     mi64.PdbAge        = miw64.PdbAge;
986     mi64.PdbUnmatched  = miw64.PdbUnmatched;
987     mi64.DbgUnmatched  = miw64.DbgUnmatched;
988     mi64.LineNumbers   = miw64.LineNumbers;
989     mi64.GlobalSymbols = miw64.GlobalSymbols;
990     mi64.TypeInfo      = miw64.TypeInfo;
991     mi64.SourceIndexed = miw64.SourceIndexed;
992     mi64.Publics       = miw64.Publics;
993
994     memcpy(ModuleInfo, &mi64, ModuleInfo->SizeOfStruct);
995
996     return TRUE;
997 }
998
999 /******************************************************************
1000  *              SymGetModuleInfoW64 (DBGHELP.@)
1001  *
1002  */
1003 BOOL  WINAPI SymGetModuleInfoW64(HANDLE hProcess, DWORD64 dwAddr,
1004                                  PIMAGEHLP_MODULEW64 ModuleInfo)
1005 {
1006     struct process*     pcs = process_find_by_handle(hProcess);
1007     struct module*      module;
1008     IMAGEHLP_MODULEW64  miw64;
1009
1010     TRACE("%p %s %p\n", hProcess, wine_dbgstr_longlong(dwAddr), ModuleInfo);
1011
1012     if (!pcs) return FALSE;
1013     if (ModuleInfo->SizeOfStruct > sizeof(*ModuleInfo)) return FALSE;
1014     module = module_find_by_addr(pcs, dwAddr, DMT_UNKNOWN);
1015     if (!module) return FALSE;
1016
1017     miw64 = module->module;
1018
1019     /* update debug information from container if any */
1020     if (module->module.SymType == SymNone)
1021     {
1022         module = module_get_container(pcs, module);
1023         if (module && module->module.SymType != SymNone)
1024         {
1025             miw64.SymType = module->module.SymType;
1026             miw64.NumSyms = module->module.NumSyms;
1027         }
1028     }
1029     memcpy(ModuleInfo, &miw64, ModuleInfo->SizeOfStruct);
1030     return TRUE;
1031 }
1032
1033 /***********************************************************************
1034  *              SymGetModuleBase (DBGHELP.@)
1035  */
1036 DWORD WINAPI SymGetModuleBase(HANDLE hProcess, DWORD dwAddr)
1037 {
1038     DWORD64     ret;
1039
1040     ret = SymGetModuleBase64(hProcess, dwAddr);
1041     return validate_addr64(ret) ? ret : 0;
1042 }
1043
1044 /***********************************************************************
1045  *              SymGetModuleBase64 (DBGHELP.@)
1046  */
1047 DWORD64 WINAPI SymGetModuleBase64(HANDLE hProcess, DWORD64 dwAddr)
1048 {
1049     struct process*     pcs = process_find_by_handle(hProcess);
1050     struct module*      module;
1051
1052     if (!pcs) return 0;
1053     module = module_find_by_addr(pcs, dwAddr, DMT_UNKNOWN);
1054     if (!module) return 0;
1055     return module->module.BaseOfImage;
1056 }
1057
1058 /******************************************************************
1059  *              module_reset_debug_info
1060  * Removes any debug information linked to a given module.
1061  */
1062 void module_reset_debug_info(struct module* module)
1063 {
1064     module->sortlist_valid = TRUE;
1065     module->sorttab_size = 0;
1066     module->addr_sorttab = NULL;
1067     module->num_sorttab = module->num_symbols = 0;
1068     hash_table_destroy(&module->ht_symbols);
1069     module->ht_symbols.num_buckets = 0;
1070     module->ht_symbols.buckets = NULL;
1071     hash_table_destroy(&module->ht_types);
1072     module->ht_types.num_buckets = 0;
1073     module->ht_types.buckets = NULL;
1074     module->vtypes.num_elts = 0;
1075     hash_table_destroy(&module->ht_symbols);
1076     module->sources_used = module->sources_alloc = 0;
1077     module->sources = NULL;
1078 }
1079
1080 /******************************************************************
1081  *              SymRefreshModuleList (DBGHELP.@)
1082  */
1083 BOOL WINAPI SymRefreshModuleList(HANDLE hProcess)
1084 {
1085     struct process*     pcs;
1086
1087     TRACE("(%p)\n", hProcess);
1088
1089     if (!(pcs = process_find_by_handle(hProcess))) return FALSE;
1090
1091     return refresh_module_list(pcs);
1092 }
1093
1094 /***********************************************************************
1095  *              SymFunctionTableAccess (DBGHELP.@)
1096  */
1097 PVOID WINAPI SymFunctionTableAccess(HANDLE hProcess, DWORD AddrBase)
1098 {
1099     return SymFunctionTableAccess64(hProcess, AddrBase);
1100 }
1101
1102 /***********************************************************************
1103  *              SymFunctionTableAccess64 (DBGHELP.@)
1104  */
1105 PVOID WINAPI SymFunctionTableAccess64(HANDLE hProcess, DWORD64 AddrBase)
1106 {
1107     struct process*     pcs = process_find_by_handle(hProcess);
1108     struct module*      module;
1109
1110     if (!pcs || !dbghelp_current_cpu->find_runtime_function) return NULL;
1111     module = module_find_by_addr(pcs, AddrBase, DMT_UNKNOWN);
1112     if (!module) return NULL;
1113
1114     return dbghelp_current_cpu->find_runtime_function(module, AddrBase);
1115 }