]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/peXXigen.c
Update the config.guess and config.sub files from the master repository and regenerat...
[thirdparty/binutils-gdb.git] / bfd / peXXigen.c
CommitLineData
277d1b5e 1/* Support for the generic parts of PE/PEI; the common executable parts.
a2c58332 2 Copyright (C) 1995-2022 Free Software Foundation, Inc.
277d1b5e
ILT
3 Written by Cygnus Solutions.
4
5e226794 5 This file is part of BFD, the Binary File Descriptor library.
277d1b5e 6
5e226794
NC
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
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
5e226794 10 (at your option) any later version.
277d1b5e 11
5e226794
NC
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.
277d1b5e 16
5e226794
NC
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
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
277d1b5e 22
6fa957a9 23/* Most of this hacked by Steve Chamberlain <sac@cygnus.com>.
277d1b5e 24
6fa957a9 25 PE/PEI rearrangement (and code added): Donn Terry
ca09e32b 26 Softway Systems, Inc. */
277d1b5e
ILT
27
28/* Hey look, some documentation [and in a place you expect to find it]!
29
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.
33
34 Another reference:
35 "Peering Inside the PE: A Tour of the Win32 Portable Executable
36 File Format", MSJ 1994, Volume 9.
37
1dd1bc4d
OM
38 The PE/PEI format is also used by .NET. ECMA-335 describes this:
39
40 "Standard ECMA-335 Common Language Infrastructure (CLI)", 6th Edition, June 2012.
41
42 This is also available at
43 https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-335.pdf.
44
277d1b5e
ILT
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!)
52
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.
58
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
ca09e32b 61 wasting too much time. */
277d1b5e 62
b69c9d41
TC
63/* This expands into COFF_WITH_pe, COFF_WITH_pep, COFF_WITH_pex64 or
64 COFF_WITH_peAArch64 depending on whether we're compiling for straight
65 PE or PE+. */
cbff5e0d
DD
66#define COFF_WITH_XX
67
277d1b5e 68#include "sysdep.h"
3db64b00 69#include "bfd.h"
277d1b5e
ILT
70#include "libbfd.h"
71#include "coff/internal.h"
5fdcb63c 72#include "bfdver.h"
7769fa97 73#include "libiberty.h"
5879bb8f 74#include <wchar.h>
31593e1b 75#include <wctype.h>
277d1b5e
ILT
76
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. */
99ad8390
NC
83#if defined COFF_WITH_pex64
84# include "coff/x86_64.h"
85#elif defined COFF_WITH_pep
cbff5e0d 86# include "coff/ia64.h"
b69c9d41
TC
87#elif defined COFF_WITH_peAArch64
88# include "coff/aarch64.h"
cbff5e0d
DD
89#else
90# include "coff/i386.h"
91#endif
277d1b5e
ILT
92
93#include "coff/pe.h"
94#include "libcoff.h"
95#include "libpei.h"
5879bb8f 96#include "safe-ctype.h"
277d1b5e 97
b69c9d41 98#if defined COFF_WITH_pep || defined COFF_WITH_pex64 || defined COFF_WITH_peAArch64
cbff5e0d
DD
99# undef AOUTSZ
100# define AOUTSZ PEPAOUTSZ
101# define PEAOUTHDR PEPAOUTHDR
102#endif
103
5879bb8f
NC
104#define HighBitSet(val) ((val) & 0x80000000)
105#define SetHighBit(val) ((val) | 0x80000000)
106#define WithoutHighBit(val) ((val) & 0x7fffffff)
1725a96e 107\f
277d1b5e 108void
7920ce38 109_bfd_XXi_swap_sym_in (bfd * abfd, void * ext1, void * in1)
277d1b5e 110{
6fa957a9
KH
111 SYMENT *ext = (SYMENT *) ext1;
112 struct internal_syment *in = (struct internal_syment *) in1;
277d1b5e 113
6fa957a9
KH
114 if (ext->e.e_name[0] == 0)
115 {
116 in->_n._n_n._n_zeroes = 0;
dc810e39 117 in->_n._n_n._n_offset = H_GET_32 (abfd, ext->e.e.e_offset);
6fa957a9
KH
118 }
119 else
1725a96e 120 memcpy (in->_n._n_name, ext->e.e_name, SYMNMLEN);
277d1b5e 121
dc810e39 122 in->n_value = H_GET_32 (abfd, ext->e_value);
9ae678af 123 in->n_scnum = (short) H_GET_16 (abfd, ext->e_scnum);
1725a96e 124
6fa957a9 125 if (sizeof (ext->e_type) == 2)
dc810e39 126 in->n_type = H_GET_16 (abfd, ext->e_type);
6fa957a9 127 else
dc810e39 128 in->n_type = H_GET_32 (abfd, ext->e_type);
1725a96e 129
dc810e39
AM
130 in->n_sclass = H_GET_8 (abfd, ext->e_sclass);
131 in->n_numaux = H_GET_8 (abfd, ext->e_numaux);
277d1b5e
ILT
132
133#ifndef STRICT_PE_FORMAT
6fa957a9 134 /* This is for Gnu-created DLLs. */
277d1b5e
ILT
135
136 /* The section symbols for the .idata$ sections have class 0x68
137 (C_SECTION), which MS documentation indicates is a section
138 symbol. Unfortunately, the value field in the symbol is simply a
139 copy of the .idata section's flags rather than something useful.
140 When these symbols are encountered, change the value to 0 so that
141 they will be handled somewhat correctly in the bfd code. */
142 if (in->n_sclass == C_SECTION)
143 {
383c383f 144 char namebuf[SYMNMLEN + 1];
ba775898 145 const char *name = NULL;
383c383f 146
277d1b5e
ILT
147 in->n_value = 0x0;
148
277d1b5e
ILT
149 /* Create synthetic empty sections as needed. DJ */
150 if (in->n_scnum == 0)
151 {
152 asection *sec;
1725a96e 153
383c383f
AM
154 name = _bfd_coff_internal_syment_name (abfd, in, namebuf);
155 if (name == NULL)
201159ec 156 {
871b3ab2 157 _bfd_error_handler (_("%pB: unable to find name for empty section"),
201159ec
NC
158 abfd);
159 bfd_set_error (bfd_error_invalid_target);
160 return;
161 }
162
383c383f
AM
163 sec = bfd_get_section_by_name (abfd, name);
164 if (sec != NULL)
165 in->n_scnum = sec->target_index;
277d1b5e 166 }
1725a96e 167
277d1b5e
ILT
168 if (in->n_scnum == 0)
169 {
170 int unused_section_number = 0;
171 asection *sec;
117ed4f8 172 flagword flags;
7ecb5154
AM
173 size_t name_len;
174 char *sec_name;
1725a96e 175
6fa957a9 176 for (sec = abfd->sections; sec; sec = sec->next)
277d1b5e 177 if (unused_section_number <= sec->target_index)
6fa957a9 178 unused_section_number = sec->target_index + 1;
277d1b5e 179
7ecb5154
AM
180 name_len = strlen (name) + 1;
181 sec_name = bfd_alloc (abfd, name_len);
182 if (sec_name == NULL)
383c383f 183 {
7ecb5154
AM
184 _bfd_error_handler (_("%pB: out of memory creating name "
185 "for empty section"), abfd);
186 return;
383c383f 187 }
7ecb5154 188 memcpy (sec_name, name, name_len);
201159ec 189
117ed4f8 190 flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_DATA | SEC_LOAD;
7ecb5154 191 sec = bfd_make_section_anyway_with_flags (abfd, sec_name, flags);
383c383f 192 if (sec == NULL)
201159ec 193 {
871b3ab2 194 _bfd_error_handler (_("%pB: unable to create fake empty section"),
201159ec
NC
195 abfd);
196 return;
197 }
277d1b5e
ILT
198
199 sec->vma = 0;
200 sec->lma = 0;
eea6121a 201 sec->size = 0;
277d1b5e
ILT
202 sec->filepos = 0;
203 sec->rel_filepos = 0;
204 sec->reloc_count = 0;
205 sec->line_filepos = 0;
206 sec->lineno_count = 0;
207 sec->userdata = NULL;
7920ce38 208 sec->next = NULL;
277d1b5e 209 sec->alignment_power = 2;
277d1b5e
ILT
210
211 sec->target_index = unused_section_number;
212
213 in->n_scnum = unused_section_number;
214 }
215 in->n_sclass = C_STAT;
277d1b5e
ILT
216 }
217#endif
277d1b5e
ILT
218}
219
0a1b45a2 220static bool
32ae0d80
NC
221abs_finder (bfd * abfd ATTRIBUTE_UNUSED, asection * sec, void * data)
222{
223 bfd_vma abs_val = * (bfd_vma *) data;
224
3714081c 225 return (sec->vma <= abs_val) && ((sec->vma + (1ULL << 32)) > abs_val);
32ae0d80
NC
226}
227
277d1b5e 228unsigned int
7920ce38 229_bfd_XXi_swap_sym_out (bfd * abfd, void * inp, void * extp)
277d1b5e 230{
6fa957a9
KH
231 struct internal_syment *in = (struct internal_syment *) inp;
232 SYMENT *ext = (SYMENT *) extp;
1725a96e 233
6fa957a9
KH
234 if (in->_n._n_name[0] == 0)
235 {
dc810e39
AM
236 H_PUT_32 (abfd, 0, ext->e.e.e_zeroes);
237 H_PUT_32 (abfd, in->_n._n_n._n_offset, ext->e.e.e_offset);
6fa957a9
KH
238 }
239 else
1725a96e 240 memcpy (ext->e.e_name, in->_n._n_name, SYMNMLEN);
277d1b5e 241
32ae0d80
NC
242 /* The PE32 and PE32+ formats only use 4 bytes to hold the value of a
243 symbol. This is a problem on 64-bit targets where we can generate
244 absolute symbols with values >= 1^32. We try to work around this
245 problem by finding a section whose base address is sufficient to
246 reduce the absolute value to < 1^32, and then transforming the
247 symbol into a section relative symbol. This of course is a hack. */
248 if (sizeof (in->n_value) > 4
40af4a36
NC
249 /* The strange computation of the shift amount is here in order to
250 avoid a compile time warning about the comparison always being
251 false. It does not matter if this test fails to work as expected
252 as the worst that can happen is that some absolute symbols are
253 needlessly converted into section relative symbols. */
254 && in->n_value > ((1ULL << (sizeof (in->n_value) > 4 ? 32 : 31)) - 1)
9ae678af 255 && in->n_scnum == N_ABS)
32ae0d80
NC
256 {
257 asection * sec;
258
259 sec = bfd_sections_find_if (abfd, abs_finder, & in->n_value);
260 if (sec)
261 {
262 in->n_value -= sec->vma;
263 in->n_scnum = sec->target_index;
264 }
265 /* else: FIXME: The value is outside the range of any section. This
88667baf 266 happens for __image_base__ and __ImageBase and maybe some other
32ae0d80
NC
267 symbols as well. We should find a way to handle these values. */
268 }
269
dc810e39
AM
270 H_PUT_32 (abfd, in->n_value, ext->e_value);
271 H_PUT_16 (abfd, in->n_scnum, ext->e_scnum);
1725a96e 272
9602af51 273 if (sizeof (ext->e_type) == 2)
dc810e39 274 H_PUT_16 (abfd, in->n_type, ext->e_type);
277d1b5e 275 else
dc810e39 276 H_PUT_32 (abfd, in->n_type, ext->e_type);
1725a96e 277
dc810e39
AM
278 H_PUT_8 (abfd, in->n_sclass, ext->e_sclass);
279 H_PUT_8 (abfd, in->n_numaux, ext->e_numaux);
277d1b5e
ILT
280
281 return SYMESZ;
282}
283
284void
7920ce38
NC
285_bfd_XXi_swap_aux_in (bfd * abfd,
286 void * ext1,
287 int type,
96d56e9f 288 int in_class,
7920ce38
NC
289 int indx ATTRIBUTE_UNUSED,
290 int numaux ATTRIBUTE_UNUSED,
07d6d2b8 291 void * in1)
277d1b5e 292{
6fa957a9
KH
293 AUXENT *ext = (AUXENT *) ext1;
294 union internal_auxent *in = (union internal_auxent *) in1;
295
201159ec
NC
296 /* PR 17521: Make sure that all fields in the aux structure
297 are initialised. */
298 memset (in, 0, sizeof * in);
96d56e9f 299 switch (in_class)
6fa957a9
KH
300 {
301 case C_FILE:
302 if (ext->x_file.x_fname[0] == 0)
303 {
e86fc4a5
CC
304 in->x_file.x_n.x_n.x_zeroes = 0;
305 in->x_file.x_n.x_n.x_offset = H_GET_32 (abfd, ext->x_file.x_n.x_offset);
6fa957a9
KH
306 }
307 else
e86fc4a5 308 memcpy (in->x_file.x_n.x_fname, ext->x_file.x_fname, FILNMLEN);
277d1b5e 309 return;
6fa957a9
KH
310
311 case C_STAT:
312 case C_LEAFSTAT:
313 case C_HIDDEN:
314 if (type == T_NULL)
315 {
316 in->x_scn.x_scnlen = GET_SCN_SCNLEN (abfd, ext);
317 in->x_scn.x_nreloc = GET_SCN_NRELOC (abfd, ext);
318 in->x_scn.x_nlinno = GET_SCN_NLINNO (abfd, ext);
dc810e39
AM
319 in->x_scn.x_checksum = H_GET_32 (abfd, ext->x_scn.x_checksum);
320 in->x_scn.x_associated = H_GET_16 (abfd, ext->x_scn.x_associated);
321 in->x_scn.x_comdat = H_GET_8 (abfd, ext->x_scn.x_comdat);
6fa957a9
KH
322 return;
323 }
324 break;
277d1b5e 325 }
277d1b5e 326
dc810e39
AM
327 in->x_sym.x_tagndx.l = H_GET_32 (abfd, ext->x_sym.x_tagndx);
328 in->x_sym.x_tvndx = H_GET_16 (abfd, ext->x_sym.x_tvndx);
277d1b5e 329
96d56e9f
NC
330 if (in_class == C_BLOCK || in_class == C_FCN || ISFCN (type)
331 || ISTAG (in_class))
277d1b5e
ILT
332 {
333 in->x_sym.x_fcnary.x_fcn.x_lnnoptr = GET_FCN_LNNOPTR (abfd, ext);
334 in->x_sym.x_fcnary.x_fcn.x_endndx.l = GET_FCN_ENDNDX (abfd, ext);
335 }
336 else
337 {
338 in->x_sym.x_fcnary.x_ary.x_dimen[0] =
dc810e39 339 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
277d1b5e 340 in->x_sym.x_fcnary.x_ary.x_dimen[1] =
dc810e39 341 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
277d1b5e 342 in->x_sym.x_fcnary.x_ary.x_dimen[2] =
dc810e39 343 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
277d1b5e 344 in->x_sym.x_fcnary.x_ary.x_dimen[3] =
dc810e39 345 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
277d1b5e
ILT
346 }
347
6fa957a9
KH
348 if (ISFCN (type))
349 {
dc810e39 350 in->x_sym.x_misc.x_fsize = H_GET_32 (abfd, ext->x_sym.x_misc.x_fsize);
6fa957a9
KH
351 }
352 else
353 {
354 in->x_sym.x_misc.x_lnsz.x_lnno = GET_LNSZ_LNNO (abfd, ext);
355 in->x_sym.x_misc.x_lnsz.x_size = GET_LNSZ_SIZE (abfd, ext);
356 }
277d1b5e
ILT
357}
358
359unsigned int
7920ce38
NC
360_bfd_XXi_swap_aux_out (bfd * abfd,
361 void * inp,
362 int type,
96d56e9f 363 int in_class,
7920ce38
NC
364 int indx ATTRIBUTE_UNUSED,
365 int numaux ATTRIBUTE_UNUSED,
366 void * extp)
277d1b5e 367{
6fa957a9
KH
368 union internal_auxent *in = (union internal_auxent *) inp;
369 AUXENT *ext = (AUXENT *) extp;
370
7920ce38
NC
371 memset (ext, 0, AUXESZ);
372
96d56e9f 373 switch (in_class)
6fa957a9
KH
374 {
375 case C_FILE:
e86fc4a5 376 if (in->x_file.x_n.x_fname[0] == 0)
6fa957a9 377 {
dc810e39 378 H_PUT_32 (abfd, 0, ext->x_file.x_n.x_zeroes);
e86fc4a5 379 H_PUT_32 (abfd, in->x_file.x_n.x_n.x_offset, ext->x_file.x_n.x_offset);
6fa957a9
KH
380 }
381 else
e86fc4a5 382 memcpy (ext->x_file.x_fname, in->x_file.x_n.x_fname, sizeof (ext->x_file.x_fname));
1725a96e 383
277d1b5e 384 return AUXESZ;
6fa957a9
KH
385
386 case C_STAT:
387 case C_LEAFSTAT:
388 case C_HIDDEN:
389 if (type == T_NULL)
390 {
391 PUT_SCN_SCNLEN (abfd, in->x_scn.x_scnlen, ext);
392 PUT_SCN_NRELOC (abfd, in->x_scn.x_nreloc, ext);
393 PUT_SCN_NLINNO (abfd, in->x_scn.x_nlinno, ext);
dc810e39
AM
394 H_PUT_32 (abfd, in->x_scn.x_checksum, ext->x_scn.x_checksum);
395 H_PUT_16 (abfd, in->x_scn.x_associated, ext->x_scn.x_associated);
396 H_PUT_8 (abfd, in->x_scn.x_comdat, ext->x_scn.x_comdat);
6fa957a9
KH
397 return AUXESZ;
398 }
399 break;
277d1b5e 400 }
277d1b5e 401
dc810e39
AM
402 H_PUT_32 (abfd, in->x_sym.x_tagndx.l, ext->x_sym.x_tagndx);
403 H_PUT_16 (abfd, in->x_sym.x_tvndx, ext->x_sym.x_tvndx);
277d1b5e 404
96d56e9f
NC
405 if (in_class == C_BLOCK || in_class == C_FCN || ISFCN (type)
406 || ISTAG (in_class))
277d1b5e 407 {
6fa957a9
KH
408 PUT_FCN_LNNOPTR (abfd, in->x_sym.x_fcnary.x_fcn.x_lnnoptr, ext);
409 PUT_FCN_ENDNDX (abfd, in->x_sym.x_fcnary.x_fcn.x_endndx.l, ext);
277d1b5e
ILT
410 }
411 else
412 {
dc810e39
AM
413 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[0],
414 ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
415 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[1],
416 ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
417 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[2],
418 ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
419 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[3],
420 ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
277d1b5e
ILT
421 }
422
423 if (ISFCN (type))
dc810e39 424 H_PUT_32 (abfd, in->x_sym.x_misc.x_fsize, ext->x_sym.x_misc.x_fsize);
277d1b5e
ILT
425 else
426 {
427 PUT_LNSZ_LNNO (abfd, in->x_sym.x_misc.x_lnsz.x_lnno, ext);
428 PUT_LNSZ_SIZE (abfd, in->x_sym.x_misc.x_lnsz.x_size, ext);
429 }
430
431 return AUXESZ;
432}
433
434void
7920ce38 435_bfd_XXi_swap_lineno_in (bfd * abfd, void * ext1, void * in1)
277d1b5e 436{
6fa957a9
KH
437 LINENO *ext = (LINENO *) ext1;
438 struct internal_lineno *in = (struct internal_lineno *) in1;
277d1b5e 439
dc810e39 440 in->l_addr.l_symndx = H_GET_32 (abfd, ext->l_addr.l_symndx);
6fa957a9 441 in->l_lnno = GET_LINENO_LNNO (abfd, ext);
277d1b5e
ILT
442}
443
444unsigned int
7920ce38 445_bfd_XXi_swap_lineno_out (bfd * abfd, void * inp, void * outp)
277d1b5e 446{
6fa957a9
KH
447 struct internal_lineno *in = (struct internal_lineno *) inp;
448 struct external_lineno *ext = (struct external_lineno *) outp;
dc810e39 449 H_PUT_32 (abfd, in->l_addr.l_symndx, ext->l_addr.l_symndx);
277d1b5e
ILT
450
451 PUT_LINENO_LNNO (abfd, in->l_lnno, ext);
452 return LINESZ;
453}
454
455void
7920ce38
NC
456_bfd_XXi_swap_aouthdr_in (bfd * abfd,
457 void * aouthdr_ext1,
458 void * aouthdr_int1)
277d1b5e 459{
d13c9dc6 460 PEAOUTHDR * src = (PEAOUTHDR *) aouthdr_ext1;
7920ce38 461 AOUTHDR * aouthdr_ext = (AOUTHDR *) aouthdr_ext1;
d13c9dc6
L
462 struct internal_aouthdr *aouthdr_int
463 = (struct internal_aouthdr *) aouthdr_int1;
464 struct internal_extra_pe_aouthdr *a = &aouthdr_int->pe;
277d1b5e 465
dc810e39
AM
466 aouthdr_int->magic = H_GET_16 (abfd, aouthdr_ext->magic);
467 aouthdr_int->vstamp = H_GET_16 (abfd, aouthdr_ext->vstamp);
468 aouthdr_int->tsize = GET_AOUTHDR_TSIZE (abfd, aouthdr_ext->tsize);
469 aouthdr_int->dsize = GET_AOUTHDR_DSIZE (abfd, aouthdr_ext->dsize);
470 aouthdr_int->bsize = GET_AOUTHDR_BSIZE (abfd, aouthdr_ext->bsize);
471 aouthdr_int->entry = GET_AOUTHDR_ENTRY (abfd, aouthdr_ext->entry);
277d1b5e 472 aouthdr_int->text_start =
dc810e39 473 GET_AOUTHDR_TEXT_START (abfd, aouthdr_ext->text_start);
36e9d67b 474
b69c9d41 475#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
7920ce38 476 /* PE32+ does not have data_start member! */
277d1b5e 477 aouthdr_int->data_start =
dc810e39 478 GET_AOUTHDR_DATA_START (abfd, aouthdr_ext->data_start);
d13c9dc6 479 a->BaseOfData = aouthdr_int->data_start;
fac41780 480#endif
277d1b5e 481
d13c9dc6
L
482 a->Magic = aouthdr_int->magic;
483 a->MajorLinkerVersion = H_GET_8 (abfd, aouthdr_ext->vstamp);
484 a->MinorLinkerVersion = H_GET_8 (abfd, aouthdr_ext->vstamp + 1);
485 a->SizeOfCode = aouthdr_int->tsize ;
486 a->SizeOfInitializedData = aouthdr_int->dsize ;
487 a->SizeOfUninitializedData = aouthdr_int->bsize ;
488 a->AddressOfEntryPoint = aouthdr_int->entry;
489 a->BaseOfCode = aouthdr_int->text_start;
dc810e39
AM
490 a->ImageBase = GET_OPTHDR_IMAGE_BASE (abfd, src->ImageBase);
491 a->SectionAlignment = H_GET_32 (abfd, src->SectionAlignment);
492 a->FileAlignment = H_GET_32 (abfd, src->FileAlignment);
277d1b5e 493 a->MajorOperatingSystemVersion =
dc810e39 494 H_GET_16 (abfd, src->MajorOperatingSystemVersion);
277d1b5e 495 a->MinorOperatingSystemVersion =
dc810e39
AM
496 H_GET_16 (abfd, src->MinorOperatingSystemVersion);
497 a->MajorImageVersion = H_GET_16 (abfd, src->MajorImageVersion);
498 a->MinorImageVersion = H_GET_16 (abfd, src->MinorImageVersion);
499 a->MajorSubsystemVersion = H_GET_16 (abfd, src->MajorSubsystemVersion);
500 a->MinorSubsystemVersion = H_GET_16 (abfd, src->MinorSubsystemVersion);
501 a->Reserved1 = H_GET_32 (abfd, src->Reserved1);
502 a->SizeOfImage = H_GET_32 (abfd, src->SizeOfImage);
503 a->SizeOfHeaders = H_GET_32 (abfd, src->SizeOfHeaders);
504 a->CheckSum = H_GET_32 (abfd, src->CheckSum);
505 a->Subsystem = H_GET_16 (abfd, src->Subsystem);
506 a->DllCharacteristics = H_GET_16 (abfd, src->DllCharacteristics);
507 a->SizeOfStackReserve =
508 GET_OPTHDR_SIZE_OF_STACK_RESERVE (abfd, src->SizeOfStackReserve);
509 a->SizeOfStackCommit =
510 GET_OPTHDR_SIZE_OF_STACK_COMMIT (abfd, src->SizeOfStackCommit);
511 a->SizeOfHeapReserve =
512 GET_OPTHDR_SIZE_OF_HEAP_RESERVE (abfd, src->SizeOfHeapReserve);
513 a->SizeOfHeapCommit =
514 GET_OPTHDR_SIZE_OF_HEAP_COMMIT (abfd, src->SizeOfHeapCommit);
515 a->LoaderFlags = H_GET_32 (abfd, src->LoaderFlags);
516 a->NumberOfRvaAndSizes = H_GET_32 (abfd, src->NumberOfRvaAndSizes);
277d1b5e
ILT
517
518 {
b24cc414 519 unsigned idx;
1725a96e 520
7e1e1988 521 /* PR 17512: Corrupt PE binaries can cause seg-faults. */
36e9d67b 522 if (a->NumberOfRvaAndSizes > IMAGE_NUMBEROF_DIRECTORY_ENTRIES)
7e1e1988 523 {
695344c0 524 /* xgettext:c-format */
4eca0228 525 _bfd_error_handler
b24cc414
AM
526 (_("%pB: aout header specifies an invalid number of"
527 " data-directory entries: %u"), abfd, a->NumberOfRvaAndSizes);
86eafac0
NC
528 bfd_set_error (bfd_error_bad_value);
529
7e1e1988
NC
530 /* Paranoia: If the number is corrupt, then assume that the
531 actual entries themselves might be corrupt as well. */
532 a->NumberOfRvaAndSizes = 0;
533 }
534
ce63b7b3 535 for (idx = 0; idx < a->NumberOfRvaAndSizes; idx++)
277d1b5e 536 {
07d6d2b8 537 /* If data directory is empty, rva also should be 0. */
6fa957a9 538 int size =
dc810e39 539 H_GET_32 (abfd, src->DataDirectory[idx][1]);
99ad8390 540
3028b4c0
DD
541 a->DataDirectory[idx].Size = size;
542
543 if (size)
1725a96e 544 a->DataDirectory[idx].VirtualAddress =
dc810e39 545 H_GET_32 (abfd, src->DataDirectory[idx][0]);
6fa957a9 546 else
3028b4c0 547 a->DataDirectory[idx].VirtualAddress = 0;
277d1b5e 548 }
36e9d67b
NC
549
550 while (idx < IMAGE_NUMBEROF_DIRECTORY_ENTRIES)
551 {
552 a->DataDirectory[idx].Size = 0;
553 a->DataDirectory[idx].VirtualAddress = 0;
554 idx ++;
555 }
277d1b5e
ILT
556 }
557
558 if (aouthdr_int->entry)
559 {
560 aouthdr_int->entry += a->ImageBase;
b69c9d41 561#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
277d1b5e 562 aouthdr_int->entry &= 0xffffffff;
fac41780 563#endif
277d1b5e 564 }
1725a96e 565
9602af51 566 if (aouthdr_int->tsize)
277d1b5e
ILT
567 {
568 aouthdr_int->text_start += a->ImageBase;
b69c9d41 569#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
277d1b5e 570 aouthdr_int->text_start &= 0xffffffff;
fac41780 571#endif
277d1b5e 572 }
1725a96e 573
b69c9d41 574#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
7920ce38 575 /* PE32+ does not have data_start member! */
9602af51 576 if (aouthdr_int->dsize)
277d1b5e
ILT
577 {
578 aouthdr_int->data_start += a->ImageBase;
579 aouthdr_int->data_start &= 0xffffffff;
580 }
fac41780 581#endif
277d1b5e
ILT
582}
583
5933bdc9
ILT
584/* A support function for below. */
585
586static void
7920ce38
NC
587add_data_entry (bfd * abfd,
588 struct internal_extra_pe_aouthdr *aout,
589 int idx,
590 char *name,
591 bfd_vma base)
277d1b5e
ILT
592{
593 asection *sec = bfd_get_section_by_name (abfd, name);
594
1725a96e 595 /* Add import directory information if it exists. */
277d1b5e
ILT
596 if ((sec != NULL)
597 && (coff_section_data (abfd, sec) != NULL)
598 && (pei_section_data (abfd, sec) != NULL))
599 {
1725a96e 600 /* If data directory is empty, rva also should be 0. */
3028b4c0
DD
601 int size = pei_section_data (abfd, sec)->virt_size;
602 aout->DataDirectory[idx].Size = size;
603
604 if (size)
6fa957a9
KH
605 {
606 aout->DataDirectory[idx].VirtualAddress =
607 (sec->vma - base) & 0xffffffff;
608 sec->flags |= SEC_DATA;
609 }
277d1b5e
ILT
610 }
611}
612
613unsigned int
7920ce38 614_bfd_XXi_swap_aouthdr_out (bfd * abfd, void * in, void * out)
277d1b5e 615{
6fa957a9 616 struct internal_aouthdr *aouthdr_in = (struct internal_aouthdr *) in;
cbff5e0d
DD
617 pe_data_type *pe = pe_data (abfd);
618 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
6fa957a9 619 PEAOUTHDR *aouthdr_out = (PEAOUTHDR *) out;
fac41780 620 bfd_vma sa, fa, ib;
ca6dee30 621 IMAGE_DATA_DIRECTORY idata2, idata5, tls;
4e1fc599 622
fac41780
JW
623 sa = extra->SectionAlignment;
624 fa = extra->FileAlignment;
625 ib = extra->ImageBase;
277d1b5e 626
6c73cbb1
NC
627 idata2 = pe->pe_opthdr.DataDirectory[PE_IMPORT_TABLE];
628 idata5 = pe->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE];
629 tls = pe->pe_opthdr.DataDirectory[PE_TLS_TABLE];
4e1fc599 630
9602af51 631 if (aouthdr_in->tsize)
277d1b5e
ILT
632 {
633 aouthdr_in->text_start -= ib;
b69c9d41 634#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
277d1b5e 635 aouthdr_in->text_start &= 0xffffffff;
cbff5e0d 636#endif
277d1b5e 637 }
1725a96e 638
9602af51 639 if (aouthdr_in->dsize)
277d1b5e
ILT
640 {
641 aouthdr_in->data_start -= ib;
b69c9d41 642#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
277d1b5e 643 aouthdr_in->data_start &= 0xffffffff;
cbff5e0d 644#endif
277d1b5e 645 }
1725a96e 646
9602af51 647 if (aouthdr_in->entry)
277d1b5e
ILT
648 {
649 aouthdr_in->entry -= ib;
b69c9d41 650#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
277d1b5e 651 aouthdr_in->entry &= 0xffffffff;
cbff5e0d 652#endif
277d1b5e
ILT
653 }
654
6fa957a9
KH
655#define FA(x) (((x) + fa -1 ) & (- fa))
656#define SA(x) (((x) + sa -1 ) & (- sa))
277d1b5e 657
6fa957a9 658 /* We like to have the sizes aligned. */
277d1b5e
ILT
659 aouthdr_in->bsize = FA (aouthdr_in->bsize);
660
277d1b5e
ILT
661 extra->NumberOfRvaAndSizes = IMAGE_NUMBEROF_DIRECTORY_ENTRIES;
662
477bdd39
JT
663 add_data_entry (abfd, extra, PE_EXPORT_TABLE, ".edata", ib);
664 add_data_entry (abfd, extra, PE_RESOURCE_TABLE, ".rsrc", ib);
665 add_data_entry (abfd, extra, PE_EXCEPTION_TABLE, ".pdata", ib);
2fbadf2c 666
c25cfdf8
NC
667 /* In theory we do not need to call add_data_entry for .idata$2 or
668 .idata$5. It will be done in bfd_coff_final_link where all the
669 required information is available. If however, we are not going
670 to perform a final link, eg because we have been invoked by objcopy
671 or strip, then we need to make sure that these Data Directory
672 entries are initialised properly.
673
674 So - we copy the input values into the output values, and then, if
675 a final link is going to be performed, it can overwrite them. */
6c73cbb1
NC
676 extra->DataDirectory[PE_IMPORT_TABLE] = idata2;
677 extra->DataDirectory[PE_IMPORT_ADDRESS_TABLE] = idata5;
678 extra->DataDirectory[PE_TLS_TABLE] = tls;
c25cfdf8 679
6c73cbb1 680 if (extra->DataDirectory[PE_IMPORT_TABLE].VirtualAddress == 0)
c25cfdf8 681 /* Until other .idata fixes are made (pending patch), the entry for
7dee875e 682 .idata is needed for backwards compatibility. FIXME. */
477bdd39 683 add_data_entry (abfd, extra, PE_IMPORT_TABLE, ".idata", ib);
4e1fc599 684
2fbadf2c
ILT
685 /* For some reason, the virtual size (which is what's set by
686 add_data_entry) for .reloc is not the same as the size recorded
687 in this slot by MSVC; it doesn't seem to cause problems (so far),
688 but since it's the best we've got, use it. It does do the right
689 thing for .pdata. */
cbff5e0d 690 if (pe->has_reloc_section)
477bdd39 691 add_data_entry (abfd, extra, PE_BASE_RELOCATION_TABLE, ".reloc", ib);
277d1b5e
ILT
692
693 {
694 asection *sec;
d48bdb99 695 bfd_vma hsize = 0;
6fa957a9 696 bfd_vma dsize = 0;
d48bdb99 697 bfd_vma isize = 0;
6fa957a9 698 bfd_vma tsize = 0;
277d1b5e
ILT
699
700 for (sec = abfd->sections; sec; sec = sec->next)
701 {
7920ce38 702 int rounded = FA (sec->size);
277d1b5e 703
a23e9ba1
NC
704 if (rounded == 0)
705 continue;
706
d48bdb99
AM
707 /* The first non-zero section filepos is the header size.
708 Sections without contents will have a filepos of 0. */
709 if (hsize == 0)
710 hsize = sec->filepos;
277d1b5e
ILT
711 if (sec->flags & SEC_DATA)
712 dsize += rounded;
713 if (sec->flags & SEC_CODE)
714 tsize += rounded;
5933bdc9
ILT
715 /* The image size is the total VIRTUAL size (which is what is
716 in the virt_size field). Files have been seen (from MSVC
717 5.0 link.exe) where the file size of the .data segment is
718 quite small compared to the virtual size. Without this
50572669
L
719 fix, strip munges the file.
720
721 FIXME: We need to handle holes between sections, which may
722 happpen when we covert from another format. We just use
723 the virtual address and virtual size of the last section
724 for the image size. */
98a96df7
CF
725 if (coff_section_data (abfd, sec) != NULL
726 && pei_section_data (abfd, sec) != NULL)
50572669
L
727 isize = (sec->vma - extra->ImageBase
728 + SA (FA (pei_section_data (abfd, sec)->virt_size)));
277d1b5e
ILT
729 }
730
731 aouthdr_in->dsize = dsize;
732 aouthdr_in->tsize = tsize;
d48bdb99 733 extra->SizeOfHeaders = hsize;
50572669 734 extra->SizeOfImage = isize;
277d1b5e
ILT
735 }
736
dc810e39 737 H_PUT_16 (abfd, aouthdr_in->magic, aouthdr_out->standard.magic);
277d1b5e 738
5fdcb63c
KT
739/* e.g. 219510000 is linker version 2.19 */
740#define LINKER_VERSION ((short) (BFD_VERSION / 1000000))
5933bdc9
ILT
741
742 /* This piece of magic sets the "linker version" field to
743 LINKER_VERSION. */
dc810e39
AM
744 H_PUT_16 (abfd, (LINKER_VERSION / 100 + (LINKER_VERSION % 100) * 256),
745 aouthdr_out->standard.vstamp);
746
747 PUT_AOUTHDR_TSIZE (abfd, aouthdr_in->tsize, aouthdr_out->standard.tsize);
748 PUT_AOUTHDR_DSIZE (abfd, aouthdr_in->dsize, aouthdr_out->standard.dsize);
749 PUT_AOUTHDR_BSIZE (abfd, aouthdr_in->bsize, aouthdr_out->standard.bsize);
750 PUT_AOUTHDR_ENTRY (abfd, aouthdr_in->entry, aouthdr_out->standard.entry);
277d1b5e 751 PUT_AOUTHDR_TEXT_START (abfd, aouthdr_in->text_start,
dc810e39 752 aouthdr_out->standard.text_start);
277d1b5e 753
b69c9d41 754#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
c25cfdf8 755 /* PE32+ does not have data_start member! */
277d1b5e 756 PUT_AOUTHDR_DATA_START (abfd, aouthdr_in->data_start,
dc810e39 757 aouthdr_out->standard.data_start);
fac41780 758#endif
277d1b5e 759
dc810e39
AM
760 PUT_OPTHDR_IMAGE_BASE (abfd, extra->ImageBase, aouthdr_out->ImageBase);
761 H_PUT_32 (abfd, extra->SectionAlignment, aouthdr_out->SectionAlignment);
762 H_PUT_32 (abfd, extra->FileAlignment, aouthdr_out->FileAlignment);
763 H_PUT_16 (abfd, extra->MajorOperatingSystemVersion,
764 aouthdr_out->MajorOperatingSystemVersion);
765 H_PUT_16 (abfd, extra->MinorOperatingSystemVersion,
766 aouthdr_out->MinorOperatingSystemVersion);
767 H_PUT_16 (abfd, extra->MajorImageVersion, aouthdr_out->MajorImageVersion);
768 H_PUT_16 (abfd, extra->MinorImageVersion, aouthdr_out->MinorImageVersion);
769 H_PUT_16 (abfd, extra->MajorSubsystemVersion,
770 aouthdr_out->MajorSubsystemVersion);
771 H_PUT_16 (abfd, extra->MinorSubsystemVersion,
772 aouthdr_out->MinorSubsystemVersion);
773 H_PUT_32 (abfd, extra->Reserved1, aouthdr_out->Reserved1);
774 H_PUT_32 (abfd, extra->SizeOfImage, aouthdr_out->SizeOfImage);
775 H_PUT_32 (abfd, extra->SizeOfHeaders, aouthdr_out->SizeOfHeaders);
776 H_PUT_32 (abfd, extra->CheckSum, aouthdr_out->CheckSum);
777 H_PUT_16 (abfd, extra->Subsystem, aouthdr_out->Subsystem);
778 H_PUT_16 (abfd, extra->DllCharacteristics, aouthdr_out->DllCharacteristics);
fac41780 779 PUT_OPTHDR_SIZE_OF_STACK_RESERVE (abfd, extra->SizeOfStackReserve,
dc810e39 780 aouthdr_out->SizeOfStackReserve);
fac41780 781 PUT_OPTHDR_SIZE_OF_STACK_COMMIT (abfd, extra->SizeOfStackCommit,
dc810e39 782 aouthdr_out->SizeOfStackCommit);
fac41780 783 PUT_OPTHDR_SIZE_OF_HEAP_RESERVE (abfd, extra->SizeOfHeapReserve,
dc810e39 784 aouthdr_out->SizeOfHeapReserve);
fac41780 785 PUT_OPTHDR_SIZE_OF_HEAP_COMMIT (abfd, extra->SizeOfHeapCommit,
dc810e39
AM
786 aouthdr_out->SizeOfHeapCommit);
787 H_PUT_32 (abfd, extra->LoaderFlags, aouthdr_out->LoaderFlags);
788 H_PUT_32 (abfd, extra->NumberOfRvaAndSizes,
789 aouthdr_out->NumberOfRvaAndSizes);
277d1b5e
ILT
790 {
791 int idx;
1725a96e 792
36e9d67b 793 for (idx = 0; idx < IMAGE_NUMBEROF_DIRECTORY_ENTRIES; idx++)
277d1b5e 794 {
dc810e39
AM
795 H_PUT_32 (abfd, extra->DataDirectory[idx].VirtualAddress,
796 aouthdr_out->DataDirectory[idx][0]);
797 H_PUT_32 (abfd, extra->DataDirectory[idx].Size,
798 aouthdr_out->DataDirectory[idx][1]);
277d1b5e
ILT
799 }
800 }
801
802 return AOUTSZ;
803}
804
805unsigned int
7920ce38 806_bfd_XXi_only_swap_filehdr_out (bfd * abfd, void * in, void * out)
277d1b5e
ILT
807{
808 int idx;
6fa957a9
KH
809 struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
810 struct external_PEI_filehdr *filehdr_out = (struct external_PEI_filehdr *) out;
277d1b5e 811
441f34fa
L
812 if (pe_data (abfd)->has_reloc_section
813 || pe_data (abfd)->dont_strip_reloc)
277d1b5e
ILT
814 filehdr_in->f_flags &= ~F_RELFLG;
815
816 if (pe_data (abfd)->dll)
817 filehdr_in->f_flags |= F_DLL;
818
830db048 819 filehdr_in->pe.e_magic = IMAGE_DOS_SIGNATURE;
277d1b5e
ILT
820 filehdr_in->pe.e_cblp = 0x90;
821 filehdr_in->pe.e_cp = 0x3;
822 filehdr_in->pe.e_crlc = 0x0;
823 filehdr_in->pe.e_cparhdr = 0x4;
824 filehdr_in->pe.e_minalloc = 0x0;
825 filehdr_in->pe.e_maxalloc = 0xffff;
826 filehdr_in->pe.e_ss = 0x0;
827 filehdr_in->pe.e_sp = 0xb8;
828 filehdr_in->pe.e_csum = 0x0;
829 filehdr_in->pe.e_ip = 0x0;
830 filehdr_in->pe.e_cs = 0x0;
831 filehdr_in->pe.e_lfarlc = 0x40;
832 filehdr_in->pe.e_ovno = 0x0;
833
6fa957a9 834 for (idx = 0; idx < 4; idx++)
277d1b5e
ILT
835 filehdr_in->pe.e_res[idx] = 0x0;
836
837 filehdr_in->pe.e_oemid = 0x0;
838 filehdr_in->pe.e_oeminfo = 0x0;
839
6fa957a9 840 for (idx = 0; idx < 10; idx++)
277d1b5e
ILT
841 filehdr_in->pe.e_res2[idx] = 0x0;
842
843 filehdr_in->pe.e_lfanew = 0x80;
844
6fa957a9
KH
845 /* This next collection of data are mostly just characters. It
846 appears to be constant within the headers put on NT exes. */
70cf6834
AE
847 memcpy (filehdr_in->pe.dos_message, pe_data (abfd)->dos_message,
848 sizeof (filehdr_in->pe.dos_message));
849
830db048 850 filehdr_in->pe.nt_signature = IMAGE_NT_SIGNATURE;
277d1b5e 851
dc810e39
AM
852 H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->f_magic);
853 H_PUT_16 (abfd, filehdr_in->f_nscns, filehdr_out->f_nscns);
277d1b5e 854
dfbfec24
BW
855 /* Use a real timestamp by default, unless the no-insert-timestamp
856 option was chosen. */
00386881 857 if ((pe_data (abfd)->timestamp) == -1)
61e2488c 858 H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
1c5f704f 859 else
00386881 860 H_PUT_32 (abfd, pe_data (abfd)->timestamp, filehdr_out->f_timdat);
0cb112f7 861
dc810e39
AM
862 PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
863 filehdr_out->f_symptr);
864 H_PUT_32 (abfd, filehdr_in->f_nsyms, filehdr_out->f_nsyms);
865 H_PUT_16 (abfd, filehdr_in->f_opthdr, filehdr_out->f_opthdr);
866 H_PUT_16 (abfd, filehdr_in->f_flags, filehdr_out->f_flags);
277d1b5e 867
1725a96e 868 /* Put in extra dos header stuff. This data remains essentially
277d1b5e 869 constant, it just has to be tacked on to the beginning of all exes
1725a96e 870 for NT. */
dc810e39
AM
871 H_PUT_16 (abfd, filehdr_in->pe.e_magic, filehdr_out->e_magic);
872 H_PUT_16 (abfd, filehdr_in->pe.e_cblp, filehdr_out->e_cblp);
873 H_PUT_16 (abfd, filehdr_in->pe.e_cp, filehdr_out->e_cp);
874 H_PUT_16 (abfd, filehdr_in->pe.e_crlc, filehdr_out->e_crlc);
875 H_PUT_16 (abfd, filehdr_in->pe.e_cparhdr, filehdr_out->e_cparhdr);
876 H_PUT_16 (abfd, filehdr_in->pe.e_minalloc, filehdr_out->e_minalloc);
877 H_PUT_16 (abfd, filehdr_in->pe.e_maxalloc, filehdr_out->e_maxalloc);
878 H_PUT_16 (abfd, filehdr_in->pe.e_ss, filehdr_out->e_ss);
879 H_PUT_16 (abfd, filehdr_in->pe.e_sp, filehdr_out->e_sp);
880 H_PUT_16 (abfd, filehdr_in->pe.e_csum, filehdr_out->e_csum);
881 H_PUT_16 (abfd, filehdr_in->pe.e_ip, filehdr_out->e_ip);
882 H_PUT_16 (abfd, filehdr_in->pe.e_cs, filehdr_out->e_cs);
883 H_PUT_16 (abfd, filehdr_in->pe.e_lfarlc, filehdr_out->e_lfarlc);
884 H_PUT_16 (abfd, filehdr_in->pe.e_ovno, filehdr_out->e_ovno);
1725a96e
NC
885
886 for (idx = 0; idx < 4; idx++)
dc810e39 887 H_PUT_16 (abfd, filehdr_in->pe.e_res[idx], filehdr_out->e_res[idx]);
1725a96e 888
dc810e39
AM
889 H_PUT_16 (abfd, filehdr_in->pe.e_oemid, filehdr_out->e_oemid);
890 H_PUT_16 (abfd, filehdr_in->pe.e_oeminfo, filehdr_out->e_oeminfo);
1725a96e
NC
891
892 for (idx = 0; idx < 10; idx++)
dc810e39 893 H_PUT_16 (abfd, filehdr_in->pe.e_res2[idx], filehdr_out->e_res2[idx]);
1725a96e 894
dc810e39 895 H_PUT_32 (abfd, filehdr_in->pe.e_lfanew, filehdr_out->e_lfanew);
277d1b5e 896
1725a96e 897 for (idx = 0; idx < 16; idx++)
dc810e39
AM
898 H_PUT_32 (abfd, filehdr_in->pe.dos_message[idx],
899 filehdr_out->dos_message[idx]);
277d1b5e 900
6fa957a9 901 /* Also put in the NT signature. */
dc810e39 902 H_PUT_32 (abfd, filehdr_in->pe.nt_signature, filehdr_out->nt_signature);
277d1b5e 903
277d1b5e
ILT
904 return FILHSZ;
905}
906
907unsigned int
7920ce38 908_bfd_XX_only_swap_filehdr_out (bfd * abfd, void * in, void * out)
277d1b5e 909{
6fa957a9
KH
910 struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
911 FILHDR *filehdr_out = (FILHDR *) out;
277d1b5e 912
dc810e39
AM
913 H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->f_magic);
914 H_PUT_16 (abfd, filehdr_in->f_nscns, filehdr_out->f_nscns);
915 H_PUT_32 (abfd, filehdr_in->f_timdat, filehdr_out->f_timdat);
916 PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr, filehdr_out->f_symptr);
917 H_PUT_32 (abfd, filehdr_in->f_nsyms, filehdr_out->f_nsyms);
918 H_PUT_16 (abfd, filehdr_in->f_opthdr, filehdr_out->f_opthdr);
919 H_PUT_16 (abfd, filehdr_in->f_flags, filehdr_out->f_flags);
277d1b5e
ILT
920
921 return FILHSZ;
922}
923
924unsigned int
7920ce38 925_bfd_XXi_swap_scnhdr_out (bfd * abfd, void * in, void * out)
277d1b5e 926{
6fa957a9
KH
927 struct internal_scnhdr *scnhdr_int = (struct internal_scnhdr *) in;
928 SCNHDR *scnhdr_ext = (SCNHDR *) out;
277d1b5e
ILT
929 unsigned int ret = SCNHSZ;
930 bfd_vma ps;
931 bfd_vma ss;
932
6fa957a9 933 memcpy (scnhdr_ext->s_name, scnhdr_int->s_name, sizeof (scnhdr_int->s_name));
277d1b5e 934
87fa7d56
JB
935 ss = scnhdr_int->s_vaddr - pe_data (abfd)->pe_opthdr.ImageBase;
936 if (scnhdr_int->s_vaddr < pe_data (abfd)->pe_opthdr.ImageBase)
2aaf2ce8 937 _bfd_error_handler (_("%pB:%.8s: section below image base"),
87fa7d56
JB
938 abfd, scnhdr_int->s_name);
939 else if(ss != (ss & 0xffffffff))
2aaf2ce8 940 _bfd_error_handler (_("%pB:%.8s: RVA truncated"), abfd, scnhdr_int->s_name);
87fa7d56 941 PUT_SCNHDR_VADDR (abfd, ss & 0xffffffff, scnhdr_ext->s_vaddr);
277d1b5e 942
5933bdc9
ILT
943 /* NT wants the size data to be rounded up to the next
944 NT_FILE_ALIGNMENT, but zero if it has no content (as in .bss,
945 sometimes). */
5933bdc9 946 if ((scnhdr_int->s_flags & IMAGE_SCN_CNT_UNINITIALIZED_DATA) != 0)
277d1b5e 947 {
92dd4511 948 if (bfd_pei_p (abfd))
ff0c9faf
NC
949 {
950 ps = scnhdr_int->s_size;
951 ss = 0;
952 }
953 else
954 {
07d6d2b8
AM
955 ps = 0;
956 ss = scnhdr_int->s_size;
ff0c9faf 957 }
277d1b5e
ILT
958 }
959 else
960 {
92dd4511 961 if (bfd_pei_p (abfd))
ff0c9faf
NC
962 ps = scnhdr_int->s_paddr;
963 else
964 ps = 0;
965
277d1b5e
ILT
966 ss = scnhdr_int->s_size;
967 }
968
969 PUT_SCNHDR_SIZE (abfd, ss,
dc810e39 970 scnhdr_ext->s_size);
277d1b5e 971
5933bdc9 972 /* s_paddr in PE is really the virtual size. */
dc810e39 973 PUT_SCNHDR_PADDR (abfd, ps, scnhdr_ext->s_paddr);
277d1b5e
ILT
974
975 PUT_SCNHDR_SCNPTR (abfd, scnhdr_int->s_scnptr,
dc810e39 976 scnhdr_ext->s_scnptr);
277d1b5e 977 PUT_SCNHDR_RELPTR (abfd, scnhdr_int->s_relptr,
dc810e39 978 scnhdr_ext->s_relptr);
277d1b5e 979 PUT_SCNHDR_LNNOPTR (abfd, scnhdr_int->s_lnnoptr,
dc810e39 980 scnhdr_ext->s_lnnoptr);
277d1b5e 981
277d1b5e 982 {
25c80428
NC
983 /* Extra flags must be set when dealing with PE. All sections should also
984 have the IMAGE_SCN_MEM_READ (0x40000000) flag set. In addition, the
985 .text section must have IMAGE_SCN_MEM_EXECUTE (0x20000000) and the data
986 sections (.idata, .data, .bss, .CRT) must have IMAGE_SCN_MEM_WRITE set
987 (this is especially important when dealing with the .idata section since
988 the addresses for routines from .dlls must be overwritten). If .reloc
989 section data is ever generated, we must add IMAGE_SCN_MEM_DISCARDABLE
990 (0x02000000). Also, the resource data should also be read and
991 writable. */
992
fe49679d 993 /* FIXME: Alignment is also encoded in this field, at least on
25c80428
NC
994 ARM-WINCE. Although - how do we get the original alignment field
995 back ? */
996
997 typedef struct
998 {
7bd8862c 999 char section_name[SCNNMLEN];
25c80428
NC
1000 unsigned long must_have;
1001 }
1002 pe_required_section_flags;
4e1fc599 1003
25c80428
NC
1004 pe_required_section_flags known_sections [] =
1005 {
1006 { ".arch", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_DISCARDABLE | IMAGE_SCN_ALIGN_8BYTES },
1007 { ".bss", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_UNINITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1008 { ".data", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1009 { ".edata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
1010 { ".idata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1011 { ".pdata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
1012 { ".rdata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
1013 { ".reloc", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_DISCARDABLE },
1014 { ".rsrc", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1015 { ".text" , IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_CODE | IMAGE_SCN_MEM_EXECUTE },
1016 { ".tls", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_WRITE },
1017 { ".xdata", IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_INITIALIZED_DATA },
25c80428
NC
1018 };
1019
1020 pe_required_section_flags * p;
1725a96e 1021
66bed356
DS
1022 /* We have defaulted to adding the IMAGE_SCN_MEM_WRITE flag, but now
1023 we know exactly what this specific section wants so we remove it
1024 and then allow the must_have field to add it back in if necessary.
1025 However, we don't remove IMAGE_SCN_MEM_WRITE flag from .text if the
1026 default WP_TEXT file flag has been cleared. WP_TEXT may be cleared
1027 by ld --enable-auto-import (if auto-import is actually needed),
1028 by ld --omagic, or by obcopy --writable-text. */
66bed356 1029
7bd8862c
AM
1030 for (p = known_sections;
1031 p < known_sections + ARRAY_SIZE (known_sections);
1032 p++)
1033 if (memcmp (scnhdr_int->s_name, p->section_name, SCNNMLEN) == 0)
25c80428 1034 {
7bd8862c 1035 if (memcmp (scnhdr_int->s_name, ".text", sizeof ".text")
3c9d0484 1036 || (bfd_get_file_flags (abfd) & WP_TEXT))
d48bdb99
AM
1037 scnhdr_int->s_flags &= ~IMAGE_SCN_MEM_WRITE;
1038 scnhdr_int->s_flags |= p->must_have;
25c80428
NC
1039 break;
1040 }
1041
d48bdb99 1042 H_PUT_32 (abfd, scnhdr_int->s_flags, scnhdr_ext->s_flags);
277d1b5e
ILT
1043 }
1044
cb43721d 1045 if (coff_data (abfd)->link_info
0e1862bb
L
1046 && ! bfd_link_relocatable (coff_data (abfd)->link_info)
1047 && ! bfd_link_pic (coff_data (abfd)->link_info)
7bd8862c 1048 && memcmp (scnhdr_int->s_name, ".text", sizeof ".text") == 0)
277d1b5e 1049 {
cb43721d 1050 /* By inference from looking at MS output, the 32 bit field
7dee875e 1051 which is the combination of the number_of_relocs and
cb43721d
ILT
1052 number_of_linenos is used for the line number count in
1053 executables. A 16-bit field won't do for cc1. The MS
1054 document says that the number of relocs is zero for
1055 executables, but the 17-th bit has been observed to be there.
1056 Overflow is not an issue: a 4G-line program will overflow a
1057 bunch of other fields long before this! */
dc810e39
AM
1058 H_PUT_16 (abfd, (scnhdr_int->s_nlnno & 0xffff), scnhdr_ext->s_nlnno);
1059 H_PUT_16 (abfd, (scnhdr_int->s_nlnno >> 16), scnhdr_ext->s_nreloc);
277d1b5e 1060 }
277d1b5e
ILT
1061 else
1062 {
cb43721d 1063 if (scnhdr_int->s_nlnno <= 0xffff)
dc810e39 1064 H_PUT_16 (abfd, scnhdr_int->s_nlnno, scnhdr_ext->s_nlnno);
cb43721d
ILT
1065 else
1066 {
695344c0 1067 /* xgettext:c-format */
871b3ab2 1068 _bfd_error_handler (_("%pB: line number overflow: 0x%lx > 0xffff"),
dae82561 1069 abfd, scnhdr_int->s_nlnno);
cb43721d 1070 bfd_set_error (bfd_error_file_truncated);
dc810e39 1071 H_PUT_16 (abfd, 0xffff, scnhdr_ext->s_nlnno);
cb43721d
ILT
1072 ret = 0;
1073 }
1725a96e 1074
cd339148 1075 /* Although we could encode 0xffff relocs here, we do not, to be
07d6d2b8
AM
1076 consistent with other parts of bfd. Also it lets us warn, as
1077 we should never see 0xffff here w/o having the overflow flag
1078 set. */
cd339148 1079 if (scnhdr_int->s_nreloc < 0xffff)
dc810e39 1080 H_PUT_16 (abfd, scnhdr_int->s_nreloc, scnhdr_ext->s_nreloc);
cb43721d
ILT
1081 else
1082 {
1725a96e 1083 /* PE can deal with large #s of relocs, but not here. */
dc810e39 1084 H_PUT_16 (abfd, 0xffff, scnhdr_ext->s_nreloc);
3e4554a2 1085 scnhdr_int->s_flags |= IMAGE_SCN_LNK_NRELOC_OVFL;
dc810e39 1086 H_PUT_32 (abfd, scnhdr_int->s_flags, scnhdr_ext->s_flags);
cb43721d 1087 }
277d1b5e
ILT
1088 }
1089 return ret;
1090}
1091
61e2488c
JT
1092void
1093_bfd_XXi_swap_debugdir_in (bfd * abfd, void * ext1, void * in1)
1094{
1095 struct external_IMAGE_DEBUG_DIRECTORY *ext = (struct external_IMAGE_DEBUG_DIRECTORY *) ext1;
1096 struct internal_IMAGE_DEBUG_DIRECTORY *in = (struct internal_IMAGE_DEBUG_DIRECTORY *) in1;
1097
1098 in->Characteristics = H_GET_32(abfd, ext->Characteristics);
1099 in->TimeDateStamp = H_GET_32(abfd, ext->TimeDateStamp);
1100 in->MajorVersion = H_GET_16(abfd, ext->MajorVersion);
1101 in->MinorVersion = H_GET_16(abfd, ext->MinorVersion);
1102 in->Type = H_GET_32(abfd, ext->Type);
1103 in->SizeOfData = H_GET_32(abfd, ext->SizeOfData);
1104 in->AddressOfRawData = H_GET_32(abfd, ext->AddressOfRawData);
1105 in->PointerToRawData = H_GET_32(abfd, ext->PointerToRawData);
1106}
1107
1108unsigned int
1109_bfd_XXi_swap_debugdir_out (bfd * abfd, void * inp, void * extp)
1110{
1111 struct external_IMAGE_DEBUG_DIRECTORY *ext = (struct external_IMAGE_DEBUG_DIRECTORY *) extp;
1112 struct internal_IMAGE_DEBUG_DIRECTORY *in = (struct internal_IMAGE_DEBUG_DIRECTORY *) inp;
1113
1114 H_PUT_32(abfd, in->Characteristics, ext->Characteristics);
1115 H_PUT_32(abfd, in->TimeDateStamp, ext->TimeDateStamp);
1116 H_PUT_16(abfd, in->MajorVersion, ext->MajorVersion);
1117 H_PUT_16(abfd, in->MinorVersion, ext->MinorVersion);
1118 H_PUT_32(abfd, in->Type, ext->Type);
1119 H_PUT_32(abfd, in->SizeOfData, ext->SizeOfData);
1120 H_PUT_32(abfd, in->AddressOfRawData, ext->AddressOfRawData);
1121 H_PUT_32(abfd, in->PointerToRawData, ext->PointerToRawData);
1122
1123 return sizeof (struct external_IMAGE_DEBUG_DIRECTORY);
1124}
1125
c74f7d1c 1126CODEVIEW_INFO *
61e2488c
JT
1127_bfd_XXi_slurp_codeview_record (bfd * abfd, file_ptr where, unsigned long length, CODEVIEW_INFO *cvinfo)
1128{
1129 char buffer[256+1];
07d22f64 1130 bfd_size_type nread;
61e2488c
JT
1131
1132 if (bfd_seek (abfd, where, SEEK_SET) != 0)
1133 return NULL;
1134
07d22f64
AM
1135 if (length <= sizeof (CV_INFO_PDB70) && length <= sizeof (CV_INFO_PDB20))
1136 return NULL;
1137 if (length > 256)
1138 length = 256;
1139 nread = bfd_bread (buffer, length, abfd);
1140 if (length != nread)
61e2488c
JT
1141 return NULL;
1142
6e6e7cfc 1143 /* Ensure null termination of filename. */
07d22f64 1144 memset (buffer + nread, 0, sizeof (buffer) - nread);
61e2488c 1145
77ef8654 1146 cvinfo->CVSignature = H_GET_32 (abfd, buffer);
61e2488c
JT
1147 cvinfo->Age = 0;
1148
1149 if ((cvinfo->CVSignature == CVINFO_PDB70_CVSIGNATURE)
1150 && (length > sizeof (CV_INFO_PDB70)))
1151 {
1152 CV_INFO_PDB70 *cvinfo70 = (CV_INFO_PDB70 *)(buffer);
1153
1154 cvinfo->Age = H_GET_32(abfd, cvinfo70->Age);
6e6e7cfc
JT
1155
1156 /* A GUID consists of 4,2,2 byte values in little-endian order, followed
07d6d2b8
AM
1157 by 8 single bytes. Byte swap them so we can conveniently treat the GUID
1158 as 16 bytes in big-endian order. */
6e6e7cfc
JT
1159 bfd_putb32 (bfd_getl32 (cvinfo70->Signature), cvinfo->Signature);
1160 bfd_putb16 (bfd_getl16 (&(cvinfo70->Signature[4])), &(cvinfo->Signature[4]));
1161 bfd_putb16 (bfd_getl16 (&(cvinfo70->Signature[6])), &(cvinfo->Signature[6]));
1162 memcpy (&(cvinfo->Signature[8]), &(cvinfo70->Signature[8]), 8);
1163
61e2488c 1164 cvinfo->SignatureLength = CV_INFO_SIGNATURE_LENGTH;
279edac5 1165 /* cvinfo->PdbFileName = cvinfo70->PdbFileName; */
61e2488c
JT
1166
1167 return cvinfo;
1168 }
1169 else if ((cvinfo->CVSignature == CVINFO_PDB20_CVSIGNATURE)
07d6d2b8 1170 && (length > sizeof (CV_INFO_PDB20)))
61e2488c
JT
1171 {
1172 CV_INFO_PDB20 *cvinfo20 = (CV_INFO_PDB20 *)(buffer);
1173 cvinfo->Age = H_GET_32(abfd, cvinfo20->Age);
1174 memcpy (cvinfo->Signature, cvinfo20->Signature, 4);
1175 cvinfo->SignatureLength = 4;
279edac5 1176 /* cvinfo->PdbFileName = cvinfo20->PdbFileName; */
61e2488c
JT
1177
1178 return cvinfo;
1179 }
1180
1181 return NULL;
1182}
1183
1184unsigned int
1185_bfd_XXi_write_codeview_record (bfd * abfd, file_ptr where, CODEVIEW_INFO *cvinfo)
1186{
7769fa97
NC
1187 const bfd_size_type size = sizeof (CV_INFO_PDB70) + 1;
1188 bfd_size_type written;
61e2488c 1189 CV_INFO_PDB70 *cvinfo70;
7769fa97 1190 char * buffer;
61e2488c
JT
1191
1192 if (bfd_seek (abfd, where, SEEK_SET) != 0)
1193 return 0;
1194
ec9bd0a2
AM
1195 buffer = bfd_malloc (size);
1196 if (buffer == NULL)
1197 return 0;
1198
61e2488c
JT
1199 cvinfo70 = (CV_INFO_PDB70 *) buffer;
1200 H_PUT_32 (abfd, CVINFO_PDB70_CVSIGNATURE, cvinfo70->CvSignature);
6e6e7cfc
JT
1201
1202 /* Byte swap the GUID from 16 bytes in big-endian order to 4,2,2 byte values
1203 in little-endian order, followed by 8 single bytes. */
1204 bfd_putl32 (bfd_getb32 (cvinfo->Signature), cvinfo70->Signature);
1205 bfd_putl16 (bfd_getb16 (&(cvinfo->Signature[4])), &(cvinfo70->Signature[4]));
1206 bfd_putl16 (bfd_getb16 (&(cvinfo->Signature[6])), &(cvinfo70->Signature[6]));
1207 memcpy (&(cvinfo70->Signature[8]), &(cvinfo->Signature[8]), 8);
1208
61e2488c
JT
1209 H_PUT_32 (abfd, cvinfo->Age, cvinfo70->Age);
1210 cvinfo70->PdbFileName[0] = '\0';
1211
7769fa97
NC
1212 written = bfd_bwrite (buffer, size, abfd);
1213
1214 free (buffer);
61e2488c 1215
7769fa97 1216 return written == size ? size : 0;
61e2488c
JT
1217}
1218
1725a96e 1219static char * dir_names[IMAGE_NUMBEROF_DIRECTORY_ENTRIES] =
7920ce38
NC
1220{
1221 N_("Export Directory [.edata (or where ever we found it)]"),
1222 N_("Import Directory [parts of .idata]"),
1223 N_("Resource Directory [.rsrc]"),
1224 N_("Exception Directory [.pdata]"),
1225 N_("Security Directory"),
1226 N_("Base Relocation Directory [.reloc]"),
1227 N_("Debug Directory"),
1228 N_("Description Directory"),
1229 N_("Special Directory"),
1230 N_("Thread Storage Directory [.tls]"),
1231 N_("Load Configuration Directory"),
1232 N_("Bound Import Directory"),
1233 N_("Import Address Table Directory"),
1234 N_("Delay Import Directory"),
6c73cbb1 1235 N_("CLR Runtime Header"),
7920ce38
NC
1236 N_("Reserved")
1237};
1725a96e 1238
0a1b45a2 1239static bool
7920ce38 1240pe_print_idata (bfd * abfd, void * vfile)
277d1b5e
ILT
1241{
1242 FILE *file = (FILE *) vfile;
a76b448c 1243 bfd_byte *data;
8181c403
AM
1244 asection *section;
1245 bfd_signed_vma adj;
a76b448c 1246 bfd_size_type datasize = 0;
277d1b5e 1247 bfd_size_type dataoff;
277d1b5e 1248 bfd_size_type i;
277d1b5e
ILT
1249 int onaline = 20;
1250
1251 pe_data_type *pe = pe_data (abfd);
1252 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
1253
8181c403 1254 bfd_vma addr;
277d1b5e 1255
6c73cbb1 1256 addr = extra->DataDirectory[PE_IMPORT_TABLE].VirtualAddress;
277d1b5e 1257
6c73cbb1 1258 if (addr == 0 && extra->DataDirectory[PE_IMPORT_TABLE].Size == 0)
8181c403 1259 {
a76b448c
AM
1260 /* Maybe the extra header isn't there. Look for the section. */
1261 section = bfd_get_section_by_name (abfd, ".idata");
1262 if (section == NULL)
0a1b45a2 1263 return true;
a76b448c
AM
1264
1265 addr = section->vma;
eea6121a 1266 datasize = section->size;
a76b448c 1267 if (datasize == 0)
0a1b45a2 1268 return true;
8181c403 1269 }
a76b448c 1270 else
8181c403 1271 {
a76b448c
AM
1272 addr += extra->ImageBase;
1273 for (section = abfd->sections; section != NULL; section = section->next)
1274 {
eea6121a 1275 datasize = section->size;
a76b448c
AM
1276 if (addr >= section->vma && addr < section->vma + datasize)
1277 break;
1278 }
1279
1280 if (section == NULL)
1281 {
1282 fprintf (file,
1283 _("\nThere is an import table, but the section containing it could not be found\n"));
0a1b45a2 1284 return true;
a76b448c 1285 }
b69c8728 1286 else if (!(section->flags & SEC_HAS_CONTENTS))
07d6d2b8 1287 {
b69c8728
JT
1288 fprintf (file,
1289 _("\nThere is an import table in %s, but that section has no contents\n"),
1290 section->name);
0a1b45a2 1291 return true;
07d6d2b8 1292 }
8181c403 1293 }
5933bdc9 1294
695344c0 1295 /* xgettext:c-format */
8181c403
AM
1296 fprintf (file, _("\nThere is an import table in %s at 0x%lx\n"),
1297 section->name, (unsigned long) addr);
277d1b5e 1298
8181c403 1299 dataoff = addr - section->vma;
277d1b5e 1300
9602af51 1301 fprintf (file,
6fa957a9
KH
1302 _("\nThe Import Tables (interpreted %s section contents)\n"),
1303 section->name);
9602af51 1304 fprintf (file,
ca09e32b
NC
1305 _("\
1306 vma: Hint Time Forward DLL First\n\
1307 Table Stamp Chain Name Thunk\n"));
277d1b5e 1308
db8503c4 1309 /* Read the whole section. Some of the fields might be before dataoff. */
eea6121a
AM
1310 if (!bfd_malloc_and_get_section (abfd, section, &data))
1311 {
c9594989 1312 free (data);
0a1b45a2 1313 return false;
eea6121a 1314 }
277d1b5e 1315
db8503c4 1316 adj = section->vma - extra->ImageBase;
277d1b5e 1317
5e226794 1318 /* Print all image import descriptors. */
4e1fc599 1319 for (i = dataoff; i + onaline <= datasize; i += onaline)
277d1b5e
ILT
1320 {
1321 bfd_vma hint_addr;
1322 bfd_vma time_stamp;
1323 bfd_vma forward_chain;
1324 bfd_vma dll_name;
1325 bfd_vma first_thunk;
1326 int idx = 0;
1327 bfd_size_type j;
1328 char *dll;
1329
6c73cbb1 1330 /* Print (i + extra->DataDirectory[PE_IMPORT_TABLE].VirtualAddress). */
4e1fc599
AM
1331 fprintf (file, " %08lx\t", (unsigned long) (i + adj));
1332 hint_addr = bfd_get_32 (abfd, data + i);
1333 time_stamp = bfd_get_32 (abfd, data + i + 4);
1334 forward_chain = bfd_get_32 (abfd, data + i + 8);
1335 dll_name = bfd_get_32 (abfd, data + i + 12);
1336 first_thunk = bfd_get_32 (abfd, data + i + 16);
5933bdc9
ILT
1337
1338 fprintf (file, "%08lx %08lx %08lx %08lx %08lx\n",
a76b448c
AM
1339 (unsigned long) hint_addr,
1340 (unsigned long) time_stamp,
1341 (unsigned long) forward_chain,
1342 (unsigned long) dll_name,
1343 (unsigned long) first_thunk);
277d1b5e
ILT
1344
1345 if (hint_addr == 0 && first_thunk == 0)
1346 break;
1347
a50b2160 1348 if (dll_name - adj >= section->size)
07d6d2b8 1349 break;
a50b2160 1350
8181c403 1351 dll = (char *) data + dll_name - adj;
36e9d67b
NC
1352 /* PR 17512 file: 078-12277-0.004. */
1353 bfd_size_type maxlen = (char *)(data + datasize) - dll - 1;
1354 fprintf (file, _("\n\tDLL Name: %.*s\n"), (int) maxlen, dll);
277d1b5e 1355
9949827b
DBR
1356 /* PR 21546: When the Hint Address is zero,
1357 we try the First Thunk instead. */
1358 if (hint_addr == 0)
1359 hint_addr = first_thunk;
1360
53db9cf9 1361 if (hint_addr != 0 && hint_addr - adj < datasize)
277d1b5e 1362 {
6e7c73dd
CF
1363 bfd_byte *ft_data;
1364 asection *ft_section;
1365 bfd_vma ft_addr;
1366 bfd_size_type ft_datasize;
1367 int ft_idx;
4e1fc599 1368 int ft_allocated;
6e7c73dd 1369
5e226794 1370 fprintf (file, _("\tvma: Hint/Ord Member-Name Bound-To\n"));
277d1b5e 1371
8181c403 1372 idx = hint_addr - adj;
4e1fc599 1373
5e226794 1374 ft_addr = first_thunk + extra->ImageBase;
6e7c73dd 1375 ft_idx = first_thunk - adj;
4e1fc599
AM
1376 ft_data = data + ft_idx;
1377 ft_datasize = datasize - ft_idx;
1378 ft_allocated = 0;
6c73cbb1
NC
1379
1380 if (first_thunk != hint_addr)
6e7c73dd
CF
1381 {
1382 /* Find the section which contains the first thunk. */
1383 for (ft_section = abfd->sections;
1384 ft_section != NULL;
1385 ft_section = ft_section->next)
1386 {
6e7c73dd 1387 if (ft_addr >= ft_section->vma
4e1fc599 1388 && ft_addr < ft_section->vma + ft_section->size)
6e7c73dd
CF
1389 break;
1390 }
1391
1392 if (ft_section == NULL)
1393 {
1394 fprintf (file,
1395 _("\nThere is a first thunk, but the section containing it could not be found\n"));
1396 continue;
1397 }
1398
1399 /* Now check to see if this section is the same as our current
1400 section. If it is not then we will have to load its data in. */
4e1fc599 1401 if (ft_section != section)
6e7c73dd
CF
1402 {
1403 ft_idx = first_thunk - (ft_section->vma - extra->ImageBase);
4e1fc599
AM
1404 ft_datasize = ft_section->size - ft_idx;
1405 ft_data = (bfd_byte *) bfd_malloc (ft_datasize);
6e7c73dd
CF
1406 if (ft_data == NULL)
1407 continue;
1408
4e1fc599
AM
1409 /* Read ft_datasize bytes starting at offset ft_idx. */
1410 if (!bfd_get_section_contents (abfd, ft_section, ft_data,
1411 (bfd_vma) ft_idx, ft_datasize))
6e7c73dd
CF
1412 {
1413 free (ft_data);
1414 continue;
1415 }
6e7c73dd
CF
1416 ft_allocated = 1;
1417 }
1418 }
5e226794
NC
1419
1420 /* Print HintName vector entries. */
99ad8390 1421#ifdef COFF_WITH_pex64
4e1fc599 1422 for (j = 0; idx + j + 8 <= datasize; j += 8)
99ad8390 1423 {
f41e4712 1424 bfd_size_type amt;
99ad8390
NC
1425 unsigned long member = bfd_get_32 (abfd, data + idx + j);
1426 unsigned long member_high = bfd_get_32 (abfd, data + idx + j + 4);
1427
1428 if (!member && !member_high)
1429 break;
1430
f41e4712
NC
1431 amt = member - adj;
1432
5879bb8f 1433 if (HighBitSet (member_high))
99ad8390 1434 fprintf (file, "\t%lx%08lx\t %4lx%08lx <none>",
5879bb8f
NC
1435 member_high, member,
1436 WithoutHighBit (member_high), member);
20ad5e28 1437 /* PR binutils/17512: Handle corrupt PE data. */
4d465c68 1438 else if (amt >= datasize || amt + 2 >= datasize)
20ad5e28 1439 fprintf (file, _("\t<corrupt: 0x%04lx>"), member);
99ad8390
NC
1440 else
1441 {
1442 int ordinal;
1443 char *member_name;
1444
f41e4712
NC
1445 ordinal = bfd_get_16 (abfd, data + amt);
1446 member_name = (char *) data + amt + 2;
1447 fprintf (file, "\t%04lx\t %4d %.*s",member, ordinal,
1448 (int) (datasize - (amt + 2)), member_name);
99ad8390
NC
1449 }
1450
1451 /* If the time stamp is not zero, the import address
1452 table holds actual addresses. */
1453 if (time_stamp != 0
1454 && first_thunk != 0
4e1fc599
AM
1455 && first_thunk != hint_addr
1456 && j + 4 <= ft_datasize)
99ad8390 1457 fprintf (file, "\t%04lx",
4e1fc599 1458 (unsigned long) bfd_get_32 (abfd, ft_data + j));
99ad8390
NC
1459 fprintf (file, "\n");
1460 }
1461#else
4e1fc599 1462 for (j = 0; idx + j + 4 <= datasize; j += 4)
277d1b5e 1463 {
f41e4712 1464 bfd_size_type amt;
277d1b5e
ILT
1465 unsigned long member = bfd_get_32 (abfd, data + idx + j);
1466
4e1fc599 1467 /* Print single IMAGE_IMPORT_BY_NAME vector. */
277d1b5e
ILT
1468 if (member == 0)
1469 break;
5e226794 1470
f41e4712 1471 amt = member - adj;
4d465c68 1472
5879bb8f 1473 if (HighBitSet (member))
5e226794 1474 fprintf (file, "\t%04lx\t %4lu <none>",
5879bb8f 1475 member, WithoutHighBit (member));
20ad5e28 1476 /* PR binutils/17512: Handle corrupt PE data. */
4d465c68 1477 else if (amt >= datasize || amt + 2 >= datasize)
20ad5e28 1478 fprintf (file, _("\t<corrupt: 0x%04lx>"), member);
277d1b5e
ILT
1479 else
1480 {
1481 int ordinal;
1482 char *member_name;
1483
f41e4712
NC
1484 ordinal = bfd_get_16 (abfd, data + amt);
1485 member_name = (char *) data + amt + 2;
1486 fprintf (file, "\t%04lx\t %4d %.*s",
1487 member, ordinal,
1488 (int) (datasize - (amt + 2)), member_name);
277d1b5e 1489 }
5e226794 1490
277d1b5e 1491 /* If the time stamp is not zero, the import address
5e226794
NC
1492 table holds actual addresses. */
1493 if (time_stamp != 0
1494 && first_thunk != 0
4e1fc599
AM
1495 && first_thunk != hint_addr
1496 && j + 4 <= ft_datasize)
277d1b5e 1497 fprintf (file, "\t%04lx",
4e1fc599 1498 (unsigned long) bfd_get_32 (abfd, ft_data + j));
277d1b5e
ILT
1499
1500 fprintf (file, "\n");
1501 }
99ad8390 1502#endif
e4cf60a8
NC
1503 if (ft_allocated)
1504 free (ft_data);
277d1b5e
ILT
1505 }
1506
9602af51 1507 fprintf (file, "\n");
277d1b5e
ILT
1508 }
1509
1510 free (data);
1511
0a1b45a2 1512 return true;
277d1b5e
ILT
1513}
1514
0a1b45a2 1515static bool
7920ce38 1516pe_print_edata (bfd * abfd, void * vfile)
277d1b5e
ILT
1517{
1518 FILE *file = (FILE *) vfile;
a76b448c 1519 bfd_byte *data;
8181c403 1520 asection *section;
a76b448c 1521 bfd_size_type datasize = 0;
277d1b5e
ILT
1522 bfd_size_type dataoff;
1523 bfd_size_type i;
b69c8728 1524 bfd_vma adj;
1725a96e
NC
1525 struct EDT_type
1526 {
07d6d2b8 1527 long export_flags; /* Reserved - should be zero. */
6fa957a9
KH
1528 long time_stamp;
1529 short major_ver;
1530 short minor_ver;
07d6d2b8
AM
1531 bfd_vma name; /* RVA - relative to image base. */
1532 long base; /* Ordinal base. */
7920ce38 1533 unsigned long num_functions;/* Number in the export address table. */
07d6d2b8 1534 unsigned long num_names; /* Number in the name pointer table. */
7920ce38
NC
1535 bfd_vma eat_addr; /* RVA to the export address table. */
1536 bfd_vma npt_addr; /* RVA to the Export Name Pointer Table. */
1537 bfd_vma ot_addr; /* RVA to the Ordinal Table. */
6fa957a9 1538 } edt;
277d1b5e
ILT
1539
1540 pe_data_type *pe = pe_data (abfd);
1541 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
1542
8181c403 1543 bfd_vma addr;
277d1b5e 1544
6c73cbb1 1545 addr = extra->DataDirectory[PE_EXPORT_TABLE].VirtualAddress;
277d1b5e 1546
6c73cbb1 1547 if (addr == 0 && extra->DataDirectory[PE_EXPORT_TABLE].Size == 0)
8181c403 1548 {
a76b448c
AM
1549 /* Maybe the extra header isn't there. Look for the section. */
1550 section = bfd_get_section_by_name (abfd, ".edata");
1551 if (section == NULL)
0a1b45a2 1552 return true;
a76b448c
AM
1553
1554 addr = section->vma;
0facbdf5 1555 dataoff = 0;
eea6121a 1556 datasize = section->size;
a76b448c 1557 if (datasize == 0)
0a1b45a2 1558 return true;
8181c403 1559 }
a76b448c 1560 else
8181c403 1561 {
a76b448c 1562 addr += extra->ImageBase;
1725a96e 1563
a76b448c 1564 for (section = abfd->sections; section != NULL; section = section->next)
0facbdf5
NC
1565 if (addr >= section->vma && addr < section->vma + section->size)
1566 break;
a76b448c
AM
1567
1568 if (section == NULL)
1569 {
1570 fprintf (file,
1571 _("\nThere is an export table, but the section containing it could not be found\n"));
0a1b45a2 1572 return true;
a76b448c 1573 }
b69c8728 1574 else if (!(section->flags & SEC_HAS_CONTENTS))
07d6d2b8 1575 {
b69c8728
JT
1576 fprintf (file,
1577 _("\nThere is an export table in %s, but that section has no contents\n"),
1578 section->name);
0a1b45a2 1579 return true;
07d6d2b8 1580 }
0facbdf5
NC
1581
1582 dataoff = addr - section->vma;
6c73cbb1 1583 datasize = extra->DataDirectory[PE_EXPORT_TABLE].Size;
cf93e9c2
AM
1584 if (dataoff > section->size
1585 || datasize > section->size - dataoff)
0facbdf5
NC
1586 {
1587 fprintf (file,
1588 _("\nThere is an export table in %s, but it does not fit into that section\n"),
1589 section->name);
0a1b45a2 1590 return true;
0facbdf5 1591 }
277d1b5e
ILT
1592 }
1593
5a4b0ccc 1594 /* PR 17512: Handle corrupt PE binaries. */
b4560c7d 1595 if (datasize < 40)
5a4b0ccc
NC
1596 {
1597 fprintf (file,
695344c0 1598 /* xgettext:c-format */
5a4b0ccc
NC
1599 _("\nThere is an export table in %s, but it is too small (%d)\n"),
1600 section->name, (int) datasize);
0a1b45a2 1601 return true;
5a4b0ccc
NC
1602 }
1603
695344c0 1604 /* xgettext:c-format */
8181c403
AM
1605 fprintf (file, _("\nThere is an export table in %s at 0x%lx\n"),
1606 section->name, (unsigned long) addr);
1607
a50b1753 1608 data = (bfd_byte *) bfd_malloc (datasize);
8181c403 1609 if (data == NULL)
0a1b45a2 1610 return false;
277d1b5e 1611
7920ce38 1612 if (! bfd_get_section_contents (abfd, section, data,
dc810e39 1613 (file_ptr) dataoff, datasize))
0a1b45a2 1614 return false;
277d1b5e 1615
6fa957a9 1616 /* Go get Export Directory Table. */
07d6d2b8
AM
1617 edt.export_flags = bfd_get_32 (abfd, data + 0);
1618 edt.time_stamp = bfd_get_32 (abfd, data + 4);
1619 edt.major_ver = bfd_get_16 (abfd, data + 8);
1620 edt.minor_ver = bfd_get_16 (abfd, data + 10);
1621 edt.name = bfd_get_32 (abfd, data + 12);
1622 edt.base = bfd_get_32 (abfd, data + 16);
6fa957a9 1623 edt.num_functions = bfd_get_32 (abfd, data + 20);
07d6d2b8
AM
1624 edt.num_names = bfd_get_32 (abfd, data + 24);
1625 edt.eat_addr = bfd_get_32 (abfd, data + 28);
1626 edt.npt_addr = bfd_get_32 (abfd, data + 32);
1627 edt.ot_addr = bfd_get_32 (abfd, data + 36);
277d1b5e 1628
8181c403 1629 adj = section->vma - extra->ImageBase + dataoff;
277d1b5e 1630
1725a96e 1631 /* Dump the EDT first. */
9602af51 1632 fprintf (file,
6fa957a9
KH
1633 _("\nThe Export Tables (interpreted %s section contents)\n\n"),
1634 section->name);
277d1b5e 1635
9602af51 1636 fprintf (file,
6fa957a9 1637 _("Export Flags \t\t\t%lx\n"), (unsigned long) edt.export_flags);
277d1b5e 1638
9602af51 1639 fprintf (file,
6fa957a9 1640 _("Time/Date stamp \t\t%lx\n"), (unsigned long) edt.time_stamp);
277d1b5e 1641
9602af51 1642 fprintf (file,
695344c0 1643 /* xgettext:c-format */
6fa957a9 1644 _("Major/Minor \t\t\t%d/%d\n"), edt.major_ver, edt.minor_ver);
277d1b5e
ILT
1645
1646 fprintf (file,
1647 _("Name \t\t\t\t"));
ebf12fbe 1648 bfd_fprintf_vma (abfd, file, edt.name);
b69c8728
JT
1649
1650 if ((edt.name >= adj) && (edt.name < adj + datasize))
201159ec
NC
1651 fprintf (file, " %.*s\n",
1652 (int) (datasize - (edt.name - adj)),
1653 data + edt.name - adj);
b69c8728
JT
1654 else
1655 fprintf (file, "(outside .edata section)\n");
277d1b5e 1656
9602af51 1657 fprintf (file,
6fa957a9 1658 _("Ordinal Base \t\t\t%ld\n"), edt.base);
277d1b5e 1659
9602af51 1660 fprintf (file,
6fa957a9 1661 _("Number in:\n"));
277d1b5e 1662
9602af51 1663 fprintf (file,
6fa957a9
KH
1664 _("\tExport Address Table \t\t%08lx\n"),
1665 edt.num_functions);
277d1b5e 1666
9602af51 1667 fprintf (file,
6fa957a9 1668 _("\t[Name Pointer/Ordinal] Table\t%08lx\n"), edt.num_names);
277d1b5e 1669
9602af51 1670 fprintf (file,
6fa957a9 1671 _("Table Addresses\n"));
277d1b5e
ILT
1672
1673 fprintf (file,
1674 _("\tExport Address Table \t\t"));
ebf12fbe 1675 bfd_fprintf_vma (abfd, file, edt.eat_addr);
277d1b5e
ILT
1676 fprintf (file, "\n");
1677
1678 fprintf (file,
6fa957a9 1679 _("\tName Pointer Table \t\t"));
ebf12fbe 1680 bfd_fprintf_vma (abfd, file, edt.npt_addr);
277d1b5e
ILT
1681 fprintf (file, "\n");
1682
1683 fprintf (file,
1684 _("\tOrdinal Table \t\t\t"));
ebf12fbe 1685 bfd_fprintf_vma (abfd, file, edt.ot_addr);
277d1b5e
ILT
1686 fprintf (file, "\n");
1687
5933bdc9 1688 /* The next table to find is the Export Address Table. It's basically
277d1b5e
ILT
1689 a list of pointers that either locate a function in this dll, or
1690 forward the call to another dll. Something like:
1725a96e
NC
1691 typedef union
1692 {
07d6d2b8
AM
1693 long export_rva;
1694 long forwarder_rva;
7920ce38 1695 } export_address_table_entry; */
277d1b5e 1696
9602af51 1697 fprintf (file,
277d1b5e
ILT
1698 _("\nExport Address Table -- Ordinal Base %ld\n"),
1699 edt.base);
1700
bf67003b 1701 /* PR 17512: Handle corrupt PE binaries. */
cf93e9c2
AM
1702 /* PR 17512 file: 140-165018-0.004. */
1703 if (edt.eat_addr - adj >= datasize
64d29018 1704 /* PR 17512: file: 092b1829 */
cf93e9c2
AM
1705 || (edt.num_functions + 1) * 4 < edt.num_functions
1706 || edt.eat_addr - adj + (edt.num_functions + 1) * 4 > datasize)
bf67003b
NC
1707 fprintf (file, _("\tInvalid Export Address Table rva (0x%lx) or entry count (0x%lx)\n"),
1708 (long) edt.eat_addr,
1709 (long) edt.num_functions);
1710 else for (i = 0; i < edt.num_functions; ++i)
277d1b5e
ILT
1711 {
1712 bfd_vma eat_member = bfd_get_32 (abfd,
8181c403 1713 data + edt.eat_addr + (i * 4) - adj);
277d1b5e
ILT
1714 if (eat_member == 0)
1715 continue;
1716
db8503c4 1717 if (eat_member - adj <= datasize)
277d1b5e 1718 {
db8503c4 1719 /* This rva is to a name (forwarding function) in our section. */
6fa957a9 1720 /* Should locate a function descriptor. */
5933bdc9 1721 fprintf (file,
36e9d67b 1722 "\t[%4ld] +base[%4ld] %04lx %s -- %.*s\n",
a76b448c
AM
1723 (long) i,
1724 (long) (i + edt.base),
1725 (unsigned long) eat_member,
1726 _("Forwarder RVA"),
36e9d67b 1727 (int)(datasize - (eat_member - adj)),
a76b448c 1728 data + eat_member - adj);
277d1b5e
ILT
1729 }
1730 else
1731 {
6fa957a9 1732 /* Should locate a function descriptor in the reldata section. */
5933bdc9
ILT
1733 fprintf (file,
1734 "\t[%4ld] +base[%4ld] %04lx %s\n",
a76b448c
AM
1735 (long) i,
1736 (long) (i + edt.base),
1737 (unsigned long) eat_member,
5933bdc9 1738 _("Export RVA"));
277d1b5e
ILT
1739 }
1740 }
1741
6fa957a9
KH
1742 /* The Export Name Pointer Table is paired with the Export Ordinal Table. */
1743 /* Dump them in parallel for clarity. */
9602af51 1744 fprintf (file,
6fa957a9 1745 _("\n[Ordinal/Name Pointer] Table\n"));
277d1b5e 1746
bf67003b 1747 /* PR 17512: Handle corrupt PE binaries. */
36e9d67b 1748 if (edt.npt_addr + (edt.num_names * 4) - adj >= datasize
64d29018
NC
1749 /* PR 17512: file: bb68816e. */
1750 || edt.num_names * 4 < edt.num_names
36e9d67b 1751 || (data + edt.npt_addr - adj) < data)
695344c0 1752 /* xgettext:c-format */
bf67003b
NC
1753 fprintf (file, _("\tInvalid Name Pointer Table rva (0x%lx) or entry count (0x%lx)\n"),
1754 (long) edt.npt_addr,
1755 (long) edt.num_names);
36e9d67b
NC
1756 /* PR 17512: file: 140-147171-0.004. */
1757 else if (edt.ot_addr + (edt.num_names * 2) - adj >= datasize
1758 || data + edt.ot_addr - adj < data)
695344c0 1759 /* xgettext:c-format */
bf67003b
NC
1760 fprintf (file, _("\tInvalid Ordinal Table rva (0x%lx) or entry count (0x%lx)\n"),
1761 (long) edt.ot_addr,
1762 (long) edt.num_names);
1763 else for (i = 0; i < edt.num_names; ++i)
277d1b5e 1764 {
20ad5e28
NC
1765 bfd_vma name_ptr;
1766 bfd_vma ord;
9602af51 1767
20ad5e28
NC
1768 ord = bfd_get_16 (abfd, data + edt.ot_addr + (i * 2) - adj);
1769 name_ptr = bfd_get_32 (abfd, data + edt.npt_addr + (i * 4) - adj);
277d1b5e 1770
20ad5e28
NC
1771 if ((name_ptr - adj) >= datasize)
1772 {
695344c0 1773 /* xgettext:c-format */
20ad5e28
NC
1774 fprintf (file, _("\t[%4ld] <corrupt offset: %lx>\n"),
1775 (long) ord, (long) name_ptr);
1776 }
1777 else
1778 {
1779 char * name = (char *) data + name_ptr - adj;
1780
36e9d67b
NC
1781 fprintf (file, "\t[%4ld] %.*s\n", (long) ord,
1782 (int)((char *)(data + datasize) - name), name);
20ad5e28 1783 }
277d1b5e
ILT
1784 }
1785
1786 free (data);
1787
0a1b45a2 1788 return true;
277d1b5e
ILT
1789}
1790
fac41780
JW
1791/* This really is architecture dependent. On IA-64, a .pdata entry
1792 consists of three dwords containing relative virtual addresses that
1793 specify the start and end address of the code range the entry
4e1fc599 1794 covers and the address of the corresponding unwind info data.
2b5c217d
NC
1795
1796 On ARM and SH-4, a compressed PDATA structure is used :
1797 _IMAGE_CE_RUNTIME_FUNCTION_ENTRY, whereas MIPS is documented to use
1798 _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY.
1799 See http://msdn2.microsoft.com/en-us/library/ms253988(VS.80).aspx .
1800
799c00e0 1801 This is the version for uncompressed data. */
6fa957a9 1802
0a1b45a2 1803static bool
7920ce38 1804pe_print_pdata (bfd * abfd, void * vfile)
277d1b5e 1805{
b69c9d41 1806#if defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
99ad8390 1807# define PDATA_ROW_SIZE (3 * 8)
fac41780 1808#else
99ad8390 1809# define PDATA_ROW_SIZE (5 * 4)
fac41780 1810#endif
277d1b5e
ILT
1811 FILE *file = (FILE *) vfile;
1812 bfd_byte *data = 0;
1813 asection *section = bfd_get_section_by_name (abfd, ".pdata");
1814 bfd_size_type datasize = 0;
1815 bfd_size_type i;
1816 bfd_size_type start, stop;
fac41780 1817 int onaline = PDATA_ROW_SIZE;
277d1b5e 1818
5933bdc9
ILT
1819 if (section == NULL
1820 || coff_section_data (abfd, section) == NULL
1821 || pei_section_data (abfd, section) == NULL)
0a1b45a2 1822 return true;
277d1b5e 1823
5933bdc9 1824 stop = pei_section_data (abfd, section)->virt_size;
277d1b5e 1825 if ((stop % onaline) != 0)
6fa957a9 1826 fprintf (file,
695344c0 1827 /* xgettext:c-format */
59d08d6c 1828 _("warning, .pdata section size (%ld) is not a multiple of %d\n"),
6fa957a9 1829 (long) stop, onaline);
277d1b5e 1830
5933bdc9
ILT
1831 fprintf (file,
1832 _("\nThe Function Table (interpreted .pdata section contents)\n"));
b69c9d41 1833#if defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
9602af51 1834 fprintf (file,
6fa957a9 1835 _(" vma:\t\t\tBegin Address End Address Unwind Info\n"));
fac41780 1836#else
ca09e32b
NC
1837 fprintf (file, _("\
1838 vma:\t\tBegin End EH EH PrologEnd Exception\n\
1839 \t\tAddress Address Handler Data Address Mask\n"));
fac41780 1840#endif
277d1b5e 1841
eea6121a 1842 datasize = section->size;
dc810e39 1843 if (datasize == 0)
0a1b45a2 1844 return true;
277d1b5e 1845
6937bb54
NC
1846 /* PR 17512: file: 002-193900-0.004. */
1847 if (datasize < stop)
1848 {
695344c0 1849 /* xgettext:c-format */
6937bb54
NC
1850 fprintf (file, _("Virtual size of .pdata section (%ld) larger than real size (%ld)\n"),
1851 (long) stop, (long) datasize);
0a1b45a2 1852 return false;
6937bb54
NC
1853 }
1854
7920ce38 1855 if (! bfd_malloc_and_get_section (abfd, section, &data))
eea6121a 1856 {
c9594989 1857 free (data);
0a1b45a2 1858 return false;
eea6121a 1859 }
277d1b5e
ILT
1860
1861 start = 0;
1862
1863 for (i = start; i < stop; i += onaline)
1864 {
1865 bfd_vma begin_addr;
1866 bfd_vma end_addr;
1867 bfd_vma eh_handler;
1868 bfd_vma eh_data;
1869 bfd_vma prolog_end_addr;
b69c9d41 1870#if !defined(COFF_WITH_pep) || defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64)
5933bdc9 1871 int em_data;
c7e2358a 1872#endif
277d1b5e 1873
fac41780 1874 if (i + PDATA_ROW_SIZE > stop)
277d1b5e 1875 break;
5933bdc9 1876
07d6d2b8
AM
1877 begin_addr = GET_PDATA_ENTRY (abfd, data + i );
1878 end_addr = GET_PDATA_ENTRY (abfd, data + i + 4);
6fa957a9 1879 eh_handler = GET_PDATA_ENTRY (abfd, data + i + 8);
07d6d2b8 1880 eh_data = GET_PDATA_ENTRY (abfd, data + i + 12);
6fa957a9 1881 prolog_end_addr = GET_PDATA_ENTRY (abfd, data + i + 16);
9602af51 1882
277d1b5e
ILT
1883 if (begin_addr == 0 && end_addr == 0 && eh_handler == 0
1884 && eh_data == 0 && prolog_end_addr == 0)
1725a96e
NC
1885 /* We are probably into the padding of the section now. */
1886 break;
277d1b5e 1887
b69c9d41 1888#if !defined(COFF_WITH_pep) || defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64)
5933bdc9 1889 em_data = ((eh_handler & 0x1) << 2) | (prolog_end_addr & 0x3);
c7e2358a 1890#endif
6fa957a9
KH
1891 eh_handler &= ~(bfd_vma) 0x3;
1892 prolog_end_addr &= ~(bfd_vma) 0x3;
fac41780
JW
1893
1894 fputc (' ', file);
ebf12fbe
DK
1895 bfd_fprintf_vma (abfd, file, i + section->vma); fputc ('\t', file);
1896 bfd_fprintf_vma (abfd, file, begin_addr); fputc (' ', file);
1897 bfd_fprintf_vma (abfd, file, end_addr); fputc (' ', file);
1898 bfd_fprintf_vma (abfd, file, eh_handler);
b69c9d41 1899#if !defined(COFF_WITH_pep) || defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64)
fac41780 1900 fputc (' ', file);
ebf12fbe
DK
1901 bfd_fprintf_vma (abfd, file, eh_data); fputc (' ', file);
1902 bfd_fprintf_vma (abfd, file, prolog_end_addr);
fac41780
JW
1903 fprintf (file, " %x", em_data);
1904#endif
9602af51 1905 fprintf (file, "\n");
277d1b5e
ILT
1906 }
1907
1908 free (data);
1909
0a1b45a2 1910 return true;
2b5c217d 1911#undef PDATA_ROW_SIZE
277d1b5e
ILT
1912}
1913
799c00e0
NC
1914typedef struct sym_cache
1915{
07d6d2b8 1916 int symcount;
799c00e0
NC
1917 asymbol ** syms;
1918} sym_cache;
1919
1920static asymbol **
1921slurp_symtab (bfd *abfd, sym_cache *psc)
1922{
1923 asymbol ** sy = NULL;
1924 long storage;
1925
1926 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
1927 {
1928 psc->symcount = 0;
1929 return NULL;
1930 }
1931
1932 storage = bfd_get_symtab_upper_bound (abfd);
1933 if (storage < 0)
1934 return NULL;
1935 if (storage)
86eafac0
NC
1936 {
1937 sy = (asymbol **) bfd_malloc (storage);
1938 if (sy == NULL)
1939 return NULL;
1940 }
799c00e0
NC
1941
1942 psc->symcount = bfd_canonicalize_symtab (abfd, sy);
1943 if (psc->symcount < 0)
1944 return NULL;
1945 return sy;
1946}
1947
1948static const char *
1949my_symbol_for_address (bfd *abfd, bfd_vma func, sym_cache *psc)
1950{
1951 int i;
1952
1953 if (psc->syms == 0)
1954 psc->syms = slurp_symtab (abfd, psc);
1955
1956 for (i = 0; i < psc->symcount; i++)
1957 {
1958 if (psc->syms[i]->section->vma + psc->syms[i]->value == func)
1959 return psc->syms[i]->name;
1960 }
1961
1962 return NULL;
1963}
1964
1965static void
1966cleanup_syms (sym_cache *psc)
1967{
1968 psc->symcount = 0;
1969 free (psc->syms);
1970 psc->syms = NULL;
1971}
1972
1973/* This is the version for "compressed" pdata. */
1974
0a1b45a2 1975bool
799c00e0
NC
1976_bfd_XX_print_ce_compressed_pdata (bfd * abfd, void * vfile)
1977{
1978# define PDATA_ROW_SIZE (2 * 4)
1979 FILE *file = (FILE *) vfile;
1980 bfd_byte *data = NULL;
1981 asection *section = bfd_get_section_by_name (abfd, ".pdata");
1982 bfd_size_type datasize = 0;
1983 bfd_size_type i;
1984 bfd_size_type start, stop;
1985 int onaline = PDATA_ROW_SIZE;
91d6fa6a 1986 struct sym_cache cache = {0, 0} ;
799c00e0
NC
1987
1988 if (section == NULL
1989 || coff_section_data (abfd, section) == NULL
1990 || pei_section_data (abfd, section) == NULL)
0a1b45a2 1991 return true;
799c00e0
NC
1992
1993 stop = pei_section_data (abfd, section)->virt_size;
1994 if ((stop % onaline) != 0)
1995 fprintf (file,
695344c0 1996 /* xgettext:c-format */
59d08d6c 1997 _("warning, .pdata section size (%ld) is not a multiple of %d\n"),
799c00e0
NC
1998 (long) stop, onaline);
1999
2000 fprintf (file,
2001 _("\nThe Function Table (interpreted .pdata section contents)\n"));
2002
2003 fprintf (file, _("\
2004 vma:\t\tBegin Prolog Function Flags Exception EH\n\
2005 \t\tAddress Length Length 32b exc Handler Data\n"));
2006
2007 datasize = section->size;
2008 if (datasize == 0)
0a1b45a2 2009 return true;
799c00e0
NC
2010
2011 if (! bfd_malloc_and_get_section (abfd, section, &data))
2012 {
c9594989 2013 free (data);
0a1b45a2 2014 return false;
799c00e0
NC
2015 }
2016
2017 start = 0;
2018
2019 for (i = start; i < stop; i += onaline)
2020 {
2021 bfd_vma begin_addr;
2022 bfd_vma other_data;
2023 bfd_vma prolog_length, function_length;
2024 int flag32bit, exception_flag;
799c00e0
NC
2025 asection *tsection;
2026
2027 if (i + PDATA_ROW_SIZE > stop)
2028 break;
2029
2030 begin_addr = GET_PDATA_ENTRY (abfd, data + i );
2031 other_data = GET_PDATA_ENTRY (abfd, data + i + 4);
2032
2033 if (begin_addr == 0 && other_data == 0)
2034 /* We are probably into the padding of the section now. */
2035 break;
2036
2037 prolog_length = (other_data & 0x000000FF);
2038 function_length = (other_data & 0x3FFFFF00) >> 8;
2039 flag32bit = (int)((other_data & 0x40000000) >> 30);
2040 exception_flag = (int)((other_data & 0x80000000) >> 31);
2041
2042 fputc (' ', file);
ebf12fbe
DK
2043 bfd_fprintf_vma (abfd, file, i + section->vma); fputc ('\t', file);
2044 bfd_fprintf_vma (abfd, file, begin_addr); fputc (' ', file);
2045 bfd_fprintf_vma (abfd, file, prolog_length); fputc (' ', file);
2046 bfd_fprintf_vma (abfd, file, function_length); fputc (' ', file);
799c00e0
NC
2047 fprintf (file, "%2d %2d ", flag32bit, exception_flag);
2048
2049 /* Get the exception handler's address and the data passed from the
07d6d2b8
AM
2050 .text section. This is really the data that belongs with the .pdata
2051 but got "compressed" out for the ARM and SH4 architectures. */
799c00e0
NC
2052 tsection = bfd_get_section_by_name (abfd, ".text");
2053 if (tsection && coff_section_data (abfd, tsection)
2054 && pei_section_data (abfd, tsection))
2055 {
4e1fc599
AM
2056 bfd_vma eh_off = (begin_addr - 8) - tsection->vma;
2057 bfd_byte *tdata;
799c00e0 2058
4e1fc599
AM
2059 tdata = (bfd_byte *) bfd_malloc (8);
2060 if (tdata)
2061 {
2062 if (bfd_get_section_contents (abfd, tsection, tdata, eh_off, 8))
799c00e0
NC
2063 {
2064 bfd_vma eh, eh_data;
2065
2066 eh = bfd_get_32 (abfd, tdata);
2067 eh_data = bfd_get_32 (abfd, tdata + 4);
2068 fprintf (file, "%08x ", (unsigned int) eh);
2069 fprintf (file, "%08x", (unsigned int) eh_data);
2070 if (eh != 0)
2071 {
91d6fa6a 2072 const char *s = my_symbol_for_address (abfd, eh, &cache);
799c00e0
NC
2073
2074 if (s)
2075 fprintf (file, " (%s) ", s);
2076 }
2077 }
2078 free (tdata);
2079 }
799c00e0
NC
2080 }
2081
2082 fprintf (file, "\n");
2083 }
2084
2085 free (data);
2086
91d6fa6a 2087 cleanup_syms (& cache);
799c00e0 2088
0a1b45a2 2089 return true;
799c00e0
NC
2090#undef PDATA_ROW_SIZE
2091}
c7c7219d 2092
799c00e0 2093\f
5933bdc9 2094#define IMAGE_REL_BASED_HIGHADJ 4
1725a96e 2095static const char * const tbl[] =
7920ce38
NC
2096{
2097 "ABSOLUTE",
2098 "HIGH",
2099 "LOW",
2100 "HIGHLOW",
2101 "HIGHADJ",
2102 "MIPS_JMPADDR",
2103 "SECTION",
2104 "REL32",
2105 "RESERVED1",
2106 "MIPS_JMPADDR16",
2107 "DIR64",
2bfd55ca 2108 "HIGH3ADJ",
7920ce38
NC
2109 "UNKNOWN", /* MUST be last. */
2110};
277d1b5e 2111
0a1b45a2 2112static bool
7920ce38 2113pe_print_reloc (bfd * abfd, void * vfile)
277d1b5e
ILT
2114{
2115 FILE *file = (FILE *) vfile;
2116 bfd_byte *data = 0;
2117 asection *section = bfd_get_section_by_name (abfd, ".reloc");
513ea82e 2118 bfd_byte *p, *end;
277d1b5e 2119
b69c8728 2120 if (section == NULL || section->size == 0 || !(section->flags & SEC_HAS_CONTENTS))
0a1b45a2 2121 return true;
277d1b5e 2122
5933bdc9
ILT
2123 fprintf (file,
2124 _("\n\nPE File Base Relocations (interpreted .reloc section contents)\n"));
277d1b5e 2125
7920ce38 2126 if (! bfd_malloc_and_get_section (abfd, section, &data))
eea6121a 2127 {
c9594989 2128 free (data);
0a1b45a2 2129 return false;
eea6121a 2130 }
277d1b5e 2131
513ea82e
AM
2132 p = data;
2133 end = data + section->size;
2134 while (p + 8 <= end)
277d1b5e
ILT
2135 {
2136 int j;
2137 bfd_vma virtual_address;
77ef8654 2138 unsigned long number, size;
513ea82e 2139 bfd_byte *chunk_end;
277d1b5e
ILT
2140
2141 /* The .reloc section is a sequence of blocks, with a header consisting
1725a96e 2142 of two 32 bit quantities, followed by a number of 16 bit entries. */
513ea82e
AM
2143 virtual_address = bfd_get_32 (abfd, p);
2144 size = bfd_get_32 (abfd, p + 4);
2145 p += 8;
277d1b5e
ILT
2146 number = (size - 8) / 2;
2147
2148 if (size == 0)
1725a96e 2149 break;
277d1b5e
ILT
2150
2151 fprintf (file,
695344c0 2152 /* xgettext:c-format */
277d1b5e 2153 _("\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n"),
77ef8654 2154 (unsigned long) virtual_address, size, size, number);
277d1b5e 2155
10169134 2156 chunk_end = p - 8 + size;
513ea82e
AM
2157 if (chunk_end > end)
2158 chunk_end = end;
2159 j = 0;
2160 while (p + 2 <= chunk_end)
277d1b5e 2161 {
513ea82e 2162 unsigned short e = bfd_get_16 (abfd, p);
5933bdc9 2163 unsigned int t = (e & 0xF000) >> 12;
277d1b5e
ILT
2164 int off = e & 0x0FFF;
2165
5933bdc9
ILT
2166 if (t >= sizeof (tbl) / sizeof (tbl[0]))
2167 t = (sizeof (tbl) / sizeof (tbl[0])) - 1;
277d1b5e 2168
5933bdc9 2169 fprintf (file,
695344c0 2170 /* xgettext:c-format */
5933bdc9 2171 _("\treloc %4d offset %4x [%4lx] %s"),
0af1713e 2172 j, off, (unsigned long) (off + virtual_address), tbl[t]);
277d1b5e 2173
513ea82e
AM
2174 p += 2;
2175 j++;
2176
17505c5c 2177 /* HIGHADJ takes an argument, - the next record *is* the
9602af51 2178 low 16 bits of addend. */
513ea82e 2179 if (t == IMAGE_REL_BASED_HIGHADJ && p + 2 <= chunk_end)
5933bdc9 2180 {
513ea82e
AM
2181 fprintf (file, " (%4x)", (unsigned int) bfd_get_16 (abfd, p));
2182 p += 2;
6fa957a9 2183 j++;
5933bdc9 2184 }
9602af51 2185
17505c5c 2186 fprintf (file, "\n");
277d1b5e 2187 }
277d1b5e
ILT
2188 }
2189
2190 free (data);
2191
0a1b45a2 2192 return true;
277d1b5e 2193}
5879bb8f 2194\f
3714081c
NC
2195/* A data structure describing the regions of a .rsrc section.
2196 Some fields are filled in as the section is parsed. */
2197
2198typedef struct rsrc_regions
2199{
2200 bfd_byte * section_start;
2201 bfd_byte * section_end;
2202 bfd_byte * strings_start;
2203 bfd_byte * resource_start;
2204} rsrc_regions;
277d1b5e 2205
11a6da56 2206static bfd_byte *
3714081c
NC
2207rsrc_print_resource_directory (FILE * , bfd *, unsigned int, bfd_byte *,
2208 rsrc_regions *, bfd_vma);
11a6da56 2209
20ad5e28
NC
2210/* Print the resource entry at DATA, with the text indented by INDENT.
2211 Recusively calls rsrc_print_resource_directory to print the contents
2212 of directory entries.
2213 Returns the address of the end of the data associated with the entry
2214 or section_end + 1 upon failure. */
2215
11a6da56 2216static bfd_byte *
0a1b45a2
AM
2217rsrc_print_resource_entries (FILE *file,
2218 bfd *abfd,
2219 unsigned int indent,
2220 bool is_name,
2221 bfd_byte *data,
2222 rsrc_regions *regions,
2223 bfd_vma rva_bias)
11a6da56
NC
2224{
2225 unsigned long entry, addr, size;
5929c344 2226 bfd_byte * leaf;
11a6da56 2227
3714081c
NC
2228 if (data + 8 >= regions->section_end)
2229 return regions->section_end + 1;
11a6da56 2230
695344c0 2231 /* xgettext:c-format */
3714081c 2232 fprintf (file, _("%03x %*.s Entry: "), (int)(data - regions->section_start), indent, " ");
11a6da56 2233
20ad5e28 2234 entry = (unsigned long) bfd_get_32 (abfd, data);
11a6da56
NC
2235 if (is_name)
2236 {
5879bb8f
NC
2237 bfd_byte * name;
2238
3714081c 2239 /* Note - the documentation says that this field is an RVA value
5879bb8f
NC
2240 but windres appears to produce a section relative offset with
2241 the top bit set. Support both styles for now. */
2242 if (HighBitSet (entry))
3714081c 2243 name = regions->section_start + WithoutHighBit (entry);
5879bb8f 2244 else
3714081c 2245 name = regions->section_start + entry - rva_bias;
5879bb8f 2246
20ad5e28 2247 if (name + 2 < regions->section_end && name > regions->section_start)
11a6da56
NC
2248 {
2249 unsigned int len;
3714081c
NC
2250
2251 if (regions->strings_start == NULL)
2252 regions->strings_start = name;
2253
5879bb8f 2254 len = bfd_get_16 (abfd, name);
9373215c 2255
5879bb8f 2256 fprintf (file, _("name: [val: %08lx len %d]: "), entry, len);
20ad5e28 2257
3714081c 2258 if (name + 2 + len * 2 < regions->section_end)
5879bb8f
NC
2259 {
2260 /* This strange loop is to cope with multibyte characters. */
2261 while (len --)
2262 {
20ad5e28
NC
2263 char c;
2264
5879bb8f 2265 name += 2;
20ad5e28
NC
2266 c = * name;
2267 /* Avoid printing control characters. */
2268 if (c > 0 && c < 32)
2269 fprintf (file, "^%c", c + 64);
2270 else
2271 fprintf (file, "%.1s", name);
5879bb8f
NC
2272 }
2273 }
11a6da56 2274 else
20ad5e28
NC
2275 {
2276 fprintf (file, _("<corrupt string length: %#x>\n"), len);
2277 /* PR binutils/17512: Do not try to continue decoding a
2278 corrupted resource section. It is likely to end up with
2279 reams of extraneous output. FIXME: We could probably
2280 continue if we disable the printing of strings... */
2281 return regions->section_end + 1;
2282 }
11a6da56
NC
2283 }
2284 else
20ad5e28
NC
2285 {
2286 fprintf (file, _("<corrupt string offset: %#lx>\n"), entry);
2287 return regions->section_end + 1;
2288 }
11a6da56
NC
2289 }
2290 else
2291 fprintf (file, _("ID: %#08lx"), entry);
9373215c 2292
11a6da56 2293 entry = (long) bfd_get_32 (abfd, data + 4);
5879bb8f 2294 fprintf (file, _(", Value: %#08lx\n"), entry);
11a6da56 2295
5879bb8f 2296 if (HighBitSet (entry))
20ad5e28
NC
2297 {
2298 data = regions->section_start + WithoutHighBit (entry);
2299 if (data <= regions->section_start || data > regions->section_end)
2300 return regions->section_end + 1;
2301
2302 /* FIXME: PR binutils/17512: A corrupt file could contain a loop
2303 in the resource table. We need some way to detect this. */
2304 return rsrc_print_resource_directory (file, abfd, indent + 1, data,
2305 regions, rva_bias);
2306 }
11a6da56 2307
5929c344
NC
2308 leaf = regions->section_start + entry;
2309
2310 if (leaf + 16 >= regions->section_end
2311 /* PR 17512: file: 055dff7e. */
2312 || leaf < regions->section_start)
3714081c 2313 return regions->section_end + 1;
11a6da56 2314
695344c0 2315 /* xgettext:c-format */
3714081c 2316 fprintf (file, _("%03x %*.s Leaf: Addr: %#08lx, Size: %#08lx, Codepage: %d\n"),
5929c344
NC
2317 (int) (entry), indent, " ",
2318 addr = (long) bfd_get_32 (abfd, leaf),
2319 size = (long) bfd_get_32 (abfd, leaf + 4),
2320 (int) bfd_get_32 (abfd, leaf + 8));
9373215c 2321
11a6da56 2322 /* Check that the reserved entry is 0. */
5929c344 2323 if (bfd_get_32 (abfd, leaf + 12) != 0
11a6da56 2324 /* And that the data address/size is valid too. */
3714081c
NC
2325 || (regions->section_start + (addr - rva_bias) + size > regions->section_end))
2326 return regions->section_end + 1;
11a6da56 2327
3714081c
NC
2328 if (regions->resource_start == NULL)
2329 regions->resource_start = regions->section_start + (addr - rva_bias);
2330
2331 return regions->section_start + (addr - rva_bias) + size;
11a6da56
NC
2332}
2333
5879bb8f
NC
2334#define max(a,b) ((a) > (b) ? (a) : (b))
2335#define min(a,b) ((a) < (b) ? (a) : (b))
2336
11a6da56 2337static bfd_byte *
07d6d2b8
AM
2338rsrc_print_resource_directory (FILE * file,
2339 bfd * abfd,
3714081c
NC
2340 unsigned int indent,
2341 bfd_byte * data,
2342 rsrc_regions * regions,
07d6d2b8 2343 bfd_vma rva_bias)
11a6da56
NC
2344{
2345 unsigned int num_names, num_ids;
5879bb8f 2346 bfd_byte * highest_data = data;
11a6da56 2347
3714081c
NC
2348 if (data + 16 >= regions->section_end)
2349 return regions->section_end + 1;
11a6da56 2350
3714081c 2351 fprintf (file, "%03x %*.s ", (int)(data - regions->section_start), indent, " ");
11a6da56
NC
2352 switch (indent)
2353 {
2354 case 0: fprintf (file, "Type"); break;
2355 case 2: fprintf (file, "Name"); break;
2356 case 4: fprintf (file, "Language"); break;
20ad5e28
NC
2357 default:
2358 fprintf (file, _("<unknown directory type: %d>\n"), indent);
2359 /* FIXME: For now we end the printing here. If in the
2360 future more directory types are added to the RSRC spec
2361 then we will need to change this. */
2362 return regions->section_end + 1;
11a6da56
NC
2363 }
2364
695344c0 2365 /* xgettext:c-format */
11a6da56
NC
2366 fprintf (file, _(" Table: Char: %d, Time: %08lx, Ver: %d/%d, Num Names: %d, IDs: %d\n"),
2367 (int) bfd_get_32 (abfd, data),
2368 (long) bfd_get_32 (abfd, data + 4),
2369 (int) bfd_get_16 (abfd, data + 8),
2370 (int) bfd_get_16 (abfd, data + 10),
2371 num_names = (int) bfd_get_16 (abfd, data + 12),
2372 num_ids = (int) bfd_get_16 (abfd, data + 14));
2373 data += 16;
2374
5879bb8f 2375 while (num_names --)
11a6da56 2376 {
5879bb8f
NC
2377 bfd_byte * entry_end;
2378
0a1b45a2 2379 entry_end = rsrc_print_resource_entries (file, abfd, indent + 1, true,
3714081c 2380 data, regions, rva_bias);
5879bb8f
NC
2381 data += 8;
2382 highest_data = max (highest_data, entry_end);
3714081c 2383 if (entry_end >= regions->section_end)
5879bb8f 2384 return entry_end;
11a6da56
NC
2385 }
2386
5879bb8f 2387 while (num_ids --)
11a6da56 2388 {
5879bb8f
NC
2389 bfd_byte * entry_end;
2390
0a1b45a2 2391 entry_end = rsrc_print_resource_entries (file, abfd, indent + 1, false,
3714081c 2392 data, regions, rva_bias);
5879bb8f
NC
2393 data += 8;
2394 highest_data = max (highest_data, entry_end);
3714081c 2395 if (entry_end >= regions->section_end)
5879bb8f 2396 return entry_end;
11a6da56
NC
2397 }
2398
5879bb8f 2399 return max (highest_data, data);
11a6da56
NC
2400}
2401
2402/* Display the contents of a .rsrc section. We do not try to
2403 reproduce the resources, windres does that. Instead we dump
2404 the tables in a human readable format. */
2405
0a1b45a2 2406static bool
5879bb8f 2407rsrc_print_section (bfd * abfd, void * vfile)
11a6da56
NC
2408{
2409 bfd_vma rva_bias;
2410 pe_data_type * pe;
2411 FILE * file = (FILE *) vfile;
2412 bfd_size_type datasize;
2413 asection * section;
2414 bfd_byte * data;
3714081c 2415 rsrc_regions regions;
11a6da56 2416
11a6da56 2417 pe = pe_data (abfd);
5879bb8f 2418 if (pe == NULL)
0a1b45a2 2419 return true;
11a6da56 2420
5879bb8f
NC
2421 section = bfd_get_section_by_name (abfd, ".rsrc");
2422 if (section == NULL)
0a1b45a2 2423 return true;
b69c8728 2424 if (!(section->flags & SEC_HAS_CONTENTS))
0a1b45a2 2425 return true;
5879bb8f 2426
11a6da56
NC
2427 datasize = section->size;
2428 if (datasize == 0)
0a1b45a2 2429 return true;
11a6da56 2430
b69c8728
JT
2431 rva_bias = section->vma - pe->pe_opthdr.ImageBase;
2432
5879bb8f 2433 if (! bfd_malloc_and_get_section (abfd, section, & data))
11a6da56 2434 {
c9594989 2435 free (data);
0a1b45a2 2436 return false;
11a6da56 2437 }
3714081c
NC
2438
2439 regions.section_start = data;
2440 regions.section_end = data + datasize;
2441 regions.strings_start = NULL;
2442 regions.resource_start = NULL;
11a6da56
NC
2443
2444 fflush (file);
2445 fprintf (file, "\nThe .rsrc Resource Directory section:\n");
2446
3714081c 2447 while (data < regions.section_end)
11a6da56 2448 {
5879bb8f
NC
2449 bfd_byte * p = data;
2450
3714081c 2451 data = rsrc_print_resource_directory (file, abfd, 0, data, & regions, rva_bias);
11a6da56 2452
3714081c 2453 if (data == regions.section_end + 1)
11a6da56
NC
2454 fprintf (file, _("Corrupt .rsrc section detected!\n"));
2455 else
2456 {
2457 /* Align data before continuing. */
2458 int align = (1 << section->alignment_power) - 1;
5879bb8f 2459
b9e95fa2 2460 data = (bfd_byte *) (((ptrdiff_t) (data + align)) & ~ align);
5879bb8f 2461 rva_bias += data - p;
11a6da56
NC
2462
2463 /* For reasons that are unclear .rsrc sections are sometimes created
2464 aligned to a 1^3 boundary even when their alignment is set at
2465 1^2. Catch that case here before we issue a spurious warning
2466 message. */
3714081c
NC
2467 if (data == (regions.section_end - 4))
2468 data = regions.section_end;
2469 else if (data < regions.section_end)
c32abae8
NC
2470 {
2471 /* If the extra data is all zeros then do not complain.
2472 This is just padding so that the section meets the
2473 page size requirements. */
6937bb54 2474 while (++ data < regions.section_end)
c32abae8
NC
2475 if (*data != 0)
2476 break;
2477 if (data < regions.section_end)
2478 fprintf (file, _("\nWARNING: Extra data in .rsrc section - it will be ignored by Windows:\n"));
2479 }
11a6da56
NC
2480 }
2481 }
2482
3714081c 2483 if (regions.strings_start != NULL)
695344c0 2484 fprintf (file, _(" String table starts at offset: %#03x\n"),
08937d80 2485 (int) (regions.strings_start - regions.section_start));
3714081c 2486 if (regions.resource_start != NULL)
695344c0 2487 fprintf (file, _(" Resources start at offset: %#03x\n"),
08937d80 2488 (int) (regions.resource_start - regions.section_start));
1b786873 2489
3714081c 2490 free (regions.section_start);
0a1b45a2 2491 return true;
11a6da56
NC
2492}
2493
1957ab10 2494#define IMAGE_NUMBEROF_DEBUG_TYPES 17
61e2488c
JT
2495
2496static char * debug_type_names[IMAGE_NUMBEROF_DEBUG_TYPES] =
2497{
2498 "Unknown",
2499 "COFF",
2500 "CodeView",
2501 "FPO",
2502 "Misc",
2503 "Exception",
2504 "Fixup",
2505 "OMAP-to-SRC",
2506 "OMAP-from-SRC",
2507 "Borland",
2508 "Reserved",
2509 "CLSID",
1957ab10
JT
2510 "Feature",
2511 "CoffGrp",
2512 "ILTCG",
2513 "MPX",
2514 "Repro",
61e2488c
JT
2515};
2516
0a1b45a2 2517static bool
61e2488c
JT
2518pe_print_debugdata (bfd * abfd, void * vfile)
2519{
2520 FILE *file = (FILE *) vfile;
2521 pe_data_type *pe = pe_data (abfd);
2522 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
2523 asection *section;
2524 bfd_byte *data = 0;
2525 bfd_size_type dataoff;
87b2920f 2526 unsigned int i, j;
61e2488c
JT
2527
2528 bfd_vma addr = extra->DataDirectory[PE_DEBUG_DATA].VirtualAddress;
2529 bfd_size_type size = extra->DataDirectory[PE_DEBUG_DATA].Size;
2530
2531 if (size == 0)
0a1b45a2 2532 return true;
61e2488c
JT
2533
2534 addr += extra->ImageBase;
2535 for (section = abfd->sections; section != NULL; section = section->next)
2536 {
2537 if ((addr >= section->vma) && (addr < (section->vma + section->size)))
07d6d2b8 2538 break;
61e2488c
JT
2539 }
2540
2541 if (section == NULL)
2542 {
2543 fprintf (file,
07d6d2b8 2544 _("\nThere is a debug directory, but the section containing it could not be found\n"));
0a1b45a2 2545 return true;
61e2488c 2546 }
6e6e7cfc
JT
2547 else if (!(section->flags & SEC_HAS_CONTENTS))
2548 {
2549 fprintf (file,
07d6d2b8
AM
2550 _("\nThere is a debug directory in %s, but that section has no contents\n"),
2551 section->name);
0a1b45a2 2552 return true;
6e6e7cfc 2553 }
5a3f568b
NC
2554 else if (section->size < size)
2555 {
2556 fprintf (file,
07d6d2b8
AM
2557 _("\nError: section %s contains the debug data starting address but it is too small\n"),
2558 section->name);
0a1b45a2 2559 return false;
5a3f568b 2560 }
61e2488c
JT
2561
2562 fprintf (file, _("\nThere is a debug directory in %s at 0x%lx\n\n"),
2563 section->name, (unsigned long) addr);
2564
2565 dataoff = addr - section->vma;
2566
a6f921c8
NC
2567 if (size > (section->size - dataoff))
2568 {
2569 fprintf (file, _("The debug data size field in the data directory is too big for the section"));
0a1b45a2 2570 return false;
a6f921c8
NC
2571 }
2572
61e2488c
JT
2573 fprintf (file,
2574 _("Type Size Rva Offset\n"));
2575
5a3f568b 2576 /* Read the whole section. */
61e2488c
JT
2577 if (!bfd_malloc_and_get_section (abfd, section, &data))
2578 {
c9594989 2579 free (data);
0a1b45a2 2580 return false;
61e2488c
JT
2581 }
2582
2583 for (i = 0; i < size / sizeof (struct external_IMAGE_DEBUG_DIRECTORY); i++)
2584 {
2585 const char *type_name;
2586 struct external_IMAGE_DEBUG_DIRECTORY *ext
2587 = &((struct external_IMAGE_DEBUG_DIRECTORY *)(data + dataoff))[i];
2588 struct internal_IMAGE_DEBUG_DIRECTORY idd;
2589
2590 _bfd_XXi_swap_debugdir_in (abfd, ext, &idd);
2591
20ad5e28 2592 if ((idd.Type) >= IMAGE_NUMBEROF_DEBUG_TYPES)
07d6d2b8 2593 type_name = debug_type_names[0];
61e2488c 2594 else
07d6d2b8 2595 type_name = debug_type_names[idd.Type];
61e2488c
JT
2596
2597 fprintf (file, " %2ld %14s %08lx %08lx %08lx\n",
2598 idd.Type, type_name, idd.SizeOfData,
2599 idd.AddressOfRawData, idd.PointerToRawData);
2600
2601 if (idd.Type == PE_IMAGE_DEBUG_TYPE_CODEVIEW)
07d6d2b8
AM
2602 {
2603 char signature[CV_INFO_SIGNATURE_LENGTH * 2 + 1];
77ef8654
NC
2604 /* PR 17512: file: 065-29434-0.001:0.1
2605 We need to use a 32-bit aligned buffer
2606 to safely read in a codeview record. */
07d6d2b8 2607 char buffer[256 + 1] ATTRIBUTE_ALIGNED_ALIGNOF (CODEVIEW_INFO);
77ef8654 2608
07d6d2b8 2609 CODEVIEW_INFO *cvinfo = (CODEVIEW_INFO *) buffer;
61e2488c 2610
07d6d2b8 2611 /* The debug entry doesn't have to have to be in a section,
61e2488c 2612 in which case AddressOfRawData is 0, so always use PointerToRawData. */
07d6d2b8 2613 if (!_bfd_XXi_slurp_codeview_record (abfd, (file_ptr) idd.PointerToRawData,
61e2488c 2614 idd.SizeOfData, cvinfo))
07d6d2b8 2615 continue;
61e2488c 2616
87b2920f
JT
2617 for (j = 0; j < cvinfo->SignatureLength; j++)
2618 sprintf (&signature[j*2], "%02x", cvinfo->Signature[j] & 0xff);
61e2488c 2619
695344c0 2620 /* xgettext:c-format */
07d6d2b8 2621 fprintf (file, _("(format %c%c%c%c signature %s age %ld)\n"),
61e2488c
JT
2622 buffer[0], buffer[1], buffer[2], buffer[3],
2623 signature, cvinfo->Age);
07d6d2b8 2624 }
61e2488c
JT
2625 }
2626
87b2920f
JT
2627 free(data);
2628
61e2488c
JT
2629 if (size % sizeof (struct external_IMAGE_DEBUG_DIRECTORY) != 0)
2630 fprintf (file,
07d6d2b8 2631 _("The debug directory size is not a multiple of the debug directory entry size\n"));
61e2488c 2632
0a1b45a2 2633 return true;
61e2488c
JT
2634}
2635
0a1b45a2 2636static bool
b5d36aaa
JT
2637pe_is_repro (bfd * abfd)
2638{
2639 pe_data_type *pe = pe_data (abfd);
2640 struct internal_extra_pe_aouthdr *extra = &pe->pe_opthdr;
2641 asection *section;
2642 bfd_byte *data = 0;
2643 bfd_size_type dataoff;
2644 unsigned int i;
0a1b45a2 2645 bool res = false;
b5d36aaa
JT
2646
2647 bfd_vma addr = extra->DataDirectory[PE_DEBUG_DATA].VirtualAddress;
2648 bfd_size_type size = extra->DataDirectory[PE_DEBUG_DATA].Size;
2649
2650 if (size == 0)
0a1b45a2 2651 return false;
b5d36aaa
JT
2652
2653 addr += extra->ImageBase;
2654 for (section = abfd->sections; section != NULL; section = section->next)
2655 {
2656 if ((addr >= section->vma) && (addr < (section->vma + section->size)))
2657 break;
2658 }
2659
2660 if ((section == NULL)
2661 || (!(section->flags & SEC_HAS_CONTENTS))
2662 || (section->size < size))
2663 {
0a1b45a2 2664 return false;
b5d36aaa
JT
2665 }
2666
2667 dataoff = addr - section->vma;
2668
2669 if (size > (section->size - dataoff))
2670 {
0a1b45a2 2671 return false;
b5d36aaa
JT
2672 }
2673
2674 if (!bfd_malloc_and_get_section (abfd, section, &data))
2675 {
c9594989 2676 free (data);
0a1b45a2 2677 return false;
b5d36aaa
JT
2678 }
2679
2680 for (i = 0; i < size / sizeof (struct external_IMAGE_DEBUG_DIRECTORY); i++)
2681 {
2682 struct external_IMAGE_DEBUG_DIRECTORY *ext
2683 = &((struct external_IMAGE_DEBUG_DIRECTORY *)(data + dataoff))[i];
2684 struct internal_IMAGE_DEBUG_DIRECTORY idd;
2685
2686 _bfd_XXi_swap_debugdir_in (abfd, ext, &idd);
2687
2688 if (idd.Type == PE_IMAGE_DEBUG_TYPE_REPRO)
2689 {
0a1b45a2 2690 res = true;
b5d36aaa
JT
2691 break;
2692 }
2693 }
2694
2695 free(data);
2696
2697 return res;
2698}
2699
277d1b5e
ILT
2700/* Print out the program headers. */
2701
0a1b45a2 2702bool
7920ce38 2703_bfd_XX_print_private_bfd_data_common (bfd * abfd, void * vfile)
277d1b5e
ILT
2704{
2705 FILE *file = (FILE *) vfile;
2706 int j;
2707 pe_data_type *pe = pe_data (abfd);
2708 struct internal_extra_pe_aouthdr *i = &pe->pe_opthdr;
fac41780 2709 const char *subsystem_name = NULL;
d13c9dc6 2710 const char *name;
277d1b5e
ILT
2711
2712 /* The MS dumpbin program reportedly ands with 0xff0f before
2713 printing the characteristics field. Not sure why. No reason to
2714 emulate it here. */
2715 fprintf (file, _("\nCharacteristics 0x%x\n"), pe->real_flags);
2716#undef PF
6fa957a9 2717#define PF(x, y) if (pe->real_flags & x) { fprintf (file, "\t%s\n", y); }
d70270c5
BF
2718 PF (IMAGE_FILE_RELOCS_STRIPPED, "relocations stripped");
2719 PF (IMAGE_FILE_EXECUTABLE_IMAGE, "executable");
2720 PF (IMAGE_FILE_LINE_NUMS_STRIPPED, "line numbers stripped");
2721 PF (IMAGE_FILE_LOCAL_SYMS_STRIPPED, "symbols stripped");
2722 PF (IMAGE_FILE_LARGE_ADDRESS_AWARE, "large address aware");
2723 PF (IMAGE_FILE_BYTES_REVERSED_LO, "little endian");
2724 PF (IMAGE_FILE_32BIT_MACHINE, "32 bit words");
2725 PF (IMAGE_FILE_DEBUG_STRIPPED, "debugging information removed");
18e9a809
EZ
2726 PF (IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP, "copy to swap file if on removable media");
2727 PF (IMAGE_FILE_NET_RUN_FROM_SWAP, "copy to swap file if on network media");
d70270c5
BF
2728 PF (IMAGE_FILE_SYSTEM, "system file");
2729 PF (IMAGE_FILE_DLL, "DLL");
18e9a809 2730 PF (IMAGE_FILE_UP_SYSTEM_ONLY, "run only on uniprocessor machine");
d70270c5 2731 PF (IMAGE_FILE_BYTES_REVERSED_HI, "big endian");
277d1b5e
ILT
2732#undef PF
2733
b5d36aaa
JT
2734 /*
2735 If a PE_IMAGE_DEBUG_TYPE_REPRO entry is present in the debug directory, the
2736 timestamp is to be interpreted as the hash of a reproducible build.
2737 */
2738 if (pe_is_repro (abfd))
2739 {
2740 fprintf (file, "\nTime/Date\t\t%08lx", pe->coff.timestamp);
2741 fprintf (file, "\t(This is a reproducible build file hash, not a timestamp)\n");
2742 }
2743 else
2744 {
2745 /* ctime implies '\n'. */
2746 time_t t = pe->coff.timestamp;
2747 fprintf (file, "\nTime/Date\t\t%s", ctime (&t));
2748 }
d13c9dc6
L
2749
2750#ifndef IMAGE_NT_OPTIONAL_HDR_MAGIC
2751# define IMAGE_NT_OPTIONAL_HDR_MAGIC 0x10b
2752#endif
2753#ifndef IMAGE_NT_OPTIONAL_HDR64_MAGIC
2754# define IMAGE_NT_OPTIONAL_HDR64_MAGIC 0x20b
2755#endif
2756#ifndef IMAGE_NT_OPTIONAL_HDRROM_MAGIC
2757# define IMAGE_NT_OPTIONAL_HDRROM_MAGIC 0x107
2758#endif
2759
2760 switch (i->Magic)
2761 {
2762 case IMAGE_NT_OPTIONAL_HDR_MAGIC:
2763 name = "PE32";
2764 break;
2765 case IMAGE_NT_OPTIONAL_HDR64_MAGIC:
2766 name = "PE32+";
2767 break;
2768 case IMAGE_NT_OPTIONAL_HDRROM_MAGIC:
2769 name = "ROM";
2770 break;
2771 default:
2772 name = NULL;
2773 break;
2774 }
2775 fprintf (file, "Magic\t\t\t%04x", i->Magic);
2776 if (name)
2777 fprintf (file, "\t(%s)",name);
2778 fprintf (file, "\nMajorLinkerVersion\t%d\n", i->MajorLinkerVersion);
2779 fprintf (file, "MinorLinkerVersion\t%d\n", i->MinorLinkerVersion);
b24cc414
AM
2780 fprintf (file, "SizeOfCode\t\t");
2781 bfd_fprintf_vma (abfd, file, i->SizeOfCode);
2782 fprintf (file, "\nSizeOfInitializedData\t");
2783 bfd_fprintf_vma (abfd, file, i->SizeOfInitializedData);
2784 fprintf (file, "\nSizeOfUninitializedData\t");
2785 bfd_fprintf_vma (abfd, file, i->SizeOfUninitializedData);
2786 fprintf (file, "\nAddressOfEntryPoint\t");
ebf12fbe 2787 bfd_fprintf_vma (abfd, file, i->AddressOfEntryPoint);
d13c9dc6 2788 fprintf (file, "\nBaseOfCode\t\t");
ebf12fbe 2789 bfd_fprintf_vma (abfd, file, i->BaseOfCode);
b69c9d41 2790#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
d13c9dc6
L
2791 /* PE32+ does not have BaseOfData member! */
2792 fprintf (file, "\nBaseOfData\t\t");
ebf12fbe 2793 bfd_fprintf_vma (abfd, file, i->BaseOfData);
d13c9dc6
L
2794#endif
2795
9602af51 2796 fprintf (file, "\nImageBase\t\t");
ebf12fbe 2797 bfd_fprintf_vma (abfd, file, i->ImageBase);
b24cc414
AM
2798 fprintf (file, "\nSectionAlignment\t%08x\n", i->SectionAlignment);
2799 fprintf (file, "FileAlignment\t\t%08x\n", i->FileAlignment);
2800 fprintf (file, "MajorOSystemVersion\t%d\n", i->MajorOperatingSystemVersion);
9602af51
KH
2801 fprintf (file, "MinorOSystemVersion\t%d\n", i->MinorOperatingSystemVersion);
2802 fprintf (file, "MajorImageVersion\t%d\n", i->MajorImageVersion);
2803 fprintf (file, "MinorImageVersion\t%d\n", i->MinorImageVersion);
2804 fprintf (file, "MajorSubsystemVersion\t%d\n", i->MajorSubsystemVersion);
2805 fprintf (file, "MinorSubsystemVersion\t%d\n", i->MinorSubsystemVersion);
b24cc414
AM
2806 fprintf (file, "Win32Version\t\t%08x\n", i->Reserved1);
2807 fprintf (file, "SizeOfImage\t\t%08x\n", i->SizeOfImage);
2808 fprintf (file, "SizeOfHeaders\t\t%08x\n", i->SizeOfHeaders);
2809 fprintf (file, "CheckSum\t\t%08x\n", i->CheckSum);
1725a96e 2810
fac41780
JW
2811 switch (i->Subsystem)
2812 {
2813 case IMAGE_SUBSYSTEM_UNKNOWN:
2814 subsystem_name = "unspecified";
2815 break;
2816 case IMAGE_SUBSYSTEM_NATIVE:
2817 subsystem_name = "NT native";
2818 break;
2819 case IMAGE_SUBSYSTEM_WINDOWS_GUI:
2820 subsystem_name = "Windows GUI";
2821 break;
2822 case IMAGE_SUBSYSTEM_WINDOWS_CUI:
2823 subsystem_name = "Windows CUI";
2824 break;
2825 case IMAGE_SUBSYSTEM_POSIX_CUI:
2826 subsystem_name = "POSIX CUI";
2827 break;
2828 case IMAGE_SUBSYSTEM_WINDOWS_CE_GUI:
2829 subsystem_name = "Wince CUI";
2830 break;
279edac5 2831 /* These are from UEFI Platform Initialization Specification 1.1. */
fac41780
JW
2832 case IMAGE_SUBSYSTEM_EFI_APPLICATION:
2833 subsystem_name = "EFI application";
2834 break;
2835 case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
2836 subsystem_name = "EFI boot service driver";
2837 break;
2838 case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
9602af51 2839 subsystem_name = "EFI runtime driver";
fac41780 2840 break;
d9118602
L
2841 case IMAGE_SUBSYSTEM_SAL_RUNTIME_DRIVER:
2842 subsystem_name = "SAL runtime driver";
6c73cbb1 2843 break;
279edac5 2844 /* This is from revision 8.0 of the MS PE/COFF spec */
6c73cbb1
NC
2845 case IMAGE_SUBSYSTEM_XBOX:
2846 subsystem_name = "XBOX";
2847 break;
279edac5 2848 /* Added default case for clarity - subsystem_name is NULL anyway. */
6c73cbb1
NC
2849 default:
2850 subsystem_name = NULL;
fac41780 2851 }
1725a96e 2852
9602af51 2853 fprintf (file, "Subsystem\t\t%08x", i->Subsystem);
fac41780
JW
2854 if (subsystem_name)
2855 fprintf (file, "\t(%s)", subsystem_name);
9602af51 2856 fprintf (file, "\nDllCharacteristics\t%08x\n", i->DllCharacteristics);
18e9a809
EZ
2857 if (i->DllCharacteristics)
2858 {
2859 unsigned short dllch = i->DllCharacteristics;
2860 const char *indent = "\t\t\t\t\t";
2861
2862 if (dllch & IMAGE_DLL_CHARACTERISTICS_HIGH_ENTROPY_VA)
2863 fprintf (file, "%sHIGH_ENTROPY_VA\n", indent);
2864 if (dllch & IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE)
2865 fprintf (file, "%sDYNAMIC_BASE\n", indent);
2866 if (dllch & IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY)
2867 fprintf (file, "%sFORCE_INTEGRITY\n", indent);
2868 if (dllch & IMAGE_DLL_CHARACTERISTICS_NX_COMPAT)
2869 fprintf (file, "%sNX_COMPAT\n", indent);
2870 if (dllch & IMAGE_DLLCHARACTERISTICS_NO_ISOLATION)
2871 fprintf (file, "%sNO_ISOLATION\n", indent);
2872 if (dllch & IMAGE_DLLCHARACTERISTICS_NO_SEH)
2873 fprintf (file, "%sNO_SEH\n", indent);
2874 if (dllch & IMAGE_DLLCHARACTERISTICS_NO_BIND)
2875 fprintf (file, "%sNO_BIND\n", indent);
2876 if (dllch & IMAGE_DLLCHARACTERISTICS_APPCONTAINER)
2877 fprintf (file, "%sAPPCONTAINER\n", indent);
2878 if (dllch & IMAGE_DLLCHARACTERISTICS_WDM_DRIVER)
2879 fprintf (file, "%sWDM_DRIVER\n", indent);
2880 if (dllch & IMAGE_DLLCHARACTERISTICS_GUARD_CF)
2881 fprintf (file, "%sGUARD_CF\n", indent);
2882 if (dllch & IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE)
2883 fprintf (file, "%sTERMINAL_SERVICE_AWARE\n", indent);
2884 }
9602af51 2885 fprintf (file, "SizeOfStackReserve\t");
ebf12fbe 2886 bfd_fprintf_vma (abfd, file, i->SizeOfStackReserve);
9602af51 2887 fprintf (file, "\nSizeOfStackCommit\t");
ebf12fbe 2888 bfd_fprintf_vma (abfd, file, i->SizeOfStackCommit);
9602af51 2889 fprintf (file, "\nSizeOfHeapReserve\t");
ebf12fbe 2890 bfd_fprintf_vma (abfd, file, i->SizeOfHeapReserve);
9602af51 2891 fprintf (file, "\nSizeOfHeapCommit\t");
ebf12fbe 2892 bfd_fprintf_vma (abfd, file, i->SizeOfHeapCommit);
0af1713e
AM
2893 fprintf (file, "\nLoaderFlags\t\t%08lx\n", (unsigned long) i->LoaderFlags);
2894 fprintf (file, "NumberOfRvaAndSizes\t%08lx\n",
2895 (unsigned long) i->NumberOfRvaAndSizes);
277d1b5e 2896
9602af51 2897 fprintf (file, "\nThe Data Directory\n");
277d1b5e
ILT
2898 for (j = 0; j < IMAGE_NUMBEROF_DIRECTORY_ENTRIES; j++)
2899 {
2900 fprintf (file, "Entry %1x ", j);
ebf12fbe 2901 bfd_fprintf_vma (abfd, file, i->DataDirectory[j].VirtualAddress);
0af1713e 2902 fprintf (file, " %08lx ", (unsigned long) i->DataDirectory[j].Size);
277d1b5e
ILT
2903 fprintf (file, "%s\n", dir_names[j]);
2904 }
2905
2906 pe_print_idata (abfd, vfile);
2907 pe_print_edata (abfd, vfile);
2b5c217d
NC
2908 if (bfd_coff_have_print_pdata (abfd))
2909 bfd_coff_print_pdata (abfd, vfile);
2910 else
2911 pe_print_pdata (abfd, vfile);
277d1b5e 2912 pe_print_reloc (abfd, vfile);
61e2488c 2913 pe_print_debugdata (abfd, file);
277d1b5e 2914
5879bb8f 2915 rsrc_print_section (abfd, vfile);
9373215c 2916
0a1b45a2 2917 return true;
277d1b5e
ILT
2918}
2919
0a1b45a2 2920static bool
6e6e7cfc
JT
2921is_vma_in_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sect, void *obj)
2922{
2923 bfd_vma addr = * (bfd_vma *) obj;
2924 return (addr >= sect->vma) && (addr < (sect->vma + sect->size));
2925}
2926
2927static asection *
2928find_section_by_vma (bfd *abfd, bfd_vma addr)
2929{
2930 return bfd_sections_find_if (abfd, is_vma_in_section, (void *) & addr);
2931}
2932
277d1b5e
ILT
2933/* Copy any private info we understand from the input bfd
2934 to the output bfd. */
2935
0a1b45a2 2936bool
7920ce38 2937_bfd_XX_bfd_copy_private_bfd_data_common (bfd * ibfd, bfd * obfd)
277d1b5e 2938{
4be8cddc
L
2939 pe_data_type *ipe, *ope;
2940
277d1b5e
ILT
2941 /* One day we may try to grok other private data. */
2942 if (ibfd->xvec->flavour != bfd_target_coff_flavour
2943 || obfd->xvec->flavour != bfd_target_coff_flavour)
0a1b45a2 2944 return true;
277d1b5e 2945
4be8cddc
L
2946 ipe = pe_data (ibfd);
2947 ope = pe_data (obfd);
4e1fc599 2948
325c681d 2949 /* pe_opthdr is copied in copy_object. */
4be8cddc
L
2950 ope->dll = ipe->dll;
2951
2952 /* Don't copy input subsystem if output is different from input. */
2953 if (obfd->xvec != ibfd->xvec)
2954 ope->pe_opthdr.Subsystem = IMAGE_SUBSYSTEM_UNKNOWN;
277d1b5e 2955
1725a96e 2956 /* For strip: if we removed .reloc, we'll make a real mess of things
5933bdc9
ILT
2957 if we don't remove this entry as well. */
2958 if (! pe_data (obfd)->has_reloc_section)
2959 {
6c73cbb1
NC
2960 pe_data (obfd)->pe_opthdr.DataDirectory[PE_BASE_RELOCATION_TABLE].VirtualAddress = 0;
2961 pe_data (obfd)->pe_opthdr.DataDirectory[PE_BASE_RELOCATION_TABLE].Size = 0;
5933bdc9 2962 }
441f34fa
L
2963
2964 /* For PIE, if there is .reloc, we won't add IMAGE_FILE_RELOCS_STRIPPED.
2965 But there is no .reloc, we make sure that IMAGE_FILE_RELOCS_STRIPPED
2966 won't be added. */
2967 if (! pe_data (ibfd)->has_reloc_section
2968 && ! (pe_data (ibfd)->real_flags & IMAGE_FILE_RELOCS_STRIPPED))
2969 pe_data (obfd)->dont_strip_reloc = 1;
2970
70cf6834
AE
2971 memcpy (ope->dos_message, ipe->dos_message, sizeof (ope->dos_message));
2972
6e6e7cfc
JT
2973 /* The file offsets contained in the debug directory need rewriting. */
2974 if (ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].Size != 0)
2975 {
2976 bfd_vma addr = ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].VirtualAddress
2977 + ope->pe_opthdr.ImageBase;
610ed3e0
JB
2978 /* In particular a .buildid section may overlap (in VA space) with
2979 whatever section comes ahead of it (largely because of section->size
2980 representing s_size, not virt_size). Therefore don't look for the
2981 section containing the first byte, but for that covering the last
2982 one. */
2983 bfd_vma last = addr + ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].Size - 1;
2984 asection *section = find_section_by_vma (obfd, last);
6e6e7cfc
JT
2985 bfd_byte *data;
2986
610ed3e0
JB
2987 /* PR 17512: file: 0f15796a. */
2988 if (section && addr < section->vma)
2989 {
2990 /* xgettext:c-format */
2991 _bfd_error_handler
2992 (_("%pB: Data Directory (%lx bytes at %" PRIx64 ") "
2993 "extends across section boundary at %" PRIx64),
2994 obfd, ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].Size,
2995 (uint64_t) addr, (uint64_t) section->vma);
0a1b45a2 2996 return false;
610ed3e0
JB
2997 }
2998
6e6e7cfc 2999 if (section && bfd_malloc_and_get_section (obfd, section, &data))
07d6d2b8
AM
3000 {
3001 unsigned int i;
3002 struct external_IMAGE_DEBUG_DIRECTORY *dd =
6e6e7cfc
JT
3003 (struct external_IMAGE_DEBUG_DIRECTORY *)(data + (addr - section->vma));
3004
07d6d2b8 3005 for (i = 0; i < ope->pe_opthdr.DataDirectory[PE_DEBUG_DATA].Size
6e6e7cfc 3006 / sizeof (struct external_IMAGE_DEBUG_DIRECTORY); i++)
07d6d2b8
AM
3007 {
3008 asection *ddsection;
3009 struct external_IMAGE_DEBUG_DIRECTORY *edd = &(dd[i]);
3010 struct internal_IMAGE_DEBUG_DIRECTORY idd;
6e6e7cfc 3011
07d6d2b8 3012 _bfd_XXi_swap_debugdir_in (obfd, edd, &idd);
6e6e7cfc 3013
07d6d2b8
AM
3014 if (idd.AddressOfRawData == 0)
3015 continue; /* RVA 0 means only offset is valid, not handled yet. */
6e6e7cfc 3016
07d6d2b8
AM
3017 ddsection = find_section_by_vma (obfd, idd.AddressOfRawData + ope->pe_opthdr.ImageBase);
3018 if (!ddsection)
3019 continue; /* Not in a section! */
6e6e7cfc 3020
07d6d2b8 3021 idd.PointerToRawData = ddsection->filepos + (idd.AddressOfRawData
6e6e7cfc
JT
3022 + ope->pe_opthdr.ImageBase) - ddsection->vma;
3023
07d6d2b8
AM
3024 _bfd_XXi_swap_debugdir_out (obfd, &idd, edd);
3025 }
6e6e7cfc 3026
07d6d2b8 3027 if (!bfd_set_section_contents (obfd, section, data, 0, section->size))
86eafac0 3028 {
59d08d6c 3029 _bfd_error_handler (_("failed to update file offsets in debug directory"));
8df73d5c 3030 free (data);
0a1b45a2 3031 return false;
86eafac0 3032 }
8df73d5c 3033 free (data);
07d6d2b8 3034 }
86eafac0
NC
3035 else if (section)
3036 {
59d08d6c 3037 _bfd_error_handler (_("%pB: failed to read debug data section"), obfd);
0a1b45a2 3038 return false;
86eafac0 3039 }
6e6e7cfc
JT
3040 }
3041
0a1b45a2 3042 return true;
277d1b5e
ILT
3043}
3044
9602af51 3045/* Copy private section data. */
1725a96e 3046
0a1b45a2 3047bool
7920ce38
NC
3048_bfd_XX_bfd_copy_private_section_data (bfd *ibfd,
3049 asection *isec,
3050 bfd *obfd,
3051 asection *osec)
277d1b5e
ILT
3052{
3053 if (bfd_get_flavour (ibfd) != bfd_target_coff_flavour
3054 || bfd_get_flavour (obfd) != bfd_target_coff_flavour)
0a1b45a2 3055 return true;
277d1b5e
ILT
3056
3057 if (coff_section_data (ibfd, isec) != NULL
3058 && pei_section_data (ibfd, isec) != NULL)
3059 {
3060 if (coff_section_data (obfd, osec) == NULL)
3061 {
986f0783 3062 size_t amt = sizeof (struct coff_section_tdata);
7920ce38 3063 osec->used_by_bfd = bfd_zalloc (obfd, amt);
277d1b5e 3064 if (osec->used_by_bfd == NULL)
0a1b45a2 3065 return false;
277d1b5e 3066 }
1725a96e 3067
277d1b5e
ILT
3068 if (pei_section_data (obfd, osec) == NULL)
3069 {
986f0783 3070 size_t amt = sizeof (struct pei_section_tdata);
7920ce38 3071 coff_section_data (obfd, osec)->tdata = bfd_zalloc (obfd, amt);
277d1b5e 3072 if (coff_section_data (obfd, osec)->tdata == NULL)
0a1b45a2 3073 return false;
277d1b5e 3074 }
1725a96e 3075
277d1b5e
ILT
3076 pei_section_data (obfd, osec)->virt_size =
3077 pei_section_data (ibfd, isec)->virt_size;
5933bdc9 3078 pei_section_data (obfd, osec)->pe_flags =
6fa957a9 3079 pei_section_data (ibfd, isec)->pe_flags;
277d1b5e
ILT
3080 }
3081
0a1b45a2 3082 return true;
277d1b5e 3083}
7d2b58d6
ILT
3084
3085void
7920ce38 3086_bfd_XX_get_symbol_info (bfd * abfd, asymbol *symbol, symbol_info *ret)
7d2b58d6
ILT
3087{
3088 coff_get_symbol_info (abfd, symbol, ret);
7d2b58d6 3089}
2fbadf2c 3090
e5b10c40 3091#if !defined(COFF_WITH_pep) && (defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64))
5174d0fb
KT
3092static int
3093sort_x64_pdata (const void *l, const void *r)
3094{
3095 const char *lp = (const char *) l;
3096 const char *rp = (const char *) r;
3097 bfd_vma vl, vr;
3098 vl = bfd_getl32 (lp); vr = bfd_getl32 (rp);
3099 if (vl != vr)
3100 return (vl < vr ? -1 : 1);
3101 /* We compare just begin address. */
3102 return 0;
3103}
3104#endif
5879bb8f
NC
3105\f
3106/* Functions to process a .rsrc section. */
3107
3108static unsigned int sizeof_leaves;
3109static unsigned int sizeof_strings;
3110static unsigned int sizeof_tables_and_entries;
3111
3112static bfd_byte *
3113rsrc_count_directory (bfd *, bfd_byte *, bfd_byte *, bfd_byte *, bfd_vma);
3114
3115static bfd_byte *
0a1b45a2
AM
3116rsrc_count_entries (bfd *abfd,
3117 bool is_name,
3118 bfd_byte *datastart,
3119 bfd_byte *data,
3120 bfd_byte *dataend,
3121 bfd_vma rva_bias)
5879bb8f
NC
3122{
3123 unsigned long entry, addr, size;
3124
3125 if (data + 8 >= dataend)
3126 return dataend + 1;
3127
3128 if (is_name)
3129 {
3130 bfd_byte * name;
3131
3132 entry = (long) bfd_get_32 (abfd, data);
3133
3134 if (HighBitSet (entry))
3135 name = datastart + WithoutHighBit (entry);
3136 else
3137 name = datastart + entry - rva_bias;
3138
20ad5e28 3139 if (name + 2 >= dataend || name < datastart)
5879bb8f
NC
3140 return dataend + 1;
3141
3142 unsigned int len = bfd_get_16 (abfd, name);
3143 if (len == 0 || len > 256)
3144 return dataend + 1;
5879bb8f
NC
3145 }
3146
3147 entry = (long) bfd_get_32 (abfd, data + 4);
3148
3149 if (HighBitSet (entry))
20ad5e28
NC
3150 {
3151 data = datastart + WithoutHighBit (entry);
3152
3153 if (data <= datastart || data >= dataend)
3154 return dataend + 1;
3155
3156 return rsrc_count_directory (abfd, datastart, data, dataend, rva_bias);
3157 }
5879bb8f
NC
3158
3159 if (datastart + entry + 16 >= dataend)
3160 return dataend + 1;
3161
3162 addr = (long) bfd_get_32 (abfd, datastart + entry);
3163 size = (long) bfd_get_32 (abfd, datastart + entry + 4);
3164
5879bb8f
NC
3165 return datastart + addr - rva_bias + size;
3166}
9373215c 3167
5879bb8f 3168static bfd_byte *
07d6d2b8 3169rsrc_count_directory (bfd * abfd,
5879bb8f
NC
3170 bfd_byte * datastart,
3171 bfd_byte * data,
3172 bfd_byte * dataend,
07d6d2b8 3173 bfd_vma rva_bias)
5879bb8f
NC
3174{
3175 unsigned int num_entries, num_ids;
3176 bfd_byte * highest_data = data;
3177
3178 if (data + 16 >= dataend)
3179 return dataend + 1;
3180
3181 num_entries = (int) bfd_get_16 (abfd, data + 12);
3182 num_ids = (int) bfd_get_16 (abfd, data + 14);
3183
3184 num_entries += num_ids;
3185
3186 data += 16;
5879bb8f
NC
3187
3188 while (num_entries --)
3189 {
3190 bfd_byte * entry_end;
3191
3192 entry_end = rsrc_count_entries (abfd, num_entries >= num_ids,
3193 datastart, data, dataend, rva_bias);
3194 data += 8;
5879bb8f
NC
3195 highest_data = max (highest_data, entry_end);
3196 if (entry_end >= dataend)
3197 break;
3198 }
3199
3200 return max (highest_data, data);
3201}
3202
3203typedef struct rsrc_dir_chain
3204{
07d6d2b8 3205 unsigned int num_entries;
5879bb8f
NC
3206 struct rsrc_entry * first_entry;
3207 struct rsrc_entry * last_entry;
3208} rsrc_dir_chain;
3209
3210typedef struct rsrc_directory
3211{
3212 unsigned int characteristics;
3213 unsigned int time;
3214 unsigned int major;
3215 unsigned int minor;
3216
3217 rsrc_dir_chain names;
3218 rsrc_dir_chain ids;
3219
3220 struct rsrc_entry * entry;
3221} rsrc_directory;
3222
3223typedef struct rsrc_string
3224{
07d6d2b8
AM
3225 unsigned int len;
3226 bfd_byte * string;
5879bb8f 3227} rsrc_string;
9373215c 3228
5879bb8f
NC
3229typedef struct rsrc_leaf
3230{
07d6d2b8
AM
3231 unsigned int size;
3232 unsigned int codepage;
3233 bfd_byte * data;
5879bb8f
NC
3234} rsrc_leaf;
3235
3236typedef struct rsrc_entry
3237{
0a1b45a2 3238 bool is_name;
5879bb8f
NC
3239 union
3240 {
07d6d2b8
AM
3241 unsigned int id;
3242 struct rsrc_string name;
5879bb8f
NC
3243 } name_id;
3244
0a1b45a2 3245 bool is_dir;
5879bb8f
NC
3246 union
3247 {
3248 struct rsrc_directory * directory;
07d6d2b8 3249 struct rsrc_leaf * leaf;
5879bb8f
NC
3250 } value;
3251
07d6d2b8 3252 struct rsrc_entry * next_entry;
5879bb8f
NC
3253 struct rsrc_directory * parent;
3254} rsrc_entry;
3255
3256static bfd_byte *
3257rsrc_parse_directory (bfd *, rsrc_directory *, bfd_byte *,
3258 bfd_byte *, bfd_byte *, bfd_vma, rsrc_entry *);
3259
3260static bfd_byte *
0a1b45a2
AM
3261rsrc_parse_entry (bfd *abfd,
3262 bool is_name,
3263 rsrc_entry *entry,
3264 bfd_byte *datastart,
3265 bfd_byte * data,
3266 bfd_byte *dataend,
3267 bfd_vma rva_bias,
3268 rsrc_directory *parent)
5879bb8f
NC
3269{
3270 unsigned long val, addr, size;
3271
3272 val = bfd_get_32 (abfd, data);
3273
3274 entry->parent = parent;
3275 entry->is_name = is_name;
3276
3277 if (is_name)
3278 {
20ad5e28
NC
3279 bfd_byte * address;
3280
5879bb8f
NC
3281 if (HighBitSet (val))
3282 {
3283 val = WithoutHighBit (val);
3284
20ad5e28 3285 address = datastart + val;
5879bb8f
NC
3286 }
3287 else
3288 {
20ad5e28 3289 address = datastart + val - rva_bias;
5879bb8f 3290 }
20ad5e28
NC
3291
3292 if (address + 3 > dataend)
3293 return dataend;
3294
3295 entry->name_id.name.len = bfd_get_16 (abfd, address);
3296 entry->name_id.name.string = address + 2;
5879bb8f
NC
3297 }
3298 else
3299 entry->name_id.id = val;
3300
3301 val = bfd_get_32 (abfd, data + 4);
3302
3303 if (HighBitSet (val))
3304 {
0a1b45a2 3305 entry->is_dir = true;
5879bb8f
NC
3306 entry->value.directory = bfd_malloc (sizeof * entry->value.directory);
3307 if (entry->value.directory == NULL)
3308 return dataend;
3309
3310 return rsrc_parse_directory (abfd, entry->value.directory,
3311 datastart,
3312 datastart + WithoutHighBit (val),
3313 dataend, rva_bias, entry);
3314 }
3315
0a1b45a2 3316 entry->is_dir = false;
5879bb8f
NC
3317 entry->value.leaf = bfd_malloc (sizeof * entry->value.leaf);
3318 if (entry->value.leaf == NULL)
3319 return dataend;
3320
5929c344
NC
3321 data = datastart + val;
3322 if (data < datastart || data >= dataend)
3323 return dataend;
3324
3325 addr = bfd_get_32 (abfd, data);
3326 size = entry->value.leaf->size = bfd_get_32 (abfd, data + 4);
3327 entry->value.leaf->codepage = bfd_get_32 (abfd, data + 8);
3328 /* FIXME: We assume that the reserved field (data + 12) is OK. */
5879bb8f
NC
3329
3330 entry->value.leaf->data = bfd_malloc (size);
3331 if (entry->value.leaf->data == NULL)
3332 return dataend;
3333
3334 memcpy (entry->value.leaf->data, datastart + addr - rva_bias, size);
3335 return datastart + (addr - rva_bias) + size;
3336}
3337
3338static bfd_byte *
0a1b45a2
AM
3339rsrc_parse_entries (bfd *abfd,
3340 rsrc_dir_chain *chain,
3341 bool is_name,
3342 bfd_byte *highest_data,
3343 bfd_byte *datastart,
3344 bfd_byte *data,
3345 bfd_byte *dataend,
3346 bfd_vma rva_bias,
3347 rsrc_directory *parent)
5879bb8f 3348{
9373215c 3349 unsigned int i;
5879bb8f
NC
3350 rsrc_entry * entry;
3351
3352 if (chain->num_entries == 0)
3353 {
3354 chain->first_entry = chain->last_entry = NULL;
3355 return highest_data;
3356 }
3357
3358 entry = bfd_malloc (sizeof * entry);
3359 if (entry == NULL)
3360 return dataend;
3361
3362 chain->first_entry = entry;
3363
5879bb8f
NC
3364 for (i = chain->num_entries; i--;)
3365 {
3366 bfd_byte * entry_end;
3367
3368 entry_end = rsrc_parse_entry (abfd, is_name, entry, datastart,
3369 data, dataend, rva_bias, parent);
3370 data += 8;
3371 highest_data = max (entry_end, highest_data);
3372 if (entry_end > dataend)
3373 return dataend;
3374
3375 if (i)
3376 {
3377 entry->next_entry = bfd_malloc (sizeof * entry);
3378 entry = entry->next_entry;
3379 if (entry == NULL)
3380 return dataend;
3381 }
3382 else
3383 entry->next_entry = NULL;
3384 }
3385
3386 chain->last_entry = entry;
3387
3388 return highest_data;
3389}
3390
3391static bfd_byte *
07d6d2b8 3392rsrc_parse_directory (bfd * abfd,
5879bb8f
NC
3393 rsrc_directory * table,
3394 bfd_byte * datastart,
3395 bfd_byte * data,
3396 bfd_byte * dataend,
07d6d2b8 3397 bfd_vma rva_bias,
5879bb8f
NC
3398 rsrc_entry * entry)
3399{
3400 bfd_byte * highest_data = data;
3401
3402 if (table == NULL)
3403 return dataend;
3404
3405 table->characteristics = bfd_get_32 (abfd, data);
3406 table->time = bfd_get_32 (abfd, data + 4);
3407 table->major = bfd_get_16 (abfd, data + 8);
3408 table->minor = bfd_get_16 (abfd, data + 10);
3409 table->names.num_entries = bfd_get_16 (abfd, data + 12);
3410 table->ids.num_entries = bfd_get_16 (abfd, data + 14);
3411 table->entry = entry;
3412
3413 data += 16;
3414
0a1b45a2 3415 highest_data = rsrc_parse_entries (abfd, & table->names, true, data,
5879bb8f
NC
3416 datastart, data, dataend, rva_bias, table);
3417 data += table->names.num_entries * 8;
3418
0a1b45a2 3419 highest_data = rsrc_parse_entries (abfd, & table->ids, false, highest_data,
5879bb8f
NC
3420 datastart, data, dataend, rva_bias, table);
3421 data += table->ids.num_entries * 8;
3422
3423 return max (highest_data, data);
3424}
3425
3426typedef struct rsrc_write_data
3427{
3428 bfd * abfd;
3429 bfd_byte * datastart;
3430 bfd_byte * next_table;
3431 bfd_byte * next_leaf;
3432 bfd_byte * next_string;
3433 bfd_byte * next_data;
3434 bfd_vma rva_bias;
9373215c
PM
3435} rsrc_write_data;
3436
5879bb8f
NC
3437static void
3438rsrc_write_string (rsrc_write_data * data,
3439 rsrc_string * string)
3440{
3441 bfd_put_16 (data->abfd, string->len, data->next_string);
3442 memcpy (data->next_string + 2, string->string, string->len * 2);
3443 data->next_string += (string->len + 1) * 2;
3444}
3445
3446static inline unsigned int
3447rsrc_compute_rva (rsrc_write_data * data,
07d6d2b8 3448 bfd_byte * addr)
5879bb8f
NC
3449{
3450 return (addr - data->datastart) + data->rva_bias;
3451}
3452
3453static void
3454rsrc_write_leaf (rsrc_write_data * data,
07d6d2b8 3455 rsrc_leaf * leaf)
5879bb8f 3456{
9373215c
PM
3457 bfd_put_32 (data->abfd, rsrc_compute_rva (data, data->next_data),
3458 data->next_leaf);
5879bb8f
NC
3459 bfd_put_32 (data->abfd, leaf->size, data->next_leaf + 4);
3460 bfd_put_32 (data->abfd, leaf->codepage, data->next_leaf + 8);
3461 bfd_put_32 (data->abfd, 0 /*reserved*/, data->next_leaf + 12);
3462 data->next_leaf += 16;
3463
3464 memcpy (data->next_data, leaf->data, leaf->size);
3714081c
NC
3465 /* An undocumented feature of Windows resources is that each unit
3466 of raw data is 8-byte aligned... */
3467 data->next_data += ((leaf->size + 7) & ~7);
5879bb8f
NC
3468}
3469
3470static void rsrc_write_directory (rsrc_write_data *, rsrc_directory *);
3471
3472static void
3473rsrc_write_entry (rsrc_write_data * data,
07d6d2b8
AM
3474 bfd_byte * where,
3475 rsrc_entry * entry)
5879bb8f
NC
3476{
3477 if (entry->is_name)
3478 {
3479 bfd_put_32 (data->abfd,
3480 SetHighBit (data->next_string - data->datastart),
3481 where);
3482 rsrc_write_string (data, & entry->name_id.name);
3483 }
3484 else
3485 bfd_put_32 (data->abfd, entry->name_id.id, where);
3486
3487 if (entry->is_dir)
3488 {
3489 bfd_put_32 (data->abfd,
3490 SetHighBit (data->next_table - data->datastart),
3491 where + 4);
3492 rsrc_write_directory (data, entry->value.directory);
3493 }
3494 else
3495 {
3496 bfd_put_32 (data->abfd, data->next_leaf - data->datastart, where + 4);
3497 rsrc_write_leaf (data, entry->value.leaf);
3498 }
3499}
3500
3714081c
NC
3501static void
3502rsrc_compute_region_sizes (rsrc_directory * dir)
3503{
3504 struct rsrc_entry * entry;
3505
3506 if (dir == NULL)
3507 return;
3508
3509 sizeof_tables_and_entries += 16;
3510
3511 for (entry = dir->names.first_entry; entry != NULL; entry = entry->next_entry)
3512 {
3513 sizeof_tables_and_entries += 8;
3514
3515 sizeof_strings += (entry->name_id.name.len + 1) * 2;
1b786873 3516
3714081c
NC
3517 if (entry->is_dir)
3518 rsrc_compute_region_sizes (entry->value.directory);
3519 else
3520 sizeof_leaves += 16;
3521 }
3522
3523 for (entry = dir->ids.first_entry; entry != NULL; entry = entry->next_entry)
3524 {
3525 sizeof_tables_and_entries += 8;
3526
3527 if (entry->is_dir)
3528 rsrc_compute_region_sizes (entry->value.directory);
3529 else
3530 sizeof_leaves += 16;
3531 }
3532}
3533
5879bb8f
NC
3534static void
3535rsrc_write_directory (rsrc_write_data * data,
3536 rsrc_directory * dir)
3537{
3538 rsrc_entry * entry;
3539 unsigned int i;
9373215c
PM
3540 bfd_byte * next_entry;
3541 bfd_byte * nt;
5879bb8f
NC
3542
3543 bfd_put_32 (data->abfd, dir->characteristics, data->next_table);
3544 bfd_put_32 (data->abfd, 0 /*dir->time*/, data->next_table + 4);
3545 bfd_put_16 (data->abfd, dir->major, data->next_table + 8);
3546 bfd_put_16 (data->abfd, dir->minor, data->next_table + 10);
3547 bfd_put_16 (data->abfd, dir->names.num_entries, data->next_table + 12);
3548 bfd_put_16 (data->abfd, dir->ids.num_entries, data->next_table + 14);
3549
3550 /* Compute where the entries and the next table will be placed. */
9373215c
PM
3551 next_entry = data->next_table + 16;
3552 data->next_table = next_entry + (dir->names.num_entries * 8)
3553 + (dir->ids.num_entries * 8);
3554 nt = data->next_table;
3555
5879bb8f
NC
3556 /* Write the entries. */
3557 for (i = dir->names.num_entries, entry = dir->names.first_entry;
3558 i > 0 && entry != NULL;
3559 i--, entry = entry->next_entry)
3560 {
3714081c 3561 BFD_ASSERT (entry->is_name);
5879bb8f
NC
3562 rsrc_write_entry (data, next_entry, entry);
3563 next_entry += 8;
3564 }
3565 BFD_ASSERT (i == 0);
3566 BFD_ASSERT (entry == NULL);
3567
3568 for (i = dir->ids.num_entries, entry = dir->ids.first_entry;
3569 i > 0 && entry != NULL;
3570 i--, entry = entry->next_entry)
3571 {
3714081c 3572 BFD_ASSERT (! entry->is_name);
5879bb8f
NC
3573 rsrc_write_entry (data, next_entry, entry);
3574 next_entry += 8;
3575 }
3576 BFD_ASSERT (i == 0);
3577 BFD_ASSERT (entry == NULL);
3578 BFD_ASSERT (nt == next_entry);
3579}
3580
83c79df8 3581#if ! defined __CYGWIN__ && ! defined __MINGW32__
5879bb8f
NC
3582/* Return the length (number of units) of the first character in S,
3583 putting its 'ucs4_t' representation in *PUC. */
3584
3585static unsigned int
31593e1b 3586u16_mbtouc (wint_t * puc, const unsigned short * s, unsigned int n)
5879bb8f
NC
3587{
3588 unsigned short c = * s;
3589
3590 if (c < 0xd800 || c >= 0xe000)
3591 {
3592 *puc = c;
3593 return 1;
3594 }
3595
3596 if (c < 0xdc00)
3597 {
3598 if (n >= 2)
07d6d2b8
AM
3599 {
3600 if (s[1] >= 0xdc00 && s[1] < 0xe000)
3601 {
3602 *puc = 0x10000 + ((c - 0xd800) << 10) + (s[1] - 0xdc00);
3603 return 2;
3604 }
3605 }
5879bb8f 3606 else
07d6d2b8
AM
3607 {
3608 /* Incomplete multibyte character. */
3609 *puc = 0xfffd;
3610 return n;
3611 }
5879bb8f
NC
3612 }
3613
3614 /* Invalid multibyte character. */
3615 *puc = 0xfffd;
3616 return 1;
3617}
83c79df8 3618#endif /* not Cygwin/Mingw */
5879bb8f
NC
3619
3620/* Perform a comparison of two entries. */
3621static signed int
0a1b45a2 3622rsrc_cmp (bool is_name, rsrc_entry * a, rsrc_entry * b)
5879bb8f 3623{
9373215c 3624 signed int res;
9373215c
PM
3625 bfd_byte * astring;
3626 unsigned int alen;
3627 bfd_byte * bstring;
3628 unsigned int blen;
3629
5879bb8f 3630 if (! is_name)
9373215c 3631 return a->name_id.id - b->name_id.id;
5879bb8f
NC
3632
3633 /* We have to perform a case insenstive, unicode string comparison... */
9373215c
PM
3634 astring = a->name_id.name.string;
3635 alen = a->name_id.name.len;
3636 bstring = b->name_id.name.string;
3637 blen = b->name_id.name.len;
5879bb8f 3638
9373215c
PM
3639#if defined __CYGWIN__ || defined __MINGW32__
3640 /* Under Windows hosts (both Cygwin and Mingw types),
3641 unicode == UTF-16 == wchar_t. The case insensitive string comparison
3642 function however goes by different names in the two environments... */
3643
3644#undef rscpcmp
5879bb8f 3645#ifdef __CYGWIN__
9373215c
PM
3646#define rscpcmp wcsncasecmp
3647#endif
3648#ifdef __MINGW32__
3649#define rscpcmp wcsnicmp
3650#endif
3651
3652 res = rscpcmp ((const wchar_t *) astring, (const wchar_t *) bstring,
3653 min (alen, blen));
5879bb8f 3654
83c79df8 3655#else
3f10b67a
PM
3656 {
3657 unsigned int i;
31593e1b 3658
3f10b67a
PM
3659 res = 0;
3660 for (i = min (alen, blen); i--; astring += 2, bstring += 2)
3661 {
31593e1b
NC
3662 wint_t awc;
3663 wint_t bwc;
3f10b67a 3664
31593e1b
NC
3665 /* Convert UTF-16 unicode characters into wchar_t characters
3666 so that we can then perform a case insensitive comparison. */
3667 unsigned int Alen = u16_mbtouc (& awc, (const unsigned short *) astring, 2);
3668 unsigned int Blen = u16_mbtouc (& bwc, (const unsigned short *) bstring, 2);
3f10b67a
PM
3669
3670 if (Alen != Blen)
3671 return Alen - Blen;
31593e1b 3672
31593e1b
NC
3673 awc = towlower (awc);
3674 bwc = towlower (bwc);
3675
3676 res = awc - bwc;
3f10b67a
PM
3677 if (res)
3678 break;
3679 }
3680 }
5879bb8f
NC
3681#endif
3682
3683 if (res == 0)
3684 res = alen - blen;
3685
3686 return res;
3687}
3688
3689static void
3690rsrc_print_name (char * buffer, rsrc_string string)
3691{
3692 unsigned int i;
3693 bfd_byte * name = string.string;
3694
3695 for (i = string.len; i--; name += 2)
3696 sprintf (buffer + strlen (buffer), "%.1s", name);
3697}
3698
3699static const char *
7fbd5f4e 3700rsrc_resource_name (rsrc_entry *entry, rsrc_directory *dir, char *buffer)
5879bb8f 3701{
0a1b45a2 3702 bool is_string = false;
5879bb8f
NC
3703
3704 buffer[0] = 0;
3705
9373215c
PM
3706 if (dir != NULL && dir->entry != NULL && dir->entry->parent != NULL
3707 && dir->entry->parent->entry != NULL)
5879bb8f
NC
3708 {
3709 strcpy (buffer, "type: ");
3710 if (dir->entry->parent->entry->is_name)
9373215c
PM
3711 rsrc_print_name (buffer + strlen (buffer),
3712 dir->entry->parent->entry->name_id.name);
5879bb8f
NC
3713 else
3714 {
3715 unsigned int id = dir->entry->parent->entry->name_id.id;
3716
3717 sprintf (buffer + strlen (buffer), "%x", id);
3718 switch (id)
3719 {
3720 case 1: strcat (buffer, " (CURSOR)"); break;
3721 case 2: strcat (buffer, " (BITMAP)"); break;
3722 case 3: strcat (buffer, " (ICON)"); break;
07d6d2b8 3723 case 4: strcat (buffer, " (MENU)"); break;
5879bb8f 3724 case 5: strcat (buffer, " (DIALOG)"); break;
0a1b45a2 3725 case 6: strcat (buffer, " (STRING)"); is_string = true; break;
5879bb8f
NC
3726 case 7: strcat (buffer, " (FONTDIR)"); break;
3727 case 8: strcat (buffer, " (FONT)"); break;
3728 case 9: strcat (buffer, " (ACCELERATOR)"); break;
3729 case 10: strcat (buffer, " (RCDATA)"); break;
3730 case 11: strcat (buffer, " (MESSAGETABLE)"); break;
3731 case 12: strcat (buffer, " (GROUP_CURSOR)"); break;
3732 case 14: strcat (buffer, " (GROUP_ICON)"); break;
3733 case 16: strcat (buffer, " (VERSION)"); break;
3734 case 17: strcat (buffer, " (DLGINCLUDE)"); break;
3735 case 19: strcat (buffer, " (PLUGPLAY)"); break;
3736 case 20: strcat (buffer, " (VXD)"); break;
3737 case 21: strcat (buffer, " (ANICURSOR)"); break;
3738 case 22: strcat (buffer, " (ANIICON)"); break;
3739 case 23: strcat (buffer, " (HTML)"); break;
3740 case 24: strcat (buffer, " (MANIFEST)"); break;
3741 case 240: strcat (buffer, " (DLGINIT)"); break;
3742 case 241: strcat (buffer, " (TOOLBAR)"); break;
3743 }
3744 }
3745 }
3746
3747 if (dir != NULL && dir->entry != NULL)
3748 {
3749 strcat (buffer, " name: ");
3750 if (dir->entry->is_name)
3751 rsrc_print_name (buffer + strlen (buffer), dir->entry->name_id.name);
3752 else
3753 {
3754 unsigned int id = dir->entry->name_id.id;
3755
3756 sprintf (buffer + strlen (buffer), "%x", id);
3757
3758 if (is_string)
3759 sprintf (buffer + strlen (buffer), " (resource id range: %d - %d)",
3760 (id - 1) << 4, (id << 4) - 1);
3761 }
3762 }
3763
3764 if (entry != NULL)
3765 {
3766 strcat (buffer, " lang: ");
3767
3768 if (entry->is_name)
3769 rsrc_print_name (buffer + strlen (buffer), entry->name_id.name);
3770 else
3771 sprintf (buffer + strlen (buffer), "%x", entry->name_id.id);
3772 }
3773
3774 return buffer;
3775}
3776
3777/* *sigh* Windows resource strings are special. Only the top 28-bits of
3778 their ID is stored in the NAME entry. The bottom four bits are used as
3779 an index into unicode string table that makes up the data of the leaf.
3780 So identical type-name-lang string resources may not actually be
3781 identical at all.
3782
3783 This function is called when we have detected two string resources with
3784 match top-28-bit IDs. We have to scan the string tables inside the leaves
3785 and discover if there are any real collisions. If there are then we report
9373215c
PM
3786 them and return FALSE. Otherwise we copy any strings from B into A and
3787 then return TRUE. */
5879bb8f 3788
0a1b45a2 3789static bool
5879bb8f
NC
3790rsrc_merge_string_entries (rsrc_entry * a ATTRIBUTE_UNUSED,
3791 rsrc_entry * b ATTRIBUTE_UNUSED)
3792{
3793 unsigned int copy_needed = 0;
3794 unsigned int i;
9373215c
PM
3795 bfd_byte * astring;
3796 bfd_byte * bstring;
3797 bfd_byte * new_data;
3798 bfd_byte * nstring;
5879bb8f
NC
3799
3800 /* Step one: Find out what we have to do. */
3801 BFD_ASSERT (! a->is_dir);
9373215c 3802 astring = a->value.leaf->data;
5879bb8f
NC
3803
3804 BFD_ASSERT (! b->is_dir);
9373215c 3805 bstring = b->value.leaf->data;
5879bb8f
NC
3806
3807 for (i = 0; i < 16; i++)
3808 {
3809 unsigned int alen = astring[0] + (astring[1] << 8);
3810 unsigned int blen = bstring[0] + (bstring[1] << 8);
3811
3812 if (alen == 0)
3813 {
3814 copy_needed += blen * 2;
3815 }
3816 else if (blen == 0)
3817 ;
3818 else if (alen != blen)
3819 /* FIXME: Should we continue the loop in order to report other duplicates ? */
3820 break;
3821 /* alen == blen != 0. We might have two identical strings. If so we
3822 can ignore the second one. There is no need for wchar_t vs UTF-16
3823 theatrics here - we are only interested in (case sensitive) equality. */
3824 else if (memcmp (astring + 2, bstring + 2, alen * 2) != 0)
3825 break;
3826
3827 astring += (alen + 1) * 2;
3828 bstring += (blen + 1) * 2;
3829 }
3830
3831 if (i != 16)
3832 {
3833 if (a->parent != NULL
3834 && a->parent->entry != NULL
535b785f 3835 && !a->parent->entry->is_name)
5879bb8f
NC
3836 _bfd_error_handler (_(".rsrc merge failure: duplicate string resource: %d"),
3837 ((a->parent->entry->name_id.id - 1) << 4) + i);
0a1b45a2 3838 return false;
5879bb8f
NC
3839 }
3840
3841 if (copy_needed == 0)
0a1b45a2 3842 return true;
5879bb8f
NC
3843
3844 /* If we reach here then A and B must both have non-colliding strings.
3845 (We never get string resources with fully empty string tables).
3846 We need to allocate an extra COPY_NEEDED bytes in A and then bring
3847 in B's strings. */
9373215c 3848 new_data = bfd_malloc (a->value.leaf->size + copy_needed);
5879bb8f 3849 if (new_data == NULL)
0a1b45a2 3850 return false;
5879bb8f 3851
9373215c 3852 nstring = new_data;
5879bb8f
NC
3853 astring = a->value.leaf->data;
3854 bstring = b->value.leaf->data;
3855
3856 for (i = 0; i < 16; i++)
3857 {
3858 unsigned int alen = astring[0] + (astring[1] << 8);
3859 unsigned int blen = bstring[0] + (bstring[1] << 8);
3860
3861 if (alen != 0)
3862 {
3863 memcpy (nstring, astring, (alen + 1) * 2);
3864 nstring += (alen + 1) * 2;
3865 }
3866 else if (blen != 0)
3867 {
3868 memcpy (nstring, bstring, (blen + 1) * 2);
3869 nstring += (blen + 1) * 2;
3870 }
3871 else
3872 {
3873 * nstring++ = 0;
3874 * nstring++ = 0;
3875 }
9373215c 3876
5879bb8f
NC
3877 astring += (alen + 1) * 2;
3878 bstring += (blen + 1) * 2;
3879 }
3880
3881 BFD_ASSERT (nstring - new_data == (signed) (a->value.leaf->size + copy_needed));
9373215c 3882
5879bb8f
NC
3883 free (a->value.leaf->data);
3884 a->value.leaf->data = new_data;
3885 a->value.leaf->size += copy_needed;
3886
0a1b45a2 3887 return true;
5879bb8f
NC
3888}
3889
3890static void rsrc_merge (rsrc_entry *, rsrc_entry *);
3891
3892/* Sort the entries in given part of the directory.
3893 We use an old fashioned bubble sort because we are dealing
9373215c 3894 with lists and we want to handle matches specially. */
5879bb8f
NC
3895
3896static void
0a1b45a2
AM
3897rsrc_sort_entries (rsrc_dir_chain *chain,
3898 bool is_name,
3899 rsrc_directory *dir)
5879bb8f
NC
3900{
3901 rsrc_entry * entry;
3902 rsrc_entry * next;
3903 rsrc_entry ** points_to_entry;
0a1b45a2 3904 bool swapped;
5879bb8f
NC
3905
3906 if (chain->num_entries < 2)
3907 return;
3908
3909 do
3910 {
0a1b45a2 3911 swapped = false;
5879bb8f
NC
3912 points_to_entry = & chain->first_entry;
3913 entry = * points_to_entry;
3914 next = entry->next_entry;
3915
3916 do
3917 {
3918 signed int cmp = rsrc_cmp (is_name, entry, next);
3919
3920 if (cmp > 0)
3921 {
3922 entry->next_entry = next->next_entry;
3923 next->next_entry = entry;
3924 * points_to_entry = next;
3925 points_to_entry = & next->next_entry;
3926 next = entry->next_entry;
0a1b45a2 3927 swapped = true;
5879bb8f
NC
3928 }
3929 else if (cmp == 0)
3930 {
3931 if (entry->is_dir && next->is_dir)
3932 {
3933 /* When we encounter identical directory entries we have to
3934 merge them together. The exception to this rule is for
3935 resource manifests - there can only be one of these,
3936 even if they differ in language. Zero-language manifests
3937 are assumed to be default manifests (provided by the
3714081c 3938 Cygwin/MinGW build system) and these can be silently dropped,
5879bb8f
NC
3939 unless that would reduce the number of manifests to zero.
3940 There should only ever be one non-zero lang manifest -
3941 if there are more it is an error. A non-zero lang
3942 manifest takes precedence over a default manifest. */
535b785f 3943 if (!entry->is_name
5879bb8f
NC
3944 && entry->name_id.id == 1
3945 && dir != NULL
3946 && dir->entry != NULL
535b785f 3947 && !dir->entry->is_name
5879bb8f
NC
3948 && dir->entry->name_id.id == 0x18)
3949 {
3950 if (next->value.directory->names.num_entries == 0
3951 && next->value.directory->ids.num_entries == 1
535b785f 3952 && !next->value.directory->ids.first_entry->is_name
5879bb8f
NC
3953 && next->value.directory->ids.first_entry->name_id.id == 0)
3954 /* Fall through so that NEXT is dropped. */
3955 ;
3956 else if (entry->value.directory->names.num_entries == 0
3957 && entry->value.directory->ids.num_entries == 1
535b785f 3958 && !entry->value.directory->ids.first_entry->is_name
5879bb8f
NC
3959 && entry->value.directory->ids.first_entry->name_id.id == 0)
3960 {
3961 /* Swap ENTRY and NEXT. Then fall through so that the old ENTRY is dropped. */
3962 entry->next_entry = next->next_entry;
3963 next->next_entry = entry;
3964 * points_to_entry = next;
3965 points_to_entry = & next->next_entry;
3966 next = entry->next_entry;
0a1b45a2 3967 swapped = true;
5879bb8f
NC
3968 }
3969 else
3970 {
3971 _bfd_error_handler (_(".rsrc merge failure: multiple non-default manifests"));
3972 bfd_set_error (bfd_error_file_truncated);
3973 return;
3974 }
9373215c 3975
5879bb8f
NC
3976 /* Unhook NEXT from the chain. */
3977 /* FIXME: memory loss here. */
3978 entry->next_entry = next->next_entry;
3979 chain->num_entries --;
3980 if (chain->num_entries < 2)
3981 return;
3982 next = next->next_entry;
3983 }
3984 else
3985 rsrc_merge (entry, next);
3986 }
3987 else if (entry->is_dir != next->is_dir)
3988 {
3989 _bfd_error_handler (_(".rsrc merge failure: a directory matches a leaf"));
3990 bfd_set_error (bfd_error_file_truncated);
3991 return;
3992 }
3993 else
3994 {
3995 /* Otherwise with identical leaves we issue an error
3996 message - because there should never be duplicates.
3997 The exception is Type 18/Name 1/Lang 0 which is the
3998 defaul manifest - this can just be dropped. */
535b785f 3999 if (!entry->is_name
5879bb8f
NC
4000 && entry->name_id.id == 0
4001 && dir != NULL
4002 && dir->entry != NULL
535b785f 4003 && !dir->entry->is_name
5879bb8f
NC
4004 && dir->entry->name_id.id == 1
4005 && dir->entry->parent != NULL
4006 && dir->entry->parent->entry != NULL
535b785f 4007 && !dir->entry->parent->entry->is_name
5879bb8f
NC
4008 && dir->entry->parent->entry->name_id.id == 0x18 /* RT_MANIFEST */)
4009 ;
4010 else if (dir != NULL
4011 && dir->entry != NULL
4012 && dir->entry->parent != NULL
4013 && dir->entry->parent->entry != NULL
535b785f 4014 && !dir->entry->parent->entry->is_name
5879bb8f
NC
4015 && dir->entry->parent->entry->name_id.id == 0x6 /* RT_STRING */)
4016 {
4017 /* Strings need special handling. */
4018 if (! rsrc_merge_string_entries (entry, next))
4019 {
4020 /* _bfd_error_handler should have been called inside merge_strings. */
4021 bfd_set_error (bfd_error_file_truncated);
4022 return;
4023 }
4024 }
4025 else
4026 {
4027 if (dir == NULL
4028 || dir->entry == NULL
4029 || dir->entry->parent == NULL
4030 || dir->entry->parent->entry == NULL)
4031 _bfd_error_handler (_(".rsrc merge failure: duplicate leaf"));
4032 else
7fbd5f4e
AM
4033 {
4034 char buff[256];
4035
4036 _bfd_error_handler (_(".rsrc merge failure: duplicate leaf: %s"),
4037 rsrc_resource_name (entry, dir, buff));
4038 }
5879bb8f
NC
4039 bfd_set_error (bfd_error_file_truncated);
4040 return;
4041 }
4042 }
4043
4044 /* Unhook NEXT from the chain. */
4045 entry->next_entry = next->next_entry;
4046 chain->num_entries --;
4047 if (chain->num_entries < 2)
4048 return;
4049 next = next->next_entry;
4050 }
4051 else
4052 {
4053 points_to_entry = & entry->next_entry;
4054 entry = next;
4055 next = next->next_entry;
4056 }
4057 }
4058 while (next);
4059
4060 chain->last_entry = entry;
4061 }
4062 while (swapped);
4063}
4064
4065/* Attach B's chain onto A. */
4066static void
9373215c 4067rsrc_attach_chain (rsrc_dir_chain * achain, rsrc_dir_chain * bchain)
5879bb8f
NC
4068{
4069 if (bchain->num_entries == 0)
4070 return;
4071
4072 achain->num_entries += bchain->num_entries;
4073
4074 if (achain->first_entry == NULL)
4075 {
4076 achain->first_entry = bchain->first_entry;
4077 achain->last_entry = bchain->last_entry;
4078 }
4079 else
4080 {
4081 achain->last_entry->next_entry = bchain->first_entry;
4082 achain->last_entry = bchain->last_entry;
4083 }
9373215c 4084
5879bb8f
NC
4085 bchain->num_entries = 0;
4086 bchain->first_entry = bchain->last_entry = NULL;
4087}
4088
4089static void
4090rsrc_merge (struct rsrc_entry * a, struct rsrc_entry * b)
4091{
9373215c
PM
4092 rsrc_directory * adir;
4093 rsrc_directory * bdir;
4094
5879bb8f
NC
4095 BFD_ASSERT (a->is_dir);
4096 BFD_ASSERT (b->is_dir);
4097
9373215c
PM
4098 adir = a->value.directory;
4099 bdir = b->value.directory;
4100
5879bb8f
NC
4101 if (adir->characteristics != bdir->characteristics)
4102 {
59d08d6c 4103 _bfd_error_handler (_(".rsrc merge failure: dirs with differing characteristics"));
5879bb8f
NC
4104 bfd_set_error (bfd_error_file_truncated);
4105 return;
4106 }
9373215c 4107
5879bb8f
NC
4108 if (adir->major != bdir->major || adir->minor != bdir->minor)
4109 {
59d08d6c 4110 _bfd_error_handler (_(".rsrc merge failure: differing directory versions"));
5879bb8f
NC
4111 bfd_set_error (bfd_error_file_truncated);
4112 return;
4113 }
4114
4115 /* Attach B's name chain to A. */
4116 rsrc_attach_chain (& adir->names, & bdir->names);
4117
4118 /* Attach B's ID chain to A. */
4119 rsrc_attach_chain (& adir->ids, & bdir->ids);
4120
4121 /* Now sort A's entries. */
0a1b45a2
AM
4122 rsrc_sort_entries (& adir->names, true, adir);
4123 rsrc_sort_entries (& adir->ids, false, adir);
5879bb8f
NC
4124}
4125
4126/* Check the .rsrc section. If it contains multiple concatenated
4127 resources then we must merge them properly. Otherwise Windows
4128 will ignore all but the first set. */
4129
4130static void
4131rsrc_process_section (bfd * abfd,
4132 struct coff_final_link_info * pfinfo)
4133{
9373215c 4134 rsrc_directory new_table;
07d6d2b8
AM
4135 bfd_size_type size;
4136 asection * sec;
9373215c 4137 pe_data_type * pe;
07d6d2b8
AM
4138 bfd_vma rva_bias;
4139 bfd_byte * data;
4140 bfd_byte * datastart;
4141 bfd_byte * dataend;
4142 bfd_byte * new_data;
4143 unsigned int num_resource_sets;
9373215c
PM
4144 rsrc_directory * type_tables;
4145 rsrc_write_data write_data;
07d6d2b8
AM
4146 unsigned int indx;
4147 bfd * input;
4148 unsigned int num_input_rsrc = 0;
4149 unsigned int max_num_input_rsrc = 4;
4150 ptrdiff_t * rsrc_sizes = NULL;
5879bb8f
NC
4151
4152 new_table.names.num_entries = 0;
4153 new_table.ids.num_entries = 0;
9373215c 4154
5879bb8f
NC
4155 sec = bfd_get_section_by_name (abfd, ".rsrc");
4156 if (sec == NULL || (size = sec->rawsize) == 0)
4157 return;
4158
9373215c 4159 pe = pe_data (abfd);
5879bb8f
NC
4160 if (pe == NULL)
4161 return;
4162
5879bb8f
NC
4163 rva_bias = sec->vma - pe->pe_opthdr.ImageBase;
4164
9373215c 4165 data = bfd_malloc (size);
5879bb8f
NC
4166 if (data == NULL)
4167 return;
c32abae8 4168
9373215c 4169 datastart = data;
5879bb8f
NC
4170
4171 if (! bfd_get_section_contents (abfd, sec, data, 0, size))
4172 goto end;
4173
6caf7111
NC
4174 /* Step zero: Scan the input bfds looking for .rsrc sections and record
4175 their lengths. Note - we rely upon the fact that the linker script
4176 does *not* sort the input .rsrc sections, so that the order in the
4177 linkinfo list matches the order in the output .rsrc section.
4178
4179 We need to know the lengths because each input .rsrc section has padding
4180 at the end of a variable amount. (It does not appear to be based upon
4181 the section alignment or the file alignment). We need to skip any
4182 padding bytes when parsing the input .rsrc sections. */
4183 rsrc_sizes = bfd_malloc (max_num_input_rsrc * sizeof * rsrc_sizes);
4184 if (rsrc_sizes == NULL)
4185 goto end;
4186
4187 for (input = pfinfo->info->input_bfds;
4188 input != NULL;
c72f2fb2 4189 input = input->link.next)
6caf7111
NC
4190 {
4191 asection * rsrc_sec = bfd_get_section_by_name (input, ".rsrc");
4192
9ac47a43
TS
4193 /* PR 18372 - skip discarded .rsrc sections. */
4194 if (rsrc_sec != NULL && !discarded_section (rsrc_sec))
6caf7111
NC
4195 {
4196 if (num_input_rsrc == max_num_input_rsrc)
4197 {
4198 max_num_input_rsrc += 10;
4199 rsrc_sizes = bfd_realloc (rsrc_sizes, max_num_input_rsrc
4200 * sizeof * rsrc_sizes);
4201 if (rsrc_sizes == NULL)
4202 goto end;
4203 }
4204
4205 BFD_ASSERT (rsrc_sec->size > 0);
4206 rsrc_sizes [num_input_rsrc ++] = rsrc_sec->size;
4207 }
4208 }
4209
4210 if (num_input_rsrc < 2)
4211 goto end;
61e2488c 4212
5879bb8f
NC
4213 /* Step one: Walk the section, computing the size of the tables,
4214 leaves and data and decide if we need to do anything. */
1d63324c 4215 dataend = data + size;
9373215c 4216 num_resource_sets = 0;
5879bb8f
NC
4217
4218 while (data < dataend)
4219 {
4220 bfd_byte * p = data;
4221
4222 data = rsrc_count_directory (abfd, data, data, dataend, rva_bias);
1d63324c 4223
5879bb8f
NC
4224 if (data > dataend)
4225 {
4226 /* Corrupted .rsrc section - cannot merge. */
871b3ab2 4227 _bfd_error_handler (_("%pB: .rsrc merge failure: corrupt .rsrc section"),
dae82561 4228 abfd);
5879bb8f
NC
4229 bfd_set_error (bfd_error_file_truncated);
4230 goto end;
4231 }
4232
6caf7111
NC
4233 if ((data - p) > rsrc_sizes [num_resource_sets])
4234 {
871b3ab2 4235 _bfd_error_handler (_("%pB: .rsrc merge failure: unexpected .rsrc size"),
dae82561 4236 abfd);
6caf7111
NC
4237 bfd_set_error (bfd_error_file_truncated);
4238 goto end;
4239 }
4240 /* FIXME: Should we add a check for "data - p" being much smaller
4241 than rsrc_sizes[num_resource_sets] ? */
4242
4243 data = p + rsrc_sizes[num_resource_sets];
5879bb8f 4244 rva_bias += data - p;
5879bb8f
NC
4245 ++ num_resource_sets;
4246 }
6caf7111 4247 BFD_ASSERT (num_resource_sets == num_input_rsrc);
5879bb8f
NC
4248
4249 /* Step two: Walk the data again, building trees of the resources. */
4250 data = datastart;
4251 rva_bias = sec->vma - pe->pe_opthdr.ImageBase;
4252
9373215c 4253 type_tables = bfd_malloc (num_resource_sets * sizeof * type_tables);
5879bb8f
NC
4254 if (type_tables == NULL)
4255 goto end;
4256
9373215c 4257 indx = 0;
5879bb8f
NC
4258 while (data < dataend)
4259 {
4260 bfd_byte * p = data;
4261
6caf7111 4262 (void) rsrc_parse_directory (abfd, type_tables + indx, data, data,
9373215c 4263 dataend, rva_bias, NULL);
6caf7111 4264 data = p + rsrc_sizes[indx];
5879bb8f 4265 rva_bias += data - p;
6caf7111 4266 ++ indx;
5879bb8f 4267 }
337e86d7 4268 BFD_ASSERT (indx == num_resource_sets);
9373215c 4269
5879bb8f 4270 /* Step three: Merge the top level tables (there can be only one).
9373215c 4271
5879bb8f 4272 We must ensure that the merged entries are in ascending order.
9373215c 4273
5879bb8f
NC
4274 We also thread the top level table entries from the old tree onto
4275 the new table, so that they can be pulled off later. */
4276
4277 /* FIXME: Should we verify that all type tables are the same ? */
4278 new_table.characteristics = type_tables[0].characteristics;
07d6d2b8
AM
4279 new_table.time = type_tables[0].time;
4280 new_table.major = type_tables[0].major;
4281 new_table.minor = type_tables[0].minor;
5879bb8f
NC
4282
4283 /* Chain the NAME entries onto the table. */
4284 new_table.names.first_entry = NULL;
4285 new_table.names.last_entry = NULL;
4286
337e86d7
L
4287 for (indx = 0; indx < num_resource_sets; indx++)
4288 rsrc_attach_chain (& new_table.names, & type_tables[indx].names);
5879bb8f 4289
0a1b45a2 4290 rsrc_sort_entries (& new_table.names, true, & new_table);
9373215c 4291
5879bb8f
NC
4292 /* Chain the ID entries onto the table. */
4293 new_table.ids.first_entry = NULL;
4294 new_table.ids.last_entry = NULL;
4295
337e86d7
L
4296 for (indx = 0; indx < num_resource_sets; indx++)
4297 rsrc_attach_chain (& new_table.ids, & type_tables[indx].ids);
5879bb8f 4298
0a1b45a2 4299 rsrc_sort_entries (& new_table.ids, false, & new_table);
5879bb8f
NC
4300
4301 /* Step four: Create new contents for the .rsrc section. */
3714081c
NC
4302 /* Step four point one: Compute the size of each region of the .rsrc section.
4303 We do this now, rather than earlier, as the merging above may have dropped
4304 some entries. */
4305 sizeof_leaves = sizeof_strings = sizeof_tables_and_entries = 0;
4306 rsrc_compute_region_sizes (& new_table);
4307 /* We increment sizeof_strings to make sure that resource data
4308 starts on an 8-byte boundary. FIXME: Is this correct ? */
4309 sizeof_strings = (sizeof_strings + 7) & ~ 7;
4310
c32abae8 4311 new_data = bfd_zalloc (abfd, size);
5879bb8f
NC
4312 if (new_data == NULL)
4313 goto end;
4314
07d6d2b8
AM
4315 write_data.abfd = abfd;
4316 write_data.datastart = new_data;
4317 write_data.next_table = new_data;
4318 write_data.next_leaf = new_data + sizeof_tables_and_entries;
5879bb8f 4319 write_data.next_string = write_data.next_leaf + sizeof_leaves;
07d6d2b8
AM
4320 write_data.next_data = write_data.next_string + sizeof_strings;
4321 write_data.rva_bias = sec->vma - pe->pe_opthdr.ImageBase;
5879bb8f
NC
4322
4323 rsrc_write_directory (& write_data, & new_table);
4324
4325 /* Step five: Replace the old contents with the new.
ec8f7688
JT
4326 We don't recompute the size as it's too late here to shrink section.
4327 See PR ld/20193 for more details. */
5879bb8f
NC
4328 bfd_set_section_contents (pfinfo->output_bfd, sec, new_data, 0, size);
4329 sec->size = sec->rawsize = size;
9373215c 4330
5879bb8f 4331 end:
3714081c 4332 /* Step six: Free all the memory that we have used. */
5879bb8f
NC
4333 /* FIXME: Free the resource tree, if we have one. */
4334 free (datastart);
6caf7111 4335 free (rsrc_sizes);
5879bb8f 4336}
5174d0fb 4337
2fbadf2c
ILT
4338/* Handle the .idata section and other things that need symbol table
4339 access. */
4340
0a1b45a2 4341bool
7920ce38 4342_bfd_XXi_final_link_postscript (bfd * abfd, struct coff_final_link_info *pfinfo)
2fbadf2c
ILT
4343{
4344 struct coff_link_hash_entry *h1;
4345 struct bfd_link_info *info = pfinfo->info;
0a1b45a2 4346 bool result = true;
2fbadf2c
ILT
4347
4348 /* There are a few fields that need to be filled in now while we
4349 have symbol table access.
4350
4351 The .idata subsections aren't directly available as sections, but
4352 they are in the symbol table, so get them from there. */
4353
4354 /* The import directory. This is the address of .idata$2, with size
4355 of .idata$2 + .idata$3. */
4356 h1 = coff_link_hash_lookup (coff_hash_table (info),
0a1b45a2 4357 ".idata$2", false, false, true);
2fbadf2c
ILT
4358 if (h1 != NULL)
4359 {
4e1fc599 4360 /* PR ld/2729: We cannot rely upon all the output sections having been
4e22f78d
NC
4361 created properly, so check before referencing them. Issue a warning
4362 message for any sections tht could not be found. */
b92997d6
AM
4363 if ((h1->root.type == bfd_link_hash_defined
4364 || h1->root.type == bfd_link_hash_defweak)
4365 && h1->root.u.def.section != NULL
4e22f78d 4366 && h1->root.u.def.section->output_section != NULL)
6c73cbb1 4367 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].VirtualAddress =
4e22f78d
NC
4368 (h1->root.u.def.value
4369 + h1->root.u.def.section->output_section->vma
4370 + h1->root.u.def.section->output_offset);
4371 else
4372 {
4373 _bfd_error_handler
871b3ab2 4374 (_("%pB: unable to fill in DataDictionary[1] because .idata$2 is missing"),
4e22f78d 4375 abfd);
0a1b45a2 4376 result = false;
4e22f78d
NC
4377 }
4378
2fbadf2c 4379 h1 = coff_link_hash_lookup (coff_hash_table (info),
0a1b45a2 4380 ".idata$4", false, false, true);
4e22f78d 4381 if (h1 != NULL
b92997d6
AM
4382 && (h1->root.type == bfd_link_hash_defined
4383 || h1->root.type == bfd_link_hash_defweak)
4e22f78d
NC
4384 && h1->root.u.def.section != NULL
4385 && h1->root.u.def.section->output_section != NULL)
6c73cbb1 4386 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].Size =
4e22f78d
NC
4387 ((h1->root.u.def.value
4388 + h1->root.u.def.section->output_section->vma
4389 + h1->root.u.def.section->output_offset)
6c73cbb1 4390 - pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_TABLE].VirtualAddress);
4e22f78d
NC
4391 else
4392 {
4393 _bfd_error_handler
871b3ab2 4394 (_("%pB: unable to fill in DataDictionary[1] because .idata$4 is missing"),
4e22f78d 4395 abfd);
0a1b45a2 4396 result = false;
4e22f78d 4397 }
2fbadf2c
ILT
4398
4399 /* The import address table. This is the size/address of
07d6d2b8 4400 .idata$5. */
2fbadf2c 4401 h1 = coff_link_hash_lookup (coff_hash_table (info),
0a1b45a2 4402 ".idata$5", false, false, true);
4e22f78d 4403 if (h1 != NULL
b92997d6
AM
4404 && (h1->root.type == bfd_link_hash_defined
4405 || h1->root.type == bfd_link_hash_defweak)
4e22f78d
NC
4406 && h1->root.u.def.section != NULL
4407 && h1->root.u.def.section->output_section != NULL)
6c73cbb1 4408 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].VirtualAddress =
4e22f78d
NC
4409 (h1->root.u.def.value
4410 + h1->root.u.def.section->output_section->vma
4411 + h1->root.u.def.section->output_offset);
4412 else
4413 {
4414 _bfd_error_handler
871b3ab2 4415 (_("%pB: unable to fill in DataDictionary[12] because .idata$5 is missing"),
4e22f78d 4416 abfd);
0a1b45a2 4417 result = false;
4e22f78d
NC
4418 }
4419
2fbadf2c 4420 h1 = coff_link_hash_lookup (coff_hash_table (info),
0a1b45a2 4421 ".idata$6", false, false, true);
4e22f78d 4422 if (h1 != NULL
b92997d6
AM
4423 && (h1->root.type == bfd_link_hash_defined
4424 || h1->root.type == bfd_link_hash_defweak)
4e22f78d
NC
4425 && h1->root.u.def.section != NULL
4426 && h1->root.u.def.section->output_section != NULL)
6c73cbb1 4427 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].Size =
4e22f78d
NC
4428 ((h1->root.u.def.value
4429 + h1->root.u.def.section->output_section->vma
4430 + h1->root.u.def.section->output_offset)
4e1fc599 4431 - pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].VirtualAddress);
4e22f78d
NC
4432 else
4433 {
4434 _bfd_error_handler
871b3ab2 4435 (_("%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] because .idata$6 is missing"),
4e22f78d 4436 abfd);
0a1b45a2 4437 result = false;
4e22f78d 4438 }
2fbadf2c 4439 }
cb2f80e6
KT
4440 else
4441 {
4442 h1 = coff_link_hash_lookup (coff_hash_table (info),
0a1b45a2 4443 "__IAT_start__", false, false, true);
cb2f80e6
KT
4444 if (h1 != NULL
4445 && (h1->root.type == bfd_link_hash_defined
4446 || h1->root.type == bfd_link_hash_defweak)
4447 && h1->root.u.def.section != NULL
4448 && h1->root.u.def.section->output_section != NULL)
4449 {
4450 bfd_vma iat_va;
4451
4452 iat_va =
4453 (h1->root.u.def.value
4454 + h1->root.u.def.section->output_section->vma
4455 + h1->root.u.def.section->output_offset);
4456
4457 h1 = coff_link_hash_lookup (coff_hash_table (info),
0a1b45a2 4458 "__IAT_end__", false, false, true);
cb2f80e6
KT
4459 if (h1 != NULL
4460 && (h1->root.type == bfd_link_hash_defined
4461 || h1->root.type == bfd_link_hash_defweak)
4462 && h1->root.u.def.section != NULL
4463 && h1->root.u.def.section->output_section != NULL)
4464 {
4465 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].Size =
4466 ((h1->root.u.def.value
4467 + h1->root.u.def.section->output_section->vma
4468 + h1->root.u.def.section->output_offset)
4469 - iat_va);
4470 if (pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].Size != 0)
4471 pe_data (abfd)->pe_opthdr.DataDirectory[PE_IMPORT_ADDRESS_TABLE].VirtualAddress =
4472 iat_va - pe_data (abfd)->pe_opthdr.ImageBase;
4473 }
4474 else
4475 {
4476 _bfd_error_handler
871b3ab2 4477 (_("%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)]"
cb2f80e6 4478 " because .idata$6 is missing"), abfd);
0a1b45a2 4479 result = false;
cb2f80e6 4480 }
07d6d2b8 4481 }
cb2f80e6 4482 }
ca6dee30
NC
4483
4484 h1 = coff_link_hash_lookup (coff_hash_table (info),
61e2488c 4485 (bfd_get_symbol_leading_char (abfd) != 0
c91a930c 4486 ? "__tls_used" : "_tls_used"),
0a1b45a2 4487 false, false, true);
ca6dee30
NC
4488 if (h1 != NULL)
4489 {
b92997d6
AM
4490 if ((h1->root.type == bfd_link_hash_defined
4491 || h1->root.type == bfd_link_hash_defweak)
4492 && h1->root.u.def.section != NULL
4e22f78d 4493 && h1->root.u.def.section->output_section != NULL)
6c73cbb1 4494 pe_data (abfd)->pe_opthdr.DataDirectory[PE_TLS_TABLE].VirtualAddress =
4e22f78d
NC
4495 (h1->root.u.def.value
4496 + h1->root.u.def.section->output_section->vma
4497 + h1->root.u.def.section->output_offset
4498 - pe_data (abfd)->pe_opthdr.ImageBase);
4499 else
4500 {
4501 _bfd_error_handler
871b3ab2 4502 (_("%pB: unable to fill in DataDictionary[9] because __tls_used is missing"),
4e22f78d 4503 abfd);
0a1b45a2 4504 result = false;
4e22f78d 4505 }
bc2b2990
PM
4506 /* According to PECOFF sepcifications by Microsoft version 8.2
4507 the TLS data directory consists of 4 pointers, followed
4508 by two 4-byte integer. This implies that the total size
68ffbac6 4509 is different for 32-bit and 64-bit executables. */
b69c9d41 4510#if !defined(COFF_WITH_pep) && !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64)
6c73cbb1 4511 pe_data (abfd)->pe_opthdr.DataDirectory[PE_TLS_TABLE].Size = 0x18;
bc2b2990
PM
4512#else
4513 pe_data (abfd)->pe_opthdr.DataDirectory[PE_TLS_TABLE].Size = 0x28;
4514#endif
ca6dee30
NC
4515 }
4516
5174d0fb
KT
4517/* If there is a .pdata section and we have linked pdata finally, we
4518 need to sort the entries ascending. */
e5b10c40 4519#if !defined(COFF_WITH_pep) && (defined(COFF_WITH_pex64) || defined(COFF_WITH_peAArch64))
5174d0fb
KT
4520 {
4521 asection *sec = bfd_get_section_by_name (abfd, ".pdata");
4522
4523 if (sec)
4524 {
21e68916
KT
4525 bfd_size_type x = sec->rawsize;
4526 bfd_byte *tmp_data = NULL;
5174d0fb 4527
21e68916
KT
4528 if (x)
4529 tmp_data = bfd_malloc (x);
4530
4531 if (tmp_data != NULL)
5174d0fb 4532 {
21e68916
KT
4533 if (bfd_get_section_contents (abfd, sec, tmp_data, 0, x))
4534 {
4535 qsort (tmp_data,
4536 (size_t) (x / 12),
4537 12, sort_x64_pdata);
4538 bfd_set_section_contents (pfinfo->output_bfd, sec,
4539 tmp_data, 0, x);
4540 }
4541 free (tmp_data);
5174d0fb 4542 }
86eafac0 4543 else
0a1b45a2 4544 result = false;
5174d0fb
KT
4545 }
4546 }
4547#endif
4548
5879bb8f
NC
4549 rsrc_process_section (abfd, pfinfo);
4550
2fbadf2c
ILT
4551 /* If we couldn't find idata$2, we either have an excessively
4552 trivial program or are in DEEP trouble; we have to assume trivial
4553 program.... */
4e22f78d 4554 return result;
2fbadf2c 4555}