2 * File pe_module.c - handle PE module information
4 * Copyright (C) 1996, Eric Youngdale.
5 * Copyright (C) 1999-2000, Ulrich Weigand.
6 * Copyright (C) 2004-2007, Eric Pouech.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
32 #include "dbghelp_private.h"
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp
);
38 /******************************************************************
41 * look for stabs information in PE header (it's how the mingw compiler provides
42 * its debugging information)
44 static BOOL
pe_load_stabs(const struct process
* pcs
, struct module
* module
,
45 void* mapping
, IMAGE_NT_HEADERS
* nth
)
47 IMAGE_SECTION_HEADER
* section
;
48 int i
, stabsize
= 0, stabstrsize
= 0;
49 unsigned int stabs
= 0, stabstr
= 0;
52 section
= (IMAGE_SECTION_HEADER
*)
53 ((char*)&nth
->OptionalHeader
+ nth
->FileHeader
.SizeOfOptionalHeader
);
54 for (i
= 0; i
< nth
->FileHeader
.NumberOfSections
; i
++, section
++)
56 if (!strcasecmp((const char*)section
->Name
, ".stab"))
58 stabs
= section
->VirtualAddress
;
59 stabsize
= section
->SizeOfRawData
;
61 else if (!strncasecmp((const char*)section
->Name
, ".stabstr", 8))
63 stabstr
= section
->VirtualAddress
;
64 stabstrsize
= section
->SizeOfRawData
;
68 if (stabstrsize
&& stabsize
)
70 ret
= stabs_parse(module
,
71 module
->module
.BaseOfImage
- nth
->OptionalHeader
.ImageBase
,
72 RtlImageRvaToVa(nth
, mapping
, stabs
, NULL
),
74 RtlImageRvaToVa(nth
, mapping
, stabstr
, NULL
),
78 TRACE("%s the STABS debug info\n", ret
? "successfully loaded" : "failed to load");
82 /******************************************************************
87 static BOOL
pe_load_dbg_file(const struct process
* pcs
, struct module
* module
,
88 const char* dbg_name
, DWORD timestamp
)
91 HANDLE hFile
= INVALID_HANDLE_VALUE
, hMap
= 0;
92 const BYTE
* dbg_mapping
= NULL
;
95 TRACE("Processing DBG file %s\n", debugstr_a(dbg_name
));
97 if (path_find_symbol_file(pcs
, dbg_name
, NULL
, timestamp
, 0, tmp
) &&
98 (hFile
= CreateFileA(tmp
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
99 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
)) != INVALID_HANDLE_VALUE
&&
100 ((hMap
= CreateFileMappingW(hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
)) != 0) &&
101 ((dbg_mapping
= MapViewOfFile(hMap
, FILE_MAP_READ
, 0, 0, 0)) != NULL
))
103 const IMAGE_SEPARATE_DEBUG_HEADER
* hdr
;
104 const IMAGE_SECTION_HEADER
* sectp
;
105 const IMAGE_DEBUG_DIRECTORY
* dbg
;
107 hdr
= (const IMAGE_SEPARATE_DEBUG_HEADER
*)dbg_mapping
;
108 /* section headers come immediately after debug header */
109 sectp
= (const IMAGE_SECTION_HEADER
*)(hdr
+ 1);
110 /* and after that and the exported names comes the debug directory */
111 dbg
= (const IMAGE_DEBUG_DIRECTORY
*)
112 (dbg_mapping
+ sizeof(*hdr
) +
113 hdr
->NumberOfSections
* sizeof(IMAGE_SECTION_HEADER
) +
114 hdr
->ExportedNamesSize
);
116 ret
= pe_load_debug_directory(pcs
, module
, dbg_mapping
, sectp
,
117 hdr
->NumberOfSections
, dbg
,
118 hdr
->DebugDirectorySize
/ sizeof(*dbg
));
121 ERR("Couldn't find .DBG file %s (%s)\n", debugstr_a(dbg_name
), debugstr_a(tmp
));
123 if (dbg_mapping
) UnmapViewOfFile(dbg_mapping
);
124 if (hMap
) CloseHandle(hMap
);
125 if (hFile
!= INVALID_HANDLE_VALUE
) CloseHandle(hFile
);
129 /******************************************************************
130 * pe_load_msc_debug_info
132 * Process MSC debug information in PE file.
134 static BOOL
pe_load_msc_debug_info(const struct process
* pcs
,
135 struct module
* module
,
136 void* mapping
, IMAGE_NT_HEADERS
* nth
)
139 const IMAGE_DATA_DIRECTORY
* dir
;
140 const IMAGE_DEBUG_DIRECTORY
*dbg
= NULL
;
143 /* Read in debug directory */
144 dir
= nth
->OptionalHeader
.DataDirectory
+ IMAGE_DIRECTORY_ENTRY_DEBUG
;
145 nDbg
= dir
->Size
/ sizeof(IMAGE_DEBUG_DIRECTORY
);
146 if (!nDbg
) return FALSE
;
148 dbg
= RtlImageRvaToVa(nth
, mapping
, dir
->VirtualAddress
, NULL
);
150 /* Parse debug directory */
151 if (nth
->FileHeader
.Characteristics
& IMAGE_FILE_DEBUG_STRIPPED
)
153 /* Debug info is stripped to .DBG file */
154 const IMAGE_DEBUG_MISC
* misc
= (const IMAGE_DEBUG_MISC
*)
155 ((const char*)mapping
+ dbg
->PointerToRawData
);
157 if (nDbg
!= 1 || dbg
->Type
!= IMAGE_DEBUG_TYPE_MISC
||
158 misc
->DataType
!= IMAGE_DEBUG_MISC_EXENAME
)
160 WINE_ERR("-Debug info stripped, but no .DBG file in module %s\n",
161 debugstr_w(module
->module
.ModuleName
));
165 ret
= pe_load_dbg_file(pcs
, module
, (const char*)misc
->Data
, nth
->FileHeader
.TimeDateStamp
);
170 const IMAGE_SECTION_HEADER
*sectp
= (const IMAGE_SECTION_HEADER
*)((const char*)&nth
->OptionalHeader
+ nth
->FileHeader
.SizeOfOptionalHeader
);
171 /* Debug info is embedded into PE module */
172 ret
= pe_load_debug_directory(pcs
, module
, mapping
, sectp
,
173 nth
->FileHeader
.NumberOfSections
, dbg
, nDbg
);
179 /***********************************************************************
180 * pe_load_export_debug_info
182 static BOOL
pe_load_export_debug_info(const struct process
* pcs
,
183 struct module
* module
,
184 void* mapping
, IMAGE_NT_HEADERS
* nth
)
187 const IMAGE_EXPORT_DIRECTORY
* exports
;
188 DWORD base
= module
->module
.BaseOfImage
;
191 if (dbghelp_options
& SYMOPT_NO_PUBLICS
) return TRUE
;
194 /* Add start of DLL (better use the (yet unimplemented) Exe SymTag for this) */
195 /* FIXME: module.ModuleName isn't correctly set yet if it's passed in SymLoadModule */
196 symt_new_public(module
, NULL
, module
->module
.ModuleName
, base
, 1,
197 TRUE
/* FIXME */, TRUE
/* FIXME */);
200 /* Add entry point */
201 symt_new_public(module
, NULL
, "EntryPoint",
202 base
+ nth
->OptionalHeader
.AddressOfEntryPoint
, 1,
205 /* FIXME: we'd better store addresses linked to sections rather than
207 IMAGE_SECTION_HEADER
* section
;
208 /* Add start of sections */
209 section
= (IMAGE_SECTION_HEADER
*)
210 ((char*)&nth
->OptionalHeader
+ nth
->FileHeader
.SizeOfOptionalHeader
);
211 for (i
= 0; i
< nth
->FileHeader
.NumberOfSections
; i
++, section
++)
213 symt_new_public(module
, NULL
, section
->Name
,
214 RtlImageRvaToVa(nth
, mapping
, section
->VirtualAddress
, NULL
),
215 1, TRUE
/* FIXME */, TRUE
/* FIXME */);
219 /* Add exported functions */
220 if ((exports
= RtlImageDirectoryEntryToData(mapping
, FALSE
,
221 IMAGE_DIRECTORY_ENTRY_EXPORT
, &size
)))
223 const WORD
* ordinals
= NULL
;
224 const DWORD_PTR
* functions
= NULL
;
225 const DWORD
* names
= NULL
;
229 functions
= RtlImageRvaToVa(nth
, mapping
, exports
->AddressOfFunctions
, NULL
);
230 ordinals
= RtlImageRvaToVa(nth
, mapping
, exports
->AddressOfNameOrdinals
, NULL
);
231 names
= RtlImageRvaToVa(nth
, mapping
, exports
->AddressOfNames
, NULL
);
233 if (functions
&& ordinals
&& names
)
235 for (i
= 0; i
< exports
->NumberOfNames
; i
++)
237 if (!names
[i
]) continue;
238 symt_new_public(module
, NULL
,
239 RtlImageRvaToVa(nth
, mapping
, names
[i
], NULL
),
240 base
+ functions
[ordinals
[i
]],
241 1, TRUE
/* FIXME */, TRUE
/* FIXME */);
244 for (i
= 0; i
< exports
->NumberOfFunctions
; i
++)
246 if (!functions
[i
]) continue;
247 /* Check if we already added it with a name */
248 for (j
= 0; j
< exports
->NumberOfNames
; j
++)
249 if ((ordinals
[j
] == i
) && names
[j
]) break;
250 if (j
< exports
->NumberOfNames
) continue;
251 snprintf(buffer
, sizeof(buffer
), "%d", i
+ exports
->Base
);
252 symt_new_public(module
, NULL
, buffer
, base
+ (DWORD
)functions
[i
], 1,
253 TRUE
/* FIXME */, TRUE
/* FIXME */);
257 /* no real debug info, only entry points */
258 if (module
->module
.SymType
== SymDeferred
)
259 module
->module
.SymType
= SymExport
;
263 /******************************************************************
267 BOOL
pe_load_debug_info(const struct process
* pcs
, struct module
* module
)
273 IMAGE_NT_HEADERS
* nth
;
275 hFile
= CreateFileW(module
->module
.LoadedImageName
, GENERIC_READ
, FILE_SHARE_READ
,
276 NULL
, OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
277 if (hFile
== INVALID_HANDLE_VALUE
) return ret
;
278 if ((hMap
= CreateFileMappingW(hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
)) != 0)
280 if ((mapping
= MapViewOfFile(hMap
, FILE_MAP_READ
, 0, 0, 0)) != NULL
)
282 nth
= RtlImageNtHeader(mapping
);
284 if (!(dbghelp_options
& SYMOPT_PUBLICS_ONLY
))
286 ret
= pe_load_stabs(pcs
, module
, mapping
, nth
) ||
287 pe_load_msc_debug_info(pcs
, module
, mapping
, nth
);
288 /* if we still have no debug info (we could only get SymExport at this
289 * point), then do the SymExport except if we have an ELF container,
290 * in which case we'll rely on the export's on the ELF side
293 /* FIXME shouldn't we check that? if (!module_get_debug(pcs, module))l */
294 if (pe_load_export_debug_info(pcs
, module
, mapping
, nth
) && !ret
)
296 UnmapViewOfFile(mapping
);
305 /******************************************************************
306 * pe_load_native_module
309 struct module
* pe_load_native_module(struct process
* pcs
, const WCHAR
* name
,
310 HANDLE hFile
, DWORD base
, DWORD size
)
312 struct module
* module
= NULL
;
315 WCHAR loaded_name
[MAX_PATH
];
317 loaded_name
[0] = '\0';
323 if ((hFile
= FindExecutableImageExW(name
, pcs
->search_path
, loaded_name
, NULL
, NULL
)) == NULL
)
327 else if (name
) strcpyW(loaded_name
, name
);
328 else if (dbghelp_options
& SYMOPT_DEFERRED_LOADS
)
329 FIXME("Trouble ahead (no module name passed in deferred mode)\n");
331 if ((hMap
= CreateFileMappingW(hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
)) != NULL
)
335 if ((mapping
= MapViewOfFile(hMap
, FILE_MAP_READ
, 0, 0, 0)) != NULL
)
337 IMAGE_NT_HEADERS
* nth
= RtlImageNtHeader(mapping
);
341 if (!base
) base
= nth
->OptionalHeader
.ImageBase
;
342 if (!size
) size
= nth
->OptionalHeader
.SizeOfImage
;
344 module
= module_new(pcs
, loaded_name
, DMT_PE
, FALSE
, base
, size
,
345 nth
->FileHeader
.TimeDateStamp
,
346 nth
->OptionalHeader
.CheckSum
);
349 if (dbghelp_options
& SYMOPT_DEFERRED_LOADS
)
350 module
->module
.SymType
= SymDeferred
;
352 pe_load_debug_info(pcs
, module
);
355 ERR("could not load the module '%s'\n", debugstr_w(loaded_name
));
357 UnmapViewOfFile(mapping
);
361 if (opened
) CloseHandle(hFile
);
366 /******************************************************************
370 BOOL
pe_load_nt_header(HANDLE hProc
, DWORD base
, IMAGE_NT_HEADERS
* nth
)
372 IMAGE_DOS_HEADER dos
;
374 return ReadProcessMemory(hProc
, (char*)base
, &dos
, sizeof(dos
), NULL
) &&
375 dos
.e_magic
== IMAGE_DOS_SIGNATURE
&&
376 ReadProcessMemory(hProc
, (char*)(base
+ dos
.e_lfanew
),
377 nth
, sizeof(*nth
), NULL
) &&
378 nth
->Signature
== IMAGE_NT_SIGNATURE
;
381 /******************************************************************
382 * pe_load_builtin_module
385 struct module
* pe_load_builtin_module(struct process
* pcs
, const WCHAR
* name
,
386 DWORD base
, DWORD size
)
388 struct module
* module
= NULL
;
390 if (base
&& pcs
->dbg_hdr_addr
)
392 IMAGE_NT_HEADERS nth
;
394 if (pe_load_nt_header(pcs
->handle
, base
, &nth
))
396 if (!size
) size
= nth
.OptionalHeader
.SizeOfImage
;
397 module
= module_new(pcs
, name
, DMT_PE
, FALSE
, base
, size
,
398 nth
.FileHeader
.TimeDateStamp
,
399 nth
.OptionalHeader
.CheckSum
);
405 /***********************************************************************
406 * ImageDirectoryEntryToDataEx (DBGHELP.@)
408 * Search for specified directory in PE image
412 * base [in] Image base address
413 * image [in] TRUE - image has been loaded by loader, FALSE - raw file image
414 * dir [in] Target directory index
415 * size [out] Receives directory size
416 * section [out] Receives pointer to section header of section containing directory data
419 * Success: pointer to directory data
423 PVOID WINAPI
ImageDirectoryEntryToDataEx( PVOID base
, BOOLEAN image
, USHORT dir
, PULONG size
, PIMAGE_SECTION_HEADER
*section
)
425 const IMAGE_NT_HEADERS
*nt
;
429 if (section
) *section
= NULL
;
431 if (!(nt
= RtlImageNtHeader( base
))) return NULL
;
432 if (dir
>= nt
->OptionalHeader
.NumberOfRvaAndSizes
) return NULL
;
433 if (!(addr
= nt
->OptionalHeader
.DataDirectory
[dir
].VirtualAddress
)) return NULL
;
435 *size
= nt
->OptionalHeader
.DataDirectory
[dir
].Size
;
436 if (image
|| addr
< nt
->OptionalHeader
.SizeOfHeaders
) return (char *)base
+ addr
;
438 return RtlImageRvaToVa( nt
, (HMODULE
)base
, addr
, section
);
441 /***********************************************************************
442 * ImageDirectoryEntryToData (DBGHELP.@)
445 * See ImageDirectoryEntryToDataEx
447 PVOID WINAPI
ImageDirectoryEntryToData( PVOID base
, BOOLEAN image
, USHORT dir
, PULONG size
)
449 return ImageDirectoryEntryToDataEx( base
, image
, dir
, size
, NULL
);