2 * TCCPE.C - PE file output for the TinyC Compiler
4 * Copyright (c) 2005 grischka
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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 typedef unsigned char BYTE
;
22 typedef unsigned short WORD
;
23 typedef unsigned long DWORD
;
26 /* XXX: move that to TCC ? */
29 /* definitions below are from winnt.h */
31 typedef struct _IMAGE_DOS_HEADER
{ /* DOS .EXE header */
32 WORD e_magic
; /* Magic number */
33 WORD e_cblp
; /* Bytes on last page of file */
34 WORD e_cp
; /* Pages in file */
35 WORD e_crlc
; /* Relocations */
36 WORD e_cparhdr
; /* Size of header in paragraphs */
37 WORD e_minalloc
; /* Minimum extra paragraphs needed */
38 WORD e_maxalloc
; /* Maximum extra paragraphs needed */
39 WORD e_ss
; /* Initial (relative) SS value */
40 WORD e_sp
; /* Initial SP value */
41 WORD e_csum
; /* Checksum */
42 WORD e_ip
; /* Initial IP value */
43 WORD e_cs
; /* Initial (relative) CS value */
44 WORD e_lfarlc
; /* File address of relocation table */
45 WORD e_ovno
; /* Overlay number */
46 WORD e_res
[4]; /* Reserved words */
47 WORD e_oemid
; /* OEM identifier (for e_oeminfo) */
48 WORD e_oeminfo
; /* OEM information; e_oemid specific */
49 WORD e_res2
[10]; /* Reserved words */
50 DWORD e_lfanew
; /* File address of new exe header */
53 } IMAGE_DOS_HEADER
, *PIMAGE_DOS_HEADER
;
55 #define IMAGE_NT_SIGNATURE 0x00004550 /* PE00 */
56 #define SIZE_OF_NT_SIGNATURE 4
58 typedef struct _IMAGE_FILE_HEADER
{
60 WORD NumberOfSections
;
62 DWORD PointerToSymbolTable
;
63 DWORD NumberOfSymbols
;
64 WORD SizeOfOptionalHeader
;
66 } IMAGE_FILE_HEADER
, *PIMAGE_FILE_HEADER
;
69 #define IMAGE_SIZEOF_FILE_HEADER 20
71 typedef struct _IMAGE_DATA_DIRECTORY
{
74 } IMAGE_DATA_DIRECTORY
, *PIMAGE_DATA_DIRECTORY
;
77 typedef struct _IMAGE_OPTIONAL_HEADER
{
78 /* Standard fields. */
80 BYTE MajorLinkerVersion
;
81 BYTE MinorLinkerVersion
;
83 DWORD SizeOfInitializedData
;
84 DWORD SizeOfUninitializedData
;
85 DWORD AddressOfEntryPoint
;
89 /* NT additional fields. */
91 DWORD SectionAlignment
;
93 WORD MajorOperatingSystemVersion
;
94 WORD MinorOperatingSystemVersion
;
95 WORD MajorImageVersion
;
96 WORD MinorImageVersion
;
97 WORD MajorSubsystemVersion
;
98 WORD MinorSubsystemVersion
;
99 DWORD Win32VersionValue
;
104 WORD DllCharacteristics
;
105 DWORD SizeOfStackReserve
;
106 DWORD SizeOfStackCommit
;
107 DWORD SizeOfHeapReserve
;
108 DWORD SizeOfHeapCommit
;
110 DWORD NumberOfRvaAndSizes
;
111 IMAGE_DATA_DIRECTORY DataDirectory
[16];
113 } IMAGE_OPTIONAL_HEADER32
, *PIMAGE_OPTIONAL_HEADER32
;
116 #define IMAGE_DIRECTORY_ENTRY_EXPORT 0 /* Export Directory */
117 #define IMAGE_DIRECTORY_ENTRY_IMPORT 1 /* Import Directory */
118 #define IMAGE_DIRECTORY_ENTRY_RESOURCE 2 /* Resource Directory */
119 #define IMAGE_DIRECTORY_ENTRY_EXCEPTION 3 /* Exception Directory */
120 #define IMAGE_DIRECTORY_ENTRY_SECURITY 4 /* Security Directory */
121 #define IMAGE_DIRECTORY_ENTRY_BASERELOC 5 /* Base Relocation Table */
122 #define IMAGE_DIRECTORY_ENTRY_DEBUG 6 /* Debug Directory */
123 /* IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7 (X86 usage) */
124 #define IMAGE_DIRECTORY_ENTRY_ARCHITECTURE 7 /* Architecture Specific Data */
125 #define IMAGE_DIRECTORY_ENTRY_GLOBALPTR 8 /* RVA of GP */
126 #define IMAGE_DIRECTORY_ENTRY_TLS 9 /* TLS Directory */
127 #define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG 10 /* Load Configuration Directory */
128 #define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT 11 /* Bound Import Directory in headers */
129 #define IMAGE_DIRECTORY_ENTRY_IAT 12 /* Import Address Table */
130 #define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT 13 /* Delay Load Import Descriptors */
131 #define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR 14 /* COM Runtime descriptor */
133 /* Section header format. */
134 #define IMAGE_SIZEOF_SHORT_NAME 8
136 typedef struct _IMAGE_SECTION_HEADER
{
137 BYTE Name
[IMAGE_SIZEOF_SHORT_NAME
];
139 DWORD PhysicalAddress
;
142 DWORD VirtualAddress
;
144 DWORD PointerToRawData
;
145 DWORD PointerToRelocations
;
146 DWORD PointerToLinenumbers
;
147 WORD NumberOfRelocations
;
148 WORD NumberOfLinenumbers
;
149 DWORD Characteristics
;
150 } IMAGE_SECTION_HEADER
, *PIMAGE_SECTION_HEADER
;
152 #define IMAGE_SIZEOF_SECTION_HEADER 40
154 /* ----------------------------------------------------------- */
155 typedef struct _IMAGE_BASE_RELOCATION
{
156 DWORD VirtualAddress
;
158 // WORD TypeOffset[1];
159 } IMAGE_BASE_RELOCATION
;
161 #define IMAGE_SIZEOF_BASE_RELOCATION 8
163 #define IMAGE_REL_BASED_ABSOLUTE 0
164 #define IMAGE_REL_BASED_HIGH 1
165 #define IMAGE_REL_BASED_LOW 2
166 #define IMAGE_REL_BASED_HIGHLOW 3
167 #define IMAGE_REL_BASED_HIGHADJ 4
168 #define IMAGE_REL_BASED_MIPS_JMPADDR 5
169 #define IMAGE_REL_BASED_SECTION 6
170 #define IMAGE_REL_BASED_REL32 7
172 /* ----------------------------------------------------------- */
174 /* ----------------------------------------------------------- */
175 IMAGE_DOS_HEADER pe_dos_hdr
= {
176 0x5A4D, /*WORD e_magic; Magic number */
177 0x0090, /*WORD e_cblp; Bytes on last page of file */
178 0x0003, /*WORD e_cp; Pages in file */
179 0x0000, /*WORD e_crlc; Relocations */
181 0x0004, /*WORD e_cparhdr; Size of header in paragraphs */
182 0x0000, /*WORD e_minalloc; Minimum extra paragraphs needed */
183 0xFFFF, /*WORD e_maxalloc; Maximum extra paragraphs needed */
184 0x0000, /*WORD e_ss; Initial (relative) SS value */
186 0x00B8, /*WORD e_sp; Initial SP value */
187 0x0000, /*WORD e_csum; Checksum */
188 0x0000, /*WORD e_ip; Initial IP value */
189 0x0000, /*WORD e_cs; Initial (relative) CS value */
190 0x0040, /*WORD e_lfarlc; File address of relocation table */
191 0x0000, /*WORD e_ovno; Overlay number */
192 {0, 0, 0, 0}, /*WORD e_res[4]; Reserved words */
193 0x0000, /*WORD e_oemid; OEM identifier (for e_oeminfo) */
194 0x0000, /*WORD e_oeminfo; OEM information; e_oemid specific */
195 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, /*WORD e_res2[10]; Reserved words */
196 0x00000080, /*DWORD e_lfanew; File address of new exe header */
197 { /* 14 code bytes + "This program cannot be run in DOS mode.\r\r\n$" + 6 * 0x00 */
198 /*0040 */ 0x0e, 0x1f, 0xba, 0x0e, 0x00, 0xb4, 0x09, 0xcd, 0x21, 0xb8,
199 0x01, 0x4c, 0xcd, 0x21, 0x54, 0x68,
200 /*0050 */ 0x69, 0x73, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d,
201 0x20, 0x63, 0x61, 0x6e, 0x6e, 0x6f,
202 /*0060 */ 0x74, 0x20, 0x62, 0x65, 0x20, 0x72, 0x75, 0x6e, 0x20, 0x69,
203 0x6e, 0x20, 0x44, 0x4f, 0x53, 0x20,
204 /*0070 */ 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x0d, 0x0d, 0x0a, 0x24, 0x00,
205 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
210 DWORD pe_magic
= IMAGE_NT_SIGNATURE
;
212 IMAGE_FILE_HEADER pe_file_hdr
= {
213 0x014C, /*WORD Machine; */
214 0x0003, /*WORD NumberOfSections; */
215 0x00000000, /*DWORD TimeDateStamp; */
216 0x00000000, /*DWORD PointerToSymbolTable; */
217 0x00000000, /*DWORD NumberOfSymbols; */
218 0x00E0, /*WORD SizeOfOptionalHeader; */
219 0x030F /*WORD Characteristics; */
222 IMAGE_OPTIONAL_HEADER32 pe_opt_hdr
= {
223 /* Standard fields. */
224 0x010B, /*WORD Magic; */
225 0x06, /*BYTE MajorLinkerVersion; */
226 0x00, /*BYTE MinorLinkerVersion; */
227 0x00000000, /*DWORD SizeOfCode; */
228 0x00000000, /*DWORD SizeOfInitializedData; */
229 0x00000000, /*DWORD SizeOfUninitializedData; */
230 0x00000000, /*DWORD AddressOfEntryPoint; */
231 0x00000000, /*DWORD BaseOfCode; */
232 0x00000000, /*DWORD BaseOfData; */
234 /* NT additional fields. */
235 0x00400000, /*DWORD ImageBase; */
236 0x00001000, /*DWORD SectionAlignment; */
237 0x00000200, /*DWORD FileAlignment; */
238 0x0004, /*WORD MajorOperatingSystemVersion; */
239 0x0000, /*WORD MinorOperatingSystemVersion; */
240 0x0000, /*WORD MajorImageVersion; */
241 0x0000, /*WORD MinorImageVersion; */
242 0x0004, /*WORD MajorSubsystemVersion; */
243 0x0000, /*WORD MinorSubsystemVersion; */
244 0x00000000, /*DWORD Win32VersionValue; */
245 0x00000000, /*DWORD SizeOfImage; */
246 0x00000200, /*DWORD SizeOfHeaders; */
247 0x00000000, /*DWORD CheckSum; */
248 0x0002, /*WORD Subsystem; */
249 0x0000, /*WORD DllCharacteristics; */
250 0x00100000, /*DWORD SizeOfStackReserve; */
251 0x00001000, /*DWORD SizeOfStackCommit; */
252 0x00100000, /*DWORD SizeOfHeapReserve; */
253 0x00001000, /*DWORD SizeOfHeapCommit; */
254 0x00000000, /*DWORD LoaderFlags; */
255 0x00000010, /*DWORD NumberOfRvaAndSizes; */
257 /* IMAGE_DATA_DIRECTORY DataDirectory[16]; */
258 {{0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0},
259 {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}}
262 /*----------------------------------------------------------------------------*/
264 /*----------------------------------------------------------------------------*/
266 struct pe_import_header
{
270 DWORD lib_name_offset
;
274 struct pe_export_header
{
275 DWORD Characteristics
;
280 DWORD NumberOfFunctions
;
282 DWORD AddressOfFunctions
;
283 DWORD AddressOfNames
;
284 DWORD AddressOfNameOrdinals
;
287 struct pe_reloc_header
{
292 /* ------------------------------------------------------------- */
293 /* internal temporary structures */
295 ST
const char *pe_sec_names
[] = {
316 ST DWORD pe_flags
[] = {
317 0x60000020, /* ".text", */
318 0xC0000040, /* ".data", */
319 0xC0000080, /* ".bss", */
320 0x40000040, /* ".rsrc", */
321 0x42000040, /* ".reloc", */
322 0x42000802, /* ".stab", */
323 0x42000802 /* ".stabstr", */
326 struct section_info
{
327 struct section_info
*next
;
335 struct import_symbol
{
340 struct pe_import_info
{
343 struct import_symbol
**symbols
;
347 const char *filename
;
357 struct section_info sh_info
[pe_sec_number
];
359 struct pe_import_info
**imp_info
;
366 /* ------------------------------------------------------------- */
367 #define PE_MERGE_DATA
368 // #define PE_PRINT_SECTIONS
374 void error_noabort(const char *, ...);
383 ST
int pe_find_import(TCCState
* s1
, const char *symbol
, char *ret
)
385 int sym_index
= find_elf_sym(s1
->dynsymtab_section
, symbol
);
386 if (0 == sym_index
) {
387 /* Hm, maybe it's '_symbol' instead of 'symbol' or '__imp__symbol' */
389 if (0 == memcmp(symbol
, "__imp__", 7))
392 buffer
[0] = '_', strcpy(buffer
+ 1, symbol
), symbol
= buffer
;
393 sym_index
= find_elf_sym(s1
->dynsymtab_section
, symbol
);
404 void *resolve_sym(struct TCCState
*s1
, const char *symbol
, int type
)
406 char buffer
[100], *p
= buffer
;
408 int sym_index
= pe_find_import(s1
, symbol
, p
);
410 const char *dll_name
;
414 dll_index
= ((Elf32_Sym
*) s1
->dynsymtab_section
->data
)[sym_index
].
416 dll_name
= s1
->loaded_dlls
[dll_index
]->name
;
417 hm
= GetModuleHandleA(dll_name
);
419 hm
= LoadLibraryA(dll_name
);
421 a
= GetProcAddress(hm
, buffer
);
422 if (a
&& STT_OBJECT
== type
) {
423 // need to return a pointer to the address for data objects
424 dynarray_add(&pe_imp
, &nb_pe_imp
, a
);
425 a
= &pe_imp
[nb_pe_imp
- 1];
433 #define for_sym_in_symtab(sym) \
434 for (sym = (Elf32_Sym *)symtab_section->data + 1; \
435 sym < (Elf32_Sym *)(symtab_section->data + \
436 symtab_section->data_offset); \
439 #define pe_set_datadir(dir,addr,size) \
440 pe_opt_hdr.DataDirectory[dir].VirtualAddress = addr, \
441 pe_opt_hdr.DataDirectory[dir].Size = size
443 /*----------------------------------------------------------------------------*/
444 ST
void dynarray_reset(void ***pp
, int *n
)
447 for (i
= 0; i
< *n
; ++i
)
454 ST
int dynarray_assoc(void **pp
, int n
, int key
)
457 for (i
= 0; i
< n
; ++i
, ++pp
)
458 if (key
== **(int **) pp
)
464 ST DWORD
umin(DWORD a
, DWORD b
)
466 return a
< b
? a
: b
;
470 ST DWORD
umax(DWORD a
, DWORD b
)
472 return a
< b
? b
: a
;
475 ST
void pe_fpad(FILE * fp
, DWORD new_pos
)
477 DWORD pos
= ftell(fp
);
478 while (++pos
<= new_pos
)
482 ST DWORD
pe_file_align(DWORD n
)
484 return (n
+ (0x200 - 1)) & ~(0x200 - 1);
487 ST DWORD
pe_virtual_align(DWORD n
)
489 return (n
+ (0x1000 - 1)) & ~(0x1000 - 1);
492 ST
void pe_align_section(Section
* s
, int a
)
494 int i
= s
->data_offset
& (a
- 1);
496 section_ptr_add(s
, a
- i
);
500 /*----------------------------------------------------------------------------*/
501 ST
int pe_write_pe(struct pe_info
*pe
)
506 IMAGE_SECTION_HEADER ish
[pe_sec_number
], *psh
;
509 op
= fopen(pe
->filename
, "wb");
511 error_noabort("could not create file: %s", pe
->filename
);
515 memset(&ish
, 0, sizeof ish
);
517 pe
->sizeofheaders
= pe_file_align(sizeof pe_dos_hdr
523 sizeof(IMAGE_SECTION_HEADER
)
526 file_offset
= pe
->sizeofheaders
;
527 pe_fpad(op
, file_offset
);
530 printf("-------------------------------"
531 "\n virt file size section" "\n");
533 for (i
= 0; i
< pe
->sec_count
; ++i
) {
534 struct section_info
*si
= pe
->sh_info
+ i
;
535 const char *sh_name
= pe_sec_names
[si
->id
];
536 unsigned long addr
= si
->sh_addr
- pe
->imagebase
;
537 unsigned long size
= si
->sh_size
;
540 printf("%6lx %6lx %6lx %s\n",
541 addr
, file_offset
, size
, sh_name
);
545 pe_opt_hdr
.BaseOfCode
= addr
;
546 pe_opt_hdr
.AddressOfEntryPoint
= addr
+ pe
->start_addr
;
550 pe_opt_hdr
.BaseOfData
= addr
;
552 pe_set_datadir(IMAGE_DIRECTORY_ENTRY_IMPORT
,
553 pe
->imp_offs
+ addr
, pe
->imp_size
);
554 pe_set_datadir(IMAGE_DIRECTORY_ENTRY_IAT
,
555 pe
->iat_offs
+ addr
, pe
->iat_size
);
558 pe_set_datadir(IMAGE_DIRECTORY_ENTRY_EXPORT
,
559 pe
->exp_offs
+ addr
, pe
->exp_size
);
567 pe_set_datadir(IMAGE_DIRECTORY_ENTRY_BASERELOC
, addr
, size
);
571 pe_set_datadir(IMAGE_DIRECTORY_ENTRY_RESOURCE
, addr
, size
);
581 psh
= &ish
[sec_index
++];
582 strcpy((char *) psh
->Name
, sh_name
);
584 psh
->Characteristics
= pe_flags
[si
->id
];
585 psh
->VirtualAddress
= addr
;
586 psh
->Misc
.VirtualSize
= size
;
587 pe_opt_hdr
.SizeOfImage
=
588 umax(psh
->VirtualAddress
+ psh
->Misc
.VirtualSize
,
589 pe_opt_hdr
.SizeOfImage
);
592 psh
->PointerToRawData
= file_offset
;
593 fwrite(si
->data
, 1, si
->data_size
, op
);
594 file_offset
= pe_file_align(file_offset
+ si
->data_size
);
595 psh
->SizeOfRawData
= file_offset
- psh
->PointerToRawData
;
596 pe_fpad(op
, file_offset
);
600 /*----------------------------------------------------- */
602 pe_file_hdr
.NumberOfSections
= sec_index
;
603 pe_opt_hdr
.SizeOfHeaders
= pe
->sizeofheaders
;
604 pe_opt_hdr
.ImageBase
= pe
->imagebase
;
605 if (PE_DLL
== pe_type
)
606 pe_file_hdr
.Characteristics
= 0x230E;
607 else if (PE_GUI
!= pe_type
)
608 pe_opt_hdr
.Subsystem
= 3;
610 fseek(op
, SEEK_SET
, 0);
611 fwrite(&pe_dos_hdr
, 1, sizeof pe_dos_hdr
, op
);
612 fwrite(&pe_magic
, 1, sizeof pe_magic
, op
);
613 fwrite(&pe_file_hdr
, 1, sizeof pe_file_hdr
, op
);
614 fwrite(&pe_opt_hdr
, 1, sizeof pe_opt_hdr
, op
);
615 for (i
= 0; i
< sec_index
; ++i
)
616 fwrite(&ish
[i
], 1, sizeof(IMAGE_SECTION_HEADER
), op
);
620 printf("-------------------------------\n");
622 printf("<-- %s (%lu bytes)\n", pe
->filename
, file_offset
);
627 /*----------------------------------------------------------------------------*/
628 ST
int pe_add_import(struct pe_info
*pe
, int sym_index
, DWORD offset
)
632 struct pe_import_info
*p
;
633 struct import_symbol
*s
;
636 ((Elf32_Sym
*) pe
->s1
->dynsymtab_section
->data
)[sym_index
].
638 i
= dynarray_assoc((void **) pe
->imp_info
, pe
->imp_count
, dll_index
);
643 p
= tcc_mallocz(sizeof *p
);
644 p
->dll_index
= dll_index
;
645 dynarray_add((void ***) &pe
->imp_info
, &pe
->imp_count
, p
);
648 i
= dynarray_assoc((void **) p
->symbols
, p
->sym_count
, sym_index
);
651 s
= tcc_mallocz(sizeof *s
);
652 s
->sym_index
= sym_index
;
654 dynarray_add((void ***) &p
->symbols
, &p
->sym_count
, s
);
660 /*----------------------------------------------------------------------------*/
661 ST
void pe_build_imports(struct pe_info
*pe
)
663 int thk_ptr
, ent_ptr
, dll_ptr
, sym_cnt
, i
;
664 DWORD voffset
= pe
->thunk
->sh_addr
- pe
->imagebase
;
665 int ndlls
= pe
->imp_count
;
667 for (sym_cnt
= i
= 0; i
< ndlls
; ++i
)
668 sym_cnt
+= pe
->imp_info
[i
]->sym_count
;
673 pe_align_section(pe
->thunk
, 16);
675 pe
->imp_offs
= dll_ptr
= pe
->thunk
->data_offset
;
676 pe
->imp_size
= (ndlls
+ 1) * sizeof(struct pe_import_header
);
677 pe
->iat_offs
= dll_ptr
+ pe
->imp_size
;
678 pe
->iat_size
= (sym_cnt
+ ndlls
) * sizeof(DWORD
);
679 section_ptr_add(pe
->thunk
, pe
->imp_size
+ 2 * pe
->iat_size
);
681 thk_ptr
= pe
->iat_offs
;
682 ent_ptr
= pe
->iat_offs
+ pe
->iat_size
;
683 for (i
= 0; i
< pe
->imp_count
; ++i
) {
684 struct pe_import_header
*hdr
;
686 struct pe_import_info
*p
= pe
->imp_info
[i
];
687 const char *name
= pe
->s1
->loaded_dlls
[p
->dll_index
]->name
;
689 /* put the dll name into the import header */
690 if (0 == strncmp(name
, "lib", 3))
692 v
= put_elf_str(pe
->thunk
, name
);
694 hdr
= (struct pe_import_header
*) (pe
->thunk
->data
+ dll_ptr
);
695 hdr
->first_thunk
= thk_ptr
+ voffset
;
696 hdr
->first_entry
= ent_ptr
+ voffset
;
697 hdr
->lib_name_offset
= v
+ voffset
;
699 for (k
= 0, n
= p
->sym_count
; k
<= n
; ++k
) {
701 DWORD offset
= p
->symbols
[k
]->offset
;
702 int sym_index
= p
->symbols
[k
]->sym_index
;
704 (Elf32_Sym
*) pe
->s1
->dynsymtab_section
->data
+
707 pe
->s1
->dynsymtab_section
->link
->data
+ sym
->st_name
;
709 if (offset
& 0x80000000) { /* ref to data */
711 &((Elf32_Sym
*) symtab_section
->
712 data
)[offset
& 0x7FFFFFFF];
713 sym
->st_value
= thk_ptr
;
714 sym
->st_shndx
= pe
->thunk
->sh_num
;
715 } else { /* ref to function */
718 sprintf(buffer
, "IAT.%s", name
);
720 put_elf_sym(symtab_section
, thk_ptr
, sizeof(DWORD
),
721 ELF32_ST_INFO(STB_GLOBAL
, STT_OBJECT
),
722 0, pe
->thunk
->sh_num
, buffer
);
724 put_elf_reloc(symtab_section
, text_section
, offset
, R_386_32
, /*R_JMP_SLOT, */
727 v
= pe
->thunk
->data_offset
+ voffset
;
728 section_ptr_add(pe
->thunk
, sizeof(WORD
)); /* hint, not used */
729 put_elf_str(pe
->thunk
, name
);
731 v
= 0; // last entry is zero
733 *(DWORD
*) (pe
->thunk
->data
+ thk_ptr
) =
734 *(DWORD
*) (pe
->thunk
->data
+ ent_ptr
) = v
;
735 thk_ptr
+= sizeof(DWORD
);
736 ent_ptr
+= sizeof(DWORD
);
738 dll_ptr
+= sizeof(struct pe_import_header
);
739 dynarray_reset((void ***) &p
->symbols
, &p
->sym_count
);
741 dynarray_reset((void ***) &pe
->imp_info
, &pe
->imp_count
);
744 /* ------------------------------------------------------------- */
745 ST
int sym_cmp(const void *va
, const void *vb
)
747 Elf32_Sym
*sa
= (Elf32_Sym
*)symtab_section
->data
+ *(int*)va
;
748 Elf32_Sym
*sb
= (Elf32_Sym
*)symtab_section
->data
+ *(int*)vb
;
749 const char *ca
= symtab_section
->link
->data
+ sa
->st_name
;
750 const char *cb
= symtab_section
->link
->data
+ sb
->st_name
;
751 return strcmp(ca
, cb
);
754 ST
void pe_build_exports(struct pe_info
*pe
)
757 DWORD func_offset
, voffset
;
758 struct pe_export_header
*hdr
;
759 int sym_count
, n
, ord
, *sorted
;
761 voffset
= pe
->thunk
->sh_addr
- pe
->imagebase
;
762 sym_count
= 0, n
= 1, sorted
= NULL
;
764 // for simplicity only functions are exported
765 for_sym_in_symtab(sym
)
767 if ((sym
->st_other
& 1)
768 && sym
->st_shndx
== text_section
->sh_num
)
769 dynarray_add((void***)&sorted
, &sym_count
, (void*)n
);
776 qsort (sorted
, sym_count
, sizeof sorted
[0], sym_cmp
);
777 pe_align_section(pe
->thunk
, 16);
779 pe
->exp_offs
= pe
->thunk
->data_offset
;
780 hdr
= section_ptr_add(pe
->thunk
,
781 sizeof(struct pe_export_header
) +
782 sym_count
* (2 * sizeof(DWORD
) + sizeof(WORD
)));
784 func_offset
= pe
->exp_offs
+ sizeof(struct pe_export_header
);
786 hdr
->Characteristics
= 0;
788 hdr
->NumberOfFunctions
= sym_count
;
789 hdr
->NumberOfNames
= sym_count
;
790 hdr
->AddressOfFunctions
= func_offset
+ voffset
;
791 hdr
->AddressOfNames
= hdr
->AddressOfFunctions
+ sym_count
* sizeof(DWORD
);
792 hdr
->AddressOfNameOrdinals
= hdr
->AddressOfNames
+ sym_count
* sizeof(DWORD
);
793 hdr
->Name
= pe
->thunk
->data_offset
+ voffset
;
794 put_elf_str(pe
->thunk
, tcc_basename(pe
->filename
));
796 for (ord
= 0; ord
< sym_count
; ++ord
)
798 char *name
; DWORD
*p
, *pfunc
, *pname
; WORD
*pord
;
799 sym
= (Elf32_Sym
*)symtab_section
->data
+ sorted
[ord
];
800 name
= symtab_section
->link
->data
+ sym
->st_name
;
801 p
= (DWORD
*)(pe
->thunk
->data
+ func_offset
);
803 pname
= p
+ sym_count
+ ord
;
804 pord
= (WORD
*)(p
+ 2*sym_count
) + ord
;
805 *pfunc
= sym
->st_value
+ pe
->s1
->sections
[sym
->st_shndx
]->sh_addr
- pe
->imagebase
;
806 *pname
= pe
->thunk
->data_offset
+ voffset
;
808 put_elf_str(pe
->thunk
, name
);
809 /* printf("export: %s\n", name); */
811 pe
->exp_size
= pe
->thunk
->data_offset
- pe
->exp_offs
;
815 /* ------------------------------------------------------------- */
816 ST
void pe_build_reloc(struct pe_info
*pe
, int *section_order
,
819 DWORD offset
, block_ptr
, addr
;
821 Elf32_Rel
*rel
, *rel_end
;
822 Section
*s
= NULL
, *sr
;
823 offset
= addr
= block_ptr
= count
= i
= 0;
824 rel
= rel_end
= NULL
;
827 int type
= ELF32_R_TYPE(rel
->r_info
);
828 addr
= rel
->r_offset
+ s
->sh_addr
;
830 if (type
!= R_386_32
)
832 if (count
== 0) { /* new block */
833 block_ptr
= pe
->reloc
->data_offset
;
834 section_ptr_add(pe
->reloc
, sizeof(struct pe_reloc_header
));
835 offset
= addr
& 0xFFFFFFFF << 12;
837 if ((addr
-= offset
) < (1 << 12)) { /* one block spans 4k addresses */
838 WORD
*wp
= section_ptr_add(pe
->reloc
, sizeof(WORD
));
839 *wp
= addr
| IMAGE_REL_BASED_HIGHLOW
<< 12;
844 } else if (i
< section_count
) {
845 sr
= (s
= pe
->s1
->sections
[section_order
[i
++]])->reloc
;
847 rel
= (Elf32_Rel
*) sr
->data
;
848 rel_end
= (Elf32_Rel
*) (sr
->data
+ sr
->data_offset
);
853 if (count
) { /* store the last block and ready for a new one */
854 struct pe_reloc_header
*hdr
;
856 section_ptr_add(pe
->reloc
, 2), ++count
;
857 hdr
= (struct pe_reloc_header
*) (pe
->reloc
->data
+ block_ptr
);
858 hdr
->offset
= offset
- pe
->imagebase
;
860 count
* sizeof(WORD
) + sizeof(struct pe_reloc_header
);
868 /* ------------------------------------------------------------- */
869 ST
int pe_assign_addresses(struct pe_info
*pe
)
873 int section_order
[pe_sec_number
];
874 struct section_info
*si_data
= NULL
;
876 pe
->imagebase
= PE_DLL
== pe_type
? 0x10000000 : 0x00400000;
877 addr
= pe
->imagebase
+ 1;
879 if (PE_DLL
== pe_type
)
880 pe
->reloc
= new_section(pe
->s1
, ".reloc", SHT_DYNAMIC
, SHF_ALLOC
);
882 for (n
= k
= 0; n
< pe_sec_number
; ++n
) {
883 for (i
= 1; i
< pe
->s1
->nb_sections
; ++i
) {
884 Section
*s
= pe
->s1
->sections
[i
];
885 if (0 == strcmp(s
->name
, pe_sec_names
[n
])) {
886 struct section_info
*si
= &pe
->sh_info
[pe
->sec_count
];
888 if (n
== sec_bss
&& si_data
) {
889 /* append .bss to .data */
890 s
->sh_addr
= addr
= ((addr
- 1) | 15) + 1;
891 addr
+= s
->data_offset
;
892 si_data
->sh_size
= addr
- si_data
->sh_addr
;
896 si
->sh_addr
= s
->sh_addr
= addr
=
897 pe_virtual_align(addr
);
903 pe_build_imports(pe
);
904 pe_build_exports(pe
);
905 } else if (n
== sec_reloc
) {
906 pe_build_reloc(pe
, section_order
, k
);
909 if (s
->data_offset
) {
912 si
->data_size
= s
->data_offset
;
915 addr
+= s
->data_offset
;
916 si
->sh_size
= s
->data_offset
;
919 //printf("Section %08X %04X %s\n", si->sh_addr, si->data_size, s->name);
921 section_order
[k
] = i
, ++k
;
928 /*----------------------------------------------------------------------------*/
929 ST
int pe_check_symbols(struct pe_info
*pe
)
934 pe_align_section(text_section
, 8);
936 for_sym_in_symtab(sym
) {
937 if (sym
->st_shndx
== SHN_UNDEF
) {
938 const char *symbol
= symtab_section
->link
->data
+ sym
->st_name
;
939 unsigned type
= ELF32_ST_TYPE(sym
->st_info
);
940 int sym_index
= pe_find_import(pe
->s1
, symbol
, NULL
);
942 if (type
== STT_FUNC
) {
943 unsigned long offset
= text_section
->data_offset
;
944 if (pe_add_import(pe
, sym_index
, offset
+ 2)) {
945 /* add the 'jmp IAT[x]' instruction */
946 *(WORD
*) section_ptr_add(text_section
, 8) =
948 /* patch the symbol */
949 sym
->st_shndx
= text_section
->sh_num
;
950 sym
->st_value
= offset
;
953 } else if (type
== STT_OBJECT
) { /* data, ptr to that should be */
954 if (pe_add_import(pe
, sym_index
,
956 (Elf32_Sym
*) symtab_section
->data
) |
961 error_noabort("undefined symbol '%s'", symbol
);
965 && ELF32_ST_BIND(sym
->st_info
) != STB_LOCAL
) {
966 /* if -rdynamic option, then export all non local symbols */
973 /*----------------------------------------------------------------------------*/
974 #ifdef PE_PRINT_SECTIONS
975 ST
void pe_print_section(FILE * f
, Section
* s
)
976 { /* just if you'r curious */
980 e
= s
->data
+ s
->data_offset
;
983 fprintf(f
, "section \"%s\"", s
->name
);
985 fprintf(f
, "\nlink \"%s\"", s
->link
->name
);
987 fprintf(f
, "\nreloc \"%s\"", s
->reloc
->name
);
988 fprintf(f
, "\nv_addr %08X", s
->sh_addr
);
989 fprintf(f
, "\ncontents %08X", l
);
992 if (s
->sh_type
== SHT_NOBITS
)
995 if (s
->sh_type
== SHT_SYMTAB
)
996 m
= sizeof(Elf32_Sym
);
997 if (s
->sh_type
== SHT_REL
)
998 m
= sizeof(Elf32_Rel
);
1002 for (i
= 0; i
< l
;) {
1003 fprintf(f
, "%08X", i
);
1004 for (n
= 0; n
< m
; ++n
) {
1006 fprintf(f
, " %02X", p
[i
+ n
]);
1011 if (s
->sh_type
== SHT_SYMTAB
) {
1012 Elf32_Sym
*sym
= (Elf32_Sym
*) (p
+ i
);
1013 const char *name
= s
->link
->data
+ sym
->st_name
;
1026 ELF32_ST_BIND(sym
->st_info
),
1027 ELF32_ST_TYPE(sym
->st_info
),
1028 sym
->st_other
, sym
->st_shndx
, name
);
1029 } else if (s
->sh_type
== SHT_REL
) {
1030 Elf32_Rel
*rel
= (Elf32_Rel
*) (p
+ i
);
1032 (Elf32_Sym
*) s
->link
->data
+ ELF32_R_SYM(rel
->r_info
);
1033 const char *name
= s
->link
->link
->data
+ sym
->st_name
;
1040 ELF32_R_TYPE(rel
->r_info
),
1041 ELF32_R_SYM(rel
->r_info
), name
);
1044 for (n
= 0; n
< m
; ++n
) {
1047 if (b
< 32 || b
>= 127)
1049 fprintf(f
, "%c", b
);
1060 static int pe_test_cmd(const char **pp
, const char *cmd
)
1068 while (*p
!= '\0' && !is_space(*p
)) {
1069 if ((q
- buf
) < sizeof(buf
) - 1)
1074 ret
= !strcmp(buf
, cmd
);
1079 /* ------------------------------------------------------------- */
1080 int pe_load_def_file(TCCState
* s1
, FILE * fp
)
1082 DLLReference
*dllref
;
1083 int f
= 0, sym_index
;
1084 char *p
, line
[120], dllname
[40];
1085 while (fgets(line
, sizeof line
, fp
)) {
1086 p
= strchr(line
, 0);
1087 while (p
> line
&& p
[-1] <= ' ')
1091 while (*p
&& *p
<= ' ')
1094 if (*p
&& ';' != *p
)
1097 if (!pe_test_cmd((const char **)&p
, "LIBRARY"))
1099 while (is_space(*p
))
1101 pstrcpy(dllname
, sizeof(dllname
), p
);
1106 if (!pe_test_cmd((const char **)&p
, "EXPORTS"))
1113 tcc_malloc(sizeof(DLLReference
) + strlen(dllname
));
1114 strcpy(dllref
->name
, dllname
);
1116 dynarray_add((void ***) &s1
->loaded_dlls
,
1117 &s1
->nb_loaded_dlls
, dllref
);
1121 /* tccpe needs to know from what dll it should import
1123 sym_index
= add_elf_sym(s1
->dynsymtab_section
,
1124 0, 0, ELF32_ST_INFO(STB_GLOBAL
,
1126 s1
->nb_loaded_dlls
- 1,
1127 text_section
->sh_num
, p
);
1134 /* ------------------------------------------------------------- */
1135 void pe_guess_outfile(char *objfilename
, int output_type
)
1137 char *ext
= strrchr(objfilename
, '.');
1139 ext
= strchr(objfilename
, 0);
1140 if (output_type
== TCC_OUTPUT_DLL
)
1141 strcpy(ext
, ".dll");
1143 if (output_type
== TCC_OUTPUT_EXE
)
1144 strcpy(ext
, ".exe");
1146 if (output_type
== TCC_OUTPUT_OBJ
&& strcmp(ext
, ".o"))
1149 error("no outputfile given");
1152 /* ------------------------------------------------------------- */
1153 unsigned long pe_add_runtime(TCCState
* s1
)
1155 const char *start_symbol
;
1158 if (find_elf_sym(symtab_section
, "WinMain"))
1161 if (TCC_OUTPUT_DLL
== s1
->output_type
)
1164 // need this for 'tccelf.c:relocate_section()'
1165 s1
->output_type
= TCC_OUTPUT_EXE
;
1169 TCC_OUTPUT_MEMORY
== s1
->output_type
1170 ? PE_GUI
== pe_type
? "_runwinmain" : NULL
1171 : PE_DLL
== pe_type
? "_dllstart"
1172 : PE_GUI
== pe_type
? "_winstart" : "_start";
1174 /* grab the startup code from libtcc1 */
1176 add_elf_sym(symtab_section
,
1178 ELF32_ST_INFO(STB_GLOBAL
, STT_NOTYPE
), 0,
1179 SHN_UNDEF
, start_symbol
);
1181 if (0 == s1
->nostdlib
) {
1182 tcc_add_library(s1
, "tcc1");
1183 tcc_add_library(s1
, "msvcrt");
1184 if (PE_DLL
== pe_type
|| PE_GUI
== pe_type
) {
1185 tcc_add_library(s1
, "kernel32");
1186 tcc_add_library(s1
, "user32");
1187 tcc_add_library(s1
, "gdi32");
1191 addr
= start_symbol
?
1192 (unsigned long) tcc_get_symbol_err(s1
, start_symbol
) : 0;
1194 if (s1
->output_type
== TCC_OUTPUT_MEMORY
&& addr
) {
1195 /* for -run GUI's, put '_runwinmain' instead of 'main' */
1196 add_elf_sym(symtab_section
,
1198 ELF32_ST_INFO(STB_GLOBAL
, STT_NOTYPE
), 0,
1199 text_section
->sh_num
, "main");
1201 /* FreeConsole(); */
1206 int tcc_output_pe(TCCState
* s1
, const char *filename
)
1211 memset(&pe
, 0, sizeof pe
);
1212 pe
.filename
= filename
;
1214 pe
.start_addr
= pe_add_runtime(s1
);
1216 relocate_common_syms(); /* assign bss adresses */
1217 ret
= pe_check_symbols(&pe
);
1219 pe_assign_addresses(&pe
);
1220 relocate_syms(s1
, 0);
1221 for (i
= 1; i
< s1
->nb_sections
; ++i
) {
1222 Section
*s
= s1
->sections
[i
];
1224 relocate_section(s1
, s
);
1226 ret
= pe_write_pe(&pe
);
1228 #ifdef PE_PRINT_SECTIONS
1232 f
= fopen("tccpe.log", "wt");
1233 for (i
= 1; i
< s1
->nb_sections
; ++i
) {
1234 s
= s1
->sections
[i
];
1235 pe_print_section(f
, s
);
1237 pe_print_section(f
, s1
->dynsymtab_section
);
1244 /*----------------------------------------------------------------------------*/