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