PR28403, null pointer dereference in disassemble_bytes
[binutils-gdb.git] / bfd / coffcode.h
1 /* Support for the generic parts of most COFF variants, for BFD.
2 Copyright (C) 1990-2021 Free Software Foundation, Inc.
3 Written by Cygnus Support.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22 /* Most of this hacked by Steve Chamberlain,
23 sac@cygnus.com. */
24 /*
25 SECTION
26 coff backends
27
28 BFD supports a number of different flavours of coff format.
29 The major differences between formats are the sizes and
30 alignments of fields in structures on disk, and the occasional
31 extra field.
32
33 Coff in all its varieties is implemented with a few common
34 files and a number of implementation specific files. For
35 example, the i386 coff format is implemented in the file
36 @file{coff-i386.c}. This file @code{#include}s
37 @file{coff/i386.h} which defines the external structure of the
38 coff format for the i386, and @file{coff/internal.h} which
39 defines the internal structure. @file{coff-i386.c} also
40 defines the relocations used by the i386 coff format
41 @xref{Relocations}.
42
43 SUBSECTION
44 Porting to a new version of coff
45
46 The recommended method is to select from the existing
47 implementations the version of coff which is most like the one
48 you want to use. For example, we'll say that i386 coff is
49 the one you select, and that your coff flavour is called foo.
50 Copy @file{i386coff.c} to @file{foocoff.c}, copy
51 @file{../include/coff/i386.h} to @file{../include/coff/foo.h},
52 and add the lines to @file{targets.c} and @file{Makefile.in}
53 so that your new back end is used. Alter the shapes of the
54 structures in @file{../include/coff/foo.h} so that they match
55 what you need. You will probably also have to add
56 @code{#ifdef}s to the code in @file{coff/internal.h} and
57 @file{coffcode.h} if your version of coff is too wild.
58
59 You can verify that your new BFD backend works quite simply by
60 building @file{objdump} from the @file{binutils} directory,
61 and making sure that its version of what's going on and your
62 host system's idea (assuming it has the pretty standard coff
63 dump utility, usually called @code{att-dump} or just
64 @code{dump}) are the same. Then clean up your code, and send
65 what you've done to Cygnus. Then your stuff will be in the
66 next release, and you won't have to keep integrating it.
67
68 SUBSECTION
69 How the coff backend works
70
71 SUBSUBSECTION
72 File layout
73
74 The Coff backend is split into generic routines that are
75 applicable to any Coff target and routines that are specific
76 to a particular target. The target-specific routines are
77 further split into ones which are basically the same for all
78 Coff targets except that they use the external symbol format
79 or use different values for certain constants.
80
81 The generic routines are in @file{coffgen.c}. These routines
82 work for any Coff target. They use some hooks into the target
83 specific code; the hooks are in a @code{bfd_coff_backend_data}
84 structure, one of which exists for each target.
85
86 The essentially similar target-specific routines are in
87 @file{coffcode.h}. This header file includes executable C code.
88 The various Coff targets first include the appropriate Coff
89 header file, make any special defines that are needed, and
90 then include @file{coffcode.h}.
91
92 Some of the Coff targets then also have additional routines in
93 the target source file itself.
94
95 SUBSUBSECTION
96 Coff long section names
97
98 In the standard Coff object format, section names are limited to
99 the eight bytes available in the @code{s_name} field of the
100 @code{SCNHDR} section header structure. The format requires the
101 field to be NUL-padded, but not necessarily NUL-terminated, so
102 the longest section names permitted are a full eight characters.
103
104 The Microsoft PE variants of the Coff object file format add
105 an extension to support the use of long section names. This
106 extension is defined in section 4 of the Microsoft PE/COFF
107 specification (rev 8.1). If a section name is too long to fit
108 into the section header's @code{s_name} field, it is instead
109 placed into the string table, and the @code{s_name} field is
110 filled with a slash ("/") followed by the ASCII decimal
111 representation of the offset of the full name relative to the
112 string table base.
113
114 Note that this implies that the extension can only be used in object
115 files, as executables do not contain a string table. The standard
116 specifies that long section names from objects emitted into executable
117 images are to be truncated.
118
119 However, as a GNU extension, BFD can generate executable images
120 that contain a string table and long section names. This
121 would appear to be technically valid, as the standard only says
122 that Coff debugging information is deprecated, not forbidden,
123 and in practice it works, although some tools that parse PE files
124 expecting the MS standard format may become confused; @file{PEview} is
125 one known example.
126
127 The functionality is supported in BFD by code implemented under
128 the control of the macro @code{COFF_LONG_SECTION_NAMES}. If not
129 defined, the format does not support long section names in any way.
130 If defined, it is used to initialise a flag,
131 @code{_bfd_coff_long_section_names}, and a hook function pointer,
132 @code{_bfd_coff_set_long_section_names}, in the Coff backend data
133 structure. The flag controls the generation of long section names
134 in output BFDs at runtime; if it is false, as it will be by default
135 when generating an executable image, long section names are truncated;
136 if true, the long section names extension is employed. The hook
137 points to a function that allows the value of the flag to be altered
138 at runtime, on formats that support long section names at all; on
139 other formats it points to a stub that returns an error indication.
140
141 With input BFDs, the flag is set according to whether any long section
142 names are detected while reading the section headers. For a completely
143 new BFD, the flag is set to the default for the target format. This
144 information can be used by a client of the BFD library when deciding
145 what output format to generate, and means that a BFD that is opened
146 for read and subsequently converted to a writeable BFD and modified
147 in-place will retain whatever format it had on input.
148
149 If @code{COFF_LONG_SECTION_NAMES} is simply defined (blank), or is
150 defined to the value "1", then long section names are enabled by
151 default; if it is defined to the value zero, they are disabled by
152 default (but still accepted in input BFDs). The header @file{coffcode.h}
153 defines a macro, @code{COFF_DEFAULT_LONG_SECTION_NAMES}, which is
154 used in the backends to initialise the backend data structure fields
155 appropriately; see the comments for further detail.
156
157 SUBSUBSECTION
158 Bit twiddling
159
160 Each flavour of coff supported in BFD has its own header file
161 describing the external layout of the structures. There is also
162 an internal description of the coff layout, in
163 @file{coff/internal.h}. A major function of the
164 coff backend is swapping the bytes and twiddling the bits to
165 translate the external form of the structures into the normal
166 internal form. This is all performed in the
167 @code{bfd_swap}_@i{thing}_@i{direction} routines. Some
168 elements are different sizes between different versions of
169 coff; it is the duty of the coff version specific include file
170 to override the definitions of various packing routines in
171 @file{coffcode.h}. E.g., the size of line number entry in coff is
172 sometimes 16 bits, and sometimes 32 bits. @code{#define}ing
173 @code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the
174 correct one. No doubt, some day someone will find a version of
175 coff which has a varying field size not catered to at the
176 moment. To port BFD, that person will have to add more @code{#defines}.
177 Three of the bit twiddling routines are exported to
178 @code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}
179 and @code{coff_swap_lineno_in}. @code{GDB} reads the symbol
180 table on its own, but uses BFD to fix things up. More of the
181 bit twiddlers are exported for @code{gas};
182 @code{coff_swap_aux_out}, @code{coff_swap_sym_out},
183 @code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},
184 @code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},
185 @code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track
186 of all the symbol table and reloc drudgery itself, thereby
187 saving the internal BFD overhead, but uses BFD to swap things
188 on the way out, making cross ports much safer. Doing so also
189 allows BFD (and thus the linker) to use the same header files
190 as @code{gas}, which makes one avenue to disaster disappear.
191
192 SUBSUBSECTION
193 Symbol reading
194
195 The simple canonical form for symbols used by BFD is not rich
196 enough to keep all the information available in a coff symbol
197 table. The back end gets around this problem by keeping the original
198 symbol table around, "behind the scenes".
199
200 When a symbol table is requested (through a call to
201 @code{bfd_canonicalize_symtab}), a request gets through to
202 @code{coff_get_normalized_symtab}. This reads the symbol table from
203 the coff file and swaps all the structures inside into the
204 internal form. It also fixes up all the pointers in the table
205 (represented in the file by offsets from the first symbol in
206 the table) into physical pointers to elements in the new
207 internal table. This involves some work since the meanings of
208 fields change depending upon context: a field that is a
209 pointer to another structure in the symbol table at one moment
210 may be the size in bytes of a structure at the next. Another
211 pass is made over the table. All symbols which mark file names
212 (<<C_FILE>> symbols) are modified so that the internal
213 string points to the value in the auxent (the real filename)
214 rather than the normal text associated with the symbol
215 (@code{".file"}).
216
217 At this time the symbol names are moved around. Coff stores
218 all symbols less than nine characters long physically
219 within the symbol table; longer strings are kept at the end of
220 the file in the string table. This pass moves all strings
221 into memory and replaces them with pointers to the strings.
222
223 The symbol table is massaged once again, this time to create
224 the canonical table used by the BFD application. Each symbol
225 is inspected in turn, and a decision made (using the
226 @code{sclass} field) about the various flags to set in the
227 @code{asymbol}. @xref{Symbols}. The generated canonical table
228 shares strings with the hidden internal symbol table.
229
230 Any linenumbers are read from the coff file too, and attached
231 to the symbols which own the functions the linenumbers belong to.
232
233 SUBSUBSECTION
234 Symbol writing
235
236 Writing a symbol to a coff file which didn't come from a coff
237 file will lose any debugging information. The @code{asymbol}
238 structure remembers the BFD from which the symbol was taken, and on
239 output the back end makes sure that the same destination target as
240 source target is present.
241
242 When the symbols have come from a coff file then all the
243 debugging information is preserved.
244
245 Symbol tables are provided for writing to the back end in a
246 vector of pointers to pointers. This allows applications like
247 the linker to accumulate and output large symbol tables
248 without having to do too much byte copying.
249
250 This function runs through the provided symbol table and
251 patches each symbol marked as a file place holder
252 (@code{C_FILE}) to point to the next file place holder in the
253 list. It also marks each @code{offset} field in the list with
254 the offset from the first symbol of the current symbol.
255
256 Another function of this procedure is to turn the canonical
257 value form of BFD into the form used by coff. Internally, BFD
258 expects symbol values to be offsets from a section base; so a
259 symbol physically at 0x120, but in a section starting at
260 0x100, would have the value 0x20. Coff expects symbols to
261 contain their final value, so symbols have their values
262 changed at this point to reflect their sum with their owning
263 section. This transformation uses the
264 <<output_section>> field of the @code{asymbol}'s
265 @code{asection} @xref{Sections}.
266
267 o <<coff_mangle_symbols>>
268
269 This routine runs though the provided symbol table and uses
270 the offsets generated by the previous pass and the pointers
271 generated when the symbol table was read in to create the
272 structured hierarchy required by coff. It changes each pointer
273 to a symbol into the index into the symbol table of the asymbol.
274
275 o <<coff_write_symbols>>
276
277 This routine runs through the symbol table and patches up the
278 symbols from their internal form into the coff way, calls the
279 bit twiddlers, and writes out the table to the file.
280
281 */
282
283 /*
284 INTERNAL_DEFINITION
285 coff_symbol_type
286
287 DESCRIPTION
288 The hidden information for an <<asymbol>> is described in a
289 <<combined_entry_type>>:
290
291 CODE_FRAGMENT
292 .
293 .typedef struct coff_ptr_struct
294 .{
295 . {* Remembers the offset from the first symbol in the file for
296 . this symbol. Generated by coff_renumber_symbols. *}
297 . unsigned int offset;
298 .
299 . {* Should the value of this symbol be renumbered. Used for
300 . XCOFF C_BSTAT symbols. Set by coff_slurp_symbol_table. *}
301 . unsigned int fix_value : 1;
302 .
303 . {* Should the tag field of this symbol be renumbered.
304 . Created by coff_pointerize_aux. *}
305 . unsigned int fix_tag : 1;
306 .
307 . {* Should the endidx field of this symbol be renumbered.
308 . Created by coff_pointerize_aux. *}
309 . unsigned int fix_end : 1;
310 .
311 . {* Should the x_csect.x_scnlen field be renumbered.
312 . Created by coff_pointerize_aux. *}
313 . unsigned int fix_scnlen : 1;
314 .
315 . {* Fix up an XCOFF C_BINCL/C_EINCL symbol. The value is the
316 . index into the line number entries. Set by coff_slurp_symbol_table. *}
317 . unsigned int fix_line : 1;
318 .
319 . {* The container for the symbol structure as read and translated
320 . from the file. *}
321 . union
322 . {
323 . union internal_auxent auxent;
324 . struct internal_syment syment;
325 . } u;
326 .
327 . {* Selector for the union above. *}
328 . bool is_sym;
329 .} combined_entry_type;
330 .
331 .
332 .{* Each canonical asymbol really looks like this: *}
333 .
334 .typedef struct coff_symbol_struct
335 .{
336 . {* The actual symbol which the rest of BFD works with *}
337 . asymbol symbol;
338 .
339 . {* A pointer to the hidden information for this symbol *}
340 . combined_entry_type *native;
341 .
342 . {* A pointer to the linenumber information for this symbol *}
343 . struct lineno_cache_entry *lineno;
344 .
345 . {* Have the line numbers been relocated yet ? *}
346 . bool done_lineno;
347 .} coff_symbol_type;
348
349 */
350
351 #include "libiberty.h"
352
353 #ifdef COFF_WITH_PE
354 #include "peicode.h"
355 #else
356 #include "coffswap.h"
357 #endif
358
359 #define STRING_SIZE_SIZE 4
360
361 #define DOT_DEBUG ".debug"
362 #define DOT_ZDEBUG ".zdebug"
363 #define GNU_LINKONCE_WI ".gnu.linkonce.wi."
364 #define GNU_LINKONCE_WT ".gnu.linkonce.wt."
365 #define DOT_RELOC ".reloc"
366
367 #if defined(COFF_WITH_PE) || defined(COFF_GO32_EXE) || defined(COFF_GO32)
368 # define COFF_WITH_EXTENDED_RELOC_COUNTER
369 #endif
370
371 #if defined (COFF_LONG_SECTION_NAMES)
372 /* Needed to expand the inputs to BLANKOR1TOODD. */
373 #define COFFLONGSECTIONCATHELPER(x,y) x ## y
374 /* If the input macro Y is blank or '1', return an odd number; if it is
375 '0', return an even number. Result undefined in all other cases. */
376 #define BLANKOR1TOODD(y) COFFLONGSECTIONCATHELPER(1,y)
377 /* Defined to numerical 0 or 1 according to whether generation of long
378 section names is disabled or enabled by default. */
379 #define COFF_ENABLE_LONG_SECTION_NAMES (BLANKOR1TOODD(COFF_LONG_SECTION_NAMES) & 1)
380 /* Where long section names are supported, we allow them to be enabled
381 and disabled at runtime, so select an appropriate hook function for
382 _bfd_coff_set_long_section_names. */
383 #define COFF_LONG_SECTION_NAMES_SETTER bfd_coff_set_long_section_names_allowed
384 #else /* !defined (COFF_LONG_SECTION_NAMES) */
385 /* If long section names are not supported, this stub disallows any
386 attempt to enable them at run-time. */
387 #define COFF_LONG_SECTION_NAMES_SETTER bfd_coff_set_long_section_names_disallowed
388 #endif /* defined (COFF_LONG_SECTION_NAMES) */
389
390 /* Define a macro that can be used to initialise both the fields relating
391 to long section names in the backend data struct simultaneously. */
392 #if COFF_ENABLE_LONG_SECTION_NAMES
393 #define COFF_DEFAULT_LONG_SECTION_NAMES (true), COFF_LONG_SECTION_NAMES_SETTER
394 #else /* !COFF_ENABLE_LONG_SECTION_NAMES */
395 #define COFF_DEFAULT_LONG_SECTION_NAMES (false), COFF_LONG_SECTION_NAMES_SETTER
396 #endif /* COFF_ENABLE_LONG_SECTION_NAMES */
397
398 #if defined (COFF_LONG_SECTION_NAMES)
399 static bool bfd_coff_set_long_section_names_allowed
400 (bfd *, int);
401 #else /* !defined (COFF_LONG_SECTION_NAMES) */
402 static bool bfd_coff_set_long_section_names_disallowed
403 (bfd *, int);
404 #endif /* defined (COFF_LONG_SECTION_NAMES) */
405 static long sec_to_styp_flags
406 (const char *, flagword);
407 static bool styp_to_sec_flags
408 (bfd *, void *, const char *, asection *, flagword *);
409 static bool coff_bad_format_hook
410 (bfd *, void *);
411 static void coff_set_custom_section_alignment
412 (bfd *, asection *, const struct coff_section_alignment_entry *,
413 const unsigned int);
414 static bool coff_new_section_hook
415 (bfd *, asection *);
416 static bool coff_set_arch_mach_hook
417 (bfd *, void *);
418 static bool coff_write_relocs
419 (bfd *, int);
420 static bool coff_set_flags
421 (bfd *, unsigned int *, unsigned short *);
422 static bool coff_set_arch_mach
423 (bfd *, enum bfd_architecture, unsigned long) ATTRIBUTE_UNUSED;
424 static bool coff_compute_section_file_positions
425 (bfd *);
426 static bool coff_write_object_contents
427 (bfd *) ATTRIBUTE_UNUSED;
428 static bool coff_set_section_contents
429 (bfd *, asection *, const void *, file_ptr, bfd_size_type);
430 static bool coff_slurp_line_table
431 (bfd *, asection *);
432 static bool coff_slurp_symbol_table
433 (bfd *);
434 static enum coff_symbol_classification coff_classify_symbol
435 (bfd *, struct internal_syment *);
436 static bool coff_slurp_reloc_table
437 (bfd *, asection *, asymbol **);
438 static long coff_canonicalize_reloc
439 (bfd *, asection *, arelent **, asymbol **);
440 #ifndef coff_mkobject_hook
441 static void * coff_mkobject_hook
442 (bfd *, void *, void *);
443 #endif
444 #ifdef COFF_WITH_PE
445 static flagword handle_COMDAT
446 (bfd *, flagword, void *, const char *, asection *);
447 #endif
448 #ifdef TICOFF
449 static bool ticoff0_bad_format_hook
450 (bfd *, void * );
451 static bool ticoff1_bad_format_hook
452 (bfd *, void * );
453 #endif
454 \f
455 /* void warning(); */
456
457 #if defined (COFF_LONG_SECTION_NAMES)
458 static bool
459 bfd_coff_set_long_section_names_allowed (bfd *abfd, int enable)
460 {
461 coff_backend_info (abfd)->_bfd_coff_long_section_names = enable;
462 return true;
463 }
464 #else /* !defined (COFF_LONG_SECTION_NAMES) */
465 static bool
466 bfd_coff_set_long_section_names_disallowed (bfd *abfd, int enable)
467 {
468 (void) abfd;
469 (void) enable;
470 return false;
471 }
472 #endif /* defined (COFF_LONG_SECTION_NAMES) */
473
474 /* Return a word with STYP_* (scnhdr.s_flags) flags set to represent
475 the incoming SEC_* flags. The inverse of this function is
476 styp_to_sec_flags(). NOTE: If you add to/change this routine, you
477 should probably mirror the changes in styp_to_sec_flags(). */
478
479 #ifndef COFF_WITH_PE
480
481 /* Macros for setting debugging flags. */
482
483 #ifdef STYP_DEBUG
484 #define STYP_XCOFF_DEBUG STYP_DEBUG
485 #else
486 #define STYP_XCOFF_DEBUG STYP_INFO
487 #endif
488
489 #ifdef COFF_ALIGN_IN_S_FLAGS
490 #define STYP_DEBUG_INFO STYP_DSECT
491 #else
492 #define STYP_DEBUG_INFO STYP_INFO
493 #endif
494
495 static long
496 sec_to_styp_flags (const char *sec_name, flagword sec_flags)
497 {
498 long styp_flags = 0;
499
500 if (!strcmp (sec_name, _TEXT))
501 {
502 styp_flags = STYP_TEXT;
503 }
504 else if (!strcmp (sec_name, _DATA))
505 {
506 styp_flags = STYP_DATA;
507 }
508 else if (!strcmp (sec_name, _BSS))
509 {
510 styp_flags = STYP_BSS;
511 #ifdef _COMMENT
512 }
513 else if (!strcmp (sec_name, _COMMENT))
514 {
515 styp_flags = STYP_INFO;
516 #endif /* _COMMENT */
517 #ifdef _LIB
518 }
519 else if (!strcmp (sec_name, _LIB))
520 {
521 styp_flags = STYP_LIB;
522 #endif /* _LIB */
523 #ifdef _LIT
524 }
525 else if (!strcmp (sec_name, _LIT))
526 {
527 styp_flags = STYP_LIT;
528 #endif /* _LIT */
529 }
530 else if (startswith (sec_name, DOT_DEBUG)
531 || startswith (sec_name, DOT_ZDEBUG))
532 {
533 /* Handle the XCOFF debug section and DWARF2 debug sections. */
534 if (!sec_name[6])
535 styp_flags = STYP_XCOFF_DEBUG;
536 else
537 styp_flags = STYP_DEBUG_INFO;
538 }
539 else if (startswith (sec_name, ".stab"))
540 {
541 styp_flags = STYP_DEBUG_INFO;
542 }
543 #ifdef COFF_LONG_SECTION_NAMES
544 else if (startswith (sec_name, GNU_LINKONCE_WI)
545 || startswith (sec_name, GNU_LINKONCE_WT))
546 {
547 styp_flags = STYP_DEBUG_INFO;
548 }
549 #endif
550 #ifdef RS6000COFF_C
551 else if (!strcmp (sec_name, _TDATA))
552 {
553 styp_flags = STYP_TDATA;
554 }
555 else if (!strcmp (sec_name, _TBSS))
556 {
557 styp_flags = STYP_TBSS;
558 }
559 else if (!strcmp (sec_name, _PAD))
560 {
561 styp_flags = STYP_PAD;
562 }
563 else if (!strcmp (sec_name, _LOADER))
564 {
565 styp_flags = STYP_LOADER;
566 }
567 else if (!strcmp (sec_name, _EXCEPT))
568 {
569 styp_flags = STYP_EXCEPT;
570 }
571 else if (!strcmp (sec_name, _TYPCHK))
572 {
573 styp_flags = STYP_TYPCHK;
574 }
575 else if (sec_flags & SEC_DEBUGGING)
576 {
577 int i;
578
579 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
580 if (!strcmp (sec_name, xcoff_dwsect_names[i].xcoff_name))
581 {
582 styp_flags = STYP_DWARF | xcoff_dwsect_names[i].flag;
583 break;
584 }
585 }
586 #endif
587 /* Try and figure out what it should be */
588 else if (sec_flags & SEC_CODE)
589 {
590 styp_flags = STYP_TEXT;
591 }
592 else if (sec_flags & SEC_DATA)
593 {
594 styp_flags = STYP_DATA;
595 }
596 else if (sec_flags & SEC_READONLY)
597 {
598 #ifdef STYP_LIT /* 29k readonly text/data section */
599 styp_flags = STYP_LIT;
600 #else
601 styp_flags = STYP_TEXT;
602 #endif /* STYP_LIT */
603 }
604 else if (sec_flags & SEC_LOAD)
605 {
606 styp_flags = STYP_TEXT;
607 }
608 else if (sec_flags & SEC_ALLOC)
609 {
610 styp_flags = STYP_BSS;
611 }
612
613 #ifdef STYP_CLINK
614 if (sec_flags & SEC_TIC54X_CLINK)
615 styp_flags |= STYP_CLINK;
616 #endif
617
618 #ifdef STYP_BLOCK
619 if (sec_flags & SEC_TIC54X_BLOCK)
620 styp_flags |= STYP_BLOCK;
621 #endif
622
623 #ifdef STYP_NOLOAD
624 if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0)
625 styp_flags |= STYP_NOLOAD;
626 #endif
627
628 return styp_flags;
629 }
630
631 #else /* COFF_WITH_PE */
632
633 /* The PE version; see above for the general comments. The non-PE
634 case seems to be more guessing, and breaks PE format; specifically,
635 .rdata is readonly, but it sure ain't text. Really, all this
636 should be set up properly in gas (or whatever assembler is in use),
637 and honor whatever objcopy/strip, etc. sent us as input. */
638
639 static long
640 sec_to_styp_flags (const char *sec_name, flagword sec_flags)
641 {
642 long styp_flags = 0;
643 bool is_dbg = false;
644
645 if (startswith (sec_name, DOT_DEBUG)
646 || startswith (sec_name, DOT_ZDEBUG)
647 #ifdef COFF_LONG_SECTION_NAMES
648 || startswith (sec_name, GNU_LINKONCE_WI)
649 || startswith (sec_name, GNU_LINKONCE_WT)
650 #endif
651 || startswith (sec_name, ".stab"))
652 is_dbg = true;
653
654 /* caution: there are at least three groups of symbols that have
655 very similar bits and meanings: IMAGE_SCN*, SEC_*, and STYP_*.
656 SEC_* are the BFD internal flags, used for generic BFD
657 information. STYP_* are the COFF section flags which appear in
658 COFF files. IMAGE_SCN_* are the PE section flags which appear in
659 PE files. The STYP_* flags and the IMAGE_SCN_* flags overlap,
660 but there are more IMAGE_SCN_* flags. */
661
662 /* FIXME: There is no gas syntax to specify the debug section flag. */
663 if (is_dbg)
664 {
665 sec_flags &= (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD
666 | SEC_LINK_DUPLICATES_SAME_CONTENTS
667 | SEC_LINK_DUPLICATES_SAME_SIZE);
668 sec_flags |= SEC_DEBUGGING | SEC_READONLY;
669 }
670
671 /* skip LOAD */
672 /* READONLY later */
673 /* skip RELOC */
674 if ((sec_flags & SEC_CODE) != 0)
675 styp_flags |= IMAGE_SCN_CNT_CODE;
676 if ((sec_flags & (SEC_DATA | SEC_DEBUGGING)) != 0)
677 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
678 if ((sec_flags & SEC_ALLOC) != 0 && (sec_flags & SEC_LOAD) == 0)
679 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
680 /* skip ROM */
681 /* skip constRUCTOR */
682 /* skip CONTENTS */
683 #ifndef COFF_IMAGE_WITH_PE
684 /* I don't think any of the IMAGE_SCN_LNK_* flags set below should be set
685 when the output is PE. Only object files should have them, for the linker
686 to consume. */
687 if ((sec_flags & SEC_IS_COMMON) != 0)
688 styp_flags |= IMAGE_SCN_LNK_COMDAT;
689 #endif
690 if ((sec_flags & SEC_DEBUGGING) != 0)
691 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
692 if ((sec_flags & (SEC_EXCLUDE | SEC_NEVER_LOAD)) != 0 && !is_dbg)
693 #ifdef COFF_IMAGE_WITH_PE
694 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
695 #else
696 styp_flags |= IMAGE_SCN_LNK_REMOVE;
697 #endif
698 /* skip IN_MEMORY */
699 /* skip SORT */
700 #ifndef COFF_IMAGE_WITH_PE
701 if (sec_flags & SEC_LINK_ONCE)
702 styp_flags |= IMAGE_SCN_LNK_COMDAT;
703 if ((sec_flags
704 & (SEC_LINK_DUPLICATES_DISCARD | SEC_LINK_DUPLICATES_SAME_CONTENTS
705 | SEC_LINK_DUPLICATES_SAME_SIZE)) != 0)
706 styp_flags |= IMAGE_SCN_LNK_COMDAT;
707 #endif
708
709 /* skip LINKER_CREATED */
710
711 if ((sec_flags & SEC_COFF_NOREAD) == 0)
712 styp_flags |= IMAGE_SCN_MEM_READ; /* Invert NOREAD for read. */
713 if ((sec_flags & SEC_READONLY) == 0)
714 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
715 if (sec_flags & SEC_CODE)
716 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
717 if (sec_flags & SEC_COFF_SHARED)
718 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
719
720 return styp_flags;
721 }
722
723 #endif /* COFF_WITH_PE */
724
725 /* Return a word with SEC_* flags set to represent the incoming STYP_*
726 flags (from scnhdr.s_flags). The inverse of this function is
727 sec_to_styp_flags(). NOTE: If you add to/change this routine, you
728 should probably mirror the changes in sec_to_styp_flags(). */
729
730 #ifndef COFF_WITH_PE
731
732 static bool
733 styp_to_sec_flags (bfd *abfd,
734 void * hdr,
735 const char *name,
736 asection *section ATTRIBUTE_UNUSED,
737 flagword *flags_ptr)
738 {
739 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
740 unsigned long styp_flags = internal_s->s_flags;
741 flagword sec_flags = 0;
742
743 #ifdef STYP_BLOCK
744 if (styp_flags & STYP_BLOCK)
745 sec_flags |= SEC_TIC54X_BLOCK;
746 #endif
747
748 #ifdef STYP_CLINK
749 if (styp_flags & STYP_CLINK)
750 sec_flags |= SEC_TIC54X_CLINK;
751 #endif
752
753 #ifdef STYP_NOLOAD
754 if (styp_flags & STYP_NOLOAD)
755 sec_flags |= SEC_NEVER_LOAD;
756 #endif /* STYP_NOLOAD */
757
758 /* For 386 COFF, at least, an unloadable text or data section is
759 actually a shared library section. */
760 if (styp_flags & STYP_TEXT)
761 {
762 if (sec_flags & SEC_NEVER_LOAD)
763 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
764 else
765 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
766 }
767 else if (styp_flags & STYP_DATA)
768 {
769 if (sec_flags & SEC_NEVER_LOAD)
770 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
771 else
772 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
773 }
774 else if (styp_flags & STYP_BSS)
775 {
776 #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
777 if (sec_flags & SEC_NEVER_LOAD)
778 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
779 else
780 #endif
781 sec_flags |= SEC_ALLOC;
782 }
783 else if (styp_flags & STYP_INFO)
784 {
785 /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
786 defined. coff_compute_section_file_positions uses
787 COFF_PAGE_SIZE to ensure that the low order bits of the
788 section VMA and the file offset match. If we don't know
789 COFF_PAGE_SIZE, we can't ensure the correct correspondence,
790 and demand page loading of the file will fail. */
791 #if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
792 sec_flags |= SEC_DEBUGGING;
793 #endif
794 }
795 else if (styp_flags & STYP_PAD)
796 sec_flags = 0;
797 #ifdef RS6000COFF_C
798 else if (styp_flags & STYP_TDATA)
799 {
800 if (sec_flags & SEC_NEVER_LOAD)
801 sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
802 else
803 sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
804 }
805 else if (styp_flags & STYP_TBSS)
806 {
807 #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
808 if (sec_flags & SEC_NEVER_LOAD)
809 sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
810 else
811 #endif
812 sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
813 }
814 else if (styp_flags & STYP_EXCEPT)
815 sec_flags |= SEC_LOAD;
816 else if (styp_flags & STYP_LOADER)
817 sec_flags |= SEC_LOAD;
818 else if (styp_flags & STYP_TYPCHK)
819 sec_flags |= SEC_LOAD;
820 else if (styp_flags & STYP_DWARF)
821 sec_flags |= SEC_DEBUGGING;
822 #endif
823 else if (strcmp (name, _TEXT) == 0)
824 {
825 if (sec_flags & SEC_NEVER_LOAD)
826 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
827 else
828 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
829 }
830 else if (strcmp (name, _DATA) == 0)
831 {
832 if (sec_flags & SEC_NEVER_LOAD)
833 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
834 else
835 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
836 }
837 else if (strcmp (name, _BSS) == 0)
838 {
839 #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
840 if (sec_flags & SEC_NEVER_LOAD)
841 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
842 else
843 #endif
844 sec_flags |= SEC_ALLOC;
845 }
846 else if (startswith (name, DOT_DEBUG)
847 || startswith (name, DOT_ZDEBUG)
848 #ifdef _COMMENT
849 || strcmp (name, _COMMENT) == 0
850 #endif
851 #ifdef COFF_LONG_SECTION_NAMES
852 || startswith (name, GNU_LINKONCE_WI)
853 || startswith (name, GNU_LINKONCE_WT)
854 #endif
855 || startswith (name, ".stab"))
856 {
857 #ifdef COFF_PAGE_SIZE
858 sec_flags |= SEC_DEBUGGING;
859 #endif
860 }
861 #ifdef _LIB
862 else if (strcmp (name, _LIB) == 0)
863 ;
864 #endif
865 #ifdef _LIT
866 else if (strcmp (name, _LIT) == 0)
867 sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
868 #endif
869 else
870 sec_flags |= SEC_ALLOC | SEC_LOAD;
871
872 #ifdef STYP_LIT /* A29k readonly text/data section type. */
873 if ((styp_flags & STYP_LIT) == STYP_LIT)
874 sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
875 #endif /* STYP_LIT */
876
877 #ifdef STYP_OTHER_LOAD /* Other loaded sections. */
878 if (styp_flags & STYP_OTHER_LOAD)
879 sec_flags = (SEC_LOAD | SEC_ALLOC);
880 #endif /* STYP_SDATA */
881
882 if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
883 && (startswith (name, ".sbss")
884 || startswith (name, ".sdata")))
885 sec_flags |= SEC_SMALL_DATA;
886
887 #if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
888 /* As a GNU extension, if the name begins with .gnu.linkonce, we
889 only link a single copy of the section. This is used to support
890 g++. g++ will emit each template expansion in its own section.
891 The symbols will be defined as weak, so that multiple definitions
892 are permitted. The GNU linker extension is to actually discard
893 all but one of the sections. */
894 if (startswith (name, ".gnu.linkonce"))
895 sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
896 #endif
897
898 if (flags_ptr == NULL)
899 return false;
900
901 * flags_ptr = sec_flags;
902 return true;
903 }
904
905 #else /* COFF_WITH_PE */
906
907 static flagword
908 handle_COMDAT (bfd * abfd,
909 flagword sec_flags,
910 void * hdr,
911 const char *name,
912 asection *section)
913 {
914 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
915 bfd_byte *esymstart, *esym, *esymend;
916 int seen_state = 0;
917 char *target_name = NULL;
918
919 sec_flags |= SEC_LINK_ONCE;
920
921 /* Unfortunately, the PE format stores essential information in
922 the symbol table, of all places. We need to extract that
923 information now, so that objdump and the linker will know how
924 to handle the section without worrying about the symbols. We
925 can't call slurp_symtab, because the linker doesn't want the
926 swapped symbols. */
927
928 /* COMDAT sections are special. The first symbol is the section
929 symbol, which tells what kind of COMDAT section it is. The
930 second symbol is the "comdat symbol" - the one with the
931 unique name. GNU uses the section symbol for the unique
932 name; MS uses ".text" for every comdat section. Sigh. - DJ */
933
934 /* This is not mirrored in sec_to_styp_flags(), but there
935 doesn't seem to be a need to, either, and it would at best be
936 rather messy. */
937
938 if (! _bfd_coff_get_external_symbols (abfd))
939 return sec_flags;
940
941 esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
942 esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
943
944 while (esym < esymend)
945 {
946 struct internal_syment isym;
947 char buf[SYMNMLEN + 1];
948 const char *symname;
949
950 bfd_coff_swap_sym_in (abfd, esym, & isym);
951
952 BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
953
954 if (isym.n_scnum == section->target_index)
955 {
956 /* According to the MSVC documentation, the first
957 TWO entries with the section # are both of
958 interest to us. The first one is the "section
959 symbol" (section name). The second is the comdat
960 symbol name. Here, we've found the first
961 qualifying entry; we distinguish it from the
962 second with a state flag.
963
964 In the case of gas-generated (at least until that
965 is fixed) .o files, it isn't necessarily the
966 second one. It may be some other later symbol.
967
968 Since gas also doesn't follow MS conventions and
969 emits the section similar to .text$<name>, where
970 <something> is the name we're looking for, we
971 distinguish the two as follows:
972
973 If the section name is simply a section name (no
974 $) we presume it's MS-generated, and look at
975 precisely the second symbol for the comdat name.
976 If the section name has a $, we assume it's
977 gas-generated, and look for <something> (whatever
978 follows the $) as the comdat symbol. */
979
980 /* All 3 branches use this. */
981 symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
982
983 /* PR 17512 file: 078-11867-0.004 */
984 if (symname == NULL)
985 {
986 _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
987 abfd);
988 break;
989 }
990
991 switch (seen_state)
992 {
993 case 0:
994 {
995 /* The first time we've seen the symbol. */
996 union internal_auxent aux;
997
998 /* If it isn't the stuff we're expecting, die;
999 The MS documentation is vague, but it
1000 appears that the second entry serves BOTH
1001 as the comdat symbol and the defining
1002 symbol record (either C_STAT or C_EXT,
1003 possibly with an aux entry with debug
1004 information if it's a function.) It
1005 appears the only way to find the second one
1006 is to count. (On Intel, they appear to be
1007 adjacent, but on Alpha, they have been
1008 found separated.)
1009
1010 Here, we think we've found the first one,
1011 but there's some checking we can do to be
1012 sure. */
1013
1014 if (! ((isym.n_sclass == C_STAT
1015 || isym.n_sclass == C_EXT)
1016 && BTYPE (isym.n_type) == T_NULL
1017 && isym.n_value == 0))
1018 {
1019 /* Malformed input files can trigger this test.
1020 cf PR 21781. */
1021 _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
1022 abfd, symname);
1023 goto breakloop;
1024 }
1025
1026 /* FIXME LATER: MSVC generates section names
1027 like .text for comdats. Gas generates
1028 names like .text$foo__Fv (in the case of a
1029 function). See comment above for more. */
1030
1031 if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
1032 /* xgettext:c-format */
1033 _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
1034 " does not match section name '%s'"),
1035 abfd, symname, name);
1036
1037 seen_state = 1;
1038
1039 /* PR 17512: file: e2cfe54f. */
1040 if (esym + bfd_coff_symesz (abfd) >= esymend)
1041 {
1042 /* xgettext:c-format */
1043 _bfd_error_handler (_("%pB: warning: no symbol for"
1044 " section '%s' found"),
1045 abfd, symname);
1046 break;
1047 }
1048 /* This is the section symbol. */
1049 bfd_coff_swap_aux_in (abfd, (esym + bfd_coff_symesz (abfd)),
1050 isym.n_type, isym.n_sclass,
1051 0, isym.n_numaux, & aux);
1052
1053 target_name = strchr (name, '$');
1054 if (target_name != NULL)
1055 {
1056 /* Gas mode. */
1057 seen_state = 2;
1058 /* Skip the `$'. */
1059 target_name += 1;
1060 }
1061
1062 /* FIXME: Microsoft uses NODUPLICATES and
1063 ASSOCIATIVE, but gnu uses ANY and
1064 SAME_SIZE. Unfortunately, gnu doesn't do
1065 the comdat symbols right. So, until we can
1066 fix it to do the right thing, we are
1067 temporarily disabling comdats for the MS
1068 types (they're used in DLLs and C++, but we
1069 don't support *their* C++ libraries anyway
1070 - DJ. */
1071
1072 /* Cygwin does not follow the MS style, and
1073 uses ANY and SAME_SIZE where NODUPLICATES
1074 and ASSOCIATIVE should be used. For
1075 Interix, we just do the right thing up
1076 front. */
1077
1078 switch (aux.x_scn.x_comdat)
1079 {
1080 case IMAGE_COMDAT_SELECT_NODUPLICATES:
1081 #ifdef STRICT_PE_FORMAT
1082 sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1083 #else
1084 sec_flags &= ~SEC_LINK_ONCE;
1085 #endif
1086 break;
1087
1088 case IMAGE_COMDAT_SELECT_ANY:
1089 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1090 break;
1091
1092 case IMAGE_COMDAT_SELECT_SAME_SIZE:
1093 sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1094 break;
1095
1096 case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1097 /* Not yet fully implemented ??? */
1098 sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1099 break;
1100
1101 /* debug$S gets this case; other
1102 implications ??? */
1103
1104 /* There may be no symbol... we'll search
1105 the whole table... Is this the right
1106 place to play this game? Or should we do
1107 it when reading it in. */
1108 case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1109 #ifdef STRICT_PE_FORMAT
1110 /* FIXME: This is not currently implemented. */
1111 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1112 #else
1113 sec_flags &= ~SEC_LINK_ONCE;
1114 #endif
1115 break;
1116
1117 default: /* 0 means "no symbol" */
1118 /* debug$F gets this case; other
1119 implications ??? */
1120 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1121 break;
1122 }
1123 }
1124 break;
1125
1126 case 2:
1127 /* Gas mode: the first matching on partial name. */
1128
1129 #ifndef TARGET_UNDERSCORE
1130 #define TARGET_UNDERSCORE 0
1131 #endif
1132 /* Is this the name we're looking for ? */
1133 if (strcmp (target_name,
1134 symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1135 {
1136 /* Not the name we're looking for */
1137 esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
1138 continue;
1139 }
1140 /* Fall through. */
1141 case 1:
1142 /* MSVC mode: the lexically second symbol (or
1143 drop through from the above). */
1144 {
1145 char *newname;
1146 size_t amt;
1147
1148 /* This must the second symbol with the
1149 section #. It is the actual symbol name.
1150 Intel puts the two adjacent, but Alpha (at
1151 least) spreads them out. */
1152
1153 amt = sizeof (struct coff_comdat_info);
1154 coff_section_data (abfd, section)->comdat
1155 = (struct coff_comdat_info *) bfd_alloc (abfd, amt);
1156 if (coff_section_data (abfd, section)->comdat == NULL)
1157 abort ();
1158
1159 coff_section_data (abfd, section)->comdat->symbol =
1160 (esym - esymstart) / bfd_coff_symesz (abfd);
1161
1162 amt = strlen (symname) + 1;
1163 newname = (char *) bfd_alloc (abfd, amt);
1164 if (newname == NULL)
1165 abort ();
1166
1167 strcpy (newname, symname);
1168 coff_section_data (abfd, section)->comdat->name
1169 = newname;
1170 }
1171
1172 goto breakloop;
1173 }
1174 }
1175
1176 esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
1177 }
1178
1179 breakloop:
1180 return sec_flags;
1181 }
1182
1183
1184 /* The PE version; see above for the general comments.
1185
1186 Since to set the SEC_LINK_ONCE and associated flags, we have to
1187 look at the symbol table anyway, we return the symbol table index
1188 of the symbol being used as the COMDAT symbol. This is admittedly
1189 ugly, but there's really nowhere else that we have access to the
1190 required information. FIXME: Is the COMDAT symbol index used for
1191 any purpose other than objdump? */
1192
1193 static bool
1194 styp_to_sec_flags (bfd *abfd,
1195 void * hdr,
1196 const char *name,
1197 asection *section,
1198 flagword *flags_ptr)
1199 {
1200 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1201 unsigned long styp_flags = internal_s->s_flags;
1202 flagword sec_flags;
1203 bool result = true;
1204 bool is_dbg = false;
1205
1206 if (startswith (name, DOT_DEBUG)
1207 || startswith (name, DOT_ZDEBUG)
1208 #ifdef COFF_LONG_SECTION_NAMES
1209 || startswith (name, GNU_LINKONCE_WI)
1210 || startswith (name, GNU_LINKONCE_WT)
1211 /* FIXME: These definitions ought to be in a header file. */
1212 #define GNU_DEBUGLINK ".gnu_debuglink"
1213 #define GNU_DEBUGALTLINK ".gnu_debugaltlink"
1214 || startswith (name, GNU_DEBUGLINK)
1215 || startswith (name, GNU_DEBUGALTLINK)
1216 #endif
1217 || startswith (name, ".stab"))
1218 is_dbg = true;
1219 /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified. */
1220 sec_flags = SEC_READONLY;
1221
1222 /* If section disallows read, then set the NOREAD flag. */
1223 if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1224 sec_flags |= SEC_COFF_NOREAD;
1225
1226 /* Process each flag bit in styp_flags in turn. */
1227 while (styp_flags)
1228 {
1229 unsigned long flag = styp_flags & - styp_flags;
1230 char * unhandled = NULL;
1231
1232 styp_flags &= ~ flag;
1233
1234 /* We infer from the distinct read/write/execute bits the settings
1235 of some of the bfd flags; the actual values, should we need them,
1236 are also in pei_section_data (abfd, section)->pe_flags. */
1237
1238 switch (flag)
1239 {
1240 case STYP_DSECT:
1241 unhandled = "STYP_DSECT";
1242 break;
1243 case STYP_GROUP:
1244 unhandled = "STYP_GROUP";
1245 break;
1246 case STYP_COPY:
1247 unhandled = "STYP_COPY";
1248 break;
1249 case STYP_OVER:
1250 unhandled = "STYP_OVER";
1251 break;
1252 #ifdef SEC_NEVER_LOAD
1253 case STYP_NOLOAD:
1254 sec_flags |= SEC_NEVER_LOAD;
1255 break;
1256 #endif
1257 case IMAGE_SCN_MEM_READ:
1258 sec_flags &= ~SEC_COFF_NOREAD;
1259 break;
1260 case IMAGE_SCN_TYPE_NO_PAD:
1261 /* Skip. */
1262 break;
1263 case IMAGE_SCN_LNK_OTHER:
1264 unhandled = "IMAGE_SCN_LNK_OTHER";
1265 break;
1266 case IMAGE_SCN_MEM_NOT_CACHED:
1267 unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1268 break;
1269 case IMAGE_SCN_MEM_NOT_PAGED:
1270 /* Generate a warning message rather using the 'unhandled'
1271 variable as this will allow some .sys files generate by
1272 other toolchains to be processed. See bugzilla issue 196. */
1273 /* xgettext:c-format */
1274 _bfd_error_handler (_("%pB: warning: ignoring section flag"
1275 " %s in section %s"),
1276 abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1277 break;
1278 case IMAGE_SCN_MEM_EXECUTE:
1279 sec_flags |= SEC_CODE;
1280 break;
1281 case IMAGE_SCN_MEM_WRITE:
1282 sec_flags &= ~ SEC_READONLY;
1283 break;
1284 case IMAGE_SCN_MEM_DISCARDABLE:
1285 /* The MS PE spec says that debug sections are DISCARDABLE,
1286 but the presence of a DISCARDABLE flag does not necessarily
1287 mean that a given section contains debug information. Thus
1288 we only set the SEC_DEBUGGING flag on sections that we
1289 recognise as containing debug information. */
1290 if (is_dbg
1291 #ifdef _COMMENT
1292 || strcmp (name, _COMMENT) == 0
1293 #endif
1294 )
1295 {
1296 sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1297 }
1298 break;
1299 case IMAGE_SCN_MEM_SHARED:
1300 sec_flags |= SEC_COFF_SHARED;
1301 break;
1302 case IMAGE_SCN_LNK_REMOVE:
1303 if (!is_dbg)
1304 sec_flags |= SEC_EXCLUDE;
1305 break;
1306 case IMAGE_SCN_CNT_CODE:
1307 sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1308 break;
1309 case IMAGE_SCN_CNT_INITIALIZED_DATA:
1310 if (is_dbg)
1311 sec_flags |= SEC_DEBUGGING;
1312 else
1313 sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1314 break;
1315 case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1316 sec_flags |= SEC_ALLOC;
1317 break;
1318 case IMAGE_SCN_LNK_INFO:
1319 /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1320 defined. coff_compute_section_file_positions uses
1321 COFF_PAGE_SIZE to ensure that the low order bits of the
1322 section VMA and the file offset match. If we don't know
1323 COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1324 and demand page loading of the file will fail. */
1325 #ifdef COFF_PAGE_SIZE
1326 sec_flags |= SEC_DEBUGGING;
1327 #endif
1328 break;
1329 case IMAGE_SCN_LNK_COMDAT:
1330 /* COMDAT gets very special treatment. */
1331 sec_flags = handle_COMDAT (abfd, sec_flags, hdr, name, section);
1332 break;
1333 default:
1334 /* Silently ignore for now. */
1335 break;
1336 }
1337
1338 /* If the section flag was not handled, report it here. */
1339 if (unhandled != NULL)
1340 {
1341 _bfd_error_handler
1342 /* xgettext:c-format */
1343 (_("%pB (%s): section flag %s (%#lx) ignored"),
1344 abfd, name, unhandled, flag);
1345 result = false;
1346 }
1347 }
1348
1349 if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1350 && (startswith (name, ".sbss")
1351 || startswith (name, ".sdata")))
1352 sec_flags |= SEC_SMALL_DATA;
1353
1354 #if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1355 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1356 only link a single copy of the section. This is used to support
1357 g++. g++ will emit each template expansion in its own section.
1358 The symbols will be defined as weak, so that multiple definitions
1359 are permitted. The GNU linker extension is to actually discard
1360 all but one of the sections. */
1361 if (startswith (name, ".gnu.linkonce"))
1362 sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1363 #endif
1364
1365 if (flags_ptr)
1366 * flags_ptr = sec_flags;
1367
1368 return result;
1369 }
1370
1371 #endif /* COFF_WITH_PE */
1372
1373 #define get_index(symbol) ((symbol)->udata.i)
1374
1375 /*
1376 INTERNAL_DEFINITION
1377 bfd_coff_backend_data
1378
1379 CODE_FRAGMENT
1380
1381 .{* COFF symbol classifications. *}
1382 .
1383 .enum coff_symbol_classification
1384 .{
1385 . {* Global symbol. *}
1386 . COFF_SYMBOL_GLOBAL,
1387 . {* Common symbol. *}
1388 . COFF_SYMBOL_COMMON,
1389 . {* Undefined symbol. *}
1390 . COFF_SYMBOL_UNDEFINED,
1391 . {* Local symbol. *}
1392 . COFF_SYMBOL_LOCAL,
1393 . {* PE section symbol. *}
1394 . COFF_SYMBOL_PE_SECTION
1395 .};
1396 .
1397 .typedef asection * (*coff_gc_mark_hook_fn)
1398 . (asection *, struct bfd_link_info *, struct internal_reloc *,
1399 . struct coff_link_hash_entry *, struct internal_syment *);
1400 .
1401 Special entry points for gdb to swap in coff symbol table parts:
1402 .typedef struct
1403 .{
1404 . void (*_bfd_coff_swap_aux_in)
1405 . (bfd *, void *, int, int, int, int, void *);
1406 .
1407 . void (*_bfd_coff_swap_sym_in)
1408 . (bfd *, void *, void *);
1409 .
1410 . void (*_bfd_coff_swap_lineno_in)
1411 . (bfd *, void *, void *);
1412 .
1413 . unsigned int (*_bfd_coff_swap_aux_out)
1414 . (bfd *, void *, int, int, int, int, void *);
1415 .
1416 . unsigned int (*_bfd_coff_swap_sym_out)
1417 . (bfd *, void *, void *);
1418 .
1419 . unsigned int (*_bfd_coff_swap_lineno_out)
1420 . (bfd *, void *, void *);
1421 .
1422 . unsigned int (*_bfd_coff_swap_reloc_out)
1423 . (bfd *, void *, void *);
1424 .
1425 . unsigned int (*_bfd_coff_swap_filehdr_out)
1426 . (bfd *, void *, void *);
1427 .
1428 . unsigned int (*_bfd_coff_swap_aouthdr_out)
1429 . (bfd *, void *, void *);
1430 .
1431 . unsigned int (*_bfd_coff_swap_scnhdr_out)
1432 . (bfd *, void *, void *);
1433 .
1434 . unsigned int _bfd_filhsz;
1435 . unsigned int _bfd_aoutsz;
1436 . unsigned int _bfd_scnhsz;
1437 . unsigned int _bfd_symesz;
1438 . unsigned int _bfd_auxesz;
1439 . unsigned int _bfd_relsz;
1440 . unsigned int _bfd_linesz;
1441 . unsigned int _bfd_filnmlen;
1442 . bool _bfd_coff_long_filenames;
1443 .
1444 . bool _bfd_coff_long_section_names;
1445 . bool (*_bfd_coff_set_long_section_names)
1446 . (bfd *, int);
1447 .
1448 . unsigned int _bfd_coff_default_section_alignment_power;
1449 . bool _bfd_coff_force_symnames_in_strings;
1450 . unsigned int _bfd_coff_debug_string_prefix_length;
1451 . unsigned int _bfd_coff_max_nscns;
1452 .
1453 . void (*_bfd_coff_swap_filehdr_in)
1454 . (bfd *, void *, void *);
1455 .
1456 . void (*_bfd_coff_swap_aouthdr_in)
1457 . (bfd *, void *, void *);
1458 .
1459 . void (*_bfd_coff_swap_scnhdr_in)
1460 . (bfd *, void *, void *);
1461 .
1462 . void (*_bfd_coff_swap_reloc_in)
1463 . (bfd *abfd, void *, void *);
1464 .
1465 . bool (*_bfd_coff_bad_format_hook)
1466 . (bfd *, void *);
1467 .
1468 . bool (*_bfd_coff_set_arch_mach_hook)
1469 . (bfd *, void *);
1470 .
1471 . void * (*_bfd_coff_mkobject_hook)
1472 . (bfd *, void *, void *);
1473 .
1474 . bool (*_bfd_styp_to_sec_flags_hook)
1475 . (bfd *, void *, const char *, asection *, flagword *);
1476 .
1477 . void (*_bfd_set_alignment_hook)
1478 . (bfd *, asection *, void *);
1479 .
1480 . bool (*_bfd_coff_slurp_symbol_table)
1481 . (bfd *);
1482 .
1483 . bool (*_bfd_coff_symname_in_debug)
1484 . (bfd *, struct internal_syment *);
1485 .
1486 . bool (*_bfd_coff_pointerize_aux_hook)
1487 . (bfd *, combined_entry_type *, combined_entry_type *,
1488 . unsigned int, combined_entry_type *);
1489 .
1490 . bool (*_bfd_coff_print_aux)
1491 . (bfd *, FILE *, combined_entry_type *, combined_entry_type *,
1492 . combined_entry_type *, unsigned int);
1493 .
1494 . void (*_bfd_coff_reloc16_extra_cases)
1495 . (bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
1496 . bfd_byte *, unsigned int *, unsigned int *);
1497 .
1498 . int (*_bfd_coff_reloc16_estimate)
1499 . (bfd *, asection *, arelent *, unsigned int,
1500 . struct bfd_link_info *);
1501 .
1502 . enum coff_symbol_classification (*_bfd_coff_classify_symbol)
1503 . (bfd *, struct internal_syment *);
1504 .
1505 . bool (*_bfd_coff_compute_section_file_positions)
1506 . (bfd *);
1507 .
1508 . bool (*_bfd_coff_start_final_link)
1509 . (bfd *, struct bfd_link_info *);
1510 .
1511 . bool (*_bfd_coff_relocate_section)
1512 . (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
1513 . struct internal_reloc *, struct internal_syment *, asection **);
1514 .
1515 . reloc_howto_type *(*_bfd_coff_rtype_to_howto)
1516 . (bfd *, asection *, struct internal_reloc *,
1517 . struct coff_link_hash_entry *, struct internal_syment *, bfd_vma *);
1518 .
1519 . bool (*_bfd_coff_adjust_symndx)
1520 . (bfd *, struct bfd_link_info *, bfd *, asection *,
1521 . struct internal_reloc *, bool *);
1522 .
1523 . bool (*_bfd_coff_link_add_one_symbol)
1524 . (struct bfd_link_info *, bfd *, const char *, flagword,
1525 . asection *, bfd_vma, const char *, bool, bool,
1526 . struct bfd_link_hash_entry **);
1527 .
1528 . bool (*_bfd_coff_link_output_has_begun)
1529 . (bfd *, struct coff_final_link_info *);
1530 .
1531 . bool (*_bfd_coff_final_link_postscript)
1532 . (bfd *, struct coff_final_link_info *);
1533 .
1534 . bool (*_bfd_coff_print_pdata)
1535 . (bfd *, void *);
1536 .
1537 .} bfd_coff_backend_data;
1538 .
1539 .#define coff_backend_info(abfd) \
1540 . ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
1541 .
1542 .#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
1543 . ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
1544 .
1545 .#define bfd_coff_swap_sym_in(a,e,i) \
1546 . ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
1547 .
1548 .#define bfd_coff_swap_lineno_in(a,e,i) \
1549 . ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
1550 .
1551 .#define bfd_coff_swap_reloc_out(abfd, i, o) \
1552 . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
1553 .
1554 .#define bfd_coff_swap_lineno_out(abfd, i, o) \
1555 . ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
1556 .
1557 .#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
1558 . ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
1559 .
1560 .#define bfd_coff_swap_sym_out(abfd, i,o) \
1561 . ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
1562 .
1563 .#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
1564 . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
1565 .
1566 .#define bfd_coff_swap_filehdr_out(abfd, i,o) \
1567 . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
1568 .
1569 .#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
1570 . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
1571 .
1572 .#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
1573 .#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
1574 .#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
1575 .#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
1576 .#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
1577 .#define bfd_coff_relsz(abfd) (coff_backend_info (abfd)->_bfd_relsz)
1578 .#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
1579 .#define bfd_coff_filnmlen(abfd) (coff_backend_info (abfd)->_bfd_filnmlen)
1580 .#define bfd_coff_long_filenames(abfd) \
1581 . (coff_backend_info (abfd)->_bfd_coff_long_filenames)
1582 .#define bfd_coff_long_section_names(abfd) \
1583 . (coff_backend_info (abfd)->_bfd_coff_long_section_names)
1584 .#define bfd_coff_set_long_section_names(abfd, enable) \
1585 . ((coff_backend_info (abfd)->_bfd_coff_set_long_section_names) (abfd, enable))
1586 .#define bfd_coff_default_section_alignment_power(abfd) \
1587 . (coff_backend_info (abfd)->_bfd_coff_default_section_alignment_power)
1588 .#define bfd_coff_max_nscns(abfd) \
1589 . (coff_backend_info (abfd)->_bfd_coff_max_nscns)
1590 .
1591 .#define bfd_coff_swap_filehdr_in(abfd, i,o) \
1592 . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
1593 .
1594 .#define bfd_coff_swap_aouthdr_in(abfd, i,o) \
1595 . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
1596 .
1597 .#define bfd_coff_swap_scnhdr_in(abfd, i,o) \
1598 . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
1599 .
1600 .#define bfd_coff_swap_reloc_in(abfd, i, o) \
1601 . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
1602 .
1603 .#define bfd_coff_bad_format_hook(abfd, filehdr) \
1604 . ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
1605 .
1606 .#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
1607 . ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
1608 .#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
1609 . ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook)\
1610 . (abfd, filehdr, aouthdr))
1611 .
1612 .#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name, section, flags_ptr)\
1613 . ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook)\
1614 . (abfd, scnhdr, name, section, flags_ptr))
1615 .
1616 .#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
1617 . ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
1618 .
1619 .#define bfd_coff_slurp_symbol_table(abfd)\
1620 . ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
1621 .
1622 .#define bfd_coff_symname_in_debug(abfd, sym)\
1623 . ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
1624 .
1625 .#define bfd_coff_force_symnames_in_strings(abfd)\
1626 . (coff_backend_info (abfd)->_bfd_coff_force_symnames_in_strings)
1627 .
1628 .#define bfd_coff_debug_string_prefix_length(abfd)\
1629 . (coff_backend_info (abfd)->_bfd_coff_debug_string_prefix_length)
1630 .
1631 .#define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
1632 . ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
1633 . (abfd, file, base, symbol, aux, indaux))
1634 .
1635 .#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order,\
1636 . reloc, data, src_ptr, dst_ptr)\
1637 . ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
1638 . (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
1639 .
1640 .#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
1641 . ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
1642 . (abfd, section, reloc, shrink, link_info))
1643 .
1644 .#define bfd_coff_classify_symbol(abfd, sym)\
1645 . ((coff_backend_info (abfd)->_bfd_coff_classify_symbol)\
1646 . (abfd, sym))
1647 .
1648 .#define bfd_coff_compute_section_file_positions(abfd)\
1649 . ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
1650 . (abfd))
1651 .
1652 .#define bfd_coff_start_final_link(obfd, info)\
1653 . ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
1654 . (obfd, info))
1655 .#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
1656 . ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
1657 . (obfd, info, ibfd, o, con, rel, isyms, secs))
1658 .#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
1659 . ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
1660 . (abfd, sec, rel, h, sym, addendp))
1661 .#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
1662 . ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
1663 . (obfd, info, ibfd, sec, rel, adjustedp))
1664 .#define bfd_coff_link_add_one_symbol(info, abfd, name, flags, section,\
1665 . value, string, cp, coll, hashp)\
1666 . ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
1667 . (info, abfd, name, flags, section, value, string, cp, coll, hashp))
1668 .
1669 .#define bfd_coff_link_output_has_begun(a,p) \
1670 . ((coff_backend_info (a)->_bfd_coff_link_output_has_begun) (a, p))
1671 .#define bfd_coff_final_link_postscript(a,p) \
1672 . ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a, p))
1673 .
1674 .#define bfd_coff_have_print_pdata(a) \
1675 . (coff_backend_info (a)->_bfd_coff_print_pdata)
1676 .#define bfd_coff_print_pdata(a,p) \
1677 . ((coff_backend_info (a)->_bfd_coff_print_pdata) (a, p))
1678 .
1679 .{* Macro: Returns true if the bfd is a PE executable as opposed to a
1680 . PE object file. *}
1681 .#define bfd_pei_p(abfd) \
1682 . (startswith ((abfd)->xvec->name, "pei-"))
1683 */
1684
1685 /* See whether the magic number matches. */
1686
1687 static bool
1688 coff_bad_format_hook (bfd * abfd ATTRIBUTE_UNUSED, void * filehdr)
1689 {
1690 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1691
1692 if (BADMAG (*internal_f))
1693 return false;
1694
1695 return true;
1696 }
1697
1698 #ifdef TICOFF
1699 static bool
1700 ticoff0_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
1701 {
1702 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1703
1704 if (COFF0_BADMAG (*internal_f))
1705 return false;
1706
1707 return true;
1708 }
1709 #endif
1710
1711 #ifdef TICOFF
1712 static bool
1713 ticoff1_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
1714 {
1715 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1716
1717 if (COFF1_BADMAG (*internal_f))
1718 return false;
1719
1720 return true;
1721 }
1722 #endif
1723
1724 /* Check whether this section uses an alignment other than the
1725 default. */
1726
1727 static void
1728 coff_set_custom_section_alignment (bfd *abfd ATTRIBUTE_UNUSED,
1729 asection *section,
1730 const struct coff_section_alignment_entry *alignment_table,
1731 const unsigned int table_size)
1732 {
1733 const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1734 unsigned int i;
1735
1736 for (i = 0; i < table_size; ++i)
1737 {
1738 const char *secname = bfd_section_name (section);
1739
1740 if (alignment_table[i].comparison_length == (unsigned int) -1
1741 ? strcmp (alignment_table[i].name, secname) == 0
1742 : strncmp (alignment_table[i].name, secname,
1743 alignment_table[i].comparison_length) == 0)
1744 break;
1745 }
1746 if (i >= table_size)
1747 return;
1748
1749 if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1750 && default_alignment < alignment_table[i].default_alignment_min)
1751 return;
1752
1753 if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1754 #if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1755 && default_alignment > alignment_table[i].default_alignment_max
1756 #endif
1757 )
1758 return;
1759
1760 section->alignment_power = alignment_table[i].alignment_power;
1761 }
1762
1763 /* Custom section alignment records. */
1764
1765 static const struct coff_section_alignment_entry
1766 coff_section_alignment_table[] =
1767 {
1768 #ifdef COFF_SECTION_ALIGNMENT_ENTRIES
1769 COFF_SECTION_ALIGNMENT_ENTRIES,
1770 #endif
1771 /* There must not be any gaps between .stabstr sections. */
1772 { COFF_SECTION_NAME_PARTIAL_MATCH (".stabstr"),
1773 1, COFF_ALIGNMENT_FIELD_EMPTY, 0 },
1774 /* The .stab section must be aligned to 2**2 at most, to avoid gaps. */
1775 { COFF_SECTION_NAME_PARTIAL_MATCH (".stab"),
1776 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1777 /* Similarly for the .ctors and .dtors sections. */
1778 { COFF_SECTION_NAME_EXACT_MATCH (".ctors"),
1779 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1780 { COFF_SECTION_NAME_EXACT_MATCH (".dtors"),
1781 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 }
1782 };
1783
1784 static const unsigned int coff_section_alignment_table_size =
1785 sizeof coff_section_alignment_table / sizeof coff_section_alignment_table[0];
1786
1787 /* Initialize a section structure with information peculiar to this
1788 particular implementation of COFF. */
1789
1790 static bool
1791 coff_new_section_hook (bfd * abfd, asection * section)
1792 {
1793 combined_entry_type *native;
1794 size_t amt;
1795 unsigned char sclass = C_STAT;
1796
1797 section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1798
1799 #ifdef RS6000COFF_C
1800 if (bfd_xcoff_text_align_power (abfd) != 0
1801 && strcmp (bfd_section_name (section), ".text") == 0)
1802 section->alignment_power = bfd_xcoff_text_align_power (abfd);
1803 else if (bfd_xcoff_data_align_power (abfd) != 0
1804 && strcmp (bfd_section_name (section), ".data") == 0)
1805 section->alignment_power = bfd_xcoff_data_align_power (abfd);
1806 else
1807 {
1808 int i;
1809
1810 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1811 if (strcmp (bfd_section_name (section),
1812 xcoff_dwsect_names[i].xcoff_name) == 0)
1813 {
1814 section->alignment_power = 0;
1815 sclass = C_DWARF;
1816 break;
1817 }
1818 }
1819 #endif
1820
1821 /* Set up the section symbol. */
1822 if (!_bfd_generic_new_section_hook (abfd, section))
1823 return false;
1824
1825 /* Allocate aux records for section symbols, to store size and
1826 related info.
1827
1828 @@ The 10 is a guess at a plausible maximum number of aux entries
1829 (but shouldn't be a constant). */
1830 amt = sizeof (combined_entry_type) * 10;
1831 native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1832 if (native == NULL)
1833 return false;
1834
1835 /* We don't need to set up n_name, n_value, or n_scnum in the native
1836 symbol information, since they'll be overridden by the BFD symbol
1837 anyhow. However, we do need to set the type and storage class,
1838 in case this symbol winds up getting written out. The value 0
1839 for n_numaux is already correct. */
1840
1841 native->is_sym = true;
1842 native->u.syment.n_type = T_NULL;
1843 native->u.syment.n_sclass = sclass;
1844
1845 coffsymbol (section->symbol)->native = native;
1846
1847 coff_set_custom_section_alignment (abfd, section,
1848 coff_section_alignment_table,
1849 coff_section_alignment_table_size);
1850
1851 return true;
1852 }
1853
1854 #ifdef COFF_ALIGN_IN_SECTION_HEADER
1855
1856 /* Set the alignment of a BFD section. */
1857
1858 static void
1859 coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
1860 asection * section,
1861 void * scnhdr)
1862 {
1863 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1864 unsigned int i;
1865
1866 #ifdef COFF_DECODE_ALIGNMENT
1867 i = COFF_DECODE_ALIGNMENT(hdr->s_flags);
1868 #endif
1869 section->alignment_power = i;
1870
1871 #ifdef coff_set_section_load_page
1872 coff_set_section_load_page (section, hdr->s_page);
1873 #endif
1874 }
1875
1876 #else /* ! COFF_ALIGN_IN_SECTION_HEADER */
1877 #ifdef COFF_WITH_PE
1878
1879 static void
1880 coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
1881 asection * section,
1882 void * scnhdr)
1883 {
1884 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1885 size_t amt;
1886 unsigned int alignment_power_const
1887 = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1888
1889 switch (alignment_power_const)
1890 {
1891 case IMAGE_SCN_ALIGN_8192BYTES:
1892 case IMAGE_SCN_ALIGN_4096BYTES:
1893 case IMAGE_SCN_ALIGN_2048BYTES:
1894 case IMAGE_SCN_ALIGN_1024BYTES:
1895 case IMAGE_SCN_ALIGN_512BYTES:
1896 case IMAGE_SCN_ALIGN_256BYTES:
1897 case IMAGE_SCN_ALIGN_128BYTES:
1898 case IMAGE_SCN_ALIGN_64BYTES:
1899 case IMAGE_SCN_ALIGN_32BYTES:
1900 case IMAGE_SCN_ALIGN_16BYTES:
1901 case IMAGE_SCN_ALIGN_8BYTES:
1902 case IMAGE_SCN_ALIGN_4BYTES:
1903 case IMAGE_SCN_ALIGN_2BYTES:
1904 case IMAGE_SCN_ALIGN_1BYTES:
1905 section->alignment_power
1906 = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1907 break;
1908 default:
1909 break;
1910 }
1911
1912 /* In a PE image file, the s_paddr field holds the virtual size of a
1913 section, while the s_size field holds the raw size. We also keep
1914 the original section flag value, since not every bit can be
1915 mapped onto a generic BFD section bit. */
1916 if (coff_section_data (abfd, section) == NULL)
1917 {
1918 amt = sizeof (struct coff_section_tdata);
1919 section->used_by_bfd = bfd_zalloc (abfd, amt);
1920 if (section->used_by_bfd == NULL)
1921 /* FIXME: Return error. */
1922 abort ();
1923 }
1924
1925 if (pei_section_data (abfd, section) == NULL)
1926 {
1927 amt = sizeof (struct pei_section_tdata);
1928 coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1929 if (coff_section_data (abfd, section)->tdata == NULL)
1930 /* FIXME: Return error. */
1931 abort ();
1932 }
1933 pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1934 pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1935
1936 section->lma = hdr->s_vaddr;
1937
1938 /* Check for extended relocs. */
1939 if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1940 {
1941 struct external_reloc dst;
1942 struct internal_reloc n;
1943 file_ptr oldpos = bfd_tell (abfd);
1944 bfd_size_type relsz = bfd_coff_relsz (abfd);
1945
1946 if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1947 return;
1948 if (bfd_bread (& dst, relsz, abfd) != relsz)
1949 return;
1950
1951 coff_swap_reloc_in (abfd, &dst, &n);
1952 if (bfd_seek (abfd, oldpos, 0) != 0)
1953 return;
1954 if (n.r_vaddr < 0x10000)
1955 {
1956 _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1957 bfd_set_error (bfd_error_bad_value);
1958 return;
1959 }
1960 section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1961 section->rel_filepos += relsz;
1962 }
1963 else if (hdr->s_nreloc == 0xffff)
1964 _bfd_error_handler
1965 (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1966 abfd);
1967 }
1968 #undef ALIGN_SET
1969 #undef ELIFALIGN_SET
1970
1971 #else /* ! COFF_WITH_PE */
1972 #ifdef RS6000COFF_C
1973
1974 /* We grossly abuse this function to handle XCOFF overflow headers.
1975 When we see one, we correct the reloc and line number counts in the
1976 real header, and remove the section we just created. */
1977
1978 static void
1979 coff_set_alignment_hook (bfd *abfd, asection *section, void * scnhdr)
1980 {
1981 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1982 asection *real_sec;
1983
1984 if ((hdr->s_flags & STYP_OVRFLO) == 0)
1985 return;
1986
1987 real_sec = coff_section_from_bfd_index (abfd, (int) hdr->s_nreloc);
1988 if (real_sec == NULL)
1989 return;
1990
1991 real_sec->reloc_count = hdr->s_paddr;
1992 real_sec->lineno_count = hdr->s_vaddr;
1993
1994 if (!bfd_section_removed_from_list (abfd, section))
1995 {
1996 bfd_section_list_remove (abfd, section);
1997 --abfd->section_count;
1998 }
1999 }
2000
2001 #else /* ! RS6000COFF_C */
2002 #if defined (COFF_GO32_EXE) || defined (COFF_GO32)
2003
2004 static void
2005 coff_set_alignment_hook (bfd * abfd, asection * section, void * scnhdr)
2006 {
2007 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
2008
2009 /* Check for extended relocs. */
2010 if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
2011 {
2012 struct external_reloc dst;
2013 struct internal_reloc n;
2014 const file_ptr oldpos = bfd_tell (abfd);
2015 const bfd_size_type relsz = bfd_coff_relsz (abfd);
2016
2017 if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
2018 return;
2019 if (bfd_bread (& dst, relsz, abfd) != relsz)
2020 return;
2021
2022 coff_swap_reloc_in (abfd, &dst, &n);
2023 if (bfd_seek (abfd, oldpos, 0) != 0)
2024 return;
2025 section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
2026 section->rel_filepos += relsz;
2027 }
2028 else if (hdr->s_nreloc == 0xffff)
2029 _bfd_error_handler
2030 (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
2031 abfd);
2032 }
2033
2034 #else /* ! COFF_GO32_EXE && ! COFF_GO32 */
2035
2036 static void
2037 coff_set_alignment_hook (bfd *abfd ATTRIBUTE_UNUSED,
2038 asection *section ATTRIBUTE_UNUSED,
2039 void *scnhdr ATTRIBUTE_UNUSED)
2040 {
2041 }
2042
2043 #endif /* ! COFF_GO32_EXE && ! COFF_GO32 */
2044 #endif /* ! RS6000COFF_C */
2045 #endif /* ! COFF_WITH_PE */
2046 #endif /* ! COFF_ALIGN_IN_SECTION_HEADER */
2047
2048 #ifndef coff_mkobject
2049
2050 static bool
2051 coff_mkobject (bfd * abfd)
2052 {
2053 coff_data_type *coff;
2054 size_t amt = sizeof (coff_data_type);
2055
2056 abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2057 if (abfd->tdata.coff_obj_data == NULL)
2058 return false;
2059 coff = coff_data (abfd);
2060 coff->symbols = NULL;
2061 coff->conversion_table = NULL;
2062 coff->raw_syments = NULL;
2063 coff->relocbase = 0;
2064 coff->local_toc_sym_map = 0;
2065
2066 /* make_abs_section(abfd);*/
2067
2068 return true;
2069 }
2070 #endif
2071
2072 /* Create the COFF backend specific information. */
2073
2074 #ifndef coff_mkobject_hook
2075 static void *
2076 coff_mkobject_hook (bfd * abfd,
2077 void * filehdr,
2078 void * aouthdr ATTRIBUTE_UNUSED)
2079 {
2080 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2081 coff_data_type *coff;
2082
2083 if (! coff_mkobject (abfd))
2084 return NULL;
2085
2086 coff = coff_data (abfd);
2087
2088 coff->sym_filepos = internal_f->f_symptr;
2089
2090 /* These members communicate important constants about the symbol
2091 table to GDB's symbol-reading code. These `constants'
2092 unfortunately vary among coff implementations... */
2093 coff->local_n_btmask = N_BTMASK;
2094 coff->local_n_btshft = N_BTSHFT;
2095 coff->local_n_tmask = N_TMASK;
2096 coff->local_n_tshift = N_TSHIFT;
2097 coff->local_symesz = bfd_coff_symesz (abfd);
2098 coff->local_auxesz = bfd_coff_auxesz (abfd);
2099 coff->local_linesz = bfd_coff_linesz (abfd);
2100
2101 coff->timestamp = internal_f->f_timdat;
2102
2103 obj_raw_syment_count (abfd) =
2104 obj_conv_table_size (abfd) =
2105 internal_f->f_nsyms;
2106
2107 #ifdef RS6000COFF_C
2108 if ((internal_f->f_flags & F_SHROBJ) != 0)
2109 abfd->flags |= DYNAMIC;
2110 if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2111 {
2112 struct internal_aouthdr *internal_a =
2113 (struct internal_aouthdr *) aouthdr;
2114 struct xcoff_tdata *xcoff;
2115
2116 xcoff = xcoff_data (abfd);
2117 # ifdef U803XTOCMAGIC
2118 xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2119 # else
2120 xcoff->xcoff64 = 0;
2121 # endif
2122 xcoff->full_aouthdr = true;
2123 xcoff->toc = internal_a->o_toc;
2124 xcoff->sntoc = internal_a->o_sntoc;
2125 xcoff->snentry = internal_a->o_snentry;
2126 bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2127 bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2128 xcoff->modtype = internal_a->o_modtype;
2129 xcoff->cputype = internal_a->o_cputype;
2130 xcoff->maxdata = internal_a->o_maxdata;
2131 xcoff->maxstack = internal_a->o_maxstack;
2132 }
2133 #endif
2134
2135 #ifdef ARM
2136 /* Set the flags field from the COFF header read in. */
2137 if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2138 coff->flags = 0;
2139 #endif
2140
2141 #ifdef COFF_WITH_PE
2142 /* FIXME: I'm not sure this is ever executed, since peicode.h
2143 defines coff_mkobject_hook. */
2144 if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2145 abfd->flags |= HAS_DEBUG;
2146 #endif
2147
2148 return coff;
2149 }
2150 #endif
2151
2152 /* Determine the machine architecture and type. FIXME: This is target
2153 dependent because the magic numbers are defined in the target
2154 dependent header files. But there is no particular need for this.
2155 If the magic numbers were moved to a separate file, this function
2156 would be target independent and would also be much more successful
2157 at linking together COFF files for different architectures. */
2158
2159 static bool
2160 coff_set_arch_mach_hook (bfd *abfd, void * filehdr)
2161 {
2162 unsigned long machine;
2163 enum bfd_architecture arch;
2164 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2165
2166 /* Zero selects the default machine for an arch. */
2167 machine = 0;
2168 switch (internal_f->f_magic)
2169 {
2170 #ifdef I386MAGIC
2171 case I386MAGIC:
2172 case I386PTXMAGIC:
2173 case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler. */
2174 case LYNXCOFFMAGIC:
2175 case I386_APPLE_MAGIC:
2176 case I386_FREEBSD_MAGIC:
2177 case I386_LINUX_MAGIC:
2178 case I386_NETBSD_MAGIC:
2179 arch = bfd_arch_i386;
2180 break;
2181 #endif
2182 #ifdef AMD64MAGIC
2183 case AMD64MAGIC:
2184 case AMD64_APPLE_MAGIC:
2185 case AMD64_FREEBSD_MAGIC:
2186 case AMD64_LINUX_MAGIC:
2187 case AMD64_NETBSD_MAGIC:
2188 arch = bfd_arch_i386;
2189 machine = bfd_mach_x86_64;
2190 break;
2191 #endif
2192 #ifdef IA64MAGIC
2193 case IA64MAGIC:
2194 arch = bfd_arch_ia64;
2195 break;
2196 #endif
2197 #ifdef ARMMAGIC
2198 case ARMMAGIC:
2199 case ARMPEMAGIC:
2200 case THUMBPEMAGIC:
2201 arch = bfd_arch_arm;
2202 machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2203 if (machine == bfd_mach_arm_unknown)
2204 {
2205 switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2206 {
2207 case F_ARM_2: machine = bfd_mach_arm_2; break;
2208 case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2209 case F_ARM_3: machine = bfd_mach_arm_3; break;
2210 default:
2211 case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2212 case F_ARM_4: machine = bfd_mach_arm_4; break;
2213 case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2214 /* The COFF header does not have enough bits available
2215 to cover all the different ARM architectures. So
2216 we interpret F_ARM_5, the highest flag value to mean
2217 "the highest ARM architecture known to BFD" which is
2218 currently the XScale. */
2219 case F_ARM_5: machine = bfd_mach_arm_XScale; break;
2220 }
2221 }
2222 break;
2223 #endif
2224 #ifdef Z80MAGIC
2225 case Z80MAGIC:
2226 arch = bfd_arch_z80;
2227 switch (internal_f->f_flags & F_MACHMASK)
2228 {
2229 case bfd_mach_z80strict << 12:
2230 case bfd_mach_z80 << 12:
2231 case bfd_mach_z80n << 12:
2232 case bfd_mach_z80full << 12:
2233 case bfd_mach_r800 << 12:
2234 case bfd_mach_gbz80 << 12:
2235 case bfd_mach_z180 << 12:
2236 case bfd_mach_ez80_z80 << 12:
2237 case bfd_mach_ez80_adl << 12:
2238 machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2239 break;
2240 default:
2241 return false;
2242 }
2243 break;
2244 #endif
2245 #ifdef Z8KMAGIC
2246 case Z8KMAGIC:
2247 arch = bfd_arch_z8k;
2248 switch (internal_f->f_flags & F_MACHMASK)
2249 {
2250 case F_Z8001:
2251 machine = bfd_mach_z8001;
2252 break;
2253 case F_Z8002:
2254 machine = bfd_mach_z8002;
2255 break;
2256 default:
2257 return false;
2258 }
2259 break;
2260 #endif
2261
2262 #ifdef RS6000COFF_C
2263 #ifdef XCOFF64
2264 case U64_TOCMAGIC:
2265 case U803XTOCMAGIC:
2266 #else
2267 case U802ROMAGIC:
2268 case U802WRMAGIC:
2269 case U802TOCMAGIC:
2270 #endif
2271 {
2272 int cputype;
2273
2274 if (xcoff_data (abfd)->cputype != -1)
2275 cputype = xcoff_data (abfd)->cputype & 0xff;
2276 else
2277 {
2278 /* We did not get a value from the a.out header. If the
2279 file has not been stripped, we may be able to get the
2280 architecture information from the first symbol, if it
2281 is a .file symbol. */
2282 if (obj_raw_syment_count (abfd) == 0)
2283 cputype = 0;
2284 else
2285 {
2286 bfd_byte *buf;
2287 struct internal_syment sym;
2288 bfd_size_type amt = bfd_coff_symesz (abfd);
2289
2290 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2291 return false;
2292 buf = _bfd_malloc_and_read (abfd, amt, amt);
2293 if (buf == NULL)
2294 return false;
2295 bfd_coff_swap_sym_in (abfd, buf, & sym);
2296 if (sym.n_sclass == C_FILE)
2297 cputype = sym.n_type & 0xff;
2298 else
2299 cputype = 0;
2300 free (buf);
2301 }
2302 }
2303
2304 /* FIXME: We don't handle all cases here. */
2305 switch (cputype)
2306 {
2307 default:
2308 case 0:
2309 arch = bfd_xcoff_architecture (abfd);
2310 machine = bfd_xcoff_machine (abfd);
2311 break;
2312
2313 case 1:
2314 arch = bfd_arch_powerpc;
2315 machine = bfd_mach_ppc_601;
2316 break;
2317 case 2: /* 64 bit PowerPC */
2318 arch = bfd_arch_powerpc;
2319 machine = bfd_mach_ppc_620;
2320 break;
2321 case 3:
2322 arch = bfd_arch_powerpc;
2323 machine = bfd_mach_ppc;
2324 break;
2325 case 4:
2326 arch = bfd_arch_rs6000;
2327 machine = bfd_mach_rs6k;
2328 break;
2329 }
2330 }
2331 break;
2332 #endif
2333
2334 #ifdef SH_ARCH_MAGIC_BIG
2335 case SH_ARCH_MAGIC_BIG:
2336 case SH_ARCH_MAGIC_LITTLE:
2337 #ifdef COFF_WITH_PE
2338 case SH_ARCH_MAGIC_WINCE:
2339 #endif
2340 arch = bfd_arch_sh;
2341 break;
2342 #endif
2343
2344 #ifdef MIPS_ARCH_MAGIC_WINCE
2345 case MIPS_ARCH_MAGIC_WINCE:
2346 arch = bfd_arch_mips;
2347 break;
2348 #endif
2349
2350 #ifdef SPARCMAGIC
2351 case SPARCMAGIC:
2352 #ifdef LYNXCOFFMAGIC
2353 case LYNXCOFFMAGIC:
2354 #endif
2355 arch = bfd_arch_sparc;
2356 break;
2357 #endif
2358
2359 #ifdef TIC30MAGIC
2360 case TIC30MAGIC:
2361 arch = bfd_arch_tic30;
2362 break;
2363 #endif
2364
2365 #ifdef TICOFF0MAGIC
2366 #ifdef TICOFF_TARGET_ARCH
2367 /* This TI COFF section should be used by all new TI COFF v0 targets. */
2368 case TICOFF0MAGIC:
2369 arch = TICOFF_TARGET_ARCH;
2370 machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2371 break;
2372 #endif
2373 #endif
2374
2375 #ifdef TICOFF1MAGIC
2376 /* This TI COFF section should be used by all new TI COFF v1/2 targets. */
2377 /* TI COFF1 and COFF2 use the target_id field to specify which arch. */
2378 case TICOFF1MAGIC:
2379 case TICOFF2MAGIC:
2380 switch (internal_f->f_target_id)
2381 {
2382 #ifdef TI_TARGET_ID
2383 case TI_TARGET_ID:
2384 arch = TICOFF_TARGET_ARCH;
2385 machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2386 break;
2387 #endif
2388 default:
2389 arch = bfd_arch_obscure;
2390 _bfd_error_handler
2391 (_("unrecognized TI COFF target id '0x%x'"),
2392 internal_f->f_target_id);
2393 break;
2394 }
2395 break;
2396 #endif
2397
2398 #ifdef MCOREMAGIC
2399 case MCOREMAGIC:
2400 arch = bfd_arch_mcore;
2401 break;
2402 #endif
2403
2404 default: /* Unreadable input file type. */
2405 arch = bfd_arch_obscure;
2406 break;
2407 }
2408
2409 bfd_default_set_arch_mach (abfd, arch, machine);
2410 return true;
2411 }
2412
2413 static bool
2414 symname_in_debug_hook (bfd *abfd ATTRIBUTE_UNUSED,
2415 struct internal_syment *sym ATTRIBUTE_UNUSED)
2416 {
2417 #ifdef SYMNAME_IN_DEBUG
2418 return SYMNAME_IN_DEBUG (sym) != 0;
2419 #else
2420 return false;
2421 #endif
2422 }
2423
2424 #ifdef RS6000COFF_C
2425
2426 #ifdef XCOFF64
2427 #define FORCE_SYMNAMES_IN_STRINGS
2428 #endif
2429
2430 /* Handle the csect auxent of a C_EXT, C_AIX_WEAKEXT or C_HIDEXT symbol. */
2431
2432 static bool
2433 coff_pointerize_aux_hook (bfd *abfd ATTRIBUTE_UNUSED,
2434 combined_entry_type *table_base,
2435 combined_entry_type *symbol,
2436 unsigned int indaux,
2437 combined_entry_type *aux)
2438 {
2439 BFD_ASSERT (symbol->is_sym);
2440 int n_sclass = symbol->u.syment.n_sclass;
2441
2442 if (CSECT_SYM_P (n_sclass)
2443 && indaux + 1 == symbol->u.syment.n_numaux)
2444 {
2445 BFD_ASSERT (! aux->is_sym);
2446 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD)
2447 {
2448 aux->u.auxent.x_csect.x_scnlen.p =
2449 table_base + aux->u.auxent.x_csect.x_scnlen.l;
2450 aux->fix_scnlen = 1;
2451 }
2452
2453 /* Return TRUE to indicate that the caller should not do any
2454 further work on this auxent. */
2455 return true;
2456 }
2457
2458 /* Return FALSE to indicate that this auxent should be handled by
2459 the caller. */
2460 return false;
2461 }
2462
2463 #else
2464 #define coff_pointerize_aux_hook 0
2465 #endif /* ! RS6000COFF_C */
2466
2467 /* Print an aux entry. This returns TRUE if it has printed it. */
2468
2469 static bool
2470 coff_print_aux (bfd *abfd ATTRIBUTE_UNUSED,
2471 FILE *file ATTRIBUTE_UNUSED,
2472 combined_entry_type *table_base ATTRIBUTE_UNUSED,
2473 combined_entry_type *symbol ATTRIBUTE_UNUSED,
2474 combined_entry_type *aux ATTRIBUTE_UNUSED,
2475 unsigned int indaux ATTRIBUTE_UNUSED)
2476 {
2477 BFD_ASSERT (symbol->is_sym);
2478 BFD_ASSERT (! aux->is_sym);
2479 #ifdef RS6000COFF_C
2480 if (CSECT_SYM_P (symbol->u.syment.n_sclass)
2481 && indaux + 1 == symbol->u.syment.n_numaux)
2482 {
2483 /* This is a csect entry. */
2484 fprintf (file, "AUX ");
2485 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) != XTY_LD)
2486 {
2487 BFD_ASSERT (! aux->fix_scnlen);
2488 fprintf (file, "val %5" BFD_VMA_FMT "d",
2489 aux->u.auxent.x_csect.x_scnlen.l);
2490 }
2491 else
2492 {
2493 fprintf (file, "indx ");
2494 if (! aux->fix_scnlen)
2495 fprintf (file, "%4" BFD_VMA_FMT "d",
2496 aux->u.auxent.x_csect.x_scnlen.l);
2497 else
2498 fprintf (file, "%4ld",
2499 (long) (aux->u.auxent.x_csect.x_scnlen.p - table_base));
2500 }
2501 fprintf (file,
2502 " prmhsh %ld snhsh %u typ %d algn %d clss %u stb %ld snstb %u",
2503 aux->u.auxent.x_csect.x_parmhash,
2504 (unsigned int) aux->u.auxent.x_csect.x_snhash,
2505 SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp),
2506 SMTYP_ALIGN (aux->u.auxent.x_csect.x_smtyp),
2507 (unsigned int) aux->u.auxent.x_csect.x_smclas,
2508 aux->u.auxent.x_csect.x_stab,
2509 (unsigned int) aux->u.auxent.x_csect.x_snstab);
2510 return true;
2511 }
2512 #endif
2513
2514 /* Return FALSE to indicate that no special action was taken. */
2515 return false;
2516 }
2517
2518 /*
2519 SUBSUBSECTION
2520 Writing relocations
2521
2522 To write relocations, the back end steps though the
2523 canonical relocation table and create an
2524 @code{internal_reloc}. The symbol index to use is removed from
2525 the @code{offset} field in the symbol table supplied. The
2526 address comes directly from the sum of the section base
2527 address and the relocation offset; the type is dug directly
2528 from the howto field. Then the @code{internal_reloc} is
2529 swapped into the shape of an @code{external_reloc} and written
2530 out to disk.
2531
2532 */
2533
2534 #ifdef TARG_AUX
2535
2536
2537 /* AUX's ld wants relocations to be sorted. */
2538 static int
2539 compare_arelent_ptr (const void * x, const void * y)
2540 {
2541 const arelent **a = (const arelent **) x;
2542 const arelent **b = (const arelent **) y;
2543 bfd_size_type aadr = (*a)->address;
2544 bfd_size_type badr = (*b)->address;
2545
2546 return (aadr < badr ? -1 : badr < aadr ? 1 : 0);
2547 }
2548
2549 #endif /* TARG_AUX */
2550
2551 static bool
2552 coff_write_relocs (bfd * abfd, int first_undef)
2553 {
2554 asection *s;
2555
2556 for (s = abfd->sections; s != NULL; s = s->next)
2557 {
2558 unsigned int i;
2559 struct external_reloc dst;
2560 arelent **p;
2561
2562 #ifndef TARG_AUX
2563 p = s->orelocation;
2564 #else
2565 {
2566 /* Sort relocations before we write them out. */
2567 bfd_size_type amt;
2568
2569 amt = s->reloc_count;
2570 amt *= sizeof (arelent *);
2571 p = bfd_malloc (amt);
2572 if (p == NULL)
2573 {
2574 if (s->reloc_count > 0)
2575 return false;
2576 }
2577 else
2578 {
2579 memcpy (p, s->orelocation, (size_t) amt);
2580 qsort (p, s->reloc_count, sizeof (arelent *), compare_arelent_ptr);
2581 }
2582 }
2583 #endif
2584
2585 if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0)
2586 return false;
2587
2588 #ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
2589 if ((obj_pe (abfd) || obj_go32 (abfd)) && s->reloc_count >= 0xffff)
2590 {
2591 /* Encode real count here as first reloc. */
2592 struct internal_reloc n;
2593
2594 memset (& n, 0, sizeof (n));
2595 /* Add one to count *this* reloc (grr). */
2596 n.r_vaddr = s->reloc_count + 1;
2597 coff_swap_reloc_out (abfd, &n, &dst);
2598 if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
2599 abfd) != bfd_coff_relsz (abfd))
2600 return false;
2601 }
2602 #endif
2603
2604 for (i = 0; i < s->reloc_count; i++)
2605 {
2606 struct internal_reloc n;
2607 arelent *q = p[i];
2608
2609 memset (& n, 0, sizeof (n));
2610
2611 /* Now we've renumbered the symbols we know where the
2612 undefined symbols live in the table. Check the reloc
2613 entries for symbols who's output bfd isn't the right one.
2614 This is because the symbol was undefined (which means
2615 that all the pointers are never made to point to the same
2616 place). This is a bad thing,'cause the symbols attached
2617 to the output bfd are indexed, so that the relocation
2618 entries know which symbol index they point to. So we
2619 have to look up the output symbol here. */
2620
2621 if (q->sym_ptr_ptr[0] != NULL && q->sym_ptr_ptr[0]->the_bfd != abfd)
2622 {
2623 int j;
2624 const char *sname = q->sym_ptr_ptr[0]->name;
2625 asymbol **outsyms = abfd->outsymbols;
2626
2627 for (j = first_undef; outsyms[j]; j++)
2628 {
2629 const char *intable = outsyms[j]->name;
2630
2631 if (strcmp (intable, sname) == 0)
2632 {
2633 /* Got a hit, so repoint the reloc. */
2634 q->sym_ptr_ptr = outsyms + j;
2635 break;
2636 }
2637 }
2638 }
2639
2640 n.r_vaddr = q->address + s->vma;
2641
2642 #ifdef R_IHCONST
2643 /* The 29k const/consth reloc pair is a real kludge. The consth
2644 part doesn't have a symbol; it has an offset. So rebuilt
2645 that here. */
2646 if (q->howto->type == R_IHCONST)
2647 n.r_symndx = q->addend;
2648 else
2649 #endif
2650 if (q->sym_ptr_ptr && q->sym_ptr_ptr[0] != NULL)
2651 {
2652 #ifdef SECTION_RELATIVE_ABSOLUTE_SYMBOL_P
2653 if (SECTION_RELATIVE_ABSOLUTE_SYMBOL_P (q, s))
2654 #else
2655 if ((*q->sym_ptr_ptr)->section == bfd_abs_section_ptr
2656 && ((*q->sym_ptr_ptr)->flags & BSF_SECTION_SYM) != 0)
2657 #endif
2658 /* This is a relocation relative to the absolute symbol. */
2659 n.r_symndx = -1;
2660 else
2661 {
2662 n.r_symndx = get_index ((*(q->sym_ptr_ptr)));
2663 /* Check to see if the symbol reloc points to a symbol
2664 we don't have in our symbol table. */
2665 if (n.r_symndx > obj_conv_table_size (abfd))
2666 {
2667 bfd_set_error (bfd_error_bad_value);
2668 /* xgettext:c-format */
2669 _bfd_error_handler (_("%pB: reloc against a non-existent"
2670 " symbol index: %ld"),
2671 abfd, n.r_symndx);
2672 return false;
2673 }
2674 }
2675 }
2676
2677 #ifdef SWAP_OUT_RELOC_OFFSET
2678 n.r_offset = q->addend;
2679 #endif
2680
2681 #ifdef SELECT_RELOC
2682 /* Work out reloc type from what is required. */
2683 SELECT_RELOC (n, q->howto);
2684 #else
2685 n.r_type = q->howto->type;
2686 #endif
2687 coff_swap_reloc_out (abfd, &n, &dst);
2688
2689 if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
2690 abfd) != bfd_coff_relsz (abfd))
2691 return false;
2692 }
2693
2694 #ifdef TARG_AUX
2695 free (p);
2696 #endif
2697 }
2698
2699 return true;
2700 }
2701
2702 /* Set flags and magic number of a coff file from architecture and machine
2703 type. Result is TRUE if we can represent the arch&type, FALSE if not. */
2704
2705 static bool
2706 coff_set_flags (bfd * abfd,
2707 unsigned int *magicp ATTRIBUTE_UNUSED,
2708 unsigned short *flagsp ATTRIBUTE_UNUSED)
2709 {
2710 switch (bfd_get_arch (abfd))
2711 {
2712 #ifdef Z80MAGIC
2713 case bfd_arch_z80:
2714 *magicp = Z80MAGIC;
2715 switch (bfd_get_mach (abfd))
2716 {
2717 case bfd_mach_z80strict:
2718 case bfd_mach_z80:
2719 case bfd_mach_z80n:
2720 case bfd_mach_z80full:
2721 case bfd_mach_r800:
2722 case bfd_mach_gbz80:
2723 case bfd_mach_z180:
2724 case bfd_mach_ez80_z80:
2725 case bfd_mach_ez80_adl:
2726 *flagsp = bfd_get_mach (abfd) << 12;
2727 break;
2728 default:
2729 return false;
2730 }
2731 return true;
2732 #endif
2733
2734 #ifdef Z8KMAGIC
2735 case bfd_arch_z8k:
2736 *magicp = Z8KMAGIC;
2737
2738 switch (bfd_get_mach (abfd))
2739 {
2740 case bfd_mach_z8001: *flagsp = F_Z8001; break;
2741 case bfd_mach_z8002: *flagsp = F_Z8002; break;
2742 default: return false;
2743 }
2744 return true;
2745 #endif
2746
2747 #ifdef TIC30MAGIC
2748 case bfd_arch_tic30:
2749 *magicp = TIC30MAGIC;
2750 return true;
2751 #endif
2752
2753 #ifdef TICOFF_DEFAULT_MAGIC
2754 case TICOFF_TARGET_ARCH:
2755 /* If there's no indication of which version we want, use the default. */
2756 if (!abfd->xvec )
2757 *magicp = TICOFF_DEFAULT_MAGIC;
2758 else
2759 {
2760 /* We may want to output in a different COFF version. */
2761 switch (abfd->xvec->name[4])
2762 {
2763 case '0':
2764 *magicp = TICOFF0MAGIC;
2765 break;
2766 case '1':
2767 *magicp = TICOFF1MAGIC;
2768 break;
2769 case '2':
2770 *magicp = TICOFF2MAGIC;
2771 break;
2772 default:
2773 return false;
2774 }
2775 }
2776 TICOFF_TARGET_MACHINE_SET (flagsp, bfd_get_mach (abfd));
2777 return true;
2778 #endif
2779
2780 #ifdef ARMMAGIC
2781 case bfd_arch_arm:
2782 #ifdef ARM_WINCE
2783 * magicp = ARMPEMAGIC;
2784 #else
2785 * magicp = ARMMAGIC;
2786 #endif
2787 * flagsp = 0;
2788 if (APCS_SET (abfd))
2789 {
2790 if (APCS_26_FLAG (abfd))
2791 * flagsp |= F_APCS26;
2792
2793 if (APCS_FLOAT_FLAG (abfd))
2794 * flagsp |= F_APCS_FLOAT;
2795
2796 if (PIC_FLAG (abfd))
2797 * flagsp |= F_PIC;
2798 }
2799 if (INTERWORK_SET (abfd) && INTERWORK_FLAG (abfd))
2800 * flagsp |= F_INTERWORK;
2801 switch (bfd_get_mach (abfd))
2802 {
2803 case bfd_mach_arm_2: * flagsp |= F_ARM_2; break;
2804 case bfd_mach_arm_2a: * flagsp |= F_ARM_2a; break;
2805 case bfd_mach_arm_3: * flagsp |= F_ARM_3; break;
2806 case bfd_mach_arm_3M: * flagsp |= F_ARM_3M; break;
2807 case bfd_mach_arm_4: * flagsp |= F_ARM_4; break;
2808 case bfd_mach_arm_4T: * flagsp |= F_ARM_4T; break;
2809 case bfd_mach_arm_5: * flagsp |= F_ARM_5; break;
2810 /* FIXME: we do not have F_ARM vaues greater than F_ARM_5.
2811 See also the comment in coff_set_arch_mach_hook(). */
2812 case bfd_mach_arm_5T: * flagsp |= F_ARM_5; break;
2813 case bfd_mach_arm_5TE: * flagsp |= F_ARM_5; break;
2814 case bfd_mach_arm_XScale: * flagsp |= F_ARM_5; break;
2815 }
2816 return true;
2817 #endif
2818
2819 #if defined(I386MAGIC) || defined(AMD64MAGIC)
2820 case bfd_arch_i386:
2821 #if defined(I386MAGIC)
2822 *magicp = I386MAGIC;
2823 #endif
2824 #if defined LYNXOS
2825 /* Just overwrite the usual value if we're doing Lynx. */
2826 *magicp = LYNXCOFFMAGIC;
2827 #endif
2828 #if defined AMD64MAGIC
2829 *magicp = AMD64MAGIC;
2830 #endif
2831 return true;
2832 #endif
2833
2834 #ifdef IA64MAGIC
2835 case bfd_arch_ia64:
2836 *magicp = IA64MAGIC;
2837 return true;
2838 #endif
2839
2840 #ifdef SH_ARCH_MAGIC_BIG
2841 case bfd_arch_sh:
2842 #ifdef COFF_IMAGE_WITH_PE
2843 *magicp = SH_ARCH_MAGIC_WINCE;
2844 #else
2845 if (bfd_big_endian (abfd))
2846 *magicp = SH_ARCH_MAGIC_BIG;
2847 else
2848 *magicp = SH_ARCH_MAGIC_LITTLE;
2849 #endif
2850 return true;
2851 #endif
2852
2853 #ifdef MIPS_ARCH_MAGIC_WINCE
2854 case bfd_arch_mips:
2855 *magicp = MIPS_ARCH_MAGIC_WINCE;
2856 return true;
2857 #endif
2858
2859 #ifdef SPARCMAGIC
2860 case bfd_arch_sparc:
2861 *magicp = SPARCMAGIC;
2862 #ifdef LYNXOS
2863 /* Just overwrite the usual value if we're doing Lynx. */
2864 *magicp = LYNXCOFFMAGIC;
2865 #endif
2866 return true;
2867 #endif
2868
2869 #ifdef RS6000COFF_C
2870 case bfd_arch_rs6000:
2871 case bfd_arch_powerpc:
2872 BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_xcoff_flavour);
2873 *magicp = bfd_xcoff_magic_number (abfd);
2874 return true;
2875 #endif
2876
2877 #ifdef MCOREMAGIC
2878 case bfd_arch_mcore:
2879 * magicp = MCOREMAGIC;
2880 return true;
2881 #endif
2882
2883 default: /* Unknown architecture. */
2884 break;
2885 }
2886
2887 return false;
2888 }
2889
2890 static bool
2891 coff_set_arch_mach (bfd * abfd,
2892 enum bfd_architecture arch,
2893 unsigned long machine)
2894 {
2895 unsigned dummy1;
2896 unsigned short dummy2;
2897
2898 if (! bfd_default_set_arch_mach (abfd, arch, machine))
2899 return false;
2900
2901 if (arch != bfd_arch_unknown
2902 && ! coff_set_flags (abfd, &dummy1, &dummy2))
2903 return false; /* We can't represent this type. */
2904
2905 return true; /* We're easy... */
2906 }
2907
2908 #ifdef COFF_IMAGE_WITH_PE
2909
2910 /* This is used to sort sections by VMA, as required by PE image
2911 files. */
2912
2913 static int
2914 sort_by_secaddr (const void * arg1, const void * arg2)
2915 {
2916 const asection *a = *(const asection **) arg1;
2917 const asection *b = *(const asection **) arg2;
2918
2919 if (a->vma < b->vma)
2920 return -1;
2921 else if (a->vma > b->vma)
2922 return 1;
2923
2924 return 0;
2925 }
2926
2927 #endif /* COFF_IMAGE_WITH_PE */
2928
2929 /* Calculate the file position for each section. */
2930
2931 #define ALIGN_SECTIONS_IN_FILE
2932 #ifdef TICOFF
2933 #undef ALIGN_SECTIONS_IN_FILE
2934 #endif
2935
2936 static bool
2937 coff_compute_section_file_positions (bfd * abfd)
2938 {
2939 asection *current;
2940 file_ptr sofar = bfd_coff_filhsz (abfd);
2941 bool align_adjust;
2942 unsigned int target_index;
2943 #ifdef ALIGN_SECTIONS_IN_FILE
2944 asection *previous = NULL;
2945 file_ptr old_sofar;
2946 #endif
2947
2948 #ifdef COFF_IMAGE_WITH_PE
2949 int page_size;
2950
2951 if (coff_data (abfd)->link_info
2952 || (pe_data (abfd) && pe_data (abfd)->pe_opthdr.FileAlignment))
2953 {
2954 page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
2955
2956 /* If no file alignment has been set, default to one.
2957 This repairs 'ld -r' for arm-wince-pe target. */
2958 if (page_size == 0)
2959 page_size = 1;
2960
2961 /* PR 17512: file: 0ac816d3. */
2962 if (page_size < 0)
2963 {
2964 bfd_set_error (bfd_error_file_too_big);
2965 _bfd_error_handler
2966 /* xgettext:c-format */
2967 (_("%pB: page size is too large (0x%x)"), abfd, page_size);
2968 return false;
2969 }
2970 }
2971 else
2972 page_size = PE_DEF_FILE_ALIGNMENT;
2973 #else
2974 #ifdef COFF_PAGE_SIZE
2975 int page_size = COFF_PAGE_SIZE;
2976 #endif
2977 #endif
2978
2979 #ifdef RS6000COFF_C
2980 /* On XCOFF, if we have symbols, set up the .debug section. */
2981 if (bfd_get_symcount (abfd) > 0)
2982 {
2983 bfd_size_type sz;
2984 bfd_size_type i, symcount;
2985 asymbol **symp;
2986
2987 sz = 0;
2988 symcount = bfd_get_symcount (abfd);
2989 for (symp = abfd->outsymbols, i = 0; i < symcount; symp++, i++)
2990 {
2991 coff_symbol_type *cf;
2992
2993 cf = coff_symbol_from (*symp);
2994 if (cf != NULL
2995 && cf->native != NULL
2996 && cf->native->is_sym
2997 && SYMNAME_IN_DEBUG (&cf->native->u.syment))
2998 {
2999 size_t len;
3000
3001 len = strlen (bfd_asymbol_name (*symp));
3002 if (len > SYMNMLEN || bfd_coff_force_symnames_in_strings (abfd))
3003 sz += len + 1 + bfd_coff_debug_string_prefix_length (abfd);
3004 }
3005 }
3006 if (sz > 0)
3007 {
3008 asection *dsec;
3009
3010 dsec = bfd_make_section_old_way (abfd, DOT_DEBUG);
3011 if (dsec == NULL)
3012 abort ();
3013 dsec->size = sz;
3014 dsec->flags |= SEC_HAS_CONTENTS;
3015 }
3016 }
3017 #endif
3018
3019 if (bfd_get_start_address (abfd))
3020 /* A start address may have been added to the original file. In this
3021 case it will need an optional header to record it. */
3022 abfd->flags |= EXEC_P;
3023
3024 if (abfd->flags & EXEC_P)
3025 sofar += bfd_coff_aoutsz (abfd);
3026 #ifdef RS6000COFF_C
3027 else if (xcoff_data (abfd)->full_aouthdr)
3028 sofar += bfd_coff_aoutsz (abfd);
3029 else
3030 sofar += SMALL_AOUTSZ;
3031 #endif
3032
3033 sofar += abfd->section_count * bfd_coff_scnhsz (abfd);
3034
3035 #ifdef RS6000COFF_C
3036 /* XCOFF handles overflows in the reloc and line number count fields
3037 by allocating a new section header to hold the correct counts. */
3038 for (current = abfd->sections; current != NULL; current = current->next)
3039 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3040 sofar += bfd_coff_scnhsz (abfd);
3041 #endif
3042
3043 #ifdef COFF_IMAGE_WITH_PE
3044 {
3045 /* PE requires the sections to be in memory order when listed in
3046 the section headers. It also does not like empty loadable
3047 sections. The sections apparently do not have to be in the
3048 right order in the image file itself, but we do need to get the
3049 target_index values right. */
3050
3051 unsigned int count;
3052 asection **section_list;
3053 unsigned int i;
3054 bfd_size_type amt;
3055
3056 #ifdef COFF_PAGE_SIZE
3057 /* Clear D_PAGED if section alignment is smaller than
3058 COFF_PAGE_SIZE. */
3059 if (pe_data (abfd)->pe_opthdr.SectionAlignment < COFF_PAGE_SIZE)
3060 abfd->flags &= ~D_PAGED;
3061 #endif
3062
3063 count = 0;
3064 for (current = abfd->sections; current != NULL; current = current->next)
3065 ++count;
3066
3067 /* We allocate an extra cell to simplify the final loop. */
3068 amt = sizeof (struct asection *) * (count + 1);
3069 section_list = (asection **) bfd_malloc (amt);
3070 if (section_list == NULL)
3071 return false;
3072
3073 i = 0;
3074 for (current = abfd->sections; current != NULL; current = current->next)
3075 {
3076 section_list[i] = current;
3077 ++i;
3078 }
3079 section_list[i] = NULL;
3080
3081 qsort (section_list, count, sizeof (asection *), sort_by_secaddr);
3082
3083 /* Rethread the linked list into sorted order; at the same time,
3084 assign target_index values. */
3085 target_index = 1;
3086 abfd->sections = NULL;
3087 abfd->section_last = NULL;
3088 for (i = 0; i < count; i++)
3089 {
3090 current = section_list[i];
3091 bfd_section_list_append (abfd, current);
3092
3093 /* Later, if the section has zero size, we'll be throwing it
3094 away, so we don't want to number it now. Note that having
3095 a zero size and having real contents are different
3096 concepts: .bss has no contents, but (usually) non-zero
3097 size. */
3098 if (current->size == 0)
3099 {
3100 /* Discard. However, it still might have (valid) symbols
3101 in it, so arbitrarily set it to section 1 (indexing is
3102 1-based here; usually .text). __end__ and other
3103 contents of .endsection really have this happen.
3104 FIXME: This seems somewhat dubious. */
3105 current->target_index = 1;
3106 }
3107 else
3108 current->target_index = target_index++;
3109 }
3110
3111 free (section_list);
3112 }
3113 #else /* ! COFF_IMAGE_WITH_PE */
3114 {
3115 /* Set the target_index field. */
3116 target_index = 1;
3117 for (current = abfd->sections; current != NULL; current = current->next)
3118 current->target_index = target_index++;
3119 }
3120 #endif /* ! COFF_IMAGE_WITH_PE */
3121
3122 if (target_index >= bfd_coff_max_nscns (abfd))
3123 {
3124 bfd_set_error (bfd_error_file_too_big);
3125 _bfd_error_handler
3126 /* xgettext:c-format */
3127 (_("%pB: too many sections (%d)"), abfd, target_index);
3128 return false;
3129 }
3130
3131 align_adjust = false;
3132 for (current = abfd->sections;
3133 current != NULL;
3134 current = current->next)
3135 {
3136 #ifdef COFF_IMAGE_WITH_PE
3137 /* With PE we have to pad each section to be a multiple of its
3138 page size too, and remember both sizes. */
3139 if (coff_section_data (abfd, current) == NULL)
3140 {
3141 size_t amt = sizeof (struct coff_section_tdata);
3142
3143 current->used_by_bfd = bfd_zalloc (abfd, amt);
3144 if (current->used_by_bfd == NULL)
3145 return false;
3146 }
3147 if (pei_section_data (abfd, current) == NULL)
3148 {
3149 size_t amt = sizeof (struct pei_section_tdata);
3150
3151 coff_section_data (abfd, current)->tdata = bfd_zalloc (abfd, amt);
3152 if (coff_section_data (abfd, current)->tdata == NULL)
3153 return false;
3154 }
3155 if (pei_section_data (abfd, current)->virt_size == 0)
3156 pei_section_data (abfd, current)->virt_size = current->size;
3157 #endif
3158
3159 /* Only deal with sections which have contents. */
3160 if (!(current->flags & SEC_HAS_CONTENTS))
3161 continue;
3162
3163 current->rawsize = current->size;
3164
3165 #ifdef COFF_IMAGE_WITH_PE
3166 /* Make sure we skip empty sections in a PE image. */
3167 if (current->size == 0)
3168 continue;
3169 #endif
3170
3171 /* Align the sections in the file to the same boundary on
3172 which they are aligned in virtual memory. */
3173 #ifdef ALIGN_SECTIONS_IN_FILE
3174 if ((abfd->flags & EXEC_P) != 0)
3175 {
3176 /* Make sure this section is aligned on the right boundary - by
3177 padding the previous section up if necessary. */
3178 old_sofar = sofar;
3179
3180 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
3181
3182 #ifdef RS6000COFF_C
3183 /* Make sure the file offset and the vma of .text/.data are at the
3184 same page offset, so that the file can be mmap'ed without being
3185 relocated. Failing that, AIX is able to load and execute the
3186 program, but it will be silently relocated (possible as
3187 executables are PIE). But the relocation is slightly costly and
3188 complexify the use of addr2line or gdb. So better to avoid it,
3189 like does the native linker. Usually gnu ld makes sure that
3190 the vma of .text is the file offset so this issue shouldn't
3191 appear unless you are stripping such an executable.
3192
3193 AIX loader checks the text section alignment of (vma - filepos),
3194 and the native linker doesn't try to align the text sections.
3195 For example:
3196
3197 0 .text 000054cc 10000128 10000128 00000128 2**5
3198 CONTENTS, ALLOC, LOAD, CODE
3199
3200 Don't perform the above tweak if the previous one is .tdata,
3201 as it will increase the memory allocated for every threads
3202 created and not just improve performances with gdb.
3203 */
3204
3205 if ((!strcmp (current->name, _TEXT)
3206 || !strcmp (current->name, _DATA))
3207 && (previous == NULL || strcmp(previous->name, _TDATA)))
3208 {
3209 bfd_vma align = 4096;
3210 bfd_vma sofar_off = sofar % align;
3211 bfd_vma vma_off = current->vma % align;
3212
3213 if (vma_off > sofar_off)
3214 sofar += vma_off - sofar_off;
3215 else if (vma_off < sofar_off)
3216 sofar += align + vma_off - sofar_off;
3217 }
3218 #endif
3219 if (previous != NULL)
3220 previous->size += sofar - old_sofar;
3221 }
3222
3223 #endif
3224
3225 /* In demand paged files the low order bits of the file offset
3226 must match the low order bits of the virtual address. */
3227 #ifdef COFF_PAGE_SIZE
3228 if ((abfd->flags & D_PAGED) != 0
3229 && (current->flags & SEC_ALLOC) != 0)
3230 sofar += (current->vma - (bfd_vma) sofar) % page_size;
3231 #endif
3232 current->filepos = sofar;
3233
3234 #ifdef COFF_IMAGE_WITH_PE
3235 /* Set the padded size. */
3236 current->size = (current->size + page_size - 1) & -page_size;
3237 #endif
3238
3239 sofar += current->size;
3240
3241 #ifdef ALIGN_SECTIONS_IN_FILE
3242 /* Make sure that this section is of the right size too. */
3243 if ((abfd->flags & EXEC_P) == 0)
3244 {
3245 bfd_size_type old_size;
3246
3247 old_size = current->size;
3248 current->size = BFD_ALIGN (current->size,
3249 1 << current->alignment_power);
3250 align_adjust = current->size != old_size;
3251 sofar += current->size - old_size;
3252 }
3253 else
3254 {
3255 old_sofar = sofar;
3256 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
3257 align_adjust = sofar != old_sofar;
3258 current->size += sofar - old_sofar;
3259 }
3260 #endif
3261
3262 #ifdef COFF_IMAGE_WITH_PE
3263 /* For PE we need to make sure we pad out to the aligned
3264 size, in case the caller only writes out data to the
3265 unaligned size. */
3266 if (pei_section_data (abfd, current)->virt_size < current->size)
3267 align_adjust = true;
3268 #endif
3269
3270 #ifdef _LIB
3271 /* Force .lib sections to start at zero. The vma is then
3272 incremented in coff_set_section_contents. This is right for
3273 SVR3.2. */
3274 if (strcmp (current->name, _LIB) == 0)
3275 bfd_set_section_vma (current, 0);
3276 #endif
3277
3278 #ifdef ALIGN_SECTIONS_IN_FILE
3279 previous = current;
3280 #endif
3281 }
3282
3283 /* It is now safe to write to the output file. If we needed an
3284 alignment adjustment for the last section, then make sure that
3285 there is a byte at offset sofar. If there are no symbols and no
3286 relocs, then nothing follows the last section. If we don't force
3287 the last byte out, then the file may appear to be truncated. */
3288 if (align_adjust)
3289 {
3290 bfd_byte b;
3291
3292 b = 0;
3293 if (bfd_seek (abfd, sofar - 1, SEEK_SET) != 0
3294 || bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
3295 return false;
3296 }
3297
3298 /* Make sure the relocations are aligned. We don't need to make
3299 sure that this byte exists, because it will only matter if there
3300 really are relocs. */
3301 sofar = BFD_ALIGN (sofar, 1 << COFF_DEFAULT_SECTION_ALIGNMENT_POWER);
3302
3303 obj_relocbase (abfd) = sofar;
3304 abfd->output_has_begun = true;
3305
3306 return true;
3307 }
3308
3309 #ifdef COFF_IMAGE_WITH_PE
3310
3311 static bool
3312 coff_read_word (bfd *abfd, unsigned int *value, unsigned int *pelength)
3313 {
3314 unsigned char b[2];
3315 int status;
3316
3317 status = bfd_bread (b, (bfd_size_type) 2, abfd);
3318 if (status < 1)
3319 {
3320 *value = 0;
3321 return false;
3322 }
3323
3324 if (status == 1)
3325 *value = (unsigned int) b[0];
3326 else
3327 *value = (unsigned int) (b[0] + (b[1] << 8));
3328
3329 *pelength += status;
3330
3331 return true;
3332 }
3333
3334 static unsigned int
3335 coff_compute_checksum (bfd *abfd, unsigned int *pelength)
3336 {
3337 bool more_data;
3338 file_ptr filepos;
3339 unsigned int value;
3340 unsigned int total;
3341
3342 total = 0;
3343 *pelength = 0;
3344 filepos = (file_ptr) 0;
3345
3346 do
3347 {
3348 if (bfd_seek (abfd, filepos, SEEK_SET) != 0)
3349 return 0;
3350
3351 more_data = coff_read_word (abfd, &value, pelength);
3352 total += value;
3353 total = 0xffff & (total + (total >> 0x10));
3354 filepos += 2;
3355 }
3356 while (more_data);
3357
3358 return (0xffff & (total + (total >> 0x10)));
3359 }
3360
3361 static bool
3362 coff_apply_checksum (bfd *abfd)
3363 {
3364 unsigned int computed;
3365 unsigned int checksum = 0;
3366 unsigned int peheader;
3367 unsigned int pelength;
3368
3369 if (bfd_seek (abfd, 0x3c, SEEK_SET) != 0)
3370 return false;
3371
3372 if (!coff_read_word (abfd, &peheader, &pelength))
3373 return false;
3374
3375 if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
3376 return false;
3377
3378 checksum = 0;
3379 bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
3380
3381 if (bfd_seek (abfd, peheader, SEEK_SET) != 0)
3382 return false;
3383
3384 computed = coff_compute_checksum (abfd, &pelength);
3385
3386 checksum = computed + pelength;
3387
3388 if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
3389 return false;
3390
3391 bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
3392
3393 return true;
3394 }
3395
3396 #endif /* COFF_IMAGE_WITH_PE */
3397
3398 static bool
3399 coff_write_object_contents (bfd * abfd)
3400 {
3401 asection *current;
3402 bool hasrelocs = false;
3403 bool haslinno = false;
3404 #ifdef COFF_IMAGE_WITH_PE
3405 bool hasdebug = false;
3406 #endif
3407 file_ptr scn_base;
3408 file_ptr reloc_base;
3409 file_ptr lineno_base;
3410 file_ptr sym_base;
3411 unsigned long reloc_size = 0, reloc_count = 0;
3412 unsigned long lnno_size = 0;
3413 bool long_section_names;
3414 asection *text_sec = NULL;
3415 asection *data_sec = NULL;
3416 asection *bss_sec = NULL;
3417 #ifdef RS6000COFF_C
3418 asection *tdata_sec = NULL;
3419 asection *tbss_sec = NULL;
3420 #endif
3421 struct internal_filehdr internal_f;
3422 struct internal_aouthdr internal_a;
3423 #ifdef COFF_LONG_SECTION_NAMES
3424 size_t string_size = STRING_SIZE_SIZE;
3425 #endif
3426
3427 bfd_set_error (bfd_error_system_call);
3428
3429 /* Make a pass through the symbol table to count line number entries and
3430 put them into the correct asections. */
3431 lnno_size = coff_count_linenumbers (abfd) * bfd_coff_linesz (abfd);
3432
3433 if (! abfd->output_has_begun)
3434 {
3435 if (! coff_compute_section_file_positions (abfd))
3436 return false;
3437 }
3438
3439 reloc_base = obj_relocbase (abfd);
3440
3441 /* Work out the size of the reloc and linno areas. */
3442
3443 for (current = abfd->sections; current != NULL; current =
3444 current->next)
3445 {
3446 #ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
3447 /* We store the actual reloc count in the first reloc's addr. */
3448 if ((obj_pe (abfd) || obj_go32 (abfd)) && current->reloc_count >= 0xffff)
3449 reloc_count ++;
3450 #endif
3451 reloc_count += current->reloc_count;
3452 }
3453
3454 reloc_size = reloc_count * bfd_coff_relsz (abfd);
3455
3456 lineno_base = reloc_base + reloc_size;
3457 sym_base = lineno_base + lnno_size;
3458
3459 /* Indicate in each section->line_filepos its actual file address. */
3460 for (current = abfd->sections; current != NULL; current =
3461 current->next)
3462 {
3463 if (current->lineno_count)
3464 {
3465 current->line_filepos = lineno_base;
3466 current->moving_line_filepos = lineno_base;
3467 lineno_base += current->lineno_count * bfd_coff_linesz (abfd);
3468 }
3469 else
3470 current->line_filepos = 0;
3471
3472 if (current->reloc_count)
3473 {
3474 current->rel_filepos = reloc_base;
3475 reloc_base += current->reloc_count * bfd_coff_relsz (abfd);
3476 #ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
3477 /* Extra reloc to hold real count. */
3478 if ((obj_pe (abfd) || obj_go32 (abfd)) && current->reloc_count >= 0xffff)
3479 reloc_base += bfd_coff_relsz (abfd);
3480 #endif
3481 }
3482 else
3483 current->rel_filepos = 0;
3484 }
3485
3486 /* Write section headers to the file. */
3487 internal_f.f_nscns = 0;
3488
3489 if ((abfd->flags & EXEC_P) != 0)
3490 scn_base = bfd_coff_filhsz (abfd) + bfd_coff_aoutsz (abfd);
3491 else
3492 {
3493 scn_base = bfd_coff_filhsz (abfd);
3494 #ifdef RS6000COFF_C
3495 #ifndef XCOFF64
3496 if (xcoff_data (abfd)->full_aouthdr)
3497 scn_base += bfd_coff_aoutsz (abfd);
3498 else
3499 scn_base += SMALL_AOUTSZ;
3500 #endif
3501 #endif
3502 }
3503
3504 if (bfd_seek (abfd, scn_base, SEEK_SET) != 0)
3505 return false;
3506
3507 long_section_names = false;
3508 for (current = abfd->sections;
3509 current != NULL;
3510 current = current->next)
3511 {
3512 struct internal_scnhdr section;
3513 #ifdef COFF_IMAGE_WITH_PE
3514 bool is_reloc_section = false;
3515
3516 if (strcmp (current->name, DOT_RELOC) == 0)
3517 {
3518 is_reloc_section = true;
3519 hasrelocs = true;
3520 pe_data (abfd)->has_reloc_section = 1;
3521 }
3522 #endif
3523
3524 internal_f.f_nscns++;
3525
3526 strncpy (section.s_name, current->name, SCNNMLEN);
3527
3528 #ifdef COFF_LONG_SECTION_NAMES
3529 /* Handle long section names as in PE. This must be compatible
3530 with the code in coff_write_symbols and _bfd_coff_final_link. */
3531 if (bfd_coff_long_section_names (abfd))
3532 {
3533 size_t len;
3534
3535 len = strlen (current->name);
3536 if (len > SCNNMLEN)
3537 {
3538 /* The s_name field is defined to be NUL-padded but need not be
3539 NUL-terminated. We use a temporary buffer so that we can still
3540 sprintf all eight chars without splatting a terminating NUL
3541 over the first byte of the following member (s_paddr). */
3542 /* PR 21096: The +20 is to stop a bogus warning from gcc7 about
3543 a possible buffer overflow. */
3544 char s_name_buf[SCNNMLEN + 1 + 20];
3545
3546 /* An inherent limitation of the /nnnnnnn notation used to indicate
3547 the offset of the long name in the string table is that we
3548 cannot address entries beyone the ten million byte boundary. */
3549 if (string_size >= 10000000)
3550 {
3551 bfd_set_error (bfd_error_file_too_big);
3552 _bfd_error_handler
3553 /* xgettext:c-format */
3554 (_("%pB: section %pA: string table overflow at offset %ld"),
3555 abfd, current, (unsigned long) string_size);
3556 return false;
3557 }
3558
3559 /* We do not need to use snprintf here as we have already verfied
3560 that string_size is not too big, plus we have an overlarge
3561 buffer, just in case. */
3562 sprintf (s_name_buf, "/%lu", (unsigned long) string_size);
3563 /* Then strncpy takes care of any padding for us. */
3564 strncpy (section.s_name, s_name_buf, SCNNMLEN);
3565 string_size += len + 1;
3566 long_section_names = true;
3567 }
3568 }
3569 #endif
3570
3571 #ifdef _LIB
3572 /* Always set s_vaddr of .lib to 0. This is right for SVR3.2
3573 Ian Taylor <ian@cygnus.com>. */
3574 if (strcmp (current->name, _LIB) == 0)
3575 section.s_vaddr = 0;
3576 else
3577 #endif
3578 section.s_vaddr = current->vma;
3579 section.s_paddr = current->lma;
3580 section.s_size = current->size;
3581 #ifdef coff_get_section_load_page
3582 section.s_page = coff_get_section_load_page (current);
3583 #else
3584 section.s_page = 0;
3585 #endif
3586
3587 #ifdef COFF_WITH_PE
3588 section.s_paddr = 0;
3589 #endif
3590 #ifdef COFF_IMAGE_WITH_PE
3591 /* Reminder: s_paddr holds the virtual size of the section. */
3592 if (coff_section_data (abfd, current) != NULL
3593 && pei_section_data (abfd, current) != NULL)
3594 section.s_paddr = pei_section_data (abfd, current)->virt_size;
3595 else
3596 section.s_paddr = 0;
3597 #endif
3598
3599 /* If this section has no size or is unloadable then the scnptr
3600 will be 0 too. */
3601 if (current->size == 0
3602 || (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3603 section.s_scnptr = 0;
3604 else
3605 section.s_scnptr = current->filepos;
3606
3607 section.s_relptr = current->rel_filepos;
3608 section.s_lnnoptr = current->line_filepos;
3609 section.s_nreloc = current->reloc_count;
3610 section.s_nlnno = current->lineno_count;
3611 #ifndef COFF_IMAGE_WITH_PE
3612 /* In PEI, relocs come in the .reloc section. */
3613 if (current->reloc_count != 0)
3614 hasrelocs = true;
3615 #endif
3616 if (current->lineno_count != 0)
3617 haslinno = true;
3618 #ifdef COFF_IMAGE_WITH_PE
3619 if ((current->flags & SEC_DEBUGGING) != 0
3620 && ! is_reloc_section)
3621 hasdebug = true;
3622 #endif
3623
3624 #ifdef RS6000COFF_C
3625 #ifndef XCOFF64
3626 /* Indicate the use of an XCOFF overflow section header. */
3627 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3628 {
3629 section.s_nreloc = 0xffff;
3630 section.s_nlnno = 0xffff;
3631 }
3632 #endif
3633 #endif
3634
3635 section.s_flags = sec_to_styp_flags (current->name, current->flags);
3636
3637 if (!strcmp (current->name, _TEXT))
3638 text_sec = current;
3639 else if (!strcmp (current->name, _DATA))
3640 data_sec = current;
3641 else if (!strcmp (current->name, _BSS))
3642 bss_sec = current;
3643 #ifdef RS6000COFF_C
3644 else if (!strcmp (current->name, _TDATA))
3645 tdata_sec = current;
3646 else if (!strcmp (current->name, _TBSS))
3647 tbss_sec = current;
3648 #endif
3649
3650
3651 #ifdef COFF_ENCODE_ALIGNMENT
3652 if (COFF_ENCODE_ALIGNMENT (abfd, section, current->alignment_power)
3653 && (COFF_DECODE_ALIGNMENT (section.s_flags)
3654 != current->alignment_power))
3655 {
3656 bool warn = (coff_data (abfd)->link_info
3657 && !bfd_link_relocatable (coff_data (abfd)->link_info));
3658
3659 _bfd_error_handler
3660 /* xgettext:c-format */
3661 (_("%pB:%s section %s: alignment 2**%u not representable"),
3662 abfd, warn ? " warning:" : "", current->name,
3663 current->alignment_power);
3664 if (!warn)
3665 {
3666 bfd_set_error (bfd_error_nonrepresentable_section);
3667 return false;
3668 }
3669 }
3670 #endif
3671
3672 #ifdef COFF_IMAGE_WITH_PE
3673 /* Suppress output of the sections if they are null. ld
3674 includes the bss and data sections even if there is no size
3675 assigned to them. NT loader doesn't like it if these section
3676 headers are included if the sections themselves are not
3677 needed. See also coff_compute_section_file_positions. */
3678 if (section.s_size == 0)
3679 internal_f.f_nscns--;
3680 else
3681 #endif
3682 {
3683 SCNHDR buff;
3684 bfd_size_type amt = bfd_coff_scnhsz (abfd);
3685
3686 if (bfd_coff_swap_scnhdr_out (abfd, &section, &buff) == 0
3687 || bfd_bwrite (& buff, amt, abfd) != amt)
3688 return false;
3689 }
3690
3691 #ifdef COFF_WITH_PE
3692 /* PE stores COMDAT section information in the symbol table. If
3693 this section is supposed to have some COMDAT info, track down
3694 the symbol in the symbol table and modify it. */
3695 if ((current->flags & SEC_LINK_ONCE) != 0)
3696 {
3697 unsigned int i, count;
3698 asymbol **psym;
3699 coff_symbol_type *csym = NULL;
3700 asymbol **psymsec;
3701
3702 psymsec = NULL;
3703 count = bfd_get_symcount (abfd);
3704 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3705 {
3706 if ((*psym)->section != current)
3707 continue;
3708
3709 /* Remember the location of the first symbol in this
3710 section. */
3711 if (psymsec == NULL)
3712 psymsec = psym;
3713
3714 /* See if this is the section symbol. */
3715 if (strcmp ((*psym)->name, current->name) == 0)
3716 {
3717 csym = coff_symbol_from (*psym);
3718 if (csym == NULL
3719 || csym->native == NULL
3720 || ! csym->native->is_sym
3721 || csym->native->u.syment.n_numaux < 1
3722 || csym->native->u.syment.n_sclass != C_STAT
3723 || csym->native->u.syment.n_type != T_NULL)
3724 continue;
3725
3726 /* Here *PSYM is the section symbol for CURRENT. */
3727
3728 break;
3729 }
3730 }
3731
3732 /* Did we find it?
3733 Note that we might not if we're converting the file from
3734 some other object file format. */
3735 if (i < count)
3736 {
3737 combined_entry_type *aux;
3738
3739 /* We don't touch the x_checksum field. The
3740 x_associated field is not currently supported. */
3741
3742 aux = csym->native + 1;
3743 BFD_ASSERT (! aux->is_sym);
3744 switch (current->flags & SEC_LINK_DUPLICATES)
3745 {
3746 case SEC_LINK_DUPLICATES_DISCARD:
3747 aux->u.auxent.x_scn.x_comdat = IMAGE_COMDAT_SELECT_ANY;
3748 break;
3749
3750 case SEC_LINK_DUPLICATES_ONE_ONLY:
3751 aux->u.auxent.x_scn.x_comdat =
3752 IMAGE_COMDAT_SELECT_NODUPLICATES;
3753 break;
3754
3755 case SEC_LINK_DUPLICATES_SAME_SIZE:
3756 aux->u.auxent.x_scn.x_comdat =
3757 IMAGE_COMDAT_SELECT_SAME_SIZE;
3758 break;
3759
3760 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
3761 aux->u.auxent.x_scn.x_comdat =
3762 IMAGE_COMDAT_SELECT_EXACT_MATCH;
3763 break;
3764 }
3765
3766 /* The COMDAT symbol must be the first symbol from this
3767 section in the symbol table. In order to make this
3768 work, we move the COMDAT symbol before the first
3769 symbol we found in the search above. It's OK to
3770 rearrange the symbol table at this point, because
3771 coff_renumber_symbols is going to rearrange it
3772 further and fix up all the aux entries. */
3773 if (psym != psymsec)
3774 {
3775 asymbol *hold;
3776 asymbol **pcopy;
3777
3778 hold = *psym;
3779 for (pcopy = psym; pcopy > psymsec; pcopy--)
3780 pcopy[0] = pcopy[-1];
3781 *psymsec = hold;
3782 }
3783 }
3784 }
3785 #endif /* COFF_WITH_PE */
3786 }
3787
3788 #ifdef RS6000COFF_C
3789 #ifndef XCOFF64
3790 /* XCOFF handles overflows in the reloc and line number count fields
3791 by creating a new section header to hold the correct values. */
3792 for (current = abfd->sections; current != NULL; current = current->next)
3793 {
3794 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3795 {
3796 struct internal_scnhdr scnhdr;
3797 SCNHDR buff;
3798 bfd_size_type amt;
3799
3800 internal_f.f_nscns++;
3801 memcpy (scnhdr.s_name, ".ovrflo", 8);
3802 scnhdr.s_paddr = current->reloc_count;
3803 scnhdr.s_vaddr = current->lineno_count;
3804 scnhdr.s_size = 0;
3805 scnhdr.s_scnptr = 0;
3806 scnhdr.s_relptr = current->rel_filepos;
3807 scnhdr.s_lnnoptr = current->line_filepos;
3808 scnhdr.s_nreloc = current->target_index;
3809 scnhdr.s_nlnno = current->target_index;
3810 scnhdr.s_flags = STYP_OVRFLO;
3811 amt = bfd_coff_scnhsz (abfd);
3812 if (bfd_coff_swap_scnhdr_out (abfd, &scnhdr, &buff) == 0
3813 || bfd_bwrite (& buff, amt, abfd) != amt)
3814 return false;
3815 }
3816 }
3817 #endif
3818 #endif
3819
3820 #if defined (COFF_GO32_EXE) || defined (COFF_GO32)
3821 /* Pad section headers. */
3822 if ((abfd->flags & EXEC_P) && abfd->sections != NULL)
3823 {
3824 file_ptr cur_ptr = scn_base
3825 + abfd->section_count * bfd_coff_scnhsz (abfd);
3826 long fill_size = (abfd->sections->filepos - cur_ptr);
3827 bfd_byte *b = bfd_zmalloc (fill_size);
3828 if (b)
3829 {
3830 bfd_bwrite ((PTR)b, fill_size, abfd);
3831 free (b);
3832 }
3833 }
3834 #endif
3835
3836 /* OK, now set up the filehdr... */
3837
3838 /* Don't include the internal abs section in the section count */
3839
3840 /* We will NOT put a fucking timestamp in the header here. Every time you
3841 put it back, I will come in and take it out again. I'm sorry. This
3842 field does not belong here. We fill it with a 0 so it compares the
3843 same but is not a reasonable time. -- gnu@cygnus.com */
3844 internal_f.f_timdat = 0;
3845 internal_f.f_flags = 0;
3846
3847 if (abfd->flags & EXEC_P)
3848 internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
3849 else
3850 {
3851 internal_f.f_opthdr = 0;
3852 #ifdef RS6000COFF_C
3853 #ifndef XCOFF64
3854 if (xcoff_data (abfd)->full_aouthdr)
3855 internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
3856 else
3857 internal_f.f_opthdr = SMALL_AOUTSZ;
3858 #endif
3859 #endif
3860 }
3861
3862 if (!hasrelocs)
3863 internal_f.f_flags |= F_RELFLG;
3864 if (!haslinno)
3865 internal_f.f_flags |= F_LNNO;
3866 if (abfd->flags & EXEC_P)
3867 internal_f.f_flags |= F_EXEC;
3868 #ifdef COFF_IMAGE_WITH_PE
3869 if (! hasdebug)
3870 internal_f.f_flags |= IMAGE_FILE_DEBUG_STRIPPED;
3871 if (pe_data (abfd)->real_flags & IMAGE_FILE_LARGE_ADDRESS_AWARE)
3872 internal_f.f_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
3873 #endif
3874
3875 #ifndef COFF_WITH_pex64
3876 #ifdef COFF_WITH_PE
3877 internal_f.f_flags |= IMAGE_FILE_32BIT_MACHINE;
3878 #else
3879 if (bfd_little_endian (abfd))
3880 internal_f.f_flags |= F_AR32WR;
3881 else
3882 internal_f.f_flags |= F_AR32W;
3883 #endif
3884 #endif
3885
3886 #ifdef TI_TARGET_ID
3887 /* Target id is used in TI COFF v1 and later; COFF0 won't use this field,
3888 but it doesn't hurt to set it internally. */
3889 internal_f.f_target_id = TI_TARGET_ID;
3890 #endif
3891
3892 /* FIXME, should do something about the other byte orders and
3893 architectures. */
3894
3895 #ifdef RS6000COFF_C
3896 if ((abfd->flags & DYNAMIC) != 0)
3897 internal_f.f_flags |= F_SHROBJ;
3898 if (bfd_get_section_by_name (abfd, _LOADER) != NULL)
3899 internal_f.f_flags |= F_DYNLOAD;
3900 #endif
3901
3902 memset (&internal_a, 0, sizeof internal_a);
3903
3904 /* Set up architecture-dependent stuff. */
3905 {
3906 unsigned int magic = 0;
3907 unsigned short flags = 0;
3908
3909 coff_set_flags (abfd, &magic, &flags);
3910 internal_f.f_magic = magic;
3911 internal_f.f_flags |= flags;
3912 /* ...and the "opt"hdr... */
3913
3914 #ifdef TICOFF_AOUT_MAGIC
3915 internal_a.magic = TICOFF_AOUT_MAGIC;
3916 #define __A_MAGIC_SET__
3917 #endif
3918
3919 #if defined(ARM)
3920 #define __A_MAGIC_SET__
3921 internal_a.magic = ZMAGIC;
3922 #endif
3923
3924 #if defined MCORE_PE
3925 #define __A_MAGIC_SET__
3926 internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
3927 #endif
3928
3929 #if defined(I386)
3930 #define __A_MAGIC_SET__
3931 #if defined LYNXOS
3932 internal_a.magic = LYNXCOFFMAGIC;
3933 #elif defined AMD64
3934 internal_a.magic = IMAGE_NT_OPTIONAL_HDR64_MAGIC;
3935 #else
3936 internal_a.magic = ZMAGIC;
3937 #endif
3938 #endif /* I386 */
3939
3940 #if defined(IA64)
3941 #define __A_MAGIC_SET__
3942 internal_a.magic = PE32PMAGIC;
3943 #endif /* IA64 */
3944
3945 #if defined(SPARC)
3946 #define __A_MAGIC_SET__
3947 #if defined(LYNXOS)
3948 internal_a.magic = LYNXCOFFMAGIC;
3949 #endif /* LYNXOS */
3950 #endif /* SPARC */
3951
3952 #ifdef RS6000COFF_C
3953 #define __A_MAGIC_SET__
3954 internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC :
3955 (abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC :
3956 RS6K_AOUTHDR_OMAGIC;
3957 #endif
3958
3959 #if defined(SH) && defined(COFF_WITH_PE)
3960 #define __A_MAGIC_SET__
3961 internal_a.magic = SH_PE_MAGIC;
3962 #endif
3963
3964 #if defined(MIPS) && defined(COFF_WITH_PE)
3965 #define __A_MAGIC_SET__
3966 internal_a.magic = MIPS_PE_MAGIC;
3967 #endif
3968
3969 #ifndef __A_MAGIC_SET__
3970 #include "Your aouthdr magic number is not being set!"
3971 #else
3972 #undef __A_MAGIC_SET__
3973 #endif
3974 }
3975
3976 /* FIXME: Does anybody ever set this to another value? */
3977 internal_a.vstamp = 0;
3978
3979 /* Now should write relocs, strings, syms. */
3980 obj_sym_filepos (abfd) = sym_base;
3981
3982 if (bfd_get_symcount (abfd) != 0)
3983 {
3984 int firstundef;
3985
3986 if (!coff_renumber_symbols (abfd, &firstundef))
3987 return false;
3988 coff_mangle_symbols (abfd);
3989 if (! coff_write_symbols (abfd))
3990 return false;
3991 if (! coff_write_linenumbers (abfd))
3992 return false;
3993 if (! coff_write_relocs (abfd, firstundef))
3994 return false;
3995 }
3996 #ifdef COFF_LONG_SECTION_NAMES
3997 else if (long_section_names && ! obj_coff_strings_written (abfd))
3998 {
3999 /* If we have long section names we have to write out the string
4000 table even if there are no symbols. */
4001 if (! coff_write_symbols (abfd))
4002 return false;
4003 }
4004 #endif
4005 /* If bfd_get_symcount (abfd) != 0, then we are not using the COFF
4006 backend linker, and obj_raw_syment_count is not valid until after
4007 coff_write_symbols is called. */
4008 if (obj_raw_syment_count (abfd) != 0)
4009 {
4010 internal_f.f_symptr = sym_base;
4011 #ifdef RS6000COFF_C
4012 /* AIX appears to require that F_RELFLG not be set if there are
4013 local symbols but no relocations. */
4014 internal_f.f_flags &=~ F_RELFLG;
4015 #endif
4016 }
4017 else
4018 {
4019 if (long_section_names)
4020 internal_f.f_symptr = sym_base;
4021 else
4022 internal_f.f_symptr = 0;
4023 internal_f.f_flags |= F_LSYMS;
4024 }
4025
4026 if (text_sec)
4027 {
4028 internal_a.tsize = text_sec->size;
4029 internal_a.text_start = internal_a.tsize ? text_sec->vma : 0;
4030 }
4031 if (data_sec)
4032 {
4033 internal_a.dsize = data_sec->size;
4034 internal_a.data_start = internal_a.dsize ? data_sec->vma : 0;
4035 }
4036 if (bss_sec)
4037 {
4038 internal_a.bsize = bss_sec->size;
4039 if (internal_a.bsize && bss_sec->vma < internal_a.data_start)
4040 internal_a.data_start = bss_sec->vma;
4041 }
4042
4043 internal_a.entry = bfd_get_start_address (abfd);
4044 internal_f.f_nsyms = obj_raw_syment_count (abfd);
4045
4046 #ifdef RS6000COFF_C
4047 if (xcoff_data (abfd)->full_aouthdr)
4048 {
4049 bfd_vma toc;
4050 asection *loader_sec;
4051
4052 internal_a.vstamp = 1;
4053
4054 internal_a.o_snentry = xcoff_data (abfd)->snentry;
4055 if (internal_a.o_snentry == 0)
4056 internal_a.entry = (bfd_vma) -1;
4057
4058 if (text_sec != NULL)
4059 {
4060 internal_a.o_sntext = text_sec->target_index;
4061 internal_a.o_algntext = bfd_section_alignment (text_sec);
4062 }
4063 else
4064 {
4065 internal_a.o_sntext = 0;
4066 internal_a.o_algntext = 0;
4067 }
4068 if (data_sec != NULL)
4069 {
4070 internal_a.o_sndata = data_sec->target_index;
4071 internal_a.o_algndata = bfd_section_alignment (data_sec);
4072 }
4073 else
4074 {
4075 internal_a.o_sndata = 0;
4076 internal_a.o_algndata = 0;
4077 }
4078 loader_sec = bfd_get_section_by_name (abfd, ".loader");
4079 if (loader_sec != NULL)
4080 internal_a.o_snloader = loader_sec->target_index;
4081 else
4082 internal_a.o_snloader = 0;
4083 if (bss_sec != NULL)
4084 internal_a.o_snbss = bss_sec->target_index;
4085 else
4086 internal_a.o_snbss = 0;
4087
4088 if (tdata_sec != NULL)
4089 {
4090 internal_a.o_sntdata = tdata_sec->target_index;
4091 /* TODO: o_flags should be set to RS6K_AOUTHDR_TLS_LE
4092 if there is at least one R_TLS_LE relocations. */
4093 internal_a.o_flags = 0;
4094 #ifdef XCOFF64
4095 internal_a.o_x64flags = 0;
4096 #endif
4097 }
4098 else
4099 {
4100 internal_a.o_sntdata = 0;
4101 internal_a.o_flags = 0;
4102 #ifdef XCOFF64
4103 internal_a.o_x64flags = 0;
4104 #endif
4105 }
4106 if (tbss_sec != NULL)
4107 internal_a.o_sntbss = tbss_sec->target_index;
4108 else
4109 internal_a.o_sntbss = 0;
4110
4111 toc = xcoff_data (abfd)->toc;
4112 internal_a.o_toc = toc;
4113 internal_a.o_sntoc = xcoff_data (abfd)->sntoc;
4114
4115 internal_a.o_modtype = xcoff_data (abfd)->modtype;
4116 if (xcoff_data (abfd)->cputype != -1)
4117 internal_a.o_cputype = xcoff_data (abfd)->cputype;
4118 else
4119 {
4120 switch (bfd_get_arch (abfd))
4121 {
4122 case bfd_arch_rs6000:
4123 internal_a.o_cputype = 4;
4124 break;
4125 case bfd_arch_powerpc:
4126 if (bfd_get_mach (abfd) == bfd_mach_ppc)
4127 internal_a.o_cputype = 3;
4128 else if (bfd_get_mach (abfd) == bfd_mach_ppc_620)
4129 internal_a.o_cputype = 2;
4130 else
4131 internal_a.o_cputype = 1;
4132 break;
4133 default:
4134 abort ();
4135 }
4136 }
4137 internal_a.o_maxstack = xcoff_data (abfd)->maxstack;
4138 internal_a.o_maxdata = xcoff_data (abfd)->maxdata;
4139 }
4140 #endif
4141
4142 #ifdef COFF_WITH_PE
4143 {
4144 /* After object contents are finalized so we can compute a reasonable hash,
4145 but before header is written so we can update it to point to debug directory. */
4146 struct pe_tdata *pe = pe_data (abfd);
4147
4148 if (pe->build_id.after_write_object_contents != NULL)
4149 (*pe->build_id.after_write_object_contents) (abfd);
4150 }
4151 #endif
4152
4153 /* Now write header. */
4154 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
4155 return false;
4156
4157 {
4158 char * buff;
4159 bfd_size_type amount = bfd_coff_filhsz (abfd);
4160
4161 buff = (char *) bfd_malloc (amount);
4162 if (buff == NULL)
4163 return false;
4164
4165 bfd_coff_swap_filehdr_out (abfd, & internal_f, buff);
4166 amount = bfd_bwrite (buff, amount, abfd);
4167
4168 free (buff);
4169
4170 if (amount != bfd_coff_filhsz (abfd))
4171 return false;
4172 }
4173
4174 if (abfd->flags & EXEC_P)
4175 {
4176 /* Note that peicode.h fills in a PEAOUTHDR, not an AOUTHDR.
4177 include/coff/pe.h sets AOUTSZ == sizeof (PEAOUTHDR)). */
4178 char * buff;
4179 bfd_size_type amount = bfd_coff_aoutsz (abfd);
4180
4181 buff = (char *) bfd_malloc (amount);
4182 if (buff == NULL)
4183 return false;
4184
4185 coff_swap_aouthdr_out (abfd, & internal_a, buff);
4186 amount = bfd_bwrite (buff, amount, abfd);
4187
4188 free (buff);
4189
4190 if (amount != bfd_coff_aoutsz (abfd))
4191 return false;
4192
4193 #ifdef COFF_IMAGE_WITH_PE
4194 if (! coff_apply_checksum (abfd))
4195 return false;
4196 #endif
4197 }
4198 #ifdef RS6000COFF_C
4199 #ifndef XCOFF64
4200 else
4201 {
4202 AOUTHDR buff;
4203 size_t size;
4204
4205 /* XCOFF32 seems to always write at least a small a.out header. */
4206 coff_swap_aouthdr_out (abfd, & internal_a, & buff);
4207 if (xcoff_data (abfd)->full_aouthdr)
4208 size = bfd_coff_aoutsz (abfd);
4209 else
4210 size = SMALL_AOUTSZ;
4211 if (bfd_bwrite (& buff, (bfd_size_type) size, abfd) != size)
4212 return false;
4213 }
4214 #endif
4215 #endif
4216
4217 return true;
4218 }
4219
4220 static bool
4221 coff_set_section_contents (bfd * abfd,
4222 sec_ptr section,
4223 const void * location,
4224 file_ptr offset,
4225 bfd_size_type count)
4226 {
4227 if (! abfd->output_has_begun) /* Set by bfd.c handler. */
4228 {
4229 if (! coff_compute_section_file_positions (abfd))
4230 return false;
4231 }
4232
4233 #if defined(_LIB) && !defined(TARG_AUX)
4234 /* The physical address field of a .lib section is used to hold the
4235 number of shared libraries in the section. This code counts the
4236 number of sections being written, and increments the lma field
4237 with the number.
4238
4239 I have found no documentation on the contents of this section.
4240 Experimentation indicates that the section contains zero or more
4241 records, each of which has the following structure:
4242
4243 - a (four byte) word holding the length of this record, in words,
4244 - a word that always seems to be set to "2",
4245 - the path to a shared library, null-terminated and then padded
4246 to a whole word boundary.
4247
4248 bfd_assert calls have been added to alert if an attempt is made
4249 to write a section which doesn't follow these assumptions. The
4250 code has been tested on ISC 4.1 by me, and on SCO by Robert Lipe
4251 <robertl@arnet.com> (Thanks!).
4252
4253 Gvran Uddeborg <gvran@uddeborg.pp.se>. */
4254 if (strcmp (section->name, _LIB) == 0)
4255 {
4256 bfd_byte *rec, *recend;
4257
4258 rec = (bfd_byte *) location;
4259 recend = rec + count;
4260 while (rec < recend)
4261 {
4262 ++section->lma;
4263 rec += bfd_get_32 (abfd, rec) * 4;
4264 }
4265
4266 BFD_ASSERT (rec == recend);
4267 }
4268 #endif
4269
4270 /* Don't write out bss sections - one way to do this is to
4271 see if the filepos has not been set. */
4272 if (section->filepos == 0)
4273 return true;
4274
4275 if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0)
4276 return false;
4277
4278 if (count == 0)
4279 return true;
4280
4281 return bfd_bwrite (location, count, abfd) == count;
4282 }
4283
4284 static void *
4285 buy_and_read (bfd *abfd, file_ptr where,
4286 bfd_size_type nmemb, bfd_size_type size)
4287 {
4288 size_t amt;
4289
4290 if (_bfd_mul_overflow (nmemb, size, &amt))
4291 {
4292 bfd_set_error (bfd_error_file_too_big);
4293 return NULL;
4294 }
4295 if (bfd_seek (abfd, where, SEEK_SET) != 0)
4296 return NULL;
4297 return _bfd_alloc_and_read (abfd, amt, amt);
4298 }
4299
4300 /*
4301 SUBSUBSECTION
4302 Reading linenumbers
4303
4304 Creating the linenumber table is done by reading in the entire
4305 coff linenumber table, and creating another table for internal use.
4306
4307 A coff linenumber table is structured so that each function
4308 is marked as having a line number of 0. Each line within the
4309 function is an offset from the first line in the function. The
4310 base of the line number information for the table is stored in
4311 the symbol associated with the function.
4312
4313 Note: The PE format uses line number 0 for a flag indicating a
4314 new source file.
4315
4316 The information is copied from the external to the internal
4317 table, and each symbol which marks a function is marked by
4318 pointing its...
4319
4320 How does this work ?
4321 */
4322
4323 static int
4324 coff_sort_func_alent (const void * arg1, const void * arg2)
4325 {
4326 const alent *al1 = *(const alent **) arg1;
4327 const alent *al2 = *(const alent **) arg2;
4328 const coff_symbol_type *s1 = (const coff_symbol_type *) (al1->u.sym);
4329 const coff_symbol_type *s2 = (const coff_symbol_type *) (al2->u.sym);
4330
4331 if (s1 == NULL || s2 == NULL)
4332 return 0;
4333 if (s1->symbol.value < s2->symbol.value)
4334 return -1;
4335 else if (s1->symbol.value > s2->symbol.value)
4336 return 1;
4337
4338 return 0;
4339 }
4340
4341 static bool
4342 coff_slurp_line_table (bfd *abfd, asection *asect)
4343 {
4344 LINENO *native_lineno;
4345 alent *lineno_cache;
4346 unsigned int counter;
4347 alent *cache_ptr;
4348 bfd_vma prev_offset = 0;
4349 bool ordered = true;
4350 unsigned int nbr_func;
4351 LINENO *src;
4352 bool have_func;
4353 bool ret = true;
4354 size_t amt;
4355
4356 if (asect->lineno_count == 0)
4357 return true;
4358
4359 BFD_ASSERT (asect->lineno == NULL);
4360
4361 if (asect->lineno_count > asect->size)
4362 {
4363 _bfd_error_handler
4364 (_("%pB: warning: line number count (%#lx) exceeds section size (%#lx)"),
4365 abfd, (unsigned long) asect->lineno_count, (unsigned long) asect->size);
4366 return false;
4367 }
4368
4369 if (_bfd_mul_overflow (asect->lineno_count + 1, sizeof (alent), &amt))
4370 {
4371 bfd_set_error (bfd_error_file_too_big);
4372 return false;
4373 }
4374 lineno_cache = (alent *) bfd_alloc (abfd, amt);
4375 if (lineno_cache == NULL)
4376 return false;
4377
4378 native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos,
4379 asect->lineno_count,
4380 bfd_coff_linesz (abfd));
4381 if (native_lineno == NULL)
4382 {
4383 _bfd_error_handler
4384 (_("%pB: warning: line number table read failed"), abfd);
4385 bfd_release (abfd, lineno_cache);
4386 return false;
4387 }
4388
4389 cache_ptr = lineno_cache;
4390 asect->lineno = lineno_cache;
4391 src = native_lineno;
4392 nbr_func = 0;
4393 have_func = false;
4394
4395 for (counter = 0; counter < asect->lineno_count; counter++, src++)
4396 {
4397 struct internal_lineno dst;
4398
4399 bfd_coff_swap_lineno_in (abfd, src, &dst);
4400 cache_ptr->line_number = dst.l_lnno;
4401 /* Appease memory checkers that get all excited about
4402 uninitialised memory when copying alents if u.offset is
4403 larger than u.sym. (64-bit BFD on 32-bit host.) */
4404 memset (&cache_ptr->u, 0, sizeof (cache_ptr->u));
4405
4406 if (cache_ptr->line_number == 0)
4407 {
4408 combined_entry_type * ent;
4409 unsigned long symndx;
4410 coff_symbol_type *sym;
4411
4412 have_func = false;
4413 symndx = dst.l_addr.l_symndx;
4414 if (symndx >= obj_raw_syment_count (abfd))
4415 {
4416 _bfd_error_handler
4417 /* xgettext:c-format */
4418 (_("%pB: warning: illegal symbol index 0x%lx in line number entry %d"),
4419 abfd, symndx, counter);
4420 cache_ptr->line_number = -1;
4421 ret = false;
4422 continue;
4423 }
4424
4425 ent = obj_raw_syments (abfd) + symndx;
4426 /* FIXME: We should not be casting between ints and
4427 pointers like this. */
4428 if (! ent->is_sym)
4429 {
4430 _bfd_error_handler
4431 /* xgettext:c-format */
4432 (_("%pB: warning: illegal symbol index 0x%lx in line number entry %d"),
4433 abfd, symndx, counter);
4434 cache_ptr->line_number = -1;
4435 ret = false;
4436 continue;
4437 }
4438 sym = (coff_symbol_type *) (ent->u.syment._n._n_n._n_zeroes);
4439
4440 /* PR 17512 file: 078-10659-0.004 */
4441 if (sym < obj_symbols (abfd)
4442 || sym >= obj_symbols (abfd) + bfd_get_symcount (abfd))
4443 {
4444 _bfd_error_handler
4445 /* xgettext:c-format */
4446 (_("%pB: warning: illegal symbol in line number entry %d"),
4447 abfd, counter);
4448 cache_ptr->line_number = -1;
4449 ret = false;
4450 continue;
4451 }
4452
4453 have_func = true;
4454 nbr_func++;
4455 cache_ptr->u.sym = (asymbol *) sym;
4456 if (sym->lineno != NULL)
4457 _bfd_error_handler
4458 /* xgettext:c-format */
4459 (_("%pB: warning: duplicate line number information for `%s'"),
4460 abfd, bfd_asymbol_name (&sym->symbol));
4461
4462 sym->lineno = cache_ptr;
4463 if (sym->symbol.value < prev_offset)
4464 ordered = false;
4465 prev_offset = sym->symbol.value;
4466 }
4467 else if (!have_func)
4468 /* Drop line information that has no associated function.
4469 PR 17521: file: 078-10659-0.004. */
4470 continue;
4471 else
4472 cache_ptr->u.offset = dst.l_addr.l_paddr - bfd_section_vma (asect);
4473 cache_ptr++;
4474 }
4475
4476 asect->lineno_count = cache_ptr - lineno_cache;
4477 memset (cache_ptr, 0, sizeof (*cache_ptr));
4478 bfd_release (abfd, native_lineno);
4479
4480 /* On some systems (eg AIX5.3) the lineno table may not be sorted. */
4481 if (!ordered)
4482 {
4483 /* Sort the table. */
4484 alent **func_table;
4485 alent *n_lineno_cache;
4486
4487 /* Create a table of functions. */
4488 if (_bfd_mul_overflow (nbr_func, sizeof (alent *), &amt))
4489 {
4490 bfd_set_error (bfd_error_file_too_big);
4491 ret = false;
4492 }
4493 else if ((func_table = (alent **) bfd_alloc (abfd, amt)) != NULL)
4494 {
4495 alent **p = func_table;
4496 unsigned int i;
4497
4498 for (i = 0; i < asect->lineno_count; i++)
4499 if (lineno_cache[i].line_number == 0)
4500 *p++ = &lineno_cache[i];
4501
4502 BFD_ASSERT ((unsigned int) (p - func_table) == nbr_func);
4503
4504 /* Sort by functions. */
4505 qsort (func_table, nbr_func, sizeof (alent *), coff_sort_func_alent);
4506
4507 /* Create the new sorted table. */
4508 if (_bfd_mul_overflow (asect->lineno_count, sizeof (alent), &amt))
4509 {
4510 bfd_set_error (bfd_error_file_too_big);
4511 ret = false;
4512 }
4513 else if ((n_lineno_cache = (alent *) bfd_alloc (abfd, amt)) != NULL)
4514 {
4515 alent *n_cache_ptr = n_lineno_cache;
4516
4517 for (i = 0; i < nbr_func; i++)
4518 {
4519 coff_symbol_type *sym;
4520 alent *old_ptr = func_table[i];
4521
4522 /* Update the function entry. */
4523 sym = (coff_symbol_type *) old_ptr->u.sym;
4524 /* PR binutils/17512: Point the lineno to where
4525 this entry will be after the memcpy below. */
4526 sym->lineno = lineno_cache + (n_cache_ptr - n_lineno_cache);
4527 /* Copy the function and line number entries. */
4528 do
4529 *n_cache_ptr++ = *old_ptr++;
4530 while (old_ptr->line_number != 0);
4531 }
4532
4533 memcpy (lineno_cache, n_lineno_cache,
4534 asect->lineno_count * sizeof (alent));
4535 }
4536 else
4537 ret = false;
4538 bfd_release (abfd, func_table);
4539 }
4540 else
4541 ret = false;
4542 }
4543
4544 return ret;
4545 }
4546
4547 /* Slurp in the symbol table, converting it to generic form. Note
4548 that if coff_relocate_section is defined, the linker will read
4549 symbols via coff_link_add_symbols, rather than via this routine. */
4550
4551 static bool
4552 coff_slurp_symbol_table (bfd * abfd)
4553 {
4554 combined_entry_type *native_symbols;
4555 coff_symbol_type *cached_area;
4556 unsigned int *table_ptr;
4557 unsigned int number_of_symbols = 0;
4558 bool ret = true;
4559 size_t amt;
4560
4561 if (obj_symbols (abfd))
4562 return true;
4563
4564 /* Read in the symbol table. */
4565 if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL)
4566 return false;
4567
4568 /* Allocate enough room for all the symbols in cached form. */
4569 if (_bfd_mul_overflow (obj_raw_syment_count (abfd),
4570 sizeof (*cached_area), &amt))
4571 {
4572 bfd_set_error (bfd_error_file_too_big);
4573 return false;
4574 }
4575 cached_area = (coff_symbol_type *) bfd_alloc (abfd, amt);
4576 if (cached_area == NULL)
4577 return false;
4578
4579 if (_bfd_mul_overflow (obj_raw_syment_count (abfd),
4580 sizeof (*table_ptr), &amt))
4581 {
4582 bfd_set_error (bfd_error_file_too_big);
4583 return false;
4584 }
4585 table_ptr = (unsigned int *) bfd_zalloc (abfd, amt);
4586 if (table_ptr == NULL)
4587 return false;
4588 else
4589 {
4590 coff_symbol_type *dst = cached_area;
4591 unsigned int last_native_index = obj_raw_syment_count (abfd);
4592 unsigned int this_index = 0;
4593
4594 while (this_index < last_native_index)
4595 {
4596 combined_entry_type *src = native_symbols + this_index;
4597 table_ptr[this_index] = number_of_symbols;
4598
4599 dst->symbol.the_bfd = abfd;
4600 BFD_ASSERT (src->is_sym);
4601 dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset);
4602 /* We use the native name field to point to the cached field. */
4603 src->u.syment._n._n_n._n_zeroes = (bfd_hostptr_t) dst;
4604 dst->symbol.section = coff_section_from_bfd_index (abfd,
4605 src->u.syment.n_scnum);
4606 dst->symbol.flags = 0;
4607 /* PR 17512: file: 079-7098-0.001:0.1. */
4608 dst->symbol.value = 0;
4609 dst->done_lineno = false;
4610
4611 switch (src->u.syment.n_sclass)
4612 {
4613 case C_EXT:
4614 case C_WEAKEXT:
4615 #if defined ARM
4616 case C_THUMBEXT:
4617 case C_THUMBEXTFUNC:
4618 #endif
4619 #ifdef RS6000COFF_C
4620 case C_HIDEXT:
4621 #if ! defined _AIX52 && ! defined AIX_WEAK_SUPPORT
4622 case C_AIX_WEAKEXT:
4623 #endif
4624 #endif
4625 #ifdef C_SYSTEM
4626 case C_SYSTEM: /* System Wide variable. */
4627 #endif
4628 #ifdef COFF_WITH_PE
4629 /* In PE, 0x68 (104) denotes a section symbol. */
4630 case C_SECTION:
4631 /* In PE, 0x69 (105) denotes a weak external symbol. */
4632 case C_NT_WEAK:
4633 #endif
4634 switch (coff_classify_symbol (abfd, &src->u.syment))
4635 {
4636 case COFF_SYMBOL_GLOBAL:
4637 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
4638 #if defined COFF_WITH_PE
4639 /* PE sets the symbol to a value relative to the
4640 start of the section. */
4641 dst->symbol.value = src->u.syment.n_value;
4642 #else
4643 dst->symbol.value = (src->u.syment.n_value
4644 - dst->symbol.section->vma);
4645 #endif
4646 if (ISFCN ((src->u.syment.n_type)))
4647 /* A function ext does not go at the end of a
4648 file. */
4649 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4650 break;
4651
4652 case COFF_SYMBOL_COMMON:
4653 dst->symbol.section = bfd_com_section_ptr;
4654 dst->symbol.value = src->u.syment.n_value;
4655 break;
4656
4657 case COFF_SYMBOL_UNDEFINED:
4658 dst->symbol.section = bfd_und_section_ptr;
4659 dst->symbol.value = 0;
4660 break;
4661
4662 case COFF_SYMBOL_PE_SECTION:
4663 dst->symbol.flags |= BSF_EXPORT | BSF_SECTION_SYM;
4664 dst->symbol.value = 0;
4665 break;
4666
4667 case COFF_SYMBOL_LOCAL:
4668 dst->symbol.flags = BSF_LOCAL;
4669 #if defined COFF_WITH_PE
4670 /* PE sets the symbol to a value relative to the
4671 start of the section. */
4672 dst->symbol.value = src->u.syment.n_value;
4673 #else
4674 dst->symbol.value = (src->u.syment.n_value
4675 - dst->symbol.section->vma);
4676 #endif
4677 if (ISFCN ((src->u.syment.n_type)))
4678 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4679 break;
4680 }
4681
4682 #ifdef RS6000COFF_C
4683 /* A symbol with a csect entry should not go at the end. */
4684 if (src->u.syment.n_numaux > 0)
4685 dst->symbol.flags |= BSF_NOT_AT_END;
4686 #endif
4687
4688 #ifdef COFF_WITH_PE
4689 if (src->u.syment.n_sclass == C_NT_WEAK)
4690 dst->symbol.flags |= BSF_WEAK;
4691
4692 if (src->u.syment.n_sclass == C_SECTION
4693 && src->u.syment.n_scnum > 0)
4694 dst->symbol.flags = BSF_LOCAL;
4695 #endif
4696 if (src->u.syment.n_sclass == C_WEAKEXT
4697 #ifdef RS6000COFF_C
4698 || src->u.syment.n_sclass == C_AIX_WEAKEXT
4699 #endif
4700 )
4701 dst->symbol.flags |= BSF_WEAK;
4702
4703 break;
4704
4705 case C_STAT: /* Static. */
4706 #if defined ARM
4707 case C_THUMBSTAT: /* Thumb static. */
4708 case C_THUMBLABEL: /* Thumb label. */
4709 case C_THUMBSTATFUNC:/* Thumb static function. */
4710 #endif
4711 #ifdef RS6000COFF_C
4712 case C_DWARF: /* A label in a dwarf section. */
4713 case C_INFO: /* A label in a comment section. */
4714 #endif
4715 case C_LABEL: /* Label. */
4716 if (src->u.syment.n_scnum == N_DEBUG)
4717 dst->symbol.flags = BSF_DEBUGGING;
4718 else
4719 dst->symbol.flags = BSF_LOCAL;
4720
4721 /* Base the value as an index from the base of the
4722 section, if there is one. */
4723 if (dst->symbol.section)
4724 {
4725 #if defined COFF_WITH_PE
4726 /* PE sets the symbol to a value relative to the
4727 start of the section. */
4728 dst->symbol.value = src->u.syment.n_value;
4729 #else
4730 dst->symbol.value = (src->u.syment.n_value
4731 - dst->symbol.section->vma);
4732 #endif
4733 }
4734 else
4735 dst->symbol.value = src->u.syment.n_value;
4736 break;
4737
4738 case C_MOS: /* Member of structure. */
4739 case C_EOS: /* End of structure. */
4740 case C_REGPARM: /* Register parameter. */
4741 case C_REG: /* register variable. */
4742 /* C_AUTOARG conflicts with TI COFF C_UEXT. */
4743 case C_TPDEF: /* Type definition. */
4744 case C_ARG:
4745 case C_AUTO: /* Automatic variable. */
4746 case C_FIELD: /* Bit field. */
4747 case C_ENTAG: /* Enumeration tag. */
4748 case C_MOE: /* Member of enumeration. */
4749 case C_MOU: /* Member of union. */
4750 case C_UNTAG: /* Union tag. */
4751 dst->symbol.flags = BSF_DEBUGGING;
4752 dst->symbol.value = (src->u.syment.n_value);
4753 break;
4754
4755 case C_FILE: /* File name. */
4756 case C_STRTAG: /* Structure tag. */
4757 #ifdef RS6000COFF_C
4758 case C_GSYM:
4759 case C_LSYM:
4760 case C_PSYM:
4761 case C_RSYM:
4762 case C_RPSYM:
4763 case C_STSYM:
4764 case C_TCSYM:
4765 case C_BCOMM:
4766 case C_ECOML:
4767 case C_ECOMM:
4768 case C_DECL:
4769 case C_ENTRY:
4770 case C_FUN:
4771 case C_ESTAT:
4772 #endif
4773 dst->symbol.flags = BSF_DEBUGGING;
4774 dst->symbol.value = (src->u.syment.n_value);
4775 break;
4776
4777 #ifdef RS6000COFF_C
4778 case C_BINCL: /* Beginning of include file. */
4779 case C_EINCL: /* Ending of include file. */
4780 /* The value is actually a pointer into the line numbers
4781 of the file. We locate the line number entry, and
4782 set the section to the section which contains it, and
4783 the value to the index in that section. */
4784 {
4785 asection *sec;
4786
4787 dst->symbol.flags = BSF_DEBUGGING;
4788 for (sec = abfd->sections; sec != NULL; sec = sec->next)
4789 if (sec->line_filepos <= (file_ptr) src->u.syment.n_value
4790 && ((file_ptr) (sec->line_filepos
4791 + sec->lineno_count * bfd_coff_linesz (abfd))
4792 > (file_ptr) src->u.syment.n_value))
4793 break;
4794 if (sec == NULL)
4795 dst->symbol.value = 0;
4796 else
4797 {
4798 dst->symbol.section = sec;
4799 dst->symbol.value = ((src->u.syment.n_value
4800 - sec->line_filepos)
4801 / bfd_coff_linesz (abfd));
4802 src->fix_line = 1;
4803 }
4804 }
4805 break;
4806
4807 case C_BSTAT:
4808 dst->symbol.flags = BSF_DEBUGGING;
4809
4810 /* The value is actually a symbol index. Save a pointer
4811 to the symbol instead of the index. FIXME: This
4812 should use a union. */
4813 src->u.syment.n_value =
4814 (long) (intptr_t) (native_symbols + src->u.syment.n_value);
4815 dst->symbol.value = src->u.syment.n_value;
4816 src->fix_value = 1;
4817 break;
4818 #endif
4819
4820 case C_BLOCK: /* ".bb" or ".eb". */
4821 case C_FCN: /* ".bf" or ".ef" (or PE ".lf"). */
4822 case C_EFCN: /* Physical end of function. */
4823 #if defined COFF_WITH_PE
4824 /* PE sets the symbol to a value relative to the start
4825 of the section. */
4826 dst->symbol.value = src->u.syment.n_value;
4827 if (strcmp (dst->symbol.name, ".bf") != 0)
4828 {
4829 /* PE uses funny values for .ef and .lf; don't
4830 relocate them. */
4831 dst->symbol.flags = BSF_DEBUGGING;
4832 }
4833 else
4834 dst->symbol.flags = BSF_DEBUGGING | BSF_DEBUGGING_RELOC;
4835 #else
4836 /* Base the value as an index from the base of the
4837 section. */
4838 dst->symbol.flags = BSF_LOCAL;
4839 dst->symbol.value = (src->u.syment.n_value
4840 - dst->symbol.section->vma);
4841 #endif
4842 break;
4843
4844 case C_STATLAB: /* Static load time label. */
4845 dst->symbol.value = src->u.syment.n_value;
4846 dst->symbol.flags = BSF_GLOBAL;
4847 break;
4848
4849 case C_NULL:
4850 /* PE DLLs sometimes have zeroed out symbols for some
4851 reason. Just ignore them without a warning. */
4852 if (src->u.syment.n_type == 0
4853 && src->u.syment.n_value == 0
4854 && src->u.syment.n_scnum == 0)
4855 break;
4856 #ifdef RS6000COFF_C
4857 /* XCOFF specific: deleted entry. */
4858 if (src->u.syment.n_value == C_NULL_VALUE)
4859 break;
4860 #endif
4861 /* Fall through. */
4862 case C_EXTDEF: /* External definition. */
4863 case C_ULABEL: /* Undefined label. */
4864 case C_USTATIC: /* Undefined static. */
4865 #ifndef COFF_WITH_PE
4866 /* C_LINE in regular coff is 0x68. NT has taken over this storage
4867 class to represent a section symbol. */
4868 case C_LINE: /* line # reformatted as symbol table entry. */
4869 /* NT uses 0x67 for a weak symbol, not C_ALIAS. */
4870 case C_ALIAS: /* Duplicate tag. */
4871 #endif
4872 /* New storage classes for TI COFF. */
4873 #ifdef TICOFF
4874 case C_UEXT: /* Tentative external definition. */
4875 #endif
4876 case C_EXTLAB: /* External load time label. */
4877 default:
4878 _bfd_error_handler
4879 /* xgettext:c-format */
4880 (_("%pB: unrecognized storage class %d for %s symbol `%s'"),
4881 abfd, src->u.syment.n_sclass,
4882 dst->symbol.section->name, dst->symbol.name);
4883 ret = false;
4884 /* Fall through. */
4885 case C_HIDDEN: /* Ext symbol in dmert public lib. */
4886 /* PR 20722: These symbols can also be generated by
4887 building DLLs with --gc-sections enabled. */
4888 dst->symbol.flags = BSF_DEBUGGING;
4889 dst->symbol.value = (src->u.syment.n_value);
4890 break;
4891 }
4892
4893 dst->native = src;
4894 dst->symbol.udata.i = 0;
4895 dst->lineno = NULL;
4896
4897 this_index += (src->u.syment.n_numaux) + 1;
4898 dst++;
4899 number_of_symbols++;
4900 }
4901 }
4902
4903 obj_symbols (abfd) = cached_area;
4904 obj_raw_syments (abfd) = native_symbols;
4905
4906 abfd->symcount = number_of_symbols;
4907 obj_convert (abfd) = table_ptr;
4908 /* Slurp the line tables for each section too. */
4909 {
4910 asection *p;
4911
4912 p = abfd->sections;
4913 while (p)
4914 {
4915 if (! coff_slurp_line_table (abfd, p))
4916 return false;
4917 p = p->next;
4918 }
4919 }
4920
4921 return ret;
4922 }
4923
4924 /* Classify a COFF symbol. A couple of targets have globally visible
4925 symbols which are not class C_EXT, and this handles those. It also
4926 recognizes some special PE cases. */
4927
4928 static enum coff_symbol_classification
4929 coff_classify_symbol (bfd *abfd,
4930 struct internal_syment *syment)
4931 {
4932 /* FIXME: This partially duplicates the switch in
4933 coff_slurp_symbol_table. */
4934 switch (syment->n_sclass)
4935 {
4936 case C_EXT:
4937 case C_WEAKEXT:
4938 #ifdef ARM
4939 case C_THUMBEXT:
4940 case C_THUMBEXTFUNC:
4941 #endif
4942 #ifdef RS6000COFF_C
4943 case C_HIDEXT:
4944 #if ! defined _AIX52 && ! defined AIX_WEAK_SUPPORT
4945 case C_AIX_WEAKEXT:
4946 #endif
4947 #endif
4948 #ifdef C_SYSTEM
4949 case C_SYSTEM:
4950 #endif
4951 #ifdef COFF_WITH_PE
4952 case C_NT_WEAK:
4953 #endif
4954 if (syment->n_scnum == 0)
4955 {
4956 if (syment->n_value == 0)
4957 return COFF_SYMBOL_UNDEFINED;
4958 else
4959 return COFF_SYMBOL_COMMON;
4960 }
4961 #ifdef RS6000COFF_C
4962 if (syment->n_sclass == C_HIDEXT)
4963 return COFF_SYMBOL_LOCAL;
4964 #endif
4965 return COFF_SYMBOL_GLOBAL;
4966
4967 default:
4968 break;
4969 }
4970
4971 #ifdef COFF_WITH_PE
4972 if (syment->n_sclass == C_STAT)
4973 {
4974 if (syment->n_scnum == 0)
4975 /* The Microsoft compiler sometimes generates these if a
4976 small static function is inlined every time it is used.
4977 The function is discarded, but the symbol table entry
4978 remains. */
4979 return COFF_SYMBOL_LOCAL;
4980
4981 #ifdef STRICT_PE_FORMAT
4982 /* This is correct for Microsoft generated objects, but it
4983 breaks gas generated objects. */
4984 if (syment->n_value == 0)
4985 {
4986 asection *sec;
4987 char * name;
4988 char buf[SYMNMLEN + 1];
4989
4990 name = _bfd_coff_internal_syment_name (abfd, syment, buf)
4991 sec = coff_section_from_bfd_index (abfd, syment->n_scnum);
4992 if (sec != NULL && name != NULL
4993 && (strcmp (bfd_section_name (sec), name) == 0))
4994 return COFF_SYMBOL_PE_SECTION;
4995 }
4996 #endif
4997
4998 return COFF_SYMBOL_LOCAL;
4999 }
5000
5001 if (syment->n_sclass == C_SECTION)
5002 {
5003 /* In some cases in a DLL generated by the Microsoft linker, the
5004 n_value field will contain garbage. FIXME: This should
5005 probably be handled by the swapping function instead. */
5006 syment->n_value = 0;
5007 if (syment->n_scnum == 0)
5008 return COFF_SYMBOL_UNDEFINED;
5009 return COFF_SYMBOL_PE_SECTION;
5010 }
5011 #endif /* COFF_WITH_PE */
5012
5013 /* If it is not a global symbol, we presume it is a local symbol. */
5014 if (syment->n_scnum == 0)
5015 {
5016 char buf[SYMNMLEN + 1];
5017
5018 _bfd_error_handler
5019 /* xgettext:c-format */
5020 (_("warning: %pB: local symbol `%s' has no section"),
5021 abfd, _bfd_coff_internal_syment_name (abfd, syment, buf));
5022 }
5023
5024 return COFF_SYMBOL_LOCAL;
5025 }
5026
5027 /*
5028 SUBSUBSECTION
5029 Reading relocations
5030
5031 Coff relocations are easily transformed into the internal BFD form
5032 (@code{arelent}).
5033
5034 Reading a coff relocation table is done in the following stages:
5035
5036 o Read the entire coff relocation table into memory.
5037
5038 o Process each relocation in turn; first swap it from the
5039 external to the internal form.
5040
5041 o Turn the symbol referenced in the relocation's symbol index
5042 into a pointer into the canonical symbol table.
5043 This table is the same as the one returned by a call to
5044 @code{bfd_canonicalize_symtab}. The back end will call that
5045 routine and save the result if a canonicalization hasn't been done.
5046
5047 o The reloc index is turned into a pointer to a howto
5048 structure, in a back end specific way. For instance, the 386
5049 uses the @code{r_type} to directly produce an index
5050 into a howto table vector.
5051 */
5052
5053 #ifndef CALC_ADDEND
5054 #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
5055 { \
5056 coff_symbol_type *coffsym = NULL; \
5057 \
5058 if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
5059 coffsym = (obj_symbols (abfd) \
5060 + (cache_ptr->sym_ptr_ptr - symbols)); \
5061 else if (ptr) \
5062 coffsym = coff_symbol_from (ptr); \
5063 if (coffsym != NULL \
5064 && coffsym->native->is_sym \
5065 && coffsym->native->u.syment.n_scnum == 0) \
5066 cache_ptr->addend = 0; \
5067 else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
5068 && ptr->section != NULL) \
5069 cache_ptr->addend = - (ptr->section->vma + ptr->value); \
5070 else \
5071 cache_ptr->addend = 0; \
5072 }
5073 #endif
5074
5075 static bool
5076 coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
5077 {
5078 RELOC *native_relocs;
5079 arelent *reloc_cache;
5080 arelent *cache_ptr;
5081 unsigned int idx;
5082 size_t amt;
5083
5084 if (asect->relocation)
5085 return true;
5086 if (asect->reloc_count == 0)
5087 return true;
5088 if (asect->flags & SEC_CONSTRUCTOR)
5089 return true;
5090 if (!coff_slurp_symbol_table (abfd))
5091 return false;
5092
5093 native_relocs = (RELOC *) buy_and_read (abfd, asect->rel_filepos,
5094 asect->reloc_count,
5095 bfd_coff_relsz (abfd));
5096 if (_bfd_mul_overflow (asect->reloc_count, sizeof (arelent), &amt))
5097 {
5098 bfd_set_error (bfd_error_file_too_big);
5099 return false;
5100 }
5101 reloc_cache = (arelent *) bfd_alloc (abfd, amt);
5102 if (reloc_cache == NULL || native_relocs == NULL)
5103 return false;
5104
5105 for (idx = 0; idx < asect->reloc_count; idx++)
5106 {
5107 struct internal_reloc dst;
5108 struct external_reloc *src;
5109 #ifndef RELOC_PROCESSING
5110 asymbol *ptr;
5111 #endif
5112
5113 cache_ptr = reloc_cache + idx;
5114 src = native_relocs + idx;
5115
5116 dst.r_offset = 0;
5117 coff_swap_reloc_in (abfd, src, &dst);
5118
5119 #ifdef RELOC_PROCESSING
5120 RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect);
5121 #else
5122 cache_ptr->address = dst.r_vaddr;
5123
5124 if (dst.r_symndx != -1 && symbols != NULL)
5125 {
5126 if (dst.r_symndx < 0 || dst.r_symndx >= obj_conv_table_size (abfd))
5127 {
5128 _bfd_error_handler
5129 /* xgettext:c-format */
5130 (_("%pB: warning: illegal symbol index %ld in relocs"),
5131 abfd, dst.r_symndx);
5132 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
5133 ptr = NULL;
5134 }
5135 else
5136 {
5137 cache_ptr->sym_ptr_ptr = (symbols
5138 + obj_convert (abfd)[dst.r_symndx]);
5139 ptr = *(cache_ptr->sym_ptr_ptr);
5140 }
5141 }
5142 else
5143 {
5144 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
5145 ptr = NULL;
5146 }
5147
5148 /* The symbols definitions that we have read in have been
5149 relocated as if their sections started at 0. But the offsets
5150 refering to the symbols in the raw data have not been
5151 modified, so we have to have a negative addend to compensate.
5152
5153 Note that symbols which used to be common must be left alone. */
5154
5155 /* Calculate any reloc addend by looking at the symbol. */
5156 CALC_ADDEND (abfd, ptr, dst, cache_ptr);
5157 (void) ptr;
5158
5159 cache_ptr->address -= asect->vma;
5160 /* !! cache_ptr->section = NULL;*/
5161
5162 /* Fill in the cache_ptr->howto field from dst.r_type. */
5163 RTYPE2HOWTO (cache_ptr, &dst);
5164 #endif /* RELOC_PROCESSING */
5165
5166 if (cache_ptr->howto == NULL)
5167 {
5168 _bfd_error_handler
5169 /* xgettext:c-format */
5170 (_("%pB: illegal relocation type %d at address %#" PRIx64),
5171 abfd, dst.r_type, (uint64_t) dst.r_vaddr);
5172 bfd_set_error (bfd_error_bad_value);
5173 return false;
5174 }
5175 }
5176
5177 asect->relocation = reloc_cache;
5178 return true;
5179 }
5180
5181 #ifndef coff_rtype_to_howto
5182 #ifdef RTYPE2HOWTO
5183
5184 /* Get the howto structure for a reloc. This is only used if the file
5185 including this one defines coff_relocate_section to be
5186 _bfd_coff_generic_relocate_section, so it is OK if it does not
5187 always work. It is the responsibility of the including file to
5188 make sure it is reasonable if it is needed. */
5189
5190 static reloc_howto_type *
5191 coff_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
5192 asection *sec ATTRIBUTE_UNUSED,
5193 struct internal_reloc *rel ATTRIBUTE_UNUSED,
5194 struct coff_link_hash_entry *h ATTRIBUTE_UNUSED,
5195 struct internal_syment *sym ATTRIBUTE_UNUSED,
5196 bfd_vma *addendp ATTRIBUTE_UNUSED)
5197 {
5198 arelent genrel;
5199
5200 genrel.howto = NULL;
5201 RTYPE2HOWTO (&genrel, rel);
5202 return genrel.howto;
5203 }
5204
5205 #else /* ! defined (RTYPE2HOWTO) */
5206
5207 #define coff_rtype_to_howto NULL
5208
5209 #endif /* ! defined (RTYPE2HOWTO) */
5210 #endif /* ! defined (coff_rtype_to_howto) */
5211
5212 /* This is stupid. This function should be a boolean predicate. */
5213
5214 static long
5215 coff_canonicalize_reloc (bfd * abfd,
5216 sec_ptr section,
5217 arelent ** relptr,
5218 asymbol ** symbols)
5219 {
5220 arelent *tblptr = section->relocation;
5221 unsigned int count = 0;
5222
5223 if (section->flags & SEC_CONSTRUCTOR)
5224 {
5225 /* This section has relocs made up by us, they are not in the
5226 file, so take them out of their chain and place them into
5227 the data area provided. */
5228 arelent_chain *chain = section->constructor_chain;
5229
5230 for (count = 0; count < section->reloc_count; count++)
5231 {
5232 *relptr++ = &chain->relent;
5233 chain = chain->next;
5234 }
5235 }
5236 else
5237 {
5238 if (! coff_slurp_reloc_table (abfd, section, symbols))
5239 return -1;
5240
5241 tblptr = section->relocation;
5242
5243 for (; count++ < section->reloc_count;)
5244 *relptr++ = tblptr++;
5245 }
5246 *relptr = 0;
5247 return section->reloc_count;
5248 }
5249
5250 #ifndef coff_set_reloc
5251 #define coff_set_reloc _bfd_generic_set_reloc
5252 #endif
5253
5254 #ifndef coff_reloc16_estimate
5255 #define coff_reloc16_estimate dummy_reloc16_estimate
5256
5257 static int
5258 dummy_reloc16_estimate (bfd *abfd ATTRIBUTE_UNUSED,
5259 asection *input_section ATTRIBUTE_UNUSED,
5260 arelent *reloc ATTRIBUTE_UNUSED,
5261 unsigned int shrink ATTRIBUTE_UNUSED,
5262 struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
5263 {
5264 abort ();
5265 return 0;
5266 }
5267
5268 #endif
5269
5270 #ifndef coff_reloc16_extra_cases
5271
5272 #define coff_reloc16_extra_cases dummy_reloc16_extra_cases
5273
5274 /* This works even if abort is not declared in any header file. */
5275
5276 static void
5277 dummy_reloc16_extra_cases (bfd *abfd ATTRIBUTE_UNUSED,
5278 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
5279 struct bfd_link_order *link_order ATTRIBUTE_UNUSED,
5280 arelent *reloc ATTRIBUTE_UNUSED,
5281 bfd_byte *data ATTRIBUTE_UNUSED,
5282 unsigned int *src_ptr ATTRIBUTE_UNUSED,
5283 unsigned int *dst_ptr ATTRIBUTE_UNUSED)
5284 {
5285 abort ();
5286 }
5287 #endif
5288
5289 /* If coff_relocate_section is defined, we can use the optimized COFF
5290 backend linker. Otherwise we must continue to use the old linker. */
5291
5292 #ifdef coff_relocate_section
5293
5294 #ifndef coff_bfd_link_hash_table_create
5295 #define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create
5296 #endif
5297 #ifndef coff_bfd_link_add_symbols
5298 #define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols
5299 #endif
5300 #ifndef coff_bfd_final_link
5301 #define coff_bfd_final_link _bfd_coff_final_link
5302 #endif
5303
5304 #else /* ! defined (coff_relocate_section) */
5305
5306 #define coff_relocate_section NULL
5307 #ifndef coff_bfd_link_hash_table_create
5308 #define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
5309 #endif
5310 #ifndef coff_bfd_link_add_symbols
5311 #define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols
5312 #endif
5313 #define coff_bfd_final_link _bfd_generic_final_link
5314
5315 #endif /* ! defined (coff_relocate_section) */
5316
5317 #define coff_bfd_link_just_syms _bfd_generic_link_just_syms
5318 #define coff_bfd_copy_link_hash_symbol_type \
5319 _bfd_generic_copy_link_hash_symbol_type
5320 #define coff_bfd_link_split_section _bfd_generic_link_split_section
5321
5322 #define coff_bfd_link_check_relocs _bfd_generic_link_check_relocs
5323
5324 #ifndef coff_start_final_link
5325 #define coff_start_final_link NULL
5326 #endif
5327
5328 #ifndef coff_adjust_symndx
5329 #define coff_adjust_symndx NULL
5330 #endif
5331
5332 #ifndef coff_link_add_one_symbol
5333 #define coff_link_add_one_symbol _bfd_generic_link_add_one_symbol
5334 #endif
5335
5336 #ifndef coff_link_output_has_begun
5337
5338 static bool
5339 coff_link_output_has_begun (bfd * abfd,
5340 struct coff_final_link_info * info ATTRIBUTE_UNUSED)
5341 {
5342 return abfd->output_has_begun;
5343 }
5344 #endif
5345
5346 #ifndef coff_final_link_postscript
5347
5348 static bool
5349 coff_final_link_postscript (bfd * abfd ATTRIBUTE_UNUSED,
5350 struct coff_final_link_info * pfinfo ATTRIBUTE_UNUSED)
5351 {
5352 return true;
5353 }
5354 #endif
5355
5356 #ifndef coff_SWAP_aux_in
5357 #define coff_SWAP_aux_in coff_swap_aux_in
5358 #endif
5359 #ifndef coff_SWAP_sym_in
5360 #define coff_SWAP_sym_in coff_swap_sym_in
5361 #endif
5362 #ifndef coff_SWAP_lineno_in
5363 #define coff_SWAP_lineno_in coff_swap_lineno_in
5364 #endif
5365 #ifndef coff_SWAP_aux_out
5366 #define coff_SWAP_aux_out coff_swap_aux_out
5367 #endif
5368 #ifndef coff_SWAP_sym_out
5369 #define coff_SWAP_sym_out coff_swap_sym_out
5370 #endif
5371 #ifndef coff_SWAP_lineno_out
5372 #define coff_SWAP_lineno_out coff_swap_lineno_out
5373 #endif
5374 #ifndef coff_SWAP_reloc_out
5375 #define coff_SWAP_reloc_out coff_swap_reloc_out
5376 #endif
5377 #ifndef coff_SWAP_filehdr_out
5378 #define coff_SWAP_filehdr_out coff_swap_filehdr_out
5379 #endif
5380 #ifndef coff_SWAP_aouthdr_out
5381 #define coff_SWAP_aouthdr_out coff_swap_aouthdr_out
5382 #endif
5383 #ifndef coff_SWAP_scnhdr_out
5384 #define coff_SWAP_scnhdr_out coff_swap_scnhdr_out
5385 #endif
5386 #ifndef coff_SWAP_reloc_in
5387 #define coff_SWAP_reloc_in coff_swap_reloc_in
5388 #endif
5389 #ifndef coff_SWAP_filehdr_in
5390 #define coff_SWAP_filehdr_in coff_swap_filehdr_in
5391 #endif
5392 #ifndef coff_SWAP_aouthdr_in
5393 #define coff_SWAP_aouthdr_in coff_swap_aouthdr_in
5394 #endif
5395 #ifndef coff_SWAP_scnhdr_in
5396 #define coff_SWAP_scnhdr_in coff_swap_scnhdr_in
5397 #endif
5398
5399 static bfd_coff_backend_data bfd_coff_std_swap_table ATTRIBUTE_UNUSED =
5400 {
5401 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5402 coff_SWAP_aux_out, coff_SWAP_sym_out,
5403 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5404 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5405 coff_SWAP_scnhdr_out,
5406 FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
5407 #ifdef COFF_LONG_FILENAMES
5408 true,
5409 #else
5410 false,
5411 #endif
5412 COFF_DEFAULT_LONG_SECTION_NAMES,
5413 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5414 #ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5415 true,
5416 #else
5417 false,
5418 #endif
5419 #ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5420 4,
5421 #else
5422 2,
5423 #endif
5424 32768,
5425 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5426 coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
5427 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5428 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5429 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5430 coff_classify_symbol, coff_compute_section_file_positions,
5431 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5432 coff_adjust_symndx, coff_link_add_one_symbol,
5433 coff_link_output_has_begun, coff_final_link_postscript,
5434 bfd_pe_print_pdata
5435 };
5436
5437 #ifdef TICOFF
5438 /* COFF0 differs in file/section header size and relocation entry size. */
5439
5440 static bfd_coff_backend_data ticoff0_swap_table =
5441 {
5442 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5443 coff_SWAP_aux_out, coff_SWAP_sym_out,
5444 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5445 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5446 coff_SWAP_scnhdr_out,
5447 FILHSZ_V0, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ_V0, LINESZ, FILNMLEN,
5448 #ifdef COFF_LONG_FILENAMES
5449 true,
5450 #else
5451 false,
5452 #endif
5453 COFF_DEFAULT_LONG_SECTION_NAMES,
5454 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5455 #ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5456 true,
5457 #else
5458 false,
5459 #endif
5460 #ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5461 4,
5462 #else
5463 2,
5464 #endif
5465 32768,
5466 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5467 coff_SWAP_reloc_in, ticoff0_bad_format_hook, coff_set_arch_mach_hook,
5468 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5469 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5470 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5471 coff_classify_symbol, coff_compute_section_file_positions,
5472 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5473 coff_adjust_symndx, coff_link_add_one_symbol,
5474 coff_link_output_has_begun, coff_final_link_postscript,
5475 bfd_pe_print_pdata
5476 };
5477 #endif
5478
5479 #ifdef TICOFF
5480 /* COFF1 differs in section header size. */
5481
5482 static bfd_coff_backend_data ticoff1_swap_table =
5483 {
5484 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5485 coff_SWAP_aux_out, coff_SWAP_sym_out,
5486 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5487 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5488 coff_SWAP_scnhdr_out,
5489 FILHSZ, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
5490 #ifdef COFF_LONG_FILENAMES
5491 true,
5492 #else
5493 false,
5494 #endif
5495 COFF_DEFAULT_LONG_SECTION_NAMES,
5496 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5497 #ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5498 true,
5499 #else
5500 false,
5501 #endif
5502 #ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5503 4,
5504 #else
5505 2,
5506 #endif
5507 32768,
5508 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5509 coff_SWAP_reloc_in, ticoff1_bad_format_hook, coff_set_arch_mach_hook,
5510 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5511 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5512 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5513 coff_classify_symbol, coff_compute_section_file_positions,
5514 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5515 coff_adjust_symndx, coff_link_add_one_symbol,
5516 coff_link_output_has_begun, coff_final_link_postscript,
5517 bfd_pe_print_pdata /* huh */
5518 };
5519 #endif
5520
5521 #ifdef COFF_WITH_PE_BIGOBJ
5522 /* The UID for bigobj files. */
5523
5524 static const char header_bigobj_classid[16] =
5525 {
5526 0xC7, 0xA1, 0xBA, 0xD1,
5527 0xEE, 0xBA,
5528 0xa9, 0x4b,
5529 0xAF, 0x20,
5530 0xFA, 0xF6, 0x6A, 0xA4, 0xDC, 0xB8
5531 };
5532
5533 /* Swap routines. */
5534
5535 static void
5536 coff_bigobj_swap_filehdr_in (bfd * abfd, void * src, void * dst)
5537 {
5538 struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_src =
5539 (struct external_ANON_OBJECT_HEADER_BIGOBJ *) src;
5540 struct internal_filehdr *filehdr_dst = (struct internal_filehdr *) dst;
5541
5542 filehdr_dst->f_magic = H_GET_16 (abfd, filehdr_src->Machine);
5543 filehdr_dst->f_nscns = H_GET_32 (abfd, filehdr_src->NumberOfSections);
5544 filehdr_dst->f_timdat = H_GET_32 (abfd, filehdr_src->TimeDateStamp);
5545 filehdr_dst->f_symptr =
5546 GET_FILEHDR_SYMPTR (abfd, filehdr_src->PointerToSymbolTable);
5547 filehdr_dst->f_nsyms = H_GET_32 (abfd, filehdr_src->NumberOfSymbols);
5548 filehdr_dst->f_opthdr = 0;
5549 filehdr_dst->f_flags = 0;
5550
5551 /* Check other magic numbers. */
5552 if (H_GET_16 (abfd, filehdr_src->Sig1) != IMAGE_FILE_MACHINE_UNKNOWN
5553 || H_GET_16 (abfd, filehdr_src->Sig2) != 0xffff
5554 || H_GET_16 (abfd, filehdr_src->Version) != 2
5555 || memcmp (filehdr_src->ClassID, header_bigobj_classid, 16) != 0)
5556 filehdr_dst->f_opthdr = 0xffff;
5557
5558 /* Note that CLR metadata are ignored. */
5559 }
5560
5561 static unsigned int
5562 coff_bigobj_swap_filehdr_out (bfd *abfd, void * in, void * out)
5563 {
5564 struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
5565 struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_out =
5566 (struct external_ANON_OBJECT_HEADER_BIGOBJ *) out;
5567
5568 memset (filehdr_out, 0, sizeof (*filehdr_out));
5569
5570 H_PUT_16 (abfd, IMAGE_FILE_MACHINE_UNKNOWN, filehdr_out->Sig1);
5571 H_PUT_16 (abfd, 0xffff, filehdr_out->Sig2);
5572 H_PUT_16 (abfd, 2, filehdr_out->Version);
5573 memcpy (filehdr_out->ClassID, header_bigobj_classid, 16);
5574 H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->Machine);
5575 H_PUT_32 (abfd, filehdr_in->f_nscns, filehdr_out->NumberOfSections);
5576 H_PUT_32 (abfd, filehdr_in->f_timdat, filehdr_out->TimeDateStamp);
5577 PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
5578 filehdr_out->PointerToSymbolTable);
5579 H_PUT_32 (abfd, filehdr_in->f_nsyms, filehdr_out->NumberOfSymbols);
5580
5581 return bfd_coff_filhsz (abfd);
5582 }
5583
5584 static void
5585 coff_bigobj_swap_sym_in (bfd * abfd, void * ext1, void * in1)
5586 {
5587 SYMENT_BIGOBJ *ext = (SYMENT_BIGOBJ *) ext1;
5588 struct internal_syment *in = (struct internal_syment *) in1;
5589
5590 if (ext->e.e_name[0] == 0)
5591 {
5592 in->_n._n_n._n_zeroes = 0;
5593 in->_n._n_n._n_offset = H_GET_32 (abfd, ext->e.e.e_offset);
5594 }
5595 else
5596 {
5597 #if SYMNMLEN != E_SYMNMLEN
5598 #error we need to cope with truncating or extending SYMNMLEN
5599 #else
5600 memcpy (in->_n._n_name, ext->e.e_name, SYMNMLEN);
5601 #endif
5602 }
5603
5604 in->n_value = H_GET_32 (abfd, ext->e_value);
5605 BFD_ASSERT (sizeof (in->n_scnum) >= 4);
5606 in->n_scnum = H_GET_32 (abfd, ext->e_scnum);
5607 in->n_type = H_GET_16 (abfd, ext->e_type);
5608 in->n_sclass = H_GET_8 (abfd, ext->e_sclass);
5609 in->n_numaux = H_GET_8 (abfd, ext->e_numaux);
5610 }
5611
5612 static unsigned int
5613 coff_bigobj_swap_sym_out (bfd * abfd, void * inp, void * extp)
5614 {
5615 struct internal_syment *in = (struct internal_syment *) inp;
5616 SYMENT_BIGOBJ *ext = (SYMENT_BIGOBJ *) extp;
5617
5618 if (in->_n._n_name[0] == 0)
5619 {
5620 H_PUT_32 (abfd, 0, ext->e.e.e_zeroes);
5621 H_PUT_32 (abfd, in->_n._n_n._n_offset, ext->e.e.e_offset);
5622 }
5623 else
5624 {
5625 #if SYMNMLEN != E_SYMNMLEN
5626 #error we need to cope with truncating or extending SYMNMLEN
5627 #else
5628 memcpy (ext->e.e_name, in->_n._n_name, SYMNMLEN);
5629 #endif
5630 }
5631
5632 H_PUT_32 (abfd, in->n_value, ext->e_value);
5633 H_PUT_32 (abfd, in->n_scnum, ext->e_scnum);
5634
5635 H_PUT_16 (abfd, in->n_type, ext->e_type);
5636 H_PUT_8 (abfd, in->n_sclass, ext->e_sclass);
5637 H_PUT_8 (abfd, in->n_numaux, ext->e_numaux);
5638
5639 return SYMESZ_BIGOBJ;
5640 }
5641
5642 static void
5643 coff_bigobj_swap_aux_in (bfd *abfd,
5644 void * ext1,
5645 int type,
5646 int in_class,
5647 int indx,
5648 int numaux,
5649 void * in1)
5650 {
5651 AUXENT_BIGOBJ *ext = (AUXENT_BIGOBJ *) ext1;
5652 union internal_auxent *in = (union internal_auxent *) in1;
5653
5654 /* Make sure that all fields in the aux structure are
5655 initialised. */
5656 memset (in, 0, sizeof * in);
5657 switch (in_class)
5658 {
5659 case C_FILE:
5660 if (numaux > 1)
5661 {
5662 if (indx == 0)
5663 memcpy (in->x_file.x_fname, ext->File.Name,
5664 numaux * sizeof (AUXENT_BIGOBJ));
5665 }
5666 else
5667 memcpy (in->x_file.x_fname, ext->File.Name, sizeof (ext->File.Name));
5668 break;
5669
5670 case C_STAT:
5671 case C_LEAFSTAT:
5672 case C_HIDDEN:
5673 if (type == T_NULL)
5674 {
5675 in->x_scn.x_scnlen = H_GET_32 (abfd, ext->Section.Length);
5676 in->x_scn.x_nreloc =
5677 H_GET_16 (abfd, ext->Section.NumberOfRelocations);
5678 in->x_scn.x_nlinno =
5679 H_GET_16 (abfd, ext->Section.NumberOfLinenumbers);
5680 in->x_scn.x_checksum = H_GET_32 (abfd, ext->Section.Checksum);
5681 in->x_scn.x_associated = H_GET_16 (abfd, ext->Section.Number)
5682 | (H_GET_16 (abfd, ext->Section.HighNumber) << 16);
5683 in->x_scn.x_comdat = H_GET_8 (abfd, ext->Section.Selection);
5684 return;
5685 }
5686 break;
5687
5688 default:
5689 in->x_sym.x_tagndx.l = H_GET_32 (abfd, ext->Sym.WeakDefaultSymIndex);
5690 /* Characteristics is ignored. */
5691 break;
5692 }
5693 }
5694
5695 static unsigned int
5696 coff_bigobj_swap_aux_out (bfd * abfd,
5697 void * inp,
5698 int type,
5699 int in_class,
5700 int indx ATTRIBUTE_UNUSED,
5701 int numaux ATTRIBUTE_UNUSED,
5702 void * extp)
5703 {
5704 union internal_auxent * in = (union internal_auxent *) inp;
5705 AUXENT_BIGOBJ *ext = (AUXENT_BIGOBJ *) extp;
5706
5707 memset (ext, 0, AUXESZ);
5708
5709 switch (in_class)
5710 {
5711 case C_FILE:
5712 memcpy (ext->File.Name, in->x_file.x_fname, sizeof (ext->File.Name));
5713
5714 return AUXESZ;
5715
5716 case C_STAT:
5717 case C_LEAFSTAT:
5718 case C_HIDDEN:
5719 if (type == T_NULL)
5720 {
5721 H_PUT_32 (abfd, in->x_scn.x_scnlen, ext->Section.Length);
5722 H_PUT_16 (abfd, in->x_scn.x_nreloc,
5723 ext->Section.NumberOfRelocations);
5724 H_PUT_16 (abfd, in->x_scn.x_nlinno,
5725 ext->Section.NumberOfLinenumbers);
5726 H_PUT_32 (abfd, in->x_scn.x_checksum, ext->Section.Checksum);
5727 H_PUT_16 (abfd, in->x_scn.x_associated & 0xffff,
5728 ext->Section.Number);
5729 H_PUT_16 (abfd, (in->x_scn.x_associated >> 16),
5730 ext->Section.HighNumber);
5731 H_PUT_8 (abfd, in->x_scn.x_comdat, ext->Section.Selection);
5732 return AUXESZ;
5733 }
5734 break;
5735 }
5736
5737 H_PUT_32 (abfd, in->x_sym.x_tagndx.l, ext->Sym.WeakDefaultSymIndex);
5738 H_PUT_32 (abfd, 1, ext->Sym.WeakSearchType);
5739
5740 return AUXESZ;
5741 }
5742
5743 static bfd_coff_backend_data bigobj_swap_table =
5744 {
5745 coff_bigobj_swap_aux_in, coff_bigobj_swap_sym_in, coff_SWAP_lineno_in,
5746 coff_bigobj_swap_aux_out, coff_bigobj_swap_sym_out,
5747 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5748 coff_bigobj_swap_filehdr_out, coff_SWAP_aouthdr_out,
5749 coff_SWAP_scnhdr_out,
5750 FILHSZ_BIGOBJ, AOUTSZ, SCNHSZ, SYMESZ_BIGOBJ, AUXESZ_BIGOBJ,
5751 RELSZ, LINESZ, FILNMLEN_BIGOBJ,
5752 true,
5753 COFF_DEFAULT_LONG_SECTION_NAMES,
5754 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5755 false,
5756 2,
5757 1U << 31,
5758 coff_bigobj_swap_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5759 coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
5760 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5761 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5762 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5763 coff_classify_symbol, coff_compute_section_file_positions,
5764 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5765 coff_adjust_symndx, coff_link_add_one_symbol,
5766 coff_link_output_has_begun, coff_final_link_postscript,
5767 bfd_pe_print_pdata /* huh */
5768 };
5769
5770 #endif /* COFF_WITH_PE_BIGOBJ */
5771
5772 #ifndef coff_close_and_cleanup
5773 #define coff_close_and_cleanup _bfd_coff_close_and_cleanup
5774 #endif
5775
5776 #ifndef coff_bfd_free_cached_info
5777 #define coff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
5778 #endif
5779
5780 #ifndef coff_get_section_contents
5781 #define coff_get_section_contents _bfd_generic_get_section_contents
5782 #endif
5783
5784 #ifndef coff_bfd_copy_private_symbol_data
5785 #define coff_bfd_copy_private_symbol_data _bfd_generic_bfd_copy_private_symbol_data
5786 #endif
5787
5788 #ifndef coff_bfd_copy_private_header_data
5789 #define coff_bfd_copy_private_header_data _bfd_generic_bfd_copy_private_header_data
5790 #endif
5791
5792 #ifndef coff_bfd_copy_private_section_data
5793 #define coff_bfd_copy_private_section_data _bfd_generic_bfd_copy_private_section_data
5794 #endif
5795
5796 #ifndef coff_bfd_copy_private_bfd_data
5797 #define coff_bfd_copy_private_bfd_data _bfd_generic_bfd_copy_private_bfd_data
5798 #endif
5799
5800 #ifndef coff_bfd_merge_private_bfd_data
5801 #define coff_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data
5802 #endif
5803
5804 #ifndef coff_bfd_set_private_flags
5805 #define coff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
5806 #endif
5807
5808 #ifndef coff_bfd_print_private_bfd_data
5809 #define coff_bfd_print_private_bfd_data _bfd_generic_bfd_print_private_bfd_data
5810 #endif
5811
5812 #ifndef coff_bfd_is_local_label_name
5813 #define coff_bfd_is_local_label_name _bfd_coff_is_local_label_name
5814 #endif
5815
5816 #ifndef coff_bfd_is_target_special_symbol
5817 #define coff_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false
5818 #endif
5819
5820 #ifndef coff_read_minisymbols
5821 #define coff_read_minisymbols _bfd_generic_read_minisymbols
5822 #endif
5823
5824 #ifndef coff_minisymbol_to_symbol
5825 #define coff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
5826 #endif
5827
5828 /* The reloc lookup routine must be supplied by each individual COFF
5829 backend. */
5830 #ifndef coff_bfd_reloc_type_lookup
5831 #define coff_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
5832 #endif
5833 #ifndef coff_bfd_reloc_name_lookup
5834 #define coff_bfd_reloc_name_lookup _bfd_norelocs_bfd_reloc_name_lookup
5835 #endif
5836
5837 #ifndef coff_bfd_get_relocated_section_contents
5838 #define coff_bfd_get_relocated_section_contents \
5839 bfd_generic_get_relocated_section_contents
5840 #endif
5841
5842 #ifndef coff_bfd_relax_section
5843 #define coff_bfd_relax_section bfd_generic_relax_section
5844 #endif
5845
5846 #ifndef coff_bfd_gc_sections
5847 #define coff_bfd_gc_sections bfd_coff_gc_sections
5848 #endif
5849
5850 #ifndef coff_bfd_lookup_section_flags
5851 #define coff_bfd_lookup_section_flags bfd_generic_lookup_section_flags
5852 #endif
5853
5854 #ifndef coff_bfd_merge_sections
5855 #define coff_bfd_merge_sections bfd_generic_merge_sections
5856 #endif
5857
5858 #ifndef coff_bfd_is_group_section
5859 #define coff_bfd_is_group_section bfd_generic_is_group_section
5860 #endif
5861
5862 #ifndef coff_bfd_group_name
5863 #define coff_bfd_group_name bfd_coff_group_name
5864 #endif
5865
5866 #ifndef coff_bfd_discard_group
5867 #define coff_bfd_discard_group bfd_generic_discard_group
5868 #endif
5869
5870 #ifndef coff_section_already_linked
5871 #define coff_section_already_linked \
5872 _bfd_coff_section_already_linked
5873 #endif
5874
5875 #ifndef coff_bfd_define_common_symbol
5876 #define coff_bfd_define_common_symbol bfd_generic_define_common_symbol
5877 #endif
5878
5879 #ifndef coff_bfd_link_hide_symbol
5880 #define coff_bfd_link_hide_symbol _bfd_generic_link_hide_symbol
5881 #endif
5882
5883 #ifndef coff_bfd_define_start_stop
5884 #define coff_bfd_define_start_stop bfd_generic_define_start_stop
5885 #endif
5886
5887 #define CREATE_BIG_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
5888 const bfd_target VAR = \
5889 { \
5890 NAME , \
5891 bfd_target_coff_flavour, \
5892 BFD_ENDIAN_BIG, /* Data byte order is big. */ \
5893 BFD_ENDIAN_BIG, /* Header byte order is big. */ \
5894 /* object flags */ \
5895 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
5896 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
5897 /* section flags */ \
5898 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
5899 UNDER, /* Leading symbol underscore. */ \
5900 '/', /* AR_pad_char. */ \
5901 15, /* AR_max_namelen. */ \
5902 0, /* match priority. */ \
5903 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */ \
5904 \
5905 /* Data conversion functions. */ \
5906 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5907 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5908 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
5909 \
5910 /* Header conversion functions. */ \
5911 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5912 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5913 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
5914 \
5915 { /* bfd_check_format. */ \
5916 _bfd_dummy_target, \
5917 coff_object_p, \
5918 bfd_generic_archive_p, \
5919 _bfd_dummy_target \
5920 }, \
5921 { /* bfd_set_format. */ \
5922 _bfd_bool_bfd_false_error, \
5923 coff_mkobject, \
5924 _bfd_generic_mkarchive, \
5925 _bfd_bool_bfd_false_error \
5926 }, \
5927 { /* bfd_write_contents. */ \
5928 _bfd_bool_bfd_false_error, \
5929 coff_write_object_contents, \
5930 _bfd_write_archive_contents, \
5931 _bfd_bool_bfd_false_error \
5932 }, \
5933 \
5934 BFD_JUMP_TABLE_GENERIC (coff), \
5935 BFD_JUMP_TABLE_COPY (coff), \
5936 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
5937 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
5938 BFD_JUMP_TABLE_SYMBOLS (coff), \
5939 BFD_JUMP_TABLE_RELOCS (coff), \
5940 BFD_JUMP_TABLE_WRITE (coff), \
5941 BFD_JUMP_TABLE_LINK (coff), \
5942 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
5943 \
5944 ALTERNATIVE, \
5945 \
5946 SWAP_TABLE \
5947 };
5948
5949 #define CREATE_BIGHDR_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
5950 const bfd_target VAR = \
5951 { \
5952 NAME , \
5953 bfd_target_coff_flavour, \
5954 BFD_ENDIAN_LITTLE, /* Data byte order is little. */ \
5955 BFD_ENDIAN_BIG, /* Header byte order is big. */ \
5956 /* object flags */ \
5957 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
5958 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
5959 /* section flags */ \
5960 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
5961 UNDER, /* Leading symbol underscore. */ \
5962 '/', /* AR_pad_char. */ \
5963 15, /* AR_max_namelen. */ \
5964 0, /* match priority. */ \
5965 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */ \
5966 \
5967 /* Data conversion functions. */ \
5968 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5969 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5970 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
5971 \
5972 /* Header conversion functions. */ \
5973 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5974 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5975 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
5976 \
5977 { /* bfd_check_format. */ \
5978 _bfd_dummy_target, \
5979 coff_object_p, \
5980 bfd_generic_archive_p, \
5981 _bfd_dummy_target \
5982 }, \
5983 { /* bfd_set_format. */ \
5984 _bfd_bool_bfd_false_error, \
5985 coff_mkobject, \
5986 _bfd_generic_mkarchive, \
5987 _bfd_bool_bfd_false_error \
5988 }, \
5989 { /* bfd_write_contents. */ \
5990 _bfd_bool_bfd_false_error, \
5991 coff_write_object_contents, \
5992 _bfd_write_archive_contents, \
5993 _bfd_bool_bfd_false_error \
5994 }, \
5995 \
5996 BFD_JUMP_TABLE_GENERIC (coff), \
5997 BFD_JUMP_TABLE_COPY (coff), \
5998 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
5999 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
6000 BFD_JUMP_TABLE_SYMBOLS (coff), \
6001 BFD_JUMP_TABLE_RELOCS (coff), \
6002 BFD_JUMP_TABLE_WRITE (coff), \
6003 BFD_JUMP_TABLE_LINK (coff), \
6004 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
6005 \
6006 ALTERNATIVE, \
6007 \
6008 SWAP_TABLE \
6009 };
6010
6011 #define CREATE_LITTLE_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
6012 const bfd_target VAR = \
6013 { \
6014 NAME , \
6015 bfd_target_coff_flavour, \
6016 BFD_ENDIAN_LITTLE, /* Data byte order is little. */ \
6017 BFD_ENDIAN_LITTLE, /* Header byte order is little. */ \
6018 /* object flags */ \
6019 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
6020 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
6021 /* section flags */ \
6022 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
6023 UNDER, /* Leading symbol underscore. */ \
6024 '/', /* AR_pad_char. */ \
6025 15, /* AR_max_namelen. */ \
6026 0, /* match priority. */ \
6027 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */ \
6028 \
6029 /* Data conversion functions. */ \
6030 bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
6031 bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
6032 bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
6033 /* Header conversion functions. */ \
6034 bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
6035 bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
6036 bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
6037 \
6038 { /* bfd_check_format. */ \
6039 _bfd_dummy_target, \
6040 coff_object_p, \
6041 bfd_generic_archive_p, \
6042 _bfd_dummy_target \
6043 }, \
6044 { /* bfd_set_format. */ \
6045 _bfd_bool_bfd_false_error, \
6046 coff_mkobject, \
6047 _bfd_generic_mkarchive, \
6048 _bfd_bool_bfd_false_error \
6049 }, \
6050 { /* bfd_write_contents. */ \
6051 _bfd_bool_bfd_false_error, \
6052 coff_write_object_contents, \
6053 _bfd_write_archive_contents, \
6054 _bfd_bool_bfd_false_error \
6055 }, \
6056 \
6057 BFD_JUMP_TABLE_GENERIC (coff), \
6058 BFD_JUMP_TABLE_COPY (coff), \
6059 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
6060 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
6061 BFD_JUMP_TABLE_SYMBOLS (coff), \
6062 BFD_JUMP_TABLE_RELOCS (coff), \
6063 BFD_JUMP_TABLE_WRITE (coff), \
6064 BFD_JUMP_TABLE_LINK (coff), \
6065 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
6066 \
6067 ALTERNATIVE, \
6068 \
6069 SWAP_TABLE \
6070 };