Add a note to the binutils/NEWS file about DCO signed contributions.
[binutils-gdb.git] / bfd / peXXigen.c
blobc5a7f7bf7ac678d80a227bb95d948dc8b501c03f
1 /* Support for the generic parts of PE/PEI; the common executable parts.
2 Copyright (C) 1995-2022 Free Software Foundation, Inc.
3 Written by Cygnus Solutions.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
23 /* Most of this hacked by Steve Chamberlain <sac@cygnus.com>.
25 PE/PEI rearrangement (and code added): Donn Terry
26 Softway Systems, Inc. */
28 /* Hey look, some documentation [and in a place you expect to find it]!
30 The main reference for the pei format is "Microsoft Portable Executable
31 and Common Object File Format Specification 4.1". Get it if you need to
32 do some serious hacking on this code.
34 Another reference:
35 "Peering Inside the PE: A Tour of the Win32 Portable Executable
36 File Format", MSJ 1994, Volume 9.
38 The PE/PEI format is also used by .NET. ECMA-335 describes this:
40 "Standard ECMA-335 Common Language Infrastructure (CLI)", 6th Edition, June 2012.
42 This is also available at
43 https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-335.pdf.
45 The *sole* difference between the pe format and the pei format is that the
46 latter has an MSDOS 2.0 .exe header on the front that prints the message
47 "This app must be run under Windows." (or some such).
48 (FIXME: Whether that statement is *really* true or not is unknown.
49 Are there more subtle differences between pe and pei formats?
50 For now assume there aren't. If you find one, then for God sakes
51 document it here!)
53 The Microsoft docs use the word "image" instead of "executable" because
54 the former can also refer to a DLL (shared library). Confusion can arise
55 because the `i' in `pei' also refers to "image". The `pe' format can
56 also create images (i.e. executables), it's just that to run on a win32
57 system you need to use the pei format.
59 FIXME: Please add more docs here so the next poor fool that has to hack
60 on this code has a chance of getting something accomplished without
61 wasting too much time. */
63 /* This expands into COFF_WITH_pe, COFF_WITH_pep, COFF_WITH_pex64,
64 COFF_WITH_peAArch64 or COFF_WITH_peLoongArch64 depending on whether we're
65 compiling for straight PE or PE+. */
66 #define COFF_WITH_XX
68 #include "sysdep.h"
69 #include "bfd.h"
70 #include "libbfd.h"
71 #include "coff/internal.h"
72 #include "bfdver.h"
73 #include "libiberty.h"
74 #include <wchar.h>
75 #include <wctype.h>
77 /* NOTE: it's strange to be including an architecture specific header
78 in what's supposed to be general (to PE/PEI) code. However, that's
79 where the definitions are, and they don't vary per architecture
80 within PE/PEI, so we get them from there. FIXME: The lack of
81 variance is an assumption which may prove to be incorrect if new
82 PE/PEI targets are created. */
83 #if defined COFF_WITH_pex64
84 # include "coff/x86_64.h"
85 #elif defined COFF_WITH_pep
86 # include "coff/ia64.h"
87 #elif defined COFF_WITH_peAArch64
88 # include "coff/aarch64.h"
89 #elif defined COFF_WITH_peLoongArch64
90 # include "coff/loongarch64.h"
91 #else
92 # include "coff/i386.h"
93 #endif
95 #include "coff/pe.h"
96 #include "libcoff.h"
97 #include "libpei.h"
98 #include "safe-ctype.h"
100 #if defined COFF_WITH_pep || defined COFF_WITH_pex64 || defined COFF_WITH_peAArch64 || defined COFF_WITH_peLoongArch64
101 # undef AOUTSZ
102 # define AOUTSZ PEPAOUTSZ
103 # define PEAOUTHDR PEPAOUTHDR
104 #endif
106 #define HighBitSet(val) ((val) & 0x80000000)
107 #define SetHighBit(val) ((val) | 0x80000000)
108 #define WithoutHighBit(val) ((val) & 0x7fffffff)
110 void
111 _bfd_XXi_swap_sym_in (bfd * abfd, void * ext1, void * in1)
113 SYMENT *ext = (SYMENT *) ext1;
114 struct internal_syment *in = (struct internal_syment *) in1;
116 if (ext->e.e_name[0] == 0)
118 in->_n._n_n._n_zeroes = 0;
119 in->_n._n_n._n_offset = H_GET_32 (abfd, ext->e.e.e_offset);
121 else
122 memcpy (in->_n._n_name, ext->e.e_name, SYMNMLEN);
124 in->n_value = H_GET_32 (abfd, ext->e_value);
125 in->n_scnum = (short) H_GET_16 (abfd, ext->e_scnum);
127 if (sizeof (ext->e_type) == 2)
128 in->n_type = H_GET_16 (abfd, ext->e_type);
129 else
130 in->n_type = H_GET_32 (abfd, ext->e_type);
132 in->n_sclass = H_GET_8 (abfd, ext->e_sclass);
133 in->n_numaux = H_GET_8 (abfd, ext->e_numaux);
135 #ifndef STRICT_PE_FORMAT
136 /* This is for Gnu-created DLLs. */
138 /* The section symbols for the .idata$ sections have class 0x68
139 (C_SECTION), which MS documentation indicates is a section
140 symbol. Unfortunately, the value field in the symbol is simply a
141 copy of the .idata section's flags rather than something useful.
142 When these symbols are encountered, change the value to 0 so that
143 they will be handled somewhat correctly in the bfd code. */
144 if (in->n_sclass == C_SECTION)
146 char namebuf[SYMNMLEN + 1];
147 const char *name = NULL;
149 in->n_value = 0x0;
151 /* Create synthetic empty sections as needed. DJ */
152 if (in->n_scnum == 0)
154 asection *sec;
156 name = _bfd_coff_internal_syment_name (abfd, in, namebuf);
157 if (name == NULL)
159 _bfd_error_handler (_("%pB: unable to find name for empty section"),
160 abfd);
161 bfd_set_error (bfd_error_invalid_target);
162 return;
165 sec = bfd_get_section_by_name (abfd, name);
166 if (sec != NULL)
167 in->n_scnum = sec->target_index;
170 if (in->n_scnum == 0)
172 int unused_section_number = 0;
173 asection *sec;
174 flagword flags;
175 size_t name_len;
176 char *sec_name;
178 for (sec = abfd->sections; sec; sec = sec->next)
179 if (unused_section_number <= sec->target_index)
180 unused_section_number = sec->target_index + 1;
182 name_len = strlen (name) + 1;
183 sec_name = bfd_alloc (abfd, name_len);
184 if (sec_name == NULL)
186 _bfd_error_handler (_("%pB: out of memory creating name "
187 "for empty section"), abfd);
188 return;
190 memcpy (sec_name, name, name_len);
192 flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_DATA | SEC_LOAD;
193 sec = bfd_make_section_anyway_with_flags (abfd, sec_name, flags);
194 if (sec == NULL)
196 _bfd_error_handler (_("%pB: unable to create fake empty section"),
197 abfd);
198 return;
201 sec->vma = 0;
202 sec->lma = 0;
203 sec->size = 0;
204 sec->filepos = 0;
205 sec->rel_filepos = 0;
206 sec->reloc_count = 0;
207 sec->line_filepos = 0;
208 sec->lineno_count = 0;
209 sec->userdata = NULL;
210 sec->next = NULL;
211 sec->alignment_power = 2;
213 sec->target_index = unused_section_number;
215 in->n_scnum = unused_section_number;
217 in->n_sclass = C_STAT;
219 #endif
222 static bool
223 abs_finder (bfd * abfd ATTRIBUTE_UNUSED, asection * sec, void * data)
225 bfd_vma abs_val = * (bfd_vma *) data;
227 return (sec->vma <= abs_val) && ((sec->vma + (1ULL << 32)) > abs_val);
230 unsigned int
231 _bfd_XXi_swap_sym_out (bfd * abfd, void * inp, void * extp)
233 struct internal_syment *in = (struct internal_syment *) inp;
234 SYMENT *ext = (SYMENT *) extp;
236 if (in->_n._n_name[0] == 0)
238 H_PUT_32 (abfd, 0, ext->e.e.e_zeroes);
239 H_PUT_32 (abfd, in->_n._n_n._n_offset, ext->e.e.e_offset);
241 else
242 memcpy (ext->e.e_name, in->_n._n_name, SYMNMLEN);
244 /* The PE32 and PE32+ formats only use 4 bytes to hold the value of a
245 symbol. This is a problem on 64-bit targets where we can generate
246 absolute symbols with values >= 1^32. We try to work around this
247 problem by finding a section whose base address is sufficient to
248 reduce the absolute value to < 1^32, and then transforming the
249 symbol into a section relative symbol. This of course is a hack. */
250 if (sizeof (in->n_value) > 4
251 /* The strange computation of the shift amount is here in order to
252 avoid a compile time warning about the comparison always being
253 false. It does not matter if this test fails to work as expected
254 as the worst that can happen is that some absolute symbols are
255 needlessly converted into section relative symbols. */
256 && in->n_value > ((1ULL << (sizeof (in->n_value) > 4 ? 32 : 31)) - 1)
257 && in->n_scnum == N_ABS)
259 asection * sec;
261 sec = bfd_sections_find_if (abfd, abs_finder, & in->n_value);
262 if (sec)
264 in->n_value -= sec->vma;
265 in->n_scnum = sec->target_index;
267 /* else: FIXME: The value is outside the range of any section. This
268 happens for __image_base__ and __ImageBase and maybe some other
269 symbols as well. We should find a way to handle these values. */
272 H_PUT_32 (abfd, in->n_value, ext->e_value);
273 H_PUT_16 (abfd, in->n_scnum, ext->e_scnum);
275 if (sizeof (ext->e_type) == 2)
276 H_PUT_16 (abfd, in->n_type, ext->e_type);
277 else
278 H_PUT_32 (abfd, in->n_type, ext->e_type);
280 H_PUT_8 (abfd, in->n_sclass, ext->e_sclass);
281 H_PUT_8 (abfd, in->n_numaux, ext->e_numaux);
283 return SYMESZ;
286 void
287 _bfd_XXi_swap_aux_in (bfd * abfd,
288 void * ext1,
289 int type,
290 int in_class,
291 int indx ATTRIBUTE_UNUSED,
292 int numaux ATTRIBUTE_UNUSED,
293 void * in1)
295 AUXENT *ext = (AUXENT *) ext1;
296 union internal_auxent *in = (union internal_auxent *) in1;
298 /* PR 17521: Make sure that all fields in the aux structure
299 are initialised. */
300 memset (in, 0, sizeof * in);
301 switch (in_class)
303 case C_FILE:
304 if (ext->x_file.x_fname[0] == 0)
306 in->x_file.x_n.x_n.x_zeroes = 0;
307 in->x_file.x_n.x_n.x_offset = H_GET_32 (abfd, ext->x_file.x_n.x_offset);
309 else
310 memcpy (in->x_file.x_n.x_fname, ext->x_file.x_fname, FILNMLEN);
311 return;
313 case C_STAT:
314 case C_LEAFSTAT:
315 case C_HIDDEN:
316 if (type == T_NULL)
318 in->x_scn.x_scnlen = GET_SCN_SCNLEN (abfd, ext);
319 in->x_scn.x_nreloc = GET_SCN_NRELOC (abfd, ext);
320 in->x_scn.x_nlinno = GET_SCN_NLINNO (abfd, ext);
321 in->x_scn.x_checksum = H_GET_32 (abfd, ext->x_scn.x_checksum);
322 in->x_scn.x_associated = H_GET_16 (abfd, ext->x_scn.x_associated);
323 in->x_scn.x_comdat = H_GET_8 (abfd, ext->x_scn.x_comdat);
324 return;
326 break;
329 in->x_sym.x_tagndx.l = H_GET_32 (abfd, ext->x_sym.x_tagndx);
330 in->x_sym.x_tvndx = H_GET_16 (abfd, ext->x_sym.x_tvndx);
332 if (in_class == C_BLOCK || in_class == C_FCN || ISFCN (type)
333 || ISTAG (in_class))
335 in->x_sym.x_fcnary.x_fcn.x_lnnoptr = GET_FCN_LNNOPTR (abfd, ext);
336 in->x_sym.x_fcnary.x_fcn.x_endndx.l = GET_FCN_ENDNDX (abfd, ext);
338 else
340 in->x_sym.x_fcnary.x_ary.x_dimen[0] =
341 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
342 in->x_sym.x_fcnary.x_ary.x_dimen[1] =
343 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
344 in->x_sym.x_fcnary.x_ary.x_dimen[2] =
345 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
346 in->x_sym.x_fcnary.x_ary.x_dimen[3] =
347 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
350 if (ISFCN (type))
352 in->x_sym.x_misc.x_fsize = H_GET_32 (abfd, ext->x_sym.x_misc.x_fsize);
354 else
356 in->x_sym.x_misc.x_lnsz.x_lnno = GET_LNSZ_LNNO (abfd, ext);
357 in->x_sym.x_misc.x_lnsz.x_size = GET_LNSZ_SIZE (abfd, ext);
361 unsigned int
362 _bfd_XXi_swap_aux_out (bfd * abfd,
363 void * inp,
364 int type,
365 int in_class,
366 int indx ATTRIBUTE_UNUSED,
367 int numaux ATTRIBUTE_UNUSED,
368 void * extp)
370 union internal_auxent *in = (union internal_auxent *) inp;
371 AUXENT *ext = (AUXENT *) extp;
373 memset (ext, 0, AUXESZ);
375 switch (in_class)
377 case C_FILE:
378 if (in->x_file.x_n.x_fname[0] == 0)
380 H_PUT_32 (abfd, 0, ext->x_file.x_n.x_zeroes);
381 H_PUT_32 (abfd, in->x_file.x_n.x_n.x_offset, ext->x_file.x_n.x_offset);
383 else
384 memcpy (ext->x_file.x_fname, in->x_file.x_n.x_fname, sizeof (ext->x_file.x_fname));
386 return AUXESZ;
388 case C_STAT:
389 case C_LEAFSTAT:
390 case C_HIDDEN:
391 if (type == T_NULL)
393 PUT_SCN_SCNLEN (abfd, in->x_scn.x_scnlen, ext);
394 PUT_SCN_NRELOC (abfd, in->x_scn.x_nreloc, ext);
395 PUT_SCN_NLINNO (abfd, in->x_scn.x_nlinno, ext);
396 H_PUT_32 (abfd, in->x_scn.x_checksum, ext->x_scn.x_checksum);
397 H_PUT_16 (abfd, in->x_scn.x_associated, ext->x_scn.x_associated);
398 H_PUT_8 (abfd, in->x_scn.x_comdat, ext->x_scn.x_comdat);
399 return AUXESZ;
401 break;
404 H_PUT_32 (abfd, in->x_sym.x_tagndx.l, ext->x_sym.x_tagndx);
405 H_PUT_16 (abfd, in->x_sym.x_tvndx, ext->x_sym.x_tvndx);
407 if (in_class == C_BLOCK || in_class == C_FCN || ISFCN (type)
408 || ISTAG (in_class))
410 PUT_FCN_LNNOPTR (abfd, in->x_sym.x_fcnary.x_fcn.x_lnnoptr, ext);
411 PUT_FCN_ENDNDX (abfd, in->x_sym.x_fcnary.x_fcn.x_endndx.l, ext);
413 else
415 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[0],
416 ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
417 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[1],
418 ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
419 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[2],
420 ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
421 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[3],
422 ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
425 if (ISFCN (type))
426 H_PUT_32 (abfd, in->x_sym.x_misc.x_fsize, ext->x_sym.x_misc.x_fsize);
427 else
429 PUT_LNSZ_LNNO (abfd, in->x_sym.x_misc.x_lnsz.x_lnno, ext);
430 PUT_LNSZ_SIZE (abfd, in->x_sym.x_misc.x_lnsz.x_size, ext);
433 return AUXESZ;
436 void
437 _bfd_XXi_swap_lineno_in (bfd * abfd, void * ext1, void * in1)
439 LINENO *ext = (LINENO *) ext1;
440 struct internal_lineno *in = (struct internal_lineno *) in1;
442 in->l_addr.l_symndx = H_GET_32 (abfd, ext->l_addr.l_symndx);
443 in->l_lnno = GET_LINENO_LNNO (abfd, ext);
446 unsigned int
447 _bfd_XXi_swap_lineno_out (bfd * abfd, void * inp, void * outp)
449 struct internal_lineno *in = (struct internal_lineno *) inp;
450 struct external_lineno *ext = (struct external_lineno *) outp;
451 H_PUT_32 (abfd, in->l_addr.l_symndx, ext->l_addr.l_symndx);
453 PUT_LINENO_LNNO (abfd, in->l_lnno, ext);
454 return LINESZ;
457 void
458 _bfd_XXi_swap_aouthdr_in (bfd * abfd,
459 void * aouthdr_ext1,
460 void * aouthdr_int1)
462 PEAOUTHDR * src = (PEAOUTHDR *) aouthdr_ext1;
463 AOUTHDR * aouthdr_ext = (AOUTHDR *) aouthdr_ext1;
464 struct internal_aouthdr *aouthdr_int
465 = (struct internal_aouthdr *) aouthdr_int1;
466 struct internal_extra_pe_aouthdr *a = &aouthdr_int->pe;
468 aouthdr_int->magic = H_GET_16 (abfd, aouthdr_ext->magic);
469 aouthdr_int->vstamp = H_GET_16 (abfd, aouthdr_ext->vstamp);
470 aouthdr_int->tsize = GET_AOUTHDR_TSIZE (abfd, aouthdr_ext->tsize);
471 aouthdr_int->dsize = GET_AOUTHDR_DSIZE (abfd, aouthdr_ext->dsize);
472 aouthdr_int->bsize = GET_AOUTHDR_BSIZE (abfd, aouthdr_ext->bsize);
473 aouthdr_int->entry = GET_AOUTHDR_ENTRY (abfd, aouthdr_ext->entry);
474 aouthdr_int->text_start =
475 GET_AOUTHDR_TEXT_START (abfd, aouthdr_ext->text_start);
477 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
478 /* PE32+ does not have data_start member! */
479 aouthdr_int->data_start =
480 GET_AOUTHDR_DATA_START (abfd, aouthdr_ext->data_start);
481 a->BaseOfData = aouthdr_int->data_start;
482 #endif
484 a->Magic = aouthdr_int->magic;
485 a->MajorLinkerVersion = H_GET_8 (abfd, aouthdr_ext->vstamp);
486 a->MinorLinkerVersion = H_GET_8 (abfd, aouthdr_ext->vstamp + 1);
487 a->SizeOfCode = aouthdr_int->tsize ;
488 a->SizeOfInitializedData = aouthdr_int->dsize ;
489 a->SizeOfUninitializedData = aouthdr_int->bsize ;
490 a->AddressOfEntryPoint = aouthdr_int->entry;
491 a->BaseOfCode = aouthdr_int->text_start;
492 a->ImageBase = GET_OPTHDR_IMAGE_BASE (abfd, src->ImageBase);
493 a->SectionAlignment = H_GET_32 (abfd, src->SectionAlignment);
494 a->FileAlignment = H_GET_32 (abfd, src->FileAlignment);
495 a->MajorOperatingSystemVersion =
496 H_GET_16 (abfd, src->MajorOperatingSystemVersion);
497 a->MinorOperatingSystemVersion =
498 H_GET_16 (abfd, src->MinorOperatingSystemVersion);
499 a->MajorImageVersion = H_GET_16 (abfd, src->MajorImageVersion);
500 a->MinorImageVersion = H_GET_16 (abfd, src->MinorImageVersion);
501 a->MajorSubsystemVersion = H_GET_16 (abfd, src->MajorSubsystemVersion);
502 a->MinorSubsystemVersion = H_GET_16 (abfd, src->MinorSubsystemVersion);
503 a->Reserved1 = H_GET_32 (abfd, src->Reserved1);
504 a->SizeOfImage = H_GET_32 (abfd, src->SizeOfImage);
505 a->SizeOfHeaders = H_GET_32 (abfd, src->SizeOfHeaders);
506 a->CheckSum = H_GET_32 (abfd, src->CheckSum);
507 a->Subsystem = H_GET_16 (abfd, src->Subsystem);
508 a->DllCharacteristics = H_GET_16 (abfd, src->DllCharacteristics);
509 a->SizeOfStackReserve =
510 GET_OPTHDR_SIZE_OF_STACK_RESERVE (abfd, src->SizeOfStackReserve);
511 a->SizeOfStackCommit =
512 GET_OPTHDR_SIZE_OF_STACK_COMMIT (abfd, src->SizeOfStackCommit);
513 a->SizeOfHeapReserve =
514 GET_OPTHDR_SIZE_OF_HEAP_RESERVE (abfd, src->SizeOfHeapReserve);
515 a->SizeOfHeapCommit =
516 GET_OPTHDR_SIZE_OF_HEAP_COMMIT (abfd, src->SizeOfHeapCommit);
517 a->LoaderFlags = H_GET_32 (abfd, src->LoaderFlags);
518 a->NumberOfRvaAndSizes = H_GET_32 (abfd, src->NumberOfRvaAndSizes);
520 /* PR 17512: Don't blindly trust NumberOfRvaAndSizes. */
521 unsigned idx;
522 for (idx = 0;
523 idx < a->NumberOfRvaAndSizes && idx < IMAGE_NUMBEROF_DIRECTORY_ENTRIES;
524 idx++)
526 /* If data directory is empty, rva also should be 0. */
527 int size = H_GET_32 (abfd, src->DataDirectory[idx][1]);
528 int vma = size ? H_GET_32 (abfd, src->DataDirectory[idx][0]) : 0;
530 a->DataDirectory[idx].Size = size;
531 a->DataDirectory[idx].VirtualAddress = vma;
534 while (idx < IMAGE_NUMBEROF_DIRECTORY_ENTRIES)
536 a->DataDirectory[idx].Size = 0;
537 a->DataDirectory[idx].VirtualAddress = 0;
538 idx++;
541 if (aouthdr_int->entry)
543 aouthdr_int->entry += a->ImageBase;
544 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
545 aouthdr_int->entry &= 0xffffffff;
546 #endif
549 if (aouthdr_int->tsize)
551 aouthdr_int->text_start += a->ImageBase;
552 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
553 aouthdr_int->text_start &= 0xffffffff;
554 #endif
557 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
558 /* PE32+ does not have data_start member! */
559 if (aouthdr_int->dsize)
561 aouthdr_int->data_start += a->ImageBase;
562 aouthdr_int->data_start &= 0xffffffff;
564 #endif
567 /* A support function for below. */
569 static void
570 add_data_entry (bfd * abfd,
571 struct internal_extra_pe_aouthdr *aout,
572 int idx,
573 char *name,
574 bfd_vma base)
576 asection *sec = bfd_get_section_by_name (abfd, name);
578 /* Add import directory information if it exists. */
579 if ((sec != NULL)
580 && (coff_section_data (abfd, sec) != NULL)
581 && (pei_section_data (abfd, sec) != NULL))
583 /* If data directory is empty, rva also should be 0. */
584 int size = pei_section_data (abfd, sec)->virt_size;
585 aout->DataDirectory[idx].Size = size;
587 if (size)
589 aout->DataDirectory[idx].VirtualAddress =
590 (sec->vma - base) & 0xffffffff;
591 sec->flags |= SEC_DATA;
596 unsigned int
597 _bfd_XXi_swap_aouthdr_out (bfd * abfd, void * in, void * out)
599 struct internal_aouthdr *aouthdr_in = (struct internal_aouthdr *) in;
600 pe_data_type *pe = pe_data (abfd);
601 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
602 PEAOUTHDR *aouthdr_out = (PEAOUTHDR *) out;
603 bfd_vma sa, fa, ib;
604 IMAGE_DATA_DIRECTORY idata2, idata5, tls;
606 sa = extra->SectionAlignment;
607 fa = extra->FileAlignment;
608 ib = extra->ImageBase;
610 idata2 = pe->pe_opthdr.DataDirectory[PE_IMPORT_TABLE];
611 idata5 = pe->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE];
612 tls = pe->pe_opthdr.DataDirectory[PE_TLS_TABLE];
614 if (aouthdr_in->tsize)
616 aouthdr_in->text_start -= ib;
617 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
618 aouthdr_in->text_start &= 0xffffffff;
619 #endif
622 if (aouthdr_in->dsize)
624 aouthdr_in->data_start -= ib;
625 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
626 aouthdr_in->data_start &= 0xffffffff;
627 #endif
630 if (aouthdr_in->entry)
632 aouthdr_in->entry -= ib;
633 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
634 aouthdr_in->entry &= 0xffffffff;
635 #endif
638 #define FA(x) (((x) + fa -1 ) & (- fa))
639 #define SA(x) (((x) + sa -1 ) & (- sa))
641 /* We like to have the sizes aligned. */
642 aouthdr_in->bsize = FA (aouthdr_in->bsize);
644 extra->NumberOfRvaAndSizes = IMAGE_NUMBEROF_DIRECTORY_ENTRIES;
646 add_data_entry (abfd, extra, PE_EXPORT_TABLE, ".edata", ib);
647 add_data_entry (abfd, extra, PE_RESOURCE_TABLE, ".rsrc", ib);
648 add_data_entry (abfd, extra, PE_EXCEPTION_TABLE, ".pdata", ib);
650 /* In theory we do not need to call add_data_entry for .idata$2 or
651 .idata$5. It will be done in bfd_coff_final_link where all the
652 required information is available. If however, we are not going
653 to perform a final link, eg because we have been invoked by objcopy
654 or strip, then we need to make sure that these Data Directory
655 entries are initialised properly.
657 So - we copy the input values into the output values, and then, if
658 a final link is going to be performed, it can overwrite them. */
659 extra->DataDirectory[PE_IMPORT_TABLE] = idata2;
660 extra->DataDirectory[PE_IMPORT_ADDRESS_TABLE] = idata5;
661 extra->DataDirectory[PE_TLS_TABLE] = tls;
663 if (extra->DataDirectory[PE_IMPORT_TABLE].VirtualAddress == 0)
664 /* Until other .idata fixes are made (pending patch), the entry for
665 .idata is needed for backwards compatibility. FIXME. */
666 add_data_entry (abfd, extra, PE_IMPORT_TABLE, ".idata", ib);
668 /* For some reason, the virtual size (which is what's set by
669 add_data_entry) for .reloc is not the same as the size recorded
670 in this slot by MSVC; it doesn't seem to cause problems (so far),
671 but since it's the best we've got, use it. It does do the right
672 thing for .pdata. */
673 if (pe->has_reloc_section)
674 add_data_entry (abfd, extra, PE_BASE_RELOCATION_TABLE, ".reloc", ib);
677 asection *sec;
678 bfd_vma hsize = 0;
679 bfd_vma dsize = 0;
680 bfd_vma isize = 0;
681 bfd_vma tsize = 0;
683 for (sec = abfd->sections; sec; sec = sec->next)
685 int rounded = FA (sec->size);
687 if (rounded == 0)
688 continue;
690 /* The first non-zero section filepos is the header size.
691 Sections without contents will have a filepos of 0. */
692 if (hsize == 0)
693 hsize = sec->filepos;
694 if (sec->flags & SEC_DATA)
695 dsize += rounded;
696 if (sec->flags & SEC_CODE)
697 tsize += rounded;
698 /* The image size is the total VIRTUAL size (which is what is
699 in the virt_size field). Files have been seen (from MSVC
700 5.0 link.exe) where the file size of the .data segment is
701 quite small compared to the virtual size. Without this
702 fix, strip munges the file.
704 FIXME: We need to handle holes between sections, which may
705 happpen when we covert from another format. We just use
706 the virtual address and virtual size of the last section
707 for the image size. */
708 if (coff_section_data (abfd, sec) != NULL
709 && pei_section_data (abfd, sec) != NULL)
710 isize = (sec->vma - extra->ImageBase
711 + SA (FA (pei_section_data (abfd, sec)->virt_size)));
714 aouthdr_in->dsize = dsize;
715 aouthdr_in->tsize = tsize;
716 extra->SizeOfHeaders = hsize;
717 extra->SizeOfImage = isize;
720 H_PUT_16 (abfd, aouthdr_in->magic, aouthdr_out->standard.magic);
722 if (extra->MajorLinkerVersion || extra->MinorLinkerVersion)
724 H_PUT_8 (abfd, extra->MajorLinkerVersion,
725 aouthdr_out->standard.vstamp);
726 H_PUT_8 (abfd, extra->MinorLinkerVersion,
727 aouthdr_out->standard.vstamp + 1);
729 else
731 /* e.g. 219510000 is linker version 2.19 */
732 #define LINKER_VERSION ((short) (BFD_VERSION / 1000000))
734 /* This piece of magic sets the "linker version" field to
735 LINKER_VERSION. */
736 H_PUT_16 (abfd, (LINKER_VERSION / 100 + (LINKER_VERSION % 100) * 256),
737 aouthdr_out->standard.vstamp);
740 PUT_AOUTHDR_TSIZE (abfd, aouthdr_in->tsize, aouthdr_out->standard.tsize);
741 PUT_AOUTHDR_DSIZE (abfd, aouthdr_in->dsize, aouthdr_out->standard.dsize);
742 PUT_AOUTHDR_BSIZE (abfd, aouthdr_in->bsize, aouthdr_out->standard.bsize);
743 PUT_AOUTHDR_ENTRY (abfd, aouthdr_in->entry, aouthdr_out->standard.entry);
744 PUT_AOUTHDR_TEXT_START (abfd, aouthdr_in->text_start,
745 aouthdr_out->standard.text_start);
747 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
748 /* PE32+ does not have data_start member! */
749 PUT_AOUTHDR_DATA_START (abfd, aouthdr_in->data_start,
750 aouthdr_out->standard.data_start);
751 #endif
753 PUT_OPTHDR_IMAGE_BASE (abfd, extra->ImageBase, aouthdr_out->ImageBase);
754 H_PUT_32 (abfd, extra->SectionAlignment, aouthdr_out->SectionAlignment);
755 H_PUT_32 (abfd, extra->FileAlignment, aouthdr_out->FileAlignment);
756 H_PUT_16 (abfd, extra->MajorOperatingSystemVersion,
757 aouthdr_out->MajorOperatingSystemVersion);
758 H_PUT_16 (abfd, extra->MinorOperatingSystemVersion,
759 aouthdr_out->MinorOperatingSystemVersion);
760 H_PUT_16 (abfd, extra->MajorImageVersion, aouthdr_out->MajorImageVersion);
761 H_PUT_16 (abfd, extra->MinorImageVersion, aouthdr_out->MinorImageVersion);
762 H_PUT_16 (abfd, extra->MajorSubsystemVersion,
763 aouthdr_out->MajorSubsystemVersion);
764 H_PUT_16 (abfd, extra->MinorSubsystemVersion,
765 aouthdr_out->MinorSubsystemVersion);
766 H_PUT_32 (abfd, extra->Reserved1, aouthdr_out->Reserved1);
767 H_PUT_32 (abfd, extra->SizeOfImage, aouthdr_out->SizeOfImage);
768 H_PUT_32 (abfd, extra->SizeOfHeaders, aouthdr_out->SizeOfHeaders);
769 H_PUT_32 (abfd, extra->CheckSum, aouthdr_out->CheckSum);
770 H_PUT_16 (abfd, extra->Subsystem, aouthdr_out->Subsystem);
771 H_PUT_16 (abfd, extra->DllCharacteristics, aouthdr_out->DllCharacteristics);
772 PUT_OPTHDR_SIZE_OF_STACK_RESERVE (abfd, extra->SizeOfStackReserve,
773 aouthdr_out->SizeOfStackReserve);
774 PUT_OPTHDR_SIZE_OF_STACK_COMMIT (abfd, extra->SizeOfStackCommit,
775 aouthdr_out->SizeOfStackCommit);
776 PUT_OPTHDR_SIZE_OF_HEAP_RESERVE (abfd, extra->SizeOfHeapReserve,
777 aouthdr_out->SizeOfHeapReserve);
778 PUT_OPTHDR_SIZE_OF_HEAP_COMMIT (abfd, extra->SizeOfHeapCommit,
779 aouthdr_out->SizeOfHeapCommit);
780 H_PUT_32 (abfd, extra->LoaderFlags, aouthdr_out->LoaderFlags);
781 H_PUT_32 (abfd, extra->NumberOfRvaAndSizes,
782 aouthdr_out->NumberOfRvaAndSizes);
784 int idx;
786 for (idx = 0; idx < IMAGE_NUMBEROF_DIRECTORY_ENTRIES; idx++)
788 H_PUT_32 (abfd, extra->DataDirectory[idx].VirtualAddress,
789 aouthdr_out->DataDirectory[idx][0]);
790 H_PUT_32 (abfd, extra->DataDirectory[idx].Size,
791 aouthdr_out->DataDirectory[idx][1]);
795 return AOUTSZ;
798 unsigned int
799 _bfd_XXi_only_swap_filehdr_out (bfd * abfd, void * in, void * out)
801 int idx;
802 struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
803 struct external_PEI_filehdr *filehdr_out = (struct external_PEI_filehdr *) out;
805 if (pe_data (abfd)->has_reloc_section
806 || pe_data (abfd)->dont_strip_reloc)
807 filehdr_in->f_flags &= ~F_RELFLG;
809 if (pe_data (abfd)->dll)
810 filehdr_in->f_flags |= F_DLL;
812 filehdr_in->pe.e_magic = IMAGE_DOS_SIGNATURE;
813 filehdr_in->pe.e_cblp = 0x90;
814 filehdr_in->pe.e_cp = 0x3;
815 filehdr_in->pe.e_crlc = 0x0;
816 filehdr_in->pe.e_cparhdr = 0x4;
817 filehdr_in->pe.e_minalloc = 0x0;
818 filehdr_in->pe.e_maxalloc = 0xffff;
819 filehdr_in->pe.e_ss = 0x0;
820 filehdr_in->pe.e_sp = 0xb8;
821 filehdr_in->pe.e_csum = 0x0;
822 filehdr_in->pe.e_ip = 0x0;
823 filehdr_in->pe.e_cs = 0x0;
824 filehdr_in->pe.e_lfarlc = 0x40;
825 filehdr_in->pe.e_ovno = 0x0;
827 for (idx = 0; idx < 4; idx++)
828 filehdr_in->pe.e_res[idx] = 0x0;
830 filehdr_in->pe.e_oemid = 0x0;
831 filehdr_in->pe.e_oeminfo = 0x0;
833 for (idx = 0; idx < 10; idx++)
834 filehdr_in->pe.e_res2[idx] = 0x0;
836 filehdr_in->pe.e_lfanew = 0x80;
838 /* This next collection of data are mostly just characters. It
839 appears to be constant within the headers put on NT exes. */
840 memcpy (filehdr_in->pe.dos_message, pe_data (abfd)->dos_message,
841 sizeof (filehdr_in->pe.dos_message));
843 filehdr_in->pe.nt_signature = IMAGE_NT_SIGNATURE;
845 H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->f_magic);
846 H_PUT_16 (abfd, filehdr_in->f_nscns, filehdr_out->f_nscns);
848 /* Use a real timestamp by default, unless the no-insert-timestamp
849 option was chosen. */
850 if ((pe_data (abfd)->timestamp) == -1)
851 H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
852 else
853 H_PUT_32 (abfd, pe_data (abfd)->timestamp, filehdr_out->f_timdat);
855 PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
856 filehdr_out->f_symptr);
857 H_PUT_32 (abfd, filehdr_in->f_nsyms, filehdr_out->f_nsyms);
858 H_PUT_16 (abfd, filehdr_in->f_opthdr, filehdr_out->f_opthdr);
859 H_PUT_16 (abfd, filehdr_in->f_flags, filehdr_out->f_flags);
861 /* Put in extra dos header stuff. This data remains essentially
862 constant, it just has to be tacked on to the beginning of all exes
863 for NT. */
864 H_PUT_16 (abfd, filehdr_in->pe.e_magic, filehdr_out->e_magic);
865 H_PUT_16 (abfd, filehdr_in->pe.e_cblp, filehdr_out->e_cblp);
866 H_PUT_16 (abfd, filehdr_in->pe.e_cp, filehdr_out->e_cp);
867 H_PUT_16 (abfd, filehdr_in->pe.e_crlc, filehdr_out->e_crlc);
868 H_PUT_16 (abfd, filehdr_in->pe.e_cparhdr, filehdr_out->e_cparhdr);
869 H_PUT_16 (abfd, filehdr_in->pe.e_minalloc, filehdr_out->e_minalloc);
870 H_PUT_16 (abfd, filehdr_in->pe.e_maxalloc, filehdr_out->e_maxalloc);
871 H_PUT_16 (abfd, filehdr_in->pe.e_ss, filehdr_out->e_ss);
872 H_PUT_16 (abfd, filehdr_in->pe.e_sp, filehdr_out->e_sp);
873 H_PUT_16 (abfd, filehdr_in->pe.e_csum, filehdr_out->e_csum);
874 H_PUT_16 (abfd, filehdr_in->pe.e_ip, filehdr_out->e_ip);
875 H_PUT_16 (abfd, filehdr_in->pe.e_cs, filehdr_out->e_cs);
876 H_PUT_16 (abfd, filehdr_in->pe.e_lfarlc, filehdr_out->e_lfarlc);
877 H_PUT_16 (abfd, filehdr_in->pe.e_ovno, filehdr_out->e_ovno);
879 for (idx = 0; idx < 4; idx++)
880 H_PUT_16 (abfd, filehdr_in->pe.e_res[idx], filehdr_out->e_res[idx]);
882 H_PUT_16 (abfd, filehdr_in->pe.e_oemid, filehdr_out->e_oemid);
883 H_PUT_16 (abfd, filehdr_in->pe.e_oeminfo, filehdr_out->e_oeminfo);
885 for (idx = 0; idx < 10; idx++)
886 H_PUT_16 (abfd, filehdr_in->pe.e_res2[idx], filehdr_out->e_res2[idx]);
888 H_PUT_32 (abfd, filehdr_in->pe.e_lfanew, filehdr_out->e_lfanew);
890 for (idx = 0; idx < 16; idx++)
891 H_PUT_32 (abfd, filehdr_in->pe.dos_message[idx],
892 filehdr_out->dos_message[idx]);
894 /* Also put in the NT signature. */
895 H_PUT_32 (abfd, filehdr_in->pe.nt_signature, filehdr_out->nt_signature);
897 return FILHSZ;
900 unsigned int
901 _bfd_XX_only_swap_filehdr_out (bfd * abfd, void * in, void * out)
903 struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
904 FILHDR *filehdr_out = (FILHDR *) out;
906 H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->f_magic);
907 H_PUT_16 (abfd, filehdr_in->f_nscns, filehdr_out->f_nscns);
908 H_PUT_32 (abfd, filehdr_in->f_timdat, filehdr_out->f_timdat);
909 PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr, filehdr_out->f_symptr);
910 H_PUT_32 (abfd, filehdr_in->f_nsyms, filehdr_out->f_nsyms);
911 H_PUT_16 (abfd, filehdr_in->f_opthdr, filehdr_out->f_opthdr);
912 H_PUT_16 (abfd, filehdr_in->f_flags, filehdr_out->f_flags);
914 return FILHSZ;
917 unsigned int
918 _bfd_XXi_swap_scnhdr_out (bfd * abfd, void * in, void * out)
920 struct internal_scnhdr *scnhdr_int = (struct internal_scnhdr *) in;
921 SCNHDR *scnhdr_ext = (SCNHDR *) out;
922 unsigned int ret = SCNHSZ;
923 bfd_vma ps;
924 bfd_vma ss;
926 memcpy (scnhdr_ext->s_name, scnhdr_int->s_name, sizeof (scnhdr_int->s_name));
928 ss = scnhdr_int->s_vaddr - pe_data (abfd)->pe_opthdr.ImageBase;
929 if (scnhdr_int->s_vaddr < pe_data (abfd)->pe_opthdr.ImageBase)
930 _bfd_error_handler (_("%pB:%.8s: section below image base"),
931 abfd, scnhdr_int->s_name);
932 /* Do not compare lower 32-bits for 64-bit vma. */
933 #if !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
934 else if(ss != (ss & 0xffffffff))
935 _bfd_error_handler (_("%pB:%.8s: RVA truncated"), abfd, scnhdr_int->s_name);
936 PUT_SCNHDR_VADDR (abfd, ss & 0xffffffff, scnhdr_ext->s_vaddr);
937 #else
938 PUT_SCNHDR_VADDR (abfd, ss, scnhdr_ext->s_vaddr);
939 #endif
941 /* NT wants the size data to be rounded up to the next
942 NT_FILE_ALIGNMENT, but zero if it has no content (as in .bss,
943 sometimes). */
944 if ((scnhdr_int->s_flags & IMAGE_SCN_CNT_UNINITIALIZED_DATA) != 0)
946 if (bfd_pei_p (abfd))
948 ps = scnhdr_int->s_size;
949 ss = 0;
951 else
953 ps = 0;
954 ss = scnhdr_int->s_size;
957 else
959 if (bfd_pei_p (abfd))
960 ps = scnhdr_int->s_paddr;
961 else
962 ps = 0;
964 ss = scnhdr_int->s_size;
967 PUT_SCNHDR_SIZE (abfd, ss,
968 scnhdr_ext->s_size);
970 /* s_paddr in PE is really the virtual size. */
971 PUT_SCNHDR_PADDR (abfd, ps, scnhdr_ext->s_paddr);
973 PUT_SCNHDR_SCNPTR (abfd, scnhdr_int->s_scnptr,
974 scnhdr_ext->s_scnptr);
975 PUT_SCNHDR_RELPTR (abfd, scnhdr_int->s_relptr,
976 scnhdr_ext->s_relptr);
977 PUT_SCNHDR_LNNOPTR (abfd, scnhdr_int->s_lnnoptr,
978 scnhdr_ext->s_lnnoptr);
981 /* Extra flags must be set when dealing with PE. All sections should also
982 have the IMAGE_SCN_MEM_READ (0x40000000) flag set. In addition, the
983 .text section must have IMAGE_SCN_MEM_EXECUTE (0x20000000) and the data
984 sections (.idata, .data, .bss, .CRT) must have IMAGE_SCN_MEM_WRITE set
985 (this is especially important when dealing with the .idata section since
986 the addresses for routines from .dlls must be overwritten). If .reloc
987 section data is ever generated, we must add IMAGE_SCN_MEM_DISCARDABLE
988 (0x02000000). Also, the resource data should also be read and
989 writable. */
991 /* FIXME: Alignment is also encoded in this field, at least on
992 ARM-WINCE. Although - how do we get the original alignment field
993 back ? */
995 typedef struct
997 char section_name[SCNNMLEN];
998 unsigned long must_have;
1000 pe_required_section_flags;
1002 pe_required_section_flags known_sections [] =
1004 { ".arch", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_DISCARDABLE | IMAGE_SCN_ALIGN_8BYTES },
1005 { ".bss", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_UNINITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1006 { ".data", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1007 { ".edata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
1008 { ".idata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1009 { ".pdata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
1010 { ".rdata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
1011 { ".reloc", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_DISCARDABLE },
1012 { ".rsrc", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1013 { ".text" , IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_CODE | IMAGE_SCN_MEM_EXECUTE },
1014 { ".tls", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1015 { ".xdata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
1018 pe_required_section_flags * p;
1020 /* We have defaulted to adding the IMAGE_SCN_MEM_WRITE flag, but now
1021 we know exactly what this specific section wants so we remove it
1022 and then allow the must_have field to add it back in if necessary.
1023 However, we don't remove IMAGE_SCN_MEM_WRITE flag from .text if the
1024 default WP_TEXT file flag has been cleared. WP_TEXT may be cleared
1025 by ld --enable-auto-import (if auto-import is actually needed),
1026 by ld --omagic, or by obcopy --writable-text. */
1028 for (p = known_sections;
1029 p < known_sections + ARRAY_SIZE (known_sections);
1030 p++)
1031 if (memcmp (scnhdr_int->s_name, p->section_name, SCNNMLEN) == 0)
1033 if (memcmp (scnhdr_int->s_name, ".text", sizeof ".text")
1034 || (bfd_get_file_flags (abfd) & WP_TEXT))
1035 scnhdr_int->s_flags &= ~IMAGE_SCN_MEM_WRITE;
1036 scnhdr_int->s_flags |= p->must_have;
1037 break;
1040 H_PUT_32 (abfd, scnhdr_int->s_flags, scnhdr_ext->s_flags);
1043 if (coff_data (abfd)->link_info
1044 && ! bfd_link_relocatable (coff_data (abfd)->link_info)
1045 && ! bfd_link_pic (coff_data (abfd)->link_info)
1046 && memcmp (scnhdr_int->s_name, ".text", sizeof ".text") == 0)
1048 /* By inference from looking at MS output, the 32 bit field
1049 which is the combination of the number_of_relocs and
1050 number_of_linenos is used for the line number count in
1051 executables. A 16-bit field won't do for cc1. The MS
1052 document says that the number of relocs is zero for
1053 executables, but the 17-th bit has been observed to be there.
1054 Overflow is not an issue: a 4G-line program will overflow a
1055 bunch of other fields long before this! */
1056 H_PUT_16 (abfd, (scnhdr_int->s_nlnno & 0xffff), scnhdr_ext->s_nlnno);
1057 H_PUT_16 (abfd, (scnhdr_int->s_nlnno >> 16), scnhdr_ext->s_nreloc);
1059 else
1061 if (scnhdr_int->s_nlnno <= 0xffff)
1062 H_PUT_16 (abfd, scnhdr_int->s_nlnno, scnhdr_ext->s_nlnno);
1063 else
1065 /* xgettext:c-format */
1066 _bfd_error_handler (_("%pB: line number overflow: 0x%lx > 0xffff"),
1067 abfd, scnhdr_int->s_nlnno);
1068 bfd_set_error (bfd_error_file_truncated);
1069 H_PUT_16 (abfd, 0xffff, scnhdr_ext->s_nlnno);
1070 ret = 0;
1073 /* Although we could encode 0xffff relocs here, we do not, to be
1074 consistent with other parts of bfd. Also it lets us warn, as
1075 we should never see 0xffff here w/o having the overflow flag
1076 set. */
1077 if (scnhdr_int->s_nreloc < 0xffff)
1078 H_PUT_16 (abfd, scnhdr_int->s_nreloc, scnhdr_ext->s_nreloc);
1079 else
1081 /* PE can deal with large #s of relocs, but not here. */
1082 H_PUT_16 (abfd, 0xffff, scnhdr_ext->s_nreloc);
1083 scnhdr_int->s_flags |= IMAGE_SCN_LNK_NRELOC_OVFL;
1084 H_PUT_32 (abfd, scnhdr_int->s_flags, scnhdr_ext->s_flags);
1087 return ret;
1090 void
1091 _bfd_XXi_swap_debugdir_in (bfd * abfd, void * ext1, void * in1)
1093 struct external_IMAGE_DEBUG_DIRECTORY *ext = (struct external_IMAGE_DEBUG_DIRECTORY *) ext1;
1094 struct internal_IMAGE_DEBUG_DIRECTORY *in = (struct internal_IMAGE_DEBUG_DIRECTORY *) in1;
1096 in->Characteristics = H_GET_32(abfd, ext->Characteristics);
1097 in->TimeDateStamp = H_GET_32(abfd, ext->TimeDateStamp);
1098 in->MajorVersion = H_GET_16(abfd, ext->MajorVersion);
1099 in->MinorVersion = H_GET_16(abfd, ext->MinorVersion);
1100 in->Type = H_GET_32(abfd, ext->Type);
1101 in->SizeOfData = H_GET_32(abfd, ext->SizeOfData);
1102 in->AddressOfRawData = H_GET_32(abfd, ext->AddressOfRawData);
1103 in->PointerToRawData = H_GET_32(abfd, ext->PointerToRawData);
1106 unsigned int
1107 _bfd_XXi_swap_debugdir_out (bfd * abfd, void * inp, void * extp)
1109 struct external_IMAGE_DEBUG_DIRECTORY *ext = (struct external_IMAGE_DEBUG_DIRECTORY *) extp;
1110 struct internal_IMAGE_DEBUG_DIRECTORY *in = (struct internal_IMAGE_DEBUG_DIRECTORY *) inp;
1112 H_PUT_32(abfd, in->Characteristics, ext->Characteristics);
1113 H_PUT_32(abfd, in->TimeDateStamp, ext->TimeDateStamp);
1114 H_PUT_16(abfd, in->MajorVersion, ext->MajorVersion);
1115 H_PUT_16(abfd, in->MinorVersion, ext->MinorVersion);
1116 H_PUT_32(abfd, in->Type, ext->Type);
1117 H_PUT_32(abfd, in->SizeOfData, ext->SizeOfData);
1118 H_PUT_32(abfd, in->AddressOfRawData, ext->AddressOfRawData);
1119 H_PUT_32(abfd, in->PointerToRawData, ext->PointerToRawData);
1121 return sizeof (struct external_IMAGE_DEBUG_DIRECTORY);
1124 CODEVIEW_INFO *
1125 _bfd_XXi_slurp_codeview_record (bfd * abfd, file_ptr where, unsigned long length, CODEVIEW_INFO *cvinfo,
1126 char **pdb)
1128 char buffer[256+1];
1129 bfd_size_type nread;
1131 if (bfd_seek (abfd, where, SEEK_SET) != 0)
1132 return NULL;
1134 if (length <= sizeof (CV_INFO_PDB70) && length <= sizeof (CV_INFO_PDB20))
1135 return NULL;
1136 if (length > 256)
1137 length = 256;
1138 nread = bfd_bread (buffer, length, abfd);
1139 if (length != nread)
1140 return NULL;
1142 /* Ensure null termination of filename. */
1143 memset (buffer + nread, 0, sizeof (buffer) - nread);
1145 cvinfo->CVSignature = H_GET_32 (abfd, buffer);
1146 cvinfo->Age = 0;
1148 if ((cvinfo->CVSignature == CVINFO_PDB70_CVSIGNATURE)
1149 && (length > sizeof (CV_INFO_PDB70)))
1151 CV_INFO_PDB70 *cvinfo70 = (CV_INFO_PDB70 *)(buffer);
1153 cvinfo->Age = H_GET_32(abfd, cvinfo70->Age);
1155 /* A GUID consists of 4,2,2 byte values in little-endian order, followed
1156 by 8 single bytes. Byte swap them so we can conveniently treat the GUID
1157 as 16 bytes in big-endian order. */
1158 bfd_putb32 (bfd_getl32 (cvinfo70->Signature), cvinfo->Signature);
1159 bfd_putb16 (bfd_getl16 (&(cvinfo70->Signature[4])), &(cvinfo->Signature[4]));
1160 bfd_putb16 (bfd_getl16 (&(cvinfo70->Signature[6])), &(cvinfo->Signature[6]));
1161 memcpy (&(cvinfo->Signature[8]), &(cvinfo70->Signature[8]), 8);
1163 cvinfo->SignatureLength = CV_INFO_SIGNATURE_LENGTH;
1164 /* cvinfo->PdbFileName = cvinfo70->PdbFileName; */
1166 if (pdb)
1167 *pdb = xstrdup (cvinfo70->PdbFileName);
1169 return cvinfo;
1171 else if ((cvinfo->CVSignature == CVINFO_PDB20_CVSIGNATURE)
1172 && (length > sizeof (CV_INFO_PDB20)))
1174 CV_INFO_PDB20 *cvinfo20 = (CV_INFO_PDB20 *)(buffer);
1175 cvinfo->Age = H_GET_32(abfd, cvinfo20->Age);
1176 memcpy (cvinfo->Signature, cvinfo20->Signature, 4);
1177 cvinfo->SignatureLength = 4;
1178 /* cvinfo->PdbFileName = cvinfo20->PdbFileName; */
1180 if (pdb)
1181 *pdb = xstrdup (cvinfo20->PdbFileName);
1183 return cvinfo;
1186 return NULL;
1189 unsigned int
1190 _bfd_XXi_write_codeview_record (bfd * abfd, file_ptr where, CODEVIEW_INFO *cvinfo,
1191 const char *pdb)
1193 size_t pdb_len = pdb ? strlen (pdb) : 0;
1194 const bfd_size_type size = sizeof (CV_INFO_PDB70) + pdb_len + 1;
1195 bfd_size_type written;
1196 CV_INFO_PDB70 *cvinfo70;
1197 char * buffer;
1199 if (bfd_seek (abfd, where, SEEK_SET) != 0)
1200 return 0;
1202 buffer = bfd_malloc (size);
1203 if (buffer == NULL)
1204 return 0;
1206 cvinfo70 = (CV_INFO_PDB70 *) buffer;
1207 H_PUT_32 (abfd, CVINFO_PDB70_CVSIGNATURE, cvinfo70->CvSignature);
1209 /* Byte swap the GUID from 16 bytes in big-endian order to 4,2,2 byte values
1210 in little-endian order, followed by 8 single bytes. */
1211 bfd_putl32 (bfd_getb32 (cvinfo->Signature), cvinfo70->Signature);
1212 bfd_putl16 (bfd_getb16 (&(cvinfo->Signature[4])), &(cvinfo70->Signature[4]));
1213 bfd_putl16 (bfd_getb16 (&(cvinfo->Signature[6])), &(cvinfo70->Signature[6]));
1214 memcpy (&(cvinfo70->Signature[8]), &(cvinfo->Signature[8]), 8);
1216 H_PUT_32 (abfd, cvinfo->Age, cvinfo70->Age);
1218 if (pdb == NULL)
1219 cvinfo70->PdbFileName[0] = '\0';
1220 else
1221 memcpy (cvinfo70->PdbFileName, pdb, pdb_len + 1);
1223 written = bfd_bwrite (buffer, size, abfd);
1225 free (buffer);
1227 return written == size ? size : 0;
1230 static char * dir_names[IMAGE_NUMBEROF_DIRECTORY_ENTRIES] =
1232 N_("Export Directory [.edata (or where ever we found it)]"),
1233 N_("Import Directory [parts of .idata]"),
1234 N_("Resource Directory [.rsrc]"),
1235 N_("Exception Directory [.pdata]"),
1236 N_("Security Directory"),
1237 N_("Base Relocation Directory [.reloc]"),
1238 N_("Debug Directory"),
1239 N_("Description Directory"),
1240 N_("Special Directory"),
1241 N_("Thread Storage Directory [.tls]"),
1242 N_("Load Configuration Directory"),
1243 N_("Bound Import Directory"),
1244 N_("Import Address Table Directory"),
1245 N_("Delay Import Directory"),
1246 N_("CLR Runtime Header"),
1247 N_("Reserved")
1250 static bool
1251 pe_print_idata (bfd * abfd, void * vfile)
1253 FILE *file = (FILE *) vfile;
1254 bfd_byte *data;
1255 asection *section;
1256 bfd_signed_vma adj;
1257 bfd_size_type datasize = 0;
1258 bfd_size_type dataoff;
1259 bfd_size_type i;
1260 int onaline = 20;
1262 pe_data_type *pe = pe_data (abfd);
1263 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
1265 bfd_vma addr;
1267 addr = extra->DataDirectory[PE_IMPORT_TABLE].VirtualAddress;
1269 if (addr == 0 && extra->DataDirectory[PE_IMPORT_TABLE].Size == 0)
1271 /* Maybe the extra header isn't there. Look for the section. */
1272 section = bfd_get_section_by_name (abfd, ".idata");
1273 if (section == NULL)
1274 return true;
1276 addr = section->vma;
1277 datasize = section->size;
1278 if (datasize == 0)
1279 return true;
1281 else
1283 addr += extra->ImageBase;
1284 for (section = abfd->sections; section != NULL; section = section->next)
1286 datasize = section->size;
1287 if (addr >= section->vma && addr < section->vma + datasize)
1288 break;
1291 if (section == NULL)
1293 fprintf (file,
1294 _("\nThere is an import table, but the section containing it could not be found\n"));
1295 return true;
1297 else if (!(section->flags & SEC_HAS_CONTENTS))
1299 fprintf (file,
1300 _("\nThere is an import table in %s, but that section has no contents\n"),
1301 section->name);
1302 return true;
1306 /* xgettext:c-format */
1307 fprintf (file, _("\nThere is an import table in %s at 0x%lx\n"),
1308 section->name, (unsigned long) addr);
1310 dataoff = addr - section->vma;
1312 fprintf (file,
1313 _("\nThe Import Tables (interpreted %s section contents)\n"),
1314 section->name);
1315 fprintf (file,
1316 _("\
1317 vma: Hint Time Forward DLL First\n\
1318 Table Stamp Chain Name Thunk\n"));
1320 /* Read the whole section. Some of the fields might be before dataoff. */
1321 if (!bfd_malloc_and_get_section (abfd, section, &data))
1323 free (data);
1324 return false;
1327 adj = section->vma - extra->ImageBase;
1329 /* Print all image import descriptors. */
1330 for (i = dataoff; i + onaline <= datasize; i += onaline)
1332 bfd_vma hint_addr;
1333 bfd_vma time_stamp;
1334 bfd_vma forward_chain;
1335 bfd_vma dll_name;
1336 bfd_vma first_thunk;
1337 int idx = 0;
1338 bfd_size_type j;
1339 char *dll;
1341 /* Print (i + extra->DataDirectory[PE_IMPORT_TABLE].VirtualAddress). */
1342 fprintf (file, " %08lx\t", (unsigned long) (i + adj));
1343 hint_addr = bfd_get_32 (abfd, data + i);
1344 time_stamp = bfd_get_32 (abfd, data + i + 4);
1345 forward_chain = bfd_get_32 (abfd, data + i + 8);
1346 dll_name = bfd_get_32 (abfd, data + i + 12);
1347 first_thunk = bfd_get_32 (abfd, data + i + 16);
1349 fprintf (file, "%08lx %08lx %08lx %08lx %08lx\n",
1350 (unsigned long) hint_addr,
1351 (unsigned long) time_stamp,
1352 (unsigned long) forward_chain,
1353 (unsigned long) dll_name,
1354 (unsigned long) first_thunk);
1356 if (hint_addr == 0 && first_thunk == 0)
1357 break;
1359 if (dll_name - adj >= section->size)
1360 break;
1362 dll = (char *) data + dll_name - adj;
1363 /* PR 17512 file: 078-12277-0.004. */
1364 bfd_size_type maxlen = (char *)(data + datasize) - dll - 1;
1365 fprintf (file, _("\n\tDLL Name: %.*s\n"), (int) maxlen, dll);
1367 /* PR 21546: When the Hint Address is zero,
1368 we try the First Thunk instead. */
1369 if (hint_addr == 0)
1370 hint_addr = first_thunk;
1372 if (hint_addr != 0 && hint_addr - adj < datasize)
1374 bfd_byte *ft_data;
1375 asection *ft_section;
1376 bfd_vma ft_addr;
1377 bfd_size_type ft_datasize;
1378 int ft_idx;
1379 int ft_allocated;
1381 fprintf (file, _("\tvma: Hint/Ord Member-Name Bound-To\n"));
1383 idx = hint_addr - adj;
1385 ft_addr = first_thunk + extra->ImageBase;
1386 ft_idx = first_thunk - adj;
1387 ft_data = data + ft_idx;
1388 ft_datasize = datasize - ft_idx;
1389 ft_allocated = 0;
1391 if (first_thunk != hint_addr)
1393 /* Find the section which contains the first thunk. */
1394 for (ft_section = abfd->sections;
1395 ft_section != NULL;
1396 ft_section = ft_section->next)
1398 if (ft_addr >= ft_section->vma
1399 && ft_addr < ft_section->vma + ft_section->size)
1400 break;
1403 if (ft_section == NULL)
1405 fprintf (file,
1406 _("\nThere is a first thunk, but the section containing it could not be found\n"));
1407 continue;
1410 /* Now check to see if this section is the same as our current
1411 section. If it is not then we will have to load its data in. */
1412 if (ft_section != section)
1414 ft_idx = first_thunk - (ft_section->vma - extra->ImageBase);
1415 ft_datasize = ft_section->size - ft_idx;
1416 ft_data = (bfd_byte *) bfd_malloc (ft_datasize);
1417 if (ft_data == NULL)
1418 continue;
1420 /* Read ft_datasize bytes starting at offset ft_idx. */
1421 if (!bfd_get_section_contents (abfd, ft_section, ft_data,
1422 (bfd_vma) ft_idx, ft_datasize))
1424 free (ft_data);
1425 continue;
1427 ft_allocated = 1;
1431 /* Print HintName vector entries. */
1432 #ifdef COFF_WITH_pex64
1433 for (j = 0; idx + j + 8 <= datasize; j += 8)
1435 bfd_size_type amt;
1436 unsigned long member = bfd_get_32 (abfd, data + idx + j);
1437 unsigned long member_high = bfd_get_32 (abfd, data + idx + j + 4);
1439 if (!member && !member_high)
1440 break;
1442 amt = member - adj;
1444 if (HighBitSet (member_high))
1445 fprintf (file, "\t%lx%08lx\t %4lx%08lx <none>",
1446 member_high, member,
1447 WithoutHighBit (member_high), member);
1448 /* PR binutils/17512: Handle corrupt PE data. */
1449 else if (amt >= datasize || amt + 2 >= datasize)
1450 fprintf (file, _("\t<corrupt: 0x%04lx>"), member);
1451 else
1453 int ordinal;
1454 char *member_name;
1456 ordinal = bfd_get_16 (abfd, data + amt);
1457 member_name = (char *) data + amt + 2;
1458 fprintf (file, "\t%04lx\t %4d %.*s",member, ordinal,
1459 (int) (datasize - (amt + 2)), member_name);
1462 /* If the time stamp is not zero, the import address
1463 table holds actual addresses. */
1464 if (time_stamp != 0
1465 && first_thunk != 0
1466 && first_thunk != hint_addr
1467 && j + 4 <= ft_datasize)
1468 fprintf (file, "\t%04lx",
1469 (unsigned long) bfd_get_32 (abfd, ft_data + j));
1470 fprintf (file, "\n");
1472 #else
1473 for (j = 0; idx + j + 4 <= datasize; j += 4)
1475 bfd_size_type amt;
1476 unsigned long member = bfd_get_32 (abfd, data + idx + j);
1478 /* Print single IMAGE_IMPORT_BY_NAME vector. */
1479 if (member == 0)
1480 break;
1482 amt = member - adj;
1484 if (HighBitSet (member))
1485 fprintf (file, "\t%04lx\t %4lu <none>",
1486 member, WithoutHighBit (member));
1487 /* PR binutils/17512: Handle corrupt PE data. */
1488 else if (amt >= datasize || amt + 2 >= datasize)
1489 fprintf (file, _("\t<corrupt: 0x%04lx>"), member);
1490 else
1492 int ordinal;
1493 char *member_name;
1495 ordinal = bfd_get_16 (abfd, data + amt);
1496 member_name = (char *) data + amt + 2;
1497 fprintf (file, "\t%04lx\t %4d %.*s",
1498 member, ordinal,
1499 (int) (datasize - (amt + 2)), member_name);
1502 /* If the time stamp is not zero, the import address
1503 table holds actual addresses. */
1504 if (time_stamp != 0
1505 && first_thunk != 0
1506 && first_thunk != hint_addr
1507 && j + 4 <= ft_datasize)
1508 fprintf (file, "\t%04lx",
1509 (unsigned long) bfd_get_32 (abfd, ft_data + j));
1511 fprintf (file, "\n");
1513 #endif
1514 if (ft_allocated)
1515 free (ft_data);
1518 fprintf (file, "\n");
1521 free (data);
1523 return true;
1526 static bool
1527 pe_print_edata (bfd * abfd, void * vfile)
1529 FILE *file = (FILE *) vfile;
1530 bfd_byte *data;
1531 asection *section;
1532 bfd_size_type datasize = 0;
1533 bfd_size_type dataoff;
1534 bfd_size_type i;
1535 bfd_vma adj;
1536 struct EDT_type
1538 long export_flags; /* Reserved - should be zero. */
1539 long time_stamp;
1540 short major_ver;
1541 short minor_ver;
1542 bfd_vma name; /* RVA - relative to image base. */
1543 long base; /* Ordinal base. */
1544 unsigned long num_functions;/* Number in the export address table. */
1545 unsigned long num_names; /* Number in the name pointer table. */
1546 bfd_vma eat_addr; /* RVA to the export address table. */
1547 bfd_vma npt_addr; /* RVA to the Export Name Pointer Table. */
1548 bfd_vma ot_addr; /* RVA to the Ordinal Table. */
1549 } edt;
1551 pe_data_type *pe = pe_data (abfd);
1552 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
1554 bfd_vma addr;
1556 addr = extra->DataDirectory[PE_EXPORT_TABLE].VirtualAddress;
1558 if (addr == 0 && extra->DataDirectory[PE_EXPORT_TABLE].Size == 0)
1560 /* Maybe the extra header isn't there. Look for the section. */
1561 section = bfd_get_section_by_name (abfd, ".edata");
1562 if (section == NULL)
1563 return true;
1565 addr = section->vma;
1566 dataoff = 0;
1567 datasize = section->size;
1568 if (datasize == 0)
1569 return true;
1571 else
1573 addr += extra->ImageBase;
1575 for (section = abfd->sections; section != NULL; section = section->next)
1576 if (addr >= section->vma && addr < section->vma + section->size)
1577 break;
1579 if (section == NULL)
1581 fprintf (file,
1582 _("\nThere is an export table, but the section containing it could not be found\n"));
1583 return true;
1585 else if (!(section->flags & SEC_HAS_CONTENTS))
1587 fprintf (file,
1588 _("\nThere is an export table in %s, but that section has no contents\n"),
1589 section->name);
1590 return true;
1593 dataoff = addr - section->vma;
1594 datasize = extra->DataDirectory[PE_EXPORT_TABLE].Size;
1595 if (dataoff > section->size
1596 || datasize > section->size - dataoff)
1598 fprintf (file,
1599 _("\nThere is an export table in %s, but it does not fit into that section\n"),
1600 section->name);
1601 return true;
1605 /* PR 17512: Handle corrupt PE binaries. */
1606 if (datasize < 40)
1608 fprintf (file,
1609 /* xgettext:c-format */
1610 _("\nThere is an export table in %s, but it is too small (%d)\n"),
1611 section->name, (int) datasize);
1612 return true;
1615 /* xgettext:c-format */
1616 fprintf (file, _("\nThere is an export table in %s at 0x%lx\n"),
1617 section->name, (unsigned long) addr);
1619 data = (bfd_byte *) bfd_malloc (datasize);
1620 if (data == NULL)
1621 return false;
1623 if (! bfd_get_section_contents (abfd, section, data,
1624 (file_ptr) dataoff, datasize))
1625 return false;
1627 /* Go get Export Directory Table. */
1628 edt.export_flags = bfd_get_32 (abfd, data + 0);
1629 edt.time_stamp = bfd_get_32 (abfd, data + 4);
1630 edt.major_ver = bfd_get_16 (abfd, data + 8);
1631 edt.minor_ver = bfd_get_16 (abfd, data + 10);
1632 edt.name = bfd_get_32 (abfd, data + 12);
1633 edt.base = bfd_get_32 (abfd, data + 16);
1634 edt.num_functions = bfd_get_32 (abfd, data + 20);
1635 edt.num_names = bfd_get_32 (abfd, data + 24);
1636 edt.eat_addr = bfd_get_32 (abfd, data + 28);
1637 edt.npt_addr = bfd_get_32 (abfd, data + 32);
1638 edt.ot_addr = bfd_get_32 (abfd, data + 36);
1640 adj = section->vma - extra->ImageBase + dataoff;
1642 /* Dump the EDT first. */
1643 fprintf (file,
1644 _("\nThe Export Tables (interpreted %s section contents)\n\n"),
1645 section->name);
1647 fprintf (file,
1648 _("Export Flags \t\t\t%lx\n"), (unsigned long) edt.export_flags);
1650 fprintf (file,
1651 _("Time/Date stamp \t\t%lx\n"), (unsigned long) edt.time_stamp);
1653 fprintf (file,
1654 /* xgettext:c-format */
1655 _("Major/Minor \t\t\t%d/%d\n"), edt.major_ver, edt.minor_ver);
1657 fprintf (file,
1658 _("Name \t\t\t\t"));
1659 bfd_fprintf_vma (abfd, file, edt.name);
1661 if ((edt.name >= adj) && (edt.name < adj + datasize))
1662 fprintf (file, " %.*s\n",
1663 (int) (datasize - (edt.name - adj)),
1664 data + edt.name - adj);
1665 else
1666 fprintf (file, "(outside .edata section)\n");
1668 fprintf (file,
1669 _("Ordinal Base \t\t\t%ld\n"), edt.base);
1671 fprintf (file,
1672 _("Number in:\n"));
1674 fprintf (file,
1675 _("\tExport Address Table \t\t%08lx\n"),
1676 edt.num_functions);
1678 fprintf (file,
1679 _("\t[Name Pointer/Ordinal] Table\t%08lx\n"), edt.num_names);
1681 fprintf (file,
1682 _("Table Addresses\n"));
1684 fprintf (file,
1685 _("\tExport Address Table \t\t"));
1686 bfd_fprintf_vma (abfd, file, edt.eat_addr);
1687 fprintf (file, "\n");
1689 fprintf (file,
1690 _("\tName Pointer Table \t\t"));
1691 bfd_fprintf_vma (abfd, file, edt.npt_addr);
1692 fprintf (file, "\n");
1694 fprintf (file,
1695 _("\tOrdinal Table \t\t\t"));
1696 bfd_fprintf_vma (abfd, file, edt.ot_addr);
1697 fprintf (file, "\n");
1699 /* The next table to find is the Export Address Table. It's basically
1700 a list of pointers that either locate a function in this dll, or
1701 forward the call to another dll. Something like:
1702 typedef union
1704 long export_rva;
1705 long forwarder_rva;
1706 } export_address_table_entry; */
1708 fprintf (file,
1709 _("\nExport Address Table -- Ordinal Base %ld\n"),
1710 edt.base);
1712 /* PR 17512: Handle corrupt PE binaries. */
1713 /* PR 17512 file: 140-165018-0.004. */
1714 if (edt.eat_addr - adj >= datasize
1715 /* PR 17512: file: 092b1829 */
1716 || (edt.num_functions + 1) * 4 < edt.num_functions
1717 || edt.eat_addr - adj + (edt.num_functions + 1) * 4 > datasize)
1718 fprintf (file, _("\tInvalid Export Address Table rva (0x%lx) or entry count (0x%lx)\n"),
1719 (long) edt.eat_addr,
1720 (long) edt.num_functions);
1721 else for (i = 0; i < edt.num_functions; ++i)
1723 bfd_vma eat_member = bfd_get_32 (abfd,
1724 data + edt.eat_addr + (i * 4) - adj);
1725 if (eat_member == 0)
1726 continue;
1728 if (eat_member - adj <= datasize)
1730 /* This rva is to a name (forwarding function) in our section. */
1731 /* Should locate a function descriptor. */
1732 fprintf (file,
1733 "\t[%4ld] +base[%4ld] %04lx %s -- %.*s\n",
1734 (long) i,
1735 (long) (i + edt.base),
1736 (unsigned long) eat_member,
1737 _("Forwarder RVA"),
1738 (int)(datasize - (eat_member - adj)),
1739 data + eat_member - adj);
1741 else
1743 /* Should locate a function descriptor in the reldata section. */
1744 fprintf (file,
1745 "\t[%4ld] +base[%4ld] %04lx %s\n",
1746 (long) i,
1747 (long) (i + edt.base),
1748 (unsigned long) eat_member,
1749 _("Export RVA"));
1753 /* The Export Name Pointer Table is paired with the Export Ordinal Table. */
1754 /* Dump them in parallel for clarity. */
1755 fprintf (file,
1756 _("\n[Ordinal/Name Pointer] Table\n"));
1758 /* PR 17512: Handle corrupt PE binaries. */
1759 if (edt.npt_addr + (edt.num_names * 4) - adj >= datasize
1760 /* PR 17512: file: bb68816e. */
1761 || edt.num_names * 4 < edt.num_names
1762 || (data + edt.npt_addr - adj) < data)
1763 /* xgettext:c-format */
1764 fprintf (file, _("\tInvalid Name Pointer Table rva (0x%lx) or entry count (0x%lx)\n"),
1765 (long) edt.npt_addr,
1766 (long) edt.num_names);
1767 /* PR 17512: file: 140-147171-0.004. */
1768 else if (edt.ot_addr + (edt.num_names * 2) - adj >= datasize
1769 || data + edt.ot_addr - adj < data)
1770 /* xgettext:c-format */
1771 fprintf (file, _("\tInvalid Ordinal Table rva (0x%lx) or entry count (0x%lx)\n"),
1772 (long) edt.ot_addr,
1773 (long) edt.num_names);
1774 else for (i = 0; i < edt.num_names; ++i)
1776 bfd_vma name_ptr;
1777 bfd_vma ord;
1779 ord = bfd_get_16 (abfd, data + edt.ot_addr + (i * 2) - adj);
1780 name_ptr = bfd_get_32 (abfd, data + edt.npt_addr + (i * 4) - adj);
1782 if ((name_ptr - adj) >= datasize)
1784 /* xgettext:c-format */
1785 fprintf (file, _("\t[%4ld] <corrupt offset: %lx>\n"),
1786 (long) ord, (long) name_ptr);
1788 else
1790 char * name = (char *) data + name_ptr - adj;
1792 fprintf (file, "\t[%4ld] %.*s\n", (long) ord,
1793 (int)((char *)(data + datasize) - name), name);
1797 free (data);
1799 return true;
1802 /* This really is architecture dependent. On IA-64, a .pdata entry
1803 consists of three dwords containing relative virtual addresses that
1804 specify the start and end address of the code range the entry
1805 covers and the address of the corresponding unwind info data.
1807 On ARM and SH-4, a compressed PDATA structure is used :
1808 _IMAGE_CE_RUNTIME_FUNCTION_ENTRY, whereas MIPS is documented to use
1809 _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY.
1810 See http://msdn2.microsoft.com/en-us/library/ms253988(VS.80).aspx .
1812 This is the version for uncompressed data. */
1814 static bool
1815 pe_print_pdata (bfd * abfd, void * vfile)
1817 #if defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
1818 # define PDATA_ROW_SIZE (3 * 8)
1819 #else
1820 # define PDATA_ROW_SIZE (5 * 4)
1821 #endif
1822 FILE *file = (FILE *) vfile;
1823 bfd_byte *data = 0;
1824 asection *section = bfd_get_section_by_name (abfd, ".pdata");
1825 bfd_size_type datasize = 0;
1826 bfd_size_type i;
1827 bfd_size_type start, stop;
1828 int onaline = PDATA_ROW_SIZE;
1830 if (section == NULL
1831 || coff_section_data (abfd, section) == NULL
1832 || pei_section_data (abfd, section) == NULL)
1833 return true;
1835 stop = pei_section_data (abfd, section)->virt_size;
1836 if ((stop % onaline) != 0)
1837 fprintf (file,
1838 /* xgettext:c-format */
1839 _("warning, .pdata section size (%ld) is not a multiple of %d\n"),
1840 (long) stop, onaline);
1842 fprintf (file,
1843 _("\nThe Function Table (interpreted .pdata section contents)\n"));
1844 #if defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
1845 fprintf (file,
1846 _(" vma:\t\t\tBegin Address End Address Unwind Info\n"));
1847 #else
1848 fprintf (file, _("\
1849 vma:\t\tBegin End EH EH PrologEnd Exception\n\
1850 \t\tAddress Address Handler Data Address Mask\n"));
1851 #endif
1853 datasize = section->size;
1854 if (datasize == 0)
1855 return true;
1857 /* PR 17512: file: 002-193900-0.004. */
1858 if (datasize < stop)
1860 /* xgettext:c-format */
1861 fprintf (file, _("Virtual size of .pdata section (%ld) larger than real size (%ld)\n"),
1862 (long) stop, (long) datasize);
1863 return false;
1866 if (! bfd_malloc_and_get_section (abfd, section, &data))
1868 free (data);
1869 return false;
1872 start = 0;
1874 for (i = start; i < stop; i += onaline)
1876 bfd_vma begin_addr;
1877 bfd_vma end_addr;
1878 bfd_vma eh_handler;
1879 bfd_vma eh_data;
1880 bfd_vma prolog_end_addr;
1881 #if !defined(COFF_WITH_pep) || defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64) || defined(COFF_WITH_peLoongArch64)
1882 int em_data;
1883 #endif
1885 if (i + PDATA_ROW_SIZE > stop)
1886 break;
1888 begin_addr = GET_PDATA_ENTRY (abfd, data + i );
1889 end_addr = GET_PDATA_ENTRY (abfd, data + i + 4);
1890 eh_handler = GET_PDATA_ENTRY (abfd, data + i + 8);
1891 eh_data = GET_PDATA_ENTRY (abfd, data + i + 12);
1892 prolog_end_addr = GET_PDATA_ENTRY (abfd, data + i + 16);
1894 if (begin_addr == 0 && end_addr == 0 && eh_handler == 0
1895 && eh_data == 0 && prolog_end_addr == 0)
1896 /* We are probably into the padding of the section now. */
1897 break;
1899 #if !defined(COFF_WITH_pep) || defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64) || defined(COFF_WITH_peLoongArch64)
1900 em_data = ((eh_handler & 0x1) << 2) | (prolog_end_addr & 0x3);
1901 #endif
1902 eh_handler &= ~(bfd_vma) 0x3;
1903 prolog_end_addr &= ~(bfd_vma) 0x3;
1905 fputc (' ', file);
1906 bfd_fprintf_vma (abfd, file, i + section->vma); fputc ('\t', file);
1907 bfd_fprintf_vma (abfd, file, begin_addr); fputc (' ', file);
1908 bfd_fprintf_vma (abfd, file, end_addr); fputc (' ', file);
1909 bfd_fprintf_vma (abfd, file, eh_handler);
1910 #if !defined(COFF_WITH_pep) || defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64) || defined(COFF_WITH_peLoongArch64)
1911 fputc (' ', file);
1912 bfd_fprintf_vma (abfd, file, eh_data); fputc (' ', file);
1913 bfd_fprintf_vma (abfd, file, prolog_end_addr);
1914 fprintf (file, " %x", em_data);
1915 #endif
1916 fprintf (file, "\n");
1919 free (data);
1921 return true;
1922 #undef PDATA_ROW_SIZE
1925 typedef struct sym_cache
1927 int symcount;
1928 asymbol ** syms;
1929 } sym_cache;
1931 static asymbol **
1932 slurp_symtab (bfd *abfd, sym_cache *psc)
1934 asymbol ** sy = NULL;
1935 long storage;
1937 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
1939 psc->symcount = 0;
1940 return NULL;
1943 storage = bfd_get_symtab_upper_bound (abfd);
1944 if (storage < 0)
1945 return NULL;
1946 if (storage)
1948 sy = (asymbol **) bfd_malloc (storage);
1949 if (sy == NULL)
1950 return NULL;
1953 psc->symcount = bfd_canonicalize_symtab (abfd, sy);
1954 if (psc->symcount < 0)
1955 return NULL;
1956 return sy;
1959 static const char *
1960 my_symbol_for_address (bfd *abfd, bfd_vma func, sym_cache *psc)
1962 int i;
1964 if (psc->syms == 0)
1965 psc->syms = slurp_symtab (abfd, psc);
1967 for (i = 0; i < psc->symcount; i++)
1969 if (psc->syms[i]->section->vma + psc->syms[i]->value == func)
1970 return psc->syms[i]->name;
1973 return NULL;
1976 static void
1977 cleanup_syms (sym_cache *psc)
1979 psc->symcount = 0;
1980 free (psc->syms);
1981 psc->syms = NULL;
1984 /* This is the version for "compressed" pdata. */
1986 bool
1987 _bfd_XX_print_ce_compressed_pdata (bfd * abfd, void * vfile)
1989 # define PDATA_ROW_SIZE (2 * 4)
1990 FILE *file = (FILE *) vfile;
1991 bfd_byte *data = NULL;
1992 asection *section = bfd_get_section_by_name (abfd, ".pdata");
1993 bfd_size_type datasize = 0;
1994 bfd_size_type i;
1995 bfd_size_type start, stop;
1996 int onaline = PDATA_ROW_SIZE;
1997 struct sym_cache cache = {0, 0} ;
1999 if (section == NULL
2000 || coff_section_data (abfd, section) == NULL
2001 || pei_section_data (abfd, section) == NULL)
2002 return true;
2004 stop = pei_section_data (abfd, section)->virt_size;
2005 if ((stop % onaline) != 0)
2006 fprintf (file,
2007 /* xgettext:c-format */
2008 _("warning, .pdata section size (%ld) is not a multiple of %d\n"),
2009 (long) stop, onaline);
2011 fprintf (file,
2012 _("\nThe Function Table (interpreted .pdata section contents)\n"));
2014 fprintf (file, _("\
2015 vma:\t\tBegin Prolog Function Flags Exception EH\n\
2016 \t\tAddress Length Length 32b exc Handler Data\n"));
2018 datasize = section->size;
2019 if (datasize == 0)
2020 return true;
2022 if (! bfd_malloc_and_get_section (abfd, section, &data))
2024 free (data);
2025 return false;
2028 start = 0;
2030 for (i = start; i < stop; i += onaline)
2032 bfd_vma begin_addr;
2033 bfd_vma other_data;
2034 bfd_vma prolog_length, function_length;
2035 int flag32bit, exception_flag;
2036 asection *tsection;
2038 if (i + PDATA_ROW_SIZE > stop)
2039 break;
2041 begin_addr = GET_PDATA_ENTRY (abfd, data + i );
2042 other_data = GET_PDATA_ENTRY (abfd, data + i + 4);
2044 if (begin_addr == 0 && other_data == 0)
2045 /* We are probably into the padding of the section now. */
2046 break;
2048 prolog_length = (other_data & 0x000000FF);
2049 function_length = (other_data & 0x3FFFFF00) >> 8;
2050 flag32bit = (int)((other_data & 0x40000000) >> 30);
2051 exception_flag = (int)((other_data & 0x80000000) >> 31);
2053 fputc (' ', file);
2054 bfd_fprintf_vma (abfd, file, i + section->vma); fputc ('\t', file);
2055 bfd_fprintf_vma (abfd, file, begin_addr); fputc (' ', file);
2056 bfd_fprintf_vma (abfd, file, prolog_length); fputc (' ', file);
2057 bfd_fprintf_vma (abfd, file, function_length); fputc (' ', file);
2058 fprintf (file, "%2d %2d ", flag32bit, exception_flag);
2060 /* Get the exception handler's address and the data passed from the
2061 .text section. This is really the data that belongs with the .pdata
2062 but got "compressed" out for the ARM and SH4 architectures. */
2063 tsection = bfd_get_section_by_name (abfd, ".text");
2064 if (tsection && coff_section_data (abfd, tsection)
2065 && pei_section_data (abfd, tsection))
2067 bfd_vma eh_off = (begin_addr - 8) - tsection->vma;
2068 bfd_byte *tdata;
2070 tdata = (bfd_byte *) bfd_malloc (8);
2071 if (tdata)
2073 if (bfd_get_section_contents (abfd, tsection, tdata, eh_off, 8))
2075 bfd_vma eh, eh_data;
2077 eh = bfd_get_32 (abfd, tdata);
2078 eh_data = bfd_get_32 (abfd, tdata + 4);
2079 fprintf (file, "%08x ", (unsigned int) eh);
2080 fprintf (file, "%08x", (unsigned int) eh_data);
2081 if (eh != 0)
2083 const char *s = my_symbol_for_address (abfd, eh, &cache);
2085 if (s)
2086 fprintf (file, " (%s) ", s);
2089 free (tdata);
2093 fprintf (file, "\n");
2096 free (data);
2098 cleanup_syms (& cache);
2100 return true;
2101 #undef PDATA_ROW_SIZE
2105 #define IMAGE_REL_BASED_HIGHADJ 4
2106 static const char * const tbl[] =
2108 "ABSOLUTE",
2109 "HIGH",
2110 "LOW",
2111 "HIGHLOW",
2112 "HIGHADJ",
2113 "MIPS_JMPADDR",
2114 "SECTION",
2115 "REL32",
2116 "RESERVED1",
2117 "MIPS_JMPADDR16",
2118 "DIR64",
2119 "HIGH3ADJ",
2120 "UNKNOWN", /* MUST be last. */
2123 static bool
2124 pe_print_reloc (bfd * abfd, void * vfile)
2126 FILE *file = (FILE *) vfile;
2127 bfd_byte *data = 0;
2128 asection *section = bfd_get_section_by_name (abfd, ".reloc");
2129 bfd_byte *p, *end;
2131 if (section == NULL || section->size == 0 || !(section->flags & SEC_HAS_CONTENTS))
2132 return true;
2134 fprintf (file,
2135 _("\n\nPE File Base Relocations (interpreted .reloc section contents)\n"));
2137 if (! bfd_malloc_and_get_section (abfd, section, &data))
2139 free (data);
2140 return false;
2143 p = data;
2144 end = data + section->size;
2145 while (p + 8 <= end)
2147 int j;
2148 bfd_vma virtual_address;
2149 unsigned long number, size;
2150 bfd_byte *chunk_end;
2152 /* The .reloc section is a sequence of blocks, with a header consisting
2153 of two 32 bit quantities, followed by a number of 16 bit entries. */
2154 virtual_address = bfd_get_32 (abfd, p);
2155 size = bfd_get_32 (abfd, p + 4);
2156 p += 8;
2157 number = (size - 8) / 2;
2159 if (size == 0)
2160 break;
2162 fprintf (file,
2163 /* xgettext:c-format */
2164 _("\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n"),
2165 (unsigned long) virtual_address, size, size, number);
2167 chunk_end = p - 8 + size;
2168 if (chunk_end > end)
2169 chunk_end = end;
2170 j = 0;
2171 while (p + 2 <= chunk_end)
2173 unsigned short e = bfd_get_16 (abfd, p);
2174 unsigned int t = (e & 0xF000) >> 12;
2175 int off = e & 0x0FFF;
2177 if (t >= sizeof (tbl) / sizeof (tbl[0]))
2178 t = (sizeof (tbl) / sizeof (tbl[0])) - 1;
2180 fprintf (file,
2181 /* xgettext:c-format */
2182 _("\treloc %4d offset %4x [%4lx] %s"),
2183 j, off, (unsigned long) (off + virtual_address), tbl[t]);
2185 p += 2;
2186 j++;
2188 /* HIGHADJ takes an argument, - the next record *is* the
2189 low 16 bits of addend. */
2190 if (t == IMAGE_REL_BASED_HIGHADJ && p + 2 <= chunk_end)
2192 fprintf (file, " (%4x)", (unsigned int) bfd_get_16 (abfd, p));
2193 p += 2;
2194 j++;
2197 fprintf (file, "\n");
2201 free (data);
2203 return true;
2206 /* A data structure describing the regions of a .rsrc section.
2207 Some fields are filled in as the section is parsed. */
2209 typedef struct rsrc_regions
2211 bfd_byte * section_start;
2212 bfd_byte * section_end;
2213 bfd_byte * strings_start;
2214 bfd_byte * resource_start;
2215 } rsrc_regions;
2217 static bfd_byte *
2218 rsrc_print_resource_directory (FILE * , bfd *, unsigned int, bfd_byte *,
2219 rsrc_regions *, bfd_vma);
2221 /* Print the resource entry at DATA, with the text indented by INDENT.
2222 Recusively calls rsrc_print_resource_directory to print the contents
2223 of directory entries.
2224 Returns the address of the end of the data associated with the entry
2225 or section_end + 1 upon failure. */
2227 static bfd_byte *
2228 rsrc_print_resource_entries (FILE *file,
2229 bfd *abfd,
2230 unsigned int indent,
2231 bool is_name,
2232 bfd_byte *data,
2233 rsrc_regions *regions,
2234 bfd_vma rva_bias)
2236 unsigned long entry, addr, size;
2237 bfd_byte * leaf;
2239 if (data + 8 >= regions->section_end)
2240 return regions->section_end + 1;
2242 /* xgettext:c-format */
2243 fprintf (file, _("%03x %*.s Entry: "), (int)(data - regions->section_start), indent, " ");
2245 entry = (unsigned long) bfd_get_32 (abfd, data);
2246 if (is_name)
2248 bfd_byte * name;
2250 /* Note - the documentation says that this field is an RVA value
2251 but windres appears to produce a section relative offset with
2252 the top bit set. Support both styles for now. */
2253 if (HighBitSet (entry))
2254 name = regions->section_start + WithoutHighBit (entry);
2255 else
2256 name = regions->section_start + entry - rva_bias;
2258 if (name + 2 < regions->section_end && name > regions->section_start)
2260 unsigned int len;
2262 if (regions->strings_start == NULL)
2263 regions->strings_start = name;
2265 len = bfd_get_16 (abfd, name);
2267 fprintf (file, _("name: [val: %08lx len %d]: "), entry, len);
2269 if (name + 2 + len * 2 < regions->section_end)
2271 /* This strange loop is to cope with multibyte characters. */
2272 while (len --)
2274 char c;
2276 name += 2;
2277 c = * name;
2278 /* Avoid printing control characters. */
2279 if (c > 0 && c < 32)
2280 fprintf (file, "^%c", c + 64);
2281 else
2282 fprintf (file, "%.1s", name);
2285 else
2287 fprintf (file, _("<corrupt string length: %#x>\n"), len);
2288 /* PR binutils/17512: Do not try to continue decoding a
2289 corrupted resource section. It is likely to end up with
2290 reams of extraneous output. FIXME: We could probably
2291 continue if we disable the printing of strings... */
2292 return regions->section_end + 1;
2295 else
2297 fprintf (file, _("<corrupt string offset: %#lx>\n"), entry);
2298 return regions->section_end + 1;
2301 else
2302 fprintf (file, _("ID: %#08lx"), entry);
2304 entry = (long) bfd_get_32 (abfd, data + 4);
2305 fprintf (file, _(", Value: %#08lx\n"), entry);
2307 if (HighBitSet (entry))
2309 data = regions->section_start + WithoutHighBit (entry);
2310 if (data <= regions->section_start || data > regions->section_end)
2311 return regions->section_end + 1;
2313 /* FIXME: PR binutils/17512: A corrupt file could contain a loop
2314 in the resource table. We need some way to detect this. */
2315 return rsrc_print_resource_directory (file, abfd, indent + 1, data,
2316 regions, rva_bias);
2319 leaf = regions->section_start + entry;
2321 if (leaf + 16 >= regions->section_end
2322 /* PR 17512: file: 055dff7e. */
2323 || leaf < regions->section_start)
2324 return regions->section_end + 1;
2326 /* xgettext:c-format */
2327 fprintf (file, _("%03x %*.s Leaf: Addr: %#08lx, Size: %#08lx, Codepage: %d\n"),
2328 (int) (entry), indent, " ",
2329 addr = (long) bfd_get_32 (abfd, leaf),
2330 size = (long) bfd_get_32 (abfd, leaf + 4),
2331 (int) bfd_get_32 (abfd, leaf + 8));
2333 /* Check that the reserved entry is 0. */
2334 if (bfd_get_32 (abfd, leaf + 12) != 0
2335 /* And that the data address/size is valid too. */
2336 || (regions->section_start + (addr - rva_bias) + size > regions->section_end))
2337 return regions->section_end + 1;
2339 if (regions->resource_start == NULL)
2340 regions->resource_start = regions->section_start + (addr - rva_bias);
2342 return regions->section_start + (addr - rva_bias) + size;
2345 #define max(a,b) ((a) > (b) ? (a) : (b))
2346 #define min(a,b) ((a) < (b) ? (a) : (b))
2348 static bfd_byte *
2349 rsrc_print_resource_directory (FILE * file,
2350 bfd * abfd,
2351 unsigned int indent,
2352 bfd_byte * data,
2353 rsrc_regions * regions,
2354 bfd_vma rva_bias)
2356 unsigned int num_names, num_ids;
2357 bfd_byte * highest_data = data;
2359 if (data + 16 >= regions->section_end)
2360 return regions->section_end + 1;
2362 fprintf (file, "%03x %*.s ", (int)(data - regions->section_start), indent, " ");
2363 switch (indent)
2365 case 0: fprintf (file, "Type"); break;
2366 case 2: fprintf (file, "Name"); break;
2367 case 4: fprintf (file, "Language"); break;
2368 default:
2369 fprintf (file, _("<unknown directory type: %d>\n"), indent);
2370 /* FIXME: For now we end the printing here. If in the
2371 future more directory types are added to the RSRC spec
2372 then we will need to change this. */
2373 return regions->section_end + 1;
2376 /* xgettext:c-format */
2377 fprintf (file, _(" Table: Char: %d, Time: %08lx, Ver: %d/%d, Num Names: %d, IDs: %d\n"),
2378 (int) bfd_get_32 (abfd, data),
2379 (long) bfd_get_32 (abfd, data + 4),
2380 (int) bfd_get_16 (abfd, data + 8),
2381 (int) bfd_get_16 (abfd, data + 10),
2382 num_names = (int) bfd_get_16 (abfd, data + 12),
2383 num_ids = (int) bfd_get_16 (abfd, data + 14));
2384 data += 16;
2386 while (num_names --)
2388 bfd_byte * entry_end;
2390 entry_end = rsrc_print_resource_entries (file, abfd, indent + 1, true,
2391 data, regions, rva_bias);
2392 data += 8;
2393 highest_data = max (highest_data, entry_end);
2394 if (entry_end >= regions->section_end)
2395 return entry_end;
2398 while (num_ids --)
2400 bfd_byte * entry_end;
2402 entry_end = rsrc_print_resource_entries (file, abfd, indent + 1, false,
2403 data, regions, rva_bias);
2404 data += 8;
2405 highest_data = max (highest_data, entry_end);
2406 if (entry_end >= regions->section_end)
2407 return entry_end;
2410 return max (highest_data, data);
2413 /* Display the contents of a .rsrc section. We do not try to
2414 reproduce the resources, windres does that. Instead we dump
2415 the tables in a human readable format. */
2417 static bool
2418 rsrc_print_section (bfd * abfd, void * vfile)
2420 bfd_vma rva_bias;
2421 pe_data_type * pe;
2422 FILE * file = (FILE *) vfile;
2423 bfd_size_type datasize;
2424 asection * section;
2425 bfd_byte * data;
2426 rsrc_regions regions;
2428 pe = pe_data (abfd);
2429 if (pe == NULL)
2430 return true;
2432 section = bfd_get_section_by_name (abfd, ".rsrc");
2433 if (section == NULL)
2434 return true;
2435 if (!(section->flags & SEC_HAS_CONTENTS))
2436 return true;
2438 datasize = section->size;
2439 if (datasize == 0)
2440 return true;
2442 rva_bias = section->vma - pe->pe_opthdr.ImageBase;
2444 if (! bfd_malloc_and_get_section (abfd, section, & data))
2446 free (data);
2447 return false;
2450 regions.section_start = data;
2451 regions.section_end = data + datasize;
2452 regions.strings_start = NULL;
2453 regions.resource_start = NULL;
2455 fflush (file);
2456 fprintf (file, "\nThe .rsrc Resource Directory section:\n");
2458 while (data < regions.section_end)
2460 bfd_byte * p = data;
2462 data = rsrc_print_resource_directory (file, abfd, 0, data, & regions, rva_bias);
2464 if (data == regions.section_end + 1)
2465 fprintf (file, _("Corrupt .rsrc section detected!\n"));
2466 else
2468 /* Align data before continuing. */
2469 int align = (1 << section->alignment_power) - 1;
2471 data = (bfd_byte *) (((ptrdiff_t) (data + align)) & ~ align);
2472 rva_bias += data - p;
2474 /* For reasons that are unclear .rsrc sections are sometimes created
2475 aligned to a 1^3 boundary even when their alignment is set at
2476 1^2. Catch that case here before we issue a spurious warning
2477 message. */
2478 if (data == (regions.section_end - 4))
2479 data = regions.section_end;
2480 else if (data < regions.section_end)
2482 /* If the extra data is all zeros then do not complain.
2483 This is just padding so that the section meets the
2484 page size requirements. */
2485 while (++ data < regions.section_end)
2486 if (*data != 0)
2487 break;
2488 if (data < regions.section_end)
2489 fprintf (file, _("\nWARNING: Extra data in .rsrc section - it will be ignored by Windows:\n"));
2494 if (regions.strings_start != NULL)
2495 fprintf (file, _(" String table starts at offset: %#03x\n"),
2496 (int) (regions.strings_start - regions.section_start));
2497 if (regions.resource_start != NULL)
2498 fprintf (file, _(" Resources start at offset: %#03x\n"),
2499 (int) (regions.resource_start - regions.section_start));
2501 free (regions.section_start);
2502 return true;
2505 #define IMAGE_NUMBEROF_DEBUG_TYPES 17
2507 static char * debug_type_names[IMAGE_NUMBEROF_DEBUG_TYPES] =
2509 "Unknown",
2510 "COFF",
2511 "CodeView",
2512 "FPO",
2513 "Misc",
2514 "Exception",
2515 "Fixup",
2516 "OMAP-to-SRC",
2517 "OMAP-from-SRC",
2518 "Borland",
2519 "Reserved",
2520 "CLSID",
2521 "Feature",
2522 "CoffGrp",
2523 "ILTCG",
2524 "MPX",
2525 "Repro",
2528 static bool
2529 pe_print_debugdata (bfd * abfd, void * vfile)
2531 FILE *file = (FILE *) vfile;
2532 pe_data_type *pe = pe_data (abfd);
2533 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
2534 asection *section;
2535 bfd_byte *data = 0;
2536 bfd_size_type dataoff;
2537 unsigned int i, j;
2539 bfd_vma addr = extra->DataDirectory[PE_DEBUG_DATA].VirtualAddress;
2540 bfd_size_type size = extra->DataDirectory[PE_DEBUG_DATA].Size;
2542 if (size == 0)
2543 return true;
2545 addr += extra->ImageBase;
2546 for (section = abfd->sections; section != NULL; section = section->next)
2548 if ((addr >= section->vma) && (addr < (section->vma + section->size)))
2549 break;
2552 if (section == NULL)
2554 fprintf (file,
2555 _("\nThere is a debug directory, but the section containing it could not be found\n"));
2556 return true;
2558 else if (!(section->flags & SEC_HAS_CONTENTS))
2560 fprintf (file,
2561 _("\nThere is a debug directory in %s, but that section has no contents\n"),
2562 section->name);
2563 return true;
2565 else if (section->size < size)
2567 fprintf (file,
2568 _("\nError: section %s contains the debug data starting address but it is too small\n"),
2569 section->name);
2570 return false;
2573 fprintf (file, _("\nThere is a debug directory in %s at 0x%lx\n\n"),
2574 section->name, (unsigned long) addr);
2576 dataoff = addr - section->vma;
2578 if (size > (section->size - dataoff))
2580 fprintf (file, _("The debug data size field in the data directory is too big for the section"));
2581 return false;
2584 fprintf (file,
2585 _("Type Size Rva Offset\n"));
2587 /* Read the whole section. */
2588 if (!bfd_malloc_and_get_section (abfd, section, &data))
2590 free (data);
2591 return false;
2594 for (i = 0; i < size / sizeof (struct external_IMAGE_DEBUG_DIRECTORY); i++)
2596 const char *type_name;
2597 struct external_IMAGE_DEBUG_DIRECTORY *ext
2598 = &((struct external_IMAGE_DEBUG_DIRECTORY *)(data + dataoff))[i];
2599 struct internal_IMAGE_DEBUG_DIRECTORY idd;
2601 _bfd_XXi_swap_debugdir_in (abfd, ext, &idd);
2603 if ((idd.Type) >= IMAGE_NUMBEROF_DEBUG_TYPES)
2604 type_name = debug_type_names[0];
2605 else
2606 type_name = debug_type_names[idd.Type];
2608 fprintf (file, " %2ld %14s %08lx %08lx %08lx\n",
2609 idd.Type, type_name, idd.SizeOfData,
2610 idd.AddressOfRawData, idd.PointerToRawData);
2612 if (idd.Type == PE_IMAGE_DEBUG_TYPE_CODEVIEW)
2614 char signature[CV_INFO_SIGNATURE_LENGTH * 2 + 1];
2615 /* PR 17512: file: 065-29434-0.001:0.1
2616 We need to use a 32-bit aligned buffer
2617 to safely read in a codeview record. */
2618 char buffer[256 + 1] ATTRIBUTE_ALIGNED_ALIGNOF (CODEVIEW_INFO);
2619 char *pdb;
2621 CODEVIEW_INFO *cvinfo = (CODEVIEW_INFO *) buffer;
2623 /* The debug entry doesn't have to have to be in a section,
2624 in which case AddressOfRawData is 0, so always use PointerToRawData. */
2625 if (!_bfd_XXi_slurp_codeview_record (abfd, (file_ptr) idd.PointerToRawData,
2626 idd.SizeOfData, cvinfo, &pdb))
2627 continue;
2629 for (j = 0; j < cvinfo->SignatureLength; j++)
2630 sprintf (&signature[j*2], "%02x", cvinfo->Signature[j] & 0xff);
2632 /* xgettext:c-format */
2633 fprintf (file, _("(format %c%c%c%c signature %s age %ld pdb %s)\n"),
2634 buffer[0], buffer[1], buffer[2], buffer[3],
2635 signature, cvinfo->Age, pdb[0] ? pdb : "(none)");
2637 free (pdb);
2641 free(data);
2643 if (size % sizeof (struct external_IMAGE_DEBUG_DIRECTORY) != 0)
2644 fprintf (file,
2645 _("The debug directory size is not a multiple of the debug directory entry size\n"));
2647 return true;
2650 static bool
2651 pe_is_repro (bfd * abfd)
2653 pe_data_type *pe = pe_data (abfd);
2654 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
2655 asection *section;
2656 bfd_byte *data = 0;
2657 bfd_size_type dataoff;
2658 unsigned int i;
2659 bool res = false;
2661 bfd_vma addr = extra->DataDirectory[PE_DEBUG_DATA].VirtualAddress;
2662 bfd_size_type size = extra->DataDirectory[PE_DEBUG_DATA].Size;
2664 if (size == 0)
2665 return false;
2667 addr += extra->ImageBase;
2668 for (section = abfd->sections; section != NULL; section = section->next)
2670 if ((addr >= section->vma) && (addr < (section->vma + section->size)))
2671 break;
2674 if ((section == NULL)
2675 || (!(section->flags & SEC_HAS_CONTENTS))
2676 || (section->size < size))
2678 return false;
2681 dataoff = addr - section->vma;
2683 if (size > (section->size - dataoff))
2685 return false;
2688 if (!bfd_malloc_and_get_section (abfd, section, &data))
2690 free (data);
2691 return false;
2694 for (i = 0; i < size / sizeof (struct external_IMAGE_DEBUG_DIRECTORY); i++)
2696 struct external_IMAGE_DEBUG_DIRECTORY *ext
2697 = &((struct external_IMAGE_DEBUG_DIRECTORY *)(data + dataoff))[i];
2698 struct internal_IMAGE_DEBUG_DIRECTORY idd;
2700 _bfd_XXi_swap_debugdir_in (abfd, ext, &idd);
2702 if (idd.Type == PE_IMAGE_DEBUG_TYPE_REPRO)
2704 res = true;
2705 break;
2709 free(data);
2711 return res;
2714 /* Print out the program headers. */
2716 bool
2717 _bfd_XX_print_private_bfd_data_common (bfd * abfd, void * vfile)
2719 FILE *file = (FILE *) vfile;
2720 int j;
2721 pe_data_type *pe = pe_data (abfd);
2722 struct internal_extra_pe_aouthdr *i = &pe->pe_opthdr;
2723 const char *subsystem_name = NULL;
2724 const char *name;
2726 /* The MS dumpbin program reportedly ands with 0xff0f before
2727 printing the characteristics field. Not sure why. No reason to
2728 emulate it here. */
2729 fprintf (file, _("\nCharacteristics 0x%x\n"), pe->real_flags);
2730 #undef PF
2731 #define PF(x, y) if (pe->real_flags & x) { fprintf (file, "\t%s\n", y); }
2732 PF (IMAGE_FILE_RELOCS_STRIPPED, "relocations stripped");
2733 PF (IMAGE_FILE_EXECUTABLE_IMAGE, "executable");
2734 PF (IMAGE_FILE_LINE_NUMS_STRIPPED, "line numbers stripped");
2735 PF (IMAGE_FILE_LOCAL_SYMS_STRIPPED, "symbols stripped");
2736 PF (IMAGE_FILE_LARGE_ADDRESS_AWARE, "large address aware");
2737 PF (IMAGE_FILE_BYTES_REVERSED_LO, "little endian");
2738 PF (IMAGE_FILE_32BIT_MACHINE, "32 bit words");
2739 PF (IMAGE_FILE_DEBUG_STRIPPED, "debugging information removed");
2740 PF (IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP, "copy to swap file if on removable media");
2741 PF (IMAGE_FILE_NET_RUN_FROM_SWAP, "copy to swap file if on network media");
2742 PF (IMAGE_FILE_SYSTEM, "system file");
2743 PF (IMAGE_FILE_DLL, "DLL");
2744 PF (IMAGE_FILE_UP_SYSTEM_ONLY, "run only on uniprocessor machine");
2745 PF (IMAGE_FILE_BYTES_REVERSED_HI, "big endian");
2746 #undef PF
2749 If a PE_IMAGE_DEBUG_TYPE_REPRO entry is present in the debug directory, the
2750 timestamp is to be interpreted as the hash of a reproducible build.
2752 if (pe_is_repro (abfd))
2754 fprintf (file, "\nTime/Date\t\t%08lx", pe->coff.timestamp);
2755 fprintf (file, "\t(This is a reproducible build file hash, not a timestamp)\n");
2757 else
2759 /* ctime implies '\n'. */
2760 time_t t = pe->coff.timestamp;
2761 fprintf (file, "\nTime/Date\t\t%s", ctime (&t));
2764 #ifndef IMAGE_NT_OPTIONAL_HDR_MAGIC
2765 # define IMAGE_NT_OPTIONAL_HDR_MAGIC 0x10b
2766 #endif
2767 #ifndef IMAGE_NT_OPTIONAL_HDR64_MAGIC
2768 # define IMAGE_NT_OPTIONAL_HDR64_MAGIC 0x20b
2769 #endif
2770 #ifndef IMAGE_NT_OPTIONAL_HDRROM_MAGIC
2771 # define IMAGE_NT_OPTIONAL_HDRROM_MAGIC 0x107
2772 #endif
2774 switch (i->Magic)
2776 case IMAGE_NT_OPTIONAL_HDR_MAGIC:
2777 name = "PE32";
2778 break;
2779 case IMAGE_NT_OPTIONAL_HDR64_MAGIC:
2780 name = "PE32+";
2781 break;
2782 case IMAGE_NT_OPTIONAL_HDRROM_MAGIC:
2783 name = "ROM";
2784 break;
2785 default:
2786 name = NULL;
2787 break;
2789 fprintf (file, "Magic\t\t\t%04x", i->Magic);
2790 if (name)
2791 fprintf (file, "\t(%s)",name);
2792 fprintf (file, "\nMajorLinkerVersion\t%d\n", i->MajorLinkerVersion);
2793 fprintf (file, "MinorLinkerVersion\t%d\n", i->MinorLinkerVersion);
2794 fprintf (file, "SizeOfCode\t\t");
2795 bfd_fprintf_vma (abfd, file, i->SizeOfCode);
2796 fprintf (file, "\nSizeOfInitializedData\t");
2797 bfd_fprintf_vma (abfd, file, i->SizeOfInitializedData);
2798 fprintf (file, "\nSizeOfUninitializedData\t");
2799 bfd_fprintf_vma (abfd, file, i->SizeOfUninitializedData);
2800 fprintf (file, "\nAddressOfEntryPoint\t");
2801 bfd_fprintf_vma (abfd, file, i->AddressOfEntryPoint);
2802 fprintf (file, "\nBaseOfCode\t\t");
2803 bfd_fprintf_vma (abfd, file, i->BaseOfCode);
2804 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
2805 /* PE32+ does not have BaseOfData member! */
2806 fprintf (file, "\nBaseOfData\t\t");
2807 bfd_fprintf_vma (abfd, file, i->BaseOfData);
2808 #endif
2810 fprintf (file, "\nImageBase\t\t");
2811 bfd_fprintf_vma (abfd, file, i->ImageBase);
2812 fprintf (file, "\nSectionAlignment\t%08x\n", i->SectionAlignment);
2813 fprintf (file, "FileAlignment\t\t%08x\n", i->FileAlignment);
2814 fprintf (file, "MajorOSystemVersion\t%d\n", i->MajorOperatingSystemVersion);
2815 fprintf (file, "MinorOSystemVersion\t%d\n", i->MinorOperatingSystemVersion);
2816 fprintf (file, "MajorImageVersion\t%d\n", i->MajorImageVersion);
2817 fprintf (file, "MinorImageVersion\t%d\n", i->MinorImageVersion);
2818 fprintf (file, "MajorSubsystemVersion\t%d\n", i->MajorSubsystemVersion);
2819 fprintf (file, "MinorSubsystemVersion\t%d\n", i->MinorSubsystemVersion);
2820 fprintf (file, "Win32Version\t\t%08x\n", i->Reserved1);
2821 fprintf (file, "SizeOfImage\t\t%08x\n", i->SizeOfImage);
2822 fprintf (file, "SizeOfHeaders\t\t%08x\n", i->SizeOfHeaders);
2823 fprintf (file, "CheckSum\t\t%08x\n", i->CheckSum);
2825 switch (i->Subsystem)
2827 case IMAGE_SUBSYSTEM_UNKNOWN:
2828 subsystem_name = "unspecified";
2829 break;
2830 case IMAGE_SUBSYSTEM_NATIVE:
2831 subsystem_name = "NT native";
2832 break;
2833 case IMAGE_SUBSYSTEM_WINDOWS_GUI:
2834 subsystem_name = "Windows GUI";
2835 break;
2836 case IMAGE_SUBSYSTEM_WINDOWS_CUI:
2837 subsystem_name = "Windows CUI";
2838 break;
2839 case IMAGE_SUBSYSTEM_POSIX_CUI:
2840 subsystem_name = "POSIX CUI";
2841 break;
2842 case IMAGE_SUBSYSTEM_WINDOWS_CE_GUI:
2843 subsystem_name = "Wince CUI";
2844 break;
2845 /* These are from UEFI Platform Initialization Specification 1.1. */
2846 case IMAGE_SUBSYSTEM_EFI_APPLICATION:
2847 subsystem_name = "EFI application";
2848 break;
2849 case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
2850 subsystem_name = "EFI boot service driver";
2851 break;
2852 case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
2853 subsystem_name = "EFI runtime driver";
2854 break;
2855 case IMAGE_SUBSYSTEM_SAL_RUNTIME_DRIVER:
2856 subsystem_name = "SAL runtime driver";
2857 break;
2858 /* This is from revision 8.0 of the MS PE/COFF spec */
2859 case IMAGE_SUBSYSTEM_XBOX:
2860 subsystem_name = "XBOX";
2861 break;
2862 /* Added default case for clarity - subsystem_name is NULL anyway. */
2863 default:
2864 subsystem_name = NULL;
2867 fprintf (file, "Subsystem\t\t%08x", i->Subsystem);
2868 if (subsystem_name)
2869 fprintf (file, "\t(%s)", subsystem_name);
2870 fprintf (file, "\nDllCharacteristics\t%08x\n", i->DllCharacteristics);
2871 if (i->DllCharacteristics)
2873 unsigned short dllch = i->DllCharacteristics;
2874 const char *indent = "\t\t\t\t\t";
2876 if (dllch & IMAGE_DLL_CHARACTERISTICS_HIGH_ENTROPY_VA)
2877 fprintf (file, "%sHIGH_ENTROPY_VA\n", indent);
2878 if (dllch & IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE)
2879 fprintf (file, "%sDYNAMIC_BASE\n", indent);
2880 if (dllch & IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY)
2881 fprintf (file, "%sFORCE_INTEGRITY\n", indent);
2882 if (dllch & IMAGE_DLL_CHARACTERISTICS_NX_COMPAT)
2883 fprintf (file, "%sNX_COMPAT\n", indent);
2884 if (dllch & IMAGE_DLLCHARACTERISTICS_NO_ISOLATION)
2885 fprintf (file, "%sNO_ISOLATION\n", indent);
2886 if (dllch & IMAGE_DLLCHARACTERISTICS_NO_SEH)
2887 fprintf (file, "%sNO_SEH\n", indent);
2888 if (dllch & IMAGE_DLLCHARACTERISTICS_NO_BIND)
2889 fprintf (file, "%sNO_BIND\n", indent);
2890 if (dllch & IMAGE_DLLCHARACTERISTICS_APPCONTAINER)
2891 fprintf (file, "%sAPPCONTAINER\n", indent);
2892 if (dllch & IMAGE_DLLCHARACTERISTICS_WDM_DRIVER)
2893 fprintf (file, "%sWDM_DRIVER\n", indent);
2894 if (dllch & IMAGE_DLLCHARACTERISTICS_GUARD_CF)
2895 fprintf (file, "%sGUARD_CF\n", indent);
2896 if (dllch & IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE)
2897 fprintf (file, "%sTERMINAL_SERVICE_AWARE\n", indent);
2899 fprintf (file, "SizeOfStackReserve\t");
2900 bfd_fprintf_vma (abfd, file, i->SizeOfStackReserve);
2901 fprintf (file, "\nSizeOfStackCommit\t");
2902 bfd_fprintf_vma (abfd, file, i->SizeOfStackCommit);
2903 fprintf (file, "\nSizeOfHeapReserve\t");
2904 bfd_fprintf_vma (abfd, file, i->SizeOfHeapReserve);
2905 fprintf (file, "\nSizeOfHeapCommit\t");
2906 bfd_fprintf_vma (abfd, file, i->SizeOfHeapCommit);
2907 fprintf (file, "\nLoaderFlags\t\t%08lx\n", (unsigned long) i->LoaderFlags);
2908 fprintf (file, "NumberOfRvaAndSizes\t%08lx\n",
2909 (unsigned long) i->NumberOfRvaAndSizes);
2911 fprintf (file, "\nThe Data Directory\n");
2912 for (j = 0; j < IMAGE_NUMBEROF_DIRECTORY_ENTRIES; j++)
2914 fprintf (file, "Entry %1x ", j);
2915 bfd_fprintf_vma (abfd, file, i->DataDirectory[j].VirtualAddress);
2916 fprintf (file, " %08lx ", (unsigned long) i->DataDirectory[j].Size);
2917 fprintf (file, "%s\n", dir_names[j]);
2920 pe_print_idata (abfd, vfile);
2921 pe_print_edata (abfd, vfile);
2922 if (bfd_coff_have_print_pdata (abfd))
2923 bfd_coff_print_pdata (abfd, vfile);
2924 else
2925 pe_print_pdata (abfd, vfile);
2926 pe_print_reloc (abfd, vfile);
2927 pe_print_debugdata (abfd, file);
2929 rsrc_print_section (abfd, vfile);
2931 return true;
2934 static bool
2935 is_vma_in_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sect, void *obj)
2937 bfd_vma addr = * (bfd_vma *) obj;
2938 return (addr >= sect->vma) && (addr < (sect->vma + sect->size));
2941 static asection *
2942 find_section_by_vma (bfd *abfd, bfd_vma addr)
2944 return bfd_sections_find_if (abfd, is_vma_in_section, (void *) & addr);
2947 /* Copy any private info we understand from the input bfd
2948 to the output bfd. */
2950 bool
2951 _bfd_XX_bfd_copy_private_bfd_data_common (bfd * ibfd, bfd * obfd)
2953 pe_data_type *ipe, *ope;
2954 bfd_size_type size;
2956 /* One day we may try to grok other private data. */
2957 if (ibfd->xvec->flavour != bfd_target_coff_flavour
2958 || obfd->xvec->flavour != bfd_target_coff_flavour)
2959 return true;
2961 ipe = pe_data (ibfd);
2962 ope = pe_data (obfd);
2964 /* pe_opthdr is copied in copy_object. */
2965 ope->dll = ipe->dll;
2967 /* Don't copy input subsystem if output is different from input. */
2968 if (obfd->xvec != ibfd->xvec)
2969 ope->pe_opthdr.Subsystem = IMAGE_SUBSYSTEM_UNKNOWN;
2971 /* For strip: if we removed .reloc, we'll make a real mess of things
2972 if we don't remove this entry as well. */
2973 if (! pe_data (obfd)->has_reloc_section)
2975 pe_data (obfd)->pe_opthdr.DataDirectory[PE_BASE_RELOCATION_TABLE].VirtualAddress = 0;
2976 pe_data (obfd)->pe_opthdr.DataDirectory[PE_BASE_RELOCATION_TABLE].Size = 0;
2979 /* For PIE, if there is .reloc, we won't add IMAGE_FILE_RELOCS_STRIPPED.
2980 But there is no .reloc, we make sure that IMAGE_FILE_RELOCS_STRIPPED
2981 won't be added. */
2982 if (! pe_data (ibfd)->has_reloc_section
2983 && ! (pe_data (ibfd)->real_flags & IMAGE_FILE_RELOCS_STRIPPED))
2984 pe_data (obfd)->dont_strip_reloc = 1;
2986 memcpy (ope->dos_message, ipe->dos_message, sizeof (ope->dos_message));
2988 /* The file offsets contained in the debug directory need rewriting. */
2989 size = ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].Size;
2990 if (size != 0)
2992 bfd_vma addr = ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].VirtualAddress
2993 + ope->pe_opthdr.ImageBase;
2994 /* In particular a .buildid section may overlap (in VA space) with
2995 whatever section comes ahead of it (largely because of section->size
2996 representing s_size, not virt_size). Therefore don't look for the
2997 section containing the first byte, but for that covering the last
2998 one. */
2999 bfd_vma last = addr + size - 1;
3000 asection *section = find_section_by_vma (obfd, last);
3002 if (section != NULL)
3004 bfd_byte *data;
3005 bfd_vma dataoff = addr - section->vma;
3007 /* PR 17512: file: 0f15796a. */
3008 if (addr < section->vma
3009 || section->size < dataoff
3010 || section->size - dataoff < size)
3012 /* xgettext:c-format */
3013 _bfd_error_handler
3014 (_("%pB: Data Directory (%lx bytes at %" PRIx64 ") "
3015 "extends across section boundary at %" PRIx64),
3016 obfd, ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].Size,
3017 (uint64_t) addr, (uint64_t) section->vma);
3018 return false;
3021 if (bfd_malloc_and_get_section (obfd, section, &data))
3023 unsigned int i;
3024 struct external_IMAGE_DEBUG_DIRECTORY *dd =
3025 (struct external_IMAGE_DEBUG_DIRECTORY *)(data + dataoff);
3027 for (i = 0; i < ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].Size
3028 / sizeof (struct external_IMAGE_DEBUG_DIRECTORY); i++)
3030 asection *ddsection;
3031 struct external_IMAGE_DEBUG_DIRECTORY *edd = &(dd[i]);
3032 struct internal_IMAGE_DEBUG_DIRECTORY idd;
3033 bfd_vma idd_vma;
3035 _bfd_XXi_swap_debugdir_in (obfd, edd, &idd);
3037 /* RVA 0 means only offset is valid, not handled yet. */
3038 if (idd.AddressOfRawData == 0)
3039 continue;
3041 idd_vma = idd.AddressOfRawData + ope->pe_opthdr.ImageBase;
3042 ddsection = find_section_by_vma (obfd, idd_vma);
3043 if (!ddsection)
3044 continue; /* Not in a section! */
3046 idd.PointerToRawData
3047 = ddsection->filepos + idd_vma - ddsection->vma;
3048 _bfd_XXi_swap_debugdir_out (obfd, &idd, edd);
3051 if (!bfd_set_section_contents (obfd, section, data, 0,
3052 section->size))
3054 _bfd_error_handler (_("failed to update file offsets"
3055 " in debug directory"));
3056 free (data);
3057 return false;
3059 free (data);
3061 else
3063 _bfd_error_handler (_("%pB: failed to read "
3064 "debug data section"), obfd);
3065 return false;
3070 return true;
3073 /* Copy private section data. */
3075 bool
3076 _bfd_XX_bfd_copy_private_section_data (bfd *ibfd,
3077 asection *isec,
3078 bfd *obfd,
3079 asection *osec)
3081 if (bfd_get_flavour (ibfd) != bfd_target_coff_flavour
3082 || bfd_get_flavour (obfd) != bfd_target_coff_flavour)
3083 return true;
3085 if (coff_section_data (ibfd, isec) != NULL
3086 && pei_section_data (ibfd, isec) != NULL)
3088 if (coff_section_data (obfd, osec) == NULL)
3090 size_t amt = sizeof (struct coff_section_tdata);
3091 osec->used_by_bfd = bfd_zalloc (obfd, amt);
3092 if (osec->used_by_bfd == NULL)
3093 return false;
3096 if (pei_section_data (obfd, osec) == NULL)
3098 size_t amt = sizeof (struct pei_section_tdata);
3099 coff_section_data (obfd, osec)->tdata = bfd_zalloc (obfd, amt);
3100 if (coff_section_data (obfd, osec)->tdata == NULL)
3101 return false;
3104 pei_section_data (obfd, osec)->virt_size =
3105 pei_section_data (ibfd, isec)->virt_size;
3106 pei_section_data (obfd, osec)->pe_flags =
3107 pei_section_data (ibfd, isec)->pe_flags;
3110 return true;
3113 void
3114 _bfd_XX_get_symbol_info (bfd * abfd, asymbol *symbol, symbol_info *ret)
3116 coff_get_symbol_info (abfd, symbol, ret);
3119 #if !defined(COFF_WITH_pep) && (defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64) || defined(COFF_WITH_peLoongArch64))
3120 static int
3121 sort_x64_pdata (const void *l, const void *r)
3123 const char *lp = (const char *) l;
3124 const char *rp = (const char *) r;
3125 bfd_vma vl, vr;
3126 vl = bfd_getl32 (lp); vr = bfd_getl32 (rp);
3127 if (vl != vr)
3128 return (vl < vr ? -1 : 1);
3129 /* We compare just begin address. */
3130 return 0;
3132 #endif
3134 /* Functions to process a .rsrc section. */
3136 static unsigned int sizeof_leaves;
3137 static unsigned int sizeof_strings;
3138 static unsigned int sizeof_tables_and_entries;
3140 static bfd_byte *
3141 rsrc_count_directory (bfd *, bfd_byte *, bfd_byte *, bfd_byte *, bfd_vma);
3143 static bfd_byte *
3144 rsrc_count_entries (bfd *abfd,
3145 bool is_name,
3146 bfd_byte *datastart,
3147 bfd_byte *data,
3148 bfd_byte *dataend,
3149 bfd_vma rva_bias)
3151 unsigned long entry, addr, size;
3153 if (data + 8 >= dataend)
3154 return dataend + 1;
3156 if (is_name)
3158 bfd_byte * name;
3160 entry = (long) bfd_get_32 (abfd, data);
3162 if (HighBitSet (entry))
3163 name = datastart + WithoutHighBit (entry);
3164 else
3165 name = datastart + entry - rva_bias;
3167 if (name + 2 >= dataend || name < datastart)
3168 return dataend + 1;
3170 unsigned int len = bfd_get_16 (abfd, name);
3171 if (len == 0 || len > 256)
3172 return dataend + 1;
3175 entry = (long) bfd_get_32 (abfd, data + 4);
3177 if (HighBitSet (entry))
3179 data = datastart + WithoutHighBit (entry);
3181 if (data <= datastart || data >= dataend)
3182 return dataend + 1;
3184 return rsrc_count_directory (abfd, datastart, data, dataend, rva_bias);
3187 if (datastart + entry + 16 >= dataend)
3188 return dataend + 1;
3190 addr = (long) bfd_get_32 (abfd, datastart + entry);
3191 size = (long) bfd_get_32 (abfd, datastart + entry + 4);
3193 return datastart + addr - rva_bias + size;
3196 static bfd_byte *
3197 rsrc_count_directory (bfd * abfd,
3198 bfd_byte * datastart,
3199 bfd_byte * data,
3200 bfd_byte * dataend,
3201 bfd_vma rva_bias)
3203 unsigned int num_entries, num_ids;
3204 bfd_byte * highest_data = data;
3206 if (data + 16 >= dataend)
3207 return dataend + 1;
3209 num_entries = (int) bfd_get_16 (abfd, data + 12);
3210 num_ids = (int) bfd_get_16 (abfd, data + 14);
3212 num_entries += num_ids;
3214 data += 16;
3216 while (num_entries --)
3218 bfd_byte * entry_end;
3220 entry_end = rsrc_count_entries (abfd, num_entries >= num_ids,
3221 datastart, data, dataend, rva_bias);
3222 data += 8;
3223 highest_data = max (highest_data, entry_end);
3224 if (entry_end >= dataend)
3225 break;
3228 return max (highest_data, data);
3231 typedef struct rsrc_dir_chain
3233 unsigned int num_entries;
3234 struct rsrc_entry * first_entry;
3235 struct rsrc_entry * last_entry;
3236 } rsrc_dir_chain;
3238 typedef struct rsrc_directory
3240 unsigned int characteristics;
3241 unsigned int time;
3242 unsigned int major;
3243 unsigned int minor;
3245 rsrc_dir_chain names;
3246 rsrc_dir_chain ids;
3248 struct rsrc_entry * entry;
3249 } rsrc_directory;
3251 typedef struct rsrc_string
3253 unsigned int len;
3254 bfd_byte * string;
3255 } rsrc_string;
3257 typedef struct rsrc_leaf
3259 unsigned int size;
3260 unsigned int codepage;
3261 bfd_byte * data;
3262 } rsrc_leaf;
3264 typedef struct rsrc_entry
3266 bool is_name;
3267 union
3269 unsigned int id;
3270 struct rsrc_string name;
3271 } name_id;
3273 bool is_dir;
3274 union
3276 struct rsrc_directory * directory;
3277 struct rsrc_leaf * leaf;
3278 } value;
3280 struct rsrc_entry * next_entry;
3281 struct rsrc_directory * parent;
3282 } rsrc_entry;
3284 static bfd_byte *
3285 rsrc_parse_directory (bfd *, rsrc_directory *, bfd_byte *,
3286 bfd_byte *, bfd_byte *, bfd_vma, rsrc_entry *);
3288 static bfd_byte *
3289 rsrc_parse_entry (bfd *abfd,
3290 bool is_name,
3291 rsrc_entry *entry,
3292 bfd_byte *datastart,
3293 bfd_byte * data,
3294 bfd_byte *dataend,
3295 bfd_vma rva_bias,
3296 rsrc_directory *parent)
3298 unsigned long val, addr, size;
3300 val = bfd_get_32 (abfd, data);
3302 entry->parent = parent;
3303 entry->is_name = is_name;
3305 if (is_name)
3307 bfd_byte * address;
3309 if (HighBitSet (val))
3311 val = WithoutHighBit (val);
3313 address = datastart + val;
3315 else
3317 address = datastart + val - rva_bias;
3320 if (address + 3 > dataend)
3321 return dataend;
3323 entry->name_id.name.len = bfd_get_16 (abfd, address);
3324 entry->name_id.name.string = address + 2;
3326 else
3327 entry->name_id.id = val;
3329 val = bfd_get_32 (abfd, data + 4);
3331 if (HighBitSet (val))
3333 entry->is_dir = true;
3334 entry->value.directory = bfd_malloc (sizeof * entry->value.directory);
3335 if (entry->value.directory == NULL)
3336 return dataend;
3338 return rsrc_parse_directory (abfd, entry->value.directory,
3339 datastart,
3340 datastart + WithoutHighBit (val),
3341 dataend, rva_bias, entry);
3344 entry->is_dir = false;
3345 entry->value.leaf = bfd_malloc (sizeof * entry->value.leaf);
3346 if (entry->value.leaf == NULL)
3347 return dataend;
3349 data = datastart + val;
3350 if (data < datastart || data >= dataend)
3351 return dataend;
3353 addr = bfd_get_32 (abfd, data);
3354 size = entry->value.leaf->size = bfd_get_32 (abfd, data + 4);
3355 entry->value.leaf->codepage = bfd_get_32 (abfd, data + 8);
3356 /* FIXME: We assume that the reserved field (data + 12) is OK. */
3358 entry->value.leaf->data = bfd_malloc (size);
3359 if (entry->value.leaf->data == NULL)
3360 return dataend;
3362 memcpy (entry->value.leaf->data, datastart + addr - rva_bias, size);
3363 return datastart + (addr - rva_bias) + size;
3366 static bfd_byte *
3367 rsrc_parse_entries (bfd *abfd,
3368 rsrc_dir_chain *chain,
3369 bool is_name,
3370 bfd_byte *highest_data,
3371 bfd_byte *datastart,
3372 bfd_byte *data,
3373 bfd_byte *dataend,
3374 bfd_vma rva_bias,
3375 rsrc_directory *parent)
3377 unsigned int i;
3378 rsrc_entry * entry;
3380 if (chain->num_entries == 0)
3382 chain->first_entry = chain->last_entry = NULL;
3383 return highest_data;
3386 entry = bfd_malloc (sizeof * entry);
3387 if (entry == NULL)
3388 return dataend;
3390 chain->first_entry = entry;
3392 for (i = chain->num_entries; i--;)
3394 bfd_byte * entry_end;
3396 entry_end = rsrc_parse_entry (abfd, is_name, entry, datastart,
3397 data, dataend, rva_bias, parent);
3398 data += 8;
3399 highest_data = max (entry_end, highest_data);
3400 if (entry_end > dataend)
3401 return dataend;
3403 if (i)
3405 entry->next_entry = bfd_malloc (sizeof * entry);
3406 entry = entry->next_entry;
3407 if (entry == NULL)
3408 return dataend;
3410 else
3411 entry->next_entry = NULL;
3414 chain->last_entry = entry;
3416 return highest_data;
3419 static bfd_byte *
3420 rsrc_parse_directory (bfd * abfd,
3421 rsrc_directory * table,
3422 bfd_byte * datastart,
3423 bfd_byte * data,
3424 bfd_byte * dataend,
3425 bfd_vma rva_bias,
3426 rsrc_entry * entry)
3428 bfd_byte * highest_data = data;
3430 if (table == NULL)
3431 return dataend;
3433 table->characteristics = bfd_get_32 (abfd, data);
3434 table->time = bfd_get_32 (abfd, data + 4);
3435 table->major = bfd_get_16 (abfd, data + 8);
3436 table->minor = bfd_get_16 (abfd, data + 10);
3437 table->names.num_entries = bfd_get_16 (abfd, data + 12);
3438 table->ids.num_entries = bfd_get_16 (abfd, data + 14);
3439 table->entry = entry;
3441 data += 16;
3443 highest_data = rsrc_parse_entries (abfd, & table->names, true, data,
3444 datastart, data, dataend, rva_bias, table);
3445 data += table->names.num_entries * 8;
3447 highest_data = rsrc_parse_entries (abfd, & table->ids, false, highest_data,
3448 datastart, data, dataend, rva_bias, table);
3449 data += table->ids.num_entries * 8;
3451 return max (highest_data, data);
3454 typedef struct rsrc_write_data
3456 bfd * abfd;
3457 bfd_byte * datastart;
3458 bfd_byte * next_table;
3459 bfd_byte * next_leaf;
3460 bfd_byte * next_string;
3461 bfd_byte * next_data;
3462 bfd_vma rva_bias;
3463 } rsrc_write_data;
3465 static void
3466 rsrc_write_string (rsrc_write_data * data,
3467 rsrc_string * string)
3469 bfd_put_16 (data->abfd, string->len, data->next_string);
3470 memcpy (data->next_string + 2, string->string, string->len * 2);
3471 data->next_string += (string->len + 1) * 2;
3474 static inline unsigned int
3475 rsrc_compute_rva (rsrc_write_data * data,
3476 bfd_byte * addr)
3478 return (addr - data->datastart) + data->rva_bias;
3481 static void
3482 rsrc_write_leaf (rsrc_write_data * data,
3483 rsrc_leaf * leaf)
3485 bfd_put_32 (data->abfd, rsrc_compute_rva (data, data->next_data),
3486 data->next_leaf);
3487 bfd_put_32 (data->abfd, leaf->size, data->next_leaf + 4);
3488 bfd_put_32 (data->abfd, leaf->codepage, data->next_leaf + 8);
3489 bfd_put_32 (data->abfd, 0 /*reserved*/, data->next_leaf + 12);
3490 data->next_leaf += 16;
3492 memcpy (data->next_data, leaf->data, leaf->size);
3493 /* An undocumented feature of Windows resources is that each unit
3494 of raw data is 8-byte aligned... */
3495 data->next_data += ((leaf->size + 7) & ~7);
3498 static void rsrc_write_directory (rsrc_write_data *, rsrc_directory *);
3500 static void
3501 rsrc_write_entry (rsrc_write_data * data,
3502 bfd_byte * where,
3503 rsrc_entry * entry)
3505 if (entry->is_name)
3507 bfd_put_32 (data->abfd,
3508 SetHighBit (data->next_string - data->datastart),
3509 where);
3510 rsrc_write_string (data, & entry->name_id.name);
3512 else
3513 bfd_put_32 (data->abfd, entry->name_id.id, where);
3515 if (entry->is_dir)
3517 bfd_put_32 (data->abfd,
3518 SetHighBit (data->next_table - data->datastart),
3519 where + 4);
3520 rsrc_write_directory (data, entry->value.directory);
3522 else
3524 bfd_put_32 (data->abfd, data->next_leaf - data->datastart, where + 4);
3525 rsrc_write_leaf (data, entry->value.leaf);
3529 static void
3530 rsrc_compute_region_sizes (rsrc_directory * dir)
3532 struct rsrc_entry * entry;
3534 if (dir == NULL)
3535 return;
3537 sizeof_tables_and_entries += 16;
3539 for (entry = dir->names.first_entry; entry != NULL; entry = entry->next_entry)
3541 sizeof_tables_and_entries += 8;
3543 sizeof_strings += (entry->name_id.name.len + 1) * 2;
3545 if (entry->is_dir)
3546 rsrc_compute_region_sizes (entry->value.directory);
3547 else
3548 sizeof_leaves += 16;
3551 for (entry = dir->ids.first_entry; entry != NULL; entry = entry->next_entry)
3553 sizeof_tables_and_entries += 8;
3555 if (entry->is_dir)
3556 rsrc_compute_region_sizes (entry->value.directory);
3557 else
3558 sizeof_leaves += 16;
3562 static void
3563 rsrc_write_directory (rsrc_write_data * data,
3564 rsrc_directory * dir)
3566 rsrc_entry * entry;
3567 unsigned int i;
3568 bfd_byte * next_entry;
3569 bfd_byte * nt;
3571 bfd_put_32 (data->abfd, dir->characteristics, data->next_table);
3572 bfd_put_32 (data->abfd, 0 /*dir->time*/, data->next_table + 4);
3573 bfd_put_16 (data->abfd, dir->major, data->next_table + 8);
3574 bfd_put_16 (data->abfd, dir->minor, data->next_table + 10);
3575 bfd_put_16 (data->abfd, dir->names.num_entries, data->next_table + 12);
3576 bfd_put_16 (data->abfd, dir->ids.num_entries, data->next_table + 14);
3578 /* Compute where the entries and the next table will be placed. */
3579 next_entry = data->next_table + 16;
3580 data->next_table = next_entry + (dir->names.num_entries * 8)
3581 + (dir->ids.num_entries * 8);
3582 nt = data->next_table;
3584 /* Write the entries. */
3585 for (i = dir->names.num_entries, entry = dir->names.first_entry;
3586 i > 0 && entry != NULL;
3587 i--, entry = entry->next_entry)
3589 BFD_ASSERT (entry->is_name);
3590 rsrc_write_entry (data, next_entry, entry);
3591 next_entry += 8;
3593 BFD_ASSERT (i == 0);
3594 BFD_ASSERT (entry == NULL);
3596 for (i = dir->ids.num_entries, entry = dir->ids.first_entry;
3597 i > 0 && entry != NULL;
3598 i--, entry = entry->next_entry)
3600 BFD_ASSERT (! entry->is_name);
3601 rsrc_write_entry (data, next_entry, entry);
3602 next_entry += 8;
3604 BFD_ASSERT (i == 0);
3605 BFD_ASSERT (entry == NULL);
3606 BFD_ASSERT (nt == next_entry);
3609 #if ! defined __CYGWIN__ && ! defined __MINGW32__
3610 /* Return the length (number of units) of the first character in S,
3611 putting its 'ucs4_t' representation in *PUC. */
3613 static unsigned int
3614 u16_mbtouc (wint_t * puc, const unsigned short * s, unsigned int n)
3616 unsigned short c = * s;
3618 if (c < 0xd800 || c >= 0xe000)
3620 *puc = c;
3621 return 1;
3624 if (c < 0xdc00)
3626 if (n >= 2)
3628 if (s[1] >= 0xdc00 && s[1] < 0xe000)
3630 *puc = 0x10000 + ((c - 0xd800) << 10) + (s[1] - 0xdc00);
3631 return 2;
3634 else
3636 /* Incomplete multibyte character. */
3637 *puc = 0xfffd;
3638 return n;
3642 /* Invalid multibyte character. */
3643 *puc = 0xfffd;
3644 return 1;
3646 #endif /* not Cygwin/Mingw */
3648 /* Perform a comparison of two entries. */
3649 static signed int
3650 rsrc_cmp (bool is_name, rsrc_entry * a, rsrc_entry * b)
3652 signed int res;
3653 bfd_byte * astring;
3654 unsigned int alen;
3655 bfd_byte * bstring;
3656 unsigned int blen;
3658 if (! is_name)
3659 return a->name_id.id - b->name_id.id;
3661 /* We have to perform a case insenstive, unicode string comparison... */
3662 astring = a->name_id.name.string;
3663 alen = a->name_id.name.len;
3664 bstring = b->name_id.name.string;
3665 blen = b->name_id.name.len;
3667 #if defined __CYGWIN__ || defined __MINGW32__
3668 /* Under Windows hosts (both Cygwin and Mingw types),
3669 unicode == UTF-16 == wchar_t. The case insensitive string comparison
3670 function however goes by different names in the two environments... */
3672 #undef rscpcmp
3673 #ifdef __CYGWIN__
3674 #define rscpcmp wcsncasecmp
3675 #endif
3676 #ifdef __MINGW32__
3677 #define rscpcmp wcsnicmp
3678 #endif
3680 res = rscpcmp ((const wchar_t *) astring, (const wchar_t *) bstring,
3681 min (alen, blen));
3683 #else
3685 unsigned int i;
3687 res = 0;
3688 for (i = min (alen, blen); i--; astring += 2, bstring += 2)
3690 wint_t awc;
3691 wint_t bwc;
3693 /* Convert UTF-16 unicode characters into wchar_t characters
3694 so that we can then perform a case insensitive comparison. */
3695 unsigned int Alen = u16_mbtouc (& awc, (const unsigned short *) astring, 2);
3696 unsigned int Blen = u16_mbtouc (& bwc, (const unsigned short *) bstring, 2);
3698 if (Alen != Blen)
3699 return Alen - Blen;
3701 awc = towlower (awc);
3702 bwc = towlower (bwc);
3704 res = awc - bwc;
3705 if (res)
3706 break;
3709 #endif
3711 if (res == 0)
3712 res = alen - blen;
3714 return res;
3717 static void
3718 rsrc_print_name (char * buffer, rsrc_string string)
3720 unsigned int i;
3721 bfd_byte * name = string.string;
3723 for (i = string.len; i--; name += 2)
3724 sprintf (buffer + strlen (buffer), "%.1s", name);
3727 static const char *
3728 rsrc_resource_name (rsrc_entry *entry, rsrc_directory *dir, char *buffer)
3730 bool is_string = false;
3732 buffer[0] = 0;
3734 if (dir != NULL && dir->entry != NULL && dir->entry->parent != NULL
3735 && dir->entry->parent->entry != NULL)
3737 strcpy (buffer, "type: ");
3738 if (dir->entry->parent->entry->is_name)
3739 rsrc_print_name (buffer + strlen (buffer),
3740 dir->entry->parent->entry->name_id.name);
3741 else
3743 unsigned int id = dir->entry->parent->entry->name_id.id;
3745 sprintf (buffer + strlen (buffer), "%x", id);
3746 switch (id)
3748 case 1: strcat (buffer, " (CURSOR)"); break;
3749 case 2: strcat (buffer, " (BITMAP)"); break;
3750 case 3: strcat (buffer, " (ICON)"); break;
3751 case 4: strcat (buffer, " (MENU)"); break;
3752 case 5: strcat (buffer, " (DIALOG)"); break;
3753 case 6: strcat (buffer, " (STRING)"); is_string = true; break;
3754 case 7: strcat (buffer, " (FONTDIR)"); break;
3755 case 8: strcat (buffer, " (FONT)"); break;
3756 case 9: strcat (buffer, " (ACCELERATOR)"); break;
3757 case 10: strcat (buffer, " (RCDATA)"); break;
3758 case 11: strcat (buffer, " (MESSAGETABLE)"); break;
3759 case 12: strcat (buffer, " (GROUP_CURSOR)"); break;
3760 case 14: strcat (buffer, " (GROUP_ICON)"); break;
3761 case 16: strcat (buffer, " (VERSION)"); break;
3762 case 17: strcat (buffer, " (DLGINCLUDE)"); break;
3763 case 19: strcat (buffer, " (PLUGPLAY)"); break;
3764 case 20: strcat (buffer, " (VXD)"); break;
3765 case 21: strcat (buffer, " (ANICURSOR)"); break;
3766 case 22: strcat (buffer, " (ANIICON)"); break;
3767 case 23: strcat (buffer, " (HTML)"); break;
3768 case 24: strcat (buffer, " (MANIFEST)"); break;
3769 case 240: strcat (buffer, " (DLGINIT)"); break;
3770 case 241: strcat (buffer, " (TOOLBAR)"); break;
3775 if (dir != NULL && dir->entry != NULL)
3777 strcat (buffer, " name: ");
3778 if (dir->entry->is_name)
3779 rsrc_print_name (buffer + strlen (buffer), dir->entry->name_id.name);
3780 else
3782 unsigned int id = dir->entry->name_id.id;
3784 sprintf (buffer + strlen (buffer), "%x", id);
3786 if (is_string)
3787 sprintf (buffer + strlen (buffer), " (resource id range: %d - %d)",
3788 (id - 1) << 4, (id << 4) - 1);
3792 if (entry != NULL)
3794 strcat (buffer, " lang: ");
3796 if (entry->is_name)
3797 rsrc_print_name (buffer + strlen (buffer), entry->name_id.name);
3798 else
3799 sprintf (buffer + strlen (buffer), "%x", entry->name_id.id);
3802 return buffer;
3805 /* *sigh* Windows resource strings are special. Only the top 28-bits of
3806 their ID is stored in the NAME entry. The bottom four bits are used as
3807 an index into unicode string table that makes up the data of the leaf.
3808 So identical type-name-lang string resources may not actually be
3809 identical at all.
3811 This function is called when we have detected two string resources with
3812 match top-28-bit IDs. We have to scan the string tables inside the leaves
3813 and discover if there are any real collisions. If there are then we report
3814 them and return FALSE. Otherwise we copy any strings from B into A and
3815 then return TRUE. */
3817 static bool
3818 rsrc_merge_string_entries (rsrc_entry * a ATTRIBUTE_UNUSED,
3819 rsrc_entry * b ATTRIBUTE_UNUSED)
3821 unsigned int copy_needed = 0;
3822 unsigned int i;
3823 bfd_byte * astring;
3824 bfd_byte * bstring;
3825 bfd_byte * new_data;
3826 bfd_byte * nstring;
3828 /* Step one: Find out what we have to do. */
3829 BFD_ASSERT (! a->is_dir);
3830 astring = a->value.leaf->data;
3832 BFD_ASSERT (! b->is_dir);
3833 bstring = b->value.leaf->data;
3835 for (i = 0; i < 16; i++)
3837 unsigned int alen = astring[0] + (astring[1] << 8);
3838 unsigned int blen = bstring[0] + (bstring[1] << 8);
3840 if (alen == 0)
3842 copy_needed += blen * 2;
3844 else if (blen == 0)
3846 else if (alen != blen)
3847 /* FIXME: Should we continue the loop in order to report other duplicates ? */
3848 break;
3849 /* alen == blen != 0. We might have two identical strings. If so we
3850 can ignore the second one. There is no need for wchar_t vs UTF-16
3851 theatrics here - we are only interested in (case sensitive) equality. */
3852 else if (memcmp (astring + 2, bstring + 2, alen * 2) != 0)
3853 break;
3855 astring += (alen + 1) * 2;
3856 bstring += (blen + 1) * 2;
3859 if (i != 16)
3861 if (a->parent != NULL
3862 && a->parent->entry != NULL
3863 && !a->parent->entry->is_name)
3864 _bfd_error_handler (_(".rsrc merge failure: duplicate string resource: %d"),
3865 ((a->parent->entry->name_id.id - 1) << 4) + i);
3866 return false;
3869 if (copy_needed == 0)
3870 return true;
3872 /* If we reach here then A and B must both have non-colliding strings.
3873 (We never get string resources with fully empty string tables).
3874 We need to allocate an extra COPY_NEEDED bytes in A and then bring
3875 in B's strings. */
3876 new_data = bfd_malloc (a->value.leaf->size + copy_needed);
3877 if (new_data == NULL)
3878 return false;
3880 nstring = new_data;
3881 astring = a->value.leaf->data;
3882 bstring = b->value.leaf->data;
3884 for (i = 0; i < 16; i++)
3886 unsigned int alen = astring[0] + (astring[1] << 8);
3887 unsigned int blen = bstring[0] + (bstring[1] << 8);
3889 if (alen != 0)
3891 memcpy (nstring, astring, (alen + 1) * 2);
3892 nstring += (alen + 1) * 2;
3894 else if (blen != 0)
3896 memcpy (nstring, bstring, (blen + 1) * 2);
3897 nstring += (blen + 1) * 2;
3899 else
3901 * nstring++ = 0;
3902 * nstring++ = 0;
3905 astring += (alen + 1) * 2;
3906 bstring += (blen + 1) * 2;
3909 BFD_ASSERT (nstring - new_data == (signed) (a->value.leaf->size + copy_needed));
3911 free (a->value.leaf->data);
3912 a->value.leaf->data = new_data;
3913 a->value.leaf->size += copy_needed;
3915 return true;
3918 static void rsrc_merge (rsrc_entry *, rsrc_entry *);
3920 /* Sort the entries in given part of the directory.
3921 We use an old fashioned bubble sort because we are dealing
3922 with lists and we want to handle matches specially. */
3924 static void
3925 rsrc_sort_entries (rsrc_dir_chain *chain,
3926 bool is_name,
3927 rsrc_directory *dir)
3929 rsrc_entry * entry;
3930 rsrc_entry * next;
3931 rsrc_entry ** points_to_entry;
3932 bool swapped;
3934 if (chain->num_entries < 2)
3935 return;
3939 swapped = false;
3940 points_to_entry = & chain->first_entry;
3941 entry = * points_to_entry;
3942 next = entry->next_entry;
3946 signed int cmp = rsrc_cmp (is_name, entry, next);
3948 if (cmp > 0)
3950 entry->next_entry = next->next_entry;
3951 next->next_entry = entry;
3952 * points_to_entry = next;
3953 points_to_entry = & next->next_entry;
3954 next = entry->next_entry;
3955 swapped = true;
3957 else if (cmp == 0)
3959 if (entry->is_dir && next->is_dir)
3961 /* When we encounter identical directory entries we have to
3962 merge them together. The exception to this rule is for
3963 resource manifests - there can only be one of these,
3964 even if they differ in language. Zero-language manifests
3965 are assumed to be default manifests (provided by the
3966 Cygwin/MinGW build system) and these can be silently dropped,
3967 unless that would reduce the number of manifests to zero.
3968 There should only ever be one non-zero lang manifest -
3969 if there are more it is an error. A non-zero lang
3970 manifest takes precedence over a default manifest. */
3971 if (!entry->is_name
3972 && entry->name_id.id == 1
3973 && dir != NULL
3974 && dir->entry != NULL
3975 && !dir->entry->is_name
3976 && dir->entry->name_id.id == 0x18)
3978 if (next->value.directory->names.num_entries == 0
3979 && next->value.directory->ids.num_entries == 1
3980 && !next->value.directory->ids.first_entry->is_name
3981 && next->value.directory->ids.first_entry->name_id.id == 0)
3982 /* Fall through so that NEXT is dropped. */
3984 else if (entry->value.directory->names.num_entries == 0
3985 && entry->value.directory->ids.num_entries == 1
3986 && !entry->value.directory->ids.first_entry->is_name
3987 && entry->value.directory->ids.first_entry->name_id.id == 0)
3989 /* Swap ENTRY and NEXT. Then fall through so that the old ENTRY is dropped. */
3990 entry->next_entry = next->next_entry;
3991 next->next_entry = entry;
3992 * points_to_entry = next;
3993 points_to_entry = & next->next_entry;
3994 next = entry->next_entry;
3995 swapped = true;
3997 else
3999 _bfd_error_handler (_(".rsrc merge failure: multiple non-default manifests"));
4000 bfd_set_error (bfd_error_file_truncated);
4001 return;
4004 /* Unhook NEXT from the chain. */
4005 /* FIXME: memory loss here. */
4006 entry->next_entry = next->next_entry;
4007 chain->num_entries --;
4008 if (chain->num_entries < 2)
4009 return;
4010 next = next->next_entry;
4012 else
4013 rsrc_merge (entry, next);
4015 else if (entry->is_dir != next->is_dir)
4017 _bfd_error_handler (_(".rsrc merge failure: a directory matches a leaf"));
4018 bfd_set_error (bfd_error_file_truncated);
4019 return;
4021 else
4023 /* Otherwise with identical leaves we issue an error
4024 message - because there should never be duplicates.
4025 The exception is Type 18/Name 1/Lang 0 which is the
4026 defaul manifest - this can just be dropped. */
4027 if (!entry->is_name
4028 && entry->name_id.id == 0
4029 && dir != NULL
4030 && dir->entry != NULL
4031 && !dir->entry->is_name
4032 && dir->entry->name_id.id == 1
4033 && dir->entry->parent != NULL
4034 && dir->entry->parent->entry != NULL
4035 && !dir->entry->parent->entry->is_name
4036 && dir->entry->parent->entry->name_id.id == 0x18 /* RT_MANIFEST */)
4038 else if (dir != NULL
4039 && dir->entry != NULL
4040 && dir->entry->parent != NULL
4041 && dir->entry->parent->entry != NULL
4042 && !dir->entry->parent->entry->is_name
4043 && dir->entry->parent->entry->name_id.id == 0x6 /* RT_STRING */)
4045 /* Strings need special handling. */
4046 if (! rsrc_merge_string_entries (entry, next))
4048 /* _bfd_error_handler should have been called inside merge_strings. */
4049 bfd_set_error (bfd_error_file_truncated);
4050 return;
4053 else
4055 if (dir == NULL
4056 || dir->entry == NULL
4057 || dir->entry->parent == NULL
4058 || dir->entry->parent->entry == NULL)
4059 _bfd_error_handler (_(".rsrc merge failure: duplicate leaf"));
4060 else
4062 char buff[256];
4064 _bfd_error_handler (_(".rsrc merge failure: duplicate leaf: %s"),
4065 rsrc_resource_name (entry, dir, buff));
4067 bfd_set_error (bfd_error_file_truncated);
4068 return;
4072 /* Unhook NEXT from the chain. */
4073 entry->next_entry = next->next_entry;
4074 chain->num_entries --;
4075 if (chain->num_entries < 2)
4076 return;
4077 next = next->next_entry;
4079 else
4081 points_to_entry = & entry->next_entry;
4082 entry = next;
4083 next = next->next_entry;
4086 while (next);
4088 chain->last_entry = entry;
4090 while (swapped);
4093 /* Attach B's chain onto A. */
4094 static void
4095 rsrc_attach_chain (rsrc_dir_chain * achain, rsrc_dir_chain * bchain)
4097 if (bchain->num_entries == 0)
4098 return;
4100 achain->num_entries += bchain->num_entries;
4102 if (achain->first_entry == NULL)
4104 achain->first_entry = bchain->first_entry;
4105 achain->last_entry = bchain->last_entry;
4107 else
4109 achain->last_entry->next_entry = bchain->first_entry;
4110 achain->last_entry = bchain->last_entry;
4113 bchain->num_entries = 0;
4114 bchain->first_entry = bchain->last_entry = NULL;
4117 static void
4118 rsrc_merge (struct rsrc_entry * a, struct rsrc_entry * b)
4120 rsrc_directory * adir;
4121 rsrc_directory * bdir;
4123 BFD_ASSERT (a->is_dir);
4124 BFD_ASSERT (b->is_dir);
4126 adir = a->value.directory;
4127 bdir = b->value.directory;
4129 if (adir->characteristics != bdir->characteristics)
4131 _bfd_error_handler (_(".rsrc merge failure: dirs with differing characteristics"));
4132 bfd_set_error (bfd_error_file_truncated);
4133 return;
4136 if (adir->major != bdir->major || adir->minor != bdir->minor)
4138 _bfd_error_handler (_(".rsrc merge failure: differing directory versions"));
4139 bfd_set_error (bfd_error_file_truncated);
4140 return;
4143 /* Attach B's name chain to A. */
4144 rsrc_attach_chain (& adir->names, & bdir->names);
4146 /* Attach B's ID chain to A. */
4147 rsrc_attach_chain (& adir->ids, & bdir->ids);
4149 /* Now sort A's entries. */
4150 rsrc_sort_entries (& adir->names, true, adir);
4151 rsrc_sort_entries (& adir->ids, false, adir);
4154 /* Check the .rsrc section. If it contains multiple concatenated
4155 resources then we must merge them properly. Otherwise Windows
4156 will ignore all but the first set. */
4158 static void
4159 rsrc_process_section (bfd * abfd,
4160 struct coff_final_link_info * pfinfo)
4162 rsrc_directory new_table;
4163 bfd_size_type size;
4164 asection * sec;
4165 pe_data_type * pe;
4166 bfd_vma rva_bias;
4167 bfd_byte * data;
4168 bfd_byte * datastart;
4169 bfd_byte * dataend;
4170 bfd_byte * new_data;
4171 unsigned int num_resource_sets;
4172 rsrc_directory * type_tables;
4173 rsrc_write_data write_data;
4174 unsigned int indx;
4175 bfd * input;
4176 unsigned int num_input_rsrc = 0;
4177 unsigned int max_num_input_rsrc = 4;
4178 ptrdiff_t * rsrc_sizes = NULL;
4180 new_table.names.num_entries = 0;
4181 new_table.ids.num_entries = 0;
4183 sec = bfd_get_section_by_name (abfd, ".rsrc");
4184 if (sec == NULL || (size = sec->rawsize) == 0)
4185 return;
4187 pe = pe_data (abfd);
4188 if (pe == NULL)
4189 return;
4191 rva_bias = sec->vma - pe->pe_opthdr.ImageBase;
4193 data = bfd_malloc (size);
4194 if (data == NULL)
4195 return;
4197 datastart = data;
4199 if (! bfd_get_section_contents (abfd, sec, data, 0, size))
4200 goto end;
4202 /* Step zero: Scan the input bfds looking for .rsrc sections and record
4203 their lengths. Note - we rely upon the fact that the linker script
4204 does *not* sort the input .rsrc sections, so that the order in the
4205 linkinfo list matches the order in the output .rsrc section.
4207 We need to know the lengths because each input .rsrc section has padding
4208 at the end of a variable amount. (It does not appear to be based upon
4209 the section alignment or the file alignment). We need to skip any
4210 padding bytes when parsing the input .rsrc sections. */
4211 rsrc_sizes = bfd_malloc (max_num_input_rsrc * sizeof * rsrc_sizes);
4212 if (rsrc_sizes == NULL)
4213 goto end;
4215 for (input = pfinfo->info->input_bfds;
4216 input != NULL;
4217 input = input->link.next)
4219 asection * rsrc_sec = bfd_get_section_by_name (input, ".rsrc");
4221 /* PR 18372 - skip discarded .rsrc sections. */
4222 if (rsrc_sec != NULL && !discarded_section (rsrc_sec))
4224 if (num_input_rsrc == max_num_input_rsrc)
4226 max_num_input_rsrc += 10;
4227 rsrc_sizes = bfd_realloc (rsrc_sizes, max_num_input_rsrc
4228 * sizeof * rsrc_sizes);
4229 if (rsrc_sizes == NULL)
4230 goto end;
4233 BFD_ASSERT (rsrc_sec->size > 0);
4234 rsrc_sizes [num_input_rsrc ++] = rsrc_sec->size;
4238 if (num_input_rsrc < 2)
4239 goto end;
4241 /* Step one: Walk the section, computing the size of the tables,
4242 leaves and data and decide if we need to do anything. */
4243 dataend = data + size;
4244 num_resource_sets = 0;
4246 while (data < dataend)
4248 bfd_byte * p = data;
4250 data = rsrc_count_directory (abfd, data, data, dataend, rva_bias);
4252 if (data > dataend)
4254 /* Corrupted .rsrc section - cannot merge. */
4255 _bfd_error_handler (_("%pB: .rsrc merge failure: corrupt .rsrc section"),
4256 abfd);
4257 bfd_set_error (bfd_error_file_truncated);
4258 goto end;
4261 if ((data - p) > rsrc_sizes [num_resource_sets])
4263 _bfd_error_handler (_("%pB: .rsrc merge failure: unexpected .rsrc size"),
4264 abfd);
4265 bfd_set_error (bfd_error_file_truncated);
4266 goto end;
4268 /* FIXME: Should we add a check for "data - p" being much smaller
4269 than rsrc_sizes[num_resource_sets] ? */
4271 data = p + rsrc_sizes[num_resource_sets];
4272 rva_bias += data - p;
4273 ++ num_resource_sets;
4275 BFD_ASSERT (num_resource_sets == num_input_rsrc);
4277 /* Step two: Walk the data again, building trees of the resources. */
4278 data = datastart;
4279 rva_bias = sec->vma - pe->pe_opthdr.ImageBase;
4281 type_tables = bfd_malloc (num_resource_sets * sizeof * type_tables);
4282 if (type_tables == NULL)
4283 goto end;
4285 indx = 0;
4286 while (data < dataend)
4288 bfd_byte * p = data;
4290 (void) rsrc_parse_directory (abfd, type_tables + indx, data, data,
4291 dataend, rva_bias, NULL);
4292 data = p + rsrc_sizes[indx];
4293 rva_bias += data - p;
4294 ++ indx;
4296 BFD_ASSERT (indx == num_resource_sets);
4298 /* Step three: Merge the top level tables (there can be only one).
4300 We must ensure that the merged entries are in ascending order.
4302 We also thread the top level table entries from the old tree onto
4303 the new table, so that they can be pulled off later. */
4305 /* FIXME: Should we verify that all type tables are the same ? */
4306 new_table.characteristics = type_tables[0].characteristics;
4307 new_table.time = type_tables[0].time;
4308 new_table.major = type_tables[0].major;
4309 new_table.minor = type_tables[0].minor;
4311 /* Chain the NAME entries onto the table. */
4312 new_table.names.first_entry = NULL;
4313 new_table.names.last_entry = NULL;
4315 for (indx = 0; indx < num_resource_sets; indx++)
4316 rsrc_attach_chain (& new_table.names, & type_tables[indx].names);
4318 rsrc_sort_entries (& new_table.names, true, & new_table);
4320 /* Chain the ID entries onto the table. */
4321 new_table.ids.first_entry = NULL;
4322 new_table.ids.last_entry = NULL;
4324 for (indx = 0; indx < num_resource_sets; indx++)
4325 rsrc_attach_chain (& new_table.ids, & type_tables[indx].ids);
4327 rsrc_sort_entries (& new_table.ids, false, & new_table);
4329 /* Step four: Create new contents for the .rsrc section. */
4330 /* Step four point one: Compute the size of each region of the .rsrc section.
4331 We do this now, rather than earlier, as the merging above may have dropped
4332 some entries. */
4333 sizeof_leaves = sizeof_strings = sizeof_tables_and_entries = 0;
4334 rsrc_compute_region_sizes (& new_table);
4335 /* We increment sizeof_strings to make sure that resource data
4336 starts on an 8-byte boundary. FIXME: Is this correct ? */
4337 sizeof_strings = (sizeof_strings + 7) & ~ 7;
4339 new_data = bfd_zalloc (abfd, size);
4340 if (new_data == NULL)
4341 goto end;
4343 write_data.abfd = abfd;
4344 write_data.datastart = new_data;
4345 write_data.next_table = new_data;
4346 write_data.next_leaf = new_data + sizeof_tables_and_entries;
4347 write_data.next_string = write_data.next_leaf + sizeof_leaves;
4348 write_data.next_data = write_data.next_string + sizeof_strings;
4349 write_data.rva_bias = sec->vma - pe->pe_opthdr.ImageBase;
4351 rsrc_write_directory (& write_data, & new_table);
4353 /* Step five: Replace the old contents with the new.
4354 We don't recompute the size as it's too late here to shrink section.
4355 See PR ld/20193 for more details. */
4356 bfd_set_section_contents (pfinfo->output_bfd, sec, new_data, 0, size);
4357 sec->size = sec->rawsize = size;
4359 end:
4360 /* Step six: Free all the memory that we have used. */
4361 /* FIXME: Free the resource tree, if we have one. */
4362 free (datastart);
4363 free (rsrc_sizes);
4366 /* Handle the .idata section and other things that need symbol table
4367 access. */
4369 bool
4370 _bfd_XXi_final_link_postscript (bfd * abfd, struct coff_final_link_info *pfinfo)
4372 struct coff_link_hash_entry *h1;
4373 struct bfd_link_info *info = pfinfo->info;
4374 bool result = true;
4376 /* There are a few fields that need to be filled in now while we
4377 have symbol table access.
4379 The .idata subsections aren't directly available as sections, but
4380 they are in the symbol table, so get them from there. */
4382 /* The import directory. This is the address of .idata$2, with size
4383 of .idata$2 + .idata$3. */
4384 h1 = coff_link_hash_lookup (coff_hash_table (info),
4385 ".idata$2", false, false, true);
4386 if (h1 != NULL)
4388 /* PR ld/2729: We cannot rely upon all the output sections having been
4389 created properly, so check before referencing them. Issue a warning
4390 message for any sections tht could not be found. */
4391 if ((h1->root.type == bfd_link_hash_defined
4392 || h1->root.type == bfd_link_hash_defweak)
4393 && h1->root.u.def.section != NULL
4394 && h1->root.u.def.section->output_section != NULL)
4395 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].VirtualAddress =
4396 (h1->root.u.def.value
4397 + h1->root.u.def.section->output_section->vma
4398 + h1->root.u.def.section->output_offset);
4399 else
4401 _bfd_error_handler
4402 (_("%pB: unable to fill in DataDictionary[1] because .idata$2 is missing"),
4403 abfd);
4404 result = false;
4407 h1 = coff_link_hash_lookup (coff_hash_table (info),
4408 ".idata$4", false, false, true);
4409 if (h1 != NULL
4410 && (h1->root.type == bfd_link_hash_defined
4411 || h1->root.type == bfd_link_hash_defweak)
4412 && h1->root.u.def.section != NULL
4413 && h1->root.u.def.section->output_section != NULL)
4414 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].Size =
4415 ((h1->root.u.def.value
4416 + h1->root.u.def.section->output_section->vma
4417 + h1->root.u.def.section->output_offset)
4418 - pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].VirtualAddress);
4419 else
4421 _bfd_error_handler
4422 (_("%pB: unable to fill in DataDictionary[1] because .idata$4 is missing"),
4423 abfd);
4424 result = false;
4427 /* The import address table. This is the size/address of
4428 .idata$5. */
4429 h1 = coff_link_hash_lookup (coff_hash_table (info),
4430 ".idata$5", false, false, true);
4431 if (h1 != NULL
4432 && (h1->root.type == bfd_link_hash_defined
4433 || h1->root.type == bfd_link_hash_defweak)
4434 && h1->root.u.def.section != NULL
4435 && h1->root.u.def.section->output_section != NULL)
4436 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].VirtualAddress =
4437 (h1->root.u.def.value
4438 + h1->root.u.def.section->output_section->vma
4439 + h1->root.u.def.section->output_offset);
4440 else
4442 _bfd_error_handler
4443 (_("%pB: unable to fill in DataDictionary[12] because .idata$5 is missing"),
4444 abfd);
4445 result = false;
4448 h1 = coff_link_hash_lookup (coff_hash_table (info),
4449 ".idata$6", false, false, true);
4450 if (h1 != NULL
4451 && (h1->root.type == bfd_link_hash_defined
4452 || h1->root.type == bfd_link_hash_defweak)
4453 && h1->root.u.def.section != NULL
4454 && h1->root.u.def.section->output_section != NULL)
4455 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].Size =
4456 ((h1->root.u.def.value
4457 + h1->root.u.def.section->output_section->vma
4458 + h1->root.u.def.section->output_offset)
4459 - pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].VirtualAddress);
4460 else
4462 _bfd_error_handler
4463 (_("%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] because .idata$6 is missing"),
4464 abfd);
4465 result = false;
4468 else
4470 h1 = coff_link_hash_lookup (coff_hash_table (info),
4471 "__IAT_start__", false, false, true);
4472 if (h1 != NULL
4473 && (h1->root.type == bfd_link_hash_defined
4474 || h1->root.type == bfd_link_hash_defweak)
4475 && h1->root.u.def.section != NULL
4476 && h1->root.u.def.section->output_section != NULL)
4478 bfd_vma iat_va;
4480 iat_va =
4481 (h1->root.u.def.value
4482 + h1->root.u.def.section->output_section->vma
4483 + h1->root.u.def.section->output_offset);
4485 h1 = coff_link_hash_lookup (coff_hash_table (info),
4486 "__IAT_end__", false, false, true);
4487 if (h1 != NULL
4488 && (h1->root.type == bfd_link_hash_defined
4489 || h1->root.type == bfd_link_hash_defweak)
4490 && h1->root.u.def.section != NULL
4491 && h1->root.u.def.section->output_section != NULL)
4493 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].Size =
4494 ((h1->root.u.def.value
4495 + h1->root.u.def.section->output_section->vma
4496 + h1->root.u.def.section->output_offset)
4497 - iat_va);
4498 if (pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].Size != 0)
4499 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].VirtualAddress =
4500 iat_va - pe_data (abfd)->pe_opthdr.ImageBase;
4502 else
4504 _bfd_error_handler
4505 (_("%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)]"
4506 " because .idata$6 is missing"), abfd);
4507 result = false;
4512 h1 = coff_link_hash_lookup (coff_hash_table (info),
4513 (bfd_get_symbol_leading_char (abfd) != 0
4514 ? "__tls_used" : "_tls_used"),
4515 false, false, true);
4516 if (h1 != NULL)
4518 if ((h1->root.type == bfd_link_hash_defined
4519 || h1->root.type == bfd_link_hash_defweak)
4520 && h1->root.u.def.section != NULL
4521 && h1->root.u.def.section->output_section != NULL)
4522 pe_data (abfd)->pe_opthdr.DataDirectory[PE_TLS_TABLE].VirtualAddress =
4523 (h1->root.u.def.value
4524 + h1->root.u.def.section->output_section->vma
4525 + h1->root.u.def.section->output_offset
4526 - pe_data (abfd)->pe_opthdr.ImageBase);
4527 else
4529 _bfd_error_handler
4530 (_("%pB: unable to fill in DataDictionary[9] because __tls_used is missing"),
4531 abfd);
4532 result = false;
4534 /* According to PECOFF sepcifications by Microsoft version 8.2
4535 the TLS data directory consists of 4 pointers, followed
4536 by two 4-byte integer. This implies that the total size
4537 is different for 32-bit and 64-bit executables. */
4538 #if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
4539 pe_data (abfd)->pe_opthdr.DataDirectory[PE_TLS_TABLE].Size = 0x18;
4540 #else
4541 pe_data (abfd)->pe_opthdr.DataDirectory[PE_TLS_TABLE].Size = 0x28;
4542 #endif
4545 /* If there is a .pdata section and we have linked pdata finally, we
4546 need to sort the entries ascending. */
4547 #if !defined(COFF_WITH_pep) && (defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64) || defined(COFF_WITH_peLoongArch64))
4549 asection *sec = bfd_get_section_by_name (abfd, ".pdata");
4551 if (sec)
4553 bfd_size_type x = sec->rawsize;
4554 bfd_byte *tmp_data = NULL;
4556 if (x)
4557 tmp_data = bfd_malloc (x);
4559 if (tmp_data != NULL)
4561 if (bfd_get_section_contents (abfd, sec, tmp_data, 0, x))
4563 qsort (tmp_data,
4564 (size_t) (x / 12),
4565 12, sort_x64_pdata);
4566 bfd_set_section_contents (pfinfo->output_bfd, sec,
4567 tmp_data, 0, x);
4569 free (tmp_data);
4571 else
4572 result = false;
4575 #endif
4577 rsrc_process_section (abfd, pfinfo);
4579 /* If we couldn't find idata$2, we either have an excessively
4580 trivial program or are in DEEP trouble; we have to assume trivial
4581 program.... */
4582 return result;