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