1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
3 * File module.c - module handling for the wine debugger
5 * Copyright (C) 1993, Eric Youngdale.
20 /***********************************************************************
21 * Creates and links a new module to the current process
24 DBG_MODULE
* DEBUG_AddModule(const char* name
, int type
,
25 void* mod_addr
, HMODULE hmodule
)
29 if (!(wmod
= (DBG_MODULE
*)DBG_alloc(sizeof(*wmod
))))
32 memset(wmod
, 0, sizeof(*wmod
));
34 wmod
->next
= DEBUG_CurrProcess
->modules
;
35 wmod
->status
= DM_STATUS_NEW
;
37 wmod
->load_addr
= mod_addr
;
38 wmod
->handle
= hmodule
;
39 wmod
->dbg_index
= DEBUG_CurrProcess
->next_index
;
40 wmod
->module_name
= DBG_strdup(name
);
41 DEBUG_CurrProcess
->modules
= wmod
;
46 /***********************************************************************
47 * DEBUG_FindModuleByName
50 DBG_MODULE
* DEBUG_FindModuleByName(const char* name
, int type
)
54 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
55 if ((type
== DM_TYPE_UNKNOWN
|| type
== wmod
->type
) &&
56 !strcasecmp(name
, wmod
->module_name
)) break;
61 /***********************************************************************
62 * DEBUG_FindModuleByAddr
64 * either the addr where module is loaded, or any address inside the
67 DBG_MODULE
* DEBUG_FindModuleByAddr(void* addr
, int type
)
70 DBG_MODULE
* res
= NULL
;
72 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
73 if ((type
== DM_TYPE_UNKNOWN
|| type
== wmod
->type
) &&
74 (u_long
)addr
>= (u_long
)wmod
->load_addr
&&
75 (!res
|| res
->load_addr
< wmod
->load_addr
))
81 /***********************************************************************
82 * DEBUG_FindModuleByHandle
84 DBG_MODULE
* DEBUG_FindModuleByHandle(HANDLE handle
, int type
)
88 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
89 if ((type
== DM_TYPE_UNKNOWN
|| type
== wmod
->type
) && handle
== wmod
->handle
) break;
94 /***********************************************************************
95 * DEBUG_GetProcessMainModule
97 DBG_MODULE
* DEBUG_GetProcessMainModule(DBG_PROCESS
* process
)
101 if (!process
) return NULL
;
103 /* main module is the first to be loaded on a given process, so it's the last on
105 for (wmod
= process
->modules
; wmod
&& wmod
->next
; wmod
= wmod
->next
);
109 /***********************************************************************
110 * DEBUG_RegisterELFModule
112 * ELF modules are also entered into the list - this is so that we
113 * can make 'info shared' types of displays possible.
115 DBG_MODULE
* DEBUG_RegisterELFModule(u_long load_addr
, const char* name
)
117 DBG_MODULE
* wmod
= DEBUG_AddModule(name
, DM_TYPE_ELF
, (void*)load_addr
, 0);
119 if (!wmod
) return NULL
;
121 wmod
->status
= DM_STATUS_LOADED
;
122 DEBUG_CurrProcess
->next_index
++;
127 /***********************************************************************
128 * DEBUG_RegisterPEModule
131 DBG_MODULE
* DEBUG_RegisterPEModule(HMODULE hModule
, u_long load_addr
, const char *module_name
)
133 DBG_MODULE
* wmod
= DEBUG_AddModule(module_name
, DM_TYPE_PE
, (void*)load_addr
, hModule
);
135 if (!wmod
) return NULL
;
137 DEBUG_CurrProcess
->next_index
++;
142 /***********************************************************************
143 * DEBUG_RegisterNEModule
146 DBG_MODULE
* DEBUG_RegisterNEModule(HMODULE hModule
, void* load_addr
, const char *module_name
)
148 DBG_MODULE
* wmod
= DEBUG_AddModule(module_name
, DM_TYPE_NE
, load_addr
, hModule
);
150 if (!wmod
) return NULL
;
152 wmod
->status
= DM_STATUS_LOADED
;
153 DEBUG_CurrProcess
->next_index
++;
158 /***********************************************************************
161 * Helper function fo DEBUG_LoadModuleEPs16:
162 * finds the address of a given entry point from a given module
164 static BOOL
DEBUG_GetEP16(char* moduleAddr
, const NE_MODULE
* module
,
165 WORD ordinal
, DBG_ADDR
* addr
)
172 bundle
.next
= module
->entry_table
;
176 idx
= moduleAddr
+ bundle
.next
;
177 if (!DEBUG_READ_MEM_VERBOSE(idx
, &bundle
, sizeof(bundle
)))
179 } while ((ordinal
< bundle
.first
+ 1) || (ordinal
> bundle
.last
));
181 if (!DEBUG_READ_MEM_VERBOSE((char*)idx
+ sizeof(ET_BUNDLE
) +
182 (ordinal
- bundle
.first
- 1) * sizeof(ET_ENTRY
),
183 &entry
, sizeof(ET_ENTRY
)))
186 addr
->seg
= entry
.segnum
;
187 addr
->off
= entry
.offs
;
189 if (addr
->seg
== 0xfe) addr
->seg
= 0xffff; /* constant entry */
191 if (!DEBUG_READ_MEM_VERBOSE(moduleAddr
+ module
->seg_table
+
192 sizeof(ste
) * (addr
->seg
- 1),
195 addr
->seg
= GlobalHandleToSel16(ste
.hSeg
);
200 /***********************************************************************
203 * Load the entry points of a Win16 module into the hash table.
205 static void DEBUG_LoadModule16(HMODULE hModule
, NE_MODULE
* module
, char* moduleAddr
, const char* name
)
208 BYTE buf
[1 + 256 + 2];
213 wmod
= DEBUG_RegisterNEModule(hModule
, moduleAddr
, name
);
216 value
.cookie
= DV_TARGET
;
220 cpnt
= moduleAddr
+ module
->name_table
;
222 /* First search the resident names */
224 /* skip module name */
225 if (!DEBUG_READ_MEM_VERBOSE(cpnt
, buf
, sizeof(buf
)) || !buf
[0])
227 cpnt
+= 1 + buf
[0] + sizeof(WORD
);
229 while (DEBUG_READ_MEM_VERBOSE(cpnt
, buf
, sizeof(buf
)) && buf
[0]) {
230 sprintf(epname
, "%s.%.*s", name
, buf
[0], &buf
[1]);
231 if (DEBUG_GetEP16(moduleAddr
, module
, *(WORD
*)&buf
[1 + buf
[0]], &value
.addr
)) {
232 DEBUG_AddSymbol(epname
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
234 cpnt
+= buf
[0] + 1 + sizeof(WORD
);
237 /* Now search the non-resident names table */
238 if (!module
->nrname_handle
) return; /* No non-resident table */
239 cpnt
= (char *)GlobalLock16(module
->nrname_handle
);
240 while (DEBUG_READ_MEM_VERBOSE(cpnt
, buf
, sizeof(buf
)) && buf
[0]) {
241 sprintf(epname
, "%s.%.*s", name
, buf
[0], &buf
[1]);
242 if (DEBUG_GetEP16(moduleAddr
, module
, *(WORD
*)&buf
[1 + buf
[0]], &value
.addr
)) {
243 DEBUG_AddSymbol(epname
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
245 cpnt
+= buf
[0] + 1 + sizeof(WORD
);
247 GlobalUnlock16(module
->nrname_handle
);
251 /***********************************************************************
254 void DEBUG_LoadModule32(const char* name
, HANDLE hFile
, DWORD base
)
260 IMAGE_NT_HEADERS pe_header
;
262 IMAGE_SECTION_HEADER pe_seg
;
264 IMAGE_DATA_DIRECTORY dir
;
269 /* FIXME: we make the assumption that hModule == base */
270 wmod
= DEBUG_RegisterPEModule((HMODULE
)base
, base
, name
);
272 DEBUG_Printf(DBG_CHN_TRACE
, "Registring 32bit DLL '%s' at %08lx\n", name
, base
);
275 value
.cookie
= DV_TARGET
;
280 if (!DEBUG_READ_MEM_VERBOSE((void*)(base
+ OFFSET_OF(IMAGE_DOS_HEADER
, e_lfanew
)),
281 &pe_header_ofs
, sizeof(pe_header_ofs
)) ||
282 !DEBUG_READ_MEM_VERBOSE((void*)(base
+ pe_header_ofs
),
283 &pe_header
, sizeof(pe_header
)))
287 DEBUG_RegisterStabsDebugInfo(wmod
, hFile
, &pe_header
, pe_header_ofs
);
288 DEBUG_RegisterMSCDebugInfo(wmod
, hFile
, &pe_header
, pe_header_ofs
);
291 /* Add start of DLL */
292 value
.addr
.off
= base
;
293 if ((prefix
= strrchr( name
, '\\' ))) prefix
++;
296 DEBUG_AddSymbol(prefix
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
298 /* Add entry point */
299 wsnprintf(buffer
, sizeof(buffer
), "%s.EntryPoint", prefix
);
300 value
.addr
.off
= base
+ pe_header
.OptionalHeader
.AddressOfEntryPoint
;
301 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
303 /* Add start of sections */
304 pe_seg_ofs
= pe_header_ofs
+ OFFSET_OF(IMAGE_NT_HEADERS
, OptionalHeader
) +
305 pe_header
.FileHeader
.SizeOfOptionalHeader
;
307 for (i
= 0; i
< pe_header
.FileHeader
.NumberOfSections
; i
++, pe_seg_ofs
+= sizeof(pe_seg
)) {
308 if (!DEBUG_READ_MEM_VERBOSE((void*)(base
+ pe_seg_ofs
), &pe_seg
, sizeof(pe_seg
)))
310 wsnprintf(buffer
, sizeof(buffer
), "%s.%s", prefix
, pe_seg
.Name
);
311 value
.addr
.off
= base
+ pe_seg
.VirtualAddress
;
312 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
315 /* Add exported functions */
316 dir_ofs
= pe_header_ofs
+
317 OFFSET_OF(IMAGE_NT_HEADERS
,
318 OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_EXPORT
]);
319 if (DEBUG_READ_MEM_VERBOSE((void*)(base
+ dir_ofs
), &dir
, sizeof(dir
)) && dir
.Size
) {
320 IMAGE_EXPORT_DIRECTORY exports
;
321 WORD
* ordinals
= NULL
;
322 void** functions
= NULL
;
326 if (DEBUG_READ_MEM_VERBOSE((void*)(base
+ dir
.VirtualAddress
),
327 &exports
, sizeof(exports
)) &&
329 ((functions
= DBG_alloc(sizeof(functions
[0]) * exports
.NumberOfFunctions
))) &&
330 DEBUG_READ_MEM_VERBOSE((void*)(base
+ (DWORD
)exports
.AddressOfFunctions
),
331 functions
, sizeof(functions
[0]) * exports
.NumberOfFunctions
) &&
333 ((ordinals
= DBG_alloc(sizeof(ordinals
[0]) * exports
.NumberOfNames
))) &&
334 DEBUG_READ_MEM_VERBOSE((void*)(base
+ (DWORD
)exports
.AddressOfNameOrdinals
),
335 ordinals
, sizeof(ordinals
[0]) * exports
.NumberOfNames
) &&
337 ((names
= DBG_alloc(sizeof(names
[0]) * exports
.NumberOfNames
))) &&
338 DEBUG_READ_MEM_VERBOSE((void*)(base
+ (DWORD
)exports
.AddressOfNames
),
339 names
, sizeof(names
[0]) * exports
.NumberOfNames
)) {
341 for (i
= 0; i
< exports
.NumberOfNames
; i
++) {
343 !DEBUG_READ_MEM_VERBOSE((void*)(base
+ names
[i
]), bufstr
, sizeof(bufstr
)))
345 bufstr
[sizeof(bufstr
) - 1] = 0;
346 wsnprintf(buffer
, sizeof(buffer
), "%s.%s", prefix
, bufstr
);
347 value
.addr
.off
= base
+ (DWORD
)functions
[ordinals
[i
]];
348 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
351 for (i
= 0; i
< exports
.NumberOfFunctions
; i
++) {
352 if (!functions
[i
]) continue;
353 /* Check if we already added it with a name */
354 for (j
= 0; j
< exports
.NumberOfNames
; j
++)
355 if ((ordinals
[j
] == i
) && names
[j
]) break;
356 if (j
< exports
.NumberOfNames
) continue;
357 wsnprintf(buffer
, sizeof(buffer
), "%s.%ld", prefix
, i
+ exports
.Base
);
358 value
.addr
.off
= base
+ (DWORD
)functions
[i
];
359 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
368 /***********************************************************************
369 * DEBUG_LoadEntryPoints
371 * Load the entry points of all the modules into the hash table.
373 int DEBUG_LoadEntryPoints(const char* pfx
)
376 /* FIXME: with address space separation in space, this is plain wrong
377 * it requires the 16 bit WOW debugging interface...
386 /* FIXME: we assume that a module is never removed from memory */
387 /* FIXME: this is (currently plain wrong when debugger is started by
388 * attaching to an existing program => the 16 bit modules will
389 * not be shared... not much to do on debugger side... sigh
391 if (ModuleFirst16(&entry
)) do {
392 if (DEBUG_FindModuleByName(entry
.szModule
, DM_TYPE_UNKNOWN
) ||
393 !(moduleAddr
= NE_GetPtr(entry
.hModule
)) ||
394 !DEBUG_READ_MEM_VERBOSE(moduleAddr
, &module
, sizeof(module
)) ||
395 (module
.flags
& NE_FFLAGS_WIN32
) /* NE module */)
398 if (pfx
) DEBUG_Printf(DBG_CHN_MESG
, pfx
);
399 DEBUG_Printf(DBG_CHN_MESG
, " ");
400 rowcount
= 3 + (pfx
? strlen(pfx
) : 0);
404 len
= strlen(entry
.szModule
);
405 if ((rowcount
+ len
) > 76) {
406 DEBUG_Printf(DBG_CHN_MESG
, "\n ");
409 DEBUG_Printf(DBG_CHN_MESG
, " %s", entry
.szModule
);
412 DEBUG_LoadModule16(entry
.hModule
, &module
, moduleAddr
, entry
.szModule
);
413 } while (ModuleNext16(&entry
));
416 if (first
) DEBUG_Printf(DBG_CHN_MESG
, "\n");
420 /***********************************************************************
423 * Display shared libarary information.
425 void DEBUG_InfoShare(void)
430 DEBUG_Printf(DBG_CHN_MESG
, "Address\t\tModule\tName\n");
432 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
433 switch (wmod
->type
) {
434 case DM_TYPE_NE
: xtype
= "NE"; break;
435 case DM_TYPE_PE
: xtype
= "PE"; break;
436 case DM_TYPE_ELF
: xtype
= "ELF"; break;
437 default: xtype
= "???"; break;
439 DEBUG_Printf(DBG_CHN_MESG
, "0x%8.8x\t(%s)\t%s\n", (unsigned int)wmod
->load_addr
,
440 xtype
, wmod
->module_name
);
444 static const char* DEBUG_GetModuleType(int type
)
447 case DM_TYPE_NE
: return "NE";
448 case DM_TYPE_PE
: return "PE";
449 case DM_TYPE_ELF
: return "ELF";
450 default: return "???";;
454 static const char* DEBUG_GetModuleStatus(int status
)
457 case DM_STATUS_NEW
: return "deferred";
458 case DM_STATUS_LOADED
: return "ok";
459 case DM_STATUS_ERROR
: return "error";
460 default: return "???";
464 /***********************************************************************
466 * Display information about a given module (DLL or EXE)
468 void DEBUG_DumpModule(DWORD mod
)
472 if (!(wmod
= DEBUG_FindModuleByHandle(mod
, DM_TYPE_UNKNOWN
)) &&
473 !(wmod
= DEBUG_FindModuleByAddr((void*)mod
, DM_TYPE_UNKNOWN
))) {
474 DEBUG_Printf(DBG_CHN_MESG
, "'0x%08lx' is not a valid module handle or address\n", mod
);
478 DEBUG_Printf(DBG_CHN_MESG
, "Module '%s' (handle=0x%08x) at 0x%8.8x (%s/%s)\n",
479 wmod
->module_name
, wmod
->handle
, (unsigned int)wmod
->load_addr
,
480 DEBUG_GetModuleType(wmod
->type
), DEBUG_GetModuleStatus(wmod
->status
));
483 /***********************************************************************
486 * Display information about all modules (DLLs and EXEs)
488 void DEBUG_WalkModules(void)
493 DEBUG_Printf(DBG_CHN_MESG
, "Address\t\tModule\tName\n");
495 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
496 switch (wmod
->type
) {
497 case DM_TYPE_NE
: xtype
= "NE"; break;
498 case DM_TYPE_PE
: xtype
= "PE"; break;
499 case DM_TYPE_ELF
: continue;
500 default: xtype
= "???"; break;
503 DEBUG_Printf(DBG_CHN_MESG
, "0x%8.8x\t(%s)\t%s\n",
504 (unsigned int)wmod
->load_addr
, DEBUG_GetModuleType(wmod
->type
),