1 /* ELF linking support for BFD.
2 Copyright (C) 1995-2017 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. */
23 #include "bfd_stdint.h"
28 #include "safe-ctype.h"
29 #include "libiberty.h"
31 #if BFD_SUPPORTS_PLUGINS
32 #include "plugin-api.h"
36 /* This struct is used to pass information to routines called via
37 elf_link_hash_traverse which must return failure. */
39 struct elf_info_failed
41 struct bfd_link_info *info;
45 /* This structure is used to pass information to
46 _bfd_elf_link_find_version_dependencies. */
48 struct elf_find_verdep_info
50 /* General link information. */
51 struct bfd_link_info *info;
52 /* The number of dependencies. */
54 /* Whether we had a failure. */
58 static bfd_boolean _bfd_elf_fix_symbol_flags
59 (struct elf_link_hash_entry *, struct elf_info_failed *);
62 _bfd_elf_section_for_symbol (struct elf_reloc_cookie *cookie,
63 unsigned long r_symndx,
66 if (r_symndx >= cookie->locsymcount
67 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
69 struct elf_link_hash_entry *h;
71 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
73 while (h->root.type == bfd_link_hash_indirect
74 || h->root.type == bfd_link_hash_warning)
75 h = (struct elf_link_hash_entry *) h->root.u.i.link;
77 if ((h->root.type == bfd_link_hash_defined
78 || h->root.type == bfd_link_hash_defweak)
79 && discarded_section (h->root.u.def.section))
80 return h->root.u.def.section;
86 /* It's not a relocation against a global symbol,
87 but it could be a relocation against a local
88 symbol for a discarded section. */
90 Elf_Internal_Sym *isym;
92 /* Need to: get the symbol; get the section. */
93 isym = &cookie->locsyms[r_symndx];
94 isec = bfd_section_from_elf_index (cookie->abfd, isym->st_shndx);
96 && discard ? discarded_section (isec) : 1)
102 /* Define a symbol in a dynamic linkage section. */
104 struct elf_link_hash_entry *
105 _bfd_elf_define_linkage_sym (bfd *abfd,
106 struct bfd_link_info *info,
110 struct elf_link_hash_entry *h;
111 struct bfd_link_hash_entry *bh;
112 const struct elf_backend_data *bed;
114 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
117 /* Zap symbol defined in an as-needed lib that wasn't linked.
118 This is a symptom of a larger problem: Absolute symbols
119 defined in shared libraries can't be overridden, because we
120 lose the link to the bfd which is via the symbol section. */
121 h->root.type = bfd_link_hash_new;
127 bed = get_elf_backend_data (abfd);
128 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
129 sec, 0, NULL, FALSE, bed->collect,
132 h = (struct elf_link_hash_entry *) bh;
133 BFD_ASSERT (h != NULL);
136 h->root.linker_def = 1;
137 h->type = STT_OBJECT;
138 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
139 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
141 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
146 _bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
150 struct elf_link_hash_entry *h;
151 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
152 struct elf_link_hash_table *htab = elf_hash_table (info);
154 /* This function may be called more than once. */
155 if (htab->sgot != NULL)
158 flags = bed->dynamic_sec_flags;
160 s = bfd_make_section_anyway_with_flags (abfd,
161 (bed->rela_plts_and_copies_p
162 ? ".rela.got" : ".rel.got"),
163 (bed->dynamic_sec_flags
166 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
170 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
172 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
176 if (bed->want_got_plt)
178 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
180 || !bfd_set_section_alignment (abfd, s,
181 bed->s->log_file_align))
186 /* The first bit of the global offset table is the header. */
187 s->size += bed->got_header_size;
189 if (bed->want_got_sym)
191 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
192 (or .got.plt) section. We don't do this in the linker script
193 because we don't want to define the symbol if we are not creating
194 a global offset table. */
195 h = _bfd_elf_define_linkage_sym (abfd, info, s,
196 "_GLOBAL_OFFSET_TABLE_");
197 elf_hash_table (info)->hgot = h;
205 /* Create a strtab to hold the dynamic symbol names. */
207 _bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
209 struct elf_link_hash_table *hash_table;
211 hash_table = elf_hash_table (info);
212 if (hash_table->dynobj == NULL)
214 /* We may not set dynobj, an input file holding linker created
215 dynamic sections to abfd, which may be a dynamic object with
216 its own dynamic sections. We need to find a normal input file
217 to hold linker created sections if possible. */
218 if ((abfd->flags & (DYNAMIC | BFD_PLUGIN)) != 0)
221 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
223 & (DYNAMIC | BFD_LINKER_CREATED | BFD_PLUGIN)) == 0)
229 hash_table->dynobj = abfd;
232 if (hash_table->dynstr == NULL)
234 hash_table->dynstr = _bfd_elf_strtab_init ();
235 if (hash_table->dynstr == NULL)
241 /* Create some sections which will be filled in with dynamic linking
242 information. ABFD is an input file which requires dynamic sections
243 to be created. The dynamic sections take up virtual memory space
244 when the final executable is run, so we need to create them before
245 addresses are assigned to the output sections. We work out the
246 actual contents and size of these sections later. */
249 _bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
253 const struct elf_backend_data *bed;
254 struct elf_link_hash_entry *h;
256 if (! is_elf_hash_table (info->hash))
259 if (elf_hash_table (info)->dynamic_sections_created)
262 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
265 abfd = elf_hash_table (info)->dynobj;
266 bed = get_elf_backend_data (abfd);
268 flags = bed->dynamic_sec_flags;
270 /* A dynamically linked executable has a .interp section, but a
271 shared library does not. */
272 if (bfd_link_executable (info) && !info->nointerp)
274 s = bfd_make_section_anyway_with_flags (abfd, ".interp",
275 flags | SEC_READONLY);
280 /* Create sections to hold version informations. These are removed
281 if they are not needed. */
282 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
283 flags | SEC_READONLY);
285 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
288 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
289 flags | SEC_READONLY);
291 || ! bfd_set_section_alignment (abfd, s, 1))
294 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
295 flags | SEC_READONLY);
297 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
300 s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
301 flags | SEC_READONLY);
303 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
305 elf_hash_table (info)->dynsym = s;
307 s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
308 flags | SEC_READONLY);
312 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
314 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
317 /* The special symbol _DYNAMIC is always set to the start of the
318 .dynamic section. We could set _DYNAMIC in a linker script, but we
319 only want to define it if we are, in fact, creating a .dynamic
320 section. We don't want to define it if there is no .dynamic
321 section, since on some ELF platforms the start up code examines it
322 to decide how to initialize the process. */
323 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
324 elf_hash_table (info)->hdynamic = h;
330 s = bfd_make_section_anyway_with_flags (abfd, ".hash",
331 flags | SEC_READONLY);
333 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
335 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
338 if (info->emit_gnu_hash)
340 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
341 flags | SEC_READONLY);
343 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
345 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
346 4 32-bit words followed by variable count of 64-bit words, then
347 variable count of 32-bit words. */
348 if (bed->s->arch_size == 64)
349 elf_section_data (s)->this_hdr.sh_entsize = 0;
351 elf_section_data (s)->this_hdr.sh_entsize = 4;
354 /* Let the backend create the rest of the sections. This lets the
355 backend set the right flags. The backend will normally create
356 the .got and .plt sections. */
357 if (bed->elf_backend_create_dynamic_sections == NULL
358 || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
361 elf_hash_table (info)->dynamic_sections_created = TRUE;
366 /* Create dynamic sections when linking against a dynamic object. */
369 _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
371 flagword flags, pltflags;
372 struct elf_link_hash_entry *h;
374 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
375 struct elf_link_hash_table *htab = elf_hash_table (info);
377 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
378 .rel[a].bss sections. */
379 flags = bed->dynamic_sec_flags;
382 if (bed->plt_not_loaded)
383 /* We do not clear SEC_ALLOC here because we still want the OS to
384 allocate space for the section; it's just that there's nothing
385 to read in from the object file. */
386 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
388 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
389 if (bed->plt_readonly)
390 pltflags |= SEC_READONLY;
392 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
394 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
398 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
400 if (bed->want_plt_sym)
402 h = _bfd_elf_define_linkage_sym (abfd, info, s,
403 "_PROCEDURE_LINKAGE_TABLE_");
404 elf_hash_table (info)->hplt = h;
409 s = bfd_make_section_anyway_with_flags (abfd,
410 (bed->rela_plts_and_copies_p
411 ? ".rela.plt" : ".rel.plt"),
412 flags | SEC_READONLY);
414 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
418 if (! _bfd_elf_create_got_section (abfd, info))
421 if (bed->want_dynbss)
423 /* The .dynbss section is a place to put symbols which are defined
424 by dynamic objects, are referenced by regular objects, and are
425 not functions. We must allocate space for them in the process
426 image and use a R_*_COPY reloc to tell the dynamic linker to
427 initialize them at run time. The linker script puts the .dynbss
428 section into the .bss section of the final image. */
429 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
430 SEC_ALLOC | SEC_LINKER_CREATED);
435 if (bed->want_dynrelro)
437 /* Similarly, but for symbols that were originally in read-only
438 sections. This section doesn't really need to have contents,
439 but make it like other .data.rel.ro sections. */
440 s = bfd_make_section_anyway_with_flags (abfd, ".data.rel.ro",
447 /* The .rel[a].bss section holds copy relocs. This section is not
448 normally needed. We need to create it here, though, so that the
449 linker will map it to an output section. We can't just create it
450 only if we need it, because we will not know whether we need it
451 until we have seen all the input files, and the first time the
452 main linker code calls BFD after examining all the input files
453 (size_dynamic_sections) the input sections have already been
454 mapped to the output sections. If the section turns out not to
455 be needed, we can discard it later. We will never need this
456 section when generating a shared object, since they do not use
458 if (bfd_link_executable (info))
460 s = bfd_make_section_anyway_with_flags (abfd,
461 (bed->rela_plts_and_copies_p
462 ? ".rela.bss" : ".rel.bss"),
463 flags | SEC_READONLY);
465 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
469 if (bed->want_dynrelro)
471 s = (bfd_make_section_anyway_with_flags
472 (abfd, (bed->rela_plts_and_copies_p
473 ? ".rela.data.rel.ro" : ".rel.data.rel.ro"),
474 flags | SEC_READONLY));
476 || ! bfd_set_section_alignment (abfd, s,
477 bed->s->log_file_align))
479 htab->sreldynrelro = s;
487 /* Record a new dynamic symbol. We record the dynamic symbols as we
488 read the input files, since we need to have a list of all of them
489 before we can determine the final sizes of the output sections.
490 Note that we may actually call this function even though we are not
491 going to output any dynamic symbols; in some cases we know that a
492 symbol should be in the dynamic symbol table, but only if there is
496 bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
497 struct elf_link_hash_entry *h)
499 if (h->dynindx == -1)
501 struct elf_strtab_hash *dynstr;
506 /* XXX: The ABI draft says the linker must turn hidden and
507 internal symbols into STB_LOCAL symbols when producing the
508 DSO. However, if ld.so honors st_other in the dynamic table,
509 this would not be necessary. */
510 switch (ELF_ST_VISIBILITY (h->other))
514 if (h->root.type != bfd_link_hash_undefined
515 && h->root.type != bfd_link_hash_undefweak)
518 if (!elf_hash_table (info)->is_relocatable_executable)
526 h->dynindx = elf_hash_table (info)->dynsymcount;
527 ++elf_hash_table (info)->dynsymcount;
529 dynstr = elf_hash_table (info)->dynstr;
532 /* Create a strtab to hold the dynamic symbol names. */
533 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
538 /* We don't put any version information in the dynamic string
540 name = h->root.root.string;
541 p = strchr (name, ELF_VER_CHR);
543 /* We know that the p points into writable memory. In fact,
544 there are only a few symbols that have read-only names, being
545 those like _GLOBAL_OFFSET_TABLE_ that are created specially
546 by the backends. Most symbols will have names pointing into
547 an ELF string table read from a file, or to objalloc memory. */
550 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
555 if (indx == (size_t) -1)
557 h->dynstr_index = indx;
563 /* Mark a symbol dynamic. */
566 bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
567 struct elf_link_hash_entry *h,
568 Elf_Internal_Sym *sym)
570 struct bfd_elf_dynamic_list *d = info->dynamic_list;
572 /* It may be called more than once on the same H. */
573 if(h->dynamic || bfd_link_relocatable (info))
576 if ((info->dynamic_data
577 && (h->type == STT_OBJECT
578 || h->type == STT_COMMON
580 && (ELF_ST_TYPE (sym->st_info) == STT_OBJECT
581 || ELF_ST_TYPE (sym->st_info) == STT_COMMON))))
583 && h->root.type == bfd_link_hash_new
584 && (*d->match) (&d->head, NULL, h->root.root.string)))
588 /* Record an assignment to a symbol made by a linker script. We need
589 this in case some dynamic object refers to this symbol. */
592 bfd_elf_record_link_assignment (bfd *output_bfd,
593 struct bfd_link_info *info,
598 struct elf_link_hash_entry *h, *hv;
599 struct elf_link_hash_table *htab;
600 const struct elf_backend_data *bed;
602 if (!is_elf_hash_table (info->hash))
605 htab = elf_hash_table (info);
606 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
610 if (h->root.type == bfd_link_hash_warning)
611 h = (struct elf_link_hash_entry *) h->root.u.i.link;
613 if (h->versioned == unknown)
615 /* Set versioned if symbol version is unknown. */
616 char *version = strrchr (name, ELF_VER_CHR);
619 if (version > name && version[-1] != ELF_VER_CHR)
620 h->versioned = versioned_hidden;
622 h->versioned = versioned;
626 switch (h->root.type)
628 case bfd_link_hash_defined:
629 case bfd_link_hash_defweak:
630 case bfd_link_hash_common:
632 case bfd_link_hash_undefweak:
633 case bfd_link_hash_undefined:
634 /* Since we're defining the symbol, don't let it seem to have not
635 been defined. record_dynamic_symbol and size_dynamic_sections
636 may depend on this. */
637 h->root.type = bfd_link_hash_new;
638 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
639 bfd_link_repair_undef_list (&htab->root);
641 case bfd_link_hash_new:
642 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
645 case bfd_link_hash_indirect:
646 /* We had a versioned symbol in a dynamic library. We make the
647 the versioned symbol point to this one. */
648 bed = get_elf_backend_data (output_bfd);
650 while (hv->root.type == bfd_link_hash_indirect
651 || hv->root.type == bfd_link_hash_warning)
652 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
653 /* We don't need to update h->root.u since linker will set them
655 h->root.type = bfd_link_hash_undefined;
656 hv->root.type = bfd_link_hash_indirect;
657 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
658 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
665 /* If this symbol is being provided by the linker script, and it is
666 currently defined by a dynamic object, but not by a regular
667 object, then mark it as undefined so that the generic linker will
668 force the correct value. */
672 h->root.type = bfd_link_hash_undefined;
674 /* If this symbol is not being provided by the linker script, and it is
675 currently defined by a dynamic object, but not by a regular object,
676 then clear out any version information because the symbol will not be
677 associated with the dynamic object any more. */
681 h->verinfo.verdef = NULL;
683 /* Make sure this symbol is not garbage collected. */
690 bed = get_elf_backend_data (output_bfd);
691 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
692 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
693 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
696 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
698 if (!bfd_link_relocatable (info)
700 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
701 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
706 || bfd_link_dll (info)
707 || elf_hash_table (info)->is_relocatable_executable)
710 if (! bfd_elf_link_record_dynamic_symbol (info, h))
713 /* If this is a weak defined symbol, and we know a corresponding
714 real symbol from the same dynamic object, make sure the real
715 symbol is also made into a dynamic symbol. */
716 if (h->u.weakdef != NULL
717 && h->u.weakdef->dynindx == -1)
719 if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
727 /* Record a new local dynamic symbol. Returns 0 on failure, 1 on
728 success, and 2 on a failure caused by attempting to record a symbol
729 in a discarded section, eg. a discarded link-once section symbol. */
732 bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
737 struct elf_link_local_dynamic_entry *entry;
738 struct elf_link_hash_table *eht;
739 struct elf_strtab_hash *dynstr;
742 Elf_External_Sym_Shndx eshndx;
743 char esym[sizeof (Elf64_External_Sym)];
745 if (! is_elf_hash_table (info->hash))
748 /* See if the entry exists already. */
749 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
750 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
753 amt = sizeof (*entry);
754 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
758 /* Go find the symbol, so that we can find it's name. */
759 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
760 1, input_indx, &entry->isym, esym, &eshndx))
762 bfd_release (input_bfd, entry);
766 if (entry->isym.st_shndx != SHN_UNDEF
767 && entry->isym.st_shndx < SHN_LORESERVE)
771 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
772 if (s == NULL || bfd_is_abs_section (s->output_section))
774 /* We can still bfd_release here as nothing has done another
775 bfd_alloc. We can't do this later in this function. */
776 bfd_release (input_bfd, entry);
781 name = (bfd_elf_string_from_elf_section
782 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
783 entry->isym.st_name));
785 dynstr = elf_hash_table (info)->dynstr;
788 /* Create a strtab to hold the dynamic symbol names. */
789 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
794 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
795 if (dynstr_index == (size_t) -1)
797 entry->isym.st_name = dynstr_index;
799 eht = elf_hash_table (info);
801 entry->next = eht->dynlocal;
802 eht->dynlocal = entry;
803 entry->input_bfd = input_bfd;
804 entry->input_indx = input_indx;
807 /* Whatever binding the symbol had before, it's now local. */
809 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
811 /* The dynindx will be set at the end of size_dynamic_sections. */
816 /* Return the dynindex of a local dynamic symbol. */
819 _bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
823 struct elf_link_local_dynamic_entry *e;
825 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
826 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
831 /* This function is used to renumber the dynamic symbols, if some of
832 them are removed because they are marked as local. This is called
833 via elf_link_hash_traverse. */
836 elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
839 size_t *count = (size_t *) data;
844 if (h->dynindx != -1)
845 h->dynindx = ++(*count);
851 /* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
852 STB_LOCAL binding. */
855 elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
858 size_t *count = (size_t *) data;
860 if (!h->forced_local)
863 if (h->dynindx != -1)
864 h->dynindx = ++(*count);
869 /* Return true if the dynamic symbol for a given section should be
870 omitted when creating a shared library. */
872 _bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
873 struct bfd_link_info *info,
876 struct elf_link_hash_table *htab;
879 switch (elf_section_data (p)->this_hdr.sh_type)
883 /* If sh_type is yet undecided, assume it could be
884 SHT_PROGBITS/SHT_NOBITS. */
886 htab = elf_hash_table (info);
887 if (p == htab->tls_sec)
890 if (htab->text_index_section != NULL)
891 return p != htab->text_index_section && p != htab->data_index_section;
893 return (htab->dynobj != NULL
894 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
895 && ip->output_section == p);
897 /* There shouldn't be section relative relocations
898 against any other section. */
904 /* Assign dynsym indices. In a shared library we generate a section
905 symbol for each output section, which come first. Next come symbols
906 which have been forced to local binding. Then all of the back-end
907 allocated local dynamic syms, followed by the rest of the global
911 _bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
912 struct bfd_link_info *info,
913 unsigned long *section_sym_count)
915 unsigned long dynsymcount = 0;
917 if (bfd_link_pic (info)
918 || elf_hash_table (info)->is_relocatable_executable)
920 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
922 for (p = output_bfd->sections; p ; p = p->next)
923 if ((p->flags & SEC_EXCLUDE) == 0
924 && (p->flags & SEC_ALLOC) != 0
925 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
926 elf_section_data (p)->dynindx = ++dynsymcount;
928 elf_section_data (p)->dynindx = 0;
930 *section_sym_count = dynsymcount;
932 elf_link_hash_traverse (elf_hash_table (info),
933 elf_link_renumber_local_hash_table_dynsyms,
936 if (elf_hash_table (info)->dynlocal)
938 struct elf_link_local_dynamic_entry *p;
939 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
940 p->dynindx = ++dynsymcount;
942 elf_hash_table (info)->local_dynsymcount = dynsymcount;
944 elf_link_hash_traverse (elf_hash_table (info),
945 elf_link_renumber_hash_table_dynsyms,
948 /* There is an unused NULL entry at the head of the table which we
949 must account for in our count even if the table is empty since it
950 is intended for the mandatory DT_SYMTAB tag (.dynsym section) in
954 elf_hash_table (info)->dynsymcount = dynsymcount;
958 /* Merge st_other field. */
961 elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
962 const Elf_Internal_Sym *isym, asection *sec,
963 bfd_boolean definition, bfd_boolean dynamic)
965 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
967 /* If st_other has a processor-specific meaning, specific
968 code might be needed here. */
969 if (bed->elf_backend_merge_symbol_attribute)
970 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
975 unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
976 unsigned hvis = ELF_ST_VISIBILITY (h->other);
978 /* Keep the most constraining visibility. Leave the remainder
979 of the st_other field to elf_backend_merge_symbol_attribute. */
980 if (symvis - 1 < hvis - 1)
981 h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
984 && ELF_ST_VISIBILITY (isym->st_other) != STV_DEFAULT
985 && (sec->flags & SEC_READONLY) == 0)
986 h->protected_def = 1;
989 /* This function is called when we want to merge a new symbol with an
990 existing symbol. It handles the various cases which arise when we
991 find a definition in a dynamic object, or when there is already a
992 definition in a dynamic object. The new symbol is described by
993 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
994 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
995 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
996 of an old common symbol. We set OVERRIDE if the old symbol is
997 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
998 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
999 to change. By OK to change, we mean that we shouldn't warn if the
1000 type or size does change. */
1003 _bfd_elf_merge_symbol (bfd *abfd,
1004 struct bfd_link_info *info,
1006 Elf_Internal_Sym *sym,
1009 struct elf_link_hash_entry **sym_hash,
1011 bfd_boolean *pold_weak,
1012 unsigned int *pold_alignment,
1014 bfd_boolean *override,
1015 bfd_boolean *type_change_ok,
1016 bfd_boolean *size_change_ok,
1017 bfd_boolean *matched)
1019 asection *sec, *oldsec;
1020 struct elf_link_hash_entry *h;
1021 struct elf_link_hash_entry *hi;
1022 struct elf_link_hash_entry *flip;
1025 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
1026 bfd_boolean newweak, oldweak, newfunc, oldfunc;
1027 const struct elf_backend_data *bed;
1034 bind = ELF_ST_BIND (sym->st_info);
1036 if (! bfd_is_und_section (sec))
1037 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
1039 h = ((struct elf_link_hash_entry *)
1040 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
1045 bed = get_elf_backend_data (abfd);
1047 /* NEW_VERSION is the symbol version of the new symbol. */
1048 if (h->versioned != unversioned)
1050 /* Symbol version is unknown or versioned. */
1051 new_version = strrchr (name, ELF_VER_CHR);
1054 if (h->versioned == unknown)
1056 if (new_version > name && new_version[-1] != ELF_VER_CHR)
1057 h->versioned = versioned_hidden;
1059 h->versioned = versioned;
1062 if (new_version[0] == '\0')
1066 h->versioned = unversioned;
1071 /* For merging, we only care about real symbols. But we need to make
1072 sure that indirect symbol dynamic flags are updated. */
1074 while (h->root.type == bfd_link_hash_indirect
1075 || h->root.type == bfd_link_hash_warning)
1076 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1080 if (hi == h || h->root.type == bfd_link_hash_new)
1084 /* OLD_HIDDEN is true if the existing symbol is only visible
1085 to the symbol with the same symbol version. NEW_HIDDEN is
1086 true if the new symbol is only visible to the symbol with
1087 the same symbol version. */
1088 bfd_boolean old_hidden = h->versioned == versioned_hidden;
1089 bfd_boolean new_hidden = hi->versioned == versioned_hidden;
1090 if (!old_hidden && !new_hidden)
1091 /* The new symbol matches the existing symbol if both
1096 /* OLD_VERSION is the symbol version of the existing
1100 if (h->versioned >= versioned)
1101 old_version = strrchr (h->root.root.string,
1106 /* The new symbol matches the existing symbol if they
1107 have the same symbol version. */
1108 *matched = (old_version == new_version
1109 || (old_version != NULL
1110 && new_version != NULL
1111 && strcmp (old_version, new_version) == 0));
1116 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
1121 switch (h->root.type)
1126 case bfd_link_hash_undefined:
1127 case bfd_link_hash_undefweak:
1128 oldbfd = h->root.u.undef.abfd;
1131 case bfd_link_hash_defined:
1132 case bfd_link_hash_defweak:
1133 oldbfd = h->root.u.def.section->owner;
1134 oldsec = h->root.u.def.section;
1137 case bfd_link_hash_common:
1138 oldbfd = h->root.u.c.p->section->owner;
1139 oldsec = h->root.u.c.p->section;
1141 *pold_alignment = h->root.u.c.p->alignment_power;
1144 if (poldbfd && *poldbfd == NULL)
1147 /* Differentiate strong and weak symbols. */
1148 newweak = bind == STB_WEAK;
1149 oldweak = (h->root.type == bfd_link_hash_defweak
1150 || h->root.type == bfd_link_hash_undefweak);
1152 *pold_weak = oldweak;
1154 /* This code is for coping with dynamic objects, and is only useful
1155 if we are doing an ELF link. */
1156 if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
1159 /* We have to check it for every instance since the first few may be
1160 references and not all compilers emit symbol type for undefined
1162 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
1164 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
1165 respectively, is from a dynamic object. */
1167 newdyn = (abfd->flags & DYNAMIC) != 0;
1169 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
1170 syms and defined syms in dynamic libraries respectively.
1171 ref_dynamic on the other hand can be set for a symbol defined in
1172 a dynamic library, and def_dynamic may not be set; When the
1173 definition in a dynamic lib is overridden by a definition in the
1174 executable use of the symbol in the dynamic lib becomes a
1175 reference to the executable symbol. */
1178 if (bfd_is_und_section (sec))
1180 if (bind != STB_WEAK)
1182 h->ref_dynamic_nonweak = 1;
1183 hi->ref_dynamic_nonweak = 1;
1188 /* Update the existing symbol only if they match. */
1191 hi->dynamic_def = 1;
1195 /* If we just created the symbol, mark it as being an ELF symbol.
1196 Other than that, there is nothing to do--there is no merge issue
1197 with a newly defined symbol--so we just return. */
1199 if (h->root.type == bfd_link_hash_new)
1205 /* In cases involving weak versioned symbols, we may wind up trying
1206 to merge a symbol with itself. Catch that here, to avoid the
1207 confusion that results if we try to override a symbol with
1208 itself. The additional tests catch cases like
1209 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1210 dynamic object, which we do want to handle here. */
1212 && (newweak || oldweak)
1213 && ((abfd->flags & DYNAMIC) == 0
1214 || !h->def_regular))
1219 olddyn = (oldbfd->flags & DYNAMIC) != 0;
1220 else if (oldsec != NULL)
1222 /* This handles the special SHN_MIPS_{TEXT,DATA} section
1223 indices used by MIPS ELF. */
1224 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
1227 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1228 respectively, appear to be a definition rather than reference. */
1230 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
1232 olddef = (h->root.type != bfd_link_hash_undefined
1233 && h->root.type != bfd_link_hash_undefweak
1234 && h->root.type != bfd_link_hash_common);
1236 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1237 respectively, appear to be a function. */
1239 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1240 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1242 oldfunc = (h->type != STT_NOTYPE
1243 && bed->is_function_type (h->type));
1245 if (!(newfunc && oldfunc)
1246 && ELF_ST_TYPE (sym->st_info) != h->type
1247 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1248 && h->type != STT_NOTYPE
1249 && (newdef || bfd_is_com_section (sec))
1250 && (olddef || h->root.type == bfd_link_hash_common))
1252 /* If creating a default indirect symbol ("foo" or "foo@") from
1253 a dynamic versioned definition ("foo@@") skip doing so if
1254 there is an existing regular definition with a different
1255 type. We don't want, for example, a "time" variable in the
1256 executable overriding a "time" function in a shared library. */
1264 /* When adding a symbol from a regular object file after we have
1265 created indirect symbols, undo the indirection and any
1272 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1273 h->forced_local = 0;
1277 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1279 h->root.type = bfd_link_hash_undefined;
1280 h->root.u.undef.abfd = abfd;
1284 h->root.type = bfd_link_hash_new;
1285 h->root.u.undef.abfd = NULL;
1291 /* Check TLS symbols. We don't check undefined symbols introduced
1292 by "ld -u" which have no type (and oldbfd NULL), and we don't
1293 check symbols from plugins because they also have no type. */
1295 && (oldbfd->flags & BFD_PLUGIN) == 0
1296 && (abfd->flags & BFD_PLUGIN) == 0
1297 && ELF_ST_TYPE (sym->st_info) != h->type
1298 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
1301 bfd_boolean ntdef, tdef;
1302 asection *ntsec, *tsec;
1304 if (h->type == STT_TLS)
1325 /* xgettext:c-format */
1326 (_("%s: TLS definition in %B section %A "
1327 "mismatches non-TLS definition in %B section %A"),
1328 h->root.root.string, tbfd, tsec, ntbfd, ntsec);
1329 else if (!tdef && !ntdef)
1331 /* xgettext:c-format */
1332 (_("%s: TLS reference in %B "
1333 "mismatches non-TLS reference in %B"),
1334 h->root.root.string, tbfd, ntbfd);
1337 /* xgettext:c-format */
1338 (_("%s: TLS definition in %B section %A "
1339 "mismatches non-TLS reference in %B"),
1340 h->root.root.string, tbfd, tsec, ntbfd);
1343 /* xgettext:c-format */
1344 (_("%s: TLS reference in %B "
1345 "mismatches non-TLS definition in %B section %A"),
1346 h->root.root.string, tbfd, ntbfd, ntsec);
1348 bfd_set_error (bfd_error_bad_value);
1352 /* If the old symbol has non-default visibility, we ignore the new
1353 definition from a dynamic object. */
1355 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1356 && !bfd_is_und_section (sec))
1359 /* Make sure this symbol is dynamic. */
1361 hi->ref_dynamic = 1;
1362 /* A protected symbol has external availability. Make sure it is
1363 recorded as dynamic.
1365 FIXME: Should we check type and size for protected symbol? */
1366 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
1367 return bfd_elf_link_record_dynamic_symbol (info, h);
1372 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
1375 /* If the new symbol with non-default visibility comes from a
1376 relocatable file and the old definition comes from a dynamic
1377 object, we remove the old definition. */
1378 if (hi->root.type == bfd_link_hash_indirect)
1380 /* Handle the case where the old dynamic definition is
1381 default versioned. We need to copy the symbol info from
1382 the symbol with default version to the normal one if it
1383 was referenced before. */
1386 hi->root.type = h->root.type;
1387 h->root.type = bfd_link_hash_indirect;
1388 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
1390 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1391 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1393 /* If the new symbol is hidden or internal, completely undo
1394 any dynamic link state. */
1395 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1396 h->forced_local = 0;
1403 /* FIXME: Should we check type and size for protected symbol? */
1413 /* If the old symbol was undefined before, then it will still be
1414 on the undefs list. If the new symbol is undefined or
1415 common, we can't make it bfd_link_hash_new here, because new
1416 undefined or common symbols will be added to the undefs list
1417 by _bfd_generic_link_add_one_symbol. Symbols may not be
1418 added twice to the undefs list. Also, if the new symbol is
1419 undefweak then we don't want to lose the strong undef. */
1420 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1422 h->root.type = bfd_link_hash_undefined;
1423 h->root.u.undef.abfd = abfd;
1427 h->root.type = bfd_link_hash_new;
1428 h->root.u.undef.abfd = NULL;
1431 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1433 /* If the new symbol is hidden or internal, completely undo
1434 any dynamic link state. */
1435 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1436 h->forced_local = 0;
1442 /* FIXME: Should we check type and size for protected symbol? */
1448 /* If a new weak symbol definition comes from a regular file and the
1449 old symbol comes from a dynamic library, we treat the new one as
1450 strong. Similarly, an old weak symbol definition from a regular
1451 file is treated as strong when the new symbol comes from a dynamic
1452 library. Further, an old weak symbol from a dynamic library is
1453 treated as strong if the new symbol is from a dynamic library.
1454 This reflects the way glibc's ld.so works.
1456 Do this before setting *type_change_ok or *size_change_ok so that
1457 we warn properly when dynamic library symbols are overridden. */
1459 if (newdef && !newdyn && olddyn)
1461 if (olddef && newdyn)
1464 /* Allow changes between different types of function symbol. */
1465 if (newfunc && oldfunc)
1466 *type_change_ok = TRUE;
1468 /* It's OK to change the type if either the existing symbol or the
1469 new symbol is weak. A type change is also OK if the old symbol
1470 is undefined and the new symbol is defined. */
1475 && h->root.type == bfd_link_hash_undefined))
1476 *type_change_ok = TRUE;
1478 /* It's OK to change the size if either the existing symbol or the
1479 new symbol is weak, or if the old symbol is undefined. */
1482 || h->root.type == bfd_link_hash_undefined)
1483 *size_change_ok = TRUE;
1485 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1486 symbol, respectively, appears to be a common symbol in a dynamic
1487 object. If a symbol appears in an uninitialized section, and is
1488 not weak, and is not a function, then it may be a common symbol
1489 which was resolved when the dynamic object was created. We want
1490 to treat such symbols specially, because they raise special
1491 considerations when setting the symbol size: if the symbol
1492 appears as a common symbol in a regular object, and the size in
1493 the regular object is larger, we must make sure that we use the
1494 larger size. This problematic case can always be avoided in C,
1495 but it must be handled correctly when using Fortran shared
1498 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1499 likewise for OLDDYNCOMMON and OLDDEF.
1501 Note that this test is just a heuristic, and that it is quite
1502 possible to have an uninitialized symbol in a shared object which
1503 is really a definition, rather than a common symbol. This could
1504 lead to some minor confusion when the symbol really is a common
1505 symbol in some regular object. However, I think it will be
1511 && (sec->flags & SEC_ALLOC) != 0
1512 && (sec->flags & SEC_LOAD) == 0
1515 newdyncommon = TRUE;
1517 newdyncommon = FALSE;
1521 && h->root.type == bfd_link_hash_defined
1523 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1524 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1527 olddyncommon = TRUE;
1529 olddyncommon = FALSE;
1531 /* We now know everything about the old and new symbols. We ask the
1532 backend to check if we can merge them. */
1533 if (bed->merge_symbol != NULL)
1535 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1540 /* If both the old and the new symbols look like common symbols in a
1541 dynamic object, set the size of the symbol to the larger of the
1546 && sym->st_size != h->size)
1548 /* Since we think we have two common symbols, issue a multiple
1549 common warning if desired. Note that we only warn if the
1550 size is different. If the size is the same, we simply let
1551 the old symbol override the new one as normally happens with
1552 symbols defined in dynamic objects. */
1554 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1555 bfd_link_hash_common, sym->st_size);
1556 if (sym->st_size > h->size)
1557 h->size = sym->st_size;
1559 *size_change_ok = TRUE;
1562 /* If we are looking at a dynamic object, and we have found a
1563 definition, we need to see if the symbol was already defined by
1564 some other object. If so, we want to use the existing
1565 definition, and we do not want to report a multiple symbol
1566 definition error; we do this by clobbering *PSEC to be
1567 bfd_und_section_ptr.
1569 We treat a common symbol as a definition if the symbol in the
1570 shared library is a function, since common symbols always
1571 represent variables; this can cause confusion in principle, but
1572 any such confusion would seem to indicate an erroneous program or
1573 shared library. We also permit a common symbol in a regular
1574 object to override a weak symbol in a shared object. */
1579 || (h->root.type == bfd_link_hash_common
1580 && (newweak || newfunc))))
1584 newdyncommon = FALSE;
1586 *psec = sec = bfd_und_section_ptr;
1587 *size_change_ok = TRUE;
1589 /* If we get here when the old symbol is a common symbol, then
1590 we are explicitly letting it override a weak symbol or
1591 function in a dynamic object, and we don't want to warn about
1592 a type change. If the old symbol is a defined symbol, a type
1593 change warning may still be appropriate. */
1595 if (h->root.type == bfd_link_hash_common)
1596 *type_change_ok = TRUE;
1599 /* Handle the special case of an old common symbol merging with a
1600 new symbol which looks like a common symbol in a shared object.
1601 We change *PSEC and *PVALUE to make the new symbol look like a
1602 common symbol, and let _bfd_generic_link_add_one_symbol do the
1606 && h->root.type == bfd_link_hash_common)
1610 newdyncommon = FALSE;
1611 *pvalue = sym->st_size;
1612 *psec = sec = bed->common_section (oldsec);
1613 *size_change_ok = TRUE;
1616 /* Skip weak definitions of symbols that are already defined. */
1617 if (newdef && olddef && newweak)
1619 /* Don't skip new non-IR weak syms. */
1620 if (!(oldbfd != NULL
1621 && (oldbfd->flags & BFD_PLUGIN) != 0
1622 && (abfd->flags & BFD_PLUGIN) == 0))
1628 /* Merge st_other. If the symbol already has a dynamic index,
1629 but visibility says it should not be visible, turn it into a
1631 elf_merge_st_other (abfd, h, sym, sec, newdef, newdyn);
1632 if (h->dynindx != -1)
1633 switch (ELF_ST_VISIBILITY (h->other))
1637 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1642 /* If the old symbol is from a dynamic object, and the new symbol is
1643 a definition which is not from a dynamic object, then the new
1644 symbol overrides the old symbol. Symbols from regular files
1645 always take precedence over symbols from dynamic objects, even if
1646 they are defined after the dynamic object in the link.
1648 As above, we again permit a common symbol in a regular object to
1649 override a definition in a shared object if the shared object
1650 symbol is a function or is weak. */
1655 || (bfd_is_com_section (sec)
1656 && (oldweak || oldfunc)))
1661 /* Change the hash table entry to undefined, and let
1662 _bfd_generic_link_add_one_symbol do the right thing with the
1665 h->root.type = bfd_link_hash_undefined;
1666 h->root.u.undef.abfd = h->root.u.def.section->owner;
1667 *size_change_ok = TRUE;
1670 olddyncommon = FALSE;
1672 /* We again permit a type change when a common symbol may be
1673 overriding a function. */
1675 if (bfd_is_com_section (sec))
1679 /* If a common symbol overrides a function, make sure
1680 that it isn't defined dynamically nor has type
1683 h->type = STT_NOTYPE;
1685 *type_change_ok = TRUE;
1688 if (hi->root.type == bfd_link_hash_indirect)
1691 /* This union may have been set to be non-NULL when this symbol
1692 was seen in a dynamic object. We must force the union to be
1693 NULL, so that it is correct for a regular symbol. */
1694 h->verinfo.vertree = NULL;
1697 /* Handle the special case of a new common symbol merging with an
1698 old symbol that looks like it might be a common symbol defined in
1699 a shared object. Note that we have already handled the case in
1700 which a new common symbol should simply override the definition
1701 in the shared library. */
1704 && bfd_is_com_section (sec)
1707 /* It would be best if we could set the hash table entry to a
1708 common symbol, but we don't know what to use for the section
1709 or the alignment. */
1710 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1711 bfd_link_hash_common, sym->st_size);
1713 /* If the presumed common symbol in the dynamic object is
1714 larger, pretend that the new symbol has its size. */
1716 if (h->size > *pvalue)
1719 /* We need to remember the alignment required by the symbol
1720 in the dynamic object. */
1721 BFD_ASSERT (pold_alignment);
1722 *pold_alignment = h->root.u.def.section->alignment_power;
1725 olddyncommon = FALSE;
1727 h->root.type = bfd_link_hash_undefined;
1728 h->root.u.undef.abfd = h->root.u.def.section->owner;
1730 *size_change_ok = TRUE;
1731 *type_change_ok = TRUE;
1733 if (hi->root.type == bfd_link_hash_indirect)
1736 h->verinfo.vertree = NULL;
1741 /* Handle the case where we had a versioned symbol in a dynamic
1742 library and now find a definition in a normal object. In this
1743 case, we make the versioned symbol point to the normal one. */
1744 flip->root.type = h->root.type;
1745 flip->root.u.undef.abfd = h->root.u.undef.abfd;
1746 h->root.type = bfd_link_hash_indirect;
1747 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
1748 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
1752 flip->ref_dynamic = 1;
1759 /* This function is called to create an indirect symbol from the
1760 default for the symbol with the default version if needed. The
1761 symbol is described by H, NAME, SYM, SEC, and VALUE. We
1762 set DYNSYM if the new indirect symbol is dynamic. */
1765 _bfd_elf_add_default_symbol (bfd *abfd,
1766 struct bfd_link_info *info,
1767 struct elf_link_hash_entry *h,
1769 Elf_Internal_Sym *sym,
1773 bfd_boolean *dynsym)
1775 bfd_boolean type_change_ok;
1776 bfd_boolean size_change_ok;
1779 struct elf_link_hash_entry *hi;
1780 struct bfd_link_hash_entry *bh;
1781 const struct elf_backend_data *bed;
1782 bfd_boolean collect;
1783 bfd_boolean dynamic;
1784 bfd_boolean override;
1786 size_t len, shortlen;
1788 bfd_boolean matched;
1790 if (h->versioned == unversioned || h->versioned == versioned_hidden)
1793 /* If this symbol has a version, and it is the default version, we
1794 create an indirect symbol from the default name to the fully
1795 decorated name. This will cause external references which do not
1796 specify a version to be bound to this version of the symbol. */
1797 p = strchr (name, ELF_VER_CHR);
1798 if (h->versioned == unknown)
1802 h->versioned = unversioned;
1807 if (p[1] != ELF_VER_CHR)
1809 h->versioned = versioned_hidden;
1813 h->versioned = versioned;
1818 /* PR ld/19073: We may see an unversioned definition after the
1824 bed = get_elf_backend_data (abfd);
1825 collect = bed->collect;
1826 dynamic = (abfd->flags & DYNAMIC) != 0;
1828 shortlen = p - name;
1829 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
1830 if (shortname == NULL)
1832 memcpy (shortname, name, shortlen);
1833 shortname[shortlen] = '\0';
1835 /* We are going to create a new symbol. Merge it with any existing
1836 symbol with this name. For the purposes of the merge, act as
1837 though we were defining the symbol we just defined, although we
1838 actually going to define an indirect symbol. */
1839 type_change_ok = FALSE;
1840 size_change_ok = FALSE;
1843 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1844 &hi, poldbfd, NULL, NULL, &skip, &override,
1845 &type_change_ok, &size_change_ok, &matched))
1851 if (hi->def_regular)
1853 /* If the undecorated symbol will have a version added by a
1854 script different to H, then don't indirect to/from the
1855 undecorated symbol. This isn't ideal because we may not yet
1856 have seen symbol versions, if given by a script on the
1857 command line rather than via --version-script. */
1858 if (hi->verinfo.vertree == NULL && info->version_info != NULL)
1863 = bfd_find_version_for_sym (info->version_info,
1864 hi->root.root.string, &hide);
1865 if (hi->verinfo.vertree != NULL && hide)
1867 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
1871 if (hi->verinfo.vertree != NULL
1872 && strcmp (p + 1 + (p[1] == '@'), hi->verinfo.vertree->name) != 0)
1878 /* Add the default symbol if not performing a relocatable link. */
1879 if (! bfd_link_relocatable (info))
1882 if (! (_bfd_generic_link_add_one_symbol
1883 (info, abfd, shortname, BSF_INDIRECT,
1884 bfd_ind_section_ptr,
1885 0, name, FALSE, collect, &bh)))
1887 hi = (struct elf_link_hash_entry *) bh;
1892 /* In this case the symbol named SHORTNAME is overriding the
1893 indirect symbol we want to add. We were planning on making
1894 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1895 is the name without a version. NAME is the fully versioned
1896 name, and it is the default version.
1898 Overriding means that we already saw a definition for the
1899 symbol SHORTNAME in a regular object, and it is overriding
1900 the symbol defined in the dynamic object.
1902 When this happens, we actually want to change NAME, the
1903 symbol we just added, to refer to SHORTNAME. This will cause
1904 references to NAME in the shared object to become references
1905 to SHORTNAME in the regular object. This is what we expect
1906 when we override a function in a shared object: that the
1907 references in the shared object will be mapped to the
1908 definition in the regular object. */
1910 while (hi->root.type == bfd_link_hash_indirect
1911 || hi->root.type == bfd_link_hash_warning)
1912 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1914 h->root.type = bfd_link_hash_indirect;
1915 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1919 hi->ref_dynamic = 1;
1923 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
1928 /* Now set HI to H, so that the following code will set the
1929 other fields correctly. */
1933 /* Check if HI is a warning symbol. */
1934 if (hi->root.type == bfd_link_hash_warning)
1935 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1937 /* If there is a duplicate definition somewhere, then HI may not
1938 point to an indirect symbol. We will have reported an error to
1939 the user in that case. */
1941 if (hi->root.type == bfd_link_hash_indirect)
1943 struct elf_link_hash_entry *ht;
1945 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
1946 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
1948 /* A reference to the SHORTNAME symbol from a dynamic library
1949 will be satisfied by the versioned symbol at runtime. In
1950 effect, we have a reference to the versioned symbol. */
1951 ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1952 hi->dynamic_def |= ht->dynamic_def;
1954 /* See if the new flags lead us to realize that the symbol must
1960 if (! bfd_link_executable (info)
1967 if (hi->ref_regular)
1973 /* We also need to define an indirection from the nondefault version
1977 len = strlen (name);
1978 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
1979 if (shortname == NULL)
1981 memcpy (shortname, name, shortlen);
1982 memcpy (shortname + shortlen, p + 1, len - shortlen);
1984 /* Once again, merge with any existing symbol. */
1985 type_change_ok = FALSE;
1986 size_change_ok = FALSE;
1988 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1989 &hi, poldbfd, NULL, NULL, &skip, &override,
1990 &type_change_ok, &size_change_ok, &matched))
1998 /* Here SHORTNAME is a versioned name, so we don't expect to see
1999 the type of override we do in the case above unless it is
2000 overridden by a versioned definition. */
2001 if (hi->root.type != bfd_link_hash_defined
2002 && hi->root.type != bfd_link_hash_defweak)
2004 /* xgettext:c-format */
2005 (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
2011 if (! (_bfd_generic_link_add_one_symbol
2012 (info, abfd, shortname, BSF_INDIRECT,
2013 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
2015 hi = (struct elf_link_hash_entry *) bh;
2017 /* If there is a duplicate definition somewhere, then HI may not
2018 point to an indirect symbol. We will have reported an error
2019 to the user in that case. */
2021 if (hi->root.type == bfd_link_hash_indirect)
2023 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
2024 h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
2025 hi->dynamic_def |= h->dynamic_def;
2027 /* See if the new flags lead us to realize that the symbol
2033 if (! bfd_link_executable (info)
2039 if (hi->ref_regular)
2049 /* This routine is used to export all defined symbols into the dynamic
2050 symbol table. It is called via elf_link_hash_traverse. */
2053 _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
2055 struct elf_info_failed *eif = (struct elf_info_failed *) data;
2057 /* Ignore indirect symbols. These are added by the versioning code. */
2058 if (h->root.type == bfd_link_hash_indirect)
2061 /* Ignore this if we won't export it. */
2062 if (!eif->info->export_dynamic && !h->dynamic)
2065 if (h->dynindx == -1
2066 && (h->def_regular || h->ref_regular)
2067 && ! bfd_hide_sym_by_version (eif->info->version_info,
2068 h->root.root.string))
2070 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2080 /* Look through the symbols which are defined in other shared
2081 libraries and referenced here. Update the list of version
2082 dependencies. This will be put into the .gnu.version_r section.
2083 This function is called via elf_link_hash_traverse. */
2086 _bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
2089 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
2090 Elf_Internal_Verneed *t;
2091 Elf_Internal_Vernaux *a;
2094 /* We only care about symbols defined in shared objects with version
2099 || h->verinfo.verdef == NULL
2100 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
2101 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
2104 /* See if we already know about this version. */
2105 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
2109 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
2112 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2113 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
2119 /* This is a new version. Add it to tree we are building. */
2124 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
2127 rinfo->failed = TRUE;
2131 t->vn_bfd = h->verinfo.verdef->vd_bfd;
2132 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
2133 elf_tdata (rinfo->info->output_bfd)->verref = t;
2137 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
2140 rinfo->failed = TRUE;
2144 /* Note that we are copying a string pointer here, and testing it
2145 above. If bfd_elf_string_from_elf_section is ever changed to
2146 discard the string data when low in memory, this will have to be
2148 a->vna_nodename = h->verinfo.verdef->vd_nodename;
2150 a->vna_flags = h->verinfo.verdef->vd_flags;
2151 a->vna_nextptr = t->vn_auxptr;
2153 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
2156 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
2163 /* Figure out appropriate versions for all the symbols. We may not
2164 have the version number script until we have read all of the input
2165 files, so until that point we don't know which symbols should be
2166 local. This function is called via elf_link_hash_traverse. */
2169 _bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
2171 struct elf_info_failed *sinfo;
2172 struct bfd_link_info *info;
2173 const struct elf_backend_data *bed;
2174 struct elf_info_failed eif;
2177 sinfo = (struct elf_info_failed *) data;
2180 /* Fix the symbol flags. */
2183 if (! _bfd_elf_fix_symbol_flags (h, &eif))
2186 sinfo->failed = TRUE;
2190 /* We only need version numbers for symbols defined in regular
2192 if (!h->def_regular)
2195 bed = get_elf_backend_data (info->output_bfd);
2196 p = strchr (h->root.root.string, ELF_VER_CHR);
2197 if (p != NULL && h->verinfo.vertree == NULL)
2199 struct bfd_elf_version_tree *t;
2202 if (*p == ELF_VER_CHR)
2205 /* If there is no version string, we can just return out. */
2209 /* Look for the version. If we find it, it is no longer weak. */
2210 for (t = sinfo->info->version_info; t != NULL; t = t->next)
2212 if (strcmp (t->name, p) == 0)
2216 struct bfd_elf_version_expr *d;
2218 len = p - h->root.root.string;
2219 alc = (char *) bfd_malloc (len);
2222 sinfo->failed = TRUE;
2225 memcpy (alc, h->root.root.string, len - 1);
2226 alc[len - 1] = '\0';
2227 if (alc[len - 2] == ELF_VER_CHR)
2228 alc[len - 2] = '\0';
2230 h->verinfo.vertree = t;
2234 if (t->globals.list != NULL)
2235 d = (*t->match) (&t->globals, NULL, alc);
2237 /* See if there is anything to force this symbol to
2239 if (d == NULL && t->locals.list != NULL)
2241 d = (*t->match) (&t->locals, NULL, alc);
2244 && ! info->export_dynamic)
2245 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2253 /* If we are building an application, we need to create a
2254 version node for this version. */
2255 if (t == NULL && bfd_link_executable (info))
2257 struct bfd_elf_version_tree **pp;
2260 /* If we aren't going to export this symbol, we don't need
2261 to worry about it. */
2262 if (h->dynindx == -1)
2265 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd,
2269 sinfo->failed = TRUE;
2274 t->name_indx = (unsigned int) -1;
2278 /* Don't count anonymous version tag. */
2279 if (sinfo->info->version_info != NULL
2280 && sinfo->info->version_info->vernum == 0)
2282 for (pp = &sinfo->info->version_info;
2286 t->vernum = version_index;
2290 h->verinfo.vertree = t;
2294 /* We could not find the version for a symbol when
2295 generating a shared archive. Return an error. */
2297 /* xgettext:c-format */
2298 (_("%B: version node not found for symbol %s"),
2299 info->output_bfd, h->root.root.string);
2300 bfd_set_error (bfd_error_bad_value);
2301 sinfo->failed = TRUE;
2306 /* If we don't have a version for this symbol, see if we can find
2308 if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL)
2313 = bfd_find_version_for_sym (sinfo->info->version_info,
2314 h->root.root.string, &hide);
2315 if (h->verinfo.vertree != NULL && hide)
2316 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2322 /* Read and swap the relocs from the section indicated by SHDR. This
2323 may be either a REL or a RELA section. The relocations are
2324 translated into RELA relocations and stored in INTERNAL_RELOCS,
2325 which should have already been allocated to contain enough space.
2326 The EXTERNAL_RELOCS are a buffer where the external form of the
2327 relocations should be stored.
2329 Returns FALSE if something goes wrong. */
2332 elf_link_read_relocs_from_section (bfd *abfd,
2334 Elf_Internal_Shdr *shdr,
2335 void *external_relocs,
2336 Elf_Internal_Rela *internal_relocs)
2338 const struct elf_backend_data *bed;
2339 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
2340 const bfd_byte *erela;
2341 const bfd_byte *erelaend;
2342 Elf_Internal_Rela *irela;
2343 Elf_Internal_Shdr *symtab_hdr;
2346 /* Position ourselves at the start of the section. */
2347 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2350 /* Read the relocations. */
2351 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2354 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2355 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
2357 bed = get_elf_backend_data (abfd);
2359 /* Convert the external relocations to the internal format. */
2360 if (shdr->sh_entsize == bed->s->sizeof_rel)
2361 swap_in = bed->s->swap_reloc_in;
2362 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2363 swap_in = bed->s->swap_reloca_in;
2366 bfd_set_error (bfd_error_wrong_format);
2370 erela = (const bfd_byte *) external_relocs;
2371 erelaend = erela + shdr->sh_size;
2372 irela = internal_relocs;
2373 while (erela < erelaend)
2377 (*swap_in) (abfd, erela, irela);
2378 r_symndx = ELF32_R_SYM (irela->r_info);
2379 if (bed->s->arch_size == 64)
2383 if ((size_t) r_symndx >= nsyms)
2386 /* xgettext:c-format */
2387 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2388 " for offset 0x%lx in section `%A'"),
2389 abfd, (unsigned long) r_symndx, (unsigned long) nsyms,
2390 irela->r_offset, sec);
2391 bfd_set_error (bfd_error_bad_value);
2395 else if (r_symndx != STN_UNDEF)
2398 /* xgettext:c-format */
2399 (_("%B: non-zero symbol index (0x%lx)"
2400 " for offset 0x%lx in section `%A'"
2401 " when the object file has no symbol table"),
2402 abfd, (unsigned long) r_symndx, (unsigned long) nsyms,
2403 irela->r_offset, sec);
2404 bfd_set_error (bfd_error_bad_value);
2407 irela += bed->s->int_rels_per_ext_rel;
2408 erela += shdr->sh_entsize;
2414 /* Read and swap the relocs for a section O. They may have been
2415 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2416 not NULL, they are used as buffers to read into. They are known to
2417 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2418 the return value is allocated using either malloc or bfd_alloc,
2419 according to the KEEP_MEMORY argument. If O has two relocation
2420 sections (both REL and RELA relocations), then the REL_HDR
2421 relocations will appear first in INTERNAL_RELOCS, followed by the
2422 RELA_HDR relocations. */
2425 _bfd_elf_link_read_relocs (bfd *abfd,
2427 void *external_relocs,
2428 Elf_Internal_Rela *internal_relocs,
2429 bfd_boolean keep_memory)
2431 void *alloc1 = NULL;
2432 Elf_Internal_Rela *alloc2 = NULL;
2433 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2434 struct bfd_elf_section_data *esdo = elf_section_data (o);
2435 Elf_Internal_Rela *internal_rela_relocs;
2437 if (esdo->relocs != NULL)
2438 return esdo->relocs;
2440 if (o->reloc_count == 0)
2443 if (internal_relocs == NULL)
2447 size = o->reloc_count;
2448 size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2450 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
2452 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
2453 if (internal_relocs == NULL)
2457 if (external_relocs == NULL)
2459 bfd_size_type size = 0;
2462 size += esdo->rel.hdr->sh_size;
2464 size += esdo->rela.hdr->sh_size;
2466 alloc1 = bfd_malloc (size);
2469 external_relocs = alloc1;
2472 internal_rela_relocs = internal_relocs;
2475 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2479 external_relocs = (((bfd_byte *) external_relocs)
2480 + esdo->rel.hdr->sh_size);
2481 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2482 * bed->s->int_rels_per_ext_rel);
2486 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2488 internal_rela_relocs)))
2491 /* Cache the results for next time, if we can. */
2493 esdo->relocs = internal_relocs;
2498 /* Don't free alloc2, since if it was allocated we are passing it
2499 back (under the name of internal_relocs). */
2501 return internal_relocs;
2509 bfd_release (abfd, alloc2);
2516 /* Compute the size of, and allocate space for, REL_HDR which is the
2517 section header for a section containing relocations for O. */
2520 _bfd_elf_link_size_reloc_section (bfd *abfd,
2521 struct bfd_elf_section_reloc_data *reldata)
2523 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
2525 /* That allows us to calculate the size of the section. */
2526 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
2528 /* The contents field must last into write_object_contents, so we
2529 allocate it with bfd_alloc rather than malloc. Also since we
2530 cannot be sure that the contents will actually be filled in,
2531 we zero the allocated space. */
2532 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
2533 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2536 if (reldata->hashes == NULL && reldata->count)
2538 struct elf_link_hash_entry **p;
2540 p = ((struct elf_link_hash_entry **)
2541 bfd_zmalloc (reldata->count * sizeof (*p)));
2545 reldata->hashes = p;
2551 /* Copy the relocations indicated by the INTERNAL_RELOCS (which
2552 originated from the section given by INPUT_REL_HDR) to the
2556 _bfd_elf_link_output_relocs (bfd *output_bfd,
2557 asection *input_section,
2558 Elf_Internal_Shdr *input_rel_hdr,
2559 Elf_Internal_Rela *internal_relocs,
2560 struct elf_link_hash_entry **rel_hash
2563 Elf_Internal_Rela *irela;
2564 Elf_Internal_Rela *irelaend;
2566 struct bfd_elf_section_reloc_data *output_reldata;
2567 asection *output_section;
2568 const struct elf_backend_data *bed;
2569 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
2570 struct bfd_elf_section_data *esdo;
2572 output_section = input_section->output_section;
2574 bed = get_elf_backend_data (output_bfd);
2575 esdo = elf_section_data (output_section);
2576 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2578 output_reldata = &esdo->rel;
2579 swap_out = bed->s->swap_reloc_out;
2581 else if (esdo->rela.hdr
2582 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2584 output_reldata = &esdo->rela;
2585 swap_out = bed->s->swap_reloca_out;
2590 /* xgettext:c-format */
2591 (_("%B: relocation size mismatch in %B section %A"),
2592 output_bfd, input_section->owner, input_section);
2593 bfd_set_error (bfd_error_wrong_format);
2597 erel = output_reldata->hdr->contents;
2598 erel += output_reldata->count * input_rel_hdr->sh_entsize;
2599 irela = internal_relocs;
2600 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2601 * bed->s->int_rels_per_ext_rel);
2602 while (irela < irelaend)
2604 (*swap_out) (output_bfd, irela, erel);
2605 irela += bed->s->int_rels_per_ext_rel;
2606 erel += input_rel_hdr->sh_entsize;
2609 /* Bump the counter, so that we know where to add the next set of
2611 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
2616 /* Make weak undefined symbols in PIE dynamic. */
2619 _bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2620 struct elf_link_hash_entry *h)
2622 if (bfd_link_pie (info)
2624 && h->root.type == bfd_link_hash_undefweak)
2625 return bfd_elf_link_record_dynamic_symbol (info, h);
2630 /* Fix up the flags for a symbol. This handles various cases which
2631 can only be fixed after all the input files are seen. This is
2632 currently called by both adjust_dynamic_symbol and
2633 assign_sym_version, which is unnecessary but perhaps more robust in
2634 the face of future changes. */
2637 _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2638 struct elf_info_failed *eif)
2640 const struct elf_backend_data *bed;
2642 /* If this symbol was mentioned in a non-ELF file, try to set
2643 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2644 permit a non-ELF file to correctly refer to a symbol defined in
2645 an ELF dynamic object. */
2648 while (h->root.type == bfd_link_hash_indirect)
2649 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2651 if (h->root.type != bfd_link_hash_defined
2652 && h->root.type != bfd_link_hash_defweak)
2655 h->ref_regular_nonweak = 1;
2659 if (h->root.u.def.section->owner != NULL
2660 && (bfd_get_flavour (h->root.u.def.section->owner)
2661 == bfd_target_elf_flavour))
2664 h->ref_regular_nonweak = 1;
2670 if (h->dynindx == -1
2674 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2683 /* Unfortunately, NON_ELF is only correct if the symbol
2684 was first seen in a non-ELF file. Fortunately, if the symbol
2685 was first seen in an ELF file, we're probably OK unless the
2686 symbol was defined in a non-ELF file. Catch that case here.
2687 FIXME: We're still in trouble if the symbol was first seen in
2688 a dynamic object, and then later in a non-ELF regular object. */
2689 if ((h->root.type == bfd_link_hash_defined
2690 || h->root.type == bfd_link_hash_defweak)
2692 && (h->root.u.def.section->owner != NULL
2693 ? (bfd_get_flavour (h->root.u.def.section->owner)
2694 != bfd_target_elf_flavour)
2695 : (bfd_is_abs_section (h->root.u.def.section)
2696 && !h->def_dynamic)))
2700 /* Backend specific symbol fixup. */
2701 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2702 if (bed->elf_backend_fixup_symbol
2703 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2706 /* If this is a final link, and the symbol was defined as a common
2707 symbol in a regular object file, and there was no definition in
2708 any dynamic object, then the linker will have allocated space for
2709 the symbol in a common section but the DEF_REGULAR
2710 flag will not have been set. */
2711 if (h->root.type == bfd_link_hash_defined
2715 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
2718 /* If a weak undefined symbol has non-default visibility, we also
2719 hide it from the dynamic linker. */
2720 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2721 && h->root.type == bfd_link_hash_undefweak)
2722 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2724 /* A hidden versioned symbol in executable should be forced local if
2725 it is is locally defined, not referenced by shared library and not
2727 else if (bfd_link_executable (eif->info)
2728 && h->versioned == versioned_hidden
2729 && !eif->info->export_dynamic
2733 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2735 /* If -Bsymbolic was used (which means to bind references to global
2736 symbols to the definition within the shared object), and this
2737 symbol was defined in a regular object, then it actually doesn't
2738 need a PLT entry. Likewise, if the symbol has non-default
2739 visibility. If the symbol has hidden or internal visibility, we
2740 will force it local. */
2741 else if (h->needs_plt
2742 && bfd_link_pic (eif->info)
2743 && is_elf_hash_table (eif->info->hash)
2744 && (SYMBOLIC_BIND (eif->info, h)
2745 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2748 bfd_boolean force_local;
2750 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2751 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2752 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2755 /* If this is a weak defined symbol in a dynamic object, and we know
2756 the real definition in the dynamic object, copy interesting flags
2757 over to the real definition. */
2758 if (h->u.weakdef != NULL)
2760 /* If the real definition is defined by a regular object file,
2761 don't do anything special. See the longer description in
2762 _bfd_elf_adjust_dynamic_symbol, below. */
2763 if (h->u.weakdef->def_regular)
2764 h->u.weakdef = NULL;
2767 struct elf_link_hash_entry *weakdef = h->u.weakdef;
2769 while (h->root.type == bfd_link_hash_indirect)
2770 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2772 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2773 || h->root.type == bfd_link_hash_defweak);
2774 BFD_ASSERT (weakdef->def_dynamic);
2775 BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2776 || weakdef->root.type == bfd_link_hash_defweak);
2777 (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h);
2784 /* Make the backend pick a good value for a dynamic symbol. This is
2785 called via elf_link_hash_traverse, and also calls itself
2789 _bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
2791 struct elf_info_failed *eif = (struct elf_info_failed *) data;
2793 const struct elf_backend_data *bed;
2795 if (! is_elf_hash_table (eif->info->hash))
2798 /* Ignore indirect symbols. These are added by the versioning code. */
2799 if (h->root.type == bfd_link_hash_indirect)
2802 /* Fix the symbol flags. */
2803 if (! _bfd_elf_fix_symbol_flags (h, eif))
2806 if (h->root.type == bfd_link_hash_undefweak)
2808 if (eif->info->dynamic_undefined_weak == 0)
2809 _bfd_elf_link_hash_hide_symbol (eif->info, h, TRUE);
2810 else if (eif->info->dynamic_undefined_weak > 0
2812 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2813 && !bfd_hide_sym_by_version (eif->info->version_info,
2814 h->root.root.string))
2816 if (!bfd_elf_link_record_dynamic_symbol (eif->info, h))
2824 /* If this symbol does not require a PLT entry, and it is not
2825 defined by a dynamic object, or is not referenced by a regular
2826 object, ignore it. We do have to handle a weak defined symbol,
2827 even if no regular object refers to it, if we decided to add it
2828 to the dynamic symbol table. FIXME: Do we normally need to worry
2829 about symbols which are defined by one dynamic object and
2830 referenced by another one? */
2832 && h->type != STT_GNU_IFUNC
2836 && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
2838 h->plt = elf_hash_table (eif->info)->init_plt_offset;
2842 /* If we've already adjusted this symbol, don't do it again. This
2843 can happen via a recursive call. */
2844 if (h->dynamic_adjusted)
2847 /* Don't look at this symbol again. Note that we must set this
2848 after checking the above conditions, because we may look at a
2849 symbol once, decide not to do anything, and then get called
2850 recursively later after REF_REGULAR is set below. */
2851 h->dynamic_adjusted = 1;
2853 /* If this is a weak definition, and we know a real definition, and
2854 the real symbol is not itself defined by a regular object file,
2855 then get a good value for the real definition. We handle the
2856 real symbol first, for the convenience of the backend routine.
2858 Note that there is a confusing case here. If the real definition
2859 is defined by a regular object file, we don't get the real symbol
2860 from the dynamic object, but we do get the weak symbol. If the
2861 processor backend uses a COPY reloc, then if some routine in the
2862 dynamic object changes the real symbol, we will not see that
2863 change in the corresponding weak symbol. This is the way other
2864 ELF linkers work as well, and seems to be a result of the shared
2867 I will clarify this issue. Most SVR4 shared libraries define the
2868 variable _timezone and define timezone as a weak synonym. The
2869 tzset call changes _timezone. If you write
2870 extern int timezone;
2872 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2873 you might expect that, since timezone is a synonym for _timezone,
2874 the same number will print both times. However, if the processor
2875 backend uses a COPY reloc, then actually timezone will be copied
2876 into your process image, and, since you define _timezone
2877 yourself, _timezone will not. Thus timezone and _timezone will
2878 wind up at different memory locations. The tzset call will set
2879 _timezone, leaving timezone unchanged. */
2881 if (h->u.weakdef != NULL)
2883 /* If we get to this point, there is an implicit reference to
2884 H->U.WEAKDEF by a regular object file via the weak symbol H. */
2885 h->u.weakdef->ref_regular = 1;
2887 /* Ensure that the backend adjust_dynamic_symbol function sees
2888 H->U.WEAKDEF before H by recursively calling ourselves. */
2889 if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
2893 /* If a symbol has no type and no size and does not require a PLT
2894 entry, then we are probably about to do the wrong thing here: we
2895 are probably going to create a COPY reloc for an empty object.
2896 This case can arise when a shared object is built with assembly
2897 code, and the assembly code fails to set the symbol type. */
2899 && h->type == STT_NOTYPE
2902 (_("warning: type and size of dynamic symbol `%s' are not defined"),
2903 h->root.root.string);
2905 dynobj = elf_hash_table (eif->info)->dynobj;
2906 bed = get_elf_backend_data (dynobj);
2908 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2917 /* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
2921 _bfd_elf_adjust_dynamic_copy (struct bfd_link_info *info,
2922 struct elf_link_hash_entry *h,
2925 unsigned int power_of_two;
2927 asection *sec = h->root.u.def.section;
2929 /* The section aligment of definition is the maximum alignment
2930 requirement of symbols defined in the section. Since we don't
2931 know the symbol alignment requirement, we start with the
2932 maximum alignment and check low bits of the symbol address
2933 for the minimum alignment. */
2934 power_of_two = bfd_get_section_alignment (sec->owner, sec);
2935 mask = ((bfd_vma) 1 << power_of_two) - 1;
2936 while ((h->root.u.def.value & mask) != 0)
2942 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
2945 /* Adjust the section alignment if needed. */
2946 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
2951 /* We make sure that the symbol will be aligned properly. */
2952 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
2954 /* Define the symbol as being at this point in DYNBSS. */
2955 h->root.u.def.section = dynbss;
2956 h->root.u.def.value = dynbss->size;
2958 /* Increment the size of DYNBSS to make room for the symbol. */
2959 dynbss->size += h->size;
2961 /* No error if extern_protected_data is true. */
2962 if (h->protected_def
2963 && (!info->extern_protected_data
2964 || (info->extern_protected_data < 0
2965 && !get_elf_backend_data (dynbss->owner)->extern_protected_data)))
2966 info->callbacks->einfo
2967 (_("%P: copy reloc against protected `%T' is dangerous\n"),
2968 h->root.root.string);
2973 /* Adjust all external symbols pointing into SEC_MERGE sections
2974 to reflect the object merging within the sections. */
2977 _bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
2981 if ((h->root.type == bfd_link_hash_defined
2982 || h->root.type == bfd_link_hash_defweak)
2983 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
2984 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
2986 bfd *output_bfd = (bfd *) data;
2988 h->root.u.def.value =
2989 _bfd_merged_section_offset (output_bfd,
2990 &h->root.u.def.section,
2991 elf_section_data (sec)->sec_info,
2992 h->root.u.def.value);
2998 /* Returns false if the symbol referred to by H should be considered
2999 to resolve local to the current module, and true if it should be
3000 considered to bind dynamically. */
3003 _bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
3004 struct bfd_link_info *info,
3005 bfd_boolean not_local_protected)
3007 bfd_boolean binding_stays_local_p;
3008 const struct elf_backend_data *bed;
3009 struct elf_link_hash_table *hash_table;
3014 while (h->root.type == bfd_link_hash_indirect
3015 || h->root.type == bfd_link_hash_warning)
3016 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3018 /* If it was forced local, then clearly it's not dynamic. */
3019 if (h->dynindx == -1)
3021 if (h->forced_local)
3024 /* Identify the cases where name binding rules say that a
3025 visible symbol resolves locally. */
3026 binding_stays_local_p = (bfd_link_executable (info)
3027 || SYMBOLIC_BIND (info, h));
3029 switch (ELF_ST_VISIBILITY (h->other))
3036 hash_table = elf_hash_table (info);
3037 if (!is_elf_hash_table (hash_table))
3040 bed = get_elf_backend_data (hash_table->dynobj);
3042 /* Proper resolution for function pointer equality may require
3043 that these symbols perhaps be resolved dynamically, even though
3044 we should be resolving them to the current module. */
3045 if (!not_local_protected || !bed->is_function_type (h->type))
3046 binding_stays_local_p = TRUE;
3053 /* If it isn't defined locally, then clearly it's dynamic. */
3054 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
3057 /* Otherwise, the symbol is dynamic if binding rules don't tell
3058 us that it remains local. */
3059 return !binding_stays_local_p;
3062 /* Return true if the symbol referred to by H should be considered
3063 to resolve local to the current module, and false otherwise. Differs
3064 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
3065 undefined symbols. The two functions are virtually identical except
3066 for the place where dynindx == -1 is tested. If that test is true,
3067 _bfd_elf_dynamic_symbol_p will say the symbol is local, while
3068 _bfd_elf_symbol_refs_local_p will say the symbol is local only for
3070 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
3071 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
3072 treatment of undefined weak symbols. For those that do not make
3073 undefined weak symbols dynamic, both functions may return false. */
3076 _bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
3077 struct bfd_link_info *info,
3078 bfd_boolean local_protected)
3080 const struct elf_backend_data *bed;
3081 struct elf_link_hash_table *hash_table;
3083 /* If it's a local sym, of course we resolve locally. */
3087 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
3088 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
3089 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
3092 /* Forced local symbols resolve locally. */
3093 if (h->forced_local)
3096 /* Common symbols that become definitions don't get the DEF_REGULAR
3097 flag set, so test it first, and don't bail out. */
3098 if (ELF_COMMON_DEF_P (h))
3100 /* If we don't have a definition in a regular file, then we can't
3101 resolve locally. The sym is either undefined or dynamic. */
3102 else if (!h->def_regular)
3105 /* Non-dynamic symbols resolve locally. */
3106 if (h->dynindx == -1)
3109 /* At this point, we know the symbol is defined and dynamic. In an
3110 executable it must resolve locally, likewise when building symbolic
3111 shared libraries. */
3112 if (bfd_link_executable (info) || SYMBOLIC_BIND (info, h))
3115 /* Now deal with defined dynamic symbols in shared libraries. Ones
3116 with default visibility might not resolve locally. */
3117 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
3120 hash_table = elf_hash_table (info);
3121 if (!is_elf_hash_table (hash_table))
3124 bed = get_elf_backend_data (hash_table->dynobj);
3126 /* If extern_protected_data is false, STV_PROTECTED non-function
3127 symbols are local. */
3128 if ((!info->extern_protected_data
3129 || (info->extern_protected_data < 0
3130 && !bed->extern_protected_data))
3131 && !bed->is_function_type (h->type))
3134 /* Function pointer equality tests may require that STV_PROTECTED
3135 symbols be treated as dynamic symbols. If the address of a
3136 function not defined in an executable is set to that function's
3137 plt entry in the executable, then the address of the function in
3138 a shared library must also be the plt entry in the executable. */
3139 return local_protected;
3142 /* Caches some TLS segment info, and ensures that the TLS segment vma is
3143 aligned. Returns the first TLS output section. */
3145 struct bfd_section *
3146 _bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
3148 struct bfd_section *sec, *tls;
3149 unsigned int align = 0;
3151 for (sec = obfd->sections; sec != NULL; sec = sec->next)
3152 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
3156 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
3157 if (sec->alignment_power > align)
3158 align = sec->alignment_power;
3160 elf_hash_table (info)->tls_sec = tls;
3162 /* Ensure the alignment of the first section is the largest alignment,
3163 so that the tls segment starts aligned. */
3165 tls->alignment_power = align;
3170 /* Return TRUE iff this is a non-common, definition of a non-function symbol. */
3172 is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
3173 Elf_Internal_Sym *sym)
3175 const struct elf_backend_data *bed;
3177 /* Local symbols do not count, but target specific ones might. */
3178 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
3179 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
3182 bed = get_elf_backend_data (abfd);
3183 /* Function symbols do not count. */
3184 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
3187 /* If the section is undefined, then so is the symbol. */
3188 if (sym->st_shndx == SHN_UNDEF)
3191 /* If the symbol is defined in the common section, then
3192 it is a common definition and so does not count. */
3193 if (bed->common_definition (sym))
3196 /* If the symbol is in a target specific section then we
3197 must rely upon the backend to tell us what it is. */
3198 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
3199 /* FIXME - this function is not coded yet:
3201 return _bfd_is_global_symbol_definition (abfd, sym);
3203 Instead for now assume that the definition is not global,
3204 Even if this is wrong, at least the linker will behave
3205 in the same way that it used to do. */
3211 /* Search the symbol table of the archive element of the archive ABFD
3212 whose archive map contains a mention of SYMDEF, and determine if
3213 the symbol is defined in this element. */
3215 elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
3217 Elf_Internal_Shdr * hdr;
3221 Elf_Internal_Sym *isymbuf;
3222 Elf_Internal_Sym *isym;
3223 Elf_Internal_Sym *isymend;
3226 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
3230 if (! bfd_check_format (abfd, bfd_object))
3233 /* Select the appropriate symbol table. If we don't know if the
3234 object file is an IR object, give linker LTO plugin a chance to
3235 get the correct symbol table. */
3236 if (abfd->plugin_format == bfd_plugin_yes
3237 #if BFD_SUPPORTS_PLUGINS
3238 || (abfd->plugin_format == bfd_plugin_unknown
3239 && bfd_link_plugin_object_p (abfd))
3243 /* Use the IR symbol table if the object has been claimed by
3245 abfd = abfd->plugin_dummy_bfd;
3246 hdr = &elf_tdata (abfd)->symtab_hdr;
3248 else if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
3249 hdr = &elf_tdata (abfd)->symtab_hdr;
3251 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3253 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3255 /* The sh_info field of the symtab header tells us where the
3256 external symbols start. We don't care about the local symbols. */
3257 if (elf_bad_symtab (abfd))
3259 extsymcount = symcount;
3264 extsymcount = symcount - hdr->sh_info;
3265 extsymoff = hdr->sh_info;
3268 if (extsymcount == 0)
3271 /* Read in the symbol table. */
3272 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3274 if (isymbuf == NULL)
3277 /* Scan the symbol table looking for SYMDEF. */
3279 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
3283 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3288 if (strcmp (name, symdef->name) == 0)
3290 result = is_global_data_symbol_definition (abfd, isym);
3300 /* Add an entry to the .dynamic table. */
3303 _bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3307 struct elf_link_hash_table *hash_table;
3308 const struct elf_backend_data *bed;
3310 bfd_size_type newsize;
3311 bfd_byte *newcontents;
3312 Elf_Internal_Dyn dyn;
3314 hash_table = elf_hash_table (info);
3315 if (! is_elf_hash_table (hash_table))
3318 bed = get_elf_backend_data (hash_table->dynobj);
3319 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3320 BFD_ASSERT (s != NULL);
3322 newsize = s->size + bed->s->sizeof_dyn;
3323 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
3324 if (newcontents == NULL)
3328 dyn.d_un.d_val = val;
3329 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
3332 s->contents = newcontents;
3337 /* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3338 otherwise just check whether one already exists. Returns -1 on error,
3339 1 if a DT_NEEDED tag already exists, and 0 on success. */
3342 elf_add_dt_needed_tag (bfd *abfd,
3343 struct bfd_link_info *info,
3347 struct elf_link_hash_table *hash_table;
3350 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3353 hash_table = elf_hash_table (info);
3354 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3355 if (strindex == (size_t) -1)
3358 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
3361 const struct elf_backend_data *bed;
3364 bed = get_elf_backend_data (hash_table->dynobj);
3365 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3367 for (extdyn = sdyn->contents;
3368 extdyn < sdyn->contents + sdyn->size;
3369 extdyn += bed->s->sizeof_dyn)
3371 Elf_Internal_Dyn dyn;
3373 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3374 if (dyn.d_tag == DT_NEEDED
3375 && dyn.d_un.d_val == strindex)
3377 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3385 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3388 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3392 /* We were just checking for existence of the tag. */
3393 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3398 /* Return true if SONAME is on the needed list between NEEDED and STOP
3399 (or the end of list if STOP is NULL), and needed by a library that
3403 on_needed_list (const char *soname,
3404 struct bfd_link_needed_list *needed,
3405 struct bfd_link_needed_list *stop)
3407 struct bfd_link_needed_list *look;
3408 for (look = needed; look != stop; look = look->next)
3409 if (strcmp (soname, look->name) == 0
3410 && ((elf_dyn_lib_class (look->by) & DYN_AS_NEEDED) == 0
3411 /* If needed by a library that itself is not directly
3412 needed, recursively check whether that library is
3413 indirectly needed. Since we add DT_NEEDED entries to
3414 the end of the list, library dependencies appear after
3415 the library. Therefore search prior to the current
3416 LOOK, preventing possible infinite recursion. */
3417 || on_needed_list (elf_dt_name (look->by), needed, look)))
3423 /* Sort symbol by value, section, and size. */
3425 elf_sort_symbol (const void *arg1, const void *arg2)
3427 const struct elf_link_hash_entry *h1;
3428 const struct elf_link_hash_entry *h2;
3429 bfd_signed_vma vdiff;
3431 h1 = *(const struct elf_link_hash_entry **) arg1;
3432 h2 = *(const struct elf_link_hash_entry **) arg2;
3433 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3435 return vdiff > 0 ? 1 : -1;
3438 int sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3440 return sdiff > 0 ? 1 : -1;
3442 vdiff = h1->size - h2->size;
3443 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
3446 /* This function is used to adjust offsets into .dynstr for
3447 dynamic symbols. This is called via elf_link_hash_traverse. */
3450 elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3452 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
3454 if (h->dynindx != -1)
3455 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3459 /* Assign string offsets in .dynstr, update all structures referencing
3463 elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
3465 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3466 struct elf_link_local_dynamic_entry *entry;
3467 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3468 bfd *dynobj = hash_table->dynobj;
3471 const struct elf_backend_data *bed;
3474 _bfd_elf_strtab_finalize (dynstr);
3475 size = _bfd_elf_strtab_size (dynstr);
3477 bed = get_elf_backend_data (dynobj);
3478 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
3479 BFD_ASSERT (sdyn != NULL);
3481 /* Update all .dynamic entries referencing .dynstr strings. */
3482 for (extdyn = sdyn->contents;
3483 extdyn < sdyn->contents + sdyn->size;
3484 extdyn += bed->s->sizeof_dyn)
3486 Elf_Internal_Dyn dyn;
3488 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3492 dyn.d_un.d_val = size;
3502 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3507 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3510 /* Now update local dynamic symbols. */
3511 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3512 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3513 entry->isym.st_name);
3515 /* And the rest of dynamic symbols. */
3516 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3518 /* Adjust version definitions. */
3519 if (elf_tdata (output_bfd)->cverdefs)
3524 Elf_Internal_Verdef def;
3525 Elf_Internal_Verdaux defaux;
3527 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
3531 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3533 p += sizeof (Elf_External_Verdef);
3534 if (def.vd_aux != sizeof (Elf_External_Verdef))
3536 for (i = 0; i < def.vd_cnt; ++i)
3538 _bfd_elf_swap_verdaux_in (output_bfd,
3539 (Elf_External_Verdaux *) p, &defaux);
3540 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3542 _bfd_elf_swap_verdaux_out (output_bfd,
3543 &defaux, (Elf_External_Verdaux *) p);
3544 p += sizeof (Elf_External_Verdaux);
3547 while (def.vd_next);
3550 /* Adjust version references. */
3551 if (elf_tdata (output_bfd)->verref)
3556 Elf_Internal_Verneed need;
3557 Elf_Internal_Vernaux needaux;
3559 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
3563 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3565 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3566 _bfd_elf_swap_verneed_out (output_bfd, &need,
3567 (Elf_External_Verneed *) p);
3568 p += sizeof (Elf_External_Verneed);
3569 for (i = 0; i < need.vn_cnt; ++i)
3571 _bfd_elf_swap_vernaux_in (output_bfd,
3572 (Elf_External_Vernaux *) p, &needaux);
3573 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3575 _bfd_elf_swap_vernaux_out (output_bfd,
3577 (Elf_External_Vernaux *) p);
3578 p += sizeof (Elf_External_Vernaux);
3581 while (need.vn_next);
3587 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3588 The default is to only match when the INPUT and OUTPUT are exactly
3592 _bfd_elf_default_relocs_compatible (const bfd_target *input,
3593 const bfd_target *output)
3595 return input == output;
3598 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3599 This version is used when different targets for the same architecture
3600 are virtually identical. */
3603 _bfd_elf_relocs_compatible (const bfd_target *input,
3604 const bfd_target *output)
3606 const struct elf_backend_data *obed, *ibed;
3608 if (input == output)
3611 ibed = xvec_get_elf_backend_data (input);
3612 obed = xvec_get_elf_backend_data (output);
3614 if (ibed->arch != obed->arch)
3617 /* If both backends are using this function, deem them compatible. */
3618 return ibed->relocs_compatible == obed->relocs_compatible;
3621 /* Make a special call to the linker "notice" function to tell it that
3622 we are about to handle an as-needed lib, or have finished
3623 processing the lib. */
3626 _bfd_elf_notice_as_needed (bfd *ibfd,
3627 struct bfd_link_info *info,
3628 enum notice_asneeded_action act)
3630 return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
3633 /* Check relocations an ELF object file. */
3636 _bfd_elf_link_check_relocs (bfd *abfd, struct bfd_link_info *info)
3638 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3639 struct elf_link_hash_table *htab = elf_hash_table (info);
3641 /* If this object is the same format as the output object, and it is
3642 not a shared library, then let the backend look through the
3645 This is required to build global offset table entries and to
3646 arrange for dynamic relocs. It is not required for the
3647 particular common case of linking non PIC code, even when linking
3648 against shared libraries, but unfortunately there is no way of
3649 knowing whether an object file has been compiled PIC or not.
3650 Looking through the relocs is not particularly time consuming.
3651 The problem is that we must either (1) keep the relocs in memory,
3652 which causes the linker to require additional runtime memory or
3653 (2) read the relocs twice from the input file, which wastes time.
3654 This would be a good case for using mmap.
3656 I have no idea how to handle linking PIC code into a file of a
3657 different format. It probably can't be done. */
3658 if ((abfd->flags & DYNAMIC) == 0
3659 && is_elf_hash_table (htab)
3660 && bed->check_relocs != NULL
3661 && elf_object_id (abfd) == elf_hash_table_id (htab)
3662 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
3666 for (o = abfd->sections; o != NULL; o = o->next)
3668 Elf_Internal_Rela *internal_relocs;
3671 /* Don't check relocations in excluded sections. */
3672 if ((o->flags & SEC_RELOC) == 0
3673 || (o->flags & SEC_EXCLUDE) != 0
3674 || o->reloc_count == 0
3675 || ((info->strip == strip_all || info->strip == strip_debugger)
3676 && (o->flags & SEC_DEBUGGING) != 0)
3677 || bfd_is_abs_section (o->output_section))
3680 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
3682 if (internal_relocs == NULL)
3685 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
3687 if (elf_section_data (o)->relocs != internal_relocs)
3688 free (internal_relocs);
3698 /* Add symbols from an ELF object file to the linker hash table. */
3701 elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3703 Elf_Internal_Ehdr *ehdr;
3704 Elf_Internal_Shdr *hdr;
3708 struct elf_link_hash_entry **sym_hash;
3709 bfd_boolean dynamic;
3710 Elf_External_Versym *extversym = NULL;
3711 Elf_External_Versym *ever;
3712 struct elf_link_hash_entry *weaks;
3713 struct elf_link_hash_entry **nondeflt_vers = NULL;
3714 size_t nondeflt_vers_cnt = 0;
3715 Elf_Internal_Sym *isymbuf = NULL;
3716 Elf_Internal_Sym *isym;
3717 Elf_Internal_Sym *isymend;
3718 const struct elf_backend_data *bed;
3719 bfd_boolean add_needed;
3720 struct elf_link_hash_table *htab;
3722 void *alloc_mark = NULL;
3723 struct bfd_hash_entry **old_table = NULL;
3724 unsigned int old_size = 0;
3725 unsigned int old_count = 0;
3726 void *old_tab = NULL;
3728 struct bfd_link_hash_entry *old_undefs = NULL;
3729 struct bfd_link_hash_entry *old_undefs_tail = NULL;
3730 void *old_strtab = NULL;
3733 bfd_boolean just_syms;
3735 htab = elf_hash_table (info);
3736 bed = get_elf_backend_data (abfd);
3738 if ((abfd->flags & DYNAMIC) == 0)
3744 /* You can't use -r against a dynamic object. Also, there's no
3745 hope of using a dynamic object which does not exactly match
3746 the format of the output file. */
3747 if (bfd_link_relocatable (info)
3748 || !is_elf_hash_table (htab)
3749 || info->output_bfd->xvec != abfd->xvec)
3751 if (bfd_link_relocatable (info))
3752 bfd_set_error (bfd_error_invalid_operation);
3754 bfd_set_error (bfd_error_wrong_format);
3759 ehdr = elf_elfheader (abfd);
3760 if (info->warn_alternate_em
3761 && bed->elf_machine_code != ehdr->e_machine
3762 && ((bed->elf_machine_alt1 != 0
3763 && ehdr->e_machine == bed->elf_machine_alt1)
3764 || (bed->elf_machine_alt2 != 0
3765 && ehdr->e_machine == bed->elf_machine_alt2)))
3766 info->callbacks->einfo
3767 /* xgettext:c-format */
3768 (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"),
3769 ehdr->e_machine, abfd, bed->elf_machine_code);
3771 /* As a GNU extension, any input sections which are named
3772 .gnu.warning.SYMBOL are treated as warning symbols for the given
3773 symbol. This differs from .gnu.warning sections, which generate
3774 warnings when they are included in an output file. */
3775 /* PR 12761: Also generate this warning when building shared libraries. */
3776 for (s = abfd->sections; s != NULL; s = s->next)
3780 name = bfd_get_section_name (abfd, s);
3781 if (CONST_STRNEQ (name, ".gnu.warning."))
3786 name += sizeof ".gnu.warning." - 1;
3788 /* If this is a shared object, then look up the symbol
3789 in the hash table. If it is there, and it is already
3790 been defined, then we will not be using the entry
3791 from this shared object, so we don't need to warn.
3792 FIXME: If we see the definition in a regular object
3793 later on, we will warn, but we shouldn't. The only
3794 fix is to keep track of what warnings we are supposed
3795 to emit, and then handle them all at the end of the
3799 struct elf_link_hash_entry *h;
3801 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3803 /* FIXME: What about bfd_link_hash_common? */
3805 && (h->root.type == bfd_link_hash_defined
3806 || h->root.type == bfd_link_hash_defweak))
3811 msg = (char *) bfd_alloc (abfd, sz + 1);
3815 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3820 if (! (_bfd_generic_link_add_one_symbol
3821 (info, abfd, name, BSF_WARNING, s, 0, msg,
3822 FALSE, bed->collect, NULL)))
3825 if (bfd_link_executable (info))
3827 /* Clobber the section size so that the warning does
3828 not get copied into the output file. */
3831 /* Also set SEC_EXCLUDE, so that symbols defined in
3832 the warning section don't get copied to the output. */
3833 s->flags |= SEC_EXCLUDE;
3838 just_syms = ((s = abfd->sections) != NULL
3839 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
3844 /* If we are creating a shared library, create all the dynamic
3845 sections immediately. We need to attach them to something,
3846 so we attach them to this BFD, provided it is the right
3847 format and is not from ld --just-symbols. Always create the
3848 dynamic sections for -E/--dynamic-list. FIXME: If there
3849 are no input BFD's of the same format as the output, we can't
3850 make a shared library. */
3852 && (bfd_link_pic (info)
3853 || (!bfd_link_relocatable (info)
3855 && (info->export_dynamic || info->dynamic)))
3856 && is_elf_hash_table (htab)
3857 && info->output_bfd->xvec == abfd->xvec
3858 && !htab->dynamic_sections_created)
3860 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3864 else if (!is_elf_hash_table (htab))
3868 const char *soname = NULL;
3870 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3871 const Elf_Internal_Phdr *phdr;
3874 /* ld --just-symbols and dynamic objects don't mix very well.
3875 ld shouldn't allow it. */
3879 /* If this dynamic lib was specified on the command line with
3880 --as-needed in effect, then we don't want to add a DT_NEEDED
3881 tag unless the lib is actually used. Similary for libs brought
3882 in by another lib's DT_NEEDED. When --no-add-needed is used
3883 on a dynamic lib, we don't want to add a DT_NEEDED entry for
3884 any dynamic library in DT_NEEDED tags in the dynamic lib at
3886 add_needed = (elf_dyn_lib_class (abfd)
3887 & (DYN_AS_NEEDED | DYN_DT_NEEDED
3888 | DYN_NO_NEEDED)) == 0;
3890 s = bfd_get_section_by_name (abfd, ".dynamic");
3895 unsigned int elfsec;
3896 unsigned long shlink;
3898 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
3905 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
3906 if (elfsec == SHN_BAD)
3907 goto error_free_dyn;
3908 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3910 for (extdyn = dynbuf;
3911 extdyn < dynbuf + s->size;
3912 extdyn += bed->s->sizeof_dyn)
3914 Elf_Internal_Dyn dyn;
3916 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3917 if (dyn.d_tag == DT_SONAME)
3919 unsigned int tagv = dyn.d_un.d_val;
3920 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3922 goto error_free_dyn;
3924 if (dyn.d_tag == DT_NEEDED)
3926 struct bfd_link_needed_list *n, **pn;
3928 unsigned int tagv = dyn.d_un.d_val;
3930 amt = sizeof (struct bfd_link_needed_list);
3931 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3932 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3933 if (n == NULL || fnm == NULL)
3934 goto error_free_dyn;
3935 amt = strlen (fnm) + 1;
3936 anm = (char *) bfd_alloc (abfd, amt);
3938 goto error_free_dyn;
3939 memcpy (anm, fnm, amt);
3943 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
3947 if (dyn.d_tag == DT_RUNPATH)
3949 struct bfd_link_needed_list *n, **pn;
3951 unsigned int tagv = dyn.d_un.d_val;
3953 amt = sizeof (struct bfd_link_needed_list);
3954 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3955 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3956 if (n == NULL || fnm == NULL)
3957 goto error_free_dyn;
3958 amt = strlen (fnm) + 1;
3959 anm = (char *) bfd_alloc (abfd, amt);
3961 goto error_free_dyn;
3962 memcpy (anm, fnm, amt);
3966 for (pn = & runpath;
3972 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
3973 if (!runpath && dyn.d_tag == DT_RPATH)
3975 struct bfd_link_needed_list *n, **pn;
3977 unsigned int tagv = dyn.d_un.d_val;
3979 amt = sizeof (struct bfd_link_needed_list);
3980 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3981 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3982 if (n == NULL || fnm == NULL)
3983 goto error_free_dyn;
3984 amt = strlen (fnm) + 1;
3985 anm = (char *) bfd_alloc (abfd, amt);
3987 goto error_free_dyn;
3988 memcpy (anm, fnm, amt);
3998 if (dyn.d_tag == DT_AUDIT)
4000 unsigned int tagv = dyn.d_un.d_val;
4001 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4008 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
4009 frees all more recently bfd_alloc'd blocks as well. */
4015 struct bfd_link_needed_list **pn;
4016 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
4021 /* If we have a PT_GNU_RELRO program header, mark as read-only
4022 all sections contained fully therein. This makes relro
4023 shared library sections appear as they will at run-time. */
4024 phdr = elf_tdata (abfd)->phdr + elf_elfheader (abfd)->e_phnum;
4025 while (--phdr >= elf_tdata (abfd)->phdr)
4026 if (phdr->p_type == PT_GNU_RELRO)
4028 for (s = abfd->sections; s != NULL; s = s->next)
4029 if ((s->flags & SEC_ALLOC) != 0
4030 && s->vma >= phdr->p_vaddr
4031 && s->vma + s->size <= phdr->p_vaddr + phdr->p_memsz)
4032 s->flags |= SEC_READONLY;
4036 /* We do not want to include any of the sections in a dynamic
4037 object in the output file. We hack by simply clobbering the
4038 list of sections in the BFD. This could be handled more
4039 cleanly by, say, a new section flag; the existing
4040 SEC_NEVER_LOAD flag is not the one we want, because that one
4041 still implies that the section takes up space in the output
4043 bfd_section_list_clear (abfd);
4045 /* Find the name to use in a DT_NEEDED entry that refers to this
4046 object. If the object has a DT_SONAME entry, we use it.
4047 Otherwise, if the generic linker stuck something in
4048 elf_dt_name, we use that. Otherwise, we just use the file
4050 if (soname == NULL || *soname == '\0')
4052 soname = elf_dt_name (abfd);
4053 if (soname == NULL || *soname == '\0')
4054 soname = bfd_get_filename (abfd);
4057 /* Save the SONAME because sometimes the linker emulation code
4058 will need to know it. */
4059 elf_dt_name (abfd) = soname;
4061 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4065 /* If we have already included this dynamic object in the
4066 link, just ignore it. There is no reason to include a
4067 particular dynamic object more than once. */
4071 /* Save the DT_AUDIT entry for the linker emulation code. */
4072 elf_dt_audit (abfd) = audit;
4075 /* If this is a dynamic object, we always link against the .dynsym
4076 symbol table, not the .symtab symbol table. The dynamic linker
4077 will only see the .dynsym symbol table, so there is no reason to
4078 look at .symtab for a dynamic object. */
4080 if (! dynamic || elf_dynsymtab (abfd) == 0)
4081 hdr = &elf_tdata (abfd)->symtab_hdr;
4083 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
4085 symcount = hdr->sh_size / bed->s->sizeof_sym;
4087 /* The sh_info field of the symtab header tells us where the
4088 external symbols start. We don't care about the local symbols at
4090 if (elf_bad_symtab (abfd))
4092 extsymcount = symcount;
4097 extsymcount = symcount - hdr->sh_info;
4098 extsymoff = hdr->sh_info;
4101 sym_hash = elf_sym_hashes (abfd);
4102 if (extsymcount != 0)
4104 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
4106 if (isymbuf == NULL)
4109 if (sym_hash == NULL)
4111 /* We store a pointer to the hash table entry for each
4114 amt *= sizeof (struct elf_link_hash_entry *);
4115 sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
4116 if (sym_hash == NULL)
4117 goto error_free_sym;
4118 elf_sym_hashes (abfd) = sym_hash;
4124 /* Read in any version definitions. */
4125 if (!_bfd_elf_slurp_version_tables (abfd,
4126 info->default_imported_symver))
4127 goto error_free_sym;
4129 /* Read in the symbol versions, but don't bother to convert them
4130 to internal format. */
4131 if (elf_dynversym (abfd) != 0)
4133 Elf_Internal_Shdr *versymhdr;
4135 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
4136 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
4137 if (extversym == NULL)
4138 goto error_free_sym;
4139 amt = versymhdr->sh_size;
4140 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
4141 || bfd_bread (extversym, amt, abfd) != amt)
4142 goto error_free_vers;
4146 /* If we are loading an as-needed shared lib, save the symbol table
4147 state before we start adding symbols. If the lib turns out
4148 to be unneeded, restore the state. */
4149 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4154 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
4156 struct bfd_hash_entry *p;
4157 struct elf_link_hash_entry *h;
4159 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4161 h = (struct elf_link_hash_entry *) p;
4162 entsize += htab->root.table.entsize;
4163 if (h->root.type == bfd_link_hash_warning)
4164 entsize += htab->root.table.entsize;
4168 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
4169 old_tab = bfd_malloc (tabsize + entsize);
4170 if (old_tab == NULL)
4171 goto error_free_vers;
4173 /* Remember the current objalloc pointer, so that all mem for
4174 symbols added can later be reclaimed. */
4175 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
4176 if (alloc_mark == NULL)
4177 goto error_free_vers;
4179 /* Make a special call to the linker "notice" function to
4180 tell it that we are about to handle an as-needed lib. */
4181 if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
4182 goto error_free_vers;
4184 /* Clone the symbol table. Remember some pointers into the
4185 symbol table, and dynamic symbol count. */
4186 old_ent = (char *) old_tab + tabsize;
4187 memcpy (old_tab, htab->root.table.table, tabsize);
4188 old_undefs = htab->root.undefs;
4189 old_undefs_tail = htab->root.undefs_tail;
4190 old_table = htab->root.table.table;
4191 old_size = htab->root.table.size;
4192 old_count = htab->root.table.count;
4193 old_strtab = _bfd_elf_strtab_save (htab->dynstr);
4194 if (old_strtab == NULL)
4195 goto error_free_vers;
4197 for (i = 0; i < htab->root.table.size; i++)
4199 struct bfd_hash_entry *p;
4200 struct elf_link_hash_entry *h;
4202 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4204 memcpy (old_ent, p, htab->root.table.entsize);
4205 old_ent = (char *) old_ent + htab->root.table.entsize;
4206 h = (struct elf_link_hash_entry *) p;
4207 if (h->root.type == bfd_link_hash_warning)
4209 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
4210 old_ent = (char *) old_ent + htab->root.table.entsize;
4217 ever = extversym != NULL ? extversym + extsymoff : NULL;
4218 for (isym = isymbuf, isymend = isymbuf + extsymcount;
4220 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
4224 asection *sec, *new_sec;
4227 struct elf_link_hash_entry *h;
4228 struct elf_link_hash_entry *hi;
4229 bfd_boolean definition;
4230 bfd_boolean size_change_ok;
4231 bfd_boolean type_change_ok;
4232 bfd_boolean new_weakdef;
4233 bfd_boolean new_weak;
4234 bfd_boolean old_weak;
4235 bfd_boolean override;
4237 bfd_boolean discarded;
4238 unsigned int old_alignment;
4240 bfd_boolean matched;
4244 flags = BSF_NO_FLAGS;
4246 value = isym->st_value;
4247 common = bed->common_definition (isym);
4250 bind = ELF_ST_BIND (isym->st_info);
4254 /* This should be impossible, since ELF requires that all
4255 global symbols follow all local symbols, and that sh_info
4256 point to the first global symbol. Unfortunately, Irix 5
4261 if (isym->st_shndx != SHN_UNDEF && !common)
4269 case STB_GNU_UNIQUE:
4270 flags = BSF_GNU_UNIQUE;
4274 /* Leave it up to the processor backend. */
4278 if (isym->st_shndx == SHN_UNDEF)
4279 sec = bfd_und_section_ptr;
4280 else if (isym->st_shndx == SHN_ABS)
4281 sec = bfd_abs_section_ptr;
4282 else if (isym->st_shndx == SHN_COMMON)
4284 sec = bfd_com_section_ptr;
4285 /* What ELF calls the size we call the value. What ELF
4286 calls the value we call the alignment. */
4287 value = isym->st_size;
4291 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4293 sec = bfd_abs_section_ptr;
4294 else if (discarded_section (sec))
4296 /* Symbols from discarded section are undefined. We keep
4298 sec = bfd_und_section_ptr;
4300 isym->st_shndx = SHN_UNDEF;
4302 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
4306 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4309 goto error_free_vers;
4311 if (isym->st_shndx == SHN_COMMON
4312 && (abfd->flags & BFD_PLUGIN) != 0)
4314 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
4318 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
4320 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
4322 goto error_free_vers;
4326 else if (isym->st_shndx == SHN_COMMON
4327 && ELF_ST_TYPE (isym->st_info) == STT_TLS
4328 && !bfd_link_relocatable (info))
4330 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
4334 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
4335 | SEC_LINKER_CREATED);
4336 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
4338 goto error_free_vers;
4342 else if (bed->elf_add_symbol_hook)
4344 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
4346 goto error_free_vers;
4348 /* The hook function sets the name to NULL if this symbol
4349 should be skipped for some reason. */
4354 /* Sanity check that all possibilities were handled. */
4357 bfd_set_error (bfd_error_bad_value);
4358 goto error_free_vers;
4361 /* Silently discard TLS symbols from --just-syms. There's
4362 no way to combine a static TLS block with a new TLS block
4363 for this executable. */
4364 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
4365 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4368 if (bfd_is_und_section (sec)
4369 || bfd_is_com_section (sec))
4374 size_change_ok = FALSE;
4375 type_change_ok = bed->type_change_ok;
4382 if (is_elf_hash_table (htab))
4384 Elf_Internal_Versym iver;
4385 unsigned int vernum = 0;
4390 if (info->default_imported_symver)
4391 /* Use the default symbol version created earlier. */
4392 iver.vs_vers = elf_tdata (abfd)->cverdefs;
4397 _bfd_elf_swap_versym_in (abfd, ever, &iver);
4399 vernum = iver.vs_vers & VERSYM_VERSION;
4401 /* If this is a hidden symbol, or if it is not version
4402 1, we append the version name to the symbol name.
4403 However, we do not modify a non-hidden absolute symbol
4404 if it is not a function, because it might be the version
4405 symbol itself. FIXME: What if it isn't? */
4406 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
4408 && (!bfd_is_abs_section (sec)
4409 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
4412 size_t namelen, verlen, newlen;
4415 if (isym->st_shndx != SHN_UNDEF)
4417 if (vernum > elf_tdata (abfd)->cverdefs)
4419 else if (vernum > 1)
4421 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4428 /* xgettext:c-format */
4429 (_("%B: %s: invalid version %u (max %d)"),
4431 elf_tdata (abfd)->cverdefs);
4432 bfd_set_error (bfd_error_bad_value);
4433 goto error_free_vers;
4438 /* We cannot simply test for the number of
4439 entries in the VERNEED section since the
4440 numbers for the needed versions do not start
4442 Elf_Internal_Verneed *t;
4445 for (t = elf_tdata (abfd)->verref;
4449 Elf_Internal_Vernaux *a;
4451 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4453 if (a->vna_other == vernum)
4455 verstr = a->vna_nodename;
4465 /* xgettext:c-format */
4466 (_("%B: %s: invalid needed version %d"),
4467 abfd, name, vernum);
4468 bfd_set_error (bfd_error_bad_value);
4469 goto error_free_vers;
4473 namelen = strlen (name);
4474 verlen = strlen (verstr);
4475 newlen = namelen + verlen + 2;
4476 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4477 && isym->st_shndx != SHN_UNDEF)
4480 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
4481 if (newname == NULL)
4482 goto error_free_vers;
4483 memcpy (newname, name, namelen);
4484 p = newname + namelen;
4486 /* If this is a defined non-hidden version symbol,
4487 we add another @ to the name. This indicates the
4488 default version of the symbol. */
4489 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4490 && isym->st_shndx != SHN_UNDEF)
4492 memcpy (p, verstr, verlen + 1);
4497 /* If this symbol has default visibility and the user has
4498 requested we not re-export it, then mark it as hidden. */
4499 if (!bfd_is_und_section (sec)
4502 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4503 isym->st_other = (STV_HIDDEN
4504 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4506 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4507 sym_hash, &old_bfd, &old_weak,
4508 &old_alignment, &skip, &override,
4509 &type_change_ok, &size_change_ok,
4511 goto error_free_vers;
4516 /* Override a definition only if the new symbol matches the
4518 if (override && matched)
4522 while (h->root.type == bfd_link_hash_indirect
4523 || h->root.type == bfd_link_hash_warning)
4524 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4526 if (elf_tdata (abfd)->verdef != NULL
4529 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4532 if (! (_bfd_generic_link_add_one_symbol
4533 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4534 (struct bfd_link_hash_entry **) sym_hash)))
4535 goto error_free_vers;
4537 if ((flags & BSF_GNU_UNIQUE)
4538 && (abfd->flags & DYNAMIC) == 0
4539 && bfd_get_flavour (info->output_bfd) == bfd_target_elf_flavour)
4540 elf_tdata (info->output_bfd)->has_gnu_symbols |= elf_gnu_symbol_unique;
4543 /* We need to make sure that indirect symbol dynamic flags are
4546 while (h->root.type == bfd_link_hash_indirect
4547 || h->root.type == bfd_link_hash_warning)
4548 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4550 /* Setting the index to -3 tells elf_link_output_extsym that
4551 this symbol is defined in a discarded section. */
4557 new_weak = (flags & BSF_WEAK) != 0;
4558 new_weakdef = FALSE;
4562 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
4563 && is_elf_hash_table (htab)
4564 && h->u.weakdef == NULL)
4566 /* Keep a list of all weak defined non function symbols from
4567 a dynamic object, using the weakdef field. Later in this
4568 function we will set the weakdef field to the correct
4569 value. We only put non-function symbols from dynamic
4570 objects on this list, because that happens to be the only
4571 time we need to know the normal symbol corresponding to a
4572 weak symbol, and the information is time consuming to
4573 figure out. If the weakdef field is not already NULL,
4574 then this symbol was already defined by some previous
4575 dynamic object, and we will be using that previous
4576 definition anyhow. */
4578 h->u.weakdef = weaks;
4583 /* Set the alignment of a common symbol. */
4584 if ((common || bfd_is_com_section (sec))
4585 && h->root.type == bfd_link_hash_common)
4590 align = bfd_log2 (isym->st_value);
4593 /* The new symbol is a common symbol in a shared object.
4594 We need to get the alignment from the section. */
4595 align = new_sec->alignment_power;
4597 if (align > old_alignment)
4598 h->root.u.c.p->alignment_power = align;
4600 h->root.u.c.p->alignment_power = old_alignment;
4603 if (is_elf_hash_table (htab))
4605 /* Set a flag in the hash table entry indicating the type of
4606 reference or definition we just found. A dynamic symbol
4607 is one which is referenced or defined by both a regular
4608 object and a shared object. */
4609 bfd_boolean dynsym = FALSE;
4611 /* Plugin symbols aren't normal. Don't set def_regular or
4612 ref_regular for them, or make them dynamic. */
4613 if ((abfd->flags & BFD_PLUGIN) != 0)
4620 if (bind != STB_WEAK)
4621 h->ref_regular_nonweak = 1;
4633 /* If the indirect symbol has been forced local, don't
4634 make the real symbol dynamic. */
4635 if ((h == hi || !hi->forced_local)
4636 && (bfd_link_dll (info)
4646 hi->ref_dynamic = 1;
4651 hi->def_dynamic = 1;
4654 /* If the indirect symbol has been forced local, don't
4655 make the real symbol dynamic. */
4656 if ((h == hi || !hi->forced_local)
4659 || (h->u.weakdef != NULL
4661 && h->u.weakdef->dynindx != -1)))
4665 /* Check to see if we need to add an indirect symbol for
4666 the default name. */
4668 || (!override && h->root.type == bfd_link_hash_common))
4669 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4670 sec, value, &old_bfd, &dynsym))
4671 goto error_free_vers;
4673 /* Check the alignment when a common symbol is involved. This
4674 can change when a common symbol is overridden by a normal
4675 definition or a common symbol is ignored due to the old
4676 normal definition. We need to make sure the maximum
4677 alignment is maintained. */
4678 if ((old_alignment || common)
4679 && h->root.type != bfd_link_hash_common)
4681 unsigned int common_align;
4682 unsigned int normal_align;
4683 unsigned int symbol_align;
4687 BFD_ASSERT (h->root.type == bfd_link_hash_defined
4688 || h->root.type == bfd_link_hash_defweak);
4690 symbol_align = ffs (h->root.u.def.value) - 1;
4691 if (h->root.u.def.section->owner != NULL
4692 && (h->root.u.def.section->owner->flags
4693 & (DYNAMIC | BFD_PLUGIN)) == 0)
4695 normal_align = h->root.u.def.section->alignment_power;
4696 if (normal_align > symbol_align)
4697 normal_align = symbol_align;
4700 normal_align = symbol_align;
4704 common_align = old_alignment;
4705 common_bfd = old_bfd;
4710 common_align = bfd_log2 (isym->st_value);
4712 normal_bfd = old_bfd;
4715 if (normal_align < common_align)
4717 /* PR binutils/2735 */
4718 if (normal_bfd == NULL)
4720 /* xgettext:c-format */
4721 (_("Warning: alignment %u of common symbol `%s' in %B is"
4722 " greater than the alignment (%u) of its section %A"),
4723 1 << common_align, name, common_bfd,
4724 1 << normal_align, h->root.u.def.section);
4727 /* xgettext:c-format */
4728 (_("Warning: alignment %u of symbol `%s' in %B"
4729 " is smaller than %u in %B"),
4730 1 << normal_align, name, normal_bfd,
4731 1 << common_align, common_bfd);
4735 /* Remember the symbol size if it isn't undefined. */
4736 if (isym->st_size != 0
4737 && isym->st_shndx != SHN_UNDEF
4738 && (definition || h->size == 0))
4741 && h->size != isym->st_size
4742 && ! size_change_ok)
4744 /* xgettext:c-format */
4745 (_("Warning: size of symbol `%s' changed"
4746 " from %lu in %B to %lu in %B"),
4747 name, (unsigned long) h->size, old_bfd,
4748 (unsigned long) isym->st_size, abfd);
4750 h->size = isym->st_size;
4753 /* If this is a common symbol, then we always want H->SIZE
4754 to be the size of the common symbol. The code just above
4755 won't fix the size if a common symbol becomes larger. We
4756 don't warn about a size change here, because that is
4757 covered by --warn-common. Allow changes between different
4759 if (h->root.type == bfd_link_hash_common)
4760 h->size = h->root.u.c.size;
4762 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
4763 && ((definition && !new_weak)
4764 || (old_weak && h->root.type == bfd_link_hash_common)
4765 || h->type == STT_NOTYPE))
4767 unsigned int type = ELF_ST_TYPE (isym->st_info);
4769 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4771 if (type == STT_GNU_IFUNC
4772 && (abfd->flags & DYNAMIC) != 0)
4775 if (h->type != type)
4777 if (h->type != STT_NOTYPE && ! type_change_ok)
4778 /* xgettext:c-format */
4780 (_("Warning: type of symbol `%s' changed"
4781 " from %d to %d in %B"),
4782 name, h->type, type, abfd);
4788 /* Merge st_other field. */
4789 elf_merge_st_other (abfd, h, isym, sec, definition, dynamic);
4791 /* We don't want to make debug symbol dynamic. */
4793 && (sec->flags & SEC_DEBUGGING)
4794 && !bfd_link_relocatable (info))
4797 /* Nor should we make plugin symbols dynamic. */
4798 if ((abfd->flags & BFD_PLUGIN) != 0)
4803 h->target_internal = isym->st_target_internal;
4804 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4807 if (definition && !dynamic)
4809 char *p = strchr (name, ELF_VER_CHR);
4810 if (p != NULL && p[1] != ELF_VER_CHR)
4812 /* Queue non-default versions so that .symver x, x@FOO
4813 aliases can be checked. */
4816 amt = ((isymend - isym + 1)
4817 * sizeof (struct elf_link_hash_entry *));
4819 = (struct elf_link_hash_entry **) bfd_malloc (amt);
4821 goto error_free_vers;
4823 nondeflt_vers[nondeflt_vers_cnt++] = h;
4827 if (dynsym && h->dynindx == -1)
4829 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4830 goto error_free_vers;
4831 if (h->u.weakdef != NULL
4833 && h->u.weakdef->dynindx == -1)
4835 if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4836 goto error_free_vers;
4839 else if (h->dynindx != -1)
4840 /* If the symbol already has a dynamic index, but
4841 visibility says it should not be visible, turn it into
4843 switch (ELF_ST_VISIBILITY (h->other))
4847 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4852 /* Don't add DT_NEEDED for references from the dummy bfd nor
4853 for unmatched symbol. */
4858 && h->ref_regular_nonweak
4860 || (old_bfd->flags & BFD_PLUGIN) == 0))
4861 || (h->ref_dynamic_nonweak
4862 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
4863 && !on_needed_list (elf_dt_name (abfd),
4864 htab->needed, NULL))))
4867 const char *soname = elf_dt_name (abfd);
4869 info->callbacks->minfo ("%!", soname, old_bfd,
4870 h->root.root.string);
4872 /* A symbol from a library loaded via DT_NEEDED of some
4873 other library is referenced by a regular object.
4874 Add a DT_NEEDED entry for it. Issue an error if
4875 --no-add-needed is used and the reference was not
4878 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
4881 /* xgettext:c-format */
4882 (_("%B: undefined reference to symbol '%s'"),
4884 bfd_set_error (bfd_error_missing_dso);
4885 goto error_free_vers;
4888 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
4889 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
4892 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4894 goto error_free_vers;
4896 BFD_ASSERT (ret == 0);
4901 if (extversym != NULL)
4907 if (isymbuf != NULL)
4913 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4917 /* Restore the symbol table. */
4918 old_ent = (char *) old_tab + tabsize;
4919 memset (elf_sym_hashes (abfd), 0,
4920 extsymcount * sizeof (struct elf_link_hash_entry *));
4921 htab->root.table.table = old_table;
4922 htab->root.table.size = old_size;
4923 htab->root.table.count = old_count;
4924 memcpy (htab->root.table.table, old_tab, tabsize);
4925 htab->root.undefs = old_undefs;
4926 htab->root.undefs_tail = old_undefs_tail;
4927 _bfd_elf_strtab_restore (htab->dynstr, old_strtab);
4930 for (i = 0; i < htab->root.table.size; i++)
4932 struct bfd_hash_entry *p;
4933 struct elf_link_hash_entry *h;
4935 unsigned int alignment_power;
4936 unsigned int dynamic_ref_after_ir_def;
4938 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4940 h = (struct elf_link_hash_entry *) p;
4941 if (h->root.type == bfd_link_hash_warning)
4942 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4944 /* Preserve the maximum alignment and size for common
4945 symbols even if this dynamic lib isn't on DT_NEEDED
4946 since it can still be loaded at run time by another
4948 if (h->root.type == bfd_link_hash_common)
4950 size = h->root.u.c.size;
4951 alignment_power = h->root.u.c.p->alignment_power;
4956 alignment_power = 0;
4958 /* Preserve dynamic_ref_after_ir_def so that this symbol
4959 will be exported when the dynamic lib becomes needed
4960 in the second pass. */
4961 dynamic_ref_after_ir_def = h->root.dynamic_ref_after_ir_def;
4962 memcpy (p, old_ent, htab->root.table.entsize);
4963 old_ent = (char *) old_ent + htab->root.table.entsize;
4964 h = (struct elf_link_hash_entry *) p;
4965 if (h->root.type == bfd_link_hash_warning)
4967 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4968 old_ent = (char *) old_ent + htab->root.table.entsize;
4969 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4971 if (h->root.type == bfd_link_hash_common)
4973 if (size > h->root.u.c.size)
4974 h->root.u.c.size = size;
4975 if (alignment_power > h->root.u.c.p->alignment_power)
4976 h->root.u.c.p->alignment_power = alignment_power;
4978 h->root.dynamic_ref_after_ir_def = dynamic_ref_after_ir_def;
4982 /* Make a special call to the linker "notice" function to
4983 tell it that symbols added for crefs may need to be removed. */
4984 if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
4985 goto error_free_vers;
4988 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4990 if (nondeflt_vers != NULL)
4991 free (nondeflt_vers);
4995 if (old_tab != NULL)
4997 if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
4998 goto error_free_vers;
5003 /* Now that all the symbols from this input file are created, if
5004 not performing a relocatable link, handle .symver foo, foo@BAR
5005 such that any relocs against foo become foo@BAR. */
5006 if (!bfd_link_relocatable (info) && nondeflt_vers != NULL)
5010 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
5012 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
5013 char *shortname, *p;
5015 p = strchr (h->root.root.string, ELF_VER_CHR);
5017 || (h->root.type != bfd_link_hash_defined
5018 && h->root.type != bfd_link_hash_defweak))
5021 amt = p - h->root.root.string;
5022 shortname = (char *) bfd_malloc (amt + 1);
5024 goto error_free_vers;
5025 memcpy (shortname, h->root.root.string, amt);
5026 shortname[amt] = '\0';
5028 hi = (struct elf_link_hash_entry *)
5029 bfd_link_hash_lookup (&htab->root, shortname,
5030 FALSE, FALSE, FALSE);
5032 && hi->root.type == h->root.type
5033 && hi->root.u.def.value == h->root.u.def.value
5034 && hi->root.u.def.section == h->root.u.def.section)
5036 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
5037 hi->root.type = bfd_link_hash_indirect;
5038 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
5039 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
5040 sym_hash = elf_sym_hashes (abfd);
5042 for (symidx = 0; symidx < extsymcount; ++symidx)
5043 if (sym_hash[symidx] == hi)
5045 sym_hash[symidx] = h;
5051 free (nondeflt_vers);
5052 nondeflt_vers = NULL;
5055 /* Now set the weakdefs field correctly for all the weak defined
5056 symbols we found. The only way to do this is to search all the
5057 symbols. Since we only need the information for non functions in
5058 dynamic objects, that's the only time we actually put anything on
5059 the list WEAKS. We need this information so that if a regular
5060 object refers to a symbol defined weakly in a dynamic object, the
5061 real symbol in the dynamic object is also put in the dynamic
5062 symbols; we also must arrange for both symbols to point to the
5063 same memory location. We could handle the general case of symbol
5064 aliasing, but a general symbol alias can only be generated in
5065 assembler code, handling it correctly would be very time
5066 consuming, and other ELF linkers don't handle general aliasing
5070 struct elf_link_hash_entry **hpp;
5071 struct elf_link_hash_entry **hppend;
5072 struct elf_link_hash_entry **sorted_sym_hash;
5073 struct elf_link_hash_entry *h;
5076 /* Since we have to search the whole symbol list for each weak
5077 defined symbol, search time for N weak defined symbols will be
5078 O(N^2). Binary search will cut it down to O(NlogN). */
5080 amt *= sizeof (struct elf_link_hash_entry *);
5081 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
5082 if (sorted_sym_hash == NULL)
5084 sym_hash = sorted_sym_hash;
5085 hpp = elf_sym_hashes (abfd);
5086 hppend = hpp + extsymcount;
5088 for (; hpp < hppend; hpp++)
5092 && h->root.type == bfd_link_hash_defined
5093 && !bed->is_function_type (h->type))
5101 qsort (sorted_sym_hash, sym_count,
5102 sizeof (struct elf_link_hash_entry *),
5105 while (weaks != NULL)
5107 struct elf_link_hash_entry *hlook;
5110 size_t i, j, idx = 0;
5113 weaks = hlook->u.weakdef;
5114 hlook->u.weakdef = NULL;
5116 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
5117 || hlook->root.type == bfd_link_hash_defweak
5118 || hlook->root.type == bfd_link_hash_common
5119 || hlook->root.type == bfd_link_hash_indirect);
5120 slook = hlook->root.u.def.section;
5121 vlook = hlook->root.u.def.value;
5127 bfd_signed_vma vdiff;
5129 h = sorted_sym_hash[idx];
5130 vdiff = vlook - h->root.u.def.value;
5137 int sdiff = slook->id - h->root.u.def.section->id;
5147 /* We didn't find a value/section match. */
5151 /* With multiple aliases, or when the weak symbol is already
5152 strongly defined, we have multiple matching symbols and
5153 the binary search above may land on any of them. Step
5154 one past the matching symbol(s). */
5157 h = sorted_sym_hash[idx];
5158 if (h->root.u.def.section != slook
5159 || h->root.u.def.value != vlook)
5163 /* Now look back over the aliases. Since we sorted by size
5164 as well as value and section, we'll choose the one with
5165 the largest size. */
5168 h = sorted_sym_hash[idx];
5170 /* Stop if value or section doesn't match. */
5171 if (h->root.u.def.section != slook
5172 || h->root.u.def.value != vlook)
5174 else if (h != hlook)
5176 hlook->u.weakdef = h;
5178 /* If the weak definition is in the list of dynamic
5179 symbols, make sure the real definition is put
5181 if (hlook->dynindx != -1 && h->dynindx == -1)
5183 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5186 free (sorted_sym_hash);
5191 /* If the real definition is in the list of dynamic
5192 symbols, make sure the weak definition is put
5193 there as well. If we don't do this, then the
5194 dynamic loader might not merge the entries for the
5195 real definition and the weak definition. */
5196 if (h->dynindx != -1 && hlook->dynindx == -1)
5198 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
5199 goto err_free_sym_hash;
5206 free (sorted_sym_hash);
5209 if (bed->check_directives
5210 && !(*bed->check_directives) (abfd, info))
5213 if (!info->check_relocs_after_open_input
5214 && !_bfd_elf_link_check_relocs (abfd, info))
5217 /* If this is a non-traditional link, try to optimize the handling
5218 of the .stab/.stabstr sections. */
5220 && ! info->traditional_format
5221 && is_elf_hash_table (htab)
5222 && (info->strip != strip_all && info->strip != strip_debugger))
5226 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
5227 if (stabstr != NULL)
5229 bfd_size_type string_offset = 0;
5232 for (stab = abfd->sections; stab; stab = stab->next)
5233 if (CONST_STRNEQ (stab->name, ".stab")
5234 && (!stab->name[5] ||
5235 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
5236 && (stab->flags & SEC_MERGE) == 0
5237 && !bfd_is_abs_section (stab->output_section))
5239 struct bfd_elf_section_data *secdata;
5241 secdata = elf_section_data (stab);
5242 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
5243 stabstr, &secdata->sec_info,
5246 if (secdata->sec_info)
5247 stab->sec_info_type = SEC_INFO_TYPE_STABS;
5252 if (is_elf_hash_table (htab) && add_needed)
5254 /* Add this bfd to the loaded list. */
5255 struct elf_link_loaded_list *n;
5257 n = (struct elf_link_loaded_list *) bfd_alloc (abfd, sizeof (*n));
5261 n->next = htab->loaded;
5268 if (old_tab != NULL)
5270 if (old_strtab != NULL)
5272 if (nondeflt_vers != NULL)
5273 free (nondeflt_vers);
5274 if (extversym != NULL)
5277 if (isymbuf != NULL)
5283 /* Return the linker hash table entry of a symbol that might be
5284 satisfied by an archive symbol. Return -1 on error. */
5286 struct elf_link_hash_entry *
5287 _bfd_elf_archive_symbol_lookup (bfd *abfd,
5288 struct bfd_link_info *info,
5291 struct elf_link_hash_entry *h;
5295 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
5299 /* If this is a default version (the name contains @@), look up the
5300 symbol again with only one `@' as well as without the version.
5301 The effect is that references to the symbol with and without the
5302 version will be matched by the default symbol in the archive. */
5304 p = strchr (name, ELF_VER_CHR);
5305 if (p == NULL || p[1] != ELF_VER_CHR)
5308 /* First check with only one `@'. */
5309 len = strlen (name);
5310 copy = (char *) bfd_alloc (abfd, len);
5312 return (struct elf_link_hash_entry *) 0 - 1;
5314 first = p - name + 1;
5315 memcpy (copy, name, first);
5316 memcpy (copy + first, name + first + 1, len - first);
5318 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
5321 /* We also need to check references to the symbol without the
5323 copy[first - 1] = '\0';
5324 h = elf_link_hash_lookup (elf_hash_table (info), copy,
5325 FALSE, FALSE, TRUE);
5328 bfd_release (abfd, copy);
5332 /* Add symbols from an ELF archive file to the linker hash table. We
5333 don't use _bfd_generic_link_add_archive_symbols because we need to
5334 handle versioned symbols.
5336 Fortunately, ELF archive handling is simpler than that done by
5337 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
5338 oddities. In ELF, if we find a symbol in the archive map, and the
5339 symbol is currently undefined, we know that we must pull in that
5342 Unfortunately, we do have to make multiple passes over the symbol
5343 table until nothing further is resolved. */
5346 elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
5349 unsigned char *included = NULL;
5353 const struct elf_backend_data *bed;
5354 struct elf_link_hash_entry * (*archive_symbol_lookup)
5355 (bfd *, struct bfd_link_info *, const char *);
5357 if (! bfd_has_map (abfd))
5359 /* An empty archive is a special case. */
5360 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
5362 bfd_set_error (bfd_error_no_armap);
5366 /* Keep track of all symbols we know to be already defined, and all
5367 files we know to be already included. This is to speed up the
5368 second and subsequent passes. */
5369 c = bfd_ardata (abfd)->symdef_count;
5373 amt *= sizeof (*included);
5374 included = (unsigned char *) bfd_zmalloc (amt);
5375 if (included == NULL)
5378 symdefs = bfd_ardata (abfd)->symdefs;
5379 bed = get_elf_backend_data (abfd);
5380 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
5393 symdefend = symdef + c;
5394 for (i = 0; symdef < symdefend; symdef++, i++)
5396 struct elf_link_hash_entry *h;
5398 struct bfd_link_hash_entry *undefs_tail;
5403 if (symdef->file_offset == last)
5409 h = archive_symbol_lookup (abfd, info, symdef->name);
5410 if (h == (struct elf_link_hash_entry *) 0 - 1)
5416 if (h->root.type == bfd_link_hash_common)
5418 /* We currently have a common symbol. The archive map contains
5419 a reference to this symbol, so we may want to include it. We
5420 only want to include it however, if this archive element
5421 contains a definition of the symbol, not just another common
5424 Unfortunately some archivers (including GNU ar) will put
5425 declarations of common symbols into their archive maps, as
5426 well as real definitions, so we cannot just go by the archive
5427 map alone. Instead we must read in the element's symbol
5428 table and check that to see what kind of symbol definition
5430 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5433 else if (h->root.type != bfd_link_hash_undefined)
5435 if (h->root.type != bfd_link_hash_undefweak)
5436 /* Symbol must be defined. Don't check it again. */
5441 /* We need to include this archive member. */
5442 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5443 if (element == NULL)
5446 if (! bfd_check_format (element, bfd_object))
5449 undefs_tail = info->hash->undefs_tail;
5451 if (!(*info->callbacks
5452 ->add_archive_element) (info, element, symdef->name, &element))
5454 if (!bfd_link_add_symbols (element, info))
5457 /* If there are any new undefined symbols, we need to make
5458 another pass through the archive in order to see whether
5459 they can be defined. FIXME: This isn't perfect, because
5460 common symbols wind up on undefs_tail and because an
5461 undefined symbol which is defined later on in this pass
5462 does not require another pass. This isn't a bug, but it
5463 does make the code less efficient than it could be. */
5464 if (undefs_tail != info->hash->undefs_tail)
5467 /* Look backward to mark all symbols from this object file
5468 which we have already seen in this pass. */
5472 included[mark] = TRUE;
5477 while (symdefs[mark].file_offset == symdef->file_offset);
5479 /* We mark subsequent symbols from this object file as we go
5480 on through the loop. */
5481 last = symdef->file_offset;
5491 if (included != NULL)
5496 /* Given an ELF BFD, add symbols to the global hash table as
5500 bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5502 switch (bfd_get_format (abfd))
5505 return elf_link_add_object_symbols (abfd, info);
5507 return elf_link_add_archive_symbols (abfd, info);
5509 bfd_set_error (bfd_error_wrong_format);
5514 struct hash_codes_info
5516 unsigned long *hashcodes;
5520 /* This function will be called though elf_link_hash_traverse to store
5521 all hash value of the exported symbols in an array. */
5524 elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5526 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5531 /* Ignore indirect symbols. These are added by the versioning code. */
5532 if (h->dynindx == -1)
5535 name = h->root.root.string;
5536 if (h->versioned >= versioned)
5538 char *p = strchr (name, ELF_VER_CHR);
5541 alc = (char *) bfd_malloc (p - name + 1);
5547 memcpy (alc, name, p - name);
5548 alc[p - name] = '\0';
5553 /* Compute the hash value. */
5554 ha = bfd_elf_hash (name);
5556 /* Store the found hash value in the array given as the argument. */
5557 *(inf->hashcodes)++ = ha;
5559 /* And store it in the struct so that we can put it in the hash table
5561 h->u.elf_hash_value = ha;
5569 struct collect_gnu_hash_codes
5572 const struct elf_backend_data *bed;
5573 unsigned long int nsyms;
5574 unsigned long int maskbits;
5575 unsigned long int *hashcodes;
5576 unsigned long int *hashval;
5577 unsigned long int *indx;
5578 unsigned long int *counts;
5581 long int min_dynindx;
5582 unsigned long int bucketcount;
5583 unsigned long int symindx;
5584 long int local_indx;
5585 long int shift1, shift2;
5586 unsigned long int mask;
5590 /* This function will be called though elf_link_hash_traverse to store
5591 all hash value of the exported symbols in an array. */
5594 elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5596 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5601 /* Ignore indirect symbols. These are added by the versioning code. */
5602 if (h->dynindx == -1)
5605 /* Ignore also local symbols and undefined symbols. */
5606 if (! (*s->bed->elf_hash_symbol) (h))
5609 name = h->root.root.string;
5610 if (h->versioned >= versioned)
5612 char *p = strchr (name, ELF_VER_CHR);
5615 alc = (char *) bfd_malloc (p - name + 1);
5621 memcpy (alc, name, p - name);
5622 alc[p - name] = '\0';
5627 /* Compute the hash value. */
5628 ha = bfd_elf_gnu_hash (name);
5630 /* Store the found hash value in the array for compute_bucket_count,
5631 and also for .dynsym reordering purposes. */
5632 s->hashcodes[s->nsyms] = ha;
5633 s->hashval[h->dynindx] = ha;
5635 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5636 s->min_dynindx = h->dynindx;
5644 /* This function will be called though elf_link_hash_traverse to do
5645 final dynaminc symbol renumbering. */
5648 elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5650 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5651 unsigned long int bucket;
5652 unsigned long int val;
5654 /* Ignore indirect symbols. */
5655 if (h->dynindx == -1)
5658 /* Ignore also local symbols and undefined symbols. */
5659 if (! (*s->bed->elf_hash_symbol) (h))
5661 if (h->dynindx >= s->min_dynindx)
5662 h->dynindx = s->local_indx++;
5666 bucket = s->hashval[h->dynindx] % s->bucketcount;
5667 val = (s->hashval[h->dynindx] >> s->shift1)
5668 & ((s->maskbits >> s->shift1) - 1);
5669 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5671 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5672 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5673 if (s->counts[bucket] == 1)
5674 /* Last element terminates the chain. */
5676 bfd_put_32 (s->output_bfd, val,
5677 s->contents + (s->indx[bucket] - s->symindx) * 4);
5678 --s->counts[bucket];
5679 h->dynindx = s->indx[bucket]++;
5683 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5686 _bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5688 return !(h->forced_local
5689 || h->root.type == bfd_link_hash_undefined
5690 || h->root.type == bfd_link_hash_undefweak
5691 || ((h->root.type == bfd_link_hash_defined
5692 || h->root.type == bfd_link_hash_defweak)
5693 && h->root.u.def.section->output_section == NULL));
5696 /* Array used to determine the number of hash table buckets to use
5697 based on the number of symbols there are. If there are fewer than
5698 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5699 fewer than 37 we use 17 buckets, and so forth. We never use more
5700 than 32771 buckets. */
5702 static const size_t elf_buckets[] =
5704 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5708 /* Compute bucket count for hashing table. We do not use a static set
5709 of possible tables sizes anymore. Instead we determine for all
5710 possible reasonable sizes of the table the outcome (i.e., the
5711 number of collisions etc) and choose the best solution. The
5712 weighting functions are not too simple to allow the table to grow
5713 without bounds. Instead one of the weighting factors is the size.
5714 Therefore the result is always a good payoff between few collisions
5715 (= short chain lengths) and table size. */
5717 compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
5718 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5719 unsigned long int nsyms,
5722 size_t best_size = 0;
5723 unsigned long int i;
5725 /* We have a problem here. The following code to optimize the table
5726 size requires an integer type with more the 32 bits. If
5727 BFD_HOST_U_64_BIT is set we know about such a type. */
5728 #ifdef BFD_HOST_U_64_BIT
5733 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5734 bfd *dynobj = elf_hash_table (info)->dynobj;
5735 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5736 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
5737 unsigned long int *counts;
5739 unsigned int no_improvement_count = 0;
5741 /* Possible optimization parameters: if we have NSYMS symbols we say
5742 that the hashing table must at least have NSYMS/4 and at most
5744 minsize = nsyms / 4;
5747 best_size = maxsize = nsyms * 2;
5752 if ((best_size & 31) == 0)
5756 /* Create array where we count the collisions in. We must use bfd_malloc
5757 since the size could be large. */
5759 amt *= sizeof (unsigned long int);
5760 counts = (unsigned long int *) bfd_malloc (amt);
5764 /* Compute the "optimal" size for the hash table. The criteria is a
5765 minimal chain length. The minor criteria is (of course) the size
5767 for (i = minsize; i < maxsize; ++i)
5769 /* Walk through the array of hashcodes and count the collisions. */
5770 BFD_HOST_U_64_BIT max;
5771 unsigned long int j;
5772 unsigned long int fact;
5774 if (gnu_hash && (i & 31) == 0)
5777 memset (counts, '\0', i * sizeof (unsigned long int));
5779 /* Determine how often each hash bucket is used. */
5780 for (j = 0; j < nsyms; ++j)
5781 ++counts[hashcodes[j] % i];
5783 /* For the weight function we need some information about the
5784 pagesize on the target. This is information need not be 100%
5785 accurate. Since this information is not available (so far) we
5786 define it here to a reasonable default value. If it is crucial
5787 to have a better value some day simply define this value. */
5788 # ifndef BFD_TARGET_PAGESIZE
5789 # define BFD_TARGET_PAGESIZE (4096)
5792 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5794 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5797 /* Variant 1: optimize for short chains. We add the squares
5798 of all the chain lengths (which favors many small chain
5799 over a few long chains). */
5800 for (j = 0; j < i; ++j)
5801 max += counts[j] * counts[j];
5803 /* This adds penalties for the overall size of the table. */
5804 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5807 /* Variant 2: Optimize a lot more for small table. Here we
5808 also add squares of the size but we also add penalties for
5809 empty slots (the +1 term). */
5810 for (j = 0; j < i; ++j)
5811 max += (1 + counts[j]) * (1 + counts[j]);
5813 /* The overall size of the table is considered, but not as
5814 strong as in variant 1, where it is squared. */
5815 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5819 /* Compare with current best results. */
5820 if (max < best_chlen)
5824 no_improvement_count = 0;
5826 /* PR 11843: Avoid futile long searches for the best bucket size
5827 when there are a large number of symbols. */
5828 else if (++no_improvement_count == 100)
5835 #endif /* defined (BFD_HOST_U_64_BIT) */
5837 /* This is the fallback solution if no 64bit type is available or if we
5838 are not supposed to spend much time on optimizations. We select the
5839 bucket count using a fixed set of numbers. */
5840 for (i = 0; elf_buckets[i] != 0; i++)
5842 best_size = elf_buckets[i];
5843 if (nsyms < elf_buckets[i + 1])
5846 if (gnu_hash && best_size < 2)
5853 /* Size any SHT_GROUP section for ld -r. */
5856 _bfd_elf_size_group_sections (struct bfd_link_info *info)
5860 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
5861 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
5862 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
5867 /* Set a default stack segment size. The value in INFO wins. If it
5868 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
5869 undefined it is initialized. */
5872 bfd_elf_stack_segment_size (bfd *output_bfd,
5873 struct bfd_link_info *info,
5874 const char *legacy_symbol,
5875 bfd_vma default_size)
5877 struct elf_link_hash_entry *h = NULL;
5879 /* Look for legacy symbol. */
5881 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
5882 FALSE, FALSE, FALSE);
5883 if (h && (h->root.type == bfd_link_hash_defined
5884 || h->root.type == bfd_link_hash_defweak)
5886 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
5888 /* The symbol has no type if specified on the command line. */
5889 h->type = STT_OBJECT;
5890 if (info->stacksize)
5891 /* xgettext:c-format */
5892 _bfd_error_handler (_("%B: stack size specified and %s set"),
5893 output_bfd, legacy_symbol);
5894 else if (h->root.u.def.section != bfd_abs_section_ptr)
5895 /* xgettext:c-format */
5896 _bfd_error_handler (_("%B: %s not absolute"),
5897 output_bfd, legacy_symbol);
5899 info->stacksize = h->root.u.def.value;
5902 if (!info->stacksize)
5903 /* If the user didn't set a size, or explicitly inhibit the
5904 size, set it now. */
5905 info->stacksize = default_size;
5907 /* Provide the legacy symbol, if it is referenced. */
5908 if (h && (h->root.type == bfd_link_hash_undefined
5909 || h->root.type == bfd_link_hash_undefweak))
5911 struct bfd_link_hash_entry *bh = NULL;
5913 if (!(_bfd_generic_link_add_one_symbol
5914 (info, output_bfd, legacy_symbol,
5915 BSF_GLOBAL, bfd_abs_section_ptr,
5916 info->stacksize >= 0 ? info->stacksize : 0,
5917 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
5920 h = (struct elf_link_hash_entry *) bh;
5922 h->type = STT_OBJECT;
5928 /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
5930 struct elf_gc_sweep_symbol_info
5932 struct bfd_link_info *info;
5933 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
5938 elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
5941 && (((h->root.type == bfd_link_hash_defined
5942 || h->root.type == bfd_link_hash_defweak)
5943 && !((h->def_regular || ELF_COMMON_DEF_P (h))
5944 && h->root.u.def.section->gc_mark))
5945 || h->root.type == bfd_link_hash_undefined
5946 || h->root.type == bfd_link_hash_undefweak))
5948 struct elf_gc_sweep_symbol_info *inf;
5950 inf = (struct elf_gc_sweep_symbol_info *) data;
5951 (*inf->hide_symbol) (inf->info, h, TRUE);
5954 h->ref_regular_nonweak = 0;
5960 /* Set up the sizes and contents of the ELF dynamic sections. This is
5961 called by the ELF linker emulation before_allocation routine. We
5962 must set the sizes of the sections before the linker sets the
5963 addresses of the various sections. */
5966 bfd_elf_size_dynamic_sections (bfd *output_bfd,
5969 const char *filter_shlib,
5971 const char *depaudit,
5972 const char * const *auxiliary_filters,
5973 struct bfd_link_info *info,
5974 asection **sinterpptr)
5977 const struct elf_backend_data *bed;
5981 if (!is_elf_hash_table (info->hash))
5984 dynobj = elf_hash_table (info)->dynobj;
5986 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5988 struct bfd_elf_version_tree *verdefs;
5989 struct elf_info_failed asvinfo;
5990 struct bfd_elf_version_tree *t;
5991 struct bfd_elf_version_expr *d;
5992 struct elf_info_failed eif;
5993 bfd_boolean all_defined;
6000 /* If we are supposed to export all symbols into the dynamic symbol
6001 table (this is not the normal case), then do so. */
6002 if (info->export_dynamic
6003 || (bfd_link_executable (info) && info->dynamic))
6005 elf_link_hash_traverse (elf_hash_table (info),
6006 _bfd_elf_export_symbol,
6014 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6016 if (soname_indx == (size_t) -1
6017 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
6021 soname_indx = (size_t) -1;
6023 /* Make all global versions with definition. */
6024 for (t = info->version_info; t != NULL; t = t->next)
6025 for (d = t->globals.list; d != NULL; d = d->next)
6026 if (!d->symver && d->literal)
6028 const char *verstr, *name;
6029 size_t namelen, verlen, newlen;
6030 char *newname, *p, leading_char;
6031 struct elf_link_hash_entry *newh;
6033 leading_char = bfd_get_symbol_leading_char (output_bfd);
6035 namelen = strlen (name) + (leading_char != '\0');
6037 verlen = strlen (verstr);
6038 newlen = namelen + verlen + 3;
6040 newname = (char *) bfd_malloc (newlen);
6041 if (newname == NULL)
6043 newname[0] = leading_char;
6044 memcpy (newname + (leading_char != '\0'), name, namelen);
6046 /* Check the hidden versioned definition. */
6047 p = newname + namelen;
6049 memcpy (p, verstr, verlen + 1);
6050 newh = elf_link_hash_lookup (elf_hash_table (info),
6051 newname, FALSE, FALSE,
6054 || (newh->root.type != bfd_link_hash_defined
6055 && newh->root.type != bfd_link_hash_defweak))
6057 /* Check the default versioned definition. */
6059 memcpy (p, verstr, verlen + 1);
6060 newh = elf_link_hash_lookup (elf_hash_table (info),
6061 newname, FALSE, FALSE,
6066 /* Mark this version if there is a definition and it is
6067 not defined in a shared object. */
6069 && !newh->def_dynamic
6070 && (newh->root.type == bfd_link_hash_defined
6071 || newh->root.type == bfd_link_hash_defweak))
6075 /* Attach all the symbols to their version information. */
6076 asvinfo.info = info;
6077 asvinfo.failed = FALSE;
6079 elf_link_hash_traverse (elf_hash_table (info),
6080 _bfd_elf_link_assign_sym_version,
6085 if (!info->allow_undefined_version)
6087 /* Check if all global versions have a definition. */
6089 for (t = info->version_info; t != NULL; t = t->next)
6090 for (d = t->globals.list; d != NULL; d = d->next)
6091 if (d->literal && !d->symver && !d->script)
6094 (_("%s: undefined version: %s"),
6095 d->pattern, t->name);
6096 all_defined = FALSE;
6101 bfd_set_error (bfd_error_bad_value);
6106 /* Set up the version definition section. */
6107 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
6108 BFD_ASSERT (s != NULL);
6110 /* We may have created additional version definitions if we are
6111 just linking a regular application. */
6112 verdefs = info->version_info;
6114 /* Skip anonymous version tag. */
6115 if (verdefs != NULL && verdefs->vernum == 0)
6116 verdefs = verdefs->next;
6118 if (verdefs == NULL && !info->create_default_symver)
6119 s->flags |= SEC_EXCLUDE;
6125 Elf_Internal_Verdef def;
6126 Elf_Internal_Verdaux defaux;
6127 struct bfd_link_hash_entry *bh;
6128 struct elf_link_hash_entry *h;
6134 /* Make space for the base version. */
6135 size += sizeof (Elf_External_Verdef);
6136 size += sizeof (Elf_External_Verdaux);
6139 /* Make space for the default version. */
6140 if (info->create_default_symver)
6142 size += sizeof (Elf_External_Verdef);
6146 for (t = verdefs; t != NULL; t = t->next)
6148 struct bfd_elf_version_deps *n;
6150 /* Don't emit base version twice. */
6154 size += sizeof (Elf_External_Verdef);
6155 size += sizeof (Elf_External_Verdaux);
6158 for (n = t->deps; n != NULL; n = n->next)
6159 size += sizeof (Elf_External_Verdaux);
6163 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6164 if (s->contents == NULL && s->size != 0)
6167 /* Fill in the version definition section. */
6171 def.vd_version = VER_DEF_CURRENT;
6172 def.vd_flags = VER_FLG_BASE;
6175 if (info->create_default_symver)
6177 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6178 def.vd_next = sizeof (Elf_External_Verdef);
6182 def.vd_aux = sizeof (Elf_External_Verdef);
6183 def.vd_next = (sizeof (Elf_External_Verdef)
6184 + sizeof (Elf_External_Verdaux));
6187 if (soname_indx != (size_t) -1)
6189 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6191 def.vd_hash = bfd_elf_hash (soname);
6192 defaux.vda_name = soname_indx;
6199 name = lbasename (output_bfd->filename);
6200 def.vd_hash = bfd_elf_hash (name);
6201 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6203 if (indx == (size_t) -1)
6205 defaux.vda_name = indx;
6207 defaux.vda_next = 0;
6209 _bfd_elf_swap_verdef_out (output_bfd, &def,
6210 (Elf_External_Verdef *) p);
6211 p += sizeof (Elf_External_Verdef);
6212 if (info->create_default_symver)
6214 /* Add a symbol representing this version. */
6216 if (! (_bfd_generic_link_add_one_symbol
6217 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6219 get_elf_backend_data (dynobj)->collect, &bh)))
6221 h = (struct elf_link_hash_entry *) bh;
6224 h->type = STT_OBJECT;
6225 h->verinfo.vertree = NULL;
6227 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6230 /* Create a duplicate of the base version with the same
6231 aux block, but different flags. */
6234 def.vd_aux = sizeof (Elf_External_Verdef);
6236 def.vd_next = (sizeof (Elf_External_Verdef)
6237 + sizeof (Elf_External_Verdaux));
6240 _bfd_elf_swap_verdef_out (output_bfd, &def,
6241 (Elf_External_Verdef *) p);
6242 p += sizeof (Elf_External_Verdef);
6244 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6245 (Elf_External_Verdaux *) p);
6246 p += sizeof (Elf_External_Verdaux);
6248 for (t = verdefs; t != NULL; t = t->next)
6251 struct bfd_elf_version_deps *n;
6253 /* Don't emit the base version twice. */
6258 for (n = t->deps; n != NULL; n = n->next)
6261 /* Add a symbol representing this version. */
6263 if (! (_bfd_generic_link_add_one_symbol
6264 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6266 get_elf_backend_data (dynobj)->collect, &bh)))
6268 h = (struct elf_link_hash_entry *) bh;
6271 h->type = STT_OBJECT;
6272 h->verinfo.vertree = t;
6274 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6277 def.vd_version = VER_DEF_CURRENT;
6279 if (t->globals.list == NULL
6280 && t->locals.list == NULL
6282 def.vd_flags |= VER_FLG_WEAK;
6283 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
6284 def.vd_cnt = cdeps + 1;
6285 def.vd_hash = bfd_elf_hash (t->name);
6286 def.vd_aux = sizeof (Elf_External_Verdef);
6289 /* If a basever node is next, it *must* be the last node in
6290 the chain, otherwise Verdef construction breaks. */
6291 if (t->next != NULL && t->next->vernum == 0)
6292 BFD_ASSERT (t->next->next == NULL);
6294 if (t->next != NULL && t->next->vernum != 0)
6295 def.vd_next = (sizeof (Elf_External_Verdef)
6296 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6298 _bfd_elf_swap_verdef_out (output_bfd, &def,
6299 (Elf_External_Verdef *) p);
6300 p += sizeof (Elf_External_Verdef);
6302 defaux.vda_name = h->dynstr_index;
6303 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6305 defaux.vda_next = 0;
6306 if (t->deps != NULL)
6307 defaux.vda_next = sizeof (Elf_External_Verdaux);
6308 t->name_indx = defaux.vda_name;
6310 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6311 (Elf_External_Verdaux *) p);
6312 p += sizeof (Elf_External_Verdaux);
6314 for (n = t->deps; n != NULL; n = n->next)
6316 if (n->version_needed == NULL)
6318 /* This can happen if there was an error in the
6320 defaux.vda_name = 0;
6324 defaux.vda_name = n->version_needed->name_indx;
6325 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6328 if (n->next == NULL)
6329 defaux.vda_next = 0;
6331 defaux.vda_next = sizeof (Elf_External_Verdaux);
6333 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6334 (Elf_External_Verdaux *) p);
6335 p += sizeof (Elf_External_Verdaux);
6339 elf_tdata (output_bfd)->cverdefs = cdefs;
6342 /* Work out the size of the version reference section. */
6344 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
6345 BFD_ASSERT (s != NULL);
6347 struct elf_find_verdep_info sinfo;
6350 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6351 if (sinfo.vers == 0)
6353 sinfo.failed = FALSE;
6355 elf_link_hash_traverse (elf_hash_table (info),
6356 _bfd_elf_link_find_version_dependencies,
6361 if (elf_tdata (output_bfd)->verref == NULL)
6362 s->flags |= SEC_EXCLUDE;
6365 Elf_Internal_Verneed *vn;
6370 /* Build the version dependency section. */
6373 for (vn = elf_tdata (output_bfd)->verref;
6375 vn = vn->vn_nextref)
6377 Elf_Internal_Vernaux *a;
6379 size += sizeof (Elf_External_Verneed);
6381 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6382 size += sizeof (Elf_External_Vernaux);
6386 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6387 if (s->contents == NULL)
6391 for (vn = elf_tdata (output_bfd)->verref;
6393 vn = vn->vn_nextref)
6396 Elf_Internal_Vernaux *a;
6400 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6403 vn->vn_version = VER_NEED_CURRENT;
6405 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6406 elf_dt_name (vn->vn_bfd) != NULL
6407 ? elf_dt_name (vn->vn_bfd)
6408 : lbasename (vn->vn_bfd->filename),
6410 if (indx == (size_t) -1)
6413 vn->vn_aux = sizeof (Elf_External_Verneed);
6414 if (vn->vn_nextref == NULL)
6417 vn->vn_next = (sizeof (Elf_External_Verneed)
6418 + caux * sizeof (Elf_External_Vernaux));
6420 _bfd_elf_swap_verneed_out (output_bfd, vn,
6421 (Elf_External_Verneed *) p);
6422 p += sizeof (Elf_External_Verneed);
6424 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6426 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6427 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6428 a->vna_nodename, FALSE);
6429 if (indx == (size_t) -1)
6432 if (a->vna_nextptr == NULL)
6435 a->vna_next = sizeof (Elf_External_Vernaux);
6437 _bfd_elf_swap_vernaux_out (output_bfd, a,
6438 (Elf_External_Vernaux *) p);
6439 p += sizeof (Elf_External_Vernaux);
6443 elf_tdata (output_bfd)->cverrefs = crefs;
6448 bed = get_elf_backend_data (output_bfd);
6450 if (info->gc_sections && bed->can_gc_sections)
6452 struct elf_gc_sweep_symbol_info sweep_info;
6453 unsigned long section_sym_count;
6455 /* Remove the symbols that were in the swept sections from the
6456 dynamic symbol table. GCFIXME: Anyone know how to get them
6457 out of the static symbol table as well? */
6458 sweep_info.info = info;
6459 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
6460 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
6463 /* We need to reassign dynsym indices now that symbols may have
6464 been removed. See the call in `bfd_elf_size_dynsym_hash_dynstr'
6465 for the details of the conditions used here. */
6466 if (elf_hash_table (info)->dynamic_sections_created
6467 || bed->always_renumber_dynsyms)
6468 _bfd_elf_link_renumber_dynsyms (output_bfd, info, §ion_sym_count);
6471 /* Any syms created from now on start with -1 in
6472 got.refcount/offset and plt.refcount/offset. */
6473 elf_hash_table (info)->init_got_refcount
6474 = elf_hash_table (info)->init_got_offset;
6475 elf_hash_table (info)->init_plt_refcount
6476 = elf_hash_table (info)->init_plt_offset;
6478 if (bfd_link_relocatable (info)
6479 && !_bfd_elf_size_group_sections (info))
6482 /* The backend may have to create some sections regardless of whether
6483 we're dynamic or not. */
6484 if (bed->elf_backend_always_size_sections
6485 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
6488 /* Determine any GNU_STACK segment requirements, after the backend
6489 has had a chance to set a default segment size. */
6490 if (info->execstack)
6491 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
6492 else if (info->noexecstack)
6493 elf_stack_flags (output_bfd) = PF_R | PF_W;
6497 asection *notesec = NULL;
6500 for (inputobj = info->input_bfds;
6502 inputobj = inputobj->link.next)
6507 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
6509 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
6512 if (s->flags & SEC_CODE)
6516 else if (bed->default_execstack)
6519 if (notesec || info->stacksize > 0)
6520 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
6521 if (notesec && exec && bfd_link_relocatable (info)
6522 && notesec->output_section != bfd_abs_section_ptr)
6523 notesec->output_section->flags |= SEC_CODE;
6526 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6528 struct elf_info_failed eif;
6529 struct elf_link_hash_entry *h;
6533 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
6534 BFD_ASSERT (*sinterpptr != NULL || !bfd_link_executable (info) || info->nointerp);
6538 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
6540 info->flags |= DF_SYMBOLIC;
6548 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
6550 if (indx == (size_t) -1)
6553 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
6554 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
6558 if (filter_shlib != NULL)
6562 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6563 filter_shlib, TRUE);
6564 if (indx == (size_t) -1
6565 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
6569 if (auxiliary_filters != NULL)
6571 const char * const *p;
6573 for (p = auxiliary_filters; *p != NULL; p++)
6577 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6579 if (indx == (size_t) -1
6580 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
6589 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
6591 if (indx == (size_t) -1
6592 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
6596 if (depaudit != NULL)
6600 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
6602 if (indx == (size_t) -1
6603 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
6610 /* Find all symbols which were defined in a dynamic object and make
6611 the backend pick a reasonable value for them. */
6612 elf_link_hash_traverse (elf_hash_table (info),
6613 _bfd_elf_adjust_dynamic_symbol,
6618 /* Add some entries to the .dynamic section. We fill in some of the
6619 values later, in bfd_elf_final_link, but we must add the entries
6620 now so that we know the final size of the .dynamic section. */
6622 /* If there are initialization and/or finalization functions to
6623 call then add the corresponding DT_INIT/DT_FINI entries. */
6624 h = (info->init_function
6625 ? elf_link_hash_lookup (elf_hash_table (info),
6626 info->init_function, FALSE,
6633 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
6636 h = (info->fini_function
6637 ? elf_link_hash_lookup (elf_hash_table (info),
6638 info->fini_function, FALSE,
6645 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
6649 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
6650 if (s != NULL && s->linker_has_input)
6652 /* DT_PREINIT_ARRAY is not allowed in shared library. */
6653 if (! bfd_link_executable (info))
6658 for (sub = info->input_bfds; sub != NULL;
6659 sub = sub->link.next)
6660 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
6661 for (o = sub->sections; o != NULL; o = o->next)
6662 if (elf_section_data (o)->this_hdr.sh_type
6663 == SHT_PREINIT_ARRAY)
6666 (_("%B: .preinit_array section is not allowed in DSO"),
6671 bfd_set_error (bfd_error_nonrepresentable_section);
6675 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
6676 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
6679 s = bfd_get_section_by_name (output_bfd, ".init_array");
6680 if (s != NULL && s->linker_has_input)
6682 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
6683 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
6686 s = bfd_get_section_by_name (output_bfd, ".fini_array");
6687 if (s != NULL && s->linker_has_input)
6689 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
6690 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
6694 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
6695 /* If .dynstr is excluded from the link, we don't want any of
6696 these tags. Strictly, we should be checking each section
6697 individually; This quick check covers for the case where
6698 someone does a /DISCARD/ : { *(*) }. */
6699 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
6701 bfd_size_type strsize;
6703 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
6704 if ((info->emit_hash
6705 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
6706 || (info->emit_gnu_hash
6707 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
6708 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
6709 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
6710 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
6711 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
6712 bed->s->sizeof_sym))
6717 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
6720 /* The backend must work out the sizes of all the other dynamic
6723 && bed->elf_backend_size_dynamic_sections != NULL
6724 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
6727 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6729 unsigned long section_sym_count;
6731 if (elf_tdata (output_bfd)->cverdefs)
6733 unsigned int crefs = elf_tdata (output_bfd)->cverdefs;
6735 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6736 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, crefs))
6740 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6742 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6745 else if (info->flags & DF_BIND_NOW)
6747 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6753 if (bfd_link_executable (info))
6754 info->flags_1 &= ~ (DF_1_INITFIRST
6757 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6761 if (elf_tdata (output_bfd)->cverrefs)
6763 unsigned int crefs = elf_tdata (output_bfd)->cverrefs;
6765 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6766 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6770 if ((elf_tdata (output_bfd)->cverrefs == 0
6771 && elf_tdata (output_bfd)->cverdefs == 0)
6772 || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6773 §ion_sym_count) == 0)
6777 s = bfd_get_linker_section (dynobj, ".gnu.version");
6778 s->flags |= SEC_EXCLUDE;
6784 /* Find the first non-excluded output section. We'll use its
6785 section symbol for some emitted relocs. */
6787 _bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6791 for (s = output_bfd->sections; s != NULL; s = s->next)
6792 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
6793 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6795 elf_hash_table (info)->text_index_section = s;
6800 /* Find two non-excluded output sections, one for code, one for data.
6801 We'll use their section symbols for some emitted relocs. */
6803 _bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
6807 /* Data first, since setting text_index_section changes
6808 _bfd_elf_link_omit_section_dynsym. */
6809 for (s = output_bfd->sections; s != NULL; s = s->next)
6810 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
6811 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6813 elf_hash_table (info)->data_index_section = s;
6817 for (s = output_bfd->sections; s != NULL; s = s->next)
6818 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
6819 == (SEC_ALLOC | SEC_READONLY))
6820 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6822 elf_hash_table (info)->text_index_section = s;
6826 if (elf_hash_table (info)->text_index_section == NULL)
6827 elf_hash_table (info)->text_index_section
6828 = elf_hash_table (info)->data_index_section;
6832 bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6834 const struct elf_backend_data *bed;
6835 unsigned long section_sym_count;
6836 bfd_size_type dynsymcount;
6838 if (!is_elf_hash_table (info->hash))
6841 bed = get_elf_backend_data (output_bfd);
6842 (*bed->elf_backend_init_index_section) (output_bfd, info);
6844 /* Assign dynsym indices. In a shared library we generate a section
6845 symbol for each output section, which come first. Next come all
6846 of the back-end allocated local dynamic syms, followed by the rest
6847 of the global symbols.
6849 This is usually not needed for static binaries, however backends
6850 can request to always do it, e.g. the MIPS backend uses dynamic
6851 symbol counts to lay out GOT, which will be produced in the
6852 presence of GOT relocations even in static binaries (holding fixed
6853 data in that case, to satisfy those relocations). */
6855 if (elf_hash_table (info)->dynamic_sections_created
6856 || bed->always_renumber_dynsyms)
6857 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6858 §ion_sym_count);
6860 if (elf_hash_table (info)->dynamic_sections_created)
6864 unsigned int dtagcount;
6866 dynobj = elf_hash_table (info)->dynobj;
6868 /* Work out the size of the symbol version section. */
6869 s = bfd_get_linker_section (dynobj, ".gnu.version");
6870 BFD_ASSERT (s != NULL);
6871 if ((s->flags & SEC_EXCLUDE) == 0)
6873 s->size = dynsymcount * sizeof (Elf_External_Versym);
6874 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6875 if (s->contents == NULL)
6878 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6882 /* Set the size of the .dynsym and .hash sections. We counted
6883 the number of dynamic symbols in elf_link_add_object_symbols.
6884 We will build the contents of .dynsym and .hash when we build
6885 the final symbol table, because until then we do not know the
6886 correct value to give the symbols. We built the .dynstr
6887 section as we went along in elf_link_add_object_symbols. */
6888 s = elf_hash_table (info)->dynsym;
6889 BFD_ASSERT (s != NULL);
6890 s->size = dynsymcount * bed->s->sizeof_sym;
6892 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6893 if (s->contents == NULL)
6896 /* The first entry in .dynsym is a dummy symbol. Clear all the
6897 section syms, in case we don't output them all. */
6898 ++section_sym_count;
6899 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
6901 elf_hash_table (info)->bucketcount = 0;
6903 /* Compute the size of the hashing table. As a side effect this
6904 computes the hash values for all the names we export. */
6905 if (info->emit_hash)
6907 unsigned long int *hashcodes;
6908 struct hash_codes_info hashinf;
6910 unsigned long int nsyms;
6912 size_t hash_entry_size;
6914 /* Compute the hash values for all exported symbols. At the same
6915 time store the values in an array so that we could use them for
6917 amt = dynsymcount * sizeof (unsigned long int);
6918 hashcodes = (unsigned long int *) bfd_malloc (amt);
6919 if (hashcodes == NULL)
6921 hashinf.hashcodes = hashcodes;
6922 hashinf.error = FALSE;
6924 /* Put all hash values in HASHCODES. */
6925 elf_link_hash_traverse (elf_hash_table (info),
6926 elf_collect_hash_codes, &hashinf);
6933 nsyms = hashinf.hashcodes - hashcodes;
6935 = compute_bucket_count (info, hashcodes, nsyms, 0);
6938 if (bucketcount == 0)
6941 elf_hash_table (info)->bucketcount = bucketcount;
6943 s = bfd_get_linker_section (dynobj, ".hash");
6944 BFD_ASSERT (s != NULL);
6945 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6946 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
6947 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6948 if (s->contents == NULL)
6951 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6952 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6953 s->contents + hash_entry_size);
6956 if (info->emit_gnu_hash)
6959 unsigned char *contents;
6960 struct collect_gnu_hash_codes cinfo;
6964 memset (&cinfo, 0, sizeof (cinfo));
6966 /* Compute the hash values for all exported symbols. At the same
6967 time store the values in an array so that we could use them for
6969 amt = dynsymcount * 2 * sizeof (unsigned long int);
6970 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
6971 if (cinfo.hashcodes == NULL)
6974 cinfo.hashval = cinfo.hashcodes + dynsymcount;
6975 cinfo.min_dynindx = -1;
6976 cinfo.output_bfd = output_bfd;
6979 /* Put all hash values in HASHCODES. */
6980 elf_link_hash_traverse (elf_hash_table (info),
6981 elf_collect_gnu_hash_codes, &cinfo);
6984 free (cinfo.hashcodes);
6989 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6991 if (bucketcount == 0)
6993 free (cinfo.hashcodes);
6997 s = bfd_get_linker_section (dynobj, ".gnu.hash");
6998 BFD_ASSERT (s != NULL);
7000 if (cinfo.nsyms == 0)
7002 /* Empty .gnu.hash section is special. */
7003 BFD_ASSERT (cinfo.min_dynindx == -1);
7004 free (cinfo.hashcodes);
7005 s->size = 5 * 4 + bed->s->arch_size / 8;
7006 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
7007 if (contents == NULL)
7009 s->contents = contents;
7010 /* 1 empty bucket. */
7011 bfd_put_32 (output_bfd, 1, contents);
7012 /* SYMIDX above the special symbol 0. */
7013 bfd_put_32 (output_bfd, 1, contents + 4);
7014 /* Just one word for bitmask. */
7015 bfd_put_32 (output_bfd, 1, contents + 8);
7016 /* Only hash fn bloom filter. */
7017 bfd_put_32 (output_bfd, 0, contents + 12);
7018 /* No hashes are valid - empty bitmask. */
7019 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
7020 /* No hashes in the only bucket. */
7021 bfd_put_32 (output_bfd, 0,
7022 contents + 16 + bed->s->arch_size / 8);
7026 unsigned long int maskwords, maskbitslog2, x;
7027 BFD_ASSERT (cinfo.min_dynindx != -1);
7031 while ((x >>= 1) != 0)
7033 if (maskbitslog2 < 3)
7035 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
7036 maskbitslog2 = maskbitslog2 + 3;
7038 maskbitslog2 = maskbitslog2 + 2;
7039 if (bed->s->arch_size == 64)
7041 if (maskbitslog2 == 5)
7047 cinfo.mask = (1 << cinfo.shift1) - 1;
7048 cinfo.shift2 = maskbitslog2;
7049 cinfo.maskbits = 1 << maskbitslog2;
7050 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
7051 amt = bucketcount * sizeof (unsigned long int) * 2;
7052 amt += maskwords * sizeof (bfd_vma);
7053 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
7054 if (cinfo.bitmask == NULL)
7056 free (cinfo.hashcodes);
7060 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
7061 cinfo.indx = cinfo.counts + bucketcount;
7062 cinfo.symindx = dynsymcount - cinfo.nsyms;
7063 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
7065 /* Determine how often each hash bucket is used. */
7066 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
7067 for (i = 0; i < cinfo.nsyms; ++i)
7068 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
7070 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
7071 if (cinfo.counts[i] != 0)
7073 cinfo.indx[i] = cnt;
7074 cnt += cinfo.counts[i];
7076 BFD_ASSERT (cnt == dynsymcount);
7077 cinfo.bucketcount = bucketcount;
7078 cinfo.local_indx = cinfo.min_dynindx;
7080 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
7081 s->size += cinfo.maskbits / 8;
7082 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
7083 if (contents == NULL)
7085 free (cinfo.bitmask);
7086 free (cinfo.hashcodes);
7090 s->contents = contents;
7091 bfd_put_32 (output_bfd, bucketcount, contents);
7092 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
7093 bfd_put_32 (output_bfd, maskwords, contents + 8);
7094 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
7095 contents += 16 + cinfo.maskbits / 8;
7097 for (i = 0; i < bucketcount; ++i)
7099 if (cinfo.counts[i] == 0)
7100 bfd_put_32 (output_bfd, 0, contents);
7102 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
7106 cinfo.contents = contents;
7108 /* Renumber dynamic symbols, populate .gnu.hash section. */
7109 elf_link_hash_traverse (elf_hash_table (info),
7110 elf_renumber_gnu_hash_syms, &cinfo);
7112 contents = s->contents + 16;
7113 for (i = 0; i < maskwords; ++i)
7115 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
7117 contents += bed->s->arch_size / 8;
7120 free (cinfo.bitmask);
7121 free (cinfo.hashcodes);
7125 s = bfd_get_linker_section (dynobj, ".dynstr");
7126 BFD_ASSERT (s != NULL);
7128 elf_finalize_dynstr (output_bfd, info);
7130 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
7132 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
7133 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
7140 /* Make sure sec_info_type is cleared if sec_info is cleared too. */
7143 merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
7146 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
7147 sec->sec_info_type = SEC_INFO_TYPE_NONE;
7150 /* Finish SHF_MERGE section merging. */
7153 _bfd_elf_merge_sections (bfd *obfd, struct bfd_link_info *info)
7158 if (!is_elf_hash_table (info->hash))
7161 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7162 if ((ibfd->flags & DYNAMIC) == 0
7163 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
7164 && (elf_elfheader (ibfd)->e_ident[EI_CLASS]
7165 == get_elf_backend_data (obfd)->s->elfclass))
7166 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
7167 if ((sec->flags & SEC_MERGE) != 0
7168 && !bfd_is_abs_section (sec->output_section))
7170 struct bfd_elf_section_data *secdata;
7172 secdata = elf_section_data (sec);
7173 if (! _bfd_add_merge_section (obfd,
7174 &elf_hash_table (info)->merge_info,
7175 sec, &secdata->sec_info))
7177 else if (secdata->sec_info)
7178 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
7181 if (elf_hash_table (info)->merge_info != NULL)
7182 _bfd_merge_sections (obfd, info, elf_hash_table (info)->merge_info,
7183 merge_sections_remove_hook);
7187 /* Create an entry in an ELF linker hash table. */
7189 struct bfd_hash_entry *
7190 _bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
7191 struct bfd_hash_table *table,
7194 /* Allocate the structure if it has not already been allocated by a
7198 entry = (struct bfd_hash_entry *)
7199 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
7204 /* Call the allocation method of the superclass. */
7205 entry = _bfd_link_hash_newfunc (entry, table, string);
7208 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
7209 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
7211 /* Set local fields. */
7214 ret->got = htab->init_got_refcount;
7215 ret->plt = htab->init_plt_refcount;
7216 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
7217 - offsetof (struct elf_link_hash_entry, size)));
7218 /* Assume that we have been called by a non-ELF symbol reader.
7219 This flag is then reset by the code which reads an ELF input
7220 file. This ensures that a symbol created by a non-ELF symbol
7221 reader will have the flag set correctly. */
7228 /* Copy data from an indirect symbol to its direct symbol, hiding the
7229 old indirect symbol. Also used for copying flags to a weakdef. */
7232 _bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
7233 struct elf_link_hash_entry *dir,
7234 struct elf_link_hash_entry *ind)
7236 struct elf_link_hash_table *htab;
7238 /* Copy down any references that we may have already seen to the
7239 symbol which just became indirect. */
7241 if (dir->versioned != versioned_hidden)
7242 dir->ref_dynamic |= ind->ref_dynamic;
7243 dir->ref_regular |= ind->ref_regular;
7244 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
7245 dir->non_got_ref |= ind->non_got_ref;
7246 dir->needs_plt |= ind->needs_plt;
7247 dir->pointer_equality_needed |= ind->pointer_equality_needed;
7249 if (ind->root.type != bfd_link_hash_indirect)
7252 /* Copy over the global and procedure linkage table refcount entries.
7253 These may have been already set up by a check_relocs routine. */
7254 htab = elf_hash_table (info);
7255 if (ind->got.refcount > htab->init_got_refcount.refcount)
7257 if (dir->got.refcount < 0)
7258 dir->got.refcount = 0;
7259 dir->got.refcount += ind->got.refcount;
7260 ind->got.refcount = htab->init_got_refcount.refcount;
7263 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
7265 if (dir->plt.refcount < 0)
7266 dir->plt.refcount = 0;
7267 dir->plt.refcount += ind->plt.refcount;
7268 ind->plt.refcount = htab->init_plt_refcount.refcount;
7271 if (ind->dynindx != -1)
7273 if (dir->dynindx != -1)
7274 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
7275 dir->dynindx = ind->dynindx;
7276 dir->dynstr_index = ind->dynstr_index;
7278 ind->dynstr_index = 0;
7283 _bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
7284 struct elf_link_hash_entry *h,
7285 bfd_boolean force_local)
7287 /* STT_GNU_IFUNC symbol must go through PLT. */
7288 if (h->type != STT_GNU_IFUNC)
7290 h->plt = elf_hash_table (info)->init_plt_offset;
7295 h->forced_local = 1;
7296 if (h->dynindx != -1)
7298 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
7301 h->dynstr_index = 0;
7306 /* Initialize an ELF linker hash table. *TABLE has been zeroed by our
7310 _bfd_elf_link_hash_table_init
7311 (struct elf_link_hash_table *table,
7313 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
7314 struct bfd_hash_table *,
7316 unsigned int entsize,
7317 enum elf_target_id target_id)
7320 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
7322 table->init_got_refcount.refcount = can_refcount - 1;
7323 table->init_plt_refcount.refcount = can_refcount - 1;
7324 table->init_got_offset.offset = -(bfd_vma) 1;
7325 table->init_plt_offset.offset = -(bfd_vma) 1;
7326 /* The first dynamic symbol is a dummy. */
7327 table->dynsymcount = 1;
7329 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
7331 table->root.type = bfd_link_elf_hash_table;
7332 table->hash_table_id = target_id;
7337 /* Create an ELF linker hash table. */
7339 struct bfd_link_hash_table *
7340 _bfd_elf_link_hash_table_create (bfd *abfd)
7342 struct elf_link_hash_table *ret;
7343 bfd_size_type amt = sizeof (struct elf_link_hash_table);
7345 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
7349 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
7350 sizeof (struct elf_link_hash_entry),
7356 ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
7361 /* Destroy an ELF linker hash table. */
7364 _bfd_elf_link_hash_table_free (bfd *obfd)
7366 struct elf_link_hash_table *htab;
7368 htab = (struct elf_link_hash_table *) obfd->link.hash;
7369 if (htab->dynstr != NULL)
7370 _bfd_elf_strtab_free (htab->dynstr);
7371 _bfd_merge_sections_free (htab->merge_info);
7372 _bfd_generic_link_hash_table_free (obfd);
7375 /* This is a hook for the ELF emulation code in the generic linker to
7376 tell the backend linker what file name to use for the DT_NEEDED
7377 entry for a dynamic object. */
7380 bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
7382 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7383 && bfd_get_format (abfd) == bfd_object)
7384 elf_dt_name (abfd) = name;
7388 bfd_elf_get_dyn_lib_class (bfd *abfd)
7391 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7392 && bfd_get_format (abfd) == bfd_object)
7393 lib_class = elf_dyn_lib_class (abfd);
7400 bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
7402 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7403 && bfd_get_format (abfd) == bfd_object)
7404 elf_dyn_lib_class (abfd) = lib_class;
7407 /* Get the list of DT_NEEDED entries for a link. This is a hook for
7408 the linker ELF emulation code. */
7410 struct bfd_link_needed_list *
7411 bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
7412 struct bfd_link_info *info)
7414 if (! is_elf_hash_table (info->hash))
7416 return elf_hash_table (info)->needed;
7419 /* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
7420 hook for the linker ELF emulation code. */
7422 struct bfd_link_needed_list *
7423 bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
7424 struct bfd_link_info *info)
7426 if (! is_elf_hash_table (info->hash))
7428 return elf_hash_table (info)->runpath;
7431 /* Get the name actually used for a dynamic object for a link. This
7432 is the SONAME entry if there is one. Otherwise, it is the string
7433 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
7436 bfd_elf_get_dt_soname (bfd *abfd)
7438 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7439 && bfd_get_format (abfd) == bfd_object)
7440 return elf_dt_name (abfd);
7444 /* Get the list of DT_NEEDED entries from a BFD. This is a hook for
7445 the ELF linker emulation code. */
7448 bfd_elf_get_bfd_needed_list (bfd *abfd,
7449 struct bfd_link_needed_list **pneeded)
7452 bfd_byte *dynbuf = NULL;
7453 unsigned int elfsec;
7454 unsigned long shlink;
7455 bfd_byte *extdyn, *extdynend;
7457 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
7461 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
7462 || bfd_get_format (abfd) != bfd_object)
7465 s = bfd_get_section_by_name (abfd, ".dynamic");
7466 if (s == NULL || s->size == 0)
7469 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
7472 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
7473 if (elfsec == SHN_BAD)
7476 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
7478 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7479 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7482 extdynend = extdyn + s->size;
7483 for (; extdyn < extdynend; extdyn += extdynsize)
7485 Elf_Internal_Dyn dyn;
7487 (*swap_dyn_in) (abfd, extdyn, &dyn);
7489 if (dyn.d_tag == DT_NULL)
7492 if (dyn.d_tag == DT_NEEDED)
7495 struct bfd_link_needed_list *l;
7496 unsigned int tagv = dyn.d_un.d_val;
7499 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7504 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
7525 struct elf_symbuf_symbol
7527 unsigned long st_name; /* Symbol name, index in string tbl */
7528 unsigned char st_info; /* Type and binding attributes */
7529 unsigned char st_other; /* Visibilty, and target specific */
7532 struct elf_symbuf_head
7534 struct elf_symbuf_symbol *ssym;
7536 unsigned int st_shndx;
7543 Elf_Internal_Sym *isym;
7544 struct elf_symbuf_symbol *ssym;
7549 /* Sort references to symbols by ascending section number. */
7552 elf_sort_elf_symbol (const void *arg1, const void *arg2)
7554 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7555 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7557 return s1->st_shndx - s2->st_shndx;
7561 elf_sym_name_compare (const void *arg1, const void *arg2)
7563 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7564 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7565 return strcmp (s1->name, s2->name);
7568 static struct elf_symbuf_head *
7569 elf_create_symbuf (size_t symcount, Elf_Internal_Sym *isymbuf)
7571 Elf_Internal_Sym **ind, **indbufend, **indbuf;
7572 struct elf_symbuf_symbol *ssym;
7573 struct elf_symbuf_head *ssymbuf, *ssymhead;
7574 size_t i, shndx_count, total_size;
7576 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
7580 for (ind = indbuf, i = 0; i < symcount; i++)
7581 if (isymbuf[i].st_shndx != SHN_UNDEF)
7582 *ind++ = &isymbuf[i];
7585 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7586 elf_sort_elf_symbol);
7589 if (indbufend > indbuf)
7590 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7591 if (ind[0]->st_shndx != ind[1]->st_shndx)
7594 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7595 + (indbufend - indbuf) * sizeof (*ssym));
7596 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
7597 if (ssymbuf == NULL)
7603 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
7604 ssymbuf->ssym = NULL;
7605 ssymbuf->count = shndx_count;
7606 ssymbuf->st_shndx = 0;
7607 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7609 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7612 ssymhead->ssym = ssym;
7613 ssymhead->count = 0;
7614 ssymhead->st_shndx = (*ind)->st_shndx;
7616 ssym->st_name = (*ind)->st_name;
7617 ssym->st_info = (*ind)->st_info;
7618 ssym->st_other = (*ind)->st_other;
7621 BFD_ASSERT ((size_t) (ssymhead - ssymbuf) == shndx_count
7622 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7629 /* Check if 2 sections define the same set of local and global
7633 bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7634 struct bfd_link_info *info)
7637 const struct elf_backend_data *bed1, *bed2;
7638 Elf_Internal_Shdr *hdr1, *hdr2;
7639 size_t symcount1, symcount2;
7640 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7641 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7642 Elf_Internal_Sym *isym, *isymend;
7643 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
7644 size_t count1, count2, i;
7645 unsigned int shndx1, shndx2;
7651 /* Both sections have to be in ELF. */
7652 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7653 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7656 if (elf_section_type (sec1) != elf_section_type (sec2))
7659 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7660 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
7661 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
7664 bed1 = get_elf_backend_data (bfd1);
7665 bed2 = get_elf_backend_data (bfd2);
7666 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7667 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7668 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7669 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7671 if (symcount1 == 0 || symcount2 == 0)
7677 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7678 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
7680 if (ssymbuf1 == NULL)
7682 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7684 if (isymbuf1 == NULL)
7687 if (!info->reduce_memory_overheads)
7688 elf_tdata (bfd1)->symbuf = ssymbuf1
7689 = elf_create_symbuf (symcount1, isymbuf1);
7692 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7694 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7696 if (isymbuf2 == NULL)
7699 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7700 elf_tdata (bfd2)->symbuf = ssymbuf2
7701 = elf_create_symbuf (symcount2, isymbuf2);
7704 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7706 /* Optimized faster version. */
7708 struct elf_symbol *symp;
7709 struct elf_symbuf_symbol *ssym, *ssymend;
7712 hi = ssymbuf1->count;
7717 mid = (lo + hi) / 2;
7718 if (shndx1 < ssymbuf1[mid].st_shndx)
7720 else if (shndx1 > ssymbuf1[mid].st_shndx)
7724 count1 = ssymbuf1[mid].count;
7731 hi = ssymbuf2->count;
7736 mid = (lo + hi) / 2;
7737 if (shndx2 < ssymbuf2[mid].st_shndx)
7739 else if (shndx2 > ssymbuf2[mid].st_shndx)
7743 count2 = ssymbuf2[mid].count;
7749 if (count1 == 0 || count2 == 0 || count1 != count2)
7753 = (struct elf_symbol *) bfd_malloc (count1 * sizeof (*symtable1));
7755 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
7756 if (symtable1 == NULL || symtable2 == NULL)
7760 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7761 ssym < ssymend; ssym++, symp++)
7763 symp->u.ssym = ssym;
7764 symp->name = bfd_elf_string_from_elf_section (bfd1,
7770 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
7771 ssym < ssymend; ssym++, symp++)
7773 symp->u.ssym = ssym;
7774 symp->name = bfd_elf_string_from_elf_section (bfd2,
7779 /* Sort symbol by name. */
7780 qsort (symtable1, count1, sizeof (struct elf_symbol),
7781 elf_sym_name_compare);
7782 qsort (symtable2, count1, sizeof (struct elf_symbol),
7783 elf_sym_name_compare);
7785 for (i = 0; i < count1; i++)
7786 /* Two symbols must have the same binding, type and name. */
7787 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
7788 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
7789 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7796 symtable1 = (struct elf_symbol *)
7797 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
7798 symtable2 = (struct elf_symbol *)
7799 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
7800 if (symtable1 == NULL || symtable2 == NULL)
7803 /* Count definitions in the section. */
7805 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
7806 if (isym->st_shndx == shndx1)
7807 symtable1[count1++].u.isym = isym;
7810 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
7811 if (isym->st_shndx == shndx2)
7812 symtable2[count2++].u.isym = isym;
7814 if (count1 == 0 || count2 == 0 || count1 != count2)
7817 for (i = 0; i < count1; i++)
7819 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
7820 symtable1[i].u.isym->st_name);
7822 for (i = 0; i < count2; i++)
7824 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
7825 symtable2[i].u.isym->st_name);
7827 /* Sort symbol by name. */
7828 qsort (symtable1, count1, sizeof (struct elf_symbol),
7829 elf_sym_name_compare);
7830 qsort (symtable2, count1, sizeof (struct elf_symbol),
7831 elf_sym_name_compare);
7833 for (i = 0; i < count1; i++)
7834 /* Two symbols must have the same binding, type and name. */
7835 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
7836 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
7837 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7855 /* Return TRUE if 2 section types are compatible. */
7858 _bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
7859 bfd *bbfd, const asection *bsec)
7863 || abfd->xvec->flavour != bfd_target_elf_flavour
7864 || bbfd->xvec->flavour != bfd_target_elf_flavour)
7867 return elf_section_type (asec) == elf_section_type (bsec);
7870 /* Final phase of ELF linker. */
7872 /* A structure we use to avoid passing large numbers of arguments. */
7874 struct elf_final_link_info
7876 /* General link information. */
7877 struct bfd_link_info *info;
7880 /* Symbol string table. */
7881 struct elf_strtab_hash *symstrtab;
7882 /* .hash section. */
7884 /* symbol version section (.gnu.version). */
7885 asection *symver_sec;
7886 /* Buffer large enough to hold contents of any section. */
7888 /* Buffer large enough to hold external relocs of any section. */
7889 void *external_relocs;
7890 /* Buffer large enough to hold internal relocs of any section. */
7891 Elf_Internal_Rela *internal_relocs;
7892 /* Buffer large enough to hold external local symbols of any input
7894 bfd_byte *external_syms;
7895 /* And a buffer for symbol section indices. */
7896 Elf_External_Sym_Shndx *locsym_shndx;
7897 /* Buffer large enough to hold internal local symbols of any input
7899 Elf_Internal_Sym *internal_syms;
7900 /* Array large enough to hold a symbol index for each local symbol
7901 of any input BFD. */
7903 /* Array large enough to hold a section pointer for each local
7904 symbol of any input BFD. */
7905 asection **sections;
7906 /* Buffer for SHT_SYMTAB_SHNDX section. */
7907 Elf_External_Sym_Shndx *symshndxbuf;
7908 /* Number of STT_FILE syms seen. */
7909 size_t filesym_count;
7912 /* This struct is used to pass information to elf_link_output_extsym. */
7914 struct elf_outext_info
7917 bfd_boolean localsyms;
7918 bfd_boolean file_sym_done;
7919 struct elf_final_link_info *flinfo;
7923 /* Support for evaluating a complex relocation.
7925 Complex relocations are generalized, self-describing relocations. The
7926 implementation of them consists of two parts: complex symbols, and the
7927 relocations themselves.
7929 The relocations are use a reserved elf-wide relocation type code (R_RELC
7930 external / BFD_RELOC_RELC internal) and an encoding of relocation field
7931 information (start bit, end bit, word width, etc) into the addend. This
7932 information is extracted from CGEN-generated operand tables within gas.
7934 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
7935 internal) representing prefix-notation expressions, including but not
7936 limited to those sorts of expressions normally encoded as addends in the
7937 addend field. The symbol mangling format is:
7940 | <unary-operator> ':' <node>
7941 | <binary-operator> ':' <node> ':' <node>
7944 <literal> := 's' <digits=N> ':' <N character symbol name>
7945 | 'S' <digits=N> ':' <N character section name>
7949 <binary-operator> := as in C
7950 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
7953 set_symbol_value (bfd *bfd_with_globals,
7954 Elf_Internal_Sym *isymbuf,
7959 struct elf_link_hash_entry **sym_hashes;
7960 struct elf_link_hash_entry *h;
7961 size_t extsymoff = locsymcount;
7963 if (symidx < locsymcount)
7965 Elf_Internal_Sym *sym;
7967 sym = isymbuf + symidx;
7968 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
7970 /* It is a local symbol: move it to the
7971 "absolute" section and give it a value. */
7972 sym->st_shndx = SHN_ABS;
7973 sym->st_value = val;
7976 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
7980 /* It is a global symbol: set its link type
7981 to "defined" and give it a value. */
7983 sym_hashes = elf_sym_hashes (bfd_with_globals);
7984 h = sym_hashes [symidx - extsymoff];
7985 while (h->root.type == bfd_link_hash_indirect
7986 || h->root.type == bfd_link_hash_warning)
7987 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7988 h->root.type = bfd_link_hash_defined;
7989 h->root.u.def.value = val;
7990 h->root.u.def.section = bfd_abs_section_ptr;
7994 resolve_symbol (const char *name,
7996 struct elf_final_link_info *flinfo,
7998 Elf_Internal_Sym *isymbuf,
8001 Elf_Internal_Sym *sym;
8002 struct bfd_link_hash_entry *global_entry;
8003 const char *candidate = NULL;
8004 Elf_Internal_Shdr *symtab_hdr;
8007 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
8009 for (i = 0; i < locsymcount; ++ i)
8013 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
8016 candidate = bfd_elf_string_from_elf_section (input_bfd,
8017 symtab_hdr->sh_link,
8020 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
8021 name, candidate, (unsigned long) sym->st_value);
8023 if (candidate && strcmp (candidate, name) == 0)
8025 asection *sec = flinfo->sections [i];
8027 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
8028 *result += sec->output_offset + sec->output_section->vma;
8030 printf ("Found symbol with value %8.8lx\n",
8031 (unsigned long) *result);
8037 /* Hmm, haven't found it yet. perhaps it is a global. */
8038 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
8039 FALSE, FALSE, TRUE);
8043 if (global_entry->type == bfd_link_hash_defined
8044 || global_entry->type == bfd_link_hash_defweak)
8046 *result = (global_entry->u.def.value
8047 + global_entry->u.def.section->output_section->vma
8048 + global_entry->u.def.section->output_offset);
8050 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
8051 global_entry->root.string, (unsigned long) *result);
8059 /* Looks up NAME in SECTIONS. If found sets RESULT to NAME's address (in
8060 bytes) and returns TRUE, otherwise returns FALSE. Accepts pseudo-section
8061 names like "foo.end" which is the end address of section "foo". */
8064 resolve_section (const char *name,
8072 for (curr = sections; curr; curr = curr->next)
8073 if (strcmp (curr->name, name) == 0)
8075 *result = curr->vma;
8079 /* Hmm. still haven't found it. try pseudo-section names. */
8080 /* FIXME: This could be coded more efficiently... */
8081 for (curr = sections; curr; curr = curr->next)
8083 len = strlen (curr->name);
8084 if (len > strlen (name))
8087 if (strncmp (curr->name, name, len) == 0)
8089 if (strncmp (".end", name + len, 4) == 0)
8091 *result = curr->vma + curr->size / bfd_octets_per_byte (abfd);
8095 /* Insert more pseudo-section names here, if you like. */
8103 undefined_reference (const char *reftype, const char *name)
8105 /* xgettext:c-format */
8106 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
8111 eval_symbol (bfd_vma *result,
8114 struct elf_final_link_info *flinfo,
8116 Elf_Internal_Sym *isymbuf,
8125 const char *sym = *symp;
8127 bfd_boolean symbol_is_section = FALSE;
8132 if (len < 1 || len > sizeof (symbuf))
8134 bfd_set_error (bfd_error_invalid_operation);
8147 *result = strtoul (sym, (char **) symp, 16);
8151 symbol_is_section = TRUE;
8155 symlen = strtol (sym, (char **) symp, 10);
8156 sym = *symp + 1; /* Skip the trailing ':'. */
8158 if (symend < sym || symlen + 1 > sizeof (symbuf))
8160 bfd_set_error (bfd_error_invalid_operation);
8164 memcpy (symbuf, sym, symlen);
8165 symbuf[symlen] = '\0';
8166 *symp = sym + symlen;
8168 /* Is it always possible, with complex symbols, that gas "mis-guessed"
8169 the symbol as a section, or vice-versa. so we're pretty liberal in our
8170 interpretation here; section means "try section first", not "must be a
8171 section", and likewise with symbol. */
8173 if (symbol_is_section)
8175 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result, input_bfd)
8176 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
8177 isymbuf, locsymcount))
8179 undefined_reference ("section", symbuf);
8185 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
8186 isymbuf, locsymcount)
8187 && !resolve_section (symbuf, flinfo->output_bfd->sections,
8190 undefined_reference ("symbol", symbuf);
8197 /* All that remains are operators. */
8199 #define UNARY_OP(op) \
8200 if (strncmp (sym, #op, strlen (#op)) == 0) \
8202 sym += strlen (#op); \
8206 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
8207 isymbuf, locsymcount, signed_p)) \
8210 *result = op ((bfd_signed_vma) a); \
8216 #define BINARY_OP(op) \
8217 if (strncmp (sym, #op, strlen (#op)) == 0) \
8219 sym += strlen (#op); \
8223 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
8224 isymbuf, locsymcount, signed_p)) \
8227 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
8228 isymbuf, locsymcount, signed_p)) \
8231 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
8261 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
8262 bfd_set_error (bfd_error_invalid_operation);
8268 put_value (bfd_vma size,
8269 unsigned long chunksz,
8274 location += (size - chunksz);
8276 for (; size; size -= chunksz, location -= chunksz)
8281 bfd_put_8 (input_bfd, x, location);
8285 bfd_put_16 (input_bfd, x, location);
8289 bfd_put_32 (input_bfd, x, location);
8290 /* Computed this way because x >>= 32 is undefined if x is a 32-bit value. */
8296 bfd_put_64 (input_bfd, x, location);
8297 /* Computed this way because x >>= 64 is undefined if x is a 64-bit value. */
8310 get_value (bfd_vma size,
8311 unsigned long chunksz,
8318 /* Sanity checks. */
8319 BFD_ASSERT (chunksz <= sizeof (x)
8322 && (size % chunksz) == 0
8323 && input_bfd != NULL
8324 && location != NULL);
8326 if (chunksz == sizeof (x))
8328 BFD_ASSERT (size == chunksz);
8330 /* Make sure that we do not perform an undefined shift operation.
8331 We know that size == chunksz so there will only be one iteration
8332 of the loop below. */
8336 shift = 8 * chunksz;
8338 for (; size; size -= chunksz, location += chunksz)
8343 x = (x << shift) | bfd_get_8 (input_bfd, location);
8346 x = (x << shift) | bfd_get_16 (input_bfd, location);
8349 x = (x << shift) | bfd_get_32 (input_bfd, location);
8353 x = (x << shift) | bfd_get_64 (input_bfd, location);
8364 decode_complex_addend (unsigned long *start, /* in bits */
8365 unsigned long *oplen, /* in bits */
8366 unsigned long *len, /* in bits */
8367 unsigned long *wordsz, /* in bytes */
8368 unsigned long *chunksz, /* in bytes */
8369 unsigned long *lsb0_p,
8370 unsigned long *signed_p,
8371 unsigned long *trunc_p,
8372 unsigned long encoded)
8374 * start = encoded & 0x3F;
8375 * len = (encoded >> 6) & 0x3F;
8376 * oplen = (encoded >> 12) & 0x3F;
8377 * wordsz = (encoded >> 18) & 0xF;
8378 * chunksz = (encoded >> 22) & 0xF;
8379 * lsb0_p = (encoded >> 27) & 1;
8380 * signed_p = (encoded >> 28) & 1;
8381 * trunc_p = (encoded >> 29) & 1;
8384 bfd_reloc_status_type
8385 bfd_elf_perform_complex_relocation (bfd *input_bfd,
8386 asection *input_section ATTRIBUTE_UNUSED,
8388 Elf_Internal_Rela *rel,
8391 bfd_vma shift, x, mask;
8392 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
8393 bfd_reloc_status_type r;
8395 /* Perform this reloc, since it is complex.
8396 (this is not to say that it necessarily refers to a complex
8397 symbol; merely that it is a self-describing CGEN based reloc.
8398 i.e. the addend has the complete reloc information (bit start, end,
8399 word size, etc) encoded within it.). */
8401 decode_complex_addend (&start, &oplen, &len, &wordsz,
8402 &chunksz, &lsb0_p, &signed_p,
8403 &trunc_p, rel->r_addend);
8405 mask = (((1L << (len - 1)) - 1) << 1) | 1;
8408 shift = (start + 1) - len;
8410 shift = (8 * wordsz) - (start + len);
8412 x = get_value (wordsz, chunksz, input_bfd,
8413 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
8416 printf ("Doing complex reloc: "
8417 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
8418 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
8419 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
8420 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
8421 oplen, (unsigned long) x, (unsigned long) mask,
8422 (unsigned long) relocation);
8427 /* Now do an overflow check. */
8428 r = bfd_check_overflow ((signed_p
8429 ? complain_overflow_signed
8430 : complain_overflow_unsigned),
8431 len, 0, (8 * wordsz),
8435 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
8438 printf (" relocation: %8.8lx\n"
8439 " shifted mask: %8.8lx\n"
8440 " shifted/masked reloc: %8.8lx\n"
8441 " result: %8.8lx\n",
8442 (unsigned long) relocation, (unsigned long) (mask << shift),
8443 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
8445 put_value (wordsz, chunksz, input_bfd, x,
8446 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
8450 /* Functions to read r_offset from external (target order) reloc
8451 entry. Faster than bfd_getl32 et al, because we let the compiler
8452 know the value is aligned. */
8455 ext32l_r_offset (const void *p)
8462 const union aligned32 *a
8463 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
8465 uint32_t aval = ( (uint32_t) a->c[0]
8466 | (uint32_t) a->c[1] << 8
8467 | (uint32_t) a->c[2] << 16
8468 | (uint32_t) a->c[3] << 24);
8473 ext32b_r_offset (const void *p)
8480 const union aligned32 *a
8481 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
8483 uint32_t aval = ( (uint32_t) a->c[0] << 24
8484 | (uint32_t) a->c[1] << 16
8485 | (uint32_t) a->c[2] << 8
8486 | (uint32_t) a->c[3]);
8490 #ifdef BFD_HOST_64_BIT
8492 ext64l_r_offset (const void *p)
8499 const union aligned64 *a
8500 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
8502 uint64_t aval = ( (uint64_t) a->c[0]
8503 | (uint64_t) a->c[1] << 8
8504 | (uint64_t) a->c[2] << 16
8505 | (uint64_t) a->c[3] << 24
8506 | (uint64_t) a->c[4] << 32
8507 | (uint64_t) a->c[5] << 40
8508 | (uint64_t) a->c[6] << 48
8509 | (uint64_t) a->c[7] << 56);
8514 ext64b_r_offset (const void *p)
8521 const union aligned64 *a
8522 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
8524 uint64_t aval = ( (uint64_t) a->c[0] << 56
8525 | (uint64_t) a->c[1] << 48
8526 | (uint64_t) a->c[2] << 40
8527 | (uint64_t) a->c[3] << 32
8528 | (uint64_t) a->c[4] << 24
8529 | (uint64_t) a->c[5] << 16
8530 | (uint64_t) a->c[6] << 8
8531 | (uint64_t) a->c[7]);
8536 /* When performing a relocatable link, the input relocations are
8537 preserved. But, if they reference global symbols, the indices
8538 referenced must be updated. Update all the relocations found in
8542 elf_link_adjust_relocs (bfd *abfd,
8544 struct bfd_elf_section_reloc_data *reldata,
8548 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8550 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8551 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8552 bfd_vma r_type_mask;
8554 unsigned int count = reldata->count;
8555 struct elf_link_hash_entry **rel_hash = reldata->hashes;
8557 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
8559 swap_in = bed->s->swap_reloc_in;
8560 swap_out = bed->s->swap_reloc_out;
8562 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
8564 swap_in = bed->s->swap_reloca_in;
8565 swap_out = bed->s->swap_reloca_out;
8570 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
8573 if (bed->s->arch_size == 32)
8580 r_type_mask = 0xffffffff;
8584 erela = reldata->hdr->contents;
8585 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
8587 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8590 if (*rel_hash == NULL)
8593 BFD_ASSERT ((*rel_hash)->indx >= 0);
8595 (*swap_in) (abfd, erela, irela);
8596 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8597 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8598 | (irela[j].r_info & r_type_mask));
8599 (*swap_out) (abfd, irela, erela);
8602 if (bed->elf_backend_update_relocs)
8603 (*bed->elf_backend_update_relocs) (sec, reldata);
8605 if (sort && count != 0)
8607 bfd_vma (*ext_r_off) (const void *);
8610 bfd_byte *base, *end, *p, *loc;
8611 bfd_byte *buf = NULL;
8613 if (bed->s->arch_size == 32)
8615 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
8616 ext_r_off = ext32l_r_offset;
8617 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
8618 ext_r_off = ext32b_r_offset;
8624 #ifdef BFD_HOST_64_BIT
8625 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
8626 ext_r_off = ext64l_r_offset;
8627 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
8628 ext_r_off = ext64b_r_offset;
8634 /* Must use a stable sort here. A modified insertion sort,
8635 since the relocs are mostly sorted already. */
8636 elt_size = reldata->hdr->sh_entsize;
8637 base = reldata->hdr->contents;
8638 end = base + count * elt_size;
8639 if (elt_size > sizeof (Elf64_External_Rela))
8642 /* Ensure the first element is lowest. This acts as a sentinel,
8643 speeding the main loop below. */
8644 r_off = (*ext_r_off) (base);
8645 for (p = loc = base; (p += elt_size) < end; )
8647 bfd_vma r_off2 = (*ext_r_off) (p);
8656 /* Don't just swap *base and *loc as that changes the order
8657 of the original base[0] and base[1] if they happen to
8658 have the same r_offset. */
8659 bfd_byte onebuf[sizeof (Elf64_External_Rela)];
8660 memcpy (onebuf, loc, elt_size);
8661 memmove (base + elt_size, base, loc - base);
8662 memcpy (base, onebuf, elt_size);
8665 for (p = base + elt_size; (p += elt_size) < end; )
8667 /* base to p is sorted, *p is next to insert. */
8668 r_off = (*ext_r_off) (p);
8669 /* Search the sorted region for location to insert. */
8671 while (r_off < (*ext_r_off) (loc))
8676 /* Chances are there is a run of relocs to insert here,
8677 from one of more input files. Files are not always
8678 linked in order due to the way elf_link_input_bfd is
8679 called. See pr17666. */
8680 size_t sortlen = p - loc;
8681 bfd_vma r_off2 = (*ext_r_off) (loc);
8682 size_t runlen = elt_size;
8683 size_t buf_size = 96 * 1024;
8684 while (p + runlen < end
8685 && (sortlen <= buf_size
8686 || runlen + elt_size <= buf_size)
8687 && r_off2 > (*ext_r_off) (p + runlen))
8691 buf = bfd_malloc (buf_size);
8695 if (runlen < sortlen)
8697 memcpy (buf, p, runlen);
8698 memmove (loc + runlen, loc, sortlen);
8699 memcpy (loc, buf, runlen);
8703 memcpy (buf, loc, sortlen);
8704 memmove (loc, p, runlen);
8705 memcpy (loc + runlen, buf, sortlen);
8707 p += runlen - elt_size;
8710 /* Hashes are no longer valid. */
8711 free (reldata->hashes);
8712 reldata->hashes = NULL;
8718 struct elf_link_sort_rela
8724 enum elf_reloc_type_class type;
8725 /* We use this as an array of size int_rels_per_ext_rel. */
8726 Elf_Internal_Rela rela[1];
8730 elf_link_sort_cmp1 (const void *A, const void *B)
8732 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8733 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8734 int relativea, relativeb;
8736 relativea = a->type == reloc_class_relative;
8737 relativeb = b->type == reloc_class_relative;
8739 if (relativea < relativeb)
8741 if (relativea > relativeb)
8743 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8745 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8747 if (a->rela->r_offset < b->rela->r_offset)
8749 if (a->rela->r_offset > b->rela->r_offset)
8755 elf_link_sort_cmp2 (const void *A, const void *B)
8757 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8758 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8760 if (a->type < b->type)
8762 if (a->type > b->type)
8764 if (a->u.offset < b->u.offset)
8766 if (a->u.offset > b->u.offset)
8768 if (a->rela->r_offset < b->rela->r_offset)
8770 if (a->rela->r_offset > b->rela->r_offset)
8776 elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
8778 asection *dynamic_relocs;
8781 bfd_size_type count, size;
8782 size_t i, ret, sort_elt, ext_size;
8783 bfd_byte *sort, *s_non_relative, *p;
8784 struct elf_link_sort_rela *sq;
8785 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8786 int i2e = bed->s->int_rels_per_ext_rel;
8787 unsigned int opb = bfd_octets_per_byte (abfd);
8788 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8789 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8790 struct bfd_link_order *lo;
8792 bfd_boolean use_rela;
8794 /* Find a dynamic reloc section. */
8795 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
8796 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
8797 if (rela_dyn != NULL && rela_dyn->size > 0
8798 && rel_dyn != NULL && rel_dyn->size > 0)
8800 bfd_boolean use_rela_initialised = FALSE;
8802 /* This is just here to stop gcc from complaining.
8803 Its initialization checking code is not perfect. */
8806 /* Both sections are present. Examine the sizes
8807 of the indirect sections to help us choose. */
8808 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8809 if (lo->type == bfd_indirect_link_order)
8811 asection *o = lo->u.indirect.section;
8813 if ((o->size % bed->s->sizeof_rela) == 0)
8815 if ((o->size % bed->s->sizeof_rel) == 0)
8816 /* Section size is divisible by both rel and rela sizes.
8817 It is of no help to us. */
8821 /* Section size is only divisible by rela. */
8822 if (use_rela_initialised && (use_rela == FALSE))
8824 _bfd_error_handler (_("%B: Unable to sort relocs - "
8825 "they are in more than one size"),
8827 bfd_set_error (bfd_error_invalid_operation);
8833 use_rela_initialised = TRUE;
8837 else if ((o->size % bed->s->sizeof_rel) == 0)
8839 /* Section size is only divisible by rel. */
8840 if (use_rela_initialised && (use_rela == TRUE))
8842 _bfd_error_handler (_("%B: Unable to sort relocs - "
8843 "they are in more than one size"),
8845 bfd_set_error (bfd_error_invalid_operation);
8851 use_rela_initialised = TRUE;
8856 /* The section size is not divisible by either -
8857 something is wrong. */
8858 _bfd_error_handler (_("%B: Unable to sort relocs - "
8859 "they are of an unknown size"), abfd);
8860 bfd_set_error (bfd_error_invalid_operation);
8865 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8866 if (lo->type == bfd_indirect_link_order)
8868 asection *o = lo->u.indirect.section;
8870 if ((o->size % bed->s->sizeof_rela) == 0)
8872 if ((o->size % bed->s->sizeof_rel) == 0)
8873 /* Section size is divisible by both rel and rela sizes.
8874 It is of no help to us. */
8878 /* Section size is only divisible by rela. */
8879 if (use_rela_initialised && (use_rela == FALSE))
8881 _bfd_error_handler (_("%B: Unable to sort relocs - "
8882 "they are in more than one size"),
8884 bfd_set_error (bfd_error_invalid_operation);
8890 use_rela_initialised = TRUE;
8894 else if ((o->size % bed->s->sizeof_rel) == 0)
8896 /* Section size is only divisible by rel. */
8897 if (use_rela_initialised && (use_rela == TRUE))
8899 _bfd_error_handler (_("%B: Unable to sort relocs - "
8900 "they are in more than one size"),
8902 bfd_set_error (bfd_error_invalid_operation);
8908 use_rela_initialised = TRUE;
8913 /* The section size is not divisible by either -
8914 something is wrong. */
8915 _bfd_error_handler (_("%B: Unable to sort relocs - "
8916 "they are of an unknown size"), abfd);
8917 bfd_set_error (bfd_error_invalid_operation);
8922 if (! use_rela_initialised)
8926 else if (rela_dyn != NULL && rela_dyn->size > 0)
8928 else if (rel_dyn != NULL && rel_dyn->size > 0)
8935 dynamic_relocs = rela_dyn;
8936 ext_size = bed->s->sizeof_rela;
8937 swap_in = bed->s->swap_reloca_in;
8938 swap_out = bed->s->swap_reloca_out;
8942 dynamic_relocs = rel_dyn;
8943 ext_size = bed->s->sizeof_rel;
8944 swap_in = bed->s->swap_reloc_in;
8945 swap_out = bed->s->swap_reloc_out;
8949 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8950 if (lo->type == bfd_indirect_link_order)
8951 size += lo->u.indirect.section->size;
8953 if (size != dynamic_relocs->size)
8956 sort_elt = (sizeof (struct elf_link_sort_rela)
8957 + (i2e - 1) * sizeof (Elf_Internal_Rela));
8959 count = dynamic_relocs->size / ext_size;
8962 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
8966 (*info->callbacks->warning)
8967 (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
8971 if (bed->s->arch_size == 32)
8972 r_sym_mask = ~(bfd_vma) 0xff;
8974 r_sym_mask = ~(bfd_vma) 0xffffffff;
8976 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8977 if (lo->type == bfd_indirect_link_order)
8979 bfd_byte *erel, *erelend;
8980 asection *o = lo->u.indirect.section;
8982 if (o->contents == NULL && o->size != 0)
8984 /* This is a reloc section that is being handled as a normal
8985 section. See bfd_section_from_shdr. We can't combine
8986 relocs in this case. */
8991 erelend = o->contents + o->size;
8992 p = sort + o->output_offset * opb / ext_size * sort_elt;
8994 while (erel < erelend)
8996 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8998 (*swap_in) (abfd, erel, s->rela);
8999 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
9000 s->u.sym_mask = r_sym_mask;
9006 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
9008 for (i = 0, p = sort; i < count; i++, p += sort_elt)
9010 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9011 if (s->type != reloc_class_relative)
9017 sq = (struct elf_link_sort_rela *) s_non_relative;
9018 for (; i < count; i++, p += sort_elt)
9020 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
9021 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
9023 sp->u.offset = sq->rela->r_offset;
9026 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
9028 struct elf_link_hash_table *htab = elf_hash_table (info);
9029 if (htab->srelplt && htab->srelplt->output_section == dynamic_relocs)
9031 /* We have plt relocs in .rela.dyn. */
9032 sq = (struct elf_link_sort_rela *) sort;
9033 for (i = 0; i < count; i++)
9034 if (sq[count - i - 1].type != reloc_class_plt)
9036 if (i != 0 && htab->srelplt->size == i * ext_size)
9038 struct bfd_link_order **plo;
9039 /* Put srelplt link_order last. This is so the output_offset
9040 set in the next loop is correct for DT_JMPREL. */
9041 for (plo = &dynamic_relocs->map_head.link_order; *plo != NULL; )
9042 if ((*plo)->type == bfd_indirect_link_order
9043 && (*plo)->u.indirect.section == htab->srelplt)
9049 plo = &(*plo)->next;
9052 dynamic_relocs->map_tail.link_order = lo;
9057 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
9058 if (lo->type == bfd_indirect_link_order)
9060 bfd_byte *erel, *erelend;
9061 asection *o = lo->u.indirect.section;
9064 erelend = o->contents + o->size;
9065 o->output_offset = (p - sort) / sort_elt * ext_size / opb;
9066 while (erel < erelend)
9068 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9069 (*swap_out) (abfd, s->rela, erel);
9076 *psec = dynamic_relocs;
9080 /* Add a symbol to the output symbol string table. */
9083 elf_link_output_symstrtab (struct elf_final_link_info *flinfo,
9085 Elf_Internal_Sym *elfsym,
9086 asection *input_sec,
9087 struct elf_link_hash_entry *h)
9089 int (*output_symbol_hook)
9090 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
9091 struct elf_link_hash_entry *);
9092 struct elf_link_hash_table *hash_table;
9093 const struct elf_backend_data *bed;
9094 bfd_size_type strtabsize;
9096 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9098 bed = get_elf_backend_data (flinfo->output_bfd);
9099 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
9100 if (output_symbol_hook != NULL)
9102 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
9109 || (input_sec->flags & SEC_EXCLUDE))
9110 elfsym->st_name = (unsigned long) -1;
9113 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
9114 to get the final offset for st_name. */
9116 = (unsigned long) _bfd_elf_strtab_add (flinfo->symstrtab,
9118 if (elfsym->st_name == (unsigned long) -1)
9122 hash_table = elf_hash_table (flinfo->info);
9123 strtabsize = hash_table->strtabsize;
9124 if (strtabsize <= hash_table->strtabcount)
9126 strtabsize += strtabsize;
9127 hash_table->strtabsize = strtabsize;
9128 strtabsize *= sizeof (*hash_table->strtab);
9130 = (struct elf_sym_strtab *) bfd_realloc (hash_table->strtab,
9132 if (hash_table->strtab == NULL)
9135 hash_table->strtab[hash_table->strtabcount].sym = *elfsym;
9136 hash_table->strtab[hash_table->strtabcount].dest_index
9137 = hash_table->strtabcount;
9138 hash_table->strtab[hash_table->strtabcount].destshndx_index
9139 = flinfo->symshndxbuf ? bfd_get_symcount (flinfo->output_bfd) : 0;
9141 bfd_get_symcount (flinfo->output_bfd) += 1;
9142 hash_table->strtabcount += 1;
9147 /* Swap symbols out to the symbol table and flush the output symbols to
9151 elf_link_swap_symbols_out (struct elf_final_link_info *flinfo)
9153 struct elf_link_hash_table *hash_table = elf_hash_table (flinfo->info);
9156 const struct elf_backend_data *bed;
9158 Elf_Internal_Shdr *hdr;
9162 if (!hash_table->strtabcount)
9165 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9167 bed = get_elf_backend_data (flinfo->output_bfd);
9169 amt = bed->s->sizeof_sym * hash_table->strtabcount;
9170 symbuf = (bfd_byte *) bfd_malloc (amt);
9174 if (flinfo->symshndxbuf)
9176 amt = sizeof (Elf_External_Sym_Shndx);
9177 amt *= bfd_get_symcount (flinfo->output_bfd);
9178 flinfo->symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
9179 if (flinfo->symshndxbuf == NULL)
9186 for (i = 0; i < hash_table->strtabcount; i++)
9188 struct elf_sym_strtab *elfsym = &hash_table->strtab[i];
9189 if (elfsym->sym.st_name == (unsigned long) -1)
9190 elfsym->sym.st_name = 0;
9193 = (unsigned long) _bfd_elf_strtab_offset (flinfo->symstrtab,
9194 elfsym->sym.st_name);
9195 bed->s->swap_symbol_out (flinfo->output_bfd, &elfsym->sym,
9196 ((bfd_byte *) symbuf
9197 + (elfsym->dest_index
9198 * bed->s->sizeof_sym)),
9199 (flinfo->symshndxbuf
9200 + elfsym->destshndx_index));
9203 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
9204 pos = hdr->sh_offset + hdr->sh_size;
9205 amt = hash_table->strtabcount * bed->s->sizeof_sym;
9206 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) == 0
9207 && bfd_bwrite (symbuf, amt, flinfo->output_bfd) == amt)
9209 hdr->sh_size += amt;
9217 free (hash_table->strtab);
9218 hash_table->strtab = NULL;
9223 /* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
9226 check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
9228 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
9229 && sym->st_shndx < SHN_LORESERVE)
9231 /* The gABI doesn't support dynamic symbols in output sections
9234 /* xgettext:c-format */
9235 (_("%B: Too many sections: %d (>= %d)"),
9236 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
9237 bfd_set_error (bfd_error_nonrepresentable_section);
9243 /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
9244 allowing an unsatisfied unversioned symbol in the DSO to match a
9245 versioned symbol that would normally require an explicit version.
9246 We also handle the case that a DSO references a hidden symbol
9247 which may be satisfied by a versioned symbol in another DSO. */
9250 elf_link_check_versioned_symbol (struct bfd_link_info *info,
9251 const struct elf_backend_data *bed,
9252 struct elf_link_hash_entry *h)
9255 struct elf_link_loaded_list *loaded;
9257 if (!is_elf_hash_table (info->hash))
9260 /* Check indirect symbol. */
9261 while (h->root.type == bfd_link_hash_indirect)
9262 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9264 switch (h->root.type)
9270 case bfd_link_hash_undefined:
9271 case bfd_link_hash_undefweak:
9272 abfd = h->root.u.undef.abfd;
9274 || (abfd->flags & DYNAMIC) == 0
9275 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
9279 case bfd_link_hash_defined:
9280 case bfd_link_hash_defweak:
9281 abfd = h->root.u.def.section->owner;
9284 case bfd_link_hash_common:
9285 abfd = h->root.u.c.p->section->owner;
9288 BFD_ASSERT (abfd != NULL);
9290 for (loaded = elf_hash_table (info)->loaded;
9292 loaded = loaded->next)
9295 Elf_Internal_Shdr *hdr;
9299 Elf_Internal_Shdr *versymhdr;
9300 Elf_Internal_Sym *isym;
9301 Elf_Internal_Sym *isymend;
9302 Elf_Internal_Sym *isymbuf;
9303 Elf_External_Versym *ever;
9304 Elf_External_Versym *extversym;
9306 input = loaded->abfd;
9308 /* We check each DSO for a possible hidden versioned definition. */
9310 || (input->flags & DYNAMIC) == 0
9311 || elf_dynversym (input) == 0)
9314 hdr = &elf_tdata (input)->dynsymtab_hdr;
9316 symcount = hdr->sh_size / bed->s->sizeof_sym;
9317 if (elf_bad_symtab (input))
9319 extsymcount = symcount;
9324 extsymcount = symcount - hdr->sh_info;
9325 extsymoff = hdr->sh_info;
9328 if (extsymcount == 0)
9331 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
9333 if (isymbuf == NULL)
9336 /* Read in any version definitions. */
9337 versymhdr = &elf_tdata (input)->dynversym_hdr;
9338 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
9339 if (extversym == NULL)
9342 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
9343 || (bfd_bread (extversym, versymhdr->sh_size, input)
9344 != versymhdr->sh_size))
9352 ever = extversym + extsymoff;
9353 isymend = isymbuf + extsymcount;
9354 for (isym = isymbuf; isym < isymend; isym++, ever++)
9357 Elf_Internal_Versym iver;
9358 unsigned short version_index;
9360 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
9361 || isym->st_shndx == SHN_UNDEF)
9364 name = bfd_elf_string_from_elf_section (input,
9367 if (strcmp (name, h->root.root.string) != 0)
9370 _bfd_elf_swap_versym_in (input, ever, &iver);
9372 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
9374 && h->forced_local))
9376 /* If we have a non-hidden versioned sym, then it should
9377 have provided a definition for the undefined sym unless
9378 it is defined in a non-shared object and forced local.
9383 version_index = iver.vs_vers & VERSYM_VERSION;
9384 if (version_index == 1 || version_index == 2)
9386 /* This is the base or first version. We can use it. */
9400 /* Convert ELF common symbol TYPE. */
9403 elf_link_convert_common_type (struct bfd_link_info *info, int type)
9405 /* Commom symbol can only appear in relocatable link. */
9406 if (!bfd_link_relocatable (info))
9408 switch (info->elf_stt_common)
9412 case elf_stt_common:
9415 case no_elf_stt_common:
9422 /* Add an external symbol to the symbol table. This is called from
9423 the hash table traversal routine. When generating a shared object,
9424 we go through the symbol table twice. The first time we output
9425 anything that might have been forced to local scope in a version
9426 script. The second time we output the symbols that are still
9430 elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
9432 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
9433 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
9434 struct elf_final_link_info *flinfo = eoinfo->flinfo;
9436 Elf_Internal_Sym sym;
9437 asection *input_sec;
9438 const struct elf_backend_data *bed;
9443 if (h->root.type == bfd_link_hash_warning)
9445 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9446 if (h->root.type == bfd_link_hash_new)
9450 /* Decide whether to output this symbol in this pass. */
9451 if (eoinfo->localsyms)
9453 if (!h->forced_local)
9458 if (h->forced_local)
9462 bed = get_elf_backend_data (flinfo->output_bfd);
9464 if (h->root.type == bfd_link_hash_undefined)
9466 /* If we have an undefined symbol reference here then it must have
9467 come from a shared library that is being linked in. (Undefined
9468 references in regular files have already been handled unless
9469 they are in unreferenced sections which are removed by garbage
9471 bfd_boolean ignore_undef = FALSE;
9473 /* Some symbols may be special in that the fact that they're
9474 undefined can be safely ignored - let backend determine that. */
9475 if (bed->elf_backend_ignore_undef_symbol)
9476 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
9478 /* If we are reporting errors for this situation then do so now. */
9481 && (!h->ref_regular || flinfo->info->gc_sections)
9482 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
9483 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
9484 (*flinfo->info->callbacks->undefined_symbol)
9485 (flinfo->info, h->root.root.string,
9486 h->ref_regular ? NULL : h->root.u.undef.abfd,
9488 flinfo->info->unresolved_syms_in_shared_libs == RM_GENERATE_ERROR);
9490 /* Strip a global symbol defined in a discarded section. */
9495 /* We should also warn if a forced local symbol is referenced from
9496 shared libraries. */
9497 if (bfd_link_executable (flinfo->info)
9502 && h->ref_dynamic_nonweak
9503 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
9507 struct elf_link_hash_entry *hi = h;
9509 /* Check indirect symbol. */
9510 while (hi->root.type == bfd_link_hash_indirect)
9511 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
9513 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
9514 /* xgettext:c-format */
9515 msg = _("%B: internal symbol `%s' in %B is referenced by DSO");
9516 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
9517 /* xgettext:c-format */
9518 msg = _("%B: hidden symbol `%s' in %B is referenced by DSO");
9520 /* xgettext:c-format */
9521 msg = _("%B: local symbol `%s' in %B is referenced by DSO");
9522 def_bfd = flinfo->output_bfd;
9523 if (hi->root.u.def.section != bfd_abs_section_ptr)
9524 def_bfd = hi->root.u.def.section->owner;
9525 _bfd_error_handler (msg, flinfo->output_bfd,
9526 h->root.root.string, def_bfd);
9527 bfd_set_error (bfd_error_bad_value);
9528 eoinfo->failed = TRUE;
9532 /* We don't want to output symbols that have never been mentioned by
9533 a regular file, or that we have been told to strip. However, if
9534 h->indx is set to -2, the symbol is used by a reloc and we must
9539 else if ((h->def_dynamic
9541 || h->root.type == bfd_link_hash_new)
9545 else if (flinfo->info->strip == strip_all)
9547 else if (flinfo->info->strip == strip_some
9548 && bfd_hash_lookup (flinfo->info->keep_hash,
9549 h->root.root.string, FALSE, FALSE) == NULL)
9551 else if ((h->root.type == bfd_link_hash_defined
9552 || h->root.type == bfd_link_hash_defweak)
9553 && ((flinfo->info->strip_discarded
9554 && discarded_section (h->root.u.def.section))
9555 || ((h->root.u.def.section->flags & SEC_LINKER_CREATED) == 0
9556 && h->root.u.def.section->owner != NULL
9557 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
9559 else if ((h->root.type == bfd_link_hash_undefined
9560 || h->root.type == bfd_link_hash_undefweak)
9561 && h->root.u.undef.abfd != NULL
9562 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
9567 /* If we're stripping it, and it's not a dynamic symbol, there's
9568 nothing else to do. However, if it is a forced local symbol or
9569 an ifunc symbol we need to give the backend finish_dynamic_symbol
9570 function a chance to make it dynamic. */
9573 && type != STT_GNU_IFUNC
9574 && !h->forced_local)
9578 sym.st_size = h->size;
9579 sym.st_other = h->other;
9580 switch (h->root.type)
9583 case bfd_link_hash_new:
9584 case bfd_link_hash_warning:
9588 case bfd_link_hash_undefined:
9589 case bfd_link_hash_undefweak:
9590 input_sec = bfd_und_section_ptr;
9591 sym.st_shndx = SHN_UNDEF;
9594 case bfd_link_hash_defined:
9595 case bfd_link_hash_defweak:
9597 input_sec = h->root.u.def.section;
9598 if (input_sec->output_section != NULL)
9601 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
9602 input_sec->output_section);
9603 if (sym.st_shndx == SHN_BAD)
9606 /* xgettext:c-format */
9607 (_("%B: could not find output section %A for input section %A"),
9608 flinfo->output_bfd, input_sec->output_section, input_sec);
9609 bfd_set_error (bfd_error_nonrepresentable_section);
9610 eoinfo->failed = TRUE;
9614 /* ELF symbols in relocatable files are section relative,
9615 but in nonrelocatable files they are virtual
9617 sym.st_value = h->root.u.def.value + input_sec->output_offset;
9618 if (!bfd_link_relocatable (flinfo->info))
9620 sym.st_value += input_sec->output_section->vma;
9621 if (h->type == STT_TLS)
9623 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
9624 if (tls_sec != NULL)
9625 sym.st_value -= tls_sec->vma;
9631 BFD_ASSERT (input_sec->owner == NULL
9632 || (input_sec->owner->flags & DYNAMIC) != 0);
9633 sym.st_shndx = SHN_UNDEF;
9634 input_sec = bfd_und_section_ptr;
9639 case bfd_link_hash_common:
9640 input_sec = h->root.u.c.p->section;
9641 sym.st_shndx = bed->common_section_index (input_sec);
9642 sym.st_value = 1 << h->root.u.c.p->alignment_power;
9645 case bfd_link_hash_indirect:
9646 /* These symbols are created by symbol versioning. They point
9647 to the decorated version of the name. For example, if the
9648 symbol foo@@GNU_1.2 is the default, which should be used when
9649 foo is used with no version, then we add an indirect symbol
9650 foo which points to foo@@GNU_1.2. We ignore these symbols,
9651 since the indirected symbol is already in the hash table. */
9655 if (type == STT_COMMON || type == STT_OBJECT)
9656 switch (h->root.type)
9658 case bfd_link_hash_common:
9659 type = elf_link_convert_common_type (flinfo->info, type);
9661 case bfd_link_hash_defined:
9662 case bfd_link_hash_defweak:
9663 if (bed->common_definition (&sym))
9664 type = elf_link_convert_common_type (flinfo->info, type);
9668 case bfd_link_hash_undefined:
9669 case bfd_link_hash_undefweak:
9675 if (h->forced_local)
9677 sym.st_info = ELF_ST_INFO (STB_LOCAL, type);
9678 /* Turn off visibility on local symbol. */
9679 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
9681 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
9682 else if (h->unique_global && h->def_regular)
9683 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, type);
9684 else if (h->root.type == bfd_link_hash_undefweak
9685 || h->root.type == bfd_link_hash_defweak)
9686 sym.st_info = ELF_ST_INFO (STB_WEAK, type);
9688 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
9689 sym.st_target_internal = h->target_internal;
9691 /* Give the processor backend a chance to tweak the symbol value,
9692 and also to finish up anything that needs to be done for this
9693 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
9694 forced local syms when non-shared is due to a historical quirk.
9695 STT_GNU_IFUNC symbol must go through PLT. */
9696 if ((h->type == STT_GNU_IFUNC
9698 && !bfd_link_relocatable (flinfo->info))
9699 || ((h->dynindx != -1
9701 && ((bfd_link_pic (flinfo->info)
9702 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
9703 || h->root.type != bfd_link_hash_undefweak))
9704 || !h->forced_local)
9705 && elf_hash_table (flinfo->info)->dynamic_sections_created))
9707 if (! ((*bed->elf_backend_finish_dynamic_symbol)
9708 (flinfo->output_bfd, flinfo->info, h, &sym)))
9710 eoinfo->failed = TRUE;
9715 /* If we are marking the symbol as undefined, and there are no
9716 non-weak references to this symbol from a regular object, then
9717 mark the symbol as weak undefined; if there are non-weak
9718 references, mark the symbol as strong. We can't do this earlier,
9719 because it might not be marked as undefined until the
9720 finish_dynamic_symbol routine gets through with it. */
9721 if (sym.st_shndx == SHN_UNDEF
9723 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
9724 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
9727 type = ELF_ST_TYPE (sym.st_info);
9729 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
9730 if (type == STT_GNU_IFUNC)
9733 if (h->ref_regular_nonweak)
9734 bindtype = STB_GLOBAL;
9736 bindtype = STB_WEAK;
9737 sym.st_info = ELF_ST_INFO (bindtype, type);
9740 /* If this is a symbol defined in a dynamic library, don't use the
9741 symbol size from the dynamic library. Relinking an executable
9742 against a new library may introduce gratuitous changes in the
9743 executable's symbols if we keep the size. */
9744 if (sym.st_shndx == SHN_UNDEF
9749 /* If a non-weak symbol with non-default visibility is not defined
9750 locally, it is a fatal error. */
9751 if (!bfd_link_relocatable (flinfo->info)
9752 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
9753 && ELF_ST_BIND (sym.st_info) != STB_WEAK
9754 && h->root.type == bfd_link_hash_undefined
9759 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
9760 /* xgettext:c-format */
9761 msg = _("%B: protected symbol `%s' isn't defined");
9762 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
9763 /* xgettext:c-format */
9764 msg = _("%B: internal symbol `%s' isn't defined");
9766 /* xgettext:c-format */
9767 msg = _("%B: hidden symbol `%s' isn't defined");
9768 _bfd_error_handler (msg, flinfo->output_bfd, h->root.root.string);
9769 bfd_set_error (bfd_error_bad_value);
9770 eoinfo->failed = TRUE;
9774 /* If this symbol should be put in the .dynsym section, then put it
9775 there now. We already know the symbol index. We also fill in
9776 the entry in the .hash section. */
9777 if (elf_hash_table (flinfo->info)->dynsym != NULL
9779 && elf_hash_table (flinfo->info)->dynamic_sections_created)
9783 /* Since there is no version information in the dynamic string,
9784 if there is no version info in symbol version section, we will
9785 have a run-time problem if not linking executable, referenced
9786 by shared library, or not bound locally. */
9787 if (h->verinfo.verdef == NULL
9788 && (!bfd_link_executable (flinfo->info)
9790 || !h->def_regular))
9792 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
9794 if (p && p [1] != '\0')
9797 /* xgettext:c-format */
9798 (_("%B: No symbol version section for versioned symbol `%s'"),
9799 flinfo->output_bfd, h->root.root.string);
9800 eoinfo->failed = TRUE;
9805 sym.st_name = h->dynstr_index;
9806 esym = (elf_hash_table (flinfo->info)->dynsym->contents
9807 + h->dynindx * bed->s->sizeof_sym);
9808 if (!check_dynsym (flinfo->output_bfd, &sym))
9810 eoinfo->failed = TRUE;
9813 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
9815 if (flinfo->hash_sec != NULL)
9817 size_t hash_entry_size;
9818 bfd_byte *bucketpos;
9823 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
9824 bucket = h->u.elf_hash_value % bucketcount;
9827 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
9828 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
9829 + (bucket + 2) * hash_entry_size);
9830 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
9831 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
9833 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
9834 ((bfd_byte *) flinfo->hash_sec->contents
9835 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
9838 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
9840 Elf_Internal_Versym iversym;
9841 Elf_External_Versym *eversym;
9843 if (!h->def_regular)
9845 if (h->verinfo.verdef == NULL
9846 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
9847 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
9848 iversym.vs_vers = 0;
9850 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
9854 if (h->verinfo.vertree == NULL)
9855 iversym.vs_vers = 1;
9857 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
9858 if (flinfo->info->create_default_symver)
9862 /* Turn on VERSYM_HIDDEN only if the hidden versioned symbol is
9864 if (h->versioned == versioned_hidden && h->def_regular)
9865 iversym.vs_vers |= VERSYM_HIDDEN;
9867 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
9868 eversym += h->dynindx;
9869 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
9873 /* If the symbol is undefined, and we didn't output it to .dynsym,
9874 strip it from .symtab too. Obviously we can't do this for
9875 relocatable output or when needed for --emit-relocs. */
9876 else if (input_sec == bfd_und_section_ptr
9878 && !bfd_link_relocatable (flinfo->info))
9880 /* Also strip others that we couldn't earlier due to dynamic symbol
9884 if ((input_sec->flags & SEC_EXCLUDE) != 0)
9887 /* Output a FILE symbol so that following locals are not associated
9888 with the wrong input file. We need one for forced local symbols
9889 if we've seen more than one FILE symbol or when we have exactly
9890 one FILE symbol but global symbols are present in a file other
9891 than the one with the FILE symbol. We also need one if linker
9892 defined symbols are present. In practice these conditions are
9893 always met, so just emit the FILE symbol unconditionally. */
9894 if (eoinfo->localsyms
9895 && !eoinfo->file_sym_done
9896 && eoinfo->flinfo->filesym_count != 0)
9898 Elf_Internal_Sym fsym;
9900 memset (&fsym, 0, sizeof (fsym));
9901 fsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9902 fsym.st_shndx = SHN_ABS;
9903 if (!elf_link_output_symstrtab (eoinfo->flinfo, NULL, &fsym,
9904 bfd_und_section_ptr, NULL))
9907 eoinfo->file_sym_done = TRUE;
9910 indx = bfd_get_symcount (flinfo->output_bfd);
9911 ret = elf_link_output_symstrtab (flinfo, h->root.root.string, &sym,
9915 eoinfo->failed = TRUE;
9920 else if (h->indx == -2)
9926 /* Return TRUE if special handling is done for relocs in SEC against
9927 symbols defined in discarded sections. */
9930 elf_section_ignore_discarded_relocs (asection *sec)
9932 const struct elf_backend_data *bed;
9934 switch (sec->sec_info_type)
9936 case SEC_INFO_TYPE_STABS:
9937 case SEC_INFO_TYPE_EH_FRAME:
9938 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
9944 bed = get_elf_backend_data (sec->owner);
9945 if (bed->elf_backend_ignore_discarded_relocs != NULL
9946 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
9952 /* Return a mask saying how ld should treat relocations in SEC against
9953 symbols defined in discarded sections. If this function returns
9954 COMPLAIN set, ld will issue a warning message. If this function
9955 returns PRETEND set, and the discarded section was link-once and the
9956 same size as the kept link-once section, ld will pretend that the
9957 symbol was actually defined in the kept section. Otherwise ld will
9958 zero the reloc (at least that is the intent, but some cooperation by
9959 the target dependent code is needed, particularly for REL targets). */
9962 _bfd_elf_default_action_discarded (asection *sec)
9964 if (sec->flags & SEC_DEBUGGING)
9967 if (strcmp (".eh_frame", sec->name) == 0)
9970 if (strcmp (".gcc_except_table", sec->name) == 0)
9973 return COMPLAIN | PRETEND;
9976 /* Find a match between a section and a member of a section group. */
9979 match_group_member (asection *sec, asection *group,
9980 struct bfd_link_info *info)
9982 asection *first = elf_next_in_group (group);
9983 asection *s = first;
9987 if (bfd_elf_match_symbols_in_sections (s, sec, info))
9990 s = elf_next_in_group (s);
9998 /* Check if the kept section of a discarded section SEC can be used
9999 to replace it. Return the replacement if it is OK. Otherwise return
10003 _bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
10007 kept = sec->kept_section;
10010 if ((kept->flags & SEC_GROUP) != 0)
10011 kept = match_group_member (sec, kept, info);
10013 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
10014 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
10016 sec->kept_section = kept;
10021 /* Link an input file into the linker output file. This function
10022 handles all the sections and relocations of the input file at once.
10023 This is so that we only have to read the local symbols once, and
10024 don't have to keep them in memory. */
10027 elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
10029 int (*relocate_section)
10030 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
10031 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
10033 Elf_Internal_Shdr *symtab_hdr;
10034 size_t locsymcount;
10036 Elf_Internal_Sym *isymbuf;
10037 Elf_Internal_Sym *isym;
10038 Elf_Internal_Sym *isymend;
10040 asection **ppsection;
10042 const struct elf_backend_data *bed;
10043 struct elf_link_hash_entry **sym_hashes;
10044 bfd_size_type address_size;
10045 bfd_vma r_type_mask;
10047 bfd_boolean have_file_sym = FALSE;
10049 output_bfd = flinfo->output_bfd;
10050 bed = get_elf_backend_data (output_bfd);
10051 relocate_section = bed->elf_backend_relocate_section;
10053 /* If this is a dynamic object, we don't want to do anything here:
10054 we don't want the local symbols, and we don't want the section
10056 if ((input_bfd->flags & DYNAMIC) != 0)
10059 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
10060 if (elf_bad_symtab (input_bfd))
10062 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
10067 locsymcount = symtab_hdr->sh_info;
10068 extsymoff = symtab_hdr->sh_info;
10071 /* Read the local symbols. */
10072 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
10073 if (isymbuf == NULL && locsymcount != 0)
10075 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
10076 flinfo->internal_syms,
10077 flinfo->external_syms,
10078 flinfo->locsym_shndx);
10079 if (isymbuf == NULL)
10083 /* Find local symbol sections and adjust values of symbols in
10084 SEC_MERGE sections. Write out those local symbols we know are
10085 going into the output file. */
10086 isymend = isymbuf + locsymcount;
10087 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
10089 isym++, pindex++, ppsection++)
10093 Elf_Internal_Sym osym;
10099 if (elf_bad_symtab (input_bfd))
10101 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
10108 if (isym->st_shndx == SHN_UNDEF)
10109 isec = bfd_und_section_ptr;
10110 else if (isym->st_shndx == SHN_ABS)
10111 isec = bfd_abs_section_ptr;
10112 else if (isym->st_shndx == SHN_COMMON)
10113 isec = bfd_com_section_ptr;
10116 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
10119 /* Don't attempt to output symbols with st_shnx in the
10120 reserved range other than SHN_ABS and SHN_COMMON. */
10124 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
10125 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
10127 _bfd_merged_section_offset (output_bfd, &isec,
10128 elf_section_data (isec)->sec_info,
10134 /* Don't output the first, undefined, symbol. In fact, don't
10135 output any undefined local symbol. */
10136 if (isec == bfd_und_section_ptr)
10139 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
10141 /* We never output section symbols. Instead, we use the
10142 section symbol of the corresponding section in the output
10147 /* If we are stripping all symbols, we don't want to output this
10149 if (flinfo->info->strip == strip_all)
10152 /* If we are discarding all local symbols, we don't want to
10153 output this one. If we are generating a relocatable output
10154 file, then some of the local symbols may be required by
10155 relocs; we output them below as we discover that they are
10157 if (flinfo->info->discard == discard_all)
10160 /* If this symbol is defined in a section which we are
10161 discarding, we don't need to keep it. */
10162 if (isym->st_shndx != SHN_UNDEF
10163 && isym->st_shndx < SHN_LORESERVE
10164 && bfd_section_removed_from_list (output_bfd,
10165 isec->output_section))
10168 /* Get the name of the symbol. */
10169 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
10174 /* See if we are discarding symbols with this name. */
10175 if ((flinfo->info->strip == strip_some
10176 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
10178 || (((flinfo->info->discard == discard_sec_merge
10179 && (isec->flags & SEC_MERGE)
10180 && !bfd_link_relocatable (flinfo->info))
10181 || flinfo->info->discard == discard_l)
10182 && bfd_is_local_label_name (input_bfd, name)))
10185 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
10187 if (input_bfd->lto_output)
10188 /* -flto puts a temp file name here. This means builds
10189 are not reproducible. Discard the symbol. */
10191 have_file_sym = TRUE;
10192 flinfo->filesym_count += 1;
10194 if (!have_file_sym)
10196 /* In the absence of debug info, bfd_find_nearest_line uses
10197 FILE symbols to determine the source file for local
10198 function symbols. Provide a FILE symbol here if input
10199 files lack such, so that their symbols won't be
10200 associated with a previous input file. It's not the
10201 source file, but the best we can do. */
10202 have_file_sym = TRUE;
10203 flinfo->filesym_count += 1;
10204 memset (&osym, 0, sizeof (osym));
10205 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10206 osym.st_shndx = SHN_ABS;
10207 if (!elf_link_output_symstrtab (flinfo,
10208 (input_bfd->lto_output ? NULL
10209 : input_bfd->filename),
10210 &osym, bfd_abs_section_ptr,
10217 /* Adjust the section index for the output file. */
10218 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10219 isec->output_section);
10220 if (osym.st_shndx == SHN_BAD)
10223 /* ELF symbols in relocatable files are section relative, but
10224 in executable files they are virtual addresses. Note that
10225 this code assumes that all ELF sections have an associated
10226 BFD section with a reasonable value for output_offset; below
10227 we assume that they also have a reasonable value for
10228 output_section. Any special sections must be set up to meet
10229 these requirements. */
10230 osym.st_value += isec->output_offset;
10231 if (!bfd_link_relocatable (flinfo->info))
10233 osym.st_value += isec->output_section->vma;
10234 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
10236 /* STT_TLS symbols are relative to PT_TLS segment base. */
10237 BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
10238 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
10242 indx = bfd_get_symcount (output_bfd);
10243 ret = elf_link_output_symstrtab (flinfo, name, &osym, isec, NULL);
10250 if (bed->s->arch_size == 32)
10252 r_type_mask = 0xff;
10258 r_type_mask = 0xffffffff;
10263 /* Relocate the contents of each section. */
10264 sym_hashes = elf_sym_hashes (input_bfd);
10265 for (o = input_bfd->sections; o != NULL; o = o->next)
10267 bfd_byte *contents;
10269 if (! o->linker_mark)
10271 /* This section was omitted from the link. */
10275 if (bfd_link_relocatable (flinfo->info)
10276 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
10278 /* Deal with the group signature symbol. */
10279 struct bfd_elf_section_data *sec_data = elf_section_data (o);
10280 unsigned long symndx = sec_data->this_hdr.sh_info;
10281 asection *osec = o->output_section;
10283 if (symndx >= locsymcount
10284 || (elf_bad_symtab (input_bfd)
10285 && flinfo->sections[symndx] == NULL))
10287 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
10288 while (h->root.type == bfd_link_hash_indirect
10289 || h->root.type == bfd_link_hash_warning)
10290 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10291 /* Arrange for symbol to be output. */
10293 elf_section_data (osec)->this_hdr.sh_info = -2;
10295 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
10297 /* We'll use the output section target_index. */
10298 asection *sec = flinfo->sections[symndx]->output_section;
10299 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
10303 if (flinfo->indices[symndx] == -1)
10305 /* Otherwise output the local symbol now. */
10306 Elf_Internal_Sym sym = isymbuf[symndx];
10307 asection *sec = flinfo->sections[symndx]->output_section;
10312 name = bfd_elf_string_from_elf_section (input_bfd,
10313 symtab_hdr->sh_link,
10318 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10320 if (sym.st_shndx == SHN_BAD)
10323 sym.st_value += o->output_offset;
10325 indx = bfd_get_symcount (output_bfd);
10326 ret = elf_link_output_symstrtab (flinfo, name, &sym, o,
10331 flinfo->indices[symndx] = indx;
10335 elf_section_data (osec)->this_hdr.sh_info
10336 = flinfo->indices[symndx];
10340 if ((o->flags & SEC_HAS_CONTENTS) == 0
10341 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
10344 if ((o->flags & SEC_LINKER_CREATED) != 0)
10346 /* Section was created by _bfd_elf_link_create_dynamic_sections
10351 /* Get the contents of the section. They have been cached by a
10352 relaxation routine. Note that o is a section in an input
10353 file, so the contents field will not have been set by any of
10354 the routines which work on output files. */
10355 if (elf_section_data (o)->this_hdr.contents != NULL)
10357 contents = elf_section_data (o)->this_hdr.contents;
10358 if (bed->caches_rawsize
10360 && o->rawsize < o->size)
10362 memcpy (flinfo->contents, contents, o->rawsize);
10363 contents = flinfo->contents;
10368 contents = flinfo->contents;
10369 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
10373 if ((o->flags & SEC_RELOC) != 0)
10375 Elf_Internal_Rela *internal_relocs;
10376 Elf_Internal_Rela *rel, *relend;
10377 int action_discarded;
10380 /* Get the swapped relocs. */
10382 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
10383 flinfo->internal_relocs, FALSE);
10384 if (internal_relocs == NULL
10385 && o->reloc_count > 0)
10388 /* We need to reverse-copy input .ctors/.dtors sections if
10389 they are placed in .init_array/.finit_array for output. */
10390 if (o->size > address_size
10391 && ((strncmp (o->name, ".ctors", 6) == 0
10392 && strcmp (o->output_section->name,
10393 ".init_array") == 0)
10394 || (strncmp (o->name, ".dtors", 6) == 0
10395 && strcmp (o->output_section->name,
10396 ".fini_array") == 0))
10397 && (o->name[6] == 0 || o->name[6] == '.'))
10399 if (o->size != o->reloc_count * address_size)
10402 /* xgettext:c-format */
10403 (_("error: %B: size of section %A is not "
10404 "multiple of address size"),
10406 bfd_set_error (bfd_error_on_input);
10409 o->flags |= SEC_ELF_REVERSE_COPY;
10412 action_discarded = -1;
10413 if (!elf_section_ignore_discarded_relocs (o))
10414 action_discarded = (*bed->action_discarded) (o);
10416 /* Run through the relocs evaluating complex reloc symbols and
10417 looking for relocs against symbols from discarded sections
10418 or section symbols from removed link-once sections.
10419 Complain about relocs against discarded sections. Zero
10420 relocs against removed link-once sections. */
10422 rel = internal_relocs;
10423 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
10424 for ( ; rel < relend; rel++)
10426 unsigned long r_symndx = rel->r_info >> r_sym_shift;
10427 unsigned int s_type;
10428 asection **ps, *sec;
10429 struct elf_link_hash_entry *h = NULL;
10430 const char *sym_name;
10432 if (r_symndx == STN_UNDEF)
10435 if (r_symndx >= locsymcount
10436 || (elf_bad_symtab (input_bfd)
10437 && flinfo->sections[r_symndx] == NULL))
10439 h = sym_hashes[r_symndx - extsymoff];
10441 /* Badly formatted input files can contain relocs that
10442 reference non-existant symbols. Check here so that
10443 we do not seg fault. */
10448 sprintf_vma (buffer, rel->r_info);
10450 /* xgettext:c-format */
10451 (_("error: %B contains a reloc (0x%s) for section %A "
10452 "that references a non-existent global symbol"),
10453 input_bfd, buffer, o);
10454 bfd_set_error (bfd_error_bad_value);
10458 while (h->root.type == bfd_link_hash_indirect
10459 || h->root.type == bfd_link_hash_warning)
10460 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10464 /* If a plugin symbol is referenced from a non-IR file,
10465 mark the symbol as undefined. Note that the
10466 linker may attach linker created dynamic sections
10467 to the plugin bfd. Symbols defined in linker
10468 created sections are not plugin symbols. */
10469 if (h->root.non_ir_ref
10470 && (h->root.type == bfd_link_hash_defined
10471 || h->root.type == bfd_link_hash_defweak)
10472 && (h->root.u.def.section->flags
10473 & SEC_LINKER_CREATED) == 0
10474 && h->root.u.def.section->owner != NULL
10475 && (h->root.u.def.section->owner->flags
10476 & BFD_PLUGIN) != 0)
10478 h->root.type = bfd_link_hash_undefined;
10479 h->root.u.undef.abfd = h->root.u.def.section->owner;
10483 if (h->root.type == bfd_link_hash_defined
10484 || h->root.type == bfd_link_hash_defweak)
10485 ps = &h->root.u.def.section;
10487 sym_name = h->root.root.string;
10491 Elf_Internal_Sym *sym = isymbuf + r_symndx;
10493 s_type = ELF_ST_TYPE (sym->st_info);
10494 ps = &flinfo->sections[r_symndx];
10495 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
10499 if ((s_type == STT_RELC || s_type == STT_SRELC)
10500 && !bfd_link_relocatable (flinfo->info))
10503 bfd_vma dot = (rel->r_offset
10504 + o->output_offset + o->output_section->vma);
10506 printf ("Encountered a complex symbol!");
10507 printf (" (input_bfd %s, section %s, reloc %ld\n",
10508 input_bfd->filename, o->name,
10509 (long) (rel - internal_relocs));
10510 printf (" symbol: idx %8.8lx, name %s\n",
10511 r_symndx, sym_name);
10512 printf (" reloc : info %8.8lx, addr %8.8lx\n",
10513 (unsigned long) rel->r_info,
10514 (unsigned long) rel->r_offset);
10516 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
10517 isymbuf, locsymcount, s_type == STT_SRELC))
10520 /* Symbol evaluated OK. Update to absolute value. */
10521 set_symbol_value (input_bfd, isymbuf, locsymcount,
10526 if (action_discarded != -1 && ps != NULL)
10528 /* Complain if the definition comes from a
10529 discarded section. */
10530 if ((sec = *ps) != NULL && discarded_section (sec))
10532 BFD_ASSERT (r_symndx != STN_UNDEF);
10533 if (action_discarded & COMPLAIN)
10534 (*flinfo->info->callbacks->einfo)
10535 /* xgettext:c-format */
10536 (_("%X`%s' referenced in section `%A' of %B: "
10537 "defined in discarded section `%A' of %B\n"),
10538 sym_name, o, input_bfd, sec, sec->owner);
10540 /* Try to do the best we can to support buggy old
10541 versions of gcc. Pretend that the symbol is
10542 really defined in the kept linkonce section.
10543 FIXME: This is quite broken. Modifying the
10544 symbol here means we will be changing all later
10545 uses of the symbol, not just in this section. */
10546 if (action_discarded & PRETEND)
10550 kept = _bfd_elf_check_kept_section (sec,
10562 /* Relocate the section by invoking a back end routine.
10564 The back end routine is responsible for adjusting the
10565 section contents as necessary, and (if using Rela relocs
10566 and generating a relocatable output file) adjusting the
10567 reloc addend as necessary.
10569 The back end routine does not have to worry about setting
10570 the reloc address or the reloc symbol index.
10572 The back end routine is given a pointer to the swapped in
10573 internal symbols, and can access the hash table entries
10574 for the external symbols via elf_sym_hashes (input_bfd).
10576 When generating relocatable output, the back end routine
10577 must handle STB_LOCAL/STT_SECTION symbols specially. The
10578 output symbol is going to be a section symbol
10579 corresponding to the output section, which will require
10580 the addend to be adjusted. */
10582 ret = (*relocate_section) (output_bfd, flinfo->info,
10583 input_bfd, o, contents,
10591 || bfd_link_relocatable (flinfo->info)
10592 || flinfo->info->emitrelocations)
10594 Elf_Internal_Rela *irela;
10595 Elf_Internal_Rela *irelaend, *irelamid;
10596 bfd_vma last_offset;
10597 struct elf_link_hash_entry **rel_hash;
10598 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
10599 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
10600 unsigned int next_erel;
10601 bfd_boolean rela_normal;
10602 struct bfd_elf_section_data *esdi, *esdo;
10604 esdi = elf_section_data (o);
10605 esdo = elf_section_data (o->output_section);
10606 rela_normal = FALSE;
10608 /* Adjust the reloc addresses and symbol indices. */
10610 irela = internal_relocs;
10611 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
10612 rel_hash = esdo->rel.hashes + esdo->rel.count;
10613 /* We start processing the REL relocs, if any. When we reach
10614 IRELAMID in the loop, we switch to the RELA relocs. */
10616 if (esdi->rel.hdr != NULL)
10617 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
10618 * bed->s->int_rels_per_ext_rel);
10619 rel_hash_list = rel_hash;
10620 rela_hash_list = NULL;
10621 last_offset = o->output_offset;
10622 if (!bfd_link_relocatable (flinfo->info))
10623 last_offset += o->output_section->vma;
10624 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
10626 unsigned long r_symndx;
10628 Elf_Internal_Sym sym;
10630 if (next_erel == bed->s->int_rels_per_ext_rel)
10636 if (irela == irelamid)
10638 rel_hash = esdo->rela.hashes + esdo->rela.count;
10639 rela_hash_list = rel_hash;
10640 rela_normal = bed->rela_normal;
10643 irela->r_offset = _bfd_elf_section_offset (output_bfd,
10646 if (irela->r_offset >= (bfd_vma) -2)
10648 /* This is a reloc for a deleted entry or somesuch.
10649 Turn it into an R_*_NONE reloc, at the same
10650 offset as the last reloc. elf_eh_frame.c and
10651 bfd_elf_discard_info rely on reloc offsets
10653 irela->r_offset = last_offset;
10655 irela->r_addend = 0;
10659 irela->r_offset += o->output_offset;
10661 /* Relocs in an executable have to be virtual addresses. */
10662 if (!bfd_link_relocatable (flinfo->info))
10663 irela->r_offset += o->output_section->vma;
10665 last_offset = irela->r_offset;
10667 r_symndx = irela->r_info >> r_sym_shift;
10668 if (r_symndx == STN_UNDEF)
10671 if (r_symndx >= locsymcount
10672 || (elf_bad_symtab (input_bfd)
10673 && flinfo->sections[r_symndx] == NULL))
10675 struct elf_link_hash_entry *rh;
10676 unsigned long indx;
10678 /* This is a reloc against a global symbol. We
10679 have not yet output all the local symbols, so
10680 we do not know the symbol index of any global
10681 symbol. We set the rel_hash entry for this
10682 reloc to point to the global hash table entry
10683 for this symbol. The symbol index is then
10684 set at the end of bfd_elf_final_link. */
10685 indx = r_symndx - extsymoff;
10686 rh = elf_sym_hashes (input_bfd)[indx];
10687 while (rh->root.type == bfd_link_hash_indirect
10688 || rh->root.type == bfd_link_hash_warning)
10689 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
10691 /* Setting the index to -2 tells
10692 elf_link_output_extsym that this symbol is
10693 used by a reloc. */
10694 BFD_ASSERT (rh->indx < 0);
10702 /* This is a reloc against a local symbol. */
10705 sym = isymbuf[r_symndx];
10706 sec = flinfo->sections[r_symndx];
10707 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
10709 /* I suppose the backend ought to fill in the
10710 section of any STT_SECTION symbol against a
10711 processor specific section. */
10712 r_symndx = STN_UNDEF;
10713 if (bfd_is_abs_section (sec))
10715 else if (sec == NULL || sec->owner == NULL)
10717 bfd_set_error (bfd_error_bad_value);
10722 asection *osec = sec->output_section;
10724 /* If we have discarded a section, the output
10725 section will be the absolute section. In
10726 case of discarded SEC_MERGE sections, use
10727 the kept section. relocate_section should
10728 have already handled discarded linkonce
10730 if (bfd_is_abs_section (osec)
10731 && sec->kept_section != NULL
10732 && sec->kept_section->output_section != NULL)
10734 osec = sec->kept_section->output_section;
10735 irela->r_addend -= osec->vma;
10738 if (!bfd_is_abs_section (osec))
10740 r_symndx = osec->target_index;
10741 if (r_symndx == STN_UNDEF)
10743 irela->r_addend += osec->vma;
10744 osec = _bfd_nearby_section (output_bfd, osec,
10746 irela->r_addend -= osec->vma;
10747 r_symndx = osec->target_index;
10752 /* Adjust the addend according to where the
10753 section winds up in the output section. */
10755 irela->r_addend += sec->output_offset;
10759 if (flinfo->indices[r_symndx] == -1)
10761 unsigned long shlink;
10766 if (flinfo->info->strip == strip_all)
10768 /* You can't do ld -r -s. */
10769 bfd_set_error (bfd_error_invalid_operation);
10773 /* This symbol was skipped earlier, but
10774 since it is needed by a reloc, we
10775 must output it now. */
10776 shlink = symtab_hdr->sh_link;
10777 name = (bfd_elf_string_from_elf_section
10778 (input_bfd, shlink, sym.st_name));
10782 osec = sec->output_section;
10784 _bfd_elf_section_from_bfd_section (output_bfd,
10786 if (sym.st_shndx == SHN_BAD)
10789 sym.st_value += sec->output_offset;
10790 if (!bfd_link_relocatable (flinfo->info))
10792 sym.st_value += osec->vma;
10793 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
10795 /* STT_TLS symbols are relative to PT_TLS
10797 BFD_ASSERT (elf_hash_table (flinfo->info)
10798 ->tls_sec != NULL);
10799 sym.st_value -= (elf_hash_table (flinfo->info)
10804 indx = bfd_get_symcount (output_bfd);
10805 ret = elf_link_output_symstrtab (flinfo, name,
10811 flinfo->indices[r_symndx] = indx;
10816 r_symndx = flinfo->indices[r_symndx];
10819 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
10820 | (irela->r_info & r_type_mask));
10823 /* Swap out the relocs. */
10824 input_rel_hdr = esdi->rel.hdr;
10825 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
10827 if (!bed->elf_backend_emit_relocs (output_bfd, o,
10832 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
10833 * bed->s->int_rels_per_ext_rel);
10834 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
10837 input_rela_hdr = esdi->rela.hdr;
10838 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
10840 if (!bed->elf_backend_emit_relocs (output_bfd, o,
10849 /* Write out the modified section contents. */
10850 if (bed->elf_backend_write_section
10851 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
10854 /* Section written out. */
10856 else switch (o->sec_info_type)
10858 case SEC_INFO_TYPE_STABS:
10859 if (! (_bfd_write_section_stabs
10861 &elf_hash_table (flinfo->info)->stab_info,
10862 o, &elf_section_data (o)->sec_info, contents)))
10865 case SEC_INFO_TYPE_MERGE:
10866 if (! _bfd_write_merged_section (output_bfd, o,
10867 elf_section_data (o)->sec_info))
10870 case SEC_INFO_TYPE_EH_FRAME:
10872 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
10877 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
10879 if (! _bfd_elf_write_section_eh_frame_entry (output_bfd,
10887 if (! (o->flags & SEC_EXCLUDE))
10889 file_ptr offset = (file_ptr) o->output_offset;
10890 bfd_size_type todo = o->size;
10892 offset *= bfd_octets_per_byte (output_bfd);
10894 if ((o->flags & SEC_ELF_REVERSE_COPY))
10896 /* Reverse-copy input section to output. */
10899 todo -= address_size;
10900 if (! bfd_set_section_contents (output_bfd,
10908 offset += address_size;
10912 else if (! bfd_set_section_contents (output_bfd,
10926 /* Generate a reloc when linking an ELF file. This is a reloc
10927 requested by the linker, and does not come from any input file. This
10928 is used to build constructor and destructor tables when linking
10932 elf_reloc_link_order (bfd *output_bfd,
10933 struct bfd_link_info *info,
10934 asection *output_section,
10935 struct bfd_link_order *link_order)
10937 reloc_howto_type *howto;
10941 struct bfd_elf_section_reloc_data *reldata;
10942 struct elf_link_hash_entry **rel_hash_ptr;
10943 Elf_Internal_Shdr *rel_hdr;
10944 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10945 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
10948 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
10950 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
10953 bfd_set_error (bfd_error_bad_value);
10957 addend = link_order->u.reloc.p->addend;
10960 reldata = &esdo->rel;
10961 else if (esdo->rela.hdr)
10962 reldata = &esdo->rela;
10969 /* Figure out the symbol index. */
10970 rel_hash_ptr = reldata->hashes + reldata->count;
10971 if (link_order->type == bfd_section_reloc_link_order)
10973 indx = link_order->u.reloc.p->u.section->target_index;
10974 BFD_ASSERT (indx != 0);
10975 *rel_hash_ptr = NULL;
10979 struct elf_link_hash_entry *h;
10981 /* Treat a reloc against a defined symbol as though it were
10982 actually against the section. */
10983 h = ((struct elf_link_hash_entry *)
10984 bfd_wrapped_link_hash_lookup (output_bfd, info,
10985 link_order->u.reloc.p->u.name,
10986 FALSE, FALSE, TRUE));
10988 && (h->root.type == bfd_link_hash_defined
10989 || h->root.type == bfd_link_hash_defweak))
10993 section = h->root.u.def.section;
10994 indx = section->output_section->target_index;
10995 *rel_hash_ptr = NULL;
10996 /* It seems that we ought to add the symbol value to the
10997 addend here, but in practice it has already been added
10998 because it was passed to constructor_callback. */
10999 addend += section->output_section->vma + section->output_offset;
11001 else if (h != NULL)
11003 /* Setting the index to -2 tells elf_link_output_extsym that
11004 this symbol is used by a reloc. */
11011 (*info->callbacks->unattached_reloc)
11012 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0);
11017 /* If this is an inplace reloc, we must write the addend into the
11019 if (howto->partial_inplace && addend != 0)
11021 bfd_size_type size;
11022 bfd_reloc_status_type rstat;
11025 const char *sym_name;
11027 size = (bfd_size_type) bfd_get_reloc_size (howto);
11028 buf = (bfd_byte *) bfd_zmalloc (size);
11029 if (buf == NULL && size != 0)
11031 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
11038 case bfd_reloc_outofrange:
11041 case bfd_reloc_overflow:
11042 if (link_order->type == bfd_section_reloc_link_order)
11043 sym_name = bfd_section_name (output_bfd,
11044 link_order->u.reloc.p->u.section);
11046 sym_name = link_order->u.reloc.p->u.name;
11047 (*info->callbacks->reloc_overflow) (info, NULL, sym_name,
11048 howto->name, addend, NULL, NULL,
11053 ok = bfd_set_section_contents (output_bfd, output_section, buf,
11055 * bfd_octets_per_byte (output_bfd),
11062 /* The address of a reloc is relative to the section in a
11063 relocatable file, and is a virtual address in an executable
11065 offset = link_order->offset;
11066 if (! bfd_link_relocatable (info))
11067 offset += output_section->vma;
11069 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
11071 irel[i].r_offset = offset;
11072 irel[i].r_info = 0;
11073 irel[i].r_addend = 0;
11075 if (bed->s->arch_size == 32)
11076 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
11078 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
11080 rel_hdr = reldata->hdr;
11081 erel = rel_hdr->contents;
11082 if (rel_hdr->sh_type == SHT_REL)
11084 erel += reldata->count * bed->s->sizeof_rel;
11085 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
11089 irel[0].r_addend = addend;
11090 erel += reldata->count * bed->s->sizeof_rela;
11091 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
11100 /* Get the output vma of the section pointed to by the sh_link field. */
11103 elf_get_linked_section_vma (struct bfd_link_order *p)
11105 Elf_Internal_Shdr **elf_shdrp;
11109 s = p->u.indirect.section;
11110 elf_shdrp = elf_elfsections (s->owner);
11111 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
11112 elfsec = elf_shdrp[elfsec]->sh_link;
11114 The Intel C compiler generates SHT_IA_64_UNWIND with
11115 SHF_LINK_ORDER. But it doesn't set the sh_link or
11116 sh_info fields. Hence we could get the situation
11117 where elfsec is 0. */
11120 const struct elf_backend_data *bed
11121 = get_elf_backend_data (s->owner);
11122 if (bed->link_order_error_handler)
11123 bed->link_order_error_handler
11124 /* xgettext:c-format */
11125 (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
11130 s = elf_shdrp[elfsec]->bfd_section;
11131 return s->output_section->vma + s->output_offset;
11136 /* Compare two sections based on the locations of the sections they are
11137 linked to. Used by elf_fixup_link_order. */
11140 compare_link_order (const void * a, const void * b)
11145 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
11146 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
11149 return apos > bpos;
11153 /* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
11154 order as their linked sections. Returns false if this could not be done
11155 because an output section includes both ordered and unordered
11156 sections. Ideally we'd do this in the linker proper. */
11159 elf_fixup_link_order (bfd *abfd, asection *o)
11161 int seen_linkorder;
11164 struct bfd_link_order *p;
11166 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11168 struct bfd_link_order **sections;
11169 asection *s, *other_sec, *linkorder_sec;
11173 linkorder_sec = NULL;
11175 seen_linkorder = 0;
11176 for (p = o->map_head.link_order; p != NULL; p = p->next)
11178 if (p->type == bfd_indirect_link_order)
11180 s = p->u.indirect.section;
11182 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
11183 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
11184 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
11185 && elfsec < elf_numsections (sub)
11186 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
11187 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
11201 if (seen_other && seen_linkorder)
11203 if (other_sec && linkorder_sec)
11205 /* xgettext:c-format */
11206 (_("%A has both ordered [`%A' in %B] "
11207 "and unordered [`%A' in %B] sections"),
11208 o, linkorder_sec, linkorder_sec->owner,
11209 other_sec, other_sec->owner);
11212 (_("%A has both ordered and unordered sections"), o);
11213 bfd_set_error (bfd_error_bad_value);
11218 if (!seen_linkorder)
11221 sections = (struct bfd_link_order **)
11222 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
11223 if (sections == NULL)
11225 seen_linkorder = 0;
11227 for (p = o->map_head.link_order; p != NULL; p = p->next)
11229 sections[seen_linkorder++] = p;
11231 /* Sort the input sections in the order of their linked section. */
11232 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
11233 compare_link_order);
11235 /* Change the offsets of the sections. */
11237 for (n = 0; n < seen_linkorder; n++)
11239 s = sections[n]->u.indirect.section;
11240 offset &= ~(bfd_vma) 0 << s->alignment_power;
11241 s->output_offset = offset / bfd_octets_per_byte (abfd);
11242 sections[n]->offset = offset;
11243 offset += sections[n]->size;
11250 /* Generate an import library in INFO->implib_bfd from symbols in ABFD.
11251 Returns TRUE upon success, FALSE otherwise. */
11254 elf_output_implib (bfd *abfd, struct bfd_link_info *info)
11256 bfd_boolean ret = FALSE;
11258 const struct elf_backend_data *bed;
11260 enum bfd_architecture arch;
11262 asymbol **sympp = NULL;
11266 elf_symbol_type *osymbuf;
11268 implib_bfd = info->out_implib_bfd;
11269 bed = get_elf_backend_data (abfd);
11271 if (!bfd_set_format (implib_bfd, bfd_object))
11274 flags = bfd_get_file_flags (abfd);
11275 flags &= ~HAS_RELOC;
11276 if (!bfd_set_start_address (implib_bfd, 0)
11277 || !bfd_set_file_flags (implib_bfd, flags))
11280 /* Copy architecture of output file to import library file. */
11281 arch = bfd_get_arch (abfd);
11282 mach = bfd_get_mach (abfd);
11283 if (!bfd_set_arch_mach (implib_bfd, arch, mach)
11284 && (abfd->target_defaulted
11285 || bfd_get_arch (abfd) != bfd_get_arch (implib_bfd)))
11288 /* Get symbol table size. */
11289 symsize = bfd_get_symtab_upper_bound (abfd);
11293 /* Read in the symbol table. */
11294 sympp = (asymbol **) xmalloc (symsize);
11295 symcount = bfd_canonicalize_symtab (abfd, sympp);
11299 /* Allow the BFD backend to copy any private header data it
11300 understands from the output BFD to the import library BFD. */
11301 if (! bfd_copy_private_header_data (abfd, implib_bfd))
11304 /* Filter symbols to appear in the import library. */
11305 if (bed->elf_backend_filter_implib_symbols)
11306 symcount = bed->elf_backend_filter_implib_symbols (abfd, info, sympp,
11309 symcount = _bfd_elf_filter_global_symbols (abfd, info, sympp, symcount);
11312 bfd_set_error (bfd_error_no_symbols);
11313 _bfd_error_handler (_("%B: no symbol found for import library"),
11319 /* Make symbols absolute. */
11320 osymbuf = (elf_symbol_type *) bfd_alloc2 (implib_bfd, symcount,
11321 sizeof (*osymbuf));
11322 for (src_count = 0; src_count < symcount; src_count++)
11324 memcpy (&osymbuf[src_count], (elf_symbol_type *) sympp[src_count],
11325 sizeof (*osymbuf));
11326 osymbuf[src_count].symbol.section = bfd_abs_section_ptr;
11327 osymbuf[src_count].internal_elf_sym.st_shndx = SHN_ABS;
11328 osymbuf[src_count].symbol.value += sympp[src_count]->section->vma;
11329 osymbuf[src_count].internal_elf_sym.st_value =
11330 osymbuf[src_count].symbol.value;
11331 sympp[src_count] = &osymbuf[src_count].symbol;
11334 bfd_set_symtab (implib_bfd, sympp, symcount);
11336 /* Allow the BFD backend to copy any private data it understands
11337 from the output BFD to the import library BFD. This is done last
11338 to permit the routine to look at the filtered symbol table. */
11339 if (! bfd_copy_private_bfd_data (abfd, implib_bfd))
11342 if (!bfd_close (implib_bfd))
11353 elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
11357 if (flinfo->symstrtab != NULL)
11358 _bfd_elf_strtab_free (flinfo->symstrtab);
11359 if (flinfo->contents != NULL)
11360 free (flinfo->contents);
11361 if (flinfo->external_relocs != NULL)
11362 free (flinfo->external_relocs);
11363 if (flinfo->internal_relocs != NULL)
11364 free (flinfo->internal_relocs);
11365 if (flinfo->external_syms != NULL)
11366 free (flinfo->external_syms);
11367 if (flinfo->locsym_shndx != NULL)
11368 free (flinfo->locsym_shndx);
11369 if (flinfo->internal_syms != NULL)
11370 free (flinfo->internal_syms);
11371 if (flinfo->indices != NULL)
11372 free (flinfo->indices);
11373 if (flinfo->sections != NULL)
11374 free (flinfo->sections);
11375 if (flinfo->symshndxbuf != NULL)
11376 free (flinfo->symshndxbuf);
11377 for (o = obfd->sections; o != NULL; o = o->next)
11379 struct bfd_elf_section_data *esdo = elf_section_data (o);
11380 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
11381 free (esdo->rel.hashes);
11382 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
11383 free (esdo->rela.hashes);
11387 /* Do the final step of an ELF link. */
11390 bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
11392 bfd_boolean dynamic;
11393 bfd_boolean emit_relocs;
11395 struct elf_final_link_info flinfo;
11397 struct bfd_link_order *p;
11399 bfd_size_type max_contents_size;
11400 bfd_size_type max_external_reloc_size;
11401 bfd_size_type max_internal_reloc_count;
11402 bfd_size_type max_sym_count;
11403 bfd_size_type max_sym_shndx_count;
11404 Elf_Internal_Sym elfsym;
11406 Elf_Internal_Shdr *symtab_hdr;
11407 Elf_Internal_Shdr *symtab_shndx_hdr;
11408 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11409 struct elf_outext_info eoinfo;
11410 bfd_boolean merged;
11411 size_t relativecount = 0;
11412 asection *reldyn = 0;
11414 asection *attr_section = NULL;
11415 bfd_vma attr_size = 0;
11416 const char *std_attrs_section;
11417 struct elf_link_hash_table *htab = elf_hash_table (info);
11419 if (!is_elf_hash_table (htab))
11422 if (bfd_link_pic (info))
11423 abfd->flags |= DYNAMIC;
11425 dynamic = htab->dynamic_sections_created;
11426 dynobj = htab->dynobj;
11428 emit_relocs = (bfd_link_relocatable (info)
11429 || info->emitrelocations);
11431 flinfo.info = info;
11432 flinfo.output_bfd = abfd;
11433 flinfo.symstrtab = _bfd_elf_strtab_init ();
11434 if (flinfo.symstrtab == NULL)
11439 flinfo.hash_sec = NULL;
11440 flinfo.symver_sec = NULL;
11444 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
11445 /* Note that dynsym_sec can be NULL (on VMS). */
11446 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
11447 /* Note that it is OK if symver_sec is NULL. */
11450 flinfo.contents = NULL;
11451 flinfo.external_relocs = NULL;
11452 flinfo.internal_relocs = NULL;
11453 flinfo.external_syms = NULL;
11454 flinfo.locsym_shndx = NULL;
11455 flinfo.internal_syms = NULL;
11456 flinfo.indices = NULL;
11457 flinfo.sections = NULL;
11458 flinfo.symshndxbuf = NULL;
11459 flinfo.filesym_count = 0;
11461 /* The object attributes have been merged. Remove the input
11462 sections from the link, and set the contents of the output
11464 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
11465 for (o = abfd->sections; o != NULL; o = o->next)
11467 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
11468 || strcmp (o->name, ".gnu.attributes") == 0)
11470 for (p = o->map_head.link_order; p != NULL; p = p->next)
11472 asection *input_section;
11474 if (p->type != bfd_indirect_link_order)
11476 input_section = p->u.indirect.section;
11477 /* Hack: reset the SEC_HAS_CONTENTS flag so that
11478 elf_link_input_bfd ignores this section. */
11479 input_section->flags &= ~SEC_HAS_CONTENTS;
11482 attr_size = bfd_elf_obj_attr_size (abfd);
11485 bfd_set_section_size (abfd, o, attr_size);
11487 /* Skip this section later on. */
11488 o->map_head.link_order = NULL;
11491 o->flags |= SEC_EXCLUDE;
11495 /* Count up the number of relocations we will output for each output
11496 section, so that we know the sizes of the reloc sections. We
11497 also figure out some maximum sizes. */
11498 max_contents_size = 0;
11499 max_external_reloc_size = 0;
11500 max_internal_reloc_count = 0;
11502 max_sym_shndx_count = 0;
11504 for (o = abfd->sections; o != NULL; o = o->next)
11506 struct bfd_elf_section_data *esdo = elf_section_data (o);
11507 o->reloc_count = 0;
11509 for (p = o->map_head.link_order; p != NULL; p = p->next)
11511 unsigned int reloc_count = 0;
11512 unsigned int additional_reloc_count = 0;
11513 struct bfd_elf_section_data *esdi = NULL;
11515 if (p->type == bfd_section_reloc_link_order
11516 || p->type == bfd_symbol_reloc_link_order)
11518 else if (p->type == bfd_indirect_link_order)
11522 sec = p->u.indirect.section;
11524 /* Mark all sections which are to be included in the
11525 link. This will normally be every section. We need
11526 to do this so that we can identify any sections which
11527 the linker has decided to not include. */
11528 sec->linker_mark = TRUE;
11530 if (sec->flags & SEC_MERGE)
11533 if (sec->rawsize > max_contents_size)
11534 max_contents_size = sec->rawsize;
11535 if (sec->size > max_contents_size)
11536 max_contents_size = sec->size;
11538 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
11539 && (sec->owner->flags & DYNAMIC) == 0)
11543 /* We are interested in just local symbols, not all
11545 if (elf_bad_symtab (sec->owner))
11546 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
11547 / bed->s->sizeof_sym);
11549 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
11551 if (sym_count > max_sym_count)
11552 max_sym_count = sym_count;
11554 if (sym_count > max_sym_shndx_count
11555 && elf_symtab_shndx_list (sec->owner) != NULL)
11556 max_sym_shndx_count = sym_count;
11558 if (esdo->this_hdr.sh_type == SHT_REL
11559 || esdo->this_hdr.sh_type == SHT_RELA)
11560 /* Some backends use reloc_count in relocation sections
11561 to count particular types of relocs. Of course,
11562 reloc sections themselves can't have relocations. */
11564 else if (emit_relocs)
11566 reloc_count = sec->reloc_count;
11567 if (bed->elf_backend_count_additional_relocs)
11570 c = (*bed->elf_backend_count_additional_relocs) (sec);
11571 additional_reloc_count += c;
11574 else if (bed->elf_backend_count_relocs)
11575 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
11577 esdi = elf_section_data (sec);
11579 if ((sec->flags & SEC_RELOC) != 0)
11581 size_t ext_size = 0;
11583 if (esdi->rel.hdr != NULL)
11584 ext_size = esdi->rel.hdr->sh_size;
11585 if (esdi->rela.hdr != NULL)
11586 ext_size += esdi->rela.hdr->sh_size;
11588 if (ext_size > max_external_reloc_size)
11589 max_external_reloc_size = ext_size;
11590 if (sec->reloc_count > max_internal_reloc_count)
11591 max_internal_reloc_count = sec->reloc_count;
11596 if (reloc_count == 0)
11599 reloc_count += additional_reloc_count;
11600 o->reloc_count += reloc_count;
11602 if (p->type == bfd_indirect_link_order && emit_relocs)
11606 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
11607 esdo->rel.count += additional_reloc_count;
11609 if (esdi->rela.hdr)
11611 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
11612 esdo->rela.count += additional_reloc_count;
11618 esdo->rela.count += reloc_count;
11620 esdo->rel.count += reloc_count;
11624 if (o->reloc_count > 0)
11625 o->flags |= SEC_RELOC;
11628 /* Explicitly clear the SEC_RELOC flag. The linker tends to
11629 set it (this is probably a bug) and if it is set
11630 assign_section_numbers will create a reloc section. */
11631 o->flags &=~ SEC_RELOC;
11634 /* If the SEC_ALLOC flag is not set, force the section VMA to
11635 zero. This is done in elf_fake_sections as well, but forcing
11636 the VMA to 0 here will ensure that relocs against these
11637 sections are handled correctly. */
11638 if ((o->flags & SEC_ALLOC) == 0
11639 && ! o->user_set_vma)
11643 if (! bfd_link_relocatable (info) && merged)
11644 elf_link_hash_traverse (htab, _bfd_elf_link_sec_merge_syms, abfd);
11646 /* Figure out the file positions for everything but the symbol table
11647 and the relocs. We set symcount to force assign_section_numbers
11648 to create a symbol table. */
11649 bfd_get_symcount (abfd) = info->strip != strip_all || emit_relocs;
11650 BFD_ASSERT (! abfd->output_has_begun);
11651 if (! _bfd_elf_compute_section_file_positions (abfd, info))
11654 /* Set sizes, and assign file positions for reloc sections. */
11655 for (o = abfd->sections; o != NULL; o = o->next)
11657 struct bfd_elf_section_data *esdo = elf_section_data (o);
11658 if ((o->flags & SEC_RELOC) != 0)
11661 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
11665 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
11669 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
11670 to count upwards while actually outputting the relocations. */
11671 esdo->rel.count = 0;
11672 esdo->rela.count = 0;
11674 if (esdo->this_hdr.sh_offset == (file_ptr) -1)
11676 /* Cache the section contents so that they can be compressed
11677 later. Use bfd_malloc since it will be freed by
11678 bfd_compress_section_contents. */
11679 unsigned char *contents = esdo->this_hdr.contents;
11680 if ((o->flags & SEC_ELF_COMPRESS) == 0 || contents != NULL)
11683 = (unsigned char *) bfd_malloc (esdo->this_hdr.sh_size);
11684 if (contents == NULL)
11686 esdo->this_hdr.contents = contents;
11690 /* We have now assigned file positions for all the sections except
11691 .symtab, .strtab, and non-loaded reloc sections. We start the
11692 .symtab section at the current file position, and write directly
11693 to it. We build the .strtab section in memory. */
11694 bfd_get_symcount (abfd) = 0;
11695 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11696 /* sh_name is set in prep_headers. */
11697 symtab_hdr->sh_type = SHT_SYMTAB;
11698 /* sh_flags, sh_addr and sh_size all start off zero. */
11699 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
11700 /* sh_link is set in assign_section_numbers. */
11701 /* sh_info is set below. */
11702 /* sh_offset is set just below. */
11703 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
11705 if (max_sym_count < 20)
11706 max_sym_count = 20;
11707 htab->strtabsize = max_sym_count;
11708 amt = max_sym_count * sizeof (struct elf_sym_strtab);
11709 htab->strtab = (struct elf_sym_strtab *) bfd_malloc (amt);
11710 if (htab->strtab == NULL)
11712 /* The real buffer will be allocated in elf_link_swap_symbols_out. */
11714 = (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF)
11715 ? (Elf_External_Sym_Shndx *) -1 : NULL);
11717 if (info->strip != strip_all || emit_relocs)
11719 file_ptr off = elf_next_file_pos (abfd);
11721 _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
11723 /* Note that at this point elf_next_file_pos (abfd) is
11724 incorrect. We do not yet know the size of the .symtab section.
11725 We correct next_file_pos below, after we do know the size. */
11727 /* Start writing out the symbol table. The first symbol is always a
11729 elfsym.st_value = 0;
11730 elfsym.st_size = 0;
11731 elfsym.st_info = 0;
11732 elfsym.st_other = 0;
11733 elfsym.st_shndx = SHN_UNDEF;
11734 elfsym.st_target_internal = 0;
11735 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym,
11736 bfd_und_section_ptr, NULL) != 1)
11739 /* Output a symbol for each section. We output these even if we are
11740 discarding local symbols, since they are used for relocs. These
11741 symbols have no names. We store the index of each one in the
11742 index field of the section, so that we can find it again when
11743 outputting relocs. */
11745 elfsym.st_size = 0;
11746 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11747 elfsym.st_other = 0;
11748 elfsym.st_value = 0;
11749 elfsym.st_target_internal = 0;
11750 for (i = 1; i < elf_numsections (abfd); i++)
11752 o = bfd_section_from_elf_index (abfd, i);
11755 o->target_index = bfd_get_symcount (abfd);
11756 elfsym.st_shndx = i;
11757 if (!bfd_link_relocatable (info))
11758 elfsym.st_value = o->vma;
11759 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym, o,
11766 /* Allocate some memory to hold information read in from the input
11768 if (max_contents_size != 0)
11770 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
11771 if (flinfo.contents == NULL)
11775 if (max_external_reloc_size != 0)
11777 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
11778 if (flinfo.external_relocs == NULL)
11782 if (max_internal_reloc_count != 0)
11784 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
11785 amt *= sizeof (Elf_Internal_Rela);
11786 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
11787 if (flinfo.internal_relocs == NULL)
11791 if (max_sym_count != 0)
11793 amt = max_sym_count * bed->s->sizeof_sym;
11794 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
11795 if (flinfo.external_syms == NULL)
11798 amt = max_sym_count * sizeof (Elf_Internal_Sym);
11799 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
11800 if (flinfo.internal_syms == NULL)
11803 amt = max_sym_count * sizeof (long);
11804 flinfo.indices = (long int *) bfd_malloc (amt);
11805 if (flinfo.indices == NULL)
11808 amt = max_sym_count * sizeof (asection *);
11809 flinfo.sections = (asection **) bfd_malloc (amt);
11810 if (flinfo.sections == NULL)
11814 if (max_sym_shndx_count != 0)
11816 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
11817 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
11818 if (flinfo.locsym_shndx == NULL)
11824 bfd_vma base, end = 0;
11827 for (sec = htab->tls_sec;
11828 sec && (sec->flags & SEC_THREAD_LOCAL);
11831 bfd_size_type size = sec->size;
11834 && (sec->flags & SEC_HAS_CONTENTS) == 0)
11836 struct bfd_link_order *ord = sec->map_tail.link_order;
11839 size = ord->offset + ord->size;
11841 end = sec->vma + size;
11843 base = htab->tls_sec->vma;
11844 /* Only align end of TLS section if static TLS doesn't have special
11845 alignment requirements. */
11846 if (bed->static_tls_alignment == 1)
11847 end = align_power (end, htab->tls_sec->alignment_power);
11848 htab->tls_size = end - base;
11851 /* Reorder SHF_LINK_ORDER sections. */
11852 for (o = abfd->sections; o != NULL; o = o->next)
11854 if (!elf_fixup_link_order (abfd, o))
11858 if (!_bfd_elf_fixup_eh_frame_hdr (info))
11861 /* Since ELF permits relocations to be against local symbols, we
11862 must have the local symbols available when we do the relocations.
11863 Since we would rather only read the local symbols once, and we
11864 would rather not keep them in memory, we handle all the
11865 relocations for a single input file at the same time.
11867 Unfortunately, there is no way to know the total number of local
11868 symbols until we have seen all of them, and the local symbol
11869 indices precede the global symbol indices. This means that when
11870 we are generating relocatable output, and we see a reloc against
11871 a global symbol, we can not know the symbol index until we have
11872 finished examining all the local symbols to see which ones we are
11873 going to output. To deal with this, we keep the relocations in
11874 memory, and don't output them until the end of the link. This is
11875 an unfortunate waste of memory, but I don't see a good way around
11876 it. Fortunately, it only happens when performing a relocatable
11877 link, which is not the common case. FIXME: If keep_memory is set
11878 we could write the relocs out and then read them again; I don't
11879 know how bad the memory loss will be. */
11881 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
11882 sub->output_has_begun = FALSE;
11883 for (o = abfd->sections; o != NULL; o = o->next)
11885 for (p = o->map_head.link_order; p != NULL; p = p->next)
11887 if (p->type == bfd_indirect_link_order
11888 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
11889 == bfd_target_elf_flavour)
11890 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
11892 if (! sub->output_has_begun)
11894 if (! elf_link_input_bfd (&flinfo, sub))
11896 sub->output_has_begun = TRUE;
11899 else if (p->type == bfd_section_reloc_link_order
11900 || p->type == bfd_symbol_reloc_link_order)
11902 if (! elf_reloc_link_order (abfd, info, o, p))
11907 if (! _bfd_default_link_order (abfd, info, o, p))
11909 if (p->type == bfd_indirect_link_order
11910 && (bfd_get_flavour (sub)
11911 == bfd_target_elf_flavour)
11912 && (elf_elfheader (sub)->e_ident[EI_CLASS]
11913 != bed->s->elfclass))
11915 const char *iclass, *oclass;
11917 switch (bed->s->elfclass)
11919 case ELFCLASS64: oclass = "ELFCLASS64"; break;
11920 case ELFCLASS32: oclass = "ELFCLASS32"; break;
11921 case ELFCLASSNONE: oclass = "ELFCLASSNONE"; break;
11925 switch (elf_elfheader (sub)->e_ident[EI_CLASS])
11927 case ELFCLASS64: iclass = "ELFCLASS64"; break;
11928 case ELFCLASS32: iclass = "ELFCLASS32"; break;
11929 case ELFCLASSNONE: iclass = "ELFCLASSNONE"; break;
11933 bfd_set_error (bfd_error_wrong_format);
11935 /* xgettext:c-format */
11936 (_("%B: file class %s incompatible with %s"),
11937 sub, iclass, oclass);
11946 /* Free symbol buffer if needed. */
11947 if (!info->reduce_memory_overheads)
11949 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
11950 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
11951 && elf_tdata (sub)->symbuf)
11953 free (elf_tdata (sub)->symbuf);
11954 elf_tdata (sub)->symbuf = NULL;
11958 /* Output any global symbols that got converted to local in a
11959 version script or due to symbol visibility. We do this in a
11960 separate step since ELF requires all local symbols to appear
11961 prior to any global symbols. FIXME: We should only do this if
11962 some global symbols were, in fact, converted to become local.
11963 FIXME: Will this work correctly with the Irix 5 linker? */
11964 eoinfo.failed = FALSE;
11965 eoinfo.flinfo = &flinfo;
11966 eoinfo.localsyms = TRUE;
11967 eoinfo.file_sym_done = FALSE;
11968 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
11972 /* If backend needs to output some local symbols not present in the hash
11973 table, do it now. */
11974 if (bed->elf_backend_output_arch_local_syms
11975 && (info->strip != strip_all || emit_relocs))
11977 typedef int (*out_sym_func)
11978 (void *, const char *, Elf_Internal_Sym *, asection *,
11979 struct elf_link_hash_entry *);
11981 if (! ((*bed->elf_backend_output_arch_local_syms)
11982 (abfd, info, &flinfo,
11983 (out_sym_func) elf_link_output_symstrtab)))
11987 /* That wrote out all the local symbols. Finish up the symbol table
11988 with the global symbols. Even if we want to strip everything we
11989 can, we still need to deal with those global symbols that got
11990 converted to local in a version script. */
11992 /* The sh_info field records the index of the first non local symbol. */
11993 symtab_hdr->sh_info = bfd_get_symcount (abfd);
11996 && htab->dynsym != NULL
11997 && htab->dynsym->output_section != bfd_abs_section_ptr)
11999 Elf_Internal_Sym sym;
12000 bfd_byte *dynsym = htab->dynsym->contents;
12002 o = htab->dynsym->output_section;
12003 elf_section_data (o)->this_hdr.sh_info = htab->local_dynsymcount + 1;
12005 /* Write out the section symbols for the output sections. */
12006 if (bfd_link_pic (info)
12007 || htab->is_relocatable_executable)
12013 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
12015 sym.st_target_internal = 0;
12017 for (s = abfd->sections; s != NULL; s = s->next)
12023 dynindx = elf_section_data (s)->dynindx;
12026 indx = elf_section_data (s)->this_idx;
12027 BFD_ASSERT (indx > 0);
12028 sym.st_shndx = indx;
12029 if (! check_dynsym (abfd, &sym))
12031 sym.st_value = s->vma;
12032 dest = dynsym + dynindx * bed->s->sizeof_sym;
12033 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12037 /* Write out the local dynsyms. */
12038 if (htab->dynlocal)
12040 struct elf_link_local_dynamic_entry *e;
12041 for (e = htab->dynlocal; e ; e = e->next)
12046 /* Copy the internal symbol and turn off visibility.
12047 Note that we saved a word of storage and overwrote
12048 the original st_name with the dynstr_index. */
12050 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
12052 s = bfd_section_from_elf_index (e->input_bfd,
12057 elf_section_data (s->output_section)->this_idx;
12058 if (! check_dynsym (abfd, &sym))
12060 sym.st_value = (s->output_section->vma
12062 + e->isym.st_value);
12065 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
12066 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12071 /* We get the global symbols from the hash table. */
12072 eoinfo.failed = FALSE;
12073 eoinfo.localsyms = FALSE;
12074 eoinfo.flinfo = &flinfo;
12075 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
12079 /* If backend needs to output some symbols not present in the hash
12080 table, do it now. */
12081 if (bed->elf_backend_output_arch_syms
12082 && (info->strip != strip_all || emit_relocs))
12084 typedef int (*out_sym_func)
12085 (void *, const char *, Elf_Internal_Sym *, asection *,
12086 struct elf_link_hash_entry *);
12088 if (! ((*bed->elf_backend_output_arch_syms)
12089 (abfd, info, &flinfo,
12090 (out_sym_func) elf_link_output_symstrtab)))
12094 /* Finalize the .strtab section. */
12095 _bfd_elf_strtab_finalize (flinfo.symstrtab);
12097 /* Swap out the .strtab section. */
12098 if (!elf_link_swap_symbols_out (&flinfo))
12101 /* Now we know the size of the symtab section. */
12102 if (bfd_get_symcount (abfd) > 0)
12104 /* Finish up and write out the symbol string table (.strtab)
12106 Elf_Internal_Shdr *symstrtab_hdr = NULL;
12107 file_ptr off = symtab_hdr->sh_offset + symtab_hdr->sh_size;
12109 if (elf_symtab_shndx_list (abfd))
12111 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
12113 if (symtab_shndx_hdr != NULL && symtab_shndx_hdr->sh_name != 0)
12115 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
12116 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
12117 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
12118 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
12119 symtab_shndx_hdr->sh_size = amt;
12121 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
12124 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
12125 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
12130 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
12131 /* sh_name was set in prep_headers. */
12132 symstrtab_hdr->sh_type = SHT_STRTAB;
12133 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
12134 symstrtab_hdr->sh_addr = 0;
12135 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (flinfo.symstrtab);
12136 symstrtab_hdr->sh_entsize = 0;
12137 symstrtab_hdr->sh_link = 0;
12138 symstrtab_hdr->sh_info = 0;
12139 /* sh_offset is set just below. */
12140 symstrtab_hdr->sh_addralign = 1;
12142 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr,
12144 elf_next_file_pos (abfd) = off;
12146 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
12147 || ! _bfd_elf_strtab_emit (abfd, flinfo.symstrtab))
12151 if (info->out_implib_bfd && !elf_output_implib (abfd, info))
12153 _bfd_error_handler (_("%B: failed to generate import library"),
12154 info->out_implib_bfd);
12158 /* Adjust the relocs to have the correct symbol indices. */
12159 for (o = abfd->sections; o != NULL; o = o->next)
12161 struct bfd_elf_section_data *esdo = elf_section_data (o);
12163 if ((o->flags & SEC_RELOC) == 0)
12166 sort = bed->sort_relocs_p == NULL || (*bed->sort_relocs_p) (o);
12167 if (esdo->rel.hdr != NULL
12168 && !elf_link_adjust_relocs (abfd, o, &esdo->rel, sort))
12170 if (esdo->rela.hdr != NULL
12171 && !elf_link_adjust_relocs (abfd, o, &esdo->rela, sort))
12174 /* Set the reloc_count field to 0 to prevent write_relocs from
12175 trying to swap the relocs out itself. */
12176 o->reloc_count = 0;
12179 if (dynamic && info->combreloc && dynobj != NULL)
12180 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
12182 /* If we are linking against a dynamic object, or generating a
12183 shared library, finish up the dynamic linking information. */
12186 bfd_byte *dyncon, *dynconend;
12188 /* Fix up .dynamic entries. */
12189 o = bfd_get_linker_section (dynobj, ".dynamic");
12190 BFD_ASSERT (o != NULL);
12192 dyncon = o->contents;
12193 dynconend = o->contents + o->size;
12194 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12196 Elf_Internal_Dyn dyn;
12199 bfd_size_type sh_size;
12202 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12209 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
12211 switch (elf_section_data (reldyn)->this_hdr.sh_type)
12213 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
12214 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
12217 dyn.d_un.d_val = relativecount;
12224 name = info->init_function;
12227 name = info->fini_function;
12230 struct elf_link_hash_entry *h;
12232 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
12234 && (h->root.type == bfd_link_hash_defined
12235 || h->root.type == bfd_link_hash_defweak))
12237 dyn.d_un.d_ptr = h->root.u.def.value;
12238 o = h->root.u.def.section;
12239 if (o->output_section != NULL)
12240 dyn.d_un.d_ptr += (o->output_section->vma
12241 + o->output_offset);
12244 /* The symbol is imported from another shared
12245 library and does not apply to this one. */
12246 dyn.d_un.d_ptr = 0;
12253 case DT_PREINIT_ARRAYSZ:
12254 name = ".preinit_array";
12256 case DT_INIT_ARRAYSZ:
12257 name = ".init_array";
12259 case DT_FINI_ARRAYSZ:
12260 name = ".fini_array";
12262 o = bfd_get_section_by_name (abfd, name);
12266 (_("could not find section %s"), name);
12271 (_("warning: %s section has zero size"), name);
12272 dyn.d_un.d_val = o->size;
12275 case DT_PREINIT_ARRAY:
12276 name = ".preinit_array";
12278 case DT_INIT_ARRAY:
12279 name = ".init_array";
12281 case DT_FINI_ARRAY:
12282 name = ".fini_array";
12284 o = bfd_get_section_by_name (abfd, name);
12291 name = ".gnu.hash";
12300 name = ".gnu.version_d";
12303 name = ".gnu.version_r";
12306 name = ".gnu.version";
12308 o = bfd_get_linker_section (dynobj, name);
12313 (_("could not find section %s"), name);
12316 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
12319 (_("warning: section '%s' is being made into a note"), name);
12320 bfd_set_error (bfd_error_nonrepresentable_section);
12323 dyn.d_un.d_ptr = o->output_section->vma + o->output_offset;
12330 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
12336 for (i = 1; i < elf_numsections (abfd); i++)
12338 Elf_Internal_Shdr *hdr;
12340 hdr = elf_elfsections (abfd)[i];
12341 if (hdr->sh_type == type
12342 && (hdr->sh_flags & SHF_ALLOC) != 0)
12344 sh_size += hdr->sh_size;
12346 || sh_addr > hdr->sh_addr)
12347 sh_addr = hdr->sh_addr;
12351 if (bed->dtrel_excludes_plt && htab->srelplt != NULL)
12353 /* Don't count procedure linkage table relocs in the
12354 overall reloc count. */
12355 sh_size -= htab->srelplt->size;
12357 /* If the size is zero, make the address zero too.
12358 This is to avoid a glibc bug. If the backend
12359 emits DT_RELA/DT_RELASZ even when DT_RELASZ is
12360 zero, then we'll put DT_RELA at the end of
12361 DT_JMPREL. glibc will interpret the end of
12362 DT_RELA matching the end of DT_JMPREL as the
12363 case where DT_RELA includes DT_JMPREL, and for
12364 LD_BIND_NOW will decide that processing DT_RELA
12365 will process the PLT relocs too. Net result:
12366 No PLT relocs applied. */
12369 /* If .rela.plt is the first .rela section, exclude
12370 it from DT_RELA. */
12371 else if (sh_addr == (htab->srelplt->output_section->vma
12372 + htab->srelplt->output_offset))
12373 sh_addr += htab->srelplt->size;
12376 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
12377 dyn.d_un.d_val = sh_size;
12379 dyn.d_un.d_ptr = sh_addr;
12382 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
12386 /* If we have created any dynamic sections, then output them. */
12387 if (dynobj != NULL)
12389 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
12392 /* Check for DT_TEXTREL (late, in case the backend removes it). */
12393 if (((info->warn_shared_textrel && bfd_link_pic (info))
12394 || info->error_textrel)
12395 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
12397 bfd_byte *dyncon, *dynconend;
12399 dyncon = o->contents;
12400 dynconend = o->contents + o->size;
12401 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12403 Elf_Internal_Dyn dyn;
12405 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12407 if (dyn.d_tag == DT_TEXTREL)
12409 if (info->error_textrel)
12410 info->callbacks->einfo
12411 (_("%P%X: read-only segment has dynamic relocations.\n"));
12413 info->callbacks->einfo
12414 (_("%P: warning: creating a DT_TEXTREL in a shared object.\n"));
12420 for (o = dynobj->sections; o != NULL; o = o->next)
12422 if ((o->flags & SEC_HAS_CONTENTS) == 0
12424 || o->output_section == bfd_abs_section_ptr)
12426 if ((o->flags & SEC_LINKER_CREATED) == 0)
12428 /* At this point, we are only interested in sections
12429 created by _bfd_elf_link_create_dynamic_sections. */
12432 if (htab->stab_info.stabstr == o)
12434 if (htab->eh_info.hdr_sec == o)
12436 if (strcmp (o->name, ".dynstr") != 0)
12438 if (! bfd_set_section_contents (abfd, o->output_section,
12440 (file_ptr) o->output_offset
12441 * bfd_octets_per_byte (abfd),
12447 /* The contents of the .dynstr section are actually in a
12451 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
12452 if (bfd_seek (abfd, off, SEEK_SET) != 0
12453 || !_bfd_elf_strtab_emit (abfd, htab->dynstr))
12459 if (bfd_link_relocatable (info))
12461 bfd_boolean failed = FALSE;
12463 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
12468 /* If we have optimized stabs strings, output them. */
12469 if (htab->stab_info.stabstr != NULL)
12471 if (!_bfd_write_stab_strings (abfd, &htab->stab_info))
12475 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
12478 elf_final_link_free (abfd, &flinfo);
12480 elf_linker (abfd) = TRUE;
12484 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
12485 if (contents == NULL)
12486 return FALSE; /* Bail out and fail. */
12487 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
12488 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
12495 elf_final_link_free (abfd, &flinfo);
12499 /* Initialize COOKIE for input bfd ABFD. */
12502 init_reloc_cookie (struct elf_reloc_cookie *cookie,
12503 struct bfd_link_info *info, bfd *abfd)
12505 Elf_Internal_Shdr *symtab_hdr;
12506 const struct elf_backend_data *bed;
12508 bed = get_elf_backend_data (abfd);
12509 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12511 cookie->abfd = abfd;
12512 cookie->sym_hashes = elf_sym_hashes (abfd);
12513 cookie->bad_symtab = elf_bad_symtab (abfd);
12514 if (cookie->bad_symtab)
12516 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12517 cookie->extsymoff = 0;
12521 cookie->locsymcount = symtab_hdr->sh_info;
12522 cookie->extsymoff = symtab_hdr->sh_info;
12525 if (bed->s->arch_size == 32)
12526 cookie->r_sym_shift = 8;
12528 cookie->r_sym_shift = 32;
12530 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
12531 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
12533 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
12534 cookie->locsymcount, 0,
12536 if (cookie->locsyms == NULL)
12538 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
12541 if (info->keep_memory)
12542 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
12547 /* Free the memory allocated by init_reloc_cookie, if appropriate. */
12550 fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
12552 Elf_Internal_Shdr *symtab_hdr;
12554 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12555 if (cookie->locsyms != NULL
12556 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
12557 free (cookie->locsyms);
12560 /* Initialize the relocation information in COOKIE for input section SEC
12561 of input bfd ABFD. */
12564 init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12565 struct bfd_link_info *info, bfd *abfd,
12568 const struct elf_backend_data *bed;
12570 if (sec->reloc_count == 0)
12572 cookie->rels = NULL;
12573 cookie->relend = NULL;
12577 bed = get_elf_backend_data (abfd);
12579 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
12580 info->keep_memory);
12581 if (cookie->rels == NULL)
12583 cookie->rel = cookie->rels;
12584 cookie->relend = (cookie->rels
12585 + sec->reloc_count * bed->s->int_rels_per_ext_rel);
12587 cookie->rel = cookie->rels;
12591 /* Free the memory allocated by init_reloc_cookie_rels,
12595 fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12598 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
12599 free (cookie->rels);
12602 /* Initialize the whole of COOKIE for input section SEC. */
12605 init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12606 struct bfd_link_info *info,
12609 if (!init_reloc_cookie (cookie, info, sec->owner))
12611 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
12616 fini_reloc_cookie (cookie, sec->owner);
12621 /* Free the memory allocated by init_reloc_cookie_for_section,
12625 fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12628 fini_reloc_cookie_rels (cookie, sec);
12629 fini_reloc_cookie (cookie, sec->owner);
12632 /* Garbage collect unused sections. */
12634 /* Default gc_mark_hook. */
12637 _bfd_elf_gc_mark_hook (asection *sec,
12638 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12639 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
12640 struct elf_link_hash_entry *h,
12641 Elf_Internal_Sym *sym)
12645 switch (h->root.type)
12647 case bfd_link_hash_defined:
12648 case bfd_link_hash_defweak:
12649 return h->root.u.def.section;
12651 case bfd_link_hash_common:
12652 return h->root.u.c.p->section;
12659 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
12664 /* For undefined __start_<name> and __stop_<name> symbols, return the
12665 first input section matching <name>. Return NULL otherwise. */
12668 _bfd_elf_is_start_stop (const struct bfd_link_info *info,
12669 struct elf_link_hash_entry *h)
12672 const char *sec_name;
12674 if (h->root.type != bfd_link_hash_undefined
12675 && h->root.type != bfd_link_hash_undefweak)
12678 s = h->root.u.undef.section;
12681 if (s == (asection *) 0 - 1)
12687 if (strncmp (h->root.root.string, "__start_", 8) == 0)
12688 sec_name = h->root.root.string + 8;
12689 else if (strncmp (h->root.root.string, "__stop_", 7) == 0)
12690 sec_name = h->root.root.string + 7;
12692 if (sec_name != NULL && *sec_name != '\0')
12696 for (i = info->input_bfds; i != NULL; i = i->link.next)
12698 s = bfd_get_section_by_name (i, sec_name);
12701 h->root.u.undef.section = s;
12708 h->root.u.undef.section = (asection *) 0 - 1;
12713 /* COOKIE->rel describes a relocation against section SEC, which is
12714 a section we've decided to keep. Return the section that contains
12715 the relocation symbol, or NULL if no section contains it. */
12718 _bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
12719 elf_gc_mark_hook_fn gc_mark_hook,
12720 struct elf_reloc_cookie *cookie,
12721 bfd_boolean *start_stop)
12723 unsigned long r_symndx;
12724 struct elf_link_hash_entry *h;
12726 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
12727 if (r_symndx == STN_UNDEF)
12730 if (r_symndx >= cookie->locsymcount
12731 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12733 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
12736 info->callbacks->einfo (_("%F%P: corrupt input: %B\n"),
12740 while (h->root.type == bfd_link_hash_indirect
12741 || h->root.type == bfd_link_hash_warning)
12742 h = (struct elf_link_hash_entry *) h->root.u.i.link;
12744 /* If this symbol is weak and there is a non-weak definition, we
12745 keep the non-weak definition because many backends put
12746 dynamic reloc info on the non-weak definition for code
12747 handling copy relocs. */
12748 if (h->u.weakdef != NULL)
12749 h->u.weakdef->mark = 1;
12751 if (start_stop != NULL)
12753 /* To work around a glibc bug, mark all XXX input sections
12754 when there is an as yet undefined reference to __start_XXX
12755 or __stop_XXX symbols. The linker will later define such
12756 symbols for orphan input sections that have a name
12757 representable as a C identifier. */
12758 asection *s = _bfd_elf_is_start_stop (info, h);
12762 *start_stop = !s->gc_mark;
12767 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
12770 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
12771 &cookie->locsyms[r_symndx]);
12774 /* COOKIE->rel describes a relocation against section SEC, which is
12775 a section we've decided to keep. Mark the section that contains
12776 the relocation symbol. */
12779 _bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
12781 elf_gc_mark_hook_fn gc_mark_hook,
12782 struct elf_reloc_cookie *cookie)
12785 bfd_boolean start_stop = FALSE;
12787 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie, &start_stop);
12788 while (rsec != NULL)
12790 if (!rsec->gc_mark)
12792 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
12793 || (rsec->owner->flags & DYNAMIC) != 0)
12795 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
12800 rsec = bfd_get_next_section_by_name (rsec->owner, rsec);
12805 /* The mark phase of garbage collection. For a given section, mark
12806 it and any sections in this section's group, and all the sections
12807 which define symbols to which it refers. */
12810 _bfd_elf_gc_mark (struct bfd_link_info *info,
12812 elf_gc_mark_hook_fn gc_mark_hook)
12815 asection *group_sec, *eh_frame;
12819 /* Mark all the sections in the group. */
12820 group_sec = elf_section_data (sec)->next_in_group;
12821 if (group_sec && !group_sec->gc_mark)
12822 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
12825 /* Look through the section relocs. */
12827 eh_frame = elf_eh_frame_section (sec->owner);
12828 if ((sec->flags & SEC_RELOC) != 0
12829 && sec->reloc_count > 0
12830 && sec != eh_frame)
12832 struct elf_reloc_cookie cookie;
12834 if (!init_reloc_cookie_for_section (&cookie, info, sec))
12838 for (; cookie.rel < cookie.relend; cookie.rel++)
12839 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
12844 fini_reloc_cookie_for_section (&cookie, sec);
12848 if (ret && eh_frame && elf_fde_list (sec))
12850 struct elf_reloc_cookie cookie;
12852 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
12856 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
12857 gc_mark_hook, &cookie))
12859 fini_reloc_cookie_for_section (&cookie, eh_frame);
12863 eh_frame = elf_section_eh_frame_entry (sec);
12864 if (ret && eh_frame && !eh_frame->gc_mark)
12865 if (!_bfd_elf_gc_mark (info, eh_frame, gc_mark_hook))
12871 /* Scan and mark sections in a special or debug section group. */
12874 _bfd_elf_gc_mark_debug_special_section_group (asection *grp)
12876 /* Point to first section of section group. */
12878 /* Used to iterate the section group. */
12881 bfd_boolean is_special_grp = TRUE;
12882 bfd_boolean is_debug_grp = TRUE;
12884 /* First scan to see if group contains any section other than debug
12885 and special section. */
12886 ssec = msec = elf_next_in_group (grp);
12889 if ((msec->flags & SEC_DEBUGGING) == 0)
12890 is_debug_grp = FALSE;
12892 if ((msec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) != 0)
12893 is_special_grp = FALSE;
12895 msec = elf_next_in_group (msec);
12897 while (msec != ssec);
12899 /* If this is a pure debug section group or pure special section group,
12900 keep all sections in this group. */
12901 if (is_debug_grp || is_special_grp)
12906 msec = elf_next_in_group (msec);
12908 while (msec != ssec);
12912 /* Keep debug and special sections. */
12915 _bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
12916 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
12920 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
12923 bfd_boolean some_kept;
12924 bfd_boolean debug_frag_seen;
12926 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
12929 /* Ensure all linker created sections are kept,
12930 see if any other section is already marked,
12931 and note if we have any fragmented debug sections. */
12932 debug_frag_seen = some_kept = FALSE;
12933 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
12935 if ((isec->flags & SEC_LINKER_CREATED) != 0)
12937 else if (isec->gc_mark)
12940 if (debug_frag_seen == FALSE
12941 && (isec->flags & SEC_DEBUGGING)
12942 && CONST_STRNEQ (isec->name, ".debug_line."))
12943 debug_frag_seen = TRUE;
12946 /* If no section in this file will be kept, then we can
12947 toss out the debug and special sections. */
12951 /* Keep debug and special sections like .comment when they are
12952 not part of a group. Also keep section groups that contain
12953 just debug sections or special sections. */
12954 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
12956 if ((isec->flags & SEC_GROUP) != 0)
12957 _bfd_elf_gc_mark_debug_special_section_group (isec);
12958 else if (((isec->flags & SEC_DEBUGGING) != 0
12959 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
12960 && elf_next_in_group (isec) == NULL)
12964 if (! debug_frag_seen)
12967 /* Look for CODE sections which are going to be discarded,
12968 and find and discard any fragmented debug sections which
12969 are associated with that code section. */
12970 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
12971 if ((isec->flags & SEC_CODE) != 0
12972 && isec->gc_mark == 0)
12977 ilen = strlen (isec->name);
12979 /* Association is determined by the name of the debug section
12980 containing the name of the code section as a suffix. For
12981 example .debug_line.text.foo is a debug section associated
12983 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
12987 if (dsec->gc_mark == 0
12988 || (dsec->flags & SEC_DEBUGGING) == 0)
12991 dlen = strlen (dsec->name);
12994 && strncmp (dsec->name + (dlen - ilen),
12995 isec->name, ilen) == 0)
13005 /* The sweep phase of garbage collection. Remove all garbage sections. */
13007 typedef bfd_boolean (*gc_sweep_hook_fn)
13008 (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
13011 elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
13014 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13015 gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
13017 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
13021 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
13022 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
13025 for (o = sub->sections; o != NULL; o = o->next)
13027 /* When any section in a section group is kept, we keep all
13028 sections in the section group. If the first member of
13029 the section group is excluded, we will also exclude the
13031 if (o->flags & SEC_GROUP)
13033 asection *first = elf_next_in_group (o);
13034 o->gc_mark = first->gc_mark;
13040 /* Skip sweeping sections already excluded. */
13041 if (o->flags & SEC_EXCLUDE)
13044 /* Since this is early in the link process, it is simple
13045 to remove a section from the output. */
13046 o->flags |= SEC_EXCLUDE;
13048 if (info->print_gc_sections && o->size != 0)
13049 /* xgettext:c-format */
13050 _bfd_error_handler (_("Removing unused section '%A' in file '%B'"),
13053 /* But we also have to update some of the relocation
13054 info we collected before. */
13056 && (o->flags & SEC_RELOC) != 0
13057 && o->reloc_count != 0
13058 && !((info->strip == strip_all || info->strip == strip_debugger)
13059 && (o->flags & SEC_DEBUGGING) != 0)
13060 && !bfd_is_abs_section (o->output_section))
13062 Elf_Internal_Rela *internal_relocs;
13066 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
13067 info->keep_memory);
13068 if (internal_relocs == NULL)
13071 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
13073 if (elf_section_data (o)->relocs != internal_relocs)
13074 free (internal_relocs);
13085 /* Propagate collected vtable information. This is called through
13086 elf_link_hash_traverse. */
13089 elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
13091 /* Those that are not vtables. */
13092 if (h->vtable == NULL || h->vtable->parent == NULL)
13095 /* Those vtables that do not have parents, we cannot merge. */
13096 if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
13099 /* If we've already been done, exit. */
13100 if (h->vtable->used && h->vtable->used[-1])
13103 /* Make sure the parent's table is up to date. */
13104 elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
13106 if (h->vtable->used == NULL)
13108 /* None of this table's entries were referenced. Re-use the
13110 h->vtable->used = h->vtable->parent->vtable->used;
13111 h->vtable->size = h->vtable->parent->vtable->size;
13116 bfd_boolean *cu, *pu;
13118 /* Or the parent's entries into ours. */
13119 cu = h->vtable->used;
13121 pu = h->vtable->parent->vtable->used;
13124 const struct elf_backend_data *bed;
13125 unsigned int log_file_align;
13127 bed = get_elf_backend_data (h->root.u.def.section->owner);
13128 log_file_align = bed->s->log_file_align;
13129 n = h->vtable->parent->vtable->size >> log_file_align;
13144 elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
13147 bfd_vma hstart, hend;
13148 Elf_Internal_Rela *relstart, *relend, *rel;
13149 const struct elf_backend_data *bed;
13150 unsigned int log_file_align;
13152 /* Take care of both those symbols that do not describe vtables as
13153 well as those that are not loaded. */
13154 if (h->vtable == NULL || h->vtable->parent == NULL)
13157 BFD_ASSERT (h->root.type == bfd_link_hash_defined
13158 || h->root.type == bfd_link_hash_defweak);
13160 sec = h->root.u.def.section;
13161 hstart = h->root.u.def.value;
13162 hend = hstart + h->size;
13164 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
13166 return *(bfd_boolean *) okp = FALSE;
13167 bed = get_elf_backend_data (sec->owner);
13168 log_file_align = bed->s->log_file_align;
13170 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
13172 for (rel = relstart; rel < relend; ++rel)
13173 if (rel->r_offset >= hstart && rel->r_offset < hend)
13175 /* If the entry is in use, do nothing. */
13176 if (h->vtable->used
13177 && (rel->r_offset - hstart) < h->vtable->size)
13179 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
13180 if (h->vtable->used[entry])
13183 /* Otherwise, kill it. */
13184 rel->r_offset = rel->r_info = rel->r_addend = 0;
13190 /* Mark sections containing dynamically referenced symbols. When
13191 building shared libraries, we must assume that any visible symbol is
13195 bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
13197 struct bfd_link_info *info = (struct bfd_link_info *) inf;
13198 struct bfd_elf_dynamic_list *d = info->dynamic_list;
13200 if ((h->root.type == bfd_link_hash_defined
13201 || h->root.type == bfd_link_hash_defweak)
13203 || ((h->def_regular || ELF_COMMON_DEF_P (h))
13204 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
13205 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
13206 && (!bfd_link_executable (info)
13207 || info->gc_keep_exported
13208 || info->export_dynamic
13211 && (*d->match) (&d->head, NULL, h->root.root.string)))
13212 && (h->versioned >= versioned
13213 || !bfd_hide_sym_by_version (info->version_info,
13214 h->root.root.string)))))
13215 h->root.u.def.section->flags |= SEC_KEEP;
13220 /* Keep all sections containing symbols undefined on the command-line,
13221 and the section containing the entry symbol. */
13224 _bfd_elf_gc_keep (struct bfd_link_info *info)
13226 struct bfd_sym_chain *sym;
13228 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
13230 struct elf_link_hash_entry *h;
13232 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
13233 FALSE, FALSE, FALSE);
13236 && (h->root.type == bfd_link_hash_defined
13237 || h->root.type == bfd_link_hash_defweak)
13238 && !bfd_is_abs_section (h->root.u.def.section)
13239 && !bfd_is_und_section (h->root.u.def.section))
13240 h->root.u.def.section->flags |= SEC_KEEP;
13245 bfd_elf_parse_eh_frame_entries (bfd *abfd ATTRIBUTE_UNUSED,
13246 struct bfd_link_info *info)
13248 bfd *ibfd = info->input_bfds;
13250 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
13253 struct elf_reloc_cookie cookie;
13255 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13258 if (!init_reloc_cookie (&cookie, info, ibfd))
13261 for (sec = ibfd->sections; sec; sec = sec->next)
13263 if (CONST_STRNEQ (bfd_section_name (ibfd, sec), ".eh_frame_entry")
13264 && init_reloc_cookie_rels (&cookie, info, ibfd, sec))
13266 _bfd_elf_parse_eh_frame_entry (info, sec, &cookie);
13267 fini_reloc_cookie_rels (&cookie, sec);
13274 /* Do mark and sweep of unused sections. */
13277 bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
13279 bfd_boolean ok = TRUE;
13281 elf_gc_mark_hook_fn gc_mark_hook;
13282 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13283 struct elf_link_hash_table *htab;
13285 if (!bed->can_gc_sections
13286 || !is_elf_hash_table (info->hash))
13288 _bfd_error_handler(_("Warning: gc-sections option ignored"));
13292 bed->gc_keep (info);
13293 htab = elf_hash_table (info);
13295 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
13296 at the .eh_frame section if we can mark the FDEs individually. */
13297 for (sub = info->input_bfds;
13298 info->eh_frame_hdr_type != COMPACT_EH_HDR && sub != NULL;
13299 sub = sub->link.next)
13302 struct elf_reloc_cookie cookie;
13304 sec = bfd_get_section_by_name (sub, ".eh_frame");
13305 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
13307 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
13308 if (elf_section_data (sec)->sec_info
13309 && (sec->flags & SEC_LINKER_CREATED) == 0)
13310 elf_eh_frame_section (sub) = sec;
13311 fini_reloc_cookie_for_section (&cookie, sec);
13312 sec = bfd_get_next_section_by_name (NULL, sec);
13316 /* Apply transitive closure to the vtable entry usage info. */
13317 elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
13321 /* Kill the vtable relocations that were not used. */
13322 elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
13326 /* Mark dynamically referenced symbols. */
13327 if (htab->dynamic_sections_created || info->gc_keep_exported)
13328 elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
13330 /* Grovel through relocs to find out who stays ... */
13331 gc_mark_hook = bed->gc_mark_hook;
13332 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
13336 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
13337 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
13340 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
13341 Also treat note sections as a root, if the section is not part
13343 for (o = sub->sections; o != NULL; o = o->next)
13345 && (o->flags & SEC_EXCLUDE) == 0
13346 && ((o->flags & SEC_KEEP) != 0
13347 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
13348 && elf_next_in_group (o) == NULL )))
13350 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
13355 /* Allow the backend to mark additional target specific sections. */
13356 bed->gc_mark_extra_sections (info, gc_mark_hook);
13358 /* ... and mark SEC_EXCLUDE for those that go. */
13359 return elf_gc_sweep (abfd, info);
13362 /* Called from check_relocs to record the existence of a VTINHERIT reloc. */
13365 bfd_elf_gc_record_vtinherit (bfd *abfd,
13367 struct elf_link_hash_entry *h,
13370 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
13371 struct elf_link_hash_entry **search, *child;
13372 size_t extsymcount;
13373 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13375 /* The sh_info field of the symtab header tells us where the
13376 external symbols start. We don't care about the local symbols at
13378 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
13379 if (!elf_bad_symtab (abfd))
13380 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
13382 sym_hashes = elf_sym_hashes (abfd);
13383 sym_hashes_end = sym_hashes + extsymcount;
13385 /* Hunt down the child symbol, which is in this section at the same
13386 offset as the relocation. */
13387 for (search = sym_hashes; search != sym_hashes_end; ++search)
13389 if ((child = *search) != NULL
13390 && (child->root.type == bfd_link_hash_defined
13391 || child->root.type == bfd_link_hash_defweak)
13392 && child->root.u.def.section == sec
13393 && child->root.u.def.value == offset)
13397 /* xgettext:c-format */
13398 _bfd_error_handler (_("%B: %A+%lu: No symbol found for INHERIT"),
13399 abfd, sec, (unsigned long) offset);
13400 bfd_set_error (bfd_error_invalid_operation);
13404 if (!child->vtable)
13406 child->vtable = ((struct elf_link_virtual_table_entry *)
13407 bfd_zalloc (abfd, sizeof (*child->vtable)));
13408 if (!child->vtable)
13413 /* This *should* only be the absolute section. It could potentially
13414 be that someone has defined a non-global vtable though, which
13415 would be bad. It isn't worth paging in the local symbols to be
13416 sure though; that case should simply be handled by the assembler. */
13418 child->vtable->parent = (struct elf_link_hash_entry *) -1;
13421 child->vtable->parent = h;
13426 /* Called from check_relocs to record the existence of a VTENTRY reloc. */
13429 bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
13430 asection *sec ATTRIBUTE_UNUSED,
13431 struct elf_link_hash_entry *h,
13434 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13435 unsigned int log_file_align = bed->s->log_file_align;
13439 h->vtable = ((struct elf_link_virtual_table_entry *)
13440 bfd_zalloc (abfd, sizeof (*h->vtable)));
13445 if (addend >= h->vtable->size)
13447 size_t size, bytes, file_align;
13448 bfd_boolean *ptr = h->vtable->used;
13450 /* While the symbol is undefined, we have to be prepared to handle
13452 file_align = 1 << log_file_align;
13453 if (h->root.type == bfd_link_hash_undefined)
13454 size = addend + file_align;
13458 if (addend >= size)
13460 /* Oops! We've got a reference past the defined end of
13461 the table. This is probably a bug -- shall we warn? */
13462 size = addend + file_align;
13465 size = (size + file_align - 1) & -file_align;
13467 /* Allocate one extra entry for use as a "done" flag for the
13468 consolidation pass. */
13469 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
13473 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
13479 oldbytes = (((h->vtable->size >> log_file_align) + 1)
13480 * sizeof (bfd_boolean));
13481 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
13485 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
13490 /* And arrange for that done flag to be at index -1. */
13491 h->vtable->used = ptr + 1;
13492 h->vtable->size = size;
13495 h->vtable->used[addend >> log_file_align] = TRUE;
13500 /* Map an ELF section header flag to its corresponding string. */
13504 flagword flag_value;
13505 } elf_flags_to_name_table;
13507 static elf_flags_to_name_table elf_flags_to_names [] =
13509 { "SHF_WRITE", SHF_WRITE },
13510 { "SHF_ALLOC", SHF_ALLOC },
13511 { "SHF_EXECINSTR", SHF_EXECINSTR },
13512 { "SHF_MERGE", SHF_MERGE },
13513 { "SHF_STRINGS", SHF_STRINGS },
13514 { "SHF_INFO_LINK", SHF_INFO_LINK},
13515 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
13516 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
13517 { "SHF_GROUP", SHF_GROUP },
13518 { "SHF_TLS", SHF_TLS },
13519 { "SHF_MASKOS", SHF_MASKOS },
13520 { "SHF_EXCLUDE", SHF_EXCLUDE },
13523 /* Returns TRUE if the section is to be included, otherwise FALSE. */
13525 bfd_elf_lookup_section_flags (struct bfd_link_info *info,
13526 struct flag_info *flaginfo,
13529 const bfd_vma sh_flags = elf_section_flags (section);
13531 if (!flaginfo->flags_initialized)
13533 bfd *obfd = info->output_bfd;
13534 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
13535 struct flag_info_list *tf = flaginfo->flag_list;
13537 int without_hex = 0;
13539 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
13542 flagword (*lookup) (char *);
13544 lookup = bed->elf_backend_lookup_section_flags_hook;
13545 if (lookup != NULL)
13547 flagword hexval = (*lookup) ((char *) tf->name);
13551 if (tf->with == with_flags)
13552 with_hex |= hexval;
13553 else if (tf->with == without_flags)
13554 without_hex |= hexval;
13559 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
13561 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
13563 if (tf->with == with_flags)
13564 with_hex |= elf_flags_to_names[i].flag_value;
13565 else if (tf->with == without_flags)
13566 without_hex |= elf_flags_to_names[i].flag_value;
13573 info->callbacks->einfo
13574 (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
13578 flaginfo->flags_initialized = TRUE;
13579 flaginfo->only_with_flags |= with_hex;
13580 flaginfo->not_with_flags |= without_hex;
13583 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
13586 if ((flaginfo->not_with_flags & sh_flags) != 0)
13592 struct alloc_got_off_arg {
13594 struct bfd_link_info *info;
13597 /* We need a special top-level link routine to convert got reference counts
13598 to real got offsets. */
13601 elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
13603 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
13604 bfd *obfd = gofarg->info->output_bfd;
13605 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
13607 if (h->got.refcount > 0)
13609 h->got.offset = gofarg->gotoff;
13610 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
13613 h->got.offset = (bfd_vma) -1;
13618 /* And an accompanying bit to work out final got entry offsets once
13619 we're done. Should be called from final_link. */
13622 bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
13623 struct bfd_link_info *info)
13626 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13628 struct alloc_got_off_arg gofarg;
13630 BFD_ASSERT (abfd == info->output_bfd);
13632 if (! is_elf_hash_table (info->hash))
13635 /* The GOT offset is relative to the .got section, but the GOT header is
13636 put into the .got.plt section, if the backend uses it. */
13637 if (bed->want_got_plt)
13640 gotoff = bed->got_header_size;
13642 /* Do the local .got entries first. */
13643 for (i = info->input_bfds; i; i = i->link.next)
13645 bfd_signed_vma *local_got;
13646 size_t j, locsymcount;
13647 Elf_Internal_Shdr *symtab_hdr;
13649 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
13652 local_got = elf_local_got_refcounts (i);
13656 symtab_hdr = &elf_tdata (i)->symtab_hdr;
13657 if (elf_bad_symtab (i))
13658 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
13660 locsymcount = symtab_hdr->sh_info;
13662 for (j = 0; j < locsymcount; ++j)
13664 if (local_got[j] > 0)
13666 local_got[j] = gotoff;
13667 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
13670 local_got[j] = (bfd_vma) -1;
13674 /* Then the global .got entries. .plt refcounts are handled by
13675 adjust_dynamic_symbol */
13676 gofarg.gotoff = gotoff;
13677 gofarg.info = info;
13678 elf_link_hash_traverse (elf_hash_table (info),
13679 elf_gc_allocate_got_offsets,
13684 /* Many folk need no more in the way of final link than this, once
13685 got entry reference counting is enabled. */
13688 bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
13690 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
13693 /* Invoke the regular ELF backend linker to do all the work. */
13694 return bfd_elf_final_link (abfd, info);
13698 bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
13700 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
13702 if (rcookie->bad_symtab)
13703 rcookie->rel = rcookie->rels;
13705 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
13707 unsigned long r_symndx;
13709 if (! rcookie->bad_symtab)
13710 if (rcookie->rel->r_offset > offset)
13712 if (rcookie->rel->r_offset != offset)
13715 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
13716 if (r_symndx == STN_UNDEF)
13719 if (r_symndx >= rcookie->locsymcount
13720 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
13722 struct elf_link_hash_entry *h;
13724 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
13726 while (h->root.type == bfd_link_hash_indirect
13727 || h->root.type == bfd_link_hash_warning)
13728 h = (struct elf_link_hash_entry *) h->root.u.i.link;
13730 if ((h->root.type == bfd_link_hash_defined
13731 || h->root.type == bfd_link_hash_defweak)
13732 && (h->root.u.def.section->owner != rcookie->abfd
13733 || h->root.u.def.section->kept_section != NULL
13734 || discarded_section (h->root.u.def.section)))
13739 /* It's not a relocation against a global symbol,
13740 but it could be a relocation against a local
13741 symbol for a discarded section. */
13743 Elf_Internal_Sym *isym;
13745 /* Need to: get the symbol; get the section. */
13746 isym = &rcookie->locsyms[r_symndx];
13747 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
13749 && (isec->kept_section != NULL
13750 || discarded_section (isec)))
13758 /* Discard unneeded references to discarded sections.
13759 Returns -1 on error, 1 if any section's size was changed, 0 if
13760 nothing changed. This function assumes that the relocations are in
13761 sorted order, which is true for all known assemblers. */
13764 bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
13766 struct elf_reloc_cookie cookie;
13771 if (info->traditional_format
13772 || !is_elf_hash_table (info->hash))
13775 o = bfd_get_section_by_name (output_bfd, ".stab");
13780 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
13783 || i->reloc_count == 0
13784 || i->sec_info_type != SEC_INFO_TYPE_STABS)
13788 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
13791 if (!init_reloc_cookie_for_section (&cookie, info, i))
13794 if (_bfd_discard_section_stabs (abfd, i,
13795 elf_section_data (i)->sec_info,
13796 bfd_elf_reloc_symbol_deleted_p,
13800 fini_reloc_cookie_for_section (&cookie, i);
13805 if (info->eh_frame_hdr_type != COMPACT_EH_HDR)
13806 o = bfd_get_section_by_name (output_bfd, ".eh_frame");
13811 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
13817 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
13820 if (!init_reloc_cookie_for_section (&cookie, info, i))
13823 _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
13824 if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
13825 bfd_elf_reloc_symbol_deleted_p,
13829 fini_reloc_cookie_for_section (&cookie, i);
13833 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
13835 const struct elf_backend_data *bed;
13837 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
13840 bed = get_elf_backend_data (abfd);
13842 if (bed->elf_backend_discard_info != NULL)
13844 if (!init_reloc_cookie (&cookie, info, abfd))
13847 if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
13850 fini_reloc_cookie (&cookie, abfd);
13854 if (info->eh_frame_hdr_type == COMPACT_EH_HDR)
13855 _bfd_elf_end_eh_frame_parsing (info);
13857 if (info->eh_frame_hdr_type
13858 && !bfd_link_relocatable (info)
13859 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
13866 _bfd_elf_section_already_linked (bfd *abfd,
13868 struct bfd_link_info *info)
13871 const char *name, *key;
13872 struct bfd_section_already_linked *l;
13873 struct bfd_section_already_linked_hash_entry *already_linked_list;
13875 if (sec->output_section == bfd_abs_section_ptr)
13878 flags = sec->flags;
13880 /* Return if it isn't a linkonce section. A comdat group section
13881 also has SEC_LINK_ONCE set. */
13882 if ((flags & SEC_LINK_ONCE) == 0)
13885 /* Don't put group member sections on our list of already linked
13886 sections. They are handled as a group via their group section. */
13887 if (elf_sec_group (sec) != NULL)
13890 /* For a SHT_GROUP section, use the group signature as the key. */
13892 if ((flags & SEC_GROUP) != 0
13893 && elf_next_in_group (sec) != NULL
13894 && elf_group_name (elf_next_in_group (sec)) != NULL)
13895 key = elf_group_name (elf_next_in_group (sec));
13898 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
13899 if (CONST_STRNEQ (name, ".gnu.linkonce.")
13900 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
13903 /* Must be a user linkonce section that doesn't follow gcc's
13904 naming convention. In this case we won't be matching
13905 single member groups. */
13909 already_linked_list = bfd_section_already_linked_table_lookup (key);
13911 for (l = already_linked_list->entry; l != NULL; l = l->next)
13913 /* We may have 2 different types of sections on the list: group
13914 sections with a signature of <key> (<key> is some string),
13915 and linkonce sections named .gnu.linkonce.<type>.<key>.
13916 Match like sections. LTO plugin sections are an exception.
13917 They are always named .gnu.linkonce.t.<key> and match either
13918 type of section. */
13919 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
13920 && ((flags & SEC_GROUP) != 0
13921 || strcmp (name, l->sec->name) == 0))
13922 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
13924 /* The section has already been linked. See if we should
13925 issue a warning. */
13926 if (!_bfd_handle_already_linked (sec, l, info))
13929 if (flags & SEC_GROUP)
13931 asection *first = elf_next_in_group (sec);
13932 asection *s = first;
13936 s->output_section = bfd_abs_section_ptr;
13937 /* Record which group discards it. */
13938 s->kept_section = l->sec;
13939 s = elf_next_in_group (s);
13940 /* These lists are circular. */
13950 /* A single member comdat group section may be discarded by a
13951 linkonce section and vice versa. */
13952 if ((flags & SEC_GROUP) != 0)
13954 asection *first = elf_next_in_group (sec);
13956 if (first != NULL && elf_next_in_group (first) == first)
13957 /* Check this single member group against linkonce sections. */
13958 for (l = already_linked_list->entry; l != NULL; l = l->next)
13959 if ((l->sec->flags & SEC_GROUP) == 0
13960 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
13962 first->output_section = bfd_abs_section_ptr;
13963 first->kept_section = l->sec;
13964 sec->output_section = bfd_abs_section_ptr;
13969 /* Check this linkonce section against single member groups. */
13970 for (l = already_linked_list->entry; l != NULL; l = l->next)
13971 if (l->sec->flags & SEC_GROUP)
13973 asection *first = elf_next_in_group (l->sec);
13976 && elf_next_in_group (first) == first
13977 && bfd_elf_match_symbols_in_sections (first, sec, info))
13979 sec->output_section = bfd_abs_section_ptr;
13980 sec->kept_section = first;
13985 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
13986 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
13987 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
13988 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
13989 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
13990 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
13991 `.gnu.linkonce.t.F' section from a different bfd not requiring any
13992 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
13993 The reverse order cannot happen as there is never a bfd with only the
13994 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
13995 matter as here were are looking only for cross-bfd sections. */
13997 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
13998 for (l = already_linked_list->entry; l != NULL; l = l->next)
13999 if ((l->sec->flags & SEC_GROUP) == 0
14000 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
14002 if (abfd != l->sec->owner)
14003 sec->output_section = bfd_abs_section_ptr;
14007 /* This is the first section with this name. Record it. */
14008 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
14009 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
14010 return sec->output_section == bfd_abs_section_ptr;
14014 _bfd_elf_common_definition (Elf_Internal_Sym *sym)
14016 return sym->st_shndx == SHN_COMMON;
14020 _bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
14026 _bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
14028 return bfd_com_section_ptr;
14032 _bfd_elf_default_got_elt_size (bfd *abfd,
14033 struct bfd_link_info *info ATTRIBUTE_UNUSED,
14034 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
14035 bfd *ibfd ATTRIBUTE_UNUSED,
14036 unsigned long symndx ATTRIBUTE_UNUSED)
14038 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14039 return bed->s->arch_size / 8;
14042 /* Routines to support the creation of dynamic relocs. */
14044 /* Returns the name of the dynamic reloc section associated with SEC. */
14046 static const char *
14047 get_dynamic_reloc_section_name (bfd * abfd,
14049 bfd_boolean is_rela)
14052 const char *old_name = bfd_get_section_name (NULL, sec);
14053 const char *prefix = is_rela ? ".rela" : ".rel";
14055 if (old_name == NULL)
14058 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
14059 sprintf (name, "%s%s", prefix, old_name);
14064 /* Returns the dynamic reloc section associated with SEC.
14065 If necessary compute the name of the dynamic reloc section based
14066 on SEC's name (looked up in ABFD's string table) and the setting
14070 _bfd_elf_get_dynamic_reloc_section (bfd * abfd,
14072 bfd_boolean is_rela)
14074 asection * reloc_sec = elf_section_data (sec)->sreloc;
14076 if (reloc_sec == NULL)
14078 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14082 reloc_sec = bfd_get_linker_section (abfd, name);
14084 if (reloc_sec != NULL)
14085 elf_section_data (sec)->sreloc = reloc_sec;
14092 /* Returns the dynamic reloc section associated with SEC. If the
14093 section does not exist it is created and attached to the DYNOBJ
14094 bfd and stored in the SRELOC field of SEC's elf_section_data
14097 ALIGNMENT is the alignment for the newly created section and
14098 IS_RELA defines whether the name should be .rela.<SEC's name>
14099 or .rel.<SEC's name>. The section name is looked up in the
14100 string table associated with ABFD. */
14103 _bfd_elf_make_dynamic_reloc_section (asection *sec,
14105 unsigned int alignment,
14107 bfd_boolean is_rela)
14109 asection * reloc_sec = elf_section_data (sec)->sreloc;
14111 if (reloc_sec == NULL)
14113 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14118 reloc_sec = bfd_get_linker_section (dynobj, name);
14120 if (reloc_sec == NULL)
14122 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
14123 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
14124 if ((sec->flags & SEC_ALLOC) != 0)
14125 flags |= SEC_ALLOC | SEC_LOAD;
14127 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
14128 if (reloc_sec != NULL)
14130 /* _bfd_elf_get_sec_type_attr chooses a section type by
14131 name. Override as it may be wrong, eg. for a user
14132 section named "auto" we'll get ".relauto" which is
14133 seen to be a .rela section. */
14134 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
14135 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
14140 elf_section_data (sec)->sreloc = reloc_sec;
14146 /* Copy the ELF symbol type and other attributes for a linker script
14147 assignment from HSRC to HDEST. Generally this should be treated as
14148 if we found a strong non-dynamic definition for HDEST (except that
14149 ld ignores multiple definition errors). */
14151 _bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
14152 struct bfd_link_hash_entry *hdest,
14153 struct bfd_link_hash_entry *hsrc)
14155 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
14156 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
14157 Elf_Internal_Sym isym;
14159 ehdest->type = ehsrc->type;
14160 ehdest->target_internal = ehsrc->target_internal;
14162 isym.st_other = ehsrc->other;
14163 elf_merge_st_other (abfd, ehdest, &isym, NULL, TRUE, FALSE);
14166 /* Append a RELA relocation REL to section S in BFD. */
14169 elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14171 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14172 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
14173 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
14174 bed->s->swap_reloca_out (abfd, rel, loc);
14177 /* Append a REL relocation REL to section S in BFD. */
14180 elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14182 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14183 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
14184 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
14185 bed->s->swap_reloc_out (abfd, rel, loc);