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