gprofng: fix build with -mx32
[binutils-gdb/blckswan.git] / bfd / coffgen.c
blobc693cfc00cb5a140f950b8fada71e21ffa016b5d
1 /* Support for the generic parts of COFF, for BFD.
2 Copyright (C) 1990-2022 Free Software Foundation, Inc.
3 Written by Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
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.
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.
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. */
22 /* Most of this hacked by Steve Chamberlain, sac@cygnus.com.
23 Split out of coffcode.h by Ian Taylor, ian@cygnus.com. */
25 /* This file contains COFF code that is not dependent on any
26 particular COFF target. There is only one version of this file in
27 libbfd.a, so no target specific code may be put in here. Or, to
28 put it another way,
30 ********** DO NOT PUT TARGET SPECIFIC CODE IN THIS FILE **********
32 If you need to add some target specific behaviour, add a new hook
33 function to bfd_coff_backend_data.
35 Some of these functions are also called by the ECOFF routines.
36 Those functions may not use any COFF specific information, such as
37 coff_data (abfd). */
39 #include "sysdep.h"
40 #include <limits.h>
41 #include "bfd.h"
42 #include "libbfd.h"
43 #include "coff/internal.h"
44 #include "libcoff.h"
46 /* Take a section header read from a coff file (in HOST byte order),
47 and make a BFD "section" out of it. This is used by ECOFF. */
49 static bool
50 make_a_section_from_file (bfd *abfd,
51 struct internal_scnhdr *hdr,
52 unsigned int target_index)
54 asection *return_section;
55 char *name;
56 bool result = true;
57 flagword flags;
59 name = NULL;
61 /* Handle long section names as in PE. On reading, we want to
62 accept long names if the format permits them at all, regardless
63 of the current state of the flag that dictates if we would generate
64 them in outputs; this construct checks if that is the case by
65 attempting to set the flag, without changing its state; the call
66 will fail for formats that do not support long names at all. */
67 if (bfd_coff_set_long_section_names (abfd, bfd_coff_long_section_names (abfd))
68 && hdr->s_name[0] == '/')
70 char buf[SCNNMLEN];
71 long strindex;
72 char *p;
73 const char *strings;
75 /* Flag that this BFD uses long names, even though the format might
76 expect them to be off by default. This won't directly affect the
77 format of any output BFD created from this one, but the information
78 can be used to decide what to do. */
79 bfd_coff_set_long_section_names (abfd, true);
80 memcpy (buf, hdr->s_name + 1, SCNNMLEN - 1);
81 buf[SCNNMLEN - 1] = '\0';
82 strindex = strtol (buf, &p, 10);
83 if (*p == '\0' && strindex >= 0)
85 strings = _bfd_coff_read_string_table (abfd);
86 if (strings == NULL)
87 return false;
88 if ((bfd_size_type)(strindex + 2) >= obj_coff_strings_len (abfd))
89 return false;
90 strings += strindex;
91 name = (char *) bfd_alloc (abfd,
92 (bfd_size_type) strlen (strings) + 1 + 1);
93 if (name == NULL)
94 return false;
95 strcpy (name, strings);
99 if (name == NULL)
101 /* Assorted wastage to null-terminate the name, thanks AT&T! */
102 name = (char *) bfd_alloc (abfd,
103 (bfd_size_type) sizeof (hdr->s_name) + 1 + 1);
104 if (name == NULL)
105 return false;
106 strncpy (name, (char *) &hdr->s_name[0], sizeof (hdr->s_name));
107 name[sizeof (hdr->s_name)] = 0;
110 return_section = bfd_make_section_anyway (abfd, name);
111 if (return_section == NULL)
112 return false;
114 return_section->vma = hdr->s_vaddr;
115 return_section->lma = hdr->s_paddr;
116 return_section->size = hdr->s_size;
117 return_section->filepos = hdr->s_scnptr;
118 return_section->rel_filepos = hdr->s_relptr;
119 return_section->reloc_count = hdr->s_nreloc;
121 bfd_coff_set_alignment_hook (abfd, return_section, hdr);
123 return_section->line_filepos = hdr->s_lnnoptr;
125 return_section->lineno_count = hdr->s_nlnno;
126 return_section->userdata = NULL;
127 return_section->next = NULL;
128 return_section->target_index = target_index;
130 if (! bfd_coff_styp_to_sec_flags_hook (abfd, hdr, name, return_section,
131 & flags))
132 result = false;
134 return_section->flags = flags;
136 /* At least on i386-coff, the line number count for a shared library
137 section must be ignored. */
138 if ((return_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
139 return_section->lineno_count = 0;
141 if (hdr->s_nreloc != 0)
142 return_section->flags |= SEC_RELOC;
143 /* FIXME: should this check 'hdr->s_size > 0'. */
144 if (hdr->s_scnptr != 0)
145 return_section->flags |= SEC_HAS_CONTENTS;
147 /* Compress/decompress DWARF debug sections with names: .debug_* and
148 .zdebug_*, after the section flags is set. */
149 if ((flags & SEC_DEBUGGING)
150 && strlen (name) > 7
151 && ((name[1] == 'd' && name[6] == '_')
152 || (strlen (name) > 8 && name[1] == 'z' && name[7] == '_')))
154 enum { nothing, compress, decompress } action = nothing;
155 char *new_name = NULL;
157 if (bfd_is_section_compressed (abfd, return_section))
159 /* Compressed section. Check if we should decompress. */
160 if ((abfd->flags & BFD_DECOMPRESS))
161 action = decompress;
163 else if (!bfd_is_section_compressed (abfd, return_section))
165 /* Normal section. Check if we should compress. */
166 if ((abfd->flags & BFD_COMPRESS) && return_section->size != 0)
167 action = compress;
170 switch (action)
172 case nothing:
173 break;
174 case compress:
175 if (!bfd_init_section_compress_status (abfd, return_section))
177 _bfd_error_handler
178 /* xgettext: c-format */
179 (_("%pB: unable to initialize compress status for section %s"),
180 abfd, name);
181 return false;
183 if (return_section->compress_status == COMPRESS_SECTION_DONE)
185 if (name[1] != 'z')
187 unsigned int len = strlen (name);
189 new_name = bfd_alloc (abfd, len + 2);
190 if (new_name == NULL)
191 return false;
192 new_name[0] = '.';
193 new_name[1] = 'z';
194 memcpy (new_name + 2, name + 1, len);
197 break;
198 case decompress:
199 if (!bfd_init_section_decompress_status (abfd, return_section))
201 _bfd_error_handler
202 /* xgettext: c-format */
203 (_("%pB: unable to initialize decompress status for section %s"),
204 abfd, name);
205 return false;
207 if (name[1] == 'z')
209 unsigned int len = strlen (name);
211 new_name = bfd_alloc (abfd, len);
212 if (new_name == NULL)
213 return false;
214 new_name[0] = '.';
215 memcpy (new_name + 1, name + 2, len - 1);
217 break;
219 if (new_name != NULL)
220 bfd_rename_section (return_section, new_name);
223 return result;
226 /* Read in a COFF object and make it into a BFD. This is used by
227 ECOFF as well. */
228 bfd_cleanup
229 coff_real_object_p (bfd *,
230 unsigned,
231 struct internal_filehdr *,
232 struct internal_aouthdr *);
233 bfd_cleanup
234 coff_real_object_p (bfd *abfd,
235 unsigned nscns,
236 struct internal_filehdr *internal_f,
237 struct internal_aouthdr *internal_a)
239 flagword oflags = abfd->flags;
240 bfd_vma ostart = bfd_get_start_address (abfd);
241 void * tdata;
242 void * tdata_save;
243 bfd_size_type readsize; /* Length of file_info. */
244 unsigned int scnhsz;
245 char *external_sections;
247 if (!(internal_f->f_flags & F_RELFLG))
248 abfd->flags |= HAS_RELOC;
249 if ((internal_f->f_flags & F_EXEC))
250 abfd->flags |= EXEC_P;
251 if (!(internal_f->f_flags & F_LNNO))
252 abfd->flags |= HAS_LINENO;
253 if (!(internal_f->f_flags & F_LSYMS))
254 abfd->flags |= HAS_LOCALS;
256 /* FIXME: How can we set D_PAGED correctly? */
257 if ((internal_f->f_flags & F_EXEC) != 0)
258 abfd->flags |= D_PAGED;
260 abfd->symcount = internal_f->f_nsyms;
261 if (internal_f->f_nsyms)
262 abfd->flags |= HAS_SYMS;
264 if (internal_a != (struct internal_aouthdr *) NULL)
265 abfd->start_address = internal_a->entry;
266 else
267 abfd->start_address = 0;
269 /* Set up the tdata area. ECOFF uses its own routine, and overrides
270 abfd->flags. */
271 tdata_save = abfd->tdata.any;
272 tdata = bfd_coff_mkobject_hook (abfd, (void *) internal_f, (void *) internal_a);
273 if (tdata == NULL)
274 goto fail2;
276 scnhsz = bfd_coff_scnhsz (abfd);
277 readsize = (bfd_size_type) nscns * scnhsz;
278 external_sections = (char *) _bfd_alloc_and_read (abfd, readsize, readsize);
279 if (!external_sections)
280 goto fail;
282 /* Set the arch/mach *before* swapping in sections; section header swapping
283 may depend on arch/mach info. */
284 if (! bfd_coff_set_arch_mach_hook (abfd, (void *) internal_f))
285 goto fail;
287 /* Now copy data as required; construct all asections etc. */
288 if (nscns != 0)
290 unsigned int i;
291 for (i = 0; i < nscns; i++)
293 struct internal_scnhdr tmp;
294 bfd_coff_swap_scnhdr_in (abfd,
295 (void *) (external_sections + i * scnhsz),
296 (void *) & tmp);
297 if (! make_a_section_from_file (abfd, &tmp, i + 1))
298 goto fail;
302 _bfd_coff_free_symbols (abfd);
303 return _bfd_no_cleanup;
305 fail:
306 _bfd_coff_free_symbols (abfd);
307 bfd_release (abfd, tdata);
308 fail2:
309 abfd->tdata.any = tdata_save;
310 abfd->flags = oflags;
311 abfd->start_address = ostart;
312 return NULL;
315 /* Turn a COFF file into a BFD, but fail with bfd_error_wrong_format if it is
316 not a COFF file. This is also used by ECOFF. */
318 bfd_cleanup
319 coff_object_p (bfd *abfd)
321 bfd_size_type filhsz;
322 bfd_size_type aoutsz;
323 unsigned int nscns;
324 void * filehdr;
325 struct internal_filehdr internal_f;
326 struct internal_aouthdr internal_a;
328 /* Figure out how much to read. */
329 filhsz = bfd_coff_filhsz (abfd);
330 aoutsz = bfd_coff_aoutsz (abfd);
332 filehdr = _bfd_alloc_and_read (abfd, filhsz, filhsz);
333 if (filehdr == NULL)
335 if (bfd_get_error () != bfd_error_system_call)
336 bfd_set_error (bfd_error_wrong_format);
337 return NULL;
339 bfd_coff_swap_filehdr_in (abfd, filehdr, &internal_f);
340 bfd_release (abfd, filehdr);
342 /* The XCOFF format has two sizes for the f_opthdr. SMALL_AOUTSZ
343 (less than aoutsz) used in object files and AOUTSZ (equal to
344 aoutsz) in executables. The bfd_coff_swap_aouthdr_in function
345 expects this header to be aoutsz bytes in length, so we use that
346 value in the call to bfd_alloc below. But we must be careful to
347 only read in f_opthdr bytes in the call to bfd_bread. We should
348 also attempt to catch corrupt or non-COFF binaries with a strange
349 value for f_opthdr. */
350 if (! bfd_coff_bad_format_hook (abfd, &internal_f)
351 || internal_f.f_opthdr > aoutsz)
353 bfd_set_error (bfd_error_wrong_format);
354 return NULL;
356 nscns = internal_f.f_nscns;
358 if (internal_f.f_opthdr)
360 void * opthdr;
362 opthdr = _bfd_alloc_and_read (abfd, aoutsz, internal_f.f_opthdr);
363 if (opthdr == NULL)
364 return NULL;
365 /* PR 17512: file: 11056-1136-0.004. */
366 if (internal_f.f_opthdr < aoutsz)
367 memset (((char *) opthdr) + internal_f.f_opthdr, 0,
368 aoutsz - internal_f.f_opthdr);
370 bfd_coff_swap_aouthdr_in (abfd, opthdr, (void *) &internal_a);
371 bfd_release (abfd, opthdr);
374 return coff_real_object_p (abfd, nscns, &internal_f,
375 (internal_f.f_opthdr != 0
376 ? &internal_a
377 : (struct internal_aouthdr *) NULL));
380 /* Get the BFD section from a COFF symbol section number. */
382 asection *
383 coff_section_from_bfd_index (bfd *abfd, int section_index)
385 struct bfd_section *answer = abfd->sections;
387 if (section_index == N_ABS)
388 return bfd_abs_section_ptr;
389 if (section_index == N_UNDEF)
390 return bfd_und_section_ptr;
391 if (section_index == N_DEBUG)
392 return bfd_abs_section_ptr;
394 while (answer)
396 if (answer->target_index == section_index)
397 return answer;
398 answer = answer->next;
401 /* We should not reach this point, but the SCO 3.2v4 /lib/libc_s.a
402 has a bad symbol table in biglitpow.o. */
403 return bfd_und_section_ptr;
406 /* Get the upper bound of a COFF symbol table. */
408 long
409 coff_get_symtab_upper_bound (bfd *abfd)
411 if (!bfd_coff_slurp_symbol_table (abfd))
412 return -1;
414 return (bfd_get_symcount (abfd) + 1) * (sizeof (coff_symbol_type *));
417 /* Canonicalize a COFF symbol table. */
419 long
420 coff_canonicalize_symtab (bfd *abfd, asymbol **alocation)
422 unsigned int counter;
423 coff_symbol_type *symbase;
424 coff_symbol_type **location = (coff_symbol_type **) alocation;
426 if (!bfd_coff_slurp_symbol_table (abfd))
427 return -1;
429 symbase = obj_symbols (abfd);
430 counter = bfd_get_symcount (abfd);
431 while (counter-- > 0)
432 *location++ = symbase++;
434 *location = NULL;
436 return bfd_get_symcount (abfd);
439 /* Get the name of a symbol. The caller must pass in a buffer of size
440 >= SYMNMLEN + 1. */
442 const char *
443 _bfd_coff_internal_syment_name (bfd *abfd,
444 const struct internal_syment *sym,
445 char *buf)
447 /* FIXME: It's not clear this will work correctly if sizeof
448 (_n_zeroes) != 4. */
449 if (sym->_n._n_n._n_zeroes != 0
450 || sym->_n._n_n._n_offset == 0)
452 memcpy (buf, sym->_n._n_name, SYMNMLEN);
453 buf[SYMNMLEN] = '\0';
454 return buf;
456 else
458 const char *strings;
460 BFD_ASSERT (sym->_n._n_n._n_offset >= STRING_SIZE_SIZE);
461 strings = obj_coff_strings (abfd);
462 if (strings == NULL)
464 strings = _bfd_coff_read_string_table (abfd);
465 if (strings == NULL)
466 return NULL;
468 /* PR 17910: Only check for string overflow if the length has been set.
469 Some DLLs, eg those produced by Visual Studio, may not set the length field. */
470 if (obj_coff_strings_len (abfd) > 0
471 && sym->_n._n_n._n_offset >= obj_coff_strings_len (abfd))
472 return NULL;
473 return strings + sym->_n._n_n._n_offset;
477 /* Read in and swap the relocs. This returns a buffer holding the
478 relocs for section SEC in file ABFD. If CACHE is TRUE and
479 INTERNAL_RELOCS is NULL, the relocs read in will be saved in case
480 the function is called again. If EXTERNAL_RELOCS is not NULL, it
481 is a buffer large enough to hold the unswapped relocs. If
482 INTERNAL_RELOCS is not NULL, it is a buffer large enough to hold
483 the swapped relocs. If REQUIRE_INTERNAL is TRUE, then the return
484 value must be INTERNAL_RELOCS. The function returns NULL on error. */
486 struct internal_reloc *
487 _bfd_coff_read_internal_relocs (bfd *abfd,
488 asection *sec,
489 bool cache,
490 bfd_byte *external_relocs,
491 bool require_internal,
492 struct internal_reloc *internal_relocs)
494 bfd_size_type relsz;
495 bfd_byte *free_external = NULL;
496 struct internal_reloc *free_internal = NULL;
497 bfd_byte *erel;
498 bfd_byte *erel_end;
499 struct internal_reloc *irel;
500 bfd_size_type amt;
502 if (sec->reloc_count == 0)
503 return internal_relocs; /* Nothing to do. */
505 if (coff_section_data (abfd, sec) != NULL
506 && coff_section_data (abfd, sec)->relocs != NULL)
508 if (! require_internal)
509 return coff_section_data (abfd, sec)->relocs;
510 memcpy (internal_relocs, coff_section_data (abfd, sec)->relocs,
511 sec->reloc_count * sizeof (struct internal_reloc));
512 return internal_relocs;
515 relsz = bfd_coff_relsz (abfd);
517 amt = sec->reloc_count * relsz;
518 if (external_relocs == NULL)
520 free_external = (bfd_byte *) bfd_malloc (amt);
521 if (free_external == NULL)
522 goto error_return;
523 external_relocs = free_external;
526 if (bfd_seek (abfd, sec->rel_filepos, SEEK_SET) != 0
527 || bfd_bread (external_relocs, amt, abfd) != amt)
528 goto error_return;
530 if (internal_relocs == NULL)
532 amt = sec->reloc_count;
533 amt *= sizeof (struct internal_reloc);
534 free_internal = (struct internal_reloc *) bfd_malloc (amt);
535 if (free_internal == NULL)
536 goto error_return;
537 internal_relocs = free_internal;
540 /* Swap in the relocs. */
541 erel = external_relocs;
542 erel_end = erel + relsz * sec->reloc_count;
543 irel = internal_relocs;
544 for (; erel < erel_end; erel += relsz, irel++)
545 bfd_coff_swap_reloc_in (abfd, (void *) erel, (void *) irel);
547 free (free_external);
548 free_external = NULL;
550 if (cache && free_internal != NULL)
552 if (coff_section_data (abfd, sec) == NULL)
554 amt = sizeof (struct coff_section_tdata);
555 sec->used_by_bfd = bfd_zalloc (abfd, amt);
556 if (sec->used_by_bfd == NULL)
557 goto error_return;
558 coff_section_data (abfd, sec)->contents = NULL;
560 coff_section_data (abfd, sec)->relocs = free_internal;
563 return internal_relocs;
565 error_return:
566 free (free_external);
567 free (free_internal);
568 return NULL;
571 /* Set lineno_count for the output sections of a COFF file. */
574 coff_count_linenumbers (bfd *abfd)
576 unsigned int limit = bfd_get_symcount (abfd);
577 unsigned int i;
578 int total = 0;
579 asymbol **p;
580 asection *s;
582 if (limit == 0)
584 /* This may be from the backend linker, in which case the
585 lineno_count in the sections is correct. */
586 for (s = abfd->sections; s != NULL; s = s->next)
587 total += s->lineno_count;
588 return total;
591 for (s = abfd->sections; s != NULL; s = s->next)
592 BFD_ASSERT (s->lineno_count == 0);
594 for (p = abfd->outsymbols, i = 0; i < limit; i++, p++)
596 asymbol *q_maybe = *p;
598 if (bfd_family_coff (bfd_asymbol_bfd (q_maybe)))
600 coff_symbol_type *q = coffsymbol (q_maybe);
602 /* The AIX 4.1 compiler can sometimes generate line numbers
603 attached to debugging symbols. We try to simply ignore
604 those here. */
605 if (q->lineno != NULL
606 && q->symbol.section->owner != NULL)
608 /* This symbol has line numbers. Increment the owning
609 section's linenumber count. */
610 alent *l = q->lineno;
614 asection * sec = q->symbol.section->output_section;
616 /* Do not try to update fields in read-only sections. */
617 if (! bfd_is_const_section (sec))
618 sec->lineno_count ++;
620 ++total;
621 ++l;
623 while (l->line_number != 0);
628 return total;
631 static void
632 fixup_symbol_value (bfd *abfd,
633 coff_symbol_type *coff_symbol_ptr,
634 struct internal_syment *syment)
636 /* Normalize the symbol flags. */
637 if (coff_symbol_ptr->symbol.section
638 && bfd_is_com_section (coff_symbol_ptr->symbol.section))
640 /* A common symbol is undefined with a value. */
641 syment->n_scnum = N_UNDEF;
642 syment->n_value = coff_symbol_ptr->symbol.value;
644 else if ((coff_symbol_ptr->symbol.flags & BSF_DEBUGGING) != 0
645 && (coff_symbol_ptr->symbol.flags & BSF_DEBUGGING_RELOC) == 0)
647 syment->n_value = coff_symbol_ptr->symbol.value;
649 else if (bfd_is_und_section (coff_symbol_ptr->symbol.section))
651 syment->n_scnum = N_UNDEF;
652 syment->n_value = 0;
654 /* FIXME: Do we need to handle the absolute section here? */
655 else
657 if (coff_symbol_ptr->symbol.section)
659 syment->n_scnum =
660 coff_symbol_ptr->symbol.section->output_section->target_index;
662 syment->n_value = (coff_symbol_ptr->symbol.value
663 + coff_symbol_ptr->symbol.section->output_offset);
664 if (! obj_pe (abfd))
666 syment->n_value += (syment->n_sclass == C_STATLAB)
667 ? coff_symbol_ptr->symbol.section->output_section->lma
668 : coff_symbol_ptr->symbol.section->output_section->vma;
671 else
673 BFD_ASSERT (0);
674 /* This can happen, but I don't know why yet (steve@cygnus.com) */
675 syment->n_scnum = N_ABS;
676 syment->n_value = coff_symbol_ptr->symbol.value;
681 /* Run through all the symbols in the symbol table and work out what
682 their indexes into the symbol table will be when output.
684 Coff requires that each C_FILE symbol points to the next one in the
685 chain, and that the last one points to the first external symbol. We
686 do that here too. */
688 bool
689 coff_renumber_symbols (bfd *bfd_ptr, int *first_undef)
691 unsigned int symbol_count = bfd_get_symcount (bfd_ptr);
692 asymbol **symbol_ptr_ptr = bfd_ptr->outsymbols;
693 unsigned int native_index = 0;
694 struct internal_syment *last_file = NULL;
695 unsigned int symbol_index;
697 /* COFF demands that undefined symbols come after all other symbols.
698 Since we don't need to impose this extra knowledge on all our
699 client programs, deal with that here. Sort the symbol table;
700 just move the undefined symbols to the end, leaving the rest
701 alone. The O'Reilly book says that defined global symbols come
702 at the end before the undefined symbols, so we do that here as
703 well. */
704 /* @@ Do we have some condition we could test for, so we don't always
705 have to do this? I don't think relocatability is quite right, but
706 I'm not certain. [raeburn:19920508.1711EST] */
708 asymbol **newsyms;
709 unsigned int i;
710 bfd_size_type amt;
712 amt = sizeof (asymbol *) * ((bfd_size_type) symbol_count + 1);
713 newsyms = (asymbol **) bfd_alloc (bfd_ptr, amt);
714 if (!newsyms)
715 return false;
716 bfd_ptr->outsymbols = newsyms;
717 for (i = 0; i < symbol_count; i++)
718 if ((symbol_ptr_ptr[i]->flags & BSF_NOT_AT_END) != 0
719 || (!bfd_is_und_section (symbol_ptr_ptr[i]->section)
720 && !bfd_is_com_section (symbol_ptr_ptr[i]->section)
721 && ((symbol_ptr_ptr[i]->flags & BSF_FUNCTION) != 0
722 || ((symbol_ptr_ptr[i]->flags & (BSF_GLOBAL | BSF_WEAK))
723 == 0))))
724 *newsyms++ = symbol_ptr_ptr[i];
726 for (i = 0; i < symbol_count; i++)
727 if ((symbol_ptr_ptr[i]->flags & BSF_NOT_AT_END) == 0
728 && !bfd_is_und_section (symbol_ptr_ptr[i]->section)
729 && (bfd_is_com_section (symbol_ptr_ptr[i]->section)
730 || ((symbol_ptr_ptr[i]->flags & BSF_FUNCTION) == 0
731 && ((symbol_ptr_ptr[i]->flags & (BSF_GLOBAL | BSF_WEAK))
732 != 0))))
733 *newsyms++ = symbol_ptr_ptr[i];
735 *first_undef = newsyms - bfd_ptr->outsymbols;
737 for (i = 0; i < symbol_count; i++)
738 if ((symbol_ptr_ptr[i]->flags & BSF_NOT_AT_END) == 0
739 && bfd_is_und_section (symbol_ptr_ptr[i]->section))
740 *newsyms++ = symbol_ptr_ptr[i];
741 *newsyms = (asymbol *) NULL;
742 symbol_ptr_ptr = bfd_ptr->outsymbols;
745 for (symbol_index = 0; symbol_index < symbol_count; symbol_index++)
747 coff_symbol_type *coff_symbol_ptr;
749 coff_symbol_ptr = coff_symbol_from (symbol_ptr_ptr[symbol_index]);
750 symbol_ptr_ptr[symbol_index]->udata.i = symbol_index;
751 if (coff_symbol_ptr && coff_symbol_ptr->native)
753 combined_entry_type *s = coff_symbol_ptr->native;
754 int i;
756 BFD_ASSERT (s->is_sym);
757 if (s->u.syment.n_sclass == C_FILE)
759 if (last_file != NULL)
760 last_file->n_value = native_index;
761 last_file = &(s->u.syment);
763 else
764 /* Modify the symbol values according to their section and
765 type. */
766 fixup_symbol_value (bfd_ptr, coff_symbol_ptr, &(s->u.syment));
768 for (i = 0; i < s->u.syment.n_numaux + 1; i++)
769 s[i].offset = native_index++;
771 else
772 native_index++;
775 obj_conv_table_size (bfd_ptr) = native_index;
777 return true;
780 /* Run thorough the symbol table again, and fix it so that all
781 pointers to entries are changed to the entries' index in the output
782 symbol table. */
784 void
785 coff_mangle_symbols (bfd *bfd_ptr)
787 unsigned int symbol_count = bfd_get_symcount (bfd_ptr);
788 asymbol **symbol_ptr_ptr = bfd_ptr->outsymbols;
789 unsigned int symbol_index;
791 for (symbol_index = 0; symbol_index < symbol_count; symbol_index++)
793 coff_symbol_type *coff_symbol_ptr;
795 coff_symbol_ptr = coff_symbol_from (symbol_ptr_ptr[symbol_index]);
796 if (coff_symbol_ptr && coff_symbol_ptr->native)
798 int i;
799 combined_entry_type *s = coff_symbol_ptr->native;
801 BFD_ASSERT (s->is_sym);
802 if (s->fix_value)
804 /* FIXME: We should use a union here. */
805 s->u.syment.n_value =
806 (uintptr_t) ((combined_entry_type *)
807 (uintptr_t) s->u.syment.n_value)->offset;
808 s->fix_value = 0;
810 if (s->fix_line)
812 /* The value is the offset into the line number entries
813 for the symbol's section. On output, the symbol's
814 section should be N_DEBUG. */
815 s->u.syment.n_value =
816 (coff_symbol_ptr->symbol.section->output_section->line_filepos
817 + s->u.syment.n_value * bfd_coff_linesz (bfd_ptr));
818 coff_symbol_ptr->symbol.section =
819 coff_section_from_bfd_index (bfd_ptr, N_DEBUG);
820 BFD_ASSERT (coff_symbol_ptr->symbol.flags & BSF_DEBUGGING);
822 for (i = 0; i < s->u.syment.n_numaux; i++)
824 combined_entry_type *a = s + i + 1;
826 BFD_ASSERT (! a->is_sym);
827 if (a->fix_tag)
829 a->u.auxent.x_sym.x_tagndx.l =
830 a->u.auxent.x_sym.x_tagndx.p->offset;
831 a->fix_tag = 0;
833 if (a->fix_end)
835 a->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l =
836 a->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.p->offset;
837 a->fix_end = 0;
839 if (a->fix_scnlen)
841 a->u.auxent.x_csect.x_scnlen.l =
842 a->u.auxent.x_csect.x_scnlen.p->offset;
843 a->fix_scnlen = 0;
850 static bool
851 coff_write_auxent_fname (bfd *abfd,
852 char *str,
853 union internal_auxent *auxent,
854 struct bfd_strtab_hash *strtab,
855 bool hash)
857 unsigned int str_length = strlen (str);
858 unsigned int filnmlen = bfd_coff_filnmlen (abfd);
860 if (bfd_coff_long_filenames (abfd))
862 if (str_length <= filnmlen)
863 strncpy (auxent->x_file.x_n.x_fname, str, filnmlen);
864 else
866 bfd_size_type indx = _bfd_stringtab_add (strtab, str, hash, false);
868 if (indx == (bfd_size_type) -1)
869 return false;
871 auxent->x_file.x_n.x_n.x_offset = STRING_SIZE_SIZE + indx;
872 auxent->x_file.x_n.x_n.x_zeroes = 0;
875 else
877 strncpy (auxent->x_file.x_n.x_fname, str, filnmlen);
878 if (str_length > filnmlen)
879 str[filnmlen] = '\0';
882 return true;
885 static bool
886 coff_fix_symbol_name (bfd *abfd,
887 asymbol *symbol,
888 combined_entry_type *native,
889 struct bfd_strtab_hash *strtab,
890 bool hash,
891 asection **debug_string_section_p,
892 bfd_size_type *debug_string_size_p)
894 unsigned int name_length;
895 char *name = (char *) (symbol->name);
896 bfd_size_type indx;
898 if (name == NULL)
900 /* COFF symbols always have names, so we'll make one up. */
901 symbol->name = "strange";
902 name = (char *) symbol->name;
904 name_length = strlen (name);
906 BFD_ASSERT (native->is_sym);
907 if (native->u.syment.n_sclass == C_FILE
908 && native->u.syment.n_numaux > 0)
910 if (bfd_coff_force_symnames_in_strings (abfd))
912 indx = _bfd_stringtab_add (strtab, ".file", hash, false);
913 if (indx == (bfd_size_type) -1)
914 return false;
916 native->u.syment._n._n_n._n_offset = STRING_SIZE_SIZE + indx;
917 native->u.syment._n._n_n._n_zeroes = 0;
919 else
920 strncpy (native->u.syment._n._n_name, ".file", SYMNMLEN);
922 BFD_ASSERT (! (native + 1)->is_sym);
923 if (!coff_write_auxent_fname (abfd, name, &(native + 1)->u.auxent,
924 strtab, hash))
925 return false;
927 else
929 if (name_length <= SYMNMLEN && !bfd_coff_force_symnames_in_strings (abfd))
930 /* This name will fit into the symbol neatly. */
931 strncpy (native->u.syment._n._n_name, symbol->name, SYMNMLEN);
933 else if (!bfd_coff_symname_in_debug (abfd, &native->u.syment))
935 indx = _bfd_stringtab_add (strtab, name, hash, false);
936 if (indx == (bfd_size_type) -1)
937 return false;
939 native->u.syment._n._n_n._n_offset = STRING_SIZE_SIZE + indx;
940 native->u.syment._n._n_n._n_zeroes = 0;
942 else
944 file_ptr filepos;
945 bfd_byte buf[4];
946 int prefix_len = bfd_coff_debug_string_prefix_length (abfd);
948 /* This name should be written into the .debug section. For
949 some reason each name is preceded by a two byte length
950 and also followed by a null byte. FIXME: We assume that
951 the .debug section has already been created, and that it
952 is large enough. */
953 if (*debug_string_section_p == (asection *) NULL)
954 *debug_string_section_p = bfd_get_section_by_name (abfd, ".debug");
955 filepos = bfd_tell (abfd);
956 if (prefix_len == 4)
957 bfd_put_32 (abfd, (bfd_vma) (name_length + 1), buf);
958 else
959 bfd_put_16 (abfd, (bfd_vma) (name_length + 1), buf);
961 if (!bfd_set_section_contents (abfd,
962 *debug_string_section_p,
963 (void *) buf,
964 (file_ptr) *debug_string_size_p,
965 (bfd_size_type) prefix_len)
966 || !bfd_set_section_contents (abfd,
967 *debug_string_section_p,
968 (void *) symbol->name,
969 (file_ptr) (*debug_string_size_p
970 + prefix_len),
971 (bfd_size_type) name_length + 1))
972 abort ();
973 if (bfd_seek (abfd, filepos, SEEK_SET) != 0)
974 abort ();
975 native->u.syment._n._n_n._n_offset =
976 *debug_string_size_p + prefix_len;
977 native->u.syment._n._n_n._n_zeroes = 0;
978 *debug_string_size_p += name_length + 1 + prefix_len;
982 return true;
985 /* We need to keep track of the symbol index so that when we write out
986 the relocs we can get the index for a symbol. This method is a
987 hack. FIXME. */
989 #define set_index(symbol, idx) ((symbol)->udata.i = (idx))
991 /* Write a symbol out to a COFF file. */
993 static bool
994 coff_write_symbol (bfd *abfd,
995 asymbol *symbol,
996 combined_entry_type *native,
997 bfd_vma *written,
998 struct bfd_strtab_hash *strtab,
999 bool hash,
1000 asection **debug_string_section_p,
1001 bfd_size_type *debug_string_size_p)
1003 unsigned int numaux = native->u.syment.n_numaux;
1004 int type = native->u.syment.n_type;
1005 int n_sclass = (int) native->u.syment.n_sclass;
1006 asection *output_section = symbol->section->output_section
1007 ? symbol->section->output_section
1008 : symbol->section;
1009 void * buf;
1010 bfd_size_type symesz;
1012 BFD_ASSERT (native->is_sym);
1014 if (native->u.syment.n_sclass == C_FILE)
1015 symbol->flags |= BSF_DEBUGGING;
1017 if (symbol->flags & BSF_DEBUGGING
1018 && bfd_is_abs_section (symbol->section))
1019 native->u.syment.n_scnum = N_DEBUG;
1021 else if (bfd_is_abs_section (symbol->section))
1022 native->u.syment.n_scnum = N_ABS;
1024 else if (bfd_is_und_section (symbol->section))
1025 native->u.syment.n_scnum = N_UNDEF;
1027 else
1028 native->u.syment.n_scnum =
1029 output_section->target_index;
1031 if (!coff_fix_symbol_name (abfd, symbol, native, strtab, hash,
1032 debug_string_section_p, debug_string_size_p))
1033 return false;
1035 symesz = bfd_coff_symesz (abfd);
1036 buf = bfd_alloc (abfd, symesz);
1037 if (!buf)
1038 return false;
1039 bfd_coff_swap_sym_out (abfd, &native->u.syment, buf);
1040 if (bfd_bwrite (buf, symesz, abfd) != symesz)
1041 return false;
1042 bfd_release (abfd, buf);
1044 if (native->u.syment.n_numaux > 0)
1046 bfd_size_type auxesz;
1047 unsigned int j;
1049 auxesz = bfd_coff_auxesz (abfd);
1050 buf = bfd_alloc (abfd, auxesz);
1051 if (!buf)
1052 return false;
1053 for (j = 0; j < native->u.syment.n_numaux; j++)
1055 BFD_ASSERT (! (native + j + 1)->is_sym);
1057 /* Adjust auxent only if this isn't the filename
1058 auxiliary entry. */
1059 if (native->u.syment.n_sclass == C_FILE
1060 && (native + j + 1)->u.auxent.x_file.x_ftype)
1061 coff_write_auxent_fname (abfd, (char *) (native + j + 1)->extrap,
1062 &(native + j + 1)->u.auxent, strtab, hash);
1064 bfd_coff_swap_aux_out (abfd,
1065 &((native + j + 1)->u.auxent),
1066 type, n_sclass, (int) j,
1067 native->u.syment.n_numaux,
1068 buf);
1069 if (bfd_bwrite (buf, auxesz, abfd) != auxesz)
1070 return false;
1072 bfd_release (abfd, buf);
1075 /* Store the index for use when we write out the relocs. */
1076 set_index (symbol, *written);
1078 *written += numaux + 1;
1079 return true;
1082 /* Write out a symbol to a COFF file that does not come from a COFF
1083 file originally. This symbol may have been created by the linker,
1084 or we may be linking a non COFF file to a COFF file. */
1086 bool
1087 coff_write_alien_symbol (bfd *abfd,
1088 asymbol *symbol,
1089 struct internal_syment *isym,
1090 bfd_vma *written,
1091 struct bfd_strtab_hash *strtab,
1092 bool hash,
1093 asection **debug_string_section_p,
1094 bfd_size_type *debug_string_size_p)
1096 combined_entry_type *native;
1097 combined_entry_type dummy[2];
1098 asection *output_section = symbol->section->output_section
1099 ? symbol->section->output_section
1100 : symbol->section;
1101 struct bfd_link_info *link_info = coff_data (abfd)->link_info;
1102 bool ret;
1104 if ((!link_info || link_info->strip_discarded)
1105 && !bfd_is_abs_section (symbol->section)
1106 && symbol->section->output_section == bfd_abs_section_ptr)
1108 symbol->name = "";
1109 if (isym != NULL)
1110 memset (isym, 0, sizeof (*isym));
1111 return true;
1113 memset (dummy, 0, sizeof dummy);
1114 native = dummy;
1115 native->is_sym = true;
1116 native[1].is_sym = false;
1117 native->u.syment.n_type = T_NULL;
1118 native->u.syment.n_flags = 0;
1119 native->u.syment.n_numaux = 0;
1120 if (bfd_is_und_section (symbol->section))
1122 native->u.syment.n_scnum = N_UNDEF;
1123 native->u.syment.n_value = symbol->value;
1125 else if (bfd_is_com_section (symbol->section))
1127 native->u.syment.n_scnum = N_UNDEF;
1128 native->u.syment.n_value = symbol->value;
1130 else if (symbol->flags & BSF_FILE)
1132 native->u.syment.n_scnum = N_DEBUG;
1133 native->u.syment.n_numaux = 1;
1135 else if (symbol->flags & BSF_DEBUGGING)
1137 /* There isn't much point to writing out a debugging symbol
1138 unless we are prepared to convert it into COFF debugging
1139 format. So, we just ignore them. We must clobber the symbol
1140 name to keep it from being put in the string table. */
1141 symbol->name = "";
1142 if (isym != NULL)
1143 memset (isym, 0, sizeof (*isym));
1144 return true;
1146 else
1148 native->u.syment.n_scnum = output_section->target_index;
1149 native->u.syment.n_value = (symbol->value
1150 + symbol->section->output_offset);
1151 if (! obj_pe (abfd))
1152 native->u.syment.n_value += output_section->vma;
1154 /* Copy the any flags from the file header into the symbol.
1155 FIXME: Why? */
1157 coff_symbol_type *c = coff_symbol_from (symbol);
1158 if (c != (coff_symbol_type *) NULL)
1159 native->u.syment.n_flags = bfd_asymbol_bfd (&c->symbol)->flags;
1163 native->u.syment.n_type = 0;
1164 if (symbol->flags & BSF_FILE)
1165 native->u.syment.n_sclass = C_FILE;
1166 else if (symbol->flags & BSF_LOCAL)
1167 native->u.syment.n_sclass = C_STAT;
1168 else if (symbol->flags & BSF_WEAK)
1169 native->u.syment.n_sclass = obj_pe (abfd) ? C_NT_WEAK : C_WEAKEXT;
1170 else
1171 native->u.syment.n_sclass = C_EXT;
1173 ret = coff_write_symbol (abfd, symbol, native, written, strtab, hash,
1174 debug_string_section_p, debug_string_size_p);
1175 if (isym != NULL)
1176 *isym = native->u.syment;
1177 return ret;
1180 /* Write a native symbol to a COFF file. */
1182 static bool
1183 coff_write_native_symbol (bfd *abfd,
1184 coff_symbol_type *symbol,
1185 bfd_vma *written,
1186 struct bfd_strtab_hash *strtab,
1187 asection **debug_string_section_p,
1188 bfd_size_type *debug_string_size_p)
1190 combined_entry_type *native = symbol->native;
1191 alent *lineno = symbol->lineno;
1192 struct bfd_link_info *link_info = coff_data (abfd)->link_info;
1194 if ((!link_info || link_info->strip_discarded)
1195 && !bfd_is_abs_section (symbol->symbol.section)
1196 && symbol->symbol.section->output_section == bfd_abs_section_ptr)
1198 symbol->symbol.name = "";
1199 return true;
1202 BFD_ASSERT (native->is_sym);
1203 /* If this symbol has an associated line number, we must store the
1204 symbol index in the line number field. We also tag the auxent to
1205 point to the right place in the lineno table. */
1206 if (lineno && !symbol->done_lineno && symbol->symbol.section->owner != NULL)
1208 unsigned int count = 0;
1210 lineno[count].u.offset = *written;
1211 if (native->u.syment.n_numaux)
1213 union internal_auxent *a = &((native + 1)->u.auxent);
1215 a->x_sym.x_fcnary.x_fcn.x_lnnoptr =
1216 symbol->symbol.section->output_section->moving_line_filepos;
1219 /* Count and relocate all other linenumbers. */
1220 count++;
1221 while (lineno[count].line_number != 0)
1223 lineno[count].u.offset +=
1224 (symbol->symbol.section->output_section->vma
1225 + symbol->symbol.section->output_offset);
1226 count++;
1228 symbol->done_lineno = true;
1230 if (! bfd_is_const_section (symbol->symbol.section->output_section))
1231 symbol->symbol.section->output_section->moving_line_filepos +=
1232 count * bfd_coff_linesz (abfd);
1235 return coff_write_symbol (abfd, &(symbol->symbol), native, written,
1236 strtab, true, debug_string_section_p,
1237 debug_string_size_p);
1240 static void
1241 null_error_handler (const char *fmt ATTRIBUTE_UNUSED,
1242 va_list ap ATTRIBUTE_UNUSED)
1246 /* Write out the COFF symbols. */
1248 bool
1249 coff_write_symbols (bfd *abfd)
1251 struct bfd_strtab_hash *strtab;
1252 asection *debug_string_section;
1253 bfd_size_type debug_string_size;
1254 unsigned int i;
1255 unsigned int limit = bfd_get_symcount (abfd);
1256 bfd_vma written = 0;
1257 asymbol **p;
1259 debug_string_section = NULL;
1260 debug_string_size = 0;
1262 strtab = _bfd_stringtab_init ();
1263 if (strtab == NULL)
1264 return false;
1266 /* If this target supports long section names, they must be put into
1267 the string table. This is supported by PE. This code must
1268 handle section names just as they are handled in
1269 coff_write_object_contents. This is why we pass hash as FALSE below. */
1270 if (bfd_coff_long_section_names (abfd))
1272 asection *o;
1274 for (o = abfd->sections; o != NULL; o = o->next)
1275 if (strlen (o->name) > SCNNMLEN
1276 && _bfd_stringtab_add (strtab, o->name, false, false)
1277 == (bfd_size_type) -1)
1278 return false;
1281 /* Seek to the right place. */
1282 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
1283 return false;
1285 /* Output all the symbols we have. */
1286 written = 0;
1287 for (p = abfd->outsymbols, i = 0; i < limit; i++, p++)
1289 asymbol *symbol = *p;
1290 coff_symbol_type *c_symbol = coff_symbol_from (symbol);
1292 if (c_symbol == (coff_symbol_type *) NULL
1293 || c_symbol->native == (combined_entry_type *) NULL)
1295 if (!coff_write_alien_symbol (abfd, symbol, NULL, &written,
1296 strtab, true, &debug_string_section,
1297 &debug_string_size))
1298 return false;
1300 else
1302 if (coff_backend_info (abfd)->_bfd_coff_classify_symbol != NULL)
1304 bfd_error_handler_type current_error_handler;
1305 enum coff_symbol_classification sym_class;
1306 unsigned char *n_sclass;
1308 /* Suppress error reporting by bfd_coff_classify_symbol.
1309 Error messages can be generated when we are processing a local
1310 symbol which has no associated section and we do not have to
1311 worry about this, all we need to know is that it is local. */
1312 current_error_handler = bfd_set_error_handler (null_error_handler);
1313 BFD_ASSERT (c_symbol->native->is_sym);
1314 sym_class = bfd_coff_classify_symbol (abfd,
1315 &c_symbol->native->u.syment);
1316 (void) bfd_set_error_handler (current_error_handler);
1318 n_sclass = &c_symbol->native->u.syment.n_sclass;
1320 /* If the symbol class has been changed (eg objcopy/ld script/etc)
1321 we cannot retain the existing sclass from the original symbol.
1322 Weak symbols only have one valid sclass, so just set it always.
1323 If it is not local class and should be, set it C_STAT.
1324 If it is global and not classified as global, or if it is
1325 weak (which is also classified as global), set it C_EXT. */
1327 if (symbol->flags & BSF_WEAK)
1328 *n_sclass = obj_pe (abfd) ? C_NT_WEAK : C_WEAKEXT;
1329 else if (symbol->flags & BSF_LOCAL && sym_class != COFF_SYMBOL_LOCAL)
1330 *n_sclass = C_STAT;
1331 else if (symbol->flags & BSF_GLOBAL
1332 && (sym_class != COFF_SYMBOL_GLOBAL
1333 #ifdef COFF_WITH_PE
1334 || *n_sclass == C_NT_WEAK
1335 #endif
1336 || *n_sclass == C_WEAKEXT))
1337 c_symbol->native->u.syment.n_sclass = C_EXT;
1340 if (!coff_write_native_symbol (abfd, c_symbol, &written,
1341 strtab, &debug_string_section,
1342 &debug_string_size))
1343 return false;
1347 obj_raw_syment_count (abfd) = written;
1349 /* Now write out strings.
1351 We would normally not write anything here if there are no strings, but
1352 we'll write out 4 so that any stupid coff reader which tries to read the
1353 string table even when there isn't one won't croak. */
1355 bfd_byte buffer[STRING_SIZE_SIZE];
1357 #if STRING_SIZE_SIZE == 4
1358 H_PUT_32 (abfd, _bfd_stringtab_size (strtab) + STRING_SIZE_SIZE, buffer);
1359 #else
1360 #error Change H_PUT_32
1361 #endif
1362 if (bfd_bwrite ((void *) buffer, (bfd_size_type) sizeof (buffer), abfd)
1363 != sizeof (buffer))
1364 return false;
1366 if (! _bfd_stringtab_emit (abfd, strtab))
1367 return false;
1370 _bfd_stringtab_free (strtab);
1372 /* Make sure the .debug section was created to be the correct size.
1373 We should create it ourselves on the fly, but we don't because
1374 BFD won't let us write to any section until we know how large all
1375 the sections are. We could still do it by making another pass
1376 over the symbols. FIXME. */
1377 BFD_ASSERT (debug_string_size == 0
1378 || (debug_string_section != (asection *) NULL
1379 && (BFD_ALIGN (debug_string_size,
1380 1 << debug_string_section->alignment_power)
1381 == debug_string_section->size)));
1383 return true;
1386 bool
1387 coff_write_linenumbers (bfd *abfd)
1389 asection *s;
1390 bfd_size_type linesz;
1391 void * buff;
1393 linesz = bfd_coff_linesz (abfd);
1394 buff = bfd_alloc (abfd, linesz);
1395 if (!buff)
1396 return false;
1397 for (s = abfd->sections; s != (asection *) NULL; s = s->next)
1399 if (s->lineno_count)
1401 asymbol **q = abfd->outsymbols;
1402 if (bfd_seek (abfd, s->line_filepos, SEEK_SET) != 0)
1403 return false;
1404 /* Find all the linenumbers in this section. */
1405 while (*q)
1407 asymbol *p = *q;
1408 if (p->section->output_section == s)
1410 alent *l =
1411 BFD_SEND (bfd_asymbol_bfd (p), _get_lineno,
1412 (bfd_asymbol_bfd (p), p));
1413 if (l)
1415 /* Found a linenumber entry, output. */
1416 struct internal_lineno out;
1418 memset ((void *) & out, 0, sizeof (out));
1419 out.l_lnno = 0;
1420 out.l_addr.l_symndx = l->u.offset;
1421 bfd_coff_swap_lineno_out (abfd, &out, buff);
1422 if (bfd_bwrite (buff, (bfd_size_type) linesz, abfd)
1423 != linesz)
1424 return false;
1425 l++;
1426 while (l->line_number)
1428 out.l_lnno = l->line_number;
1429 out.l_addr.l_symndx = l->u.offset;
1430 bfd_coff_swap_lineno_out (abfd, &out, buff);
1431 if (bfd_bwrite (buff, (bfd_size_type) linesz, abfd)
1432 != linesz)
1433 return false;
1434 l++;
1438 q++;
1442 bfd_release (abfd, buff);
1443 return true;
1446 alent *
1447 coff_get_lineno (bfd *ignore_abfd ATTRIBUTE_UNUSED, asymbol *symbol)
1449 return coffsymbol (symbol)->lineno;
1452 /* This function transforms the offsets into the symbol table into
1453 pointers to syments. */
1455 static void
1456 coff_pointerize_aux (bfd *abfd,
1457 combined_entry_type *table_base,
1458 combined_entry_type *symbol,
1459 unsigned int indaux,
1460 combined_entry_type *auxent,
1461 combined_entry_type *table_end)
1463 unsigned int type = symbol->u.syment.n_type;
1464 unsigned int n_sclass = symbol->u.syment.n_sclass;
1466 BFD_ASSERT (symbol->is_sym);
1467 if (coff_backend_info (abfd)->_bfd_coff_pointerize_aux_hook)
1469 if ((*coff_backend_info (abfd)->_bfd_coff_pointerize_aux_hook)
1470 (abfd, table_base, symbol, indaux, auxent))
1471 return;
1474 /* Don't bother if this is a file or a section. */
1475 if (n_sclass == C_STAT && type == T_NULL)
1476 return;
1477 if (n_sclass == C_FILE)
1478 return;
1479 if (n_sclass == C_DWARF)
1480 return;
1482 BFD_ASSERT (! auxent->is_sym);
1483 /* Otherwise patch up. */
1484 #define N_TMASK coff_data (abfd)->local_n_tmask
1485 #define N_BTSHFT coff_data (abfd)->local_n_btshft
1487 if ((ISFCN (type) || ISTAG (n_sclass) || n_sclass == C_BLOCK
1488 || n_sclass == C_FCN)
1489 && auxent->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l > 0
1490 && auxent->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l
1491 < (long) obj_raw_syment_count (abfd)
1492 && table_base + auxent->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l
1493 < table_end)
1495 auxent->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.p =
1496 table_base + auxent->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l;
1497 auxent->fix_end = 1;
1500 /* A negative tagndx is meaningless, but the SCO 3.2v4 cc can
1501 generate one, so we must be careful to ignore it. */
1502 if ((unsigned long) auxent->u.auxent.x_sym.x_tagndx.l
1503 < obj_raw_syment_count (abfd)
1504 && table_base + auxent->u.auxent.x_sym.x_tagndx.l < table_end)
1506 auxent->u.auxent.x_sym.x_tagndx.p =
1507 table_base + auxent->u.auxent.x_sym.x_tagndx.l;
1508 auxent->fix_tag = 1;
1512 /* Allocate space for the ".debug" section, and read it.
1513 We did not read the debug section until now, because
1514 we didn't want to go to the trouble until someone needed it. */
1516 static char *
1517 build_debug_section (bfd *abfd, asection ** sect_return)
1519 char *debug_section;
1520 file_ptr position;
1521 bfd_size_type sec_size;
1523 asection *sect = bfd_get_section_by_name (abfd, ".debug");
1525 if (!sect)
1527 bfd_set_error (bfd_error_no_debug_section);
1528 return NULL;
1531 /* Seek to the beginning of the `.debug' section and read it.
1532 Save the current position first; it is needed by our caller.
1533 Then read debug section and reset the file pointer. */
1535 position = bfd_tell (abfd);
1536 if (bfd_seek (abfd, sect->filepos, SEEK_SET) != 0)
1537 return NULL;
1539 sec_size = sect->size;
1540 debug_section = (char *) _bfd_alloc_and_read (abfd, sec_size, sec_size);
1541 if (debug_section == NULL)
1542 return NULL;
1544 if (bfd_seek (abfd, position, SEEK_SET) != 0)
1545 return NULL;
1547 * sect_return = sect;
1548 return debug_section;
1551 /* Return a pointer to a malloc'd copy of 'name'. 'name' may not be
1552 \0-terminated, but will not exceed 'maxlen' characters. The copy *will*
1553 be \0-terminated. */
1555 static char *
1556 copy_name (bfd *abfd, char *name, size_t maxlen)
1558 size_t len;
1559 char *newname;
1561 for (len = 0; len < maxlen; ++len)
1562 if (name[len] == '\0')
1563 break;
1565 if ((newname = (char *) bfd_alloc (abfd, (bfd_size_type) len + 1)) == NULL)
1566 return NULL;
1568 strncpy (newname, name, len);
1569 newname[len] = '\0';
1570 return newname;
1573 /* Read in the external symbols. */
1575 bool
1576 _bfd_coff_get_external_symbols (bfd *abfd)
1578 size_t symesz;
1579 size_t size;
1580 void * syms;
1582 if (obj_coff_external_syms (abfd) != NULL)
1583 return true;
1585 symesz = bfd_coff_symesz (abfd);
1586 if (_bfd_mul_overflow (obj_raw_syment_count (abfd), symesz, &size))
1588 bfd_set_error (bfd_error_file_truncated);
1589 return false;
1592 if (size == 0)
1593 return true;
1595 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
1596 return false;
1597 syms = _bfd_malloc_and_read (abfd, size, size);
1598 obj_coff_external_syms (abfd) = syms;
1599 return syms != NULL;
1602 /* Read in the external strings. The strings are not loaded until
1603 they are needed. This is because we have no simple way of
1604 detecting a missing string table in an archive. If the strings
1605 are loaded then the STRINGS and STRINGS_LEN fields in the
1606 coff_tdata structure will be set. */
1608 const char *
1609 _bfd_coff_read_string_table (bfd *abfd)
1611 char extstrsize[STRING_SIZE_SIZE];
1612 bfd_size_type strsize;
1613 char *strings;
1614 ufile_ptr pos;
1615 ufile_ptr filesize;
1616 size_t symesz;
1617 size_t size;
1619 if (obj_coff_strings (abfd) != NULL)
1620 return obj_coff_strings (abfd);
1622 if (obj_sym_filepos (abfd) == 0)
1624 bfd_set_error (bfd_error_no_symbols);
1625 return NULL;
1628 symesz = bfd_coff_symesz (abfd);
1629 pos = obj_sym_filepos (abfd);
1630 if (_bfd_mul_overflow (obj_raw_syment_count (abfd), symesz, &size)
1631 || pos + size < pos)
1633 bfd_set_error (bfd_error_file_truncated);
1634 return NULL;
1637 if (bfd_seek (abfd, pos + size, SEEK_SET) != 0)
1638 return NULL;
1640 if (bfd_bread (extstrsize, (bfd_size_type) sizeof extstrsize, abfd)
1641 != sizeof extstrsize)
1643 if (bfd_get_error () != bfd_error_file_truncated)
1644 return NULL;
1646 /* There is no string table. */
1647 strsize = STRING_SIZE_SIZE;
1649 else
1651 #if STRING_SIZE_SIZE == 4
1652 strsize = H_GET_32 (abfd, extstrsize);
1653 #else
1654 #error Change H_GET_32
1655 #endif
1658 filesize = bfd_get_file_size (abfd);
1659 if (strsize < STRING_SIZE_SIZE
1660 || (filesize != 0 && strsize > filesize))
1662 _bfd_error_handler
1663 /* xgettext: c-format */
1664 (_("%pB: bad string table size %" PRIu64), abfd, (uint64_t) strsize);
1665 bfd_set_error (bfd_error_bad_value);
1666 return NULL;
1669 strings = (char *) bfd_malloc (strsize + 1);
1670 if (strings == NULL)
1671 return NULL;
1673 /* PR 17521 file: 079-54929-0.004.
1674 A corrupt file could contain an index that points into the first
1675 STRING_SIZE_SIZE bytes of the string table, so make sure that
1676 they are zero. */
1677 memset (strings, 0, STRING_SIZE_SIZE);
1679 if (bfd_bread (strings + STRING_SIZE_SIZE, strsize - STRING_SIZE_SIZE, abfd)
1680 != strsize - STRING_SIZE_SIZE)
1682 free (strings);
1683 return NULL;
1686 obj_coff_strings (abfd) = strings;
1687 obj_coff_strings_len (abfd) = strsize;
1688 /* Terminate the string table, just in case. */
1689 strings[strsize] = 0;
1690 return strings;
1693 /* Free up the external symbols and strings read from a COFF file. */
1695 bool
1696 _bfd_coff_free_symbols (bfd *abfd)
1698 if (! bfd_family_coff (abfd))
1699 return false;
1701 if (obj_coff_external_syms (abfd) != NULL
1702 && ! obj_coff_keep_syms (abfd))
1704 free (obj_coff_external_syms (abfd));
1705 obj_coff_external_syms (abfd) = NULL;
1708 if (obj_coff_strings (abfd) != NULL
1709 && ! obj_coff_keep_strings (abfd))
1711 free (obj_coff_strings (abfd));
1712 obj_coff_strings (abfd) = NULL;
1713 obj_coff_strings_len (abfd) = 0;
1716 return true;
1719 /* Read a symbol table into freshly bfd_allocated memory, swap it, and
1720 knit the symbol names into a normalized form. By normalized here I
1721 mean that all symbols have an n_offset pointer that points to a null-
1722 terminated string. */
1724 combined_entry_type *
1725 coff_get_normalized_symtab (bfd *abfd)
1727 combined_entry_type *internal;
1728 combined_entry_type *internal_ptr;
1729 combined_entry_type *symbol_ptr;
1730 combined_entry_type *internal_end;
1731 size_t symesz;
1732 char *raw_src;
1733 char *raw_end;
1734 const char *string_table = NULL;
1735 asection * debug_sec = NULL;
1736 char *debug_sec_data = NULL;
1737 bfd_size_type size;
1739 if (obj_raw_syments (abfd) != NULL)
1740 return obj_raw_syments (abfd);
1742 if (! _bfd_coff_get_external_symbols (abfd))
1743 return NULL;
1745 size = obj_raw_syment_count (abfd);
1746 /* Check for integer overflow. */
1747 if (size > (bfd_size_type) -1 / sizeof (combined_entry_type))
1748 return NULL;
1749 size *= sizeof (combined_entry_type);
1750 internal = (combined_entry_type *) bfd_zalloc (abfd, size);
1751 if (internal == NULL && size != 0)
1752 return NULL;
1753 internal_end = internal + obj_raw_syment_count (abfd);
1755 raw_src = (char *) obj_coff_external_syms (abfd);
1757 /* Mark the end of the symbols. */
1758 symesz = bfd_coff_symesz (abfd);
1759 raw_end = PTR_ADD (raw_src, obj_raw_syment_count (abfd) * symesz);
1761 /* FIXME SOMEDAY. A string table size of zero is very weird, but
1762 probably possible. If one shows up, it will probably kill us. */
1764 /* Swap all the raw entries. */
1765 for (internal_ptr = internal;
1766 raw_src < raw_end;
1767 raw_src += symesz, internal_ptr++)
1769 unsigned int i;
1771 bfd_coff_swap_sym_in (abfd, (void *) raw_src,
1772 (void *) & internal_ptr->u.syment);
1773 symbol_ptr = internal_ptr;
1774 internal_ptr->is_sym = true;
1776 /* PR 17512: Prevent buffer overrun. */
1777 if (symbol_ptr->u.syment.n_numaux > ((raw_end - 1) - raw_src) / symesz)
1779 bfd_release (abfd, internal);
1780 return NULL;
1783 for (i = 0;
1784 i < symbol_ptr->u.syment.n_numaux;
1785 i++)
1787 internal_ptr++;
1788 raw_src += symesz;
1790 bfd_coff_swap_aux_in (abfd, (void *) raw_src,
1791 symbol_ptr->u.syment.n_type,
1792 symbol_ptr->u.syment.n_sclass,
1793 (int) i, symbol_ptr->u.syment.n_numaux,
1794 &(internal_ptr->u.auxent));
1796 internal_ptr->is_sym = false;
1797 coff_pointerize_aux (abfd, internal, symbol_ptr, i,
1798 internal_ptr, internal_end);
1802 /* Free the raw symbols. */
1803 if (obj_coff_external_syms (abfd) != NULL
1804 && ! obj_coff_keep_syms (abfd))
1806 free (obj_coff_external_syms (abfd));
1807 obj_coff_external_syms (abfd) = NULL;
1810 for (internal_ptr = internal; internal_ptr < internal_end;
1811 internal_ptr++)
1813 BFD_ASSERT (internal_ptr->is_sym);
1815 if (internal_ptr->u.syment.n_sclass == C_FILE
1816 && internal_ptr->u.syment.n_numaux > 0)
1818 combined_entry_type * aux = internal_ptr + 1;
1820 /* Make a file symbol point to the name in the auxent, since
1821 the text ".file" is redundant. */
1822 BFD_ASSERT (! aux->is_sym);
1824 if (aux->u.auxent.x_file.x_n.x_n.x_zeroes == 0)
1826 /* The filename is a long one, point into the string table. */
1827 if (string_table == NULL)
1829 string_table = _bfd_coff_read_string_table (abfd);
1830 if (string_table == NULL)
1831 return NULL;
1834 if ((bfd_size_type)(aux->u.auxent.x_file.x_n.x_n.x_offset)
1835 >= obj_coff_strings_len (abfd))
1836 internal_ptr->u.syment._n._n_n._n_offset =
1837 (uintptr_t) _("<corrupt>");
1838 else
1839 internal_ptr->u.syment._n._n_n._n_offset =
1840 (uintptr_t) (string_table
1841 + aux->u.auxent.x_file.x_n.x_n.x_offset);
1843 else
1845 /* Ordinary short filename, put into memory anyway. The
1846 Microsoft PE tools sometimes store a filename in
1847 multiple AUX entries. */
1848 if (internal_ptr->u.syment.n_numaux > 1
1849 && coff_data (abfd)->pe)
1850 internal_ptr->u.syment._n._n_n._n_offset =
1851 ((uintptr_t)
1852 copy_name (abfd,
1853 aux->u.auxent.x_file.x_n.x_fname,
1854 internal_ptr->u.syment.n_numaux * symesz));
1855 else
1856 internal_ptr->u.syment._n._n_n._n_offset =
1857 ((uintptr_t)
1858 copy_name (abfd,
1859 aux->u.auxent.x_file.x_n.x_fname,
1860 (size_t) bfd_coff_filnmlen (abfd)));
1863 /* Normalize other strings available in C_FILE aux entries. */
1864 if (!coff_data (abfd)->pe)
1865 for (int numaux = 1; numaux < internal_ptr->u.syment.n_numaux; numaux++)
1867 aux = internal_ptr + numaux + 1;
1868 BFD_ASSERT (! aux->is_sym);
1870 if (aux->u.auxent.x_file.x_n.x_n.x_zeroes == 0)
1872 /* The string information is a long one, point into the string table. */
1873 if (string_table == NULL)
1875 string_table = _bfd_coff_read_string_table (abfd);
1876 if (string_table == NULL)
1877 return NULL;
1880 if ((bfd_size_type)(aux->u.auxent.x_file.x_n.x_n.x_offset)
1881 >= obj_coff_strings_len (abfd))
1882 aux->u.auxent.x_file.x_n.x_n.x_offset =
1883 (uintptr_t) _("<corrupt>");
1884 else
1885 aux->u.auxent.x_file.x_n.x_n.x_offset =
1886 (uintptr_t) (string_table
1887 + (aux->u.auxent.x_file.x_n.x_n.x_offset));
1889 else
1890 aux->u.auxent.x_file.x_n.x_n.x_offset =
1891 ((uintptr_t)
1892 copy_name (abfd,
1893 aux->u.auxent.x_file.x_n.x_fname,
1894 (size_t) bfd_coff_filnmlen (abfd)));
1898 else
1900 if (internal_ptr->u.syment._n._n_n._n_zeroes != 0)
1902 /* This is a "short" name. Make it long. */
1903 size_t i;
1904 char *newstring;
1906 /* Find the length of this string without walking into memory
1907 that isn't ours. */
1908 for (i = 0; i < 8; ++i)
1909 if (internal_ptr->u.syment._n._n_name[i] == '\0')
1910 break;
1912 newstring = (char *) bfd_zalloc (abfd, (bfd_size_type) (i + 1));
1913 if (newstring == NULL)
1914 return NULL;
1915 strncpy (newstring, internal_ptr->u.syment._n._n_name, i);
1916 internal_ptr->u.syment._n._n_n._n_offset = (uintptr_t) newstring;
1917 internal_ptr->u.syment._n._n_n._n_zeroes = 0;
1919 else if (internal_ptr->u.syment._n._n_n._n_offset == 0)
1920 internal_ptr->u.syment._n._n_n._n_offset = (uintptr_t) "";
1921 else if (!bfd_coff_symname_in_debug (abfd, &internal_ptr->u.syment))
1923 /* Long name already. Point symbol at the string in the
1924 table. */
1925 if (string_table == NULL)
1927 string_table = _bfd_coff_read_string_table (abfd);
1928 if (string_table == NULL)
1929 return NULL;
1931 if (internal_ptr->u.syment._n._n_n._n_offset >= obj_coff_strings_len (abfd)
1932 || string_table + internal_ptr->u.syment._n._n_n._n_offset < string_table)
1933 internal_ptr->u.syment._n._n_n._n_offset =
1934 (uintptr_t) _("<corrupt>");
1935 else
1936 internal_ptr->u.syment._n._n_n._n_offset =
1937 ((uintptr_t) (string_table
1938 + internal_ptr->u.syment._n._n_n._n_offset));
1940 else
1942 /* Long name in debug section. Very similar. */
1943 if (debug_sec_data == NULL)
1944 debug_sec_data = build_debug_section (abfd, & debug_sec);
1945 if (debug_sec_data != NULL)
1947 BFD_ASSERT (debug_sec != NULL);
1948 /* PR binutils/17512: Catch out of range offsets into the debug data. */
1949 if (internal_ptr->u.syment._n._n_n._n_offset > debug_sec->size
1950 || debug_sec_data + internal_ptr->u.syment._n._n_n._n_offset < debug_sec_data)
1951 internal_ptr->u.syment._n._n_n._n_offset =
1952 (uintptr_t) _("<corrupt>");
1953 else
1954 internal_ptr->u.syment._n._n_n._n_offset =
1955 (uintptr_t) (debug_sec_data
1956 + internal_ptr->u.syment._n._n_n._n_offset);
1958 else
1959 internal_ptr->u.syment._n._n_n._n_offset = (uintptr_t) "";
1962 internal_ptr += internal_ptr->u.syment.n_numaux;
1965 obj_raw_syments (abfd) = internal;
1966 BFD_ASSERT (obj_raw_syment_count (abfd)
1967 == (unsigned int) (internal_ptr - internal));
1969 return internal;
1972 long
1973 coff_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
1975 if (bfd_get_format (abfd) != bfd_object)
1977 bfd_set_error (bfd_error_invalid_operation);
1978 return -1;
1980 #if SIZEOF_LONG == SIZEOF_INT
1981 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
1983 bfd_set_error (bfd_error_file_too_big);
1984 return -1;
1986 #endif
1987 return (asect->reloc_count + 1L) * sizeof (arelent *);
1990 asymbol *
1991 coff_make_empty_symbol (bfd *abfd)
1993 size_t amt = sizeof (coff_symbol_type);
1994 coff_symbol_type *new_symbol = (coff_symbol_type *) bfd_zalloc (abfd, amt);
1996 if (new_symbol == NULL)
1997 return NULL;
1998 new_symbol->symbol.section = 0;
1999 new_symbol->native = NULL;
2000 new_symbol->lineno = NULL;
2001 new_symbol->done_lineno = false;
2002 new_symbol->symbol.the_bfd = abfd;
2004 return & new_symbol->symbol;
2007 /* Make a debugging symbol. */
2009 asymbol *
2010 coff_bfd_make_debug_symbol (bfd *abfd,
2011 void * ptr ATTRIBUTE_UNUSED,
2012 unsigned long sz ATTRIBUTE_UNUSED)
2014 size_t amt = sizeof (coff_symbol_type);
2015 coff_symbol_type *new_symbol = (coff_symbol_type *) bfd_alloc (abfd, amt);
2017 if (new_symbol == NULL)
2018 return NULL;
2019 /* @@ The 10 is a guess at a plausible maximum number of aux entries
2020 (but shouldn't be a constant). */
2021 amt = sizeof (combined_entry_type) * 10;
2022 new_symbol->native = (combined_entry_type *) bfd_zalloc (abfd, amt);
2023 if (!new_symbol->native)
2024 return NULL;
2025 new_symbol->native->is_sym = true;
2026 new_symbol->symbol.section = bfd_abs_section_ptr;
2027 new_symbol->symbol.flags = BSF_DEBUGGING;
2028 new_symbol->lineno = NULL;
2029 new_symbol->done_lineno = false;
2030 new_symbol->symbol.the_bfd = abfd;
2032 return & new_symbol->symbol;
2035 void
2036 coff_get_symbol_info (bfd *abfd, asymbol *symbol, symbol_info *ret)
2038 bfd_symbol_info (symbol, ret);
2040 if (coffsymbol (symbol)->native != NULL
2041 && coffsymbol (symbol)->native->fix_value
2042 && coffsymbol (symbol)->native->is_sym)
2043 ret->value
2044 = (((uintptr_t) coffsymbol (symbol)->native->u.syment.n_value
2045 - (uintptr_t) obj_raw_syments (abfd))
2046 / sizeof (combined_entry_type));
2049 /* Print out information about COFF symbol. */
2051 void
2052 coff_print_symbol (bfd *abfd,
2053 void * filep,
2054 asymbol *symbol,
2055 bfd_print_symbol_type how)
2057 FILE * file = (FILE *) filep;
2059 switch (how)
2061 case bfd_print_symbol_name:
2062 fprintf (file, "%s", symbol->name);
2063 break;
2065 case bfd_print_symbol_more:
2066 fprintf (file, "coff %s %s",
2067 coffsymbol (symbol)->native ? "n" : "g",
2068 coffsymbol (symbol)->lineno ? "l" : " ");
2069 break;
2071 case bfd_print_symbol_all:
2072 if (coffsymbol (symbol)->native)
2074 bfd_vma val;
2075 unsigned int aux;
2076 combined_entry_type *combined = coffsymbol (symbol)->native;
2077 combined_entry_type *root = obj_raw_syments (abfd);
2078 struct lineno_cache_entry *l = coffsymbol (symbol)->lineno;
2080 fprintf (file, "[%3ld]", (long) (combined - root));
2082 /* PR 17512: file: 079-33786-0.001:0.1. */
2083 if (combined < obj_raw_syments (abfd)
2084 || combined >= obj_raw_syments (abfd) + obj_raw_syment_count (abfd))
2086 fprintf (file, _("<corrupt info> %s"), symbol->name);
2087 break;
2090 BFD_ASSERT (combined->is_sym);
2091 if (! combined->fix_value)
2092 val = (bfd_vma) combined->u.syment.n_value;
2093 else
2094 val = (((uintptr_t) combined->u.syment.n_value - (uintptr_t) root)
2095 / sizeof (combined_entry_type));
2097 fprintf (file, "(sec %2d)(fl 0x%02x)(ty %4x)(scl %3d) (nx %d) 0x",
2098 combined->u.syment.n_scnum,
2099 combined->u.syment.n_flags,
2100 combined->u.syment.n_type,
2101 combined->u.syment.n_sclass,
2102 combined->u.syment.n_numaux);
2103 bfd_fprintf_vma (abfd, file, val);
2104 fprintf (file, " %s", symbol->name);
2106 for (aux = 0; aux < combined->u.syment.n_numaux; aux++)
2108 combined_entry_type *auxp = combined + aux + 1;
2109 long tagndx;
2111 BFD_ASSERT (! auxp->is_sym);
2112 if (auxp->fix_tag)
2113 tagndx = auxp->u.auxent.x_sym.x_tagndx.p - root;
2114 else
2115 tagndx = auxp->u.auxent.x_sym.x_tagndx.l;
2117 fprintf (file, "\n");
2119 if (bfd_coff_print_aux (abfd, file, root, combined, auxp, aux))
2120 continue;
2122 switch (combined->u.syment.n_sclass)
2124 case C_FILE:
2125 fprintf (file, "File ");
2126 /* Add additional information if this isn't the filename
2127 auxiliary entry. */
2128 if (auxp->u.auxent.x_file.x_ftype)
2129 fprintf (file, "ftype %d fname \"%s\"",
2130 auxp->u.auxent.x_file.x_ftype,
2131 (char *) auxp->u.auxent.x_file.x_n.x_n.x_offset);
2132 break;
2134 case C_DWARF:
2135 fprintf (file, "AUX scnlen 0x%lx nreloc %ld",
2136 (unsigned long) auxp->u.auxent.x_sect.x_scnlen,
2137 auxp->u.auxent.x_sect.x_nreloc);
2138 break;
2140 case C_STAT:
2141 if (combined->u.syment.n_type == T_NULL)
2142 /* Probably a section symbol ? */
2144 fprintf (file, "AUX scnlen 0x%lx nreloc %d nlnno %d",
2145 (unsigned long) auxp->u.auxent.x_scn.x_scnlen,
2146 auxp->u.auxent.x_scn.x_nreloc,
2147 auxp->u.auxent.x_scn.x_nlinno);
2148 if (auxp->u.auxent.x_scn.x_checksum != 0
2149 || auxp->u.auxent.x_scn.x_associated != 0
2150 || auxp->u.auxent.x_scn.x_comdat != 0)
2151 fprintf (file, " checksum 0x%lx assoc %d comdat %d",
2152 auxp->u.auxent.x_scn.x_checksum,
2153 auxp->u.auxent.x_scn.x_associated,
2154 auxp->u.auxent.x_scn.x_comdat);
2155 break;
2157 /* Fall through. */
2158 case C_EXT:
2159 case C_AIX_WEAKEXT:
2160 if (ISFCN (combined->u.syment.n_type))
2162 long next, llnos;
2164 if (auxp->fix_end)
2165 next = (auxp->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.p
2166 - root);
2167 else
2168 next = auxp->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l;
2169 llnos = auxp->u.auxent.x_sym.x_fcnary.x_fcn.x_lnnoptr;
2170 fprintf (file,
2171 "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld",
2172 tagndx,
2173 (unsigned long) auxp->u.auxent.x_sym.x_misc.x_fsize,
2174 llnos, next);
2175 break;
2177 /* Fall through. */
2178 default:
2179 fprintf (file, "AUX lnno %d size 0x%x tagndx %ld",
2180 auxp->u.auxent.x_sym.x_misc.x_lnsz.x_lnno,
2181 auxp->u.auxent.x_sym.x_misc.x_lnsz.x_size,
2182 tagndx);
2183 if (auxp->fix_end)
2184 fprintf (file, " endndx %ld",
2185 ((long)
2186 (auxp->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.p
2187 - root)));
2188 break;
2192 if (l)
2194 fprintf (file, "\n%s :", l->u.sym->name);
2195 l++;
2196 while (l->line_number)
2198 if (l->line_number > 0)
2200 fprintf (file, "\n%4d : ", l->line_number);
2201 bfd_fprintf_vma (abfd, file, l->u.offset + symbol->section->vma);
2203 l++;
2207 else
2209 bfd_print_symbol_vandf (abfd, (void *) file, symbol);
2210 fprintf (file, " %-5s %s %s %s",
2211 symbol->section->name,
2212 coffsymbol (symbol)->native ? "n" : "g",
2213 coffsymbol (symbol)->lineno ? "l" : " ",
2214 symbol->name);
2219 /* Return whether a symbol name implies a local symbol. In COFF,
2220 local symbols generally start with ``.L''. Most targets use this
2221 function for the is_local_label_name entry point, but some may
2222 override it. */
2224 bool
2225 _bfd_coff_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
2226 const char *name)
2228 return name[0] == '.' && name[1] == 'L';
2231 /* Provided a BFD, a section and an offset (in bytes, not octets) into the
2232 section, calculate and return the name of the source file and the line
2233 nearest to the wanted location. */
2235 bool
2236 coff_find_nearest_line_with_names (bfd *abfd,
2237 asymbol **symbols,
2238 asection *section,
2239 bfd_vma offset,
2240 const char **filename_ptr,
2241 const char **functionname_ptr,
2242 unsigned int *line_ptr,
2243 const struct dwarf_debug_section *debug_sections)
2245 bool found;
2246 unsigned int i;
2247 unsigned int line_base;
2248 coff_data_type *cof = coff_data (abfd);
2249 /* Run through the raw syments if available. */
2250 combined_entry_type *p;
2251 combined_entry_type *pend;
2252 alent *l;
2253 struct coff_section_tdata *sec_data;
2254 size_t amt;
2256 /* Before looking through the symbol table, try to use a .stab
2257 section to find the information. */
2258 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
2259 &found, filename_ptr,
2260 functionname_ptr, line_ptr,
2261 &coff_data(abfd)->line_info))
2262 return false;
2264 if (found)
2265 return true;
2267 /* Also try examining DWARF2 debugging information. */
2268 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
2269 filename_ptr, functionname_ptr,
2270 line_ptr, NULL, debug_sections,
2271 &coff_data(abfd)->dwarf2_find_line_info))
2272 return true;
2274 sec_data = coff_section_data (abfd, section);
2276 /* If the DWARF lookup failed, but there is DWARF information available
2277 then the problem might be that the file has been rebased. This tool
2278 changes the VMAs of all the sections, but it does not update the DWARF
2279 information. So try again, using a bias against the address sought. */
2280 if (coff_data (abfd)->dwarf2_find_line_info != NULL)
2282 bfd_signed_vma bias = 0;
2284 /* Create a cache of the result for the next call. */
2285 if (sec_data == NULL && section->owner == abfd)
2287 amt = sizeof (struct coff_section_tdata);
2288 section->used_by_bfd = bfd_zalloc (abfd, amt);
2289 sec_data = (struct coff_section_tdata *) section->used_by_bfd;
2292 if (sec_data != NULL && sec_data->saved_bias)
2293 bias = sec_data->bias;
2294 else if (symbols)
2296 bias = _bfd_dwarf2_find_symbol_bias (symbols,
2297 & coff_data (abfd)->dwarf2_find_line_info);
2299 if (sec_data)
2301 sec_data->saved_bias = true;
2302 sec_data->bias = bias;
2306 if (bias
2307 && _bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section,
2308 offset + bias,
2309 filename_ptr, functionname_ptr,
2310 line_ptr, NULL, debug_sections,
2311 &coff_data(abfd)->dwarf2_find_line_info))
2312 return true;
2315 *filename_ptr = 0;
2316 *functionname_ptr = 0;
2317 *line_ptr = 0;
2319 /* Don't try and find line numbers in a non coff file. */
2320 if (!bfd_family_coff (abfd))
2321 return false;
2323 if (cof == NULL)
2324 return false;
2326 /* Find the first C_FILE symbol. */
2327 p = cof->raw_syments;
2328 if (!p)
2329 return false;
2331 pend = p + cof->raw_syment_count;
2332 while (p < pend)
2334 BFD_ASSERT (p->is_sym);
2335 if (p->u.syment.n_sclass == C_FILE)
2336 break;
2337 p += 1 + p->u.syment.n_numaux;
2340 if (p < pend)
2342 bfd_vma sec_vma;
2343 bfd_vma maxdiff;
2345 /* Look through the C_FILE symbols to find the best one. */
2346 sec_vma = bfd_section_vma (section);
2347 *filename_ptr = (char *) p->u.syment._n._n_n._n_offset;
2348 maxdiff = (bfd_vma) 0 - (bfd_vma) 1;
2349 while (1)
2351 bfd_vma file_addr;
2352 combined_entry_type *p2;
2354 for (p2 = p + 1 + p->u.syment.n_numaux;
2355 p2 < pend;
2356 p2 += 1 + p2->u.syment.n_numaux)
2358 BFD_ASSERT (p2->is_sym);
2359 if (p2->u.syment.n_scnum > 0
2360 && (section
2361 == coff_section_from_bfd_index (abfd,
2362 p2->u.syment.n_scnum)))
2363 break;
2364 if (p2->u.syment.n_sclass == C_FILE)
2366 p2 = pend;
2367 break;
2370 if (p2 >= pend)
2371 break;
2373 file_addr = (bfd_vma) p2->u.syment.n_value;
2374 /* PR 11512: Include the section address of the function name symbol. */
2375 if (p2->u.syment.n_scnum > 0)
2376 file_addr += coff_section_from_bfd_index (abfd,
2377 p2->u.syment.n_scnum)->vma;
2378 /* We use <= MAXDIFF here so that if we get a zero length
2379 file, we actually use the next file entry. */
2380 if (p2 < pend
2381 && offset + sec_vma >= file_addr
2382 && offset + sec_vma - file_addr <= maxdiff)
2384 *filename_ptr = (char *) p->u.syment._n._n_n._n_offset;
2385 maxdiff = offset + sec_vma - p2->u.syment.n_value;
2388 if (p->u.syment.n_value >= cof->raw_syment_count)
2389 break;
2391 /* Avoid endless loops on erroneous files by ensuring that
2392 we always move forward in the file. */
2393 if (p >= cof->raw_syments + p->u.syment.n_value)
2394 break;
2396 p = cof->raw_syments + p->u.syment.n_value;
2397 if (!p->is_sym || p->u.syment.n_sclass != C_FILE)
2398 break;
2402 if (section->lineno_count == 0)
2404 *functionname_ptr = NULL;
2405 *line_ptr = 0;
2406 return true;
2409 /* Now wander though the raw linenumbers of the section.
2410 If we have been called on this section before, and the offset
2411 we want is further down then we can prime the lookup loop. */
2412 if (sec_data != NULL
2413 && sec_data->i > 0
2414 && offset >= sec_data->offset)
2416 i = sec_data->i;
2417 *functionname_ptr = sec_data->function;
2418 line_base = sec_data->line_base;
2420 else
2422 i = 0;
2423 line_base = 0;
2426 if (section->lineno != NULL)
2428 bfd_vma last_value = 0;
2430 l = &section->lineno[i];
2432 for (; i < section->lineno_count; i++)
2434 if (l->line_number == 0)
2436 /* Get the symbol this line number points at. */
2437 coff_symbol_type *coff = (coff_symbol_type *) (l->u.sym);
2438 if (coff->symbol.value > offset)
2439 break;
2441 *functionname_ptr = coff->symbol.name;
2442 last_value = coff->symbol.value;
2443 if (coff->native)
2445 combined_entry_type *s = coff->native;
2447 BFD_ASSERT (s->is_sym);
2448 s = s + 1 + s->u.syment.n_numaux;
2450 /* In XCOFF a debugging symbol can follow the
2451 function symbol. */
2452 if (((size_t) ((char *) s - (char *) obj_raw_syments (abfd))
2453 < obj_raw_syment_count (abfd) * sizeof (*s))
2454 && s->u.syment.n_scnum == N_DEBUG)
2455 s = s + 1 + s->u.syment.n_numaux;
2457 /* S should now point to the .bf of the function. */
2458 if (((size_t) ((char *) s - (char *) obj_raw_syments (abfd))
2459 < obj_raw_syment_count (abfd) * sizeof (*s))
2460 && s->u.syment.n_numaux)
2462 /* The linenumber is stored in the auxent. */
2463 union internal_auxent *a = &((s + 1)->u.auxent);
2465 line_base = a->x_sym.x_misc.x_lnsz.x_lnno;
2466 *line_ptr = line_base;
2470 else
2472 if (l->u.offset > offset)
2473 break;
2474 *line_ptr = l->line_number + line_base - 1;
2476 l++;
2479 /* If we fell off the end of the loop, then assume that this
2480 symbol has no line number info. Otherwise, symbols with no
2481 line number info get reported with the line number of the
2482 last line of the last symbol which does have line number
2483 info. We use 0x100 as a slop to account for cases where the
2484 last line has executable code. */
2485 if (i >= section->lineno_count
2486 && last_value != 0
2487 && offset - last_value > 0x100)
2489 *functionname_ptr = NULL;
2490 *line_ptr = 0;
2494 /* Cache the results for the next call. */
2495 if (sec_data == NULL && section->owner == abfd)
2497 amt = sizeof (struct coff_section_tdata);
2498 section->used_by_bfd = bfd_zalloc (abfd, amt);
2499 sec_data = (struct coff_section_tdata *) section->used_by_bfd;
2502 if (sec_data != NULL)
2504 sec_data->offset = offset;
2505 sec_data->i = i - 1;
2506 sec_data->function = *functionname_ptr;
2507 sec_data->line_base = line_base;
2510 return true;
2513 bool
2514 coff_find_nearest_line (bfd *abfd,
2515 asymbol **symbols,
2516 asection *section,
2517 bfd_vma offset,
2518 const char **filename_ptr,
2519 const char **functionname_ptr,
2520 unsigned int *line_ptr,
2521 unsigned int *discriminator_ptr)
2523 if (discriminator_ptr)
2524 *discriminator_ptr = 0;
2525 return coff_find_nearest_line_with_names (abfd, symbols, section, offset,
2526 filename_ptr, functionname_ptr,
2527 line_ptr, dwarf_debug_sections);
2530 bool
2531 coff_find_inliner_info (bfd *abfd,
2532 const char **filename_ptr,
2533 const char **functionname_ptr,
2534 unsigned int *line_ptr)
2536 bool found;
2538 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
2539 functionname_ptr, line_ptr,
2540 &coff_data(abfd)->dwarf2_find_line_info);
2541 return (found);
2545 coff_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
2547 size_t size;
2549 if (!bfd_link_relocatable (info))
2550 size = bfd_coff_filhsz (abfd) + bfd_coff_aoutsz (abfd);
2551 else
2552 size = bfd_coff_filhsz (abfd);
2554 size += abfd->section_count * bfd_coff_scnhsz (abfd);
2555 return size;
2558 /* Change the class of a coff symbol held by BFD. */
2560 bool
2561 bfd_coff_set_symbol_class (bfd * abfd,
2562 asymbol * symbol,
2563 unsigned int symbol_class)
2565 coff_symbol_type * csym;
2567 csym = coff_symbol_from (symbol);
2568 if (csym == NULL)
2570 bfd_set_error (bfd_error_invalid_operation);
2571 return false;
2573 else if (csym->native == NULL)
2575 /* This is an alien symbol which no native coff backend data.
2576 We cheat here by creating a fake native entry for it and
2577 then filling in the class. This code is based on that in
2578 coff_write_alien_symbol(). */
2580 combined_entry_type * native;
2581 size_t amt = sizeof (* native);
2583 native = (combined_entry_type *) bfd_zalloc (abfd, amt);
2584 if (native == NULL)
2585 return false;
2587 native->is_sym = true;
2588 native->u.syment.n_type = T_NULL;
2589 native->u.syment.n_sclass = symbol_class;
2591 if (bfd_is_und_section (symbol->section))
2593 native->u.syment.n_scnum = N_UNDEF;
2594 native->u.syment.n_value = symbol->value;
2596 else if (bfd_is_com_section (symbol->section))
2598 native->u.syment.n_scnum = N_UNDEF;
2599 native->u.syment.n_value = symbol->value;
2601 else
2603 native->u.syment.n_scnum =
2604 symbol->section->output_section->target_index;
2605 native->u.syment.n_value = (symbol->value
2606 + symbol->section->output_offset);
2607 if (! obj_pe (abfd))
2608 native->u.syment.n_value += symbol->section->output_section->vma;
2610 /* Copy the any flags from the file header into the symbol.
2611 FIXME: Why? */
2612 native->u.syment.n_flags = bfd_asymbol_bfd (& csym->symbol)->flags;
2615 csym->native = native;
2617 else
2618 csym->native->u.syment.n_sclass = symbol_class;
2620 return true;
2623 bool
2624 _bfd_coff_section_already_linked (bfd *abfd,
2625 asection *sec,
2626 struct bfd_link_info *info)
2628 flagword flags;
2629 const char *name, *key;
2630 struct bfd_section_already_linked *l;
2631 struct bfd_section_already_linked_hash_entry *already_linked_list;
2632 struct coff_comdat_info *s_comdat;
2634 if (sec->output_section == bfd_abs_section_ptr)
2635 return false;
2637 flags = sec->flags;
2638 if ((flags & SEC_LINK_ONCE) == 0)
2639 return false;
2641 /* The COFF backend linker doesn't support group sections. */
2642 if ((flags & SEC_GROUP) != 0)
2643 return false;
2645 name = bfd_section_name (sec);
2646 s_comdat = bfd_coff_get_comdat_section (abfd, sec);
2648 if (s_comdat != NULL)
2649 key = s_comdat->name;
2650 else
2652 if (startswith (name, ".gnu.linkonce.")
2653 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
2654 key++;
2655 else
2656 /* FIXME: gcc as of 2011-09 emits sections like .text$<key>,
2657 .xdata$<key> and .pdata$<key> only the first of which has a
2658 comdat key. Should these all match the LTO IR key? */
2659 key = name;
2662 already_linked_list = bfd_section_already_linked_table_lookup (key);
2664 for (l = already_linked_list->entry; l != NULL; l = l->next)
2666 struct coff_comdat_info *l_comdat;
2668 l_comdat = bfd_coff_get_comdat_section (l->sec->owner, l->sec);
2670 /* The section names must match, and both sections must be
2671 comdat and have the same comdat name, or both sections must
2672 be non-comdat. LTO IR plugin sections are an exception. They
2673 are always named .gnu.linkonce.t.<key> (<key> is some string)
2674 and match any comdat section with comdat name of <key>, and
2675 any linkonce section with the same suffix, ie.
2676 .gnu.linkonce.*.<key>. */
2677 if (((s_comdat != NULL) == (l_comdat != NULL)
2678 && strcmp (name, l->sec->name) == 0)
2679 || (l->sec->owner->flags & BFD_PLUGIN) != 0
2680 || (sec->owner->flags & BFD_PLUGIN) != 0)
2682 /* The section has already been linked. See if we should
2683 issue a warning. */
2684 return _bfd_handle_already_linked (sec, l, info);
2688 /* This is the first section with this name. Record it. */
2689 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
2690 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
2691 return false;
2694 /* Initialize COOKIE for input bfd ABFD. */
2696 static bool
2697 init_reloc_cookie (struct coff_reloc_cookie *cookie,
2698 struct bfd_link_info *info ATTRIBUTE_UNUSED,
2699 bfd *abfd)
2701 /* Sometimes the symbol table does not yet have been loaded here. */
2702 bfd_coff_slurp_symbol_table (abfd);
2704 cookie->abfd = abfd;
2705 cookie->sym_hashes = obj_coff_sym_hashes (abfd);
2707 cookie->symbols = obj_symbols (abfd);
2709 return true;
2712 /* Free the memory allocated by init_reloc_cookie, if appropriate. */
2714 static void
2715 fini_reloc_cookie (struct coff_reloc_cookie *cookie ATTRIBUTE_UNUSED,
2716 bfd *abfd ATTRIBUTE_UNUSED)
2718 /* Nothing to do. */
2721 /* Initialize the relocation information in COOKIE for input section SEC
2722 of input bfd ABFD. */
2724 static bool
2725 init_reloc_cookie_rels (struct coff_reloc_cookie *cookie,
2726 struct bfd_link_info *info ATTRIBUTE_UNUSED,
2727 bfd *abfd,
2728 asection *sec)
2730 if (sec->reloc_count == 0)
2732 cookie->rels = NULL;
2733 cookie->relend = NULL;
2734 cookie->rel = NULL;
2735 return true;
2738 cookie->rels = _bfd_coff_read_internal_relocs (abfd, sec, false, NULL,
2739 0, NULL);
2741 if (cookie->rels == NULL)
2742 return false;
2744 cookie->rel = cookie->rels;
2745 cookie->relend = (cookie->rels + sec->reloc_count);
2746 return true;
2749 /* Free the memory allocated by init_reloc_cookie_rels,
2750 if appropriate. */
2752 static void
2753 fini_reloc_cookie_rels (struct coff_reloc_cookie *cookie,
2754 asection *sec)
2756 if (cookie->rels
2757 /* PR 20401. The relocs may not have been cached, so check first.
2758 If the relocs were loaded by init_reloc_cookie_rels() then this
2759 will be the case. FIXME: Would performance be improved if the
2760 relocs *were* cached ? */
2761 && coff_section_data (NULL, sec)
2762 && coff_section_data (NULL, sec)->relocs != cookie->rels)
2763 free (cookie->rels);
2766 /* Initialize the whole of COOKIE for input section SEC. */
2768 static bool
2769 init_reloc_cookie_for_section (struct coff_reloc_cookie *cookie,
2770 struct bfd_link_info *info,
2771 asection *sec)
2773 if (!init_reloc_cookie (cookie, info, sec->owner))
2774 return false;
2776 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
2778 fini_reloc_cookie (cookie, sec->owner);
2779 return false;
2781 return true;
2784 /* Free the memory allocated by init_reloc_cookie_for_section,
2785 if appropriate. */
2787 static void
2788 fini_reloc_cookie_for_section (struct coff_reloc_cookie *cookie,
2789 asection *sec)
2791 fini_reloc_cookie_rels (cookie, sec);
2792 fini_reloc_cookie (cookie, sec->owner);
2795 static asection *
2796 _bfd_coff_gc_mark_hook (asection *sec,
2797 struct bfd_link_info *info ATTRIBUTE_UNUSED,
2798 struct internal_reloc *rel ATTRIBUTE_UNUSED,
2799 struct coff_link_hash_entry *h,
2800 struct internal_syment *sym)
2802 if (h != NULL)
2804 switch (h->root.type)
2806 case bfd_link_hash_defined:
2807 case bfd_link_hash_defweak:
2808 return h->root.u.def.section;
2810 case bfd_link_hash_common:
2811 return h->root.u.c.p->section;
2813 case bfd_link_hash_undefweak:
2814 if (h->symbol_class == C_NT_WEAK && h->numaux == 1)
2816 /* PE weak externals. A weak symbol may include an auxiliary
2817 record indicating that if the weak symbol is not resolved,
2818 another external symbol is used instead. */
2819 struct coff_link_hash_entry *h2 =
2820 h->auxbfd->tdata.coff_obj_data->sym_hashes[
2821 h->aux->x_sym.x_tagndx.l];
2823 if (h2 && h2->root.type != bfd_link_hash_undefined)
2824 return h2->root.u.def.section;
2826 break;
2828 case bfd_link_hash_undefined:
2829 default:
2830 break;
2832 return NULL;
2835 return coff_section_from_bfd_index (sec->owner, sym->n_scnum);
2838 /* COOKIE->rel describes a relocation against section SEC, which is
2839 a section we've decided to keep. Return the section that contains
2840 the relocation symbol, or NULL if no section contains it. */
2842 static asection *
2843 _bfd_coff_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
2844 coff_gc_mark_hook_fn gc_mark_hook,
2845 struct coff_reloc_cookie *cookie)
2847 struct coff_link_hash_entry *h;
2849 h = cookie->sym_hashes[cookie->rel->r_symndx];
2850 if (h != NULL)
2852 while (h->root.type == bfd_link_hash_indirect
2853 || h->root.type == bfd_link_hash_warning)
2854 h = (struct coff_link_hash_entry *) h->root.u.i.link;
2856 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
2859 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
2860 &(cookie->symbols
2861 + obj_convert (sec->owner)[cookie->rel->r_symndx])->native->u.syment);
2864 static bool _bfd_coff_gc_mark
2865 (struct bfd_link_info *, asection *, coff_gc_mark_hook_fn);
2867 /* COOKIE->rel describes a relocation against section SEC, which is
2868 a section we've decided to keep. Mark the section that contains
2869 the relocation symbol. */
2871 static bool
2872 _bfd_coff_gc_mark_reloc (struct bfd_link_info *info,
2873 asection *sec,
2874 coff_gc_mark_hook_fn gc_mark_hook,
2875 struct coff_reloc_cookie *cookie)
2877 asection *rsec;
2879 rsec = _bfd_coff_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
2880 if (rsec && !rsec->gc_mark)
2882 if (bfd_get_flavour (rsec->owner) != bfd_target_coff_flavour)
2883 rsec->gc_mark = 1;
2884 else if (!_bfd_coff_gc_mark (info, rsec, gc_mark_hook))
2885 return false;
2887 return true;
2890 /* The mark phase of garbage collection. For a given section, mark
2891 it and any sections in this section's group, and all the sections
2892 which define symbols to which it refers. */
2894 static bool
2895 _bfd_coff_gc_mark (struct bfd_link_info *info,
2896 asection *sec,
2897 coff_gc_mark_hook_fn gc_mark_hook)
2899 bool ret = true;
2901 sec->gc_mark = 1;
2903 /* Look through the section relocs. */
2904 if ((sec->flags & SEC_RELOC) != 0
2905 && sec->reloc_count > 0)
2907 struct coff_reloc_cookie cookie;
2909 if (!init_reloc_cookie_for_section (&cookie, info, sec))
2910 ret = false;
2911 else
2913 for (; cookie.rel < cookie.relend; cookie.rel++)
2915 if (!_bfd_coff_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
2917 ret = false;
2918 break;
2921 fini_reloc_cookie_for_section (&cookie, sec);
2925 return ret;
2928 static bool
2929 _bfd_coff_gc_mark_extra_sections (struct bfd_link_info *info,
2930 coff_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
2932 bfd *ibfd;
2934 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
2936 asection *isec;
2937 bool some_kept;
2939 if (bfd_get_flavour (ibfd) != bfd_target_coff_flavour)
2940 continue;
2942 /* Ensure all linker created sections are kept, and see whether
2943 any other section is already marked. */
2944 some_kept = false;
2945 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
2947 if ((isec->flags & SEC_LINKER_CREATED) != 0)
2948 isec->gc_mark = 1;
2949 else if (isec->gc_mark)
2950 some_kept = true;
2953 /* If no section in this file will be kept, then we can
2954 toss out debug sections. */
2955 if (!some_kept)
2956 continue;
2958 /* Keep debug and special sections like .comment when they are
2959 not part of a group, or when we have single-member groups. */
2960 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
2961 if ((isec->flags & SEC_DEBUGGING) != 0
2962 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
2963 isec->gc_mark = 1;
2965 return true;
2968 /* Sweep symbols in swept sections. Called via coff_link_hash_traverse. */
2970 static bool
2971 coff_gc_sweep_symbol (struct coff_link_hash_entry *h,
2972 void *data ATTRIBUTE_UNUSED)
2974 if (h->root.type == bfd_link_hash_warning)
2975 h = (struct coff_link_hash_entry *) h->root.u.i.link;
2977 if ((h->root.type == bfd_link_hash_defined
2978 || h->root.type == bfd_link_hash_defweak)
2979 && !h->root.u.def.section->gc_mark
2980 && !(h->root.u.def.section->owner->flags & DYNAMIC))
2982 /* Do our best to hide the symbol. */
2983 h->root.u.def.section = bfd_und_section_ptr;
2984 h->symbol_class = C_HIDDEN;
2987 return true;
2990 /* The sweep phase of garbage collection. Remove all garbage sections. */
2992 typedef bool (*gc_sweep_hook_fn)
2993 (bfd *, struct bfd_link_info *, asection *, const struct internal_reloc *);
2995 static bool
2996 coff_gc_sweep (bfd *abfd ATTRIBUTE_UNUSED, struct bfd_link_info *info)
2998 bfd *sub;
3000 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3002 asection *o;
3004 if (bfd_get_flavour (sub) != bfd_target_coff_flavour)
3005 continue;
3007 for (o = sub->sections; o != NULL; o = o->next)
3009 /* Keep debug and special sections. */
3010 if ((o->flags & (SEC_DEBUGGING | SEC_LINKER_CREATED)) != 0
3011 || (o->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
3012 o->gc_mark = 1;
3013 else if (startswith (o->name, ".idata")
3014 || startswith (o->name, ".pdata")
3015 || startswith (o->name, ".xdata")
3016 || startswith (o->name, ".rsrc"))
3017 o->gc_mark = 1;
3019 if (o->gc_mark)
3020 continue;
3022 /* Skip sweeping sections already excluded. */
3023 if (o->flags & SEC_EXCLUDE)
3024 continue;
3026 /* Since this is early in the link process, it is simple
3027 to remove a section from the output. */
3028 o->flags |= SEC_EXCLUDE;
3030 if (info->print_gc_sections && o->size != 0)
3031 /* xgettext: c-format */
3032 _bfd_error_handler (_("removing unused section '%pA' in file '%pB'"),
3033 o, sub);
3035 #if 0
3036 /* But we also have to update some of the relocation
3037 info we collected before. */
3038 if (gc_sweep_hook
3039 && (o->flags & SEC_RELOC) != 0
3040 && o->reloc_count > 0
3041 && !bfd_is_abs_section (o->output_section))
3043 struct internal_reloc *internal_relocs;
3044 bool r;
3046 internal_relocs
3047 = _bfd_coff_link_read_relocs (o->owner, o, NULL, NULL,
3048 info->keep_memory);
3049 if (internal_relocs == NULL)
3050 return false;
3052 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
3054 if (coff_section_data (o)->relocs != internal_relocs)
3055 free (internal_relocs);
3057 if (!r)
3058 return false;
3060 #endif
3064 /* Remove the symbols that were in the swept sections from the dynamic
3065 symbol table. */
3066 coff_link_hash_traverse (coff_hash_table (info), coff_gc_sweep_symbol,
3067 NULL);
3069 return true;
3072 /* Keep all sections containing symbols undefined on the command-line,
3073 and the section containing the entry symbol. */
3075 static void
3076 _bfd_coff_gc_keep (struct bfd_link_info *info)
3078 struct bfd_sym_chain *sym;
3080 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
3082 struct coff_link_hash_entry *h;
3084 h = coff_link_hash_lookup (coff_hash_table (info), sym->name,
3085 false, false, false);
3087 if (h != NULL
3088 && (h->root.type == bfd_link_hash_defined
3089 || h->root.type == bfd_link_hash_defweak)
3090 && !bfd_is_abs_section (h->root.u.def.section))
3091 h->root.u.def.section->flags |= SEC_KEEP;
3095 /* Do mark and sweep of unused sections. */
3097 bool
3098 bfd_coff_gc_sections (bfd *abfd ATTRIBUTE_UNUSED, struct bfd_link_info *info)
3100 bfd *sub;
3102 /* FIXME: Should we implement this? */
3103 #if 0
3104 const bfd_coff_backend_data *bed = coff_backend_info (abfd);
3106 if (!bed->can_gc_sections
3107 || !is_coff_hash_table (info->hash))
3109 _bfd_error_handler(_("warning: gc-sections option ignored"));
3110 return true;
3112 #endif
3114 _bfd_coff_gc_keep (info);
3116 /* Grovel through relocs to find out who stays ... */
3117 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3119 asection *o;
3121 if (bfd_get_flavour (sub) != bfd_target_coff_flavour)
3122 continue;
3124 for (o = sub->sections; o != NULL; o = o->next)
3126 if (((o->flags & (SEC_EXCLUDE | SEC_KEEP)) == SEC_KEEP
3127 || startswith (o->name, ".vectors")
3128 || startswith (o->name, ".ctors")
3129 || startswith (o->name, ".dtors"))
3130 && !o->gc_mark)
3132 if (!_bfd_coff_gc_mark (info, o, _bfd_coff_gc_mark_hook))
3133 return false;
3138 /* Allow the backend to mark additional target specific sections. */
3139 _bfd_coff_gc_mark_extra_sections (info, _bfd_coff_gc_mark_hook);
3141 /* ... and mark SEC_EXCLUDE for those that go. */
3142 return coff_gc_sweep (abfd, info);
3145 /* Return name used to identify a comdat group. */
3147 const char *
3148 bfd_coff_group_name (bfd *abfd, const asection *sec)
3150 struct coff_comdat_info *ci = bfd_coff_get_comdat_section (abfd, sec);
3151 if (ci != NULL)
3152 return ci->name;
3153 return NULL;
3156 bool
3157 _bfd_coff_close_and_cleanup (bfd *abfd)
3159 struct coff_tdata *tdata = coff_data (abfd);
3161 if (tdata != NULL)
3163 /* PR 25447:
3164 Do not clear the keep_syms and keep_strings flags.
3165 These may have been set by pe_ILF_build_a_bfd() indicating
3166 that the syms and strings pointers are not to be freed. */
3167 if (bfd_get_format (abfd) == bfd_object
3168 && bfd_family_coff (abfd)
3169 && !_bfd_coff_free_symbols (abfd))
3170 return false;
3172 if (bfd_get_format (abfd) == bfd_object
3173 || bfd_get_format (abfd) == bfd_core)
3174 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
3176 return _bfd_generic_close_and_cleanup (abfd);