4 * Copyright 2001 Eric Pouech
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
31 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
34 #ifdef HAVE_SYS_STAT_H
35 # include <sys/stat.h>
37 #ifdef HAVE_SYS_MMAN_H
42 #define NONAMELESSUNION
43 #define NONAMELESSSTRUCT
48 static const IMAGE_NT_HEADERS32
* PE_nt_headers
;
50 const char *get_machine_str(int mach
)
54 case IMAGE_FILE_MACHINE_UNKNOWN
: return "Unknown";
55 case IMAGE_FILE_MACHINE_I860
: return "i860";
56 case IMAGE_FILE_MACHINE_I386
: return "i386";
57 case IMAGE_FILE_MACHINE_R3000
: return "R3000";
58 case IMAGE_FILE_MACHINE_R4000
: return "R4000";
59 case IMAGE_FILE_MACHINE_R10000
: return "R10000";
60 case IMAGE_FILE_MACHINE_ALPHA
: return "Alpha";
61 case IMAGE_FILE_MACHINE_POWERPC
: return "PowerPC";
62 case IMAGE_FILE_MACHINE_AMD64
: return "AMD64";
63 case IMAGE_FILE_MACHINE_IA64
: return "IA64";
68 static const void* RVA(unsigned long rva
, unsigned long len
)
70 IMAGE_SECTION_HEADER
* sectHead
;
73 if (rva
== 0) return NULL
;
75 sectHead
= IMAGE_FIRST_SECTION(PE_nt_headers
);
76 for (i
= PE_nt_headers
->FileHeader
.NumberOfSections
- 1; i
>= 0; i
--)
78 if (sectHead
[i
].VirtualAddress
<= rva
&&
79 rva
+ len
<= (DWORD
)sectHead
[i
].VirtualAddress
+ sectHead
[i
].SizeOfRawData
)
81 /* return image import directory offset */
82 return PRD(sectHead
[i
].PointerToRawData
+ rva
- sectHead
[i
].VirtualAddress
, len
);
89 static const IMAGE_NT_HEADERS32
*get_nt_header( void )
91 const IMAGE_DOS_HEADER
*dos
;
92 dos
= PRD(0, sizeof(*dos
));
93 if (!dos
) return NULL
;
94 return PRD(dos
->e_lfanew
, sizeof(DWORD
) + sizeof(IMAGE_FILE_HEADER
));
97 static int is_fake_dll( void )
99 static const char fakedll_signature
[] = "Wine placeholder DLL";
100 const IMAGE_DOS_HEADER
*dos
;
102 dos
= PRD(0, sizeof(*dos
) + sizeof(fakedll_signature
));
104 if (dos
&& dos
->e_lfanew
>= sizeof(*dos
) + sizeof(fakedll_signature
) &&
105 !memcmp( dos
+ 1, fakedll_signature
, sizeof(fakedll_signature
) )) return TRUE
;
109 static const void *get_dir_and_size(unsigned int idx
, unsigned int *size
)
111 if(PE_nt_headers
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
113 const IMAGE_OPTIONAL_HEADER64
*opt
= (const IMAGE_OPTIONAL_HEADER64
*)&PE_nt_headers
->OptionalHeader
;
114 if (idx
>= opt
->NumberOfRvaAndSizes
)
117 *size
= opt
->DataDirectory
[idx
].Size
;
118 return RVA(opt
->DataDirectory
[idx
].VirtualAddress
,
119 opt
->DataDirectory
[idx
].Size
);
123 const IMAGE_OPTIONAL_HEADER32
*opt
= (const IMAGE_OPTIONAL_HEADER32
*)&PE_nt_headers
->OptionalHeader
;
124 if (idx
>= opt
->NumberOfRvaAndSizes
)
127 *size
= opt
->DataDirectory
[idx
].Size
;
128 return RVA(opt
->DataDirectory
[idx
].VirtualAddress
,
129 opt
->DataDirectory
[idx
].Size
);
133 static const void* get_dir(unsigned idx
)
135 return get_dir_and_size(idx
, 0);
138 static const char * const DirectoryNames
[16] = {
139 "EXPORT", "IMPORT", "RESOURCE", "EXCEPTION",
140 "SECURITY", "BASERELOC", "DEBUG", "ARCHITECTURE",
141 "GLOBALPTR", "TLS", "LOAD_CONFIG", "Bound IAT",
142 "IAT", "Delay IAT", "CLR Header", ""
145 static const char *get_magic_type(WORD magic
)
148 case IMAGE_NT_OPTIONAL_HDR32_MAGIC
:
150 case IMAGE_NT_OPTIONAL_HDR64_MAGIC
:
152 case IMAGE_ROM_OPTIONAL_HDR_MAGIC
:
158 static inline void print_word(const char *title
, WORD value
)
160 printf(" %-34s 0x%-4X %u\n", title
, value
, value
);
163 static inline void print_dword(const char *title
, DWORD value
)
165 printf(" %-34s 0x%-8x %u\n", title
, value
, value
);
168 static inline void print_longlong(const char *title
, ULONGLONG value
)
170 printf(" %-34s 0x", title
);
172 printf("%lx%08lx\n", (unsigned long)(value
>> 32), (unsigned long)value
);
174 printf("%lx\n", (unsigned long)value
);
177 static inline void print_ver(const char *title
, BYTE major
, BYTE minor
)
179 printf(" %-34s %u.%02u\n", title
, major
, minor
);
182 static inline void print_subsys(const char *title
, WORD value
)
188 case IMAGE_SUBSYSTEM_UNKNOWN
: str
= "Unknown"; break;
189 case IMAGE_SUBSYSTEM_NATIVE
: str
= "Native"; break;
190 case IMAGE_SUBSYSTEM_WINDOWS_GUI
: str
= "Windows GUI"; break;
191 case IMAGE_SUBSYSTEM_WINDOWS_CUI
: str
= "Windows CUI"; break;
192 case IMAGE_SUBSYSTEM_OS2_CUI
: str
= "OS/2 CUI"; break;
193 case IMAGE_SUBSYSTEM_POSIX_CUI
: str
= "Posix CUI"; break;
195 printf(" %-34s 0x%X (%s)\n", title
, value
, str
);
198 static inline void print_dllflags(const char *title
, WORD value
)
200 printf(" %-34s 0x%X\n", title
, value
);
201 #define X(f,s) if (value & f) printf(" %s\n", s)
202 X(IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE
, "DYNAMIC_BASE");
203 X(IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY
, "FORCE_INTEGRITY");
204 X(IMAGE_DLLCHARACTERISTICS_NX_COMPAT
, "NX_COMPAT");
205 X(IMAGE_DLLCHARACTERISTICS_NO_ISOLATION
, "NO_ISOLATION");
206 X(IMAGE_DLLCHARACTERISTICS_NO_SEH
, "NO_SEH");
207 X(IMAGE_DLLCHARACTERISTICS_NO_BIND
, "NO_BIND");
208 X(IMAGE_DLLCHARACTERISTICS_WDM_DRIVER
, "WDM_DRIVER");
209 X(IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE
, "TERMINAL_SERVER_AWARE");
213 static inline void print_datadirectory(DWORD n
, const IMAGE_DATA_DIRECTORY
*directory
)
216 printf("Data Directory\n");
218 for (i
= 0; i
< n
&& i
< 16; i
++)
220 printf(" %-12s rva: 0x%-8x size: 0x%-8x\n",
221 DirectoryNames
[i
], directory
[i
].VirtualAddress
,
226 static void dump_optional_header32(const IMAGE_OPTIONAL_HEADER32
*image_oh
, UINT header_size
)
228 IMAGE_OPTIONAL_HEADER32 oh
;
229 const IMAGE_OPTIONAL_HEADER32
*optionalHeader
;
231 /* in case optional header is missing or partial */
232 memset(&oh
, 0, sizeof(oh
));
233 memcpy(&oh
, image_oh
, min(header_size
, sizeof(oh
)));
234 optionalHeader
= &oh
;
236 print_word("Magic", optionalHeader
->Magic
);
237 print_ver("linker version",
238 optionalHeader
->MajorLinkerVersion
, optionalHeader
->MinorLinkerVersion
);
239 print_dword("size of code", optionalHeader
->SizeOfCode
);
240 print_dword("size of initialized data", optionalHeader
->SizeOfInitializedData
);
241 print_dword("size of uninitialized data", optionalHeader
->SizeOfUninitializedData
);
242 print_dword("entrypoint RVA", optionalHeader
->AddressOfEntryPoint
);
243 print_dword("base of code", optionalHeader
->BaseOfCode
);
244 print_dword("base of data", optionalHeader
->BaseOfData
);
245 print_dword("image base", optionalHeader
->ImageBase
);
246 print_dword("section align", optionalHeader
->SectionAlignment
);
247 print_dword("file align", optionalHeader
->FileAlignment
);
248 print_ver("required OS version",
249 optionalHeader
->MajorOperatingSystemVersion
, optionalHeader
->MinorOperatingSystemVersion
);
250 print_ver("image version",
251 optionalHeader
->MajorImageVersion
, optionalHeader
->MinorImageVersion
);
252 print_ver("subsystem version",
253 optionalHeader
->MajorSubsystemVersion
, optionalHeader
->MinorSubsystemVersion
);
254 print_dword("Win32 Version", optionalHeader
->Win32VersionValue
);
255 print_dword("size of image", optionalHeader
->SizeOfImage
);
256 print_dword("size of headers", optionalHeader
->SizeOfHeaders
);
257 print_dword("checksum", optionalHeader
->CheckSum
);
258 print_subsys("Subsystem", optionalHeader
->Subsystem
);
259 print_dllflags("DLL characteristics:", optionalHeader
->DllCharacteristics
);
260 print_dword("stack reserve size", optionalHeader
->SizeOfStackReserve
);
261 print_dword("stack commit size", optionalHeader
->SizeOfStackCommit
);
262 print_dword("heap reserve size", optionalHeader
->SizeOfHeapReserve
);
263 print_dword("heap commit size", optionalHeader
->SizeOfHeapCommit
);
264 print_dword("loader flags", optionalHeader
->LoaderFlags
);
265 print_dword("RVAs & sizes", optionalHeader
->NumberOfRvaAndSizes
);
267 print_datadirectory(optionalHeader
->NumberOfRvaAndSizes
, optionalHeader
->DataDirectory
);
271 static void dump_optional_header64(const IMAGE_OPTIONAL_HEADER64
*image_oh
, UINT header_size
)
273 IMAGE_OPTIONAL_HEADER64 oh
;
274 const IMAGE_OPTIONAL_HEADER64
*optionalHeader
;
276 /* in case optional header is missing or partial */
277 memset(&oh
, 0, sizeof(oh
));
278 memcpy(&oh
, image_oh
, min(header_size
, sizeof(oh
)));
279 optionalHeader
= &oh
;
281 print_word("Magic", optionalHeader
->Magic
);
282 print_ver("linker version",
283 optionalHeader
->MajorLinkerVersion
, optionalHeader
->MinorLinkerVersion
);
284 print_dword("size of code", optionalHeader
->SizeOfCode
);
285 print_dword("size of initialized data", optionalHeader
->SizeOfInitializedData
);
286 print_dword("size of uninitialized data", optionalHeader
->SizeOfUninitializedData
);
287 print_dword("entrypoint RVA", optionalHeader
->AddressOfEntryPoint
);
288 print_dword("base of code", optionalHeader
->BaseOfCode
);
289 print_longlong("image base", optionalHeader
->ImageBase
);
290 print_dword("section align", optionalHeader
->SectionAlignment
);
291 print_dword("file align", optionalHeader
->FileAlignment
);
292 print_ver("required OS version",
293 optionalHeader
->MajorOperatingSystemVersion
, optionalHeader
->MinorOperatingSystemVersion
);
294 print_ver("image version",
295 optionalHeader
->MajorImageVersion
, optionalHeader
->MinorImageVersion
);
296 print_ver("subsystem version",
297 optionalHeader
->MajorSubsystemVersion
, optionalHeader
->MinorSubsystemVersion
);
298 print_dword("Win32 Version", optionalHeader
->Win32VersionValue
);
299 print_dword("size of image", optionalHeader
->SizeOfImage
);
300 print_dword("size of headers", optionalHeader
->SizeOfHeaders
);
301 print_dword("checksum", optionalHeader
->CheckSum
);
302 print_subsys("Subsystem", optionalHeader
->Subsystem
);
303 print_dllflags("DLL characteristics:", optionalHeader
->DllCharacteristics
);
304 print_longlong("stack reserve size", optionalHeader
->SizeOfStackReserve
);
305 print_longlong("stack commit size", optionalHeader
->SizeOfStackCommit
);
306 print_longlong("heap reserve size", optionalHeader
->SizeOfHeapReserve
);
307 print_longlong("heap commit size", optionalHeader
->SizeOfHeapCommit
);
308 print_dword("loader flags", optionalHeader
->LoaderFlags
);
309 print_dword("RVAs & sizes", optionalHeader
->NumberOfRvaAndSizes
);
311 print_datadirectory(optionalHeader
->NumberOfRvaAndSizes
, optionalHeader
->DataDirectory
);
315 void dump_optional_header(const IMAGE_OPTIONAL_HEADER32
*optionalHeader
, UINT header_size
)
317 printf("Optional Header (%s)\n", get_magic_type(optionalHeader
->Magic
));
319 switch(optionalHeader
->Magic
) {
320 case IMAGE_NT_OPTIONAL_HDR32_MAGIC
:
321 dump_optional_header32(optionalHeader
, header_size
);
323 case IMAGE_NT_OPTIONAL_HDR64_MAGIC
:
324 dump_optional_header64((const IMAGE_OPTIONAL_HEADER64
*)optionalHeader
, header_size
);
327 printf(" Unknown optional header magic: 0x%-4X\n", optionalHeader
->Magic
);
332 void dump_file_header(const IMAGE_FILE_HEADER
*fileHeader
)
334 printf("File Header\n");
336 printf(" Machine: %04X (%s)\n",
337 fileHeader
->Machine
, get_machine_str(fileHeader
->Machine
));
338 printf(" Number of Sections: %d\n", fileHeader
->NumberOfSections
);
339 printf(" TimeDateStamp: %08X (%s) offset %lu\n",
340 fileHeader
->TimeDateStamp
, get_time_str(fileHeader
->TimeDateStamp
),
341 Offset(&(fileHeader
->TimeDateStamp
)));
342 printf(" PointerToSymbolTable: %08X\n", fileHeader
->PointerToSymbolTable
);
343 printf(" NumberOfSymbols: %08X\n", fileHeader
->NumberOfSymbols
);
344 printf(" SizeOfOptionalHeader: %04X\n", fileHeader
->SizeOfOptionalHeader
);
345 printf(" Characteristics: %04X\n", fileHeader
->Characteristics
);
346 #define X(f,s) if (fileHeader->Characteristics & f) printf(" %s\n", s)
347 X(IMAGE_FILE_RELOCS_STRIPPED
, "RELOCS_STRIPPED");
348 X(IMAGE_FILE_EXECUTABLE_IMAGE
, "EXECUTABLE_IMAGE");
349 X(IMAGE_FILE_LINE_NUMS_STRIPPED
, "LINE_NUMS_STRIPPED");
350 X(IMAGE_FILE_LOCAL_SYMS_STRIPPED
, "LOCAL_SYMS_STRIPPED");
351 X(IMAGE_FILE_AGGRESIVE_WS_TRIM
, "AGGRESIVE_WS_TRIM");
352 X(IMAGE_FILE_LARGE_ADDRESS_AWARE
, "LARGE_ADDRESS_AWARE");
353 X(IMAGE_FILE_16BIT_MACHINE
, "16BIT_MACHINE");
354 X(IMAGE_FILE_BYTES_REVERSED_LO
, "BYTES_REVERSED_LO");
355 X(IMAGE_FILE_32BIT_MACHINE
, "32BIT_MACHINE");
356 X(IMAGE_FILE_DEBUG_STRIPPED
, "DEBUG_STRIPPED");
357 X(IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP
, "REMOVABLE_RUN_FROM_SWAP");
358 X(IMAGE_FILE_NET_RUN_FROM_SWAP
, "NET_RUN_FROM_SWAP");
359 X(IMAGE_FILE_SYSTEM
, "SYSTEM");
360 X(IMAGE_FILE_DLL
, "DLL");
361 X(IMAGE_FILE_UP_SYSTEM_ONLY
, "UP_SYSTEM_ONLY");
362 X(IMAGE_FILE_BYTES_REVERSED_HI
, "BYTES_REVERSED_HI");
367 static void dump_pe_header(void)
369 dump_file_header(&PE_nt_headers
->FileHeader
);
370 dump_optional_header((const IMAGE_OPTIONAL_HEADER32
*)&PE_nt_headers
->OptionalHeader
, PE_nt_headers
->FileHeader
.SizeOfOptionalHeader
);
373 void dump_section(const IMAGE_SECTION_HEADER
*sectHead
)
375 printf(" %-8.8s VirtSize: 0x%08x VirtAddr: 0x%08x\n",
376 sectHead
->Name
, sectHead
->Misc
.VirtualSize
, sectHead
->VirtualAddress
);
377 printf(" raw data offs: 0x%08x raw data size: 0x%08x\n",
378 sectHead
->PointerToRawData
, sectHead
->SizeOfRawData
);
379 printf(" relocation offs: 0x%08x relocations: 0x%08x\n",
380 sectHead
->PointerToRelocations
, sectHead
->NumberOfRelocations
);
381 printf(" line # offs: %-8u line #'s: %-8u\n",
382 sectHead
->PointerToLinenumbers
, sectHead
->NumberOfLinenumbers
);
383 printf(" characteristics: 0x%08x\n", sectHead
->Characteristics
);
385 #define X(b,s) if (sectHead->Characteristics & b) printf(" " s)
386 /* #define IMAGE_SCN_TYPE_REG 0x00000000 - Reserved */
387 /* #define IMAGE_SCN_TYPE_DSECT 0x00000001 - Reserved */
388 /* #define IMAGE_SCN_TYPE_NOLOAD 0x00000002 - Reserved */
389 /* #define IMAGE_SCN_TYPE_GROUP 0x00000004 - Reserved */
390 /* #define IMAGE_SCN_TYPE_NO_PAD 0x00000008 - Reserved */
391 /* #define IMAGE_SCN_TYPE_COPY 0x00000010 - Reserved */
393 X(IMAGE_SCN_CNT_CODE
, "CODE");
394 X(IMAGE_SCN_CNT_INITIALIZED_DATA
, "INITIALIZED_DATA");
395 X(IMAGE_SCN_CNT_UNINITIALIZED_DATA
, "UNINITIALIZED_DATA");
397 X(IMAGE_SCN_LNK_OTHER
, "LNK_OTHER");
398 X(IMAGE_SCN_LNK_INFO
, "LNK_INFO");
399 /* #define IMAGE_SCN_TYPE_OVER 0x00000400 - Reserved */
400 X(IMAGE_SCN_LNK_REMOVE
, "LNK_REMOVE");
401 X(IMAGE_SCN_LNK_COMDAT
, "LNK_COMDAT");
403 /* 0x00002000 - Reserved */
404 /* #define IMAGE_SCN_MEM_PROTECTED 0x00004000 - Obsolete */
405 X(IMAGE_SCN_MEM_FARDATA
, "MEM_FARDATA");
407 /* #define IMAGE_SCN_MEM_SYSHEAP 0x00010000 - Obsolete */
408 X(IMAGE_SCN_MEM_PURGEABLE
, "MEM_PURGEABLE");
409 X(IMAGE_SCN_MEM_16BIT
, "MEM_16BIT");
410 X(IMAGE_SCN_MEM_LOCKED
, "MEM_LOCKED");
411 X(IMAGE_SCN_MEM_PRELOAD
, "MEM_PRELOAD");
413 switch (sectHead
->Characteristics
& IMAGE_SCN_ALIGN_MASK
)
415 #define X2(b,s) case b: printf(" " s); break
416 X2(IMAGE_SCN_ALIGN_1BYTES
, "ALIGN_1BYTES");
417 X2(IMAGE_SCN_ALIGN_2BYTES
, "ALIGN_2BYTES");
418 X2(IMAGE_SCN_ALIGN_4BYTES
, "ALIGN_4BYTES");
419 X2(IMAGE_SCN_ALIGN_8BYTES
, "ALIGN_8BYTES");
420 X2(IMAGE_SCN_ALIGN_16BYTES
, "ALIGN_16BYTES");
421 X2(IMAGE_SCN_ALIGN_32BYTES
, "ALIGN_32BYTES");
422 X2(IMAGE_SCN_ALIGN_64BYTES
, "ALIGN_64BYTES");
423 X2(IMAGE_SCN_ALIGN_128BYTES
, "ALIGN_128BYTES");
424 X2(IMAGE_SCN_ALIGN_256BYTES
, "ALIGN_256BYTES");
425 X2(IMAGE_SCN_ALIGN_512BYTES
, "ALIGN_512BYTES");
426 X2(IMAGE_SCN_ALIGN_1024BYTES
, "ALIGN_1024BYTES");
427 X2(IMAGE_SCN_ALIGN_2048BYTES
, "ALIGN_2048BYTES");
428 X2(IMAGE_SCN_ALIGN_4096BYTES
, "ALIGN_4096BYTES");
429 X2(IMAGE_SCN_ALIGN_8192BYTES
, "ALIGN_8192BYTES");
433 X(IMAGE_SCN_LNK_NRELOC_OVFL
, "LNK_NRELOC_OVFL");
435 X(IMAGE_SCN_MEM_DISCARDABLE
, "MEM_DISCARDABLE");
436 X(IMAGE_SCN_MEM_NOT_CACHED
, "MEM_NOT_CACHED");
437 X(IMAGE_SCN_MEM_NOT_PAGED
, "MEM_NOT_PAGED");
438 X(IMAGE_SCN_MEM_SHARED
, "MEM_SHARED");
439 X(IMAGE_SCN_MEM_EXECUTE
, "MEM_EXECUTE");
440 X(IMAGE_SCN_MEM_READ
, "MEM_READ");
441 X(IMAGE_SCN_MEM_WRITE
, "MEM_WRITE");
446 static void dump_sections(const void *base
, const void* addr
, unsigned num_sect
)
448 const IMAGE_SECTION_HEADER
* sectHead
= addr
;
451 printf("Section Table\n");
452 for (i
= 0; i
< num_sect
; i
++, sectHead
++)
454 dump_section(sectHead
);
456 if (globals
.do_dump_rawdata
)
458 dump_data((const unsigned char *)base
+ sectHead
->PointerToRawData
, sectHead
->SizeOfRawData
, " " );
464 static void dump_dir_exported_functions(void)
466 unsigned int size
= 0;
467 const IMAGE_EXPORT_DIRECTORY
*exportDir
= get_dir_and_size(IMAGE_FILE_EXPORT_DIRECTORY
, &size
);
474 if (!exportDir
) return;
476 printf("Exports table:\n");
478 printf(" Name: %s\n", (const char*)RVA(exportDir
->Name
, sizeof(DWORD
)));
479 printf(" Characteristics: %08x\n", exportDir
->Characteristics
);
480 printf(" TimeDateStamp: %08X %s\n",
481 exportDir
->TimeDateStamp
, get_time_str(exportDir
->TimeDateStamp
));
482 printf(" Version: %u.%02u\n", exportDir
->MajorVersion
, exportDir
->MinorVersion
);
483 printf(" Ordinal base: %u\n", exportDir
->Base
);
484 printf(" # of functions: %u\n", exportDir
->NumberOfFunctions
);
485 printf(" # of Names: %u\n", exportDir
->NumberOfNames
);
486 printf("Addresses of functions: %08X\n", exportDir
->AddressOfFunctions
);
487 printf("Addresses of name ordinals: %08X\n", exportDir
->AddressOfNameOrdinals
);
488 printf("Addresses of names: %08X\n", exportDir
->AddressOfNames
);
490 printf(" Entry Pt Ordn Name\n");
492 pFunc
= RVA(exportDir
->AddressOfFunctions
, exportDir
->NumberOfFunctions
* sizeof(DWORD
));
493 if (!pFunc
) {printf("Can't grab functions' address table\n"); return;}
494 pName
= RVA(exportDir
->AddressOfNames
, exportDir
->NumberOfNames
* sizeof(DWORD
));
495 if (!pName
) {printf("Can't grab functions' name table\n"); return;}
496 pOrdl
= RVA(exportDir
->AddressOfNameOrdinals
, exportDir
->NumberOfNames
* sizeof(WORD
));
497 if (!pOrdl
) {printf("Can't grab functions' ordinal table\n"); return;}
499 funcs
= calloc( exportDir
->NumberOfFunctions
, sizeof(*funcs
) );
500 if (!funcs
) fatal("no memory");
502 for (i
= 0; i
< exportDir
->NumberOfNames
; i
++) funcs
[pOrdl
[i
]] = pName
[i
];
504 for (i
= 0; i
< exportDir
->NumberOfFunctions
; i
++)
506 if (!pFunc
[i
]) continue;
507 printf(" %08X %5u ", pFunc
[i
], exportDir
->Base
+ i
);
510 printf("%s", get_symbol_str((const char*)RVA(funcs
[i
], sizeof(DWORD
))));
511 /* check for forwarded function */
512 if ((const char *)RVA(pFunc
[i
],1) >= (const char *)exportDir
&&
513 (const char *)RVA(pFunc
[i
],1) < (const char *)exportDir
+ size
)
514 printf(" (-> %s)", (const char *)RVA(pFunc
[i
],1));
517 else printf("<by ordinal>\n");
523 static void dump_image_thunk_data64(const IMAGE_THUNK_DATA64
*il
)
525 /* FIXME: This does not properly handle large images */
526 const IMAGE_IMPORT_BY_NAME
* iibn
;
527 for (; il
->u1
.Ordinal
; il
++)
529 if (IMAGE_SNAP_BY_ORDINAL64(il
->u1
.Ordinal
))
530 printf(" %4u <by ordinal>\n", (DWORD
)IMAGE_ORDINAL64(il
->u1
.Ordinal
));
533 iibn
= RVA((DWORD
)il
->u1
.AddressOfData
, sizeof(DWORD
));
535 printf("Can't grab import by name info, skipping to next ordinal\n");
537 printf(" %4u %s %x\n", iibn
->Hint
, iibn
->Name
, (DWORD
)il
->u1
.AddressOfData
);
542 static void dump_image_thunk_data32(const IMAGE_THUNK_DATA32
*il
, int offset
)
544 const IMAGE_IMPORT_BY_NAME
* iibn
;
545 for (; il
->u1
.Ordinal
; il
++)
547 if (IMAGE_SNAP_BY_ORDINAL32(il
->u1
.Ordinal
))
548 printf(" %4u <by ordinal>\n", IMAGE_ORDINAL32(il
->u1
.Ordinal
));
551 iibn
= RVA((DWORD
)il
->u1
.AddressOfData
- offset
, sizeof(DWORD
));
553 printf("Can't grab import by name info, skipping to next ordinal\n");
555 printf(" %4u %s %x\n", iibn
->Hint
, iibn
->Name
, (DWORD
)il
->u1
.AddressOfData
);
560 static void dump_dir_imported_functions(void)
562 const IMAGE_IMPORT_DESCRIPTOR
*importDesc
= get_dir(IMAGE_FILE_IMPORT_DIRECTORY
);
565 if (!importDesc
) return;
566 if(PE_nt_headers
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
568 const IMAGE_OPTIONAL_HEADER64
*opt
= (const IMAGE_OPTIONAL_HEADER64
*)&PE_nt_headers
->OptionalHeader
;
569 directorySize
= opt
->DataDirectory
[IMAGE_FILE_IMPORT_DIRECTORY
].Size
;
573 const IMAGE_OPTIONAL_HEADER32
*opt
= (const IMAGE_OPTIONAL_HEADER32
*)&PE_nt_headers
->OptionalHeader
;
574 directorySize
= opt
->DataDirectory
[IMAGE_FILE_IMPORT_DIRECTORY
].Size
;
577 printf("Import Table size: %08x\n", directorySize
);/* FIXME */
581 const IMAGE_THUNK_DATA32
* il
;
583 if (!importDesc
->Name
|| !importDesc
->FirstThunk
) break;
585 printf(" offset %08lx %s\n", Offset(importDesc
), (const char*)RVA(importDesc
->Name
, sizeof(DWORD
)));
586 printf(" Hint/Name Table: %08X\n", (DWORD
)importDesc
->u
.OriginalFirstThunk
);
587 printf(" TimeDateStamp: %08X (%s)\n",
588 importDesc
->TimeDateStamp
, get_time_str(importDesc
->TimeDateStamp
));
589 printf(" ForwarderChain: %08X\n", importDesc
->ForwarderChain
);
590 printf(" First thunk RVA: %08X\n", (DWORD
)importDesc
->FirstThunk
);
592 printf(" Ordn Name\n");
594 il
= (importDesc
->u
.OriginalFirstThunk
!= 0) ?
595 RVA((DWORD
)importDesc
->u
.OriginalFirstThunk
, sizeof(DWORD
)) :
596 RVA((DWORD
)importDesc
->FirstThunk
, sizeof(DWORD
));
599 printf("Can't grab thunk data, going to next imported DLL\n");
602 if(PE_nt_headers
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
603 dump_image_thunk_data64((const IMAGE_THUNK_DATA64
*)il
);
605 dump_image_thunk_data32(il
, 0);
613 static void dump_dir_delay_imported_functions(void)
615 const struct ImgDelayDescr
625 } *importDesc
= get_dir(IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT
);
628 if (!importDesc
) return;
629 if (PE_nt_headers
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
631 const IMAGE_OPTIONAL_HEADER64
*opt
= (const IMAGE_OPTIONAL_HEADER64
*)&PE_nt_headers
->OptionalHeader
;
632 directorySize
= opt
->DataDirectory
[IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT
].Size
;
636 const IMAGE_OPTIONAL_HEADER32
*opt
= (const IMAGE_OPTIONAL_HEADER32
*)&PE_nt_headers
->OptionalHeader
;
637 directorySize
= opt
->DataDirectory
[IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT
].Size
;
640 printf("Delay Import Table size: %08x\n", directorySize
); /* FIXME */
644 const IMAGE_THUNK_DATA32
* il
;
645 int offset
= (importDesc
->grAttrs
& 1) ? 0 : PE_nt_headers
->OptionalHeader
.ImageBase
;
647 if (!importDesc
->szName
|| !importDesc
->pIAT
|| !importDesc
->pINT
) break;
649 printf(" grAttrs %08x offset %08lx %s\n", importDesc
->grAttrs
, Offset(importDesc
),
650 (const char *)RVA(importDesc
->szName
- offset
, sizeof(DWORD
)));
651 printf(" Hint/Name Table: %08x\n", importDesc
->pINT
);
652 printf(" TimeDateStamp: %08X (%s)\n",
653 importDesc
->dwTimeStamp
, get_time_str(importDesc
->dwTimeStamp
));
655 printf(" Ordn Name\n");
657 il
= RVA(importDesc
->pINT
- offset
, sizeof(DWORD
));
660 printf("Can't grab thunk data, going to next imported DLL\n");
663 if (PE_nt_headers
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
664 dump_image_thunk_data64((const IMAGE_THUNK_DATA64
*)il
);
666 dump_image_thunk_data32(il
, offset
);
674 static void dump_dir_debug_dir(const IMAGE_DEBUG_DIRECTORY
* idd
, int idx
)
678 printf("Directory %02u\n", idx
+ 1);
679 printf(" Characteristics: %08X\n", idd
->Characteristics
);
680 printf(" TimeDateStamp: %08X %s\n",
681 idd
->TimeDateStamp
, get_time_str(idd
->TimeDateStamp
));
682 printf(" Version %u.%02u\n", idd
->MajorVersion
, idd
->MinorVersion
);
686 case IMAGE_DEBUG_TYPE_UNKNOWN
: str
= "UNKNOWN"; break;
687 case IMAGE_DEBUG_TYPE_COFF
: str
= "COFF"; break;
688 case IMAGE_DEBUG_TYPE_CODEVIEW
: str
= "CODEVIEW"; break;
689 case IMAGE_DEBUG_TYPE_FPO
: str
= "FPO"; break;
690 case IMAGE_DEBUG_TYPE_MISC
: str
= "MISC"; break;
691 case IMAGE_DEBUG_TYPE_EXCEPTION
: str
= "EXCEPTION"; break;
692 case IMAGE_DEBUG_TYPE_FIXUP
: str
= "FIXUP"; break;
693 case IMAGE_DEBUG_TYPE_OMAP_TO_SRC
: str
= "OMAP_TO_SRC"; break;
694 case IMAGE_DEBUG_TYPE_OMAP_FROM_SRC
:str
= "OMAP_FROM_SRC"; break;
695 case IMAGE_DEBUG_TYPE_BORLAND
: str
= "BORLAND"; break;
696 case IMAGE_DEBUG_TYPE_RESERVED10
: str
= "RESERVED10"; break;
698 printf(" Type: %u (%s)\n", idd
->Type
, str
);
699 printf(" SizeOfData: %u\n", idd
->SizeOfData
);
700 printf(" AddressOfRawData: %08X\n", idd
->AddressOfRawData
);
701 printf(" PointerToRawData: %08X\n", idd
->PointerToRawData
);
705 case IMAGE_DEBUG_TYPE_UNKNOWN
:
707 case IMAGE_DEBUG_TYPE_COFF
:
708 dump_coff(idd
->PointerToRawData
, idd
->SizeOfData
,
709 (const char*)PE_nt_headers
+ sizeof(DWORD
) + sizeof(IMAGE_FILE_HEADER
) + PE_nt_headers
->FileHeader
.SizeOfOptionalHeader
);
711 case IMAGE_DEBUG_TYPE_CODEVIEW
:
712 dump_codeview(idd
->PointerToRawData
, idd
->SizeOfData
);
714 case IMAGE_DEBUG_TYPE_FPO
:
715 dump_frame_pointer_omission(idd
->PointerToRawData
, idd
->SizeOfData
);
717 case IMAGE_DEBUG_TYPE_MISC
:
719 const IMAGE_DEBUG_MISC
* misc
= PRD(idd
->PointerToRawData
, idd
->SizeOfData
);
720 if (!misc
) {printf("Can't get misc debug information\n"); break;}
721 printf(" DataType: %u (%s)\n",
723 (misc
->DataType
== IMAGE_DEBUG_MISC_EXENAME
) ? "Exe name" : "Unknown");
724 printf(" Length: %u\n", misc
->Length
);
725 printf(" Unicode: %s\n", misc
->Unicode
? "Yes" : "No");
726 printf(" Data: %s\n", misc
->Data
);
729 case IMAGE_DEBUG_TYPE_EXCEPTION
:
731 case IMAGE_DEBUG_TYPE_FIXUP
:
733 case IMAGE_DEBUG_TYPE_OMAP_TO_SRC
:
735 case IMAGE_DEBUG_TYPE_OMAP_FROM_SRC
:
737 case IMAGE_DEBUG_TYPE_BORLAND
:
739 case IMAGE_DEBUG_TYPE_RESERVED10
:
745 static void dump_dir_debug(void)
747 const IMAGE_DEBUG_DIRECTORY
*debugDir
= get_dir(IMAGE_FILE_DEBUG_DIRECTORY
);
750 if (!debugDir
) return;
751 nb_dbg
= PE_nt_headers
->OptionalHeader
.DataDirectory
[IMAGE_FILE_DEBUG_DIRECTORY
].Size
/
755 printf("Debug Table (%u directories)\n", nb_dbg
);
757 for (i
= 0; i
< nb_dbg
; i
++)
759 dump_dir_debug_dir(debugDir
, i
);
765 static inline void print_clrflags(const char *title
, WORD value
)
767 printf(" %-34s 0x%X\n", title
, value
);
768 #define X(f,s) if (value & f) printf(" %s\n", s)
769 X(COMIMAGE_FLAGS_ILONLY
, "ILONLY");
770 X(COMIMAGE_FLAGS_32BITREQUIRED
, "32BITREQUIRED");
771 X(COMIMAGE_FLAGS_IL_LIBRARY
, "IL_LIBRARY");
772 X(COMIMAGE_FLAGS_STRONGNAMESIGNED
, "STRONGNAMESIGNED");
773 X(COMIMAGE_FLAGS_TRACKDEBUGDATA
, "TRACKDEBUGDATA");
777 static inline void print_clrdirectory(const char *title
, const IMAGE_DATA_DIRECTORY
*dir
)
779 printf(" %-23s rva: 0x%-8x size: 0x%-8x\n", title
, dir
->VirtualAddress
, dir
->Size
);
782 static void dump_dir_clr_header(void)
784 unsigned int size
= 0;
785 const IMAGE_COR20_HEADER
*dir
= get_dir_and_size(IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR
, &size
);
789 printf( "CLR Header\n" );
790 print_dword( "Header Size", dir
->cb
);
791 print_ver( "Required runtime version", dir
->MajorRuntimeVersion
, dir
->MinorRuntimeVersion
);
792 print_clrflags( "Flags", dir
->Flags
);
793 print_dword( "EntryPointToken", dir
->EntryPointToken
);
795 printf( "CLR Data Directory\n" );
796 print_clrdirectory( "MetaData", &dir
->MetaData
);
797 print_clrdirectory( "Resources", &dir
->Resources
);
798 print_clrdirectory( "StrongNameSignature", &dir
->StrongNameSignature
);
799 print_clrdirectory( "CodeManagerTable", &dir
->CodeManagerTable
);
800 print_clrdirectory( "VTableFixups", &dir
->VTableFixups
);
801 print_clrdirectory( "ExportAddressTableJumps", &dir
->ExportAddressTableJumps
);
802 print_clrdirectory( "ManagedNativeHeader", &dir
->ManagedNativeHeader
);
806 static void dump_dir_reloc(void)
808 unsigned int i
, size
= 0;
809 const USHORT
*relocs
;
810 const IMAGE_BASE_RELOCATION
*rel
= get_dir_and_size(IMAGE_DIRECTORY_ENTRY_BASERELOC
, &size
);
811 const IMAGE_BASE_RELOCATION
*end
= (IMAGE_BASE_RELOCATION
*)((char *)rel
+ size
);
812 static const char * const names
[] =
819 "BASED_MIPS_JMPADDR",
834 printf( "Relocations\n" );
835 while (rel
< end
- 1 && rel
->SizeOfBlock
)
837 printf( " Page %x\n", rel
->VirtualAddress
);
838 relocs
= (const USHORT
*)(rel
+ 1);
839 i
= (rel
->SizeOfBlock
- sizeof(*rel
)) / sizeof(USHORT
);
842 USHORT offset
= *relocs
& 0xfff;
843 int type
= *relocs
>> 12;
844 printf( " off %04x type %s\n", offset
, names
[type
] );
847 rel
= (const IMAGE_BASE_RELOCATION
*)relocs
;
852 static void dump_dir_tls(void)
854 IMAGE_TLS_DIRECTORY64 dir
;
855 const DWORD
*callbacks
;
856 const IMAGE_TLS_DIRECTORY32
*pdir
= get_dir(IMAGE_FILE_THREAD_LOCAL_STORAGE
);
860 if(PE_nt_headers
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
861 memcpy(&dir
, pdir
, sizeof(dir
));
864 dir
.StartAddressOfRawData
= pdir
->StartAddressOfRawData
;
865 dir
.EndAddressOfRawData
= pdir
->EndAddressOfRawData
;
866 dir
.AddressOfIndex
= pdir
->AddressOfIndex
;
867 dir
.AddressOfCallBacks
= pdir
->AddressOfCallBacks
;
868 dir
.SizeOfZeroFill
= pdir
->SizeOfZeroFill
;
869 dir
.Characteristics
= pdir
->Characteristics
;
872 /* FIXME: This does not properly handle large images */
873 printf( "Thread Local Storage\n" );
874 printf( " Raw data %08x-%08x (data size %x zero fill size %x)\n",
875 (DWORD
)dir
.StartAddressOfRawData
, (DWORD
)dir
.EndAddressOfRawData
,
876 (DWORD
)(dir
.EndAddressOfRawData
- dir
.StartAddressOfRawData
),
877 (DWORD
)dir
.SizeOfZeroFill
);
878 printf( " Index address %08x\n", (DWORD
)dir
.AddressOfIndex
);
879 printf( " Characteristics %08x\n", dir
.Characteristics
);
880 printf( " Callbacks %08x -> {", (DWORD
)dir
.AddressOfCallBacks
);
881 if (dir
.AddressOfCallBacks
)
883 DWORD addr
= (DWORD
)dir
.AddressOfCallBacks
- PE_nt_headers
->OptionalHeader
.ImageBase
;
884 while ((callbacks
= RVA(addr
, sizeof(DWORD
))) && *callbacks
)
886 printf( " %08x", *callbacks
);
887 addr
+= sizeof(DWORD
);
893 enum FileSig
get_kind_dbg(void)
897 pw
= PRD(0, sizeof(WORD
));
898 if (!pw
) {printf("Can't get main signature, aborting\n"); return 0;}
900 if (*pw
== 0x4944 /* "DI" */) return SIG_DBG
;
906 const IMAGE_SEPARATE_DEBUG_HEADER
* separateDebugHead
;
909 const IMAGE_DEBUG_DIRECTORY
* debugDir
;
911 separateDebugHead
= PRD(0, sizeof(separateDebugHead
));
912 if (!separateDebugHead
) {printf("Can't grab the separate header, aborting\n"); return;}
914 printf ("Signature: %.2s (0x%4X)\n",
915 (const char*)&separateDebugHead
->Signature
, separateDebugHead
->Signature
);
916 printf ("Flags: 0x%04X\n", separateDebugHead
->Flags
);
917 printf ("Machine: 0x%04X (%s)\n",
918 separateDebugHead
->Machine
, get_machine_str(separateDebugHead
->Machine
));
919 printf ("Characteristics: 0x%04X\n", separateDebugHead
->Characteristics
);
920 printf ("TimeDateStamp: 0x%08X (%s)\n",
921 separateDebugHead
->TimeDateStamp
, get_time_str(separateDebugHead
->TimeDateStamp
));
922 printf ("CheckSum: 0x%08X\n", separateDebugHead
->CheckSum
);
923 printf ("ImageBase: 0x%08X\n", separateDebugHead
->ImageBase
);
924 printf ("SizeOfImage: 0x%08X\n", separateDebugHead
->SizeOfImage
);
925 printf ("NumberOfSections: 0x%08X\n", separateDebugHead
->NumberOfSections
);
926 printf ("ExportedNamesSize: 0x%08X\n", separateDebugHead
->ExportedNamesSize
);
927 printf ("DebugDirectorySize: 0x%08X\n", separateDebugHead
->DebugDirectorySize
);
929 if (!PRD(sizeof(IMAGE_SEPARATE_DEBUG_HEADER
),
930 separateDebugHead
->NumberOfSections
* sizeof(IMAGE_SECTION_HEADER
)))
931 {printf("Can't get the sections, aborting\n"); return;}
933 dump_sections(separateDebugHead
, separateDebugHead
+ 1, separateDebugHead
->NumberOfSections
);
935 nb_dbg
= separateDebugHead
->DebugDirectorySize
/ sizeof(IMAGE_DEBUG_DIRECTORY
);
936 debugDir
= PRD(sizeof(IMAGE_SEPARATE_DEBUG_HEADER
) +
937 separateDebugHead
->NumberOfSections
* sizeof(IMAGE_SECTION_HEADER
) +
938 separateDebugHead
->ExportedNamesSize
,
939 nb_dbg
* sizeof(IMAGE_DEBUG_DIRECTORY
));
940 if (!debugDir
) {printf("Couldn't get the debug directory info, aborting\n");return;}
942 printf("Debug Table (%u directories)\n", nb_dbg
);
944 for (i
= 0; i
< nb_dbg
; i
++)
946 dump_dir_debug_dir(debugDir
, i
);
951 static const char *get_resource_type( unsigned int id
)
953 static const char * const types
[] =
982 if ((size_t)id
< sizeof(types
)/sizeof(types
[0])) return types
[id
];
986 /* dump an ASCII string with proper escaping */
987 static int dump_strA( const unsigned char *str
, size_t len
)
989 static const char escapes
[32] = ".......abtnvfr.............e....";
994 for (; len
; str
++, len
--)
996 if (pos
> buffer
+ sizeof(buffer
) - 8)
998 fwrite( buffer
, pos
- buffer
, 1, stdout
);
999 count
+= pos
- buffer
;
1002 if (*str
> 127) /* hex escape */
1004 pos
+= sprintf( pos
, "\\x%02x", *str
);
1007 if (*str
< 32) /* octal or C escape */
1009 if (!*str
&& len
== 1) continue; /* do not output terminating NULL */
1010 if (escapes
[*str
] != '.')
1011 pos
+= sprintf( pos
, "\\%c", escapes
[*str
] );
1012 else if (len
> 1 && str
[1] >= '0' && str
[1] <= '7')
1013 pos
+= sprintf( pos
, "\\%03o", *str
);
1015 pos
+= sprintf( pos
, "\\%o", *str
);
1018 if (*str
== '\\') *pos
++ = '\\';
1021 fwrite( buffer
, pos
- buffer
, 1, stdout
);
1022 count
+= pos
- buffer
;
1026 /* dump a Unicode string with proper escaping */
1027 static int dump_strW( const WCHAR
*str
, size_t len
)
1029 static const char escapes
[32] = ".......abtnvfr.............e....";
1034 for (; len
; str
++, len
--)
1036 if (pos
> buffer
+ sizeof(buffer
) - 8)
1038 fwrite( buffer
, pos
- buffer
, 1, stdout
);
1039 count
+= pos
- buffer
;
1042 if (*str
> 127) /* hex escape */
1044 if (len
> 1 && str
[1] < 128 && isxdigit((char)str
[1]))
1045 pos
+= sprintf( pos
, "\\x%04x", *str
);
1047 pos
+= sprintf( pos
, "\\x%x", *str
);
1050 if (*str
< 32) /* octal or C escape */
1052 if (!*str
&& len
== 1) continue; /* do not output terminating NULL */
1053 if (escapes
[*str
] != '.')
1054 pos
+= sprintf( pos
, "\\%c", escapes
[*str
] );
1055 else if (len
> 1 && str
[1] >= '0' && str
[1] <= '7')
1056 pos
+= sprintf( pos
, "\\%03o", *str
);
1058 pos
+= sprintf( pos
, "\\%o", *str
);
1061 if (*str
== '\\') *pos
++ = '\\';
1064 fwrite( buffer
, pos
- buffer
, 1, stdout
);
1065 count
+= pos
- buffer
;
1069 /* dump data for a STRING resource */
1070 static void dump_string_data( const WCHAR
*ptr
, unsigned int size
, unsigned int id
, const char *prefix
)
1074 for (i
= 0; i
< 16 && size
; i
++)
1076 unsigned len
= *ptr
++;
1083 else size
-= len
+ 1;
1087 printf( "%s%04x \"", prefix
, (id
- 1) * 16 + i
);
1088 dump_strW( ptr
, len
);
1095 /* dump data for a MESSAGETABLE resource */
1096 static void dump_msgtable_data( const void *ptr
, unsigned int size
, unsigned int id
, const char *prefix
)
1098 const MESSAGE_RESOURCE_DATA
*data
= ptr
;
1099 const MESSAGE_RESOURCE_BLOCK
*block
= data
->Blocks
;
1102 for (i
= 0; i
< data
->NumberOfBlocks
; i
++, block
++)
1104 const MESSAGE_RESOURCE_ENTRY
*entry
;
1106 entry
= (const MESSAGE_RESOURCE_ENTRY
*)((const char *)data
+ block
->OffsetToEntries
);
1107 for (j
= block
->LowId
; j
<= block
->HighId
; j
++)
1109 if (entry
->Flags
& MESSAGE_RESOURCE_UNICODE
)
1111 const WCHAR
*str
= (const WCHAR
*)entry
->Text
;
1112 printf( "%s%08x L\"", prefix
, j
);
1113 dump_strW( str
, strlenW(str
) );
1118 const char *str
= (const char *) entry
->Text
;
1119 printf( "%s%08x \"", prefix
, j
);
1120 dump_strA( entry
->Text
, strlen(str
) );
1123 entry
= (const MESSAGE_RESOURCE_ENTRY
*)((const char *)entry
+ entry
->Length
);
1128 static void dump_dir_resource(void)
1130 const IMAGE_RESOURCE_DIRECTORY
*root
= get_dir(IMAGE_FILE_RESOURCE_DIRECTORY
);
1131 const IMAGE_RESOURCE_DIRECTORY
*namedir
;
1132 const IMAGE_RESOURCE_DIRECTORY
*langdir
;
1133 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*e1
, *e2
, *e3
;
1134 const IMAGE_RESOURCE_DIR_STRING_U
*string
;
1135 const IMAGE_RESOURCE_DATA_ENTRY
*data
;
1140 printf( "Resources:" );
1142 for (i
= 0; i
< root
->NumberOfNamedEntries
+ root
->NumberOfIdEntries
; i
++)
1144 e1
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(root
+ 1) + i
;
1145 namedir
= (const IMAGE_RESOURCE_DIRECTORY
*)((const char *)root
+ e1
->u2
.s3
.OffsetToDirectory
);
1146 for (j
= 0; j
< namedir
->NumberOfNamedEntries
+ namedir
->NumberOfIdEntries
; j
++)
1148 e2
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(namedir
+ 1) + j
;
1149 langdir
= (const IMAGE_RESOURCE_DIRECTORY
*)((const char *)root
+ e2
->u2
.s3
.OffsetToDirectory
);
1150 for (k
= 0; k
< langdir
->NumberOfNamedEntries
+ langdir
->NumberOfIdEntries
; k
++)
1152 e3
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(langdir
+ 1) + k
;
1155 if (e1
->u1
.s1
.NameIsString
)
1157 string
= (const IMAGE_RESOURCE_DIR_STRING_U
*)((const char *)root
+ e1
->u1
.s1
.NameOffset
);
1158 dump_unicode_str( string
->NameString
, string
->Length
);
1162 const char *type
= get_resource_type( e1
->u1
.s2
.Id
);
1163 if (type
) printf( "%s", type
);
1164 else printf( "%04x", e1
->u1
.s2
.Id
);
1168 if (e2
->u1
.s1
.NameIsString
)
1170 string
= (const IMAGE_RESOURCE_DIR_STRING_U
*) ((const char *)root
+ e2
->u1
.s1
.NameOffset
);
1171 dump_unicode_str( string
->NameString
, string
->Length
);
1174 printf( "%04x", e2
->u1
.s2
.Id
);
1176 printf( " Language=%04x:\n", e3
->u1
.s2
.Id
);
1177 data
= (const IMAGE_RESOURCE_DATA_ENTRY
*)((const char *)root
+ e3
->u2
.OffsetToData
);
1178 if (e1
->u1
.s1
.NameIsString
)
1180 dump_data( RVA( data
->OffsetToData
, data
->Size
), data
->Size
, " " );
1182 else switch(e1
->u1
.s2
.Id
)
1185 dump_string_data( RVA( data
->OffsetToData
, data
->Size
), data
->Size
,
1186 e2
->u1
.s2
.Id
, " " );
1189 dump_msgtable_data( RVA( data
->OffsetToData
, data
->Size
), data
->Size
,
1190 e2
->u1
.s2
.Id
, " " );
1193 dump_data( RVA( data
->OffsetToData
, data
->Size
), data
->Size
, " " );
1202 static void dump_debug(void)
1204 const char* stabs
= NULL
;
1205 unsigned szstabs
= 0;
1206 const char* stabstr
= NULL
;
1209 const IMAGE_SECTION_HEADER
* sectHead
;
1211 sectHead
= (const IMAGE_SECTION_HEADER
*)
1212 ((const char*)PE_nt_headers
+ sizeof(DWORD
) +
1213 sizeof(IMAGE_FILE_HEADER
) + PE_nt_headers
->FileHeader
.SizeOfOptionalHeader
);
1215 for (i
= 0; i
< PE_nt_headers
->FileHeader
.NumberOfSections
; i
++, sectHead
++)
1217 if (!strcmp((const char *)sectHead
->Name
, ".stab"))
1219 stabs
= RVA(sectHead
->VirtualAddress
, sectHead
->Misc
.VirtualSize
);
1220 szstabs
= sectHead
->Misc
.VirtualSize
;
1222 if (!strncmp((const char *)sectHead
->Name
, ".stabstr", 8))
1224 stabstr
= RVA(sectHead
->VirtualAddress
, sectHead
->Misc
.VirtualSize
);
1225 szstr
= sectHead
->Misc
.VirtualSize
;
1228 if (stabs
&& stabstr
)
1229 dump_stabs(stabs
, szstabs
, stabstr
, szstr
);
1232 enum FileSig
get_kind_exec(void)
1236 const IMAGE_DOS_HEADER
* dh
;
1238 pw
= PRD(0, sizeof(WORD
));
1239 if (!pw
) {printf("Can't get main signature, aborting\n"); return 0;}
1241 if (*pw
!= IMAGE_DOS_SIGNATURE
) return SIG_UNKNOWN
;
1243 if ((dh
= PRD(0, sizeof(IMAGE_DOS_HEADER
))))
1245 /* the signature is the first DWORD */
1246 pdw
= PRD(dh
->e_lfanew
, sizeof(DWORD
));
1249 if (*pdw
== IMAGE_NT_SIGNATURE
) return SIG_PE
;
1250 if (*(const WORD
*)pdw
== IMAGE_OS2_SIGNATURE
) return SIG_NE
;
1251 if (*(const WORD
*)pdw
== IMAGE_VXD_SIGNATURE
) return SIG_LE
;
1260 int all
= (globals
.dumpsect
!= NULL
) && strcmp(globals
.dumpsect
, "ALL") == 0;
1262 PE_nt_headers
= get_nt_header();
1263 if (is_fake_dll()) printf( "*** This is a Wine fake DLL ***\n\n" );
1265 if (globals
.do_dumpheader
)
1268 /* FIXME: should check ptr */
1269 dump_sections(PRD(0, 1), (const char*)PE_nt_headers
+ sizeof(DWORD
) +
1270 sizeof(IMAGE_FILE_HEADER
) + PE_nt_headers
->FileHeader
.SizeOfOptionalHeader
,
1271 PE_nt_headers
->FileHeader
.NumberOfSections
);
1273 else if (!globals
.dumpsect
)
1275 /* show at least something here */
1279 if (globals
.dumpsect
)
1281 if (all
|| !strcmp(globals
.dumpsect
, "import"))
1283 dump_dir_imported_functions();
1284 dump_dir_delay_imported_functions();
1286 if (all
|| !strcmp(globals
.dumpsect
, "export"))
1287 dump_dir_exported_functions();
1288 if (all
|| !strcmp(globals
.dumpsect
, "debug"))
1290 if (all
|| !strcmp(globals
.dumpsect
, "resource"))
1291 dump_dir_resource();
1292 if (all
|| !strcmp(globals
.dumpsect
, "tls"))
1294 if (all
|| !strcmp(globals
.dumpsect
, "clr"))
1295 dump_dir_clr_header();
1296 if (all
|| !strcmp(globals
.dumpsect
, "reloc"))
1299 if (globals
.do_debug
)
1303 typedef struct _dll_symbol
{
1308 static dll_symbol
*dll_symbols
= NULL
;
1309 static dll_symbol
*dll_current_symbol
= NULL
;
1311 /* Compare symbols by ordinal for qsort */
1312 static int symbol_cmp(const void *left
, const void *right
)
1314 return ((const dll_symbol
*)left
)->ordinal
> ((const dll_symbol
*)right
)->ordinal
;
1317 /*******************************************************************
1320 * Free resources used by DLL
1322 /* FIXME: Not used yet
1323 static void dll_close (void)
1328 fatal("No symbols");
1330 for (ds = dll_symbols; ds->symbol; ds++)
1337 static void do_grab_sym( void )
1339 const IMAGE_EXPORT_DIRECTORY
*exportDir
;
1347 PE_nt_headers
= get_nt_header();
1348 if (!(exportDir
= get_dir(IMAGE_FILE_EXPORT_DIRECTORY
))) return;
1350 pName
= RVA(exportDir
->AddressOfNames
, exportDir
->NumberOfNames
* sizeof(DWORD
));
1351 if (!pName
) {printf("Can't grab functions' name table\n"); return;}
1352 pOrdl
= RVA(exportDir
->AddressOfNameOrdinals
, exportDir
->NumberOfNames
* sizeof(WORD
));
1353 if (!pOrdl
) {printf("Can't grab functions' ordinal table\n"); return;}
1357 if (!(dll_symbols
= malloc((exportDir
->NumberOfFunctions
+ 1) * sizeof(dll_symbol
))))
1358 fatal ("Out of memory");
1359 if (exportDir
->AddressOfFunctions
!= exportDir
->NumberOfNames
|| exportDir
->Base
> 1)
1360 globals
.do_ordinals
= 1;
1362 /* bit map of used funcs */
1363 map
= calloc(((exportDir
->NumberOfFunctions
+ 31) & ~31) / 32, sizeof(DWORD
));
1364 if (!map
) fatal("no memory");
1366 for (j
= 0; j
< exportDir
->NumberOfNames
; j
++, pOrdl
++)
1368 map
[*pOrdl
/ 32] |= 1 << (*pOrdl
% 32);
1369 ptr
= RVA(*pName
++, sizeof(DWORD
));
1370 if (!ptr
) ptr
= "cant_get_function";
1371 dll_symbols
[j
].symbol
= strdup(ptr
);
1372 dll_symbols
[j
].ordinal
= exportDir
->Base
+ *pOrdl
;
1373 assert(dll_symbols
[j
].symbol
);
1375 pFunc
= RVA(exportDir
->AddressOfFunctions
, exportDir
->NumberOfFunctions
* sizeof(DWORD
));
1376 if (!pFunc
) {printf("Can't grab functions' address table\n"); return;}
1378 for (i
= 0; i
< exportDir
->NumberOfFunctions
; i
++)
1380 if (pFunc
[i
] && !(map
[i
/ 32] & (1 << (i
% 32))))
1382 char ordinal_text
[256];
1383 /* Ordinal only entry */
1384 snprintf (ordinal_text
, sizeof(ordinal_text
), "%s_%u",
1385 globals
.forward_dll
? globals
.forward_dll
: OUTPUT_UC_DLL_NAME
,
1386 exportDir
->Base
+ i
);
1387 str_toupper(ordinal_text
);
1388 dll_symbols
[j
].symbol
= strdup(ordinal_text
);
1389 assert(dll_symbols
[j
].symbol
);
1390 dll_symbols
[j
].ordinal
= exportDir
->Base
+ i
;
1392 assert(j
<= exportDir
->NumberOfFunctions
);
1398 printf("%u named symbols in DLL, %u total, %d unique (ordinal base = %d)\n",
1399 exportDir
->NumberOfNames
, exportDir
->NumberOfFunctions
, j
, exportDir
->Base
);
1401 qsort( dll_symbols
, j
, sizeof(dll_symbol
), symbol_cmp
);
1403 dll_symbols
[j
].symbol
= NULL
;
1405 dll_current_symbol
= dll_symbols
;
1408 /*******************************************************************
1411 * Open a DLL and read in exported symbols
1413 int dll_open (const char *dll_name
)
1415 return dump_analysis(dll_name
, do_grab_sym
, SIG_PE
);
1418 /*******************************************************************
1421 * Get next exported symbol from dll
1423 int dll_next_symbol (parsed_symbol
* sym
)
1425 if (!dll_current_symbol
->symbol
)
1428 assert (dll_symbols
);
1430 sym
->symbol
= strdup (dll_current_symbol
->symbol
);
1431 sym
->ordinal
= dll_current_symbol
->ordinal
;
1432 dll_current_symbol
++;