1 /* ELF linking support for BFD.
2 Copyright (C) 1995-2014 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
27 #include "safe-ctype.h"
28 #include "libiberty.h"
31 /* This struct is used to pass information to routines called via
32 elf_link_hash_traverse which must return failure. */
34 struct elf_info_failed
36 struct bfd_link_info *info;
40 /* This structure is used to pass information to
41 _bfd_elf_link_find_version_dependencies. */
43 struct elf_find_verdep_info
45 /* General link information. */
46 struct bfd_link_info *info;
47 /* The number of dependencies. */
49 /* Whether we had a failure. */
53 static bfd_boolean _bfd_elf_fix_symbol_flags
54 (struct elf_link_hash_entry *, struct elf_info_failed *);
56 /* Define a symbol in a dynamic linkage section. */
58 struct elf_link_hash_entry *
59 _bfd_elf_define_linkage_sym (bfd *abfd,
60 struct bfd_link_info *info,
64 struct elf_link_hash_entry *h;
65 struct bfd_link_hash_entry *bh;
66 const struct elf_backend_data *bed;
68 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
71 /* Zap symbol defined in an as-needed lib that wasn't linked.
72 This is a symptom of a larger problem: Absolute symbols
73 defined in shared libraries can't be overridden, because we
74 lose the link to the bfd which is via the symbol section. */
75 h->root.type = bfd_link_hash_new;
79 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
81 get_elf_backend_data (abfd)->collect,
84 h = (struct elf_link_hash_entry *) bh;
88 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
89 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
91 bed = get_elf_backend_data (abfd);
92 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
97 _bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
101 struct elf_link_hash_entry *h;
102 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
103 struct elf_link_hash_table *htab = elf_hash_table (info);
105 /* This function may be called more than once. */
106 s = bfd_get_linker_section (abfd, ".got");
110 flags = bed->dynamic_sec_flags;
112 s = bfd_make_section_anyway_with_flags (abfd,
113 (bed->rela_plts_and_copies_p
114 ? ".rela.got" : ".rel.got"),
115 (bed->dynamic_sec_flags
118 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
122 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
124 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
128 if (bed->want_got_plt)
130 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
132 || !bfd_set_section_alignment (abfd, s,
133 bed->s->log_file_align))
138 /* The first bit of the global offset table is the header. */
139 s->size += bed->got_header_size;
141 if (bed->want_got_sym)
143 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
144 (or .got.plt) section. We don't do this in the linker script
145 because we don't want to define the symbol if we are not creating
146 a global offset table. */
147 h = _bfd_elf_define_linkage_sym (abfd, info, s,
148 "_GLOBAL_OFFSET_TABLE_");
149 elf_hash_table (info)->hgot = h;
157 /* Create a strtab to hold the dynamic symbol names. */
159 _bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
161 struct elf_link_hash_table *hash_table;
163 hash_table = elf_hash_table (info);
164 if (hash_table->dynobj == NULL)
165 hash_table->dynobj = abfd;
167 if (hash_table->dynstr == NULL)
169 hash_table->dynstr = _bfd_elf_strtab_init ();
170 if (hash_table->dynstr == NULL)
176 /* Create some sections which will be filled in with dynamic linking
177 information. ABFD is an input file which requires dynamic sections
178 to be created. The dynamic sections take up virtual memory space
179 when the final executable is run, so we need to create them before
180 addresses are assigned to the output sections. We work out the
181 actual contents and size of these sections later. */
184 _bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
188 const struct elf_backend_data *bed;
189 struct elf_link_hash_entry *h;
191 if (! is_elf_hash_table (info->hash))
194 if (elf_hash_table (info)->dynamic_sections_created)
197 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
200 abfd = elf_hash_table (info)->dynobj;
201 bed = get_elf_backend_data (abfd);
203 flags = bed->dynamic_sec_flags;
205 /* A dynamically linked executable has a .interp section, but a
206 shared library does not. */
207 if (info->executable)
209 s = bfd_make_section_anyway_with_flags (abfd, ".interp",
210 flags | SEC_READONLY);
215 /* Create sections to hold version informations. These are removed
216 if they are not needed. */
217 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
218 flags | SEC_READONLY);
220 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
223 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
224 flags | SEC_READONLY);
226 || ! bfd_set_section_alignment (abfd, s, 1))
229 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
230 flags | SEC_READONLY);
232 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
235 s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
236 flags | SEC_READONLY);
238 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
241 s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
242 flags | SEC_READONLY);
246 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
248 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
251 /* The special symbol _DYNAMIC is always set to the start of the
252 .dynamic section. We could set _DYNAMIC in a linker script, but we
253 only want to define it if we are, in fact, creating a .dynamic
254 section. We don't want to define it if there is no .dynamic
255 section, since on some ELF platforms the start up code examines it
256 to decide how to initialize the process. */
257 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
258 elf_hash_table (info)->hdynamic = h;
264 s = bfd_make_section_anyway_with_flags (abfd, ".hash",
265 flags | SEC_READONLY);
267 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
269 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
272 if (info->emit_gnu_hash)
274 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
275 flags | SEC_READONLY);
277 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
279 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
280 4 32-bit words followed by variable count of 64-bit words, then
281 variable count of 32-bit words. */
282 if (bed->s->arch_size == 64)
283 elf_section_data (s)->this_hdr.sh_entsize = 0;
285 elf_section_data (s)->this_hdr.sh_entsize = 4;
288 /* Let the backend create the rest of the sections. This lets the
289 backend set the right flags. The backend will normally create
290 the .got and .plt sections. */
291 if (bed->elf_backend_create_dynamic_sections == NULL
292 || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
295 elf_hash_table (info)->dynamic_sections_created = TRUE;
300 /* Create dynamic sections when linking against a dynamic object. */
303 _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
305 flagword flags, pltflags;
306 struct elf_link_hash_entry *h;
308 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
309 struct elf_link_hash_table *htab = elf_hash_table (info);
311 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
312 .rel[a].bss sections. */
313 flags = bed->dynamic_sec_flags;
316 if (bed->plt_not_loaded)
317 /* We do not clear SEC_ALLOC here because we still want the OS to
318 allocate space for the section; it's just that there's nothing
319 to read in from the object file. */
320 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
322 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
323 if (bed->plt_readonly)
324 pltflags |= SEC_READONLY;
326 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
328 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
332 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
334 if (bed->want_plt_sym)
336 h = _bfd_elf_define_linkage_sym (abfd, info, s,
337 "_PROCEDURE_LINKAGE_TABLE_");
338 elf_hash_table (info)->hplt = h;
343 s = bfd_make_section_anyway_with_flags (abfd,
344 (bed->rela_plts_and_copies_p
345 ? ".rela.plt" : ".rel.plt"),
346 flags | SEC_READONLY);
348 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
352 if (! _bfd_elf_create_got_section (abfd, info))
355 if (bed->want_dynbss)
357 /* The .dynbss section is a place to put symbols which are defined
358 by dynamic objects, are referenced by regular objects, and are
359 not functions. We must allocate space for them in the process
360 image and use a R_*_COPY reloc to tell the dynamic linker to
361 initialize them at run time. The linker script puts the .dynbss
362 section into the .bss section of the final image. */
363 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
364 (SEC_ALLOC | SEC_LINKER_CREATED));
368 /* The .rel[a].bss section holds copy relocs. This section is not
369 normally needed. We need to create it here, though, so that the
370 linker will map it to an output section. We can't just create it
371 only if we need it, because we will not know whether we need it
372 until we have seen all the input files, and the first time the
373 main linker code calls BFD after examining all the input files
374 (size_dynamic_sections) the input sections have already been
375 mapped to the output sections. If the section turns out not to
376 be needed, we can discard it later. We will never need this
377 section when generating a shared object, since they do not use
381 s = bfd_make_section_anyway_with_flags (abfd,
382 (bed->rela_plts_and_copies_p
383 ? ".rela.bss" : ".rel.bss"),
384 flags | SEC_READONLY);
386 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
394 /* Record a new dynamic symbol. We record the dynamic symbols as we
395 read the input files, since we need to have a list of all of them
396 before we can determine the final sizes of the output sections.
397 Note that we may actually call this function even though we are not
398 going to output any dynamic symbols; in some cases we know that a
399 symbol should be in the dynamic symbol table, but only if there is
403 bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
404 struct elf_link_hash_entry *h)
406 if (h->dynindx == -1)
408 struct elf_strtab_hash *dynstr;
413 /* XXX: The ABI draft says the linker must turn hidden and
414 internal symbols into STB_LOCAL symbols when producing the
415 DSO. However, if ld.so honors st_other in the dynamic table,
416 this would not be necessary. */
417 switch (ELF_ST_VISIBILITY (h->other))
421 if (h->root.type != bfd_link_hash_undefined
422 && h->root.type != bfd_link_hash_undefweak)
425 if (!elf_hash_table (info)->is_relocatable_executable)
433 h->dynindx = elf_hash_table (info)->dynsymcount;
434 ++elf_hash_table (info)->dynsymcount;
436 dynstr = elf_hash_table (info)->dynstr;
439 /* Create a strtab to hold the dynamic symbol names. */
440 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
445 /* We don't put any version information in the dynamic string
447 name = h->root.root.string;
448 p = strchr (name, ELF_VER_CHR);
450 /* We know that the p points into writable memory. In fact,
451 there are only a few symbols that have read-only names, being
452 those like _GLOBAL_OFFSET_TABLE_ that are created specially
453 by the backends. Most symbols will have names pointing into
454 an ELF string table read from a file, or to objalloc memory. */
457 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
462 if (indx == (bfd_size_type) -1)
464 h->dynstr_index = indx;
470 /* Mark a symbol dynamic. */
473 bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
474 struct elf_link_hash_entry *h,
475 Elf_Internal_Sym *sym)
477 struct bfd_elf_dynamic_list *d = info->dynamic_list;
479 /* It may be called more than once on the same H. */
480 if(h->dynamic || info->relocatable)
483 if ((info->dynamic_data
484 && (h->type == STT_OBJECT
486 && ELF_ST_TYPE (sym->st_info) == STT_OBJECT)))
488 && h->root.type == bfd_link_hash_new
489 && (*d->match) (&d->head, NULL, h->root.root.string)))
493 /* Record an assignment to a symbol made by a linker script. We need
494 this in case some dynamic object refers to this symbol. */
497 bfd_elf_record_link_assignment (bfd *output_bfd,
498 struct bfd_link_info *info,
503 struct elf_link_hash_entry *h, *hv;
504 struct elf_link_hash_table *htab;
505 const struct elf_backend_data *bed;
507 if (!is_elf_hash_table (info->hash))
510 htab = elf_hash_table (info);
511 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
515 switch (h->root.type)
517 case bfd_link_hash_defined:
518 case bfd_link_hash_defweak:
519 case bfd_link_hash_common:
521 case bfd_link_hash_undefweak:
522 case bfd_link_hash_undefined:
523 /* Since we're defining the symbol, don't let it seem to have not
524 been defined. record_dynamic_symbol and size_dynamic_sections
525 may depend on this. */
526 h->root.type = bfd_link_hash_new;
527 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
528 bfd_link_repair_undef_list (&htab->root);
530 case bfd_link_hash_new:
531 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
534 case bfd_link_hash_indirect:
535 /* We had a versioned symbol in a dynamic library. We make the
536 the versioned symbol point to this one. */
537 bed = get_elf_backend_data (output_bfd);
539 while (hv->root.type == bfd_link_hash_indirect
540 || hv->root.type == bfd_link_hash_warning)
541 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
542 /* We don't need to update h->root.u since linker will set them
544 h->root.type = bfd_link_hash_undefined;
545 hv->root.type = bfd_link_hash_indirect;
546 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
547 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
549 case bfd_link_hash_warning:
554 /* If this symbol is being provided by the linker script, and it is
555 currently defined by a dynamic object, but not by a regular
556 object, then mark it as undefined so that the generic linker will
557 force the correct value. */
561 h->root.type = bfd_link_hash_undefined;
563 /* If this symbol is not being provided by the linker script, and it is
564 currently defined by a dynamic object, but not by a regular object,
565 then clear out any version information because the symbol will not be
566 associated with the dynamic object any more. */
570 h->verinfo.verdef = NULL;
576 bed = get_elf_backend_data (output_bfd);
577 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
578 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
579 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
582 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
584 if (!info->relocatable
586 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
587 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
593 || (info->executable && elf_hash_table (info)->is_relocatable_executable))
596 if (! bfd_elf_link_record_dynamic_symbol (info, h))
599 /* If this is a weak defined symbol, and we know a corresponding
600 real symbol from the same dynamic object, make sure the real
601 symbol is also made into a dynamic symbol. */
602 if (h->u.weakdef != NULL
603 && h->u.weakdef->dynindx == -1)
605 if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
613 /* Record a new local dynamic symbol. Returns 0 on failure, 1 on
614 success, and 2 on a failure caused by attempting to record a symbol
615 in a discarded section, eg. a discarded link-once section symbol. */
618 bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
623 struct elf_link_local_dynamic_entry *entry;
624 struct elf_link_hash_table *eht;
625 struct elf_strtab_hash *dynstr;
626 unsigned long dynstr_index;
628 Elf_External_Sym_Shndx eshndx;
629 char esym[sizeof (Elf64_External_Sym)];
631 if (! is_elf_hash_table (info->hash))
634 /* See if the entry exists already. */
635 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
636 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
639 amt = sizeof (*entry);
640 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
644 /* Go find the symbol, so that we can find it's name. */
645 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
646 1, input_indx, &entry->isym, esym, &eshndx))
648 bfd_release (input_bfd, entry);
652 if (entry->isym.st_shndx != SHN_UNDEF
653 && entry->isym.st_shndx < SHN_LORESERVE)
657 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
658 if (s == NULL || bfd_is_abs_section (s->output_section))
660 /* We can still bfd_release here as nothing has done another
661 bfd_alloc. We can't do this later in this function. */
662 bfd_release (input_bfd, entry);
667 name = (bfd_elf_string_from_elf_section
668 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
669 entry->isym.st_name));
671 dynstr = elf_hash_table (info)->dynstr;
674 /* Create a strtab to hold the dynamic symbol names. */
675 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
680 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
681 if (dynstr_index == (unsigned long) -1)
683 entry->isym.st_name = dynstr_index;
685 eht = elf_hash_table (info);
687 entry->next = eht->dynlocal;
688 eht->dynlocal = entry;
689 entry->input_bfd = input_bfd;
690 entry->input_indx = input_indx;
693 /* Whatever binding the symbol had before, it's now local. */
695 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
697 /* The dynindx will be set at the end of size_dynamic_sections. */
702 /* Return the dynindex of a local dynamic symbol. */
705 _bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
709 struct elf_link_local_dynamic_entry *e;
711 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
712 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
717 /* This function is used to renumber the dynamic symbols, if some of
718 them are removed because they are marked as local. This is called
719 via elf_link_hash_traverse. */
722 elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
725 size_t *count = (size_t *) data;
730 if (h->dynindx != -1)
731 h->dynindx = ++(*count);
737 /* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
738 STB_LOCAL binding. */
741 elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
744 size_t *count = (size_t *) data;
746 if (!h->forced_local)
749 if (h->dynindx != -1)
750 h->dynindx = ++(*count);
755 /* Return true if the dynamic symbol for a given section should be
756 omitted when creating a shared library. */
758 _bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
759 struct bfd_link_info *info,
762 struct elf_link_hash_table *htab;
764 switch (elf_section_data (p)->this_hdr.sh_type)
768 /* If sh_type is yet undecided, assume it could be
769 SHT_PROGBITS/SHT_NOBITS. */
771 htab = elf_hash_table (info);
772 if (p == htab->tls_sec)
775 if (htab->text_index_section != NULL)
776 return p != htab->text_index_section && p != htab->data_index_section;
778 if (strcmp (p->name, ".got") == 0
779 || strcmp (p->name, ".got.plt") == 0
780 || strcmp (p->name, ".plt") == 0)
784 if (htab->dynobj != NULL
785 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
786 && ip->output_section == p)
791 /* There shouldn't be section relative relocations
792 against any other section. */
798 /* Assign dynsym indices. In a shared library we generate a section
799 symbol for each output section, which come first. Next come symbols
800 which have been forced to local binding. Then all of the back-end
801 allocated local dynamic syms, followed by the rest of the global
805 _bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
806 struct bfd_link_info *info,
807 unsigned long *section_sym_count)
809 unsigned long dynsymcount = 0;
811 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
813 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
815 for (p = output_bfd->sections; p ; p = p->next)
816 if ((p->flags & SEC_EXCLUDE) == 0
817 && (p->flags & SEC_ALLOC) != 0
818 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
819 elf_section_data (p)->dynindx = ++dynsymcount;
821 elf_section_data (p)->dynindx = 0;
823 *section_sym_count = dynsymcount;
825 elf_link_hash_traverse (elf_hash_table (info),
826 elf_link_renumber_local_hash_table_dynsyms,
829 if (elf_hash_table (info)->dynlocal)
831 struct elf_link_local_dynamic_entry *p;
832 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
833 p->dynindx = ++dynsymcount;
836 elf_link_hash_traverse (elf_hash_table (info),
837 elf_link_renumber_hash_table_dynsyms,
840 /* There is an unused NULL entry at the head of the table which
841 we must account for in our count. Unless there weren't any
842 symbols, which means we'll have no table at all. */
843 if (dynsymcount != 0)
846 elf_hash_table (info)->dynsymcount = dynsymcount;
850 /* Merge st_other field. */
853 elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
854 const Elf_Internal_Sym *isym,
855 bfd_boolean definition, bfd_boolean dynamic)
857 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
859 /* If st_other has a processor-specific meaning, specific
860 code might be needed here. */
861 if (bed->elf_backend_merge_symbol_attribute)
862 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
867 unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
868 unsigned hvis = ELF_ST_VISIBILITY (h->other);
870 /* Keep the most constraining visibility. Leave the remainder
871 of the st_other field to elf_backend_merge_symbol_attribute. */
872 if (symvis - 1 < hvis - 1)
873 h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
877 /* This function is called when we want to merge a new symbol with an
878 existing symbol. It handles the various cases which arise when we
879 find a definition in a dynamic object, or when there is already a
880 definition in a dynamic object. The new symbol is described by
881 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
882 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
883 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
884 of an old common symbol. We set OVERRIDE if the old symbol is
885 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
886 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
887 to change. By OK to change, we mean that we shouldn't warn if the
888 type or size does change. */
891 _bfd_elf_merge_symbol (bfd *abfd,
892 struct bfd_link_info *info,
894 Elf_Internal_Sym *sym,
897 struct elf_link_hash_entry **sym_hash,
899 bfd_boolean *pold_weak,
900 unsigned int *pold_alignment,
902 bfd_boolean *override,
903 bfd_boolean *type_change_ok,
904 bfd_boolean *size_change_ok)
906 asection *sec, *oldsec;
907 struct elf_link_hash_entry *h;
908 struct elf_link_hash_entry *hi;
909 struct elf_link_hash_entry *flip;
912 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
913 bfd_boolean newweak, oldweak, newfunc, oldfunc;
914 const struct elf_backend_data *bed;
920 bind = ELF_ST_BIND (sym->st_info);
922 if (! bfd_is_und_section (sec))
923 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
925 h = ((struct elf_link_hash_entry *)
926 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
931 bed = get_elf_backend_data (abfd);
933 /* For merging, we only care about real symbols. But we need to make
934 sure that indirect symbol dynamic flags are updated. */
936 while (h->root.type == bfd_link_hash_indirect
937 || h->root.type == bfd_link_hash_warning)
938 h = (struct elf_link_hash_entry *) h->root.u.i.link;
940 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
945 switch (h->root.type)
950 case bfd_link_hash_undefined:
951 case bfd_link_hash_undefweak:
952 oldbfd = h->root.u.undef.abfd;
955 case bfd_link_hash_defined:
956 case bfd_link_hash_defweak:
957 oldbfd = h->root.u.def.section->owner;
958 oldsec = h->root.u.def.section;
961 case bfd_link_hash_common:
962 oldbfd = h->root.u.c.p->section->owner;
963 oldsec = h->root.u.c.p->section;
965 *pold_alignment = h->root.u.c.p->alignment_power;
968 if (poldbfd && *poldbfd == NULL)
971 /* Differentiate strong and weak symbols. */
972 newweak = bind == STB_WEAK;
973 oldweak = (h->root.type == bfd_link_hash_defweak
974 || h->root.type == bfd_link_hash_undefweak);
976 *pold_weak = oldweak;
978 /* This code is for coping with dynamic objects, and is only useful
979 if we are doing an ELF link. */
980 if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
983 /* We have to check it for every instance since the first few may be
984 references and not all compilers emit symbol type for undefined
986 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
988 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
989 respectively, is from a dynamic object. */
991 newdyn = (abfd->flags & DYNAMIC) != 0;
993 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
994 syms and defined syms in dynamic libraries respectively.
995 ref_dynamic on the other hand can be set for a symbol defined in
996 a dynamic library, and def_dynamic may not be set; When the
997 definition in a dynamic lib is overridden by a definition in the
998 executable use of the symbol in the dynamic lib becomes a
999 reference to the executable symbol. */
1002 if (bfd_is_und_section (sec))
1004 if (bind != STB_WEAK)
1006 h->ref_dynamic_nonweak = 1;
1007 hi->ref_dynamic_nonweak = 1;
1013 hi->dynamic_def = 1;
1017 /* If we just created the symbol, mark it as being an ELF symbol.
1018 Other than that, there is nothing to do--there is no merge issue
1019 with a newly defined symbol--so we just return. */
1021 if (h->root.type == bfd_link_hash_new)
1027 /* In cases involving weak versioned symbols, we may wind up trying
1028 to merge a symbol with itself. Catch that here, to avoid the
1029 confusion that results if we try to override a symbol with
1030 itself. The additional tests catch cases like
1031 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1032 dynamic object, which we do want to handle here. */
1034 && (newweak || oldweak)
1035 && ((abfd->flags & DYNAMIC) == 0
1036 || !h->def_regular))
1041 olddyn = (oldbfd->flags & DYNAMIC) != 0;
1042 else if (oldsec != NULL)
1044 /* This handles the special SHN_MIPS_{TEXT,DATA} section
1045 indices used by MIPS ELF. */
1046 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
1049 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1050 respectively, appear to be a definition rather than reference. */
1052 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
1054 olddef = (h->root.type != bfd_link_hash_undefined
1055 && h->root.type != bfd_link_hash_undefweak
1056 && h->root.type != bfd_link_hash_common);
1058 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1059 respectively, appear to be a function. */
1061 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1062 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1064 oldfunc = (h->type != STT_NOTYPE
1065 && bed->is_function_type (h->type));
1067 /* When we try to create a default indirect symbol from the dynamic
1068 definition with the default version, we skip it if its type and
1069 the type of existing regular definition mismatch. */
1070 if (pold_alignment == NULL
1074 && (((olddef || h->root.type == bfd_link_hash_common)
1075 && ELF_ST_TYPE (sym->st_info) != h->type
1076 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1077 && h->type != STT_NOTYPE
1078 && !(newfunc && oldfunc))
1080 && ((h->type == STT_GNU_IFUNC)
1081 != (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)))))
1087 /* Check TLS symbols. We don't check undefined symbols introduced
1088 by "ld -u" which have no type (and oldbfd NULL), and we don't
1089 check symbols from plugins because they also have no type. */
1091 && (oldbfd->flags & BFD_PLUGIN) == 0
1092 && (abfd->flags & BFD_PLUGIN) == 0
1093 && ELF_ST_TYPE (sym->st_info) != h->type
1094 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
1097 bfd_boolean ntdef, tdef;
1098 asection *ntsec, *tsec;
1100 if (h->type == STT_TLS)
1120 (*_bfd_error_handler)
1121 (_("%s: TLS definition in %B section %A "
1122 "mismatches non-TLS definition in %B section %A"),
1123 tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1124 else if (!tdef && !ntdef)
1125 (*_bfd_error_handler)
1126 (_("%s: TLS reference in %B "
1127 "mismatches non-TLS reference in %B"),
1128 tbfd, ntbfd, h->root.root.string);
1130 (*_bfd_error_handler)
1131 (_("%s: TLS definition in %B section %A "
1132 "mismatches non-TLS reference in %B"),
1133 tbfd, tsec, ntbfd, h->root.root.string);
1135 (*_bfd_error_handler)
1136 (_("%s: TLS reference in %B "
1137 "mismatches non-TLS definition in %B section %A"),
1138 tbfd, ntbfd, ntsec, h->root.root.string);
1140 bfd_set_error (bfd_error_bad_value);
1144 /* If the old symbol has non-default visibility, we ignore the new
1145 definition from a dynamic object. */
1147 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1148 && !bfd_is_und_section (sec))
1151 /* Make sure this symbol is dynamic. */
1153 hi->ref_dynamic = 1;
1154 /* A protected symbol has external availability. Make sure it is
1155 recorded as dynamic.
1157 FIXME: Should we check type and size for protected symbol? */
1158 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
1159 return bfd_elf_link_record_dynamic_symbol (info, h);
1164 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
1167 /* If the new symbol with non-default visibility comes from a
1168 relocatable file and the old definition comes from a dynamic
1169 object, we remove the old definition. */
1170 if (hi->root.type == bfd_link_hash_indirect)
1172 /* Handle the case where the old dynamic definition is
1173 default versioned. We need to copy the symbol info from
1174 the symbol with default version to the normal one if it
1175 was referenced before. */
1178 hi->root.type = h->root.type;
1179 h->root.type = bfd_link_hash_indirect;
1180 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
1182 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1183 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1185 /* If the new symbol is hidden or internal, completely undo
1186 any dynamic link state. */
1187 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1188 h->forced_local = 0;
1195 /* FIXME: Should we check type and size for protected symbol? */
1205 /* If the old symbol was undefined before, then it will still be
1206 on the undefs list. If the new symbol is undefined or
1207 common, we can't make it bfd_link_hash_new here, because new
1208 undefined or common symbols will be added to the undefs list
1209 by _bfd_generic_link_add_one_symbol. Symbols may not be
1210 added twice to the undefs list. Also, if the new symbol is
1211 undefweak then we don't want to lose the strong undef. */
1212 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1214 h->root.type = bfd_link_hash_undefined;
1215 h->root.u.undef.abfd = abfd;
1219 h->root.type = bfd_link_hash_new;
1220 h->root.u.undef.abfd = NULL;
1223 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1225 /* If the new symbol is hidden or internal, completely undo
1226 any dynamic link state. */
1227 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1228 h->forced_local = 0;
1234 /* FIXME: Should we check type and size for protected symbol? */
1240 /* If a new weak symbol definition comes from a regular file and the
1241 old symbol comes from a dynamic library, we treat the new one as
1242 strong. Similarly, an old weak symbol definition from a regular
1243 file is treated as strong when the new symbol comes from a dynamic
1244 library. Further, an old weak symbol from a dynamic library is
1245 treated as strong if the new symbol is from a dynamic library.
1246 This reflects the way glibc's ld.so works.
1248 Do this before setting *type_change_ok or *size_change_ok so that
1249 we warn properly when dynamic library symbols are overridden. */
1251 if (newdef && !newdyn && olddyn)
1253 if (olddef && newdyn)
1256 /* Allow changes between different types of function symbol. */
1257 if (newfunc && oldfunc)
1258 *type_change_ok = TRUE;
1260 /* It's OK to change the type if either the existing symbol or the
1261 new symbol is weak. A type change is also OK if the old symbol
1262 is undefined and the new symbol is defined. */
1267 && h->root.type == bfd_link_hash_undefined))
1268 *type_change_ok = TRUE;
1270 /* It's OK to change the size if either the existing symbol or the
1271 new symbol is weak, or if the old symbol is undefined. */
1274 || h->root.type == bfd_link_hash_undefined)
1275 *size_change_ok = TRUE;
1277 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1278 symbol, respectively, appears to be a common symbol in a dynamic
1279 object. If a symbol appears in an uninitialized section, and is
1280 not weak, and is not a function, then it may be a common symbol
1281 which was resolved when the dynamic object was created. We want
1282 to treat such symbols specially, because they raise special
1283 considerations when setting the symbol size: if the symbol
1284 appears as a common symbol in a regular object, and the size in
1285 the regular object is larger, we must make sure that we use the
1286 larger size. This problematic case can always be avoided in C,
1287 but it must be handled correctly when using Fortran shared
1290 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1291 likewise for OLDDYNCOMMON and OLDDEF.
1293 Note that this test is just a heuristic, and that it is quite
1294 possible to have an uninitialized symbol in a shared object which
1295 is really a definition, rather than a common symbol. This could
1296 lead to some minor confusion when the symbol really is a common
1297 symbol in some regular object. However, I think it will be
1303 && (sec->flags & SEC_ALLOC) != 0
1304 && (sec->flags & SEC_LOAD) == 0
1307 newdyncommon = TRUE;
1309 newdyncommon = FALSE;
1313 && h->root.type == bfd_link_hash_defined
1315 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1316 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1319 olddyncommon = TRUE;
1321 olddyncommon = FALSE;
1323 /* We now know everything about the old and new symbols. We ask the
1324 backend to check if we can merge them. */
1325 if (bed->merge_symbol != NULL)
1327 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1332 /* If both the old and the new symbols look like common symbols in a
1333 dynamic object, set the size of the symbol to the larger of the
1338 && sym->st_size != h->size)
1340 /* Since we think we have two common symbols, issue a multiple
1341 common warning if desired. Note that we only warn if the
1342 size is different. If the size is the same, we simply let
1343 the old symbol override the new one as normally happens with
1344 symbols defined in dynamic objects. */
1346 if (! ((*info->callbacks->multiple_common)
1347 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
1350 if (sym->st_size > h->size)
1351 h->size = sym->st_size;
1353 *size_change_ok = TRUE;
1356 /* If we are looking at a dynamic object, and we have found a
1357 definition, we need to see if the symbol was already defined by
1358 some other object. If so, we want to use the existing
1359 definition, and we do not want to report a multiple symbol
1360 definition error; we do this by clobbering *PSEC to be
1361 bfd_und_section_ptr.
1363 We treat a common symbol as a definition if the symbol in the
1364 shared library is a function, since common symbols always
1365 represent variables; this can cause confusion in principle, but
1366 any such confusion would seem to indicate an erroneous program or
1367 shared library. We also permit a common symbol in a regular
1368 object to override a weak symbol in a shared object. */
1373 || (h->root.type == bfd_link_hash_common
1374 && (newweak || newfunc))))
1378 newdyncommon = FALSE;
1380 *psec = sec = bfd_und_section_ptr;
1381 *size_change_ok = TRUE;
1383 /* If we get here when the old symbol is a common symbol, then
1384 we are explicitly letting it override a weak symbol or
1385 function in a dynamic object, and we don't want to warn about
1386 a type change. If the old symbol is a defined symbol, a type
1387 change warning may still be appropriate. */
1389 if (h->root.type == bfd_link_hash_common)
1390 *type_change_ok = TRUE;
1393 /* Handle the special case of an old common symbol merging with a
1394 new symbol which looks like a common symbol in a shared object.
1395 We change *PSEC and *PVALUE to make the new symbol look like a
1396 common symbol, and let _bfd_generic_link_add_one_symbol do the
1400 && h->root.type == bfd_link_hash_common)
1404 newdyncommon = FALSE;
1405 *pvalue = sym->st_size;
1406 *psec = sec = bed->common_section (oldsec);
1407 *size_change_ok = TRUE;
1410 /* Skip weak definitions of symbols that are already defined. */
1411 if (newdef && olddef && newweak)
1413 /* Don't skip new non-IR weak syms. */
1414 if (!(oldbfd != NULL
1415 && (oldbfd->flags & BFD_PLUGIN) != 0
1416 && (abfd->flags & BFD_PLUGIN) == 0))
1422 /* Merge st_other. If the symbol already has a dynamic index,
1423 but visibility says it should not be visible, turn it into a
1425 elf_merge_st_other (abfd, h, sym, newdef, newdyn);
1426 if (h->dynindx != -1)
1427 switch (ELF_ST_VISIBILITY (h->other))
1431 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1436 /* If the old symbol is from a dynamic object, and the new symbol is
1437 a definition which is not from a dynamic object, then the new
1438 symbol overrides the old symbol. Symbols from regular files
1439 always take precedence over symbols from dynamic objects, even if
1440 they are defined after the dynamic object in the link.
1442 As above, we again permit a common symbol in a regular object to
1443 override a definition in a shared object if the shared object
1444 symbol is a function or is weak. */
1449 || (bfd_is_com_section (sec)
1450 && (oldweak || oldfunc)))
1455 /* Change the hash table entry to undefined, and let
1456 _bfd_generic_link_add_one_symbol do the right thing with the
1459 h->root.type = bfd_link_hash_undefined;
1460 h->root.u.undef.abfd = h->root.u.def.section->owner;
1461 *size_change_ok = TRUE;
1464 olddyncommon = FALSE;
1466 /* We again permit a type change when a common symbol may be
1467 overriding a function. */
1469 if (bfd_is_com_section (sec))
1473 /* If a common symbol overrides a function, make sure
1474 that it isn't defined dynamically nor has type
1477 h->type = STT_NOTYPE;
1479 *type_change_ok = TRUE;
1482 if (hi->root.type == bfd_link_hash_indirect)
1485 /* This union may have been set to be non-NULL when this symbol
1486 was seen in a dynamic object. We must force the union to be
1487 NULL, so that it is correct for a regular symbol. */
1488 h->verinfo.vertree = NULL;
1491 /* Handle the special case of a new common symbol merging with an
1492 old symbol that looks like it might be a common symbol defined in
1493 a shared object. Note that we have already handled the case in
1494 which a new common symbol should simply override the definition
1495 in the shared library. */
1498 && bfd_is_com_section (sec)
1501 /* It would be best if we could set the hash table entry to a
1502 common symbol, but we don't know what to use for the section
1503 or the alignment. */
1504 if (! ((*info->callbacks->multiple_common)
1505 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
1508 /* If the presumed common symbol in the dynamic object is
1509 larger, pretend that the new symbol has its size. */
1511 if (h->size > *pvalue)
1514 /* We need to remember the alignment required by the symbol
1515 in the dynamic object. */
1516 BFD_ASSERT (pold_alignment);
1517 *pold_alignment = h->root.u.def.section->alignment_power;
1520 olddyncommon = FALSE;
1522 h->root.type = bfd_link_hash_undefined;
1523 h->root.u.undef.abfd = h->root.u.def.section->owner;
1525 *size_change_ok = TRUE;
1526 *type_change_ok = TRUE;
1528 if (hi->root.type == bfd_link_hash_indirect)
1531 h->verinfo.vertree = NULL;
1536 /* Handle the case where we had a versioned symbol in a dynamic
1537 library and now find a definition in a normal object. In this
1538 case, we make the versioned symbol point to the normal one. */
1539 flip->root.type = h->root.type;
1540 flip->root.u.undef.abfd = h->root.u.undef.abfd;
1541 h->root.type = bfd_link_hash_indirect;
1542 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
1543 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
1547 flip->ref_dynamic = 1;
1554 /* This function is called to create an indirect symbol from the
1555 default for the symbol with the default version if needed. The
1556 symbol is described by H, NAME, SYM, SEC, and VALUE. We
1557 set DYNSYM if the new indirect symbol is dynamic. */
1560 _bfd_elf_add_default_symbol (bfd *abfd,
1561 struct bfd_link_info *info,
1562 struct elf_link_hash_entry *h,
1564 Elf_Internal_Sym *sym,
1568 bfd_boolean *dynsym)
1570 bfd_boolean type_change_ok;
1571 bfd_boolean size_change_ok;
1574 struct elf_link_hash_entry *hi;
1575 struct bfd_link_hash_entry *bh;
1576 const struct elf_backend_data *bed;
1577 bfd_boolean collect;
1578 bfd_boolean dynamic;
1579 bfd_boolean override;
1581 size_t len, shortlen;
1584 /* If this symbol has a version, and it is the default version, we
1585 create an indirect symbol from the default name to the fully
1586 decorated name. This will cause external references which do not
1587 specify a version to be bound to this version of the symbol. */
1588 p = strchr (name, ELF_VER_CHR);
1589 if (p == NULL || p[1] != ELF_VER_CHR)
1592 bed = get_elf_backend_data (abfd);
1593 collect = bed->collect;
1594 dynamic = (abfd->flags & DYNAMIC) != 0;
1596 shortlen = p - name;
1597 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
1598 if (shortname == NULL)
1600 memcpy (shortname, name, shortlen);
1601 shortname[shortlen] = '\0';
1603 /* We are going to create a new symbol. Merge it with any existing
1604 symbol with this name. For the purposes of the merge, act as
1605 though we were defining the symbol we just defined, although we
1606 actually going to define an indirect symbol. */
1607 type_change_ok = FALSE;
1608 size_change_ok = FALSE;
1610 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1611 &hi, poldbfd, NULL, NULL, &skip, &override,
1612 &type_change_ok, &size_change_ok))
1621 if (! (_bfd_generic_link_add_one_symbol
1622 (info, abfd, shortname, BSF_INDIRECT, bfd_ind_section_ptr,
1623 0, name, FALSE, collect, &bh)))
1625 hi = (struct elf_link_hash_entry *) bh;
1629 /* In this case the symbol named SHORTNAME is overriding the
1630 indirect symbol we want to add. We were planning on making
1631 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1632 is the name without a version. NAME is the fully versioned
1633 name, and it is the default version.
1635 Overriding means that we already saw a definition for the
1636 symbol SHORTNAME in a regular object, and it is overriding
1637 the symbol defined in the dynamic object.
1639 When this happens, we actually want to change NAME, the
1640 symbol we just added, to refer to SHORTNAME. This will cause
1641 references to NAME in the shared object to become references
1642 to SHORTNAME in the regular object. This is what we expect
1643 when we override a function in a shared object: that the
1644 references in the shared object will be mapped to the
1645 definition in the regular object. */
1647 while (hi->root.type == bfd_link_hash_indirect
1648 || hi->root.type == bfd_link_hash_warning)
1649 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1651 h->root.type = bfd_link_hash_indirect;
1652 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1656 hi->ref_dynamic = 1;
1660 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
1665 /* Now set HI to H, so that the following code will set the
1666 other fields correctly. */
1670 /* Check if HI is a warning symbol. */
1671 if (hi->root.type == bfd_link_hash_warning)
1672 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1674 /* If there is a duplicate definition somewhere, then HI may not
1675 point to an indirect symbol. We will have reported an error to
1676 the user in that case. */
1678 if (hi->root.type == bfd_link_hash_indirect)
1680 struct elf_link_hash_entry *ht;
1682 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
1683 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
1685 /* A reference to the SHORTNAME symbol from a dynamic library
1686 will be satisfied by the versioned symbol at runtime. In
1687 effect, we have a reference to the versioned symbol. */
1688 ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1689 hi->dynamic_def |= ht->dynamic_def;
1691 /* See if the new flags lead us to realize that the symbol must
1697 if (! info->executable
1704 if (hi->ref_regular)
1710 /* We also need to define an indirection from the nondefault version
1714 len = strlen (name);
1715 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
1716 if (shortname == NULL)
1718 memcpy (shortname, name, shortlen);
1719 memcpy (shortname + shortlen, p + 1, len - shortlen);
1721 /* Once again, merge with any existing symbol. */
1722 type_change_ok = FALSE;
1723 size_change_ok = FALSE;
1725 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1726 &hi, poldbfd, NULL, NULL, &skip, &override,
1727 &type_change_ok, &size_change_ok))
1735 /* Here SHORTNAME is a versioned name, so we don't expect to see
1736 the type of override we do in the case above unless it is
1737 overridden by a versioned definition. */
1738 if (hi->root.type != bfd_link_hash_defined
1739 && hi->root.type != bfd_link_hash_defweak)
1740 (*_bfd_error_handler)
1741 (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
1747 if (! (_bfd_generic_link_add_one_symbol
1748 (info, abfd, shortname, BSF_INDIRECT,
1749 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
1751 hi = (struct elf_link_hash_entry *) bh;
1753 /* If there is a duplicate definition somewhere, then HI may not
1754 point to an indirect symbol. We will have reported an error
1755 to the user in that case. */
1757 if (hi->root.type == bfd_link_hash_indirect)
1759 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
1760 h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1761 hi->dynamic_def |= h->dynamic_def;
1763 /* See if the new flags lead us to realize that the symbol
1769 if (! info->executable
1775 if (hi->ref_regular)
1785 /* This routine is used to export all defined symbols into the dynamic
1786 symbol table. It is called via elf_link_hash_traverse. */
1789 _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
1791 struct elf_info_failed *eif = (struct elf_info_failed *) data;
1793 /* Ignore indirect symbols. These are added by the versioning code. */
1794 if (h->root.type == bfd_link_hash_indirect)
1797 /* Ignore this if we won't export it. */
1798 if (!eif->info->export_dynamic && !h->dynamic)
1801 if (h->dynindx == -1
1802 && (h->def_regular || h->ref_regular)
1803 && ! bfd_hide_sym_by_version (eif->info->version_info,
1804 h->root.root.string))
1806 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
1816 /* Look through the symbols which are defined in other shared
1817 libraries and referenced here. Update the list of version
1818 dependencies. This will be put into the .gnu.version_r section.
1819 This function is called via elf_link_hash_traverse. */
1822 _bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
1825 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
1826 Elf_Internal_Verneed *t;
1827 Elf_Internal_Vernaux *a;
1830 /* We only care about symbols defined in shared objects with version
1835 || h->verinfo.verdef == NULL)
1838 /* See if we already know about this version. */
1839 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
1843 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
1846 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1847 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
1853 /* This is a new version. Add it to tree we are building. */
1858 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
1861 rinfo->failed = TRUE;
1865 t->vn_bfd = h->verinfo.verdef->vd_bfd;
1866 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
1867 elf_tdata (rinfo->info->output_bfd)->verref = t;
1871 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
1874 rinfo->failed = TRUE;
1878 /* Note that we are copying a string pointer here, and testing it
1879 above. If bfd_elf_string_from_elf_section is ever changed to
1880 discard the string data when low in memory, this will have to be
1882 a->vna_nodename = h->verinfo.verdef->vd_nodename;
1884 a->vna_flags = h->verinfo.verdef->vd_flags;
1885 a->vna_nextptr = t->vn_auxptr;
1887 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
1890 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
1897 /* Figure out appropriate versions for all the symbols. We may not
1898 have the version number script until we have read all of the input
1899 files, so until that point we don't know which symbols should be
1900 local. This function is called via elf_link_hash_traverse. */
1903 _bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
1905 struct elf_info_failed *sinfo;
1906 struct bfd_link_info *info;
1907 const struct elf_backend_data *bed;
1908 struct elf_info_failed eif;
1912 sinfo = (struct elf_info_failed *) data;
1915 /* Fix the symbol flags. */
1918 if (! _bfd_elf_fix_symbol_flags (h, &eif))
1921 sinfo->failed = TRUE;
1925 /* We only need version numbers for symbols defined in regular
1927 if (!h->def_regular)
1930 bed = get_elf_backend_data (info->output_bfd);
1931 p = strchr (h->root.root.string, ELF_VER_CHR);
1932 if (p != NULL && h->verinfo.vertree == NULL)
1934 struct bfd_elf_version_tree *t;
1939 /* There are two consecutive ELF_VER_CHR characters if this is
1940 not a hidden symbol. */
1942 if (*p == ELF_VER_CHR)
1948 /* If there is no version string, we can just return out. */
1956 /* Look for the version. If we find it, it is no longer weak. */
1957 for (t = sinfo->info->version_info; t != NULL; t = t->next)
1959 if (strcmp (t->name, p) == 0)
1963 struct bfd_elf_version_expr *d;
1965 len = p - h->root.root.string;
1966 alc = (char *) bfd_malloc (len);
1969 sinfo->failed = TRUE;
1972 memcpy (alc, h->root.root.string, len - 1);
1973 alc[len - 1] = '\0';
1974 if (alc[len - 2] == ELF_VER_CHR)
1975 alc[len - 2] = '\0';
1977 h->verinfo.vertree = t;
1981 if (t->globals.list != NULL)
1982 d = (*t->match) (&t->globals, NULL, alc);
1984 /* See if there is anything to force this symbol to
1986 if (d == NULL && t->locals.list != NULL)
1988 d = (*t->match) (&t->locals, NULL, alc);
1991 && ! info->export_dynamic)
1992 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2000 /* If we are building an application, we need to create a
2001 version node for this version. */
2002 if (t == NULL && info->executable)
2004 struct bfd_elf_version_tree **pp;
2007 /* If we aren't going to export this symbol, we don't need
2008 to worry about it. */
2009 if (h->dynindx == -1)
2013 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd, amt);
2016 sinfo->failed = TRUE;
2021 t->name_indx = (unsigned int) -1;
2025 /* Don't count anonymous version tag. */
2026 if (sinfo->info->version_info != NULL
2027 && sinfo->info->version_info->vernum == 0)
2029 for (pp = &sinfo->info->version_info;
2033 t->vernum = version_index;
2037 h->verinfo.vertree = t;
2041 /* We could not find the version for a symbol when
2042 generating a shared archive. Return an error. */
2043 (*_bfd_error_handler)
2044 (_("%B: version node not found for symbol %s"),
2045 info->output_bfd, h->root.root.string);
2046 bfd_set_error (bfd_error_bad_value);
2047 sinfo->failed = TRUE;
2055 /* If we don't have a version for this symbol, see if we can find
2057 if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL)
2062 = bfd_find_version_for_sym (sinfo->info->version_info,
2063 h->root.root.string, &hide);
2064 if (h->verinfo.vertree != NULL && hide)
2065 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2071 /* Read and swap the relocs from the section indicated by SHDR. This
2072 may be either a REL or a RELA section. The relocations are
2073 translated into RELA relocations and stored in INTERNAL_RELOCS,
2074 which should have already been allocated to contain enough space.
2075 The EXTERNAL_RELOCS are a buffer where the external form of the
2076 relocations should be stored.
2078 Returns FALSE if something goes wrong. */
2081 elf_link_read_relocs_from_section (bfd *abfd,
2083 Elf_Internal_Shdr *shdr,
2084 void *external_relocs,
2085 Elf_Internal_Rela *internal_relocs)
2087 const struct elf_backend_data *bed;
2088 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
2089 const bfd_byte *erela;
2090 const bfd_byte *erelaend;
2091 Elf_Internal_Rela *irela;
2092 Elf_Internal_Shdr *symtab_hdr;
2095 /* Position ourselves at the start of the section. */
2096 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2099 /* Read the relocations. */
2100 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2103 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2104 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
2106 bed = get_elf_backend_data (abfd);
2108 /* Convert the external relocations to the internal format. */
2109 if (shdr->sh_entsize == bed->s->sizeof_rel)
2110 swap_in = bed->s->swap_reloc_in;
2111 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2112 swap_in = bed->s->swap_reloca_in;
2115 bfd_set_error (bfd_error_wrong_format);
2119 erela = (const bfd_byte *) external_relocs;
2120 erelaend = erela + shdr->sh_size;
2121 irela = internal_relocs;
2122 while (erela < erelaend)
2126 (*swap_in) (abfd, erela, irela);
2127 r_symndx = ELF32_R_SYM (irela->r_info);
2128 if (bed->s->arch_size == 64)
2132 if ((size_t) r_symndx >= nsyms)
2134 (*_bfd_error_handler)
2135 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2136 " for offset 0x%lx in section `%A'"),
2138 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2139 bfd_set_error (bfd_error_bad_value);
2143 else if (r_symndx != STN_UNDEF)
2145 (*_bfd_error_handler)
2146 (_("%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A'"
2147 " when the object file has no symbol table"),
2149 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2150 bfd_set_error (bfd_error_bad_value);
2153 irela += bed->s->int_rels_per_ext_rel;
2154 erela += shdr->sh_entsize;
2160 /* Read and swap the relocs for a section O. They may have been
2161 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2162 not NULL, they are used as buffers to read into. They are known to
2163 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2164 the return value is allocated using either malloc or bfd_alloc,
2165 according to the KEEP_MEMORY argument. If O has two relocation
2166 sections (both REL and RELA relocations), then the REL_HDR
2167 relocations will appear first in INTERNAL_RELOCS, followed by the
2168 RELA_HDR relocations. */
2171 _bfd_elf_link_read_relocs (bfd *abfd,
2173 void *external_relocs,
2174 Elf_Internal_Rela *internal_relocs,
2175 bfd_boolean keep_memory)
2177 void *alloc1 = NULL;
2178 Elf_Internal_Rela *alloc2 = NULL;
2179 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2180 struct bfd_elf_section_data *esdo = elf_section_data (o);
2181 Elf_Internal_Rela *internal_rela_relocs;
2183 if (esdo->relocs != NULL)
2184 return esdo->relocs;
2186 if (o->reloc_count == 0)
2189 if (internal_relocs == NULL)
2193 size = o->reloc_count;
2194 size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2196 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
2198 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
2199 if (internal_relocs == NULL)
2203 if (external_relocs == NULL)
2205 bfd_size_type size = 0;
2208 size += esdo->rel.hdr->sh_size;
2210 size += esdo->rela.hdr->sh_size;
2212 alloc1 = bfd_malloc (size);
2215 external_relocs = alloc1;
2218 internal_rela_relocs = internal_relocs;
2221 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2225 external_relocs = (((bfd_byte *) external_relocs)
2226 + esdo->rel.hdr->sh_size);
2227 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2228 * bed->s->int_rels_per_ext_rel);
2232 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2234 internal_rela_relocs)))
2237 /* Cache the results for next time, if we can. */
2239 esdo->relocs = internal_relocs;
2244 /* Don't free alloc2, since if it was allocated we are passing it
2245 back (under the name of internal_relocs). */
2247 return internal_relocs;
2255 bfd_release (abfd, alloc2);
2262 /* Compute the size of, and allocate space for, REL_HDR which is the
2263 section header for a section containing relocations for O. */
2266 _bfd_elf_link_size_reloc_section (bfd *abfd,
2267 struct bfd_elf_section_reloc_data *reldata)
2269 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
2271 /* That allows us to calculate the size of the section. */
2272 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
2274 /* The contents field must last into write_object_contents, so we
2275 allocate it with bfd_alloc rather than malloc. Also since we
2276 cannot be sure that the contents will actually be filled in,
2277 we zero the allocated space. */
2278 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
2279 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2282 if (reldata->hashes == NULL && reldata->count)
2284 struct elf_link_hash_entry **p;
2286 p = (struct elf_link_hash_entry **)
2287 bfd_zmalloc (reldata->count * sizeof (struct elf_link_hash_entry *));
2291 reldata->hashes = p;
2297 /* Copy the relocations indicated by the INTERNAL_RELOCS (which
2298 originated from the section given by INPUT_REL_HDR) to the
2302 _bfd_elf_link_output_relocs (bfd *output_bfd,
2303 asection *input_section,
2304 Elf_Internal_Shdr *input_rel_hdr,
2305 Elf_Internal_Rela *internal_relocs,
2306 struct elf_link_hash_entry **rel_hash
2309 Elf_Internal_Rela *irela;
2310 Elf_Internal_Rela *irelaend;
2312 struct bfd_elf_section_reloc_data *output_reldata;
2313 asection *output_section;
2314 const struct elf_backend_data *bed;
2315 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
2316 struct bfd_elf_section_data *esdo;
2318 output_section = input_section->output_section;
2320 bed = get_elf_backend_data (output_bfd);
2321 esdo = elf_section_data (output_section);
2322 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2324 output_reldata = &esdo->rel;
2325 swap_out = bed->s->swap_reloc_out;
2327 else if (esdo->rela.hdr
2328 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2330 output_reldata = &esdo->rela;
2331 swap_out = bed->s->swap_reloca_out;
2335 (*_bfd_error_handler)
2336 (_("%B: relocation size mismatch in %B section %A"),
2337 output_bfd, input_section->owner, input_section);
2338 bfd_set_error (bfd_error_wrong_format);
2342 erel = output_reldata->hdr->contents;
2343 erel += output_reldata->count * input_rel_hdr->sh_entsize;
2344 irela = internal_relocs;
2345 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2346 * bed->s->int_rels_per_ext_rel);
2347 while (irela < irelaend)
2349 (*swap_out) (output_bfd, irela, erel);
2350 irela += bed->s->int_rels_per_ext_rel;
2351 erel += input_rel_hdr->sh_entsize;
2354 /* Bump the counter, so that we know where to add the next set of
2356 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
2361 /* Make weak undefined symbols in PIE dynamic. */
2364 _bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2365 struct elf_link_hash_entry *h)
2369 && h->root.type == bfd_link_hash_undefweak)
2370 return bfd_elf_link_record_dynamic_symbol (info, h);
2375 /* Fix up the flags for a symbol. This handles various cases which
2376 can only be fixed after all the input files are seen. This is
2377 currently called by both adjust_dynamic_symbol and
2378 assign_sym_version, which is unnecessary but perhaps more robust in
2379 the face of future changes. */
2382 _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2383 struct elf_info_failed *eif)
2385 const struct elf_backend_data *bed;
2387 /* If this symbol was mentioned in a non-ELF file, try to set
2388 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2389 permit a non-ELF file to correctly refer to a symbol defined in
2390 an ELF dynamic object. */
2393 while (h->root.type == bfd_link_hash_indirect)
2394 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2396 if (h->root.type != bfd_link_hash_defined
2397 && h->root.type != bfd_link_hash_defweak)
2400 h->ref_regular_nonweak = 1;
2404 if (h->root.u.def.section->owner != NULL
2405 && (bfd_get_flavour (h->root.u.def.section->owner)
2406 == bfd_target_elf_flavour))
2409 h->ref_regular_nonweak = 1;
2415 if (h->dynindx == -1
2419 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2428 /* Unfortunately, NON_ELF is only correct if the symbol
2429 was first seen in a non-ELF file. Fortunately, if the symbol
2430 was first seen in an ELF file, we're probably OK unless the
2431 symbol was defined in a non-ELF file. Catch that case here.
2432 FIXME: We're still in trouble if the symbol was first seen in
2433 a dynamic object, and then later in a non-ELF regular object. */
2434 if ((h->root.type == bfd_link_hash_defined
2435 || h->root.type == bfd_link_hash_defweak)
2437 && (h->root.u.def.section->owner != NULL
2438 ? (bfd_get_flavour (h->root.u.def.section->owner)
2439 != bfd_target_elf_flavour)
2440 : (bfd_is_abs_section (h->root.u.def.section)
2441 && !h->def_dynamic)))
2445 /* Backend specific symbol fixup. */
2446 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2447 if (bed->elf_backend_fixup_symbol
2448 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2451 /* If this is a final link, and the symbol was defined as a common
2452 symbol in a regular object file, and there was no definition in
2453 any dynamic object, then the linker will have allocated space for
2454 the symbol in a common section but the DEF_REGULAR
2455 flag will not have been set. */
2456 if (h->root.type == bfd_link_hash_defined
2460 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
2463 /* If -Bsymbolic was used (which means to bind references to global
2464 symbols to the definition within the shared object), and this
2465 symbol was defined in a regular object, then it actually doesn't
2466 need a PLT entry. Likewise, if the symbol has non-default
2467 visibility. If the symbol has hidden or internal visibility, we
2468 will force it local. */
2470 && eif->info->shared
2471 && is_elf_hash_table (eif->info->hash)
2472 && (SYMBOLIC_BIND (eif->info, h)
2473 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2476 bfd_boolean force_local;
2478 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2479 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2480 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2483 /* If a weak undefined symbol has non-default visibility, we also
2484 hide it from the dynamic linker. */
2485 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2486 && h->root.type == bfd_link_hash_undefweak)
2487 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2489 /* If this is a weak defined symbol in a dynamic object, and we know
2490 the real definition in the dynamic object, copy interesting flags
2491 over to the real definition. */
2492 if (h->u.weakdef != NULL)
2494 /* If the real definition is defined by a regular object file,
2495 don't do anything special. See the longer description in
2496 _bfd_elf_adjust_dynamic_symbol, below. */
2497 if (h->u.weakdef->def_regular)
2498 h->u.weakdef = NULL;
2501 struct elf_link_hash_entry *weakdef = h->u.weakdef;
2503 while (h->root.type == bfd_link_hash_indirect)
2504 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2506 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2507 || h->root.type == bfd_link_hash_defweak);
2508 BFD_ASSERT (weakdef->def_dynamic);
2509 BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2510 || weakdef->root.type == bfd_link_hash_defweak);
2511 (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h);
2518 /* Make the backend pick a good value for a dynamic symbol. This is
2519 called via elf_link_hash_traverse, and also calls itself
2523 _bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
2525 struct elf_info_failed *eif = (struct elf_info_failed *) data;
2527 const struct elf_backend_data *bed;
2529 if (! is_elf_hash_table (eif->info->hash))
2532 /* Ignore indirect symbols. These are added by the versioning code. */
2533 if (h->root.type == bfd_link_hash_indirect)
2536 /* Fix the symbol flags. */
2537 if (! _bfd_elf_fix_symbol_flags (h, eif))
2540 /* If this symbol does not require a PLT entry, and it is not
2541 defined by a dynamic object, or is not referenced by a regular
2542 object, ignore it. We do have to handle a weak defined symbol,
2543 even if no regular object refers to it, if we decided to add it
2544 to the dynamic symbol table. FIXME: Do we normally need to worry
2545 about symbols which are defined by one dynamic object and
2546 referenced by another one? */
2548 && h->type != STT_GNU_IFUNC
2552 && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
2554 h->plt = elf_hash_table (eif->info)->init_plt_offset;
2558 /* If we've already adjusted this symbol, don't do it again. This
2559 can happen via a recursive call. */
2560 if (h->dynamic_adjusted)
2563 /* Don't look at this symbol again. Note that we must set this
2564 after checking the above conditions, because we may look at a
2565 symbol once, decide not to do anything, and then get called
2566 recursively later after REF_REGULAR is set below. */
2567 h->dynamic_adjusted = 1;
2569 /* If this is a weak definition, and we know a real definition, and
2570 the real symbol is not itself defined by a regular object file,
2571 then get a good value for the real definition. We handle the
2572 real symbol first, for the convenience of the backend routine.
2574 Note that there is a confusing case here. If the real definition
2575 is defined by a regular object file, we don't get the real symbol
2576 from the dynamic object, but we do get the weak symbol. If the
2577 processor backend uses a COPY reloc, then if some routine in the
2578 dynamic object changes the real symbol, we will not see that
2579 change in the corresponding weak symbol. This is the way other
2580 ELF linkers work as well, and seems to be a result of the shared
2583 I will clarify this issue. Most SVR4 shared libraries define the
2584 variable _timezone and define timezone as a weak synonym. The
2585 tzset call changes _timezone. If you write
2586 extern int timezone;
2588 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2589 you might expect that, since timezone is a synonym for _timezone,
2590 the same number will print both times. However, if the processor
2591 backend uses a COPY reloc, then actually timezone will be copied
2592 into your process image, and, since you define _timezone
2593 yourself, _timezone will not. Thus timezone and _timezone will
2594 wind up at different memory locations. The tzset call will set
2595 _timezone, leaving timezone unchanged. */
2597 if (h->u.weakdef != NULL)
2599 /* If we get to this point, there is an implicit reference to
2600 H->U.WEAKDEF by a regular object file via the weak symbol H. */
2601 h->u.weakdef->ref_regular = 1;
2603 /* Ensure that the backend adjust_dynamic_symbol function sees
2604 H->U.WEAKDEF before H by recursively calling ourselves. */
2605 if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
2609 /* If a symbol has no type and no size and does not require a PLT
2610 entry, then we are probably about to do the wrong thing here: we
2611 are probably going to create a COPY reloc for an empty object.
2612 This case can arise when a shared object is built with assembly
2613 code, and the assembly code fails to set the symbol type. */
2615 && h->type == STT_NOTYPE
2617 (*_bfd_error_handler)
2618 (_("warning: type and size of dynamic symbol `%s' are not defined"),
2619 h->root.root.string);
2621 dynobj = elf_hash_table (eif->info)->dynobj;
2622 bed = get_elf_backend_data (dynobj);
2624 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2633 /* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
2637 _bfd_elf_adjust_dynamic_copy (struct elf_link_hash_entry *h,
2640 unsigned int power_of_two;
2642 asection *sec = h->root.u.def.section;
2644 /* The section aligment of definition is the maximum alignment
2645 requirement of symbols defined in the section. Since we don't
2646 know the symbol alignment requirement, we start with the
2647 maximum alignment and check low bits of the symbol address
2648 for the minimum alignment. */
2649 power_of_two = bfd_get_section_alignment (sec->owner, sec);
2650 mask = ((bfd_vma) 1 << power_of_two) - 1;
2651 while ((h->root.u.def.value & mask) != 0)
2657 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
2660 /* Adjust the section alignment if needed. */
2661 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
2666 /* We make sure that the symbol will be aligned properly. */
2667 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
2669 /* Define the symbol as being at this point in DYNBSS. */
2670 h->root.u.def.section = dynbss;
2671 h->root.u.def.value = dynbss->size;
2673 /* Increment the size of DYNBSS to make room for the symbol. */
2674 dynbss->size += h->size;
2679 /* Adjust all external symbols pointing into SEC_MERGE sections
2680 to reflect the object merging within the sections. */
2683 _bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
2687 if ((h->root.type == bfd_link_hash_defined
2688 || h->root.type == bfd_link_hash_defweak)
2689 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
2690 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
2692 bfd *output_bfd = (bfd *) data;
2694 h->root.u.def.value =
2695 _bfd_merged_section_offset (output_bfd,
2696 &h->root.u.def.section,
2697 elf_section_data (sec)->sec_info,
2698 h->root.u.def.value);
2704 /* Returns false if the symbol referred to by H should be considered
2705 to resolve local to the current module, and true if it should be
2706 considered to bind dynamically. */
2709 _bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
2710 struct bfd_link_info *info,
2711 bfd_boolean not_local_protected)
2713 bfd_boolean binding_stays_local_p;
2714 const struct elf_backend_data *bed;
2715 struct elf_link_hash_table *hash_table;
2720 while (h->root.type == bfd_link_hash_indirect
2721 || h->root.type == bfd_link_hash_warning)
2722 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2724 /* If it was forced local, then clearly it's not dynamic. */
2725 if (h->dynindx == -1)
2727 if (h->forced_local)
2730 /* Identify the cases where name binding rules say that a
2731 visible symbol resolves locally. */
2732 binding_stays_local_p = info->executable || SYMBOLIC_BIND (info, h);
2734 switch (ELF_ST_VISIBILITY (h->other))
2741 hash_table = elf_hash_table (info);
2742 if (!is_elf_hash_table (hash_table))
2745 bed = get_elf_backend_data (hash_table->dynobj);
2747 /* Proper resolution for function pointer equality may require
2748 that these symbols perhaps be resolved dynamically, even though
2749 we should be resolving them to the current module. */
2750 if (!not_local_protected || !bed->is_function_type (h->type))
2751 binding_stays_local_p = TRUE;
2758 /* If it isn't defined locally, then clearly it's dynamic. */
2759 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
2762 /* Otherwise, the symbol is dynamic if binding rules don't tell
2763 us that it remains local. */
2764 return !binding_stays_local_p;
2767 /* Return true if the symbol referred to by H should be considered
2768 to resolve local to the current module, and false otherwise. Differs
2769 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2770 undefined symbols. The two functions are virtually identical except
2771 for the place where forced_local and dynindx == -1 are tested. If
2772 either of those tests are true, _bfd_elf_dynamic_symbol_p will say
2773 the symbol is local, while _bfd_elf_symbol_refs_local_p will say
2774 the symbol is local only for defined symbols.
2775 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
2776 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
2777 treatment of undefined weak symbols. For those that do not make
2778 undefined weak symbols dynamic, both functions may return false. */
2781 _bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
2782 struct bfd_link_info *info,
2783 bfd_boolean local_protected)
2785 const struct elf_backend_data *bed;
2786 struct elf_link_hash_table *hash_table;
2788 /* If it's a local sym, of course we resolve locally. */
2792 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
2793 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
2794 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
2797 /* Common symbols that become definitions don't get the DEF_REGULAR
2798 flag set, so test it first, and don't bail out. */
2799 if (ELF_COMMON_DEF_P (h))
2801 /* If we don't have a definition in a regular file, then we can't
2802 resolve locally. The sym is either undefined or dynamic. */
2803 else if (!h->def_regular)
2806 /* Forced local symbols resolve locally. */
2807 if (h->forced_local)
2810 /* As do non-dynamic symbols. */
2811 if (h->dynindx == -1)
2814 /* At this point, we know the symbol is defined and dynamic. In an
2815 executable it must resolve locally, likewise when building symbolic
2816 shared libraries. */
2817 if (info->executable || SYMBOLIC_BIND (info, h))
2820 /* Now deal with defined dynamic symbols in shared libraries. Ones
2821 with default visibility might not resolve locally. */
2822 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
2825 hash_table = elf_hash_table (info);
2826 if (!is_elf_hash_table (hash_table))
2829 bed = get_elf_backend_data (hash_table->dynobj);
2831 /* STV_PROTECTED non-function symbols are local. */
2832 if (!bed->is_function_type (h->type))
2835 /* Function pointer equality tests may require that STV_PROTECTED
2836 symbols be treated as dynamic symbols. If the address of a
2837 function not defined in an executable is set to that function's
2838 plt entry in the executable, then the address of the function in
2839 a shared library must also be the plt entry in the executable. */
2840 return local_protected;
2843 /* Caches some TLS segment info, and ensures that the TLS segment vma is
2844 aligned. Returns the first TLS output section. */
2846 struct bfd_section *
2847 _bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
2849 struct bfd_section *sec, *tls;
2850 unsigned int align = 0;
2852 for (sec = obfd->sections; sec != NULL; sec = sec->next)
2853 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
2857 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
2858 if (sec->alignment_power > align)
2859 align = sec->alignment_power;
2861 elf_hash_table (info)->tls_sec = tls;
2863 /* Ensure the alignment of the first section is the largest alignment,
2864 so that the tls segment starts aligned. */
2866 tls->alignment_power = align;
2871 /* Return TRUE iff this is a non-common, definition of a non-function symbol. */
2873 is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
2874 Elf_Internal_Sym *sym)
2876 const struct elf_backend_data *bed;
2878 /* Local symbols do not count, but target specific ones might. */
2879 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
2880 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
2883 bed = get_elf_backend_data (abfd);
2884 /* Function symbols do not count. */
2885 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
2888 /* If the section is undefined, then so is the symbol. */
2889 if (sym->st_shndx == SHN_UNDEF)
2892 /* If the symbol is defined in the common section, then
2893 it is a common definition and so does not count. */
2894 if (bed->common_definition (sym))
2897 /* If the symbol is in a target specific section then we
2898 must rely upon the backend to tell us what it is. */
2899 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
2900 /* FIXME - this function is not coded yet:
2902 return _bfd_is_global_symbol_definition (abfd, sym);
2904 Instead for now assume that the definition is not global,
2905 Even if this is wrong, at least the linker will behave
2906 in the same way that it used to do. */
2912 /* Search the symbol table of the archive element of the archive ABFD
2913 whose archive map contains a mention of SYMDEF, and determine if
2914 the symbol is defined in this element. */
2916 elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
2918 Elf_Internal_Shdr * hdr;
2919 bfd_size_type symcount;
2920 bfd_size_type extsymcount;
2921 bfd_size_type extsymoff;
2922 Elf_Internal_Sym *isymbuf;
2923 Elf_Internal_Sym *isym;
2924 Elf_Internal_Sym *isymend;
2927 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
2931 if (! bfd_check_format (abfd, bfd_object))
2934 /* Select the appropriate symbol table. */
2935 if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
2936 hdr = &elf_tdata (abfd)->symtab_hdr;
2938 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2940 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
2942 /* The sh_info field of the symtab header tells us where the
2943 external symbols start. We don't care about the local symbols. */
2944 if (elf_bad_symtab (abfd))
2946 extsymcount = symcount;
2951 extsymcount = symcount - hdr->sh_info;
2952 extsymoff = hdr->sh_info;
2955 if (extsymcount == 0)
2958 /* Read in the symbol table. */
2959 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
2961 if (isymbuf == NULL)
2964 /* Scan the symbol table looking for SYMDEF. */
2966 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
2970 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
2975 if (strcmp (name, symdef->name) == 0)
2977 result = is_global_data_symbol_definition (abfd, isym);
2987 /* Add an entry to the .dynamic table. */
2990 _bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
2994 struct elf_link_hash_table *hash_table;
2995 const struct elf_backend_data *bed;
2997 bfd_size_type newsize;
2998 bfd_byte *newcontents;
2999 Elf_Internal_Dyn dyn;
3001 hash_table = elf_hash_table (info);
3002 if (! is_elf_hash_table (hash_table))
3005 bed = get_elf_backend_data (hash_table->dynobj);
3006 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3007 BFD_ASSERT (s != NULL);
3009 newsize = s->size + bed->s->sizeof_dyn;
3010 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
3011 if (newcontents == NULL)
3015 dyn.d_un.d_val = val;
3016 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
3019 s->contents = newcontents;
3024 /* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3025 otherwise just check whether one already exists. Returns -1 on error,
3026 1 if a DT_NEEDED tag already exists, and 0 on success. */
3029 elf_add_dt_needed_tag (bfd *abfd,
3030 struct bfd_link_info *info,
3034 struct elf_link_hash_table *hash_table;
3035 bfd_size_type strindex;
3037 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3040 hash_table = elf_hash_table (info);
3041 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3042 if (strindex == (bfd_size_type) -1)
3045 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
3048 const struct elf_backend_data *bed;
3051 bed = get_elf_backend_data (hash_table->dynobj);
3052 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3054 for (extdyn = sdyn->contents;
3055 extdyn < sdyn->contents + sdyn->size;
3056 extdyn += bed->s->sizeof_dyn)
3058 Elf_Internal_Dyn dyn;
3060 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3061 if (dyn.d_tag == DT_NEEDED
3062 && dyn.d_un.d_val == strindex)
3064 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3072 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3075 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3079 /* We were just checking for existence of the tag. */
3080 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3086 on_needed_list (const char *soname, struct bfd_link_needed_list *needed)
3088 for (; needed != NULL; needed = needed->next)
3089 if ((elf_dyn_lib_class (needed->by) & DYN_AS_NEEDED) == 0
3090 && strcmp (soname, needed->name) == 0)
3096 /* Sort symbol by value, section, and size. */
3098 elf_sort_symbol (const void *arg1, const void *arg2)
3100 const struct elf_link_hash_entry *h1;
3101 const struct elf_link_hash_entry *h2;
3102 bfd_signed_vma vdiff;
3104 h1 = *(const struct elf_link_hash_entry **) arg1;
3105 h2 = *(const struct elf_link_hash_entry **) arg2;
3106 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3108 return vdiff > 0 ? 1 : -1;
3111 long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3113 return sdiff > 0 ? 1 : -1;
3115 vdiff = h1->size - h2->size;
3116 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
3119 /* This function is used to adjust offsets into .dynstr for
3120 dynamic symbols. This is called via elf_link_hash_traverse. */
3123 elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3125 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
3127 if (h->dynindx != -1)
3128 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3132 /* Assign string offsets in .dynstr, update all structures referencing
3136 elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
3138 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3139 struct elf_link_local_dynamic_entry *entry;
3140 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3141 bfd *dynobj = hash_table->dynobj;
3144 const struct elf_backend_data *bed;
3147 _bfd_elf_strtab_finalize (dynstr);
3148 size = _bfd_elf_strtab_size (dynstr);
3150 bed = get_elf_backend_data (dynobj);
3151 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
3152 BFD_ASSERT (sdyn != NULL);
3154 /* Update all .dynamic entries referencing .dynstr strings. */
3155 for (extdyn = sdyn->contents;
3156 extdyn < sdyn->contents + sdyn->size;
3157 extdyn += bed->s->sizeof_dyn)
3159 Elf_Internal_Dyn dyn;
3161 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3165 dyn.d_un.d_val = size;
3175 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3180 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3183 /* Now update local dynamic symbols. */
3184 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3185 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3186 entry->isym.st_name);
3188 /* And the rest of dynamic symbols. */
3189 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3191 /* Adjust version definitions. */
3192 if (elf_tdata (output_bfd)->cverdefs)
3197 Elf_Internal_Verdef def;
3198 Elf_Internal_Verdaux defaux;
3200 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
3204 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3206 p += sizeof (Elf_External_Verdef);
3207 if (def.vd_aux != sizeof (Elf_External_Verdef))
3209 for (i = 0; i < def.vd_cnt; ++i)
3211 _bfd_elf_swap_verdaux_in (output_bfd,
3212 (Elf_External_Verdaux *) p, &defaux);
3213 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3215 _bfd_elf_swap_verdaux_out (output_bfd,
3216 &defaux, (Elf_External_Verdaux *) p);
3217 p += sizeof (Elf_External_Verdaux);
3220 while (def.vd_next);
3223 /* Adjust version references. */
3224 if (elf_tdata (output_bfd)->verref)
3229 Elf_Internal_Verneed need;
3230 Elf_Internal_Vernaux needaux;
3232 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
3236 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3238 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3239 _bfd_elf_swap_verneed_out (output_bfd, &need,
3240 (Elf_External_Verneed *) p);
3241 p += sizeof (Elf_External_Verneed);
3242 for (i = 0; i < need.vn_cnt; ++i)
3244 _bfd_elf_swap_vernaux_in (output_bfd,
3245 (Elf_External_Vernaux *) p, &needaux);
3246 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3248 _bfd_elf_swap_vernaux_out (output_bfd,
3250 (Elf_External_Vernaux *) p);
3251 p += sizeof (Elf_External_Vernaux);
3254 while (need.vn_next);
3260 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3261 The default is to only match when the INPUT and OUTPUT are exactly
3265 _bfd_elf_default_relocs_compatible (const bfd_target *input,
3266 const bfd_target *output)
3268 return input == output;
3271 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3272 This version is used when different targets for the same architecture
3273 are virtually identical. */
3276 _bfd_elf_relocs_compatible (const bfd_target *input,
3277 const bfd_target *output)
3279 const struct elf_backend_data *obed, *ibed;
3281 if (input == output)
3284 ibed = xvec_get_elf_backend_data (input);
3285 obed = xvec_get_elf_backend_data (output);
3287 if (ibed->arch != obed->arch)
3290 /* If both backends are using this function, deem them compatible. */
3291 return ibed->relocs_compatible == obed->relocs_compatible;
3294 /* Make a special call to the linker "notice" function to tell it that
3295 we are about to handle an as-needed lib, or have finished
3296 processing the lib. */
3299 _bfd_elf_notice_as_needed (bfd *ibfd,
3300 struct bfd_link_info *info,
3301 enum notice_asneeded_action act)
3303 return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
3306 /* Add symbols from an ELF object file to the linker hash table. */
3309 elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3311 Elf_Internal_Ehdr *ehdr;
3312 Elf_Internal_Shdr *hdr;
3313 bfd_size_type symcount;
3314 bfd_size_type extsymcount;
3315 bfd_size_type extsymoff;
3316 struct elf_link_hash_entry **sym_hash;
3317 bfd_boolean dynamic;
3318 Elf_External_Versym *extversym = NULL;
3319 Elf_External_Versym *ever;
3320 struct elf_link_hash_entry *weaks;
3321 struct elf_link_hash_entry **nondeflt_vers = NULL;
3322 bfd_size_type nondeflt_vers_cnt = 0;
3323 Elf_Internal_Sym *isymbuf = NULL;
3324 Elf_Internal_Sym *isym;
3325 Elf_Internal_Sym *isymend;
3326 const struct elf_backend_data *bed;
3327 bfd_boolean add_needed;
3328 struct elf_link_hash_table *htab;
3330 void *alloc_mark = NULL;
3331 struct bfd_hash_entry **old_table = NULL;
3332 unsigned int old_size = 0;
3333 unsigned int old_count = 0;
3334 void *old_tab = NULL;
3336 struct bfd_link_hash_entry *old_undefs = NULL;
3337 struct bfd_link_hash_entry *old_undefs_tail = NULL;
3338 long old_dynsymcount = 0;
3339 bfd_size_type old_dynstr_size = 0;
3342 bfd_boolean just_syms;
3344 htab = elf_hash_table (info);
3345 bed = get_elf_backend_data (abfd);
3347 if ((abfd->flags & DYNAMIC) == 0)
3353 /* You can't use -r against a dynamic object. Also, there's no
3354 hope of using a dynamic object which does not exactly match
3355 the format of the output file. */
3356 if (info->relocatable
3357 || !is_elf_hash_table (htab)
3358 || info->output_bfd->xvec != abfd->xvec)
3360 if (info->relocatable)
3361 bfd_set_error (bfd_error_invalid_operation);
3363 bfd_set_error (bfd_error_wrong_format);
3368 ehdr = elf_elfheader (abfd);
3369 if (info->warn_alternate_em
3370 && bed->elf_machine_code != ehdr->e_machine
3371 && ((bed->elf_machine_alt1 != 0
3372 && ehdr->e_machine == bed->elf_machine_alt1)
3373 || (bed->elf_machine_alt2 != 0
3374 && ehdr->e_machine == bed->elf_machine_alt2)))
3375 info->callbacks->einfo
3376 (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"),
3377 ehdr->e_machine, abfd, bed->elf_machine_code);
3379 /* As a GNU extension, any input sections which are named
3380 .gnu.warning.SYMBOL are treated as warning symbols for the given
3381 symbol. This differs from .gnu.warning sections, which generate
3382 warnings when they are included in an output file. */
3383 /* PR 12761: Also generate this warning when building shared libraries. */
3384 for (s = abfd->sections; s != NULL; s = s->next)
3388 name = bfd_get_section_name (abfd, s);
3389 if (CONST_STRNEQ (name, ".gnu.warning."))
3394 name += sizeof ".gnu.warning." - 1;
3396 /* If this is a shared object, then look up the symbol
3397 in the hash table. If it is there, and it is already
3398 been defined, then we will not be using the entry
3399 from this shared object, so we don't need to warn.
3400 FIXME: If we see the definition in a regular object
3401 later on, we will warn, but we shouldn't. The only
3402 fix is to keep track of what warnings we are supposed
3403 to emit, and then handle them all at the end of the
3407 struct elf_link_hash_entry *h;
3409 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3411 /* FIXME: What about bfd_link_hash_common? */
3413 && (h->root.type == bfd_link_hash_defined
3414 || h->root.type == bfd_link_hash_defweak))
3419 msg = (char *) bfd_alloc (abfd, sz + 1);
3423 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3428 if (! (_bfd_generic_link_add_one_symbol
3429 (info, abfd, name, BSF_WARNING, s, 0, msg,
3430 FALSE, bed->collect, NULL)))
3433 if (!info->relocatable && info->executable)
3435 /* Clobber the section size so that the warning does
3436 not get copied into the output file. */
3439 /* Also set SEC_EXCLUDE, so that symbols defined in
3440 the warning section don't get copied to the output. */
3441 s->flags |= SEC_EXCLUDE;
3446 just_syms = ((s = abfd->sections) != NULL
3447 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
3452 /* If we are creating a shared library, create all the dynamic
3453 sections immediately. We need to attach them to something,
3454 so we attach them to this BFD, provided it is the right
3455 format and is not from ld --just-symbols. FIXME: If there
3456 are no input BFD's of the same format as the output, we can't
3457 make a shared library. */
3460 && is_elf_hash_table (htab)
3461 && info->output_bfd->xvec == abfd->xvec
3462 && !htab->dynamic_sections_created)
3464 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3468 else if (!is_elf_hash_table (htab))
3472 const char *soname = NULL;
3474 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3477 /* ld --just-symbols and dynamic objects don't mix very well.
3478 ld shouldn't allow it. */
3482 /* If this dynamic lib was specified on the command line with
3483 --as-needed in effect, then we don't want to add a DT_NEEDED
3484 tag unless the lib is actually used. Similary for libs brought
3485 in by another lib's DT_NEEDED. When --no-add-needed is used
3486 on a dynamic lib, we don't want to add a DT_NEEDED entry for
3487 any dynamic library in DT_NEEDED tags in the dynamic lib at
3489 add_needed = (elf_dyn_lib_class (abfd)
3490 & (DYN_AS_NEEDED | DYN_DT_NEEDED
3491 | DYN_NO_NEEDED)) == 0;
3493 s = bfd_get_section_by_name (abfd, ".dynamic");
3498 unsigned int elfsec;
3499 unsigned long shlink;
3501 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
3508 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
3509 if (elfsec == SHN_BAD)
3510 goto error_free_dyn;
3511 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3513 for (extdyn = dynbuf;
3514 extdyn < dynbuf + s->size;
3515 extdyn += bed->s->sizeof_dyn)
3517 Elf_Internal_Dyn dyn;
3519 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3520 if (dyn.d_tag == DT_SONAME)
3522 unsigned int tagv = dyn.d_un.d_val;
3523 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3525 goto error_free_dyn;
3527 if (dyn.d_tag == DT_NEEDED)
3529 struct bfd_link_needed_list *n, **pn;
3531 unsigned int tagv = dyn.d_un.d_val;
3533 amt = sizeof (struct bfd_link_needed_list);
3534 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3535 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3536 if (n == NULL || fnm == NULL)
3537 goto error_free_dyn;
3538 amt = strlen (fnm) + 1;
3539 anm = (char *) bfd_alloc (abfd, amt);
3541 goto error_free_dyn;
3542 memcpy (anm, fnm, amt);
3546 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
3550 if (dyn.d_tag == DT_RUNPATH)
3552 struct bfd_link_needed_list *n, **pn;
3554 unsigned int tagv = dyn.d_un.d_val;
3556 amt = sizeof (struct bfd_link_needed_list);
3557 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3558 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3559 if (n == NULL || fnm == NULL)
3560 goto error_free_dyn;
3561 amt = strlen (fnm) + 1;
3562 anm = (char *) bfd_alloc (abfd, amt);
3564 goto error_free_dyn;
3565 memcpy (anm, fnm, amt);
3569 for (pn = & runpath;
3575 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
3576 if (!runpath && dyn.d_tag == DT_RPATH)
3578 struct bfd_link_needed_list *n, **pn;
3580 unsigned int tagv = dyn.d_un.d_val;
3582 amt = sizeof (struct bfd_link_needed_list);
3583 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3584 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3585 if (n == NULL || fnm == NULL)
3586 goto error_free_dyn;
3587 amt = strlen (fnm) + 1;
3588 anm = (char *) bfd_alloc (abfd, amt);
3590 goto error_free_dyn;
3591 memcpy (anm, fnm, amt);
3601 if (dyn.d_tag == DT_AUDIT)
3603 unsigned int tagv = dyn.d_un.d_val;
3604 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3611 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
3612 frees all more recently bfd_alloc'd blocks as well. */
3618 struct bfd_link_needed_list **pn;
3619 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
3624 /* We do not want to include any of the sections in a dynamic
3625 object in the output file. We hack by simply clobbering the
3626 list of sections in the BFD. This could be handled more
3627 cleanly by, say, a new section flag; the existing
3628 SEC_NEVER_LOAD flag is not the one we want, because that one
3629 still implies that the section takes up space in the output
3631 bfd_section_list_clear (abfd);
3633 /* Find the name to use in a DT_NEEDED entry that refers to this
3634 object. If the object has a DT_SONAME entry, we use it.
3635 Otherwise, if the generic linker stuck something in
3636 elf_dt_name, we use that. Otherwise, we just use the file
3638 if (soname == NULL || *soname == '\0')
3640 soname = elf_dt_name (abfd);
3641 if (soname == NULL || *soname == '\0')
3642 soname = bfd_get_filename (abfd);
3645 /* Save the SONAME because sometimes the linker emulation code
3646 will need to know it. */
3647 elf_dt_name (abfd) = soname;
3649 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
3653 /* If we have already included this dynamic object in the
3654 link, just ignore it. There is no reason to include a
3655 particular dynamic object more than once. */
3659 /* Save the DT_AUDIT entry for the linker emulation code. */
3660 elf_dt_audit (abfd) = audit;
3663 /* If this is a dynamic object, we always link against the .dynsym
3664 symbol table, not the .symtab symbol table. The dynamic linker
3665 will only see the .dynsym symbol table, so there is no reason to
3666 look at .symtab for a dynamic object. */
3668 if (! dynamic || elf_dynsymtab (abfd) == 0)
3669 hdr = &elf_tdata (abfd)->symtab_hdr;
3671 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3673 symcount = hdr->sh_size / bed->s->sizeof_sym;
3675 /* The sh_info field of the symtab header tells us where the
3676 external symbols start. We don't care about the local symbols at
3678 if (elf_bad_symtab (abfd))
3680 extsymcount = symcount;
3685 extsymcount = symcount - hdr->sh_info;
3686 extsymoff = hdr->sh_info;
3689 sym_hash = elf_sym_hashes (abfd);
3690 if (extsymcount != 0)
3692 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3694 if (isymbuf == NULL)
3697 if (sym_hash == NULL)
3699 /* We store a pointer to the hash table entry for each
3701 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
3702 sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
3703 if (sym_hash == NULL)
3704 goto error_free_sym;
3705 elf_sym_hashes (abfd) = sym_hash;
3711 /* Read in any version definitions. */
3712 if (!_bfd_elf_slurp_version_tables (abfd,
3713 info->default_imported_symver))
3714 goto error_free_sym;
3716 /* Read in the symbol versions, but don't bother to convert them
3717 to internal format. */
3718 if (elf_dynversym (abfd) != 0)
3720 Elf_Internal_Shdr *versymhdr;
3722 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
3723 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
3724 if (extversym == NULL)
3725 goto error_free_sym;
3726 amt = versymhdr->sh_size;
3727 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
3728 || bfd_bread (extversym, amt, abfd) != amt)
3729 goto error_free_vers;
3733 /* If we are loading an as-needed shared lib, save the symbol table
3734 state before we start adding symbols. If the lib turns out
3735 to be unneeded, restore the state. */
3736 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
3741 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
3743 struct bfd_hash_entry *p;
3744 struct elf_link_hash_entry *h;
3746 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3748 h = (struct elf_link_hash_entry *) p;
3749 entsize += htab->root.table.entsize;
3750 if (h->root.type == bfd_link_hash_warning)
3751 entsize += htab->root.table.entsize;
3755 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
3756 old_tab = bfd_malloc (tabsize + entsize);
3757 if (old_tab == NULL)
3758 goto error_free_vers;
3760 /* Remember the current objalloc pointer, so that all mem for
3761 symbols added can later be reclaimed. */
3762 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
3763 if (alloc_mark == NULL)
3764 goto error_free_vers;
3766 /* Make a special call to the linker "notice" function to
3767 tell it that we are about to handle an as-needed lib. */
3768 if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
3769 goto error_free_vers;
3771 /* Clone the symbol table. Remember some pointers into the
3772 symbol table, and dynamic symbol count. */
3773 old_ent = (char *) old_tab + tabsize;
3774 memcpy (old_tab, htab->root.table.table, tabsize);
3775 old_undefs = htab->root.undefs;
3776 old_undefs_tail = htab->root.undefs_tail;
3777 old_table = htab->root.table.table;
3778 old_size = htab->root.table.size;
3779 old_count = htab->root.table.count;
3780 old_dynsymcount = htab->dynsymcount;
3781 old_dynstr_size = _bfd_elf_strtab_size (htab->dynstr);
3783 for (i = 0; i < htab->root.table.size; i++)
3785 struct bfd_hash_entry *p;
3786 struct elf_link_hash_entry *h;
3788 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3790 memcpy (old_ent, p, htab->root.table.entsize);
3791 old_ent = (char *) old_ent + htab->root.table.entsize;
3792 h = (struct elf_link_hash_entry *) p;
3793 if (h->root.type == bfd_link_hash_warning)
3795 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
3796 old_ent = (char *) old_ent + htab->root.table.entsize;
3803 ever = extversym != NULL ? extversym + extsymoff : NULL;
3804 for (isym = isymbuf, isymend = isymbuf + extsymcount;
3806 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
3810 asection *sec, *new_sec;
3813 struct elf_link_hash_entry *h;
3814 struct elf_link_hash_entry *hi;
3815 bfd_boolean definition;
3816 bfd_boolean size_change_ok;
3817 bfd_boolean type_change_ok;
3818 bfd_boolean new_weakdef;
3819 bfd_boolean new_weak;
3820 bfd_boolean old_weak;
3821 bfd_boolean override;
3823 unsigned int old_alignment;
3828 flags = BSF_NO_FLAGS;
3830 value = isym->st_value;
3831 common = bed->common_definition (isym);
3833 bind = ELF_ST_BIND (isym->st_info);
3837 /* This should be impossible, since ELF requires that all
3838 global symbols follow all local symbols, and that sh_info
3839 point to the first global symbol. Unfortunately, Irix 5
3844 if (isym->st_shndx != SHN_UNDEF && !common)
3852 case STB_GNU_UNIQUE:
3853 flags = BSF_GNU_UNIQUE;
3857 /* Leave it up to the processor backend. */
3861 if (isym->st_shndx == SHN_UNDEF)
3862 sec = bfd_und_section_ptr;
3863 else if (isym->st_shndx == SHN_ABS)
3864 sec = bfd_abs_section_ptr;
3865 else if (isym->st_shndx == SHN_COMMON)
3867 sec = bfd_com_section_ptr;
3868 /* What ELF calls the size we call the value. What ELF
3869 calls the value we call the alignment. */
3870 value = isym->st_size;
3874 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
3876 sec = bfd_abs_section_ptr;
3877 else if (discarded_section (sec))
3879 /* Symbols from discarded section are undefined. We keep
3881 sec = bfd_und_section_ptr;
3882 isym->st_shndx = SHN_UNDEF;
3884 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
3888 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3891 goto error_free_vers;
3893 if (isym->st_shndx == SHN_COMMON
3894 && (abfd->flags & BFD_PLUGIN) != 0)
3896 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
3900 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
3902 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
3904 goto error_free_vers;
3908 else if (isym->st_shndx == SHN_COMMON
3909 && ELF_ST_TYPE (isym->st_info) == STT_TLS
3910 && !info->relocatable)
3912 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
3916 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
3917 | SEC_LINKER_CREATED);
3918 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3920 goto error_free_vers;
3924 else if (bed->elf_add_symbol_hook)
3926 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
3928 goto error_free_vers;
3930 /* The hook function sets the name to NULL if this symbol
3931 should be skipped for some reason. */
3936 /* Sanity check that all possibilities were handled. */
3939 bfd_set_error (bfd_error_bad_value);
3940 goto error_free_vers;
3943 /* Silently discard TLS symbols from --just-syms. There's
3944 no way to combine a static TLS block with a new TLS block
3945 for this executable. */
3946 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
3947 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3950 if (bfd_is_und_section (sec)
3951 || bfd_is_com_section (sec))
3956 size_change_ok = FALSE;
3957 type_change_ok = bed->type_change_ok;
3963 if (is_elf_hash_table (htab))
3965 Elf_Internal_Versym iver;
3966 unsigned int vernum = 0;
3971 if (info->default_imported_symver)
3972 /* Use the default symbol version created earlier. */
3973 iver.vs_vers = elf_tdata (abfd)->cverdefs;
3978 _bfd_elf_swap_versym_in (abfd, ever, &iver);
3980 vernum = iver.vs_vers & VERSYM_VERSION;
3982 /* If this is a hidden symbol, or if it is not version
3983 1, we append the version name to the symbol name.
3984 However, we do not modify a non-hidden absolute symbol
3985 if it is not a function, because it might be the version
3986 symbol itself. FIXME: What if it isn't? */
3987 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
3989 && (!bfd_is_abs_section (sec)
3990 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
3993 size_t namelen, verlen, newlen;
3996 if (isym->st_shndx != SHN_UNDEF)
3998 if (vernum > elf_tdata (abfd)->cverdefs)
4000 else if (vernum > 1)
4002 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4008 (*_bfd_error_handler)
4009 (_("%B: %s: invalid version %u (max %d)"),
4011 elf_tdata (abfd)->cverdefs);
4012 bfd_set_error (bfd_error_bad_value);
4013 goto error_free_vers;
4018 /* We cannot simply test for the number of
4019 entries in the VERNEED section since the
4020 numbers for the needed versions do not start
4022 Elf_Internal_Verneed *t;
4025 for (t = elf_tdata (abfd)->verref;
4029 Elf_Internal_Vernaux *a;
4031 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4033 if (a->vna_other == vernum)
4035 verstr = a->vna_nodename;
4044 (*_bfd_error_handler)
4045 (_("%B: %s: invalid needed version %d"),
4046 abfd, name, vernum);
4047 bfd_set_error (bfd_error_bad_value);
4048 goto error_free_vers;
4052 namelen = strlen (name);
4053 verlen = strlen (verstr);
4054 newlen = namelen + verlen + 2;
4055 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4056 && isym->st_shndx != SHN_UNDEF)
4059 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
4060 if (newname == NULL)
4061 goto error_free_vers;
4062 memcpy (newname, name, namelen);
4063 p = newname + namelen;
4065 /* If this is a defined non-hidden version symbol,
4066 we add another @ to the name. This indicates the
4067 default version of the symbol. */
4068 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4069 && isym->st_shndx != SHN_UNDEF)
4071 memcpy (p, verstr, verlen + 1);
4076 /* If this symbol has default visibility and the user has
4077 requested we not re-export it, then mark it as hidden. */
4081 || (abfd->my_archive && abfd->my_archive->no_export))
4082 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4083 isym->st_other = (STV_HIDDEN
4084 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4086 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4087 sym_hash, &old_bfd, &old_weak,
4088 &old_alignment, &skip, &override,
4089 &type_change_ok, &size_change_ok))
4090 goto error_free_vers;
4099 while (h->root.type == bfd_link_hash_indirect
4100 || h->root.type == bfd_link_hash_warning)
4101 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4103 if (elf_tdata (abfd)->verdef != NULL
4106 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4109 if (! (_bfd_generic_link_add_one_symbol
4110 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4111 (struct bfd_link_hash_entry **) sym_hash)))
4112 goto error_free_vers;
4115 /* We need to make sure that indirect symbol dynamic flags are
4118 while (h->root.type == bfd_link_hash_indirect
4119 || h->root.type == bfd_link_hash_warning)
4120 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4124 new_weak = (flags & BSF_WEAK) != 0;
4125 new_weakdef = FALSE;
4129 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
4130 && is_elf_hash_table (htab)
4131 && h->u.weakdef == NULL)
4133 /* Keep a list of all weak defined non function symbols from
4134 a dynamic object, using the weakdef field. Later in this
4135 function we will set the weakdef field to the correct
4136 value. We only put non-function symbols from dynamic
4137 objects on this list, because that happens to be the only
4138 time we need to know the normal symbol corresponding to a
4139 weak symbol, and the information is time consuming to
4140 figure out. If the weakdef field is not already NULL,
4141 then this symbol was already defined by some previous
4142 dynamic object, and we will be using that previous
4143 definition anyhow. */
4145 h->u.weakdef = weaks;
4150 /* Set the alignment of a common symbol. */
4151 if ((common || bfd_is_com_section (sec))
4152 && h->root.type == bfd_link_hash_common)
4157 align = bfd_log2 (isym->st_value);
4160 /* The new symbol is a common symbol in a shared object.
4161 We need to get the alignment from the section. */
4162 align = new_sec->alignment_power;
4164 if (align > old_alignment)
4165 h->root.u.c.p->alignment_power = align;
4167 h->root.u.c.p->alignment_power = old_alignment;
4170 if (is_elf_hash_table (htab))
4172 /* Set a flag in the hash table entry indicating the type of
4173 reference or definition we just found. A dynamic symbol
4174 is one which is referenced or defined by both a regular
4175 object and a shared object. */
4176 bfd_boolean dynsym = FALSE;
4178 /* Plugin symbols aren't normal. Don't set def_regular or
4179 ref_regular for them, or make them dynamic. */
4180 if ((abfd->flags & BFD_PLUGIN) != 0)
4187 if (bind != STB_WEAK)
4188 h->ref_regular_nonweak = 1;
4200 /* If the indirect symbol has been forced local, don't
4201 make the real symbol dynamic. */
4202 if ((h == hi || !hi->forced_local)
4203 && (! info->executable
4213 hi->ref_dynamic = 1;
4218 hi->def_dynamic = 1;
4221 /* If the indirect symbol has been forced local, don't
4222 make the real symbol dynamic. */
4223 if ((h == hi || !hi->forced_local)
4226 || (h->u.weakdef != NULL
4228 && h->u.weakdef->dynindx != -1)))
4232 /* Check to see if we need to add an indirect symbol for
4233 the default name. */
4235 || (!override && h->root.type == bfd_link_hash_common))
4236 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4237 sec, value, &old_bfd, &dynsym))
4238 goto error_free_vers;
4240 /* Check the alignment when a common symbol is involved. This
4241 can change when a common symbol is overridden by a normal
4242 definition or a common symbol is ignored due to the old
4243 normal definition. We need to make sure the maximum
4244 alignment is maintained. */
4245 if ((old_alignment || common)
4246 && h->root.type != bfd_link_hash_common)
4248 unsigned int common_align;
4249 unsigned int normal_align;
4250 unsigned int symbol_align;
4254 BFD_ASSERT (h->root.type == bfd_link_hash_defined
4255 || h->root.type == bfd_link_hash_defweak);
4257 symbol_align = ffs (h->root.u.def.value) - 1;
4258 if (h->root.u.def.section->owner != NULL
4259 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
4261 normal_align = h->root.u.def.section->alignment_power;
4262 if (normal_align > symbol_align)
4263 normal_align = symbol_align;
4266 normal_align = symbol_align;
4270 common_align = old_alignment;
4271 common_bfd = old_bfd;
4276 common_align = bfd_log2 (isym->st_value);
4278 normal_bfd = old_bfd;
4281 if (normal_align < common_align)
4283 /* PR binutils/2735 */
4284 if (normal_bfd == NULL)
4285 (*_bfd_error_handler)
4286 (_("Warning: alignment %u of common symbol `%s' in %B is"
4287 " greater than the alignment (%u) of its section %A"),
4288 common_bfd, h->root.u.def.section,
4289 1 << common_align, name, 1 << normal_align);
4291 (*_bfd_error_handler)
4292 (_("Warning: alignment %u of symbol `%s' in %B"
4293 " is smaller than %u in %B"),
4294 normal_bfd, common_bfd,
4295 1 << normal_align, name, 1 << common_align);
4299 /* Remember the symbol size if it isn't undefined. */
4300 if (isym->st_size != 0
4301 && isym->st_shndx != SHN_UNDEF
4302 && (definition || h->size == 0))
4305 && h->size != isym->st_size
4306 && ! size_change_ok)
4307 (*_bfd_error_handler)
4308 (_("Warning: size of symbol `%s' changed"
4309 " from %lu in %B to %lu in %B"),
4311 name, (unsigned long) h->size,
4312 (unsigned long) isym->st_size);
4314 h->size = isym->st_size;
4317 /* If this is a common symbol, then we always want H->SIZE
4318 to be the size of the common symbol. The code just above
4319 won't fix the size if a common symbol becomes larger. We
4320 don't warn about a size change here, because that is
4321 covered by --warn-common. Allow changes between different
4323 if (h->root.type == bfd_link_hash_common)
4324 h->size = h->root.u.c.size;
4326 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
4327 && ((definition && !new_weak)
4328 || (old_weak && h->root.type == bfd_link_hash_common)
4329 || h->type == STT_NOTYPE))
4331 unsigned int type = ELF_ST_TYPE (isym->st_info);
4333 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4335 if (type == STT_GNU_IFUNC
4336 && (abfd->flags & DYNAMIC) != 0)
4339 if (h->type != type)
4341 if (h->type != STT_NOTYPE && ! type_change_ok)
4342 (*_bfd_error_handler)
4343 (_("Warning: type of symbol `%s' changed"
4344 " from %d to %d in %B"),
4345 abfd, name, h->type, type);
4351 /* Merge st_other field. */
4352 elf_merge_st_other (abfd, h, isym, definition, dynamic);
4354 /* We don't want to make debug symbol dynamic. */
4355 if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable)
4358 /* Nor should we make plugin symbols dynamic. */
4359 if ((abfd->flags & BFD_PLUGIN) != 0)
4364 h->target_internal = isym->st_target_internal;
4365 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4368 if (definition && !dynamic)
4370 char *p = strchr (name, ELF_VER_CHR);
4371 if (p != NULL && p[1] != ELF_VER_CHR)
4373 /* Queue non-default versions so that .symver x, x@FOO
4374 aliases can be checked. */
4377 amt = ((isymend - isym + 1)
4378 * sizeof (struct elf_link_hash_entry *));
4380 (struct elf_link_hash_entry **) bfd_malloc (amt);
4382 goto error_free_vers;
4384 nondeflt_vers[nondeflt_vers_cnt++] = h;
4388 if (dynsym && h->dynindx == -1)
4390 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4391 goto error_free_vers;
4392 if (h->u.weakdef != NULL
4394 && h->u.weakdef->dynindx == -1)
4396 if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4397 goto error_free_vers;
4400 else if (dynsym && h->dynindx != -1)
4401 /* If the symbol already has a dynamic index, but
4402 visibility says it should not be visible, turn it into
4404 switch (ELF_ST_VISIBILITY (h->other))
4408 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4413 /* Don't add DT_NEEDED for references from the dummy bfd. */
4417 && h->ref_regular_nonweak
4419 || (old_bfd->flags & BFD_PLUGIN) == 0))
4420 || (h->ref_dynamic_nonweak
4421 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
4422 && !on_needed_list (elf_dt_name (abfd), htab->needed))))
4425 const char *soname = elf_dt_name (abfd);
4427 info->callbacks->minfo ("%!", soname, old_bfd,
4428 h->root.root.string);
4430 /* A symbol from a library loaded via DT_NEEDED of some
4431 other library is referenced by a regular object.
4432 Add a DT_NEEDED entry for it. Issue an error if
4433 --no-add-needed is used and the reference was not
4436 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
4438 (*_bfd_error_handler)
4439 (_("%B: undefined reference to symbol '%s'"),
4441 bfd_set_error (bfd_error_missing_dso);
4442 goto error_free_vers;
4445 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
4446 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
4449 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4451 goto error_free_vers;
4453 BFD_ASSERT (ret == 0);
4458 if (extversym != NULL)
4464 if (isymbuf != NULL)
4470 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4474 /* Restore the symbol table. */
4475 old_ent = (char *) old_tab + tabsize;
4476 memset (elf_sym_hashes (abfd), 0,
4477 extsymcount * sizeof (struct elf_link_hash_entry *));
4478 htab->root.table.table = old_table;
4479 htab->root.table.size = old_size;
4480 htab->root.table.count = old_count;
4481 memcpy (htab->root.table.table, old_tab, tabsize);
4482 htab->root.undefs = old_undefs;
4483 htab->root.undefs_tail = old_undefs_tail;
4484 _bfd_elf_strtab_restore_size (htab->dynstr, old_dynstr_size);
4485 for (i = 0; i < htab->root.table.size; i++)
4487 struct bfd_hash_entry *p;
4488 struct elf_link_hash_entry *h;
4490 unsigned int alignment_power;
4492 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4494 h = (struct elf_link_hash_entry *) p;
4495 if (h->root.type == bfd_link_hash_warning)
4496 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4497 if (h->dynindx >= old_dynsymcount
4498 && h->dynstr_index < old_dynstr_size)
4499 _bfd_elf_strtab_delref (htab->dynstr, h->dynstr_index);
4501 /* Preserve the maximum alignment and size for common
4502 symbols even if this dynamic lib isn't on DT_NEEDED
4503 since it can still be loaded at run time by another
4505 if (h->root.type == bfd_link_hash_common)
4507 size = h->root.u.c.size;
4508 alignment_power = h->root.u.c.p->alignment_power;
4513 alignment_power = 0;
4515 memcpy (p, old_ent, htab->root.table.entsize);
4516 old_ent = (char *) old_ent + htab->root.table.entsize;
4517 h = (struct elf_link_hash_entry *) p;
4518 if (h->root.type == bfd_link_hash_warning)
4520 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4521 old_ent = (char *) old_ent + htab->root.table.entsize;
4522 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4524 if (h->root.type == bfd_link_hash_common)
4526 if (size > h->root.u.c.size)
4527 h->root.u.c.size = size;
4528 if (alignment_power > h->root.u.c.p->alignment_power)
4529 h->root.u.c.p->alignment_power = alignment_power;
4534 /* Make a special call to the linker "notice" function to
4535 tell it that symbols added for crefs may need to be removed. */
4536 if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
4537 goto error_free_vers;
4540 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4542 if (nondeflt_vers != NULL)
4543 free (nondeflt_vers);
4547 if (old_tab != NULL)
4549 if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
4550 goto error_free_vers;
4555 /* Now that all the symbols from this input file are created, handle
4556 .symver foo, foo@BAR such that any relocs against foo become foo@BAR. */
4557 if (nondeflt_vers != NULL)
4559 bfd_size_type cnt, symidx;
4561 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
4563 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
4564 char *shortname, *p;
4566 p = strchr (h->root.root.string, ELF_VER_CHR);
4568 || (h->root.type != bfd_link_hash_defined
4569 && h->root.type != bfd_link_hash_defweak))
4572 amt = p - h->root.root.string;
4573 shortname = (char *) bfd_malloc (amt + 1);
4575 goto error_free_vers;
4576 memcpy (shortname, h->root.root.string, amt);
4577 shortname[amt] = '\0';
4579 hi = (struct elf_link_hash_entry *)
4580 bfd_link_hash_lookup (&htab->root, shortname,
4581 FALSE, FALSE, FALSE);
4583 && hi->root.type == h->root.type
4584 && hi->root.u.def.value == h->root.u.def.value
4585 && hi->root.u.def.section == h->root.u.def.section)
4587 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
4588 hi->root.type = bfd_link_hash_indirect;
4589 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
4590 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4591 sym_hash = elf_sym_hashes (abfd);
4593 for (symidx = 0; symidx < extsymcount; ++symidx)
4594 if (sym_hash[symidx] == hi)
4596 sym_hash[symidx] = h;
4602 free (nondeflt_vers);
4603 nondeflt_vers = NULL;
4606 /* Now set the weakdefs field correctly for all the weak defined
4607 symbols we found. The only way to do this is to search all the
4608 symbols. Since we only need the information for non functions in
4609 dynamic objects, that's the only time we actually put anything on
4610 the list WEAKS. We need this information so that if a regular
4611 object refers to a symbol defined weakly in a dynamic object, the
4612 real symbol in the dynamic object is also put in the dynamic
4613 symbols; we also must arrange for both symbols to point to the
4614 same memory location. We could handle the general case of symbol
4615 aliasing, but a general symbol alias can only be generated in
4616 assembler code, handling it correctly would be very time
4617 consuming, and other ELF linkers don't handle general aliasing
4621 struct elf_link_hash_entry **hpp;
4622 struct elf_link_hash_entry **hppend;
4623 struct elf_link_hash_entry **sorted_sym_hash;
4624 struct elf_link_hash_entry *h;
4627 /* Since we have to search the whole symbol list for each weak
4628 defined symbol, search time for N weak defined symbols will be
4629 O(N^2). Binary search will cut it down to O(NlogN). */
4630 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
4631 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4632 if (sorted_sym_hash == NULL)
4634 sym_hash = sorted_sym_hash;
4635 hpp = elf_sym_hashes (abfd);
4636 hppend = hpp + extsymcount;
4638 for (; hpp < hppend; hpp++)
4642 && h->root.type == bfd_link_hash_defined
4643 && !bed->is_function_type (h->type))
4651 qsort (sorted_sym_hash, sym_count,
4652 sizeof (struct elf_link_hash_entry *),
4655 while (weaks != NULL)
4657 struct elf_link_hash_entry *hlook;
4660 size_t i, j, idx = 0;
4663 weaks = hlook->u.weakdef;
4664 hlook->u.weakdef = NULL;
4666 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
4667 || hlook->root.type == bfd_link_hash_defweak
4668 || hlook->root.type == bfd_link_hash_common
4669 || hlook->root.type == bfd_link_hash_indirect);
4670 slook = hlook->root.u.def.section;
4671 vlook = hlook->root.u.def.value;
4677 bfd_signed_vma vdiff;
4679 h = sorted_sym_hash[idx];
4680 vdiff = vlook - h->root.u.def.value;
4687 long sdiff = slook->id - h->root.u.def.section->id;
4697 /* We didn't find a value/section match. */
4701 /* With multiple aliases, or when the weak symbol is already
4702 strongly defined, we have multiple matching symbols and
4703 the binary search above may land on any of them. Step
4704 one past the matching symbol(s). */
4707 h = sorted_sym_hash[idx];
4708 if (h->root.u.def.section != slook
4709 || h->root.u.def.value != vlook)
4713 /* Now look back over the aliases. Since we sorted by size
4714 as well as value and section, we'll choose the one with
4715 the largest size. */
4718 h = sorted_sym_hash[idx];
4720 /* Stop if value or section doesn't match. */
4721 if (h->root.u.def.section != slook
4722 || h->root.u.def.value != vlook)
4724 else if (h != hlook)
4726 hlook->u.weakdef = h;
4728 /* If the weak definition is in the list of dynamic
4729 symbols, make sure the real definition is put
4731 if (hlook->dynindx != -1 && h->dynindx == -1)
4733 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4736 free (sorted_sym_hash);
4741 /* If the real definition is in the list of dynamic
4742 symbols, make sure the weak definition is put
4743 there as well. If we don't do this, then the
4744 dynamic loader might not merge the entries for the
4745 real definition and the weak definition. */
4746 if (h->dynindx != -1 && hlook->dynindx == -1)
4748 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4749 goto err_free_sym_hash;
4756 free (sorted_sym_hash);
4759 if (bed->check_directives
4760 && !(*bed->check_directives) (abfd, info))
4763 /* If this object is the same format as the output object, and it is
4764 not a shared library, then let the backend look through the
4767 This is required to build global offset table entries and to
4768 arrange for dynamic relocs. It is not required for the
4769 particular common case of linking non PIC code, even when linking
4770 against shared libraries, but unfortunately there is no way of
4771 knowing whether an object file has been compiled PIC or not.
4772 Looking through the relocs is not particularly time consuming.
4773 The problem is that we must either (1) keep the relocs in memory,
4774 which causes the linker to require additional runtime memory or
4775 (2) read the relocs twice from the input file, which wastes time.
4776 This would be a good case for using mmap.
4778 I have no idea how to handle linking PIC code into a file of a
4779 different format. It probably can't be done. */
4781 && is_elf_hash_table (htab)
4782 && bed->check_relocs != NULL
4783 && elf_object_id (abfd) == elf_hash_table_id (htab)
4784 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
4788 for (o = abfd->sections; o != NULL; o = o->next)
4790 Elf_Internal_Rela *internal_relocs;
4793 if ((o->flags & SEC_RELOC) == 0
4794 || o->reloc_count == 0
4795 || ((info->strip == strip_all || info->strip == strip_debugger)
4796 && (o->flags & SEC_DEBUGGING) != 0)
4797 || bfd_is_abs_section (o->output_section))
4800 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
4802 if (internal_relocs == NULL)
4805 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
4807 if (elf_section_data (o)->relocs != internal_relocs)
4808 free (internal_relocs);
4815 /* If this is a non-traditional link, try to optimize the handling
4816 of the .stab/.stabstr sections. */
4818 && ! info->traditional_format
4819 && is_elf_hash_table (htab)
4820 && (info->strip != strip_all && info->strip != strip_debugger))
4824 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
4825 if (stabstr != NULL)
4827 bfd_size_type string_offset = 0;
4830 for (stab = abfd->sections; stab; stab = stab->next)
4831 if (CONST_STRNEQ (stab->name, ".stab")
4832 && (!stab->name[5] ||
4833 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
4834 && (stab->flags & SEC_MERGE) == 0
4835 && !bfd_is_abs_section (stab->output_section))
4837 struct bfd_elf_section_data *secdata;
4839 secdata = elf_section_data (stab);
4840 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
4841 stabstr, &secdata->sec_info,
4844 if (secdata->sec_info)
4845 stab->sec_info_type = SEC_INFO_TYPE_STABS;
4850 if (is_elf_hash_table (htab) && add_needed)
4852 /* Add this bfd to the loaded list. */
4853 struct elf_link_loaded_list *n;
4855 n = (struct elf_link_loaded_list *)
4856 bfd_alloc (abfd, sizeof (struct elf_link_loaded_list));
4860 n->next = htab->loaded;
4867 if (old_tab != NULL)
4869 if (nondeflt_vers != NULL)
4870 free (nondeflt_vers);
4871 if (extversym != NULL)
4874 if (isymbuf != NULL)
4880 /* Return the linker hash table entry of a symbol that might be
4881 satisfied by an archive symbol. Return -1 on error. */
4883 struct elf_link_hash_entry *
4884 _bfd_elf_archive_symbol_lookup (bfd *abfd,
4885 struct bfd_link_info *info,
4888 struct elf_link_hash_entry *h;
4892 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
4896 /* If this is a default version (the name contains @@), look up the
4897 symbol again with only one `@' as well as without the version.
4898 The effect is that references to the symbol with and without the
4899 version will be matched by the default symbol in the archive. */
4901 p = strchr (name, ELF_VER_CHR);
4902 if (p == NULL || p[1] != ELF_VER_CHR)
4905 /* First check with only one `@'. */
4906 len = strlen (name);
4907 copy = (char *) bfd_alloc (abfd, len);
4909 return (struct elf_link_hash_entry *) 0 - 1;
4911 first = p - name + 1;
4912 memcpy (copy, name, first);
4913 memcpy (copy + first, name + first + 1, len - first);
4915 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
4918 /* We also need to check references to the symbol without the
4920 copy[first - 1] = '\0';
4921 h = elf_link_hash_lookup (elf_hash_table (info), copy,
4922 FALSE, FALSE, TRUE);
4925 bfd_release (abfd, copy);
4929 /* Add symbols from an ELF archive file to the linker hash table. We
4930 don't use _bfd_generic_link_add_archive_symbols because we need to
4931 handle versioned symbols.
4933 Fortunately, ELF archive handling is simpler than that done by
4934 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
4935 oddities. In ELF, if we find a symbol in the archive map, and the
4936 symbol is currently undefined, we know that we must pull in that
4939 Unfortunately, we do have to make multiple passes over the symbol
4940 table until nothing further is resolved. */
4943 elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
4946 unsigned char *included = NULL;
4950 const struct elf_backend_data *bed;
4951 struct elf_link_hash_entry * (*archive_symbol_lookup)
4952 (bfd *, struct bfd_link_info *, const char *);
4954 if (! bfd_has_map (abfd))
4956 /* An empty archive is a special case. */
4957 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
4959 bfd_set_error (bfd_error_no_armap);
4963 /* Keep track of all symbols we know to be already defined, and all
4964 files we know to be already included. This is to speed up the
4965 second and subsequent passes. */
4966 c = bfd_ardata (abfd)->symdef_count;
4970 amt *= sizeof (*included);
4971 included = (unsigned char *) bfd_zmalloc (amt);
4972 if (included == NULL)
4975 symdefs = bfd_ardata (abfd)->symdefs;
4976 bed = get_elf_backend_data (abfd);
4977 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
4990 symdefend = symdef + c;
4991 for (i = 0; symdef < symdefend; symdef++, i++)
4993 struct elf_link_hash_entry *h;
4995 struct bfd_link_hash_entry *undefs_tail;
5000 if (symdef->file_offset == last)
5006 h = archive_symbol_lookup (abfd, info, symdef->name);
5007 if (h == (struct elf_link_hash_entry *) 0 - 1)
5013 if (h->root.type == bfd_link_hash_common)
5015 /* We currently have a common symbol. The archive map contains
5016 a reference to this symbol, so we may want to include it. We
5017 only want to include it however, if this archive element
5018 contains a definition of the symbol, not just another common
5021 Unfortunately some archivers (including GNU ar) will put
5022 declarations of common symbols into their archive maps, as
5023 well as real definitions, so we cannot just go by the archive
5024 map alone. Instead we must read in the element's symbol
5025 table and check that to see what kind of symbol definition
5027 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5030 else if (h->root.type != bfd_link_hash_undefined)
5032 if (h->root.type != bfd_link_hash_undefweak)
5033 /* Symbol must be defined. Don't check it again. */
5038 /* We need to include this archive member. */
5039 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5040 if (element == NULL)
5043 if (! bfd_check_format (element, bfd_object))
5046 undefs_tail = info->hash->undefs_tail;
5048 if (!(*info->callbacks
5049 ->add_archive_element) (info, element, symdef->name, &element))
5051 if (!bfd_link_add_symbols (element, info))
5054 /* If there are any new undefined symbols, we need to make
5055 another pass through the archive in order to see whether
5056 they can be defined. FIXME: This isn't perfect, because
5057 common symbols wind up on undefs_tail and because an
5058 undefined symbol which is defined later on in this pass
5059 does not require another pass. This isn't a bug, but it
5060 does make the code less efficient than it could be. */
5061 if (undefs_tail != info->hash->undefs_tail)
5064 /* Look backward to mark all symbols from this object file
5065 which we have already seen in this pass. */
5069 included[mark] = TRUE;
5074 while (symdefs[mark].file_offset == symdef->file_offset);
5076 /* We mark subsequent symbols from this object file as we go
5077 on through the loop. */
5078 last = symdef->file_offset;
5088 if (included != NULL)
5093 /* Given an ELF BFD, add symbols to the global hash table as
5097 bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5099 switch (bfd_get_format (abfd))
5102 return elf_link_add_object_symbols (abfd, info);
5104 return elf_link_add_archive_symbols (abfd, info);
5106 bfd_set_error (bfd_error_wrong_format);
5111 struct hash_codes_info
5113 unsigned long *hashcodes;
5117 /* This function will be called though elf_link_hash_traverse to store
5118 all hash value of the exported symbols in an array. */
5121 elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5123 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5129 /* Ignore indirect symbols. These are added by the versioning code. */
5130 if (h->dynindx == -1)
5133 name = h->root.root.string;
5134 p = strchr (name, ELF_VER_CHR);
5137 alc = (char *) bfd_malloc (p - name + 1);
5143 memcpy (alc, name, p - name);
5144 alc[p - name] = '\0';
5148 /* Compute the hash value. */
5149 ha = bfd_elf_hash (name);
5151 /* Store the found hash value in the array given as the argument. */
5152 *(inf->hashcodes)++ = ha;
5154 /* And store it in the struct so that we can put it in the hash table
5156 h->u.elf_hash_value = ha;
5164 struct collect_gnu_hash_codes
5167 const struct elf_backend_data *bed;
5168 unsigned long int nsyms;
5169 unsigned long int maskbits;
5170 unsigned long int *hashcodes;
5171 unsigned long int *hashval;
5172 unsigned long int *indx;
5173 unsigned long int *counts;
5176 long int min_dynindx;
5177 unsigned long int bucketcount;
5178 unsigned long int symindx;
5179 long int local_indx;
5180 long int shift1, shift2;
5181 unsigned long int mask;
5185 /* This function will be called though elf_link_hash_traverse to store
5186 all hash value of the exported symbols in an array. */
5189 elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5191 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5197 /* Ignore indirect symbols. These are added by the versioning code. */
5198 if (h->dynindx == -1)
5201 /* Ignore also local symbols and undefined symbols. */
5202 if (! (*s->bed->elf_hash_symbol) (h))
5205 name = h->root.root.string;
5206 p = strchr (name, ELF_VER_CHR);
5209 alc = (char *) bfd_malloc (p - name + 1);
5215 memcpy (alc, name, p - name);
5216 alc[p - name] = '\0';
5220 /* Compute the hash value. */
5221 ha = bfd_elf_gnu_hash (name);
5223 /* Store the found hash value in the array for compute_bucket_count,
5224 and also for .dynsym reordering purposes. */
5225 s->hashcodes[s->nsyms] = ha;
5226 s->hashval[h->dynindx] = ha;
5228 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5229 s->min_dynindx = h->dynindx;
5237 /* This function will be called though elf_link_hash_traverse to do
5238 final dynaminc symbol renumbering. */
5241 elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5243 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5244 unsigned long int bucket;
5245 unsigned long int val;
5247 /* Ignore indirect symbols. */
5248 if (h->dynindx == -1)
5251 /* Ignore also local symbols and undefined symbols. */
5252 if (! (*s->bed->elf_hash_symbol) (h))
5254 if (h->dynindx >= s->min_dynindx)
5255 h->dynindx = s->local_indx++;
5259 bucket = s->hashval[h->dynindx] % s->bucketcount;
5260 val = (s->hashval[h->dynindx] >> s->shift1)
5261 & ((s->maskbits >> s->shift1) - 1);
5262 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5264 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5265 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5266 if (s->counts[bucket] == 1)
5267 /* Last element terminates the chain. */
5269 bfd_put_32 (s->output_bfd, val,
5270 s->contents + (s->indx[bucket] - s->symindx) * 4);
5271 --s->counts[bucket];
5272 h->dynindx = s->indx[bucket]++;
5276 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5279 _bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5281 return !(h->forced_local
5282 || h->root.type == bfd_link_hash_undefined
5283 || h->root.type == bfd_link_hash_undefweak
5284 || ((h->root.type == bfd_link_hash_defined
5285 || h->root.type == bfd_link_hash_defweak)
5286 && h->root.u.def.section->output_section == NULL));
5289 /* Array used to determine the number of hash table buckets to use
5290 based on the number of symbols there are. If there are fewer than
5291 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5292 fewer than 37 we use 17 buckets, and so forth. We never use more
5293 than 32771 buckets. */
5295 static const size_t elf_buckets[] =
5297 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5301 /* Compute bucket count for hashing table. We do not use a static set
5302 of possible tables sizes anymore. Instead we determine for all
5303 possible reasonable sizes of the table the outcome (i.e., the
5304 number of collisions etc) and choose the best solution. The
5305 weighting functions are not too simple to allow the table to grow
5306 without bounds. Instead one of the weighting factors is the size.
5307 Therefore the result is always a good payoff between few collisions
5308 (= short chain lengths) and table size. */
5310 compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
5311 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5312 unsigned long int nsyms,
5315 size_t best_size = 0;
5316 unsigned long int i;
5318 /* We have a problem here. The following code to optimize the table
5319 size requires an integer type with more the 32 bits. If
5320 BFD_HOST_U_64_BIT is set we know about such a type. */
5321 #ifdef BFD_HOST_U_64_BIT
5326 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5327 bfd *dynobj = elf_hash_table (info)->dynobj;
5328 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5329 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
5330 unsigned long int *counts;
5332 unsigned int no_improvement_count = 0;
5334 /* Possible optimization parameters: if we have NSYMS symbols we say
5335 that the hashing table must at least have NSYMS/4 and at most
5337 minsize = nsyms / 4;
5340 best_size = maxsize = nsyms * 2;
5345 if ((best_size & 31) == 0)
5349 /* Create array where we count the collisions in. We must use bfd_malloc
5350 since the size could be large. */
5352 amt *= sizeof (unsigned long int);
5353 counts = (unsigned long int *) bfd_malloc (amt);
5357 /* Compute the "optimal" size for the hash table. The criteria is a
5358 minimal chain length. The minor criteria is (of course) the size
5360 for (i = minsize; i < maxsize; ++i)
5362 /* Walk through the array of hashcodes and count the collisions. */
5363 BFD_HOST_U_64_BIT max;
5364 unsigned long int j;
5365 unsigned long int fact;
5367 if (gnu_hash && (i & 31) == 0)
5370 memset (counts, '\0', i * sizeof (unsigned long int));
5372 /* Determine how often each hash bucket is used. */
5373 for (j = 0; j < nsyms; ++j)
5374 ++counts[hashcodes[j] % i];
5376 /* For the weight function we need some information about the
5377 pagesize on the target. This is information need not be 100%
5378 accurate. Since this information is not available (so far) we
5379 define it here to a reasonable default value. If it is crucial
5380 to have a better value some day simply define this value. */
5381 # ifndef BFD_TARGET_PAGESIZE
5382 # define BFD_TARGET_PAGESIZE (4096)
5385 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5387 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5390 /* Variant 1: optimize for short chains. We add the squares
5391 of all the chain lengths (which favors many small chain
5392 over a few long chains). */
5393 for (j = 0; j < i; ++j)
5394 max += counts[j] * counts[j];
5396 /* This adds penalties for the overall size of the table. */
5397 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5400 /* Variant 2: Optimize a lot more for small table. Here we
5401 also add squares of the size but we also add penalties for
5402 empty slots (the +1 term). */
5403 for (j = 0; j < i; ++j)
5404 max += (1 + counts[j]) * (1 + counts[j]);
5406 /* The overall size of the table is considered, but not as
5407 strong as in variant 1, where it is squared. */
5408 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5412 /* Compare with current best results. */
5413 if (max < best_chlen)
5417 no_improvement_count = 0;
5419 /* PR 11843: Avoid futile long searches for the best bucket size
5420 when there are a large number of symbols. */
5421 else if (++no_improvement_count == 100)
5428 #endif /* defined (BFD_HOST_U_64_BIT) */
5430 /* This is the fallback solution if no 64bit type is available or if we
5431 are not supposed to spend much time on optimizations. We select the
5432 bucket count using a fixed set of numbers. */
5433 for (i = 0; elf_buckets[i] != 0; i++)
5435 best_size = elf_buckets[i];
5436 if (nsyms < elf_buckets[i + 1])
5439 if (gnu_hash && best_size < 2)
5446 /* Size any SHT_GROUP section for ld -r. */
5449 _bfd_elf_size_group_sections (struct bfd_link_info *info)
5453 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
5454 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
5455 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
5460 /* Set a default stack segment size. The value in INFO wins. If it
5461 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
5462 undefined it is initialized. */
5465 bfd_elf_stack_segment_size (bfd *output_bfd,
5466 struct bfd_link_info *info,
5467 const char *legacy_symbol,
5468 bfd_vma default_size)
5470 struct elf_link_hash_entry *h = NULL;
5472 /* Look for legacy symbol. */
5474 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
5475 FALSE, FALSE, FALSE);
5476 if (h && (h->root.type == bfd_link_hash_defined
5477 || h->root.type == bfd_link_hash_defweak)
5479 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
5481 /* The symbol has no type if specified on the command line. */
5482 h->type = STT_OBJECT;
5483 if (info->stacksize)
5484 (*_bfd_error_handler) (_("%B: stack size specified and %s set"),
5485 output_bfd, legacy_symbol);
5486 else if (h->root.u.def.section != bfd_abs_section_ptr)
5487 (*_bfd_error_handler) (_("%B: %s not absolute"),
5488 output_bfd, legacy_symbol);
5490 info->stacksize = h->root.u.def.value;
5493 if (!info->stacksize)
5494 /* If the user didn't set a size, or explicitly inhibit the
5495 size, set it now. */
5496 info->stacksize = default_size;
5498 /* Provide the legacy symbol, if it is referenced. */
5499 if (h && (h->root.type == bfd_link_hash_undefined
5500 || h->root.type == bfd_link_hash_undefweak))
5502 struct bfd_link_hash_entry *bh = NULL;
5504 if (!(_bfd_generic_link_add_one_symbol
5505 (info, output_bfd, legacy_symbol,
5506 BSF_GLOBAL, bfd_abs_section_ptr,
5507 info->stacksize >= 0 ? info->stacksize : 0,
5508 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
5511 h = (struct elf_link_hash_entry *) bh;
5513 h->type = STT_OBJECT;
5519 /* Set up the sizes and contents of the ELF dynamic sections. This is
5520 called by the ELF linker emulation before_allocation routine. We
5521 must set the sizes of the sections before the linker sets the
5522 addresses of the various sections. */
5525 bfd_elf_size_dynamic_sections (bfd *output_bfd,
5528 const char *filter_shlib,
5530 const char *depaudit,
5531 const char * const *auxiliary_filters,
5532 struct bfd_link_info *info,
5533 asection **sinterpptr)
5535 bfd_size_type soname_indx;
5537 const struct elf_backend_data *bed;
5538 struct elf_info_failed asvinfo;
5542 soname_indx = (bfd_size_type) -1;
5544 if (!is_elf_hash_table (info->hash))
5547 bed = get_elf_backend_data (output_bfd);
5549 /* Any syms created from now on start with -1 in
5550 got.refcount/offset and plt.refcount/offset. */
5551 elf_hash_table (info)->init_got_refcount
5552 = elf_hash_table (info)->init_got_offset;
5553 elf_hash_table (info)->init_plt_refcount
5554 = elf_hash_table (info)->init_plt_offset;
5556 if (info->relocatable
5557 && !_bfd_elf_size_group_sections (info))
5560 /* The backend may have to create some sections regardless of whether
5561 we're dynamic or not. */
5562 if (bed->elf_backend_always_size_sections
5563 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
5566 /* Determine any GNU_STACK segment requirements, after the backend
5567 has had a chance to set a default segment size. */
5568 if (info->execstack)
5569 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
5570 else if (info->noexecstack)
5571 elf_stack_flags (output_bfd) = PF_R | PF_W;
5575 asection *notesec = NULL;
5578 for (inputobj = info->input_bfds;
5580 inputobj = inputobj->link.next)
5585 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
5587 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
5590 if (s->flags & SEC_CODE)
5594 else if (bed->default_execstack)
5597 if (notesec || info->stacksize > 0)
5598 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
5599 if (notesec && exec && info->relocatable
5600 && notesec->output_section != bfd_abs_section_ptr)
5601 notesec->output_section->flags |= SEC_CODE;
5604 dynobj = elf_hash_table (info)->dynobj;
5606 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5608 struct elf_info_failed eif;
5609 struct elf_link_hash_entry *h;
5611 struct bfd_elf_version_tree *t;
5612 struct bfd_elf_version_expr *d;
5614 bfd_boolean all_defined;
5616 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
5617 BFD_ASSERT (*sinterpptr != NULL || !info->executable);
5621 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5623 if (soname_indx == (bfd_size_type) -1
5624 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
5630 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
5632 info->flags |= DF_SYMBOLIC;
5640 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
5642 if (indx == (bfd_size_type) -1)
5645 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
5646 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
5650 if (filter_shlib != NULL)
5654 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5655 filter_shlib, TRUE);
5656 if (indx == (bfd_size_type) -1
5657 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
5661 if (auxiliary_filters != NULL)
5663 const char * const *p;
5665 for (p = auxiliary_filters; *p != NULL; p++)
5669 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5671 if (indx == (bfd_size_type) -1
5672 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
5681 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
5683 if (indx == (bfd_size_type) -1
5684 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
5688 if (depaudit != NULL)
5692 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
5694 if (indx == (bfd_size_type) -1
5695 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
5702 /* If we are supposed to export all symbols into the dynamic symbol
5703 table (this is not the normal case), then do so. */
5704 if (info->export_dynamic
5705 || (info->executable && info->dynamic))
5707 elf_link_hash_traverse (elf_hash_table (info),
5708 _bfd_elf_export_symbol,
5714 /* Make all global versions with definition. */
5715 for (t = info->version_info; t != NULL; t = t->next)
5716 for (d = t->globals.list; d != NULL; d = d->next)
5717 if (!d->symver && d->literal)
5719 const char *verstr, *name;
5720 size_t namelen, verlen, newlen;
5721 char *newname, *p, leading_char;
5722 struct elf_link_hash_entry *newh;
5724 leading_char = bfd_get_symbol_leading_char (output_bfd);
5726 namelen = strlen (name) + (leading_char != '\0');
5728 verlen = strlen (verstr);
5729 newlen = namelen + verlen + 3;
5731 newname = (char *) bfd_malloc (newlen);
5732 if (newname == NULL)
5734 newname[0] = leading_char;
5735 memcpy (newname + (leading_char != '\0'), name, namelen);
5737 /* Check the hidden versioned definition. */
5738 p = newname + namelen;
5740 memcpy (p, verstr, verlen + 1);
5741 newh = elf_link_hash_lookup (elf_hash_table (info),
5742 newname, FALSE, FALSE,
5745 || (newh->root.type != bfd_link_hash_defined
5746 && newh->root.type != bfd_link_hash_defweak))
5748 /* Check the default versioned definition. */
5750 memcpy (p, verstr, verlen + 1);
5751 newh = elf_link_hash_lookup (elf_hash_table (info),
5752 newname, FALSE, FALSE,
5757 /* Mark this version if there is a definition and it is
5758 not defined in a shared object. */
5760 && !newh->def_dynamic
5761 && (newh->root.type == bfd_link_hash_defined
5762 || newh->root.type == bfd_link_hash_defweak))
5766 /* Attach all the symbols to their version information. */
5767 asvinfo.info = info;
5768 asvinfo.failed = FALSE;
5770 elf_link_hash_traverse (elf_hash_table (info),
5771 _bfd_elf_link_assign_sym_version,
5776 if (!info->allow_undefined_version)
5778 /* Check if all global versions have a definition. */
5780 for (t = info->version_info; t != NULL; t = t->next)
5781 for (d = t->globals.list; d != NULL; d = d->next)
5782 if (d->literal && !d->symver && !d->script)
5784 (*_bfd_error_handler)
5785 (_("%s: undefined version: %s"),
5786 d->pattern, t->name);
5787 all_defined = FALSE;
5792 bfd_set_error (bfd_error_bad_value);
5797 /* Find all symbols which were defined in a dynamic object and make
5798 the backend pick a reasonable value for them. */
5799 elf_link_hash_traverse (elf_hash_table (info),
5800 _bfd_elf_adjust_dynamic_symbol,
5805 /* Add some entries to the .dynamic section. We fill in some of the
5806 values later, in bfd_elf_final_link, but we must add the entries
5807 now so that we know the final size of the .dynamic section. */
5809 /* If there are initialization and/or finalization functions to
5810 call then add the corresponding DT_INIT/DT_FINI entries. */
5811 h = (info->init_function
5812 ? elf_link_hash_lookup (elf_hash_table (info),
5813 info->init_function, FALSE,
5820 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
5823 h = (info->fini_function
5824 ? elf_link_hash_lookup (elf_hash_table (info),
5825 info->fini_function, FALSE,
5832 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
5836 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
5837 if (s != NULL && s->linker_has_input)
5839 /* DT_PREINIT_ARRAY is not allowed in shared library. */
5840 if (! info->executable)
5845 for (sub = info->input_bfds; sub != NULL;
5846 sub = sub->link.next)
5847 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
5848 for (o = sub->sections; o != NULL; o = o->next)
5849 if (elf_section_data (o)->this_hdr.sh_type
5850 == SHT_PREINIT_ARRAY)
5852 (*_bfd_error_handler)
5853 (_("%B: .preinit_array section is not allowed in DSO"),
5858 bfd_set_error (bfd_error_nonrepresentable_section);
5862 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
5863 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
5866 s = bfd_get_section_by_name (output_bfd, ".init_array");
5867 if (s != NULL && s->linker_has_input)
5869 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
5870 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
5873 s = bfd_get_section_by_name (output_bfd, ".fini_array");
5874 if (s != NULL && s->linker_has_input)
5876 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
5877 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
5881 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
5882 /* If .dynstr is excluded from the link, we don't want any of
5883 these tags. Strictly, we should be checking each section
5884 individually; This quick check covers for the case where
5885 someone does a /DISCARD/ : { *(*) }. */
5886 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
5888 bfd_size_type strsize;
5890 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5891 if ((info->emit_hash
5892 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
5893 || (info->emit_gnu_hash
5894 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
5895 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
5896 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
5897 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
5898 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
5899 bed->s->sizeof_sym))
5904 /* The backend must work out the sizes of all the other dynamic
5907 && bed->elf_backend_size_dynamic_sections != NULL
5908 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
5911 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
5914 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5916 unsigned long section_sym_count;
5917 struct bfd_elf_version_tree *verdefs;
5920 /* Set up the version definition section. */
5921 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5922 BFD_ASSERT (s != NULL);
5924 /* We may have created additional version definitions if we are
5925 just linking a regular application. */
5926 verdefs = info->version_info;
5928 /* Skip anonymous version tag. */
5929 if (verdefs != NULL && verdefs->vernum == 0)
5930 verdefs = verdefs->next;
5932 if (verdefs == NULL && !info->create_default_symver)
5933 s->flags |= SEC_EXCLUDE;
5938 struct bfd_elf_version_tree *t;
5940 Elf_Internal_Verdef def;
5941 Elf_Internal_Verdaux defaux;
5942 struct bfd_link_hash_entry *bh;
5943 struct elf_link_hash_entry *h;
5949 /* Make space for the base version. */
5950 size += sizeof (Elf_External_Verdef);
5951 size += sizeof (Elf_External_Verdaux);
5954 /* Make space for the default version. */
5955 if (info->create_default_symver)
5957 size += sizeof (Elf_External_Verdef);
5961 for (t = verdefs; t != NULL; t = t->next)
5963 struct bfd_elf_version_deps *n;
5965 /* Don't emit base version twice. */
5969 size += sizeof (Elf_External_Verdef);
5970 size += sizeof (Elf_External_Verdaux);
5973 for (n = t->deps; n != NULL; n = n->next)
5974 size += sizeof (Elf_External_Verdaux);
5978 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
5979 if (s->contents == NULL && s->size != 0)
5982 /* Fill in the version definition section. */
5986 def.vd_version = VER_DEF_CURRENT;
5987 def.vd_flags = VER_FLG_BASE;
5990 if (info->create_default_symver)
5992 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
5993 def.vd_next = sizeof (Elf_External_Verdef);
5997 def.vd_aux = sizeof (Elf_External_Verdef);
5998 def.vd_next = (sizeof (Elf_External_Verdef)
5999 + sizeof (Elf_External_Verdaux));
6002 if (soname_indx != (bfd_size_type) -1)
6004 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6006 def.vd_hash = bfd_elf_hash (soname);
6007 defaux.vda_name = soname_indx;
6014 name = lbasename (output_bfd->filename);
6015 def.vd_hash = bfd_elf_hash (name);
6016 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6018 if (indx == (bfd_size_type) -1)
6020 defaux.vda_name = indx;
6022 defaux.vda_next = 0;
6024 _bfd_elf_swap_verdef_out (output_bfd, &def,
6025 (Elf_External_Verdef *) p);
6026 p += sizeof (Elf_External_Verdef);
6027 if (info->create_default_symver)
6029 /* Add a symbol representing this version. */
6031 if (! (_bfd_generic_link_add_one_symbol
6032 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6034 get_elf_backend_data (dynobj)->collect, &bh)))
6036 h = (struct elf_link_hash_entry *) bh;
6039 h->type = STT_OBJECT;
6040 h->verinfo.vertree = NULL;
6042 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6045 /* Create a duplicate of the base version with the same
6046 aux block, but different flags. */
6049 def.vd_aux = sizeof (Elf_External_Verdef);
6051 def.vd_next = (sizeof (Elf_External_Verdef)
6052 + sizeof (Elf_External_Verdaux));
6055 _bfd_elf_swap_verdef_out (output_bfd, &def,
6056 (Elf_External_Verdef *) p);
6057 p += sizeof (Elf_External_Verdef);
6059 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6060 (Elf_External_Verdaux *) p);
6061 p += sizeof (Elf_External_Verdaux);
6063 for (t = verdefs; t != NULL; t = t->next)
6066 struct bfd_elf_version_deps *n;
6068 /* Don't emit the base version twice. */
6073 for (n = t->deps; n != NULL; n = n->next)
6076 /* Add a symbol representing this version. */
6078 if (! (_bfd_generic_link_add_one_symbol
6079 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6081 get_elf_backend_data (dynobj)->collect, &bh)))
6083 h = (struct elf_link_hash_entry *) bh;
6086 h->type = STT_OBJECT;
6087 h->verinfo.vertree = t;
6089 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6092 def.vd_version = VER_DEF_CURRENT;
6094 if (t->globals.list == NULL
6095 && t->locals.list == NULL
6097 def.vd_flags |= VER_FLG_WEAK;
6098 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
6099 def.vd_cnt = cdeps + 1;
6100 def.vd_hash = bfd_elf_hash (t->name);
6101 def.vd_aux = sizeof (Elf_External_Verdef);
6104 /* If a basever node is next, it *must* be the last node in
6105 the chain, otherwise Verdef construction breaks. */
6106 if (t->next != NULL && t->next->vernum == 0)
6107 BFD_ASSERT (t->next->next == NULL);
6109 if (t->next != NULL && t->next->vernum != 0)
6110 def.vd_next = (sizeof (Elf_External_Verdef)
6111 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6113 _bfd_elf_swap_verdef_out (output_bfd, &def,
6114 (Elf_External_Verdef *) p);
6115 p += sizeof (Elf_External_Verdef);
6117 defaux.vda_name = h->dynstr_index;
6118 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6120 defaux.vda_next = 0;
6121 if (t->deps != NULL)
6122 defaux.vda_next = sizeof (Elf_External_Verdaux);
6123 t->name_indx = defaux.vda_name;
6125 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6126 (Elf_External_Verdaux *) p);
6127 p += sizeof (Elf_External_Verdaux);
6129 for (n = t->deps; n != NULL; n = n->next)
6131 if (n->version_needed == NULL)
6133 /* This can happen if there was an error in the
6135 defaux.vda_name = 0;
6139 defaux.vda_name = n->version_needed->name_indx;
6140 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6143 if (n->next == NULL)
6144 defaux.vda_next = 0;
6146 defaux.vda_next = sizeof (Elf_External_Verdaux);
6148 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6149 (Elf_External_Verdaux *) p);
6150 p += sizeof (Elf_External_Verdaux);
6154 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6155 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs))
6158 elf_tdata (output_bfd)->cverdefs = cdefs;
6161 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6163 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6166 else if (info->flags & DF_BIND_NOW)
6168 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6174 if (info->executable)
6175 info->flags_1 &= ~ (DF_1_INITFIRST
6178 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6182 /* Work out the size of the version reference section. */
6184 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
6185 BFD_ASSERT (s != NULL);
6187 struct elf_find_verdep_info sinfo;
6190 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6191 if (sinfo.vers == 0)
6193 sinfo.failed = FALSE;
6195 elf_link_hash_traverse (elf_hash_table (info),
6196 _bfd_elf_link_find_version_dependencies,
6201 if (elf_tdata (output_bfd)->verref == NULL)
6202 s->flags |= SEC_EXCLUDE;
6205 Elf_Internal_Verneed *t;
6210 /* Build the version dependency section. */
6213 for (t = elf_tdata (output_bfd)->verref;
6217 Elf_Internal_Vernaux *a;
6219 size += sizeof (Elf_External_Verneed);
6221 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6222 size += sizeof (Elf_External_Vernaux);
6226 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6227 if (s->contents == NULL)
6231 for (t = elf_tdata (output_bfd)->verref;
6236 Elf_Internal_Vernaux *a;
6240 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6243 t->vn_version = VER_NEED_CURRENT;
6245 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6246 elf_dt_name (t->vn_bfd) != NULL
6247 ? elf_dt_name (t->vn_bfd)
6248 : lbasename (t->vn_bfd->filename),
6250 if (indx == (bfd_size_type) -1)
6253 t->vn_aux = sizeof (Elf_External_Verneed);
6254 if (t->vn_nextref == NULL)
6257 t->vn_next = (sizeof (Elf_External_Verneed)
6258 + caux * sizeof (Elf_External_Vernaux));
6260 _bfd_elf_swap_verneed_out (output_bfd, t,
6261 (Elf_External_Verneed *) p);
6262 p += sizeof (Elf_External_Verneed);
6264 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6266 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6267 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6268 a->vna_nodename, FALSE);
6269 if (indx == (bfd_size_type) -1)
6272 if (a->vna_nextptr == NULL)
6275 a->vna_next = sizeof (Elf_External_Vernaux);
6277 _bfd_elf_swap_vernaux_out (output_bfd, a,
6278 (Elf_External_Vernaux *) p);
6279 p += sizeof (Elf_External_Vernaux);
6283 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6284 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6287 elf_tdata (output_bfd)->cverrefs = crefs;
6291 if ((elf_tdata (output_bfd)->cverrefs == 0
6292 && elf_tdata (output_bfd)->cverdefs == 0)
6293 || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6294 §ion_sym_count) == 0)
6296 s = bfd_get_linker_section (dynobj, ".gnu.version");
6297 s->flags |= SEC_EXCLUDE;
6303 /* Find the first non-excluded output section. We'll use its
6304 section symbol for some emitted relocs. */
6306 _bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6310 for (s = output_bfd->sections; s != NULL; s = s->next)
6311 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
6312 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6314 elf_hash_table (info)->text_index_section = s;
6319 /* Find two non-excluded output sections, one for code, one for data.
6320 We'll use their section symbols for some emitted relocs. */
6322 _bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
6326 /* Data first, since setting text_index_section changes
6327 _bfd_elf_link_omit_section_dynsym. */
6328 for (s = output_bfd->sections; s != NULL; s = s->next)
6329 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
6330 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6332 elf_hash_table (info)->data_index_section = s;
6336 for (s = output_bfd->sections; s != NULL; s = s->next)
6337 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
6338 == (SEC_ALLOC | SEC_READONLY))
6339 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6341 elf_hash_table (info)->text_index_section = s;
6345 if (elf_hash_table (info)->text_index_section == NULL)
6346 elf_hash_table (info)->text_index_section
6347 = elf_hash_table (info)->data_index_section;
6351 bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6353 const struct elf_backend_data *bed;
6355 if (!is_elf_hash_table (info->hash))
6358 bed = get_elf_backend_data (output_bfd);
6359 (*bed->elf_backend_init_index_section) (output_bfd, info);
6361 if (elf_hash_table (info)->dynamic_sections_created)
6365 bfd_size_type dynsymcount;
6366 unsigned long section_sym_count;
6367 unsigned int dtagcount;
6369 dynobj = elf_hash_table (info)->dynobj;
6371 /* Assign dynsym indicies. In a shared library we generate a
6372 section symbol for each output section, which come first.
6373 Next come all of the back-end allocated local dynamic syms,
6374 followed by the rest of the global symbols. */
6376 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6377 §ion_sym_count);
6379 /* Work out the size of the symbol version section. */
6380 s = bfd_get_linker_section (dynobj, ".gnu.version");
6381 BFD_ASSERT (s != NULL);
6382 if (dynsymcount != 0
6383 && (s->flags & SEC_EXCLUDE) == 0)
6385 s->size = dynsymcount * sizeof (Elf_External_Versym);
6386 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6387 if (s->contents == NULL)
6390 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6394 /* Set the size of the .dynsym and .hash sections. We counted
6395 the number of dynamic symbols in elf_link_add_object_symbols.
6396 We will build the contents of .dynsym and .hash when we build
6397 the final symbol table, because until then we do not know the
6398 correct value to give the symbols. We built the .dynstr
6399 section as we went along in elf_link_add_object_symbols. */
6400 s = bfd_get_linker_section (dynobj, ".dynsym");
6401 BFD_ASSERT (s != NULL);
6402 s->size = dynsymcount * bed->s->sizeof_sym;
6404 if (dynsymcount != 0)
6406 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6407 if (s->contents == NULL)
6410 /* The first entry in .dynsym is a dummy symbol.
6411 Clear all the section syms, in case we don't output them all. */
6412 ++section_sym_count;
6413 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
6416 elf_hash_table (info)->bucketcount = 0;
6418 /* Compute the size of the hashing table. As a side effect this
6419 computes the hash values for all the names we export. */
6420 if (info->emit_hash)
6422 unsigned long int *hashcodes;
6423 struct hash_codes_info hashinf;
6425 unsigned long int nsyms;
6427 size_t hash_entry_size;
6429 /* Compute the hash values for all exported symbols. At the same
6430 time store the values in an array so that we could use them for
6432 amt = dynsymcount * sizeof (unsigned long int);
6433 hashcodes = (unsigned long int *) bfd_malloc (amt);
6434 if (hashcodes == NULL)
6436 hashinf.hashcodes = hashcodes;
6437 hashinf.error = FALSE;
6439 /* Put all hash values in HASHCODES. */
6440 elf_link_hash_traverse (elf_hash_table (info),
6441 elf_collect_hash_codes, &hashinf);
6448 nsyms = hashinf.hashcodes - hashcodes;
6450 = compute_bucket_count (info, hashcodes, nsyms, 0);
6453 if (bucketcount == 0)
6456 elf_hash_table (info)->bucketcount = bucketcount;
6458 s = bfd_get_linker_section (dynobj, ".hash");
6459 BFD_ASSERT (s != NULL);
6460 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6461 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
6462 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6463 if (s->contents == NULL)
6466 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6467 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6468 s->contents + hash_entry_size);
6471 if (info->emit_gnu_hash)
6474 unsigned char *contents;
6475 struct collect_gnu_hash_codes cinfo;
6479 memset (&cinfo, 0, sizeof (cinfo));
6481 /* Compute the hash values for all exported symbols. At the same
6482 time store the values in an array so that we could use them for
6484 amt = dynsymcount * 2 * sizeof (unsigned long int);
6485 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
6486 if (cinfo.hashcodes == NULL)
6489 cinfo.hashval = cinfo.hashcodes + dynsymcount;
6490 cinfo.min_dynindx = -1;
6491 cinfo.output_bfd = output_bfd;
6494 /* Put all hash values in HASHCODES. */
6495 elf_link_hash_traverse (elf_hash_table (info),
6496 elf_collect_gnu_hash_codes, &cinfo);
6499 free (cinfo.hashcodes);
6504 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6506 if (bucketcount == 0)
6508 free (cinfo.hashcodes);
6512 s = bfd_get_linker_section (dynobj, ".gnu.hash");
6513 BFD_ASSERT (s != NULL);
6515 if (cinfo.nsyms == 0)
6517 /* Empty .gnu.hash section is special. */
6518 BFD_ASSERT (cinfo.min_dynindx == -1);
6519 free (cinfo.hashcodes);
6520 s->size = 5 * 4 + bed->s->arch_size / 8;
6521 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6522 if (contents == NULL)
6524 s->contents = contents;
6525 /* 1 empty bucket. */
6526 bfd_put_32 (output_bfd, 1, contents);
6527 /* SYMIDX above the special symbol 0. */
6528 bfd_put_32 (output_bfd, 1, contents + 4);
6529 /* Just one word for bitmask. */
6530 bfd_put_32 (output_bfd, 1, contents + 8);
6531 /* Only hash fn bloom filter. */
6532 bfd_put_32 (output_bfd, 0, contents + 12);
6533 /* No hashes are valid - empty bitmask. */
6534 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
6535 /* No hashes in the only bucket. */
6536 bfd_put_32 (output_bfd, 0,
6537 contents + 16 + bed->s->arch_size / 8);
6541 unsigned long int maskwords, maskbitslog2, x;
6542 BFD_ASSERT (cinfo.min_dynindx != -1);
6546 while ((x >>= 1) != 0)
6548 if (maskbitslog2 < 3)
6550 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
6551 maskbitslog2 = maskbitslog2 + 3;
6553 maskbitslog2 = maskbitslog2 + 2;
6554 if (bed->s->arch_size == 64)
6556 if (maskbitslog2 == 5)
6562 cinfo.mask = (1 << cinfo.shift1) - 1;
6563 cinfo.shift2 = maskbitslog2;
6564 cinfo.maskbits = 1 << maskbitslog2;
6565 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6566 amt = bucketcount * sizeof (unsigned long int) * 2;
6567 amt += maskwords * sizeof (bfd_vma);
6568 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
6569 if (cinfo.bitmask == NULL)
6571 free (cinfo.hashcodes);
6575 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
6576 cinfo.indx = cinfo.counts + bucketcount;
6577 cinfo.symindx = dynsymcount - cinfo.nsyms;
6578 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
6580 /* Determine how often each hash bucket is used. */
6581 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
6582 for (i = 0; i < cinfo.nsyms; ++i)
6583 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
6585 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
6586 if (cinfo.counts[i] != 0)
6588 cinfo.indx[i] = cnt;
6589 cnt += cinfo.counts[i];
6591 BFD_ASSERT (cnt == dynsymcount);
6592 cinfo.bucketcount = bucketcount;
6593 cinfo.local_indx = cinfo.min_dynindx;
6595 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
6596 s->size += cinfo.maskbits / 8;
6597 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6598 if (contents == NULL)
6600 free (cinfo.bitmask);
6601 free (cinfo.hashcodes);
6605 s->contents = contents;
6606 bfd_put_32 (output_bfd, bucketcount, contents);
6607 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
6608 bfd_put_32 (output_bfd, maskwords, contents + 8);
6609 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
6610 contents += 16 + cinfo.maskbits / 8;
6612 for (i = 0; i < bucketcount; ++i)
6614 if (cinfo.counts[i] == 0)
6615 bfd_put_32 (output_bfd, 0, contents);
6617 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
6621 cinfo.contents = contents;
6623 /* Renumber dynamic symbols, populate .gnu.hash section. */
6624 elf_link_hash_traverse (elf_hash_table (info),
6625 elf_renumber_gnu_hash_syms, &cinfo);
6627 contents = s->contents + 16;
6628 for (i = 0; i < maskwords; ++i)
6630 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
6632 contents += bed->s->arch_size / 8;
6635 free (cinfo.bitmask);
6636 free (cinfo.hashcodes);
6640 s = bfd_get_linker_section (dynobj, ".dynstr");
6641 BFD_ASSERT (s != NULL);
6643 elf_finalize_dynstr (output_bfd, info);
6645 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
6647 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
6648 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
6655 /* Make sure sec_info_type is cleared if sec_info is cleared too. */
6658 merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
6661 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
6662 sec->sec_info_type = SEC_INFO_TYPE_NONE;
6665 /* Finish SHF_MERGE section merging. */
6668 _bfd_elf_merge_sections (bfd *abfd, struct bfd_link_info *info)
6673 if (!is_elf_hash_table (info->hash))
6676 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
6677 if ((ibfd->flags & DYNAMIC) == 0)
6678 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6679 if ((sec->flags & SEC_MERGE) != 0
6680 && !bfd_is_abs_section (sec->output_section))
6682 struct bfd_elf_section_data *secdata;
6684 secdata = elf_section_data (sec);
6685 if (! _bfd_add_merge_section (abfd,
6686 &elf_hash_table (info)->merge_info,
6687 sec, &secdata->sec_info))
6689 else if (secdata->sec_info)
6690 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
6693 if (elf_hash_table (info)->merge_info != NULL)
6694 _bfd_merge_sections (abfd, info, elf_hash_table (info)->merge_info,
6695 merge_sections_remove_hook);
6699 /* Create an entry in an ELF linker hash table. */
6701 struct bfd_hash_entry *
6702 _bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
6703 struct bfd_hash_table *table,
6706 /* Allocate the structure if it has not already been allocated by a
6710 entry = (struct bfd_hash_entry *)
6711 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
6716 /* Call the allocation method of the superclass. */
6717 entry = _bfd_link_hash_newfunc (entry, table, string);
6720 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
6721 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
6723 /* Set local fields. */
6726 ret->got = htab->init_got_refcount;
6727 ret->plt = htab->init_plt_refcount;
6728 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
6729 - offsetof (struct elf_link_hash_entry, size)));
6730 /* Assume that we have been called by a non-ELF symbol reader.
6731 This flag is then reset by the code which reads an ELF input
6732 file. This ensures that a symbol created by a non-ELF symbol
6733 reader will have the flag set correctly. */
6740 /* Copy data from an indirect symbol to its direct symbol, hiding the
6741 old indirect symbol. Also used for copying flags to a weakdef. */
6744 _bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
6745 struct elf_link_hash_entry *dir,
6746 struct elf_link_hash_entry *ind)
6748 struct elf_link_hash_table *htab;
6750 /* Copy down any references that we may have already seen to the
6751 symbol which just became indirect. */
6753 dir->ref_dynamic |= ind->ref_dynamic;
6754 dir->ref_regular |= ind->ref_regular;
6755 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
6756 dir->non_got_ref |= ind->non_got_ref;
6757 dir->needs_plt |= ind->needs_plt;
6758 dir->pointer_equality_needed |= ind->pointer_equality_needed;
6760 if (ind->root.type != bfd_link_hash_indirect)
6763 /* Copy over the global and procedure linkage table refcount entries.
6764 These may have been already set up by a check_relocs routine. */
6765 htab = elf_hash_table (info);
6766 if (ind->got.refcount > htab->init_got_refcount.refcount)
6768 if (dir->got.refcount < 0)
6769 dir->got.refcount = 0;
6770 dir->got.refcount += ind->got.refcount;
6771 ind->got.refcount = htab->init_got_refcount.refcount;
6774 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
6776 if (dir->plt.refcount < 0)
6777 dir->plt.refcount = 0;
6778 dir->plt.refcount += ind->plt.refcount;
6779 ind->plt.refcount = htab->init_plt_refcount.refcount;
6782 if (ind->dynindx != -1)
6784 if (dir->dynindx != -1)
6785 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
6786 dir->dynindx = ind->dynindx;
6787 dir->dynstr_index = ind->dynstr_index;
6789 ind->dynstr_index = 0;
6794 _bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
6795 struct elf_link_hash_entry *h,
6796 bfd_boolean force_local)
6798 /* STT_GNU_IFUNC symbol must go through PLT. */
6799 if (h->type != STT_GNU_IFUNC)
6801 h->plt = elf_hash_table (info)->init_plt_offset;
6806 h->forced_local = 1;
6807 if (h->dynindx != -1)
6810 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
6816 /* Initialize an ELF linker hash table. *TABLE has been zeroed by our
6820 _bfd_elf_link_hash_table_init
6821 (struct elf_link_hash_table *table,
6823 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
6824 struct bfd_hash_table *,
6826 unsigned int entsize,
6827 enum elf_target_id target_id)
6830 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
6832 table->init_got_refcount.refcount = can_refcount - 1;
6833 table->init_plt_refcount.refcount = can_refcount - 1;
6834 table->init_got_offset.offset = -(bfd_vma) 1;
6835 table->init_plt_offset.offset = -(bfd_vma) 1;
6836 /* The first dynamic symbol is a dummy. */
6837 table->dynsymcount = 1;
6839 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
6841 table->root.type = bfd_link_elf_hash_table;
6842 table->hash_table_id = target_id;
6847 /* Create an ELF linker hash table. */
6849 struct bfd_link_hash_table *
6850 _bfd_elf_link_hash_table_create (bfd *abfd)
6852 struct elf_link_hash_table *ret;
6853 bfd_size_type amt = sizeof (struct elf_link_hash_table);
6855 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
6859 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
6860 sizeof (struct elf_link_hash_entry),
6866 ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
6871 /* Destroy an ELF linker hash table. */
6874 _bfd_elf_link_hash_table_free (bfd *obfd)
6876 struct elf_link_hash_table *htab;
6878 htab = (struct elf_link_hash_table *) obfd->link.hash;
6879 if (htab->dynstr != NULL)
6880 _bfd_elf_strtab_free (htab->dynstr);
6881 _bfd_merge_sections_free (htab->merge_info);
6882 _bfd_generic_link_hash_table_free (obfd);
6885 /* This is a hook for the ELF emulation code in the generic linker to
6886 tell the backend linker what file name to use for the DT_NEEDED
6887 entry for a dynamic object. */
6890 bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
6892 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6893 && bfd_get_format (abfd) == bfd_object)
6894 elf_dt_name (abfd) = name;
6898 bfd_elf_get_dyn_lib_class (bfd *abfd)
6901 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6902 && bfd_get_format (abfd) == bfd_object)
6903 lib_class = elf_dyn_lib_class (abfd);
6910 bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
6912 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6913 && bfd_get_format (abfd) == bfd_object)
6914 elf_dyn_lib_class (abfd) = lib_class;
6917 /* Get the list of DT_NEEDED entries for a link. This is a hook for
6918 the linker ELF emulation code. */
6920 struct bfd_link_needed_list *
6921 bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
6922 struct bfd_link_info *info)
6924 if (! is_elf_hash_table (info->hash))
6926 return elf_hash_table (info)->needed;
6929 /* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
6930 hook for the linker ELF emulation code. */
6932 struct bfd_link_needed_list *
6933 bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
6934 struct bfd_link_info *info)
6936 if (! is_elf_hash_table (info->hash))
6938 return elf_hash_table (info)->runpath;
6941 /* Get the name actually used for a dynamic object for a link. This
6942 is the SONAME entry if there is one. Otherwise, it is the string
6943 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
6946 bfd_elf_get_dt_soname (bfd *abfd)
6948 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6949 && bfd_get_format (abfd) == bfd_object)
6950 return elf_dt_name (abfd);
6954 /* Get the list of DT_NEEDED entries from a BFD. This is a hook for
6955 the ELF linker emulation code. */
6958 bfd_elf_get_bfd_needed_list (bfd *abfd,
6959 struct bfd_link_needed_list **pneeded)
6962 bfd_byte *dynbuf = NULL;
6963 unsigned int elfsec;
6964 unsigned long shlink;
6965 bfd_byte *extdyn, *extdynend;
6967 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
6971 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
6972 || bfd_get_format (abfd) != bfd_object)
6975 s = bfd_get_section_by_name (abfd, ".dynamic");
6976 if (s == NULL || s->size == 0)
6979 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
6982 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
6983 if (elfsec == SHN_BAD)
6986 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
6988 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
6989 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
6992 extdynend = extdyn + s->size;
6993 for (; extdyn < extdynend; extdyn += extdynsize)
6995 Elf_Internal_Dyn dyn;
6997 (*swap_dyn_in) (abfd, extdyn, &dyn);
6999 if (dyn.d_tag == DT_NULL)
7002 if (dyn.d_tag == DT_NEEDED)
7005 struct bfd_link_needed_list *l;
7006 unsigned int tagv = dyn.d_un.d_val;
7009 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7014 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
7035 struct elf_symbuf_symbol
7037 unsigned long st_name; /* Symbol name, index in string tbl */
7038 unsigned char st_info; /* Type and binding attributes */
7039 unsigned char st_other; /* Visibilty, and target specific */
7042 struct elf_symbuf_head
7044 struct elf_symbuf_symbol *ssym;
7045 bfd_size_type count;
7046 unsigned int st_shndx;
7053 Elf_Internal_Sym *isym;
7054 struct elf_symbuf_symbol *ssym;
7059 /* Sort references to symbols by ascending section number. */
7062 elf_sort_elf_symbol (const void *arg1, const void *arg2)
7064 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7065 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7067 return s1->st_shndx - s2->st_shndx;
7071 elf_sym_name_compare (const void *arg1, const void *arg2)
7073 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7074 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7075 return strcmp (s1->name, s2->name);
7078 static struct elf_symbuf_head *
7079 elf_create_symbuf (bfd_size_type symcount, Elf_Internal_Sym *isymbuf)
7081 Elf_Internal_Sym **ind, **indbufend, **indbuf;
7082 struct elf_symbuf_symbol *ssym;
7083 struct elf_symbuf_head *ssymbuf, *ssymhead;
7084 bfd_size_type i, shndx_count, total_size;
7086 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
7090 for (ind = indbuf, i = 0; i < symcount; i++)
7091 if (isymbuf[i].st_shndx != SHN_UNDEF)
7092 *ind++ = &isymbuf[i];
7095 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7096 elf_sort_elf_symbol);
7099 if (indbufend > indbuf)
7100 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7101 if (ind[0]->st_shndx != ind[1]->st_shndx)
7104 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7105 + (indbufend - indbuf) * sizeof (*ssym));
7106 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
7107 if (ssymbuf == NULL)
7113 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
7114 ssymbuf->ssym = NULL;
7115 ssymbuf->count = shndx_count;
7116 ssymbuf->st_shndx = 0;
7117 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7119 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7122 ssymhead->ssym = ssym;
7123 ssymhead->count = 0;
7124 ssymhead->st_shndx = (*ind)->st_shndx;
7126 ssym->st_name = (*ind)->st_name;
7127 ssym->st_info = (*ind)->st_info;
7128 ssym->st_other = (*ind)->st_other;
7131 BFD_ASSERT ((bfd_size_type) (ssymhead - ssymbuf) == shndx_count
7132 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7139 /* Check if 2 sections define the same set of local and global
7143 bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7144 struct bfd_link_info *info)
7147 const struct elf_backend_data *bed1, *bed2;
7148 Elf_Internal_Shdr *hdr1, *hdr2;
7149 bfd_size_type symcount1, symcount2;
7150 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7151 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7152 Elf_Internal_Sym *isym, *isymend;
7153 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
7154 bfd_size_type count1, count2, i;
7155 unsigned int shndx1, shndx2;
7161 /* Both sections have to be in ELF. */
7162 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7163 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7166 if (elf_section_type (sec1) != elf_section_type (sec2))
7169 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7170 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
7171 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
7174 bed1 = get_elf_backend_data (bfd1);
7175 bed2 = get_elf_backend_data (bfd2);
7176 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7177 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7178 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7179 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7181 if (symcount1 == 0 || symcount2 == 0)
7187 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7188 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
7190 if (ssymbuf1 == NULL)
7192 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7194 if (isymbuf1 == NULL)
7197 if (!info->reduce_memory_overheads)
7198 elf_tdata (bfd1)->symbuf = ssymbuf1
7199 = elf_create_symbuf (symcount1, isymbuf1);
7202 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7204 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7206 if (isymbuf2 == NULL)
7209 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7210 elf_tdata (bfd2)->symbuf = ssymbuf2
7211 = elf_create_symbuf (symcount2, isymbuf2);
7214 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7216 /* Optimized faster version. */
7217 bfd_size_type lo, hi, mid;
7218 struct elf_symbol *symp;
7219 struct elf_symbuf_symbol *ssym, *ssymend;
7222 hi = ssymbuf1->count;
7227 mid = (lo + hi) / 2;
7228 if (shndx1 < ssymbuf1[mid].st_shndx)
7230 else if (shndx1 > ssymbuf1[mid].st_shndx)
7234 count1 = ssymbuf1[mid].count;
7241 hi = ssymbuf2->count;
7246 mid = (lo + hi) / 2;
7247 if (shndx2 < ssymbuf2[mid].st_shndx)
7249 else if (shndx2 > ssymbuf2[mid].st_shndx)
7253 count2 = ssymbuf2[mid].count;
7259 if (count1 == 0 || count2 == 0 || count1 != count2)
7262 symtable1 = (struct elf_symbol *)
7263 bfd_malloc (count1 * sizeof (struct elf_symbol));
7264 symtable2 = (struct elf_symbol *)
7265 bfd_malloc (count2 * sizeof (struct elf_symbol));
7266 if (symtable1 == NULL || symtable2 == NULL)
7270 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7271 ssym < ssymend; ssym++, symp++)
7273 symp->u.ssym = ssym;
7274 symp->name = bfd_elf_string_from_elf_section (bfd1,
7280 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
7281 ssym < ssymend; ssym++, symp++)
7283 symp->u.ssym = ssym;
7284 symp->name = bfd_elf_string_from_elf_section (bfd2,
7289 /* Sort symbol by name. */
7290 qsort (symtable1, count1, sizeof (struct elf_symbol),
7291 elf_sym_name_compare);
7292 qsort (symtable2, count1, sizeof (struct elf_symbol),
7293 elf_sym_name_compare);
7295 for (i = 0; i < count1; i++)
7296 /* Two symbols must have the same binding, type and name. */
7297 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
7298 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
7299 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7306 symtable1 = (struct elf_symbol *)
7307 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
7308 symtable2 = (struct elf_symbol *)
7309 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
7310 if (symtable1 == NULL || symtable2 == NULL)
7313 /* Count definitions in the section. */
7315 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
7316 if (isym->st_shndx == shndx1)
7317 symtable1[count1++].u.isym = isym;
7320 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
7321 if (isym->st_shndx == shndx2)
7322 symtable2[count2++].u.isym = isym;
7324 if (count1 == 0 || count2 == 0 || count1 != count2)
7327 for (i = 0; i < count1; i++)
7329 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
7330 symtable1[i].u.isym->st_name);
7332 for (i = 0; i < count2; i++)
7334 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
7335 symtable2[i].u.isym->st_name);
7337 /* Sort symbol by name. */
7338 qsort (symtable1, count1, sizeof (struct elf_symbol),
7339 elf_sym_name_compare);
7340 qsort (symtable2, count1, sizeof (struct elf_symbol),
7341 elf_sym_name_compare);
7343 for (i = 0; i < count1; i++)
7344 /* Two symbols must have the same binding, type and name. */
7345 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
7346 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
7347 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7365 /* Return TRUE if 2 section types are compatible. */
7368 _bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
7369 bfd *bbfd, const asection *bsec)
7373 || abfd->xvec->flavour != bfd_target_elf_flavour
7374 || bbfd->xvec->flavour != bfd_target_elf_flavour)
7377 return elf_section_type (asec) == elf_section_type (bsec);
7380 /* Final phase of ELF linker. */
7382 /* A structure we use to avoid passing large numbers of arguments. */
7384 struct elf_final_link_info
7386 /* General link information. */
7387 struct bfd_link_info *info;
7390 /* Symbol string table. */
7391 struct bfd_strtab_hash *symstrtab;
7392 /* .dynsym section. */
7393 asection *dynsym_sec;
7394 /* .hash section. */
7396 /* symbol version section (.gnu.version). */
7397 asection *symver_sec;
7398 /* Buffer large enough to hold contents of any section. */
7400 /* Buffer large enough to hold external relocs of any section. */
7401 void *external_relocs;
7402 /* Buffer large enough to hold internal relocs of any section. */
7403 Elf_Internal_Rela *internal_relocs;
7404 /* Buffer large enough to hold external local symbols of any input
7406 bfd_byte *external_syms;
7407 /* And a buffer for symbol section indices. */
7408 Elf_External_Sym_Shndx *locsym_shndx;
7409 /* Buffer large enough to hold internal local symbols of any input
7411 Elf_Internal_Sym *internal_syms;
7412 /* Array large enough to hold a symbol index for each local symbol
7413 of any input BFD. */
7415 /* Array large enough to hold a section pointer for each local
7416 symbol of any input BFD. */
7417 asection **sections;
7418 /* Buffer to hold swapped out symbols. */
7420 /* And one for symbol section indices. */
7421 Elf_External_Sym_Shndx *symshndxbuf;
7422 /* Number of swapped out symbols in buffer. */
7423 size_t symbuf_count;
7424 /* Number of symbols which fit in symbuf. */
7426 /* And same for symshndxbuf. */
7427 size_t shndxbuf_size;
7428 /* Number of STT_FILE syms seen. */
7429 size_t filesym_count;
7432 /* This struct is used to pass information to elf_link_output_extsym. */
7434 struct elf_outext_info
7437 bfd_boolean localsyms;
7438 bfd_boolean need_second_pass;
7439 bfd_boolean second_pass;
7440 bfd_boolean file_sym_done;
7441 struct elf_final_link_info *flinfo;
7445 /* Support for evaluating a complex relocation.
7447 Complex relocations are generalized, self-describing relocations. The
7448 implementation of them consists of two parts: complex symbols, and the
7449 relocations themselves.
7451 The relocations are use a reserved elf-wide relocation type code (R_RELC
7452 external / BFD_RELOC_RELC internal) and an encoding of relocation field
7453 information (start bit, end bit, word width, etc) into the addend. This
7454 information is extracted from CGEN-generated operand tables within gas.
7456 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
7457 internal) representing prefix-notation expressions, including but not
7458 limited to those sorts of expressions normally encoded as addends in the
7459 addend field. The symbol mangling format is:
7462 | <unary-operator> ':' <node>
7463 | <binary-operator> ':' <node> ':' <node>
7466 <literal> := 's' <digits=N> ':' <N character symbol name>
7467 | 'S' <digits=N> ':' <N character section name>
7471 <binary-operator> := as in C
7472 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
7475 set_symbol_value (bfd *bfd_with_globals,
7476 Elf_Internal_Sym *isymbuf,
7481 struct elf_link_hash_entry **sym_hashes;
7482 struct elf_link_hash_entry *h;
7483 size_t extsymoff = locsymcount;
7485 if (symidx < locsymcount)
7487 Elf_Internal_Sym *sym;
7489 sym = isymbuf + symidx;
7490 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
7492 /* It is a local symbol: move it to the
7493 "absolute" section and give it a value. */
7494 sym->st_shndx = SHN_ABS;
7495 sym->st_value = val;
7498 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
7502 /* It is a global symbol: set its link type
7503 to "defined" and give it a value. */
7505 sym_hashes = elf_sym_hashes (bfd_with_globals);
7506 h = sym_hashes [symidx - extsymoff];
7507 while (h->root.type == bfd_link_hash_indirect
7508 || h->root.type == bfd_link_hash_warning)
7509 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7510 h->root.type = bfd_link_hash_defined;
7511 h->root.u.def.value = val;
7512 h->root.u.def.section = bfd_abs_section_ptr;
7516 resolve_symbol (const char *name,
7518 struct elf_final_link_info *flinfo,
7520 Elf_Internal_Sym *isymbuf,
7523 Elf_Internal_Sym *sym;
7524 struct bfd_link_hash_entry *global_entry;
7525 const char *candidate = NULL;
7526 Elf_Internal_Shdr *symtab_hdr;
7529 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
7531 for (i = 0; i < locsymcount; ++ i)
7535 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
7538 candidate = bfd_elf_string_from_elf_section (input_bfd,
7539 symtab_hdr->sh_link,
7542 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
7543 name, candidate, (unsigned long) sym->st_value);
7545 if (candidate && strcmp (candidate, name) == 0)
7547 asection *sec = flinfo->sections [i];
7549 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
7550 *result += sec->output_offset + sec->output_section->vma;
7552 printf ("Found symbol with value %8.8lx\n",
7553 (unsigned long) *result);
7559 /* Hmm, haven't found it yet. perhaps it is a global. */
7560 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
7561 FALSE, FALSE, TRUE);
7565 if (global_entry->type == bfd_link_hash_defined
7566 || global_entry->type == bfd_link_hash_defweak)
7568 *result = (global_entry->u.def.value
7569 + global_entry->u.def.section->output_section->vma
7570 + global_entry->u.def.section->output_offset);
7572 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
7573 global_entry->root.string, (unsigned long) *result);
7582 resolve_section (const char *name,
7589 for (curr = sections; curr; curr = curr->next)
7590 if (strcmp (curr->name, name) == 0)
7592 *result = curr->vma;
7596 /* Hmm. still haven't found it. try pseudo-section names. */
7597 for (curr = sections; curr; curr = curr->next)
7599 len = strlen (curr->name);
7600 if (len > strlen (name))
7603 if (strncmp (curr->name, name, len) == 0)
7605 if (strncmp (".end", name + len, 4) == 0)
7607 *result = curr->vma + curr->size;
7611 /* Insert more pseudo-section names here, if you like. */
7619 undefined_reference (const char *reftype, const char *name)
7621 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
7626 eval_symbol (bfd_vma *result,
7629 struct elf_final_link_info *flinfo,
7631 Elf_Internal_Sym *isymbuf,
7640 const char *sym = *symp;
7642 bfd_boolean symbol_is_section = FALSE;
7647 if (len < 1 || len > sizeof (symbuf))
7649 bfd_set_error (bfd_error_invalid_operation);
7662 *result = strtoul (sym, (char **) symp, 16);
7666 symbol_is_section = TRUE;
7669 symlen = strtol (sym, (char **) symp, 10);
7670 sym = *symp + 1; /* Skip the trailing ':'. */
7672 if (symend < sym || symlen + 1 > sizeof (symbuf))
7674 bfd_set_error (bfd_error_invalid_operation);
7678 memcpy (symbuf, sym, symlen);
7679 symbuf[symlen] = '\0';
7680 *symp = sym + symlen;
7682 /* Is it always possible, with complex symbols, that gas "mis-guessed"
7683 the symbol as a section, or vice-versa. so we're pretty liberal in our
7684 interpretation here; section means "try section first", not "must be a
7685 section", and likewise with symbol. */
7687 if (symbol_is_section)
7689 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result)
7690 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
7691 isymbuf, locsymcount))
7693 undefined_reference ("section", symbuf);
7699 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
7700 isymbuf, locsymcount)
7701 && !resolve_section (symbuf, flinfo->output_bfd->sections,
7704 undefined_reference ("symbol", symbuf);
7711 /* All that remains are operators. */
7713 #define UNARY_OP(op) \
7714 if (strncmp (sym, #op, strlen (#op)) == 0) \
7716 sym += strlen (#op); \
7720 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
7721 isymbuf, locsymcount, signed_p)) \
7724 *result = op ((bfd_signed_vma) a); \
7730 #define BINARY_OP(op) \
7731 if (strncmp (sym, #op, strlen (#op)) == 0) \
7733 sym += strlen (#op); \
7737 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
7738 isymbuf, locsymcount, signed_p)) \
7741 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
7742 isymbuf, locsymcount, signed_p)) \
7745 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
7775 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
7776 bfd_set_error (bfd_error_invalid_operation);
7782 put_value (bfd_vma size,
7783 unsigned long chunksz,
7788 location += (size - chunksz);
7790 for (; size; size -= chunksz, location -= chunksz, x >>= (chunksz * 8))
7798 bfd_put_8 (input_bfd, x, location);
7801 bfd_put_16 (input_bfd, x, location);
7804 bfd_put_32 (input_bfd, x, location);
7808 bfd_put_64 (input_bfd, x, location);
7818 get_value (bfd_vma size,
7819 unsigned long chunksz,
7826 /* Sanity checks. */
7827 BFD_ASSERT (chunksz <= sizeof (x)
7830 && (size % chunksz) == 0
7831 && input_bfd != NULL
7832 && location != NULL);
7834 if (chunksz == sizeof (x))
7836 BFD_ASSERT (size == chunksz);
7838 /* Make sure that we do not perform an undefined shift operation.
7839 We know that size == chunksz so there will only be one iteration
7840 of the loop below. */
7844 shift = 8 * chunksz;
7846 for (; size; size -= chunksz, location += chunksz)
7851 x = (x << shift) | bfd_get_8 (input_bfd, location);
7854 x = (x << shift) | bfd_get_16 (input_bfd, location);
7857 x = (x << shift) | bfd_get_32 (input_bfd, location);
7861 x = (x << shift) | bfd_get_64 (input_bfd, location);
7872 decode_complex_addend (unsigned long *start, /* in bits */
7873 unsigned long *oplen, /* in bits */
7874 unsigned long *len, /* in bits */
7875 unsigned long *wordsz, /* in bytes */
7876 unsigned long *chunksz, /* in bytes */
7877 unsigned long *lsb0_p,
7878 unsigned long *signed_p,
7879 unsigned long *trunc_p,
7880 unsigned long encoded)
7882 * start = encoded & 0x3F;
7883 * len = (encoded >> 6) & 0x3F;
7884 * oplen = (encoded >> 12) & 0x3F;
7885 * wordsz = (encoded >> 18) & 0xF;
7886 * chunksz = (encoded >> 22) & 0xF;
7887 * lsb0_p = (encoded >> 27) & 1;
7888 * signed_p = (encoded >> 28) & 1;
7889 * trunc_p = (encoded >> 29) & 1;
7892 bfd_reloc_status_type
7893 bfd_elf_perform_complex_relocation (bfd *input_bfd,
7894 asection *input_section ATTRIBUTE_UNUSED,
7896 Elf_Internal_Rela *rel,
7899 bfd_vma shift, x, mask;
7900 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
7901 bfd_reloc_status_type r;
7903 /* Perform this reloc, since it is complex.
7904 (this is not to say that it necessarily refers to a complex
7905 symbol; merely that it is a self-describing CGEN based reloc.
7906 i.e. the addend has the complete reloc information (bit start, end,
7907 word size, etc) encoded within it.). */
7909 decode_complex_addend (&start, &oplen, &len, &wordsz,
7910 &chunksz, &lsb0_p, &signed_p,
7911 &trunc_p, rel->r_addend);
7913 mask = (((1L << (len - 1)) - 1) << 1) | 1;
7916 shift = (start + 1) - len;
7918 shift = (8 * wordsz) - (start + len);
7920 /* FIXME: octets_per_byte. */
7921 x = get_value (wordsz, chunksz, input_bfd, contents + rel->r_offset);
7924 printf ("Doing complex reloc: "
7925 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
7926 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
7927 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
7928 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
7929 oplen, (unsigned long) x, (unsigned long) mask,
7930 (unsigned long) relocation);
7935 /* Now do an overflow check. */
7936 r = bfd_check_overflow ((signed_p
7937 ? complain_overflow_signed
7938 : complain_overflow_unsigned),
7939 len, 0, (8 * wordsz),
7943 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
7946 printf (" relocation: %8.8lx\n"
7947 " shifted mask: %8.8lx\n"
7948 " shifted/masked reloc: %8.8lx\n"
7949 " result: %8.8lx\n",
7950 (unsigned long) relocation, (unsigned long) (mask << shift),
7951 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
7953 /* FIXME: octets_per_byte. */
7954 put_value (wordsz, chunksz, input_bfd, x, contents + rel->r_offset);
7958 /* When performing a relocatable link, the input relocations are
7959 preserved. But, if they reference global symbols, the indices
7960 referenced must be updated. Update all the relocations found in
7964 elf_link_adjust_relocs (bfd *abfd,
7965 struct bfd_elf_section_reloc_data *reldata)
7968 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7970 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
7971 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
7972 bfd_vma r_type_mask;
7974 unsigned int count = reldata->count;
7975 struct elf_link_hash_entry **rel_hash = reldata->hashes;
7977 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
7979 swap_in = bed->s->swap_reloc_in;
7980 swap_out = bed->s->swap_reloc_out;
7982 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
7984 swap_in = bed->s->swap_reloca_in;
7985 swap_out = bed->s->swap_reloca_out;
7990 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
7993 if (bed->s->arch_size == 32)
8000 r_type_mask = 0xffffffff;
8004 erela = reldata->hdr->contents;
8005 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
8007 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8010 if (*rel_hash == NULL)
8013 BFD_ASSERT ((*rel_hash)->indx >= 0);
8015 (*swap_in) (abfd, erela, irela);
8016 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8017 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8018 | (irela[j].r_info & r_type_mask));
8019 (*swap_out) (abfd, irela, erela);
8023 struct elf_link_sort_rela
8029 enum elf_reloc_type_class type;
8030 /* We use this as an array of size int_rels_per_ext_rel. */
8031 Elf_Internal_Rela rela[1];
8035 elf_link_sort_cmp1 (const void *A, const void *B)
8037 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8038 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8039 int relativea, relativeb;
8041 relativea = a->type == reloc_class_relative;
8042 relativeb = b->type == reloc_class_relative;
8044 if (relativea < relativeb)
8046 if (relativea > relativeb)
8048 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8050 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8052 if (a->rela->r_offset < b->rela->r_offset)
8054 if (a->rela->r_offset > b->rela->r_offset)
8060 elf_link_sort_cmp2 (const void *A, const void *B)
8062 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8063 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8065 if (a->type < b->type)
8067 if (a->type > b->type)
8069 if (a->u.offset < b->u.offset)
8071 if (a->u.offset > b->u.offset)
8073 if (a->rela->r_offset < b->rela->r_offset)
8075 if (a->rela->r_offset > b->rela->r_offset)
8081 elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
8083 asection *dynamic_relocs;
8086 bfd_size_type count, size;
8087 size_t i, ret, sort_elt, ext_size;
8088 bfd_byte *sort, *s_non_relative, *p;
8089 struct elf_link_sort_rela *sq;
8090 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8091 int i2e = bed->s->int_rels_per_ext_rel;
8092 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8093 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8094 struct bfd_link_order *lo;
8096 bfd_boolean use_rela;
8098 /* Find a dynamic reloc section. */
8099 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
8100 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
8101 if (rela_dyn != NULL && rela_dyn->size > 0
8102 && rel_dyn != NULL && rel_dyn->size > 0)
8104 bfd_boolean use_rela_initialised = FALSE;
8106 /* This is just here to stop gcc from complaining.
8107 It's initialization checking code is not perfect. */
8110 /* Both sections are present. Examine the sizes
8111 of the indirect sections to help us choose. */
8112 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8113 if (lo->type == bfd_indirect_link_order)
8115 asection *o = lo->u.indirect.section;
8117 if ((o->size % bed->s->sizeof_rela) == 0)
8119 if ((o->size % bed->s->sizeof_rel) == 0)
8120 /* Section size is divisible by both rel and rela sizes.
8121 It is of no help to us. */
8125 /* Section size is only divisible by rela. */
8126 if (use_rela_initialised && (use_rela == FALSE))
8129 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8130 bfd_set_error (bfd_error_invalid_operation);
8136 use_rela_initialised = TRUE;
8140 else if ((o->size % bed->s->sizeof_rel) == 0)
8142 /* Section size is only divisible by rel. */
8143 if (use_rela_initialised && (use_rela == TRUE))
8146 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8147 bfd_set_error (bfd_error_invalid_operation);
8153 use_rela_initialised = TRUE;
8158 /* The section size is not divisible by either - something is wrong. */
8160 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8161 bfd_set_error (bfd_error_invalid_operation);
8166 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8167 if (lo->type == bfd_indirect_link_order)
8169 asection *o = lo->u.indirect.section;
8171 if ((o->size % bed->s->sizeof_rela) == 0)
8173 if ((o->size % bed->s->sizeof_rel) == 0)
8174 /* Section size is divisible by both rel and rela sizes.
8175 It is of no help to us. */
8179 /* Section size is only divisible by rela. */
8180 if (use_rela_initialised && (use_rela == FALSE))
8183 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8184 bfd_set_error (bfd_error_invalid_operation);
8190 use_rela_initialised = TRUE;
8194 else if ((o->size % bed->s->sizeof_rel) == 0)
8196 /* Section size is only divisible by rel. */
8197 if (use_rela_initialised && (use_rela == TRUE))
8200 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8201 bfd_set_error (bfd_error_invalid_operation);
8207 use_rela_initialised = TRUE;
8212 /* The section size is not divisible by either - something is wrong. */
8214 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8215 bfd_set_error (bfd_error_invalid_operation);
8220 if (! use_rela_initialised)
8224 else if (rela_dyn != NULL && rela_dyn->size > 0)
8226 else if (rel_dyn != NULL && rel_dyn->size > 0)
8233 dynamic_relocs = rela_dyn;
8234 ext_size = bed->s->sizeof_rela;
8235 swap_in = bed->s->swap_reloca_in;
8236 swap_out = bed->s->swap_reloca_out;
8240 dynamic_relocs = rel_dyn;
8241 ext_size = bed->s->sizeof_rel;
8242 swap_in = bed->s->swap_reloc_in;
8243 swap_out = bed->s->swap_reloc_out;
8247 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8248 if (lo->type == bfd_indirect_link_order)
8249 size += lo->u.indirect.section->size;
8251 if (size != dynamic_relocs->size)
8254 sort_elt = (sizeof (struct elf_link_sort_rela)
8255 + (i2e - 1) * sizeof (Elf_Internal_Rela));
8257 count = dynamic_relocs->size / ext_size;
8260 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
8264 (*info->callbacks->warning)
8265 (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
8269 if (bed->s->arch_size == 32)
8270 r_sym_mask = ~(bfd_vma) 0xff;
8272 r_sym_mask = ~(bfd_vma) 0xffffffff;
8274 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8275 if (lo->type == bfd_indirect_link_order)
8277 bfd_byte *erel, *erelend;
8278 asection *o = lo->u.indirect.section;
8280 if (o->contents == NULL && o->size != 0)
8282 /* This is a reloc section that is being handled as a normal
8283 section. See bfd_section_from_shdr. We can't combine
8284 relocs in this case. */
8289 erelend = o->contents + o->size;
8290 /* FIXME: octets_per_byte. */
8291 p = sort + o->output_offset / ext_size * sort_elt;
8293 while (erel < erelend)
8295 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8297 (*swap_in) (abfd, erel, s->rela);
8298 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
8299 s->u.sym_mask = r_sym_mask;
8305 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
8307 for (i = 0, p = sort; i < count; i++, p += sort_elt)
8309 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8310 if (s->type != reloc_class_relative)
8316 sq = (struct elf_link_sort_rela *) s_non_relative;
8317 for (; i < count; i++, p += sort_elt)
8319 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
8320 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
8322 sp->u.offset = sq->rela->r_offset;
8325 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
8327 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8328 if (lo->type == bfd_indirect_link_order)
8330 bfd_byte *erel, *erelend;
8331 asection *o = lo->u.indirect.section;
8334 erelend = o->contents + o->size;
8335 /* FIXME: octets_per_byte. */
8336 p = sort + o->output_offset / ext_size * sort_elt;
8337 while (erel < erelend)
8339 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8340 (*swap_out) (abfd, s->rela, erel);
8347 *psec = dynamic_relocs;
8351 /* Flush the output symbols to the file. */
8354 elf_link_flush_output_syms (struct elf_final_link_info *flinfo,
8355 const struct elf_backend_data *bed)
8357 if (flinfo->symbuf_count > 0)
8359 Elf_Internal_Shdr *hdr;
8363 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
8364 pos = hdr->sh_offset + hdr->sh_size;
8365 amt = flinfo->symbuf_count * bed->s->sizeof_sym;
8366 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) != 0
8367 || bfd_bwrite (flinfo->symbuf, amt, flinfo->output_bfd) != amt)
8370 hdr->sh_size += amt;
8371 flinfo->symbuf_count = 0;
8377 /* Add a symbol to the output symbol table. */
8380 elf_link_output_sym (struct elf_final_link_info *flinfo,
8382 Elf_Internal_Sym *elfsym,
8383 asection *input_sec,
8384 struct elf_link_hash_entry *h)
8387 Elf_External_Sym_Shndx *destshndx;
8388 int (*output_symbol_hook)
8389 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
8390 struct elf_link_hash_entry *);
8391 const struct elf_backend_data *bed;
8393 bed = get_elf_backend_data (flinfo->output_bfd);
8394 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
8395 if (output_symbol_hook != NULL)
8397 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
8402 if (name == NULL || *name == '\0')
8403 elfsym->st_name = 0;
8404 else if (input_sec->flags & SEC_EXCLUDE)
8405 elfsym->st_name = 0;
8408 elfsym->st_name = (unsigned long) _bfd_stringtab_add (flinfo->symstrtab,
8410 if (elfsym->st_name == (unsigned long) -1)
8414 if (flinfo->symbuf_count >= flinfo->symbuf_size)
8416 if (! elf_link_flush_output_syms (flinfo, bed))
8420 dest = flinfo->symbuf + flinfo->symbuf_count * bed->s->sizeof_sym;
8421 destshndx = flinfo->symshndxbuf;
8422 if (destshndx != NULL)
8424 if (bfd_get_symcount (flinfo->output_bfd) >= flinfo->shndxbuf_size)
8428 amt = flinfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx);
8429 destshndx = (Elf_External_Sym_Shndx *) bfd_realloc (destshndx,
8431 if (destshndx == NULL)
8433 flinfo->symshndxbuf = destshndx;
8434 memset ((char *) destshndx + amt, 0, amt);
8435 flinfo->shndxbuf_size *= 2;
8437 destshndx += bfd_get_symcount (flinfo->output_bfd);
8440 bed->s->swap_symbol_out (flinfo->output_bfd, elfsym, dest, destshndx);
8441 flinfo->symbuf_count += 1;
8442 bfd_get_symcount (flinfo->output_bfd) += 1;
8447 /* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
8450 check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
8452 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
8453 && sym->st_shndx < SHN_LORESERVE)
8455 /* The gABI doesn't support dynamic symbols in output sections
8457 (*_bfd_error_handler)
8458 (_("%B: Too many sections: %d (>= %d)"),
8459 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
8460 bfd_set_error (bfd_error_nonrepresentable_section);
8466 /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
8467 allowing an unsatisfied unversioned symbol in the DSO to match a
8468 versioned symbol that would normally require an explicit version.
8469 We also handle the case that a DSO references a hidden symbol
8470 which may be satisfied by a versioned symbol in another DSO. */
8473 elf_link_check_versioned_symbol (struct bfd_link_info *info,
8474 const struct elf_backend_data *bed,
8475 struct elf_link_hash_entry *h)
8478 struct elf_link_loaded_list *loaded;
8480 if (!is_elf_hash_table (info->hash))
8483 /* Check indirect symbol. */
8484 while (h->root.type == bfd_link_hash_indirect)
8485 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8487 switch (h->root.type)
8493 case bfd_link_hash_undefined:
8494 case bfd_link_hash_undefweak:
8495 abfd = h->root.u.undef.abfd;
8496 if ((abfd->flags & DYNAMIC) == 0
8497 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
8501 case bfd_link_hash_defined:
8502 case bfd_link_hash_defweak:
8503 abfd = h->root.u.def.section->owner;
8506 case bfd_link_hash_common:
8507 abfd = h->root.u.c.p->section->owner;
8510 BFD_ASSERT (abfd != NULL);
8512 for (loaded = elf_hash_table (info)->loaded;
8514 loaded = loaded->next)
8517 Elf_Internal_Shdr *hdr;
8518 bfd_size_type symcount;
8519 bfd_size_type extsymcount;
8520 bfd_size_type extsymoff;
8521 Elf_Internal_Shdr *versymhdr;
8522 Elf_Internal_Sym *isym;
8523 Elf_Internal_Sym *isymend;
8524 Elf_Internal_Sym *isymbuf;
8525 Elf_External_Versym *ever;
8526 Elf_External_Versym *extversym;
8528 input = loaded->abfd;
8530 /* We check each DSO for a possible hidden versioned definition. */
8532 || (input->flags & DYNAMIC) == 0
8533 || elf_dynversym (input) == 0)
8536 hdr = &elf_tdata (input)->dynsymtab_hdr;
8538 symcount = hdr->sh_size / bed->s->sizeof_sym;
8539 if (elf_bad_symtab (input))
8541 extsymcount = symcount;
8546 extsymcount = symcount - hdr->sh_info;
8547 extsymoff = hdr->sh_info;
8550 if (extsymcount == 0)
8553 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
8555 if (isymbuf == NULL)
8558 /* Read in any version definitions. */
8559 versymhdr = &elf_tdata (input)->dynversym_hdr;
8560 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
8561 if (extversym == NULL)
8564 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
8565 || (bfd_bread (extversym, versymhdr->sh_size, input)
8566 != versymhdr->sh_size))
8574 ever = extversym + extsymoff;
8575 isymend = isymbuf + extsymcount;
8576 for (isym = isymbuf; isym < isymend; isym++, ever++)
8579 Elf_Internal_Versym iver;
8580 unsigned short version_index;
8582 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
8583 || isym->st_shndx == SHN_UNDEF)
8586 name = bfd_elf_string_from_elf_section (input,
8589 if (strcmp (name, h->root.root.string) != 0)
8592 _bfd_elf_swap_versym_in (input, ever, &iver);
8594 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
8596 && h->forced_local))
8598 /* If we have a non-hidden versioned sym, then it should
8599 have provided a definition for the undefined sym unless
8600 it is defined in a non-shared object and forced local.
8605 version_index = iver.vs_vers & VERSYM_VERSION;
8606 if (version_index == 1 || version_index == 2)
8608 /* This is the base or first version. We can use it. */
8622 /* Add an external symbol to the symbol table. This is called from
8623 the hash table traversal routine. When generating a shared object,
8624 we go through the symbol table twice. The first time we output
8625 anything that might have been forced to local scope in a version
8626 script. The second time we output the symbols that are still
8630 elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
8632 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
8633 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8634 struct elf_final_link_info *flinfo = eoinfo->flinfo;
8636 Elf_Internal_Sym sym;
8637 asection *input_sec;
8638 const struct elf_backend_data *bed;
8642 if (h->root.type == bfd_link_hash_warning)
8644 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8645 if (h->root.type == bfd_link_hash_new)
8649 /* Decide whether to output this symbol in this pass. */
8650 if (eoinfo->localsyms)
8652 if (!h->forced_local)
8654 if (eoinfo->second_pass
8655 && !((h->root.type == bfd_link_hash_defined
8656 || h->root.type == bfd_link_hash_defweak)
8657 && h->root.u.def.section->output_section != NULL))
8660 if (!eoinfo->file_sym_done
8661 && (eoinfo->second_pass ? eoinfo->flinfo->filesym_count == 1
8662 : eoinfo->flinfo->filesym_count > 1))
8664 /* Output a FILE symbol so that following locals are not associated
8665 with the wrong input file. */
8666 memset (&sym, 0, sizeof (sym));
8667 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8668 sym.st_shndx = SHN_ABS;
8669 if (!elf_link_output_sym (eoinfo->flinfo, NULL, &sym,
8670 bfd_und_section_ptr, NULL))
8673 eoinfo->file_sym_done = TRUE;
8678 if (h->forced_local)
8682 bed = get_elf_backend_data (flinfo->output_bfd);
8684 if (h->root.type == bfd_link_hash_undefined)
8686 /* If we have an undefined symbol reference here then it must have
8687 come from a shared library that is being linked in. (Undefined
8688 references in regular files have already been handled unless
8689 they are in unreferenced sections which are removed by garbage
8691 bfd_boolean ignore_undef = FALSE;
8693 /* Some symbols may be special in that the fact that they're
8694 undefined can be safely ignored - let backend determine that. */
8695 if (bed->elf_backend_ignore_undef_symbol)
8696 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
8698 /* If we are reporting errors for this situation then do so now. */
8701 && (!h->ref_regular || flinfo->info->gc_sections)
8702 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
8703 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
8705 if (!(flinfo->info->callbacks->undefined_symbol
8706 (flinfo->info, h->root.root.string,
8707 h->ref_regular ? NULL : h->root.u.undef.abfd,
8709 (flinfo->info->unresolved_syms_in_shared_libs
8710 == RM_GENERATE_ERROR))))
8712 bfd_set_error (bfd_error_bad_value);
8713 eoinfo->failed = TRUE;
8719 /* We should also warn if a forced local symbol is referenced from
8720 shared libraries. */
8721 if (!flinfo->info->relocatable
8722 && flinfo->info->executable
8727 && h->ref_dynamic_nonweak
8728 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
8732 struct elf_link_hash_entry *hi = h;
8734 /* Check indirect symbol. */
8735 while (hi->root.type == bfd_link_hash_indirect)
8736 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
8738 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
8739 msg = _("%B: internal symbol `%s' in %B is referenced by DSO");
8740 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
8741 msg = _("%B: hidden symbol `%s' in %B is referenced by DSO");
8743 msg = _("%B: local symbol `%s' in %B is referenced by DSO");
8744 def_bfd = flinfo->output_bfd;
8745 if (hi->root.u.def.section != bfd_abs_section_ptr)
8746 def_bfd = hi->root.u.def.section->owner;
8747 (*_bfd_error_handler) (msg, flinfo->output_bfd, def_bfd,
8748 h->root.root.string);
8749 bfd_set_error (bfd_error_bad_value);
8750 eoinfo->failed = TRUE;
8754 /* We don't want to output symbols that have never been mentioned by
8755 a regular file, or that we have been told to strip. However, if
8756 h->indx is set to -2, the symbol is used by a reloc and we must
8760 else if ((h->def_dynamic
8762 || h->root.type == bfd_link_hash_new)
8766 else if (flinfo->info->strip == strip_all)
8768 else if (flinfo->info->strip == strip_some
8769 && bfd_hash_lookup (flinfo->info->keep_hash,
8770 h->root.root.string, FALSE, FALSE) == NULL)
8772 else if ((h->root.type == bfd_link_hash_defined
8773 || h->root.type == bfd_link_hash_defweak)
8774 && ((flinfo->info->strip_discarded
8775 && discarded_section (h->root.u.def.section))
8776 || (h->root.u.def.section->owner != NULL
8777 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
8779 else if ((h->root.type == bfd_link_hash_undefined
8780 || h->root.type == bfd_link_hash_undefweak)
8781 && h->root.u.undef.abfd != NULL
8782 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
8787 /* If we're stripping it, and it's not a dynamic symbol, there's
8788 nothing else to do unless it is a forced local symbol or a
8789 STT_GNU_IFUNC symbol. */
8792 && h->type != STT_GNU_IFUNC
8793 && !h->forced_local)
8797 sym.st_size = h->size;
8798 sym.st_other = h->other;
8799 if (h->forced_local)
8801 sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
8802 /* Turn off visibility on local symbol. */
8803 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
8805 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
8806 else if (h->unique_global && h->def_regular)
8807 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type);
8808 else if (h->root.type == bfd_link_hash_undefweak
8809 || h->root.type == bfd_link_hash_defweak)
8810 sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
8812 sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
8813 sym.st_target_internal = h->target_internal;
8815 switch (h->root.type)
8818 case bfd_link_hash_new:
8819 case bfd_link_hash_warning:
8823 case bfd_link_hash_undefined:
8824 case bfd_link_hash_undefweak:
8825 input_sec = bfd_und_section_ptr;
8826 sym.st_shndx = SHN_UNDEF;
8829 case bfd_link_hash_defined:
8830 case bfd_link_hash_defweak:
8832 input_sec = h->root.u.def.section;
8833 if (input_sec->output_section != NULL)
8835 if (eoinfo->localsyms && flinfo->filesym_count == 1)
8837 bfd_boolean second_pass_sym
8838 = (input_sec->owner == flinfo->output_bfd
8839 || input_sec->owner == NULL
8840 || (input_sec->flags & SEC_LINKER_CREATED) != 0
8841 || (input_sec->owner->flags & BFD_LINKER_CREATED) != 0);
8843 eoinfo->need_second_pass |= second_pass_sym;
8844 if (eoinfo->second_pass != second_pass_sym)
8849 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
8850 input_sec->output_section);
8851 if (sym.st_shndx == SHN_BAD)
8853 (*_bfd_error_handler)
8854 (_("%B: could not find output section %A for input section %A"),
8855 flinfo->output_bfd, input_sec->output_section, input_sec);
8856 bfd_set_error (bfd_error_nonrepresentable_section);
8857 eoinfo->failed = TRUE;
8861 /* ELF symbols in relocatable files are section relative,
8862 but in nonrelocatable files they are virtual
8864 sym.st_value = h->root.u.def.value + input_sec->output_offset;
8865 if (!flinfo->info->relocatable)
8867 sym.st_value += input_sec->output_section->vma;
8868 if (h->type == STT_TLS)
8870 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
8871 if (tls_sec != NULL)
8872 sym.st_value -= tls_sec->vma;
8875 /* The TLS section may have been garbage collected. */
8876 BFD_ASSERT (flinfo->info->gc_sections
8877 && !input_sec->gc_mark);
8884 BFD_ASSERT (input_sec->owner == NULL
8885 || (input_sec->owner->flags & DYNAMIC) != 0);
8886 sym.st_shndx = SHN_UNDEF;
8887 input_sec = bfd_und_section_ptr;
8892 case bfd_link_hash_common:
8893 input_sec = h->root.u.c.p->section;
8894 sym.st_shndx = bed->common_section_index (input_sec);
8895 sym.st_value = 1 << h->root.u.c.p->alignment_power;
8898 case bfd_link_hash_indirect:
8899 /* These symbols are created by symbol versioning. They point
8900 to the decorated version of the name. For example, if the
8901 symbol foo@@GNU_1.2 is the default, which should be used when
8902 foo is used with no version, then we add an indirect symbol
8903 foo which points to foo@@GNU_1.2. We ignore these symbols,
8904 since the indirected symbol is already in the hash table. */
8908 /* Give the processor backend a chance to tweak the symbol value,
8909 and also to finish up anything that needs to be done for this
8910 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
8911 forced local syms when non-shared is due to a historical quirk.
8912 STT_GNU_IFUNC symbol must go through PLT. */
8913 if ((h->type == STT_GNU_IFUNC
8915 && !flinfo->info->relocatable)
8916 || ((h->dynindx != -1
8918 && ((flinfo->info->shared
8919 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8920 || h->root.type != bfd_link_hash_undefweak))
8921 || !h->forced_local)
8922 && elf_hash_table (flinfo->info)->dynamic_sections_created))
8924 if (! ((*bed->elf_backend_finish_dynamic_symbol)
8925 (flinfo->output_bfd, flinfo->info, h, &sym)))
8927 eoinfo->failed = TRUE;
8932 /* If we are marking the symbol as undefined, and there are no
8933 non-weak references to this symbol from a regular object, then
8934 mark the symbol as weak undefined; if there are non-weak
8935 references, mark the symbol as strong. We can't do this earlier,
8936 because it might not be marked as undefined until the
8937 finish_dynamic_symbol routine gets through with it. */
8938 if (sym.st_shndx == SHN_UNDEF
8940 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
8941 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
8944 unsigned int type = ELF_ST_TYPE (sym.st_info);
8946 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
8947 if (type == STT_GNU_IFUNC)
8950 if (h->ref_regular_nonweak)
8951 bindtype = STB_GLOBAL;
8953 bindtype = STB_WEAK;
8954 sym.st_info = ELF_ST_INFO (bindtype, type);
8957 /* If this is a symbol defined in a dynamic library, don't use the
8958 symbol size from the dynamic library. Relinking an executable
8959 against a new library may introduce gratuitous changes in the
8960 executable's symbols if we keep the size. */
8961 if (sym.st_shndx == SHN_UNDEF
8966 /* If a non-weak symbol with non-default visibility is not defined
8967 locally, it is a fatal error. */
8968 if (!flinfo->info->relocatable
8969 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
8970 && ELF_ST_BIND (sym.st_info) != STB_WEAK
8971 && h->root.type == bfd_link_hash_undefined
8976 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
8977 msg = _("%B: protected symbol `%s' isn't defined");
8978 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
8979 msg = _("%B: internal symbol `%s' isn't defined");
8981 msg = _("%B: hidden symbol `%s' isn't defined");
8982 (*_bfd_error_handler) (msg, flinfo->output_bfd, h->root.root.string);
8983 bfd_set_error (bfd_error_bad_value);
8984 eoinfo->failed = TRUE;
8988 /* If this symbol should be put in the .dynsym section, then put it
8989 there now. We already know the symbol index. We also fill in
8990 the entry in the .hash section. */
8991 if (flinfo->dynsym_sec != NULL
8993 && elf_hash_table (flinfo->info)->dynamic_sections_created)
8997 /* Since there is no version information in the dynamic string,
8998 if there is no version info in symbol version section, we will
8999 have a run-time problem. */
9000 if (h->verinfo.verdef == NULL)
9002 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
9004 if (p && p [1] != '\0')
9006 (*_bfd_error_handler)
9007 (_("%B: No symbol version section for versioned symbol `%s'"),
9008 flinfo->output_bfd, h->root.root.string);
9009 eoinfo->failed = TRUE;
9014 sym.st_name = h->dynstr_index;
9015 esym = flinfo->dynsym_sec->contents + h->dynindx * bed->s->sizeof_sym;
9016 if (!check_dynsym (flinfo->output_bfd, &sym))
9018 eoinfo->failed = TRUE;
9021 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
9023 if (flinfo->hash_sec != NULL)
9025 size_t hash_entry_size;
9026 bfd_byte *bucketpos;
9031 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
9032 bucket = h->u.elf_hash_value % bucketcount;
9035 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
9036 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
9037 + (bucket + 2) * hash_entry_size);
9038 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
9039 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
9041 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
9042 ((bfd_byte *) flinfo->hash_sec->contents
9043 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
9046 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
9048 Elf_Internal_Versym iversym;
9049 Elf_External_Versym *eversym;
9051 if (!h->def_regular)
9053 if (h->verinfo.verdef == NULL)
9054 iversym.vs_vers = 0;
9056 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
9060 if (h->verinfo.vertree == NULL)
9061 iversym.vs_vers = 1;
9063 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
9064 if (flinfo->info->create_default_symver)
9069 iversym.vs_vers |= VERSYM_HIDDEN;
9071 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
9072 eversym += h->dynindx;
9073 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
9077 /* If we're stripping it, then it was just a dynamic symbol, and
9078 there's nothing else to do. */
9079 if (strip || (input_sec->flags & SEC_EXCLUDE) != 0)
9082 indx = bfd_get_symcount (flinfo->output_bfd);
9083 ret = elf_link_output_sym (flinfo, h->root.root.string, &sym, input_sec, h);
9086 eoinfo->failed = TRUE;
9091 else if (h->indx == -2)
9097 /* Return TRUE if special handling is done for relocs in SEC against
9098 symbols defined in discarded sections. */
9101 elf_section_ignore_discarded_relocs (asection *sec)
9103 const struct elf_backend_data *bed;
9105 switch (sec->sec_info_type)
9107 case SEC_INFO_TYPE_STABS:
9108 case SEC_INFO_TYPE_EH_FRAME:
9114 bed = get_elf_backend_data (sec->owner);
9115 if (bed->elf_backend_ignore_discarded_relocs != NULL
9116 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
9122 /* Return a mask saying how ld should treat relocations in SEC against
9123 symbols defined in discarded sections. If this function returns
9124 COMPLAIN set, ld will issue a warning message. If this function
9125 returns PRETEND set, and the discarded section was link-once and the
9126 same size as the kept link-once section, ld will pretend that the
9127 symbol was actually defined in the kept section. Otherwise ld will
9128 zero the reloc (at least that is the intent, but some cooperation by
9129 the target dependent code is needed, particularly for REL targets). */
9132 _bfd_elf_default_action_discarded (asection *sec)
9134 if (sec->flags & SEC_DEBUGGING)
9137 if (strcmp (".eh_frame", sec->name) == 0)
9140 if (strcmp (".gcc_except_table", sec->name) == 0)
9143 return COMPLAIN | PRETEND;
9146 /* Find a match between a section and a member of a section group. */
9149 match_group_member (asection *sec, asection *group,
9150 struct bfd_link_info *info)
9152 asection *first = elf_next_in_group (group);
9153 asection *s = first;
9157 if (bfd_elf_match_symbols_in_sections (s, sec, info))
9160 s = elf_next_in_group (s);
9168 /* Check if the kept section of a discarded section SEC can be used
9169 to replace it. Return the replacement if it is OK. Otherwise return
9173 _bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
9177 kept = sec->kept_section;
9180 if ((kept->flags & SEC_GROUP) != 0)
9181 kept = match_group_member (sec, kept, info);
9183 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
9184 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
9186 sec->kept_section = kept;
9191 /* Link an input file into the linker output file. This function
9192 handles all the sections and relocations of the input file at once.
9193 This is so that we only have to read the local symbols once, and
9194 don't have to keep them in memory. */
9197 elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
9199 int (*relocate_section)
9200 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
9201 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
9203 Elf_Internal_Shdr *symtab_hdr;
9206 Elf_Internal_Sym *isymbuf;
9207 Elf_Internal_Sym *isym;
9208 Elf_Internal_Sym *isymend;
9210 asection **ppsection;
9212 const struct elf_backend_data *bed;
9213 struct elf_link_hash_entry **sym_hashes;
9214 bfd_size_type address_size;
9215 bfd_vma r_type_mask;
9217 bfd_boolean have_file_sym = FALSE;
9219 output_bfd = flinfo->output_bfd;
9220 bed = get_elf_backend_data (output_bfd);
9221 relocate_section = bed->elf_backend_relocate_section;
9223 /* If this is a dynamic object, we don't want to do anything here:
9224 we don't want the local symbols, and we don't want the section
9226 if ((input_bfd->flags & DYNAMIC) != 0)
9229 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9230 if (elf_bad_symtab (input_bfd))
9232 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
9237 locsymcount = symtab_hdr->sh_info;
9238 extsymoff = symtab_hdr->sh_info;
9241 /* Read the local symbols. */
9242 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
9243 if (isymbuf == NULL && locsymcount != 0)
9245 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
9246 flinfo->internal_syms,
9247 flinfo->external_syms,
9248 flinfo->locsym_shndx);
9249 if (isymbuf == NULL)
9253 /* Find local symbol sections and adjust values of symbols in
9254 SEC_MERGE sections. Write out those local symbols we know are
9255 going into the output file. */
9256 isymend = isymbuf + locsymcount;
9257 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
9259 isym++, pindex++, ppsection++)
9263 Elf_Internal_Sym osym;
9269 if (elf_bad_symtab (input_bfd))
9271 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
9278 if (isym->st_shndx == SHN_UNDEF)
9279 isec = bfd_und_section_ptr;
9280 else if (isym->st_shndx == SHN_ABS)
9281 isec = bfd_abs_section_ptr;
9282 else if (isym->st_shndx == SHN_COMMON)
9283 isec = bfd_com_section_ptr;
9286 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
9289 /* Don't attempt to output symbols with st_shnx in the
9290 reserved range other than SHN_ABS and SHN_COMMON. */
9294 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
9295 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
9297 _bfd_merged_section_offset (output_bfd, &isec,
9298 elf_section_data (isec)->sec_info,
9304 /* Don't output the first, undefined, symbol. */
9305 if (ppsection == flinfo->sections)
9308 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
9310 /* We never output section symbols. Instead, we use the
9311 section symbol of the corresponding section in the output
9316 /* If we are stripping all symbols, we don't want to output this
9318 if (flinfo->info->strip == strip_all)
9321 /* If we are discarding all local symbols, we don't want to
9322 output this one. If we are generating a relocatable output
9323 file, then some of the local symbols may be required by
9324 relocs; we output them below as we discover that they are
9326 if (flinfo->info->discard == discard_all)
9329 /* If this symbol is defined in a section which we are
9330 discarding, we don't need to keep it. */
9331 if (isym->st_shndx != SHN_UNDEF
9332 && isym->st_shndx < SHN_LORESERVE
9333 && bfd_section_removed_from_list (output_bfd,
9334 isec->output_section))
9337 /* Get the name of the symbol. */
9338 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
9343 /* See if we are discarding symbols with this name. */
9344 if ((flinfo->info->strip == strip_some
9345 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
9347 || (((flinfo->info->discard == discard_sec_merge
9348 && (isec->flags & SEC_MERGE) && !flinfo->info->relocatable)
9349 || flinfo->info->discard == discard_l)
9350 && bfd_is_local_label_name (input_bfd, name)))
9353 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
9355 have_file_sym = TRUE;
9356 flinfo->filesym_count += 1;
9360 /* In the absence of debug info, bfd_find_nearest_line uses
9361 FILE symbols to determine the source file for local
9362 function symbols. Provide a FILE symbol here if input
9363 files lack such, so that their symbols won't be
9364 associated with a previous input file. It's not the
9365 source file, but the best we can do. */
9366 have_file_sym = TRUE;
9367 flinfo->filesym_count += 1;
9368 memset (&osym, 0, sizeof (osym));
9369 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9370 osym.st_shndx = SHN_ABS;
9371 if (!elf_link_output_sym (flinfo, input_bfd->filename, &osym,
9372 bfd_abs_section_ptr, NULL))
9378 /* Adjust the section index for the output file. */
9379 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9380 isec->output_section);
9381 if (osym.st_shndx == SHN_BAD)
9384 /* ELF symbols in relocatable files are section relative, but
9385 in executable files they are virtual addresses. Note that
9386 this code assumes that all ELF sections have an associated
9387 BFD section with a reasonable value for output_offset; below
9388 we assume that they also have a reasonable value for
9389 output_section. Any special sections must be set up to meet
9390 these requirements. */
9391 osym.st_value += isec->output_offset;
9392 if (!flinfo->info->relocatable)
9394 osym.st_value += isec->output_section->vma;
9395 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
9397 /* STT_TLS symbols are relative to PT_TLS segment base. */
9398 BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
9399 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
9403 indx = bfd_get_symcount (output_bfd);
9404 ret = elf_link_output_sym (flinfo, name, &osym, isec, NULL);
9411 if (bed->s->arch_size == 32)
9419 r_type_mask = 0xffffffff;
9424 /* Relocate the contents of each section. */
9425 sym_hashes = elf_sym_hashes (input_bfd);
9426 for (o = input_bfd->sections; o != NULL; o = o->next)
9430 if (! o->linker_mark)
9432 /* This section was omitted from the link. */
9436 if (flinfo->info->relocatable
9437 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
9439 /* Deal with the group signature symbol. */
9440 struct bfd_elf_section_data *sec_data = elf_section_data (o);
9441 unsigned long symndx = sec_data->this_hdr.sh_info;
9442 asection *osec = o->output_section;
9444 if (symndx >= locsymcount
9445 || (elf_bad_symtab (input_bfd)
9446 && flinfo->sections[symndx] == NULL))
9448 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
9449 while (h->root.type == bfd_link_hash_indirect
9450 || h->root.type == bfd_link_hash_warning)
9451 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9452 /* Arrange for symbol to be output. */
9454 elf_section_data (osec)->this_hdr.sh_info = -2;
9456 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
9458 /* We'll use the output section target_index. */
9459 asection *sec = flinfo->sections[symndx]->output_section;
9460 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
9464 if (flinfo->indices[symndx] == -1)
9466 /* Otherwise output the local symbol now. */
9467 Elf_Internal_Sym sym = isymbuf[symndx];
9468 asection *sec = flinfo->sections[symndx]->output_section;
9473 name = bfd_elf_string_from_elf_section (input_bfd,
9474 symtab_hdr->sh_link,
9479 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9481 if (sym.st_shndx == SHN_BAD)
9484 sym.st_value += o->output_offset;
9486 indx = bfd_get_symcount (output_bfd);
9487 ret = elf_link_output_sym (flinfo, name, &sym, o, NULL);
9491 flinfo->indices[symndx] = indx;
9495 elf_section_data (osec)->this_hdr.sh_info
9496 = flinfo->indices[symndx];
9500 if ((o->flags & SEC_HAS_CONTENTS) == 0
9501 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
9504 if ((o->flags & SEC_LINKER_CREATED) != 0)
9506 /* Section was created by _bfd_elf_link_create_dynamic_sections
9511 /* Get the contents of the section. They have been cached by a
9512 relaxation routine. Note that o is a section in an input
9513 file, so the contents field will not have been set by any of
9514 the routines which work on output files. */
9515 if (elf_section_data (o)->this_hdr.contents != NULL)
9517 contents = elf_section_data (o)->this_hdr.contents;
9518 if (bed->caches_rawsize
9520 && o->rawsize < o->size)
9522 memcpy (flinfo->contents, contents, o->rawsize);
9523 contents = flinfo->contents;
9528 contents = flinfo->contents;
9529 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
9533 if ((o->flags & SEC_RELOC) != 0)
9535 Elf_Internal_Rela *internal_relocs;
9536 Elf_Internal_Rela *rel, *relend;
9537 int action_discarded;
9540 /* Get the swapped relocs. */
9542 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
9543 flinfo->internal_relocs, FALSE);
9544 if (internal_relocs == NULL
9545 && o->reloc_count > 0)
9548 /* We need to reverse-copy input .ctors/.dtors sections if
9549 they are placed in .init_array/.finit_array for output. */
9550 if (o->size > address_size
9551 && ((strncmp (o->name, ".ctors", 6) == 0
9552 && strcmp (o->output_section->name,
9553 ".init_array") == 0)
9554 || (strncmp (o->name, ".dtors", 6) == 0
9555 && strcmp (o->output_section->name,
9556 ".fini_array") == 0))
9557 && (o->name[6] == 0 || o->name[6] == '.'))
9559 if (o->size != o->reloc_count * address_size)
9561 (*_bfd_error_handler)
9562 (_("error: %B: size of section %A is not "
9563 "multiple of address size"),
9565 bfd_set_error (bfd_error_on_input);
9568 o->flags |= SEC_ELF_REVERSE_COPY;
9571 action_discarded = -1;
9572 if (!elf_section_ignore_discarded_relocs (o))
9573 action_discarded = (*bed->action_discarded) (o);
9575 /* Run through the relocs evaluating complex reloc symbols and
9576 looking for relocs against symbols from discarded sections
9577 or section symbols from removed link-once sections.
9578 Complain about relocs against discarded sections. Zero
9579 relocs against removed link-once sections. */
9581 rel = internal_relocs;
9582 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
9583 for ( ; rel < relend; rel++)
9585 unsigned long r_symndx = rel->r_info >> r_sym_shift;
9586 unsigned int s_type;
9587 asection **ps, *sec;
9588 struct elf_link_hash_entry *h = NULL;
9589 const char *sym_name;
9591 if (r_symndx == STN_UNDEF)
9594 if (r_symndx >= locsymcount
9595 || (elf_bad_symtab (input_bfd)
9596 && flinfo->sections[r_symndx] == NULL))
9598 h = sym_hashes[r_symndx - extsymoff];
9600 /* Badly formatted input files can contain relocs that
9601 reference non-existant symbols. Check here so that
9602 we do not seg fault. */
9607 sprintf_vma (buffer, rel->r_info);
9608 (*_bfd_error_handler)
9609 (_("error: %B contains a reloc (0x%s) for section %A "
9610 "that references a non-existent global symbol"),
9611 input_bfd, o, buffer);
9612 bfd_set_error (bfd_error_bad_value);
9616 while (h->root.type == bfd_link_hash_indirect
9617 || h->root.type == bfd_link_hash_warning)
9618 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9623 if (h->root.type == bfd_link_hash_defined
9624 || h->root.type == bfd_link_hash_defweak)
9625 ps = &h->root.u.def.section;
9627 sym_name = h->root.root.string;
9631 Elf_Internal_Sym *sym = isymbuf + r_symndx;
9633 s_type = ELF_ST_TYPE (sym->st_info);
9634 ps = &flinfo->sections[r_symndx];
9635 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
9639 if ((s_type == STT_RELC || s_type == STT_SRELC)
9640 && !flinfo->info->relocatable)
9643 bfd_vma dot = (rel->r_offset
9644 + o->output_offset + o->output_section->vma);
9646 printf ("Encountered a complex symbol!");
9647 printf (" (input_bfd %s, section %s, reloc %ld\n",
9648 input_bfd->filename, o->name,
9649 (long) (rel - internal_relocs));
9650 printf (" symbol: idx %8.8lx, name %s\n",
9651 r_symndx, sym_name);
9652 printf (" reloc : info %8.8lx, addr %8.8lx\n",
9653 (unsigned long) rel->r_info,
9654 (unsigned long) rel->r_offset);
9656 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
9657 isymbuf, locsymcount, s_type == STT_SRELC))
9660 /* Symbol evaluated OK. Update to absolute value. */
9661 set_symbol_value (input_bfd, isymbuf, locsymcount,
9666 if (action_discarded != -1 && ps != NULL)
9668 /* Complain if the definition comes from a
9669 discarded section. */
9670 if ((sec = *ps) != NULL && discarded_section (sec))
9672 BFD_ASSERT (r_symndx != STN_UNDEF);
9673 if (action_discarded & COMPLAIN)
9674 (*flinfo->info->callbacks->einfo)
9675 (_("%X`%s' referenced in section `%A' of %B: "
9676 "defined in discarded section `%A' of %B\n"),
9677 sym_name, o, input_bfd, sec, sec->owner);
9679 /* Try to do the best we can to support buggy old
9680 versions of gcc. Pretend that the symbol is
9681 really defined in the kept linkonce section.
9682 FIXME: This is quite broken. Modifying the
9683 symbol here means we will be changing all later
9684 uses of the symbol, not just in this section. */
9685 if (action_discarded & PRETEND)
9689 kept = _bfd_elf_check_kept_section (sec,
9701 /* Relocate the section by invoking a back end routine.
9703 The back end routine is responsible for adjusting the
9704 section contents as necessary, and (if using Rela relocs
9705 and generating a relocatable output file) adjusting the
9706 reloc addend as necessary.
9708 The back end routine does not have to worry about setting
9709 the reloc address or the reloc symbol index.
9711 The back end routine is given a pointer to the swapped in
9712 internal symbols, and can access the hash table entries
9713 for the external symbols via elf_sym_hashes (input_bfd).
9715 When generating relocatable output, the back end routine
9716 must handle STB_LOCAL/STT_SECTION symbols specially. The
9717 output symbol is going to be a section symbol
9718 corresponding to the output section, which will require
9719 the addend to be adjusted. */
9721 ret = (*relocate_section) (output_bfd, flinfo->info,
9722 input_bfd, o, contents,
9730 || flinfo->info->relocatable
9731 || flinfo->info->emitrelocations)
9733 Elf_Internal_Rela *irela;
9734 Elf_Internal_Rela *irelaend, *irelamid;
9735 bfd_vma last_offset;
9736 struct elf_link_hash_entry **rel_hash;
9737 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
9738 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
9739 unsigned int next_erel;
9740 bfd_boolean rela_normal;
9741 struct bfd_elf_section_data *esdi, *esdo;
9743 esdi = elf_section_data (o);
9744 esdo = elf_section_data (o->output_section);
9745 rela_normal = FALSE;
9747 /* Adjust the reloc addresses and symbol indices. */
9749 irela = internal_relocs;
9750 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
9751 rel_hash = esdo->rel.hashes + esdo->rel.count;
9752 /* We start processing the REL relocs, if any. When we reach
9753 IRELAMID in the loop, we switch to the RELA relocs. */
9755 if (esdi->rel.hdr != NULL)
9756 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
9757 * bed->s->int_rels_per_ext_rel);
9758 rel_hash_list = rel_hash;
9759 rela_hash_list = NULL;
9760 last_offset = o->output_offset;
9761 if (!flinfo->info->relocatable)
9762 last_offset += o->output_section->vma;
9763 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
9765 unsigned long r_symndx;
9767 Elf_Internal_Sym sym;
9769 if (next_erel == bed->s->int_rels_per_ext_rel)
9775 if (irela == irelamid)
9777 rel_hash = esdo->rela.hashes + esdo->rela.count;
9778 rela_hash_list = rel_hash;
9779 rela_normal = bed->rela_normal;
9782 irela->r_offset = _bfd_elf_section_offset (output_bfd,
9785 if (irela->r_offset >= (bfd_vma) -2)
9787 /* This is a reloc for a deleted entry or somesuch.
9788 Turn it into an R_*_NONE reloc, at the same
9789 offset as the last reloc. elf_eh_frame.c and
9790 bfd_elf_discard_info rely on reloc offsets
9792 irela->r_offset = last_offset;
9794 irela->r_addend = 0;
9798 irela->r_offset += o->output_offset;
9800 /* Relocs in an executable have to be virtual addresses. */
9801 if (!flinfo->info->relocatable)
9802 irela->r_offset += o->output_section->vma;
9804 last_offset = irela->r_offset;
9806 r_symndx = irela->r_info >> r_sym_shift;
9807 if (r_symndx == STN_UNDEF)
9810 if (r_symndx >= locsymcount
9811 || (elf_bad_symtab (input_bfd)
9812 && flinfo->sections[r_symndx] == NULL))
9814 struct elf_link_hash_entry *rh;
9817 /* This is a reloc against a global symbol. We
9818 have not yet output all the local symbols, so
9819 we do not know the symbol index of any global
9820 symbol. We set the rel_hash entry for this
9821 reloc to point to the global hash table entry
9822 for this symbol. The symbol index is then
9823 set at the end of bfd_elf_final_link. */
9824 indx = r_symndx - extsymoff;
9825 rh = elf_sym_hashes (input_bfd)[indx];
9826 while (rh->root.type == bfd_link_hash_indirect
9827 || rh->root.type == bfd_link_hash_warning)
9828 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
9830 /* Setting the index to -2 tells
9831 elf_link_output_extsym that this symbol is
9833 BFD_ASSERT (rh->indx < 0);
9841 /* This is a reloc against a local symbol. */
9844 sym = isymbuf[r_symndx];
9845 sec = flinfo->sections[r_symndx];
9846 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
9848 /* I suppose the backend ought to fill in the
9849 section of any STT_SECTION symbol against a
9850 processor specific section. */
9851 r_symndx = STN_UNDEF;
9852 if (bfd_is_abs_section (sec))
9854 else if (sec == NULL || sec->owner == NULL)
9856 bfd_set_error (bfd_error_bad_value);
9861 asection *osec = sec->output_section;
9863 /* If we have discarded a section, the output
9864 section will be the absolute section. In
9865 case of discarded SEC_MERGE sections, use
9866 the kept section. relocate_section should
9867 have already handled discarded linkonce
9869 if (bfd_is_abs_section (osec)
9870 && sec->kept_section != NULL
9871 && sec->kept_section->output_section != NULL)
9873 osec = sec->kept_section->output_section;
9874 irela->r_addend -= osec->vma;
9877 if (!bfd_is_abs_section (osec))
9879 r_symndx = osec->target_index;
9880 if (r_symndx == STN_UNDEF)
9882 irela->r_addend += osec->vma;
9883 osec = _bfd_nearby_section (output_bfd, osec,
9885 irela->r_addend -= osec->vma;
9886 r_symndx = osec->target_index;
9891 /* Adjust the addend according to where the
9892 section winds up in the output section. */
9894 irela->r_addend += sec->output_offset;
9898 if (flinfo->indices[r_symndx] == -1)
9900 unsigned long shlink;
9905 if (flinfo->info->strip == strip_all)
9907 /* You can't do ld -r -s. */
9908 bfd_set_error (bfd_error_invalid_operation);
9912 /* This symbol was skipped earlier, but
9913 since it is needed by a reloc, we
9914 must output it now. */
9915 shlink = symtab_hdr->sh_link;
9916 name = (bfd_elf_string_from_elf_section
9917 (input_bfd, shlink, sym.st_name));
9921 osec = sec->output_section;
9923 _bfd_elf_section_from_bfd_section (output_bfd,
9925 if (sym.st_shndx == SHN_BAD)
9928 sym.st_value += sec->output_offset;
9929 if (!flinfo->info->relocatable)
9931 sym.st_value += osec->vma;
9932 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
9934 /* STT_TLS symbols are relative to PT_TLS
9936 BFD_ASSERT (elf_hash_table (flinfo->info)
9938 sym.st_value -= (elf_hash_table (flinfo->info)
9943 indx = bfd_get_symcount (output_bfd);
9944 ret = elf_link_output_sym (flinfo, name, &sym, sec,
9949 flinfo->indices[r_symndx] = indx;
9954 r_symndx = flinfo->indices[r_symndx];
9957 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
9958 | (irela->r_info & r_type_mask));
9961 /* Swap out the relocs. */
9962 input_rel_hdr = esdi->rel.hdr;
9963 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
9965 if (!bed->elf_backend_emit_relocs (output_bfd, o,
9970 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
9971 * bed->s->int_rels_per_ext_rel);
9972 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
9975 input_rela_hdr = esdi->rela.hdr;
9976 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
9978 if (!bed->elf_backend_emit_relocs (output_bfd, o,
9987 /* Write out the modified section contents. */
9988 if (bed->elf_backend_write_section
9989 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
9992 /* Section written out. */
9994 else switch (o->sec_info_type)
9996 case SEC_INFO_TYPE_STABS:
9997 if (! (_bfd_write_section_stabs
9999 &elf_hash_table (flinfo->info)->stab_info,
10000 o, &elf_section_data (o)->sec_info, contents)))
10003 case SEC_INFO_TYPE_MERGE:
10004 if (! _bfd_write_merged_section (output_bfd, o,
10005 elf_section_data (o)->sec_info))
10008 case SEC_INFO_TYPE_EH_FRAME:
10010 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
10017 /* FIXME: octets_per_byte. */
10018 if (! (o->flags & SEC_EXCLUDE))
10020 file_ptr offset = (file_ptr) o->output_offset;
10021 bfd_size_type todo = o->size;
10022 if ((o->flags & SEC_ELF_REVERSE_COPY))
10024 /* Reverse-copy input section to output. */
10027 todo -= address_size;
10028 if (! bfd_set_section_contents (output_bfd,
10036 offset += address_size;
10040 else if (! bfd_set_section_contents (output_bfd,
10054 /* Generate a reloc when linking an ELF file. This is a reloc
10055 requested by the linker, and does not come from any input file. This
10056 is used to build constructor and destructor tables when linking
10060 elf_reloc_link_order (bfd *output_bfd,
10061 struct bfd_link_info *info,
10062 asection *output_section,
10063 struct bfd_link_order *link_order)
10065 reloc_howto_type *howto;
10069 struct bfd_elf_section_reloc_data *reldata;
10070 struct elf_link_hash_entry **rel_hash_ptr;
10071 Elf_Internal_Shdr *rel_hdr;
10072 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10073 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
10076 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
10078 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
10081 bfd_set_error (bfd_error_bad_value);
10085 addend = link_order->u.reloc.p->addend;
10088 reldata = &esdo->rel;
10089 else if (esdo->rela.hdr)
10090 reldata = &esdo->rela;
10097 /* Figure out the symbol index. */
10098 rel_hash_ptr = reldata->hashes + reldata->count;
10099 if (link_order->type == bfd_section_reloc_link_order)
10101 indx = link_order->u.reloc.p->u.section->target_index;
10102 BFD_ASSERT (indx != 0);
10103 *rel_hash_ptr = NULL;
10107 struct elf_link_hash_entry *h;
10109 /* Treat a reloc against a defined symbol as though it were
10110 actually against the section. */
10111 h = ((struct elf_link_hash_entry *)
10112 bfd_wrapped_link_hash_lookup (output_bfd, info,
10113 link_order->u.reloc.p->u.name,
10114 FALSE, FALSE, TRUE));
10116 && (h->root.type == bfd_link_hash_defined
10117 || h->root.type == bfd_link_hash_defweak))
10121 section = h->root.u.def.section;
10122 indx = section->output_section->target_index;
10123 *rel_hash_ptr = NULL;
10124 /* It seems that we ought to add the symbol value to the
10125 addend here, but in practice it has already been added
10126 because it was passed to constructor_callback. */
10127 addend += section->output_section->vma + section->output_offset;
10129 else if (h != NULL)
10131 /* Setting the index to -2 tells elf_link_output_extsym that
10132 this symbol is used by a reloc. */
10139 if (! ((*info->callbacks->unattached_reloc)
10140 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0)))
10146 /* If this is an inplace reloc, we must write the addend into the
10148 if (howto->partial_inplace && addend != 0)
10150 bfd_size_type size;
10151 bfd_reloc_status_type rstat;
10154 const char *sym_name;
10156 size = (bfd_size_type) bfd_get_reloc_size (howto);
10157 buf = (bfd_byte *) bfd_zmalloc (size);
10160 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
10167 case bfd_reloc_outofrange:
10170 case bfd_reloc_overflow:
10171 if (link_order->type == bfd_section_reloc_link_order)
10172 sym_name = bfd_section_name (output_bfd,
10173 link_order->u.reloc.p->u.section);
10175 sym_name = link_order->u.reloc.p->u.name;
10176 if (! ((*info->callbacks->reloc_overflow)
10177 (info, NULL, sym_name, howto->name, addend, NULL,
10178 NULL, (bfd_vma) 0)))
10185 ok = bfd_set_section_contents (output_bfd, output_section, buf,
10186 link_order->offset, size);
10192 /* The address of a reloc is relative to the section in a
10193 relocatable file, and is a virtual address in an executable
10195 offset = link_order->offset;
10196 if (! info->relocatable)
10197 offset += output_section->vma;
10199 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
10201 irel[i].r_offset = offset;
10202 irel[i].r_info = 0;
10203 irel[i].r_addend = 0;
10205 if (bed->s->arch_size == 32)
10206 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
10208 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
10210 rel_hdr = reldata->hdr;
10211 erel = rel_hdr->contents;
10212 if (rel_hdr->sh_type == SHT_REL)
10214 erel += reldata->count * bed->s->sizeof_rel;
10215 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
10219 irel[0].r_addend = addend;
10220 erel += reldata->count * bed->s->sizeof_rela;
10221 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
10230 /* Get the output vma of the section pointed to by the sh_link field. */
10233 elf_get_linked_section_vma (struct bfd_link_order *p)
10235 Elf_Internal_Shdr **elf_shdrp;
10239 s = p->u.indirect.section;
10240 elf_shdrp = elf_elfsections (s->owner);
10241 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
10242 elfsec = elf_shdrp[elfsec]->sh_link;
10244 The Intel C compiler generates SHT_IA_64_UNWIND with
10245 SHF_LINK_ORDER. But it doesn't set the sh_link or
10246 sh_info fields. Hence we could get the situation
10247 where elfsec is 0. */
10250 const struct elf_backend_data *bed
10251 = get_elf_backend_data (s->owner);
10252 if (bed->link_order_error_handler)
10253 bed->link_order_error_handler
10254 (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
10259 s = elf_shdrp[elfsec]->bfd_section;
10260 return s->output_section->vma + s->output_offset;
10265 /* Compare two sections based on the locations of the sections they are
10266 linked to. Used by elf_fixup_link_order. */
10269 compare_link_order (const void * a, const void * b)
10274 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
10275 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
10278 return apos > bpos;
10282 /* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
10283 order as their linked sections. Returns false if this could not be done
10284 because an output section includes both ordered and unordered
10285 sections. Ideally we'd do this in the linker proper. */
10288 elf_fixup_link_order (bfd *abfd, asection *o)
10290 int seen_linkorder;
10293 struct bfd_link_order *p;
10295 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10297 struct bfd_link_order **sections;
10298 asection *s, *other_sec, *linkorder_sec;
10302 linkorder_sec = NULL;
10304 seen_linkorder = 0;
10305 for (p = o->map_head.link_order; p != NULL; p = p->next)
10307 if (p->type == bfd_indirect_link_order)
10309 s = p->u.indirect.section;
10311 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10312 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
10313 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
10314 && elfsec < elf_numsections (sub)
10315 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
10316 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
10330 if (seen_other && seen_linkorder)
10332 if (other_sec && linkorder_sec)
10333 (*_bfd_error_handler) (_("%A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections"),
10335 linkorder_sec->owner, other_sec,
10338 (*_bfd_error_handler) (_("%A has both ordered and unordered sections"),
10340 bfd_set_error (bfd_error_bad_value);
10345 if (!seen_linkorder)
10348 sections = (struct bfd_link_order **)
10349 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
10350 if (sections == NULL)
10352 seen_linkorder = 0;
10354 for (p = o->map_head.link_order; p != NULL; p = p->next)
10356 sections[seen_linkorder++] = p;
10358 /* Sort the input sections in the order of their linked section. */
10359 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
10360 compare_link_order);
10362 /* Change the offsets of the sections. */
10364 for (n = 0; n < seen_linkorder; n++)
10366 s = sections[n]->u.indirect.section;
10367 offset &= ~(bfd_vma) 0 << s->alignment_power;
10368 s->output_offset = offset;
10369 sections[n]->offset = offset;
10370 /* FIXME: octets_per_byte. */
10371 offset += sections[n]->size;
10379 elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
10383 if (flinfo->symstrtab != NULL)
10384 _bfd_stringtab_free (flinfo->symstrtab);
10385 if (flinfo->contents != NULL)
10386 free (flinfo->contents);
10387 if (flinfo->external_relocs != NULL)
10388 free (flinfo->external_relocs);
10389 if (flinfo->internal_relocs != NULL)
10390 free (flinfo->internal_relocs);
10391 if (flinfo->external_syms != NULL)
10392 free (flinfo->external_syms);
10393 if (flinfo->locsym_shndx != NULL)
10394 free (flinfo->locsym_shndx);
10395 if (flinfo->internal_syms != NULL)
10396 free (flinfo->internal_syms);
10397 if (flinfo->indices != NULL)
10398 free (flinfo->indices);
10399 if (flinfo->sections != NULL)
10400 free (flinfo->sections);
10401 if (flinfo->symbuf != NULL)
10402 free (flinfo->symbuf);
10403 if (flinfo->symshndxbuf != NULL)
10404 free (flinfo->symshndxbuf);
10405 for (o = obfd->sections; o != NULL; o = o->next)
10407 struct bfd_elf_section_data *esdo = elf_section_data (o);
10408 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
10409 free (esdo->rel.hashes);
10410 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
10411 free (esdo->rela.hashes);
10415 /* Do the final step of an ELF link. */
10418 bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
10420 bfd_boolean dynamic;
10421 bfd_boolean emit_relocs;
10423 struct elf_final_link_info flinfo;
10425 struct bfd_link_order *p;
10427 bfd_size_type max_contents_size;
10428 bfd_size_type max_external_reloc_size;
10429 bfd_size_type max_internal_reloc_count;
10430 bfd_size_type max_sym_count;
10431 bfd_size_type max_sym_shndx_count;
10433 Elf_Internal_Sym elfsym;
10435 Elf_Internal_Shdr *symtab_hdr;
10436 Elf_Internal_Shdr *symtab_shndx_hdr;
10437 Elf_Internal_Shdr *symstrtab_hdr;
10438 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10439 struct elf_outext_info eoinfo;
10440 bfd_boolean merged;
10441 size_t relativecount = 0;
10442 asection *reldyn = 0;
10444 asection *attr_section = NULL;
10445 bfd_vma attr_size = 0;
10446 const char *std_attrs_section;
10448 if (! is_elf_hash_table (info->hash))
10452 abfd->flags |= DYNAMIC;
10454 dynamic = elf_hash_table (info)->dynamic_sections_created;
10455 dynobj = elf_hash_table (info)->dynobj;
10457 emit_relocs = (info->relocatable
10458 || info->emitrelocations);
10460 flinfo.info = info;
10461 flinfo.output_bfd = abfd;
10462 flinfo.symstrtab = _bfd_elf_stringtab_init ();
10463 if (flinfo.symstrtab == NULL)
10468 flinfo.dynsym_sec = NULL;
10469 flinfo.hash_sec = NULL;
10470 flinfo.symver_sec = NULL;
10474 flinfo.dynsym_sec = bfd_get_linker_section (dynobj, ".dynsym");
10475 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
10476 /* Note that dynsym_sec can be NULL (on VMS). */
10477 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
10478 /* Note that it is OK if symver_sec is NULL. */
10481 flinfo.contents = NULL;
10482 flinfo.external_relocs = NULL;
10483 flinfo.internal_relocs = NULL;
10484 flinfo.external_syms = NULL;
10485 flinfo.locsym_shndx = NULL;
10486 flinfo.internal_syms = NULL;
10487 flinfo.indices = NULL;
10488 flinfo.sections = NULL;
10489 flinfo.symbuf = NULL;
10490 flinfo.symshndxbuf = NULL;
10491 flinfo.symbuf_count = 0;
10492 flinfo.shndxbuf_size = 0;
10493 flinfo.filesym_count = 0;
10495 /* The object attributes have been merged. Remove the input
10496 sections from the link, and set the contents of the output
10498 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
10499 for (o = abfd->sections; o != NULL; o = o->next)
10501 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
10502 || strcmp (o->name, ".gnu.attributes") == 0)
10504 for (p = o->map_head.link_order; p != NULL; p = p->next)
10506 asection *input_section;
10508 if (p->type != bfd_indirect_link_order)
10510 input_section = p->u.indirect.section;
10511 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10512 elf_link_input_bfd ignores this section. */
10513 input_section->flags &= ~SEC_HAS_CONTENTS;
10516 attr_size = bfd_elf_obj_attr_size (abfd);
10519 bfd_set_section_size (abfd, o, attr_size);
10521 /* Skip this section later on. */
10522 o->map_head.link_order = NULL;
10525 o->flags |= SEC_EXCLUDE;
10529 /* Count up the number of relocations we will output for each output
10530 section, so that we know the sizes of the reloc sections. We
10531 also figure out some maximum sizes. */
10532 max_contents_size = 0;
10533 max_external_reloc_size = 0;
10534 max_internal_reloc_count = 0;
10536 max_sym_shndx_count = 0;
10538 for (o = abfd->sections; o != NULL; o = o->next)
10540 struct bfd_elf_section_data *esdo = elf_section_data (o);
10541 o->reloc_count = 0;
10543 for (p = o->map_head.link_order; p != NULL; p = p->next)
10545 unsigned int reloc_count = 0;
10546 struct bfd_elf_section_data *esdi = NULL;
10548 if (p->type == bfd_section_reloc_link_order
10549 || p->type == bfd_symbol_reloc_link_order)
10551 else if (p->type == bfd_indirect_link_order)
10555 sec = p->u.indirect.section;
10556 esdi = elf_section_data (sec);
10558 /* Mark all sections which are to be included in the
10559 link. This will normally be every section. We need
10560 to do this so that we can identify any sections which
10561 the linker has decided to not include. */
10562 sec->linker_mark = TRUE;
10564 if (sec->flags & SEC_MERGE)
10567 if (esdo->this_hdr.sh_type == SHT_REL
10568 || esdo->this_hdr.sh_type == SHT_RELA)
10569 /* Some backends use reloc_count in relocation sections
10570 to count particular types of relocs. Of course,
10571 reloc sections themselves can't have relocations. */
10573 else if (info->relocatable || info->emitrelocations)
10574 reloc_count = sec->reloc_count;
10575 else if (bed->elf_backend_count_relocs)
10576 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
10578 if (sec->rawsize > max_contents_size)
10579 max_contents_size = sec->rawsize;
10580 if (sec->size > max_contents_size)
10581 max_contents_size = sec->size;
10583 /* We are interested in just local symbols, not all
10585 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
10586 && (sec->owner->flags & DYNAMIC) == 0)
10590 if (elf_bad_symtab (sec->owner))
10591 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
10592 / bed->s->sizeof_sym);
10594 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
10596 if (sym_count > max_sym_count)
10597 max_sym_count = sym_count;
10599 if (sym_count > max_sym_shndx_count
10600 && elf_symtab_shndx (sec->owner) != 0)
10601 max_sym_shndx_count = sym_count;
10603 if ((sec->flags & SEC_RELOC) != 0)
10605 size_t ext_size = 0;
10607 if (esdi->rel.hdr != NULL)
10608 ext_size = esdi->rel.hdr->sh_size;
10609 if (esdi->rela.hdr != NULL)
10610 ext_size += esdi->rela.hdr->sh_size;
10612 if (ext_size > max_external_reloc_size)
10613 max_external_reloc_size = ext_size;
10614 if (sec->reloc_count > max_internal_reloc_count)
10615 max_internal_reloc_count = sec->reloc_count;
10620 if (reloc_count == 0)
10623 o->reloc_count += reloc_count;
10625 if (p->type == bfd_indirect_link_order
10626 && (info->relocatable || info->emitrelocations))
10629 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
10630 if (esdi->rela.hdr)
10631 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
10636 esdo->rela.count += reloc_count;
10638 esdo->rel.count += reloc_count;
10642 if (o->reloc_count > 0)
10643 o->flags |= SEC_RELOC;
10646 /* Explicitly clear the SEC_RELOC flag. The linker tends to
10647 set it (this is probably a bug) and if it is set
10648 assign_section_numbers will create a reloc section. */
10649 o->flags &=~ SEC_RELOC;
10652 /* If the SEC_ALLOC flag is not set, force the section VMA to
10653 zero. This is done in elf_fake_sections as well, but forcing
10654 the VMA to 0 here will ensure that relocs against these
10655 sections are handled correctly. */
10656 if ((o->flags & SEC_ALLOC) == 0
10657 && ! o->user_set_vma)
10661 if (! info->relocatable && merged)
10662 elf_link_hash_traverse (elf_hash_table (info),
10663 _bfd_elf_link_sec_merge_syms, abfd);
10665 /* Figure out the file positions for everything but the symbol table
10666 and the relocs. We set symcount to force assign_section_numbers
10667 to create a symbol table. */
10668 bfd_get_symcount (abfd) = info->strip == strip_all ? 0 : 1;
10669 BFD_ASSERT (! abfd->output_has_begun);
10670 if (! _bfd_elf_compute_section_file_positions (abfd, info))
10673 /* Set sizes, and assign file positions for reloc sections. */
10674 for (o = abfd->sections; o != NULL; o = o->next)
10676 struct bfd_elf_section_data *esdo = elf_section_data (o);
10677 if ((o->flags & SEC_RELOC) != 0)
10680 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
10684 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
10688 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
10689 to count upwards while actually outputting the relocations. */
10690 esdo->rel.count = 0;
10691 esdo->rela.count = 0;
10694 /* We have now assigned file positions for all the sections except
10695 .symtab, .strtab, and non-loaded reloc sections. We start the
10696 .symtab section at the current file position, and write directly
10697 to it. We build the .strtab section in memory. */
10698 bfd_get_symcount (abfd) = 0;
10699 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
10700 /* sh_name is set in prep_headers. */
10701 symtab_hdr->sh_type = SHT_SYMTAB;
10702 /* sh_flags, sh_addr and sh_size all start off zero. */
10703 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
10704 /* sh_link is set in assign_section_numbers. */
10705 /* sh_info is set below. */
10706 /* sh_offset is set just below. */
10707 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
10709 off = elf_next_file_pos (abfd);
10710 off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
10712 /* Note that at this point elf_next_file_pos (abfd) is
10713 incorrect. We do not yet know the size of the .symtab section.
10714 We correct next_file_pos below, after we do know the size. */
10716 /* Allocate a buffer to hold swapped out symbols. This is to avoid
10717 continuously seeking to the right position in the file. */
10718 if (! info->keep_memory || max_sym_count < 20)
10719 flinfo.symbuf_size = 20;
10721 flinfo.symbuf_size = max_sym_count;
10722 amt = flinfo.symbuf_size;
10723 amt *= bed->s->sizeof_sym;
10724 flinfo.symbuf = (bfd_byte *) bfd_malloc (amt);
10725 if (flinfo.symbuf == NULL)
10727 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
10729 /* Wild guess at number of output symbols. realloc'd as needed. */
10730 amt = 2 * max_sym_count + elf_numsections (abfd) + 1000;
10731 flinfo.shndxbuf_size = amt;
10732 amt *= sizeof (Elf_External_Sym_Shndx);
10733 flinfo.symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
10734 if (flinfo.symshndxbuf == NULL)
10738 /* Start writing out the symbol table. The first symbol is always a
10740 if (info->strip != strip_all
10743 elfsym.st_value = 0;
10744 elfsym.st_size = 0;
10745 elfsym.st_info = 0;
10746 elfsym.st_other = 0;
10747 elfsym.st_shndx = SHN_UNDEF;
10748 elfsym.st_target_internal = 0;
10749 if (elf_link_output_sym (&flinfo, NULL, &elfsym, bfd_und_section_ptr,
10754 /* Output a symbol for each section. We output these even if we are
10755 discarding local symbols, since they are used for relocs. These
10756 symbols have no names. We store the index of each one in the
10757 index field of the section, so that we can find it again when
10758 outputting relocs. */
10759 if (info->strip != strip_all
10762 elfsym.st_size = 0;
10763 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
10764 elfsym.st_other = 0;
10765 elfsym.st_value = 0;
10766 elfsym.st_target_internal = 0;
10767 for (i = 1; i < elf_numsections (abfd); i++)
10769 o = bfd_section_from_elf_index (abfd, i);
10772 o->target_index = bfd_get_symcount (abfd);
10773 elfsym.st_shndx = i;
10774 if (!info->relocatable)
10775 elfsym.st_value = o->vma;
10776 if (elf_link_output_sym (&flinfo, NULL, &elfsym, o, NULL) != 1)
10782 /* Allocate some memory to hold information read in from the input
10784 if (max_contents_size != 0)
10786 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
10787 if (flinfo.contents == NULL)
10791 if (max_external_reloc_size != 0)
10793 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
10794 if (flinfo.external_relocs == NULL)
10798 if (max_internal_reloc_count != 0)
10800 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
10801 amt *= sizeof (Elf_Internal_Rela);
10802 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
10803 if (flinfo.internal_relocs == NULL)
10807 if (max_sym_count != 0)
10809 amt = max_sym_count * bed->s->sizeof_sym;
10810 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
10811 if (flinfo.external_syms == NULL)
10814 amt = max_sym_count * sizeof (Elf_Internal_Sym);
10815 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
10816 if (flinfo.internal_syms == NULL)
10819 amt = max_sym_count * sizeof (long);
10820 flinfo.indices = (long int *) bfd_malloc (amt);
10821 if (flinfo.indices == NULL)
10824 amt = max_sym_count * sizeof (asection *);
10825 flinfo.sections = (asection **) bfd_malloc (amt);
10826 if (flinfo.sections == NULL)
10830 if (max_sym_shndx_count != 0)
10832 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
10833 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
10834 if (flinfo.locsym_shndx == NULL)
10838 if (elf_hash_table (info)->tls_sec)
10840 bfd_vma base, end = 0;
10843 for (sec = elf_hash_table (info)->tls_sec;
10844 sec && (sec->flags & SEC_THREAD_LOCAL);
10847 bfd_size_type size = sec->size;
10850 && (sec->flags & SEC_HAS_CONTENTS) == 0)
10852 struct bfd_link_order *ord = sec->map_tail.link_order;
10855 size = ord->offset + ord->size;
10857 end = sec->vma + size;
10859 base = elf_hash_table (info)->tls_sec->vma;
10860 /* Only align end of TLS section if static TLS doesn't have special
10861 alignment requirements. */
10862 if (bed->static_tls_alignment == 1)
10863 end = align_power (end,
10864 elf_hash_table (info)->tls_sec->alignment_power);
10865 elf_hash_table (info)->tls_size = end - base;
10868 /* Reorder SHF_LINK_ORDER sections. */
10869 for (o = abfd->sections; o != NULL; o = o->next)
10871 if (!elf_fixup_link_order (abfd, o))
10875 /* Since ELF permits relocations to be against local symbols, we
10876 must have the local symbols available when we do the relocations.
10877 Since we would rather only read the local symbols once, and we
10878 would rather not keep them in memory, we handle all the
10879 relocations for a single input file at the same time.
10881 Unfortunately, there is no way to know the total number of local
10882 symbols until we have seen all of them, and the local symbol
10883 indices precede the global symbol indices. This means that when
10884 we are generating relocatable output, and we see a reloc against
10885 a global symbol, we can not know the symbol index until we have
10886 finished examining all the local symbols to see which ones we are
10887 going to output. To deal with this, we keep the relocations in
10888 memory, and don't output them until the end of the link. This is
10889 an unfortunate waste of memory, but I don't see a good way around
10890 it. Fortunately, it only happens when performing a relocatable
10891 link, which is not the common case. FIXME: If keep_memory is set
10892 we could write the relocs out and then read them again; I don't
10893 know how bad the memory loss will be. */
10895 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
10896 sub->output_has_begun = FALSE;
10897 for (o = abfd->sections; o != NULL; o = o->next)
10899 for (p = o->map_head.link_order; p != NULL; p = p->next)
10901 if (p->type == bfd_indirect_link_order
10902 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
10903 == bfd_target_elf_flavour)
10904 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
10906 if (! sub->output_has_begun)
10908 if (! elf_link_input_bfd (&flinfo, sub))
10910 sub->output_has_begun = TRUE;
10913 else if (p->type == bfd_section_reloc_link_order
10914 || p->type == bfd_symbol_reloc_link_order)
10916 if (! elf_reloc_link_order (abfd, info, o, p))
10921 if (! _bfd_default_link_order (abfd, info, o, p))
10923 if (p->type == bfd_indirect_link_order
10924 && (bfd_get_flavour (sub)
10925 == bfd_target_elf_flavour)
10926 && (elf_elfheader (sub)->e_ident[EI_CLASS]
10927 != bed->s->elfclass))
10929 const char *iclass, *oclass;
10931 if (bed->s->elfclass == ELFCLASS64)
10933 iclass = "ELFCLASS32";
10934 oclass = "ELFCLASS64";
10938 iclass = "ELFCLASS64";
10939 oclass = "ELFCLASS32";
10942 bfd_set_error (bfd_error_wrong_format);
10943 (*_bfd_error_handler)
10944 (_("%B: file class %s incompatible with %s"),
10945 sub, iclass, oclass);
10954 /* Free symbol buffer if needed. */
10955 if (!info->reduce_memory_overheads)
10957 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
10958 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10959 && elf_tdata (sub)->symbuf)
10961 free (elf_tdata (sub)->symbuf);
10962 elf_tdata (sub)->symbuf = NULL;
10966 /* Output any global symbols that got converted to local in a
10967 version script or due to symbol visibility. We do this in a
10968 separate step since ELF requires all local symbols to appear
10969 prior to any global symbols. FIXME: We should only do this if
10970 some global symbols were, in fact, converted to become local.
10971 FIXME: Will this work correctly with the Irix 5 linker? */
10972 eoinfo.failed = FALSE;
10973 eoinfo.flinfo = &flinfo;
10974 eoinfo.localsyms = TRUE;
10975 eoinfo.need_second_pass = FALSE;
10976 eoinfo.second_pass = FALSE;
10977 eoinfo.file_sym_done = FALSE;
10978 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
10982 if (eoinfo.need_second_pass)
10984 eoinfo.second_pass = TRUE;
10985 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
10990 /* If backend needs to output some local symbols not present in the hash
10991 table, do it now. */
10992 if (bed->elf_backend_output_arch_local_syms)
10994 typedef int (*out_sym_func)
10995 (void *, const char *, Elf_Internal_Sym *, asection *,
10996 struct elf_link_hash_entry *);
10998 if (! ((*bed->elf_backend_output_arch_local_syms)
10999 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
11003 /* That wrote out all the local symbols. Finish up the symbol table
11004 with the global symbols. Even if we want to strip everything we
11005 can, we still need to deal with those global symbols that got
11006 converted to local in a version script. */
11008 /* The sh_info field records the index of the first non local symbol. */
11009 symtab_hdr->sh_info = bfd_get_symcount (abfd);
11012 && flinfo.dynsym_sec != NULL
11013 && flinfo.dynsym_sec->output_section != bfd_abs_section_ptr)
11015 Elf_Internal_Sym sym;
11016 bfd_byte *dynsym = flinfo.dynsym_sec->contents;
11017 long last_local = 0;
11019 /* Write out the section symbols for the output sections. */
11020 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
11026 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11028 sym.st_target_internal = 0;
11030 for (s = abfd->sections; s != NULL; s = s->next)
11036 dynindx = elf_section_data (s)->dynindx;
11039 indx = elf_section_data (s)->this_idx;
11040 BFD_ASSERT (indx > 0);
11041 sym.st_shndx = indx;
11042 if (! check_dynsym (abfd, &sym))
11044 sym.st_value = s->vma;
11045 dest = dynsym + dynindx * bed->s->sizeof_sym;
11046 if (last_local < dynindx)
11047 last_local = dynindx;
11048 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11052 /* Write out the local dynsyms. */
11053 if (elf_hash_table (info)->dynlocal)
11055 struct elf_link_local_dynamic_entry *e;
11056 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
11061 /* Copy the internal symbol and turn off visibility.
11062 Note that we saved a word of storage and overwrote
11063 the original st_name with the dynstr_index. */
11065 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
11067 s = bfd_section_from_elf_index (e->input_bfd,
11072 elf_section_data (s->output_section)->this_idx;
11073 if (! check_dynsym (abfd, &sym))
11075 sym.st_value = (s->output_section->vma
11077 + e->isym.st_value);
11080 if (last_local < e->dynindx)
11081 last_local = e->dynindx;
11083 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
11084 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11088 elf_section_data (flinfo.dynsym_sec->output_section)->this_hdr.sh_info =
11092 /* We get the global symbols from the hash table. */
11093 eoinfo.failed = FALSE;
11094 eoinfo.localsyms = FALSE;
11095 eoinfo.flinfo = &flinfo;
11096 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
11100 /* If backend needs to output some symbols not present in the hash
11101 table, do it now. */
11102 if (bed->elf_backend_output_arch_syms)
11104 typedef int (*out_sym_func)
11105 (void *, const char *, Elf_Internal_Sym *, asection *,
11106 struct elf_link_hash_entry *);
11108 if (! ((*bed->elf_backend_output_arch_syms)
11109 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
11113 /* Flush all symbols to the file. */
11114 if (! elf_link_flush_output_syms (&flinfo, bed))
11117 /* Now we know the size of the symtab section. */
11118 off += symtab_hdr->sh_size;
11120 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
11121 if (symtab_shndx_hdr->sh_name != 0)
11123 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
11124 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
11125 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
11126 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
11127 symtab_shndx_hdr->sh_size = amt;
11129 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
11132 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
11133 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
11138 /* Finish up and write out the symbol string table (.strtab)
11140 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
11141 /* sh_name was set in prep_headers. */
11142 symstrtab_hdr->sh_type = SHT_STRTAB;
11143 symstrtab_hdr->sh_flags = 0;
11144 symstrtab_hdr->sh_addr = 0;
11145 symstrtab_hdr->sh_size = _bfd_stringtab_size (flinfo.symstrtab);
11146 symstrtab_hdr->sh_entsize = 0;
11147 symstrtab_hdr->sh_link = 0;
11148 symstrtab_hdr->sh_info = 0;
11149 /* sh_offset is set just below. */
11150 symstrtab_hdr->sh_addralign = 1;
11152 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr, off, TRUE);
11153 elf_next_file_pos (abfd) = off;
11155 if (bfd_get_symcount (abfd) > 0)
11157 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
11158 || ! _bfd_stringtab_emit (abfd, flinfo.symstrtab))
11162 /* Adjust the relocs to have the correct symbol indices. */
11163 for (o = abfd->sections; o != NULL; o = o->next)
11165 struct bfd_elf_section_data *esdo = elf_section_data (o);
11166 if ((o->flags & SEC_RELOC) == 0)
11169 if (esdo->rel.hdr != NULL)
11170 elf_link_adjust_relocs (abfd, &esdo->rel);
11171 if (esdo->rela.hdr != NULL)
11172 elf_link_adjust_relocs (abfd, &esdo->rela);
11174 /* Set the reloc_count field to 0 to prevent write_relocs from
11175 trying to swap the relocs out itself. */
11176 o->reloc_count = 0;
11179 if (dynamic && info->combreloc && dynobj != NULL)
11180 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
11182 /* If we are linking against a dynamic object, or generating a
11183 shared library, finish up the dynamic linking information. */
11186 bfd_byte *dyncon, *dynconend;
11188 /* Fix up .dynamic entries. */
11189 o = bfd_get_linker_section (dynobj, ".dynamic");
11190 BFD_ASSERT (o != NULL);
11192 dyncon = o->contents;
11193 dynconend = o->contents + o->size;
11194 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11196 Elf_Internal_Dyn dyn;
11200 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11207 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
11209 switch (elf_section_data (reldyn)->this_hdr.sh_type)
11211 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
11212 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
11215 dyn.d_un.d_val = relativecount;
11222 name = info->init_function;
11225 name = info->fini_function;
11228 struct elf_link_hash_entry *h;
11230 h = elf_link_hash_lookup (elf_hash_table (info), name,
11231 FALSE, FALSE, TRUE);
11233 && (h->root.type == bfd_link_hash_defined
11234 || h->root.type == bfd_link_hash_defweak))
11236 dyn.d_un.d_ptr = h->root.u.def.value;
11237 o = h->root.u.def.section;
11238 if (o->output_section != NULL)
11239 dyn.d_un.d_ptr += (o->output_section->vma
11240 + o->output_offset);
11243 /* The symbol is imported from another shared
11244 library and does not apply to this one. */
11245 dyn.d_un.d_ptr = 0;
11252 case DT_PREINIT_ARRAYSZ:
11253 name = ".preinit_array";
11255 case DT_INIT_ARRAYSZ:
11256 name = ".init_array";
11258 case DT_FINI_ARRAYSZ:
11259 name = ".fini_array";
11261 o = bfd_get_section_by_name (abfd, name);
11264 (*_bfd_error_handler)
11265 (_("%B: could not find output section %s"), abfd, name);
11269 (*_bfd_error_handler)
11270 (_("warning: %s section has zero size"), name);
11271 dyn.d_un.d_val = o->size;
11274 case DT_PREINIT_ARRAY:
11275 name = ".preinit_array";
11277 case DT_INIT_ARRAY:
11278 name = ".init_array";
11280 case DT_FINI_ARRAY:
11281 name = ".fini_array";
11288 name = ".gnu.hash";
11297 name = ".gnu.version_d";
11300 name = ".gnu.version_r";
11303 name = ".gnu.version";
11305 o = bfd_get_section_by_name (abfd, name);
11308 (*_bfd_error_handler)
11309 (_("%B: could not find output section %s"), abfd, name);
11312 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
11314 (*_bfd_error_handler)
11315 (_("warning: section '%s' is being made into a note"), name);
11316 bfd_set_error (bfd_error_nonrepresentable_section);
11319 dyn.d_un.d_ptr = o->vma;
11326 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
11330 dyn.d_un.d_val = 0;
11331 dyn.d_un.d_ptr = 0;
11332 for (i = 1; i < elf_numsections (abfd); i++)
11334 Elf_Internal_Shdr *hdr;
11336 hdr = elf_elfsections (abfd)[i];
11337 if (hdr->sh_type == type
11338 && (hdr->sh_flags & SHF_ALLOC) != 0)
11340 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
11341 dyn.d_un.d_val += hdr->sh_size;
11344 if (dyn.d_un.d_ptr == 0
11345 || hdr->sh_addr < dyn.d_un.d_ptr)
11346 dyn.d_un.d_ptr = hdr->sh_addr;
11352 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
11356 /* If we have created any dynamic sections, then output them. */
11357 if (dynobj != NULL)
11359 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
11362 /* Check for DT_TEXTREL (late, in case the backend removes it). */
11363 if (((info->warn_shared_textrel && info->shared)
11364 || info->error_textrel)
11365 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
11367 bfd_byte *dyncon, *dynconend;
11369 dyncon = o->contents;
11370 dynconend = o->contents + o->size;
11371 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11373 Elf_Internal_Dyn dyn;
11375 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11377 if (dyn.d_tag == DT_TEXTREL)
11379 if (info->error_textrel)
11380 info->callbacks->einfo
11381 (_("%P%X: read-only segment has dynamic relocations.\n"));
11383 info->callbacks->einfo
11384 (_("%P: warning: creating a DT_TEXTREL in a shared object.\n"));
11390 for (o = dynobj->sections; o != NULL; o = o->next)
11392 if ((o->flags & SEC_HAS_CONTENTS) == 0
11394 || o->output_section == bfd_abs_section_ptr)
11396 if ((o->flags & SEC_LINKER_CREATED) == 0)
11398 /* At this point, we are only interested in sections
11399 created by _bfd_elf_link_create_dynamic_sections. */
11402 if (elf_hash_table (info)->stab_info.stabstr == o)
11404 if (elf_hash_table (info)->eh_info.hdr_sec == o)
11406 if (strcmp (o->name, ".dynstr") != 0)
11408 /* FIXME: octets_per_byte. */
11409 if (! bfd_set_section_contents (abfd, o->output_section,
11411 (file_ptr) o->output_offset,
11417 /* The contents of the .dynstr section are actually in a
11419 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
11420 if (bfd_seek (abfd, off, SEEK_SET) != 0
11421 || ! _bfd_elf_strtab_emit (abfd,
11422 elf_hash_table (info)->dynstr))
11428 if (info->relocatable)
11430 bfd_boolean failed = FALSE;
11432 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
11437 /* If we have optimized stabs strings, output them. */
11438 if (elf_hash_table (info)->stab_info.stabstr != NULL)
11440 if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
11444 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
11447 elf_final_link_free (abfd, &flinfo);
11449 elf_linker (abfd) = TRUE;
11453 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
11454 if (contents == NULL)
11455 return FALSE; /* Bail out and fail. */
11456 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
11457 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
11464 elf_final_link_free (abfd, &flinfo);
11468 /* Initialize COOKIE for input bfd ABFD. */
11471 init_reloc_cookie (struct elf_reloc_cookie *cookie,
11472 struct bfd_link_info *info, bfd *abfd)
11474 Elf_Internal_Shdr *symtab_hdr;
11475 const struct elf_backend_data *bed;
11477 bed = get_elf_backend_data (abfd);
11478 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11480 cookie->abfd = abfd;
11481 cookie->sym_hashes = elf_sym_hashes (abfd);
11482 cookie->bad_symtab = elf_bad_symtab (abfd);
11483 if (cookie->bad_symtab)
11485 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
11486 cookie->extsymoff = 0;
11490 cookie->locsymcount = symtab_hdr->sh_info;
11491 cookie->extsymoff = symtab_hdr->sh_info;
11494 if (bed->s->arch_size == 32)
11495 cookie->r_sym_shift = 8;
11497 cookie->r_sym_shift = 32;
11499 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
11500 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
11502 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
11503 cookie->locsymcount, 0,
11505 if (cookie->locsyms == NULL)
11507 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
11510 if (info->keep_memory)
11511 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
11516 /* Free the memory allocated by init_reloc_cookie, if appropriate. */
11519 fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
11521 Elf_Internal_Shdr *symtab_hdr;
11523 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11524 if (cookie->locsyms != NULL
11525 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
11526 free (cookie->locsyms);
11529 /* Initialize the relocation information in COOKIE for input section SEC
11530 of input bfd ABFD. */
11533 init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11534 struct bfd_link_info *info, bfd *abfd,
11537 const struct elf_backend_data *bed;
11539 if (sec->reloc_count == 0)
11541 cookie->rels = NULL;
11542 cookie->relend = NULL;
11546 bed = get_elf_backend_data (abfd);
11548 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
11549 info->keep_memory);
11550 if (cookie->rels == NULL)
11552 cookie->rel = cookie->rels;
11553 cookie->relend = (cookie->rels
11554 + sec->reloc_count * bed->s->int_rels_per_ext_rel);
11556 cookie->rel = cookie->rels;
11560 /* Free the memory allocated by init_reloc_cookie_rels,
11564 fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11567 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
11568 free (cookie->rels);
11571 /* Initialize the whole of COOKIE for input section SEC. */
11574 init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11575 struct bfd_link_info *info,
11578 if (!init_reloc_cookie (cookie, info, sec->owner))
11580 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
11585 fini_reloc_cookie (cookie, sec->owner);
11590 /* Free the memory allocated by init_reloc_cookie_for_section,
11594 fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11597 fini_reloc_cookie_rels (cookie, sec);
11598 fini_reloc_cookie (cookie, sec->owner);
11601 /* Garbage collect unused sections. */
11603 /* Default gc_mark_hook. */
11606 _bfd_elf_gc_mark_hook (asection *sec,
11607 struct bfd_link_info *info ATTRIBUTE_UNUSED,
11608 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
11609 struct elf_link_hash_entry *h,
11610 Elf_Internal_Sym *sym)
11612 const char *sec_name;
11616 switch (h->root.type)
11618 case bfd_link_hash_defined:
11619 case bfd_link_hash_defweak:
11620 return h->root.u.def.section;
11622 case bfd_link_hash_common:
11623 return h->root.u.c.p->section;
11625 case bfd_link_hash_undefined:
11626 case bfd_link_hash_undefweak:
11627 /* To work around a glibc bug, keep all XXX input sections
11628 when there is an as yet undefined reference to __start_XXX
11629 or __stop_XXX symbols. The linker will later define such
11630 symbols for orphan input sections that have a name
11631 representable as a C identifier. */
11632 if (strncmp (h->root.root.string, "__start_", 8) == 0)
11633 sec_name = h->root.root.string + 8;
11634 else if (strncmp (h->root.root.string, "__stop_", 7) == 0)
11635 sec_name = h->root.root.string + 7;
11639 if (sec_name && *sec_name != '\0')
11643 for (i = info->input_bfds; i; i = i->link.next)
11645 sec = bfd_get_section_by_name (i, sec_name);
11647 sec->flags |= SEC_KEEP;
11657 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
11662 /* COOKIE->rel describes a relocation against section SEC, which is
11663 a section we've decided to keep. Return the section that contains
11664 the relocation symbol, or NULL if no section contains it. */
11667 _bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
11668 elf_gc_mark_hook_fn gc_mark_hook,
11669 struct elf_reloc_cookie *cookie)
11671 unsigned long r_symndx;
11672 struct elf_link_hash_entry *h;
11674 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
11675 if (r_symndx == STN_UNDEF)
11678 if (r_symndx >= cookie->locsymcount
11679 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
11681 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
11682 while (h->root.type == bfd_link_hash_indirect
11683 || h->root.type == bfd_link_hash_warning)
11684 h = (struct elf_link_hash_entry *) h->root.u.i.link;
11686 /* If this symbol is weak and there is a non-weak definition, we
11687 keep the non-weak definition because many backends put
11688 dynamic reloc info on the non-weak definition for code
11689 handling copy relocs. */
11690 if (h->u.weakdef != NULL)
11691 h->u.weakdef->mark = 1;
11692 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
11695 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
11696 &cookie->locsyms[r_symndx]);
11699 /* COOKIE->rel describes a relocation against section SEC, which is
11700 a section we've decided to keep. Mark the section that contains
11701 the relocation symbol. */
11704 _bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
11706 elf_gc_mark_hook_fn gc_mark_hook,
11707 struct elf_reloc_cookie *cookie)
11711 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
11712 if (rsec && !rsec->gc_mark)
11714 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
11715 || (rsec->owner->flags & DYNAMIC) != 0)
11717 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
11723 /* The mark phase of garbage collection. For a given section, mark
11724 it and any sections in this section's group, and all the sections
11725 which define symbols to which it refers. */
11728 _bfd_elf_gc_mark (struct bfd_link_info *info,
11730 elf_gc_mark_hook_fn gc_mark_hook)
11733 asection *group_sec, *eh_frame;
11737 /* Mark all the sections in the group. */
11738 group_sec = elf_section_data (sec)->next_in_group;
11739 if (group_sec && !group_sec->gc_mark)
11740 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
11743 /* Look through the section relocs. */
11745 eh_frame = elf_eh_frame_section (sec->owner);
11746 if ((sec->flags & SEC_RELOC) != 0
11747 && sec->reloc_count > 0
11748 && sec != eh_frame)
11750 struct elf_reloc_cookie cookie;
11752 if (!init_reloc_cookie_for_section (&cookie, info, sec))
11756 for (; cookie.rel < cookie.relend; cookie.rel++)
11757 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
11762 fini_reloc_cookie_for_section (&cookie, sec);
11766 if (ret && eh_frame && elf_fde_list (sec))
11768 struct elf_reloc_cookie cookie;
11770 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
11774 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
11775 gc_mark_hook, &cookie))
11777 fini_reloc_cookie_for_section (&cookie, eh_frame);
11784 /* Keep debug and special sections. */
11787 _bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
11788 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
11792 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
11795 bfd_boolean some_kept;
11796 bfd_boolean debug_frag_seen;
11798 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
11801 /* Ensure all linker created sections are kept,
11802 see if any other section is already marked,
11803 and note if we have any fragmented debug sections. */
11804 debug_frag_seen = some_kept = FALSE;
11805 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11807 if ((isec->flags & SEC_LINKER_CREATED) != 0)
11809 else if (isec->gc_mark)
11812 if (debug_frag_seen == FALSE
11813 && (isec->flags & SEC_DEBUGGING)
11814 && CONST_STRNEQ (isec->name, ".debug_line."))
11815 debug_frag_seen = TRUE;
11818 /* If no section in this file will be kept, then we can
11819 toss out the debug and special sections. */
11823 /* Keep debug and special sections like .comment when they are
11824 not part of a group, or when we have single-member groups. */
11825 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11826 if ((elf_next_in_group (isec) == NULL
11827 || elf_next_in_group (isec) == isec)
11828 && ((isec->flags & SEC_DEBUGGING) != 0
11829 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0))
11832 if (! debug_frag_seen)
11835 /* Look for CODE sections which are going to be discarded,
11836 and find and discard any fragmented debug sections which
11837 are associated with that code section. */
11838 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11839 if ((isec->flags & SEC_CODE) != 0
11840 && isec->gc_mark == 0)
11845 ilen = strlen (isec->name);
11847 /* Association is determined by the name of the debug section
11848 containing the name of the code section as a suffix. For
11849 example .debug_line.text.foo is a debug section associated
11851 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
11855 if (dsec->gc_mark == 0
11856 || (dsec->flags & SEC_DEBUGGING) == 0)
11859 dlen = strlen (dsec->name);
11862 && strncmp (dsec->name + (dlen - ilen),
11863 isec->name, ilen) == 0)
11874 /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
11876 struct elf_gc_sweep_symbol_info
11878 struct bfd_link_info *info;
11879 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
11884 elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
11887 && (((h->root.type == bfd_link_hash_defined
11888 || h->root.type == bfd_link_hash_defweak)
11889 && !(h->def_regular
11890 && h->root.u.def.section->gc_mark))
11891 || h->root.type == bfd_link_hash_undefined
11892 || h->root.type == bfd_link_hash_undefweak))
11894 struct elf_gc_sweep_symbol_info *inf;
11896 inf = (struct elf_gc_sweep_symbol_info *) data;
11897 (*inf->hide_symbol) (inf->info, h, TRUE);
11898 h->def_regular = 0;
11899 h->ref_regular = 0;
11900 h->ref_regular_nonweak = 0;
11906 /* The sweep phase of garbage collection. Remove all garbage sections. */
11908 typedef bfd_boolean (*gc_sweep_hook_fn)
11909 (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
11912 elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
11915 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11916 gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
11917 unsigned long section_sym_count;
11918 struct elf_gc_sweep_symbol_info sweep_info;
11920 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
11924 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
11927 for (o = sub->sections; o != NULL; o = o->next)
11929 /* When any section in a section group is kept, we keep all
11930 sections in the section group. If the first member of
11931 the section group is excluded, we will also exclude the
11933 if (o->flags & SEC_GROUP)
11935 asection *first = elf_next_in_group (o);
11936 o->gc_mark = first->gc_mark;
11942 /* Skip sweeping sections already excluded. */
11943 if (o->flags & SEC_EXCLUDE)
11946 /* Since this is early in the link process, it is simple
11947 to remove a section from the output. */
11948 o->flags |= SEC_EXCLUDE;
11950 if (info->print_gc_sections && o->size != 0)
11951 _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name);
11953 /* But we also have to update some of the relocation
11954 info we collected before. */
11956 && (o->flags & SEC_RELOC) != 0
11957 && o->reloc_count != 0
11958 && !((info->strip == strip_all || info->strip == strip_debugger)
11959 && (o->flags & SEC_DEBUGGING) != 0)
11960 && !bfd_is_abs_section (o->output_section))
11962 Elf_Internal_Rela *internal_relocs;
11966 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
11967 info->keep_memory);
11968 if (internal_relocs == NULL)
11971 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
11973 if (elf_section_data (o)->relocs != internal_relocs)
11974 free (internal_relocs);
11982 /* Remove the symbols that were in the swept sections from the dynamic
11983 symbol table. GCFIXME: Anyone know how to get them out of the
11984 static symbol table as well? */
11985 sweep_info.info = info;
11986 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
11987 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
11990 _bfd_elf_link_renumber_dynsyms (abfd, info, §ion_sym_count);
11994 /* Propagate collected vtable information. This is called through
11995 elf_link_hash_traverse. */
11998 elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
12000 /* Those that are not vtables. */
12001 if (h->vtable == NULL || h->vtable->parent == NULL)
12004 /* Those vtables that do not have parents, we cannot merge. */
12005 if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
12008 /* If we've already been done, exit. */
12009 if (h->vtable->used && h->vtable->used[-1])
12012 /* Make sure the parent's table is up to date. */
12013 elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
12015 if (h->vtable->used == NULL)
12017 /* None of this table's entries were referenced. Re-use the
12019 h->vtable->used = h->vtable->parent->vtable->used;
12020 h->vtable->size = h->vtable->parent->vtable->size;
12025 bfd_boolean *cu, *pu;
12027 /* Or the parent's entries into ours. */
12028 cu = h->vtable->used;
12030 pu = h->vtable->parent->vtable->used;
12033 const struct elf_backend_data *bed;
12034 unsigned int log_file_align;
12036 bed = get_elf_backend_data (h->root.u.def.section->owner);
12037 log_file_align = bed->s->log_file_align;
12038 n = h->vtable->parent->vtable->size >> log_file_align;
12053 elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
12056 bfd_vma hstart, hend;
12057 Elf_Internal_Rela *relstart, *relend, *rel;
12058 const struct elf_backend_data *bed;
12059 unsigned int log_file_align;
12061 /* Take care of both those symbols that do not describe vtables as
12062 well as those that are not loaded. */
12063 if (h->vtable == NULL || h->vtable->parent == NULL)
12066 BFD_ASSERT (h->root.type == bfd_link_hash_defined
12067 || h->root.type == bfd_link_hash_defweak);
12069 sec = h->root.u.def.section;
12070 hstart = h->root.u.def.value;
12071 hend = hstart + h->size;
12073 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
12075 return *(bfd_boolean *) okp = FALSE;
12076 bed = get_elf_backend_data (sec->owner);
12077 log_file_align = bed->s->log_file_align;
12079 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
12081 for (rel = relstart; rel < relend; ++rel)
12082 if (rel->r_offset >= hstart && rel->r_offset < hend)
12084 /* If the entry is in use, do nothing. */
12085 if (h->vtable->used
12086 && (rel->r_offset - hstart) < h->vtable->size)
12088 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
12089 if (h->vtable->used[entry])
12092 /* Otherwise, kill it. */
12093 rel->r_offset = rel->r_info = rel->r_addend = 0;
12099 /* Mark sections containing dynamically referenced symbols. When
12100 building shared libraries, we must assume that any visible symbol is
12104 bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
12106 struct bfd_link_info *info = (struct bfd_link_info *) inf;
12107 struct bfd_elf_dynamic_list *d = info->dynamic_list;
12109 if ((h->root.type == bfd_link_hash_defined
12110 || h->root.type == bfd_link_hash_defweak)
12113 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
12114 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
12115 && (!info->executable
12116 || info->export_dynamic
12119 && (*d->match) (&d->head, NULL, h->root.root.string)))
12120 && (strchr (h->root.root.string, ELF_VER_CHR) != NULL
12121 || !bfd_hide_sym_by_version (info->version_info,
12122 h->root.root.string)))))
12123 h->root.u.def.section->flags |= SEC_KEEP;
12128 /* Keep all sections containing symbols undefined on the command-line,
12129 and the section containing the entry symbol. */
12132 _bfd_elf_gc_keep (struct bfd_link_info *info)
12134 struct bfd_sym_chain *sym;
12136 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
12138 struct elf_link_hash_entry *h;
12140 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
12141 FALSE, FALSE, FALSE);
12144 && (h->root.type == bfd_link_hash_defined
12145 || h->root.type == bfd_link_hash_defweak)
12146 && !bfd_is_abs_section (h->root.u.def.section))
12147 h->root.u.def.section->flags |= SEC_KEEP;
12151 /* Do mark and sweep of unused sections. */
12154 bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
12156 bfd_boolean ok = TRUE;
12158 elf_gc_mark_hook_fn gc_mark_hook;
12159 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12160 struct elf_link_hash_table *htab;
12162 if (!bed->can_gc_sections
12163 || !is_elf_hash_table (info->hash))
12165 (*_bfd_error_handler)(_("Warning: gc-sections option ignored"));
12169 bed->gc_keep (info);
12170 htab = elf_hash_table (info);
12172 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
12173 at the .eh_frame section if we can mark the FDEs individually. */
12174 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12177 struct elf_reloc_cookie cookie;
12179 sec = bfd_get_section_by_name (sub, ".eh_frame");
12180 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
12182 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
12183 if (elf_section_data (sec)->sec_info
12184 && (sec->flags & SEC_LINKER_CREATED) == 0)
12185 elf_eh_frame_section (sub) = sec;
12186 fini_reloc_cookie_for_section (&cookie, sec);
12187 sec = bfd_get_next_section_by_name (sec);
12191 /* Apply transitive closure to the vtable entry usage info. */
12192 elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
12196 /* Kill the vtable relocations that were not used. */
12197 elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
12201 /* Mark dynamically referenced symbols. */
12202 if (htab->dynamic_sections_created)
12203 elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
12205 /* Grovel through relocs to find out who stays ... */
12206 gc_mark_hook = bed->gc_mark_hook;
12207 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12211 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
12214 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
12215 Also treat note sections as a root, if the section is not part
12217 for (o = sub->sections; o != NULL; o = o->next)
12219 && (o->flags & SEC_EXCLUDE) == 0
12220 && ((o->flags & SEC_KEEP) != 0
12221 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
12222 && elf_next_in_group (o) == NULL )))
12224 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
12229 /* Allow the backend to mark additional target specific sections. */
12230 bed->gc_mark_extra_sections (info, gc_mark_hook);
12232 /* ... and mark SEC_EXCLUDE for those that go. */
12233 return elf_gc_sweep (abfd, info);
12236 /* Called from check_relocs to record the existence of a VTINHERIT reloc. */
12239 bfd_elf_gc_record_vtinherit (bfd *abfd,
12241 struct elf_link_hash_entry *h,
12244 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
12245 struct elf_link_hash_entry **search, *child;
12246 bfd_size_type extsymcount;
12247 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12249 /* The sh_info field of the symtab header tells us where the
12250 external symbols start. We don't care about the local symbols at
12252 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
12253 if (!elf_bad_symtab (abfd))
12254 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
12256 sym_hashes = elf_sym_hashes (abfd);
12257 sym_hashes_end = sym_hashes + extsymcount;
12259 /* Hunt down the child symbol, which is in this section at the same
12260 offset as the relocation. */
12261 for (search = sym_hashes; search != sym_hashes_end; ++search)
12263 if ((child = *search) != NULL
12264 && (child->root.type == bfd_link_hash_defined
12265 || child->root.type == bfd_link_hash_defweak)
12266 && child->root.u.def.section == sec
12267 && child->root.u.def.value == offset)
12271 (*_bfd_error_handler) ("%B: %A+%lu: No symbol found for INHERIT",
12272 abfd, sec, (unsigned long) offset);
12273 bfd_set_error (bfd_error_invalid_operation);
12277 if (!child->vtable)
12279 child->vtable = (struct elf_link_virtual_table_entry *)
12280 bfd_zalloc (abfd, sizeof (*child->vtable));
12281 if (!child->vtable)
12286 /* This *should* only be the absolute section. It could potentially
12287 be that someone has defined a non-global vtable though, which
12288 would be bad. It isn't worth paging in the local symbols to be
12289 sure though; that case should simply be handled by the assembler. */
12291 child->vtable->parent = (struct elf_link_hash_entry *) -1;
12294 child->vtable->parent = h;
12299 /* Called from check_relocs to record the existence of a VTENTRY reloc. */
12302 bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
12303 asection *sec ATTRIBUTE_UNUSED,
12304 struct elf_link_hash_entry *h,
12307 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12308 unsigned int log_file_align = bed->s->log_file_align;
12312 h->vtable = (struct elf_link_virtual_table_entry *)
12313 bfd_zalloc (abfd, sizeof (*h->vtable));
12318 if (addend >= h->vtable->size)
12320 size_t size, bytes, file_align;
12321 bfd_boolean *ptr = h->vtable->used;
12323 /* While the symbol is undefined, we have to be prepared to handle
12325 file_align = 1 << log_file_align;
12326 if (h->root.type == bfd_link_hash_undefined)
12327 size = addend + file_align;
12331 if (addend >= size)
12333 /* Oops! We've got a reference past the defined end of
12334 the table. This is probably a bug -- shall we warn? */
12335 size = addend + file_align;
12338 size = (size + file_align - 1) & -file_align;
12340 /* Allocate one extra entry for use as a "done" flag for the
12341 consolidation pass. */
12342 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
12346 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
12352 oldbytes = (((h->vtable->size >> log_file_align) + 1)
12353 * sizeof (bfd_boolean));
12354 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
12358 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
12363 /* And arrange for that done flag to be at index -1. */
12364 h->vtable->used = ptr + 1;
12365 h->vtable->size = size;
12368 h->vtable->used[addend >> log_file_align] = TRUE;
12373 /* Map an ELF section header flag to its corresponding string. */
12377 flagword flag_value;
12378 } elf_flags_to_name_table;
12380 static elf_flags_to_name_table elf_flags_to_names [] =
12382 { "SHF_WRITE", SHF_WRITE },
12383 { "SHF_ALLOC", SHF_ALLOC },
12384 { "SHF_EXECINSTR", SHF_EXECINSTR },
12385 { "SHF_MERGE", SHF_MERGE },
12386 { "SHF_STRINGS", SHF_STRINGS },
12387 { "SHF_INFO_LINK", SHF_INFO_LINK},
12388 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
12389 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
12390 { "SHF_GROUP", SHF_GROUP },
12391 { "SHF_TLS", SHF_TLS },
12392 { "SHF_MASKOS", SHF_MASKOS },
12393 { "SHF_EXCLUDE", SHF_EXCLUDE },
12396 /* Returns TRUE if the section is to be included, otherwise FALSE. */
12398 bfd_elf_lookup_section_flags (struct bfd_link_info *info,
12399 struct flag_info *flaginfo,
12402 const bfd_vma sh_flags = elf_section_flags (section);
12404 if (!flaginfo->flags_initialized)
12406 bfd *obfd = info->output_bfd;
12407 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12408 struct flag_info_list *tf = flaginfo->flag_list;
12410 int without_hex = 0;
12412 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
12415 flagword (*lookup) (char *);
12417 lookup = bed->elf_backend_lookup_section_flags_hook;
12418 if (lookup != NULL)
12420 flagword hexval = (*lookup) ((char *) tf->name);
12424 if (tf->with == with_flags)
12425 with_hex |= hexval;
12426 else if (tf->with == without_flags)
12427 without_hex |= hexval;
12432 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
12434 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
12436 if (tf->with == with_flags)
12437 with_hex |= elf_flags_to_names[i].flag_value;
12438 else if (tf->with == without_flags)
12439 without_hex |= elf_flags_to_names[i].flag_value;
12446 info->callbacks->einfo
12447 (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
12451 flaginfo->flags_initialized = TRUE;
12452 flaginfo->only_with_flags |= with_hex;
12453 flaginfo->not_with_flags |= without_hex;
12456 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
12459 if ((flaginfo->not_with_flags & sh_flags) != 0)
12465 struct alloc_got_off_arg {
12467 struct bfd_link_info *info;
12470 /* We need a special top-level link routine to convert got reference counts
12471 to real got offsets. */
12474 elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
12476 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
12477 bfd *obfd = gofarg->info->output_bfd;
12478 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12480 if (h->got.refcount > 0)
12482 h->got.offset = gofarg->gotoff;
12483 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
12486 h->got.offset = (bfd_vma) -1;
12491 /* And an accompanying bit to work out final got entry offsets once
12492 we're done. Should be called from final_link. */
12495 bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
12496 struct bfd_link_info *info)
12499 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12501 struct alloc_got_off_arg gofarg;
12503 BFD_ASSERT (abfd == info->output_bfd);
12505 if (! is_elf_hash_table (info->hash))
12508 /* The GOT offset is relative to the .got section, but the GOT header is
12509 put into the .got.plt section, if the backend uses it. */
12510 if (bed->want_got_plt)
12513 gotoff = bed->got_header_size;
12515 /* Do the local .got entries first. */
12516 for (i = info->input_bfds; i; i = i->link.next)
12518 bfd_signed_vma *local_got;
12519 bfd_size_type j, locsymcount;
12520 Elf_Internal_Shdr *symtab_hdr;
12522 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
12525 local_got = elf_local_got_refcounts (i);
12529 symtab_hdr = &elf_tdata (i)->symtab_hdr;
12530 if (elf_bad_symtab (i))
12531 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12533 locsymcount = symtab_hdr->sh_info;
12535 for (j = 0; j < locsymcount; ++j)
12537 if (local_got[j] > 0)
12539 local_got[j] = gotoff;
12540 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
12543 local_got[j] = (bfd_vma) -1;
12547 /* Then the global .got entries. .plt refcounts are handled by
12548 adjust_dynamic_symbol */
12549 gofarg.gotoff = gotoff;
12550 gofarg.info = info;
12551 elf_link_hash_traverse (elf_hash_table (info),
12552 elf_gc_allocate_got_offsets,
12557 /* Many folk need no more in the way of final link than this, once
12558 got entry reference counting is enabled. */
12561 bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
12563 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
12566 /* Invoke the regular ELF backend linker to do all the work. */
12567 return bfd_elf_final_link (abfd, info);
12571 bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
12573 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
12575 if (rcookie->bad_symtab)
12576 rcookie->rel = rcookie->rels;
12578 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
12580 unsigned long r_symndx;
12582 if (! rcookie->bad_symtab)
12583 if (rcookie->rel->r_offset > offset)
12585 if (rcookie->rel->r_offset != offset)
12588 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
12589 if (r_symndx == STN_UNDEF)
12592 if (r_symndx >= rcookie->locsymcount
12593 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12595 struct elf_link_hash_entry *h;
12597 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
12599 while (h->root.type == bfd_link_hash_indirect
12600 || h->root.type == bfd_link_hash_warning)
12601 h = (struct elf_link_hash_entry *) h->root.u.i.link;
12603 if ((h->root.type == bfd_link_hash_defined
12604 || h->root.type == bfd_link_hash_defweak)
12605 && (h->root.u.def.section->owner != rcookie->abfd
12606 || h->root.u.def.section->kept_section != NULL
12607 || discarded_section (h->root.u.def.section)))
12612 /* It's not a relocation against a global symbol,
12613 but it could be a relocation against a local
12614 symbol for a discarded section. */
12616 Elf_Internal_Sym *isym;
12618 /* Need to: get the symbol; get the section. */
12619 isym = &rcookie->locsyms[r_symndx];
12620 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
12622 && (isec->kept_section != NULL
12623 || discarded_section (isec)))
12631 /* Discard unneeded references to discarded sections.
12632 Returns -1 on error, 1 if any section's size was changed, 0 if
12633 nothing changed. This function assumes that the relocations are in
12634 sorted order, which is true for all known assemblers. */
12637 bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
12639 struct elf_reloc_cookie cookie;
12644 if (info->traditional_format
12645 || !is_elf_hash_table (info->hash))
12648 o = bfd_get_section_by_name (output_bfd, ".stab");
12653 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
12656 || i->reloc_count == 0
12657 || i->sec_info_type != SEC_INFO_TYPE_STABS)
12661 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12664 if (!init_reloc_cookie_for_section (&cookie, info, i))
12667 if (_bfd_discard_section_stabs (abfd, i,
12668 elf_section_data (i)->sec_info,
12669 bfd_elf_reloc_symbol_deleted_p,
12673 fini_reloc_cookie_for_section (&cookie, i);
12677 o = bfd_get_section_by_name (output_bfd, ".eh_frame");
12682 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
12688 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12691 if (!init_reloc_cookie_for_section (&cookie, info, i))
12694 _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
12695 if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
12696 bfd_elf_reloc_symbol_deleted_p,
12700 fini_reloc_cookie_for_section (&cookie, i);
12704 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
12706 const struct elf_backend_data *bed;
12708 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12711 bed = get_elf_backend_data (abfd);
12713 if (bed->elf_backend_discard_info != NULL)
12715 if (!init_reloc_cookie (&cookie, info, abfd))
12718 if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
12721 fini_reloc_cookie (&cookie, abfd);
12725 if (info->eh_frame_hdr
12726 && !info->relocatable
12727 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
12734 _bfd_elf_section_already_linked (bfd *abfd,
12736 struct bfd_link_info *info)
12739 const char *name, *key;
12740 struct bfd_section_already_linked *l;
12741 struct bfd_section_already_linked_hash_entry *already_linked_list;
12743 if (sec->output_section == bfd_abs_section_ptr)
12746 flags = sec->flags;
12748 /* Return if it isn't a linkonce section. A comdat group section
12749 also has SEC_LINK_ONCE set. */
12750 if ((flags & SEC_LINK_ONCE) == 0)
12753 /* Don't put group member sections on our list of already linked
12754 sections. They are handled as a group via their group section. */
12755 if (elf_sec_group (sec) != NULL)
12758 /* For a SHT_GROUP section, use the group signature as the key. */
12760 if ((flags & SEC_GROUP) != 0
12761 && elf_next_in_group (sec) != NULL
12762 && elf_group_name (elf_next_in_group (sec)) != NULL)
12763 key = elf_group_name (elf_next_in_group (sec));
12766 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
12767 if (CONST_STRNEQ (name, ".gnu.linkonce.")
12768 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
12771 /* Must be a user linkonce section that doesn't follow gcc's
12772 naming convention. In this case we won't be matching
12773 single member groups. */
12777 already_linked_list = bfd_section_already_linked_table_lookup (key);
12779 for (l = already_linked_list->entry; l != NULL; l = l->next)
12781 /* We may have 2 different types of sections on the list: group
12782 sections with a signature of <key> (<key> is some string),
12783 and linkonce sections named .gnu.linkonce.<type>.<key>.
12784 Match like sections. LTO plugin sections are an exception.
12785 They are always named .gnu.linkonce.t.<key> and match either
12786 type of section. */
12787 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
12788 && ((flags & SEC_GROUP) != 0
12789 || strcmp (name, l->sec->name) == 0))
12790 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
12792 /* The section has already been linked. See if we should
12793 issue a warning. */
12794 if (!_bfd_handle_already_linked (sec, l, info))
12797 if (flags & SEC_GROUP)
12799 asection *first = elf_next_in_group (sec);
12800 asection *s = first;
12804 s->output_section = bfd_abs_section_ptr;
12805 /* Record which group discards it. */
12806 s->kept_section = l->sec;
12807 s = elf_next_in_group (s);
12808 /* These lists are circular. */
12818 /* A single member comdat group section may be discarded by a
12819 linkonce section and vice versa. */
12820 if ((flags & SEC_GROUP) != 0)
12822 asection *first = elf_next_in_group (sec);
12824 if (first != NULL && elf_next_in_group (first) == first)
12825 /* Check this single member group against linkonce sections. */
12826 for (l = already_linked_list->entry; l != NULL; l = l->next)
12827 if ((l->sec->flags & SEC_GROUP) == 0
12828 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
12830 first->output_section = bfd_abs_section_ptr;
12831 first->kept_section = l->sec;
12832 sec->output_section = bfd_abs_section_ptr;
12837 /* Check this linkonce section against single member groups. */
12838 for (l = already_linked_list->entry; l != NULL; l = l->next)
12839 if (l->sec->flags & SEC_GROUP)
12841 asection *first = elf_next_in_group (l->sec);
12844 && elf_next_in_group (first) == first
12845 && bfd_elf_match_symbols_in_sections (first, sec, info))
12847 sec->output_section = bfd_abs_section_ptr;
12848 sec->kept_section = first;
12853 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
12854 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
12855 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
12856 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
12857 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
12858 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
12859 `.gnu.linkonce.t.F' section from a different bfd not requiring any
12860 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
12861 The reverse order cannot happen as there is never a bfd with only the
12862 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
12863 matter as here were are looking only for cross-bfd sections. */
12865 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
12866 for (l = already_linked_list->entry; l != NULL; l = l->next)
12867 if ((l->sec->flags & SEC_GROUP) == 0
12868 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
12870 if (abfd != l->sec->owner)
12871 sec->output_section = bfd_abs_section_ptr;
12875 /* This is the first section with this name. Record it. */
12876 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
12877 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
12878 return sec->output_section == bfd_abs_section_ptr;
12882 _bfd_elf_common_definition (Elf_Internal_Sym *sym)
12884 return sym->st_shndx == SHN_COMMON;
12888 _bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
12894 _bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
12896 return bfd_com_section_ptr;
12900 _bfd_elf_default_got_elt_size (bfd *abfd,
12901 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12902 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
12903 bfd *ibfd ATTRIBUTE_UNUSED,
12904 unsigned long symndx ATTRIBUTE_UNUSED)
12906 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12907 return bed->s->arch_size / 8;
12910 /* Routines to support the creation of dynamic relocs. */
12912 /* Returns the name of the dynamic reloc section associated with SEC. */
12914 static const char *
12915 get_dynamic_reloc_section_name (bfd * abfd,
12917 bfd_boolean is_rela)
12920 const char *old_name = bfd_get_section_name (NULL, sec);
12921 const char *prefix = is_rela ? ".rela" : ".rel";
12923 if (old_name == NULL)
12926 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
12927 sprintf (name, "%s%s", prefix, old_name);
12932 /* Returns the dynamic reloc section associated with SEC.
12933 If necessary compute the name of the dynamic reloc section based
12934 on SEC's name (looked up in ABFD's string table) and the setting
12938 _bfd_elf_get_dynamic_reloc_section (bfd * abfd,
12940 bfd_boolean is_rela)
12942 asection * reloc_sec = elf_section_data (sec)->sreloc;
12944 if (reloc_sec == NULL)
12946 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12950 reloc_sec = bfd_get_linker_section (abfd, name);
12952 if (reloc_sec != NULL)
12953 elf_section_data (sec)->sreloc = reloc_sec;
12960 /* Returns the dynamic reloc section associated with SEC. If the
12961 section does not exist it is created and attached to the DYNOBJ
12962 bfd and stored in the SRELOC field of SEC's elf_section_data
12965 ALIGNMENT is the alignment for the newly created section and
12966 IS_RELA defines whether the name should be .rela.<SEC's name>
12967 or .rel.<SEC's name>. The section name is looked up in the
12968 string table associated with ABFD. */
12971 _bfd_elf_make_dynamic_reloc_section (asection * sec,
12973 unsigned int alignment,
12975 bfd_boolean is_rela)
12977 asection * reloc_sec = elf_section_data (sec)->sreloc;
12979 if (reloc_sec == NULL)
12981 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12986 reloc_sec = bfd_get_linker_section (dynobj, name);
12988 if (reloc_sec == NULL)
12990 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
12991 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
12992 if ((sec->flags & SEC_ALLOC) != 0)
12993 flags |= SEC_ALLOC | SEC_LOAD;
12995 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
12996 if (reloc_sec != NULL)
12998 /* _bfd_elf_get_sec_type_attr chooses a section type by
12999 name. Override as it may be wrong, eg. for a user
13000 section named "auto" we'll get ".relauto" which is
13001 seen to be a .rela section. */
13002 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
13003 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
13008 elf_section_data (sec)->sreloc = reloc_sec;
13014 /* Copy the ELF symbol type and other attributes for a linker script
13015 assignment from HSRC to HDEST. Generally this should be treated as
13016 if we found a strong non-dynamic definition for HDEST (except that
13017 ld ignores multiple definition errors). */
13019 _bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
13020 struct bfd_link_hash_entry *hdest,
13021 struct bfd_link_hash_entry *hsrc)
13023 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
13024 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
13025 Elf_Internal_Sym isym;
13027 ehdest->type = ehsrc->type;
13028 ehdest->target_internal = ehsrc->target_internal;
13030 isym.st_other = ehsrc->other;
13031 elf_merge_st_other (abfd, ehdest, &isym, TRUE, FALSE);
13034 /* Append a RELA relocation REL to section S in BFD. */
13037 elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13039 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13040 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
13041 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
13042 bed->s->swap_reloca_out (abfd, rel, loc);
13045 /* Append a REL relocation REL to section S in BFD. */
13048 elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13050 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13051 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
13052 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
13053 bed->s->swap_reloc_out (abfd, rel, loc);