1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
3 * File module.c - module handling for the wine debugger
5 * Copyright (C) 1993, Eric Youngdale.
18 /***********************************************************************
19 * Creates and links a new module to the current process
22 DBG_MODULE
* DEBUG_AddModule(const char* name
, int type
,
23 void* mod_addr
, HMODULE hmodule
)
27 if (!(wmod
= (DBG_MODULE
*)DBG_alloc(sizeof(*wmod
))))
30 memset(wmod
, 0, sizeof(*wmod
));
32 wmod
->next
= DEBUG_CurrProcess
->modules
;
33 wmod
->status
= DM_STATUS_NEW
;
35 wmod
->load_addr
= mod_addr
;
36 wmod
->handle
= hmodule
;
37 wmod
->dbg_index
= DEBUG_CurrProcess
->next_index
;
38 wmod
->module_name
= DBG_strdup(name
);
39 DEBUG_CurrProcess
->modules
= wmod
;
44 /***********************************************************************
45 * DEBUG_FindModuleByName
48 DBG_MODULE
* DEBUG_FindModuleByName(const char* name
, int type
)
52 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
53 if ((type
== DM_TYPE_UNKNOWN
|| type
== wmod
->type
) &&
54 !strcasecmp(name
, wmod
->module_name
)) break;
59 /***********************************************************************
60 * DEBUG_FindModuleByAddr
62 * either the addr where module is loaded, or any address inside the
65 DBG_MODULE
* DEBUG_FindModuleByAddr(void* addr
, int type
)
68 DBG_MODULE
* res
= NULL
;
70 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
71 if ((type
== DM_TYPE_UNKNOWN
|| type
== wmod
->type
) &&
72 (u_long
)addr
>= (u_long
)wmod
->load_addr
&&
73 (!res
|| res
->load_addr
< wmod
->load_addr
))
79 /***********************************************************************
80 * DEBUG_FindModuleByHandle
82 DBG_MODULE
* DEBUG_FindModuleByHandle(HANDLE handle
, int type
)
86 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
87 if ((type
== DM_TYPE_UNKNOWN
|| type
== wmod
->type
) && handle
== wmod
->handle
) break;
92 /***********************************************************************
93 * DEBUG_RegisterELFModule
95 * ELF modules are also entered into the list - this is so that we
96 * can make 'info shared' types of displays possible.
98 DBG_MODULE
* DEBUG_RegisterELFModule(u_long load_addr
, const char* name
)
100 DBG_MODULE
* wmod
= DEBUG_AddModule(name
, DM_TYPE_ELF
, (void*)load_addr
, 0);
102 if (!wmod
) return NULL
;
104 wmod
->status
= DM_STATUS_LOADED
;
105 DEBUG_CurrProcess
->next_index
++;
110 /***********************************************************************
111 * DEBUG_RegisterPEModule
114 DBG_MODULE
* DEBUG_RegisterPEModule(HMODULE hModule
, u_long load_addr
, const char *module_name
)
116 DBG_MODULE
* wmod
= DEBUG_AddModule(module_name
, DM_TYPE_PE
, (void*)load_addr
, hModule
);
118 if (!wmod
) return NULL
;
120 DEBUG_CurrProcess
->next_index
++;
125 /***********************************************************************
126 * DEBUG_RegisterNEModule
129 DBG_MODULE
* DEBUG_RegisterNEModule(HMODULE hModule
, void* load_addr
, const char *module_name
)
131 DBG_MODULE
* wmod
= DEBUG_AddModule(module_name
, DM_TYPE_NE
, load_addr
, hModule
);
133 if (!wmod
) return NULL
;
135 wmod
->status
= DM_STATUS_LOADED
;
136 DEBUG_CurrProcess
->next_index
++;
140 /***********************************************************************
143 * Helper function fo DEBUG_LoadModuleEPs16:
144 * finds the address of a given entry point from a given module
146 static BOOL
DEBUG_GetEP16(char* moduleAddr
, const NE_MODULE
* module
,
147 WORD ordinal
, DBG_ADDR
* addr
)
154 bundle
.next
= module
->entry_table
;
158 idx
= moduleAddr
+ bundle
.next
;
159 if (!DEBUG_READ_MEM_VERBOSE(idx
, &bundle
, sizeof(bundle
)))
161 } while ((ordinal
< bundle
.first
+ 1) || (ordinal
> bundle
.last
));
163 if (!DEBUG_READ_MEM_VERBOSE((char*)idx
+ sizeof(ET_BUNDLE
) +
164 (ordinal
- bundle
.first
- 1) * sizeof(ET_ENTRY
),
165 &entry
, sizeof(ET_ENTRY
)))
168 addr
->seg
= entry
.segnum
;
169 addr
->off
= entry
.offs
;
171 if (addr
->seg
== 0xfe) addr
->seg
= 0xffff; /* constant entry */
173 if (!DEBUG_READ_MEM_VERBOSE(moduleAddr
+ module
->seg_table
+
174 sizeof(ste
) * (addr
->seg
- 1),
177 addr
->seg
= GlobalHandleToSel16(ste
.hSeg
);
182 /***********************************************************************
185 * Load the entry points of a Win16 module into the hash table.
187 static void DEBUG_LoadModule16(HMODULE hModule
, NE_MODULE
* module
, char* moduleAddr
, const char* name
)
190 BYTE buf
[1 + 256 + 2];
195 wmod
= DEBUG_RegisterNEModule(hModule
, moduleAddr
, name
);
198 value
.cookie
= DV_TARGET
;
202 cpnt
= moduleAddr
+ module
->name_table
;
204 /* First search the resident names */
206 /* skip module name */
207 if (!DEBUG_READ_MEM_VERBOSE(cpnt
, buf
, sizeof(buf
)) || !buf
[0])
209 cpnt
+= 1 + buf
[0] + sizeof(WORD
);
211 while (DEBUG_READ_MEM_VERBOSE(cpnt
, buf
, sizeof(buf
)) && buf
[0]) {
212 sprintf(epname
, "%s.%.*s", name
, buf
[0], &buf
[1]);
213 if (DEBUG_GetEP16(moduleAddr
, module
, *(WORD
*)&buf
[1 + buf
[0]], &value
.addr
)) {
214 DEBUG_AddSymbol(epname
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
216 cpnt
+= buf
[0] + 1 + sizeof(WORD
);
219 /* Now search the non-resident names table */
220 if (!module
->nrname_handle
) return; /* No non-resident table */
221 cpnt
= (char *)GlobalLock16(module
->nrname_handle
);
222 while (DEBUG_READ_MEM_VERBOSE(cpnt
, buf
, sizeof(buf
)) && buf
[0]) {
223 sprintf(epname
, "%s.%.*s", name
, buf
[0], &buf
[1]);
224 if (DEBUG_GetEP16(moduleAddr
, module
, *(WORD
*)&buf
[1 + buf
[0]], &value
.addr
)) {
225 DEBUG_AddSymbol(epname
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
227 cpnt
+= buf
[0] + 1 + sizeof(WORD
);
229 GlobalUnlock16(module
->nrname_handle
);
232 /***********************************************************************
235 void DEBUG_LoadModule32(const char* name
, HANDLE hFile
, DWORD base
)
241 IMAGE_NT_HEADERS pe_header
;
243 IMAGE_SECTION_HEADER pe_seg
;
245 IMAGE_DATA_DIRECTORY dir
;
249 /* FIXME: we make the assumption that hModule == base */
250 wmod
= DEBUG_RegisterPEModule((HMODULE
)base
, base
, name
);
252 DEBUG_Printf(DBG_CHN_TRACE
, "Registring 32bit DLL '%s' at %08lx\n", name
, base
);
255 value
.cookie
= DV_TARGET
;
260 if (!DEBUG_READ_MEM_VERBOSE((void*)(base
+ OFFSET_OF(IMAGE_DOS_HEADER
, e_lfanew
)),
261 &pe_header_ofs
, sizeof(pe_header_ofs
)) ||
262 !DEBUG_READ_MEM_VERBOSE((void*)(base
+ pe_header_ofs
),
263 &pe_header
, sizeof(pe_header
)))
267 DEBUG_RegisterStabsDebugInfo(wmod
, hFile
, &pe_header
, pe_header_ofs
);
268 DEBUG_RegisterMSCDebugInfo(wmod
, hFile
, &pe_header
, pe_header_ofs
);
271 /* Add start of DLL */
272 value
.addr
.off
= base
;
273 DEBUG_AddSymbol(name
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
275 /* Add entry point */
276 sprintf(buffer
, "%s.EntryPoint", name
);
277 value
.addr
.off
= base
+ pe_header
.OptionalHeader
.AddressOfEntryPoint
;
278 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
280 /* Add start of sections */
281 pe_seg_ofs
= pe_header_ofs
+ OFFSET_OF(IMAGE_NT_HEADERS
, OptionalHeader
) +
282 pe_header
.FileHeader
.SizeOfOptionalHeader
;
284 for (i
= 0; i
< pe_header
.FileHeader
.NumberOfSections
; i
++, pe_seg_ofs
+= sizeof(pe_seg
)) {
285 if (!DEBUG_READ_MEM_VERBOSE((void*)(base
+ pe_seg_ofs
), &pe_seg
, sizeof(pe_seg
)))
287 sprintf(buffer
, "%s.%s", name
, pe_seg
.Name
);
288 value
.addr
.off
= base
+ pe_seg
.VirtualAddress
;
289 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
292 /* Add exported functions */
293 dir_ofs
= pe_header_ofs
+
294 OFFSET_OF(IMAGE_NT_HEADERS
,
295 OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_EXPORT
]);
296 if (DEBUG_READ_MEM_VERBOSE((void*)(base
+ dir_ofs
), &dir
, sizeof(dir
)) && dir
.Size
) {
297 IMAGE_EXPORT_DIRECTORY exports
;
298 WORD
* ordinals
= NULL
;
299 void** functions
= NULL
;
303 if (DEBUG_READ_MEM_VERBOSE((void*)(base
+ dir
.VirtualAddress
),
304 &exports
, sizeof(exports
)) &&
306 ((functions
= DBG_alloc(sizeof(functions
[0]) * exports
.NumberOfFunctions
))) &&
307 DEBUG_READ_MEM_VERBOSE((void*)(base
+ (DWORD
)exports
.AddressOfFunctions
),
308 functions
, sizeof(functions
[0]) * exports
.NumberOfFunctions
) &&
310 ((ordinals
= DBG_alloc(sizeof(ordinals
[0]) * exports
.NumberOfNames
))) &&
311 DEBUG_READ_MEM_VERBOSE((void*)(base
+ (DWORD
)exports
.AddressOfNameOrdinals
),
312 ordinals
, sizeof(ordinals
[0]) * exports
.NumberOfNames
) &&
314 ((names
= DBG_alloc(sizeof(names
[0]) * exports
.NumberOfNames
))) &&
315 DEBUG_READ_MEM_VERBOSE((void*)(base
+ (DWORD
)exports
.AddressOfNames
),
316 names
, sizeof(names
[0]) * exports
.NumberOfNames
)) {
318 for (i
= 0; i
< exports
.NumberOfNames
; i
++) {
320 !DEBUG_READ_MEM_VERBOSE((void*)(base
+ names
[i
]), bufstr
, sizeof(bufstr
)))
322 bufstr
[sizeof(bufstr
) - 1] = 0;
323 sprintf(buffer
, "%s.%s", name
, bufstr
);
324 value
.addr
.off
= base
+ (DWORD
)functions
[ordinals
[i
]];
325 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
328 for (i
= 0; i
< exports
.NumberOfFunctions
; i
++) {
329 if (!functions
[i
]) continue;
330 /* Check if we already added it with a name */
331 for (j
= 0; j
< exports
.NumberOfNames
; j
++)
332 if ((ordinals
[j
] == i
) && names
[j
]) break;
333 if (j
< exports
.NumberOfNames
) continue;
334 sprintf(buffer
, "%s.%ld", name
, i
+ exports
.Base
);
335 value
.addr
.off
= base
+ (DWORD
)functions
[i
];
336 DEBUG_AddSymbol(buffer
, &value
, NULL
, SYM_WIN32
| SYM_FUNC
);
345 /***********************************************************************
346 * DEBUG_LoadEntryPoints
348 * Load the entry points of all the modules into the hash table.
350 int DEBUG_LoadEntryPoints(const char* pfx
)
359 /* FIXME: we assume that a module is never removed from memory */
360 /* FIXME: this is (currently plain wrong when debugger is started by
361 * attaching to an existing program => the 16 bit modules will
362 * not be shared... not much to do on debugger side... sigh
364 if (ModuleFirst16(&entry
)) do {
365 if (DEBUG_FindModuleByName(entry
.szModule
, DM_TYPE_UNKNOWN
) ||
366 !(moduleAddr
= NE_GetPtr(entry
.hModule
)) ||
367 !DEBUG_READ_MEM_VERBOSE(moduleAddr
, &module
, sizeof(module
)) ||
368 (module
.flags
& NE_FFLAGS_WIN32
) /* NE module */)
371 if (pfx
) DEBUG_Printf(DBG_CHN_MESG
, pfx
);
372 DEBUG_Printf(DBG_CHN_MESG
, " ");
373 rowcount
= 3 + (pfx
? strlen(pfx
) : 0);
377 len
= strlen(entry
.szModule
);
378 if ((rowcount
+ len
) > 76) {
379 DEBUG_Printf(DBG_CHN_MESG
, "\n ");
382 DEBUG_Printf(DBG_CHN_MESG
, " %s", entry
.szModule
);
385 DEBUG_LoadModule16(entry
.hModule
, &module
, moduleAddr
, entry
.szModule
);
386 } while (ModuleNext16(&entry
));
388 if (first
) DEBUG_Printf(DBG_CHN_MESG
, "\n");
392 /***********************************************************************
395 * Display shared libarary information.
397 void DEBUG_InfoShare(void)
402 DEBUG_Printf(DBG_CHN_MESG
, "Address\t\tModule\tName\n");
404 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
405 switch (wmod
->type
) {
406 case DM_TYPE_NE
: xtype
= "NE"; break;
407 case DM_TYPE_PE
: xtype
= "PE"; break;
408 case DM_TYPE_ELF
: xtype
= "ELF"; break;
409 default: xtype
= "???"; break;
411 DEBUG_Printf(DBG_CHN_MESG
, "0x%8.8x\t(%s)\t%s\n", (unsigned int)wmod
->load_addr
,
412 xtype
, wmod
->module_name
);
416 static const char* DEBUG_GetModuleType(int type
)
419 case DM_TYPE_NE
: return "NE";
420 case DM_TYPE_PE
: return "PE";
421 case DM_TYPE_ELF
: return "ELF";
422 default: return "???";;
426 static const char* DEBUG_GetModuleStatus(int status
)
429 case DM_STATUS_NEW
: return "deferred";
430 case DM_STATUS_LOADED
: return "ok";
431 case DM_STATUS_ERROR
: return "error";
432 default: return "???";
436 /***********************************************************************
438 * Display information about a given module (DLL or EXE)
440 void DEBUG_DumpModule(DWORD mod
)
444 if (!(wmod
= DEBUG_FindModuleByHandle(mod
, DM_TYPE_UNKNOWN
)) &&
445 !(wmod
= DEBUG_FindModuleByAddr((void*)mod
, DM_TYPE_UNKNOWN
))) {
446 DEBUG_Printf(DBG_CHN_MESG
, "'0x%08lx' is not a valid module handle or address\n", mod
);
450 DEBUG_Printf(DBG_CHN_MESG
, "Module '%s' (handle=0x%08x) at 0x%8.8x (%s/%s)\n",
451 wmod
->module_name
, wmod
->handle
, (unsigned int)wmod
->load_addr
,
452 DEBUG_GetModuleType(wmod
->type
), DEBUG_GetModuleStatus(wmod
->status
));
455 /***********************************************************************
458 * Display information about all modules (DLLs and EXEs)
460 void DEBUG_WalkModules(void)
465 DEBUG_Printf(DBG_CHN_MESG
, "Address\t\tModule\tName\n");
467 for (wmod
= DEBUG_CurrProcess
->modules
; wmod
; wmod
= wmod
->next
) {
468 switch (wmod
->type
) {
469 case DM_TYPE_NE
: xtype
= "NE"; break;
470 case DM_TYPE_PE
: xtype
= "PE"; break;
471 case DM_TYPE_ELF
: continue;
472 default: xtype
= "???"; break;
475 DEBUG_Printf(DBG_CHN_MESG
, "0x%8.8x\t(%s)\t%s\n",
476 (unsigned int)wmod
->load_addr
, DEBUG_GetModuleType(wmod
->type
),