1 /* ELF linking support for BFD.
2 Copyright 1995-2013 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
27 #include "safe-ctype.h"
28 #include "libiberty.h"
31 /* This struct is used to pass information to routines called via
32 elf_link_hash_traverse which must return failure. */
34 struct elf_info_failed
36 struct bfd_link_info *info;
40 /* This structure is used to pass information to
41 _bfd_elf_link_find_version_dependencies. */
43 struct elf_find_verdep_info
45 /* General link information. */
46 struct bfd_link_info *info;
47 /* The number of dependencies. */
49 /* Whether we had a failure. */
53 static bfd_boolean _bfd_elf_fix_symbol_flags
54 (struct elf_link_hash_entry *, struct elf_info_failed *);
56 /* Define a symbol in a dynamic linkage section. */
58 struct elf_link_hash_entry *
59 _bfd_elf_define_linkage_sym (bfd *abfd,
60 struct bfd_link_info *info,
64 struct elf_link_hash_entry *h;
65 struct bfd_link_hash_entry *bh;
66 const struct elf_backend_data *bed;
68 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
71 /* Zap symbol defined in an as-needed lib that wasn't linked.
72 This is a symptom of a larger problem: Absolute symbols
73 defined in shared libraries can't be overridden, because we
74 lose the link to the bfd which is via the symbol section. */
75 h->root.type = bfd_link_hash_new;
79 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
81 get_elf_backend_data (abfd)->collect,
84 h = (struct elf_link_hash_entry *) bh;
88 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
90 bed = get_elf_backend_data (abfd);
91 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
96 _bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
100 struct elf_link_hash_entry *h;
101 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
102 struct elf_link_hash_table *htab = elf_hash_table (info);
104 /* This function may be called more than once. */
105 s = bfd_get_linker_section (abfd, ".got");
109 flags = bed->dynamic_sec_flags;
111 s = bfd_make_section_anyway_with_flags (abfd,
112 (bed->rela_plts_and_copies_p
113 ? ".rela.got" : ".rel.got"),
114 (bed->dynamic_sec_flags
117 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
121 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
123 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
127 if (bed->want_got_plt)
129 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
131 || !bfd_set_section_alignment (abfd, s,
132 bed->s->log_file_align))
137 /* The first bit of the global offset table is the header. */
138 s->size += bed->got_header_size;
140 if (bed->want_got_sym)
142 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
143 (or .got.plt) section. We don't do this in the linker script
144 because we don't want to define the symbol if we are not creating
145 a global offset table. */
146 h = _bfd_elf_define_linkage_sym (abfd, info, s,
147 "_GLOBAL_OFFSET_TABLE_");
148 elf_hash_table (info)->hgot = h;
156 /* Create a strtab to hold the dynamic symbol names. */
158 _bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
160 struct elf_link_hash_table *hash_table;
162 hash_table = elf_hash_table (info);
163 if (hash_table->dynobj == NULL)
164 hash_table->dynobj = abfd;
166 if (hash_table->dynstr == NULL)
168 hash_table->dynstr = _bfd_elf_strtab_init ();
169 if (hash_table->dynstr == NULL)
175 /* Create some sections which will be filled in with dynamic linking
176 information. ABFD is an input file which requires dynamic sections
177 to be created. The dynamic sections take up virtual memory space
178 when the final executable is run, so we need to create them before
179 addresses are assigned to the output sections. We work out the
180 actual contents and size of these sections later. */
183 _bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
187 const struct elf_backend_data *bed;
188 struct elf_link_hash_entry *h;
190 if (! is_elf_hash_table (info->hash))
193 if (elf_hash_table (info)->dynamic_sections_created)
196 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
199 abfd = elf_hash_table (info)->dynobj;
200 bed = get_elf_backend_data (abfd);
202 flags = bed->dynamic_sec_flags;
204 /* A dynamically linked executable has a .interp section, but a
205 shared library does not. */
206 if (info->executable)
208 s = bfd_make_section_anyway_with_flags (abfd, ".interp",
209 flags | SEC_READONLY);
214 /* Create sections to hold version informations. These are removed
215 if they are not needed. */
216 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
217 flags | SEC_READONLY);
219 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
222 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
223 flags | SEC_READONLY);
225 || ! bfd_set_section_alignment (abfd, s, 1))
228 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
229 flags | SEC_READONLY);
231 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
234 s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
235 flags | SEC_READONLY);
237 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
240 s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
241 flags | SEC_READONLY);
245 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
247 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
250 /* The special symbol _DYNAMIC is always set to the start of the
251 .dynamic section. We could set _DYNAMIC in a linker script, but we
252 only want to define it if we are, in fact, creating a .dynamic
253 section. We don't want to define it if there is no .dynamic
254 section, since on some ELF platforms the start up code examines it
255 to decide how to initialize the process. */
256 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
257 elf_hash_table (info)->hdynamic = h;
263 s = bfd_make_section_anyway_with_flags (abfd, ".hash",
264 flags | SEC_READONLY);
266 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
268 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
271 if (info->emit_gnu_hash)
273 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
274 flags | SEC_READONLY);
276 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
278 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
279 4 32-bit words followed by variable count of 64-bit words, then
280 variable count of 32-bit words. */
281 if (bed->s->arch_size == 64)
282 elf_section_data (s)->this_hdr.sh_entsize = 0;
284 elf_section_data (s)->this_hdr.sh_entsize = 4;
287 /* Let the backend create the rest of the sections. This lets the
288 backend set the right flags. The backend will normally create
289 the .got and .plt sections. */
290 if (bed->elf_backend_create_dynamic_sections == NULL
291 || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
294 elf_hash_table (info)->dynamic_sections_created = TRUE;
299 /* Create dynamic sections when linking against a dynamic object. */
302 _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
304 flagword flags, pltflags;
305 struct elf_link_hash_entry *h;
307 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
308 struct elf_link_hash_table *htab = elf_hash_table (info);
310 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
311 .rel[a].bss sections. */
312 flags = bed->dynamic_sec_flags;
315 if (bed->plt_not_loaded)
316 /* We do not clear SEC_ALLOC here because we still want the OS to
317 allocate space for the section; it's just that there's nothing
318 to read in from the object file. */
319 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
321 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
322 if (bed->plt_readonly)
323 pltflags |= SEC_READONLY;
325 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
327 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
331 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
333 if (bed->want_plt_sym)
335 h = _bfd_elf_define_linkage_sym (abfd, info, s,
336 "_PROCEDURE_LINKAGE_TABLE_");
337 elf_hash_table (info)->hplt = h;
342 s = bfd_make_section_anyway_with_flags (abfd,
343 (bed->rela_plts_and_copies_p
344 ? ".rela.plt" : ".rel.plt"),
345 flags | SEC_READONLY);
347 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
351 if (! _bfd_elf_create_got_section (abfd, info))
354 if (bed->want_dynbss)
356 /* The .dynbss section is a place to put symbols which are defined
357 by dynamic objects, are referenced by regular objects, and are
358 not functions. We must allocate space for them in the process
359 image and use a R_*_COPY reloc to tell the dynamic linker to
360 initialize them at run time. The linker script puts the .dynbss
361 section into the .bss section of the final image. */
362 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
363 (SEC_ALLOC | SEC_LINKER_CREATED));
367 /* The .rel[a].bss section holds copy relocs. This section is not
368 normally needed. We need to create it here, though, so that the
369 linker will map it to an output section. We can't just create it
370 only if we need it, because we will not know whether we need it
371 until we have seen all the input files, and the first time the
372 main linker code calls BFD after examining all the input files
373 (size_dynamic_sections) the input sections have already been
374 mapped to the output sections. If the section turns out not to
375 be needed, we can discard it later. We will never need this
376 section when generating a shared object, since they do not use
380 s = bfd_make_section_anyway_with_flags (abfd,
381 (bed->rela_plts_and_copies_p
382 ? ".rela.bss" : ".rel.bss"),
383 flags | SEC_READONLY);
385 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
393 /* Record a new dynamic symbol. We record the dynamic symbols as we
394 read the input files, since we need to have a list of all of them
395 before we can determine the final sizes of the output sections.
396 Note that we may actually call this function even though we are not
397 going to output any dynamic symbols; in some cases we know that a
398 symbol should be in the dynamic symbol table, but only if there is
402 bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
403 struct elf_link_hash_entry *h)
405 if (h->dynindx == -1)
407 struct elf_strtab_hash *dynstr;
412 /* XXX: The ABI draft says the linker must turn hidden and
413 internal symbols into STB_LOCAL symbols when producing the
414 DSO. However, if ld.so honors st_other in the dynamic table,
415 this would not be necessary. */
416 switch (ELF_ST_VISIBILITY (h->other))
420 if (h->root.type != bfd_link_hash_undefined
421 && h->root.type != bfd_link_hash_undefweak)
424 if (!elf_hash_table (info)->is_relocatable_executable)
432 h->dynindx = elf_hash_table (info)->dynsymcount;
433 ++elf_hash_table (info)->dynsymcount;
435 dynstr = elf_hash_table (info)->dynstr;
438 /* Create a strtab to hold the dynamic symbol names. */
439 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
444 /* We don't put any version information in the dynamic string
446 name = h->root.root.string;
447 p = strchr (name, ELF_VER_CHR);
449 /* We know that the p points into writable memory. In fact,
450 there are only a few symbols that have read-only names, being
451 those like _GLOBAL_OFFSET_TABLE_ that are created specially
452 by the backends. Most symbols will have names pointing into
453 an ELF string table read from a file, or to objalloc memory. */
456 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
461 if (indx == (bfd_size_type) -1)
463 h->dynstr_index = indx;
469 /* Mark a symbol dynamic. */
472 bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
473 struct elf_link_hash_entry *h,
474 Elf_Internal_Sym *sym)
476 struct bfd_elf_dynamic_list *d = info->dynamic_list;
478 /* It may be called more than once on the same H. */
479 if(h->dynamic || info->relocatable)
482 if ((info->dynamic_data
483 && (h->type == STT_OBJECT
485 && ELF_ST_TYPE (sym->st_info) == STT_OBJECT)))
487 && h->root.type == bfd_link_hash_new
488 && (*d->match) (&d->head, NULL, h->root.root.string)))
492 /* Record an assignment to a symbol made by a linker script. We need
493 this in case some dynamic object refers to this symbol. */
496 bfd_elf_record_link_assignment (bfd *output_bfd,
497 struct bfd_link_info *info,
502 struct elf_link_hash_entry *h, *hv;
503 struct elf_link_hash_table *htab;
504 const struct elf_backend_data *bed;
506 if (!is_elf_hash_table (info->hash))
509 htab = elf_hash_table (info);
510 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
514 switch (h->root.type)
516 case bfd_link_hash_defined:
517 case bfd_link_hash_defweak:
518 case bfd_link_hash_common:
520 case bfd_link_hash_undefweak:
521 case bfd_link_hash_undefined:
522 /* Since we're defining the symbol, don't let it seem to have not
523 been defined. record_dynamic_symbol and size_dynamic_sections
524 may depend on this. */
525 h->root.type = bfd_link_hash_new;
526 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
527 bfd_link_repair_undef_list (&htab->root);
529 case bfd_link_hash_new:
530 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
533 case bfd_link_hash_indirect:
534 /* We had a versioned symbol in a dynamic library. We make the
535 the versioned symbol point to this one. */
536 bed = get_elf_backend_data (output_bfd);
538 while (hv->root.type == bfd_link_hash_indirect
539 || hv->root.type == bfd_link_hash_warning)
540 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
541 /* We don't need to update h->root.u since linker will set them
543 h->root.type = bfd_link_hash_undefined;
544 hv->root.type = bfd_link_hash_indirect;
545 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
546 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
548 case bfd_link_hash_warning:
553 /* If this symbol is being provided by the linker script, and it is
554 currently defined by a dynamic object, but not by a regular
555 object, then mark it as undefined so that the generic linker will
556 force the correct value. */
560 h->root.type = bfd_link_hash_undefined;
562 /* If this symbol is not being provided by the linker script, and it is
563 currently defined by a dynamic object, but not by a regular object,
564 then clear out any version information because the symbol will not be
565 associated with the dynamic object any more. */
569 h->verinfo.verdef = NULL;
575 bed = get_elf_backend_data (output_bfd);
576 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
577 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
580 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
582 if (!info->relocatable
584 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
585 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
591 || (info->executable && elf_hash_table (info)->is_relocatable_executable))
594 if (! bfd_elf_link_record_dynamic_symbol (info, h))
597 /* If this is a weak defined symbol, and we know a corresponding
598 real symbol from the same dynamic object, make sure the real
599 symbol is also made into a dynamic symbol. */
600 if (h->u.weakdef != NULL
601 && h->u.weakdef->dynindx == -1)
603 if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
611 /* Record a new local dynamic symbol. Returns 0 on failure, 1 on
612 success, and 2 on a failure caused by attempting to record a symbol
613 in a discarded section, eg. a discarded link-once section symbol. */
616 bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
621 struct elf_link_local_dynamic_entry *entry;
622 struct elf_link_hash_table *eht;
623 struct elf_strtab_hash *dynstr;
624 unsigned long dynstr_index;
626 Elf_External_Sym_Shndx eshndx;
627 char esym[sizeof (Elf64_External_Sym)];
629 if (! is_elf_hash_table (info->hash))
632 /* See if the entry exists already. */
633 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
634 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
637 amt = sizeof (*entry);
638 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
642 /* Go find the symbol, so that we can find it's name. */
643 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
644 1, input_indx, &entry->isym, esym, &eshndx))
646 bfd_release (input_bfd, entry);
650 if (entry->isym.st_shndx != SHN_UNDEF
651 && entry->isym.st_shndx < SHN_LORESERVE)
655 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
656 if (s == NULL || bfd_is_abs_section (s->output_section))
658 /* We can still bfd_release here as nothing has done another
659 bfd_alloc. We can't do this later in this function. */
660 bfd_release (input_bfd, entry);
665 name = (bfd_elf_string_from_elf_section
666 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
667 entry->isym.st_name));
669 dynstr = elf_hash_table (info)->dynstr;
672 /* Create a strtab to hold the dynamic symbol names. */
673 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
678 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
679 if (dynstr_index == (unsigned long) -1)
681 entry->isym.st_name = dynstr_index;
683 eht = elf_hash_table (info);
685 entry->next = eht->dynlocal;
686 eht->dynlocal = entry;
687 entry->input_bfd = input_bfd;
688 entry->input_indx = input_indx;
691 /* Whatever binding the symbol had before, it's now local. */
693 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
695 /* The dynindx will be set at the end of size_dynamic_sections. */
700 /* Return the dynindex of a local dynamic symbol. */
703 _bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
707 struct elf_link_local_dynamic_entry *e;
709 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
710 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
715 /* This function is used to renumber the dynamic symbols, if some of
716 them are removed because they are marked as local. This is called
717 via elf_link_hash_traverse. */
720 elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
723 size_t *count = (size_t *) data;
728 if (h->dynindx != -1)
729 h->dynindx = ++(*count);
735 /* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
736 STB_LOCAL binding. */
739 elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
742 size_t *count = (size_t *) data;
744 if (!h->forced_local)
747 if (h->dynindx != -1)
748 h->dynindx = ++(*count);
753 /* Return true if the dynamic symbol for a given section should be
754 omitted when creating a shared library. */
756 _bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
757 struct bfd_link_info *info,
760 struct elf_link_hash_table *htab;
762 switch (elf_section_data (p)->this_hdr.sh_type)
766 /* If sh_type is yet undecided, assume it could be
767 SHT_PROGBITS/SHT_NOBITS. */
769 htab = elf_hash_table (info);
770 if (p == htab->tls_sec)
773 if (htab->text_index_section != NULL)
774 return p != htab->text_index_section && p != htab->data_index_section;
776 if (strcmp (p->name, ".got") == 0
777 || strcmp (p->name, ".got.plt") == 0
778 || strcmp (p->name, ".plt") == 0)
782 if (htab->dynobj != NULL
783 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
784 && ip->output_section == p)
789 /* There shouldn't be section relative relocations
790 against any other section. */
796 /* Assign dynsym indices. In a shared library we generate a section
797 symbol for each output section, which come first. Next come symbols
798 which have been forced to local binding. Then all of the back-end
799 allocated local dynamic syms, followed by the rest of the global
803 _bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
804 struct bfd_link_info *info,
805 unsigned long *section_sym_count)
807 unsigned long dynsymcount = 0;
809 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
811 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
813 for (p = output_bfd->sections; p ; p = p->next)
814 if ((p->flags & SEC_EXCLUDE) == 0
815 && (p->flags & SEC_ALLOC) != 0
816 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
817 elf_section_data (p)->dynindx = ++dynsymcount;
819 elf_section_data (p)->dynindx = 0;
821 *section_sym_count = dynsymcount;
823 elf_link_hash_traverse (elf_hash_table (info),
824 elf_link_renumber_local_hash_table_dynsyms,
827 if (elf_hash_table (info)->dynlocal)
829 struct elf_link_local_dynamic_entry *p;
830 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
831 p->dynindx = ++dynsymcount;
834 elf_link_hash_traverse (elf_hash_table (info),
835 elf_link_renumber_hash_table_dynsyms,
838 /* There is an unused NULL entry at the head of the table which
839 we must account for in our count. Unless there weren't any
840 symbols, which means we'll have no table at all. */
841 if (dynsymcount != 0)
844 elf_hash_table (info)->dynsymcount = dynsymcount;
848 /* Merge st_other field. */
851 elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
852 Elf_Internal_Sym *isym, bfd_boolean definition,
855 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
857 /* If st_other has a processor-specific meaning, specific
858 code might be needed here. We never merge the visibility
859 attribute with the one from a dynamic object. */
860 if (bed->elf_backend_merge_symbol_attribute)
861 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
864 /* If this symbol has default visibility and the user has requested
865 we not re-export it, then mark it as hidden. */
869 || (abfd->my_archive && abfd->my_archive->no_export))
870 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
871 isym->st_other = (STV_HIDDEN
872 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
874 if (!dynamic && ELF_ST_VISIBILITY (isym->st_other) != 0)
876 unsigned char hvis, symvis, other, nvis;
878 /* Only merge the visibility. Leave the remainder of the
879 st_other field to elf_backend_merge_symbol_attribute. */
880 other = h->other & ~ELF_ST_VISIBILITY (-1);
882 /* Combine visibilities, using the most constraining one. */
883 hvis = ELF_ST_VISIBILITY (h->other);
884 symvis = ELF_ST_VISIBILITY (isym->st_other);
890 nvis = hvis < symvis ? hvis : symvis;
892 h->other = other | nvis;
896 /* This function is called when we want to merge a new symbol with an
897 existing symbol. It handles the various cases which arise when we
898 find a definition in a dynamic object, or when there is already a
899 definition in a dynamic object. The new symbol is described by
900 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
901 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
902 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
903 of an old common symbol. We set OVERRIDE if the old symbol is
904 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
905 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
906 to change. By OK to change, we mean that we shouldn't warn if the
907 type or size does change. */
910 _bfd_elf_merge_symbol (bfd *abfd,
911 struct bfd_link_info *info,
913 Elf_Internal_Sym *sym,
916 struct elf_link_hash_entry **sym_hash,
918 bfd_boolean *pold_weak,
919 unsigned int *pold_alignment,
921 bfd_boolean *override,
922 bfd_boolean *type_change_ok,
923 bfd_boolean *size_change_ok)
925 asection *sec, *oldsec;
926 struct elf_link_hash_entry *h;
927 struct elf_link_hash_entry *hi;
928 struct elf_link_hash_entry *flip;
931 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
932 bfd_boolean newweak, oldweak, newfunc, oldfunc;
933 const struct elf_backend_data *bed;
939 bind = ELF_ST_BIND (sym->st_info);
941 if (! bfd_is_und_section (sec))
942 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
944 h = ((struct elf_link_hash_entry *)
945 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
950 bed = get_elf_backend_data (abfd);
952 /* This code is for coping with dynamic objects, and is only useful
953 if we are doing an ELF link. */
954 if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
957 /* For merging, we only care about real symbols. But we need to make
958 sure that indirect symbol dynamic flags are updated. */
960 while (h->root.type == bfd_link_hash_indirect
961 || h->root.type == bfd_link_hash_warning)
962 h = (struct elf_link_hash_entry *) h->root.u.i.link;
964 /* We have to check it for every instance since the first few may be
965 references and not all compilers emit symbol type for undefined
967 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
969 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
970 respectively, is from a dynamic object. */
972 newdyn = (abfd->flags & DYNAMIC) != 0;
974 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
975 syms and defined syms in dynamic libraries respectively.
976 ref_dynamic on the other hand can be set for a symbol defined in
977 a dynamic library, and def_dynamic may not be set; When the
978 definition in a dynamic lib is overridden by a definition in the
979 executable use of the symbol in the dynamic lib becomes a
980 reference to the executable symbol. */
983 if (bfd_is_und_section (sec))
985 if (bind != STB_WEAK)
987 h->ref_dynamic_nonweak = 1;
988 hi->ref_dynamic_nonweak = 1;
998 /* If we just created the symbol, mark it as being an ELF symbol.
999 Other than that, there is nothing to do--there is no merge issue
1000 with a newly defined symbol--so we just return. */
1002 if (h->root.type == bfd_link_hash_new)
1008 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
1011 switch (h->root.type)
1018 case bfd_link_hash_undefined:
1019 case bfd_link_hash_undefweak:
1020 oldbfd = h->root.u.undef.abfd;
1024 case bfd_link_hash_defined:
1025 case bfd_link_hash_defweak:
1026 oldbfd = h->root.u.def.section->owner;
1027 oldsec = h->root.u.def.section;
1030 case bfd_link_hash_common:
1031 oldbfd = h->root.u.c.p->section->owner;
1032 oldsec = h->root.u.c.p->section;
1034 *pold_alignment = h->root.u.c.p->alignment_power;
1037 if (poldbfd && *poldbfd == NULL)
1040 /* Differentiate strong and weak symbols. */
1041 newweak = bind == STB_WEAK;
1042 oldweak = (h->root.type == bfd_link_hash_defweak
1043 || h->root.type == bfd_link_hash_undefweak);
1045 *pold_weak = oldweak;
1047 /* In cases involving weak versioned symbols, we may wind up trying
1048 to merge a symbol with itself. Catch that here, to avoid the
1049 confusion that results if we try to override a symbol with
1050 itself. The additional tests catch cases like
1051 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1052 dynamic object, which we do want to handle here. */
1054 && (newweak || oldweak)
1055 && ((abfd->flags & DYNAMIC) == 0
1056 || !h->def_regular))
1061 olddyn = (oldbfd->flags & DYNAMIC) != 0;
1062 else if (oldsec != NULL)
1064 /* This handles the special SHN_MIPS_{TEXT,DATA} section
1065 indices used by MIPS ELF. */
1066 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
1069 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1070 respectively, appear to be a definition rather than reference. */
1072 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
1074 olddef = (h->root.type != bfd_link_hash_undefined
1075 && h->root.type != bfd_link_hash_undefweak
1076 && h->root.type != bfd_link_hash_common);
1078 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1079 respectively, appear to be a function. */
1081 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1082 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1084 oldfunc = (h->type != STT_NOTYPE
1085 && bed->is_function_type (h->type));
1087 /* When we try to create a default indirect symbol from the dynamic
1088 definition with the default version, we skip it if its type and
1089 the type of existing regular definition mismatch. We only do it
1090 if the existing regular definition won't be dynamic. */
1091 if (pold_alignment == NULL
1093 && !info->export_dynamic
1098 && (olddef || h->root.type == bfd_link_hash_common)
1099 && ELF_ST_TYPE (sym->st_info) != h->type
1100 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1101 && h->type != STT_NOTYPE
1102 && !(newfunc && oldfunc))
1108 /* Plugin symbol type isn't currently set. Stop bogus errors. */
1109 if (oldbfd != NULL && (oldbfd->flags & BFD_PLUGIN) != 0)
1110 *type_change_ok = TRUE;
1112 /* Check TLS symbol. We don't check undefined symbol introduced by
1114 else if (oldbfd != NULL
1115 && ELF_ST_TYPE (sym->st_info) != h->type
1116 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
1119 bfd_boolean ntdef, tdef;
1120 asection *ntsec, *tsec;
1122 if (h->type == STT_TLS)
1142 (*_bfd_error_handler)
1143 (_("%s: TLS definition in %B section %A "
1144 "mismatches non-TLS definition in %B section %A"),
1145 tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1146 else if (!tdef && !ntdef)
1147 (*_bfd_error_handler)
1148 (_("%s: TLS reference in %B "
1149 "mismatches non-TLS reference in %B"),
1150 tbfd, ntbfd, h->root.root.string);
1152 (*_bfd_error_handler)
1153 (_("%s: TLS definition in %B section %A "
1154 "mismatches non-TLS reference in %B"),
1155 tbfd, tsec, ntbfd, h->root.root.string);
1157 (*_bfd_error_handler)
1158 (_("%s: TLS reference in %B "
1159 "mismatches non-TLS definition in %B section %A"),
1160 tbfd, ntbfd, ntsec, h->root.root.string);
1162 bfd_set_error (bfd_error_bad_value);
1166 /* If the old symbol has non-default visibility, we ignore the new
1167 definition from a dynamic object. */
1169 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1170 && !bfd_is_und_section (sec))
1173 /* Make sure this symbol is dynamic. */
1175 hi->ref_dynamic = 1;
1176 /* A protected symbol has external availability. Make sure it is
1177 recorded as dynamic.
1179 FIXME: Should we check type and size for protected symbol? */
1180 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
1181 return bfd_elf_link_record_dynamic_symbol (info, h);
1186 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
1189 /* If the new symbol with non-default visibility comes from a
1190 relocatable file and the old definition comes from a dynamic
1191 object, we remove the old definition. */
1192 if (hi->root.type == bfd_link_hash_indirect)
1194 /* Handle the case where the old dynamic definition is
1195 default versioned. We need to copy the symbol info from
1196 the symbol with default version to the normal one if it
1197 was referenced before. */
1200 hi->root.type = h->root.type;
1201 h->root.type = bfd_link_hash_indirect;
1202 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
1204 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1205 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1207 /* If the new symbol is hidden or internal, completely undo
1208 any dynamic link state. */
1209 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1210 h->forced_local = 0;
1217 /* FIXME: Should we check type and size for protected symbol? */
1227 /* If the old symbol was undefined before, then it will still be
1228 on the undefs list. If the new symbol is undefined or
1229 common, we can't make it bfd_link_hash_new here, because new
1230 undefined or common symbols will be added to the undefs list
1231 by _bfd_generic_link_add_one_symbol. Symbols may not be
1232 added twice to the undefs list. Also, if the new symbol is
1233 undefweak then we don't want to lose the strong undef. */
1234 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1236 h->root.type = bfd_link_hash_undefined;
1237 h->root.u.undef.abfd = abfd;
1241 h->root.type = bfd_link_hash_new;
1242 h->root.u.undef.abfd = NULL;
1245 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1247 /* If the new symbol is hidden or internal, completely undo
1248 any dynamic link state. */
1249 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1250 h->forced_local = 0;
1256 /* FIXME: Should we check type and size for protected symbol? */
1262 /* If a new weak symbol definition comes from a regular file and the
1263 old symbol comes from a dynamic library, we treat the new one as
1264 strong. Similarly, an old weak symbol definition from a regular
1265 file is treated as strong when the new symbol comes from a dynamic
1266 library. Further, an old weak symbol from a dynamic library is
1267 treated as strong if the new symbol is from a dynamic library.
1268 This reflects the way glibc's ld.so works.
1270 Do this before setting *type_change_ok or *size_change_ok so that
1271 we warn properly when dynamic library symbols are overridden. */
1273 if (newdef && !newdyn && olddyn)
1275 if (olddef && newdyn)
1278 /* Allow changes between different types of function symbol. */
1279 if (newfunc && oldfunc)
1280 *type_change_ok = TRUE;
1282 /* It's OK to change the type if either the existing symbol or the
1283 new symbol is weak. A type change is also OK if the old symbol
1284 is undefined and the new symbol is defined. */
1289 && h->root.type == bfd_link_hash_undefined))
1290 *type_change_ok = TRUE;
1292 /* It's OK to change the size if either the existing symbol or the
1293 new symbol is weak, or if the old symbol is undefined. */
1296 || h->root.type == bfd_link_hash_undefined)
1297 *size_change_ok = TRUE;
1299 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1300 symbol, respectively, appears to be a common symbol in a dynamic
1301 object. If a symbol appears in an uninitialized section, and is
1302 not weak, and is not a function, then it may be a common symbol
1303 which was resolved when the dynamic object was created. We want
1304 to treat such symbols specially, because they raise special
1305 considerations when setting the symbol size: if the symbol
1306 appears as a common symbol in a regular object, and the size in
1307 the regular object is larger, we must make sure that we use the
1308 larger size. This problematic case can always be avoided in C,
1309 but it must be handled correctly when using Fortran shared
1312 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1313 likewise for OLDDYNCOMMON and OLDDEF.
1315 Note that this test is just a heuristic, and that it is quite
1316 possible to have an uninitialized symbol in a shared object which
1317 is really a definition, rather than a common symbol. This could
1318 lead to some minor confusion when the symbol really is a common
1319 symbol in some regular object. However, I think it will be
1325 && (sec->flags & SEC_ALLOC) != 0
1326 && (sec->flags & SEC_LOAD) == 0
1329 newdyncommon = TRUE;
1331 newdyncommon = FALSE;
1335 && h->root.type == bfd_link_hash_defined
1337 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1338 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1341 olddyncommon = TRUE;
1343 olddyncommon = FALSE;
1345 /* We now know everything about the old and new symbols. We ask the
1346 backend to check if we can merge them. */
1347 if (bed->merge_symbol != NULL)
1349 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1354 /* If both the old and the new symbols look like common symbols in a
1355 dynamic object, set the size of the symbol to the larger of the
1360 && sym->st_size != h->size)
1362 /* Since we think we have two common symbols, issue a multiple
1363 common warning if desired. Note that we only warn if the
1364 size is different. If the size is the same, we simply let
1365 the old symbol override the new one as normally happens with
1366 symbols defined in dynamic objects. */
1368 if (! ((*info->callbacks->multiple_common)
1369 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
1372 if (sym->st_size > h->size)
1373 h->size = sym->st_size;
1375 *size_change_ok = TRUE;
1378 /* If we are looking at a dynamic object, and we have found a
1379 definition, we need to see if the symbol was already defined by
1380 some other object. If so, we want to use the existing
1381 definition, and we do not want to report a multiple symbol
1382 definition error; we do this by clobbering *PSEC to be
1383 bfd_und_section_ptr.
1385 We treat a common symbol as a definition if the symbol in the
1386 shared library is a function, since common symbols always
1387 represent variables; this can cause confusion in principle, but
1388 any such confusion would seem to indicate an erroneous program or
1389 shared library. We also permit a common symbol in a regular
1390 object to override a weak symbol in a shared object. */
1395 || (h->root.type == bfd_link_hash_common
1396 && (newweak || newfunc))))
1400 newdyncommon = FALSE;
1402 *psec = sec = bfd_und_section_ptr;
1403 *size_change_ok = TRUE;
1405 /* If we get here when the old symbol is a common symbol, then
1406 we are explicitly letting it override a weak symbol or
1407 function in a dynamic object, and we don't want to warn about
1408 a type change. If the old symbol is a defined symbol, a type
1409 change warning may still be appropriate. */
1411 if (h->root.type == bfd_link_hash_common)
1412 *type_change_ok = TRUE;
1415 /* Handle the special case of an old common symbol merging with a
1416 new symbol which looks like a common symbol in a shared object.
1417 We change *PSEC and *PVALUE to make the new symbol look like a
1418 common symbol, and let _bfd_generic_link_add_one_symbol do the
1422 && h->root.type == bfd_link_hash_common)
1426 newdyncommon = FALSE;
1427 *pvalue = sym->st_size;
1428 *psec = sec = bed->common_section (oldsec);
1429 *size_change_ok = TRUE;
1432 /* Skip weak definitions of symbols that are already defined. */
1433 if (newdef && olddef && newweak)
1435 /* Don't skip new non-IR weak syms. */
1436 if (!(oldbfd != NULL
1437 && (oldbfd->flags & BFD_PLUGIN) != 0
1438 && (abfd->flags & BFD_PLUGIN) == 0))
1441 /* Merge st_other. If the symbol already has a dynamic index,
1442 but visibility says it should not be visible, turn it into a
1444 elf_merge_st_other (abfd, h, sym, newdef, newdyn);
1445 if (h->dynindx != -1)
1446 switch (ELF_ST_VISIBILITY (h->other))
1450 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1455 /* If the old symbol is from a dynamic object, and the new symbol is
1456 a definition which is not from a dynamic object, then the new
1457 symbol overrides the old symbol. Symbols from regular files
1458 always take precedence over symbols from dynamic objects, even if
1459 they are defined after the dynamic object in the link.
1461 As above, we again permit a common symbol in a regular object to
1462 override a definition in a shared object if the shared object
1463 symbol is a function or is weak. */
1468 || (bfd_is_com_section (sec)
1469 && (oldweak || oldfunc)))
1474 /* Change the hash table entry to undefined, and let
1475 _bfd_generic_link_add_one_symbol do the right thing with the
1478 h->root.type = bfd_link_hash_undefined;
1479 h->root.u.undef.abfd = h->root.u.def.section->owner;
1480 *size_change_ok = TRUE;
1483 olddyncommon = FALSE;
1485 /* We again permit a type change when a common symbol may be
1486 overriding a function. */
1488 if (bfd_is_com_section (sec))
1492 /* If a common symbol overrides a function, make sure
1493 that it isn't defined dynamically nor has type
1496 h->type = STT_NOTYPE;
1498 *type_change_ok = TRUE;
1501 if (hi->root.type == bfd_link_hash_indirect)
1504 /* This union may have been set to be non-NULL when this symbol
1505 was seen in a dynamic object. We must force the union to be
1506 NULL, so that it is correct for a regular symbol. */
1507 h->verinfo.vertree = NULL;
1510 /* Handle the special case of a new common symbol merging with an
1511 old symbol that looks like it might be a common symbol defined in
1512 a shared object. Note that we have already handled the case in
1513 which a new common symbol should simply override the definition
1514 in the shared library. */
1517 && bfd_is_com_section (sec)
1520 /* It would be best if we could set the hash table entry to a
1521 common symbol, but we don't know what to use for the section
1522 or the alignment. */
1523 if (! ((*info->callbacks->multiple_common)
1524 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
1527 /* If the presumed common symbol in the dynamic object is
1528 larger, pretend that the new symbol has its size. */
1530 if (h->size > *pvalue)
1533 /* We need to remember the alignment required by the symbol
1534 in the dynamic object. */
1535 BFD_ASSERT (pold_alignment);
1536 *pold_alignment = h->root.u.def.section->alignment_power;
1539 olddyncommon = FALSE;
1541 h->root.type = bfd_link_hash_undefined;
1542 h->root.u.undef.abfd = h->root.u.def.section->owner;
1544 *size_change_ok = TRUE;
1545 *type_change_ok = TRUE;
1547 if (hi->root.type == bfd_link_hash_indirect)
1550 h->verinfo.vertree = NULL;
1555 /* Handle the case where we had a versioned symbol in a dynamic
1556 library and now find a definition in a normal object. In this
1557 case, we make the versioned symbol point to the normal one. */
1558 flip->root.type = h->root.type;
1559 flip->root.u.undef.abfd = h->root.u.undef.abfd;
1560 h->root.type = bfd_link_hash_indirect;
1561 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
1562 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
1566 flip->ref_dynamic = 1;
1573 /* This function is called to create an indirect symbol from the
1574 default for the symbol with the default version if needed. The
1575 symbol is described by H, NAME, SYM, SEC, and VALUE. We
1576 set DYNSYM if the new indirect symbol is dynamic. */
1579 _bfd_elf_add_default_symbol (bfd *abfd,
1580 struct bfd_link_info *info,
1581 struct elf_link_hash_entry *h,
1583 Elf_Internal_Sym *sym,
1587 bfd_boolean *dynsym)
1589 bfd_boolean type_change_ok;
1590 bfd_boolean size_change_ok;
1593 struct elf_link_hash_entry *hi;
1594 struct bfd_link_hash_entry *bh;
1595 const struct elf_backend_data *bed;
1596 bfd_boolean collect;
1597 bfd_boolean dynamic;
1598 bfd_boolean override;
1600 size_t len, shortlen;
1603 /* If this symbol has a version, and it is the default version, we
1604 create an indirect symbol from the default name to the fully
1605 decorated name. This will cause external references which do not
1606 specify a version to be bound to this version of the symbol. */
1607 p = strchr (name, ELF_VER_CHR);
1608 if (p == NULL || p[1] != ELF_VER_CHR)
1611 bed = get_elf_backend_data (abfd);
1612 collect = bed->collect;
1613 dynamic = (abfd->flags & DYNAMIC) != 0;
1615 shortlen = p - name;
1616 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
1617 if (shortname == NULL)
1619 memcpy (shortname, name, shortlen);
1620 shortname[shortlen] = '\0';
1622 /* We are going to create a new symbol. Merge it with any existing
1623 symbol with this name. For the purposes of the merge, act as
1624 though we were defining the symbol we just defined, although we
1625 actually going to define an indirect symbol. */
1626 type_change_ok = FALSE;
1627 size_change_ok = FALSE;
1629 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1630 &hi, poldbfd, NULL, NULL, &skip, &override,
1631 &type_change_ok, &size_change_ok))
1640 if (! (_bfd_generic_link_add_one_symbol
1641 (info, abfd, shortname, BSF_INDIRECT, bfd_ind_section_ptr,
1642 0, name, FALSE, collect, &bh)))
1644 hi = (struct elf_link_hash_entry *) bh;
1648 /* In this case the symbol named SHORTNAME is overriding the
1649 indirect symbol we want to add. We were planning on making
1650 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1651 is the name without a version. NAME is the fully versioned
1652 name, and it is the default version.
1654 Overriding means that we already saw a definition for the
1655 symbol SHORTNAME in a regular object, and it is overriding
1656 the symbol defined in the dynamic object.
1658 When this happens, we actually want to change NAME, the
1659 symbol we just added, to refer to SHORTNAME. This will cause
1660 references to NAME in the shared object to become references
1661 to SHORTNAME in the regular object. This is what we expect
1662 when we override a function in a shared object: that the
1663 references in the shared object will be mapped to the
1664 definition in the regular object. */
1666 while (hi->root.type == bfd_link_hash_indirect
1667 || hi->root.type == bfd_link_hash_warning)
1668 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1670 h->root.type = bfd_link_hash_indirect;
1671 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1675 hi->ref_dynamic = 1;
1679 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
1684 /* Now set HI to H, so that the following code will set the
1685 other fields correctly. */
1689 /* Check if HI is a warning symbol. */
1690 if (hi->root.type == bfd_link_hash_warning)
1691 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1693 /* If there is a duplicate definition somewhere, then HI may not
1694 point to an indirect symbol. We will have reported an error to
1695 the user in that case. */
1697 if (hi->root.type == bfd_link_hash_indirect)
1699 struct elf_link_hash_entry *ht;
1701 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
1702 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
1704 /* See if the new flags lead us to realize that the symbol must
1710 if (! info->executable
1717 if (hi->ref_regular)
1723 /* We also need to define an indirection from the nondefault version
1727 len = strlen (name);
1728 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
1729 if (shortname == NULL)
1731 memcpy (shortname, name, shortlen);
1732 memcpy (shortname + shortlen, p + 1, len - shortlen);
1734 /* Once again, merge with any existing symbol. */
1735 type_change_ok = FALSE;
1736 size_change_ok = FALSE;
1738 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1739 &hi, NULL, NULL, NULL, &skip, &override,
1740 &type_change_ok, &size_change_ok))
1748 /* Here SHORTNAME is a versioned name, so we don't expect to see
1749 the type of override we do in the case above unless it is
1750 overridden by a versioned definition. */
1751 if (hi->root.type != bfd_link_hash_defined
1752 && hi->root.type != bfd_link_hash_defweak)
1753 (*_bfd_error_handler)
1754 (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
1760 if (! (_bfd_generic_link_add_one_symbol
1761 (info, abfd, shortname, BSF_INDIRECT,
1762 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
1764 hi = (struct elf_link_hash_entry *) bh;
1766 /* If there is a duplicate definition somewhere, then HI may not
1767 point to an indirect symbol. We will have reported an error
1768 to the user in that case. */
1770 if (hi->root.type == bfd_link_hash_indirect)
1772 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
1774 /* See if the new flags lead us to realize that the symbol
1780 if (! info->executable
1786 if (hi->ref_regular)
1796 /* This routine is used to export all defined symbols into the dynamic
1797 symbol table. It is called via elf_link_hash_traverse. */
1800 _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
1802 struct elf_info_failed *eif = (struct elf_info_failed *) data;
1804 /* Ignore indirect symbols. These are added by the versioning code. */
1805 if (h->root.type == bfd_link_hash_indirect)
1808 /* Ignore this if we won't export it. */
1809 if (!eif->info->export_dynamic && !h->dynamic)
1812 if (h->dynindx == -1
1813 && (h->def_regular || h->ref_regular)
1814 && ! bfd_hide_sym_by_version (eif->info->version_info,
1815 h->root.root.string))
1817 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
1827 /* Look through the symbols which are defined in other shared
1828 libraries and referenced here. Update the list of version
1829 dependencies. This will be put into the .gnu.version_r section.
1830 This function is called via elf_link_hash_traverse. */
1833 _bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
1836 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
1837 Elf_Internal_Verneed *t;
1838 Elf_Internal_Vernaux *a;
1841 /* We only care about symbols defined in shared objects with version
1846 || h->verinfo.verdef == NULL)
1849 /* See if we already know about this version. */
1850 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
1854 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
1857 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1858 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
1864 /* This is a new version. Add it to tree we are building. */
1869 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
1872 rinfo->failed = TRUE;
1876 t->vn_bfd = h->verinfo.verdef->vd_bfd;
1877 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
1878 elf_tdata (rinfo->info->output_bfd)->verref = t;
1882 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
1885 rinfo->failed = TRUE;
1889 /* Note that we are copying a string pointer here, and testing it
1890 above. If bfd_elf_string_from_elf_section is ever changed to
1891 discard the string data when low in memory, this will have to be
1893 a->vna_nodename = h->verinfo.verdef->vd_nodename;
1895 a->vna_flags = h->verinfo.verdef->vd_flags;
1896 a->vna_nextptr = t->vn_auxptr;
1898 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
1901 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
1908 /* Figure out appropriate versions for all the symbols. We may not
1909 have the version number script until we have read all of the input
1910 files, so until that point we don't know which symbols should be
1911 local. This function is called via elf_link_hash_traverse. */
1914 _bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
1916 struct elf_info_failed *sinfo;
1917 struct bfd_link_info *info;
1918 const struct elf_backend_data *bed;
1919 struct elf_info_failed eif;
1923 sinfo = (struct elf_info_failed *) data;
1926 /* Fix the symbol flags. */
1929 if (! _bfd_elf_fix_symbol_flags (h, &eif))
1932 sinfo->failed = TRUE;
1936 /* We only need version numbers for symbols defined in regular
1938 if (!h->def_regular)
1941 bed = get_elf_backend_data (info->output_bfd);
1942 p = strchr (h->root.root.string, ELF_VER_CHR);
1943 if (p != NULL && h->verinfo.vertree == NULL)
1945 struct bfd_elf_version_tree *t;
1950 /* There are two consecutive ELF_VER_CHR characters if this is
1951 not a hidden symbol. */
1953 if (*p == ELF_VER_CHR)
1959 /* If there is no version string, we can just return out. */
1967 /* Look for the version. If we find it, it is no longer weak. */
1968 for (t = sinfo->info->version_info; t != NULL; t = t->next)
1970 if (strcmp (t->name, p) == 0)
1974 struct bfd_elf_version_expr *d;
1976 len = p - h->root.root.string;
1977 alc = (char *) bfd_malloc (len);
1980 sinfo->failed = TRUE;
1983 memcpy (alc, h->root.root.string, len - 1);
1984 alc[len - 1] = '\0';
1985 if (alc[len - 2] == ELF_VER_CHR)
1986 alc[len - 2] = '\0';
1988 h->verinfo.vertree = t;
1992 if (t->globals.list != NULL)
1993 d = (*t->match) (&t->globals, NULL, alc);
1995 /* See if there is anything to force this symbol to
1997 if (d == NULL && t->locals.list != NULL)
1999 d = (*t->match) (&t->locals, NULL, alc);
2002 && ! info->export_dynamic)
2003 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2011 /* If we are building an application, we need to create a
2012 version node for this version. */
2013 if (t == NULL && info->executable)
2015 struct bfd_elf_version_tree **pp;
2018 /* If we aren't going to export this symbol, we don't need
2019 to worry about it. */
2020 if (h->dynindx == -1)
2024 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd, amt);
2027 sinfo->failed = TRUE;
2032 t->name_indx = (unsigned int) -1;
2036 /* Don't count anonymous version tag. */
2037 if (sinfo->info->version_info != NULL
2038 && sinfo->info->version_info->vernum == 0)
2040 for (pp = &sinfo->info->version_info;
2044 t->vernum = version_index;
2048 h->verinfo.vertree = t;
2052 /* We could not find the version for a symbol when
2053 generating a shared archive. Return an error. */
2054 (*_bfd_error_handler)
2055 (_("%B: version node not found for symbol %s"),
2056 info->output_bfd, h->root.root.string);
2057 bfd_set_error (bfd_error_bad_value);
2058 sinfo->failed = TRUE;
2066 /* If we don't have a version for this symbol, see if we can find
2068 if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL)
2073 = bfd_find_version_for_sym (sinfo->info->version_info,
2074 h->root.root.string, &hide);
2075 if (h->verinfo.vertree != NULL && hide)
2076 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2082 /* Read and swap the relocs from the section indicated by SHDR. This
2083 may be either a REL or a RELA section. The relocations are
2084 translated into RELA relocations and stored in INTERNAL_RELOCS,
2085 which should have already been allocated to contain enough space.
2086 The EXTERNAL_RELOCS are a buffer where the external form of the
2087 relocations should be stored.
2089 Returns FALSE if something goes wrong. */
2092 elf_link_read_relocs_from_section (bfd *abfd,
2094 Elf_Internal_Shdr *shdr,
2095 void *external_relocs,
2096 Elf_Internal_Rela *internal_relocs)
2098 const struct elf_backend_data *bed;
2099 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
2100 const bfd_byte *erela;
2101 const bfd_byte *erelaend;
2102 Elf_Internal_Rela *irela;
2103 Elf_Internal_Shdr *symtab_hdr;
2106 /* Position ourselves at the start of the section. */
2107 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2110 /* Read the relocations. */
2111 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2114 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2115 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
2117 bed = get_elf_backend_data (abfd);
2119 /* Convert the external relocations to the internal format. */
2120 if (shdr->sh_entsize == bed->s->sizeof_rel)
2121 swap_in = bed->s->swap_reloc_in;
2122 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2123 swap_in = bed->s->swap_reloca_in;
2126 bfd_set_error (bfd_error_wrong_format);
2130 erela = (const bfd_byte *) external_relocs;
2131 erelaend = erela + shdr->sh_size;
2132 irela = internal_relocs;
2133 while (erela < erelaend)
2137 (*swap_in) (abfd, erela, irela);
2138 r_symndx = ELF32_R_SYM (irela->r_info);
2139 if (bed->s->arch_size == 64)
2143 if ((size_t) r_symndx >= nsyms)
2145 (*_bfd_error_handler)
2146 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2147 " for offset 0x%lx in section `%A'"),
2149 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2150 bfd_set_error (bfd_error_bad_value);
2154 else if (r_symndx != STN_UNDEF)
2156 (*_bfd_error_handler)
2157 (_("%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A'"
2158 " when the object file has no symbol table"),
2160 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2161 bfd_set_error (bfd_error_bad_value);
2164 irela += bed->s->int_rels_per_ext_rel;
2165 erela += shdr->sh_entsize;
2171 /* Read and swap the relocs for a section O. They may have been
2172 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2173 not NULL, they are used as buffers to read into. They are known to
2174 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2175 the return value is allocated using either malloc or bfd_alloc,
2176 according to the KEEP_MEMORY argument. If O has two relocation
2177 sections (both REL and RELA relocations), then the REL_HDR
2178 relocations will appear first in INTERNAL_RELOCS, followed by the
2179 RELA_HDR relocations. */
2182 _bfd_elf_link_read_relocs (bfd *abfd,
2184 void *external_relocs,
2185 Elf_Internal_Rela *internal_relocs,
2186 bfd_boolean keep_memory)
2188 void *alloc1 = NULL;
2189 Elf_Internal_Rela *alloc2 = NULL;
2190 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2191 struct bfd_elf_section_data *esdo = elf_section_data (o);
2192 Elf_Internal_Rela *internal_rela_relocs;
2194 if (esdo->relocs != NULL)
2195 return esdo->relocs;
2197 if (o->reloc_count == 0)
2200 if (internal_relocs == NULL)
2204 size = o->reloc_count;
2205 size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2207 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
2209 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
2210 if (internal_relocs == NULL)
2214 if (external_relocs == NULL)
2216 bfd_size_type size = 0;
2219 size += esdo->rel.hdr->sh_size;
2221 size += esdo->rela.hdr->sh_size;
2223 alloc1 = bfd_malloc (size);
2226 external_relocs = alloc1;
2229 internal_rela_relocs = internal_relocs;
2232 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2236 external_relocs = (((bfd_byte *) external_relocs)
2237 + esdo->rel.hdr->sh_size);
2238 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2239 * bed->s->int_rels_per_ext_rel);
2243 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2245 internal_rela_relocs)))
2248 /* Cache the results for next time, if we can. */
2250 esdo->relocs = internal_relocs;
2255 /* Don't free alloc2, since if it was allocated we are passing it
2256 back (under the name of internal_relocs). */
2258 return internal_relocs;
2266 bfd_release (abfd, alloc2);
2273 /* Compute the size of, and allocate space for, REL_HDR which is the
2274 section header for a section containing relocations for O. */
2277 _bfd_elf_link_size_reloc_section (bfd *abfd,
2278 struct bfd_elf_section_reloc_data *reldata)
2280 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
2282 /* That allows us to calculate the size of the section. */
2283 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
2285 /* The contents field must last into write_object_contents, so we
2286 allocate it with bfd_alloc rather than malloc. Also since we
2287 cannot be sure that the contents will actually be filled in,
2288 we zero the allocated space. */
2289 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
2290 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2293 if (reldata->hashes == NULL && reldata->count)
2295 struct elf_link_hash_entry **p;
2297 p = (struct elf_link_hash_entry **)
2298 bfd_zmalloc (reldata->count * sizeof (struct elf_link_hash_entry *));
2302 reldata->hashes = p;
2308 /* Copy the relocations indicated by the INTERNAL_RELOCS (which
2309 originated from the section given by INPUT_REL_HDR) to the
2313 _bfd_elf_link_output_relocs (bfd *output_bfd,
2314 asection *input_section,
2315 Elf_Internal_Shdr *input_rel_hdr,
2316 Elf_Internal_Rela *internal_relocs,
2317 struct elf_link_hash_entry **rel_hash
2320 Elf_Internal_Rela *irela;
2321 Elf_Internal_Rela *irelaend;
2323 struct bfd_elf_section_reloc_data *output_reldata;
2324 asection *output_section;
2325 const struct elf_backend_data *bed;
2326 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
2327 struct bfd_elf_section_data *esdo;
2329 output_section = input_section->output_section;
2331 bed = get_elf_backend_data (output_bfd);
2332 esdo = elf_section_data (output_section);
2333 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2335 output_reldata = &esdo->rel;
2336 swap_out = bed->s->swap_reloc_out;
2338 else if (esdo->rela.hdr
2339 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2341 output_reldata = &esdo->rela;
2342 swap_out = bed->s->swap_reloca_out;
2346 (*_bfd_error_handler)
2347 (_("%B: relocation size mismatch in %B section %A"),
2348 output_bfd, input_section->owner, input_section);
2349 bfd_set_error (bfd_error_wrong_format);
2353 erel = output_reldata->hdr->contents;
2354 erel += output_reldata->count * input_rel_hdr->sh_entsize;
2355 irela = internal_relocs;
2356 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2357 * bed->s->int_rels_per_ext_rel);
2358 while (irela < irelaend)
2360 (*swap_out) (output_bfd, irela, erel);
2361 irela += bed->s->int_rels_per_ext_rel;
2362 erel += input_rel_hdr->sh_entsize;
2365 /* Bump the counter, so that we know where to add the next set of
2367 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
2372 /* Make weak undefined symbols in PIE dynamic. */
2375 _bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2376 struct elf_link_hash_entry *h)
2380 && h->root.type == bfd_link_hash_undefweak)
2381 return bfd_elf_link_record_dynamic_symbol (info, h);
2386 /* Fix up the flags for a symbol. This handles various cases which
2387 can only be fixed after all the input files are seen. This is
2388 currently called by both adjust_dynamic_symbol and
2389 assign_sym_version, which is unnecessary but perhaps more robust in
2390 the face of future changes. */
2393 _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2394 struct elf_info_failed *eif)
2396 const struct elf_backend_data *bed;
2398 /* If this symbol was mentioned in a non-ELF file, try to set
2399 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2400 permit a non-ELF file to correctly refer to a symbol defined in
2401 an ELF dynamic object. */
2404 while (h->root.type == bfd_link_hash_indirect)
2405 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2407 if (h->root.type != bfd_link_hash_defined
2408 && h->root.type != bfd_link_hash_defweak)
2411 h->ref_regular_nonweak = 1;
2415 if (h->root.u.def.section->owner != NULL
2416 && (bfd_get_flavour (h->root.u.def.section->owner)
2417 == bfd_target_elf_flavour))
2420 h->ref_regular_nonweak = 1;
2426 if (h->dynindx == -1
2430 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2439 /* Unfortunately, NON_ELF is only correct if the symbol
2440 was first seen in a non-ELF file. Fortunately, if the symbol
2441 was first seen in an ELF file, we're probably OK unless the
2442 symbol was defined in a non-ELF file. Catch that case here.
2443 FIXME: We're still in trouble if the symbol was first seen in
2444 a dynamic object, and then later in a non-ELF regular object. */
2445 if ((h->root.type == bfd_link_hash_defined
2446 || h->root.type == bfd_link_hash_defweak)
2448 && (h->root.u.def.section->owner != NULL
2449 ? (bfd_get_flavour (h->root.u.def.section->owner)
2450 != bfd_target_elf_flavour)
2451 : (bfd_is_abs_section (h->root.u.def.section)
2452 && !h->def_dynamic)))
2456 /* Backend specific symbol fixup. */
2457 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2458 if (bed->elf_backend_fixup_symbol
2459 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2462 /* If this is a final link, and the symbol was defined as a common
2463 symbol in a regular object file, and there was no definition in
2464 any dynamic object, then the linker will have allocated space for
2465 the symbol in a common section but the DEF_REGULAR
2466 flag will not have been set. */
2467 if (h->root.type == bfd_link_hash_defined
2471 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
2474 /* If -Bsymbolic was used (which means to bind references to global
2475 symbols to the definition within the shared object), and this
2476 symbol was defined in a regular object, then it actually doesn't
2477 need a PLT entry. Likewise, if the symbol has non-default
2478 visibility. If the symbol has hidden or internal visibility, we
2479 will force it local. */
2481 && eif->info->shared
2482 && is_elf_hash_table (eif->info->hash)
2483 && (SYMBOLIC_BIND (eif->info, h)
2484 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2487 bfd_boolean force_local;
2489 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2490 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2491 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2494 /* If a weak undefined symbol has non-default visibility, we also
2495 hide it from the dynamic linker. */
2496 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2497 && h->root.type == bfd_link_hash_undefweak)
2498 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2500 /* If this is a weak defined symbol in a dynamic object, and we know
2501 the real definition in the dynamic object, copy interesting flags
2502 over to the real definition. */
2503 if (h->u.weakdef != NULL)
2505 /* If the real definition is defined by a regular object file,
2506 don't do anything special. See the longer description in
2507 _bfd_elf_adjust_dynamic_symbol, below. */
2508 if (h->u.weakdef->def_regular)
2509 h->u.weakdef = NULL;
2512 struct elf_link_hash_entry *weakdef = h->u.weakdef;
2514 while (h->root.type == bfd_link_hash_indirect)
2515 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2517 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2518 || h->root.type == bfd_link_hash_defweak);
2519 BFD_ASSERT (weakdef->def_dynamic);
2520 BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2521 || weakdef->root.type == bfd_link_hash_defweak);
2522 (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h);
2529 /* Make the backend pick a good value for a dynamic symbol. This is
2530 called via elf_link_hash_traverse, and also calls itself
2534 _bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
2536 struct elf_info_failed *eif = (struct elf_info_failed *) data;
2538 const struct elf_backend_data *bed;
2540 if (! is_elf_hash_table (eif->info->hash))
2543 /* Ignore indirect symbols. These are added by the versioning code. */
2544 if (h->root.type == bfd_link_hash_indirect)
2547 /* Fix the symbol flags. */
2548 if (! _bfd_elf_fix_symbol_flags (h, eif))
2551 /* If this symbol does not require a PLT entry, and it is not
2552 defined by a dynamic object, or is not referenced by a regular
2553 object, ignore it. We do have to handle a weak defined symbol,
2554 even if no regular object refers to it, if we decided to add it
2555 to the dynamic symbol table. FIXME: Do we normally need to worry
2556 about symbols which are defined by one dynamic object and
2557 referenced by another one? */
2559 && h->type != STT_GNU_IFUNC
2563 && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
2565 h->plt = elf_hash_table (eif->info)->init_plt_offset;
2569 /* If we've already adjusted this symbol, don't do it again. This
2570 can happen via a recursive call. */
2571 if (h->dynamic_adjusted)
2574 /* Don't look at this symbol again. Note that we must set this
2575 after checking the above conditions, because we may look at a
2576 symbol once, decide not to do anything, and then get called
2577 recursively later after REF_REGULAR is set below. */
2578 h->dynamic_adjusted = 1;
2580 /* If this is a weak definition, and we know a real definition, and
2581 the real symbol is not itself defined by a regular object file,
2582 then get a good value for the real definition. We handle the
2583 real symbol first, for the convenience of the backend routine.
2585 Note that there is a confusing case here. If the real definition
2586 is defined by a regular object file, we don't get the real symbol
2587 from the dynamic object, but we do get the weak symbol. If the
2588 processor backend uses a COPY reloc, then if some routine in the
2589 dynamic object changes the real symbol, we will not see that
2590 change in the corresponding weak symbol. This is the way other
2591 ELF linkers work as well, and seems to be a result of the shared
2594 I will clarify this issue. Most SVR4 shared libraries define the
2595 variable _timezone and define timezone as a weak synonym. The
2596 tzset call changes _timezone. If you write
2597 extern int timezone;
2599 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2600 you might expect that, since timezone is a synonym for _timezone,
2601 the same number will print both times. However, if the processor
2602 backend uses a COPY reloc, then actually timezone will be copied
2603 into your process image, and, since you define _timezone
2604 yourself, _timezone will not. Thus timezone and _timezone will
2605 wind up at different memory locations. The tzset call will set
2606 _timezone, leaving timezone unchanged. */
2608 if (h->u.weakdef != NULL)
2610 /* If we get to this point, there is an implicit reference to
2611 H->U.WEAKDEF by a regular object file via the weak symbol H. */
2612 h->u.weakdef->ref_regular = 1;
2614 /* Ensure that the backend adjust_dynamic_symbol function sees
2615 H->U.WEAKDEF before H by recursively calling ourselves. */
2616 if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
2620 /* If a symbol has no type and no size and does not require a PLT
2621 entry, then we are probably about to do the wrong thing here: we
2622 are probably going to create a COPY reloc for an empty object.
2623 This case can arise when a shared object is built with assembly
2624 code, and the assembly code fails to set the symbol type. */
2626 && h->type == STT_NOTYPE
2628 (*_bfd_error_handler)
2629 (_("warning: type and size of dynamic symbol `%s' are not defined"),
2630 h->root.root.string);
2632 dynobj = elf_hash_table (eif->info)->dynobj;
2633 bed = get_elf_backend_data (dynobj);
2635 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2644 /* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
2648 _bfd_elf_adjust_dynamic_copy (struct elf_link_hash_entry *h,
2651 unsigned int power_of_two;
2653 asection *sec = h->root.u.def.section;
2655 /* The section aligment of definition is the maximum alignment
2656 requirement of symbols defined in the section. Since we don't
2657 know the symbol alignment requirement, we start with the
2658 maximum alignment and check low bits of the symbol address
2659 for the minimum alignment. */
2660 power_of_two = bfd_get_section_alignment (sec->owner, sec);
2661 mask = ((bfd_vma) 1 << power_of_two) - 1;
2662 while ((h->root.u.def.value & mask) != 0)
2668 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
2671 /* Adjust the section alignment if needed. */
2672 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
2677 /* We make sure that the symbol will be aligned properly. */
2678 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
2680 /* Define the symbol as being at this point in DYNBSS. */
2681 h->root.u.def.section = dynbss;
2682 h->root.u.def.value = dynbss->size;
2684 /* Increment the size of DYNBSS to make room for the symbol. */
2685 dynbss->size += h->size;
2690 /* Adjust all external symbols pointing into SEC_MERGE sections
2691 to reflect the object merging within the sections. */
2694 _bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
2698 if ((h->root.type == bfd_link_hash_defined
2699 || h->root.type == bfd_link_hash_defweak)
2700 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
2701 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
2703 bfd *output_bfd = (bfd *) data;
2705 h->root.u.def.value =
2706 _bfd_merged_section_offset (output_bfd,
2707 &h->root.u.def.section,
2708 elf_section_data (sec)->sec_info,
2709 h->root.u.def.value);
2715 /* Returns false if the symbol referred to by H should be considered
2716 to resolve local to the current module, and true if it should be
2717 considered to bind dynamically. */
2720 _bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
2721 struct bfd_link_info *info,
2722 bfd_boolean not_local_protected)
2724 bfd_boolean binding_stays_local_p;
2725 const struct elf_backend_data *bed;
2726 struct elf_link_hash_table *hash_table;
2731 while (h->root.type == bfd_link_hash_indirect
2732 || h->root.type == bfd_link_hash_warning)
2733 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2735 /* If it was forced local, then clearly it's not dynamic. */
2736 if (h->dynindx == -1)
2738 if (h->forced_local)
2741 /* Identify the cases where name binding rules say that a
2742 visible symbol resolves locally. */
2743 binding_stays_local_p = info->executable || SYMBOLIC_BIND (info, h);
2745 switch (ELF_ST_VISIBILITY (h->other))
2752 hash_table = elf_hash_table (info);
2753 if (!is_elf_hash_table (hash_table))
2756 bed = get_elf_backend_data (hash_table->dynobj);
2758 /* Proper resolution for function pointer equality may require
2759 that these symbols perhaps be resolved dynamically, even though
2760 we should be resolving them to the current module. */
2761 if (!not_local_protected || !bed->is_function_type (h->type))
2762 binding_stays_local_p = TRUE;
2769 /* If it isn't defined locally, then clearly it's dynamic. */
2770 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
2773 /* Otherwise, the symbol is dynamic if binding rules don't tell
2774 us that it remains local. */
2775 return !binding_stays_local_p;
2778 /* Return true if the symbol referred to by H should be considered
2779 to resolve local to the current module, and false otherwise. Differs
2780 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2781 undefined symbols. The two functions are virtually identical except
2782 for the place where forced_local and dynindx == -1 are tested. If
2783 either of those tests are true, _bfd_elf_dynamic_symbol_p will say
2784 the symbol is local, while _bfd_elf_symbol_refs_local_p will say
2785 the symbol is local only for defined symbols.
2786 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
2787 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
2788 treatment of undefined weak symbols. For those that do not make
2789 undefined weak symbols dynamic, both functions may return false. */
2792 _bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
2793 struct bfd_link_info *info,
2794 bfd_boolean local_protected)
2796 const struct elf_backend_data *bed;
2797 struct elf_link_hash_table *hash_table;
2799 /* If it's a local sym, of course we resolve locally. */
2803 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
2804 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
2805 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
2808 /* Common symbols that become definitions don't get the DEF_REGULAR
2809 flag set, so test it first, and don't bail out. */
2810 if (ELF_COMMON_DEF_P (h))
2812 /* If we don't have a definition in a regular file, then we can't
2813 resolve locally. The sym is either undefined or dynamic. */
2814 else if (!h->def_regular)
2817 /* Forced local symbols resolve locally. */
2818 if (h->forced_local)
2821 /* As do non-dynamic symbols. */
2822 if (h->dynindx == -1)
2825 /* At this point, we know the symbol is defined and dynamic. In an
2826 executable it must resolve locally, likewise when building symbolic
2827 shared libraries. */
2828 if (info->executable || SYMBOLIC_BIND (info, h))
2831 /* Now deal with defined dynamic symbols in shared libraries. Ones
2832 with default visibility might not resolve locally. */
2833 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
2836 hash_table = elf_hash_table (info);
2837 if (!is_elf_hash_table (hash_table))
2840 bed = get_elf_backend_data (hash_table->dynobj);
2842 /* STV_PROTECTED non-function symbols are local. */
2843 if (!bed->is_function_type (h->type))
2846 /* Function pointer equality tests may require that STV_PROTECTED
2847 symbols be treated as dynamic symbols. If the address of a
2848 function not defined in an executable is set to that function's
2849 plt entry in the executable, then the address of the function in
2850 a shared library must also be the plt entry in the executable. */
2851 return local_protected;
2854 /* Caches some TLS segment info, and ensures that the TLS segment vma is
2855 aligned. Returns the first TLS output section. */
2857 struct bfd_section *
2858 _bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
2860 struct bfd_section *sec, *tls;
2861 unsigned int align = 0;
2863 for (sec = obfd->sections; sec != NULL; sec = sec->next)
2864 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
2868 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
2869 if (sec->alignment_power > align)
2870 align = sec->alignment_power;
2872 elf_hash_table (info)->tls_sec = tls;
2874 /* Ensure the alignment of the first section is the largest alignment,
2875 so that the tls segment starts aligned. */
2877 tls->alignment_power = align;
2882 /* Return TRUE iff this is a non-common, definition of a non-function symbol. */
2884 is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
2885 Elf_Internal_Sym *sym)
2887 const struct elf_backend_data *bed;
2889 /* Local symbols do not count, but target specific ones might. */
2890 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
2891 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
2894 bed = get_elf_backend_data (abfd);
2895 /* Function symbols do not count. */
2896 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
2899 /* If the section is undefined, then so is the symbol. */
2900 if (sym->st_shndx == SHN_UNDEF)
2903 /* If the symbol is defined in the common section, then
2904 it is a common definition and so does not count. */
2905 if (bed->common_definition (sym))
2908 /* If the symbol is in a target specific section then we
2909 must rely upon the backend to tell us what it is. */
2910 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
2911 /* FIXME - this function is not coded yet:
2913 return _bfd_is_global_symbol_definition (abfd, sym);
2915 Instead for now assume that the definition is not global,
2916 Even if this is wrong, at least the linker will behave
2917 in the same way that it used to do. */
2923 /* Search the symbol table of the archive element of the archive ABFD
2924 whose archive map contains a mention of SYMDEF, and determine if
2925 the symbol is defined in this element. */
2927 elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
2929 Elf_Internal_Shdr * hdr;
2930 bfd_size_type symcount;
2931 bfd_size_type extsymcount;
2932 bfd_size_type extsymoff;
2933 Elf_Internal_Sym *isymbuf;
2934 Elf_Internal_Sym *isym;
2935 Elf_Internal_Sym *isymend;
2938 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
2942 if (! bfd_check_format (abfd, bfd_object))
2945 /* If we have already included the element containing this symbol in the
2946 link then we do not need to include it again. Just claim that any symbol
2947 it contains is not a definition, so that our caller will not decide to
2948 (re)include this element. */
2949 if (abfd->archive_pass)
2952 /* Select the appropriate symbol table. */
2953 if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
2954 hdr = &elf_tdata (abfd)->symtab_hdr;
2956 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2958 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
2960 /* The sh_info field of the symtab header tells us where the
2961 external symbols start. We don't care about the local symbols. */
2962 if (elf_bad_symtab (abfd))
2964 extsymcount = symcount;
2969 extsymcount = symcount - hdr->sh_info;
2970 extsymoff = hdr->sh_info;
2973 if (extsymcount == 0)
2976 /* Read in the symbol table. */
2977 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
2979 if (isymbuf == NULL)
2982 /* Scan the symbol table looking for SYMDEF. */
2984 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
2988 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
2993 if (strcmp (name, symdef->name) == 0)
2995 result = is_global_data_symbol_definition (abfd, isym);
3005 /* Add an entry to the .dynamic table. */
3008 _bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3012 struct elf_link_hash_table *hash_table;
3013 const struct elf_backend_data *bed;
3015 bfd_size_type newsize;
3016 bfd_byte *newcontents;
3017 Elf_Internal_Dyn dyn;
3019 hash_table = elf_hash_table (info);
3020 if (! is_elf_hash_table (hash_table))
3023 bed = get_elf_backend_data (hash_table->dynobj);
3024 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3025 BFD_ASSERT (s != NULL);
3027 newsize = s->size + bed->s->sizeof_dyn;
3028 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
3029 if (newcontents == NULL)
3033 dyn.d_un.d_val = val;
3034 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
3037 s->contents = newcontents;
3042 /* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3043 otherwise just check whether one already exists. Returns -1 on error,
3044 1 if a DT_NEEDED tag already exists, and 0 on success. */
3047 elf_add_dt_needed_tag (bfd *abfd,
3048 struct bfd_link_info *info,
3052 struct elf_link_hash_table *hash_table;
3053 bfd_size_type strindex;
3055 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3058 hash_table = elf_hash_table (info);
3059 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3060 if (strindex == (bfd_size_type) -1)
3063 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
3066 const struct elf_backend_data *bed;
3069 bed = get_elf_backend_data (hash_table->dynobj);
3070 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3072 for (extdyn = sdyn->contents;
3073 extdyn < sdyn->contents + sdyn->size;
3074 extdyn += bed->s->sizeof_dyn)
3076 Elf_Internal_Dyn dyn;
3078 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3079 if (dyn.d_tag == DT_NEEDED
3080 && dyn.d_un.d_val == strindex)
3082 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3090 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3093 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3097 /* We were just checking for existence of the tag. */
3098 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3104 on_needed_list (const char *soname, struct bfd_link_needed_list *needed)
3106 for (; needed != NULL; needed = needed->next)
3107 if (strcmp (soname, needed->name) == 0)
3113 /* Sort symbol by value, section, and size. */
3115 elf_sort_symbol (const void *arg1, const void *arg2)
3117 const struct elf_link_hash_entry *h1;
3118 const struct elf_link_hash_entry *h2;
3119 bfd_signed_vma vdiff;
3121 h1 = *(const struct elf_link_hash_entry **) arg1;
3122 h2 = *(const struct elf_link_hash_entry **) arg2;
3123 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3125 return vdiff > 0 ? 1 : -1;
3128 long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3130 return sdiff > 0 ? 1 : -1;
3132 vdiff = h1->size - h2->size;
3133 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
3136 /* This function is used to adjust offsets into .dynstr for
3137 dynamic symbols. This is called via elf_link_hash_traverse. */
3140 elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3142 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
3144 if (h->dynindx != -1)
3145 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3149 /* Assign string offsets in .dynstr, update all structures referencing
3153 elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
3155 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3156 struct elf_link_local_dynamic_entry *entry;
3157 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3158 bfd *dynobj = hash_table->dynobj;
3161 const struct elf_backend_data *bed;
3164 _bfd_elf_strtab_finalize (dynstr);
3165 size = _bfd_elf_strtab_size (dynstr);
3167 bed = get_elf_backend_data (dynobj);
3168 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
3169 BFD_ASSERT (sdyn != NULL);
3171 /* Update all .dynamic entries referencing .dynstr strings. */
3172 for (extdyn = sdyn->contents;
3173 extdyn < sdyn->contents + sdyn->size;
3174 extdyn += bed->s->sizeof_dyn)
3176 Elf_Internal_Dyn dyn;
3178 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3182 dyn.d_un.d_val = size;
3192 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3197 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3200 /* Now update local dynamic symbols. */
3201 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3202 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3203 entry->isym.st_name);
3205 /* And the rest of dynamic symbols. */
3206 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3208 /* Adjust version definitions. */
3209 if (elf_tdata (output_bfd)->cverdefs)
3214 Elf_Internal_Verdef def;
3215 Elf_Internal_Verdaux defaux;
3217 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
3221 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3223 p += sizeof (Elf_External_Verdef);
3224 if (def.vd_aux != sizeof (Elf_External_Verdef))
3226 for (i = 0; i < def.vd_cnt; ++i)
3228 _bfd_elf_swap_verdaux_in (output_bfd,
3229 (Elf_External_Verdaux *) p, &defaux);
3230 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3232 _bfd_elf_swap_verdaux_out (output_bfd,
3233 &defaux, (Elf_External_Verdaux *) p);
3234 p += sizeof (Elf_External_Verdaux);
3237 while (def.vd_next);
3240 /* Adjust version references. */
3241 if (elf_tdata (output_bfd)->verref)
3246 Elf_Internal_Verneed need;
3247 Elf_Internal_Vernaux needaux;
3249 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
3253 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3255 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3256 _bfd_elf_swap_verneed_out (output_bfd, &need,
3257 (Elf_External_Verneed *) p);
3258 p += sizeof (Elf_External_Verneed);
3259 for (i = 0; i < need.vn_cnt; ++i)
3261 _bfd_elf_swap_vernaux_in (output_bfd,
3262 (Elf_External_Vernaux *) p, &needaux);
3263 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3265 _bfd_elf_swap_vernaux_out (output_bfd,
3267 (Elf_External_Vernaux *) p);
3268 p += sizeof (Elf_External_Vernaux);
3271 while (need.vn_next);
3277 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3278 The default is to only match when the INPUT and OUTPUT are exactly
3282 _bfd_elf_default_relocs_compatible (const bfd_target *input,
3283 const bfd_target *output)
3285 return input == output;
3288 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3289 This version is used when different targets for the same architecture
3290 are virtually identical. */
3293 _bfd_elf_relocs_compatible (const bfd_target *input,
3294 const bfd_target *output)
3296 const struct elf_backend_data *obed, *ibed;
3298 if (input == output)
3301 ibed = xvec_get_elf_backend_data (input);
3302 obed = xvec_get_elf_backend_data (output);
3304 if (ibed->arch != obed->arch)
3307 /* If both backends are using this function, deem them compatible. */
3308 return ibed->relocs_compatible == obed->relocs_compatible;
3311 /* Add symbols from an ELF object file to the linker hash table. */
3314 elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3316 Elf_Internal_Ehdr *ehdr;
3317 Elf_Internal_Shdr *hdr;
3318 bfd_size_type symcount;
3319 bfd_size_type extsymcount;
3320 bfd_size_type extsymoff;
3321 struct elf_link_hash_entry **sym_hash;
3322 bfd_boolean dynamic;
3323 Elf_External_Versym *extversym = NULL;
3324 Elf_External_Versym *ever;
3325 struct elf_link_hash_entry *weaks;
3326 struct elf_link_hash_entry **nondeflt_vers = NULL;
3327 bfd_size_type nondeflt_vers_cnt = 0;
3328 Elf_Internal_Sym *isymbuf = NULL;
3329 Elf_Internal_Sym *isym;
3330 Elf_Internal_Sym *isymend;
3331 const struct elf_backend_data *bed;
3332 bfd_boolean add_needed;
3333 struct elf_link_hash_table *htab;
3335 void *alloc_mark = NULL;
3336 struct bfd_hash_entry **old_table = NULL;
3337 unsigned int old_size = 0;
3338 unsigned int old_count = 0;
3339 void *old_tab = NULL;
3342 struct bfd_link_hash_entry *old_undefs = NULL;
3343 struct bfd_link_hash_entry *old_undefs_tail = NULL;
3344 long old_dynsymcount = 0;
3345 bfd_size_type old_dynstr_size = 0;
3347 size_t hashsize = 0;
3349 htab = elf_hash_table (info);
3350 bed = get_elf_backend_data (abfd);
3352 if ((abfd->flags & DYNAMIC) == 0)
3358 /* You can't use -r against a dynamic object. Also, there's no
3359 hope of using a dynamic object which does not exactly match
3360 the format of the output file. */
3361 if (info->relocatable
3362 || !is_elf_hash_table (htab)
3363 || info->output_bfd->xvec != abfd->xvec)
3365 if (info->relocatable)
3366 bfd_set_error (bfd_error_invalid_operation);
3368 bfd_set_error (bfd_error_wrong_format);
3373 ehdr = elf_elfheader (abfd);
3374 if (info->warn_alternate_em
3375 && bed->elf_machine_code != ehdr->e_machine
3376 && ((bed->elf_machine_alt1 != 0
3377 && ehdr->e_machine == bed->elf_machine_alt1)
3378 || (bed->elf_machine_alt2 != 0
3379 && ehdr->e_machine == bed->elf_machine_alt2)))
3380 info->callbacks->einfo
3381 (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"),
3382 ehdr->e_machine, abfd, bed->elf_machine_code);
3384 /* As a GNU extension, any input sections which are named
3385 .gnu.warning.SYMBOL are treated as warning symbols for the given
3386 symbol. This differs from .gnu.warning sections, which generate
3387 warnings when they are included in an output file. */
3388 /* PR 12761: Also generate this warning when building shared libraries. */
3389 if (info->executable || info->shared)
3393 for (s = abfd->sections; s != NULL; s = s->next)
3397 name = bfd_get_section_name (abfd, s);
3398 if (CONST_STRNEQ (name, ".gnu.warning."))
3403 name += sizeof ".gnu.warning." - 1;
3405 /* If this is a shared object, then look up the symbol
3406 in the hash table. If it is there, and it is already
3407 been defined, then we will not be using the entry
3408 from this shared object, so we don't need to warn.
3409 FIXME: If we see the definition in a regular object
3410 later on, we will warn, but we shouldn't. The only
3411 fix is to keep track of what warnings we are supposed
3412 to emit, and then handle them all at the end of the
3416 struct elf_link_hash_entry *h;
3418 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3420 /* FIXME: What about bfd_link_hash_common? */
3422 && (h->root.type == bfd_link_hash_defined
3423 || h->root.type == bfd_link_hash_defweak))
3425 /* We don't want to issue this warning. Clobber
3426 the section size so that the warning does not
3427 get copied into the output file. */
3434 msg = (char *) bfd_alloc (abfd, sz + 1);
3438 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3443 if (! (_bfd_generic_link_add_one_symbol
3444 (info, abfd, name, BSF_WARNING, s, 0, msg,
3445 FALSE, bed->collect, NULL)))
3448 if (! info->relocatable)
3450 /* Clobber the section size so that the warning does
3451 not get copied into the output file. */
3454 /* Also set SEC_EXCLUDE, so that symbols defined in
3455 the warning section don't get copied to the output. */
3456 s->flags |= SEC_EXCLUDE;
3465 /* If we are creating a shared library, create all the dynamic
3466 sections immediately. We need to attach them to something,
3467 so we attach them to this BFD, provided it is the right
3468 format. FIXME: If there are no input BFD's of the same
3469 format as the output, we can't make a shared library. */
3471 && is_elf_hash_table (htab)
3472 && info->output_bfd->xvec == abfd->xvec
3473 && !htab->dynamic_sections_created)
3475 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3479 else if (!is_elf_hash_table (htab))
3484 const char *soname = NULL;
3486 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3489 /* ld --just-symbols and dynamic objects don't mix very well.
3490 ld shouldn't allow it. */
3491 if ((s = abfd->sections) != NULL
3492 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3495 /* If this dynamic lib was specified on the command line with
3496 --as-needed in effect, then we don't want to add a DT_NEEDED
3497 tag unless the lib is actually used. Similary for libs brought
3498 in by another lib's DT_NEEDED. When --no-add-needed is used
3499 on a dynamic lib, we don't want to add a DT_NEEDED entry for
3500 any dynamic library in DT_NEEDED tags in the dynamic lib at
3502 add_needed = (elf_dyn_lib_class (abfd)
3503 & (DYN_AS_NEEDED | DYN_DT_NEEDED
3504 | DYN_NO_NEEDED)) == 0;
3506 s = bfd_get_section_by_name (abfd, ".dynamic");
3511 unsigned int elfsec;
3512 unsigned long shlink;
3514 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
3521 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
3522 if (elfsec == SHN_BAD)
3523 goto error_free_dyn;
3524 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3526 for (extdyn = dynbuf;
3527 extdyn < dynbuf + s->size;
3528 extdyn += bed->s->sizeof_dyn)
3530 Elf_Internal_Dyn dyn;
3532 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3533 if (dyn.d_tag == DT_SONAME)
3535 unsigned int tagv = dyn.d_un.d_val;
3536 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3538 goto error_free_dyn;
3540 if (dyn.d_tag == DT_NEEDED)
3542 struct bfd_link_needed_list *n, **pn;
3544 unsigned int tagv = dyn.d_un.d_val;
3546 amt = sizeof (struct bfd_link_needed_list);
3547 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3548 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3549 if (n == NULL || fnm == NULL)
3550 goto error_free_dyn;
3551 amt = strlen (fnm) + 1;
3552 anm = (char *) bfd_alloc (abfd, amt);
3554 goto error_free_dyn;
3555 memcpy (anm, fnm, amt);
3559 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
3563 if (dyn.d_tag == DT_RUNPATH)
3565 struct bfd_link_needed_list *n, **pn;
3567 unsigned int tagv = dyn.d_un.d_val;
3569 amt = sizeof (struct bfd_link_needed_list);
3570 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3571 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3572 if (n == NULL || fnm == NULL)
3573 goto error_free_dyn;
3574 amt = strlen (fnm) + 1;
3575 anm = (char *) bfd_alloc (abfd, amt);
3577 goto error_free_dyn;
3578 memcpy (anm, fnm, amt);
3582 for (pn = & runpath;
3588 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
3589 if (!runpath && dyn.d_tag == DT_RPATH)
3591 struct bfd_link_needed_list *n, **pn;
3593 unsigned int tagv = dyn.d_un.d_val;
3595 amt = sizeof (struct bfd_link_needed_list);
3596 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3597 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3598 if (n == NULL || fnm == NULL)
3599 goto error_free_dyn;
3600 amt = strlen (fnm) + 1;
3601 anm = (char *) bfd_alloc (abfd, amt);
3603 goto error_free_dyn;
3604 memcpy (anm, fnm, amt);
3614 if (dyn.d_tag == DT_AUDIT)
3616 unsigned int tagv = dyn.d_un.d_val;
3617 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3624 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
3625 frees all more recently bfd_alloc'd blocks as well. */
3631 struct bfd_link_needed_list **pn;
3632 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
3637 /* We do not want to include any of the sections in a dynamic
3638 object in the output file. We hack by simply clobbering the
3639 list of sections in the BFD. This could be handled more
3640 cleanly by, say, a new section flag; the existing
3641 SEC_NEVER_LOAD flag is not the one we want, because that one
3642 still implies that the section takes up space in the output
3644 bfd_section_list_clear (abfd);
3646 /* Find the name to use in a DT_NEEDED entry that refers to this
3647 object. If the object has a DT_SONAME entry, we use it.
3648 Otherwise, if the generic linker stuck something in
3649 elf_dt_name, we use that. Otherwise, we just use the file
3651 if (soname == NULL || *soname == '\0')
3653 soname = elf_dt_name (abfd);
3654 if (soname == NULL || *soname == '\0')
3655 soname = bfd_get_filename (abfd);
3658 /* Save the SONAME because sometimes the linker emulation code
3659 will need to know it. */
3660 elf_dt_name (abfd) = soname;
3662 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
3666 /* If we have already included this dynamic object in the
3667 link, just ignore it. There is no reason to include a
3668 particular dynamic object more than once. */
3672 /* Save the DT_AUDIT entry for the linker emulation code. */
3673 elf_dt_audit (abfd) = audit;
3676 /* If this is a dynamic object, we always link against the .dynsym
3677 symbol table, not the .symtab symbol table. The dynamic linker
3678 will only see the .dynsym symbol table, so there is no reason to
3679 look at .symtab for a dynamic object. */
3681 if (! dynamic || elf_dynsymtab (abfd) == 0)
3682 hdr = &elf_tdata (abfd)->symtab_hdr;
3684 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3686 symcount = hdr->sh_size / bed->s->sizeof_sym;
3688 /* The sh_info field of the symtab header tells us where the
3689 external symbols start. We don't care about the local symbols at
3691 if (elf_bad_symtab (abfd))
3693 extsymcount = symcount;
3698 extsymcount = symcount - hdr->sh_info;
3699 extsymoff = hdr->sh_info;
3703 if (extsymcount != 0)
3705 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3707 if (isymbuf == NULL)
3710 /* We store a pointer to the hash table entry for each external
3712 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
3713 sym_hash = (struct elf_link_hash_entry **) bfd_alloc (abfd, amt);
3714 if (sym_hash == NULL)
3715 goto error_free_sym;
3716 elf_sym_hashes (abfd) = sym_hash;
3721 /* Read in any version definitions. */
3722 if (!_bfd_elf_slurp_version_tables (abfd,
3723 info->default_imported_symver))
3724 goto error_free_sym;
3726 /* Read in the symbol versions, but don't bother to convert them
3727 to internal format. */
3728 if (elf_dynversym (abfd) != 0)
3730 Elf_Internal_Shdr *versymhdr;
3732 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
3733 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
3734 if (extversym == NULL)
3735 goto error_free_sym;
3736 amt = versymhdr->sh_size;
3737 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
3738 || bfd_bread (extversym, amt, abfd) != amt)
3739 goto error_free_vers;
3743 /* If we are loading an as-needed shared lib, save the symbol table
3744 state before we start adding symbols. If the lib turns out
3745 to be unneeded, restore the state. */
3746 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
3751 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
3753 struct bfd_hash_entry *p;
3754 struct elf_link_hash_entry *h;
3756 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3758 h = (struct elf_link_hash_entry *) p;
3759 entsize += htab->root.table.entsize;
3760 if (h->root.type == bfd_link_hash_warning)
3761 entsize += htab->root.table.entsize;
3765 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
3766 hashsize = extsymcount * sizeof (struct elf_link_hash_entry *);
3767 old_tab = bfd_malloc (tabsize + entsize + hashsize);
3768 if (old_tab == NULL)
3769 goto error_free_vers;
3771 /* Remember the current objalloc pointer, so that all mem for
3772 symbols added can later be reclaimed. */
3773 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
3774 if (alloc_mark == NULL)
3775 goto error_free_vers;
3777 /* Make a special call to the linker "notice" function to
3778 tell it that we are about to handle an as-needed lib. */
3779 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
3780 notice_as_needed, 0, NULL))
3781 goto error_free_vers;
3783 /* Clone the symbol table and sym hashes. Remember some
3784 pointers into the symbol table, and dynamic symbol count. */
3785 old_hash = (char *) old_tab + tabsize;
3786 old_ent = (char *) old_hash + hashsize;
3787 memcpy (old_tab, htab->root.table.table, tabsize);
3788 memcpy (old_hash, sym_hash, hashsize);
3789 old_undefs = htab->root.undefs;
3790 old_undefs_tail = htab->root.undefs_tail;
3791 old_table = htab->root.table.table;
3792 old_size = htab->root.table.size;
3793 old_count = htab->root.table.count;
3794 old_dynsymcount = htab->dynsymcount;
3795 old_dynstr_size = _bfd_elf_strtab_size (htab->dynstr);
3797 for (i = 0; i < htab->root.table.size; i++)
3799 struct bfd_hash_entry *p;
3800 struct elf_link_hash_entry *h;
3802 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3804 memcpy (old_ent, p, htab->root.table.entsize);
3805 old_ent = (char *) old_ent + htab->root.table.entsize;
3806 h = (struct elf_link_hash_entry *) p;
3807 if (h->root.type == bfd_link_hash_warning)
3809 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
3810 old_ent = (char *) old_ent + htab->root.table.entsize;
3817 ever = extversym != NULL ? extversym + extsymoff : NULL;
3818 for (isym = isymbuf, isymend = isymbuf + extsymcount;
3820 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
3824 asection *sec, *new_sec;
3827 struct elf_link_hash_entry *h;
3828 struct elf_link_hash_entry *hi;
3829 bfd_boolean definition;
3830 bfd_boolean size_change_ok;
3831 bfd_boolean type_change_ok;
3832 bfd_boolean new_weakdef;
3833 bfd_boolean new_weak;
3834 bfd_boolean old_weak;
3835 bfd_boolean override;
3837 unsigned int old_alignment;
3842 flags = BSF_NO_FLAGS;
3844 value = isym->st_value;
3846 common = bed->common_definition (isym);
3848 bind = ELF_ST_BIND (isym->st_info);
3852 /* This should be impossible, since ELF requires that all
3853 global symbols follow all local symbols, and that sh_info
3854 point to the first global symbol. Unfortunately, Irix 5
3859 if (isym->st_shndx != SHN_UNDEF && !common)
3867 case STB_GNU_UNIQUE:
3868 flags = BSF_GNU_UNIQUE;
3872 /* Leave it up to the processor backend. */
3876 if (isym->st_shndx == SHN_UNDEF)
3877 sec = bfd_und_section_ptr;
3878 else if (isym->st_shndx == SHN_ABS)
3879 sec = bfd_abs_section_ptr;
3880 else if (isym->st_shndx == SHN_COMMON)
3882 sec = bfd_com_section_ptr;
3883 /* What ELF calls the size we call the value. What ELF
3884 calls the value we call the alignment. */
3885 value = isym->st_size;
3889 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
3891 sec = bfd_abs_section_ptr;
3892 else if (discarded_section (sec))
3894 /* Symbols from discarded section are undefined. We keep
3896 sec = bfd_und_section_ptr;
3897 isym->st_shndx = SHN_UNDEF;
3899 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
3903 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3906 goto error_free_vers;
3908 if (isym->st_shndx == SHN_COMMON
3909 && (abfd->flags & BFD_PLUGIN) != 0)
3911 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
3915 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
3917 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
3919 goto error_free_vers;
3923 else if (isym->st_shndx == SHN_COMMON
3924 && ELF_ST_TYPE (isym->st_info) == STT_TLS
3925 && !info->relocatable)
3927 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
3931 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
3932 | SEC_LINKER_CREATED);
3933 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3935 goto error_free_vers;
3939 else if (bed->elf_add_symbol_hook)
3941 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
3943 goto error_free_vers;
3945 /* The hook function sets the name to NULL if this symbol
3946 should be skipped for some reason. */
3951 /* Sanity check that all possibilities were handled. */
3954 bfd_set_error (bfd_error_bad_value);
3955 goto error_free_vers;
3958 /* Silently discard TLS symbols from --just-syms. There's
3959 no way to combine a static TLS block with a new TLS block
3960 for this executable. */
3961 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
3962 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3965 if (bfd_is_und_section (sec)
3966 || bfd_is_com_section (sec))
3971 size_change_ok = FALSE;
3972 type_change_ok = bed->type_change_ok;
3978 if (is_elf_hash_table (htab))
3980 Elf_Internal_Versym iver;
3981 unsigned int vernum = 0;
3986 if (info->default_imported_symver)
3987 /* Use the default symbol version created earlier. */
3988 iver.vs_vers = elf_tdata (abfd)->cverdefs;
3993 _bfd_elf_swap_versym_in (abfd, ever, &iver);
3995 vernum = iver.vs_vers & VERSYM_VERSION;
3997 /* If this is a hidden symbol, or if it is not version
3998 1, we append the version name to the symbol name.
3999 However, we do not modify a non-hidden absolute symbol
4000 if it is not a function, because it might be the version
4001 symbol itself. FIXME: What if it isn't? */
4002 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
4004 && (!bfd_is_abs_section (sec)
4005 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
4008 size_t namelen, verlen, newlen;
4011 if (isym->st_shndx != SHN_UNDEF)
4013 if (vernum > elf_tdata (abfd)->cverdefs)
4015 else if (vernum > 1)
4017 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4023 (*_bfd_error_handler)
4024 (_("%B: %s: invalid version %u (max %d)"),
4026 elf_tdata (abfd)->cverdefs);
4027 bfd_set_error (bfd_error_bad_value);
4028 goto error_free_vers;
4033 /* We cannot simply test for the number of
4034 entries in the VERNEED section since the
4035 numbers for the needed versions do not start
4037 Elf_Internal_Verneed *t;
4040 for (t = elf_tdata (abfd)->verref;
4044 Elf_Internal_Vernaux *a;
4046 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4048 if (a->vna_other == vernum)
4050 verstr = a->vna_nodename;
4059 (*_bfd_error_handler)
4060 (_("%B: %s: invalid needed version %d"),
4061 abfd, name, vernum);
4062 bfd_set_error (bfd_error_bad_value);
4063 goto error_free_vers;
4067 namelen = strlen (name);
4068 verlen = strlen (verstr);
4069 newlen = namelen + verlen + 2;
4070 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4071 && isym->st_shndx != SHN_UNDEF)
4074 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
4075 if (newname == NULL)
4076 goto error_free_vers;
4077 memcpy (newname, name, namelen);
4078 p = newname + namelen;
4080 /* If this is a defined non-hidden version symbol,
4081 we add another @ to the name. This indicates the
4082 default version of the symbol. */
4083 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4084 && isym->st_shndx != SHN_UNDEF)
4086 memcpy (p, verstr, verlen + 1);
4091 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4092 sym_hash, &old_bfd, &old_weak,
4093 &old_alignment, &skip, &override,
4094 &type_change_ok, &size_change_ok))
4095 goto error_free_vers;
4104 while (h->root.type == bfd_link_hash_indirect
4105 || h->root.type == bfd_link_hash_warning)
4106 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4108 if (elf_tdata (abfd)->verdef != NULL
4111 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4114 if (! (_bfd_generic_link_add_one_symbol
4115 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4116 (struct bfd_link_hash_entry **) sym_hash)))
4117 goto error_free_vers;
4120 /* We need to make sure that indirect symbol dynamic flags are
4123 while (h->root.type == bfd_link_hash_indirect
4124 || h->root.type == bfd_link_hash_warning)
4125 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4129 new_weak = (flags & BSF_WEAK) != 0;
4130 new_weakdef = FALSE;
4134 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
4135 && is_elf_hash_table (htab)
4136 && h->u.weakdef == NULL)
4138 /* Keep a list of all weak defined non function symbols from
4139 a dynamic object, using the weakdef field. Later in this
4140 function we will set the weakdef field to the correct
4141 value. We only put non-function symbols from dynamic
4142 objects on this list, because that happens to be the only
4143 time we need to know the normal symbol corresponding to a
4144 weak symbol, and the information is time consuming to
4145 figure out. If the weakdef field is not already NULL,
4146 then this symbol was already defined by some previous
4147 dynamic object, and we will be using that previous
4148 definition anyhow. */
4150 h->u.weakdef = weaks;
4155 /* Set the alignment of a common symbol. */
4156 if ((common || bfd_is_com_section (sec))
4157 && h->root.type == bfd_link_hash_common)
4162 align = bfd_log2 (isym->st_value);
4165 /* The new symbol is a common symbol in a shared object.
4166 We need to get the alignment from the section. */
4167 align = new_sec->alignment_power;
4169 if (align > old_alignment)
4170 h->root.u.c.p->alignment_power = align;
4172 h->root.u.c.p->alignment_power = old_alignment;
4175 if (is_elf_hash_table (htab))
4177 /* Set a flag in the hash table entry indicating the type of
4178 reference or definition we just found. A dynamic symbol
4179 is one which is referenced or defined by both a regular
4180 object and a shared object. */
4181 bfd_boolean dynsym = FALSE;
4183 /* Plugin symbols aren't normal. Don't set def_regular or
4184 ref_regular for them, or make them dynamic. */
4185 if ((abfd->flags & BFD_PLUGIN) != 0)
4192 if (bind != STB_WEAK)
4193 h->ref_regular_nonweak = 1;
4205 /* If the indirect symbol has been forced local, don't
4206 make the real symbol dynamic. */
4207 if ((h == hi || !hi->forced_local)
4208 && (! info->executable
4218 hi->ref_dynamic = 1;
4223 hi->def_dynamic = 1;
4226 /* If the indirect symbol has been forced local, don't
4227 make the real symbol dynamic. */
4228 if ((h == hi || !hi->forced_local)
4231 || (h->u.weakdef != NULL
4233 && h->u.weakdef->dynindx != -1)))
4237 /* Check to see if we need to add an indirect symbol for
4238 the default name. */
4240 || (!override && h->root.type == bfd_link_hash_common))
4241 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4242 sec, value, &old_bfd, &dynsym))
4243 goto error_free_vers;
4245 /* Check the alignment when a common symbol is involved. This
4246 can change when a common symbol is overridden by a normal
4247 definition or a common symbol is ignored due to the old
4248 normal definition. We need to make sure the maximum
4249 alignment is maintained. */
4250 if ((old_alignment || common)
4251 && h->root.type != bfd_link_hash_common)
4253 unsigned int common_align;
4254 unsigned int normal_align;
4255 unsigned int symbol_align;
4259 BFD_ASSERT (h->root.type == bfd_link_hash_defined
4260 || h->root.type == bfd_link_hash_defweak);
4262 symbol_align = ffs (h->root.u.def.value) - 1;
4263 if (h->root.u.def.section->owner != NULL
4264 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
4266 normal_align = h->root.u.def.section->alignment_power;
4267 if (normal_align > symbol_align)
4268 normal_align = symbol_align;
4271 normal_align = symbol_align;
4275 common_align = old_alignment;
4276 common_bfd = old_bfd;
4281 common_align = bfd_log2 (isym->st_value);
4283 normal_bfd = old_bfd;
4286 if (normal_align < common_align)
4288 /* PR binutils/2735 */
4289 if (normal_bfd == NULL)
4290 (*_bfd_error_handler)
4291 (_("Warning: alignment %u of common symbol `%s' in %B is"
4292 " greater than the alignment (%u) of its section %A"),
4293 common_bfd, h->root.u.def.section,
4294 1 << common_align, name, 1 << normal_align);
4296 (*_bfd_error_handler)
4297 (_("Warning: alignment %u of symbol `%s' in %B"
4298 " is smaller than %u in %B"),
4299 normal_bfd, common_bfd,
4300 1 << normal_align, name, 1 << common_align);
4304 /* Remember the symbol size if it isn't undefined. */
4305 if (isym->st_size != 0
4306 && isym->st_shndx != SHN_UNDEF
4307 && (definition || h->size == 0))
4310 && h->size != isym->st_size
4311 && ! size_change_ok)
4312 (*_bfd_error_handler)
4313 (_("Warning: size of symbol `%s' changed"
4314 " from %lu in %B to %lu in %B"),
4316 name, (unsigned long) h->size,
4317 (unsigned long) isym->st_size);
4319 h->size = isym->st_size;
4322 /* If this is a common symbol, then we always want H->SIZE
4323 to be the size of the common symbol. The code just above
4324 won't fix the size if a common symbol becomes larger. We
4325 don't warn about a size change here, because that is
4326 covered by --warn-common. Allow changes between different
4328 if (h->root.type == bfd_link_hash_common)
4329 h->size = h->root.u.c.size;
4331 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
4332 && ((definition && !new_weak)
4333 || (old_weak && h->root.type == bfd_link_hash_common)
4334 || h->type == STT_NOTYPE))
4336 unsigned int type = ELF_ST_TYPE (isym->st_info);
4338 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4340 if (type == STT_GNU_IFUNC
4341 && (abfd->flags & DYNAMIC) != 0)
4344 if (h->type != type)
4346 if (h->type != STT_NOTYPE && ! type_change_ok)
4347 (*_bfd_error_handler)
4348 (_("Warning: type of symbol `%s' changed"
4349 " from %d to %d in %B"),
4350 abfd, name, h->type, type);
4356 /* Merge st_other field. */
4357 elf_merge_st_other (abfd, h, isym, definition, dynamic);
4359 /* We don't want to make debug symbol dynamic. */
4360 if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable)
4363 /* Nor should we make plugin symbols dynamic. */
4364 if ((abfd->flags & BFD_PLUGIN) != 0)
4369 h->target_internal = isym->st_target_internal;
4370 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4373 if (definition && !dynamic)
4375 char *p = strchr (name, ELF_VER_CHR);
4376 if (p != NULL && p[1] != ELF_VER_CHR)
4378 /* Queue non-default versions so that .symver x, x@FOO
4379 aliases can be checked. */
4382 amt = ((isymend - isym + 1)
4383 * sizeof (struct elf_link_hash_entry *));
4385 (struct elf_link_hash_entry **) bfd_malloc (amt);
4387 goto error_free_vers;
4389 nondeflt_vers[nondeflt_vers_cnt++] = h;
4393 if (dynsym && h->dynindx == -1)
4395 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4396 goto error_free_vers;
4397 if (h->u.weakdef != NULL
4399 && h->u.weakdef->dynindx == -1)
4401 if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4402 goto error_free_vers;
4405 else if (dynsym && h->dynindx != -1)
4406 /* If the symbol already has a dynamic index, but
4407 visibility says it should not be visible, turn it into
4409 switch (ELF_ST_VISIBILITY (h->other))
4413 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4418 /* Don't add DT_NEEDED for references from the dummy bfd. */
4422 && h->ref_regular_nonweak
4424 || (old_bfd->flags & BFD_PLUGIN) == 0))
4425 || (h->ref_dynamic_nonweak
4426 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
4427 && !on_needed_list (elf_dt_name (abfd), htab->needed))))
4430 const char *soname = elf_dt_name (abfd);
4432 /* A symbol from a library loaded via DT_NEEDED of some
4433 other library is referenced by a regular object.
4434 Add a DT_NEEDED entry for it. Issue an error if
4435 --no-add-needed is used and the reference was not
4438 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
4440 (*_bfd_error_handler)
4441 (_("%B: undefined reference to symbol '%s'"),
4443 bfd_set_error (bfd_error_missing_dso);
4444 goto error_free_vers;
4447 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
4448 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
4451 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4453 goto error_free_vers;
4455 BFD_ASSERT (ret == 0);
4460 if (extversym != NULL)
4466 if (isymbuf != NULL)
4472 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4476 /* Restore the symbol table. */
4477 if (bed->as_needed_cleanup)
4478 (*bed->as_needed_cleanup) (abfd, info);
4479 old_hash = (char *) old_tab + tabsize;
4480 old_ent = (char *) old_hash + hashsize;
4481 sym_hash = elf_sym_hashes (abfd);
4482 htab->root.table.table = old_table;
4483 htab->root.table.size = old_size;
4484 htab->root.table.count = old_count;
4485 memcpy (htab->root.table.table, old_tab, tabsize);
4486 memcpy (sym_hash, old_hash, hashsize);
4487 htab->root.undefs = old_undefs;
4488 htab->root.undefs_tail = old_undefs_tail;
4489 _bfd_elf_strtab_restore_size (htab->dynstr, old_dynstr_size);
4490 for (i = 0; i < htab->root.table.size; i++)
4492 struct bfd_hash_entry *p;
4493 struct elf_link_hash_entry *h;
4495 unsigned int alignment_power;
4497 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4499 h = (struct elf_link_hash_entry *) p;
4500 if (h->root.type == bfd_link_hash_warning)
4501 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4502 if (h->dynindx >= old_dynsymcount
4503 && h->dynstr_index < old_dynstr_size)
4504 _bfd_elf_strtab_delref (htab->dynstr, h->dynstr_index);
4506 /* Preserve the maximum alignment and size for common
4507 symbols even if this dynamic lib isn't on DT_NEEDED
4508 since it can still be loaded at run time by another
4510 if (h->root.type == bfd_link_hash_common)
4512 size = h->root.u.c.size;
4513 alignment_power = h->root.u.c.p->alignment_power;
4518 alignment_power = 0;
4520 memcpy (p, old_ent, htab->root.table.entsize);
4521 old_ent = (char *) old_ent + htab->root.table.entsize;
4522 h = (struct elf_link_hash_entry *) p;
4523 if (h->root.type == bfd_link_hash_warning)
4525 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4526 old_ent = (char *) old_ent + htab->root.table.entsize;
4527 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4529 if (h->root.type == bfd_link_hash_common)
4531 if (size > h->root.u.c.size)
4532 h->root.u.c.size = size;
4533 if (alignment_power > h->root.u.c.p->alignment_power)
4534 h->root.u.c.p->alignment_power = alignment_power;
4539 /* Make a special call to the linker "notice" function to
4540 tell it that symbols added for crefs may need to be removed. */
4541 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
4542 notice_not_needed, 0, NULL))
4543 goto error_free_vers;
4546 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4548 if (nondeflt_vers != NULL)
4549 free (nondeflt_vers);
4553 if (old_tab != NULL)
4555 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
4556 notice_needed, 0, NULL))
4557 goto error_free_vers;
4562 /* Now that all the symbols from this input file are created, handle
4563 .symver foo, foo@BAR such that any relocs against foo become foo@BAR. */
4564 if (nondeflt_vers != NULL)
4566 bfd_size_type cnt, symidx;
4568 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
4570 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
4571 char *shortname, *p;
4573 p = strchr (h->root.root.string, ELF_VER_CHR);
4575 || (h->root.type != bfd_link_hash_defined
4576 && h->root.type != bfd_link_hash_defweak))
4579 amt = p - h->root.root.string;
4580 shortname = (char *) bfd_malloc (amt + 1);
4582 goto error_free_vers;
4583 memcpy (shortname, h->root.root.string, amt);
4584 shortname[amt] = '\0';
4586 hi = (struct elf_link_hash_entry *)
4587 bfd_link_hash_lookup (&htab->root, shortname,
4588 FALSE, FALSE, FALSE);
4590 && hi->root.type == h->root.type
4591 && hi->root.u.def.value == h->root.u.def.value
4592 && hi->root.u.def.section == h->root.u.def.section)
4594 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
4595 hi->root.type = bfd_link_hash_indirect;
4596 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
4597 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4598 sym_hash = elf_sym_hashes (abfd);
4600 for (symidx = 0; symidx < extsymcount; ++symidx)
4601 if (sym_hash[symidx] == hi)
4603 sym_hash[symidx] = h;
4609 free (nondeflt_vers);
4610 nondeflt_vers = NULL;
4613 /* Now set the weakdefs field correctly for all the weak defined
4614 symbols we found. The only way to do this is to search all the
4615 symbols. Since we only need the information for non functions in
4616 dynamic objects, that's the only time we actually put anything on
4617 the list WEAKS. We need this information so that if a regular
4618 object refers to a symbol defined weakly in a dynamic object, the
4619 real symbol in the dynamic object is also put in the dynamic
4620 symbols; we also must arrange for both symbols to point to the
4621 same memory location. We could handle the general case of symbol
4622 aliasing, but a general symbol alias can only be generated in
4623 assembler code, handling it correctly would be very time
4624 consuming, and other ELF linkers don't handle general aliasing
4628 struct elf_link_hash_entry **hpp;
4629 struct elf_link_hash_entry **hppend;
4630 struct elf_link_hash_entry **sorted_sym_hash;
4631 struct elf_link_hash_entry *h;
4634 /* Since we have to search the whole symbol list for each weak
4635 defined symbol, search time for N weak defined symbols will be
4636 O(N^2). Binary search will cut it down to O(NlogN). */
4637 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
4638 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4639 if (sorted_sym_hash == NULL)
4641 sym_hash = sorted_sym_hash;
4642 hpp = elf_sym_hashes (abfd);
4643 hppend = hpp + extsymcount;
4645 for (; hpp < hppend; hpp++)
4649 && h->root.type == bfd_link_hash_defined
4650 && !bed->is_function_type (h->type))
4658 qsort (sorted_sym_hash, sym_count,
4659 sizeof (struct elf_link_hash_entry *),
4662 while (weaks != NULL)
4664 struct elf_link_hash_entry *hlook;
4670 weaks = hlook->u.weakdef;
4671 hlook->u.weakdef = NULL;
4673 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
4674 || hlook->root.type == bfd_link_hash_defweak
4675 || hlook->root.type == bfd_link_hash_common
4676 || hlook->root.type == bfd_link_hash_indirect);
4677 slook = hlook->root.u.def.section;
4678 vlook = hlook->root.u.def.value;
4684 bfd_signed_vma vdiff;
4686 h = sorted_sym_hash[idx];
4687 vdiff = vlook - h->root.u.def.value;
4694 long sdiff = slook->id - h->root.u.def.section->id;
4704 /* We didn't find a value/section match. */
4708 /* With multiple aliases, or when the weak symbol is already
4709 strongly defined, we have multiple matching symbols and
4710 the binary search above may land on any of them. Step
4711 one past the matching symbol(s). */
4714 h = sorted_sym_hash[idx];
4715 if (h->root.u.def.section != slook
4716 || h->root.u.def.value != vlook)
4720 /* Now look back over the aliases. Since we sorted by size
4721 as well as value and section, we'll choose the one with
4722 the largest size. */
4725 h = sorted_sym_hash[idx];
4727 /* Stop if value or section doesn't match. */
4728 if (h->root.u.def.section != slook
4729 || h->root.u.def.value != vlook)
4731 else if (h != hlook)
4733 hlook->u.weakdef = h;
4735 /* If the weak definition is in the list of dynamic
4736 symbols, make sure the real definition is put
4738 if (hlook->dynindx != -1 && h->dynindx == -1)
4740 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4743 free (sorted_sym_hash);
4748 /* If the real definition is in the list of dynamic
4749 symbols, make sure the weak definition is put
4750 there as well. If we don't do this, then the
4751 dynamic loader might not merge the entries for the
4752 real definition and the weak definition. */
4753 if (h->dynindx != -1 && hlook->dynindx == -1)
4755 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4756 goto err_free_sym_hash;
4763 free (sorted_sym_hash);
4766 if (bed->check_directives
4767 && !(*bed->check_directives) (abfd, info))
4770 /* If this object is the same format as the output object, and it is
4771 not a shared library, then let the backend look through the
4774 This is required to build global offset table entries and to
4775 arrange for dynamic relocs. It is not required for the
4776 particular common case of linking non PIC code, even when linking
4777 against shared libraries, but unfortunately there is no way of
4778 knowing whether an object file has been compiled PIC or not.
4779 Looking through the relocs is not particularly time consuming.
4780 The problem is that we must either (1) keep the relocs in memory,
4781 which causes the linker to require additional runtime memory or
4782 (2) read the relocs twice from the input file, which wastes time.
4783 This would be a good case for using mmap.
4785 I have no idea how to handle linking PIC code into a file of a
4786 different format. It probably can't be done. */
4788 && is_elf_hash_table (htab)
4789 && bed->check_relocs != NULL
4790 && elf_object_id (abfd) == elf_hash_table_id (htab)
4791 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
4795 for (o = abfd->sections; o != NULL; o = o->next)
4797 Elf_Internal_Rela *internal_relocs;
4800 if ((o->flags & SEC_RELOC) == 0
4801 || o->reloc_count == 0
4802 || ((info->strip == strip_all || info->strip == strip_debugger)
4803 && (o->flags & SEC_DEBUGGING) != 0)
4804 || bfd_is_abs_section (o->output_section))
4807 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
4809 if (internal_relocs == NULL)
4812 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
4814 if (elf_section_data (o)->relocs != internal_relocs)
4815 free (internal_relocs);
4822 /* If this is a non-traditional link, try to optimize the handling
4823 of the .stab/.stabstr sections. */
4825 && ! info->traditional_format
4826 && is_elf_hash_table (htab)
4827 && (info->strip != strip_all && info->strip != strip_debugger))
4831 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
4832 if (stabstr != NULL)
4834 bfd_size_type string_offset = 0;
4837 for (stab = abfd->sections; stab; stab = stab->next)
4838 if (CONST_STRNEQ (stab->name, ".stab")
4839 && (!stab->name[5] ||
4840 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
4841 && (stab->flags & SEC_MERGE) == 0
4842 && !bfd_is_abs_section (stab->output_section))
4844 struct bfd_elf_section_data *secdata;
4846 secdata = elf_section_data (stab);
4847 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
4848 stabstr, &secdata->sec_info,
4851 if (secdata->sec_info)
4852 stab->sec_info_type = SEC_INFO_TYPE_STABS;
4857 if (is_elf_hash_table (htab) && add_needed)
4859 /* Add this bfd to the loaded list. */
4860 struct elf_link_loaded_list *n;
4862 n = (struct elf_link_loaded_list *)
4863 bfd_alloc (abfd, sizeof (struct elf_link_loaded_list));
4867 n->next = htab->loaded;
4874 if (old_tab != NULL)
4876 if (nondeflt_vers != NULL)
4877 free (nondeflt_vers);
4878 if (extversym != NULL)
4881 if (isymbuf != NULL)
4887 /* Return the linker hash table entry of a symbol that might be
4888 satisfied by an archive symbol. Return -1 on error. */
4890 struct elf_link_hash_entry *
4891 _bfd_elf_archive_symbol_lookup (bfd *abfd,
4892 struct bfd_link_info *info,
4895 struct elf_link_hash_entry *h;
4899 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
4903 /* If this is a default version (the name contains @@), look up the
4904 symbol again with only one `@' as well as without the version.
4905 The effect is that references to the symbol with and without the
4906 version will be matched by the default symbol in the archive. */
4908 p = strchr (name, ELF_VER_CHR);
4909 if (p == NULL || p[1] != ELF_VER_CHR)
4912 /* First check with only one `@'. */
4913 len = strlen (name);
4914 copy = (char *) bfd_alloc (abfd, len);
4916 return (struct elf_link_hash_entry *) 0 - 1;
4918 first = p - name + 1;
4919 memcpy (copy, name, first);
4920 memcpy (copy + first, name + first + 1, len - first);
4922 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
4925 /* We also need to check references to the symbol without the
4927 copy[first - 1] = '\0';
4928 h = elf_link_hash_lookup (elf_hash_table (info), copy,
4929 FALSE, FALSE, TRUE);
4932 bfd_release (abfd, copy);
4936 /* Add symbols from an ELF archive file to the linker hash table. We
4937 don't use _bfd_generic_link_add_archive_symbols because of a
4938 problem which arises on UnixWare. The UnixWare libc.so is an
4939 archive which includes an entry libc.so.1 which defines a bunch of
4940 symbols. The libc.so archive also includes a number of other
4941 object files, which also define symbols, some of which are the same
4942 as those defined in libc.so.1. Correct linking requires that we
4943 consider each object file in turn, and include it if it defines any
4944 symbols we need. _bfd_generic_link_add_archive_symbols does not do
4945 this; it looks through the list of undefined symbols, and includes
4946 any object file which defines them. When this algorithm is used on
4947 UnixWare, it winds up pulling in libc.so.1 early and defining a
4948 bunch of symbols. This means that some of the other objects in the
4949 archive are not included in the link, which is incorrect since they
4950 precede libc.so.1 in the archive.
4952 Fortunately, ELF archive handling is simpler than that done by
4953 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
4954 oddities. In ELF, if we find a symbol in the archive map, and the
4955 symbol is currently undefined, we know that we must pull in that
4958 Unfortunately, we do have to make multiple passes over the symbol
4959 table until nothing further is resolved. */
4962 elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
4965 bfd_boolean *defined = NULL;
4966 bfd_boolean *included = NULL;
4970 const struct elf_backend_data *bed;
4971 struct elf_link_hash_entry * (*archive_symbol_lookup)
4972 (bfd *, struct bfd_link_info *, const char *);
4974 if (! bfd_has_map (abfd))
4976 /* An empty archive is a special case. */
4977 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
4979 bfd_set_error (bfd_error_no_armap);
4983 /* Keep track of all symbols we know to be already defined, and all
4984 files we know to be already included. This is to speed up the
4985 second and subsequent passes. */
4986 c = bfd_ardata (abfd)->symdef_count;
4990 amt *= sizeof (bfd_boolean);
4991 defined = (bfd_boolean *) bfd_zmalloc (amt);
4992 included = (bfd_boolean *) bfd_zmalloc (amt);
4993 if (defined == NULL || included == NULL)
4996 symdefs = bfd_ardata (abfd)->symdefs;
4997 bed = get_elf_backend_data (abfd);
4998 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
5011 symdefend = symdef + c;
5012 for (i = 0; symdef < symdefend; symdef++, i++)
5014 struct elf_link_hash_entry *h;
5016 struct bfd_link_hash_entry *undefs_tail;
5019 if (defined[i] || included[i])
5021 if (symdef->file_offset == last)
5027 h = archive_symbol_lookup (abfd, info, symdef->name);
5028 if (h == (struct elf_link_hash_entry *) 0 - 1)
5034 if (h->root.type == bfd_link_hash_common)
5036 /* We currently have a common symbol. The archive map contains
5037 a reference to this symbol, so we may want to include it. We
5038 only want to include it however, if this archive element
5039 contains a definition of the symbol, not just another common
5042 Unfortunately some archivers (including GNU ar) will put
5043 declarations of common symbols into their archive maps, as
5044 well as real definitions, so we cannot just go by the archive
5045 map alone. Instead we must read in the element's symbol
5046 table and check that to see what kind of symbol definition
5048 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5051 else if (h->root.type != bfd_link_hash_undefined)
5053 if (h->root.type != bfd_link_hash_undefweak)
5058 /* We need to include this archive member. */
5059 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5060 if (element == NULL)
5063 if (! bfd_check_format (element, bfd_object))
5066 /* Doublecheck that we have not included this object
5067 already--it should be impossible, but there may be
5068 something wrong with the archive. */
5069 if (element->archive_pass != 0)
5071 bfd_set_error (bfd_error_bad_value);
5074 element->archive_pass = 1;
5076 undefs_tail = info->hash->undefs_tail;
5078 if (!(*info->callbacks
5079 ->add_archive_element) (info, element, symdef->name, &element))
5081 if (!bfd_link_add_symbols (element, info))
5084 /* If there are any new undefined symbols, we need to make
5085 another pass through the archive in order to see whether
5086 they can be defined. FIXME: This isn't perfect, because
5087 common symbols wind up on undefs_tail and because an
5088 undefined symbol which is defined later on in this pass
5089 does not require another pass. This isn't a bug, but it
5090 does make the code less efficient than it could be. */
5091 if (undefs_tail != info->hash->undefs_tail)
5094 /* Look backward to mark all symbols from this object file
5095 which we have already seen in this pass. */
5099 included[mark] = TRUE;
5104 while (symdefs[mark].file_offset == symdef->file_offset);
5106 /* We mark subsequent symbols from this object file as we go
5107 on through the loop. */
5108 last = symdef->file_offset;
5119 if (defined != NULL)
5121 if (included != NULL)
5126 /* Given an ELF BFD, add symbols to the global hash table as
5130 bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5132 switch (bfd_get_format (abfd))
5135 return elf_link_add_object_symbols (abfd, info);
5137 return elf_link_add_archive_symbols (abfd, info);
5139 bfd_set_error (bfd_error_wrong_format);
5144 struct hash_codes_info
5146 unsigned long *hashcodes;
5150 /* This function will be called though elf_link_hash_traverse to store
5151 all hash value of the exported symbols in an array. */
5154 elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5156 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5162 /* Ignore indirect symbols. These are added by the versioning code. */
5163 if (h->dynindx == -1)
5166 name = h->root.root.string;
5167 p = strchr (name, ELF_VER_CHR);
5170 alc = (char *) bfd_malloc (p - name + 1);
5176 memcpy (alc, name, p - name);
5177 alc[p - name] = '\0';
5181 /* Compute the hash value. */
5182 ha = bfd_elf_hash (name);
5184 /* Store the found hash value in the array given as the argument. */
5185 *(inf->hashcodes)++ = ha;
5187 /* And store it in the struct so that we can put it in the hash table
5189 h->u.elf_hash_value = ha;
5197 struct collect_gnu_hash_codes
5200 const struct elf_backend_data *bed;
5201 unsigned long int nsyms;
5202 unsigned long int maskbits;
5203 unsigned long int *hashcodes;
5204 unsigned long int *hashval;
5205 unsigned long int *indx;
5206 unsigned long int *counts;
5209 long int min_dynindx;
5210 unsigned long int bucketcount;
5211 unsigned long int symindx;
5212 long int local_indx;
5213 long int shift1, shift2;
5214 unsigned long int mask;
5218 /* This function will be called though elf_link_hash_traverse to store
5219 all hash value of the exported symbols in an array. */
5222 elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5224 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5230 /* Ignore indirect symbols. These are added by the versioning code. */
5231 if (h->dynindx == -1)
5234 /* Ignore also local symbols and undefined symbols. */
5235 if (! (*s->bed->elf_hash_symbol) (h))
5238 name = h->root.root.string;
5239 p = strchr (name, ELF_VER_CHR);
5242 alc = (char *) bfd_malloc (p - name + 1);
5248 memcpy (alc, name, p - name);
5249 alc[p - name] = '\0';
5253 /* Compute the hash value. */
5254 ha = bfd_elf_gnu_hash (name);
5256 /* Store the found hash value in the array for compute_bucket_count,
5257 and also for .dynsym reordering purposes. */
5258 s->hashcodes[s->nsyms] = ha;
5259 s->hashval[h->dynindx] = ha;
5261 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5262 s->min_dynindx = h->dynindx;
5270 /* This function will be called though elf_link_hash_traverse to do
5271 final dynaminc symbol renumbering. */
5274 elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5276 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5277 unsigned long int bucket;
5278 unsigned long int val;
5280 /* Ignore indirect symbols. */
5281 if (h->dynindx == -1)
5284 /* Ignore also local symbols and undefined symbols. */
5285 if (! (*s->bed->elf_hash_symbol) (h))
5287 if (h->dynindx >= s->min_dynindx)
5288 h->dynindx = s->local_indx++;
5292 bucket = s->hashval[h->dynindx] % s->bucketcount;
5293 val = (s->hashval[h->dynindx] >> s->shift1)
5294 & ((s->maskbits >> s->shift1) - 1);
5295 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5297 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5298 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5299 if (s->counts[bucket] == 1)
5300 /* Last element terminates the chain. */
5302 bfd_put_32 (s->output_bfd, val,
5303 s->contents + (s->indx[bucket] - s->symindx) * 4);
5304 --s->counts[bucket];
5305 h->dynindx = s->indx[bucket]++;
5309 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5312 _bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5314 return !(h->forced_local
5315 || h->root.type == bfd_link_hash_undefined
5316 || h->root.type == bfd_link_hash_undefweak
5317 || ((h->root.type == bfd_link_hash_defined
5318 || h->root.type == bfd_link_hash_defweak)
5319 && h->root.u.def.section->output_section == NULL));
5322 /* Array used to determine the number of hash table buckets to use
5323 based on the number of symbols there are. If there are fewer than
5324 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5325 fewer than 37 we use 17 buckets, and so forth. We never use more
5326 than 32771 buckets. */
5328 static const size_t elf_buckets[] =
5330 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5334 /* Compute bucket count for hashing table. We do not use a static set
5335 of possible tables sizes anymore. Instead we determine for all
5336 possible reasonable sizes of the table the outcome (i.e., the
5337 number of collisions etc) and choose the best solution. The
5338 weighting functions are not too simple to allow the table to grow
5339 without bounds. Instead one of the weighting factors is the size.
5340 Therefore the result is always a good payoff between few collisions
5341 (= short chain lengths) and table size. */
5343 compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
5344 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5345 unsigned long int nsyms,
5348 size_t best_size = 0;
5349 unsigned long int i;
5351 /* We have a problem here. The following code to optimize the table
5352 size requires an integer type with more the 32 bits. If
5353 BFD_HOST_U_64_BIT is set we know about such a type. */
5354 #ifdef BFD_HOST_U_64_BIT
5359 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5360 bfd *dynobj = elf_hash_table (info)->dynobj;
5361 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5362 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
5363 unsigned long int *counts;
5365 unsigned int no_improvement_count = 0;
5367 /* Possible optimization parameters: if we have NSYMS symbols we say
5368 that the hashing table must at least have NSYMS/4 and at most
5370 minsize = nsyms / 4;
5373 best_size = maxsize = nsyms * 2;
5378 if ((best_size & 31) == 0)
5382 /* Create array where we count the collisions in. We must use bfd_malloc
5383 since the size could be large. */
5385 amt *= sizeof (unsigned long int);
5386 counts = (unsigned long int *) bfd_malloc (amt);
5390 /* Compute the "optimal" size for the hash table. The criteria is a
5391 minimal chain length. The minor criteria is (of course) the size
5393 for (i = minsize; i < maxsize; ++i)
5395 /* Walk through the array of hashcodes and count the collisions. */
5396 BFD_HOST_U_64_BIT max;
5397 unsigned long int j;
5398 unsigned long int fact;
5400 if (gnu_hash && (i & 31) == 0)
5403 memset (counts, '\0', i * sizeof (unsigned long int));
5405 /* Determine how often each hash bucket is used. */
5406 for (j = 0; j < nsyms; ++j)
5407 ++counts[hashcodes[j] % i];
5409 /* For the weight function we need some information about the
5410 pagesize on the target. This is information need not be 100%
5411 accurate. Since this information is not available (so far) we
5412 define it here to a reasonable default value. If it is crucial
5413 to have a better value some day simply define this value. */
5414 # ifndef BFD_TARGET_PAGESIZE
5415 # define BFD_TARGET_PAGESIZE (4096)
5418 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5420 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5423 /* Variant 1: optimize for short chains. We add the squares
5424 of all the chain lengths (which favors many small chain
5425 over a few long chains). */
5426 for (j = 0; j < i; ++j)
5427 max += counts[j] * counts[j];
5429 /* This adds penalties for the overall size of the table. */
5430 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5433 /* Variant 2: Optimize a lot more for small table. Here we
5434 also add squares of the size but we also add penalties for
5435 empty slots (the +1 term). */
5436 for (j = 0; j < i; ++j)
5437 max += (1 + counts[j]) * (1 + counts[j]);
5439 /* The overall size of the table is considered, but not as
5440 strong as in variant 1, where it is squared. */
5441 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5445 /* Compare with current best results. */
5446 if (max < best_chlen)
5450 no_improvement_count = 0;
5452 /* PR 11843: Avoid futile long searches for the best bucket size
5453 when there are a large number of symbols. */
5454 else if (++no_improvement_count == 100)
5461 #endif /* defined (BFD_HOST_U_64_BIT) */
5463 /* This is the fallback solution if no 64bit type is available or if we
5464 are not supposed to spend much time on optimizations. We select the
5465 bucket count using a fixed set of numbers. */
5466 for (i = 0; elf_buckets[i] != 0; i++)
5468 best_size = elf_buckets[i];
5469 if (nsyms < elf_buckets[i + 1])
5472 if (gnu_hash && best_size < 2)
5479 /* Size any SHT_GROUP section for ld -r. */
5482 _bfd_elf_size_group_sections (struct bfd_link_info *info)
5486 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
5487 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
5488 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
5493 /* Set a default stack segment size. The value in INFO wins. If it
5494 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
5495 undefined it is initialized. */
5498 bfd_elf_stack_segment_size (bfd *output_bfd,
5499 struct bfd_link_info *info,
5500 const char *legacy_symbol,
5501 bfd_vma default_size)
5503 struct elf_link_hash_entry *h = NULL;
5505 /* Look for legacy symbol. */
5507 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
5508 FALSE, FALSE, FALSE);
5509 if (h && (h->root.type == bfd_link_hash_defined
5510 || h->root.type == bfd_link_hash_defweak)
5512 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
5514 /* The symbol has no type if specified on the command line. */
5515 h->type = STT_OBJECT;
5516 if (info->stacksize)
5517 (*_bfd_error_handler) (_("%B: stack size specified and %s set"),
5518 output_bfd, legacy_symbol);
5519 else if (h->root.u.def.section != bfd_abs_section_ptr)
5520 (*_bfd_error_handler) (_("%B: %s not absolute"),
5521 output_bfd, legacy_symbol);
5523 info->stacksize = h->root.u.def.value;
5526 if (!info->stacksize)
5527 /* If the user didn't set a size, or explicitly inhibit the
5528 size, set it now. */
5529 info->stacksize = default_size;
5531 /* Provide the legacy symbol, if it is referenced. */
5532 if (h && (h->root.type == bfd_link_hash_undefined
5533 || h->root.type == bfd_link_hash_undefweak))
5535 struct bfd_link_hash_entry *bh = NULL;
5537 if (!(_bfd_generic_link_add_one_symbol
5538 (info, output_bfd, legacy_symbol,
5539 BSF_GLOBAL, bfd_abs_section_ptr,
5540 info->stacksize >= 0 ? info->stacksize : 0,
5541 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
5544 h = (struct elf_link_hash_entry *) bh;
5546 h->type = STT_OBJECT;
5552 /* Set up the sizes and contents of the ELF dynamic sections. This is
5553 called by the ELF linker emulation before_allocation routine. We
5554 must set the sizes of the sections before the linker sets the
5555 addresses of the various sections. */
5558 bfd_elf_size_dynamic_sections (bfd *output_bfd,
5561 const char *filter_shlib,
5563 const char *depaudit,
5564 const char * const *auxiliary_filters,
5565 struct bfd_link_info *info,
5566 asection **sinterpptr)
5568 bfd_size_type soname_indx;
5570 const struct elf_backend_data *bed;
5571 struct elf_info_failed asvinfo;
5575 soname_indx = (bfd_size_type) -1;
5577 if (!is_elf_hash_table (info->hash))
5580 bed = get_elf_backend_data (output_bfd);
5582 /* Any syms created from now on start with -1 in
5583 got.refcount/offset and plt.refcount/offset. */
5584 elf_hash_table (info)->init_got_refcount
5585 = elf_hash_table (info)->init_got_offset;
5586 elf_hash_table (info)->init_plt_refcount
5587 = elf_hash_table (info)->init_plt_offset;
5589 if (info->relocatable
5590 && !_bfd_elf_size_group_sections (info))
5593 /* The backend may have to create some sections regardless of whether
5594 we're dynamic or not. */
5595 if (bed->elf_backend_always_size_sections
5596 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
5599 /* Determine any GNU_STACK segment requirements, after the backend
5600 has had a chance to set a default segment size. */
5601 if (info->execstack)
5602 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
5603 else if (info->noexecstack)
5604 elf_stack_flags (output_bfd) = PF_R | PF_W;
5608 asection *notesec = NULL;
5611 for (inputobj = info->input_bfds;
5613 inputobj = inputobj->link_next)
5618 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
5620 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
5623 if (s->flags & SEC_CODE)
5627 else if (bed->default_execstack)
5630 if (notesec || info->stacksize > 0)
5631 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
5632 if (notesec && exec && info->relocatable
5633 && notesec->output_section != bfd_abs_section_ptr)
5634 notesec->output_section->flags |= SEC_CODE;
5637 dynobj = elf_hash_table (info)->dynobj;
5639 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5641 struct elf_info_failed eif;
5642 struct elf_link_hash_entry *h;
5644 struct bfd_elf_version_tree *t;
5645 struct bfd_elf_version_expr *d;
5647 bfd_boolean all_defined;
5649 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
5650 BFD_ASSERT (*sinterpptr != NULL || !info->executable);
5654 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5656 if (soname_indx == (bfd_size_type) -1
5657 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
5663 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
5665 info->flags |= DF_SYMBOLIC;
5673 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
5675 if (indx == (bfd_size_type) -1)
5678 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
5679 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
5683 if (filter_shlib != NULL)
5687 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5688 filter_shlib, TRUE);
5689 if (indx == (bfd_size_type) -1
5690 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
5694 if (auxiliary_filters != NULL)
5696 const char * const *p;
5698 for (p = auxiliary_filters; *p != NULL; p++)
5702 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5704 if (indx == (bfd_size_type) -1
5705 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
5714 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
5716 if (indx == (bfd_size_type) -1
5717 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
5721 if (depaudit != NULL)
5725 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
5727 if (indx == (bfd_size_type) -1
5728 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
5735 /* If we are supposed to export all symbols into the dynamic symbol
5736 table (this is not the normal case), then do so. */
5737 if (info->export_dynamic
5738 || (info->executable && info->dynamic))
5740 elf_link_hash_traverse (elf_hash_table (info),
5741 _bfd_elf_export_symbol,
5747 /* Make all global versions with definition. */
5748 for (t = info->version_info; t != NULL; t = t->next)
5749 for (d = t->globals.list; d != NULL; d = d->next)
5750 if (!d->symver && d->literal)
5752 const char *verstr, *name;
5753 size_t namelen, verlen, newlen;
5754 char *newname, *p, leading_char;
5755 struct elf_link_hash_entry *newh;
5757 leading_char = bfd_get_symbol_leading_char (output_bfd);
5759 namelen = strlen (name) + (leading_char != '\0');
5761 verlen = strlen (verstr);
5762 newlen = namelen + verlen + 3;
5764 newname = (char *) bfd_malloc (newlen);
5765 if (newname == NULL)
5767 newname[0] = leading_char;
5768 memcpy (newname + (leading_char != '\0'), name, namelen);
5770 /* Check the hidden versioned definition. */
5771 p = newname + namelen;
5773 memcpy (p, verstr, verlen + 1);
5774 newh = elf_link_hash_lookup (elf_hash_table (info),
5775 newname, FALSE, FALSE,
5778 || (newh->root.type != bfd_link_hash_defined
5779 && newh->root.type != bfd_link_hash_defweak))
5781 /* Check the default versioned definition. */
5783 memcpy (p, verstr, verlen + 1);
5784 newh = elf_link_hash_lookup (elf_hash_table (info),
5785 newname, FALSE, FALSE,
5790 /* Mark this version if there is a definition and it is
5791 not defined in a shared object. */
5793 && !newh->def_dynamic
5794 && (newh->root.type == bfd_link_hash_defined
5795 || newh->root.type == bfd_link_hash_defweak))
5799 /* Attach all the symbols to their version information. */
5800 asvinfo.info = info;
5801 asvinfo.failed = FALSE;
5803 elf_link_hash_traverse (elf_hash_table (info),
5804 _bfd_elf_link_assign_sym_version,
5809 if (!info->allow_undefined_version)
5811 /* Check if all global versions have a definition. */
5813 for (t = info->version_info; t != NULL; t = t->next)
5814 for (d = t->globals.list; d != NULL; d = d->next)
5815 if (d->literal && !d->symver && !d->script)
5817 (*_bfd_error_handler)
5818 (_("%s: undefined version: %s"),
5819 d->pattern, t->name);
5820 all_defined = FALSE;
5825 bfd_set_error (bfd_error_bad_value);
5830 /* Find all symbols which were defined in a dynamic object and make
5831 the backend pick a reasonable value for them. */
5832 elf_link_hash_traverse (elf_hash_table (info),
5833 _bfd_elf_adjust_dynamic_symbol,
5838 /* Add some entries to the .dynamic section. We fill in some of the
5839 values later, in bfd_elf_final_link, but we must add the entries
5840 now so that we know the final size of the .dynamic section. */
5842 /* If there are initialization and/or finalization functions to
5843 call then add the corresponding DT_INIT/DT_FINI entries. */
5844 h = (info->init_function
5845 ? elf_link_hash_lookup (elf_hash_table (info),
5846 info->init_function, FALSE,
5853 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
5856 h = (info->fini_function
5857 ? elf_link_hash_lookup (elf_hash_table (info),
5858 info->fini_function, FALSE,
5865 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
5869 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
5870 if (s != NULL && s->linker_has_input)
5872 /* DT_PREINIT_ARRAY is not allowed in shared library. */
5873 if (! info->executable)
5878 for (sub = info->input_bfds; sub != NULL;
5879 sub = sub->link_next)
5880 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
5881 for (o = sub->sections; o != NULL; o = o->next)
5882 if (elf_section_data (o)->this_hdr.sh_type
5883 == SHT_PREINIT_ARRAY)
5885 (*_bfd_error_handler)
5886 (_("%B: .preinit_array section is not allowed in DSO"),
5891 bfd_set_error (bfd_error_nonrepresentable_section);
5895 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
5896 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
5899 s = bfd_get_section_by_name (output_bfd, ".init_array");
5900 if (s != NULL && s->linker_has_input)
5902 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
5903 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
5906 s = bfd_get_section_by_name (output_bfd, ".fini_array");
5907 if (s != NULL && s->linker_has_input)
5909 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
5910 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
5914 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
5915 /* If .dynstr is excluded from the link, we don't want any of
5916 these tags. Strictly, we should be checking each section
5917 individually; This quick check covers for the case where
5918 someone does a /DISCARD/ : { *(*) }. */
5919 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
5921 bfd_size_type strsize;
5923 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5924 if ((info->emit_hash
5925 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
5926 || (info->emit_gnu_hash
5927 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
5928 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
5929 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
5930 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
5931 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
5932 bed->s->sizeof_sym))
5937 /* The backend must work out the sizes of all the other dynamic
5940 && bed->elf_backend_size_dynamic_sections != NULL
5941 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
5944 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
5947 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5949 unsigned long section_sym_count;
5950 struct bfd_elf_version_tree *verdefs;
5953 /* Set up the version definition section. */
5954 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5955 BFD_ASSERT (s != NULL);
5957 /* We may have created additional version definitions if we are
5958 just linking a regular application. */
5959 verdefs = info->version_info;
5961 /* Skip anonymous version tag. */
5962 if (verdefs != NULL && verdefs->vernum == 0)
5963 verdefs = verdefs->next;
5965 if (verdefs == NULL && !info->create_default_symver)
5966 s->flags |= SEC_EXCLUDE;
5971 struct bfd_elf_version_tree *t;
5973 Elf_Internal_Verdef def;
5974 Elf_Internal_Verdaux defaux;
5975 struct bfd_link_hash_entry *bh;
5976 struct elf_link_hash_entry *h;
5982 /* Make space for the base version. */
5983 size += sizeof (Elf_External_Verdef);
5984 size += sizeof (Elf_External_Verdaux);
5987 /* Make space for the default version. */
5988 if (info->create_default_symver)
5990 size += sizeof (Elf_External_Verdef);
5994 for (t = verdefs; t != NULL; t = t->next)
5996 struct bfd_elf_version_deps *n;
5998 /* Don't emit base version twice. */
6002 size += sizeof (Elf_External_Verdef);
6003 size += sizeof (Elf_External_Verdaux);
6006 for (n = t->deps; n != NULL; n = n->next)
6007 size += sizeof (Elf_External_Verdaux);
6011 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6012 if (s->contents == NULL && s->size != 0)
6015 /* Fill in the version definition section. */
6019 def.vd_version = VER_DEF_CURRENT;
6020 def.vd_flags = VER_FLG_BASE;
6023 if (info->create_default_symver)
6025 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6026 def.vd_next = sizeof (Elf_External_Verdef);
6030 def.vd_aux = sizeof (Elf_External_Verdef);
6031 def.vd_next = (sizeof (Elf_External_Verdef)
6032 + sizeof (Elf_External_Verdaux));
6035 if (soname_indx != (bfd_size_type) -1)
6037 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6039 def.vd_hash = bfd_elf_hash (soname);
6040 defaux.vda_name = soname_indx;
6047 name = lbasename (output_bfd->filename);
6048 def.vd_hash = bfd_elf_hash (name);
6049 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6051 if (indx == (bfd_size_type) -1)
6053 defaux.vda_name = indx;
6055 defaux.vda_next = 0;
6057 _bfd_elf_swap_verdef_out (output_bfd, &def,
6058 (Elf_External_Verdef *) p);
6059 p += sizeof (Elf_External_Verdef);
6060 if (info->create_default_symver)
6062 /* Add a symbol representing this version. */
6064 if (! (_bfd_generic_link_add_one_symbol
6065 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6067 get_elf_backend_data (dynobj)->collect, &bh)))
6069 h = (struct elf_link_hash_entry *) bh;
6072 h->type = STT_OBJECT;
6073 h->verinfo.vertree = NULL;
6075 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6078 /* Create a duplicate of the base version with the same
6079 aux block, but different flags. */
6082 def.vd_aux = sizeof (Elf_External_Verdef);
6084 def.vd_next = (sizeof (Elf_External_Verdef)
6085 + sizeof (Elf_External_Verdaux));
6088 _bfd_elf_swap_verdef_out (output_bfd, &def,
6089 (Elf_External_Verdef *) p);
6090 p += sizeof (Elf_External_Verdef);
6092 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6093 (Elf_External_Verdaux *) p);
6094 p += sizeof (Elf_External_Verdaux);
6096 for (t = verdefs; t != NULL; t = t->next)
6099 struct bfd_elf_version_deps *n;
6101 /* Don't emit the base version twice. */
6106 for (n = t->deps; n != NULL; n = n->next)
6109 /* Add a symbol representing this version. */
6111 if (! (_bfd_generic_link_add_one_symbol
6112 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6114 get_elf_backend_data (dynobj)->collect, &bh)))
6116 h = (struct elf_link_hash_entry *) bh;
6119 h->type = STT_OBJECT;
6120 h->verinfo.vertree = t;
6122 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6125 def.vd_version = VER_DEF_CURRENT;
6127 if (t->globals.list == NULL
6128 && t->locals.list == NULL
6130 def.vd_flags |= VER_FLG_WEAK;
6131 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
6132 def.vd_cnt = cdeps + 1;
6133 def.vd_hash = bfd_elf_hash (t->name);
6134 def.vd_aux = sizeof (Elf_External_Verdef);
6137 /* If a basever node is next, it *must* be the last node in
6138 the chain, otherwise Verdef construction breaks. */
6139 if (t->next != NULL && t->next->vernum == 0)
6140 BFD_ASSERT (t->next->next == NULL);
6142 if (t->next != NULL && t->next->vernum != 0)
6143 def.vd_next = (sizeof (Elf_External_Verdef)
6144 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6146 _bfd_elf_swap_verdef_out (output_bfd, &def,
6147 (Elf_External_Verdef *) p);
6148 p += sizeof (Elf_External_Verdef);
6150 defaux.vda_name = h->dynstr_index;
6151 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6153 defaux.vda_next = 0;
6154 if (t->deps != NULL)
6155 defaux.vda_next = sizeof (Elf_External_Verdaux);
6156 t->name_indx = defaux.vda_name;
6158 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6159 (Elf_External_Verdaux *) p);
6160 p += sizeof (Elf_External_Verdaux);
6162 for (n = t->deps; n != NULL; n = n->next)
6164 if (n->version_needed == NULL)
6166 /* This can happen if there was an error in the
6168 defaux.vda_name = 0;
6172 defaux.vda_name = n->version_needed->name_indx;
6173 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6176 if (n->next == NULL)
6177 defaux.vda_next = 0;
6179 defaux.vda_next = sizeof (Elf_External_Verdaux);
6181 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6182 (Elf_External_Verdaux *) p);
6183 p += sizeof (Elf_External_Verdaux);
6187 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6188 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs))
6191 elf_tdata (output_bfd)->cverdefs = cdefs;
6194 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6196 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6199 else if (info->flags & DF_BIND_NOW)
6201 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6207 if (info->executable)
6208 info->flags_1 &= ~ (DF_1_INITFIRST
6211 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6215 /* Work out the size of the version reference section. */
6217 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
6218 BFD_ASSERT (s != NULL);
6220 struct elf_find_verdep_info sinfo;
6223 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6224 if (sinfo.vers == 0)
6226 sinfo.failed = FALSE;
6228 elf_link_hash_traverse (elf_hash_table (info),
6229 _bfd_elf_link_find_version_dependencies,
6234 if (elf_tdata (output_bfd)->verref == NULL)
6235 s->flags |= SEC_EXCLUDE;
6238 Elf_Internal_Verneed *t;
6243 /* Build the version dependency section. */
6246 for (t = elf_tdata (output_bfd)->verref;
6250 Elf_Internal_Vernaux *a;
6252 size += sizeof (Elf_External_Verneed);
6254 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6255 size += sizeof (Elf_External_Vernaux);
6259 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6260 if (s->contents == NULL)
6264 for (t = elf_tdata (output_bfd)->verref;
6269 Elf_Internal_Vernaux *a;
6273 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6276 t->vn_version = VER_NEED_CURRENT;
6278 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6279 elf_dt_name (t->vn_bfd) != NULL
6280 ? elf_dt_name (t->vn_bfd)
6281 : lbasename (t->vn_bfd->filename),
6283 if (indx == (bfd_size_type) -1)
6286 t->vn_aux = sizeof (Elf_External_Verneed);
6287 if (t->vn_nextref == NULL)
6290 t->vn_next = (sizeof (Elf_External_Verneed)
6291 + caux * sizeof (Elf_External_Vernaux));
6293 _bfd_elf_swap_verneed_out (output_bfd, t,
6294 (Elf_External_Verneed *) p);
6295 p += sizeof (Elf_External_Verneed);
6297 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6299 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6300 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6301 a->vna_nodename, FALSE);
6302 if (indx == (bfd_size_type) -1)
6305 if (a->vna_nextptr == NULL)
6308 a->vna_next = sizeof (Elf_External_Vernaux);
6310 _bfd_elf_swap_vernaux_out (output_bfd, a,
6311 (Elf_External_Vernaux *) p);
6312 p += sizeof (Elf_External_Vernaux);
6316 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6317 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6320 elf_tdata (output_bfd)->cverrefs = crefs;
6324 if ((elf_tdata (output_bfd)->cverrefs == 0
6325 && elf_tdata (output_bfd)->cverdefs == 0)
6326 || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6327 §ion_sym_count) == 0)
6329 s = bfd_get_linker_section (dynobj, ".gnu.version");
6330 s->flags |= SEC_EXCLUDE;
6336 /* Find the first non-excluded output section. We'll use its
6337 section symbol for some emitted relocs. */
6339 _bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6343 for (s = output_bfd->sections; s != NULL; s = s->next)
6344 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
6345 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6347 elf_hash_table (info)->text_index_section = s;
6352 /* Find two non-excluded output sections, one for code, one for data.
6353 We'll use their section symbols for some emitted relocs. */
6355 _bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
6359 /* Data first, since setting text_index_section changes
6360 _bfd_elf_link_omit_section_dynsym. */
6361 for (s = output_bfd->sections; s != NULL; s = s->next)
6362 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
6363 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6365 elf_hash_table (info)->data_index_section = s;
6369 for (s = output_bfd->sections; s != NULL; s = s->next)
6370 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
6371 == (SEC_ALLOC | SEC_READONLY))
6372 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6374 elf_hash_table (info)->text_index_section = s;
6378 if (elf_hash_table (info)->text_index_section == NULL)
6379 elf_hash_table (info)->text_index_section
6380 = elf_hash_table (info)->data_index_section;
6384 bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6386 const struct elf_backend_data *bed;
6388 if (!is_elf_hash_table (info->hash))
6391 bed = get_elf_backend_data (output_bfd);
6392 (*bed->elf_backend_init_index_section) (output_bfd, info);
6394 if (elf_hash_table (info)->dynamic_sections_created)
6398 bfd_size_type dynsymcount;
6399 unsigned long section_sym_count;
6400 unsigned int dtagcount;
6402 dynobj = elf_hash_table (info)->dynobj;
6404 /* Assign dynsym indicies. In a shared library we generate a
6405 section symbol for each output section, which come first.
6406 Next come all of the back-end allocated local dynamic syms,
6407 followed by the rest of the global symbols. */
6409 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6410 §ion_sym_count);
6412 /* Work out the size of the symbol version section. */
6413 s = bfd_get_linker_section (dynobj, ".gnu.version");
6414 BFD_ASSERT (s != NULL);
6415 if (dynsymcount != 0
6416 && (s->flags & SEC_EXCLUDE) == 0)
6418 s->size = dynsymcount * sizeof (Elf_External_Versym);
6419 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6420 if (s->contents == NULL)
6423 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6427 /* Set the size of the .dynsym and .hash sections. We counted
6428 the number of dynamic symbols in elf_link_add_object_symbols.
6429 We will build the contents of .dynsym and .hash when we build
6430 the final symbol table, because until then we do not know the
6431 correct value to give the symbols. We built the .dynstr
6432 section as we went along in elf_link_add_object_symbols. */
6433 s = bfd_get_linker_section (dynobj, ".dynsym");
6434 BFD_ASSERT (s != NULL);
6435 s->size = dynsymcount * bed->s->sizeof_sym;
6437 if (dynsymcount != 0)
6439 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6440 if (s->contents == NULL)
6443 /* The first entry in .dynsym is a dummy symbol.
6444 Clear all the section syms, in case we don't output them all. */
6445 ++section_sym_count;
6446 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
6449 elf_hash_table (info)->bucketcount = 0;
6451 /* Compute the size of the hashing table. As a side effect this
6452 computes the hash values for all the names we export. */
6453 if (info->emit_hash)
6455 unsigned long int *hashcodes;
6456 struct hash_codes_info hashinf;
6458 unsigned long int nsyms;
6460 size_t hash_entry_size;
6462 /* Compute the hash values for all exported symbols. At the same
6463 time store the values in an array so that we could use them for
6465 amt = dynsymcount * sizeof (unsigned long int);
6466 hashcodes = (unsigned long int *) bfd_malloc (amt);
6467 if (hashcodes == NULL)
6469 hashinf.hashcodes = hashcodes;
6470 hashinf.error = FALSE;
6472 /* Put all hash values in HASHCODES. */
6473 elf_link_hash_traverse (elf_hash_table (info),
6474 elf_collect_hash_codes, &hashinf);
6481 nsyms = hashinf.hashcodes - hashcodes;
6483 = compute_bucket_count (info, hashcodes, nsyms, 0);
6486 if (bucketcount == 0)
6489 elf_hash_table (info)->bucketcount = bucketcount;
6491 s = bfd_get_linker_section (dynobj, ".hash");
6492 BFD_ASSERT (s != NULL);
6493 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6494 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
6495 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6496 if (s->contents == NULL)
6499 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6500 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6501 s->contents + hash_entry_size);
6504 if (info->emit_gnu_hash)
6507 unsigned char *contents;
6508 struct collect_gnu_hash_codes cinfo;
6512 memset (&cinfo, 0, sizeof (cinfo));
6514 /* Compute the hash values for all exported symbols. At the same
6515 time store the values in an array so that we could use them for
6517 amt = dynsymcount * 2 * sizeof (unsigned long int);
6518 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
6519 if (cinfo.hashcodes == NULL)
6522 cinfo.hashval = cinfo.hashcodes + dynsymcount;
6523 cinfo.min_dynindx = -1;
6524 cinfo.output_bfd = output_bfd;
6527 /* Put all hash values in HASHCODES. */
6528 elf_link_hash_traverse (elf_hash_table (info),
6529 elf_collect_gnu_hash_codes, &cinfo);
6532 free (cinfo.hashcodes);
6537 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6539 if (bucketcount == 0)
6541 free (cinfo.hashcodes);
6545 s = bfd_get_linker_section (dynobj, ".gnu.hash");
6546 BFD_ASSERT (s != NULL);
6548 if (cinfo.nsyms == 0)
6550 /* Empty .gnu.hash section is special. */
6551 BFD_ASSERT (cinfo.min_dynindx == -1);
6552 free (cinfo.hashcodes);
6553 s->size = 5 * 4 + bed->s->arch_size / 8;
6554 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6555 if (contents == NULL)
6557 s->contents = contents;
6558 /* 1 empty bucket. */
6559 bfd_put_32 (output_bfd, 1, contents);
6560 /* SYMIDX above the special symbol 0. */
6561 bfd_put_32 (output_bfd, 1, contents + 4);
6562 /* Just one word for bitmask. */
6563 bfd_put_32 (output_bfd, 1, contents + 8);
6564 /* Only hash fn bloom filter. */
6565 bfd_put_32 (output_bfd, 0, contents + 12);
6566 /* No hashes are valid - empty bitmask. */
6567 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
6568 /* No hashes in the only bucket. */
6569 bfd_put_32 (output_bfd, 0,
6570 contents + 16 + bed->s->arch_size / 8);
6574 unsigned long int maskwords, maskbitslog2, x;
6575 BFD_ASSERT (cinfo.min_dynindx != -1);
6579 while ((x >>= 1) != 0)
6581 if (maskbitslog2 < 3)
6583 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
6584 maskbitslog2 = maskbitslog2 + 3;
6586 maskbitslog2 = maskbitslog2 + 2;
6587 if (bed->s->arch_size == 64)
6589 if (maskbitslog2 == 5)
6595 cinfo.mask = (1 << cinfo.shift1) - 1;
6596 cinfo.shift2 = maskbitslog2;
6597 cinfo.maskbits = 1 << maskbitslog2;
6598 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6599 amt = bucketcount * sizeof (unsigned long int) * 2;
6600 amt += maskwords * sizeof (bfd_vma);
6601 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
6602 if (cinfo.bitmask == NULL)
6604 free (cinfo.hashcodes);
6608 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
6609 cinfo.indx = cinfo.counts + bucketcount;
6610 cinfo.symindx = dynsymcount - cinfo.nsyms;
6611 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
6613 /* Determine how often each hash bucket is used. */
6614 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
6615 for (i = 0; i < cinfo.nsyms; ++i)
6616 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
6618 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
6619 if (cinfo.counts[i] != 0)
6621 cinfo.indx[i] = cnt;
6622 cnt += cinfo.counts[i];
6624 BFD_ASSERT (cnt == dynsymcount);
6625 cinfo.bucketcount = bucketcount;
6626 cinfo.local_indx = cinfo.min_dynindx;
6628 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
6629 s->size += cinfo.maskbits / 8;
6630 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6631 if (contents == NULL)
6633 free (cinfo.bitmask);
6634 free (cinfo.hashcodes);
6638 s->contents = contents;
6639 bfd_put_32 (output_bfd, bucketcount, contents);
6640 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
6641 bfd_put_32 (output_bfd, maskwords, contents + 8);
6642 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
6643 contents += 16 + cinfo.maskbits / 8;
6645 for (i = 0; i < bucketcount; ++i)
6647 if (cinfo.counts[i] == 0)
6648 bfd_put_32 (output_bfd, 0, contents);
6650 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
6654 cinfo.contents = contents;
6656 /* Renumber dynamic symbols, populate .gnu.hash section. */
6657 elf_link_hash_traverse (elf_hash_table (info),
6658 elf_renumber_gnu_hash_syms, &cinfo);
6660 contents = s->contents + 16;
6661 for (i = 0; i < maskwords; ++i)
6663 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
6665 contents += bed->s->arch_size / 8;
6668 free (cinfo.bitmask);
6669 free (cinfo.hashcodes);
6673 s = bfd_get_linker_section (dynobj, ".dynstr");
6674 BFD_ASSERT (s != NULL);
6676 elf_finalize_dynstr (output_bfd, info);
6678 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
6680 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
6681 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
6688 /* Make sure sec_info_type is cleared if sec_info is cleared too. */
6691 merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
6694 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
6695 sec->sec_info_type = SEC_INFO_TYPE_NONE;
6698 /* Finish SHF_MERGE section merging. */
6701 _bfd_elf_merge_sections (bfd *abfd, struct bfd_link_info *info)
6706 if (!is_elf_hash_table (info->hash))
6709 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
6710 if ((ibfd->flags & DYNAMIC) == 0)
6711 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6712 if ((sec->flags & SEC_MERGE) != 0
6713 && !bfd_is_abs_section (sec->output_section))
6715 struct bfd_elf_section_data *secdata;
6717 secdata = elf_section_data (sec);
6718 if (! _bfd_add_merge_section (abfd,
6719 &elf_hash_table (info)->merge_info,
6720 sec, &secdata->sec_info))
6722 else if (secdata->sec_info)
6723 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
6726 if (elf_hash_table (info)->merge_info != NULL)
6727 _bfd_merge_sections (abfd, info, elf_hash_table (info)->merge_info,
6728 merge_sections_remove_hook);
6732 /* Create an entry in an ELF linker hash table. */
6734 struct bfd_hash_entry *
6735 _bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
6736 struct bfd_hash_table *table,
6739 /* Allocate the structure if it has not already been allocated by a
6743 entry = (struct bfd_hash_entry *)
6744 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
6749 /* Call the allocation method of the superclass. */
6750 entry = _bfd_link_hash_newfunc (entry, table, string);
6753 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
6754 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
6756 /* Set local fields. */
6759 ret->got = htab->init_got_refcount;
6760 ret->plt = htab->init_plt_refcount;
6761 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
6762 - offsetof (struct elf_link_hash_entry, size)));
6763 /* Assume that we have been called by a non-ELF symbol reader.
6764 This flag is then reset by the code which reads an ELF input
6765 file. This ensures that a symbol created by a non-ELF symbol
6766 reader will have the flag set correctly. */
6773 /* Copy data from an indirect symbol to its direct symbol, hiding the
6774 old indirect symbol. Also used for copying flags to a weakdef. */
6777 _bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
6778 struct elf_link_hash_entry *dir,
6779 struct elf_link_hash_entry *ind)
6781 struct elf_link_hash_table *htab;
6783 /* Copy down any references that we may have already seen to the
6784 symbol which just became indirect. */
6786 dir->ref_dynamic |= ind->ref_dynamic;
6787 dir->ref_regular |= ind->ref_regular;
6788 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
6789 dir->non_got_ref |= ind->non_got_ref;
6790 dir->needs_plt |= ind->needs_plt;
6791 dir->pointer_equality_needed |= ind->pointer_equality_needed;
6793 if (ind->root.type != bfd_link_hash_indirect)
6796 /* Copy over the global and procedure linkage table refcount entries.
6797 These may have been already set up by a check_relocs routine. */
6798 htab = elf_hash_table (info);
6799 if (ind->got.refcount > htab->init_got_refcount.refcount)
6801 if (dir->got.refcount < 0)
6802 dir->got.refcount = 0;
6803 dir->got.refcount += ind->got.refcount;
6804 ind->got.refcount = htab->init_got_refcount.refcount;
6807 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
6809 if (dir->plt.refcount < 0)
6810 dir->plt.refcount = 0;
6811 dir->plt.refcount += ind->plt.refcount;
6812 ind->plt.refcount = htab->init_plt_refcount.refcount;
6815 if (ind->dynindx != -1)
6817 if (dir->dynindx != -1)
6818 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
6819 dir->dynindx = ind->dynindx;
6820 dir->dynstr_index = ind->dynstr_index;
6822 ind->dynstr_index = 0;
6827 _bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
6828 struct elf_link_hash_entry *h,
6829 bfd_boolean force_local)
6831 /* STT_GNU_IFUNC symbol must go through PLT. */
6832 if (h->type != STT_GNU_IFUNC)
6834 h->plt = elf_hash_table (info)->init_plt_offset;
6839 h->forced_local = 1;
6840 if (h->dynindx != -1)
6843 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
6849 /* Initialize an ELF linker hash table. *TABLE has been zeroed by our
6853 _bfd_elf_link_hash_table_init
6854 (struct elf_link_hash_table *table,
6856 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
6857 struct bfd_hash_table *,
6859 unsigned int entsize,
6860 enum elf_target_id target_id)
6863 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
6865 table->init_got_refcount.refcount = can_refcount - 1;
6866 table->init_plt_refcount.refcount = can_refcount - 1;
6867 table->init_got_offset.offset = -(bfd_vma) 1;
6868 table->init_plt_offset.offset = -(bfd_vma) 1;
6869 /* The first dynamic symbol is a dummy. */
6870 table->dynsymcount = 1;
6872 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
6874 table->root.type = bfd_link_elf_hash_table;
6875 table->hash_table_id = target_id;
6880 /* Create an ELF linker hash table. */
6882 struct bfd_link_hash_table *
6883 _bfd_elf_link_hash_table_create (bfd *abfd)
6885 struct elf_link_hash_table *ret;
6886 bfd_size_type amt = sizeof (struct elf_link_hash_table);
6888 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
6892 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
6893 sizeof (struct elf_link_hash_entry),
6903 /* Destroy an ELF linker hash table. */
6906 _bfd_elf_link_hash_table_free (struct bfd_link_hash_table *hash)
6908 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) hash;
6909 if (htab->dynstr != NULL)
6910 _bfd_elf_strtab_free (htab->dynstr);
6911 _bfd_merge_sections_free (htab->merge_info);
6912 _bfd_generic_link_hash_table_free (hash);
6915 /* This is a hook for the ELF emulation code in the generic linker to
6916 tell the backend linker what file name to use for the DT_NEEDED
6917 entry for a dynamic object. */
6920 bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
6922 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6923 && bfd_get_format (abfd) == bfd_object)
6924 elf_dt_name (abfd) = name;
6928 bfd_elf_get_dyn_lib_class (bfd *abfd)
6931 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6932 && bfd_get_format (abfd) == bfd_object)
6933 lib_class = elf_dyn_lib_class (abfd);
6940 bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
6942 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6943 && bfd_get_format (abfd) == bfd_object)
6944 elf_dyn_lib_class (abfd) = lib_class;
6947 /* Get the list of DT_NEEDED entries for a link. This is a hook for
6948 the linker ELF emulation code. */
6950 struct bfd_link_needed_list *
6951 bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
6952 struct bfd_link_info *info)
6954 if (! is_elf_hash_table (info->hash))
6956 return elf_hash_table (info)->needed;
6959 /* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
6960 hook for the linker ELF emulation code. */
6962 struct bfd_link_needed_list *
6963 bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
6964 struct bfd_link_info *info)
6966 if (! is_elf_hash_table (info->hash))
6968 return elf_hash_table (info)->runpath;
6971 /* Get the name actually used for a dynamic object for a link. This
6972 is the SONAME entry if there is one. Otherwise, it is the string
6973 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
6976 bfd_elf_get_dt_soname (bfd *abfd)
6978 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6979 && bfd_get_format (abfd) == bfd_object)
6980 return elf_dt_name (abfd);
6984 /* Get the list of DT_NEEDED entries from a BFD. This is a hook for
6985 the ELF linker emulation code. */
6988 bfd_elf_get_bfd_needed_list (bfd *abfd,
6989 struct bfd_link_needed_list **pneeded)
6992 bfd_byte *dynbuf = NULL;
6993 unsigned int elfsec;
6994 unsigned long shlink;
6995 bfd_byte *extdyn, *extdynend;
6997 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
7001 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
7002 || bfd_get_format (abfd) != bfd_object)
7005 s = bfd_get_section_by_name (abfd, ".dynamic");
7006 if (s == NULL || s->size == 0)
7009 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
7012 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
7013 if (elfsec == SHN_BAD)
7016 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
7018 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7019 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7022 extdynend = extdyn + s->size;
7023 for (; extdyn < extdynend; extdyn += extdynsize)
7025 Elf_Internal_Dyn dyn;
7027 (*swap_dyn_in) (abfd, extdyn, &dyn);
7029 if (dyn.d_tag == DT_NULL)
7032 if (dyn.d_tag == DT_NEEDED)
7035 struct bfd_link_needed_list *l;
7036 unsigned int tagv = dyn.d_un.d_val;
7039 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7044 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
7065 struct elf_symbuf_symbol
7067 unsigned long st_name; /* Symbol name, index in string tbl */
7068 unsigned char st_info; /* Type and binding attributes */
7069 unsigned char st_other; /* Visibilty, and target specific */
7072 struct elf_symbuf_head
7074 struct elf_symbuf_symbol *ssym;
7075 bfd_size_type count;
7076 unsigned int st_shndx;
7083 Elf_Internal_Sym *isym;
7084 struct elf_symbuf_symbol *ssym;
7089 /* Sort references to symbols by ascending section number. */
7092 elf_sort_elf_symbol (const void *arg1, const void *arg2)
7094 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7095 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7097 return s1->st_shndx - s2->st_shndx;
7101 elf_sym_name_compare (const void *arg1, const void *arg2)
7103 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7104 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7105 return strcmp (s1->name, s2->name);
7108 static struct elf_symbuf_head *
7109 elf_create_symbuf (bfd_size_type symcount, Elf_Internal_Sym *isymbuf)
7111 Elf_Internal_Sym **ind, **indbufend, **indbuf;
7112 struct elf_symbuf_symbol *ssym;
7113 struct elf_symbuf_head *ssymbuf, *ssymhead;
7114 bfd_size_type i, shndx_count, total_size;
7116 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
7120 for (ind = indbuf, i = 0; i < symcount; i++)
7121 if (isymbuf[i].st_shndx != SHN_UNDEF)
7122 *ind++ = &isymbuf[i];
7125 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7126 elf_sort_elf_symbol);
7129 if (indbufend > indbuf)
7130 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7131 if (ind[0]->st_shndx != ind[1]->st_shndx)
7134 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7135 + (indbufend - indbuf) * sizeof (*ssym));
7136 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
7137 if (ssymbuf == NULL)
7143 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
7144 ssymbuf->ssym = NULL;
7145 ssymbuf->count = shndx_count;
7146 ssymbuf->st_shndx = 0;
7147 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7149 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7152 ssymhead->ssym = ssym;
7153 ssymhead->count = 0;
7154 ssymhead->st_shndx = (*ind)->st_shndx;
7156 ssym->st_name = (*ind)->st_name;
7157 ssym->st_info = (*ind)->st_info;
7158 ssym->st_other = (*ind)->st_other;
7161 BFD_ASSERT ((bfd_size_type) (ssymhead - ssymbuf) == shndx_count
7162 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7169 /* Check if 2 sections define the same set of local and global
7173 bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7174 struct bfd_link_info *info)
7177 const struct elf_backend_data *bed1, *bed2;
7178 Elf_Internal_Shdr *hdr1, *hdr2;
7179 bfd_size_type symcount1, symcount2;
7180 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7181 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7182 Elf_Internal_Sym *isym, *isymend;
7183 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
7184 bfd_size_type count1, count2, i;
7185 unsigned int shndx1, shndx2;
7191 /* Both sections have to be in ELF. */
7192 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7193 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7196 if (elf_section_type (sec1) != elf_section_type (sec2))
7199 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7200 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
7201 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
7204 bed1 = get_elf_backend_data (bfd1);
7205 bed2 = get_elf_backend_data (bfd2);
7206 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7207 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7208 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7209 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7211 if (symcount1 == 0 || symcount2 == 0)
7217 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7218 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
7220 if (ssymbuf1 == NULL)
7222 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7224 if (isymbuf1 == NULL)
7227 if (!info->reduce_memory_overheads)
7228 elf_tdata (bfd1)->symbuf = ssymbuf1
7229 = elf_create_symbuf (symcount1, isymbuf1);
7232 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7234 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7236 if (isymbuf2 == NULL)
7239 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7240 elf_tdata (bfd2)->symbuf = ssymbuf2
7241 = elf_create_symbuf (symcount2, isymbuf2);
7244 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7246 /* Optimized faster version. */
7247 bfd_size_type lo, hi, mid;
7248 struct elf_symbol *symp;
7249 struct elf_symbuf_symbol *ssym, *ssymend;
7252 hi = ssymbuf1->count;
7257 mid = (lo + hi) / 2;
7258 if (shndx1 < ssymbuf1[mid].st_shndx)
7260 else if (shndx1 > ssymbuf1[mid].st_shndx)
7264 count1 = ssymbuf1[mid].count;
7271 hi = ssymbuf2->count;
7276 mid = (lo + hi) / 2;
7277 if (shndx2 < ssymbuf2[mid].st_shndx)
7279 else if (shndx2 > ssymbuf2[mid].st_shndx)
7283 count2 = ssymbuf2[mid].count;
7289 if (count1 == 0 || count2 == 0 || count1 != count2)
7292 symtable1 = (struct elf_symbol *)
7293 bfd_malloc (count1 * sizeof (struct elf_symbol));
7294 symtable2 = (struct elf_symbol *)
7295 bfd_malloc (count2 * sizeof (struct elf_symbol));
7296 if (symtable1 == NULL || symtable2 == NULL)
7300 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7301 ssym < ssymend; ssym++, symp++)
7303 symp->u.ssym = ssym;
7304 symp->name = bfd_elf_string_from_elf_section (bfd1,
7310 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
7311 ssym < ssymend; ssym++, symp++)
7313 symp->u.ssym = ssym;
7314 symp->name = bfd_elf_string_from_elf_section (bfd2,
7319 /* Sort symbol by name. */
7320 qsort (symtable1, count1, sizeof (struct elf_symbol),
7321 elf_sym_name_compare);
7322 qsort (symtable2, count1, sizeof (struct elf_symbol),
7323 elf_sym_name_compare);
7325 for (i = 0; i < count1; i++)
7326 /* Two symbols must have the same binding, type and name. */
7327 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
7328 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
7329 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7336 symtable1 = (struct elf_symbol *)
7337 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
7338 symtable2 = (struct elf_symbol *)
7339 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
7340 if (symtable1 == NULL || symtable2 == NULL)
7343 /* Count definitions in the section. */
7345 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
7346 if (isym->st_shndx == shndx1)
7347 symtable1[count1++].u.isym = isym;
7350 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
7351 if (isym->st_shndx == shndx2)
7352 symtable2[count2++].u.isym = isym;
7354 if (count1 == 0 || count2 == 0 || count1 != count2)
7357 for (i = 0; i < count1; i++)
7359 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
7360 symtable1[i].u.isym->st_name);
7362 for (i = 0; i < count2; i++)
7364 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
7365 symtable2[i].u.isym->st_name);
7367 /* Sort symbol by name. */
7368 qsort (symtable1, count1, sizeof (struct elf_symbol),
7369 elf_sym_name_compare);
7370 qsort (symtable2, count1, sizeof (struct elf_symbol),
7371 elf_sym_name_compare);
7373 for (i = 0; i < count1; i++)
7374 /* Two symbols must have the same binding, type and name. */
7375 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
7376 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
7377 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7395 /* Return TRUE if 2 section types are compatible. */
7398 _bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
7399 bfd *bbfd, const asection *bsec)
7403 || abfd->xvec->flavour != bfd_target_elf_flavour
7404 || bbfd->xvec->flavour != bfd_target_elf_flavour)
7407 return elf_section_type (asec) == elf_section_type (bsec);
7410 /* Final phase of ELF linker. */
7412 /* A structure we use to avoid passing large numbers of arguments. */
7414 struct elf_final_link_info
7416 /* General link information. */
7417 struct bfd_link_info *info;
7420 /* Symbol string table. */
7421 struct bfd_strtab_hash *symstrtab;
7422 /* .dynsym section. */
7423 asection *dynsym_sec;
7424 /* .hash section. */
7426 /* symbol version section (.gnu.version). */
7427 asection *symver_sec;
7428 /* Buffer large enough to hold contents of any section. */
7430 /* Buffer large enough to hold external relocs of any section. */
7431 void *external_relocs;
7432 /* Buffer large enough to hold internal relocs of any section. */
7433 Elf_Internal_Rela *internal_relocs;
7434 /* Buffer large enough to hold external local symbols of any input
7436 bfd_byte *external_syms;
7437 /* And a buffer for symbol section indices. */
7438 Elf_External_Sym_Shndx *locsym_shndx;
7439 /* Buffer large enough to hold internal local symbols of any input
7441 Elf_Internal_Sym *internal_syms;
7442 /* Array large enough to hold a symbol index for each local symbol
7443 of any input BFD. */
7445 /* Array large enough to hold a section pointer for each local
7446 symbol of any input BFD. */
7447 asection **sections;
7448 /* Buffer to hold swapped out symbols. */
7450 /* And one for symbol section indices. */
7451 Elf_External_Sym_Shndx *symshndxbuf;
7452 /* Number of swapped out symbols in buffer. */
7453 size_t symbuf_count;
7454 /* Number of symbols which fit in symbuf. */
7456 /* And same for symshndxbuf. */
7457 size_t shndxbuf_size;
7458 /* Number of STT_FILE syms seen. */
7459 size_t filesym_count;
7462 /* This struct is used to pass information to elf_link_output_extsym. */
7464 struct elf_outext_info
7467 bfd_boolean localsyms;
7468 bfd_boolean need_second_pass;
7469 bfd_boolean second_pass;
7470 struct elf_final_link_info *flinfo;
7474 /* Support for evaluating a complex relocation.
7476 Complex relocations are generalized, self-describing relocations. The
7477 implementation of them consists of two parts: complex symbols, and the
7478 relocations themselves.
7480 The relocations are use a reserved elf-wide relocation type code (R_RELC
7481 external / BFD_RELOC_RELC internal) and an encoding of relocation field
7482 information (start bit, end bit, word width, etc) into the addend. This
7483 information is extracted from CGEN-generated operand tables within gas.
7485 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
7486 internal) representing prefix-notation expressions, including but not
7487 limited to those sorts of expressions normally encoded as addends in the
7488 addend field. The symbol mangling format is:
7491 | <unary-operator> ':' <node>
7492 | <binary-operator> ':' <node> ':' <node>
7495 <literal> := 's' <digits=N> ':' <N character symbol name>
7496 | 'S' <digits=N> ':' <N character section name>
7500 <binary-operator> := as in C
7501 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
7504 set_symbol_value (bfd *bfd_with_globals,
7505 Elf_Internal_Sym *isymbuf,
7510 struct elf_link_hash_entry **sym_hashes;
7511 struct elf_link_hash_entry *h;
7512 size_t extsymoff = locsymcount;
7514 if (symidx < locsymcount)
7516 Elf_Internal_Sym *sym;
7518 sym = isymbuf + symidx;
7519 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
7521 /* It is a local symbol: move it to the
7522 "absolute" section and give it a value. */
7523 sym->st_shndx = SHN_ABS;
7524 sym->st_value = val;
7527 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
7531 /* It is a global symbol: set its link type
7532 to "defined" and give it a value. */
7534 sym_hashes = elf_sym_hashes (bfd_with_globals);
7535 h = sym_hashes [symidx - extsymoff];
7536 while (h->root.type == bfd_link_hash_indirect
7537 || h->root.type == bfd_link_hash_warning)
7538 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7539 h->root.type = bfd_link_hash_defined;
7540 h->root.u.def.value = val;
7541 h->root.u.def.section = bfd_abs_section_ptr;
7545 resolve_symbol (const char *name,
7547 struct elf_final_link_info *flinfo,
7549 Elf_Internal_Sym *isymbuf,
7552 Elf_Internal_Sym *sym;
7553 struct bfd_link_hash_entry *global_entry;
7554 const char *candidate = NULL;
7555 Elf_Internal_Shdr *symtab_hdr;
7558 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
7560 for (i = 0; i < locsymcount; ++ i)
7564 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
7567 candidate = bfd_elf_string_from_elf_section (input_bfd,
7568 symtab_hdr->sh_link,
7571 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
7572 name, candidate, (unsigned long) sym->st_value);
7574 if (candidate && strcmp (candidate, name) == 0)
7576 asection *sec = flinfo->sections [i];
7578 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
7579 *result += sec->output_offset + sec->output_section->vma;
7581 printf ("Found symbol with value %8.8lx\n",
7582 (unsigned long) *result);
7588 /* Hmm, haven't found it yet. perhaps it is a global. */
7589 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
7590 FALSE, FALSE, TRUE);
7594 if (global_entry->type == bfd_link_hash_defined
7595 || global_entry->type == bfd_link_hash_defweak)
7597 *result = (global_entry->u.def.value
7598 + global_entry->u.def.section->output_section->vma
7599 + global_entry->u.def.section->output_offset);
7601 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
7602 global_entry->root.string, (unsigned long) *result);
7611 resolve_section (const char *name,
7618 for (curr = sections; curr; curr = curr->next)
7619 if (strcmp (curr->name, name) == 0)
7621 *result = curr->vma;
7625 /* Hmm. still haven't found it. try pseudo-section names. */
7626 for (curr = sections; curr; curr = curr->next)
7628 len = strlen (curr->name);
7629 if (len > strlen (name))
7632 if (strncmp (curr->name, name, len) == 0)
7634 if (strncmp (".end", name + len, 4) == 0)
7636 *result = curr->vma + curr->size;
7640 /* Insert more pseudo-section names here, if you like. */
7648 undefined_reference (const char *reftype, const char *name)
7650 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
7655 eval_symbol (bfd_vma *result,
7658 struct elf_final_link_info *flinfo,
7660 Elf_Internal_Sym *isymbuf,
7669 const char *sym = *symp;
7671 bfd_boolean symbol_is_section = FALSE;
7676 if (len < 1 || len > sizeof (symbuf))
7678 bfd_set_error (bfd_error_invalid_operation);
7691 *result = strtoul (sym, (char **) symp, 16);
7695 symbol_is_section = TRUE;
7698 symlen = strtol (sym, (char **) symp, 10);
7699 sym = *symp + 1; /* Skip the trailing ':'. */
7701 if (symend < sym || symlen + 1 > sizeof (symbuf))
7703 bfd_set_error (bfd_error_invalid_operation);
7707 memcpy (symbuf, sym, symlen);
7708 symbuf[symlen] = '\0';
7709 *symp = sym + symlen;
7711 /* Is it always possible, with complex symbols, that gas "mis-guessed"
7712 the symbol as a section, or vice-versa. so we're pretty liberal in our
7713 interpretation here; section means "try section first", not "must be a
7714 section", and likewise with symbol. */
7716 if (symbol_is_section)
7718 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result)
7719 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
7720 isymbuf, locsymcount))
7722 undefined_reference ("section", symbuf);
7728 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
7729 isymbuf, locsymcount)
7730 && !resolve_section (symbuf, flinfo->output_bfd->sections,
7733 undefined_reference ("symbol", symbuf);
7740 /* All that remains are operators. */
7742 #define UNARY_OP(op) \
7743 if (strncmp (sym, #op, strlen (#op)) == 0) \
7745 sym += strlen (#op); \
7749 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
7750 isymbuf, locsymcount, signed_p)) \
7753 *result = op ((bfd_signed_vma) a); \
7759 #define BINARY_OP(op) \
7760 if (strncmp (sym, #op, strlen (#op)) == 0) \
7762 sym += strlen (#op); \
7766 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
7767 isymbuf, locsymcount, signed_p)) \
7770 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
7771 isymbuf, locsymcount, signed_p)) \
7774 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
7804 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
7805 bfd_set_error (bfd_error_invalid_operation);
7811 put_value (bfd_vma size,
7812 unsigned long chunksz,
7817 location += (size - chunksz);
7819 for (; size; size -= chunksz, location -= chunksz, x >>= (chunksz * 8))
7827 bfd_put_8 (input_bfd, x, location);
7830 bfd_put_16 (input_bfd, x, location);
7833 bfd_put_32 (input_bfd, x, location);
7837 bfd_put_64 (input_bfd, x, location);
7847 get_value (bfd_vma size,
7848 unsigned long chunksz,
7855 /* Sanity checks. */
7856 BFD_ASSERT (chunksz <= sizeof (x)
7859 && (size % chunksz) == 0
7860 && input_bfd != NULL
7861 && location != NULL);
7863 if (chunksz == sizeof (x))
7865 BFD_ASSERT (size == chunksz);
7867 /* Make sure that we do not perform an undefined shift operation.
7868 We know that size == chunksz so there will only be one iteration
7869 of the loop below. */
7873 shift = 8 * chunksz;
7875 for (; size; size -= chunksz, location += chunksz)
7880 x = (x << shift) | bfd_get_8 (input_bfd, location);
7883 x = (x << shift) | bfd_get_16 (input_bfd, location);
7886 x = (x << shift) | bfd_get_32 (input_bfd, location);
7890 x = (x << shift) | bfd_get_64 (input_bfd, location);
7901 decode_complex_addend (unsigned long *start, /* in bits */
7902 unsigned long *oplen, /* in bits */
7903 unsigned long *len, /* in bits */
7904 unsigned long *wordsz, /* in bytes */
7905 unsigned long *chunksz, /* in bytes */
7906 unsigned long *lsb0_p,
7907 unsigned long *signed_p,
7908 unsigned long *trunc_p,
7909 unsigned long encoded)
7911 * start = encoded & 0x3F;
7912 * len = (encoded >> 6) & 0x3F;
7913 * oplen = (encoded >> 12) & 0x3F;
7914 * wordsz = (encoded >> 18) & 0xF;
7915 * chunksz = (encoded >> 22) & 0xF;
7916 * lsb0_p = (encoded >> 27) & 1;
7917 * signed_p = (encoded >> 28) & 1;
7918 * trunc_p = (encoded >> 29) & 1;
7921 bfd_reloc_status_type
7922 bfd_elf_perform_complex_relocation (bfd *input_bfd,
7923 asection *input_section ATTRIBUTE_UNUSED,
7925 Elf_Internal_Rela *rel,
7928 bfd_vma shift, x, mask;
7929 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
7930 bfd_reloc_status_type r;
7932 /* Perform this reloc, since it is complex.
7933 (this is not to say that it necessarily refers to a complex
7934 symbol; merely that it is a self-describing CGEN based reloc.
7935 i.e. the addend has the complete reloc information (bit start, end,
7936 word size, etc) encoded within it.). */
7938 decode_complex_addend (&start, &oplen, &len, &wordsz,
7939 &chunksz, &lsb0_p, &signed_p,
7940 &trunc_p, rel->r_addend);
7942 mask = (((1L << (len - 1)) - 1) << 1) | 1;
7945 shift = (start + 1) - len;
7947 shift = (8 * wordsz) - (start + len);
7949 /* FIXME: octets_per_byte. */
7950 x = get_value (wordsz, chunksz, input_bfd, contents + rel->r_offset);
7953 printf ("Doing complex reloc: "
7954 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
7955 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
7956 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
7957 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
7958 oplen, (unsigned long) x, (unsigned long) mask,
7959 (unsigned long) relocation);
7964 /* Now do an overflow check. */
7965 r = bfd_check_overflow ((signed_p
7966 ? complain_overflow_signed
7967 : complain_overflow_unsigned),
7968 len, 0, (8 * wordsz),
7972 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
7975 printf (" relocation: %8.8lx\n"
7976 " shifted mask: %8.8lx\n"
7977 " shifted/masked reloc: %8.8lx\n"
7978 " result: %8.8lx\n",
7979 (unsigned long) relocation, (unsigned long) (mask << shift),
7980 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
7982 /* FIXME: octets_per_byte. */
7983 put_value (wordsz, chunksz, input_bfd, x, contents + rel->r_offset);
7987 /* When performing a relocatable link, the input relocations are
7988 preserved. But, if they reference global symbols, the indices
7989 referenced must be updated. Update all the relocations found in
7993 elf_link_adjust_relocs (bfd *abfd,
7994 struct bfd_elf_section_reloc_data *reldata)
7997 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7999 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8000 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8001 bfd_vma r_type_mask;
8003 unsigned int count = reldata->count;
8004 struct elf_link_hash_entry **rel_hash = reldata->hashes;
8006 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
8008 swap_in = bed->s->swap_reloc_in;
8009 swap_out = bed->s->swap_reloc_out;
8011 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
8013 swap_in = bed->s->swap_reloca_in;
8014 swap_out = bed->s->swap_reloca_out;
8019 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
8022 if (bed->s->arch_size == 32)
8029 r_type_mask = 0xffffffff;
8033 erela = reldata->hdr->contents;
8034 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
8036 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8039 if (*rel_hash == NULL)
8042 BFD_ASSERT ((*rel_hash)->indx >= 0);
8044 (*swap_in) (abfd, erela, irela);
8045 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8046 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8047 | (irela[j].r_info & r_type_mask));
8048 (*swap_out) (abfd, irela, erela);
8052 struct elf_link_sort_rela
8058 enum elf_reloc_type_class type;
8059 /* We use this as an array of size int_rels_per_ext_rel. */
8060 Elf_Internal_Rela rela[1];
8064 elf_link_sort_cmp1 (const void *A, const void *B)
8066 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8067 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8068 int relativea, relativeb;
8070 relativea = a->type == reloc_class_relative;
8071 relativeb = b->type == reloc_class_relative;
8073 if (relativea < relativeb)
8075 if (relativea > relativeb)
8077 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8079 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8081 if (a->rela->r_offset < b->rela->r_offset)
8083 if (a->rela->r_offset > b->rela->r_offset)
8089 elf_link_sort_cmp2 (const void *A, const void *B)
8091 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8092 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8094 if (a->type < b->type)
8096 if (a->type > b->type)
8098 if (a->u.offset < b->u.offset)
8100 if (a->u.offset > b->u.offset)
8102 if (a->rela->r_offset < b->rela->r_offset)
8104 if (a->rela->r_offset > b->rela->r_offset)
8110 elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
8112 asection *dynamic_relocs;
8115 bfd_size_type count, size;
8116 size_t i, ret, sort_elt, ext_size;
8117 bfd_byte *sort, *s_non_relative, *p;
8118 struct elf_link_sort_rela *sq;
8119 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8120 int i2e = bed->s->int_rels_per_ext_rel;
8121 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8122 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8123 struct bfd_link_order *lo;
8125 bfd_boolean use_rela;
8127 /* Find a dynamic reloc section. */
8128 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
8129 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
8130 if (rela_dyn != NULL && rela_dyn->size > 0
8131 && rel_dyn != NULL && rel_dyn->size > 0)
8133 bfd_boolean use_rela_initialised = FALSE;
8135 /* This is just here to stop gcc from complaining.
8136 It's initialization checking code is not perfect. */
8139 /* Both sections are present. Examine the sizes
8140 of the indirect sections to help us choose. */
8141 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8142 if (lo->type == bfd_indirect_link_order)
8144 asection *o = lo->u.indirect.section;
8146 if ((o->size % bed->s->sizeof_rela) == 0)
8148 if ((o->size % bed->s->sizeof_rel) == 0)
8149 /* Section size is divisible by both rel and rela sizes.
8150 It is of no help to us. */
8154 /* Section size is only divisible by rela. */
8155 if (use_rela_initialised && (use_rela == FALSE))
8158 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8159 bfd_set_error (bfd_error_invalid_operation);
8165 use_rela_initialised = TRUE;
8169 else if ((o->size % bed->s->sizeof_rel) == 0)
8171 /* Section size is only divisible by rel. */
8172 if (use_rela_initialised && (use_rela == TRUE))
8175 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8176 bfd_set_error (bfd_error_invalid_operation);
8182 use_rela_initialised = TRUE;
8187 /* The section size is not divisible by either - something is wrong. */
8189 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8190 bfd_set_error (bfd_error_invalid_operation);
8195 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8196 if (lo->type == bfd_indirect_link_order)
8198 asection *o = lo->u.indirect.section;
8200 if ((o->size % bed->s->sizeof_rela) == 0)
8202 if ((o->size % bed->s->sizeof_rel) == 0)
8203 /* Section size is divisible by both rel and rela sizes.
8204 It is of no help to us. */
8208 /* Section size is only divisible by rela. */
8209 if (use_rela_initialised && (use_rela == FALSE))
8212 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8213 bfd_set_error (bfd_error_invalid_operation);
8219 use_rela_initialised = TRUE;
8223 else if ((o->size % bed->s->sizeof_rel) == 0)
8225 /* Section size is only divisible by rel. */
8226 if (use_rela_initialised && (use_rela == TRUE))
8229 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8230 bfd_set_error (bfd_error_invalid_operation);
8236 use_rela_initialised = TRUE;
8241 /* The section size is not divisible by either - something is wrong. */
8243 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8244 bfd_set_error (bfd_error_invalid_operation);
8249 if (! use_rela_initialised)
8253 else if (rela_dyn != NULL && rela_dyn->size > 0)
8255 else if (rel_dyn != NULL && rel_dyn->size > 0)
8262 dynamic_relocs = rela_dyn;
8263 ext_size = bed->s->sizeof_rela;
8264 swap_in = bed->s->swap_reloca_in;
8265 swap_out = bed->s->swap_reloca_out;
8269 dynamic_relocs = rel_dyn;
8270 ext_size = bed->s->sizeof_rel;
8271 swap_in = bed->s->swap_reloc_in;
8272 swap_out = bed->s->swap_reloc_out;
8276 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8277 if (lo->type == bfd_indirect_link_order)
8278 size += lo->u.indirect.section->size;
8280 if (size != dynamic_relocs->size)
8283 sort_elt = (sizeof (struct elf_link_sort_rela)
8284 + (i2e - 1) * sizeof (Elf_Internal_Rela));
8286 count = dynamic_relocs->size / ext_size;
8289 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
8293 (*info->callbacks->warning)
8294 (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
8298 if (bed->s->arch_size == 32)
8299 r_sym_mask = ~(bfd_vma) 0xff;
8301 r_sym_mask = ~(bfd_vma) 0xffffffff;
8303 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8304 if (lo->type == bfd_indirect_link_order)
8306 bfd_byte *erel, *erelend;
8307 asection *o = lo->u.indirect.section;
8309 if (o->contents == NULL && o->size != 0)
8311 /* This is a reloc section that is being handled as a normal
8312 section. See bfd_section_from_shdr. We can't combine
8313 relocs in this case. */
8318 erelend = o->contents + o->size;
8319 /* FIXME: octets_per_byte. */
8320 p = sort + o->output_offset / ext_size * sort_elt;
8322 while (erel < erelend)
8324 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8326 (*swap_in) (abfd, erel, s->rela);
8327 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
8328 s->u.sym_mask = r_sym_mask;
8334 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
8336 for (i = 0, p = sort; i < count; i++, p += sort_elt)
8338 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8339 if (s->type != reloc_class_relative)
8345 sq = (struct elf_link_sort_rela *) s_non_relative;
8346 for (; i < count; i++, p += sort_elt)
8348 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
8349 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
8351 sp->u.offset = sq->rela->r_offset;
8354 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
8356 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8357 if (lo->type == bfd_indirect_link_order)
8359 bfd_byte *erel, *erelend;
8360 asection *o = lo->u.indirect.section;
8363 erelend = o->contents + o->size;
8364 /* FIXME: octets_per_byte. */
8365 p = sort + o->output_offset / ext_size * sort_elt;
8366 while (erel < erelend)
8368 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8369 (*swap_out) (abfd, s->rela, erel);
8376 *psec = dynamic_relocs;
8380 /* Flush the output symbols to the file. */
8383 elf_link_flush_output_syms (struct elf_final_link_info *flinfo,
8384 const struct elf_backend_data *bed)
8386 if (flinfo->symbuf_count > 0)
8388 Elf_Internal_Shdr *hdr;
8392 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
8393 pos = hdr->sh_offset + hdr->sh_size;
8394 amt = flinfo->symbuf_count * bed->s->sizeof_sym;
8395 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) != 0
8396 || bfd_bwrite (flinfo->symbuf, amt, flinfo->output_bfd) != amt)
8399 hdr->sh_size += amt;
8400 flinfo->symbuf_count = 0;
8406 /* Add a symbol to the output symbol table. */
8409 elf_link_output_sym (struct elf_final_link_info *flinfo,
8411 Elf_Internal_Sym *elfsym,
8412 asection *input_sec,
8413 struct elf_link_hash_entry *h)
8416 Elf_External_Sym_Shndx *destshndx;
8417 int (*output_symbol_hook)
8418 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
8419 struct elf_link_hash_entry *);
8420 const struct elf_backend_data *bed;
8422 bed = get_elf_backend_data (flinfo->output_bfd);
8423 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
8424 if (output_symbol_hook != NULL)
8426 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
8431 if (name == NULL || *name == '\0')
8432 elfsym->st_name = 0;
8433 else if (input_sec->flags & SEC_EXCLUDE)
8434 elfsym->st_name = 0;
8437 elfsym->st_name = (unsigned long) _bfd_stringtab_add (flinfo->symstrtab,
8439 if (elfsym->st_name == (unsigned long) -1)
8443 if (flinfo->symbuf_count >= flinfo->symbuf_size)
8445 if (! elf_link_flush_output_syms (flinfo, bed))
8449 dest = flinfo->symbuf + flinfo->symbuf_count * bed->s->sizeof_sym;
8450 destshndx = flinfo->symshndxbuf;
8451 if (destshndx != NULL)
8453 if (bfd_get_symcount (flinfo->output_bfd) >= flinfo->shndxbuf_size)
8457 amt = flinfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx);
8458 destshndx = (Elf_External_Sym_Shndx *) bfd_realloc (destshndx,
8460 if (destshndx == NULL)
8462 flinfo->symshndxbuf = destshndx;
8463 memset ((char *) destshndx + amt, 0, amt);
8464 flinfo->shndxbuf_size *= 2;
8466 destshndx += bfd_get_symcount (flinfo->output_bfd);
8469 bed->s->swap_symbol_out (flinfo->output_bfd, elfsym, dest, destshndx);
8470 flinfo->symbuf_count += 1;
8471 bfd_get_symcount (flinfo->output_bfd) += 1;
8476 /* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
8479 check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
8481 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
8482 && sym->st_shndx < SHN_LORESERVE)
8484 /* The gABI doesn't support dynamic symbols in output sections
8486 (*_bfd_error_handler)
8487 (_("%B: Too many sections: %d (>= %d)"),
8488 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
8489 bfd_set_error (bfd_error_nonrepresentable_section);
8495 /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
8496 allowing an unsatisfied unversioned symbol in the DSO to match a
8497 versioned symbol that would normally require an explicit version.
8498 We also handle the case that a DSO references a hidden symbol
8499 which may be satisfied by a versioned symbol in another DSO. */
8502 elf_link_check_versioned_symbol (struct bfd_link_info *info,
8503 const struct elf_backend_data *bed,
8504 struct elf_link_hash_entry *h)
8507 struct elf_link_loaded_list *loaded;
8509 if (!is_elf_hash_table (info->hash))
8512 /* Check indirect symbol. */
8513 while (h->root.type == bfd_link_hash_indirect)
8514 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8516 switch (h->root.type)
8522 case bfd_link_hash_undefined:
8523 case bfd_link_hash_undefweak:
8524 abfd = h->root.u.undef.abfd;
8525 if ((abfd->flags & DYNAMIC) == 0
8526 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
8530 case bfd_link_hash_defined:
8531 case bfd_link_hash_defweak:
8532 abfd = h->root.u.def.section->owner;
8535 case bfd_link_hash_common:
8536 abfd = h->root.u.c.p->section->owner;
8539 BFD_ASSERT (abfd != NULL);
8541 for (loaded = elf_hash_table (info)->loaded;
8543 loaded = loaded->next)
8546 Elf_Internal_Shdr *hdr;
8547 bfd_size_type symcount;
8548 bfd_size_type extsymcount;
8549 bfd_size_type extsymoff;
8550 Elf_Internal_Shdr *versymhdr;
8551 Elf_Internal_Sym *isym;
8552 Elf_Internal_Sym *isymend;
8553 Elf_Internal_Sym *isymbuf;
8554 Elf_External_Versym *ever;
8555 Elf_External_Versym *extversym;
8557 input = loaded->abfd;
8559 /* We check each DSO for a possible hidden versioned definition. */
8561 || (input->flags & DYNAMIC) == 0
8562 || elf_dynversym (input) == 0)
8565 hdr = &elf_tdata (input)->dynsymtab_hdr;
8567 symcount = hdr->sh_size / bed->s->sizeof_sym;
8568 if (elf_bad_symtab (input))
8570 extsymcount = symcount;
8575 extsymcount = symcount - hdr->sh_info;
8576 extsymoff = hdr->sh_info;
8579 if (extsymcount == 0)
8582 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
8584 if (isymbuf == NULL)
8587 /* Read in any version definitions. */
8588 versymhdr = &elf_tdata (input)->dynversym_hdr;
8589 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
8590 if (extversym == NULL)
8593 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
8594 || (bfd_bread (extversym, versymhdr->sh_size, input)
8595 != versymhdr->sh_size))
8603 ever = extversym + extsymoff;
8604 isymend = isymbuf + extsymcount;
8605 for (isym = isymbuf; isym < isymend; isym++, ever++)
8608 Elf_Internal_Versym iver;
8609 unsigned short version_index;
8611 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
8612 || isym->st_shndx == SHN_UNDEF)
8615 name = bfd_elf_string_from_elf_section (input,
8618 if (strcmp (name, h->root.root.string) != 0)
8621 _bfd_elf_swap_versym_in (input, ever, &iver);
8623 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
8625 && h->forced_local))
8627 /* If we have a non-hidden versioned sym, then it should
8628 have provided a definition for the undefined sym unless
8629 it is defined in a non-shared object and forced local.
8634 version_index = iver.vs_vers & VERSYM_VERSION;
8635 if (version_index == 1 || version_index == 2)
8637 /* This is the base or first version. We can use it. */
8651 /* Add an external symbol to the symbol table. This is called from
8652 the hash table traversal routine. When generating a shared object,
8653 we go through the symbol table twice. The first time we output
8654 anything that might have been forced to local scope in a version
8655 script. The second time we output the symbols that are still
8659 elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
8661 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
8662 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8663 struct elf_final_link_info *flinfo = eoinfo->flinfo;
8665 Elf_Internal_Sym sym;
8666 asection *input_sec;
8667 const struct elf_backend_data *bed;
8671 if (h->root.type == bfd_link_hash_warning)
8673 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8674 if (h->root.type == bfd_link_hash_new)
8678 /* Decide whether to output this symbol in this pass. */
8679 if (eoinfo->localsyms)
8681 if (!h->forced_local)
8683 if (eoinfo->second_pass
8684 && !((h->root.type == bfd_link_hash_defined
8685 || h->root.type == bfd_link_hash_defweak)
8686 && h->root.u.def.section->output_section != NULL))
8691 if (h->forced_local)
8695 bed = get_elf_backend_data (flinfo->output_bfd);
8697 if (h->root.type == bfd_link_hash_undefined)
8699 /* If we have an undefined symbol reference here then it must have
8700 come from a shared library that is being linked in. (Undefined
8701 references in regular files have already been handled unless
8702 they are in unreferenced sections which are removed by garbage
8704 bfd_boolean ignore_undef = FALSE;
8706 /* Some symbols may be special in that the fact that they're
8707 undefined can be safely ignored - let backend determine that. */
8708 if (bed->elf_backend_ignore_undef_symbol)
8709 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
8711 /* If we are reporting errors for this situation then do so now. */
8714 && (!h->ref_regular || flinfo->info->gc_sections)
8715 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
8716 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
8718 if (!(flinfo->info->callbacks->undefined_symbol
8719 (flinfo->info, h->root.root.string,
8720 h->ref_regular ? NULL : h->root.u.undef.abfd,
8722 (flinfo->info->unresolved_syms_in_shared_libs
8723 == RM_GENERATE_ERROR))))
8725 bfd_set_error (bfd_error_bad_value);
8726 eoinfo->failed = TRUE;
8732 /* We should also warn if a forced local symbol is referenced from
8733 shared libraries. */
8734 if (!flinfo->info->relocatable
8735 && flinfo->info->executable
8740 && h->ref_dynamic_nonweak
8741 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
8745 struct elf_link_hash_entry *hi = h;
8747 /* Check indirect symbol. */
8748 while (hi->root.type == bfd_link_hash_indirect)
8749 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
8751 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
8752 msg = _("%B: internal symbol `%s' in %B is referenced by DSO");
8753 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
8754 msg = _("%B: hidden symbol `%s' in %B is referenced by DSO");
8756 msg = _("%B: local symbol `%s' in %B is referenced by DSO");
8757 def_bfd = flinfo->output_bfd;
8758 if (hi->root.u.def.section != bfd_abs_section_ptr)
8759 def_bfd = hi->root.u.def.section->owner;
8760 (*_bfd_error_handler) (msg, flinfo->output_bfd, def_bfd,
8761 h->root.root.string);
8762 bfd_set_error (bfd_error_bad_value);
8763 eoinfo->failed = TRUE;
8767 /* We don't want to output symbols that have never been mentioned by
8768 a regular file, or that we have been told to strip. However, if
8769 h->indx is set to -2, the symbol is used by a reloc and we must
8773 else if ((h->def_dynamic
8775 || h->root.type == bfd_link_hash_new)
8779 else if (flinfo->info->strip == strip_all)
8781 else if (flinfo->info->strip == strip_some
8782 && bfd_hash_lookup (flinfo->info->keep_hash,
8783 h->root.root.string, FALSE, FALSE) == NULL)
8785 else if ((h->root.type == bfd_link_hash_defined
8786 || h->root.type == bfd_link_hash_defweak)
8787 && ((flinfo->info->strip_discarded
8788 && discarded_section (h->root.u.def.section))
8789 || (h->root.u.def.section->owner != NULL
8790 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
8792 else if ((h->root.type == bfd_link_hash_undefined
8793 || h->root.type == bfd_link_hash_undefweak)
8794 && h->root.u.undef.abfd != NULL
8795 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
8800 /* If we're stripping it, and it's not a dynamic symbol, there's
8801 nothing else to do unless it is a forced local symbol or a
8802 STT_GNU_IFUNC symbol. */
8805 && h->type != STT_GNU_IFUNC
8806 && !h->forced_local)
8810 sym.st_size = h->size;
8811 sym.st_other = h->other;
8812 if (h->forced_local)
8814 sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
8815 /* Turn off visibility on local symbol. */
8816 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
8818 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
8819 else if (h->unique_global && h->def_regular)
8820 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type);
8821 else if (h->root.type == bfd_link_hash_undefweak
8822 || h->root.type == bfd_link_hash_defweak)
8823 sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
8825 sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
8826 sym.st_target_internal = h->target_internal;
8828 switch (h->root.type)
8831 case bfd_link_hash_new:
8832 case bfd_link_hash_warning:
8836 case bfd_link_hash_undefined:
8837 case bfd_link_hash_undefweak:
8838 input_sec = bfd_und_section_ptr;
8839 sym.st_shndx = SHN_UNDEF;
8842 case bfd_link_hash_defined:
8843 case bfd_link_hash_defweak:
8845 input_sec = h->root.u.def.section;
8846 if (input_sec->output_section != NULL)
8848 if (eoinfo->localsyms && flinfo->filesym_count == 1)
8850 bfd_boolean second_pass_sym
8851 = (input_sec->owner == flinfo->output_bfd
8852 || input_sec->owner == NULL
8853 || (input_sec->flags & SEC_LINKER_CREATED) != 0
8854 || (input_sec->owner->flags & BFD_LINKER_CREATED) != 0);
8856 eoinfo->need_second_pass |= second_pass_sym;
8857 if (eoinfo->second_pass != second_pass_sym)
8862 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
8863 input_sec->output_section);
8864 if (sym.st_shndx == SHN_BAD)
8866 (*_bfd_error_handler)
8867 (_("%B: could not find output section %A for input section %A"),
8868 flinfo->output_bfd, input_sec->output_section, input_sec);
8869 bfd_set_error (bfd_error_nonrepresentable_section);
8870 eoinfo->failed = TRUE;
8874 /* ELF symbols in relocatable files are section relative,
8875 but in nonrelocatable files they are virtual
8877 sym.st_value = h->root.u.def.value + input_sec->output_offset;
8878 if (!flinfo->info->relocatable)
8880 sym.st_value += input_sec->output_section->vma;
8881 if (h->type == STT_TLS)
8883 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
8884 if (tls_sec != NULL)
8885 sym.st_value -= tls_sec->vma;
8888 /* The TLS section may have been garbage collected. */
8889 BFD_ASSERT (flinfo->info->gc_sections
8890 && !input_sec->gc_mark);
8897 BFD_ASSERT (input_sec->owner == NULL
8898 || (input_sec->owner->flags & DYNAMIC) != 0);
8899 sym.st_shndx = SHN_UNDEF;
8900 input_sec = bfd_und_section_ptr;
8905 case bfd_link_hash_common:
8906 input_sec = h->root.u.c.p->section;
8907 sym.st_shndx = bed->common_section_index (input_sec);
8908 sym.st_value = 1 << h->root.u.c.p->alignment_power;
8911 case bfd_link_hash_indirect:
8912 /* These symbols are created by symbol versioning. They point
8913 to the decorated version of the name. For example, if the
8914 symbol foo@@GNU_1.2 is the default, which should be used when
8915 foo is used with no version, then we add an indirect symbol
8916 foo which points to foo@@GNU_1.2. We ignore these symbols,
8917 since the indirected symbol is already in the hash table. */
8921 /* Give the processor backend a chance to tweak the symbol value,
8922 and also to finish up anything that needs to be done for this
8923 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
8924 forced local syms when non-shared is due to a historical quirk.
8925 STT_GNU_IFUNC symbol must go through PLT. */
8926 if ((h->type == STT_GNU_IFUNC
8928 && !flinfo->info->relocatable)
8929 || ((h->dynindx != -1
8931 && ((flinfo->info->shared
8932 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8933 || h->root.type != bfd_link_hash_undefweak))
8934 || !h->forced_local)
8935 && elf_hash_table (flinfo->info)->dynamic_sections_created))
8937 if (! ((*bed->elf_backend_finish_dynamic_symbol)
8938 (flinfo->output_bfd, flinfo->info, h, &sym)))
8940 eoinfo->failed = TRUE;
8945 /* If we are marking the symbol as undefined, and there are no
8946 non-weak references to this symbol from a regular object, then
8947 mark the symbol as weak undefined; if there are non-weak
8948 references, mark the symbol as strong. We can't do this earlier,
8949 because it might not be marked as undefined until the
8950 finish_dynamic_symbol routine gets through with it. */
8951 if (sym.st_shndx == SHN_UNDEF
8953 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
8954 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
8957 unsigned int type = ELF_ST_TYPE (sym.st_info);
8959 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
8960 if (type == STT_GNU_IFUNC)
8963 if (h->ref_regular_nonweak)
8964 bindtype = STB_GLOBAL;
8966 bindtype = STB_WEAK;
8967 sym.st_info = ELF_ST_INFO (bindtype, type);
8970 /* If this is a symbol defined in a dynamic library, don't use the
8971 symbol size from the dynamic library. Relinking an executable
8972 against a new library may introduce gratuitous changes in the
8973 executable's symbols if we keep the size. */
8974 if (sym.st_shndx == SHN_UNDEF
8979 /* If a non-weak symbol with non-default visibility is not defined
8980 locally, it is a fatal error. */
8981 if (!flinfo->info->relocatable
8982 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
8983 && ELF_ST_BIND (sym.st_info) != STB_WEAK
8984 && h->root.type == bfd_link_hash_undefined
8989 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
8990 msg = _("%B: protected symbol `%s' isn't defined");
8991 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
8992 msg = _("%B: internal symbol `%s' isn't defined");
8994 msg = _("%B: hidden symbol `%s' isn't defined");
8995 (*_bfd_error_handler) (msg, flinfo->output_bfd, h->root.root.string);
8996 bfd_set_error (bfd_error_bad_value);
8997 eoinfo->failed = TRUE;
9001 /* If this symbol should be put in the .dynsym section, then put it
9002 there now. We already know the symbol index. We also fill in
9003 the entry in the .hash section. */
9004 if (flinfo->dynsym_sec != NULL
9006 && elf_hash_table (flinfo->info)->dynamic_sections_created)
9010 /* Since there is no version information in the dynamic string,
9011 if there is no version info in symbol version section, we will
9012 have a run-time problem. */
9013 if (h->verinfo.verdef == NULL)
9015 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
9017 if (p && p [1] != '\0')
9019 (*_bfd_error_handler)
9020 (_("%B: No symbol version section for versioned symbol `%s'"),
9021 flinfo->output_bfd, h->root.root.string);
9022 eoinfo->failed = TRUE;
9027 sym.st_name = h->dynstr_index;
9028 esym = flinfo->dynsym_sec->contents + h->dynindx * bed->s->sizeof_sym;
9029 if (!check_dynsym (flinfo->output_bfd, &sym))
9031 eoinfo->failed = TRUE;
9034 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
9036 if (flinfo->hash_sec != NULL)
9038 size_t hash_entry_size;
9039 bfd_byte *bucketpos;
9044 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
9045 bucket = h->u.elf_hash_value % bucketcount;
9048 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
9049 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
9050 + (bucket + 2) * hash_entry_size);
9051 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
9052 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
9054 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
9055 ((bfd_byte *) flinfo->hash_sec->contents
9056 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
9059 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
9061 Elf_Internal_Versym iversym;
9062 Elf_External_Versym *eversym;
9064 if (!h->def_regular)
9066 if (h->verinfo.verdef == NULL)
9067 iversym.vs_vers = 0;
9069 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
9073 if (h->verinfo.vertree == NULL)
9074 iversym.vs_vers = 1;
9076 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
9077 if (flinfo->info->create_default_symver)
9082 iversym.vs_vers |= VERSYM_HIDDEN;
9084 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
9085 eversym += h->dynindx;
9086 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
9090 /* If we're stripping it, then it was just a dynamic symbol, and
9091 there's nothing else to do. */
9092 if (strip || (input_sec->flags & SEC_EXCLUDE) != 0)
9095 indx = bfd_get_symcount (flinfo->output_bfd);
9096 ret = elf_link_output_sym (flinfo, h->root.root.string, &sym, input_sec, h);
9099 eoinfo->failed = TRUE;
9104 else if (h->indx == -2)
9110 /* Return TRUE if special handling is done for relocs in SEC against
9111 symbols defined in discarded sections. */
9114 elf_section_ignore_discarded_relocs (asection *sec)
9116 const struct elf_backend_data *bed;
9118 switch (sec->sec_info_type)
9120 case SEC_INFO_TYPE_STABS:
9121 case SEC_INFO_TYPE_EH_FRAME:
9127 bed = get_elf_backend_data (sec->owner);
9128 if (bed->elf_backend_ignore_discarded_relocs != NULL
9129 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
9135 /* Return a mask saying how ld should treat relocations in SEC against
9136 symbols defined in discarded sections. If this function returns
9137 COMPLAIN set, ld will issue a warning message. If this function
9138 returns PRETEND set, and the discarded section was link-once and the
9139 same size as the kept link-once section, ld will pretend that the
9140 symbol was actually defined in the kept section. Otherwise ld will
9141 zero the reloc (at least that is the intent, but some cooperation by
9142 the target dependent code is needed, particularly for REL targets). */
9145 _bfd_elf_default_action_discarded (asection *sec)
9147 if (sec->flags & SEC_DEBUGGING)
9150 if (strcmp (".eh_frame", sec->name) == 0)
9153 if (strcmp (".gcc_except_table", sec->name) == 0)
9156 return COMPLAIN | PRETEND;
9159 /* Find a match between a section and a member of a section group. */
9162 match_group_member (asection *sec, asection *group,
9163 struct bfd_link_info *info)
9165 asection *first = elf_next_in_group (group);
9166 asection *s = first;
9170 if (bfd_elf_match_symbols_in_sections (s, sec, info))
9173 s = elf_next_in_group (s);
9181 /* Check if the kept section of a discarded section SEC can be used
9182 to replace it. Return the replacement if it is OK. Otherwise return
9186 _bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
9190 kept = sec->kept_section;
9193 if ((kept->flags & SEC_GROUP) != 0)
9194 kept = match_group_member (sec, kept, info);
9196 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
9197 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
9199 sec->kept_section = kept;
9204 /* Link an input file into the linker output file. This function
9205 handles all the sections and relocations of the input file at once.
9206 This is so that we only have to read the local symbols once, and
9207 don't have to keep them in memory. */
9210 elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
9212 int (*relocate_section)
9213 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
9214 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
9216 Elf_Internal_Shdr *symtab_hdr;
9219 Elf_Internal_Sym *isymbuf;
9220 Elf_Internal_Sym *isym;
9221 Elf_Internal_Sym *isymend;
9223 asection **ppsection;
9225 const struct elf_backend_data *bed;
9226 struct elf_link_hash_entry **sym_hashes;
9227 bfd_size_type address_size;
9228 bfd_vma r_type_mask;
9230 bfd_boolean have_file_sym = FALSE;
9232 output_bfd = flinfo->output_bfd;
9233 bed = get_elf_backend_data (output_bfd);
9234 relocate_section = bed->elf_backend_relocate_section;
9236 /* If this is a dynamic object, we don't want to do anything here:
9237 we don't want the local symbols, and we don't want the section
9239 if ((input_bfd->flags & DYNAMIC) != 0)
9242 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9243 if (elf_bad_symtab (input_bfd))
9245 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
9250 locsymcount = symtab_hdr->sh_info;
9251 extsymoff = symtab_hdr->sh_info;
9254 /* Read the local symbols. */
9255 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
9256 if (isymbuf == NULL && locsymcount != 0)
9258 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
9259 flinfo->internal_syms,
9260 flinfo->external_syms,
9261 flinfo->locsym_shndx);
9262 if (isymbuf == NULL)
9266 /* Find local symbol sections and adjust values of symbols in
9267 SEC_MERGE sections. Write out those local symbols we know are
9268 going into the output file. */
9269 isymend = isymbuf + locsymcount;
9270 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
9272 isym++, pindex++, ppsection++)
9276 Elf_Internal_Sym osym;
9282 if (elf_bad_symtab (input_bfd))
9284 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
9291 if (isym->st_shndx == SHN_UNDEF)
9292 isec = bfd_und_section_ptr;
9293 else if (isym->st_shndx == SHN_ABS)
9294 isec = bfd_abs_section_ptr;
9295 else if (isym->st_shndx == SHN_COMMON)
9296 isec = bfd_com_section_ptr;
9299 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
9302 /* Don't attempt to output symbols with st_shnx in the
9303 reserved range other than SHN_ABS and SHN_COMMON. */
9307 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
9308 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
9310 _bfd_merged_section_offset (output_bfd, &isec,
9311 elf_section_data (isec)->sec_info,
9317 /* Don't output the first, undefined, symbol. */
9318 if (ppsection == flinfo->sections)
9321 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
9323 /* We never output section symbols. Instead, we use the
9324 section symbol of the corresponding section in the output
9329 /* If we are stripping all symbols, we don't want to output this
9331 if (flinfo->info->strip == strip_all)
9334 /* If we are discarding all local symbols, we don't want to
9335 output this one. If we are generating a relocatable output
9336 file, then some of the local symbols may be required by
9337 relocs; we output them below as we discover that they are
9339 if (flinfo->info->discard == discard_all)
9342 /* If this symbol is defined in a section which we are
9343 discarding, we don't need to keep it. */
9344 if (isym->st_shndx != SHN_UNDEF
9345 && isym->st_shndx < SHN_LORESERVE
9346 && bfd_section_removed_from_list (output_bfd,
9347 isec->output_section))
9350 /* Get the name of the symbol. */
9351 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
9356 /* See if we are discarding symbols with this name. */
9357 if ((flinfo->info->strip == strip_some
9358 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
9360 || (((flinfo->info->discard == discard_sec_merge
9361 && (isec->flags & SEC_MERGE) && !flinfo->info->relocatable)
9362 || flinfo->info->discard == discard_l)
9363 && bfd_is_local_label_name (input_bfd, name)))
9366 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
9368 have_file_sym = TRUE;
9369 flinfo->filesym_count += 1;
9373 /* In the absence of debug info, bfd_find_nearest_line uses
9374 FILE symbols to determine the source file for local
9375 function symbols. Provide a FILE symbol here if input
9376 files lack such, so that their symbols won't be
9377 associated with a previous input file. It's not the
9378 source file, but the best we can do. */
9379 have_file_sym = TRUE;
9380 flinfo->filesym_count += 1;
9381 memset (&osym, 0, sizeof (osym));
9382 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9383 osym.st_shndx = SHN_ABS;
9384 if (!elf_link_output_sym (flinfo, input_bfd->filename, &osym,
9385 bfd_abs_section_ptr, NULL))
9391 /* Adjust the section index for the output file. */
9392 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9393 isec->output_section);
9394 if (osym.st_shndx == SHN_BAD)
9397 /* ELF symbols in relocatable files are section relative, but
9398 in executable files they are virtual addresses. Note that
9399 this code assumes that all ELF sections have an associated
9400 BFD section with a reasonable value for output_offset; below
9401 we assume that they also have a reasonable value for
9402 output_section. Any special sections must be set up to meet
9403 these requirements. */
9404 osym.st_value += isec->output_offset;
9405 if (!flinfo->info->relocatable)
9407 osym.st_value += isec->output_section->vma;
9408 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
9410 /* STT_TLS symbols are relative to PT_TLS segment base. */
9411 BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
9412 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
9416 indx = bfd_get_symcount (output_bfd);
9417 ret = elf_link_output_sym (flinfo, name, &osym, isec, NULL);
9424 if (bed->s->arch_size == 32)
9432 r_type_mask = 0xffffffff;
9437 /* Relocate the contents of each section. */
9438 sym_hashes = elf_sym_hashes (input_bfd);
9439 for (o = input_bfd->sections; o != NULL; o = o->next)
9443 if (! o->linker_mark)
9445 /* This section was omitted from the link. */
9449 if (flinfo->info->relocatable
9450 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
9452 /* Deal with the group signature symbol. */
9453 struct bfd_elf_section_data *sec_data = elf_section_data (o);
9454 unsigned long symndx = sec_data->this_hdr.sh_info;
9455 asection *osec = o->output_section;
9457 if (symndx >= locsymcount
9458 || (elf_bad_symtab (input_bfd)
9459 && flinfo->sections[symndx] == NULL))
9461 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
9462 while (h->root.type == bfd_link_hash_indirect
9463 || h->root.type == bfd_link_hash_warning)
9464 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9465 /* Arrange for symbol to be output. */
9467 elf_section_data (osec)->this_hdr.sh_info = -2;
9469 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
9471 /* We'll use the output section target_index. */
9472 asection *sec = flinfo->sections[symndx]->output_section;
9473 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
9477 if (flinfo->indices[symndx] == -1)
9479 /* Otherwise output the local symbol now. */
9480 Elf_Internal_Sym sym = isymbuf[symndx];
9481 asection *sec = flinfo->sections[symndx]->output_section;
9486 name = bfd_elf_string_from_elf_section (input_bfd,
9487 symtab_hdr->sh_link,
9492 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9494 if (sym.st_shndx == SHN_BAD)
9497 sym.st_value += o->output_offset;
9499 indx = bfd_get_symcount (output_bfd);
9500 ret = elf_link_output_sym (flinfo, name, &sym, o, NULL);
9504 flinfo->indices[symndx] = indx;
9508 elf_section_data (osec)->this_hdr.sh_info
9509 = flinfo->indices[symndx];
9513 if ((o->flags & SEC_HAS_CONTENTS) == 0
9514 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
9517 if ((o->flags & SEC_LINKER_CREATED) != 0)
9519 /* Section was created by _bfd_elf_link_create_dynamic_sections
9524 /* Get the contents of the section. They have been cached by a
9525 relaxation routine. Note that o is a section in an input
9526 file, so the contents field will not have been set by any of
9527 the routines which work on output files. */
9528 if (elf_section_data (o)->this_hdr.contents != NULL)
9529 contents = elf_section_data (o)->this_hdr.contents;
9532 contents = flinfo->contents;
9533 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
9537 if ((o->flags & SEC_RELOC) != 0)
9539 Elf_Internal_Rela *internal_relocs;
9540 Elf_Internal_Rela *rel, *relend;
9541 int action_discarded;
9544 /* Get the swapped relocs. */
9546 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
9547 flinfo->internal_relocs, FALSE);
9548 if (internal_relocs == NULL
9549 && o->reloc_count > 0)
9552 /* We need to reverse-copy input .ctors/.dtors sections if
9553 they are placed in .init_array/.finit_array for output. */
9554 if (o->size > address_size
9555 && ((strncmp (o->name, ".ctors", 6) == 0
9556 && strcmp (o->output_section->name,
9557 ".init_array") == 0)
9558 || (strncmp (o->name, ".dtors", 6) == 0
9559 && strcmp (o->output_section->name,
9560 ".fini_array") == 0))
9561 && (o->name[6] == 0 || o->name[6] == '.'))
9563 if (o->size != o->reloc_count * address_size)
9565 (*_bfd_error_handler)
9566 (_("error: %B: size of section %A is not "
9567 "multiple of address size"),
9569 bfd_set_error (bfd_error_on_input);
9572 o->flags |= SEC_ELF_REVERSE_COPY;
9575 action_discarded = -1;
9576 if (!elf_section_ignore_discarded_relocs (o))
9577 action_discarded = (*bed->action_discarded) (o);
9579 /* Run through the relocs evaluating complex reloc symbols and
9580 looking for relocs against symbols from discarded sections
9581 or section symbols from removed link-once sections.
9582 Complain about relocs against discarded sections. Zero
9583 relocs against removed link-once sections. */
9585 rel = internal_relocs;
9586 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
9587 for ( ; rel < relend; rel++)
9589 unsigned long r_symndx = rel->r_info >> r_sym_shift;
9590 unsigned int s_type;
9591 asection **ps, *sec;
9592 struct elf_link_hash_entry *h = NULL;
9593 const char *sym_name;
9595 if (r_symndx == STN_UNDEF)
9598 if (r_symndx >= locsymcount
9599 || (elf_bad_symtab (input_bfd)
9600 && flinfo->sections[r_symndx] == NULL))
9602 h = sym_hashes[r_symndx - extsymoff];
9604 /* Badly formatted input files can contain relocs that
9605 reference non-existant symbols. Check here so that
9606 we do not seg fault. */
9611 sprintf_vma (buffer, rel->r_info);
9612 (*_bfd_error_handler)
9613 (_("error: %B contains a reloc (0x%s) for section %A "
9614 "that references a non-existent global symbol"),
9615 input_bfd, o, buffer);
9616 bfd_set_error (bfd_error_bad_value);
9620 while (h->root.type == bfd_link_hash_indirect
9621 || h->root.type == bfd_link_hash_warning)
9622 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9627 if (h->root.type == bfd_link_hash_defined
9628 || h->root.type == bfd_link_hash_defweak)
9629 ps = &h->root.u.def.section;
9631 sym_name = h->root.root.string;
9635 Elf_Internal_Sym *sym = isymbuf + r_symndx;
9637 s_type = ELF_ST_TYPE (sym->st_info);
9638 ps = &flinfo->sections[r_symndx];
9639 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
9643 if ((s_type == STT_RELC || s_type == STT_SRELC)
9644 && !flinfo->info->relocatable)
9647 bfd_vma dot = (rel->r_offset
9648 + o->output_offset + o->output_section->vma);
9650 printf ("Encountered a complex symbol!");
9651 printf (" (input_bfd %s, section %s, reloc %ld\n",
9652 input_bfd->filename, o->name,
9653 (long) (rel - internal_relocs));
9654 printf (" symbol: idx %8.8lx, name %s\n",
9655 r_symndx, sym_name);
9656 printf (" reloc : info %8.8lx, addr %8.8lx\n",
9657 (unsigned long) rel->r_info,
9658 (unsigned long) rel->r_offset);
9660 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
9661 isymbuf, locsymcount, s_type == STT_SRELC))
9664 /* Symbol evaluated OK. Update to absolute value. */
9665 set_symbol_value (input_bfd, isymbuf, locsymcount,
9670 if (action_discarded != -1 && ps != NULL)
9672 /* Complain if the definition comes from a
9673 discarded section. */
9674 if ((sec = *ps) != NULL && discarded_section (sec))
9676 BFD_ASSERT (r_symndx != STN_UNDEF);
9677 if (action_discarded & COMPLAIN)
9678 (*flinfo->info->callbacks->einfo)
9679 (_("%X`%s' referenced in section `%A' of %B: "
9680 "defined in discarded section `%A' of %B\n"),
9681 sym_name, o, input_bfd, sec, sec->owner);
9683 /* Try to do the best we can to support buggy old
9684 versions of gcc. Pretend that the symbol is
9685 really defined in the kept linkonce section.
9686 FIXME: This is quite broken. Modifying the
9687 symbol here means we will be changing all later
9688 uses of the symbol, not just in this section. */
9689 if (action_discarded & PRETEND)
9693 kept = _bfd_elf_check_kept_section (sec,
9705 /* Relocate the section by invoking a back end routine.
9707 The back end routine is responsible for adjusting the
9708 section contents as necessary, and (if using Rela relocs
9709 and generating a relocatable output file) adjusting the
9710 reloc addend as necessary.
9712 The back end routine does not have to worry about setting
9713 the reloc address or the reloc symbol index.
9715 The back end routine is given a pointer to the swapped in
9716 internal symbols, and can access the hash table entries
9717 for the external symbols via elf_sym_hashes (input_bfd).
9719 When generating relocatable output, the back end routine
9720 must handle STB_LOCAL/STT_SECTION symbols specially. The
9721 output symbol is going to be a section symbol
9722 corresponding to the output section, which will require
9723 the addend to be adjusted. */
9725 ret = (*relocate_section) (output_bfd, flinfo->info,
9726 input_bfd, o, contents,
9734 || flinfo->info->relocatable
9735 || flinfo->info->emitrelocations)
9737 Elf_Internal_Rela *irela;
9738 Elf_Internal_Rela *irelaend, *irelamid;
9739 bfd_vma last_offset;
9740 struct elf_link_hash_entry **rel_hash;
9741 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
9742 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
9743 unsigned int next_erel;
9744 bfd_boolean rela_normal;
9745 struct bfd_elf_section_data *esdi, *esdo;
9747 esdi = elf_section_data (o);
9748 esdo = elf_section_data (o->output_section);
9749 rela_normal = FALSE;
9751 /* Adjust the reloc addresses and symbol indices. */
9753 irela = internal_relocs;
9754 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
9755 rel_hash = esdo->rel.hashes + esdo->rel.count;
9756 /* We start processing the REL relocs, if any. When we reach
9757 IRELAMID in the loop, we switch to the RELA relocs. */
9759 if (esdi->rel.hdr != NULL)
9760 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
9761 * bed->s->int_rels_per_ext_rel);
9762 rel_hash_list = rel_hash;
9763 rela_hash_list = NULL;
9764 last_offset = o->output_offset;
9765 if (!flinfo->info->relocatable)
9766 last_offset += o->output_section->vma;
9767 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
9769 unsigned long r_symndx;
9771 Elf_Internal_Sym sym;
9773 if (next_erel == bed->s->int_rels_per_ext_rel)
9779 if (irela == irelamid)
9781 rel_hash = esdo->rela.hashes + esdo->rela.count;
9782 rela_hash_list = rel_hash;
9783 rela_normal = bed->rela_normal;
9786 irela->r_offset = _bfd_elf_section_offset (output_bfd,
9789 if (irela->r_offset >= (bfd_vma) -2)
9791 /* This is a reloc for a deleted entry or somesuch.
9792 Turn it into an R_*_NONE reloc, at the same
9793 offset as the last reloc. elf_eh_frame.c and
9794 bfd_elf_discard_info rely on reloc offsets
9796 irela->r_offset = last_offset;
9798 irela->r_addend = 0;
9802 irela->r_offset += o->output_offset;
9804 /* Relocs in an executable have to be virtual addresses. */
9805 if (!flinfo->info->relocatable)
9806 irela->r_offset += o->output_section->vma;
9808 last_offset = irela->r_offset;
9810 r_symndx = irela->r_info >> r_sym_shift;
9811 if (r_symndx == STN_UNDEF)
9814 if (r_symndx >= locsymcount
9815 || (elf_bad_symtab (input_bfd)
9816 && flinfo->sections[r_symndx] == NULL))
9818 struct elf_link_hash_entry *rh;
9821 /* This is a reloc against a global symbol. We
9822 have not yet output all the local symbols, so
9823 we do not know the symbol index of any global
9824 symbol. We set the rel_hash entry for this
9825 reloc to point to the global hash table entry
9826 for this symbol. The symbol index is then
9827 set at the end of bfd_elf_final_link. */
9828 indx = r_symndx - extsymoff;
9829 rh = elf_sym_hashes (input_bfd)[indx];
9830 while (rh->root.type == bfd_link_hash_indirect
9831 || rh->root.type == bfd_link_hash_warning)
9832 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
9834 /* Setting the index to -2 tells
9835 elf_link_output_extsym that this symbol is
9837 BFD_ASSERT (rh->indx < 0);
9845 /* This is a reloc against a local symbol. */
9848 sym = isymbuf[r_symndx];
9849 sec = flinfo->sections[r_symndx];
9850 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
9852 /* I suppose the backend ought to fill in the
9853 section of any STT_SECTION symbol against a
9854 processor specific section. */
9855 r_symndx = STN_UNDEF;
9856 if (bfd_is_abs_section (sec))
9858 else if (sec == NULL || sec->owner == NULL)
9860 bfd_set_error (bfd_error_bad_value);
9865 asection *osec = sec->output_section;
9867 /* If we have discarded a section, the output
9868 section will be the absolute section. In
9869 case of discarded SEC_MERGE sections, use
9870 the kept section. relocate_section should
9871 have already handled discarded linkonce
9873 if (bfd_is_abs_section (osec)
9874 && sec->kept_section != NULL
9875 && sec->kept_section->output_section != NULL)
9877 osec = sec->kept_section->output_section;
9878 irela->r_addend -= osec->vma;
9881 if (!bfd_is_abs_section (osec))
9883 r_symndx = osec->target_index;
9884 if (r_symndx == STN_UNDEF)
9886 irela->r_addend += osec->vma;
9887 osec = _bfd_nearby_section (output_bfd, osec,
9889 irela->r_addend -= osec->vma;
9890 r_symndx = osec->target_index;
9895 /* Adjust the addend according to where the
9896 section winds up in the output section. */
9898 irela->r_addend += sec->output_offset;
9902 if (flinfo->indices[r_symndx] == -1)
9904 unsigned long shlink;
9909 if (flinfo->info->strip == strip_all)
9911 /* You can't do ld -r -s. */
9912 bfd_set_error (bfd_error_invalid_operation);
9916 /* This symbol was skipped earlier, but
9917 since it is needed by a reloc, we
9918 must output it now. */
9919 shlink = symtab_hdr->sh_link;
9920 name = (bfd_elf_string_from_elf_section
9921 (input_bfd, shlink, sym.st_name));
9925 osec = sec->output_section;
9927 _bfd_elf_section_from_bfd_section (output_bfd,
9929 if (sym.st_shndx == SHN_BAD)
9932 sym.st_value += sec->output_offset;
9933 if (!flinfo->info->relocatable)
9935 sym.st_value += osec->vma;
9936 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
9938 /* STT_TLS symbols are relative to PT_TLS
9940 BFD_ASSERT (elf_hash_table (flinfo->info)
9942 sym.st_value -= (elf_hash_table (flinfo->info)
9947 indx = bfd_get_symcount (output_bfd);
9948 ret = elf_link_output_sym (flinfo, name, &sym, sec,
9953 flinfo->indices[r_symndx] = indx;
9958 r_symndx = flinfo->indices[r_symndx];
9961 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
9962 | (irela->r_info & r_type_mask));
9965 /* Swap out the relocs. */
9966 input_rel_hdr = esdi->rel.hdr;
9967 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
9969 if (!bed->elf_backend_emit_relocs (output_bfd, o,
9974 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
9975 * bed->s->int_rels_per_ext_rel);
9976 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
9979 input_rela_hdr = esdi->rela.hdr;
9980 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
9982 if (!bed->elf_backend_emit_relocs (output_bfd, o,
9991 /* Write out the modified section contents. */
9992 if (bed->elf_backend_write_section
9993 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
9996 /* Section written out. */
9998 else switch (o->sec_info_type)
10000 case SEC_INFO_TYPE_STABS:
10001 if (! (_bfd_write_section_stabs
10003 &elf_hash_table (flinfo->info)->stab_info,
10004 o, &elf_section_data (o)->sec_info, contents)))
10007 case SEC_INFO_TYPE_MERGE:
10008 if (! _bfd_write_merged_section (output_bfd, o,
10009 elf_section_data (o)->sec_info))
10012 case SEC_INFO_TYPE_EH_FRAME:
10014 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
10021 /* FIXME: octets_per_byte. */
10022 if (! (o->flags & SEC_EXCLUDE))
10024 file_ptr offset = (file_ptr) o->output_offset;
10025 bfd_size_type todo = o->size;
10026 if ((o->flags & SEC_ELF_REVERSE_COPY))
10028 /* Reverse-copy input section to output. */
10031 todo -= address_size;
10032 if (! bfd_set_section_contents (output_bfd,
10040 offset += address_size;
10044 else if (! bfd_set_section_contents (output_bfd,
10058 /* Generate a reloc when linking an ELF file. This is a reloc
10059 requested by the linker, and does not come from any input file. This
10060 is used to build constructor and destructor tables when linking
10064 elf_reloc_link_order (bfd *output_bfd,
10065 struct bfd_link_info *info,
10066 asection *output_section,
10067 struct bfd_link_order *link_order)
10069 reloc_howto_type *howto;
10073 struct bfd_elf_section_reloc_data *reldata;
10074 struct elf_link_hash_entry **rel_hash_ptr;
10075 Elf_Internal_Shdr *rel_hdr;
10076 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10077 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
10080 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
10082 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
10085 bfd_set_error (bfd_error_bad_value);
10089 addend = link_order->u.reloc.p->addend;
10092 reldata = &esdo->rel;
10093 else if (esdo->rela.hdr)
10094 reldata = &esdo->rela;
10101 /* Figure out the symbol index. */
10102 rel_hash_ptr = reldata->hashes + reldata->count;
10103 if (link_order->type == bfd_section_reloc_link_order)
10105 indx = link_order->u.reloc.p->u.section->target_index;
10106 BFD_ASSERT (indx != 0);
10107 *rel_hash_ptr = NULL;
10111 struct elf_link_hash_entry *h;
10113 /* Treat a reloc against a defined symbol as though it were
10114 actually against the section. */
10115 h = ((struct elf_link_hash_entry *)
10116 bfd_wrapped_link_hash_lookup (output_bfd, info,
10117 link_order->u.reloc.p->u.name,
10118 FALSE, FALSE, TRUE));
10120 && (h->root.type == bfd_link_hash_defined
10121 || h->root.type == bfd_link_hash_defweak))
10125 section = h->root.u.def.section;
10126 indx = section->output_section->target_index;
10127 *rel_hash_ptr = NULL;
10128 /* It seems that we ought to add the symbol value to the
10129 addend here, but in practice it has already been added
10130 because it was passed to constructor_callback. */
10131 addend += section->output_section->vma + section->output_offset;
10133 else if (h != NULL)
10135 /* Setting the index to -2 tells elf_link_output_extsym that
10136 this symbol is used by a reloc. */
10143 if (! ((*info->callbacks->unattached_reloc)
10144 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0)))
10150 /* If this is an inplace reloc, we must write the addend into the
10152 if (howto->partial_inplace && addend != 0)
10154 bfd_size_type size;
10155 bfd_reloc_status_type rstat;
10158 const char *sym_name;
10160 size = (bfd_size_type) bfd_get_reloc_size (howto);
10161 buf = (bfd_byte *) bfd_zmalloc (size);
10164 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
10171 case bfd_reloc_outofrange:
10174 case bfd_reloc_overflow:
10175 if (link_order->type == bfd_section_reloc_link_order)
10176 sym_name = bfd_section_name (output_bfd,
10177 link_order->u.reloc.p->u.section);
10179 sym_name = link_order->u.reloc.p->u.name;
10180 if (! ((*info->callbacks->reloc_overflow)
10181 (info, NULL, sym_name, howto->name, addend, NULL,
10182 NULL, (bfd_vma) 0)))
10189 ok = bfd_set_section_contents (output_bfd, output_section, buf,
10190 link_order->offset, size);
10196 /* The address of a reloc is relative to the section in a
10197 relocatable file, and is a virtual address in an executable
10199 offset = link_order->offset;
10200 if (! info->relocatable)
10201 offset += output_section->vma;
10203 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
10205 irel[i].r_offset = offset;
10206 irel[i].r_info = 0;
10207 irel[i].r_addend = 0;
10209 if (bed->s->arch_size == 32)
10210 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
10212 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
10214 rel_hdr = reldata->hdr;
10215 erel = rel_hdr->contents;
10216 if (rel_hdr->sh_type == SHT_REL)
10218 erel += reldata->count * bed->s->sizeof_rel;
10219 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
10223 irel[0].r_addend = addend;
10224 erel += reldata->count * bed->s->sizeof_rela;
10225 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
10234 /* Get the output vma of the section pointed to by the sh_link field. */
10237 elf_get_linked_section_vma (struct bfd_link_order *p)
10239 Elf_Internal_Shdr **elf_shdrp;
10243 s = p->u.indirect.section;
10244 elf_shdrp = elf_elfsections (s->owner);
10245 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
10246 elfsec = elf_shdrp[elfsec]->sh_link;
10248 The Intel C compiler generates SHT_IA_64_UNWIND with
10249 SHF_LINK_ORDER. But it doesn't set the sh_link or
10250 sh_info fields. Hence we could get the situation
10251 where elfsec is 0. */
10254 const struct elf_backend_data *bed
10255 = get_elf_backend_data (s->owner);
10256 if (bed->link_order_error_handler)
10257 bed->link_order_error_handler
10258 (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
10263 s = elf_shdrp[elfsec]->bfd_section;
10264 return s->output_section->vma + s->output_offset;
10269 /* Compare two sections based on the locations of the sections they are
10270 linked to. Used by elf_fixup_link_order. */
10273 compare_link_order (const void * a, const void * b)
10278 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
10279 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
10282 return apos > bpos;
10286 /* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
10287 order as their linked sections. Returns false if this could not be done
10288 because an output section includes both ordered and unordered
10289 sections. Ideally we'd do this in the linker proper. */
10292 elf_fixup_link_order (bfd *abfd, asection *o)
10294 int seen_linkorder;
10297 struct bfd_link_order *p;
10299 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10301 struct bfd_link_order **sections;
10302 asection *s, *other_sec, *linkorder_sec;
10306 linkorder_sec = NULL;
10308 seen_linkorder = 0;
10309 for (p = o->map_head.link_order; p != NULL; p = p->next)
10311 if (p->type == bfd_indirect_link_order)
10313 s = p->u.indirect.section;
10315 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10316 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
10317 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
10318 && elfsec < elf_numsections (sub)
10319 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
10320 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
10334 if (seen_other && seen_linkorder)
10336 if (other_sec && linkorder_sec)
10337 (*_bfd_error_handler) (_("%A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections"),
10339 linkorder_sec->owner, other_sec,
10342 (*_bfd_error_handler) (_("%A has both ordered and unordered sections"),
10344 bfd_set_error (bfd_error_bad_value);
10349 if (!seen_linkorder)
10352 sections = (struct bfd_link_order **)
10353 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
10354 if (sections == NULL)
10356 seen_linkorder = 0;
10358 for (p = o->map_head.link_order; p != NULL; p = p->next)
10360 sections[seen_linkorder++] = p;
10362 /* Sort the input sections in the order of their linked section. */
10363 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
10364 compare_link_order);
10366 /* Change the offsets of the sections. */
10368 for (n = 0; n < seen_linkorder; n++)
10370 s = sections[n]->u.indirect.section;
10371 offset &= ~(bfd_vma) 0 << s->alignment_power;
10372 s->output_offset = offset;
10373 sections[n]->offset = offset;
10374 /* FIXME: octets_per_byte. */
10375 offset += sections[n]->size;
10383 elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
10387 if (flinfo->symstrtab != NULL)
10388 _bfd_stringtab_free (flinfo->symstrtab);
10389 if (flinfo->contents != NULL)
10390 free (flinfo->contents);
10391 if (flinfo->external_relocs != NULL)
10392 free (flinfo->external_relocs);
10393 if (flinfo->internal_relocs != NULL)
10394 free (flinfo->internal_relocs);
10395 if (flinfo->external_syms != NULL)
10396 free (flinfo->external_syms);
10397 if (flinfo->locsym_shndx != NULL)
10398 free (flinfo->locsym_shndx);
10399 if (flinfo->internal_syms != NULL)
10400 free (flinfo->internal_syms);
10401 if (flinfo->indices != NULL)
10402 free (flinfo->indices);
10403 if (flinfo->sections != NULL)
10404 free (flinfo->sections);
10405 if (flinfo->symbuf != NULL)
10406 free (flinfo->symbuf);
10407 if (flinfo->symshndxbuf != NULL)
10408 free (flinfo->symshndxbuf);
10409 for (o = obfd->sections; o != NULL; o = o->next)
10411 struct bfd_elf_section_data *esdo = elf_section_data (o);
10412 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
10413 free (esdo->rel.hashes);
10414 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
10415 free (esdo->rela.hashes);
10419 /* Do the final step of an ELF link. */
10422 bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
10424 bfd_boolean dynamic;
10425 bfd_boolean emit_relocs;
10427 struct elf_final_link_info flinfo;
10429 struct bfd_link_order *p;
10431 bfd_size_type max_contents_size;
10432 bfd_size_type max_external_reloc_size;
10433 bfd_size_type max_internal_reloc_count;
10434 bfd_size_type max_sym_count;
10435 bfd_size_type max_sym_shndx_count;
10437 Elf_Internal_Sym elfsym;
10439 Elf_Internal_Shdr *symtab_hdr;
10440 Elf_Internal_Shdr *symtab_shndx_hdr;
10441 Elf_Internal_Shdr *symstrtab_hdr;
10442 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10443 struct elf_outext_info eoinfo;
10444 bfd_boolean merged;
10445 size_t relativecount = 0;
10446 asection *reldyn = 0;
10448 asection *attr_section = NULL;
10449 bfd_vma attr_size = 0;
10450 const char *std_attrs_section;
10452 if (! is_elf_hash_table (info->hash))
10456 abfd->flags |= DYNAMIC;
10458 dynamic = elf_hash_table (info)->dynamic_sections_created;
10459 dynobj = elf_hash_table (info)->dynobj;
10461 emit_relocs = (info->relocatable
10462 || info->emitrelocations);
10464 flinfo.info = info;
10465 flinfo.output_bfd = abfd;
10466 flinfo.symstrtab = _bfd_elf_stringtab_init ();
10467 if (flinfo.symstrtab == NULL)
10472 flinfo.dynsym_sec = NULL;
10473 flinfo.hash_sec = NULL;
10474 flinfo.symver_sec = NULL;
10478 flinfo.dynsym_sec = bfd_get_linker_section (dynobj, ".dynsym");
10479 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
10480 /* Note that dynsym_sec can be NULL (on VMS). */
10481 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
10482 /* Note that it is OK if symver_sec is NULL. */
10485 flinfo.contents = NULL;
10486 flinfo.external_relocs = NULL;
10487 flinfo.internal_relocs = NULL;
10488 flinfo.external_syms = NULL;
10489 flinfo.locsym_shndx = NULL;
10490 flinfo.internal_syms = NULL;
10491 flinfo.indices = NULL;
10492 flinfo.sections = NULL;
10493 flinfo.symbuf = NULL;
10494 flinfo.symshndxbuf = NULL;
10495 flinfo.symbuf_count = 0;
10496 flinfo.shndxbuf_size = 0;
10497 flinfo.filesym_count = 0;
10499 /* The object attributes have been merged. Remove the input
10500 sections from the link, and set the contents of the output
10502 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
10503 for (o = abfd->sections; o != NULL; o = o->next)
10505 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
10506 || strcmp (o->name, ".gnu.attributes") == 0)
10508 for (p = o->map_head.link_order; p != NULL; p = p->next)
10510 asection *input_section;
10512 if (p->type != bfd_indirect_link_order)
10514 input_section = p->u.indirect.section;
10515 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10516 elf_link_input_bfd ignores this section. */
10517 input_section->flags &= ~SEC_HAS_CONTENTS;
10520 attr_size = bfd_elf_obj_attr_size (abfd);
10523 bfd_set_section_size (abfd, o, attr_size);
10525 /* Skip this section later on. */
10526 o->map_head.link_order = NULL;
10529 o->flags |= SEC_EXCLUDE;
10533 /* Count up the number of relocations we will output for each output
10534 section, so that we know the sizes of the reloc sections. We
10535 also figure out some maximum sizes. */
10536 max_contents_size = 0;
10537 max_external_reloc_size = 0;
10538 max_internal_reloc_count = 0;
10540 max_sym_shndx_count = 0;
10542 for (o = abfd->sections; o != NULL; o = o->next)
10544 struct bfd_elf_section_data *esdo = elf_section_data (o);
10545 o->reloc_count = 0;
10547 for (p = o->map_head.link_order; p != NULL; p = p->next)
10549 unsigned int reloc_count = 0;
10550 struct bfd_elf_section_data *esdi = NULL;
10552 if (p->type == bfd_section_reloc_link_order
10553 || p->type == bfd_symbol_reloc_link_order)
10555 else if (p->type == bfd_indirect_link_order)
10559 sec = p->u.indirect.section;
10560 esdi = elf_section_data (sec);
10562 /* Mark all sections which are to be included in the
10563 link. This will normally be every section. We need
10564 to do this so that we can identify any sections which
10565 the linker has decided to not include. */
10566 sec->linker_mark = TRUE;
10568 if (sec->flags & SEC_MERGE)
10571 if (esdo->this_hdr.sh_type == SHT_REL
10572 || esdo->this_hdr.sh_type == SHT_RELA)
10573 /* Some backends use reloc_count in relocation sections
10574 to count particular types of relocs. Of course,
10575 reloc sections themselves can't have relocations. */
10577 else if (info->relocatable || info->emitrelocations)
10578 reloc_count = sec->reloc_count;
10579 else if (bed->elf_backend_count_relocs)
10580 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
10582 if (sec->rawsize > max_contents_size)
10583 max_contents_size = sec->rawsize;
10584 if (sec->size > max_contents_size)
10585 max_contents_size = sec->size;
10587 /* We are interested in just local symbols, not all
10589 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
10590 && (sec->owner->flags & DYNAMIC) == 0)
10594 if (elf_bad_symtab (sec->owner))
10595 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
10596 / bed->s->sizeof_sym);
10598 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
10600 if (sym_count > max_sym_count)
10601 max_sym_count = sym_count;
10603 if (sym_count > max_sym_shndx_count
10604 && elf_symtab_shndx (sec->owner) != 0)
10605 max_sym_shndx_count = sym_count;
10607 if ((sec->flags & SEC_RELOC) != 0)
10609 size_t ext_size = 0;
10611 if (esdi->rel.hdr != NULL)
10612 ext_size = esdi->rel.hdr->sh_size;
10613 if (esdi->rela.hdr != NULL)
10614 ext_size += esdi->rela.hdr->sh_size;
10616 if (ext_size > max_external_reloc_size)
10617 max_external_reloc_size = ext_size;
10618 if (sec->reloc_count > max_internal_reloc_count)
10619 max_internal_reloc_count = sec->reloc_count;
10624 if (reloc_count == 0)
10627 o->reloc_count += reloc_count;
10629 if (p->type == bfd_indirect_link_order
10630 && (info->relocatable || info->emitrelocations))
10633 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
10634 if (esdi->rela.hdr)
10635 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
10640 esdo->rela.count += reloc_count;
10642 esdo->rel.count += reloc_count;
10646 if (o->reloc_count > 0)
10647 o->flags |= SEC_RELOC;
10650 /* Explicitly clear the SEC_RELOC flag. The linker tends to
10651 set it (this is probably a bug) and if it is set
10652 assign_section_numbers will create a reloc section. */
10653 o->flags &=~ SEC_RELOC;
10656 /* If the SEC_ALLOC flag is not set, force the section VMA to
10657 zero. This is done in elf_fake_sections as well, but forcing
10658 the VMA to 0 here will ensure that relocs against these
10659 sections are handled correctly. */
10660 if ((o->flags & SEC_ALLOC) == 0
10661 && ! o->user_set_vma)
10665 if (! info->relocatable && merged)
10666 elf_link_hash_traverse (elf_hash_table (info),
10667 _bfd_elf_link_sec_merge_syms, abfd);
10669 /* Figure out the file positions for everything but the symbol table
10670 and the relocs. We set symcount to force assign_section_numbers
10671 to create a symbol table. */
10672 bfd_get_symcount (abfd) = info->strip == strip_all ? 0 : 1;
10673 BFD_ASSERT (! abfd->output_has_begun);
10674 if (! _bfd_elf_compute_section_file_positions (abfd, info))
10677 /* Set sizes, and assign file positions for reloc sections. */
10678 for (o = abfd->sections; o != NULL; o = o->next)
10680 struct bfd_elf_section_data *esdo = elf_section_data (o);
10681 if ((o->flags & SEC_RELOC) != 0)
10684 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
10688 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
10692 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
10693 to count upwards while actually outputting the relocations. */
10694 esdo->rel.count = 0;
10695 esdo->rela.count = 0;
10698 _bfd_elf_assign_file_positions_for_relocs (abfd);
10700 /* We have now assigned file positions for all the sections except
10701 .symtab and .strtab. We start the .symtab section at the current
10702 file position, and write directly to it. We build the .strtab
10703 section in memory. */
10704 bfd_get_symcount (abfd) = 0;
10705 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
10706 /* sh_name is set in prep_headers. */
10707 symtab_hdr->sh_type = SHT_SYMTAB;
10708 /* sh_flags, sh_addr and sh_size all start off zero. */
10709 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
10710 /* sh_link is set in assign_section_numbers. */
10711 /* sh_info is set below. */
10712 /* sh_offset is set just below. */
10713 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
10715 off = elf_next_file_pos (abfd);
10716 off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
10718 /* Note that at this point elf_next_file_pos (abfd) is
10719 incorrect. We do not yet know the size of the .symtab section.
10720 We correct next_file_pos below, after we do know the size. */
10722 /* Allocate a buffer to hold swapped out symbols. This is to avoid
10723 continuously seeking to the right position in the file. */
10724 if (! info->keep_memory || max_sym_count < 20)
10725 flinfo.symbuf_size = 20;
10727 flinfo.symbuf_size = max_sym_count;
10728 amt = flinfo.symbuf_size;
10729 amt *= bed->s->sizeof_sym;
10730 flinfo.symbuf = (bfd_byte *) bfd_malloc (amt);
10731 if (flinfo.symbuf == NULL)
10733 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
10735 /* Wild guess at number of output symbols. realloc'd as needed. */
10736 amt = 2 * max_sym_count + elf_numsections (abfd) + 1000;
10737 flinfo.shndxbuf_size = amt;
10738 amt *= sizeof (Elf_External_Sym_Shndx);
10739 flinfo.symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
10740 if (flinfo.symshndxbuf == NULL)
10744 /* Start writing out the symbol table. The first symbol is always a
10746 if (info->strip != strip_all
10749 elfsym.st_value = 0;
10750 elfsym.st_size = 0;
10751 elfsym.st_info = 0;
10752 elfsym.st_other = 0;
10753 elfsym.st_shndx = SHN_UNDEF;
10754 elfsym.st_target_internal = 0;
10755 if (elf_link_output_sym (&flinfo, NULL, &elfsym, bfd_und_section_ptr,
10760 /* Output a symbol for each section. We output these even if we are
10761 discarding local symbols, since they are used for relocs. These
10762 symbols have no names. We store the index of each one in the
10763 index field of the section, so that we can find it again when
10764 outputting relocs. */
10765 if (info->strip != strip_all
10768 elfsym.st_size = 0;
10769 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
10770 elfsym.st_other = 0;
10771 elfsym.st_value = 0;
10772 elfsym.st_target_internal = 0;
10773 for (i = 1; i < elf_numsections (abfd); i++)
10775 o = bfd_section_from_elf_index (abfd, i);
10778 o->target_index = bfd_get_symcount (abfd);
10779 elfsym.st_shndx = i;
10780 if (!info->relocatable)
10781 elfsym.st_value = o->vma;
10782 if (elf_link_output_sym (&flinfo, NULL, &elfsym, o, NULL) != 1)
10788 /* Allocate some memory to hold information read in from the input
10790 if (max_contents_size != 0)
10792 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
10793 if (flinfo.contents == NULL)
10797 if (max_external_reloc_size != 0)
10799 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
10800 if (flinfo.external_relocs == NULL)
10804 if (max_internal_reloc_count != 0)
10806 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
10807 amt *= sizeof (Elf_Internal_Rela);
10808 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
10809 if (flinfo.internal_relocs == NULL)
10813 if (max_sym_count != 0)
10815 amt = max_sym_count * bed->s->sizeof_sym;
10816 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
10817 if (flinfo.external_syms == NULL)
10820 amt = max_sym_count * sizeof (Elf_Internal_Sym);
10821 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
10822 if (flinfo.internal_syms == NULL)
10825 amt = max_sym_count * sizeof (long);
10826 flinfo.indices = (long int *) bfd_malloc (amt);
10827 if (flinfo.indices == NULL)
10830 amt = max_sym_count * sizeof (asection *);
10831 flinfo.sections = (asection **) bfd_malloc (amt);
10832 if (flinfo.sections == NULL)
10836 if (max_sym_shndx_count != 0)
10838 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
10839 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
10840 if (flinfo.locsym_shndx == NULL)
10844 if (elf_hash_table (info)->tls_sec)
10846 bfd_vma base, end = 0;
10849 for (sec = elf_hash_table (info)->tls_sec;
10850 sec && (sec->flags & SEC_THREAD_LOCAL);
10853 bfd_size_type size = sec->size;
10856 && (sec->flags & SEC_HAS_CONTENTS) == 0)
10858 struct bfd_link_order *ord = sec->map_tail.link_order;
10861 size = ord->offset + ord->size;
10863 end = sec->vma + size;
10865 base = elf_hash_table (info)->tls_sec->vma;
10866 /* Only align end of TLS section if static TLS doesn't have special
10867 alignment requirements. */
10868 if (bed->static_tls_alignment == 1)
10869 end = align_power (end,
10870 elf_hash_table (info)->tls_sec->alignment_power);
10871 elf_hash_table (info)->tls_size = end - base;
10874 /* Reorder SHF_LINK_ORDER sections. */
10875 for (o = abfd->sections; o != NULL; o = o->next)
10877 if (!elf_fixup_link_order (abfd, o))
10881 /* Since ELF permits relocations to be against local symbols, we
10882 must have the local symbols available when we do the relocations.
10883 Since we would rather only read the local symbols once, and we
10884 would rather not keep them in memory, we handle all the
10885 relocations for a single input file at the same time.
10887 Unfortunately, there is no way to know the total number of local
10888 symbols until we have seen all of them, and the local symbol
10889 indices precede the global symbol indices. This means that when
10890 we are generating relocatable output, and we see a reloc against
10891 a global symbol, we can not know the symbol index until we have
10892 finished examining all the local symbols to see which ones we are
10893 going to output. To deal with this, we keep the relocations in
10894 memory, and don't output them until the end of the link. This is
10895 an unfortunate waste of memory, but I don't see a good way around
10896 it. Fortunately, it only happens when performing a relocatable
10897 link, which is not the common case. FIXME: If keep_memory is set
10898 we could write the relocs out and then read them again; I don't
10899 know how bad the memory loss will be. */
10901 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
10902 sub->output_has_begun = FALSE;
10903 for (o = abfd->sections; o != NULL; o = o->next)
10905 for (p = o->map_head.link_order; p != NULL; p = p->next)
10907 if (p->type == bfd_indirect_link_order
10908 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
10909 == bfd_target_elf_flavour)
10910 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
10912 if (! sub->output_has_begun)
10914 if (! elf_link_input_bfd (&flinfo, sub))
10916 sub->output_has_begun = TRUE;
10919 else if (p->type == bfd_section_reloc_link_order
10920 || p->type == bfd_symbol_reloc_link_order)
10922 if (! elf_reloc_link_order (abfd, info, o, p))
10927 if (! _bfd_default_link_order (abfd, info, o, p))
10929 if (p->type == bfd_indirect_link_order
10930 && (bfd_get_flavour (sub)
10931 == bfd_target_elf_flavour)
10932 && (elf_elfheader (sub)->e_ident[EI_CLASS]
10933 != bed->s->elfclass))
10935 const char *iclass, *oclass;
10937 if (bed->s->elfclass == ELFCLASS64)
10939 iclass = "ELFCLASS32";
10940 oclass = "ELFCLASS64";
10944 iclass = "ELFCLASS64";
10945 oclass = "ELFCLASS32";
10948 bfd_set_error (bfd_error_wrong_format);
10949 (*_bfd_error_handler)
10950 (_("%B: file class %s incompatible with %s"),
10951 sub, iclass, oclass);
10960 /* Free symbol buffer if needed. */
10961 if (!info->reduce_memory_overheads)
10963 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
10964 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10965 && elf_tdata (sub)->symbuf)
10967 free (elf_tdata (sub)->symbuf);
10968 elf_tdata (sub)->symbuf = NULL;
10972 /* Output a FILE symbol so that following locals are not associated
10973 with the wrong input file. */
10974 memset (&elfsym, 0, sizeof (elfsym));
10975 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10976 elfsym.st_shndx = SHN_ABS;
10978 if (flinfo.filesym_count > 1
10979 && !elf_link_output_sym (&flinfo, NULL, &elfsym,
10980 bfd_und_section_ptr, NULL))
10983 /* Output any global symbols that got converted to local in a
10984 version script or due to symbol visibility. We do this in a
10985 separate step since ELF requires all local symbols to appear
10986 prior to any global symbols. FIXME: We should only do this if
10987 some global symbols were, in fact, converted to become local.
10988 FIXME: Will this work correctly with the Irix 5 linker? */
10989 eoinfo.failed = FALSE;
10990 eoinfo.flinfo = &flinfo;
10991 eoinfo.localsyms = TRUE;
10992 eoinfo.need_second_pass = FALSE;
10993 eoinfo.second_pass = FALSE;
10994 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
10998 if (flinfo.filesym_count == 1
10999 && !elf_link_output_sym (&flinfo, NULL, &elfsym,
11000 bfd_und_section_ptr, NULL))
11003 if (eoinfo.need_second_pass)
11005 eoinfo.second_pass = TRUE;
11006 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
11011 /* If backend needs to output some local symbols not present in the hash
11012 table, do it now. */
11013 if (bed->elf_backend_output_arch_local_syms)
11015 typedef int (*out_sym_func)
11016 (void *, const char *, Elf_Internal_Sym *, asection *,
11017 struct elf_link_hash_entry *);
11019 if (! ((*bed->elf_backend_output_arch_local_syms)
11020 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
11024 /* That wrote out all the local symbols. Finish up the symbol table
11025 with the global symbols. Even if we want to strip everything we
11026 can, we still need to deal with those global symbols that got
11027 converted to local in a version script. */
11029 /* The sh_info field records the index of the first non local symbol. */
11030 symtab_hdr->sh_info = bfd_get_symcount (abfd);
11033 && flinfo.dynsym_sec != NULL
11034 && flinfo.dynsym_sec->output_section != bfd_abs_section_ptr)
11036 Elf_Internal_Sym sym;
11037 bfd_byte *dynsym = flinfo.dynsym_sec->contents;
11038 long last_local = 0;
11040 /* Write out the section symbols for the output sections. */
11041 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
11047 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11049 sym.st_target_internal = 0;
11051 for (s = abfd->sections; s != NULL; s = s->next)
11057 dynindx = elf_section_data (s)->dynindx;
11060 indx = elf_section_data (s)->this_idx;
11061 BFD_ASSERT (indx > 0);
11062 sym.st_shndx = indx;
11063 if (! check_dynsym (abfd, &sym))
11065 sym.st_value = s->vma;
11066 dest = dynsym + dynindx * bed->s->sizeof_sym;
11067 if (last_local < dynindx)
11068 last_local = dynindx;
11069 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11073 /* Write out the local dynsyms. */
11074 if (elf_hash_table (info)->dynlocal)
11076 struct elf_link_local_dynamic_entry *e;
11077 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
11082 /* Copy the internal symbol and turn off visibility.
11083 Note that we saved a word of storage and overwrote
11084 the original st_name with the dynstr_index. */
11086 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
11088 s = bfd_section_from_elf_index (e->input_bfd,
11093 elf_section_data (s->output_section)->this_idx;
11094 if (! check_dynsym (abfd, &sym))
11096 sym.st_value = (s->output_section->vma
11098 + e->isym.st_value);
11101 if (last_local < e->dynindx)
11102 last_local = e->dynindx;
11104 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
11105 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11109 elf_section_data (flinfo.dynsym_sec->output_section)->this_hdr.sh_info =
11113 /* We get the global symbols from the hash table. */
11114 eoinfo.failed = FALSE;
11115 eoinfo.localsyms = FALSE;
11116 eoinfo.flinfo = &flinfo;
11117 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
11121 /* If backend needs to output some symbols not present in the hash
11122 table, do it now. */
11123 if (bed->elf_backend_output_arch_syms)
11125 typedef int (*out_sym_func)
11126 (void *, const char *, Elf_Internal_Sym *, asection *,
11127 struct elf_link_hash_entry *);
11129 if (! ((*bed->elf_backend_output_arch_syms)
11130 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
11134 /* Flush all symbols to the file. */
11135 if (! elf_link_flush_output_syms (&flinfo, bed))
11138 /* Now we know the size of the symtab section. */
11139 off += symtab_hdr->sh_size;
11141 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
11142 if (symtab_shndx_hdr->sh_name != 0)
11144 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
11145 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
11146 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
11147 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
11148 symtab_shndx_hdr->sh_size = amt;
11150 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
11153 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
11154 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
11159 /* Finish up and write out the symbol string table (.strtab)
11161 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
11162 /* sh_name was set in prep_headers. */
11163 symstrtab_hdr->sh_type = SHT_STRTAB;
11164 symstrtab_hdr->sh_flags = 0;
11165 symstrtab_hdr->sh_addr = 0;
11166 symstrtab_hdr->sh_size = _bfd_stringtab_size (flinfo.symstrtab);
11167 symstrtab_hdr->sh_entsize = 0;
11168 symstrtab_hdr->sh_link = 0;
11169 symstrtab_hdr->sh_info = 0;
11170 /* sh_offset is set just below. */
11171 symstrtab_hdr->sh_addralign = 1;
11173 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr, off, TRUE);
11174 elf_next_file_pos (abfd) = off;
11176 if (bfd_get_symcount (abfd) > 0)
11178 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
11179 || ! _bfd_stringtab_emit (abfd, flinfo.symstrtab))
11183 /* Adjust the relocs to have the correct symbol indices. */
11184 for (o = abfd->sections; o != NULL; o = o->next)
11186 struct bfd_elf_section_data *esdo = elf_section_data (o);
11187 if ((o->flags & SEC_RELOC) == 0)
11190 if (esdo->rel.hdr != NULL)
11191 elf_link_adjust_relocs (abfd, &esdo->rel);
11192 if (esdo->rela.hdr != NULL)
11193 elf_link_adjust_relocs (abfd, &esdo->rela);
11195 /* Set the reloc_count field to 0 to prevent write_relocs from
11196 trying to swap the relocs out itself. */
11197 o->reloc_count = 0;
11200 if (dynamic && info->combreloc && dynobj != NULL)
11201 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
11203 /* If we are linking against a dynamic object, or generating a
11204 shared library, finish up the dynamic linking information. */
11207 bfd_byte *dyncon, *dynconend;
11209 /* Fix up .dynamic entries. */
11210 o = bfd_get_linker_section (dynobj, ".dynamic");
11211 BFD_ASSERT (o != NULL);
11213 dyncon = o->contents;
11214 dynconend = o->contents + o->size;
11215 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11217 Elf_Internal_Dyn dyn;
11221 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11228 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
11230 switch (elf_section_data (reldyn)->this_hdr.sh_type)
11232 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
11233 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
11236 dyn.d_un.d_val = relativecount;
11243 name = info->init_function;
11246 name = info->fini_function;
11249 struct elf_link_hash_entry *h;
11251 h = elf_link_hash_lookup (elf_hash_table (info), name,
11252 FALSE, FALSE, TRUE);
11254 && (h->root.type == bfd_link_hash_defined
11255 || h->root.type == bfd_link_hash_defweak))
11257 dyn.d_un.d_ptr = h->root.u.def.value;
11258 o = h->root.u.def.section;
11259 if (o->output_section != NULL)
11260 dyn.d_un.d_ptr += (o->output_section->vma
11261 + o->output_offset);
11264 /* The symbol is imported from another shared
11265 library and does not apply to this one. */
11266 dyn.d_un.d_ptr = 0;
11273 case DT_PREINIT_ARRAYSZ:
11274 name = ".preinit_array";
11276 case DT_INIT_ARRAYSZ:
11277 name = ".init_array";
11279 case DT_FINI_ARRAYSZ:
11280 name = ".fini_array";
11282 o = bfd_get_section_by_name (abfd, name);
11285 (*_bfd_error_handler)
11286 (_("%B: could not find output section %s"), abfd, name);
11290 (*_bfd_error_handler)
11291 (_("warning: %s section has zero size"), name);
11292 dyn.d_un.d_val = o->size;
11295 case DT_PREINIT_ARRAY:
11296 name = ".preinit_array";
11298 case DT_INIT_ARRAY:
11299 name = ".init_array";
11301 case DT_FINI_ARRAY:
11302 name = ".fini_array";
11309 name = ".gnu.hash";
11318 name = ".gnu.version_d";
11321 name = ".gnu.version_r";
11324 name = ".gnu.version";
11326 o = bfd_get_section_by_name (abfd, name);
11329 (*_bfd_error_handler)
11330 (_("%B: could not find output section %s"), abfd, name);
11333 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
11335 (*_bfd_error_handler)
11336 (_("warning: section '%s' is being made into a note"), name);
11337 bfd_set_error (bfd_error_nonrepresentable_section);
11340 dyn.d_un.d_ptr = o->vma;
11347 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
11351 dyn.d_un.d_val = 0;
11352 dyn.d_un.d_ptr = 0;
11353 for (i = 1; i < elf_numsections (abfd); i++)
11355 Elf_Internal_Shdr *hdr;
11357 hdr = elf_elfsections (abfd)[i];
11358 if (hdr->sh_type == type
11359 && (hdr->sh_flags & SHF_ALLOC) != 0)
11361 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
11362 dyn.d_un.d_val += hdr->sh_size;
11365 if (dyn.d_un.d_ptr == 0
11366 || hdr->sh_addr < dyn.d_un.d_ptr)
11367 dyn.d_un.d_ptr = hdr->sh_addr;
11373 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
11377 /* If we have created any dynamic sections, then output them. */
11378 if (dynobj != NULL)
11380 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
11383 /* Check for DT_TEXTREL (late, in case the backend removes it). */
11384 if (((info->warn_shared_textrel && info->shared)
11385 || info->error_textrel)
11386 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
11388 bfd_byte *dyncon, *dynconend;
11390 dyncon = o->contents;
11391 dynconend = o->contents + o->size;
11392 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11394 Elf_Internal_Dyn dyn;
11396 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11398 if (dyn.d_tag == DT_TEXTREL)
11400 if (info->error_textrel)
11401 info->callbacks->einfo
11402 (_("%P%X: read-only segment has dynamic relocations.\n"));
11404 info->callbacks->einfo
11405 (_("%P: warning: creating a DT_TEXTREL in a shared object.\n"));
11411 for (o = dynobj->sections; o != NULL; o = o->next)
11413 if ((o->flags & SEC_HAS_CONTENTS) == 0
11415 || o->output_section == bfd_abs_section_ptr)
11417 if ((o->flags & SEC_LINKER_CREATED) == 0)
11419 /* At this point, we are only interested in sections
11420 created by _bfd_elf_link_create_dynamic_sections. */
11423 if (elf_hash_table (info)->stab_info.stabstr == o)
11425 if (elf_hash_table (info)->eh_info.hdr_sec == o)
11427 if (strcmp (o->name, ".dynstr") != 0)
11429 /* FIXME: octets_per_byte. */
11430 if (! bfd_set_section_contents (abfd, o->output_section,
11432 (file_ptr) o->output_offset,
11438 /* The contents of the .dynstr section are actually in a
11440 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
11441 if (bfd_seek (abfd, off, SEEK_SET) != 0
11442 || ! _bfd_elf_strtab_emit (abfd,
11443 elf_hash_table (info)->dynstr))
11449 if (info->relocatable)
11451 bfd_boolean failed = FALSE;
11453 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
11458 /* If we have optimized stabs strings, output them. */
11459 if (elf_hash_table (info)->stab_info.stabstr != NULL)
11461 if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
11465 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
11468 elf_final_link_free (abfd, &flinfo);
11470 elf_linker (abfd) = TRUE;
11474 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
11475 if (contents == NULL)
11476 return FALSE; /* Bail out and fail. */
11477 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
11478 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
11485 elf_final_link_free (abfd, &flinfo);
11489 /* Initialize COOKIE for input bfd ABFD. */
11492 init_reloc_cookie (struct elf_reloc_cookie *cookie,
11493 struct bfd_link_info *info, bfd *abfd)
11495 Elf_Internal_Shdr *symtab_hdr;
11496 const struct elf_backend_data *bed;
11498 bed = get_elf_backend_data (abfd);
11499 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11501 cookie->abfd = abfd;
11502 cookie->sym_hashes = elf_sym_hashes (abfd);
11503 cookie->bad_symtab = elf_bad_symtab (abfd);
11504 if (cookie->bad_symtab)
11506 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
11507 cookie->extsymoff = 0;
11511 cookie->locsymcount = symtab_hdr->sh_info;
11512 cookie->extsymoff = symtab_hdr->sh_info;
11515 if (bed->s->arch_size == 32)
11516 cookie->r_sym_shift = 8;
11518 cookie->r_sym_shift = 32;
11520 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
11521 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
11523 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
11524 cookie->locsymcount, 0,
11526 if (cookie->locsyms == NULL)
11528 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
11531 if (info->keep_memory)
11532 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
11537 /* Free the memory allocated by init_reloc_cookie, if appropriate. */
11540 fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
11542 Elf_Internal_Shdr *symtab_hdr;
11544 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11545 if (cookie->locsyms != NULL
11546 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
11547 free (cookie->locsyms);
11550 /* Initialize the relocation information in COOKIE for input section SEC
11551 of input bfd ABFD. */
11554 init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11555 struct bfd_link_info *info, bfd *abfd,
11558 const struct elf_backend_data *bed;
11560 if (sec->reloc_count == 0)
11562 cookie->rels = NULL;
11563 cookie->relend = NULL;
11567 bed = get_elf_backend_data (abfd);
11569 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
11570 info->keep_memory);
11571 if (cookie->rels == NULL)
11573 cookie->rel = cookie->rels;
11574 cookie->relend = (cookie->rels
11575 + sec->reloc_count * bed->s->int_rels_per_ext_rel);
11577 cookie->rel = cookie->rels;
11581 /* Free the memory allocated by init_reloc_cookie_rels,
11585 fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11588 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
11589 free (cookie->rels);
11592 /* Initialize the whole of COOKIE for input section SEC. */
11595 init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11596 struct bfd_link_info *info,
11599 if (!init_reloc_cookie (cookie, info, sec->owner))
11601 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
11606 fini_reloc_cookie (cookie, sec->owner);
11611 /* Free the memory allocated by init_reloc_cookie_for_section,
11615 fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11618 fini_reloc_cookie_rels (cookie, sec);
11619 fini_reloc_cookie (cookie, sec->owner);
11622 /* Garbage collect unused sections. */
11624 /* Default gc_mark_hook. */
11627 _bfd_elf_gc_mark_hook (asection *sec,
11628 struct bfd_link_info *info ATTRIBUTE_UNUSED,
11629 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
11630 struct elf_link_hash_entry *h,
11631 Elf_Internal_Sym *sym)
11633 const char *sec_name;
11637 switch (h->root.type)
11639 case bfd_link_hash_defined:
11640 case bfd_link_hash_defweak:
11641 return h->root.u.def.section;
11643 case bfd_link_hash_common:
11644 return h->root.u.c.p->section;
11646 case bfd_link_hash_undefined:
11647 case bfd_link_hash_undefweak:
11648 /* To work around a glibc bug, keep all XXX input sections
11649 when there is an as yet undefined reference to __start_XXX
11650 or __stop_XXX symbols. The linker will later define such
11651 symbols for orphan input sections that have a name
11652 representable as a C identifier. */
11653 if (strncmp (h->root.root.string, "__start_", 8) == 0)
11654 sec_name = h->root.root.string + 8;
11655 else if (strncmp (h->root.root.string, "__stop_", 7) == 0)
11656 sec_name = h->root.root.string + 7;
11660 if (sec_name && *sec_name != '\0')
11664 for (i = info->input_bfds; i; i = i->link_next)
11666 sec = bfd_get_section_by_name (i, sec_name);
11668 sec->flags |= SEC_KEEP;
11678 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
11683 /* COOKIE->rel describes a relocation against section SEC, which is
11684 a section we've decided to keep. Return the section that contains
11685 the relocation symbol, or NULL if no section contains it. */
11688 _bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
11689 elf_gc_mark_hook_fn gc_mark_hook,
11690 struct elf_reloc_cookie *cookie)
11692 unsigned long r_symndx;
11693 struct elf_link_hash_entry *h;
11695 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
11696 if (r_symndx == STN_UNDEF)
11699 if (r_symndx >= cookie->locsymcount
11700 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
11702 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
11703 while (h->root.type == bfd_link_hash_indirect
11704 || h->root.type == bfd_link_hash_warning)
11705 h = (struct elf_link_hash_entry *) h->root.u.i.link;
11707 /* If this symbol is weak and there is a non-weak definition, we
11708 keep the non-weak definition because many backends put
11709 dynamic reloc info on the non-weak definition for code
11710 handling copy relocs. */
11711 if (h->u.weakdef != NULL)
11712 h->u.weakdef->mark = 1;
11713 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
11716 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
11717 &cookie->locsyms[r_symndx]);
11720 /* COOKIE->rel describes a relocation against section SEC, which is
11721 a section we've decided to keep. Mark the section that contains
11722 the relocation symbol. */
11725 _bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
11727 elf_gc_mark_hook_fn gc_mark_hook,
11728 struct elf_reloc_cookie *cookie)
11732 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
11733 if (rsec && !rsec->gc_mark)
11735 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
11736 || (rsec->owner->flags & DYNAMIC) != 0)
11738 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
11744 /* The mark phase of garbage collection. For a given section, mark
11745 it and any sections in this section's group, and all the sections
11746 which define symbols to which it refers. */
11749 _bfd_elf_gc_mark (struct bfd_link_info *info,
11751 elf_gc_mark_hook_fn gc_mark_hook)
11754 asection *group_sec, *eh_frame;
11758 /* Mark all the sections in the group. */
11759 group_sec = elf_section_data (sec)->next_in_group;
11760 if (group_sec && !group_sec->gc_mark)
11761 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
11764 /* Look through the section relocs. */
11766 eh_frame = elf_eh_frame_section (sec->owner);
11767 if ((sec->flags & SEC_RELOC) != 0
11768 && sec->reloc_count > 0
11769 && sec != eh_frame)
11771 struct elf_reloc_cookie cookie;
11773 if (!init_reloc_cookie_for_section (&cookie, info, sec))
11777 for (; cookie.rel < cookie.relend; cookie.rel++)
11778 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
11783 fini_reloc_cookie_for_section (&cookie, sec);
11787 if (ret && eh_frame && elf_fde_list (sec))
11789 struct elf_reloc_cookie cookie;
11791 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
11795 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
11796 gc_mark_hook, &cookie))
11798 fini_reloc_cookie_for_section (&cookie, eh_frame);
11805 /* Keep debug and special sections. */
11808 _bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
11809 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
11813 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
11816 bfd_boolean some_kept;
11817 bfd_boolean debug_frag_seen;
11819 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
11822 /* Ensure all linker created sections are kept,
11823 see if any other section is already marked,
11824 and note if we have any fragmented debug sections. */
11825 debug_frag_seen = some_kept = FALSE;
11826 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11828 if ((isec->flags & SEC_LINKER_CREATED) != 0)
11830 else if (isec->gc_mark)
11833 if (debug_frag_seen == FALSE
11834 && (isec->flags & SEC_DEBUGGING)
11835 && CONST_STRNEQ (isec->name, ".debug_line."))
11836 debug_frag_seen = TRUE;
11839 /* If no section in this file will be kept, then we can
11840 toss out the debug and special sections. */
11844 /* Keep debug and special sections like .comment when they are
11845 not part of a group, or when we have single-member groups. */
11846 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11847 if ((elf_next_in_group (isec) == NULL
11848 || elf_next_in_group (isec) == isec)
11849 && ((isec->flags & SEC_DEBUGGING) != 0
11850 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0))
11853 if (! debug_frag_seen)
11856 /* Look for CODE sections which are going to be discarded,
11857 and find and discard any fragmented debug sections which
11858 are associated with that code section. */
11859 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11860 if ((isec->flags & SEC_CODE) != 0
11861 && isec->gc_mark == 0)
11866 ilen = strlen (isec->name);
11868 /* Association is determined by the name of the debug section
11869 containing the name of the code section as a suffix. For
11870 example .debug_line.text.foo is a debug section associated
11872 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
11876 if (dsec->gc_mark == 0
11877 || (dsec->flags & SEC_DEBUGGING) == 0)
11880 dlen = strlen (dsec->name);
11883 && strncmp (dsec->name + (dlen - ilen),
11884 isec->name, ilen) == 0)
11895 /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
11897 struct elf_gc_sweep_symbol_info
11899 struct bfd_link_info *info;
11900 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
11905 elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
11908 && (((h->root.type == bfd_link_hash_defined
11909 || h->root.type == bfd_link_hash_defweak)
11910 && !(h->def_regular
11911 && h->root.u.def.section->gc_mark))
11912 || h->root.type == bfd_link_hash_undefined
11913 || h->root.type == bfd_link_hash_undefweak))
11915 struct elf_gc_sweep_symbol_info *inf;
11917 inf = (struct elf_gc_sweep_symbol_info *) data;
11918 (*inf->hide_symbol) (inf->info, h, TRUE);
11919 h->def_regular = 0;
11920 h->ref_regular = 0;
11921 h->ref_regular_nonweak = 0;
11927 /* The sweep phase of garbage collection. Remove all garbage sections. */
11929 typedef bfd_boolean (*gc_sweep_hook_fn)
11930 (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
11933 elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
11936 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11937 gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
11938 unsigned long section_sym_count;
11939 struct elf_gc_sweep_symbol_info sweep_info;
11941 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
11945 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
11948 for (o = sub->sections; o != NULL; o = o->next)
11950 /* When any section in a section group is kept, we keep all
11951 sections in the section group. If the first member of
11952 the section group is excluded, we will also exclude the
11954 if (o->flags & SEC_GROUP)
11956 asection *first = elf_next_in_group (o);
11957 o->gc_mark = first->gc_mark;
11963 /* Skip sweeping sections already excluded. */
11964 if (o->flags & SEC_EXCLUDE)
11967 /* Since this is early in the link process, it is simple
11968 to remove a section from the output. */
11969 o->flags |= SEC_EXCLUDE;
11971 if (info->print_gc_sections && o->size != 0)
11972 _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name);
11974 /* But we also have to update some of the relocation
11975 info we collected before. */
11977 && (o->flags & SEC_RELOC) != 0
11978 && o->reloc_count > 0
11979 && !bfd_is_abs_section (o->output_section))
11981 Elf_Internal_Rela *internal_relocs;
11985 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
11986 info->keep_memory);
11987 if (internal_relocs == NULL)
11990 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
11992 if (elf_section_data (o)->relocs != internal_relocs)
11993 free (internal_relocs);
12001 /* Remove the symbols that were in the swept sections from the dynamic
12002 symbol table. GCFIXME: Anyone know how to get them out of the
12003 static symbol table as well? */
12004 sweep_info.info = info;
12005 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
12006 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
12009 _bfd_elf_link_renumber_dynsyms (abfd, info, §ion_sym_count);
12013 /* Propagate collected vtable information. This is called through
12014 elf_link_hash_traverse. */
12017 elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
12019 /* Those that are not vtables. */
12020 if (h->vtable == NULL || h->vtable->parent == NULL)
12023 /* Those vtables that do not have parents, we cannot merge. */
12024 if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
12027 /* If we've already been done, exit. */
12028 if (h->vtable->used && h->vtable->used[-1])
12031 /* Make sure the parent's table is up to date. */
12032 elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
12034 if (h->vtable->used == NULL)
12036 /* None of this table's entries were referenced. Re-use the
12038 h->vtable->used = h->vtable->parent->vtable->used;
12039 h->vtable->size = h->vtable->parent->vtable->size;
12044 bfd_boolean *cu, *pu;
12046 /* Or the parent's entries into ours. */
12047 cu = h->vtable->used;
12049 pu = h->vtable->parent->vtable->used;
12052 const struct elf_backend_data *bed;
12053 unsigned int log_file_align;
12055 bed = get_elf_backend_data (h->root.u.def.section->owner);
12056 log_file_align = bed->s->log_file_align;
12057 n = h->vtable->parent->vtable->size >> log_file_align;
12072 elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
12075 bfd_vma hstart, hend;
12076 Elf_Internal_Rela *relstart, *relend, *rel;
12077 const struct elf_backend_data *bed;
12078 unsigned int log_file_align;
12080 /* Take care of both those symbols that do not describe vtables as
12081 well as those that are not loaded. */
12082 if (h->vtable == NULL || h->vtable->parent == NULL)
12085 BFD_ASSERT (h->root.type == bfd_link_hash_defined
12086 || h->root.type == bfd_link_hash_defweak);
12088 sec = h->root.u.def.section;
12089 hstart = h->root.u.def.value;
12090 hend = hstart + h->size;
12092 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
12094 return *(bfd_boolean *) okp = FALSE;
12095 bed = get_elf_backend_data (sec->owner);
12096 log_file_align = bed->s->log_file_align;
12098 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
12100 for (rel = relstart; rel < relend; ++rel)
12101 if (rel->r_offset >= hstart && rel->r_offset < hend)
12103 /* If the entry is in use, do nothing. */
12104 if (h->vtable->used
12105 && (rel->r_offset - hstart) < h->vtable->size)
12107 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
12108 if (h->vtable->used[entry])
12111 /* Otherwise, kill it. */
12112 rel->r_offset = rel->r_info = rel->r_addend = 0;
12118 /* Mark sections containing dynamically referenced symbols. When
12119 building shared libraries, we must assume that any visible symbol is
12123 bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
12125 struct bfd_link_info *info = (struct bfd_link_info *) inf;
12127 if ((h->root.type == bfd_link_hash_defined
12128 || h->root.type == bfd_link_hash_defweak)
12130 || ((!info->executable || info->export_dynamic)
12132 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
12133 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
12134 && (strchr (h->root.root.string, ELF_VER_CHR) != NULL
12135 || !bfd_hide_sym_by_version (info->version_info,
12136 h->root.root.string)))))
12137 h->root.u.def.section->flags |= SEC_KEEP;
12142 /* Keep all sections containing symbols undefined on the command-line,
12143 and the section containing the entry symbol. */
12146 _bfd_elf_gc_keep (struct bfd_link_info *info)
12148 struct bfd_sym_chain *sym;
12150 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
12152 struct elf_link_hash_entry *h;
12154 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
12155 FALSE, FALSE, FALSE);
12158 && (h->root.type == bfd_link_hash_defined
12159 || h->root.type == bfd_link_hash_defweak)
12160 && !bfd_is_abs_section (h->root.u.def.section))
12161 h->root.u.def.section->flags |= SEC_KEEP;
12165 /* Do mark and sweep of unused sections. */
12168 bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
12170 bfd_boolean ok = TRUE;
12172 elf_gc_mark_hook_fn gc_mark_hook;
12173 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12175 if (!bed->can_gc_sections
12176 || !is_elf_hash_table (info->hash))
12178 (*_bfd_error_handler)(_("Warning: gc-sections option ignored"));
12182 bed->gc_keep (info);
12184 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
12185 at the .eh_frame section if we can mark the FDEs individually. */
12186 _bfd_elf_begin_eh_frame_parsing (info);
12187 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
12190 struct elf_reloc_cookie cookie;
12192 sec = bfd_get_section_by_name (sub, ".eh_frame");
12193 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
12195 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
12196 if (elf_section_data (sec)->sec_info
12197 && (sec->flags & SEC_LINKER_CREATED) == 0)
12198 elf_eh_frame_section (sub) = sec;
12199 fini_reloc_cookie_for_section (&cookie, sec);
12200 sec = bfd_get_next_section_by_name (sec);
12203 _bfd_elf_end_eh_frame_parsing (info);
12205 /* Apply transitive closure to the vtable entry usage info. */
12206 elf_link_hash_traverse (elf_hash_table (info),
12207 elf_gc_propagate_vtable_entries_used,
12212 /* Kill the vtable relocations that were not used. */
12213 elf_link_hash_traverse (elf_hash_table (info),
12214 elf_gc_smash_unused_vtentry_relocs,
12219 /* Mark dynamically referenced symbols. */
12220 if (elf_hash_table (info)->dynamic_sections_created)
12221 elf_link_hash_traverse (elf_hash_table (info),
12222 bed->gc_mark_dynamic_ref,
12225 /* Grovel through relocs to find out who stays ... */
12226 gc_mark_hook = bed->gc_mark_hook;
12227 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
12231 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
12234 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
12235 Also treat note sections as a root, if the section is not part
12237 for (o = sub->sections; o != NULL; o = o->next)
12239 && (o->flags & SEC_EXCLUDE) == 0
12240 && ((o->flags & SEC_KEEP) != 0
12241 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
12242 && elf_next_in_group (o) == NULL )))
12244 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
12249 /* Allow the backend to mark additional target specific sections. */
12250 bed->gc_mark_extra_sections (info, gc_mark_hook);
12252 /* ... and mark SEC_EXCLUDE for those that go. */
12253 return elf_gc_sweep (abfd, info);
12256 /* Called from check_relocs to record the existence of a VTINHERIT reloc. */
12259 bfd_elf_gc_record_vtinherit (bfd *abfd,
12261 struct elf_link_hash_entry *h,
12264 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
12265 struct elf_link_hash_entry **search, *child;
12266 bfd_size_type extsymcount;
12267 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12269 /* The sh_info field of the symtab header tells us where the
12270 external symbols start. We don't care about the local symbols at
12272 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
12273 if (!elf_bad_symtab (abfd))
12274 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
12276 sym_hashes = elf_sym_hashes (abfd);
12277 sym_hashes_end = sym_hashes + extsymcount;
12279 /* Hunt down the child symbol, which is in this section at the same
12280 offset as the relocation. */
12281 for (search = sym_hashes; search != sym_hashes_end; ++search)
12283 if ((child = *search) != NULL
12284 && (child->root.type == bfd_link_hash_defined
12285 || child->root.type == bfd_link_hash_defweak)
12286 && child->root.u.def.section == sec
12287 && child->root.u.def.value == offset)
12291 (*_bfd_error_handler) ("%B: %A+%lu: No symbol found for INHERIT",
12292 abfd, sec, (unsigned long) offset);
12293 bfd_set_error (bfd_error_invalid_operation);
12297 if (!child->vtable)
12299 child->vtable = (struct elf_link_virtual_table_entry *)
12300 bfd_zalloc (abfd, sizeof (*child->vtable));
12301 if (!child->vtable)
12306 /* This *should* only be the absolute section. It could potentially
12307 be that someone has defined a non-global vtable though, which
12308 would be bad. It isn't worth paging in the local symbols to be
12309 sure though; that case should simply be handled by the assembler. */
12311 child->vtable->parent = (struct elf_link_hash_entry *) -1;
12314 child->vtable->parent = h;
12319 /* Called from check_relocs to record the existence of a VTENTRY reloc. */
12322 bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
12323 asection *sec ATTRIBUTE_UNUSED,
12324 struct elf_link_hash_entry *h,
12327 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12328 unsigned int log_file_align = bed->s->log_file_align;
12332 h->vtable = (struct elf_link_virtual_table_entry *)
12333 bfd_zalloc (abfd, sizeof (*h->vtable));
12338 if (addend >= h->vtable->size)
12340 size_t size, bytes, file_align;
12341 bfd_boolean *ptr = h->vtable->used;
12343 /* While the symbol is undefined, we have to be prepared to handle
12345 file_align = 1 << log_file_align;
12346 if (h->root.type == bfd_link_hash_undefined)
12347 size = addend + file_align;
12351 if (addend >= size)
12353 /* Oops! We've got a reference past the defined end of
12354 the table. This is probably a bug -- shall we warn? */
12355 size = addend + file_align;
12358 size = (size + file_align - 1) & -file_align;
12360 /* Allocate one extra entry for use as a "done" flag for the
12361 consolidation pass. */
12362 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
12366 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
12372 oldbytes = (((h->vtable->size >> log_file_align) + 1)
12373 * sizeof (bfd_boolean));
12374 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
12378 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
12383 /* And arrange for that done flag to be at index -1. */
12384 h->vtable->used = ptr + 1;
12385 h->vtable->size = size;
12388 h->vtable->used[addend >> log_file_align] = TRUE;
12393 /* Map an ELF section header flag to its corresponding string. */
12397 flagword flag_value;
12398 } elf_flags_to_name_table;
12400 static elf_flags_to_name_table elf_flags_to_names [] =
12402 { "SHF_WRITE", SHF_WRITE },
12403 { "SHF_ALLOC", SHF_ALLOC },
12404 { "SHF_EXECINSTR", SHF_EXECINSTR },
12405 { "SHF_MERGE", SHF_MERGE },
12406 { "SHF_STRINGS", SHF_STRINGS },
12407 { "SHF_INFO_LINK", SHF_INFO_LINK},
12408 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
12409 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
12410 { "SHF_GROUP", SHF_GROUP },
12411 { "SHF_TLS", SHF_TLS },
12412 { "SHF_MASKOS", SHF_MASKOS },
12413 { "SHF_EXCLUDE", SHF_EXCLUDE },
12416 /* Returns TRUE if the section is to be included, otherwise FALSE. */
12418 bfd_elf_lookup_section_flags (struct bfd_link_info *info,
12419 struct flag_info *flaginfo,
12422 const bfd_vma sh_flags = elf_section_flags (section);
12424 if (!flaginfo->flags_initialized)
12426 bfd *obfd = info->output_bfd;
12427 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12428 struct flag_info_list *tf = flaginfo->flag_list;
12430 int without_hex = 0;
12432 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
12435 flagword (*lookup) (char *);
12437 lookup = bed->elf_backend_lookup_section_flags_hook;
12438 if (lookup != NULL)
12440 flagword hexval = (*lookup) ((char *) tf->name);
12444 if (tf->with == with_flags)
12445 with_hex |= hexval;
12446 else if (tf->with == without_flags)
12447 without_hex |= hexval;
12452 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
12454 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
12456 if (tf->with == with_flags)
12457 with_hex |= elf_flags_to_names[i].flag_value;
12458 else if (tf->with == without_flags)
12459 without_hex |= elf_flags_to_names[i].flag_value;
12466 info->callbacks->einfo
12467 (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
12471 flaginfo->flags_initialized = TRUE;
12472 flaginfo->only_with_flags |= with_hex;
12473 flaginfo->not_with_flags |= without_hex;
12476 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
12479 if ((flaginfo->not_with_flags & sh_flags) != 0)
12485 struct alloc_got_off_arg {
12487 struct bfd_link_info *info;
12490 /* We need a special top-level link routine to convert got reference counts
12491 to real got offsets. */
12494 elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
12496 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
12497 bfd *obfd = gofarg->info->output_bfd;
12498 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12500 if (h->got.refcount > 0)
12502 h->got.offset = gofarg->gotoff;
12503 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
12506 h->got.offset = (bfd_vma) -1;
12511 /* And an accompanying bit to work out final got entry offsets once
12512 we're done. Should be called from final_link. */
12515 bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
12516 struct bfd_link_info *info)
12519 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12521 struct alloc_got_off_arg gofarg;
12523 BFD_ASSERT (abfd == info->output_bfd);
12525 if (! is_elf_hash_table (info->hash))
12528 /* The GOT offset is relative to the .got section, but the GOT header is
12529 put into the .got.plt section, if the backend uses it. */
12530 if (bed->want_got_plt)
12533 gotoff = bed->got_header_size;
12535 /* Do the local .got entries first. */
12536 for (i = info->input_bfds; i; i = i->link_next)
12538 bfd_signed_vma *local_got;
12539 bfd_size_type j, locsymcount;
12540 Elf_Internal_Shdr *symtab_hdr;
12542 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
12545 local_got = elf_local_got_refcounts (i);
12549 symtab_hdr = &elf_tdata (i)->symtab_hdr;
12550 if (elf_bad_symtab (i))
12551 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12553 locsymcount = symtab_hdr->sh_info;
12555 for (j = 0; j < locsymcount; ++j)
12557 if (local_got[j] > 0)
12559 local_got[j] = gotoff;
12560 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
12563 local_got[j] = (bfd_vma) -1;
12567 /* Then the global .got entries. .plt refcounts are handled by
12568 adjust_dynamic_symbol */
12569 gofarg.gotoff = gotoff;
12570 gofarg.info = info;
12571 elf_link_hash_traverse (elf_hash_table (info),
12572 elf_gc_allocate_got_offsets,
12577 /* Many folk need no more in the way of final link than this, once
12578 got entry reference counting is enabled. */
12581 bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
12583 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
12586 /* Invoke the regular ELF backend linker to do all the work. */
12587 return bfd_elf_final_link (abfd, info);
12591 bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
12593 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
12595 if (rcookie->bad_symtab)
12596 rcookie->rel = rcookie->rels;
12598 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
12600 unsigned long r_symndx;
12602 if (! rcookie->bad_symtab)
12603 if (rcookie->rel->r_offset > offset)
12605 if (rcookie->rel->r_offset != offset)
12608 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
12609 if (r_symndx == STN_UNDEF)
12612 if (r_symndx >= rcookie->locsymcount
12613 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12615 struct elf_link_hash_entry *h;
12617 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
12619 while (h->root.type == bfd_link_hash_indirect
12620 || h->root.type == bfd_link_hash_warning)
12621 h = (struct elf_link_hash_entry *) h->root.u.i.link;
12623 if ((h->root.type == bfd_link_hash_defined
12624 || h->root.type == bfd_link_hash_defweak)
12625 && discarded_section (h->root.u.def.section))
12632 /* It's not a relocation against a global symbol,
12633 but it could be a relocation against a local
12634 symbol for a discarded section. */
12636 Elf_Internal_Sym *isym;
12638 /* Need to: get the symbol; get the section. */
12639 isym = &rcookie->locsyms[r_symndx];
12640 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
12641 if (isec != NULL && discarded_section (isec))
12649 /* Discard unneeded references to discarded sections.
12650 Returns TRUE if any section's size was changed. */
12651 /* This function assumes that the relocations are in sorted order,
12652 which is true for all known assemblers. */
12655 bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
12657 struct elf_reloc_cookie cookie;
12658 asection *stab, *eh;
12659 const struct elf_backend_data *bed;
12661 bfd_boolean ret = FALSE;
12663 if (info->traditional_format
12664 || !is_elf_hash_table (info->hash))
12667 _bfd_elf_begin_eh_frame_parsing (info);
12668 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
12670 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12673 bed = get_elf_backend_data (abfd);
12676 if (!info->relocatable)
12678 eh = bfd_get_section_by_name (abfd, ".eh_frame");
12681 || bfd_is_abs_section (eh->output_section)))
12682 eh = bfd_get_next_section_by_name (eh);
12685 stab = bfd_get_section_by_name (abfd, ".stab");
12687 && (stab->size == 0
12688 || bfd_is_abs_section (stab->output_section)
12689 || stab->sec_info_type != SEC_INFO_TYPE_STABS))
12694 && bed->elf_backend_discard_info == NULL)
12697 if (!init_reloc_cookie (&cookie, info, abfd))
12701 && stab->reloc_count > 0
12702 && init_reloc_cookie_rels (&cookie, info, abfd, stab))
12704 if (_bfd_discard_section_stabs (abfd, stab,
12705 elf_section_data (stab)->sec_info,
12706 bfd_elf_reloc_symbol_deleted_p,
12709 fini_reloc_cookie_rels (&cookie, stab);
12713 && init_reloc_cookie_rels (&cookie, info, abfd, eh))
12715 _bfd_elf_parse_eh_frame (abfd, info, eh, &cookie);
12716 if (_bfd_elf_discard_section_eh_frame (abfd, info, eh,
12717 bfd_elf_reloc_symbol_deleted_p,
12720 fini_reloc_cookie_rels (&cookie, eh);
12721 eh = bfd_get_next_section_by_name (eh);
12724 if (bed->elf_backend_discard_info != NULL
12725 && (*bed->elf_backend_discard_info) (abfd, &cookie, info))
12728 fini_reloc_cookie (&cookie, abfd);
12730 _bfd_elf_end_eh_frame_parsing (info);
12732 if (info->eh_frame_hdr
12733 && !info->relocatable
12734 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
12741 _bfd_elf_section_already_linked (bfd *abfd,
12743 struct bfd_link_info *info)
12746 const char *name, *key;
12747 struct bfd_section_already_linked *l;
12748 struct bfd_section_already_linked_hash_entry *already_linked_list;
12750 if (sec->output_section == bfd_abs_section_ptr)
12753 flags = sec->flags;
12755 /* Return if it isn't a linkonce section. A comdat group section
12756 also has SEC_LINK_ONCE set. */
12757 if ((flags & SEC_LINK_ONCE) == 0)
12760 /* Don't put group member sections on our list of already linked
12761 sections. They are handled as a group via their group section. */
12762 if (elf_sec_group (sec) != NULL)
12765 /* For a SHT_GROUP section, use the group signature as the key. */
12767 if ((flags & SEC_GROUP) != 0
12768 && elf_next_in_group (sec) != NULL
12769 && elf_group_name (elf_next_in_group (sec)) != NULL)
12770 key = elf_group_name (elf_next_in_group (sec));
12773 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
12774 if (CONST_STRNEQ (name, ".gnu.linkonce.")
12775 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
12778 /* Must be a user linkonce section that doesn't follow gcc's
12779 naming convention. In this case we won't be matching
12780 single member groups. */
12784 already_linked_list = bfd_section_already_linked_table_lookup (key);
12786 for (l = already_linked_list->entry; l != NULL; l = l->next)
12788 /* We may have 2 different types of sections on the list: group
12789 sections with a signature of <key> (<key> is some string),
12790 and linkonce sections named .gnu.linkonce.<type>.<key>.
12791 Match like sections. LTO plugin sections are an exception.
12792 They are always named .gnu.linkonce.t.<key> and match either
12793 type of section. */
12794 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
12795 && ((flags & SEC_GROUP) != 0
12796 || strcmp (name, l->sec->name) == 0))
12797 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
12799 /* The section has already been linked. See if we should
12800 issue a warning. */
12801 if (!_bfd_handle_already_linked (sec, l, info))
12804 if (flags & SEC_GROUP)
12806 asection *first = elf_next_in_group (sec);
12807 asection *s = first;
12811 s->output_section = bfd_abs_section_ptr;
12812 /* Record which group discards it. */
12813 s->kept_section = l->sec;
12814 s = elf_next_in_group (s);
12815 /* These lists are circular. */
12825 /* A single member comdat group section may be discarded by a
12826 linkonce section and vice versa. */
12827 if ((flags & SEC_GROUP) != 0)
12829 asection *first = elf_next_in_group (sec);
12831 if (first != NULL && elf_next_in_group (first) == first)
12832 /* Check this single member group against linkonce sections. */
12833 for (l = already_linked_list->entry; l != NULL; l = l->next)
12834 if ((l->sec->flags & SEC_GROUP) == 0
12835 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
12837 first->output_section = bfd_abs_section_ptr;
12838 first->kept_section = l->sec;
12839 sec->output_section = bfd_abs_section_ptr;
12844 /* Check this linkonce section against single member groups. */
12845 for (l = already_linked_list->entry; l != NULL; l = l->next)
12846 if (l->sec->flags & SEC_GROUP)
12848 asection *first = elf_next_in_group (l->sec);
12851 && elf_next_in_group (first) == first
12852 && bfd_elf_match_symbols_in_sections (first, sec, info))
12854 sec->output_section = bfd_abs_section_ptr;
12855 sec->kept_section = first;
12860 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
12861 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
12862 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
12863 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
12864 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
12865 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
12866 `.gnu.linkonce.t.F' section from a different bfd not requiring any
12867 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
12868 The reverse order cannot happen as there is never a bfd with only the
12869 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
12870 matter as here were are looking only for cross-bfd sections. */
12872 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
12873 for (l = already_linked_list->entry; l != NULL; l = l->next)
12874 if ((l->sec->flags & SEC_GROUP) == 0
12875 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
12877 if (abfd != l->sec->owner)
12878 sec->output_section = bfd_abs_section_ptr;
12882 /* This is the first section with this name. Record it. */
12883 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
12884 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
12885 return sec->output_section == bfd_abs_section_ptr;
12889 _bfd_elf_common_definition (Elf_Internal_Sym *sym)
12891 return sym->st_shndx == SHN_COMMON;
12895 _bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
12901 _bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
12903 return bfd_com_section_ptr;
12907 _bfd_elf_default_got_elt_size (bfd *abfd,
12908 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12909 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
12910 bfd *ibfd ATTRIBUTE_UNUSED,
12911 unsigned long symndx ATTRIBUTE_UNUSED)
12913 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12914 return bed->s->arch_size / 8;
12917 /* Routines to support the creation of dynamic relocs. */
12919 /* Returns the name of the dynamic reloc section associated with SEC. */
12921 static const char *
12922 get_dynamic_reloc_section_name (bfd * abfd,
12924 bfd_boolean is_rela)
12927 const char *old_name = bfd_get_section_name (NULL, sec);
12928 const char *prefix = is_rela ? ".rela" : ".rel";
12930 if (old_name == NULL)
12933 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
12934 sprintf (name, "%s%s", prefix, old_name);
12939 /* Returns the dynamic reloc section associated with SEC.
12940 If necessary compute the name of the dynamic reloc section based
12941 on SEC's name (looked up in ABFD's string table) and the setting
12945 _bfd_elf_get_dynamic_reloc_section (bfd * abfd,
12947 bfd_boolean is_rela)
12949 asection * reloc_sec = elf_section_data (sec)->sreloc;
12951 if (reloc_sec == NULL)
12953 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12957 reloc_sec = bfd_get_linker_section (abfd, name);
12959 if (reloc_sec != NULL)
12960 elf_section_data (sec)->sreloc = reloc_sec;
12967 /* Returns the dynamic reloc section associated with SEC. If the
12968 section does not exist it is created and attached to the DYNOBJ
12969 bfd and stored in the SRELOC field of SEC's elf_section_data
12972 ALIGNMENT is the alignment for the newly created section and
12973 IS_RELA defines whether the name should be .rela.<SEC's name>
12974 or .rel.<SEC's name>. The section name is looked up in the
12975 string table associated with ABFD. */
12978 _bfd_elf_make_dynamic_reloc_section (asection * sec,
12980 unsigned int alignment,
12982 bfd_boolean is_rela)
12984 asection * reloc_sec = elf_section_data (sec)->sreloc;
12986 if (reloc_sec == NULL)
12988 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12993 reloc_sec = bfd_get_linker_section (dynobj, name);
12995 if (reloc_sec == NULL)
12997 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
12998 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
12999 if ((sec->flags & SEC_ALLOC) != 0)
13000 flags |= SEC_ALLOC | SEC_LOAD;
13002 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
13003 if (reloc_sec != NULL)
13005 /* _bfd_elf_get_sec_type_attr chooses a section type by
13006 name. Override as it may be wrong, eg. for a user
13007 section named "auto" we'll get ".relauto" which is
13008 seen to be a .rela section. */
13009 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
13010 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
13015 elf_section_data (sec)->sreloc = reloc_sec;
13021 /* Copy the ELF symbol type associated with a linker hash entry. */
13023 _bfd_elf_copy_link_hash_symbol_type (bfd *abfd ATTRIBUTE_UNUSED,
13024 struct bfd_link_hash_entry * hdest,
13025 struct bfd_link_hash_entry * hsrc)
13027 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *)hdest;
13028 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *)hsrc;
13030 ehdest->type = ehsrc->type;
13031 ehdest->target_internal = ehsrc->target_internal;
13034 /* Append a RELA relocation REL to section S in BFD. */
13037 elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13039 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13040 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
13041 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
13042 bed->s->swap_reloca_out (abfd, rel, loc);
13045 /* Append a REL relocation REL to section S in BFD. */
13048 elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13050 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13051 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
13052 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
13053 bed->s->swap_reloc_out (abfd, rel, loc);