1 /* Support for the generic parts of PE/PEI; the common executable parts.
2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006 Free Software Foundation, Inc.
4 Written by Cygnus Solutions.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program 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
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
22 /* Most of this hacked by Steve Chamberlain <sac@cygnus.com>.
24 PE/PEI rearrangement (and code added): Donn Terry
25 Softway Systems, Inc. */
27 /* Hey look, some documentation [and in a place you expect to find it]!
29 The main reference for the pei format is "Microsoft Portable Executable
30 and Common Object File Format Specification 4.1". Get it if you need to
31 do some serious hacking on this code.
34 "Peering Inside the PE: A Tour of the Win32 Portable Executable
35 File Format", MSJ 1994, Volume 9.
37 The *sole* difference between the pe format and the pei format is that the
38 latter has an MSDOS 2.0 .exe header on the front that prints the message
39 "This app must be run under Windows." (or some such).
40 (FIXME: Whether that statement is *really* true or not is unknown.
41 Are there more subtle differences between pe and pei formats?
42 For now assume there aren't. If you find one, then for God sakes
45 The Microsoft docs use the word "image" instead of "executable" because
46 the former can also refer to a DLL (shared library). Confusion can arise
47 because the `i' in `pei' also refers to "image". The `pe' format can
48 also create images (i.e. executables), it's just that to run on a win32
49 system you need to use the pei format.
51 FIXME: Please add more docs here so the next poor fool that has to hack
52 on this code has a chance of getting something accomplished without
53 wasting too much time. */
55 /* This expands into COFF_WITH_pe, COFF_WITH_pep, or COFF_WITH_pex64
56 depending on whether we're compiling for straight PE or PE+. */
62 #include "coff/internal.h"
64 /* NOTE: it's strange to be including an architecture specific header
65 in what's supposed to be general (to PE/PEI) code. However, that's
66 where the definitions are, and they don't vary per architecture
67 within PE/PEI, so we get them from there. FIXME: The lack of
68 variance is an assumption which may prove to be incorrect if new
69 PE/PEI targets are created. */
70 #if defined COFF_WITH_pex64
71 # include "coff/x86_64.h"
72 #elif defined COFF_WITH_pep
73 # include "coff/ia64.h"
75 # include "coff/i386.h"
82 #if defined COFF_WITH_pep || defined COFF_WITH_pex64
84 # define AOUTSZ PEPAOUTSZ
85 # define PEAOUTHDR PEPAOUTHDR
88 /* FIXME: This file has various tests of POWERPC_LE_PE. Those tests
89 worked when the code was in peicode.h, but no longer work now that
90 the code is in peigen.c. PowerPC NT is said to be dead. If
91 anybody wants to revive the code, you will have to figure out how
92 to handle those issues. */
95 _bfd_XXi_swap_sym_in (bfd
* abfd
, void * ext1
, void * in1
)
97 SYMENT
*ext
= (SYMENT
*) ext1
;
98 struct internal_syment
*in
= (struct internal_syment
*) in1
;
100 if (ext
->e
.e_name
[0] == 0)
102 in
->_n
._n_n
._n_zeroes
= 0;
103 in
->_n
._n_n
._n_offset
= H_GET_32 (abfd
, ext
->e
.e
.e_offset
);
106 memcpy (in
->_n
._n_name
, ext
->e
.e_name
, SYMNMLEN
);
108 in
->n_value
= H_GET_32 (abfd
, ext
->e_value
);
109 in
->n_scnum
= H_GET_16 (abfd
, ext
->e_scnum
);
111 if (sizeof (ext
->e_type
) == 2)
112 in
->n_type
= H_GET_16 (abfd
, ext
->e_type
);
114 in
->n_type
= H_GET_32 (abfd
, ext
->e_type
);
116 in
->n_sclass
= H_GET_8 (abfd
, ext
->e_sclass
);
117 in
->n_numaux
= H_GET_8 (abfd
, ext
->e_numaux
);
119 #ifndef STRICT_PE_FORMAT
120 /* This is for Gnu-created DLLs. */
122 /* The section symbols for the .idata$ sections have class 0x68
123 (C_SECTION), which MS documentation indicates is a section
124 symbol. Unfortunately, the value field in the symbol is simply a
125 copy of the .idata section's flags rather than something useful.
126 When these symbols are encountered, change the value to 0 so that
127 they will be handled somewhat correctly in the bfd code. */
128 if (in
->n_sclass
== C_SECTION
)
132 /* Create synthetic empty sections as needed. DJ */
133 if (in
->n_scnum
== 0)
137 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
139 if (strcmp (sec
->name
, in
->n_name
) == 0)
141 in
->n_scnum
= sec
->target_index
;
147 if (in
->n_scnum
== 0)
149 int unused_section_number
= 0;
154 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
155 if (unused_section_number
<= sec
->target_index
)
156 unused_section_number
= sec
->target_index
+ 1;
158 name
= bfd_alloc (abfd
, (bfd_size_type
) strlen (in
->n_name
) + 10);
161 strcpy (name
, in
->n_name
);
162 flags
= SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_DATA
| SEC_LOAD
;
163 sec
= bfd_make_section_anyway_with_flags (abfd
, name
, flags
);
169 sec
->rel_filepos
= 0;
170 sec
->reloc_count
= 0;
171 sec
->line_filepos
= 0;
172 sec
->lineno_count
= 0;
173 sec
->userdata
= NULL
;
175 sec
->alignment_power
= 2;
177 sec
->target_index
= unused_section_number
;
179 in
->n_scnum
= unused_section_number
;
181 in
->n_sclass
= C_STAT
;
185 #ifdef coff_swap_sym_in_hook
186 /* This won't work in peigen.c, but since it's for PPC PE, it's not
188 coff_swap_sym_in_hook (abfd
, ext1
, in1
);
193 _bfd_XXi_swap_sym_out (bfd
* abfd
, void * inp
, void * extp
)
195 struct internal_syment
*in
= (struct internal_syment
*) inp
;
196 SYMENT
*ext
= (SYMENT
*) extp
;
198 if (in
->_n
._n_name
[0] == 0)
200 H_PUT_32 (abfd
, 0, ext
->e
.e
.e_zeroes
);
201 H_PUT_32 (abfd
, in
->_n
._n_n
._n_offset
, ext
->e
.e
.e_offset
);
204 memcpy (ext
->e
.e_name
, in
->_n
._n_name
, SYMNMLEN
);
206 H_PUT_32 (abfd
, in
->n_value
, ext
->e_value
);
207 H_PUT_16 (abfd
, in
->n_scnum
, ext
->e_scnum
);
209 if (sizeof (ext
->e_type
) == 2)
210 H_PUT_16 (abfd
, in
->n_type
, ext
->e_type
);
212 H_PUT_32 (abfd
, in
->n_type
, ext
->e_type
);
214 H_PUT_8 (abfd
, in
->n_sclass
, ext
->e_sclass
);
215 H_PUT_8 (abfd
, in
->n_numaux
, ext
->e_numaux
);
221 _bfd_XXi_swap_aux_in (bfd
* abfd
,
225 int indx ATTRIBUTE_UNUSED
,
226 int numaux ATTRIBUTE_UNUSED
,
229 AUXENT
*ext
= (AUXENT
*) ext1
;
230 union internal_auxent
*in
= (union internal_auxent
*) in1
;
235 if (ext
->x_file
.x_fname
[0] == 0)
237 in
->x_file
.x_n
.x_zeroes
= 0;
238 in
->x_file
.x_n
.x_offset
= H_GET_32 (abfd
, ext
->x_file
.x_n
.x_offset
);
241 memcpy (in
->x_file
.x_fname
, ext
->x_file
.x_fname
, FILNMLEN
);
249 in
->x_scn
.x_scnlen
= GET_SCN_SCNLEN (abfd
, ext
);
250 in
->x_scn
.x_nreloc
= GET_SCN_NRELOC (abfd
, ext
);
251 in
->x_scn
.x_nlinno
= GET_SCN_NLINNO (abfd
, ext
);
252 in
->x_scn
.x_checksum
= H_GET_32 (abfd
, ext
->x_scn
.x_checksum
);
253 in
->x_scn
.x_associated
= H_GET_16 (abfd
, ext
->x_scn
.x_associated
);
254 in
->x_scn
.x_comdat
= H_GET_8 (abfd
, ext
->x_scn
.x_comdat
);
260 in
->x_sym
.x_tagndx
.l
= H_GET_32 (abfd
, ext
->x_sym
.x_tagndx
);
261 in
->x_sym
.x_tvndx
= H_GET_16 (abfd
, ext
->x_sym
.x_tvndx
);
263 if (class == C_BLOCK
|| class == C_FCN
|| ISFCN (type
) || ISTAG (class))
265 in
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
= GET_FCN_LNNOPTR (abfd
, ext
);
266 in
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
= GET_FCN_ENDNDX (abfd
, ext
);
270 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0] =
271 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0]);
272 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1] =
273 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1]);
274 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2] =
275 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2]);
276 in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3] =
277 H_GET_16 (abfd
, ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3]);
282 in
->x_sym
.x_misc
.x_fsize
= H_GET_32 (abfd
, ext
->x_sym
.x_misc
.x_fsize
);
286 in
->x_sym
.x_misc
.x_lnsz
.x_lnno
= GET_LNSZ_LNNO (abfd
, ext
);
287 in
->x_sym
.x_misc
.x_lnsz
.x_size
= GET_LNSZ_SIZE (abfd
, ext
);
292 _bfd_XXi_swap_aux_out (bfd
* abfd
,
296 int indx ATTRIBUTE_UNUSED
,
297 int numaux ATTRIBUTE_UNUSED
,
300 union internal_auxent
*in
= (union internal_auxent
*) inp
;
301 AUXENT
*ext
= (AUXENT
*) extp
;
303 memset (ext
, 0, AUXESZ
);
308 if (in
->x_file
.x_fname
[0] == 0)
310 H_PUT_32 (abfd
, 0, ext
->x_file
.x_n
.x_zeroes
);
311 H_PUT_32 (abfd
, in
->x_file
.x_n
.x_offset
, ext
->x_file
.x_n
.x_offset
);
314 memcpy (ext
->x_file
.x_fname
, in
->x_file
.x_fname
, FILNMLEN
);
323 PUT_SCN_SCNLEN (abfd
, in
->x_scn
.x_scnlen
, ext
);
324 PUT_SCN_NRELOC (abfd
, in
->x_scn
.x_nreloc
, ext
);
325 PUT_SCN_NLINNO (abfd
, in
->x_scn
.x_nlinno
, ext
);
326 H_PUT_32 (abfd
, in
->x_scn
.x_checksum
, ext
->x_scn
.x_checksum
);
327 H_PUT_16 (abfd
, in
->x_scn
.x_associated
, ext
->x_scn
.x_associated
);
328 H_PUT_8 (abfd
, in
->x_scn
.x_comdat
, ext
->x_scn
.x_comdat
);
334 H_PUT_32 (abfd
, in
->x_sym
.x_tagndx
.l
, ext
->x_sym
.x_tagndx
);
335 H_PUT_16 (abfd
, in
->x_sym
.x_tvndx
, ext
->x_sym
.x_tvndx
);
337 if (class == C_BLOCK
|| class == C_FCN
|| ISFCN (type
) || ISTAG (class))
339 PUT_FCN_LNNOPTR (abfd
, in
->x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
, ext
);
340 PUT_FCN_ENDNDX (abfd
, in
->x_sym
.x_fcnary
.x_fcn
.x_endndx
.l
, ext
);
344 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0],
345 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[0]);
346 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1],
347 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[1]);
348 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2],
349 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[2]);
350 H_PUT_16 (abfd
, in
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3],
351 ext
->x_sym
.x_fcnary
.x_ary
.x_dimen
[3]);
355 H_PUT_32 (abfd
, in
->x_sym
.x_misc
.x_fsize
, ext
->x_sym
.x_misc
.x_fsize
);
358 PUT_LNSZ_LNNO (abfd
, in
->x_sym
.x_misc
.x_lnsz
.x_lnno
, ext
);
359 PUT_LNSZ_SIZE (abfd
, in
->x_sym
.x_misc
.x_lnsz
.x_size
, ext
);
366 _bfd_XXi_swap_lineno_in (bfd
* abfd
, void * ext1
, void * in1
)
368 LINENO
*ext
= (LINENO
*) ext1
;
369 struct internal_lineno
*in
= (struct internal_lineno
*) in1
;
371 in
->l_addr
.l_symndx
= H_GET_32 (abfd
, ext
->l_addr
.l_symndx
);
372 in
->l_lnno
= GET_LINENO_LNNO (abfd
, ext
);
376 _bfd_XXi_swap_lineno_out (bfd
* abfd
, void * inp
, void * outp
)
378 struct internal_lineno
*in
= (struct internal_lineno
*) inp
;
379 struct external_lineno
*ext
= (struct external_lineno
*) outp
;
380 H_PUT_32 (abfd
, in
->l_addr
.l_symndx
, ext
->l_addr
.l_symndx
);
382 PUT_LINENO_LNNO (abfd
, in
->l_lnno
, ext
);
387 _bfd_XXi_swap_aouthdr_in (bfd
* abfd
,
391 struct internal_extra_pe_aouthdr
*a
;
392 PEAOUTHDR
* src
= (PEAOUTHDR
*) (aouthdr_ext1
);
393 AOUTHDR
* aouthdr_ext
= (AOUTHDR
*) aouthdr_ext1
;
394 struct internal_aouthdr
*aouthdr_int
= (struct internal_aouthdr
*)aouthdr_int1
;
396 aouthdr_int
->magic
= H_GET_16 (abfd
, aouthdr_ext
->magic
);
397 aouthdr_int
->vstamp
= H_GET_16 (abfd
, aouthdr_ext
->vstamp
);
398 aouthdr_int
->tsize
= GET_AOUTHDR_TSIZE (abfd
, aouthdr_ext
->tsize
);
399 aouthdr_int
->dsize
= GET_AOUTHDR_DSIZE (abfd
, aouthdr_ext
->dsize
);
400 aouthdr_int
->bsize
= GET_AOUTHDR_BSIZE (abfd
, aouthdr_ext
->bsize
);
401 aouthdr_int
->entry
= GET_AOUTHDR_ENTRY (abfd
, aouthdr_ext
->entry
);
402 aouthdr_int
->text_start
=
403 GET_AOUTHDR_TEXT_START (abfd
, aouthdr_ext
->text_start
);
404 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
405 /* PE32+ does not have data_start member! */
406 aouthdr_int
->data_start
=
407 GET_AOUTHDR_DATA_START (abfd
, aouthdr_ext
->data_start
);
410 a
= &aouthdr_int
->pe
;
411 a
->ImageBase
= GET_OPTHDR_IMAGE_BASE (abfd
, src
->ImageBase
);
412 a
->SectionAlignment
= H_GET_32 (abfd
, src
->SectionAlignment
);
413 a
->FileAlignment
= H_GET_32 (abfd
, src
->FileAlignment
);
414 a
->MajorOperatingSystemVersion
=
415 H_GET_16 (abfd
, src
->MajorOperatingSystemVersion
);
416 a
->MinorOperatingSystemVersion
=
417 H_GET_16 (abfd
, src
->MinorOperatingSystemVersion
);
418 a
->MajorImageVersion
= H_GET_16 (abfd
, src
->MajorImageVersion
);
419 a
->MinorImageVersion
= H_GET_16 (abfd
, src
->MinorImageVersion
);
420 a
->MajorSubsystemVersion
= H_GET_16 (abfd
, src
->MajorSubsystemVersion
);
421 a
->MinorSubsystemVersion
= H_GET_16 (abfd
, src
->MinorSubsystemVersion
);
422 a
->Reserved1
= H_GET_32 (abfd
, src
->Reserved1
);
423 a
->SizeOfImage
= H_GET_32 (abfd
, src
->SizeOfImage
);
424 a
->SizeOfHeaders
= H_GET_32 (abfd
, src
->SizeOfHeaders
);
425 a
->CheckSum
= H_GET_32 (abfd
, src
->CheckSum
);
426 a
->Subsystem
= H_GET_16 (abfd
, src
->Subsystem
);
427 a
->DllCharacteristics
= H_GET_16 (abfd
, src
->DllCharacteristics
);
428 a
->SizeOfStackReserve
=
429 GET_OPTHDR_SIZE_OF_STACK_RESERVE (abfd
, src
->SizeOfStackReserve
);
430 a
->SizeOfStackCommit
=
431 GET_OPTHDR_SIZE_OF_STACK_COMMIT (abfd
, src
->SizeOfStackCommit
);
432 a
->SizeOfHeapReserve
=
433 GET_OPTHDR_SIZE_OF_HEAP_RESERVE (abfd
, src
->SizeOfHeapReserve
);
434 a
->SizeOfHeapCommit
=
435 GET_OPTHDR_SIZE_OF_HEAP_COMMIT (abfd
, src
->SizeOfHeapCommit
);
436 a
->LoaderFlags
= H_GET_32 (abfd
, src
->LoaderFlags
);
437 a
->NumberOfRvaAndSizes
= H_GET_32 (abfd
, src
->NumberOfRvaAndSizes
);
442 for (idx
= 0; idx
< 16; idx
++)
444 /* If data directory is empty, rva also should be 0. */
446 H_GET_32 (abfd
, src
->DataDirectory
[idx
][1]);
448 a
->DataDirectory
[idx
].Size
= size
;
451 a
->DataDirectory
[idx
].VirtualAddress
=
452 H_GET_32 (abfd
, src
->DataDirectory
[idx
][0]);
454 a
->DataDirectory
[idx
].VirtualAddress
= 0;
458 if (aouthdr_int
->entry
)
460 aouthdr_int
->entry
+= a
->ImageBase
;
461 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
462 aouthdr_int
->entry
&= 0xffffffff;
466 if (aouthdr_int
->tsize
)
468 aouthdr_int
->text_start
+= a
->ImageBase
;
469 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
470 aouthdr_int
->text_start
&= 0xffffffff;
474 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
475 /* PE32+ does not have data_start member! */
476 if (aouthdr_int
->dsize
)
478 aouthdr_int
->data_start
+= a
->ImageBase
;
479 aouthdr_int
->data_start
&= 0xffffffff;
484 /* These three fields are normally set up by ppc_relocate_section.
485 In the case of reading a file in, we can pick them up from the
487 first_thunk_address
= a
->DataDirectory
[PE_IMPORT_ADDRESS_TABLE
].VirtualAddress
;
488 thunk_size
= a
->DataDirectory
[PE_IMPORT_ADDRESS_TABLE
].Size
;
489 import_table_size
= a
->DataDirectory
[PE_IMPORT_TABLE
].Size
;
493 /* A support function for below. */
496 add_data_entry (bfd
* abfd
,
497 struct internal_extra_pe_aouthdr
*aout
,
502 asection
*sec
= bfd_get_section_by_name (abfd
, name
);
504 /* Add import directory information if it exists. */
506 && (coff_section_data (abfd
, sec
) != NULL
)
507 && (pei_section_data (abfd
, sec
) != NULL
))
509 /* If data directory is empty, rva also should be 0. */
510 int size
= pei_section_data (abfd
, sec
)->virt_size
;
511 aout
->DataDirectory
[idx
].Size
= size
;
515 aout
->DataDirectory
[idx
].VirtualAddress
=
516 (sec
->vma
- base
) & 0xffffffff;
517 sec
->flags
|= SEC_DATA
;
523 _bfd_XXi_swap_aouthdr_out (bfd
* abfd
, void * in
, void * out
)
525 struct internal_aouthdr
*aouthdr_in
= (struct internal_aouthdr
*) in
;
526 pe_data_type
*pe
= pe_data (abfd
);
527 struct internal_extra_pe_aouthdr
*extra
= &pe
->pe_opthdr
;
528 PEAOUTHDR
*aouthdr_out
= (PEAOUTHDR
*) out
;
530 IMAGE_DATA_DIRECTORY idata2
, idata5
, tls
;
532 if (pe
->force_minimum_alignment
)
534 if (!extra
->FileAlignment
)
535 extra
->FileAlignment
= PE_DEF_FILE_ALIGNMENT
;
536 if (!extra
->SectionAlignment
)
537 extra
->SectionAlignment
= PE_DEF_SECTION_ALIGNMENT
;
540 if (extra
->Subsystem
== IMAGE_SUBSYSTEM_UNKNOWN
)
541 extra
->Subsystem
= pe
->target_subsystem
;
543 sa
= extra
->SectionAlignment
;
544 fa
= extra
->FileAlignment
;
545 ib
= extra
->ImageBase
;
547 idata2
= pe
->pe_opthdr
.DataDirectory
[PE_IMPORT_TABLE
];
548 idata5
= pe
->pe_opthdr
.DataDirectory
[PE_IMPORT_ADDRESS_TABLE
];
549 tls
= pe
->pe_opthdr
.DataDirectory
[PE_TLS_TABLE
];
551 if (aouthdr_in
->tsize
)
553 aouthdr_in
->text_start
-= ib
;
554 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
555 aouthdr_in
->text_start
&= 0xffffffff;
559 if (aouthdr_in
->dsize
)
561 aouthdr_in
->data_start
-= ib
;
562 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
563 aouthdr_in
->data_start
&= 0xffffffff;
567 if (aouthdr_in
->entry
)
569 aouthdr_in
->entry
-= ib
;
570 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
571 aouthdr_in
->entry
&= 0xffffffff;
575 #define FA(x) (((x) + fa -1 ) & (- fa))
576 #define SA(x) (((x) + sa -1 ) & (- sa))
578 /* We like to have the sizes aligned. */
579 aouthdr_in
->bsize
= FA (aouthdr_in
->bsize
);
581 extra
->NumberOfRvaAndSizes
= IMAGE_NUMBEROF_DIRECTORY_ENTRIES
;
583 /* First null out all data directory entries. */
584 memset (extra
->DataDirectory
, 0, sizeof (extra
->DataDirectory
));
586 add_data_entry (abfd
, extra
, 0, ".edata", ib
);
587 add_data_entry (abfd
, extra
, 2, ".rsrc", ib
);
588 add_data_entry (abfd
, extra
, 3, ".pdata", ib
);
590 /* In theory we do not need to call add_data_entry for .idata$2 or
591 .idata$5. It will be done in bfd_coff_final_link where all the
592 required information is available. If however, we are not going
593 to perform a final link, eg because we have been invoked by objcopy
594 or strip, then we need to make sure that these Data Directory
595 entries are initialised properly.
597 So - we copy the input values into the output values, and then, if
598 a final link is going to be performed, it can overwrite them. */
599 extra
->DataDirectory
[PE_IMPORT_TABLE
] = idata2
;
600 extra
->DataDirectory
[PE_IMPORT_ADDRESS_TABLE
] = idata5
;
601 extra
->DataDirectory
[PE_TLS_TABLE
] = tls
;
603 if (extra
->DataDirectory
[PE_IMPORT_TABLE
].VirtualAddress
== 0)
604 /* Until other .idata fixes are made (pending patch), the entry for
605 .idata is needed for backwards compatibility. FIXME. */
606 add_data_entry (abfd
, extra
, 1, ".idata", ib
);
608 /* For some reason, the virtual size (which is what's set by
609 add_data_entry) for .reloc is not the same as the size recorded
610 in this slot by MSVC; it doesn't seem to cause problems (so far),
611 but since it's the best we've got, use it. It does do the right
613 if (pe
->has_reloc_section
)
614 add_data_entry (abfd
, extra
, 5, ".reloc", ib
);
623 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
625 int rounded
= FA (sec
->size
);
627 /* The first non-zero section filepos is the header size.
628 Sections without contents will have a filepos of 0. */
630 hsize
= sec
->filepos
;
631 if (sec
->flags
& SEC_DATA
)
633 if (sec
->flags
& SEC_CODE
)
635 /* The image size is the total VIRTUAL size (which is what is
636 in the virt_size field). Files have been seen (from MSVC
637 5.0 link.exe) where the file size of the .data segment is
638 quite small compared to the virtual size. Without this
639 fix, strip munges the file. */
640 if (coff_section_data (abfd
, sec
) != NULL
641 && pei_section_data (abfd
, sec
) != NULL
)
642 isize
+= SA (FA (pei_section_data (abfd
, sec
)->virt_size
));
645 aouthdr_in
->dsize
= dsize
;
646 aouthdr_in
->tsize
= tsize
;
647 extra
->SizeOfHeaders
= hsize
;
648 extra
->SizeOfImage
= SA (hsize
) + isize
;
651 H_PUT_16 (abfd
, aouthdr_in
->magic
, aouthdr_out
->standard
.magic
);
653 #define LINKER_VERSION 256 /* That is, 2.56 */
655 /* This piece of magic sets the "linker version" field to
657 H_PUT_16 (abfd
, (LINKER_VERSION
/ 100 + (LINKER_VERSION
% 100) * 256),
658 aouthdr_out
->standard
.vstamp
);
660 PUT_AOUTHDR_TSIZE (abfd
, aouthdr_in
->tsize
, aouthdr_out
->standard
.tsize
);
661 PUT_AOUTHDR_DSIZE (abfd
, aouthdr_in
->dsize
, aouthdr_out
->standard
.dsize
);
662 PUT_AOUTHDR_BSIZE (abfd
, aouthdr_in
->bsize
, aouthdr_out
->standard
.bsize
);
663 PUT_AOUTHDR_ENTRY (abfd
, aouthdr_in
->entry
, aouthdr_out
->standard
.entry
);
664 PUT_AOUTHDR_TEXT_START (abfd
, aouthdr_in
->text_start
,
665 aouthdr_out
->standard
.text_start
);
667 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
668 /* PE32+ does not have data_start member! */
669 PUT_AOUTHDR_DATA_START (abfd
, aouthdr_in
->data_start
,
670 aouthdr_out
->standard
.data_start
);
673 PUT_OPTHDR_IMAGE_BASE (abfd
, extra
->ImageBase
, aouthdr_out
->ImageBase
);
674 H_PUT_32 (abfd
, extra
->SectionAlignment
, aouthdr_out
->SectionAlignment
);
675 H_PUT_32 (abfd
, extra
->FileAlignment
, aouthdr_out
->FileAlignment
);
676 H_PUT_16 (abfd
, extra
->MajorOperatingSystemVersion
,
677 aouthdr_out
->MajorOperatingSystemVersion
);
678 H_PUT_16 (abfd
, extra
->MinorOperatingSystemVersion
,
679 aouthdr_out
->MinorOperatingSystemVersion
);
680 H_PUT_16 (abfd
, extra
->MajorImageVersion
, aouthdr_out
->MajorImageVersion
);
681 H_PUT_16 (abfd
, extra
->MinorImageVersion
, aouthdr_out
->MinorImageVersion
);
682 H_PUT_16 (abfd
, extra
->MajorSubsystemVersion
,
683 aouthdr_out
->MajorSubsystemVersion
);
684 H_PUT_16 (abfd
, extra
->MinorSubsystemVersion
,
685 aouthdr_out
->MinorSubsystemVersion
);
686 H_PUT_32 (abfd
, extra
->Reserved1
, aouthdr_out
->Reserved1
);
687 H_PUT_32 (abfd
, extra
->SizeOfImage
, aouthdr_out
->SizeOfImage
);
688 H_PUT_32 (abfd
, extra
->SizeOfHeaders
, aouthdr_out
->SizeOfHeaders
);
689 H_PUT_32 (abfd
, extra
->CheckSum
, aouthdr_out
->CheckSum
);
690 H_PUT_16 (abfd
, extra
->Subsystem
, aouthdr_out
->Subsystem
);
691 H_PUT_16 (abfd
, extra
->DllCharacteristics
, aouthdr_out
->DllCharacteristics
);
692 PUT_OPTHDR_SIZE_OF_STACK_RESERVE (abfd
, extra
->SizeOfStackReserve
,
693 aouthdr_out
->SizeOfStackReserve
);
694 PUT_OPTHDR_SIZE_OF_STACK_COMMIT (abfd
, extra
->SizeOfStackCommit
,
695 aouthdr_out
->SizeOfStackCommit
);
696 PUT_OPTHDR_SIZE_OF_HEAP_RESERVE (abfd
, extra
->SizeOfHeapReserve
,
697 aouthdr_out
->SizeOfHeapReserve
);
698 PUT_OPTHDR_SIZE_OF_HEAP_COMMIT (abfd
, extra
->SizeOfHeapCommit
,
699 aouthdr_out
->SizeOfHeapCommit
);
700 H_PUT_32 (abfd
, extra
->LoaderFlags
, aouthdr_out
->LoaderFlags
);
701 H_PUT_32 (abfd
, extra
->NumberOfRvaAndSizes
,
702 aouthdr_out
->NumberOfRvaAndSizes
);
706 for (idx
= 0; idx
< 16; idx
++)
708 H_PUT_32 (abfd
, extra
->DataDirectory
[idx
].VirtualAddress
,
709 aouthdr_out
->DataDirectory
[idx
][0]);
710 H_PUT_32 (abfd
, extra
->DataDirectory
[idx
].Size
,
711 aouthdr_out
->DataDirectory
[idx
][1]);
719 _bfd_XXi_only_swap_filehdr_out (bfd
* abfd
, void * in
, void * out
)
722 struct internal_filehdr
*filehdr_in
= (struct internal_filehdr
*) in
;
723 struct external_PEI_filehdr
*filehdr_out
= (struct external_PEI_filehdr
*) out
;
725 if (pe_data (abfd
)->has_reloc_section
)
726 filehdr_in
->f_flags
&= ~F_RELFLG
;
728 if (pe_data (abfd
)->dll
)
729 filehdr_in
->f_flags
|= F_DLL
;
731 filehdr_in
->pe
.e_magic
= DOSMAGIC
;
732 filehdr_in
->pe
.e_cblp
= 0x90;
733 filehdr_in
->pe
.e_cp
= 0x3;
734 filehdr_in
->pe
.e_crlc
= 0x0;
735 filehdr_in
->pe
.e_cparhdr
= 0x4;
736 filehdr_in
->pe
.e_minalloc
= 0x0;
737 filehdr_in
->pe
.e_maxalloc
= 0xffff;
738 filehdr_in
->pe
.e_ss
= 0x0;
739 filehdr_in
->pe
.e_sp
= 0xb8;
740 filehdr_in
->pe
.e_csum
= 0x0;
741 filehdr_in
->pe
.e_ip
= 0x0;
742 filehdr_in
->pe
.e_cs
= 0x0;
743 filehdr_in
->pe
.e_lfarlc
= 0x40;
744 filehdr_in
->pe
.e_ovno
= 0x0;
746 for (idx
= 0; idx
< 4; idx
++)
747 filehdr_in
->pe
.e_res
[idx
] = 0x0;
749 filehdr_in
->pe
.e_oemid
= 0x0;
750 filehdr_in
->pe
.e_oeminfo
= 0x0;
752 for (idx
= 0; idx
< 10; idx
++)
753 filehdr_in
->pe
.e_res2
[idx
] = 0x0;
755 filehdr_in
->pe
.e_lfanew
= 0x80;
757 /* This next collection of data are mostly just characters. It
758 appears to be constant within the headers put on NT exes. */
759 filehdr_in
->pe
.dos_message
[0] = 0x0eba1f0e;
760 filehdr_in
->pe
.dos_message
[1] = 0xcd09b400;
761 filehdr_in
->pe
.dos_message
[2] = 0x4c01b821;
762 filehdr_in
->pe
.dos_message
[3] = 0x685421cd;
763 filehdr_in
->pe
.dos_message
[4] = 0x70207369;
764 filehdr_in
->pe
.dos_message
[5] = 0x72676f72;
765 filehdr_in
->pe
.dos_message
[6] = 0x63206d61;
766 filehdr_in
->pe
.dos_message
[7] = 0x6f6e6e61;
767 filehdr_in
->pe
.dos_message
[8] = 0x65622074;
768 filehdr_in
->pe
.dos_message
[9] = 0x6e757220;
769 filehdr_in
->pe
.dos_message
[10] = 0x206e6920;
770 filehdr_in
->pe
.dos_message
[11] = 0x20534f44;
771 filehdr_in
->pe
.dos_message
[12] = 0x65646f6d;
772 filehdr_in
->pe
.dos_message
[13] = 0x0a0d0d2e;
773 filehdr_in
->pe
.dos_message
[14] = 0x24;
774 filehdr_in
->pe
.dos_message
[15] = 0x0;
775 filehdr_in
->pe
.nt_signature
= NT_SIGNATURE
;
777 H_PUT_16 (abfd
, filehdr_in
->f_magic
, filehdr_out
->f_magic
);
778 H_PUT_16 (abfd
, filehdr_in
->f_nscns
, filehdr_out
->f_nscns
);
780 H_PUT_32 (abfd
, time (0), filehdr_out
->f_timdat
);
781 PUT_FILEHDR_SYMPTR (abfd
, filehdr_in
->f_symptr
,
782 filehdr_out
->f_symptr
);
783 H_PUT_32 (abfd
, filehdr_in
->f_nsyms
, filehdr_out
->f_nsyms
);
784 H_PUT_16 (abfd
, filehdr_in
->f_opthdr
, filehdr_out
->f_opthdr
);
785 H_PUT_16 (abfd
, filehdr_in
->f_flags
, filehdr_out
->f_flags
);
787 /* Put in extra dos header stuff. This data remains essentially
788 constant, it just has to be tacked on to the beginning of all exes
790 H_PUT_16 (abfd
, filehdr_in
->pe
.e_magic
, filehdr_out
->e_magic
);
791 H_PUT_16 (abfd
, filehdr_in
->pe
.e_cblp
, filehdr_out
->e_cblp
);
792 H_PUT_16 (abfd
, filehdr_in
->pe
.e_cp
, filehdr_out
->e_cp
);
793 H_PUT_16 (abfd
, filehdr_in
->pe
.e_crlc
, filehdr_out
->e_crlc
);
794 H_PUT_16 (abfd
, filehdr_in
->pe
.e_cparhdr
, filehdr_out
->e_cparhdr
);
795 H_PUT_16 (abfd
, filehdr_in
->pe
.e_minalloc
, filehdr_out
->e_minalloc
);
796 H_PUT_16 (abfd
, filehdr_in
->pe
.e_maxalloc
, filehdr_out
->e_maxalloc
);
797 H_PUT_16 (abfd
, filehdr_in
->pe
.e_ss
, filehdr_out
->e_ss
);
798 H_PUT_16 (abfd
, filehdr_in
->pe
.e_sp
, filehdr_out
->e_sp
);
799 H_PUT_16 (abfd
, filehdr_in
->pe
.e_csum
, filehdr_out
->e_csum
);
800 H_PUT_16 (abfd
, filehdr_in
->pe
.e_ip
, filehdr_out
->e_ip
);
801 H_PUT_16 (abfd
, filehdr_in
->pe
.e_cs
, filehdr_out
->e_cs
);
802 H_PUT_16 (abfd
, filehdr_in
->pe
.e_lfarlc
, filehdr_out
->e_lfarlc
);
803 H_PUT_16 (abfd
, filehdr_in
->pe
.e_ovno
, filehdr_out
->e_ovno
);
805 for (idx
= 0; idx
< 4; idx
++)
806 H_PUT_16 (abfd
, filehdr_in
->pe
.e_res
[idx
], filehdr_out
->e_res
[idx
]);
808 H_PUT_16 (abfd
, filehdr_in
->pe
.e_oemid
, filehdr_out
->e_oemid
);
809 H_PUT_16 (abfd
, filehdr_in
->pe
.e_oeminfo
, filehdr_out
->e_oeminfo
);
811 for (idx
= 0; idx
< 10; idx
++)
812 H_PUT_16 (abfd
, filehdr_in
->pe
.e_res2
[idx
], filehdr_out
->e_res2
[idx
]);
814 H_PUT_32 (abfd
, filehdr_in
->pe
.e_lfanew
, filehdr_out
->e_lfanew
);
816 for (idx
= 0; idx
< 16; idx
++)
817 H_PUT_32 (abfd
, filehdr_in
->pe
.dos_message
[idx
],
818 filehdr_out
->dos_message
[idx
]);
820 /* Also put in the NT signature. */
821 H_PUT_32 (abfd
, filehdr_in
->pe
.nt_signature
, filehdr_out
->nt_signature
);
827 _bfd_XX_only_swap_filehdr_out (bfd
* abfd
, void * in
, void * out
)
829 struct internal_filehdr
*filehdr_in
= (struct internal_filehdr
*) in
;
830 FILHDR
*filehdr_out
= (FILHDR
*) out
;
832 H_PUT_16 (abfd
, filehdr_in
->f_magic
, filehdr_out
->f_magic
);
833 H_PUT_16 (abfd
, filehdr_in
->f_nscns
, filehdr_out
->f_nscns
);
834 H_PUT_32 (abfd
, filehdr_in
->f_timdat
, filehdr_out
->f_timdat
);
835 PUT_FILEHDR_SYMPTR (abfd
, filehdr_in
->f_symptr
, filehdr_out
->f_symptr
);
836 H_PUT_32 (abfd
, filehdr_in
->f_nsyms
, filehdr_out
->f_nsyms
);
837 H_PUT_16 (abfd
, filehdr_in
->f_opthdr
, filehdr_out
->f_opthdr
);
838 H_PUT_16 (abfd
, filehdr_in
->f_flags
, filehdr_out
->f_flags
);
844 _bfd_XXi_swap_scnhdr_out (bfd
* abfd
, void * in
, void * out
)
846 struct internal_scnhdr
*scnhdr_int
= (struct internal_scnhdr
*) in
;
847 SCNHDR
*scnhdr_ext
= (SCNHDR
*) out
;
848 unsigned int ret
= SCNHSZ
;
852 memcpy (scnhdr_ext
->s_name
, scnhdr_int
->s_name
, sizeof (scnhdr_int
->s_name
));
854 PUT_SCNHDR_VADDR (abfd
,
855 ((scnhdr_int
->s_vaddr
856 - pe_data (abfd
)->pe_opthdr
.ImageBase
)
858 scnhdr_ext
->s_vaddr
);
860 /* NT wants the size data to be rounded up to the next
861 NT_FILE_ALIGNMENT, but zero if it has no content (as in .bss,
863 if ((scnhdr_int
->s_flags
& IMAGE_SCN_CNT_UNINITIALIZED_DATA
) != 0)
865 if (bfd_pe_executable_p (abfd
))
867 ps
= scnhdr_int
->s_size
;
873 ss
= scnhdr_int
->s_size
;
878 if (bfd_pe_executable_p (abfd
))
879 ps
= scnhdr_int
->s_paddr
;
883 ss
= scnhdr_int
->s_size
;
886 PUT_SCNHDR_SIZE (abfd
, ss
,
889 /* s_paddr in PE is really the virtual size. */
890 PUT_SCNHDR_PADDR (abfd
, ps
, scnhdr_ext
->s_paddr
);
892 PUT_SCNHDR_SCNPTR (abfd
, scnhdr_int
->s_scnptr
,
893 scnhdr_ext
->s_scnptr
);
894 PUT_SCNHDR_RELPTR (abfd
, scnhdr_int
->s_relptr
,
895 scnhdr_ext
->s_relptr
);
896 PUT_SCNHDR_LNNOPTR (abfd
, scnhdr_int
->s_lnnoptr
,
897 scnhdr_ext
->s_lnnoptr
);
900 /* Extra flags must be set when dealing with PE. All sections should also
901 have the IMAGE_SCN_MEM_READ (0x40000000) flag set. In addition, the
902 .text section must have IMAGE_SCN_MEM_EXECUTE (0x20000000) and the data
903 sections (.idata, .data, .bss, .CRT) must have IMAGE_SCN_MEM_WRITE set
904 (this is especially important when dealing with the .idata section since
905 the addresses for routines from .dlls must be overwritten). If .reloc
906 section data is ever generated, we must add IMAGE_SCN_MEM_DISCARDABLE
907 (0x02000000). Also, the resource data should also be read and
910 /* FIXME: Alignment is also encoded in this field, at least on PPC and
911 ARM-WINCE. Although - how do we get the original alignment field
916 const char * section_name
;
917 unsigned long must_have
;
919 pe_required_section_flags
;
921 pe_required_section_flags known_sections
[] =
923 { ".arch", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_DISCARDABLE
| IMAGE_SCN_ALIGN_8BYTES
},
924 { ".bss", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_UNINITIALIZED_DATA
| IMAGE_SCN_MEM_WRITE
},
925 { ".data", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_WRITE
},
926 { ".edata", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
},
927 { ".idata", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_WRITE
},
928 { ".pdata", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
},
929 { ".rdata", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
},
930 { ".reloc", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_DISCARDABLE
},
931 { ".rsrc", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_WRITE
},
932 { ".text" , IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_CODE
| IMAGE_SCN_MEM_EXECUTE
},
933 { ".tls", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_WRITE
},
934 { ".xdata", IMAGE_SCN_MEM_READ
| IMAGE_SCN_CNT_INITIALIZED_DATA
},
938 pe_required_section_flags
* p
;
940 /* We have defaulted to adding the IMAGE_SCN_MEM_WRITE flag, but now
941 we know exactly what this specific section wants so we remove it
942 and then allow the must_have field to add it back in if necessary.
943 However, we don't remove IMAGE_SCN_MEM_WRITE flag from .text if the
944 default WP_TEXT file flag has been cleared. WP_TEXT may be cleared
945 by ld --enable-auto-import (if auto-import is actually needed),
946 by ld --omagic, or by obcopy --writable-text. */
948 for (p
= known_sections
; p
->section_name
; p
++)
949 if (strcmp (scnhdr_int
->s_name
, p
->section_name
) == 0)
951 if (strcmp (scnhdr_int
->s_name
, ".text")
952 || (bfd_get_file_flags (abfd
) & WP_TEXT
))
953 scnhdr_int
->s_flags
&= ~IMAGE_SCN_MEM_WRITE
;
954 scnhdr_int
->s_flags
|= p
->must_have
;
958 H_PUT_32 (abfd
, scnhdr_int
->s_flags
, scnhdr_ext
->s_flags
);
961 if (coff_data (abfd
)->link_info
962 && ! coff_data (abfd
)->link_info
->relocatable
963 && ! coff_data (abfd
)->link_info
->shared
964 && strcmp (scnhdr_int
->s_name
, ".text") == 0)
966 /* By inference from looking at MS output, the 32 bit field
967 which is the combination of the number_of_relocs and
968 number_of_linenos is used for the line number count in
969 executables. A 16-bit field won't do for cc1. The MS
970 document says that the number of relocs is zero for
971 executables, but the 17-th bit has been observed to be there.
972 Overflow is not an issue: a 4G-line program will overflow a
973 bunch of other fields long before this! */
974 H_PUT_16 (abfd
, (scnhdr_int
->s_nlnno
& 0xffff), scnhdr_ext
->s_nlnno
);
975 H_PUT_16 (abfd
, (scnhdr_int
->s_nlnno
>> 16), scnhdr_ext
->s_nreloc
);
979 if (scnhdr_int
->s_nlnno
<= 0xffff)
980 H_PUT_16 (abfd
, scnhdr_int
->s_nlnno
, scnhdr_ext
->s_nlnno
);
983 (*_bfd_error_handler
) (_("%s: line number overflow: 0x%lx > 0xffff"),
984 bfd_get_filename (abfd
),
985 scnhdr_int
->s_nlnno
);
986 bfd_set_error (bfd_error_file_truncated
);
987 H_PUT_16 (abfd
, 0xffff, scnhdr_ext
->s_nlnno
);
991 /* Although we could encode 0xffff relocs here, we do not, to be
992 consistent with other parts of bfd. Also it lets us warn, as
993 we should never see 0xffff here w/o having the overflow flag
995 if (scnhdr_int
->s_nreloc
< 0xffff)
996 H_PUT_16 (abfd
, scnhdr_int
->s_nreloc
, scnhdr_ext
->s_nreloc
);
999 /* PE can deal with large #s of relocs, but not here. */
1000 H_PUT_16 (abfd
, 0xffff, scnhdr_ext
->s_nreloc
);
1001 scnhdr_int
->s_flags
|= IMAGE_SCN_LNK_NRELOC_OVFL
;
1002 H_PUT_32 (abfd
, scnhdr_int
->s_flags
, scnhdr_ext
->s_flags
);
1008 static char * dir_names
[IMAGE_NUMBEROF_DIRECTORY_ENTRIES
] =
1010 N_("Export Directory [.edata (or where ever we found it)]"),
1011 N_("Import Directory [parts of .idata]"),
1012 N_("Resource Directory [.rsrc]"),
1013 N_("Exception Directory [.pdata]"),
1014 N_("Security Directory"),
1015 N_("Base Relocation Directory [.reloc]"),
1016 N_("Debug Directory"),
1017 N_("Description Directory"),
1018 N_("Special Directory"),
1019 N_("Thread Storage Directory [.tls]"),
1020 N_("Load Configuration Directory"),
1021 N_("Bound Import Directory"),
1022 N_("Import Address Table Directory"),
1023 N_("Delay Import Directory"),
1024 N_("CLR Runtime Header"),
1028 #ifdef POWERPC_LE_PE
1029 /* The code for the PPC really falls in the "architecture dependent"
1030 category. However, it's not clear that anyone will ever care, so
1031 we're ignoring the issue for now; if/when PPC matters, some of this
1032 may need to go into peicode.h, or arguments passed to enable the
1033 PPC- specific code. */
1037 pe_print_idata (bfd
* abfd
, void * vfile
)
1039 FILE *file
= (FILE *) vfile
;
1044 #ifdef POWERPC_LE_PE
1045 asection
*rel_section
= bfd_get_section_by_name (abfd
, ".reldata");
1048 bfd_size_type datasize
= 0;
1049 bfd_size_type dataoff
;
1053 pe_data_type
*pe
= pe_data (abfd
);
1054 struct internal_extra_pe_aouthdr
*extra
= &pe
->pe_opthdr
;
1058 addr
= extra
->DataDirectory
[PE_IMPORT_TABLE
].VirtualAddress
;
1060 if (addr
== 0 && extra
->DataDirectory
[PE_IMPORT_TABLE
].Size
== 0)
1062 /* Maybe the extra header isn't there. Look for the section. */
1063 section
= bfd_get_section_by_name (abfd
, ".idata");
1064 if (section
== NULL
)
1067 addr
= section
->vma
;
1068 datasize
= section
->size
;
1074 addr
+= extra
->ImageBase
;
1075 for (section
= abfd
->sections
; section
!= NULL
; section
= section
->next
)
1077 datasize
= section
->size
;
1078 if (addr
>= section
->vma
&& addr
< section
->vma
+ datasize
)
1082 if (section
== NULL
)
1085 _("\nThere is an import table, but the section containing it could not be found\n"));
1090 fprintf (file
, _("\nThere is an import table in %s at 0x%lx\n"),
1091 section
->name
, (unsigned long) addr
);
1093 dataoff
= addr
- section
->vma
;
1094 datasize
-= dataoff
;
1096 #ifdef POWERPC_LE_PE
1097 if (rel_section
!= 0 && rel_section
->size
!= 0)
1099 /* The toc address can be found by taking the starting address,
1100 which on the PPC locates a function descriptor. The
1101 descriptor consists of the function code starting address
1102 followed by the address of the toc. The starting address we
1103 get from the bfd, and the descriptor is supposed to be in the
1104 .reldata section. */
1106 bfd_vma loadable_toc_address
;
1107 bfd_vma toc_address
;
1108 bfd_vma start_address
;
1112 if (!bfd_malloc_and_get_section (abfd
, rel_section
, &data
))
1119 offset
= abfd
->start_address
- rel_section
->vma
;
1121 if (offset
>= rel_section
->size
|| offset
+ 8 > rel_section
->size
)
1128 start_address
= bfd_get_32 (abfd
, data
+ offset
);
1129 loadable_toc_address
= bfd_get_32 (abfd
, data
+ offset
+ 4);
1130 toc_address
= loadable_toc_address
- 32768;
1133 _("\nFunction descriptor located at the start address: %04lx\n"),
1134 (unsigned long int) (abfd
->start_address
));
1136 _("\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n"),
1137 start_address
, loadable_toc_address
, toc_address
);
1144 _("\nNo reldata section! Function descriptor not decoded.\n"));
1149 _("\nThe Import Tables (interpreted %s section contents)\n"),
1153 vma: Hint Time Forward DLL First\n\
1154 Table Stamp Chain Name Thunk\n"));
1156 /* Read the whole section. Some of the fields might be before dataoff. */
1157 if (!bfd_malloc_and_get_section (abfd
, section
, &data
))
1164 adj
= section
->vma
- extra
->ImageBase
;
1166 /* Print all image import descriptors. */
1167 for (i
= 0; i
< datasize
; i
+= onaline
)
1171 bfd_vma forward_chain
;
1173 bfd_vma first_thunk
;
1178 /* Print (i + extra->DataDirectory[PE_IMPORT_TABLE].VirtualAddress). */
1179 fprintf (file
, " %08lx\t", (unsigned long) (i
+ adj
+ dataoff
));
1180 hint_addr
= bfd_get_32 (abfd
, data
+ i
+ dataoff
);
1181 time_stamp
= bfd_get_32 (abfd
, data
+ i
+ 4 + dataoff
);
1182 forward_chain
= bfd_get_32 (abfd
, data
+ i
+ 8 + dataoff
);
1183 dll_name
= bfd_get_32 (abfd
, data
+ i
+ 12 + dataoff
);
1184 first_thunk
= bfd_get_32 (abfd
, data
+ i
+ 16 + dataoff
);
1186 fprintf (file
, "%08lx %08lx %08lx %08lx %08lx\n",
1187 (unsigned long) hint_addr
,
1188 (unsigned long) time_stamp
,
1189 (unsigned long) forward_chain
,
1190 (unsigned long) dll_name
,
1191 (unsigned long) first_thunk
);
1193 if (hint_addr
== 0 && first_thunk
== 0)
1196 if (dll_name
- adj
>= section
->size
)
1199 dll
= (char *) data
+ dll_name
- adj
;
1200 fprintf (file
, _("\n\tDLL Name: %s\n"), dll
);
1205 asection
*ft_section
;
1207 bfd_size_type ft_datasize
;
1209 int ft_allocated
= 0;
1211 fprintf (file
, _("\tvma: Hint/Ord Member-Name Bound-To\n"));
1213 idx
= hint_addr
- adj
;
1215 ft_addr
= first_thunk
+ extra
->ImageBase
;
1217 ft_idx
= first_thunk
- adj
;
1220 if (first_thunk
!= hint_addr
)
1222 /* Find the section which contains the first thunk. */
1223 for (ft_section
= abfd
->sections
;
1225 ft_section
= ft_section
->next
)
1227 ft_datasize
= ft_section
->size
;
1228 if (ft_addr
>= ft_section
->vma
1229 && ft_addr
< ft_section
->vma
+ ft_datasize
)
1233 if (ft_section
== NULL
)
1236 _("\nThere is a first thunk, but the section containing it could not be found\n"));
1240 /* Now check to see if this section is the same as our current
1241 section. If it is not then we will have to load its data in. */
1242 if (ft_section
== section
)
1245 ft_idx
= first_thunk
- adj
;
1249 ft_idx
= first_thunk
- (ft_section
->vma
- extra
->ImageBase
);
1250 ft_data
= bfd_malloc (datasize
);
1251 if (ft_data
== NULL
)
1254 /* Read datasize bfd_bytes starting at offset ft_idx. */
1255 if (! bfd_get_section_contents
1256 (abfd
, ft_section
, ft_data
, (bfd_vma
) ft_idx
, datasize
))
1267 /* Print HintName vector entries. */
1268 #ifdef COFF_WITH_pex64
1269 for (j
= 0; j
< datasize
; j
+= 8)
1271 unsigned long member
= bfd_get_32 (abfd
, data
+ idx
+ j
);
1272 unsigned long member_high
= bfd_get_32 (abfd
, data
+ idx
+ j
+ 4);
1274 if (!member
&& !member_high
)
1277 if (member_high
& 0x80000000)
1278 fprintf (file
, "\t%lx%08lx\t %4lx%08lx <none>",
1279 member_high
,member
, member_high
& 0x7fffffff, member
);
1285 ordinal
= bfd_get_16 (abfd
, data
+ member
- adj
);
1286 member_name
= (char *) data
+ member
- adj
+ 2;
1287 fprintf (file
, "\t%04lx\t %4d %s",member
, ordinal
, member_name
);
1290 /* If the time stamp is not zero, the import address
1291 table holds actual addresses. */
1294 && first_thunk
!= hint_addr
)
1295 fprintf (file
, "\t%04lx",
1296 (long) bfd_get_32 (abfd
, ft_data
+ ft_idx
+ j
));
1297 fprintf (file
, "\n");
1300 for (j
= 0; j
< datasize
; j
+= 4)
1302 unsigned long member
= bfd_get_32 (abfd
, data
+ idx
+ j
);
1304 /* Print single IMAGE_IMPORT_BY_NAME vector. */
1308 if (member
& 0x80000000)
1309 fprintf (file
, "\t%04lx\t %4lu <none>",
1310 member
, member
& 0x7fffffff);
1316 ordinal
= bfd_get_16 (abfd
, data
+ member
- adj
);
1317 member_name
= (char *) data
+ member
- adj
+ 2;
1318 fprintf (file
, "\t%04lx\t %4d %s",
1319 member
, ordinal
, member_name
);
1322 /* If the time stamp is not zero, the import address
1323 table holds actual addresses. */
1326 && first_thunk
!= hint_addr
)
1327 fprintf (file
, "\t%04lx",
1328 (long) bfd_get_32 (abfd
, ft_data
+ ft_idx
+ j
));
1330 fprintf (file
, "\n");
1337 fprintf (file
, "\n");
1346 pe_print_edata (bfd
* abfd
, void * vfile
)
1348 FILE *file
= (FILE *) vfile
;
1351 bfd_size_type datasize
= 0;
1352 bfd_size_type dataoff
;
1357 long export_flags
; /* Reserved - should be zero. */
1361 bfd_vma name
; /* RVA - relative to image base. */
1362 long base
; /* Ordinal base. */
1363 unsigned long num_functions
;/* Number in the export address table. */
1364 unsigned long num_names
; /* Number in the name pointer table. */
1365 bfd_vma eat_addr
; /* RVA to the export address table. */
1366 bfd_vma npt_addr
; /* RVA to the Export Name Pointer Table. */
1367 bfd_vma ot_addr
; /* RVA to the Ordinal Table. */
1370 pe_data_type
*pe
= pe_data (abfd
);
1371 struct internal_extra_pe_aouthdr
*extra
= &pe
->pe_opthdr
;
1375 addr
= extra
->DataDirectory
[PE_EXPORT_TABLE
].VirtualAddress
;
1377 if (addr
== 0 && extra
->DataDirectory
[PE_EXPORT_TABLE
].Size
== 0)
1379 /* Maybe the extra header isn't there. Look for the section. */
1380 section
= bfd_get_section_by_name (abfd
, ".edata");
1381 if (section
== NULL
)
1384 addr
= section
->vma
;
1386 datasize
= section
->size
;
1392 addr
+= extra
->ImageBase
;
1394 for (section
= abfd
->sections
; section
!= NULL
; section
= section
->next
)
1395 if (addr
>= section
->vma
&& addr
< section
->vma
+ section
->size
)
1398 if (section
== NULL
)
1401 _("\nThere is an export table, but the section containing it could not be found\n"));
1405 dataoff
= addr
- section
->vma
;
1406 datasize
= extra
->DataDirectory
[PE_EXPORT_TABLE
].Size
;
1407 if (datasize
> section
->size
- dataoff
)
1410 _("\nThere is an export table in %s, but it does not fit into that section\n"),
1416 fprintf (file
, _("\nThere is an export table in %s at 0x%lx\n"),
1417 section
->name
, (unsigned long) addr
);
1419 data
= bfd_malloc (datasize
);
1423 if (! bfd_get_section_contents (abfd
, section
, data
,
1424 (file_ptr
) dataoff
, datasize
))
1427 /* Go get Export Directory Table. */
1428 edt
.export_flags
= bfd_get_32 (abfd
, data
+ 0);
1429 edt
.time_stamp
= bfd_get_32 (abfd
, data
+ 4);
1430 edt
.major_ver
= bfd_get_16 (abfd
, data
+ 8);
1431 edt
.minor_ver
= bfd_get_16 (abfd
, data
+ 10);
1432 edt
.name
= bfd_get_32 (abfd
, data
+ 12);
1433 edt
.base
= bfd_get_32 (abfd
, data
+ 16);
1434 edt
.num_functions
= bfd_get_32 (abfd
, data
+ 20);
1435 edt
.num_names
= bfd_get_32 (abfd
, data
+ 24);
1436 edt
.eat_addr
= bfd_get_32 (abfd
, data
+ 28);
1437 edt
.npt_addr
= bfd_get_32 (abfd
, data
+ 32);
1438 edt
.ot_addr
= bfd_get_32 (abfd
, data
+ 36);
1440 adj
= section
->vma
- extra
->ImageBase
+ dataoff
;
1442 /* Dump the EDT first. */
1444 _("\nThe Export Tables (interpreted %s section contents)\n\n"),
1448 _("Export Flags \t\t\t%lx\n"), (unsigned long) edt
.export_flags
);
1451 _("Time/Date stamp \t\t%lx\n"), (unsigned long) edt
.time_stamp
);
1454 _("Major/Minor \t\t\t%d/%d\n"), edt
.major_ver
, edt
.minor_ver
);
1457 _("Name \t\t\t\t"));
1458 fprintf_vma (file
, edt
.name
);
1460 " %s\n", data
+ edt
.name
- adj
);
1463 _("Ordinal Base \t\t\t%ld\n"), edt
.base
);
1469 _("\tExport Address Table \t\t%08lx\n"),
1473 _("\t[Name Pointer/Ordinal] Table\t%08lx\n"), edt
.num_names
);
1476 _("Table Addresses\n"));
1479 _("\tExport Address Table \t\t"));
1480 fprintf_vma (file
, edt
.eat_addr
);
1481 fprintf (file
, "\n");
1484 _("\tName Pointer Table \t\t"));
1485 fprintf_vma (file
, edt
.npt_addr
);
1486 fprintf (file
, "\n");
1489 _("\tOrdinal Table \t\t\t"));
1490 fprintf_vma (file
, edt
.ot_addr
);
1491 fprintf (file
, "\n");
1493 /* The next table to find is the Export Address Table. It's basically
1494 a list of pointers that either locate a function in this dll, or
1495 forward the call to another dll. Something like:
1500 } export_address_table_entry; */
1503 _("\nExport Address Table -- Ordinal Base %ld\n"),
1506 for (i
= 0; i
< edt
.num_functions
; ++i
)
1508 bfd_vma eat_member
= bfd_get_32 (abfd
,
1509 data
+ edt
.eat_addr
+ (i
* 4) - adj
);
1510 if (eat_member
== 0)
1513 if (eat_member
- adj
<= datasize
)
1515 /* This rva is to a name (forwarding function) in our section. */
1516 /* Should locate a function descriptor. */
1518 "\t[%4ld] +base[%4ld] %04lx %s -- %s\n",
1520 (long) (i
+ edt
.base
),
1521 (unsigned long) eat_member
,
1523 data
+ eat_member
- adj
);
1527 /* Should locate a function descriptor in the reldata section. */
1529 "\t[%4ld] +base[%4ld] %04lx %s\n",
1531 (long) (i
+ edt
.base
),
1532 (unsigned long) eat_member
,
1537 /* The Export Name Pointer Table is paired with the Export Ordinal Table. */
1538 /* Dump them in parallel for clarity. */
1540 _("\n[Ordinal/Name Pointer] Table\n"));
1542 for (i
= 0; i
< edt
.num_names
; ++i
)
1544 bfd_vma name_ptr
= bfd_get_32 (abfd
,
1549 char *name
= (char *) data
+ name_ptr
- adj
;
1551 bfd_vma ord
= bfd_get_16 (abfd
,
1556 "\t[%4ld] %s\n", (long) ord
, name
);
1564 /* This really is architecture dependent. On IA-64, a .pdata entry
1565 consists of three dwords containing relative virtual addresses that
1566 specify the start and end address of the code range the entry
1567 covers and the address of the corresponding unwind info data. */
1570 pe_print_pdata (bfd
* abfd
, void * vfile
)
1572 #if defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
1573 # define PDATA_ROW_SIZE (3 * 8)
1575 # define PDATA_ROW_SIZE (5 * 4)
1577 FILE *file
= (FILE *) vfile
;
1579 asection
*section
= bfd_get_section_by_name (abfd
, ".pdata");
1580 bfd_size_type datasize
= 0;
1582 bfd_size_type start
, stop
;
1583 int onaline
= PDATA_ROW_SIZE
;
1586 || coff_section_data (abfd
, section
) == NULL
1587 || pei_section_data (abfd
, section
) == NULL
)
1590 stop
= pei_section_data (abfd
, section
)->virt_size
;
1591 if ((stop
% onaline
) != 0)
1593 _("Warning, .pdata section size (%ld) is not a multiple of %d\n"),
1594 (long) stop
, onaline
);
1597 _("\nThe Function Table (interpreted .pdata section contents)\n"));
1598 #if defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64)
1600 _(" vma:\t\t\tBegin Address End Address Unwind Info\n"));
1603 vma:\t\tBegin End EH EH PrologEnd Exception\n\
1604 \t\tAddress Address Handler Data Address Mask\n"));
1607 datasize
= section
->size
;
1611 if (! bfd_malloc_and_get_section (abfd
, section
, &data
))
1620 for (i
= start
; i
< stop
; i
+= onaline
)
1626 bfd_vma prolog_end_addr
;
1629 if (i
+ PDATA_ROW_SIZE
> stop
)
1632 begin_addr
= GET_PDATA_ENTRY (abfd
, data
+ i
);
1633 end_addr
= GET_PDATA_ENTRY (abfd
, data
+ i
+ 4);
1634 eh_handler
= GET_PDATA_ENTRY (abfd
, data
+ i
+ 8);
1635 eh_data
= GET_PDATA_ENTRY (abfd
, data
+ i
+ 12);
1636 prolog_end_addr
= GET_PDATA_ENTRY (abfd
, data
+ i
+ 16);
1638 if (begin_addr
== 0 && end_addr
== 0 && eh_handler
== 0
1639 && eh_data
== 0 && prolog_end_addr
== 0)
1640 /* We are probably into the padding of the section now. */
1643 em_data
= ((eh_handler
& 0x1) << 2) | (prolog_end_addr
& 0x3);
1644 eh_handler
&= ~(bfd_vma
) 0x3;
1645 prolog_end_addr
&= ~(bfd_vma
) 0x3;
1648 fprintf_vma (file
, i
+ section
->vma
); fputc ('\t', file
);
1649 fprintf_vma (file
, begin_addr
); fputc (' ', file
);
1650 fprintf_vma (file
, end_addr
); fputc (' ', file
);
1651 fprintf_vma (file
, eh_handler
);
1652 #if !defined(COFF_WITH_pep) || defined(COFF_WITH_pex64)
1654 fprintf_vma (file
, eh_data
); fputc (' ', file
);
1655 fprintf_vma (file
, prolog_end_addr
);
1656 fprintf (file
, " %x", em_data
);
1659 #ifdef POWERPC_LE_PE
1660 if (eh_handler
== 0 && eh_data
!= 0)
1662 /* Special bits here, although the meaning may be a little
1663 mysterious. The only one I know for sure is 0x03
1666 0x01 Register Save Millicode
1667 0x02 Register Restore Millicode
1668 0x03 Glue Code Sequence. */
1672 fprintf (file
, _(" Register save millicode"));
1675 fprintf (file
, _(" Register restore millicode"));
1678 fprintf (file
, _(" Glue code sequence"));
1685 fprintf (file
, "\n");
1693 #define IMAGE_REL_BASED_HIGHADJ 4
1694 static const char * const tbl
[] =
1708 "UNKNOWN", /* MUST be last. */
1712 pe_print_reloc (bfd
* abfd
, void * vfile
)
1714 FILE *file
= (FILE *) vfile
;
1716 asection
*section
= bfd_get_section_by_name (abfd
, ".reloc");
1717 bfd_size_type datasize
;
1719 bfd_size_type start
, stop
;
1721 if (section
== NULL
)
1724 if (section
->size
== 0)
1728 _("\n\nPE File Base Relocations (interpreted .reloc section contents)\n"));
1730 datasize
= section
->size
;
1731 if (! bfd_malloc_and_get_section (abfd
, section
, &data
))
1740 stop
= section
->size
;
1742 for (i
= start
; i
< stop
;)
1745 bfd_vma virtual_address
;
1748 /* The .reloc section is a sequence of blocks, with a header consisting
1749 of two 32 bit quantities, followed by a number of 16 bit entries. */
1750 virtual_address
= bfd_get_32 (abfd
, data
+i
);
1751 size
= bfd_get_32 (abfd
, data
+i
+4);
1752 number
= (size
- 8) / 2;
1758 _("\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n"),
1759 (unsigned long) virtual_address
, size
, size
, number
);
1761 for (j
= 0; j
< number
; ++j
)
1763 unsigned short e
= bfd_get_16 (abfd
, data
+ i
+ 8 + j
* 2);
1764 unsigned int t
= (e
& 0xF000) >> 12;
1765 int off
= e
& 0x0FFF;
1767 if (t
>= sizeof (tbl
) / sizeof (tbl
[0]))
1768 t
= (sizeof (tbl
) / sizeof (tbl
[0])) - 1;
1771 _("\treloc %4d offset %4x [%4lx] %s"),
1772 j
, off
, (long) (off
+ virtual_address
), tbl
[t
]);
1774 /* HIGHADJ takes an argument, - the next record *is* the
1775 low 16 bits of addend. */
1776 if (t
== IMAGE_REL_BASED_HIGHADJ
)
1778 fprintf (file
, " (%4x)",
1780 bfd_get_16 (abfd
, data
+ i
+ 8 + j
* 2 + 2)));
1784 fprintf (file
, "\n");
1795 /* Print out the program headers. */
1798 _bfd_XX_print_private_bfd_data_common (bfd
* abfd
, void * vfile
)
1800 FILE *file
= (FILE *) vfile
;
1802 pe_data_type
*pe
= pe_data (abfd
);
1803 struct internal_extra_pe_aouthdr
*i
= &pe
->pe_opthdr
;
1804 const char *subsystem_name
= NULL
;
1806 /* The MS dumpbin program reportedly ands with 0xff0f before
1807 printing the characteristics field. Not sure why. No reason to
1809 fprintf (file
, _("\nCharacteristics 0x%x\n"), pe
->real_flags
);
1811 #define PF(x, y) if (pe->real_flags & x) { fprintf (file, "\t%s\n", y); }
1812 PF (IMAGE_FILE_RELOCS_STRIPPED
, "relocations stripped");
1813 PF (IMAGE_FILE_EXECUTABLE_IMAGE
, "executable");
1814 PF (IMAGE_FILE_LINE_NUMS_STRIPPED
, "line numbers stripped");
1815 PF (IMAGE_FILE_LOCAL_SYMS_STRIPPED
, "symbols stripped");
1816 PF (IMAGE_FILE_LARGE_ADDRESS_AWARE
, "large address aware");
1817 PF (IMAGE_FILE_BYTES_REVERSED_LO
, "little endian");
1818 PF (IMAGE_FILE_32BIT_MACHINE
, "32 bit words");
1819 PF (IMAGE_FILE_DEBUG_STRIPPED
, "debugging information removed");
1820 PF (IMAGE_FILE_SYSTEM
, "system file");
1821 PF (IMAGE_FILE_DLL
, "DLL");
1822 PF (IMAGE_FILE_BYTES_REVERSED_HI
, "big endian");
1825 /* ctime implies '\n'. */
1827 time_t t
= pe
->coff
.timestamp
;
1828 fprintf (file
, "\nTime/Date\t\t%s", ctime (&t
));
1830 fprintf (file
, "\nImageBase\t\t");
1831 fprintf_vma (file
, i
->ImageBase
);
1832 fprintf (file
, "\nSectionAlignment\t");
1833 fprintf_vma (file
, i
->SectionAlignment
);
1834 fprintf (file
, "\nFileAlignment\t\t");
1835 fprintf_vma (file
, i
->FileAlignment
);
1836 fprintf (file
, "\nMajorOSystemVersion\t%d\n", i
->MajorOperatingSystemVersion
);
1837 fprintf (file
, "MinorOSystemVersion\t%d\n", i
->MinorOperatingSystemVersion
);
1838 fprintf (file
, "MajorImageVersion\t%d\n", i
->MajorImageVersion
);
1839 fprintf (file
, "MinorImageVersion\t%d\n", i
->MinorImageVersion
);
1840 fprintf (file
, "MajorSubsystemVersion\t%d\n", i
->MajorSubsystemVersion
);
1841 fprintf (file
, "MinorSubsystemVersion\t%d\n", i
->MinorSubsystemVersion
);
1842 fprintf (file
, "Win32Version\t\t%08lx\n", i
->Reserved1
);
1843 fprintf (file
, "SizeOfImage\t\t%08lx\n", i
->SizeOfImage
);
1844 fprintf (file
, "SizeOfHeaders\t\t%08lx\n", i
->SizeOfHeaders
);
1845 fprintf (file
, "CheckSum\t\t%08lx\n", i
->CheckSum
);
1847 switch (i
->Subsystem
)
1849 case IMAGE_SUBSYSTEM_UNKNOWN
:
1850 subsystem_name
= "unspecified";
1852 case IMAGE_SUBSYSTEM_NATIVE
:
1853 subsystem_name
= "NT native";
1855 case IMAGE_SUBSYSTEM_WINDOWS_GUI
:
1856 subsystem_name
= "Windows GUI";
1858 case IMAGE_SUBSYSTEM_WINDOWS_CUI
:
1859 subsystem_name
= "Windows CUI";
1861 case IMAGE_SUBSYSTEM_POSIX_CUI
:
1862 subsystem_name
= "POSIX CUI";
1864 case IMAGE_SUBSYSTEM_WINDOWS_CE_GUI
:
1865 subsystem_name
= "Wince CUI";
1867 case IMAGE_SUBSYSTEM_EFI_APPLICATION
:
1868 subsystem_name
= "EFI application";
1870 case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER
:
1871 subsystem_name
= "EFI boot service driver";
1873 case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER
:
1874 subsystem_name
= "EFI runtime driver";
1876 // These are from revision 8.0 of the MS PE/COFF spec
1877 case IMAGE_SUBSYSTEM_EFI_ROM
:
1878 subsystem_name
= "EFI ROM";
1880 case IMAGE_SUBSYSTEM_XBOX
:
1881 subsystem_name
= "XBOX";
1883 // Added default case for clarity - subsystem_name is NULL anyway.
1885 subsystem_name
= NULL
;
1888 fprintf (file
, "Subsystem\t\t%08x", i
->Subsystem
);
1890 fprintf (file
, "\t(%s)", subsystem_name
);
1891 fprintf (file
, "\nDllCharacteristics\t%08x\n", i
->DllCharacteristics
);
1892 fprintf (file
, "SizeOfStackReserve\t");
1893 fprintf_vma (file
, i
->SizeOfStackReserve
);
1894 fprintf (file
, "\nSizeOfStackCommit\t");
1895 fprintf_vma (file
, i
->SizeOfStackCommit
);
1896 fprintf (file
, "\nSizeOfHeapReserve\t");
1897 fprintf_vma (file
, i
->SizeOfHeapReserve
);
1898 fprintf (file
, "\nSizeOfHeapCommit\t");
1899 fprintf_vma (file
, i
->SizeOfHeapCommit
);
1900 fprintf (file
, "\nLoaderFlags\t\t%08lx\n", i
->LoaderFlags
);
1901 fprintf (file
, "NumberOfRvaAndSizes\t%08lx\n", i
->NumberOfRvaAndSizes
);
1903 fprintf (file
, "\nThe Data Directory\n");
1904 for (j
= 0; j
< IMAGE_NUMBEROF_DIRECTORY_ENTRIES
; j
++)
1906 fprintf (file
, "Entry %1x ", j
);
1907 fprintf_vma (file
, i
->DataDirectory
[j
].VirtualAddress
);
1908 fprintf (file
, " %08lx ", i
->DataDirectory
[j
].Size
);
1909 fprintf (file
, "%s\n", dir_names
[j
]);
1912 pe_print_idata (abfd
, vfile
);
1913 pe_print_edata (abfd
, vfile
);
1914 pe_print_pdata (abfd
, vfile
);
1915 pe_print_reloc (abfd
, vfile
);
1920 /* Copy any private info we understand from the input bfd
1921 to the output bfd. */
1924 _bfd_XX_bfd_copy_private_bfd_data_common (bfd
* ibfd
, bfd
* obfd
)
1926 /* One day we may try to grok other private data. */
1927 if (ibfd
->xvec
->flavour
!= bfd_target_coff_flavour
1928 || obfd
->xvec
->flavour
!= bfd_target_coff_flavour
)
1931 pe_data (obfd
)->pe_opthdr
= pe_data (ibfd
)->pe_opthdr
;
1932 pe_data (obfd
)->dll
= pe_data (ibfd
)->dll
;
1934 /* For strip: if we removed .reloc, we'll make a real mess of things
1935 if we don't remove this entry as well. */
1936 if (! pe_data (obfd
)->has_reloc_section
)
1938 pe_data (obfd
)->pe_opthdr
.DataDirectory
[PE_BASE_RELOCATION_TABLE
].VirtualAddress
= 0;
1939 pe_data (obfd
)->pe_opthdr
.DataDirectory
[PE_BASE_RELOCATION_TABLE
].Size
= 0;
1944 /* Copy private section data. */
1947 _bfd_XX_bfd_copy_private_section_data (bfd
*ibfd
,
1952 if (bfd_get_flavour (ibfd
) != bfd_target_coff_flavour
1953 || bfd_get_flavour (obfd
) != bfd_target_coff_flavour
)
1956 if (coff_section_data (ibfd
, isec
) != NULL
1957 && pei_section_data (ibfd
, isec
) != NULL
)
1959 if (coff_section_data (obfd
, osec
) == NULL
)
1961 bfd_size_type amt
= sizeof (struct coff_section_tdata
);
1962 osec
->used_by_bfd
= bfd_zalloc (obfd
, amt
);
1963 if (osec
->used_by_bfd
== NULL
)
1967 if (pei_section_data (obfd
, osec
) == NULL
)
1969 bfd_size_type amt
= sizeof (struct pei_section_tdata
);
1970 coff_section_data (obfd
, osec
)->tdata
= bfd_zalloc (obfd
, amt
);
1971 if (coff_section_data (obfd
, osec
)->tdata
== NULL
)
1975 pei_section_data (obfd
, osec
)->virt_size
=
1976 pei_section_data (ibfd
, isec
)->virt_size
;
1977 pei_section_data (obfd
, osec
)->pe_flags
=
1978 pei_section_data (ibfd
, isec
)->pe_flags
;
1985 _bfd_XX_get_symbol_info (bfd
* abfd
, asymbol
*symbol
, symbol_info
*ret
)
1987 coff_get_symbol_info (abfd
, symbol
, ret
);
1990 /* Handle the .idata section and other things that need symbol table
1994 _bfd_XXi_final_link_postscript (bfd
* abfd
, struct coff_final_link_info
*pfinfo
)
1996 struct coff_link_hash_entry
*h1
;
1997 struct bfd_link_info
*info
= pfinfo
->info
;
1998 bfd_boolean result
= TRUE
;
2000 /* There are a few fields that need to be filled in now while we
2001 have symbol table access.
2003 The .idata subsections aren't directly available as sections, but
2004 they are in the symbol table, so get them from there. */
2006 /* The import directory. This is the address of .idata$2, with size
2007 of .idata$2 + .idata$3. */
2008 h1
= coff_link_hash_lookup (coff_hash_table (info
),
2009 ".idata$2", FALSE
, FALSE
, TRUE
);
2012 /* PR ld/2729: We cannot rely upon all the output sections having been
2013 created properly, so check before referencing them. Issue a warning
2014 message for any sections tht could not be found. */
2015 if (h1
->root
.u
.def
.section
!= NULL
2016 && h1
->root
.u
.def
.section
->output_section
!= NULL
)
2017 pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_IMPORT_TABLE
].VirtualAddress
=
2018 (h1
->root
.u
.def
.value
2019 + h1
->root
.u
.def
.section
->output_section
->vma
2020 + h1
->root
.u
.def
.section
->output_offset
);
2024 (_("%B: unable to fill in DataDictionary[1] because .idata$2 is missing"),
2029 h1
= coff_link_hash_lookup (coff_hash_table (info
),
2030 ".idata$4", FALSE
, FALSE
, TRUE
);
2032 && h1
->root
.u
.def
.section
!= NULL
2033 && h1
->root
.u
.def
.section
->output_section
!= NULL
)
2034 pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_IMPORT_TABLE
].Size
=
2035 ((h1
->root
.u
.def
.value
2036 + h1
->root
.u
.def
.section
->output_section
->vma
2037 + h1
->root
.u
.def
.section
->output_offset
)
2038 - pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_IMPORT_TABLE
].VirtualAddress
);
2042 (_("%B: unable to fill in DataDictionary[1] because .idata$4 is missing"),
2047 /* The import address table. This is the size/address of
2049 h1
= coff_link_hash_lookup (coff_hash_table (info
),
2050 ".idata$5", FALSE
, FALSE
, TRUE
);
2052 && h1
->root
.u
.def
.section
!= NULL
2053 && h1
->root
.u
.def
.section
->output_section
!= NULL
)
2054 pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_IMPORT_ADDRESS_TABLE
].VirtualAddress
=
2055 (h1
->root
.u
.def
.value
2056 + h1
->root
.u
.def
.section
->output_section
->vma
2057 + h1
->root
.u
.def
.section
->output_offset
);
2061 (_("%B: unable to fill in DataDictionary[12] because .idata$5 is missing"),
2066 h1
= coff_link_hash_lookup (coff_hash_table (info
),
2067 ".idata$6", FALSE
, FALSE
, TRUE
);
2069 && h1
->root
.u
.def
.section
!= NULL
2070 && h1
->root
.u
.def
.section
->output_section
!= NULL
)
2071 pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_IMPORT_ADDRESS_TABLE
].Size
=
2072 ((h1
->root
.u
.def
.value
2073 + h1
->root
.u
.def
.section
->output_section
->vma
2074 + h1
->root
.u
.def
.section
->output_offset
)
2075 - pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_IMPORT_ADDRESS_TABLE
].VirtualAddress
);
2079 (_("%B: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] because .idata$6 is missing"),
2085 h1
= coff_link_hash_lookup (coff_hash_table (info
),
2086 "__tls_used", FALSE
, FALSE
, TRUE
);
2089 if (h1
->root
.u
.def
.section
!= NULL
2090 && h1
->root
.u
.def
.section
->output_section
!= NULL
)
2091 pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_TLS_TABLE
].VirtualAddress
=
2092 (h1
->root
.u
.def
.value
2093 + h1
->root
.u
.def
.section
->output_section
->vma
2094 + h1
->root
.u
.def
.section
->output_offset
2095 - pe_data (abfd
)->pe_opthdr
.ImageBase
);
2099 (_("%B: unable to fill in DataDictionary[9] because __tls_used is missing"),
2104 pe_data (abfd
)->pe_opthdr
.DataDirectory
[PE_TLS_TABLE
].Size
= 0x18;
2107 /* If we couldn't find idata$2, we either have an excessively
2108 trivial program or are in DEEP trouble; we have to assume trivial