bfd/
[binutils.git] / bfd / elflink.c
blob9630709758bbeddf79bae2c1d32e421cbd0f3fc8
1 /* ELF linking support for BFD.
2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
21 #include "bfd.h"
22 #include "sysdep.h"
23 #include "bfdlink.h"
24 #include "libbfd.h"
25 #define ARCH_SIZE 0
26 #include "elf-bfd.h"
27 #include "safe-ctype.h"
28 #include "libiberty.h"
29 #include "objalloc.h"
31 /* Define a symbol in a dynamic linkage section. */
33 struct elf_link_hash_entry *
34 _bfd_elf_define_linkage_sym (bfd *abfd,
35 struct bfd_link_info *info,
36 asection *sec,
37 const char *name)
39 struct elf_link_hash_entry *h;
40 struct bfd_link_hash_entry *bh;
41 const struct elf_backend_data *bed;
43 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
44 if (h != NULL)
46 /* Zap symbol defined in an as-needed lib that wasn't linked.
47 This is a symptom of a larger problem: Absolute symbols
48 defined in shared libraries can't be overridden, because we
49 lose the link to the bfd which is via the symbol section. */
50 h->root.type = bfd_link_hash_new;
53 bh = &h->root;
54 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
55 sec, 0, NULL, FALSE,
56 get_elf_backend_data (abfd)->collect,
57 &bh))
58 return NULL;
59 h = (struct elf_link_hash_entry *) bh;
60 h->def_regular = 1;
61 h->type = STT_OBJECT;
62 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
64 bed = get_elf_backend_data (abfd);
65 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
66 return h;
69 bfd_boolean
70 _bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
72 flagword flags;
73 asection *s;
74 struct elf_link_hash_entry *h;
75 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
76 int ptralign;
78 /* This function may be called more than once. */
79 s = bfd_get_section_by_name (abfd, ".got");
80 if (s != NULL && (s->flags & SEC_LINKER_CREATED) != 0)
81 return TRUE;
83 switch (bed->s->arch_size)
85 case 32:
86 ptralign = 2;
87 break;
89 case 64:
90 ptralign = 3;
91 break;
93 default:
94 bfd_set_error (bfd_error_bad_value);
95 return FALSE;
98 flags = bed->dynamic_sec_flags;
100 s = bfd_make_section_with_flags (abfd, ".got", flags);
101 if (s == NULL
102 || !bfd_set_section_alignment (abfd, s, ptralign))
103 return FALSE;
105 if (bed->want_got_plt)
107 s = bfd_make_section_with_flags (abfd, ".got.plt", flags);
108 if (s == NULL
109 || !bfd_set_section_alignment (abfd, s, ptralign))
110 return FALSE;
113 if (bed->want_got_sym)
115 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
116 (or .got.plt) section. We don't do this in the linker script
117 because we don't want to define the symbol if we are not creating
118 a global offset table. */
119 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_GLOBAL_OFFSET_TABLE_");
120 elf_hash_table (info)->hgot = h;
121 if (h == NULL)
122 return FALSE;
125 /* The first bit of the global offset table is the header. */
126 s->size += bed->got_header_size;
128 return TRUE;
131 /* Create a strtab to hold the dynamic symbol names. */
132 static bfd_boolean
133 _bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
135 struct elf_link_hash_table *hash_table;
137 hash_table = elf_hash_table (info);
138 if (hash_table->dynobj == NULL)
139 hash_table->dynobj = abfd;
141 if (hash_table->dynstr == NULL)
143 hash_table->dynstr = _bfd_elf_strtab_init ();
144 if (hash_table->dynstr == NULL)
145 return FALSE;
147 return TRUE;
150 /* Create some sections which will be filled in with dynamic linking
151 information. ABFD is an input file which requires dynamic sections
152 to be created. The dynamic sections take up virtual memory space
153 when the final executable is run, so we need to create them before
154 addresses are assigned to the output sections. We work out the
155 actual contents and size of these sections later. */
157 bfd_boolean
158 _bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
160 flagword flags;
161 register asection *s;
162 const struct elf_backend_data *bed;
164 if (! is_elf_hash_table (info->hash))
165 return FALSE;
167 if (elf_hash_table (info)->dynamic_sections_created)
168 return TRUE;
170 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
171 return FALSE;
173 abfd = elf_hash_table (info)->dynobj;
174 bed = get_elf_backend_data (abfd);
176 flags = bed->dynamic_sec_flags;
178 /* A dynamically linked executable has a .interp section, but a
179 shared library does not. */
180 if (info->executable)
182 s = bfd_make_section_with_flags (abfd, ".interp",
183 flags | SEC_READONLY);
184 if (s == NULL)
185 return FALSE;
188 /* Create sections to hold version informations. These are removed
189 if they are not needed. */
190 s = bfd_make_section_with_flags (abfd, ".gnu.version_d",
191 flags | SEC_READONLY);
192 if (s == NULL
193 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
194 return FALSE;
196 s = bfd_make_section_with_flags (abfd, ".gnu.version",
197 flags | SEC_READONLY);
198 if (s == NULL
199 || ! bfd_set_section_alignment (abfd, s, 1))
200 return FALSE;
202 s = bfd_make_section_with_flags (abfd, ".gnu.version_r",
203 flags | SEC_READONLY);
204 if (s == NULL
205 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
206 return FALSE;
208 s = bfd_make_section_with_flags (abfd, ".dynsym",
209 flags | SEC_READONLY);
210 if (s == NULL
211 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
212 return FALSE;
214 s = bfd_make_section_with_flags (abfd, ".dynstr",
215 flags | SEC_READONLY);
216 if (s == NULL)
217 return FALSE;
219 s = bfd_make_section_with_flags (abfd, ".dynamic", flags);
220 if (s == NULL
221 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
222 return FALSE;
224 /* The special symbol _DYNAMIC is always set to the start of the
225 .dynamic section. We could set _DYNAMIC in a linker script, but we
226 only want to define it if we are, in fact, creating a .dynamic
227 section. We don't want to define it if there is no .dynamic
228 section, since on some ELF platforms the start up code examines it
229 to decide how to initialize the process. */
230 if (!_bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC"))
231 return FALSE;
233 if (info->emit_hash)
235 s = bfd_make_section_with_flags (abfd, ".hash", flags | SEC_READONLY);
236 if (s == NULL
237 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
238 return FALSE;
239 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
242 if (info->emit_gnu_hash)
244 s = bfd_make_section_with_flags (abfd, ".gnu.hash",
245 flags | SEC_READONLY);
246 if (s == NULL
247 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
248 return FALSE;
249 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
250 4 32-bit words followed by variable count of 64-bit words, then
251 variable count of 32-bit words. */
252 if (bed->s->arch_size == 64)
253 elf_section_data (s)->this_hdr.sh_entsize = 0;
254 else
255 elf_section_data (s)->this_hdr.sh_entsize = 4;
258 /* Let the backend create the rest of the sections. This lets the
259 backend set the right flags. The backend will normally create
260 the .got and .plt sections. */
261 if (! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
262 return FALSE;
264 elf_hash_table (info)->dynamic_sections_created = TRUE;
266 return TRUE;
269 /* Create dynamic sections when linking against a dynamic object. */
271 bfd_boolean
272 _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
274 flagword flags, pltflags;
275 struct elf_link_hash_entry *h;
276 asection *s;
277 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
279 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
280 .rel[a].bss sections. */
281 flags = bed->dynamic_sec_flags;
283 pltflags = flags;
284 if (bed->plt_not_loaded)
285 /* We do not clear SEC_ALLOC here because we still want the OS to
286 allocate space for the section; it's just that there's nothing
287 to read in from the object file. */
288 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
289 else
290 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
291 if (bed->plt_readonly)
292 pltflags |= SEC_READONLY;
294 s = bfd_make_section_with_flags (abfd, ".plt", pltflags);
295 if (s == NULL
296 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
297 return FALSE;
299 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
300 .plt section. */
301 if (bed->want_plt_sym)
303 h = _bfd_elf_define_linkage_sym (abfd, info, s,
304 "_PROCEDURE_LINKAGE_TABLE_");
305 elf_hash_table (info)->hplt = h;
306 if (h == NULL)
307 return FALSE;
310 s = bfd_make_section_with_flags (abfd,
311 (bed->default_use_rela_p
312 ? ".rela.plt" : ".rel.plt"),
313 flags | SEC_READONLY);
314 if (s == NULL
315 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
316 return FALSE;
318 if (! _bfd_elf_create_got_section (abfd, info))
319 return FALSE;
321 if (bed->want_dynbss)
323 /* The .dynbss section is a place to put symbols which are defined
324 by dynamic objects, are referenced by regular objects, and are
325 not functions. We must allocate space for them in the process
326 image and use a R_*_COPY reloc to tell the dynamic linker to
327 initialize them at run time. The linker script puts the .dynbss
328 section into the .bss section of the final image. */
329 s = bfd_make_section_with_flags (abfd, ".dynbss",
330 (SEC_ALLOC
331 | SEC_LINKER_CREATED));
332 if (s == NULL)
333 return FALSE;
335 /* The .rel[a].bss section holds copy relocs. This section is not
336 normally needed. We need to create it here, though, so that the
337 linker will map it to an output section. We can't just create it
338 only if we need it, because we will not know whether we need it
339 until we have seen all the input files, and the first time the
340 main linker code calls BFD after examining all the input files
341 (size_dynamic_sections) the input sections have already been
342 mapped to the output sections. If the section turns out not to
343 be needed, we can discard it later. We will never need this
344 section when generating a shared object, since they do not use
345 copy relocs. */
346 if (! info->shared)
348 s = bfd_make_section_with_flags (abfd,
349 (bed->default_use_rela_p
350 ? ".rela.bss" : ".rel.bss"),
351 flags | SEC_READONLY);
352 if (s == NULL
353 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
354 return FALSE;
358 return TRUE;
361 /* Record a new dynamic symbol. We record the dynamic symbols as we
362 read the input files, since we need to have a list of all of them
363 before we can determine the final sizes of the output sections.
364 Note that we may actually call this function even though we are not
365 going to output any dynamic symbols; in some cases we know that a
366 symbol should be in the dynamic symbol table, but only if there is
367 one. */
369 bfd_boolean
370 bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
371 struct elf_link_hash_entry *h)
373 if (h->dynindx == -1)
375 struct elf_strtab_hash *dynstr;
376 char *p;
377 const char *name;
378 bfd_size_type indx;
380 /* XXX: The ABI draft says the linker must turn hidden and
381 internal symbols into STB_LOCAL symbols when producing the
382 DSO. However, if ld.so honors st_other in the dynamic table,
383 this would not be necessary. */
384 switch (ELF_ST_VISIBILITY (h->other))
386 case STV_INTERNAL:
387 case STV_HIDDEN:
388 if (h->root.type != bfd_link_hash_undefined
389 && h->root.type != bfd_link_hash_undefweak)
391 h->forced_local = 1;
392 if (!elf_hash_table (info)->is_relocatable_executable)
393 return TRUE;
396 default:
397 break;
400 h->dynindx = elf_hash_table (info)->dynsymcount;
401 ++elf_hash_table (info)->dynsymcount;
403 dynstr = elf_hash_table (info)->dynstr;
404 if (dynstr == NULL)
406 /* Create a strtab to hold the dynamic symbol names. */
407 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
408 if (dynstr == NULL)
409 return FALSE;
412 /* We don't put any version information in the dynamic string
413 table. */
414 name = h->root.root.string;
415 p = strchr (name, ELF_VER_CHR);
416 if (p != NULL)
417 /* We know that the p points into writable memory. In fact,
418 there are only a few symbols that have read-only names, being
419 those like _GLOBAL_OFFSET_TABLE_ that are created specially
420 by the backends. Most symbols will have names pointing into
421 an ELF string table read from a file, or to objalloc memory. */
422 *p = 0;
424 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
426 if (p != NULL)
427 *p = ELF_VER_CHR;
429 if (indx == (bfd_size_type) -1)
430 return FALSE;
431 h->dynstr_index = indx;
434 return TRUE;
437 /* Mark a symbol dynamic. */
439 void
440 bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
441 struct elf_link_hash_entry *h,
442 Elf_Internal_Sym *sym)
444 struct bfd_elf_dynamic_list *d = info->dynamic_list;
446 /* It may be called more than once on the same H. */
447 if(h->dynamic || info->relocatable)
448 return;
450 if ((info->dynamic_data
451 && (h->type == STT_OBJECT
452 || (sym != NULL
453 && ELF_ST_TYPE (sym->st_info) == STT_OBJECT)))
454 || (d != NULL
455 && h->root.type == bfd_link_hash_new
456 && (*d->match) (&d->head, NULL, h->root.root.string)))
457 h->dynamic = 1;
460 /* Record an assignment to a symbol made by a linker script. We need
461 this in case some dynamic object refers to this symbol. */
463 bfd_boolean
464 bfd_elf_record_link_assignment (bfd *output_bfd,
465 struct bfd_link_info *info,
466 const char *name,
467 bfd_boolean provide,
468 bfd_boolean hidden)
470 struct elf_link_hash_entry *h;
471 struct elf_link_hash_table *htab;
473 if (!is_elf_hash_table (info->hash))
474 return TRUE;
476 htab = elf_hash_table (info);
477 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
478 if (h == NULL)
479 return provide;
481 /* Since we're defining the symbol, don't let it seem to have not
482 been defined. record_dynamic_symbol and size_dynamic_sections
483 may depend on this. */
484 if (h->root.type == bfd_link_hash_undefweak
485 || h->root.type == bfd_link_hash_undefined)
487 h->root.type = bfd_link_hash_new;
488 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
489 bfd_link_repair_undef_list (&htab->root);
492 if (h->root.type == bfd_link_hash_new)
494 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
495 h->non_elf = 0;
498 /* If this symbol is being provided by the linker script, and it is
499 currently defined by a dynamic object, but not by a regular
500 object, then mark it as undefined so that the generic linker will
501 force the correct value. */
502 if (provide
503 && h->def_dynamic
504 && !h->def_regular)
505 h->root.type = bfd_link_hash_undefined;
507 /* If this symbol is not being provided by the linker script, and it is
508 currently defined by a dynamic object, but not by a regular object,
509 then clear out any version information because the symbol will not be
510 associated with the dynamic object any more. */
511 if (!provide
512 && h->def_dynamic
513 && !h->def_regular)
514 h->verinfo.verdef = NULL;
516 h->def_regular = 1;
518 if (provide && hidden)
520 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
522 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
523 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
526 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
527 and executables. */
528 if (!info->relocatable
529 && h->dynindx != -1
530 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
531 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
532 h->forced_local = 1;
534 if ((h->def_dynamic
535 || h->ref_dynamic
536 || info->shared
537 || (info->executable && elf_hash_table (info)->is_relocatable_executable))
538 && h->dynindx == -1)
540 if (! bfd_elf_link_record_dynamic_symbol (info, h))
541 return FALSE;
543 /* If this is a weak defined symbol, and we know a corresponding
544 real symbol from the same dynamic object, make sure the real
545 symbol is also made into a dynamic symbol. */
546 if (h->u.weakdef != NULL
547 && h->u.weakdef->dynindx == -1)
549 if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
550 return FALSE;
554 return TRUE;
557 /* Record a new local dynamic symbol. Returns 0 on failure, 1 on
558 success, and 2 on a failure caused by attempting to record a symbol
559 in a discarded section, eg. a discarded link-once section symbol. */
562 bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
563 bfd *input_bfd,
564 long input_indx)
566 bfd_size_type amt;
567 struct elf_link_local_dynamic_entry *entry;
568 struct elf_link_hash_table *eht;
569 struct elf_strtab_hash *dynstr;
570 unsigned long dynstr_index;
571 char *name;
572 Elf_External_Sym_Shndx eshndx;
573 char esym[sizeof (Elf64_External_Sym)];
575 if (! is_elf_hash_table (info->hash))
576 return 0;
578 /* See if the entry exists already. */
579 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
580 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
581 return 1;
583 amt = sizeof (*entry);
584 entry = bfd_alloc (input_bfd, amt);
585 if (entry == NULL)
586 return 0;
588 /* Go find the symbol, so that we can find it's name. */
589 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
590 1, input_indx, &entry->isym, esym, &eshndx))
592 bfd_release (input_bfd, entry);
593 return 0;
596 if (entry->isym.st_shndx != SHN_UNDEF
597 && (entry->isym.st_shndx < SHN_LORESERVE
598 || entry->isym.st_shndx > SHN_HIRESERVE))
600 asection *s;
602 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
603 if (s == NULL || bfd_is_abs_section (s->output_section))
605 /* We can still bfd_release here as nothing has done another
606 bfd_alloc. We can't do this later in this function. */
607 bfd_release (input_bfd, entry);
608 return 2;
612 name = (bfd_elf_string_from_elf_section
613 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
614 entry->isym.st_name));
616 dynstr = elf_hash_table (info)->dynstr;
617 if (dynstr == NULL)
619 /* Create a strtab to hold the dynamic symbol names. */
620 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
621 if (dynstr == NULL)
622 return 0;
625 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
626 if (dynstr_index == (unsigned long) -1)
627 return 0;
628 entry->isym.st_name = dynstr_index;
630 eht = elf_hash_table (info);
632 entry->next = eht->dynlocal;
633 eht->dynlocal = entry;
634 entry->input_bfd = input_bfd;
635 entry->input_indx = input_indx;
636 eht->dynsymcount++;
638 /* Whatever binding the symbol had before, it's now local. */
639 entry->isym.st_info
640 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
642 /* The dynindx will be set at the end of size_dynamic_sections. */
644 return 1;
647 /* Return the dynindex of a local dynamic symbol. */
649 long
650 _bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
651 bfd *input_bfd,
652 long input_indx)
654 struct elf_link_local_dynamic_entry *e;
656 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
657 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
658 return e->dynindx;
659 return -1;
662 /* This function is used to renumber the dynamic symbols, if some of
663 them are removed because they are marked as local. This is called
664 via elf_link_hash_traverse. */
666 static bfd_boolean
667 elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
668 void *data)
670 size_t *count = data;
672 if (h->root.type == bfd_link_hash_warning)
673 h = (struct elf_link_hash_entry *) h->root.u.i.link;
675 if (h->forced_local)
676 return TRUE;
678 if (h->dynindx != -1)
679 h->dynindx = ++(*count);
681 return TRUE;
685 /* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
686 STB_LOCAL binding. */
688 static bfd_boolean
689 elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
690 void *data)
692 size_t *count = data;
694 if (h->root.type == bfd_link_hash_warning)
695 h = (struct elf_link_hash_entry *) h->root.u.i.link;
697 if (!h->forced_local)
698 return TRUE;
700 if (h->dynindx != -1)
701 h->dynindx = ++(*count);
703 return TRUE;
706 /* Return true if the dynamic symbol for a given section should be
707 omitted when creating a shared library. */
708 bfd_boolean
709 _bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
710 struct bfd_link_info *info,
711 asection *p)
713 struct elf_link_hash_table *htab;
715 switch (elf_section_data (p)->this_hdr.sh_type)
717 case SHT_PROGBITS:
718 case SHT_NOBITS:
719 /* If sh_type is yet undecided, assume it could be
720 SHT_PROGBITS/SHT_NOBITS. */
721 case SHT_NULL:
722 htab = elf_hash_table (info);
723 if (p == htab->tls_sec)
724 return FALSE;
726 if (htab->text_index_section != NULL)
727 return p != htab->text_index_section && p != htab->data_index_section;
729 if (strcmp (p->name, ".got") == 0
730 || strcmp (p->name, ".got.plt") == 0
731 || strcmp (p->name, ".plt") == 0)
733 asection *ip;
735 if (htab->dynobj != NULL
736 && (ip = bfd_get_section_by_name (htab->dynobj, p->name)) != NULL
737 && (ip->flags & SEC_LINKER_CREATED)
738 && ip->output_section == p)
739 return TRUE;
741 return FALSE;
743 /* There shouldn't be section relative relocations
744 against any other section. */
745 default:
746 return TRUE;
750 /* Assign dynsym indices. In a shared library we generate a section
751 symbol for each output section, which come first. Next come symbols
752 which have been forced to local binding. Then all of the back-end
753 allocated local dynamic syms, followed by the rest of the global
754 symbols. */
756 static unsigned long
757 _bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
758 struct bfd_link_info *info,
759 unsigned long *section_sym_count)
761 unsigned long dynsymcount = 0;
763 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
765 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
766 asection *p;
767 for (p = output_bfd->sections; p ; p = p->next)
768 if ((p->flags & SEC_EXCLUDE) == 0
769 && (p->flags & SEC_ALLOC) != 0
770 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
771 elf_section_data (p)->dynindx = ++dynsymcount;
772 else
773 elf_section_data (p)->dynindx = 0;
775 *section_sym_count = dynsymcount;
777 elf_link_hash_traverse (elf_hash_table (info),
778 elf_link_renumber_local_hash_table_dynsyms,
779 &dynsymcount);
781 if (elf_hash_table (info)->dynlocal)
783 struct elf_link_local_dynamic_entry *p;
784 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
785 p->dynindx = ++dynsymcount;
788 elf_link_hash_traverse (elf_hash_table (info),
789 elf_link_renumber_hash_table_dynsyms,
790 &dynsymcount);
792 /* There is an unused NULL entry at the head of the table which
793 we must account for in our count. Unless there weren't any
794 symbols, which means we'll have no table at all. */
795 if (dynsymcount != 0)
796 ++dynsymcount;
798 elf_hash_table (info)->dynsymcount = dynsymcount;
799 return dynsymcount;
802 /* This function is called when we want to define a new symbol. It
803 handles the various cases which arise when we find a definition in
804 a dynamic object, or when there is already a definition in a
805 dynamic object. The new symbol is described by NAME, SYM, PSEC,
806 and PVALUE. We set SYM_HASH to the hash table entry. We set
807 OVERRIDE if the old symbol is overriding a new definition. We set
808 TYPE_CHANGE_OK if it is OK for the type to change. We set
809 SIZE_CHANGE_OK if it is OK for the size to change. By OK to
810 change, we mean that we shouldn't warn if the type or size does
811 change. We set POLD_ALIGNMENT if an old common symbol in a dynamic
812 object is overridden by a regular object. */
814 bfd_boolean
815 _bfd_elf_merge_symbol (bfd *abfd,
816 struct bfd_link_info *info,
817 const char *name,
818 Elf_Internal_Sym *sym,
819 asection **psec,
820 bfd_vma *pvalue,
821 unsigned int *pold_alignment,
822 struct elf_link_hash_entry **sym_hash,
823 bfd_boolean *skip,
824 bfd_boolean *override,
825 bfd_boolean *type_change_ok,
826 bfd_boolean *size_change_ok)
828 asection *sec, *oldsec;
829 struct elf_link_hash_entry *h;
830 struct elf_link_hash_entry *flip;
831 int bind;
832 bfd *oldbfd;
833 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
834 bfd_boolean newweak, oldweak;
835 const struct elf_backend_data *bed;
837 *skip = FALSE;
838 *override = FALSE;
840 sec = *psec;
841 bind = ELF_ST_BIND (sym->st_info);
843 /* Silently discard TLS symbols from --just-syms. There's no way to
844 combine a static TLS block with a new TLS block for this executable. */
845 if (ELF_ST_TYPE (sym->st_info) == STT_TLS
846 && sec->sec_info_type == ELF_INFO_TYPE_JUST_SYMS)
848 *skip = TRUE;
849 return TRUE;
852 if (! bfd_is_und_section (sec))
853 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
854 else
855 h = ((struct elf_link_hash_entry *)
856 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
857 if (h == NULL)
858 return FALSE;
859 *sym_hash = h;
861 /* This code is for coping with dynamic objects, and is only useful
862 if we are doing an ELF link. */
863 if (info->hash->creator != abfd->xvec)
864 return TRUE;
866 /* For merging, we only care about real symbols. */
868 while (h->root.type == bfd_link_hash_indirect
869 || h->root.type == bfd_link_hash_warning)
870 h = (struct elf_link_hash_entry *) h->root.u.i.link;
872 /* We have to check it for every instance since the first few may be
873 refereences and not all compilers emit symbol type for undefined
874 symbols. */
875 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
877 /* If we just created the symbol, mark it as being an ELF symbol.
878 Other than that, there is nothing to do--there is no merge issue
879 with a newly defined symbol--so we just return. */
881 if (h->root.type == bfd_link_hash_new)
883 h->non_elf = 0;
884 return TRUE;
887 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
888 existing symbol. */
890 switch (h->root.type)
892 default:
893 oldbfd = NULL;
894 oldsec = NULL;
895 break;
897 case bfd_link_hash_undefined:
898 case bfd_link_hash_undefweak:
899 oldbfd = h->root.u.undef.abfd;
900 oldsec = NULL;
901 break;
903 case bfd_link_hash_defined:
904 case bfd_link_hash_defweak:
905 oldbfd = h->root.u.def.section->owner;
906 oldsec = h->root.u.def.section;
907 break;
909 case bfd_link_hash_common:
910 oldbfd = h->root.u.c.p->section->owner;
911 oldsec = h->root.u.c.p->section;
912 break;
915 /* In cases involving weak versioned symbols, we may wind up trying
916 to merge a symbol with itself. Catch that here, to avoid the
917 confusion that results if we try to override a symbol with
918 itself. The additional tests catch cases like
919 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
920 dynamic object, which we do want to handle here. */
921 if (abfd == oldbfd
922 && ((abfd->flags & DYNAMIC) == 0
923 || !h->def_regular))
924 return TRUE;
926 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
927 respectively, is from a dynamic object. */
929 newdyn = (abfd->flags & DYNAMIC) != 0;
931 olddyn = FALSE;
932 if (oldbfd != NULL)
933 olddyn = (oldbfd->flags & DYNAMIC) != 0;
934 else if (oldsec != NULL)
936 /* This handles the special SHN_MIPS_{TEXT,DATA} section
937 indices used by MIPS ELF. */
938 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
941 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
942 respectively, appear to be a definition rather than reference. */
944 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
946 olddef = (h->root.type != bfd_link_hash_undefined
947 && h->root.type != bfd_link_hash_undefweak
948 && h->root.type != bfd_link_hash_common);
950 /* When we try to create a default indirect symbol from the dynamic
951 definition with the default version, we skip it if its type and
952 the type of existing regular definition mismatch. We only do it
953 if the existing regular definition won't be dynamic. */
954 if (pold_alignment == NULL
955 && !info->shared
956 && !info->export_dynamic
957 && !h->ref_dynamic
958 && newdyn
959 && newdef
960 && !olddyn
961 && (olddef || h->root.type == bfd_link_hash_common)
962 && ELF_ST_TYPE (sym->st_info) != h->type
963 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
964 && h->type != STT_NOTYPE)
966 *skip = TRUE;
967 return TRUE;
970 /* Check TLS symbol. We don't check undefined symbol introduced by
971 "ld -u". */
972 if ((ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS)
973 && ELF_ST_TYPE (sym->st_info) != h->type
974 && oldbfd != NULL)
976 bfd *ntbfd, *tbfd;
977 bfd_boolean ntdef, tdef;
978 asection *ntsec, *tsec;
980 if (h->type == STT_TLS)
982 ntbfd = abfd;
983 ntsec = sec;
984 ntdef = newdef;
985 tbfd = oldbfd;
986 tsec = oldsec;
987 tdef = olddef;
989 else
991 ntbfd = oldbfd;
992 ntsec = oldsec;
993 ntdef = olddef;
994 tbfd = abfd;
995 tsec = sec;
996 tdef = newdef;
999 if (tdef && ntdef)
1000 (*_bfd_error_handler)
1001 (_("%s: TLS definition in %B section %A mismatches non-TLS definition in %B section %A"),
1002 tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1003 else if (!tdef && !ntdef)
1004 (*_bfd_error_handler)
1005 (_("%s: TLS reference in %B mismatches non-TLS reference in %B"),
1006 tbfd, ntbfd, h->root.root.string);
1007 else if (tdef)
1008 (*_bfd_error_handler)
1009 (_("%s: TLS definition in %B section %A mismatches non-TLS reference in %B"),
1010 tbfd, tsec, ntbfd, h->root.root.string);
1011 else
1012 (*_bfd_error_handler)
1013 (_("%s: TLS reference in %B mismatches non-TLS definition in %B section %A"),
1014 tbfd, ntbfd, ntsec, h->root.root.string);
1016 bfd_set_error (bfd_error_bad_value);
1017 return FALSE;
1020 /* We need to remember if a symbol has a definition in a dynamic
1021 object or is weak in all dynamic objects. Internal and hidden
1022 visibility will make it unavailable to dynamic objects. */
1023 if (newdyn && !h->dynamic_def)
1025 if (!bfd_is_und_section (sec))
1026 h->dynamic_def = 1;
1027 else
1029 /* Check if this symbol is weak in all dynamic objects. If it
1030 is the first time we see it in a dynamic object, we mark
1031 if it is weak. Otherwise, we clear it. */
1032 if (!h->ref_dynamic)
1034 if (bind == STB_WEAK)
1035 h->dynamic_weak = 1;
1037 else if (bind != STB_WEAK)
1038 h->dynamic_weak = 0;
1042 /* If the old symbol has non-default visibility, we ignore the new
1043 definition from a dynamic object. */
1044 if (newdyn
1045 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1046 && !bfd_is_und_section (sec))
1048 *skip = TRUE;
1049 /* Make sure this symbol is dynamic. */
1050 h->ref_dynamic = 1;
1051 /* A protected symbol has external availability. Make sure it is
1052 recorded as dynamic.
1054 FIXME: Should we check type and size for protected symbol? */
1055 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
1056 return bfd_elf_link_record_dynamic_symbol (info, h);
1057 else
1058 return TRUE;
1060 else if (!newdyn
1061 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
1062 && h->def_dynamic)
1064 /* If the new symbol with non-default visibility comes from a
1065 relocatable file and the old definition comes from a dynamic
1066 object, we remove the old definition. */
1067 if ((*sym_hash)->root.type == bfd_link_hash_indirect)
1069 /* Handle the case where the old dynamic definition is
1070 default versioned. We need to copy the symbol info from
1071 the symbol with default version to the normal one if it
1072 was referenced before. */
1073 if (h->ref_regular)
1075 const struct elf_backend_data *bed
1076 = get_elf_backend_data (abfd);
1077 struct elf_link_hash_entry *vh = *sym_hash;
1078 vh->root.type = h->root.type;
1079 h->root.type = bfd_link_hash_indirect;
1080 (*bed->elf_backend_copy_indirect_symbol) (info, vh, h);
1081 /* Protected symbols will override the dynamic definition
1082 with default version. */
1083 if (ELF_ST_VISIBILITY (sym->st_other) == STV_PROTECTED)
1085 h->root.u.i.link = (struct bfd_link_hash_entry *) vh;
1086 vh->dynamic_def = 1;
1087 vh->ref_dynamic = 1;
1089 else
1091 h->root.type = vh->root.type;
1092 vh->ref_dynamic = 0;
1093 /* We have to hide it here since it was made dynamic
1094 global with extra bits when the symbol info was
1095 copied from the old dynamic definition. */
1096 (*bed->elf_backend_hide_symbol) (info, vh, TRUE);
1098 h = vh;
1100 else
1101 h = *sym_hash;
1104 if ((h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1105 && bfd_is_und_section (sec))
1107 /* If the new symbol is undefined and the old symbol was
1108 also undefined before, we need to make sure
1109 _bfd_generic_link_add_one_symbol doesn't mess
1110 up the linker hash table undefs list. Since the old
1111 definition came from a dynamic object, it is still on the
1112 undefs list. */
1113 h->root.type = bfd_link_hash_undefined;
1114 h->root.u.undef.abfd = abfd;
1116 else
1118 h->root.type = bfd_link_hash_new;
1119 h->root.u.undef.abfd = NULL;
1122 if (h->def_dynamic)
1124 h->def_dynamic = 0;
1125 h->ref_dynamic = 1;
1126 h->dynamic_def = 1;
1128 /* FIXME: Should we check type and size for protected symbol? */
1129 h->size = 0;
1130 h->type = 0;
1131 return TRUE;
1134 /* Differentiate strong and weak symbols. */
1135 newweak = bind == STB_WEAK;
1136 oldweak = (h->root.type == bfd_link_hash_defweak
1137 || h->root.type == bfd_link_hash_undefweak);
1139 /* If a new weak symbol definition comes from a regular file and the
1140 old symbol comes from a dynamic library, we treat the new one as
1141 strong. Similarly, an old weak symbol definition from a regular
1142 file is treated as strong when the new symbol comes from a dynamic
1143 library. Further, an old weak symbol from a dynamic library is
1144 treated as strong if the new symbol is from a dynamic library.
1145 This reflects the way glibc's ld.so works.
1147 Do this before setting *type_change_ok or *size_change_ok so that
1148 we warn properly when dynamic library symbols are overridden. */
1150 if (newdef && !newdyn && olddyn)
1151 newweak = FALSE;
1152 if (olddef && newdyn)
1153 oldweak = FALSE;
1155 /* It's OK to change the type if either the existing symbol or the
1156 new symbol is weak. A type change is also OK if the old symbol
1157 is undefined and the new symbol is defined. */
1159 if (oldweak
1160 || newweak
1161 || (newdef
1162 && h->root.type == bfd_link_hash_undefined))
1163 *type_change_ok = TRUE;
1165 /* It's OK to change the size if either the existing symbol or the
1166 new symbol is weak, or if the old symbol is undefined. */
1168 if (*type_change_ok
1169 || h->root.type == bfd_link_hash_undefined)
1170 *size_change_ok = TRUE;
1172 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1173 symbol, respectively, appears to be a common symbol in a dynamic
1174 object. If a symbol appears in an uninitialized section, and is
1175 not weak, and is not a function, then it may be a common symbol
1176 which was resolved when the dynamic object was created. We want
1177 to treat such symbols specially, because they raise special
1178 considerations when setting the symbol size: if the symbol
1179 appears as a common symbol in a regular object, and the size in
1180 the regular object is larger, we must make sure that we use the
1181 larger size. This problematic case can always be avoided in C,
1182 but it must be handled correctly when using Fortran shared
1183 libraries.
1185 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1186 likewise for OLDDYNCOMMON and OLDDEF.
1188 Note that this test is just a heuristic, and that it is quite
1189 possible to have an uninitialized symbol in a shared object which
1190 is really a definition, rather than a common symbol. This could
1191 lead to some minor confusion when the symbol really is a common
1192 symbol in some regular object. However, I think it will be
1193 harmless. */
1195 if (newdyn
1196 && newdef
1197 && !newweak
1198 && (sec->flags & SEC_ALLOC) != 0
1199 && (sec->flags & SEC_LOAD) == 0
1200 && sym->st_size > 0
1201 && ELF_ST_TYPE (sym->st_info) != STT_FUNC)
1202 newdyncommon = TRUE;
1203 else
1204 newdyncommon = FALSE;
1206 if (olddyn
1207 && olddef
1208 && h->root.type == bfd_link_hash_defined
1209 && h->def_dynamic
1210 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1211 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1212 && h->size > 0
1213 && h->type != STT_FUNC)
1214 olddyncommon = TRUE;
1215 else
1216 olddyncommon = FALSE;
1218 /* We now know everything about the old and new symbols. We ask the
1219 backend to check if we can merge them. */
1220 bed = get_elf_backend_data (abfd);
1221 if (bed->merge_symbol
1222 && !bed->merge_symbol (info, sym_hash, h, sym, psec, pvalue,
1223 pold_alignment, skip, override,
1224 type_change_ok, size_change_ok,
1225 &newdyn, &newdef, &newdyncommon, &newweak,
1226 abfd, &sec,
1227 &olddyn, &olddef, &olddyncommon, &oldweak,
1228 oldbfd, &oldsec))
1229 return FALSE;
1231 /* If both the old and the new symbols look like common symbols in a
1232 dynamic object, set the size of the symbol to the larger of the
1233 two. */
1235 if (olddyncommon
1236 && newdyncommon
1237 && sym->st_size != h->size)
1239 /* Since we think we have two common symbols, issue a multiple
1240 common warning if desired. Note that we only warn if the
1241 size is different. If the size is the same, we simply let
1242 the old symbol override the new one as normally happens with
1243 symbols defined in dynamic objects. */
1245 if (! ((*info->callbacks->multiple_common)
1246 (info, h->root.root.string, oldbfd, bfd_link_hash_common,
1247 h->size, abfd, bfd_link_hash_common, sym->st_size)))
1248 return FALSE;
1250 if (sym->st_size > h->size)
1251 h->size = sym->st_size;
1253 *size_change_ok = TRUE;
1256 /* If we are looking at a dynamic object, and we have found a
1257 definition, we need to see if the symbol was already defined by
1258 some other object. If so, we want to use the existing
1259 definition, and we do not want to report a multiple symbol
1260 definition error; we do this by clobbering *PSEC to be
1261 bfd_und_section_ptr.
1263 We treat a common symbol as a definition if the symbol in the
1264 shared library is a function, since common symbols always
1265 represent variables; this can cause confusion in principle, but
1266 any such confusion would seem to indicate an erroneous program or
1267 shared library. We also permit a common symbol in a regular
1268 object to override a weak symbol in a shared object. */
1270 if (newdyn
1271 && newdef
1272 && (olddef
1273 || (h->root.type == bfd_link_hash_common
1274 && (newweak
1275 || ELF_ST_TYPE (sym->st_info) == STT_FUNC))))
1277 *override = TRUE;
1278 newdef = FALSE;
1279 newdyncommon = FALSE;
1281 *psec = sec = bfd_und_section_ptr;
1282 *size_change_ok = TRUE;
1284 /* If we get here when the old symbol is a common symbol, then
1285 we are explicitly letting it override a weak symbol or
1286 function in a dynamic object, and we don't want to warn about
1287 a type change. If the old symbol is a defined symbol, a type
1288 change warning may still be appropriate. */
1290 if (h->root.type == bfd_link_hash_common)
1291 *type_change_ok = TRUE;
1294 /* Handle the special case of an old common symbol merging with a
1295 new symbol which looks like a common symbol in a shared object.
1296 We change *PSEC and *PVALUE to make the new symbol look like a
1297 common symbol, and let _bfd_generic_link_add_one_symbol do the
1298 right thing. */
1300 if (newdyncommon
1301 && h->root.type == bfd_link_hash_common)
1303 *override = TRUE;
1304 newdef = FALSE;
1305 newdyncommon = FALSE;
1306 *pvalue = sym->st_size;
1307 *psec = sec = bed->common_section (oldsec);
1308 *size_change_ok = TRUE;
1311 /* Skip weak definitions of symbols that are already defined. */
1312 if (newdef && olddef && newweak)
1313 *skip = TRUE;
1315 /* If the old symbol is from a dynamic object, and the new symbol is
1316 a definition which is not from a dynamic object, then the new
1317 symbol overrides the old symbol. Symbols from regular files
1318 always take precedence over symbols from dynamic objects, even if
1319 they are defined after the dynamic object in the link.
1321 As above, we again permit a common symbol in a regular object to
1322 override a definition in a shared object if the shared object
1323 symbol is a function or is weak. */
1325 flip = NULL;
1326 if (!newdyn
1327 && (newdef
1328 || (bfd_is_com_section (sec)
1329 && (oldweak
1330 || h->type == STT_FUNC)))
1331 && olddyn
1332 && olddef
1333 && h->def_dynamic)
1335 /* Change the hash table entry to undefined, and let
1336 _bfd_generic_link_add_one_symbol do the right thing with the
1337 new definition. */
1339 h->root.type = bfd_link_hash_undefined;
1340 h->root.u.undef.abfd = h->root.u.def.section->owner;
1341 *size_change_ok = TRUE;
1343 olddef = FALSE;
1344 olddyncommon = FALSE;
1346 /* We again permit a type change when a common symbol may be
1347 overriding a function. */
1349 if (bfd_is_com_section (sec))
1350 *type_change_ok = TRUE;
1352 if ((*sym_hash)->root.type == bfd_link_hash_indirect)
1353 flip = *sym_hash;
1354 else
1355 /* This union may have been set to be non-NULL when this symbol
1356 was seen in a dynamic object. We must force the union to be
1357 NULL, so that it is correct for a regular symbol. */
1358 h->verinfo.vertree = NULL;
1361 /* Handle the special case of a new common symbol merging with an
1362 old symbol that looks like it might be a common symbol defined in
1363 a shared object. Note that we have already handled the case in
1364 which a new common symbol should simply override the definition
1365 in the shared library. */
1367 if (! newdyn
1368 && bfd_is_com_section (sec)
1369 && olddyncommon)
1371 /* It would be best if we could set the hash table entry to a
1372 common symbol, but we don't know what to use for the section
1373 or the alignment. */
1374 if (! ((*info->callbacks->multiple_common)
1375 (info, h->root.root.string, oldbfd, bfd_link_hash_common,
1376 h->size, abfd, bfd_link_hash_common, sym->st_size)))
1377 return FALSE;
1379 /* If the presumed common symbol in the dynamic object is
1380 larger, pretend that the new symbol has its size. */
1382 if (h->size > *pvalue)
1383 *pvalue = h->size;
1385 /* We need to remember the alignment required by the symbol
1386 in the dynamic object. */
1387 BFD_ASSERT (pold_alignment);
1388 *pold_alignment = h->root.u.def.section->alignment_power;
1390 olddef = FALSE;
1391 olddyncommon = FALSE;
1393 h->root.type = bfd_link_hash_undefined;
1394 h->root.u.undef.abfd = h->root.u.def.section->owner;
1396 *size_change_ok = TRUE;
1397 *type_change_ok = TRUE;
1399 if ((*sym_hash)->root.type == bfd_link_hash_indirect)
1400 flip = *sym_hash;
1401 else
1402 h->verinfo.vertree = NULL;
1405 if (flip != NULL)
1407 /* Handle the case where we had a versioned symbol in a dynamic
1408 library and now find a definition in a normal object. In this
1409 case, we make the versioned symbol point to the normal one. */
1410 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1411 flip->root.type = h->root.type;
1412 h->root.type = bfd_link_hash_indirect;
1413 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
1414 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
1415 flip->root.u.undef.abfd = h->root.u.undef.abfd;
1416 if (h->def_dynamic)
1418 h->def_dynamic = 0;
1419 flip->ref_dynamic = 1;
1423 return TRUE;
1426 /* This function is called to create an indirect symbol from the
1427 default for the symbol with the default version if needed. The
1428 symbol is described by H, NAME, SYM, PSEC, VALUE, and OVERRIDE. We
1429 set DYNSYM if the new indirect symbol is dynamic. */
1431 bfd_boolean
1432 _bfd_elf_add_default_symbol (bfd *abfd,
1433 struct bfd_link_info *info,
1434 struct elf_link_hash_entry *h,
1435 const char *name,
1436 Elf_Internal_Sym *sym,
1437 asection **psec,
1438 bfd_vma *value,
1439 bfd_boolean *dynsym,
1440 bfd_boolean override)
1442 bfd_boolean type_change_ok;
1443 bfd_boolean size_change_ok;
1444 bfd_boolean skip;
1445 char *shortname;
1446 struct elf_link_hash_entry *hi;
1447 struct bfd_link_hash_entry *bh;
1448 const struct elf_backend_data *bed;
1449 bfd_boolean collect;
1450 bfd_boolean dynamic;
1451 char *p;
1452 size_t len, shortlen;
1453 asection *sec;
1455 /* If this symbol has a version, and it is the default version, we
1456 create an indirect symbol from the default name to the fully
1457 decorated name. This will cause external references which do not
1458 specify a version to be bound to this version of the symbol. */
1459 p = strchr (name, ELF_VER_CHR);
1460 if (p == NULL || p[1] != ELF_VER_CHR)
1461 return TRUE;
1463 if (override)
1465 /* We are overridden by an old definition. We need to check if we
1466 need to create the indirect symbol from the default name. */
1467 hi = elf_link_hash_lookup (elf_hash_table (info), name, TRUE,
1468 FALSE, FALSE);
1469 BFD_ASSERT (hi != NULL);
1470 if (hi == h)
1471 return TRUE;
1472 while (hi->root.type == bfd_link_hash_indirect
1473 || hi->root.type == bfd_link_hash_warning)
1475 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1476 if (hi == h)
1477 return TRUE;
1481 bed = get_elf_backend_data (abfd);
1482 collect = bed->collect;
1483 dynamic = (abfd->flags & DYNAMIC) != 0;
1485 shortlen = p - name;
1486 shortname = bfd_hash_allocate (&info->hash->table, shortlen + 1);
1487 if (shortname == NULL)
1488 return FALSE;
1489 memcpy (shortname, name, shortlen);
1490 shortname[shortlen] = '\0';
1492 /* We are going to create a new symbol. Merge it with any existing
1493 symbol with this name. For the purposes of the merge, act as
1494 though we were defining the symbol we just defined, although we
1495 actually going to define an indirect symbol. */
1496 type_change_ok = FALSE;
1497 size_change_ok = FALSE;
1498 sec = *psec;
1499 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &sec, value,
1500 NULL, &hi, &skip, &override,
1501 &type_change_ok, &size_change_ok))
1502 return FALSE;
1504 if (skip)
1505 goto nondefault;
1507 if (! override)
1509 bh = &hi->root;
1510 if (! (_bfd_generic_link_add_one_symbol
1511 (info, abfd, shortname, BSF_INDIRECT, bfd_ind_section_ptr,
1512 0, name, FALSE, collect, &bh)))
1513 return FALSE;
1514 hi = (struct elf_link_hash_entry *) bh;
1516 else
1518 /* In this case the symbol named SHORTNAME is overriding the
1519 indirect symbol we want to add. We were planning on making
1520 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1521 is the name without a version. NAME is the fully versioned
1522 name, and it is the default version.
1524 Overriding means that we already saw a definition for the
1525 symbol SHORTNAME in a regular object, and it is overriding
1526 the symbol defined in the dynamic object.
1528 When this happens, we actually want to change NAME, the
1529 symbol we just added, to refer to SHORTNAME. This will cause
1530 references to NAME in the shared object to become references
1531 to SHORTNAME in the regular object. This is what we expect
1532 when we override a function in a shared object: that the
1533 references in the shared object will be mapped to the
1534 definition in the regular object. */
1536 while (hi->root.type == bfd_link_hash_indirect
1537 || hi->root.type == bfd_link_hash_warning)
1538 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1540 h->root.type = bfd_link_hash_indirect;
1541 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1542 if (h->def_dynamic)
1544 h->def_dynamic = 0;
1545 hi->ref_dynamic = 1;
1546 if (hi->ref_regular
1547 || hi->def_regular)
1549 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
1550 return FALSE;
1554 /* Now set HI to H, so that the following code will set the
1555 other fields correctly. */
1556 hi = h;
1559 /* If there is a duplicate definition somewhere, then HI may not
1560 point to an indirect symbol. We will have reported an error to
1561 the user in that case. */
1563 if (hi->root.type == bfd_link_hash_indirect)
1565 struct elf_link_hash_entry *ht;
1567 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
1568 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
1570 /* See if the new flags lead us to realize that the symbol must
1571 be dynamic. */
1572 if (! *dynsym)
1574 if (! dynamic)
1576 if (info->shared
1577 || hi->ref_dynamic)
1578 *dynsym = TRUE;
1580 else
1582 if (hi->ref_regular)
1583 *dynsym = TRUE;
1588 /* We also need to define an indirection from the nondefault version
1589 of the symbol. */
1591 nondefault:
1592 len = strlen (name);
1593 shortname = bfd_hash_allocate (&info->hash->table, len);
1594 if (shortname == NULL)
1595 return FALSE;
1596 memcpy (shortname, name, shortlen);
1597 memcpy (shortname + shortlen, p + 1, len - shortlen);
1599 /* Once again, merge with any existing symbol. */
1600 type_change_ok = FALSE;
1601 size_change_ok = FALSE;
1602 sec = *psec;
1603 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &sec, value,
1604 NULL, &hi, &skip, &override,
1605 &type_change_ok, &size_change_ok))
1606 return FALSE;
1608 if (skip)
1609 return TRUE;
1611 if (override)
1613 /* Here SHORTNAME is a versioned name, so we don't expect to see
1614 the type of override we do in the case above unless it is
1615 overridden by a versioned definition. */
1616 if (hi->root.type != bfd_link_hash_defined
1617 && hi->root.type != bfd_link_hash_defweak)
1618 (*_bfd_error_handler)
1619 (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
1620 abfd, shortname);
1622 else
1624 bh = &hi->root;
1625 if (! (_bfd_generic_link_add_one_symbol
1626 (info, abfd, shortname, BSF_INDIRECT,
1627 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
1628 return FALSE;
1629 hi = (struct elf_link_hash_entry *) bh;
1631 /* If there is a duplicate definition somewhere, then HI may not
1632 point to an indirect symbol. We will have reported an error
1633 to the user in that case. */
1635 if (hi->root.type == bfd_link_hash_indirect)
1637 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
1639 /* See if the new flags lead us to realize that the symbol
1640 must be dynamic. */
1641 if (! *dynsym)
1643 if (! dynamic)
1645 if (info->shared
1646 || hi->ref_dynamic)
1647 *dynsym = TRUE;
1649 else
1651 if (hi->ref_regular)
1652 *dynsym = TRUE;
1658 return TRUE;
1661 /* This routine is used to export all defined symbols into the dynamic
1662 symbol table. It is called via elf_link_hash_traverse. */
1664 bfd_boolean
1665 _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
1667 struct elf_info_failed *eif = data;
1669 /* Ignore this if we won't export it. */
1670 if (!eif->info->export_dynamic && !h->dynamic)
1671 return TRUE;
1673 /* Ignore indirect symbols. These are added by the versioning code. */
1674 if (h->root.type == bfd_link_hash_indirect)
1675 return TRUE;
1677 if (h->root.type == bfd_link_hash_warning)
1678 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1680 if (h->dynindx == -1
1681 && (h->def_regular
1682 || h->ref_regular))
1684 struct bfd_elf_version_tree *t;
1685 struct bfd_elf_version_expr *d;
1687 for (t = eif->verdefs; t != NULL; t = t->next)
1689 if (t->globals.list != NULL)
1691 d = (*t->match) (&t->globals, NULL, h->root.root.string);
1692 if (d != NULL)
1693 goto doit;
1696 if (t->locals.list != NULL)
1698 d = (*t->match) (&t->locals, NULL, h->root.root.string);
1699 if (d != NULL)
1700 return TRUE;
1704 if (!eif->verdefs)
1706 doit:
1707 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
1709 eif->failed = TRUE;
1710 return FALSE;
1715 return TRUE;
1718 /* Look through the symbols which are defined in other shared
1719 libraries and referenced here. Update the list of version
1720 dependencies. This will be put into the .gnu.version_r section.
1721 This function is called via elf_link_hash_traverse. */
1723 bfd_boolean
1724 _bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
1725 void *data)
1727 struct elf_find_verdep_info *rinfo = data;
1728 Elf_Internal_Verneed *t;
1729 Elf_Internal_Vernaux *a;
1730 bfd_size_type amt;
1732 if (h->root.type == bfd_link_hash_warning)
1733 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1735 /* We only care about symbols defined in shared objects with version
1736 information. */
1737 if (!h->def_dynamic
1738 || h->def_regular
1739 || h->dynindx == -1
1740 || h->verinfo.verdef == NULL)
1741 return TRUE;
1743 /* See if we already know about this version. */
1744 for (t = elf_tdata (rinfo->output_bfd)->verref; t != NULL; t = t->vn_nextref)
1746 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
1747 continue;
1749 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1750 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
1751 return TRUE;
1753 break;
1756 /* This is a new version. Add it to tree we are building. */
1758 if (t == NULL)
1760 amt = sizeof *t;
1761 t = bfd_zalloc (rinfo->output_bfd, amt);
1762 if (t == NULL)
1764 rinfo->failed = TRUE;
1765 return FALSE;
1768 t->vn_bfd = h->verinfo.verdef->vd_bfd;
1769 t->vn_nextref = elf_tdata (rinfo->output_bfd)->verref;
1770 elf_tdata (rinfo->output_bfd)->verref = t;
1773 amt = sizeof *a;
1774 a = bfd_zalloc (rinfo->output_bfd, amt);
1776 /* Note that we are copying a string pointer here, and testing it
1777 above. If bfd_elf_string_from_elf_section is ever changed to
1778 discard the string data when low in memory, this will have to be
1779 fixed. */
1780 a->vna_nodename = h->verinfo.verdef->vd_nodename;
1782 a->vna_flags = h->verinfo.verdef->vd_flags;
1783 a->vna_nextptr = t->vn_auxptr;
1785 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
1786 ++rinfo->vers;
1788 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
1790 t->vn_auxptr = a;
1792 return TRUE;
1795 /* Figure out appropriate versions for all the symbols. We may not
1796 have the version number script until we have read all of the input
1797 files, so until that point we don't know which symbols should be
1798 local. This function is called via elf_link_hash_traverse. */
1800 bfd_boolean
1801 _bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
1803 struct elf_assign_sym_version_info *sinfo;
1804 struct bfd_link_info *info;
1805 const struct elf_backend_data *bed;
1806 struct elf_info_failed eif;
1807 char *p;
1808 bfd_size_type amt;
1810 sinfo = data;
1811 info = sinfo->info;
1813 if (h->root.type == bfd_link_hash_warning)
1814 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1816 /* Fix the symbol flags. */
1817 eif.failed = FALSE;
1818 eif.info = info;
1819 if (! _bfd_elf_fix_symbol_flags (h, &eif))
1821 if (eif.failed)
1822 sinfo->failed = TRUE;
1823 return FALSE;
1826 /* We only need version numbers for symbols defined in regular
1827 objects. */
1828 if (!h->def_regular)
1829 return TRUE;
1831 bed = get_elf_backend_data (sinfo->output_bfd);
1832 p = strchr (h->root.root.string, ELF_VER_CHR);
1833 if (p != NULL && h->verinfo.vertree == NULL)
1835 struct bfd_elf_version_tree *t;
1836 bfd_boolean hidden;
1838 hidden = TRUE;
1840 /* There are two consecutive ELF_VER_CHR characters if this is
1841 not a hidden symbol. */
1842 ++p;
1843 if (*p == ELF_VER_CHR)
1845 hidden = FALSE;
1846 ++p;
1849 /* If there is no version string, we can just return out. */
1850 if (*p == '\0')
1852 if (hidden)
1853 h->hidden = 1;
1854 return TRUE;
1857 /* Look for the version. If we find it, it is no longer weak. */
1858 for (t = sinfo->verdefs; t != NULL; t = t->next)
1860 if (strcmp (t->name, p) == 0)
1862 size_t len;
1863 char *alc;
1864 struct bfd_elf_version_expr *d;
1866 len = p - h->root.root.string;
1867 alc = bfd_malloc (len);
1868 if (alc == NULL)
1869 return FALSE;
1870 memcpy (alc, h->root.root.string, len - 1);
1871 alc[len - 1] = '\0';
1872 if (alc[len - 2] == ELF_VER_CHR)
1873 alc[len - 2] = '\0';
1875 h->verinfo.vertree = t;
1876 t->used = TRUE;
1877 d = NULL;
1879 if (t->globals.list != NULL)
1880 d = (*t->match) (&t->globals, NULL, alc);
1882 /* See if there is anything to force this symbol to
1883 local scope. */
1884 if (d == NULL && t->locals.list != NULL)
1886 d = (*t->match) (&t->locals, NULL, alc);
1887 if (d != NULL
1888 && h->dynindx != -1
1889 && ! info->export_dynamic)
1890 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1893 free (alc);
1894 break;
1898 /* If we are building an application, we need to create a
1899 version node for this version. */
1900 if (t == NULL && info->executable)
1902 struct bfd_elf_version_tree **pp;
1903 int version_index;
1905 /* If we aren't going to export this symbol, we don't need
1906 to worry about it. */
1907 if (h->dynindx == -1)
1908 return TRUE;
1910 amt = sizeof *t;
1911 t = bfd_zalloc (sinfo->output_bfd, amt);
1912 if (t == NULL)
1914 sinfo->failed = TRUE;
1915 return FALSE;
1918 t->name = p;
1919 t->name_indx = (unsigned int) -1;
1920 t->used = TRUE;
1922 version_index = 1;
1923 /* Don't count anonymous version tag. */
1924 if (sinfo->verdefs != NULL && sinfo->verdefs->vernum == 0)
1925 version_index = 0;
1926 for (pp = &sinfo->verdefs; *pp != NULL; pp = &(*pp)->next)
1927 ++version_index;
1928 t->vernum = version_index;
1930 *pp = t;
1932 h->verinfo.vertree = t;
1934 else if (t == NULL)
1936 /* We could not find the version for a symbol when
1937 generating a shared archive. Return an error. */
1938 (*_bfd_error_handler)
1939 (_("%B: undefined versioned symbol name %s"),
1940 sinfo->output_bfd, h->root.root.string);
1941 bfd_set_error (bfd_error_bad_value);
1942 sinfo->failed = TRUE;
1943 return FALSE;
1946 if (hidden)
1947 h->hidden = 1;
1950 /* If we don't have a version for this symbol, see if we can find
1951 something. */
1952 if (h->verinfo.vertree == NULL && sinfo->verdefs != NULL)
1954 struct bfd_elf_version_tree *t;
1955 struct bfd_elf_version_tree *local_ver;
1956 struct bfd_elf_version_expr *d;
1958 /* See if can find what version this symbol is in. If the
1959 symbol is supposed to be local, then don't actually register
1960 it. */
1961 local_ver = NULL;
1962 for (t = sinfo->verdefs; t != NULL; t = t->next)
1964 if (t->globals.list != NULL)
1966 bfd_boolean matched;
1968 matched = FALSE;
1969 d = NULL;
1970 while ((d = (*t->match) (&t->globals, d,
1971 h->root.root.string)) != NULL)
1972 if (d->symver)
1973 matched = TRUE;
1974 else
1976 /* There is a version without definition. Make
1977 the symbol the default definition for this
1978 version. */
1979 h->verinfo.vertree = t;
1980 local_ver = NULL;
1981 d->script = 1;
1982 break;
1984 if (d != NULL)
1985 break;
1986 else if (matched)
1987 /* There is no undefined version for this symbol. Hide the
1988 default one. */
1989 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1992 if (t->locals.list != NULL)
1994 d = NULL;
1995 while ((d = (*t->match) (&t->locals, d,
1996 h->root.root.string)) != NULL)
1998 local_ver = t;
1999 /* If the match is "*", keep looking for a more
2000 explicit, perhaps even global, match.
2001 XXX: Shouldn't this be !d->wildcard instead? */
2002 if (d->pattern[0] != '*' || d->pattern[1] != '\0')
2003 break;
2006 if (d != NULL)
2007 break;
2011 if (local_ver != NULL)
2013 h->verinfo.vertree = local_ver;
2014 if (h->dynindx != -1
2015 && ! info->export_dynamic)
2017 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2022 return TRUE;
2025 /* Read and swap the relocs from the section indicated by SHDR. This
2026 may be either a REL or a RELA section. The relocations are
2027 translated into RELA relocations and stored in INTERNAL_RELOCS,
2028 which should have already been allocated to contain enough space.
2029 The EXTERNAL_RELOCS are a buffer where the external form of the
2030 relocations should be stored.
2032 Returns FALSE if something goes wrong. */
2034 static bfd_boolean
2035 elf_link_read_relocs_from_section (bfd *abfd,
2036 asection *sec,
2037 Elf_Internal_Shdr *shdr,
2038 void *external_relocs,
2039 Elf_Internal_Rela *internal_relocs)
2041 const struct elf_backend_data *bed;
2042 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
2043 const bfd_byte *erela;
2044 const bfd_byte *erelaend;
2045 Elf_Internal_Rela *irela;
2046 Elf_Internal_Shdr *symtab_hdr;
2047 size_t nsyms;
2049 /* Position ourselves at the start of the section. */
2050 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2051 return FALSE;
2053 /* Read the relocations. */
2054 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2055 return FALSE;
2057 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2058 nsyms = symtab_hdr->sh_size / symtab_hdr->sh_entsize;
2060 bed = get_elf_backend_data (abfd);
2062 /* Convert the external relocations to the internal format. */
2063 if (shdr->sh_entsize == bed->s->sizeof_rel)
2064 swap_in = bed->s->swap_reloc_in;
2065 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2066 swap_in = bed->s->swap_reloca_in;
2067 else
2069 bfd_set_error (bfd_error_wrong_format);
2070 return FALSE;
2073 erela = external_relocs;
2074 erelaend = erela + shdr->sh_size;
2075 irela = internal_relocs;
2076 while (erela < erelaend)
2078 bfd_vma r_symndx;
2080 (*swap_in) (abfd, erela, irela);
2081 r_symndx = ELF32_R_SYM (irela->r_info);
2082 if (bed->s->arch_size == 64)
2083 r_symndx >>= 24;
2084 if ((size_t) r_symndx >= nsyms)
2086 (*_bfd_error_handler)
2087 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2088 " for offset 0x%lx in section `%A'"),
2089 abfd, sec,
2090 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2091 bfd_set_error (bfd_error_bad_value);
2092 return FALSE;
2094 irela += bed->s->int_rels_per_ext_rel;
2095 erela += shdr->sh_entsize;
2098 return TRUE;
2101 /* Read and swap the relocs for a section O. They may have been
2102 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2103 not NULL, they are used as buffers to read into. They are known to
2104 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2105 the return value is allocated using either malloc or bfd_alloc,
2106 according to the KEEP_MEMORY argument. If O has two relocation
2107 sections (both REL and RELA relocations), then the REL_HDR
2108 relocations will appear first in INTERNAL_RELOCS, followed by the
2109 REL_HDR2 relocations. */
2111 Elf_Internal_Rela *
2112 _bfd_elf_link_read_relocs (bfd *abfd,
2113 asection *o,
2114 void *external_relocs,
2115 Elf_Internal_Rela *internal_relocs,
2116 bfd_boolean keep_memory)
2118 Elf_Internal_Shdr *rel_hdr;
2119 void *alloc1 = NULL;
2120 Elf_Internal_Rela *alloc2 = NULL;
2121 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2123 if (elf_section_data (o)->relocs != NULL)
2124 return elf_section_data (o)->relocs;
2126 if (o->reloc_count == 0)
2127 return NULL;
2129 rel_hdr = &elf_section_data (o)->rel_hdr;
2131 if (internal_relocs == NULL)
2133 bfd_size_type size;
2135 size = o->reloc_count;
2136 size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2137 if (keep_memory)
2138 internal_relocs = bfd_alloc (abfd, size);
2139 else
2140 internal_relocs = alloc2 = bfd_malloc (size);
2141 if (internal_relocs == NULL)
2142 goto error_return;
2145 if (external_relocs == NULL)
2147 bfd_size_type size = rel_hdr->sh_size;
2149 if (elf_section_data (o)->rel_hdr2)
2150 size += elf_section_data (o)->rel_hdr2->sh_size;
2151 alloc1 = bfd_malloc (size);
2152 if (alloc1 == NULL)
2153 goto error_return;
2154 external_relocs = alloc1;
2157 if (!elf_link_read_relocs_from_section (abfd, o, rel_hdr,
2158 external_relocs,
2159 internal_relocs))
2160 goto error_return;
2161 if (elf_section_data (o)->rel_hdr2
2162 && (!elf_link_read_relocs_from_section
2163 (abfd, o,
2164 elf_section_data (o)->rel_hdr2,
2165 ((bfd_byte *) external_relocs) + rel_hdr->sh_size,
2166 internal_relocs + (NUM_SHDR_ENTRIES (rel_hdr)
2167 * bed->s->int_rels_per_ext_rel))))
2168 goto error_return;
2170 /* Cache the results for next time, if we can. */
2171 if (keep_memory)
2172 elf_section_data (o)->relocs = internal_relocs;
2174 if (alloc1 != NULL)
2175 free (alloc1);
2177 /* Don't free alloc2, since if it was allocated we are passing it
2178 back (under the name of internal_relocs). */
2180 return internal_relocs;
2182 error_return:
2183 if (alloc1 != NULL)
2184 free (alloc1);
2185 if (alloc2 != NULL)
2186 free (alloc2);
2187 return NULL;
2190 /* Compute the size of, and allocate space for, REL_HDR which is the
2191 section header for a section containing relocations for O. */
2193 bfd_boolean
2194 _bfd_elf_link_size_reloc_section (bfd *abfd,
2195 Elf_Internal_Shdr *rel_hdr,
2196 asection *o)
2198 bfd_size_type reloc_count;
2199 bfd_size_type num_rel_hashes;
2201 /* Figure out how many relocations there will be. */
2202 if (rel_hdr == &elf_section_data (o)->rel_hdr)
2203 reloc_count = elf_section_data (o)->rel_count;
2204 else
2205 reloc_count = elf_section_data (o)->rel_count2;
2207 num_rel_hashes = o->reloc_count;
2208 if (num_rel_hashes < reloc_count)
2209 num_rel_hashes = reloc_count;
2211 /* That allows us to calculate the size of the section. */
2212 rel_hdr->sh_size = rel_hdr->sh_entsize * reloc_count;
2214 /* The contents field must last into write_object_contents, so we
2215 allocate it with bfd_alloc rather than malloc. Also since we
2216 cannot be sure that the contents will actually be filled in,
2217 we zero the allocated space. */
2218 rel_hdr->contents = bfd_zalloc (abfd, rel_hdr->sh_size);
2219 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2220 return FALSE;
2222 /* We only allocate one set of hash entries, so we only do it the
2223 first time we are called. */
2224 if (elf_section_data (o)->rel_hashes == NULL
2225 && num_rel_hashes)
2227 struct elf_link_hash_entry **p;
2229 p = bfd_zmalloc (num_rel_hashes * sizeof (struct elf_link_hash_entry *));
2230 if (p == NULL)
2231 return FALSE;
2233 elf_section_data (o)->rel_hashes = p;
2236 return TRUE;
2239 /* Copy the relocations indicated by the INTERNAL_RELOCS (which
2240 originated from the section given by INPUT_REL_HDR) to the
2241 OUTPUT_BFD. */
2243 bfd_boolean
2244 _bfd_elf_link_output_relocs (bfd *output_bfd,
2245 asection *input_section,
2246 Elf_Internal_Shdr *input_rel_hdr,
2247 Elf_Internal_Rela *internal_relocs,
2248 struct elf_link_hash_entry **rel_hash
2249 ATTRIBUTE_UNUSED)
2251 Elf_Internal_Rela *irela;
2252 Elf_Internal_Rela *irelaend;
2253 bfd_byte *erel;
2254 Elf_Internal_Shdr *output_rel_hdr;
2255 asection *output_section;
2256 unsigned int *rel_countp = NULL;
2257 const struct elf_backend_data *bed;
2258 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
2260 output_section = input_section->output_section;
2261 output_rel_hdr = NULL;
2263 if (elf_section_data (output_section)->rel_hdr.sh_entsize
2264 == input_rel_hdr->sh_entsize)
2266 output_rel_hdr = &elf_section_data (output_section)->rel_hdr;
2267 rel_countp = &elf_section_data (output_section)->rel_count;
2269 else if (elf_section_data (output_section)->rel_hdr2
2270 && (elf_section_data (output_section)->rel_hdr2->sh_entsize
2271 == input_rel_hdr->sh_entsize))
2273 output_rel_hdr = elf_section_data (output_section)->rel_hdr2;
2274 rel_countp = &elf_section_data (output_section)->rel_count2;
2276 else
2278 (*_bfd_error_handler)
2279 (_("%B: relocation size mismatch in %B section %A"),
2280 output_bfd, input_section->owner, input_section);
2281 bfd_set_error (bfd_error_wrong_object_format);
2282 return FALSE;
2285 bed = get_elf_backend_data (output_bfd);
2286 if (input_rel_hdr->sh_entsize == bed->s->sizeof_rel)
2287 swap_out = bed->s->swap_reloc_out;
2288 else if (input_rel_hdr->sh_entsize == bed->s->sizeof_rela)
2289 swap_out = bed->s->swap_reloca_out;
2290 else
2291 abort ();
2293 erel = output_rel_hdr->contents;
2294 erel += *rel_countp * input_rel_hdr->sh_entsize;
2295 irela = internal_relocs;
2296 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2297 * bed->s->int_rels_per_ext_rel);
2298 while (irela < irelaend)
2300 (*swap_out) (output_bfd, irela, erel);
2301 irela += bed->s->int_rels_per_ext_rel;
2302 erel += input_rel_hdr->sh_entsize;
2305 /* Bump the counter, so that we know where to add the next set of
2306 relocations. */
2307 *rel_countp += NUM_SHDR_ENTRIES (input_rel_hdr);
2309 return TRUE;
2312 /* Make weak undefined symbols in PIE dynamic. */
2314 bfd_boolean
2315 _bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2316 struct elf_link_hash_entry *h)
2318 if (info->pie
2319 && h->dynindx == -1
2320 && h->root.type == bfd_link_hash_undefweak)
2321 return bfd_elf_link_record_dynamic_symbol (info, h);
2323 return TRUE;
2326 /* Fix up the flags for a symbol. This handles various cases which
2327 can only be fixed after all the input files are seen. This is
2328 currently called by both adjust_dynamic_symbol and
2329 assign_sym_version, which is unnecessary but perhaps more robust in
2330 the face of future changes. */
2332 bfd_boolean
2333 _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2334 struct elf_info_failed *eif)
2336 const struct elf_backend_data *bed = NULL;
2338 /* If this symbol was mentioned in a non-ELF file, try to set
2339 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2340 permit a non-ELF file to correctly refer to a symbol defined in
2341 an ELF dynamic object. */
2342 if (h->non_elf)
2344 while (h->root.type == bfd_link_hash_indirect)
2345 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2347 if (h->root.type != bfd_link_hash_defined
2348 && h->root.type != bfd_link_hash_defweak)
2350 h->ref_regular = 1;
2351 h->ref_regular_nonweak = 1;
2353 else
2355 if (h->root.u.def.section->owner != NULL
2356 && (bfd_get_flavour (h->root.u.def.section->owner)
2357 == bfd_target_elf_flavour))
2359 h->ref_regular = 1;
2360 h->ref_regular_nonweak = 1;
2362 else
2363 h->def_regular = 1;
2366 if (h->dynindx == -1
2367 && (h->def_dynamic
2368 || h->ref_dynamic))
2370 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2372 eif->failed = TRUE;
2373 return FALSE;
2377 else
2379 /* Unfortunately, NON_ELF is only correct if the symbol
2380 was first seen in a non-ELF file. Fortunately, if the symbol
2381 was first seen in an ELF file, we're probably OK unless the
2382 symbol was defined in a non-ELF file. Catch that case here.
2383 FIXME: We're still in trouble if the symbol was first seen in
2384 a dynamic object, and then later in a non-ELF regular object. */
2385 if ((h->root.type == bfd_link_hash_defined
2386 || h->root.type == bfd_link_hash_defweak)
2387 && !h->def_regular
2388 && (h->root.u.def.section->owner != NULL
2389 ? (bfd_get_flavour (h->root.u.def.section->owner)
2390 != bfd_target_elf_flavour)
2391 : (bfd_is_abs_section (h->root.u.def.section)
2392 && !h->def_dynamic)))
2393 h->def_regular = 1;
2396 /* Backend specific symbol fixup. */
2397 if (elf_hash_table (eif->info)->dynobj)
2399 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2400 if (bed->elf_backend_fixup_symbol
2401 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2402 return FALSE;
2405 /* If this is a final link, and the symbol was defined as a common
2406 symbol in a regular object file, and there was no definition in
2407 any dynamic object, then the linker will have allocated space for
2408 the symbol in a common section but the DEF_REGULAR
2409 flag will not have been set. */
2410 if (h->root.type == bfd_link_hash_defined
2411 && !h->def_regular
2412 && h->ref_regular
2413 && !h->def_dynamic
2414 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
2415 h->def_regular = 1;
2417 /* If -Bsymbolic was used (which means to bind references to global
2418 symbols to the definition within the shared object), and this
2419 symbol was defined in a regular object, then it actually doesn't
2420 need a PLT entry. Likewise, if the symbol has non-default
2421 visibility. If the symbol has hidden or internal visibility, we
2422 will force it local. */
2423 if (h->needs_plt
2424 && eif->info->shared
2425 && is_elf_hash_table (eif->info->hash)
2426 && (SYMBOLIC_BIND (eif->info, h)
2427 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2428 && h->def_regular)
2430 bfd_boolean force_local;
2432 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2433 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2434 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2437 /* If a weak undefined symbol has non-default visibility, we also
2438 hide it from the dynamic linker. */
2439 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2440 && h->root.type == bfd_link_hash_undefweak)
2442 const struct elf_backend_data *bed;
2443 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2444 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2447 /* If this is a weak defined symbol in a dynamic object, and we know
2448 the real definition in the dynamic object, copy interesting flags
2449 over to the real definition. */
2450 if (h->u.weakdef != NULL)
2452 struct elf_link_hash_entry *weakdef;
2454 weakdef = h->u.weakdef;
2455 if (h->root.type == bfd_link_hash_indirect)
2456 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2458 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2459 || h->root.type == bfd_link_hash_defweak);
2460 BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2461 || weakdef->root.type == bfd_link_hash_defweak);
2462 BFD_ASSERT (weakdef->def_dynamic);
2464 /* If the real definition is defined by a regular object file,
2465 don't do anything special. See the longer description in
2466 _bfd_elf_adjust_dynamic_symbol, below. */
2467 if (weakdef->def_regular)
2468 h->u.weakdef = NULL;
2469 else
2470 (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef,
2474 return TRUE;
2477 /* Make the backend pick a good value for a dynamic symbol. This is
2478 called via elf_link_hash_traverse, and also calls itself
2479 recursively. */
2481 bfd_boolean
2482 _bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
2484 struct elf_info_failed *eif = data;
2485 bfd *dynobj;
2486 const struct elf_backend_data *bed;
2488 if (! is_elf_hash_table (eif->info->hash))
2489 return FALSE;
2491 if (h->root.type == bfd_link_hash_warning)
2493 h->got = elf_hash_table (eif->info)->init_got_offset;
2494 h->plt = elf_hash_table (eif->info)->init_plt_offset;
2496 /* When warning symbols are created, they **replace** the "real"
2497 entry in the hash table, thus we never get to see the real
2498 symbol in a hash traversal. So look at it now. */
2499 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2502 /* Ignore indirect symbols. These are added by the versioning code. */
2503 if (h->root.type == bfd_link_hash_indirect)
2504 return TRUE;
2506 /* Fix the symbol flags. */
2507 if (! _bfd_elf_fix_symbol_flags (h, eif))
2508 return FALSE;
2510 /* If this symbol does not require a PLT entry, and it is not
2511 defined by a dynamic object, or is not referenced by a regular
2512 object, ignore it. We do have to handle a weak defined symbol,
2513 even if no regular object refers to it, if we decided to add it
2514 to the dynamic symbol table. FIXME: Do we normally need to worry
2515 about symbols which are defined by one dynamic object and
2516 referenced by another one? */
2517 if (!h->needs_plt
2518 && (h->def_regular
2519 || !h->def_dynamic
2520 || (!h->ref_regular
2521 && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
2523 h->plt = elf_hash_table (eif->info)->init_plt_offset;
2524 return TRUE;
2527 /* If we've already adjusted this symbol, don't do it again. This
2528 can happen via a recursive call. */
2529 if (h->dynamic_adjusted)
2530 return TRUE;
2532 /* Don't look at this symbol again. Note that we must set this
2533 after checking the above conditions, because we may look at a
2534 symbol once, decide not to do anything, and then get called
2535 recursively later after REF_REGULAR is set below. */
2536 h->dynamic_adjusted = 1;
2538 /* If this is a weak definition, and we know a real definition, and
2539 the real symbol is not itself defined by a regular object file,
2540 then get a good value for the real definition. We handle the
2541 real symbol first, for the convenience of the backend routine.
2543 Note that there is a confusing case here. If the real definition
2544 is defined by a regular object file, we don't get the real symbol
2545 from the dynamic object, but we do get the weak symbol. If the
2546 processor backend uses a COPY reloc, then if some routine in the
2547 dynamic object changes the real symbol, we will not see that
2548 change in the corresponding weak symbol. This is the way other
2549 ELF linkers work as well, and seems to be a result of the shared
2550 library model.
2552 I will clarify this issue. Most SVR4 shared libraries define the
2553 variable _timezone and define timezone as a weak synonym. The
2554 tzset call changes _timezone. If you write
2555 extern int timezone;
2556 int _timezone = 5;
2557 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2558 you might expect that, since timezone is a synonym for _timezone,
2559 the same number will print both times. However, if the processor
2560 backend uses a COPY reloc, then actually timezone will be copied
2561 into your process image, and, since you define _timezone
2562 yourself, _timezone will not. Thus timezone and _timezone will
2563 wind up at different memory locations. The tzset call will set
2564 _timezone, leaving timezone unchanged. */
2566 if (h->u.weakdef != NULL)
2568 /* If we get to this point, we know there is an implicit
2569 reference by a regular object file via the weak symbol H.
2570 FIXME: Is this really true? What if the traversal finds
2571 H->U.WEAKDEF before it finds H? */
2572 h->u.weakdef->ref_regular = 1;
2574 if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
2575 return FALSE;
2578 /* If a symbol has no type and no size and does not require a PLT
2579 entry, then we are probably about to do the wrong thing here: we
2580 are probably going to create a COPY reloc for an empty object.
2581 This case can arise when a shared object is built with assembly
2582 code, and the assembly code fails to set the symbol type. */
2583 if (h->size == 0
2584 && h->type == STT_NOTYPE
2585 && !h->needs_plt)
2586 (*_bfd_error_handler)
2587 (_("warning: type and size of dynamic symbol `%s' are not defined"),
2588 h->root.root.string);
2590 dynobj = elf_hash_table (eif->info)->dynobj;
2591 bed = get_elf_backend_data (dynobj);
2592 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2594 eif->failed = TRUE;
2595 return FALSE;
2598 return TRUE;
2601 /* Adjust all external symbols pointing into SEC_MERGE sections
2602 to reflect the object merging within the sections. */
2604 bfd_boolean
2605 _bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
2607 asection *sec;
2609 if (h->root.type == bfd_link_hash_warning)
2610 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2612 if ((h->root.type == bfd_link_hash_defined
2613 || h->root.type == bfd_link_hash_defweak)
2614 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
2615 && sec->sec_info_type == ELF_INFO_TYPE_MERGE)
2617 bfd *output_bfd = data;
2619 h->root.u.def.value =
2620 _bfd_merged_section_offset (output_bfd,
2621 &h->root.u.def.section,
2622 elf_section_data (sec)->sec_info,
2623 h->root.u.def.value);
2626 return TRUE;
2629 /* Returns false if the symbol referred to by H should be considered
2630 to resolve local to the current module, and true if it should be
2631 considered to bind dynamically. */
2633 bfd_boolean
2634 _bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
2635 struct bfd_link_info *info,
2636 bfd_boolean ignore_protected)
2638 bfd_boolean binding_stays_local_p;
2640 if (h == NULL)
2641 return FALSE;
2643 while (h->root.type == bfd_link_hash_indirect
2644 || h->root.type == bfd_link_hash_warning)
2645 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2647 /* If it was forced local, then clearly it's not dynamic. */
2648 if (h->dynindx == -1)
2649 return FALSE;
2650 if (h->forced_local)
2651 return FALSE;
2653 /* Identify the cases where name binding rules say that a
2654 visible symbol resolves locally. */
2655 binding_stays_local_p = info->executable || SYMBOLIC_BIND (info, h);
2657 switch (ELF_ST_VISIBILITY (h->other))
2659 case STV_INTERNAL:
2660 case STV_HIDDEN:
2661 return FALSE;
2663 case STV_PROTECTED:
2664 /* Proper resolution for function pointer equality may require
2665 that these symbols perhaps be resolved dynamically, even though
2666 we should be resolving them to the current module. */
2667 if (!ignore_protected || h->type != STT_FUNC)
2668 binding_stays_local_p = TRUE;
2669 break;
2671 default:
2672 break;
2675 /* If it isn't defined locally, then clearly it's dynamic. */
2676 if (!h->def_regular)
2677 return TRUE;
2679 /* Otherwise, the symbol is dynamic if binding rules don't tell
2680 us that it remains local. */
2681 return !binding_stays_local_p;
2684 /* Return true if the symbol referred to by H should be considered
2685 to resolve local to the current module, and false otherwise. Differs
2686 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2687 undefined symbols and weak symbols. */
2689 bfd_boolean
2690 _bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
2691 struct bfd_link_info *info,
2692 bfd_boolean local_protected)
2694 /* If it's a local sym, of course we resolve locally. */
2695 if (h == NULL)
2696 return TRUE;
2698 /* Common symbols that become definitions don't get the DEF_REGULAR
2699 flag set, so test it first, and don't bail out. */
2700 if (ELF_COMMON_DEF_P (h))
2701 /* Do nothing. */;
2702 /* If we don't have a definition in a regular file, then we can't
2703 resolve locally. The sym is either undefined or dynamic. */
2704 else if (!h->def_regular)
2705 return FALSE;
2707 /* Forced local symbols resolve locally. */
2708 if (h->forced_local)
2709 return TRUE;
2711 /* As do non-dynamic symbols. */
2712 if (h->dynindx == -1)
2713 return TRUE;
2715 /* At this point, we know the symbol is defined and dynamic. In an
2716 executable it must resolve locally, likewise when building symbolic
2717 shared libraries. */
2718 if (info->executable || SYMBOLIC_BIND (info, h))
2719 return TRUE;
2721 /* Now deal with defined dynamic symbols in shared libraries. Ones
2722 with default visibility might not resolve locally. */
2723 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
2724 return FALSE;
2726 /* However, STV_HIDDEN or STV_INTERNAL ones must be local. */
2727 if (ELF_ST_VISIBILITY (h->other) != STV_PROTECTED)
2728 return TRUE;
2730 /* STV_PROTECTED non-function symbols are local. */
2731 if (h->type != STT_FUNC)
2732 return TRUE;
2734 /* Function pointer equality tests may require that STV_PROTECTED
2735 symbols be treated as dynamic symbols, even when we know that the
2736 dynamic linker will resolve them locally. */
2737 return local_protected;
2740 /* Caches some TLS segment info, and ensures that the TLS segment vma is
2741 aligned. Returns the first TLS output section. */
2743 struct bfd_section *
2744 _bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
2746 struct bfd_section *sec, *tls;
2747 unsigned int align = 0;
2749 for (sec = obfd->sections; sec != NULL; sec = sec->next)
2750 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
2751 break;
2752 tls = sec;
2754 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
2755 if (sec->alignment_power > align)
2756 align = sec->alignment_power;
2758 elf_hash_table (info)->tls_sec = tls;
2760 /* Ensure the alignment of the first section is the largest alignment,
2761 so that the tls segment starts aligned. */
2762 if (tls != NULL)
2763 tls->alignment_power = align;
2765 return tls;
2768 /* Return TRUE iff this is a non-common, definition of a non-function symbol. */
2769 static bfd_boolean
2770 is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
2771 Elf_Internal_Sym *sym)
2773 const struct elf_backend_data *bed;
2775 /* Local symbols do not count, but target specific ones might. */
2776 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
2777 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
2778 return FALSE;
2780 /* Function symbols do not count. */
2781 if (ELF_ST_TYPE (sym->st_info) == STT_FUNC)
2782 return FALSE;
2784 /* If the section is undefined, then so is the symbol. */
2785 if (sym->st_shndx == SHN_UNDEF)
2786 return FALSE;
2788 /* If the symbol is defined in the common section, then
2789 it is a common definition and so does not count. */
2790 bed = get_elf_backend_data (abfd);
2791 if (bed->common_definition (sym))
2792 return FALSE;
2794 /* If the symbol is in a target specific section then we
2795 must rely upon the backend to tell us what it is. */
2796 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
2797 /* FIXME - this function is not coded yet:
2799 return _bfd_is_global_symbol_definition (abfd, sym);
2801 Instead for now assume that the definition is not global,
2802 Even if this is wrong, at least the linker will behave
2803 in the same way that it used to do. */
2804 return FALSE;
2806 return TRUE;
2809 /* Search the symbol table of the archive element of the archive ABFD
2810 whose archive map contains a mention of SYMDEF, and determine if
2811 the symbol is defined in this element. */
2812 static bfd_boolean
2813 elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
2815 Elf_Internal_Shdr * hdr;
2816 bfd_size_type symcount;
2817 bfd_size_type extsymcount;
2818 bfd_size_type extsymoff;
2819 Elf_Internal_Sym *isymbuf;
2820 Elf_Internal_Sym *isym;
2821 Elf_Internal_Sym *isymend;
2822 bfd_boolean result;
2824 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
2825 if (abfd == NULL)
2826 return FALSE;
2828 if (! bfd_check_format (abfd, bfd_object))
2829 return FALSE;
2831 /* If we have already included the element containing this symbol in the
2832 link then we do not need to include it again. Just claim that any symbol
2833 it contains is not a definition, so that our caller will not decide to
2834 (re)include this element. */
2835 if (abfd->archive_pass)
2836 return FALSE;
2838 /* Select the appropriate symbol table. */
2839 if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
2840 hdr = &elf_tdata (abfd)->symtab_hdr;
2841 else
2842 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2844 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
2846 /* The sh_info field of the symtab header tells us where the
2847 external symbols start. We don't care about the local symbols. */
2848 if (elf_bad_symtab (abfd))
2850 extsymcount = symcount;
2851 extsymoff = 0;
2853 else
2855 extsymcount = symcount - hdr->sh_info;
2856 extsymoff = hdr->sh_info;
2859 if (extsymcount == 0)
2860 return FALSE;
2862 /* Read in the symbol table. */
2863 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
2864 NULL, NULL, NULL);
2865 if (isymbuf == NULL)
2866 return FALSE;
2868 /* Scan the symbol table looking for SYMDEF. */
2869 result = FALSE;
2870 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
2872 const char *name;
2874 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
2875 isym->st_name);
2876 if (name == NULL)
2877 break;
2879 if (strcmp (name, symdef->name) == 0)
2881 result = is_global_data_symbol_definition (abfd, isym);
2882 break;
2886 free (isymbuf);
2888 return result;
2891 /* Add an entry to the .dynamic table. */
2893 bfd_boolean
2894 _bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
2895 bfd_vma tag,
2896 bfd_vma val)
2898 struct elf_link_hash_table *hash_table;
2899 const struct elf_backend_data *bed;
2900 asection *s;
2901 bfd_size_type newsize;
2902 bfd_byte *newcontents;
2903 Elf_Internal_Dyn dyn;
2905 hash_table = elf_hash_table (info);
2906 if (! is_elf_hash_table (hash_table))
2907 return FALSE;
2909 bed = get_elf_backend_data (hash_table->dynobj);
2910 s = bfd_get_section_by_name (hash_table->dynobj, ".dynamic");
2911 BFD_ASSERT (s != NULL);
2913 newsize = s->size + bed->s->sizeof_dyn;
2914 newcontents = bfd_realloc (s->contents, newsize);
2915 if (newcontents == NULL)
2916 return FALSE;
2918 dyn.d_tag = tag;
2919 dyn.d_un.d_val = val;
2920 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
2922 s->size = newsize;
2923 s->contents = newcontents;
2925 return TRUE;
2928 /* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
2929 otherwise just check whether one already exists. Returns -1 on error,
2930 1 if a DT_NEEDED tag already exists, and 0 on success. */
2932 static int
2933 elf_add_dt_needed_tag (bfd *abfd,
2934 struct bfd_link_info *info,
2935 const char *soname,
2936 bfd_boolean do_it)
2938 struct elf_link_hash_table *hash_table;
2939 bfd_size_type oldsize;
2940 bfd_size_type strindex;
2942 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
2943 return -1;
2945 hash_table = elf_hash_table (info);
2946 oldsize = _bfd_elf_strtab_size (hash_table->dynstr);
2947 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
2948 if (strindex == (bfd_size_type) -1)
2949 return -1;
2951 if (oldsize == _bfd_elf_strtab_size (hash_table->dynstr))
2953 asection *sdyn;
2954 const struct elf_backend_data *bed;
2955 bfd_byte *extdyn;
2957 bed = get_elf_backend_data (hash_table->dynobj);
2958 sdyn = bfd_get_section_by_name (hash_table->dynobj, ".dynamic");
2959 if (sdyn != NULL)
2960 for (extdyn = sdyn->contents;
2961 extdyn < sdyn->contents + sdyn->size;
2962 extdyn += bed->s->sizeof_dyn)
2964 Elf_Internal_Dyn dyn;
2966 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
2967 if (dyn.d_tag == DT_NEEDED
2968 && dyn.d_un.d_val == strindex)
2970 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
2971 return 1;
2976 if (do_it)
2978 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
2979 return -1;
2981 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
2982 return -1;
2984 else
2985 /* We were just checking for existence of the tag. */
2986 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
2988 return 0;
2991 /* Sort symbol by value and section. */
2992 static int
2993 elf_sort_symbol (const void *arg1, const void *arg2)
2995 const struct elf_link_hash_entry *h1;
2996 const struct elf_link_hash_entry *h2;
2997 bfd_signed_vma vdiff;
2999 h1 = *(const struct elf_link_hash_entry **) arg1;
3000 h2 = *(const struct elf_link_hash_entry **) arg2;
3001 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3002 if (vdiff != 0)
3003 return vdiff > 0 ? 1 : -1;
3004 else
3006 long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3007 if (sdiff != 0)
3008 return sdiff > 0 ? 1 : -1;
3010 return 0;
3013 /* This function is used to adjust offsets into .dynstr for
3014 dynamic symbols. This is called via elf_link_hash_traverse. */
3016 static bfd_boolean
3017 elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3019 struct elf_strtab_hash *dynstr = data;
3021 if (h->root.type == bfd_link_hash_warning)
3022 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3024 if (h->dynindx != -1)
3025 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3026 return TRUE;
3029 /* Assign string offsets in .dynstr, update all structures referencing
3030 them. */
3032 static bfd_boolean
3033 elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
3035 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3036 struct elf_link_local_dynamic_entry *entry;
3037 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3038 bfd *dynobj = hash_table->dynobj;
3039 asection *sdyn;
3040 bfd_size_type size;
3041 const struct elf_backend_data *bed;
3042 bfd_byte *extdyn;
3044 _bfd_elf_strtab_finalize (dynstr);
3045 size = _bfd_elf_strtab_size (dynstr);
3047 bed = get_elf_backend_data (dynobj);
3048 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
3049 BFD_ASSERT (sdyn != NULL);
3051 /* Update all .dynamic entries referencing .dynstr strings. */
3052 for (extdyn = sdyn->contents;
3053 extdyn < sdyn->contents + sdyn->size;
3054 extdyn += bed->s->sizeof_dyn)
3056 Elf_Internal_Dyn dyn;
3058 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3059 switch (dyn.d_tag)
3061 case DT_STRSZ:
3062 dyn.d_un.d_val = size;
3063 break;
3064 case DT_NEEDED:
3065 case DT_SONAME:
3066 case DT_RPATH:
3067 case DT_RUNPATH:
3068 case DT_FILTER:
3069 case DT_AUXILIARY:
3070 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3071 break;
3072 default:
3073 continue;
3075 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3078 /* Now update local dynamic symbols. */
3079 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3080 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3081 entry->isym.st_name);
3083 /* And the rest of dynamic symbols. */
3084 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3086 /* Adjust version definitions. */
3087 if (elf_tdata (output_bfd)->cverdefs)
3089 asection *s;
3090 bfd_byte *p;
3091 bfd_size_type i;
3092 Elf_Internal_Verdef def;
3093 Elf_Internal_Verdaux defaux;
3095 s = bfd_get_section_by_name (dynobj, ".gnu.version_d");
3096 p = s->contents;
3099 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3100 &def);
3101 p += sizeof (Elf_External_Verdef);
3102 if (def.vd_aux != sizeof (Elf_External_Verdef))
3103 continue;
3104 for (i = 0; i < def.vd_cnt; ++i)
3106 _bfd_elf_swap_verdaux_in (output_bfd,
3107 (Elf_External_Verdaux *) p, &defaux);
3108 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3109 defaux.vda_name);
3110 _bfd_elf_swap_verdaux_out (output_bfd,
3111 &defaux, (Elf_External_Verdaux *) p);
3112 p += sizeof (Elf_External_Verdaux);
3115 while (def.vd_next);
3118 /* Adjust version references. */
3119 if (elf_tdata (output_bfd)->verref)
3121 asection *s;
3122 bfd_byte *p;
3123 bfd_size_type i;
3124 Elf_Internal_Verneed need;
3125 Elf_Internal_Vernaux needaux;
3127 s = bfd_get_section_by_name (dynobj, ".gnu.version_r");
3128 p = s->contents;
3131 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3132 &need);
3133 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3134 _bfd_elf_swap_verneed_out (output_bfd, &need,
3135 (Elf_External_Verneed *) p);
3136 p += sizeof (Elf_External_Verneed);
3137 for (i = 0; i < need.vn_cnt; ++i)
3139 _bfd_elf_swap_vernaux_in (output_bfd,
3140 (Elf_External_Vernaux *) p, &needaux);
3141 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3142 needaux.vna_name);
3143 _bfd_elf_swap_vernaux_out (output_bfd,
3144 &needaux,
3145 (Elf_External_Vernaux *) p);
3146 p += sizeof (Elf_External_Vernaux);
3149 while (need.vn_next);
3152 return TRUE;
3155 /* Add symbols from an ELF object file to the linker hash table. */
3157 static bfd_boolean
3158 elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3160 Elf_Internal_Shdr *hdr;
3161 bfd_size_type symcount;
3162 bfd_size_type extsymcount;
3163 bfd_size_type extsymoff;
3164 struct elf_link_hash_entry **sym_hash;
3165 bfd_boolean dynamic;
3166 Elf_External_Versym *extversym = NULL;
3167 Elf_External_Versym *ever;
3168 struct elf_link_hash_entry *weaks;
3169 struct elf_link_hash_entry **nondeflt_vers = NULL;
3170 bfd_size_type nondeflt_vers_cnt = 0;
3171 Elf_Internal_Sym *isymbuf = NULL;
3172 Elf_Internal_Sym *isym;
3173 Elf_Internal_Sym *isymend;
3174 const struct elf_backend_data *bed;
3175 bfd_boolean add_needed;
3176 struct elf_link_hash_table *htab;
3177 bfd_size_type amt;
3178 void *alloc_mark = NULL;
3179 struct bfd_hash_entry **old_table = NULL;
3180 unsigned int old_size = 0;
3181 unsigned int old_count = 0;
3182 void *old_tab = NULL;
3183 void *old_hash;
3184 void *old_ent;
3185 struct bfd_link_hash_entry *old_undefs = NULL;
3186 struct bfd_link_hash_entry *old_undefs_tail = NULL;
3187 long old_dynsymcount = 0;
3188 size_t tabsize = 0;
3189 size_t hashsize = 0;
3191 htab = elf_hash_table (info);
3192 bed = get_elf_backend_data (abfd);
3194 if ((abfd->flags & DYNAMIC) == 0)
3195 dynamic = FALSE;
3196 else
3198 dynamic = TRUE;
3200 /* You can't use -r against a dynamic object. Also, there's no
3201 hope of using a dynamic object which does not exactly match
3202 the format of the output file. */
3203 if (info->relocatable
3204 || !is_elf_hash_table (htab)
3205 || htab->root.creator != abfd->xvec)
3207 if (info->relocatable)
3208 bfd_set_error (bfd_error_invalid_operation);
3209 else
3210 bfd_set_error (bfd_error_wrong_format);
3211 goto error_return;
3215 /* As a GNU extension, any input sections which are named
3216 .gnu.warning.SYMBOL are treated as warning symbols for the given
3217 symbol. This differs from .gnu.warning sections, which generate
3218 warnings when they are included in an output file. */
3219 if (info->executable)
3221 asection *s;
3223 for (s = abfd->sections; s != NULL; s = s->next)
3225 const char *name;
3227 name = bfd_get_section_name (abfd, s);
3228 if (CONST_STRNEQ (name, ".gnu.warning."))
3230 char *msg;
3231 bfd_size_type sz;
3233 name += sizeof ".gnu.warning." - 1;
3235 /* If this is a shared object, then look up the symbol
3236 in the hash table. If it is there, and it is already
3237 been defined, then we will not be using the entry
3238 from this shared object, so we don't need to warn.
3239 FIXME: If we see the definition in a regular object
3240 later on, we will warn, but we shouldn't. The only
3241 fix is to keep track of what warnings we are supposed
3242 to emit, and then handle them all at the end of the
3243 link. */
3244 if (dynamic)
3246 struct elf_link_hash_entry *h;
3248 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3250 /* FIXME: What about bfd_link_hash_common? */
3251 if (h != NULL
3252 && (h->root.type == bfd_link_hash_defined
3253 || h->root.type == bfd_link_hash_defweak))
3255 /* We don't want to issue this warning. Clobber
3256 the section size so that the warning does not
3257 get copied into the output file. */
3258 s->size = 0;
3259 continue;
3263 sz = s->size;
3264 msg = bfd_alloc (abfd, sz + 1);
3265 if (msg == NULL)
3266 goto error_return;
3268 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3269 goto error_return;
3271 msg[sz] = '\0';
3273 if (! (_bfd_generic_link_add_one_symbol
3274 (info, abfd, name, BSF_WARNING, s, 0, msg,
3275 FALSE, bed->collect, NULL)))
3276 goto error_return;
3278 if (! info->relocatable)
3280 /* Clobber the section size so that the warning does
3281 not get copied into the output file. */
3282 s->size = 0;
3284 /* Also set SEC_EXCLUDE, so that symbols defined in
3285 the warning section don't get copied to the output. */
3286 s->flags |= SEC_EXCLUDE;
3292 add_needed = TRUE;
3293 if (! dynamic)
3295 /* If we are creating a shared library, create all the dynamic
3296 sections immediately. We need to attach them to something,
3297 so we attach them to this BFD, provided it is the right
3298 format. FIXME: If there are no input BFD's of the same
3299 format as the output, we can't make a shared library. */
3300 if (info->shared
3301 && is_elf_hash_table (htab)
3302 && htab->root.creator == abfd->xvec
3303 && !htab->dynamic_sections_created)
3305 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3306 goto error_return;
3309 else if (!is_elf_hash_table (htab))
3310 goto error_return;
3311 else
3313 asection *s;
3314 const char *soname = NULL;
3315 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3316 int ret;
3318 /* ld --just-symbols and dynamic objects don't mix very well.
3319 ld shouldn't allow it. */
3320 if ((s = abfd->sections) != NULL
3321 && s->sec_info_type == ELF_INFO_TYPE_JUST_SYMS)
3322 abort ();
3324 /* If this dynamic lib was specified on the command line with
3325 --as-needed in effect, then we don't want to add a DT_NEEDED
3326 tag unless the lib is actually used. Similary for libs brought
3327 in by another lib's DT_NEEDED. When --no-add-needed is used
3328 on a dynamic lib, we don't want to add a DT_NEEDED entry for
3329 any dynamic library in DT_NEEDED tags in the dynamic lib at
3330 all. */
3331 add_needed = (elf_dyn_lib_class (abfd)
3332 & (DYN_AS_NEEDED | DYN_DT_NEEDED
3333 | DYN_NO_NEEDED)) == 0;
3335 s = bfd_get_section_by_name (abfd, ".dynamic");
3336 if (s != NULL)
3338 bfd_byte *dynbuf;
3339 bfd_byte *extdyn;
3340 int elfsec;
3341 unsigned long shlink;
3343 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
3344 goto error_free_dyn;
3346 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
3347 if (elfsec == -1)
3348 goto error_free_dyn;
3349 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3351 for (extdyn = dynbuf;
3352 extdyn < dynbuf + s->size;
3353 extdyn += bed->s->sizeof_dyn)
3355 Elf_Internal_Dyn dyn;
3357 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3358 if (dyn.d_tag == DT_SONAME)
3360 unsigned int tagv = dyn.d_un.d_val;
3361 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3362 if (soname == NULL)
3363 goto error_free_dyn;
3365 if (dyn.d_tag == DT_NEEDED)
3367 struct bfd_link_needed_list *n, **pn;
3368 char *fnm, *anm;
3369 unsigned int tagv = dyn.d_un.d_val;
3371 amt = sizeof (struct bfd_link_needed_list);
3372 n = bfd_alloc (abfd, amt);
3373 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3374 if (n == NULL || fnm == NULL)
3375 goto error_free_dyn;
3376 amt = strlen (fnm) + 1;
3377 anm = bfd_alloc (abfd, amt);
3378 if (anm == NULL)
3379 goto error_free_dyn;
3380 memcpy (anm, fnm, amt);
3381 n->name = anm;
3382 n->by = abfd;
3383 n->next = NULL;
3384 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
3386 *pn = n;
3388 if (dyn.d_tag == DT_RUNPATH)
3390 struct bfd_link_needed_list *n, **pn;
3391 char *fnm, *anm;
3392 unsigned int tagv = dyn.d_un.d_val;
3394 amt = sizeof (struct bfd_link_needed_list);
3395 n = bfd_alloc (abfd, amt);
3396 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3397 if (n == NULL || fnm == NULL)
3398 goto error_free_dyn;
3399 amt = strlen (fnm) + 1;
3400 anm = bfd_alloc (abfd, amt);
3401 if (anm == NULL)
3402 goto error_free_dyn;
3403 memcpy (anm, fnm, amt);
3404 n->name = anm;
3405 n->by = abfd;
3406 n->next = NULL;
3407 for (pn = & runpath;
3408 *pn != NULL;
3409 pn = &(*pn)->next)
3411 *pn = n;
3413 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
3414 if (!runpath && dyn.d_tag == DT_RPATH)
3416 struct bfd_link_needed_list *n, **pn;
3417 char *fnm, *anm;
3418 unsigned int tagv = dyn.d_un.d_val;
3420 amt = sizeof (struct bfd_link_needed_list);
3421 n = bfd_alloc (abfd, amt);
3422 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3423 if (n == NULL || fnm == NULL)
3424 goto error_free_dyn;
3425 amt = strlen (fnm) + 1;
3426 anm = bfd_alloc (abfd, amt);
3427 if (anm == NULL)
3429 error_free_dyn:
3430 free (dynbuf);
3431 goto error_return;
3433 memcpy (anm, fnm, amt);
3434 n->name = anm;
3435 n->by = abfd;
3436 n->next = NULL;
3437 for (pn = & rpath;
3438 *pn != NULL;
3439 pn = &(*pn)->next)
3441 *pn = n;
3445 free (dynbuf);
3448 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
3449 frees all more recently bfd_alloc'd blocks as well. */
3450 if (runpath)
3451 rpath = runpath;
3453 if (rpath)
3455 struct bfd_link_needed_list **pn;
3456 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
3458 *pn = rpath;
3461 /* We do not want to include any of the sections in a dynamic
3462 object in the output file. We hack by simply clobbering the
3463 list of sections in the BFD. This could be handled more
3464 cleanly by, say, a new section flag; the existing
3465 SEC_NEVER_LOAD flag is not the one we want, because that one
3466 still implies that the section takes up space in the output
3467 file. */
3468 bfd_section_list_clear (abfd);
3470 /* Find the name to use in a DT_NEEDED entry that refers to this
3471 object. If the object has a DT_SONAME entry, we use it.
3472 Otherwise, if the generic linker stuck something in
3473 elf_dt_name, we use that. Otherwise, we just use the file
3474 name. */
3475 if (soname == NULL || *soname == '\0')
3477 soname = elf_dt_name (abfd);
3478 if (soname == NULL || *soname == '\0')
3479 soname = bfd_get_filename (abfd);
3482 /* Save the SONAME because sometimes the linker emulation code
3483 will need to know it. */
3484 elf_dt_name (abfd) = soname;
3486 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
3487 if (ret < 0)
3488 goto error_return;
3490 /* If we have already included this dynamic object in the
3491 link, just ignore it. There is no reason to include a
3492 particular dynamic object more than once. */
3493 if (ret > 0)
3494 return TRUE;
3497 /* If this is a dynamic object, we always link against the .dynsym
3498 symbol table, not the .symtab symbol table. The dynamic linker
3499 will only see the .dynsym symbol table, so there is no reason to
3500 look at .symtab for a dynamic object. */
3502 if (! dynamic || elf_dynsymtab (abfd) == 0)
3503 hdr = &elf_tdata (abfd)->symtab_hdr;
3504 else
3505 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3507 symcount = hdr->sh_size / bed->s->sizeof_sym;
3509 /* The sh_info field of the symtab header tells us where the
3510 external symbols start. We don't care about the local symbols at
3511 this point. */
3512 if (elf_bad_symtab (abfd))
3514 extsymcount = symcount;
3515 extsymoff = 0;
3517 else
3519 extsymcount = symcount - hdr->sh_info;
3520 extsymoff = hdr->sh_info;
3523 sym_hash = NULL;
3524 if (extsymcount != 0)
3526 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3527 NULL, NULL, NULL);
3528 if (isymbuf == NULL)
3529 goto error_return;
3531 /* We store a pointer to the hash table entry for each external
3532 symbol. */
3533 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
3534 sym_hash = bfd_alloc (abfd, amt);
3535 if (sym_hash == NULL)
3536 goto error_free_sym;
3537 elf_sym_hashes (abfd) = sym_hash;
3540 if (dynamic)
3542 /* Read in any version definitions. */
3543 if (!_bfd_elf_slurp_version_tables (abfd,
3544 info->default_imported_symver))
3545 goto error_free_sym;
3547 /* Read in the symbol versions, but don't bother to convert them
3548 to internal format. */
3549 if (elf_dynversym (abfd) != 0)
3551 Elf_Internal_Shdr *versymhdr;
3553 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
3554 extversym = bfd_malloc (versymhdr->sh_size);
3555 if (extversym == NULL)
3556 goto error_free_sym;
3557 amt = versymhdr->sh_size;
3558 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
3559 || bfd_bread (extversym, amt, abfd) != amt)
3560 goto error_free_vers;
3564 /* If we are loading an as-needed shared lib, save the symbol table
3565 state before we start adding symbols. If the lib turns out
3566 to be unneeded, restore the state. */
3567 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
3569 unsigned int i;
3570 size_t entsize;
3572 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
3574 struct bfd_hash_entry *p;
3575 struct elf_link_hash_entry *h;
3577 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3579 h = (struct elf_link_hash_entry *) p;
3580 entsize += htab->root.table.entsize;
3581 if (h->root.type == bfd_link_hash_warning)
3582 entsize += htab->root.table.entsize;
3586 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
3587 hashsize = extsymcount * sizeof (struct elf_link_hash_entry *);
3588 old_tab = bfd_malloc (tabsize + entsize + hashsize);
3589 if (old_tab == NULL)
3590 goto error_free_vers;
3592 /* Remember the current objalloc pointer, so that all mem for
3593 symbols added can later be reclaimed. */
3594 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
3595 if (alloc_mark == NULL)
3596 goto error_free_vers;
3598 /* Make a special call to the linker "notice" function to
3599 tell it that we are about to handle an as-needed lib. */
3600 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
3601 notice_as_needed))
3602 return FALSE;
3605 /* Clone the symbol table and sym hashes. Remember some
3606 pointers into the symbol table, and dynamic symbol count. */
3607 old_hash = (char *) old_tab + tabsize;
3608 old_ent = (char *) old_hash + hashsize;
3609 memcpy (old_tab, htab->root.table.table, tabsize);
3610 memcpy (old_hash, sym_hash, hashsize);
3611 old_undefs = htab->root.undefs;
3612 old_undefs_tail = htab->root.undefs_tail;
3613 old_table = htab->root.table.table;
3614 old_size = htab->root.table.size;
3615 old_count = htab->root.table.count;
3616 old_dynsymcount = htab->dynsymcount;
3618 for (i = 0; i < htab->root.table.size; i++)
3620 struct bfd_hash_entry *p;
3621 struct elf_link_hash_entry *h;
3623 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3625 memcpy (old_ent, p, htab->root.table.entsize);
3626 old_ent = (char *) old_ent + htab->root.table.entsize;
3627 h = (struct elf_link_hash_entry *) p;
3628 if (h->root.type == bfd_link_hash_warning)
3630 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
3631 old_ent = (char *) old_ent + htab->root.table.entsize;
3637 weaks = NULL;
3638 ever = extversym != NULL ? extversym + extsymoff : NULL;
3639 for (isym = isymbuf, isymend = isymbuf + extsymcount;
3640 isym < isymend;
3641 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
3643 int bind;
3644 bfd_vma value;
3645 asection *sec, *new_sec;
3646 flagword flags;
3647 const char *name;
3648 struct elf_link_hash_entry *h;
3649 bfd_boolean definition;
3650 bfd_boolean size_change_ok;
3651 bfd_boolean type_change_ok;
3652 bfd_boolean new_weakdef;
3653 bfd_boolean override;
3654 bfd_boolean common;
3655 unsigned int old_alignment;
3656 bfd *old_bfd;
3658 override = FALSE;
3660 flags = BSF_NO_FLAGS;
3661 sec = NULL;
3662 value = isym->st_value;
3663 *sym_hash = NULL;
3664 common = bed->common_definition (isym);
3666 bind = ELF_ST_BIND (isym->st_info);
3667 if (bind == STB_LOCAL)
3669 /* This should be impossible, since ELF requires that all
3670 global symbols follow all local symbols, and that sh_info
3671 point to the first global symbol. Unfortunately, Irix 5
3672 screws this up. */
3673 continue;
3675 else if (bind == STB_GLOBAL)
3677 if (isym->st_shndx != SHN_UNDEF && !common)
3678 flags = BSF_GLOBAL;
3680 else if (bind == STB_WEAK)
3681 flags = BSF_WEAK;
3682 else
3684 /* Leave it up to the processor backend. */
3687 if (isym->st_shndx == SHN_UNDEF)
3688 sec = bfd_und_section_ptr;
3689 else if (isym->st_shndx < SHN_LORESERVE
3690 || isym->st_shndx > SHN_HIRESERVE)
3692 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
3693 if (sec == NULL)
3694 sec = bfd_abs_section_ptr;
3695 else if (sec->kept_section)
3697 /* Symbols from discarded section are undefined. We keep
3698 its visibility. */
3699 sec = bfd_und_section_ptr;
3700 isym->st_shndx = SHN_UNDEF;
3702 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
3703 value -= sec->vma;
3705 else if (isym->st_shndx == SHN_ABS)
3706 sec = bfd_abs_section_ptr;
3707 else if (isym->st_shndx == SHN_COMMON)
3709 sec = bfd_com_section_ptr;
3710 /* What ELF calls the size we call the value. What ELF
3711 calls the value we call the alignment. */
3712 value = isym->st_size;
3714 else
3716 /* Leave it up to the processor backend. */
3719 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3720 isym->st_name);
3721 if (name == NULL)
3722 goto error_free_vers;
3724 if (isym->st_shndx == SHN_COMMON
3725 && ELF_ST_TYPE (isym->st_info) == STT_TLS
3726 && !info->relocatable)
3728 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
3730 if (tcomm == NULL)
3732 tcomm = bfd_make_section_with_flags (abfd, ".tcommon",
3733 (SEC_ALLOC
3734 | SEC_IS_COMMON
3735 | SEC_LINKER_CREATED
3736 | SEC_THREAD_LOCAL));
3737 if (tcomm == NULL)
3738 goto error_free_vers;
3740 sec = tcomm;
3742 else if (bed->elf_add_symbol_hook)
3744 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
3745 &sec, &value))
3746 goto error_free_vers;
3748 /* The hook function sets the name to NULL if this symbol
3749 should be skipped for some reason. */
3750 if (name == NULL)
3751 continue;
3754 /* Sanity check that all possibilities were handled. */
3755 if (sec == NULL)
3757 bfd_set_error (bfd_error_bad_value);
3758 goto error_free_vers;
3761 if (bfd_is_und_section (sec)
3762 || bfd_is_com_section (sec))
3763 definition = FALSE;
3764 else
3765 definition = TRUE;
3767 size_change_ok = FALSE;
3768 type_change_ok = bed->type_change_ok;
3769 old_alignment = 0;
3770 old_bfd = NULL;
3771 new_sec = sec;
3773 if (is_elf_hash_table (htab))
3775 Elf_Internal_Versym iver;
3776 unsigned int vernum = 0;
3777 bfd_boolean skip;
3779 if (ever == NULL)
3781 if (info->default_imported_symver)
3782 /* Use the default symbol version created earlier. */
3783 iver.vs_vers = elf_tdata (abfd)->cverdefs;
3784 else
3785 iver.vs_vers = 0;
3787 else
3788 _bfd_elf_swap_versym_in (abfd, ever, &iver);
3790 vernum = iver.vs_vers & VERSYM_VERSION;
3792 /* If this is a hidden symbol, or if it is not version
3793 1, we append the version name to the symbol name.
3794 However, we do not modify a non-hidden absolute symbol
3795 if it is not a function, because it might be the version
3796 symbol itself. FIXME: What if it isn't? */
3797 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
3798 || (vernum > 1 && (! bfd_is_abs_section (sec)
3799 || ELF_ST_TYPE (isym->st_info) == STT_FUNC)))
3801 const char *verstr;
3802 size_t namelen, verlen, newlen;
3803 char *newname, *p;
3805 if (isym->st_shndx != SHN_UNDEF)
3807 if (vernum > elf_tdata (abfd)->cverdefs)
3808 verstr = NULL;
3809 else if (vernum > 1)
3810 verstr =
3811 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
3812 else
3813 verstr = "";
3815 if (verstr == NULL)
3817 (*_bfd_error_handler)
3818 (_("%B: %s: invalid version %u (max %d)"),
3819 abfd, name, vernum,
3820 elf_tdata (abfd)->cverdefs);
3821 bfd_set_error (bfd_error_bad_value);
3822 goto error_free_vers;
3825 else
3827 /* We cannot simply test for the number of
3828 entries in the VERNEED section since the
3829 numbers for the needed versions do not start
3830 at 0. */
3831 Elf_Internal_Verneed *t;
3833 verstr = NULL;
3834 for (t = elf_tdata (abfd)->verref;
3835 t != NULL;
3836 t = t->vn_nextref)
3838 Elf_Internal_Vernaux *a;
3840 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
3842 if (a->vna_other == vernum)
3844 verstr = a->vna_nodename;
3845 break;
3848 if (a != NULL)
3849 break;
3851 if (verstr == NULL)
3853 (*_bfd_error_handler)
3854 (_("%B: %s: invalid needed version %d"),
3855 abfd, name, vernum);
3856 bfd_set_error (bfd_error_bad_value);
3857 goto error_free_vers;
3861 namelen = strlen (name);
3862 verlen = strlen (verstr);
3863 newlen = namelen + verlen + 2;
3864 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
3865 && isym->st_shndx != SHN_UNDEF)
3866 ++newlen;
3868 newname = bfd_hash_allocate (&htab->root.table, newlen);
3869 if (newname == NULL)
3870 goto error_free_vers;
3871 memcpy (newname, name, namelen);
3872 p = newname + namelen;
3873 *p++ = ELF_VER_CHR;
3874 /* If this is a defined non-hidden version symbol,
3875 we add another @ to the name. This indicates the
3876 default version of the symbol. */
3877 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
3878 && isym->st_shndx != SHN_UNDEF)
3879 *p++ = ELF_VER_CHR;
3880 memcpy (p, verstr, verlen + 1);
3882 name = newname;
3885 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec,
3886 &value, &old_alignment,
3887 sym_hash, &skip, &override,
3888 &type_change_ok, &size_change_ok))
3889 goto error_free_vers;
3891 if (skip)
3892 continue;
3894 if (override)
3895 definition = FALSE;
3897 h = *sym_hash;
3898 while (h->root.type == bfd_link_hash_indirect
3899 || h->root.type == bfd_link_hash_warning)
3900 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3902 /* Remember the old alignment if this is a common symbol, so
3903 that we don't reduce the alignment later on. We can't
3904 check later, because _bfd_generic_link_add_one_symbol
3905 will set a default for the alignment which we want to
3906 override. We also remember the old bfd where the existing
3907 definition comes from. */
3908 switch (h->root.type)
3910 default:
3911 break;
3913 case bfd_link_hash_defined:
3914 case bfd_link_hash_defweak:
3915 old_bfd = h->root.u.def.section->owner;
3916 break;
3918 case bfd_link_hash_common:
3919 old_bfd = h->root.u.c.p->section->owner;
3920 old_alignment = h->root.u.c.p->alignment_power;
3921 break;
3924 if (elf_tdata (abfd)->verdef != NULL
3925 && ! override
3926 && vernum > 1
3927 && definition)
3928 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
3931 if (! (_bfd_generic_link_add_one_symbol
3932 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
3933 (struct bfd_link_hash_entry **) sym_hash)))
3934 goto error_free_vers;
3936 h = *sym_hash;
3937 while (h->root.type == bfd_link_hash_indirect
3938 || h->root.type == bfd_link_hash_warning)
3939 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3940 *sym_hash = h;
3942 new_weakdef = FALSE;
3943 if (dynamic
3944 && definition
3945 && (flags & BSF_WEAK) != 0
3946 && ELF_ST_TYPE (isym->st_info) != STT_FUNC
3947 && is_elf_hash_table (htab)
3948 && h->u.weakdef == NULL)
3950 /* Keep a list of all weak defined non function symbols from
3951 a dynamic object, using the weakdef field. Later in this
3952 function we will set the weakdef field to the correct
3953 value. We only put non-function symbols from dynamic
3954 objects on this list, because that happens to be the only
3955 time we need to know the normal symbol corresponding to a
3956 weak symbol, and the information is time consuming to
3957 figure out. If the weakdef field is not already NULL,
3958 then this symbol was already defined by some previous
3959 dynamic object, and we will be using that previous
3960 definition anyhow. */
3962 h->u.weakdef = weaks;
3963 weaks = h;
3964 new_weakdef = TRUE;
3967 /* Set the alignment of a common symbol. */
3968 if ((common || bfd_is_com_section (sec))
3969 && h->root.type == bfd_link_hash_common)
3971 unsigned int align;
3973 if (common)
3974 align = bfd_log2 (isym->st_value);
3975 else
3977 /* The new symbol is a common symbol in a shared object.
3978 We need to get the alignment from the section. */
3979 align = new_sec->alignment_power;
3981 if (align > old_alignment
3982 /* Permit an alignment power of zero if an alignment of one
3983 is specified and no other alignments have been specified. */
3984 || (isym->st_value == 1 && old_alignment == 0))
3985 h->root.u.c.p->alignment_power = align;
3986 else
3987 h->root.u.c.p->alignment_power = old_alignment;
3990 if (is_elf_hash_table (htab))
3992 bfd_boolean dynsym;
3994 /* Check the alignment when a common symbol is involved. This
3995 can change when a common symbol is overridden by a normal
3996 definition or a common symbol is ignored due to the old
3997 normal definition. We need to make sure the maximum
3998 alignment is maintained. */
3999 if ((old_alignment || common)
4000 && h->root.type != bfd_link_hash_common)
4002 unsigned int common_align;
4003 unsigned int normal_align;
4004 unsigned int symbol_align;
4005 bfd *normal_bfd;
4006 bfd *common_bfd;
4008 symbol_align = ffs (h->root.u.def.value) - 1;
4009 if (h->root.u.def.section->owner != NULL
4010 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
4012 normal_align = h->root.u.def.section->alignment_power;
4013 if (normal_align > symbol_align)
4014 normal_align = symbol_align;
4016 else
4017 normal_align = symbol_align;
4019 if (old_alignment)
4021 common_align = old_alignment;
4022 common_bfd = old_bfd;
4023 normal_bfd = abfd;
4025 else
4027 common_align = bfd_log2 (isym->st_value);
4028 common_bfd = abfd;
4029 normal_bfd = old_bfd;
4032 if (normal_align < common_align)
4034 /* PR binutils/2735 */
4035 if (normal_bfd == NULL)
4036 (*_bfd_error_handler)
4037 (_("Warning: alignment %u of common symbol `%s' in %B"
4038 " is greater than the alignment (%u) of its section %A"),
4039 common_bfd, h->root.u.def.section,
4040 1 << common_align, name, 1 << normal_align);
4041 else
4042 (*_bfd_error_handler)
4043 (_("Warning: alignment %u of symbol `%s' in %B"
4044 " is smaller than %u in %B"),
4045 normal_bfd, common_bfd,
4046 1 << normal_align, name, 1 << common_align);
4050 /* Remember the symbol size if it isn't undefined. */
4051 if ((isym->st_size != 0 && isym->st_shndx != SHN_UNDEF)
4052 && (definition || h->size == 0))
4054 if (h->size != 0
4055 && h->size != isym->st_size
4056 && ! size_change_ok)
4057 (*_bfd_error_handler)
4058 (_("Warning: size of symbol `%s' changed"
4059 " from %lu in %B to %lu in %B"),
4060 old_bfd, abfd,
4061 name, (unsigned long) h->size,
4062 (unsigned long) isym->st_size);
4064 h->size = isym->st_size;
4067 /* If this is a common symbol, then we always want H->SIZE
4068 to be the size of the common symbol. The code just above
4069 won't fix the size if a common symbol becomes larger. We
4070 don't warn about a size change here, because that is
4071 covered by --warn-common. */
4072 if (h->root.type == bfd_link_hash_common)
4073 h->size = h->root.u.c.size;
4075 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
4076 && (definition || h->type == STT_NOTYPE))
4078 if (h->type != STT_NOTYPE
4079 && h->type != ELF_ST_TYPE (isym->st_info)
4080 && ! type_change_ok)
4081 (*_bfd_error_handler)
4082 (_("Warning: type of symbol `%s' changed"
4083 " from %d to %d in %B"),
4084 abfd, name, h->type, ELF_ST_TYPE (isym->st_info));
4086 h->type = ELF_ST_TYPE (isym->st_info);
4089 /* If st_other has a processor-specific meaning, specific
4090 code might be needed here. We never merge the visibility
4091 attribute with the one from a dynamic object. */
4092 if (bed->elf_backend_merge_symbol_attribute)
4093 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
4094 dynamic);
4096 /* If this symbol has default visibility and the user has requested
4097 we not re-export it, then mark it as hidden. */
4098 if (definition && !dynamic
4099 && (abfd->no_export
4100 || (abfd->my_archive && abfd->my_archive->no_export))
4101 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4102 isym->st_other = (STV_HIDDEN
4103 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4105 if (ELF_ST_VISIBILITY (isym->st_other) != 0 && !dynamic)
4107 unsigned char hvis, symvis, other, nvis;
4109 /* Only merge the visibility. Leave the remainder of the
4110 st_other field to elf_backend_merge_symbol_attribute. */
4111 other = h->other & ~ELF_ST_VISIBILITY (-1);
4113 /* Combine visibilities, using the most constraining one. */
4114 hvis = ELF_ST_VISIBILITY (h->other);
4115 symvis = ELF_ST_VISIBILITY (isym->st_other);
4116 if (! hvis)
4117 nvis = symvis;
4118 else if (! symvis)
4119 nvis = hvis;
4120 else
4121 nvis = hvis < symvis ? hvis : symvis;
4123 h->other = other | nvis;
4126 /* Set a flag in the hash table entry indicating the type of
4127 reference or definition we just found. Keep a count of
4128 the number of dynamic symbols we find. A dynamic symbol
4129 is one which is referenced or defined by both a regular
4130 object and a shared object. */
4131 dynsym = FALSE;
4132 if (! dynamic)
4134 if (! definition)
4136 h->ref_regular = 1;
4137 if (bind != STB_WEAK)
4138 h->ref_regular_nonweak = 1;
4140 else
4141 h->def_regular = 1;
4142 if (! info->executable
4143 || h->def_dynamic
4144 || h->ref_dynamic)
4145 dynsym = TRUE;
4147 else
4149 if (! definition)
4150 h->ref_dynamic = 1;
4151 else
4152 h->def_dynamic = 1;
4153 if (h->def_regular
4154 || h->ref_regular
4155 || (h->u.weakdef != NULL
4156 && ! new_weakdef
4157 && h->u.weakdef->dynindx != -1))
4158 dynsym = TRUE;
4161 if (definition && (sec->flags & SEC_DEBUGGING))
4163 /* We don't want to make debug symbol dynamic. */
4164 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4165 dynsym = FALSE;
4168 /* Check to see if we need to add an indirect symbol for
4169 the default name. */
4170 if (definition || h->root.type == bfd_link_hash_common)
4171 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4172 &sec, &value, &dynsym,
4173 override))
4174 goto error_free_vers;
4176 if (definition && !dynamic)
4178 char *p = strchr (name, ELF_VER_CHR);
4179 if (p != NULL && p[1] != ELF_VER_CHR)
4181 /* Queue non-default versions so that .symver x, x@FOO
4182 aliases can be checked. */
4183 if (!nondeflt_vers)
4185 amt = ((isymend - isym + 1)
4186 * sizeof (struct elf_link_hash_entry *));
4187 nondeflt_vers = bfd_malloc (amt);
4189 nondeflt_vers[nondeflt_vers_cnt++] = h;
4193 if (dynsym && h->dynindx == -1)
4195 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4196 goto error_free_vers;
4197 if (h->u.weakdef != NULL
4198 && ! new_weakdef
4199 && h->u.weakdef->dynindx == -1)
4201 if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4202 goto error_free_vers;
4205 else if (dynsym && h->dynindx != -1)
4206 /* If the symbol already has a dynamic index, but
4207 visibility says it should not be visible, turn it into
4208 a local symbol. */
4209 switch (ELF_ST_VISIBILITY (h->other))
4211 case STV_INTERNAL:
4212 case STV_HIDDEN:
4213 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4214 dynsym = FALSE;
4215 break;
4218 if (!add_needed
4219 && definition
4220 && dynsym
4221 && h->ref_regular)
4223 int ret;
4224 const char *soname = elf_dt_name (abfd);
4226 /* A symbol from a library loaded via DT_NEEDED of some
4227 other library is referenced by a regular object.
4228 Add a DT_NEEDED entry for it. Issue an error if
4229 --no-add-needed is used. */
4230 if ((elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
4232 (*_bfd_error_handler)
4233 (_("%s: invalid DSO for symbol `%s' definition"),
4234 abfd, name);
4235 bfd_set_error (bfd_error_bad_value);
4236 goto error_free_vers;
4239 elf_dyn_lib_class (abfd) &= ~DYN_AS_NEEDED;
4241 add_needed = TRUE;
4242 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4243 if (ret < 0)
4244 goto error_free_vers;
4246 BFD_ASSERT (ret == 0);
4251 if (extversym != NULL)
4253 free (extversym);
4254 extversym = NULL;
4257 if (isymbuf != NULL)
4259 free (isymbuf);
4260 isymbuf = NULL;
4263 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4265 unsigned int i;
4267 /* Restore the symbol table. */
4268 if (bed->as_needed_cleanup)
4269 (*bed->as_needed_cleanup) (abfd, info);
4270 old_hash = (char *) old_tab + tabsize;
4271 old_ent = (char *) old_hash + hashsize;
4272 sym_hash = elf_sym_hashes (abfd);
4273 htab->root.table.table = old_table;
4274 htab->root.table.size = old_size;
4275 htab->root.table.count = old_count;
4276 memcpy (htab->root.table.table, old_tab, tabsize);
4277 memcpy (sym_hash, old_hash, hashsize);
4278 htab->root.undefs = old_undefs;
4279 htab->root.undefs_tail = old_undefs_tail;
4280 for (i = 0; i < htab->root.table.size; i++)
4282 struct bfd_hash_entry *p;
4283 struct elf_link_hash_entry *h;
4285 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4287 h = (struct elf_link_hash_entry *) p;
4288 if (h->root.type == bfd_link_hash_warning)
4289 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4290 if (h->dynindx >= old_dynsymcount)
4291 _bfd_elf_strtab_delref (htab->dynstr, h->dynstr_index);
4293 memcpy (p, old_ent, htab->root.table.entsize);
4294 old_ent = (char *) old_ent + htab->root.table.entsize;
4295 h = (struct elf_link_hash_entry *) p;
4296 if (h->root.type == bfd_link_hash_warning)
4298 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4299 old_ent = (char *) old_ent + htab->root.table.entsize;
4304 /* Make a special call to the linker "notice" function to
4305 tell it that symbols added for crefs may need to be removed. */
4306 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
4307 notice_not_needed))
4308 return FALSE;
4310 free (old_tab);
4311 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4312 alloc_mark);
4313 if (nondeflt_vers != NULL)
4314 free (nondeflt_vers);
4315 return TRUE;
4318 if (old_tab != NULL)
4320 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
4321 notice_needed))
4322 return FALSE;
4323 free (old_tab);
4324 old_tab = NULL;
4327 /* Now that all the symbols from this input file are created, handle
4328 .symver foo, foo@BAR such that any relocs against foo become foo@BAR. */
4329 if (nondeflt_vers != NULL)
4331 bfd_size_type cnt, symidx;
4333 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
4335 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
4336 char *shortname, *p;
4338 p = strchr (h->root.root.string, ELF_VER_CHR);
4339 if (p == NULL
4340 || (h->root.type != bfd_link_hash_defined
4341 && h->root.type != bfd_link_hash_defweak))
4342 continue;
4344 amt = p - h->root.root.string;
4345 shortname = bfd_malloc (amt + 1);
4346 memcpy (shortname, h->root.root.string, amt);
4347 shortname[amt] = '\0';
4349 hi = (struct elf_link_hash_entry *)
4350 bfd_link_hash_lookup (&htab->root, shortname,
4351 FALSE, FALSE, FALSE);
4352 if (hi != NULL
4353 && hi->root.type == h->root.type
4354 && hi->root.u.def.value == h->root.u.def.value
4355 && hi->root.u.def.section == h->root.u.def.section)
4357 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
4358 hi->root.type = bfd_link_hash_indirect;
4359 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
4360 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4361 sym_hash = elf_sym_hashes (abfd);
4362 if (sym_hash)
4363 for (symidx = 0; symidx < extsymcount; ++symidx)
4364 if (sym_hash[symidx] == hi)
4366 sym_hash[symidx] = h;
4367 break;
4370 free (shortname);
4372 free (nondeflt_vers);
4373 nondeflt_vers = NULL;
4376 /* Now set the weakdefs field correctly for all the weak defined
4377 symbols we found. The only way to do this is to search all the
4378 symbols. Since we only need the information for non functions in
4379 dynamic objects, that's the only time we actually put anything on
4380 the list WEAKS. We need this information so that if a regular
4381 object refers to a symbol defined weakly in a dynamic object, the
4382 real symbol in the dynamic object is also put in the dynamic
4383 symbols; we also must arrange for both symbols to point to the
4384 same memory location. We could handle the general case of symbol
4385 aliasing, but a general symbol alias can only be generated in
4386 assembler code, handling it correctly would be very time
4387 consuming, and other ELF linkers don't handle general aliasing
4388 either. */
4389 if (weaks != NULL)
4391 struct elf_link_hash_entry **hpp;
4392 struct elf_link_hash_entry **hppend;
4393 struct elf_link_hash_entry **sorted_sym_hash;
4394 struct elf_link_hash_entry *h;
4395 size_t sym_count;
4397 /* Since we have to search the whole symbol list for each weak
4398 defined symbol, search time for N weak defined symbols will be
4399 O(N^2). Binary search will cut it down to O(NlogN). */
4400 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
4401 sorted_sym_hash = bfd_malloc (amt);
4402 if (sorted_sym_hash == NULL)
4403 goto error_return;
4404 sym_hash = sorted_sym_hash;
4405 hpp = elf_sym_hashes (abfd);
4406 hppend = hpp + extsymcount;
4407 sym_count = 0;
4408 for (; hpp < hppend; hpp++)
4410 h = *hpp;
4411 if (h != NULL
4412 && h->root.type == bfd_link_hash_defined
4413 && h->type != STT_FUNC)
4415 *sym_hash = h;
4416 sym_hash++;
4417 sym_count++;
4421 qsort (sorted_sym_hash, sym_count,
4422 sizeof (struct elf_link_hash_entry *),
4423 elf_sort_symbol);
4425 while (weaks != NULL)
4427 struct elf_link_hash_entry *hlook;
4428 asection *slook;
4429 bfd_vma vlook;
4430 long ilook;
4431 size_t i, j, idx;
4433 hlook = weaks;
4434 weaks = hlook->u.weakdef;
4435 hlook->u.weakdef = NULL;
4437 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
4438 || hlook->root.type == bfd_link_hash_defweak
4439 || hlook->root.type == bfd_link_hash_common
4440 || hlook->root.type == bfd_link_hash_indirect);
4441 slook = hlook->root.u.def.section;
4442 vlook = hlook->root.u.def.value;
4444 ilook = -1;
4445 i = 0;
4446 j = sym_count;
4447 while (i < j)
4449 bfd_signed_vma vdiff;
4450 idx = (i + j) / 2;
4451 h = sorted_sym_hash [idx];
4452 vdiff = vlook - h->root.u.def.value;
4453 if (vdiff < 0)
4454 j = idx;
4455 else if (vdiff > 0)
4456 i = idx + 1;
4457 else
4459 long sdiff = slook->id - h->root.u.def.section->id;
4460 if (sdiff < 0)
4461 j = idx;
4462 else if (sdiff > 0)
4463 i = idx + 1;
4464 else
4466 ilook = idx;
4467 break;
4472 /* We didn't find a value/section match. */
4473 if (ilook == -1)
4474 continue;
4476 for (i = ilook; i < sym_count; i++)
4478 h = sorted_sym_hash [i];
4480 /* Stop if value or section doesn't match. */
4481 if (h->root.u.def.value != vlook
4482 || h->root.u.def.section != slook)
4483 break;
4484 else if (h != hlook)
4486 hlook->u.weakdef = h;
4488 /* If the weak definition is in the list of dynamic
4489 symbols, make sure the real definition is put
4490 there as well. */
4491 if (hlook->dynindx != -1 && h->dynindx == -1)
4493 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4494 goto error_return;
4497 /* If the real definition is in the list of dynamic
4498 symbols, make sure the weak definition is put
4499 there as well. If we don't do this, then the
4500 dynamic loader might not merge the entries for the
4501 real definition and the weak definition. */
4502 if (h->dynindx != -1 && hlook->dynindx == -1)
4504 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4505 goto error_return;
4507 break;
4512 free (sorted_sym_hash);
4515 if (bed->check_directives)
4516 (*bed->check_directives) (abfd, info);
4518 /* If this object is the same format as the output object, and it is
4519 not a shared library, then let the backend look through the
4520 relocs.
4522 This is required to build global offset table entries and to
4523 arrange for dynamic relocs. It is not required for the
4524 particular common case of linking non PIC code, even when linking
4525 against shared libraries, but unfortunately there is no way of
4526 knowing whether an object file has been compiled PIC or not.
4527 Looking through the relocs is not particularly time consuming.
4528 The problem is that we must either (1) keep the relocs in memory,
4529 which causes the linker to require additional runtime memory or
4530 (2) read the relocs twice from the input file, which wastes time.
4531 This would be a good case for using mmap.
4533 I have no idea how to handle linking PIC code into a file of a
4534 different format. It probably can't be done. */
4535 if (! dynamic
4536 && is_elf_hash_table (htab)
4537 && htab->root.creator == abfd->xvec
4538 && bed->check_relocs != NULL)
4540 asection *o;
4542 for (o = abfd->sections; o != NULL; o = o->next)
4544 Elf_Internal_Rela *internal_relocs;
4545 bfd_boolean ok;
4547 if ((o->flags & SEC_RELOC) == 0
4548 || o->reloc_count == 0
4549 || ((info->strip == strip_all || info->strip == strip_debugger)
4550 && (o->flags & SEC_DEBUGGING) != 0)
4551 || bfd_is_abs_section (o->output_section))
4552 continue;
4554 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
4555 info->keep_memory);
4556 if (internal_relocs == NULL)
4557 goto error_return;
4559 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
4561 if (elf_section_data (o)->relocs != internal_relocs)
4562 free (internal_relocs);
4564 if (! ok)
4565 goto error_return;
4569 /* If this is a non-traditional link, try to optimize the handling
4570 of the .stab/.stabstr sections. */
4571 if (! dynamic
4572 && ! info->traditional_format
4573 && is_elf_hash_table (htab)
4574 && (info->strip != strip_all && info->strip != strip_debugger))
4576 asection *stabstr;
4578 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
4579 if (stabstr != NULL)
4581 bfd_size_type string_offset = 0;
4582 asection *stab;
4584 for (stab = abfd->sections; stab; stab = stab->next)
4585 if (CONST_STRNEQ (stab->name, ".stab")
4586 && (!stab->name[5] ||
4587 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
4588 && (stab->flags & SEC_MERGE) == 0
4589 && !bfd_is_abs_section (stab->output_section))
4591 struct bfd_elf_section_data *secdata;
4593 secdata = elf_section_data (stab);
4594 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
4595 stabstr, &secdata->sec_info,
4596 &string_offset))
4597 goto error_return;
4598 if (secdata->sec_info)
4599 stab->sec_info_type = ELF_INFO_TYPE_STABS;
4604 if (is_elf_hash_table (htab) && add_needed)
4606 /* Add this bfd to the loaded list. */
4607 struct elf_link_loaded_list *n;
4609 n = bfd_alloc (abfd, sizeof (struct elf_link_loaded_list));
4610 if (n == NULL)
4611 goto error_return;
4612 n->abfd = abfd;
4613 n->next = htab->loaded;
4614 htab->loaded = n;
4617 return TRUE;
4619 error_free_vers:
4620 if (old_tab != NULL)
4621 free (old_tab);
4622 if (nondeflt_vers != NULL)
4623 free (nondeflt_vers);
4624 if (extversym != NULL)
4625 free (extversym);
4626 error_free_sym:
4627 if (isymbuf != NULL)
4628 free (isymbuf);
4629 error_return:
4630 return FALSE;
4633 /* Return the linker hash table entry of a symbol that might be
4634 satisfied by an archive symbol. Return -1 on error. */
4636 struct elf_link_hash_entry *
4637 _bfd_elf_archive_symbol_lookup (bfd *abfd,
4638 struct bfd_link_info *info,
4639 const char *name)
4641 struct elf_link_hash_entry *h;
4642 char *p, *copy;
4643 size_t len, first;
4645 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
4646 if (h != NULL)
4647 return h;
4649 /* If this is a default version (the name contains @@), look up the
4650 symbol again with only one `@' as well as without the version.
4651 The effect is that references to the symbol with and without the
4652 version will be matched by the default symbol in the archive. */
4654 p = strchr (name, ELF_VER_CHR);
4655 if (p == NULL || p[1] != ELF_VER_CHR)
4656 return h;
4658 /* First check with only one `@'. */
4659 len = strlen (name);
4660 copy = bfd_alloc (abfd, len);
4661 if (copy == NULL)
4662 return (struct elf_link_hash_entry *) 0 - 1;
4664 first = p - name + 1;
4665 memcpy (copy, name, first);
4666 memcpy (copy + first, name + first + 1, len - first);
4668 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, FALSE);
4669 if (h == NULL)
4671 /* We also need to check references to the symbol without the
4672 version. */
4673 copy[first - 1] = '\0';
4674 h = elf_link_hash_lookup (elf_hash_table (info), copy,
4675 FALSE, FALSE, FALSE);
4678 bfd_release (abfd, copy);
4679 return h;
4682 /* Add symbols from an ELF archive file to the linker hash table. We
4683 don't use _bfd_generic_link_add_archive_symbols because of a
4684 problem which arises on UnixWare. The UnixWare libc.so is an
4685 archive which includes an entry libc.so.1 which defines a bunch of
4686 symbols. The libc.so archive also includes a number of other
4687 object files, which also define symbols, some of which are the same
4688 as those defined in libc.so.1. Correct linking requires that we
4689 consider each object file in turn, and include it if it defines any
4690 symbols we need. _bfd_generic_link_add_archive_symbols does not do
4691 this; it looks through the list of undefined symbols, and includes
4692 any object file which defines them. When this algorithm is used on
4693 UnixWare, it winds up pulling in libc.so.1 early and defining a
4694 bunch of symbols. This means that some of the other objects in the
4695 archive are not included in the link, which is incorrect since they
4696 precede libc.so.1 in the archive.
4698 Fortunately, ELF archive handling is simpler than that done by
4699 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
4700 oddities. In ELF, if we find a symbol in the archive map, and the
4701 symbol is currently undefined, we know that we must pull in that
4702 object file.
4704 Unfortunately, we do have to make multiple passes over the symbol
4705 table until nothing further is resolved. */
4707 static bfd_boolean
4708 elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
4710 symindex c;
4711 bfd_boolean *defined = NULL;
4712 bfd_boolean *included = NULL;
4713 carsym *symdefs;
4714 bfd_boolean loop;
4715 bfd_size_type amt;
4716 const struct elf_backend_data *bed;
4717 struct elf_link_hash_entry * (*archive_symbol_lookup)
4718 (bfd *, struct bfd_link_info *, const char *);
4720 if (! bfd_has_map (abfd))
4722 /* An empty archive is a special case. */
4723 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
4724 return TRUE;
4725 bfd_set_error (bfd_error_no_armap);
4726 return FALSE;
4729 /* Keep track of all symbols we know to be already defined, and all
4730 files we know to be already included. This is to speed up the
4731 second and subsequent passes. */
4732 c = bfd_ardata (abfd)->symdef_count;
4733 if (c == 0)
4734 return TRUE;
4735 amt = c;
4736 amt *= sizeof (bfd_boolean);
4737 defined = bfd_zmalloc (amt);
4738 included = bfd_zmalloc (amt);
4739 if (defined == NULL || included == NULL)
4740 goto error_return;
4742 symdefs = bfd_ardata (abfd)->symdefs;
4743 bed = get_elf_backend_data (abfd);
4744 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
4748 file_ptr last;
4749 symindex i;
4750 carsym *symdef;
4751 carsym *symdefend;
4753 loop = FALSE;
4754 last = -1;
4756 symdef = symdefs;
4757 symdefend = symdef + c;
4758 for (i = 0; symdef < symdefend; symdef++, i++)
4760 struct elf_link_hash_entry *h;
4761 bfd *element;
4762 struct bfd_link_hash_entry *undefs_tail;
4763 symindex mark;
4765 if (defined[i] || included[i])
4766 continue;
4767 if (symdef->file_offset == last)
4769 included[i] = TRUE;
4770 continue;
4773 h = archive_symbol_lookup (abfd, info, symdef->name);
4774 if (h == (struct elf_link_hash_entry *) 0 - 1)
4775 goto error_return;
4777 if (h == NULL)
4778 continue;
4780 if (h->root.type == bfd_link_hash_common)
4782 /* We currently have a common symbol. The archive map contains
4783 a reference to this symbol, so we may want to include it. We
4784 only want to include it however, if this archive element
4785 contains a definition of the symbol, not just another common
4786 declaration of it.
4788 Unfortunately some archivers (including GNU ar) will put
4789 declarations of common symbols into their archive maps, as
4790 well as real definitions, so we cannot just go by the archive
4791 map alone. Instead we must read in the element's symbol
4792 table and check that to see what kind of symbol definition
4793 this is. */
4794 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
4795 continue;
4797 else if (h->root.type != bfd_link_hash_undefined)
4799 if (h->root.type != bfd_link_hash_undefweak)
4800 defined[i] = TRUE;
4801 continue;
4804 /* We need to include this archive member. */
4805 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
4806 if (element == NULL)
4807 goto error_return;
4809 if (! bfd_check_format (element, bfd_object))
4810 goto error_return;
4812 /* Doublecheck that we have not included this object
4813 already--it should be impossible, but there may be
4814 something wrong with the archive. */
4815 if (element->archive_pass != 0)
4817 bfd_set_error (bfd_error_bad_value);
4818 goto error_return;
4820 element->archive_pass = 1;
4822 undefs_tail = info->hash->undefs_tail;
4824 if (! (*info->callbacks->add_archive_element) (info, element,
4825 symdef->name))
4826 goto error_return;
4827 if (! bfd_link_add_symbols (element, info))
4828 goto error_return;
4830 /* If there are any new undefined symbols, we need to make
4831 another pass through the archive in order to see whether
4832 they can be defined. FIXME: This isn't perfect, because
4833 common symbols wind up on undefs_tail and because an
4834 undefined symbol which is defined later on in this pass
4835 does not require another pass. This isn't a bug, but it
4836 does make the code less efficient than it could be. */
4837 if (undefs_tail != info->hash->undefs_tail)
4838 loop = TRUE;
4840 /* Look backward to mark all symbols from this object file
4841 which we have already seen in this pass. */
4842 mark = i;
4845 included[mark] = TRUE;
4846 if (mark == 0)
4847 break;
4848 --mark;
4850 while (symdefs[mark].file_offset == symdef->file_offset);
4852 /* We mark subsequent symbols from this object file as we go
4853 on through the loop. */
4854 last = symdef->file_offset;
4857 while (loop);
4859 free (defined);
4860 free (included);
4862 return TRUE;
4864 error_return:
4865 if (defined != NULL)
4866 free (defined);
4867 if (included != NULL)
4868 free (included);
4869 return FALSE;
4872 /* Given an ELF BFD, add symbols to the global hash table as
4873 appropriate. */
4875 bfd_boolean
4876 bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
4878 switch (bfd_get_format (abfd))
4880 case bfd_object:
4881 return elf_link_add_object_symbols (abfd, info);
4882 case bfd_archive:
4883 return elf_link_add_archive_symbols (abfd, info);
4884 default:
4885 bfd_set_error (bfd_error_wrong_format);
4886 return FALSE;
4890 /* This function will be called though elf_link_hash_traverse to store
4891 all hash value of the exported symbols in an array. */
4893 static bfd_boolean
4894 elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
4896 unsigned long **valuep = data;
4897 const char *name;
4898 char *p;
4899 unsigned long ha;
4900 char *alc = NULL;
4902 if (h->root.type == bfd_link_hash_warning)
4903 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4905 /* Ignore indirect symbols. These are added by the versioning code. */
4906 if (h->dynindx == -1)
4907 return TRUE;
4909 name = h->root.root.string;
4910 p = strchr (name, ELF_VER_CHR);
4911 if (p != NULL)
4913 alc = bfd_malloc (p - name + 1);
4914 memcpy (alc, name, p - name);
4915 alc[p - name] = '\0';
4916 name = alc;
4919 /* Compute the hash value. */
4920 ha = bfd_elf_hash (name);
4922 /* Store the found hash value in the array given as the argument. */
4923 *(*valuep)++ = ha;
4925 /* And store it in the struct so that we can put it in the hash table
4926 later. */
4927 h->u.elf_hash_value = ha;
4929 if (alc != NULL)
4930 free (alc);
4932 return TRUE;
4935 struct collect_gnu_hash_codes
4937 bfd *output_bfd;
4938 const struct elf_backend_data *bed;
4939 unsigned long int nsyms;
4940 unsigned long int maskbits;
4941 unsigned long int *hashcodes;
4942 unsigned long int *hashval;
4943 unsigned long int *indx;
4944 unsigned long int *counts;
4945 bfd_vma *bitmask;
4946 bfd_byte *contents;
4947 long int min_dynindx;
4948 unsigned long int bucketcount;
4949 unsigned long int symindx;
4950 long int local_indx;
4951 long int shift1, shift2;
4952 unsigned long int mask;
4955 /* This function will be called though elf_link_hash_traverse to store
4956 all hash value of the exported symbols in an array. */
4958 static bfd_boolean
4959 elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
4961 struct collect_gnu_hash_codes *s = data;
4962 const char *name;
4963 char *p;
4964 unsigned long ha;
4965 char *alc = NULL;
4967 if (h->root.type == bfd_link_hash_warning)
4968 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4970 /* Ignore indirect symbols. These are added by the versioning code. */
4971 if (h->dynindx == -1)
4972 return TRUE;
4974 /* Ignore also local symbols and undefined symbols. */
4975 if (! (*s->bed->elf_hash_symbol) (h))
4976 return TRUE;
4978 name = h->root.root.string;
4979 p = strchr (name, ELF_VER_CHR);
4980 if (p != NULL)
4982 alc = bfd_malloc (p - name + 1);
4983 memcpy (alc, name, p - name);
4984 alc[p - name] = '\0';
4985 name = alc;
4988 /* Compute the hash value. */
4989 ha = bfd_elf_gnu_hash (name);
4991 /* Store the found hash value in the array for compute_bucket_count,
4992 and also for .dynsym reordering purposes. */
4993 s->hashcodes[s->nsyms] = ha;
4994 s->hashval[h->dynindx] = ha;
4995 ++s->nsyms;
4996 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
4997 s->min_dynindx = h->dynindx;
4999 if (alc != NULL)
5000 free (alc);
5002 return TRUE;
5005 /* This function will be called though elf_link_hash_traverse to do
5006 final dynaminc symbol renumbering. */
5008 static bfd_boolean
5009 elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5011 struct collect_gnu_hash_codes *s = data;
5012 unsigned long int bucket;
5013 unsigned long int val;
5015 if (h->root.type == bfd_link_hash_warning)
5016 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5018 /* Ignore indirect symbols. */
5019 if (h->dynindx == -1)
5020 return TRUE;
5022 /* Ignore also local symbols and undefined symbols. */
5023 if (! (*s->bed->elf_hash_symbol) (h))
5025 if (h->dynindx >= s->min_dynindx)
5026 h->dynindx = s->local_indx++;
5027 return TRUE;
5030 bucket = s->hashval[h->dynindx] % s->bucketcount;
5031 val = (s->hashval[h->dynindx] >> s->shift1)
5032 & ((s->maskbits >> s->shift1) - 1);
5033 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5034 s->bitmask[val]
5035 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5036 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5037 if (s->counts[bucket] == 1)
5038 /* Last element terminates the chain. */
5039 val |= 1;
5040 bfd_put_32 (s->output_bfd, val,
5041 s->contents + (s->indx[bucket] - s->symindx) * 4);
5042 --s->counts[bucket];
5043 h->dynindx = s->indx[bucket]++;
5044 return TRUE;
5047 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5049 bfd_boolean
5050 _bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5052 return !(h->forced_local
5053 || h->root.type == bfd_link_hash_undefined
5054 || h->root.type == bfd_link_hash_undefweak
5055 || ((h->root.type == bfd_link_hash_defined
5056 || h->root.type == bfd_link_hash_defweak)
5057 && h->root.u.def.section->output_section == NULL));
5060 /* Array used to determine the number of hash table buckets to use
5061 based on the number of symbols there are. If there are fewer than
5062 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5063 fewer than 37 we use 17 buckets, and so forth. We never use more
5064 than 32771 buckets. */
5066 static const size_t elf_buckets[] =
5068 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5069 16411, 32771, 0
5072 /* Compute bucket count for hashing table. We do not use a static set
5073 of possible tables sizes anymore. Instead we determine for all
5074 possible reasonable sizes of the table the outcome (i.e., the
5075 number of collisions etc) and choose the best solution. The
5076 weighting functions are not too simple to allow the table to grow
5077 without bounds. Instead one of the weighting factors is the size.
5078 Therefore the result is always a good payoff between few collisions
5079 (= short chain lengths) and table size. */
5080 static size_t
5081 compute_bucket_count (struct bfd_link_info *info, unsigned long int *hashcodes,
5082 unsigned long int nsyms, int gnu_hash)
5084 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5085 size_t best_size = 0;
5086 unsigned long int i;
5087 bfd_size_type amt;
5089 /* We have a problem here. The following code to optimize the table
5090 size requires an integer type with more the 32 bits. If
5091 BFD_HOST_U_64_BIT is set we know about such a type. */
5092 #ifdef BFD_HOST_U_64_BIT
5093 if (info->optimize)
5095 size_t minsize;
5096 size_t maxsize;
5097 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5098 bfd *dynobj = elf_hash_table (info)->dynobj;
5099 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
5100 unsigned long int *counts;
5102 /* Possible optimization parameters: if we have NSYMS symbols we say
5103 that the hashing table must at least have NSYMS/4 and at most
5104 2*NSYMS buckets. */
5105 minsize = nsyms / 4;
5106 if (minsize == 0)
5107 minsize = 1;
5108 best_size = maxsize = nsyms * 2;
5109 if (gnu_hash)
5111 if (minsize < 2)
5112 minsize = 2;
5113 if ((best_size & 31) == 0)
5114 ++best_size;
5117 /* Create array where we count the collisions in. We must use bfd_malloc
5118 since the size could be large. */
5119 amt = maxsize;
5120 amt *= sizeof (unsigned long int);
5121 counts = bfd_malloc (amt);
5122 if (counts == NULL)
5123 return 0;
5125 /* Compute the "optimal" size for the hash table. The criteria is a
5126 minimal chain length. The minor criteria is (of course) the size
5127 of the table. */
5128 for (i = minsize; i < maxsize; ++i)
5130 /* Walk through the array of hashcodes and count the collisions. */
5131 BFD_HOST_U_64_BIT max;
5132 unsigned long int j;
5133 unsigned long int fact;
5135 if (gnu_hash && (i & 31) == 0)
5136 continue;
5138 memset (counts, '\0', i * sizeof (unsigned long int));
5140 /* Determine how often each hash bucket is used. */
5141 for (j = 0; j < nsyms; ++j)
5142 ++counts[hashcodes[j] % i];
5144 /* For the weight function we need some information about the
5145 pagesize on the target. This is information need not be 100%
5146 accurate. Since this information is not available (so far) we
5147 define it here to a reasonable default value. If it is crucial
5148 to have a better value some day simply define this value. */
5149 # ifndef BFD_TARGET_PAGESIZE
5150 # define BFD_TARGET_PAGESIZE (4096)
5151 # endif
5153 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5154 and the chains. */
5155 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5157 # if 1
5158 /* Variant 1: optimize for short chains. We add the squares
5159 of all the chain lengths (which favors many small chain
5160 over a few long chains). */
5161 for (j = 0; j < i; ++j)
5162 max += counts[j] * counts[j];
5164 /* This adds penalties for the overall size of the table. */
5165 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5166 max *= fact * fact;
5167 # else
5168 /* Variant 2: Optimize a lot more for small table. Here we
5169 also add squares of the size but we also add penalties for
5170 empty slots (the +1 term). */
5171 for (j = 0; j < i; ++j)
5172 max += (1 + counts[j]) * (1 + counts[j]);
5174 /* The overall size of the table is considered, but not as
5175 strong as in variant 1, where it is squared. */
5176 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5177 max *= fact;
5178 # endif
5180 /* Compare with current best results. */
5181 if (max < best_chlen)
5183 best_chlen = max;
5184 best_size = i;
5188 free (counts);
5190 else
5191 #endif /* defined (BFD_HOST_U_64_BIT) */
5193 /* This is the fallback solution if no 64bit type is available or if we
5194 are not supposed to spend much time on optimizations. We select the
5195 bucket count using a fixed set of numbers. */
5196 for (i = 0; elf_buckets[i] != 0; i++)
5198 best_size = elf_buckets[i];
5199 if (nsyms < elf_buckets[i + 1])
5200 break;
5202 if (gnu_hash && best_size < 2)
5203 best_size = 2;
5206 return best_size;
5209 /* Set up the sizes and contents of the ELF dynamic sections. This is
5210 called by the ELF linker emulation before_allocation routine. We
5211 must set the sizes of the sections before the linker sets the
5212 addresses of the various sections. */
5214 bfd_boolean
5215 bfd_elf_size_dynamic_sections (bfd *output_bfd,
5216 const char *soname,
5217 const char *rpath,
5218 const char *filter_shlib,
5219 const char * const *auxiliary_filters,
5220 struct bfd_link_info *info,
5221 asection **sinterpptr,
5222 struct bfd_elf_version_tree *verdefs)
5224 bfd_size_type soname_indx;
5225 bfd *dynobj;
5226 const struct elf_backend_data *bed;
5227 struct elf_assign_sym_version_info asvinfo;
5229 *sinterpptr = NULL;
5231 soname_indx = (bfd_size_type) -1;
5233 if (!is_elf_hash_table (info->hash))
5234 return TRUE;
5236 elf_tdata (output_bfd)->relro = info->relro;
5237 if (info->execstack)
5238 elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X;
5239 else if (info->noexecstack)
5240 elf_tdata (output_bfd)->stack_flags = PF_R | PF_W;
5241 else
5243 bfd *inputobj;
5244 asection *notesec = NULL;
5245 int exec = 0;
5247 for (inputobj = info->input_bfds;
5248 inputobj;
5249 inputobj = inputobj->link_next)
5251 asection *s;
5253 if (inputobj->flags & (DYNAMIC | BFD_LINKER_CREATED))
5254 continue;
5255 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
5256 if (s)
5258 if (s->flags & SEC_CODE)
5259 exec = PF_X;
5260 notesec = s;
5262 else
5263 exec = PF_X;
5265 if (notesec)
5267 elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | exec;
5268 if (exec && info->relocatable
5269 && notesec->output_section != bfd_abs_section_ptr)
5270 notesec->output_section->flags |= SEC_CODE;
5274 /* Any syms created from now on start with -1 in
5275 got.refcount/offset and plt.refcount/offset. */
5276 elf_hash_table (info)->init_got_refcount
5277 = elf_hash_table (info)->init_got_offset;
5278 elf_hash_table (info)->init_plt_refcount
5279 = elf_hash_table (info)->init_plt_offset;
5281 /* The backend may have to create some sections regardless of whether
5282 we're dynamic or not. */
5283 bed = get_elf_backend_data (output_bfd);
5284 if (bed->elf_backend_always_size_sections
5285 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
5286 return FALSE;
5288 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
5289 return FALSE;
5291 dynobj = elf_hash_table (info)->dynobj;
5293 /* If there were no dynamic objects in the link, there is nothing to
5294 do here. */
5295 if (dynobj == NULL)
5296 return TRUE;
5298 if (elf_hash_table (info)->dynamic_sections_created)
5300 struct elf_info_failed eif;
5301 struct elf_link_hash_entry *h;
5302 asection *dynstr;
5303 struct bfd_elf_version_tree *t;
5304 struct bfd_elf_version_expr *d;
5305 asection *s;
5306 bfd_boolean all_defined;
5308 *sinterpptr = bfd_get_section_by_name (dynobj, ".interp");
5309 BFD_ASSERT (*sinterpptr != NULL || !info->executable);
5311 if (soname != NULL)
5313 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5314 soname, TRUE);
5315 if (soname_indx == (bfd_size_type) -1
5316 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
5317 return FALSE;
5320 if (info->symbolic)
5322 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
5323 return FALSE;
5324 info->flags |= DF_SYMBOLIC;
5327 if (rpath != NULL)
5329 bfd_size_type indx;
5331 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
5332 TRUE);
5333 if (indx == (bfd_size_type) -1
5334 || !_bfd_elf_add_dynamic_entry (info, DT_RPATH, indx))
5335 return FALSE;
5337 if (info->new_dtags)
5339 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr, indx);
5340 if (!_bfd_elf_add_dynamic_entry (info, DT_RUNPATH, indx))
5341 return FALSE;
5345 if (filter_shlib != NULL)
5347 bfd_size_type indx;
5349 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5350 filter_shlib, TRUE);
5351 if (indx == (bfd_size_type) -1
5352 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
5353 return FALSE;
5356 if (auxiliary_filters != NULL)
5358 const char * const *p;
5360 for (p = auxiliary_filters; *p != NULL; p++)
5362 bfd_size_type indx;
5364 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5365 *p, TRUE);
5366 if (indx == (bfd_size_type) -1
5367 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
5368 return FALSE;
5372 eif.info = info;
5373 eif.verdefs = verdefs;
5374 eif.failed = FALSE;
5376 /* If we are supposed to export all symbols into the dynamic symbol
5377 table (this is not the normal case), then do so. */
5378 if (info->export_dynamic
5379 || (info->executable && info->dynamic))
5381 elf_link_hash_traverse (elf_hash_table (info),
5382 _bfd_elf_export_symbol,
5383 &eif);
5384 if (eif.failed)
5385 return FALSE;
5388 /* Make all global versions with definition. */
5389 for (t = verdefs; t != NULL; t = t->next)
5390 for (d = t->globals.list; d != NULL; d = d->next)
5391 if (!d->symver && d->symbol)
5393 const char *verstr, *name;
5394 size_t namelen, verlen, newlen;
5395 char *newname, *p;
5396 struct elf_link_hash_entry *newh;
5398 name = d->symbol;
5399 namelen = strlen (name);
5400 verstr = t->name;
5401 verlen = strlen (verstr);
5402 newlen = namelen + verlen + 3;
5404 newname = bfd_malloc (newlen);
5405 if (newname == NULL)
5406 return FALSE;
5407 memcpy (newname, name, namelen);
5409 /* Check the hidden versioned definition. */
5410 p = newname + namelen;
5411 *p++ = ELF_VER_CHR;
5412 memcpy (p, verstr, verlen + 1);
5413 newh = elf_link_hash_lookup (elf_hash_table (info),
5414 newname, FALSE, FALSE,
5415 FALSE);
5416 if (newh == NULL
5417 || (newh->root.type != bfd_link_hash_defined
5418 && newh->root.type != bfd_link_hash_defweak))
5420 /* Check the default versioned definition. */
5421 *p++ = ELF_VER_CHR;
5422 memcpy (p, verstr, verlen + 1);
5423 newh = elf_link_hash_lookup (elf_hash_table (info),
5424 newname, FALSE, FALSE,
5425 FALSE);
5427 free (newname);
5429 /* Mark this version if there is a definition and it is
5430 not defined in a shared object. */
5431 if (newh != NULL
5432 && !newh->def_dynamic
5433 && (newh->root.type == bfd_link_hash_defined
5434 || newh->root.type == bfd_link_hash_defweak))
5435 d->symver = 1;
5438 /* Attach all the symbols to their version information. */
5439 asvinfo.output_bfd = output_bfd;
5440 asvinfo.info = info;
5441 asvinfo.verdefs = verdefs;
5442 asvinfo.failed = FALSE;
5444 elf_link_hash_traverse (elf_hash_table (info),
5445 _bfd_elf_link_assign_sym_version,
5446 &asvinfo);
5447 if (asvinfo.failed)
5448 return FALSE;
5450 if (!info->allow_undefined_version)
5452 /* Check if all global versions have a definition. */
5453 all_defined = TRUE;
5454 for (t = verdefs; t != NULL; t = t->next)
5455 for (d = t->globals.list; d != NULL; d = d->next)
5456 if (!d->symver && !d->script)
5458 (*_bfd_error_handler)
5459 (_("%s: undefined version: %s"),
5460 d->pattern, t->name);
5461 all_defined = FALSE;
5464 if (!all_defined)
5466 bfd_set_error (bfd_error_bad_value);
5467 return FALSE;
5471 /* Find all symbols which were defined in a dynamic object and make
5472 the backend pick a reasonable value for them. */
5473 elf_link_hash_traverse (elf_hash_table (info),
5474 _bfd_elf_adjust_dynamic_symbol,
5475 &eif);
5476 if (eif.failed)
5477 return FALSE;
5479 /* Add some entries to the .dynamic section. We fill in some of the
5480 values later, in bfd_elf_final_link, but we must add the entries
5481 now so that we know the final size of the .dynamic section. */
5483 /* If there are initialization and/or finalization functions to
5484 call then add the corresponding DT_INIT/DT_FINI entries. */
5485 h = (info->init_function
5486 ? elf_link_hash_lookup (elf_hash_table (info),
5487 info->init_function, FALSE,
5488 FALSE, FALSE)
5489 : NULL);
5490 if (h != NULL
5491 && (h->ref_regular
5492 || h->def_regular))
5494 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
5495 return FALSE;
5497 h = (info->fini_function
5498 ? elf_link_hash_lookup (elf_hash_table (info),
5499 info->fini_function, FALSE,
5500 FALSE, FALSE)
5501 : NULL);
5502 if (h != NULL
5503 && (h->ref_regular
5504 || h->def_regular))
5506 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
5507 return FALSE;
5510 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
5511 if (s != NULL && s->linker_has_input)
5513 /* DT_PREINIT_ARRAY is not allowed in shared library. */
5514 if (! info->executable)
5516 bfd *sub;
5517 asection *o;
5519 for (sub = info->input_bfds; sub != NULL;
5520 sub = sub->link_next)
5521 for (o = sub->sections; o != NULL; o = o->next)
5522 if (elf_section_data (o)->this_hdr.sh_type
5523 == SHT_PREINIT_ARRAY)
5525 (*_bfd_error_handler)
5526 (_("%B: .preinit_array section is not allowed in DSO"),
5527 sub);
5528 break;
5531 bfd_set_error (bfd_error_nonrepresentable_section);
5532 return FALSE;
5535 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
5536 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
5537 return FALSE;
5539 s = bfd_get_section_by_name (output_bfd, ".init_array");
5540 if (s != NULL && s->linker_has_input)
5542 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
5543 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
5544 return FALSE;
5546 s = bfd_get_section_by_name (output_bfd, ".fini_array");
5547 if (s != NULL && s->linker_has_input)
5549 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
5550 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
5551 return FALSE;
5554 dynstr = bfd_get_section_by_name (dynobj, ".dynstr");
5555 /* If .dynstr is excluded from the link, we don't want any of
5556 these tags. Strictly, we should be checking each section
5557 individually; This quick check covers for the case where
5558 someone does a /DISCARD/ : { *(*) }. */
5559 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
5561 bfd_size_type strsize;
5563 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5564 if ((info->emit_hash
5565 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
5566 || (info->emit_gnu_hash
5567 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
5568 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
5569 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
5570 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
5571 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
5572 bed->s->sizeof_sym))
5573 return FALSE;
5577 /* The backend must work out the sizes of all the other dynamic
5578 sections. */
5579 if (bed->elf_backend_size_dynamic_sections
5580 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
5581 return FALSE;
5583 if (elf_hash_table (info)->dynamic_sections_created)
5585 unsigned long section_sym_count;
5586 asection *s;
5588 /* Set up the version definition section. */
5589 s = bfd_get_section_by_name (dynobj, ".gnu.version_d");
5590 BFD_ASSERT (s != NULL);
5592 /* We may have created additional version definitions if we are
5593 just linking a regular application. */
5594 verdefs = asvinfo.verdefs;
5596 /* Skip anonymous version tag. */
5597 if (verdefs != NULL && verdefs->vernum == 0)
5598 verdefs = verdefs->next;
5600 if (verdefs == NULL && !info->create_default_symver)
5601 s->flags |= SEC_EXCLUDE;
5602 else
5604 unsigned int cdefs;
5605 bfd_size_type size;
5606 struct bfd_elf_version_tree *t;
5607 bfd_byte *p;
5608 Elf_Internal_Verdef def;
5609 Elf_Internal_Verdaux defaux;
5610 struct bfd_link_hash_entry *bh;
5611 struct elf_link_hash_entry *h;
5612 const char *name;
5614 cdefs = 0;
5615 size = 0;
5617 /* Make space for the base version. */
5618 size += sizeof (Elf_External_Verdef);
5619 size += sizeof (Elf_External_Verdaux);
5620 ++cdefs;
5622 /* Make space for the default version. */
5623 if (info->create_default_symver)
5625 size += sizeof (Elf_External_Verdef);
5626 ++cdefs;
5629 for (t = verdefs; t != NULL; t = t->next)
5631 struct bfd_elf_version_deps *n;
5633 size += sizeof (Elf_External_Verdef);
5634 size += sizeof (Elf_External_Verdaux);
5635 ++cdefs;
5637 for (n = t->deps; n != NULL; n = n->next)
5638 size += sizeof (Elf_External_Verdaux);
5641 s->size = size;
5642 s->contents = bfd_alloc (output_bfd, s->size);
5643 if (s->contents == NULL && s->size != 0)
5644 return FALSE;
5646 /* Fill in the version definition section. */
5648 p = s->contents;
5650 def.vd_version = VER_DEF_CURRENT;
5651 def.vd_flags = VER_FLG_BASE;
5652 def.vd_ndx = 1;
5653 def.vd_cnt = 1;
5654 if (info->create_default_symver)
5656 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
5657 def.vd_next = sizeof (Elf_External_Verdef);
5659 else
5661 def.vd_aux = sizeof (Elf_External_Verdef);
5662 def.vd_next = (sizeof (Elf_External_Verdef)
5663 + sizeof (Elf_External_Verdaux));
5666 if (soname_indx != (bfd_size_type) -1)
5668 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
5669 soname_indx);
5670 def.vd_hash = bfd_elf_hash (soname);
5671 defaux.vda_name = soname_indx;
5672 name = soname;
5674 else
5676 bfd_size_type indx;
5678 name = lbasename (output_bfd->filename);
5679 def.vd_hash = bfd_elf_hash (name);
5680 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5681 name, FALSE);
5682 if (indx == (bfd_size_type) -1)
5683 return FALSE;
5684 defaux.vda_name = indx;
5686 defaux.vda_next = 0;
5688 _bfd_elf_swap_verdef_out (output_bfd, &def,
5689 (Elf_External_Verdef *) p);
5690 p += sizeof (Elf_External_Verdef);
5691 if (info->create_default_symver)
5693 /* Add a symbol representing this version. */
5694 bh = NULL;
5695 if (! (_bfd_generic_link_add_one_symbol
5696 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
5697 0, NULL, FALSE,
5698 get_elf_backend_data (dynobj)->collect, &bh)))
5699 return FALSE;
5700 h = (struct elf_link_hash_entry *) bh;
5701 h->non_elf = 0;
5702 h->def_regular = 1;
5703 h->type = STT_OBJECT;
5704 h->verinfo.vertree = NULL;
5706 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5707 return FALSE;
5709 /* Create a duplicate of the base version with the same
5710 aux block, but different flags. */
5711 def.vd_flags = 0;
5712 def.vd_ndx = 2;
5713 def.vd_aux = sizeof (Elf_External_Verdef);
5714 if (verdefs)
5715 def.vd_next = (sizeof (Elf_External_Verdef)
5716 + sizeof (Elf_External_Verdaux));
5717 else
5718 def.vd_next = 0;
5719 _bfd_elf_swap_verdef_out (output_bfd, &def,
5720 (Elf_External_Verdef *) p);
5721 p += sizeof (Elf_External_Verdef);
5723 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
5724 (Elf_External_Verdaux *) p);
5725 p += sizeof (Elf_External_Verdaux);
5727 for (t = verdefs; t != NULL; t = t->next)
5729 unsigned int cdeps;
5730 struct bfd_elf_version_deps *n;
5732 cdeps = 0;
5733 for (n = t->deps; n != NULL; n = n->next)
5734 ++cdeps;
5736 /* Add a symbol representing this version. */
5737 bh = NULL;
5738 if (! (_bfd_generic_link_add_one_symbol
5739 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
5740 0, NULL, FALSE,
5741 get_elf_backend_data (dynobj)->collect, &bh)))
5742 return FALSE;
5743 h = (struct elf_link_hash_entry *) bh;
5744 h->non_elf = 0;
5745 h->def_regular = 1;
5746 h->type = STT_OBJECT;
5747 h->verinfo.vertree = t;
5749 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5750 return FALSE;
5752 def.vd_version = VER_DEF_CURRENT;
5753 def.vd_flags = 0;
5754 if (t->globals.list == NULL
5755 && t->locals.list == NULL
5756 && ! t->used)
5757 def.vd_flags |= VER_FLG_WEAK;
5758 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
5759 def.vd_cnt = cdeps + 1;
5760 def.vd_hash = bfd_elf_hash (t->name);
5761 def.vd_aux = sizeof (Elf_External_Verdef);
5762 def.vd_next = 0;
5763 if (t->next != NULL)
5764 def.vd_next = (sizeof (Elf_External_Verdef)
5765 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
5767 _bfd_elf_swap_verdef_out (output_bfd, &def,
5768 (Elf_External_Verdef *) p);
5769 p += sizeof (Elf_External_Verdef);
5771 defaux.vda_name = h->dynstr_index;
5772 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
5773 h->dynstr_index);
5774 defaux.vda_next = 0;
5775 if (t->deps != NULL)
5776 defaux.vda_next = sizeof (Elf_External_Verdaux);
5777 t->name_indx = defaux.vda_name;
5779 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
5780 (Elf_External_Verdaux *) p);
5781 p += sizeof (Elf_External_Verdaux);
5783 for (n = t->deps; n != NULL; n = n->next)
5785 if (n->version_needed == NULL)
5787 /* This can happen if there was an error in the
5788 version script. */
5789 defaux.vda_name = 0;
5791 else
5793 defaux.vda_name = n->version_needed->name_indx;
5794 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
5795 defaux.vda_name);
5797 if (n->next == NULL)
5798 defaux.vda_next = 0;
5799 else
5800 defaux.vda_next = sizeof (Elf_External_Verdaux);
5802 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
5803 (Elf_External_Verdaux *) p);
5804 p += sizeof (Elf_External_Verdaux);
5808 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
5809 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs))
5810 return FALSE;
5812 elf_tdata (output_bfd)->cverdefs = cdefs;
5815 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
5817 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
5818 return FALSE;
5820 else if (info->flags & DF_BIND_NOW)
5822 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
5823 return FALSE;
5826 if (info->flags_1)
5828 if (info->executable)
5829 info->flags_1 &= ~ (DF_1_INITFIRST
5830 | DF_1_NODELETE
5831 | DF_1_NOOPEN);
5832 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
5833 return FALSE;
5836 /* Work out the size of the version reference section. */
5838 s = bfd_get_section_by_name (dynobj, ".gnu.version_r");
5839 BFD_ASSERT (s != NULL);
5841 struct elf_find_verdep_info sinfo;
5843 sinfo.output_bfd = output_bfd;
5844 sinfo.info = info;
5845 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
5846 if (sinfo.vers == 0)
5847 sinfo.vers = 1;
5848 sinfo.failed = FALSE;
5850 elf_link_hash_traverse (elf_hash_table (info),
5851 _bfd_elf_link_find_version_dependencies,
5852 &sinfo);
5854 if (elf_tdata (output_bfd)->verref == NULL)
5855 s->flags |= SEC_EXCLUDE;
5856 else
5858 Elf_Internal_Verneed *t;
5859 unsigned int size;
5860 unsigned int crefs;
5861 bfd_byte *p;
5863 /* Build the version definition section. */
5864 size = 0;
5865 crefs = 0;
5866 for (t = elf_tdata (output_bfd)->verref;
5867 t != NULL;
5868 t = t->vn_nextref)
5870 Elf_Internal_Vernaux *a;
5872 size += sizeof (Elf_External_Verneed);
5873 ++crefs;
5874 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
5875 size += sizeof (Elf_External_Vernaux);
5878 s->size = size;
5879 s->contents = bfd_alloc (output_bfd, s->size);
5880 if (s->contents == NULL)
5881 return FALSE;
5883 p = s->contents;
5884 for (t = elf_tdata (output_bfd)->verref;
5885 t != NULL;
5886 t = t->vn_nextref)
5888 unsigned int caux;
5889 Elf_Internal_Vernaux *a;
5890 bfd_size_type indx;
5892 caux = 0;
5893 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
5894 ++caux;
5896 t->vn_version = VER_NEED_CURRENT;
5897 t->vn_cnt = caux;
5898 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5899 elf_dt_name (t->vn_bfd) != NULL
5900 ? elf_dt_name (t->vn_bfd)
5901 : lbasename (t->vn_bfd->filename),
5902 FALSE);
5903 if (indx == (bfd_size_type) -1)
5904 return FALSE;
5905 t->vn_file = indx;
5906 t->vn_aux = sizeof (Elf_External_Verneed);
5907 if (t->vn_nextref == NULL)
5908 t->vn_next = 0;
5909 else
5910 t->vn_next = (sizeof (Elf_External_Verneed)
5911 + caux * sizeof (Elf_External_Vernaux));
5913 _bfd_elf_swap_verneed_out (output_bfd, t,
5914 (Elf_External_Verneed *) p);
5915 p += sizeof (Elf_External_Verneed);
5917 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
5919 a->vna_hash = bfd_elf_hash (a->vna_nodename);
5920 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5921 a->vna_nodename, FALSE);
5922 if (indx == (bfd_size_type) -1)
5923 return FALSE;
5924 a->vna_name = indx;
5925 if (a->vna_nextptr == NULL)
5926 a->vna_next = 0;
5927 else
5928 a->vna_next = sizeof (Elf_External_Vernaux);
5930 _bfd_elf_swap_vernaux_out (output_bfd, a,
5931 (Elf_External_Vernaux *) p);
5932 p += sizeof (Elf_External_Vernaux);
5936 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
5937 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
5938 return FALSE;
5940 elf_tdata (output_bfd)->cverrefs = crefs;
5944 if ((elf_tdata (output_bfd)->cverrefs == 0
5945 && elf_tdata (output_bfd)->cverdefs == 0)
5946 || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
5947 &section_sym_count) == 0)
5949 s = bfd_get_section_by_name (dynobj, ".gnu.version");
5950 s->flags |= SEC_EXCLUDE;
5953 return TRUE;
5956 /* Find the first non-excluded output section. We'll use its
5957 section symbol for some emitted relocs. */
5958 void
5959 _bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
5961 asection *s;
5963 for (s = output_bfd->sections; s != NULL; s = s->next)
5964 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
5965 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
5967 elf_hash_table (info)->text_index_section = s;
5968 break;
5972 /* Find two non-excluded output sections, one for code, one for data.
5973 We'll use their section symbols for some emitted relocs. */
5974 void
5975 _bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
5977 asection *s;
5979 for (s = output_bfd->sections; s != NULL; s = s->next)
5980 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
5981 == (SEC_ALLOC | SEC_READONLY))
5982 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
5984 elf_hash_table (info)->text_index_section = s;
5985 break;
5988 for (s = output_bfd->sections; s != NULL; s = s->next)
5989 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
5990 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
5992 elf_hash_table (info)->data_index_section = s;
5993 break;
5996 if (elf_hash_table (info)->text_index_section == NULL)
5997 elf_hash_table (info)->text_index_section
5998 = elf_hash_table (info)->data_index_section;
6001 bfd_boolean
6002 bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6004 const struct elf_backend_data *bed;
6006 if (!is_elf_hash_table (info->hash))
6007 return TRUE;
6009 bed = get_elf_backend_data (output_bfd);
6010 (*bed->elf_backend_init_index_section) (output_bfd, info);
6012 if (elf_hash_table (info)->dynamic_sections_created)
6014 bfd *dynobj;
6015 asection *s;
6016 bfd_size_type dynsymcount;
6017 unsigned long section_sym_count;
6018 unsigned int dtagcount;
6020 dynobj = elf_hash_table (info)->dynobj;
6022 /* Assign dynsym indicies. In a shared library we generate a
6023 section symbol for each output section, which come first.
6024 Next come all of the back-end allocated local dynamic syms,
6025 followed by the rest of the global symbols. */
6027 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6028 &section_sym_count);
6030 /* Work out the size of the symbol version section. */
6031 s = bfd_get_section_by_name (dynobj, ".gnu.version");
6032 BFD_ASSERT (s != NULL);
6033 if (dynsymcount != 0
6034 && (s->flags & SEC_EXCLUDE) == 0)
6036 s->size = dynsymcount * sizeof (Elf_External_Versym);
6037 s->contents = bfd_zalloc (output_bfd, s->size);
6038 if (s->contents == NULL)
6039 return FALSE;
6041 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6042 return FALSE;
6045 /* Set the size of the .dynsym and .hash sections. We counted
6046 the number of dynamic symbols in elf_link_add_object_symbols.
6047 We will build the contents of .dynsym and .hash when we build
6048 the final symbol table, because until then we do not know the
6049 correct value to give the symbols. We built the .dynstr
6050 section as we went along in elf_link_add_object_symbols. */
6051 s = bfd_get_section_by_name (dynobj, ".dynsym");
6052 BFD_ASSERT (s != NULL);
6053 s->size = dynsymcount * bed->s->sizeof_sym;
6055 if (dynsymcount != 0)
6057 s->contents = bfd_alloc (output_bfd, s->size);
6058 if (s->contents == NULL)
6059 return FALSE;
6061 /* The first entry in .dynsym is a dummy symbol.
6062 Clear all the section syms, in case we don't output them all. */
6063 ++section_sym_count;
6064 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
6067 elf_hash_table (info)->bucketcount = 0;
6069 /* Compute the size of the hashing table. As a side effect this
6070 computes the hash values for all the names we export. */
6071 if (info->emit_hash)
6073 unsigned long int *hashcodes;
6074 unsigned long int *hashcodesp;
6075 bfd_size_type amt;
6076 unsigned long int nsyms;
6077 size_t bucketcount;
6078 size_t hash_entry_size;
6080 /* Compute the hash values for all exported symbols. At the same
6081 time store the values in an array so that we could use them for
6082 optimizations. */
6083 amt = dynsymcount * sizeof (unsigned long int);
6084 hashcodes = bfd_malloc (amt);
6085 if (hashcodes == NULL)
6086 return FALSE;
6087 hashcodesp = hashcodes;
6089 /* Put all hash values in HASHCODES. */
6090 elf_link_hash_traverse (elf_hash_table (info),
6091 elf_collect_hash_codes, &hashcodesp);
6093 nsyms = hashcodesp - hashcodes;
6094 bucketcount
6095 = compute_bucket_count (info, hashcodes, nsyms, 0);
6096 free (hashcodes);
6098 if (bucketcount == 0)
6099 return FALSE;
6101 elf_hash_table (info)->bucketcount = bucketcount;
6103 s = bfd_get_section_by_name (dynobj, ".hash");
6104 BFD_ASSERT (s != NULL);
6105 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6106 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
6107 s->contents = bfd_zalloc (output_bfd, s->size);
6108 if (s->contents == NULL)
6109 return FALSE;
6111 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6112 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6113 s->contents + hash_entry_size);
6116 if (info->emit_gnu_hash)
6118 size_t i, cnt;
6119 unsigned char *contents;
6120 struct collect_gnu_hash_codes cinfo;
6121 bfd_size_type amt;
6122 size_t bucketcount;
6124 memset (&cinfo, 0, sizeof (cinfo));
6126 /* Compute the hash values for all exported symbols. At the same
6127 time store the values in an array so that we could use them for
6128 optimizations. */
6129 amt = dynsymcount * 2 * sizeof (unsigned long int);
6130 cinfo.hashcodes = bfd_malloc (amt);
6131 if (cinfo.hashcodes == NULL)
6132 return FALSE;
6134 cinfo.hashval = cinfo.hashcodes + dynsymcount;
6135 cinfo.min_dynindx = -1;
6136 cinfo.output_bfd = output_bfd;
6137 cinfo.bed = bed;
6139 /* Put all hash values in HASHCODES. */
6140 elf_link_hash_traverse (elf_hash_table (info),
6141 elf_collect_gnu_hash_codes, &cinfo);
6143 bucketcount
6144 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6146 if (bucketcount == 0)
6148 free (cinfo.hashcodes);
6149 return FALSE;
6152 s = bfd_get_section_by_name (dynobj, ".gnu.hash");
6153 BFD_ASSERT (s != NULL);
6155 if (cinfo.nsyms == 0)
6157 /* Empty .gnu.hash section is special. */
6158 BFD_ASSERT (cinfo.min_dynindx == -1);
6159 free (cinfo.hashcodes);
6160 s->size = 5 * 4 + bed->s->arch_size / 8;
6161 contents = bfd_zalloc (output_bfd, s->size);
6162 if (contents == NULL)
6163 return FALSE;
6164 s->contents = contents;
6165 /* 1 empty bucket. */
6166 bfd_put_32 (output_bfd, 1, contents);
6167 /* SYMIDX above the special symbol 0. */
6168 bfd_put_32 (output_bfd, 1, contents + 4);
6169 /* Just one word for bitmask. */
6170 bfd_put_32 (output_bfd, 1, contents + 8);
6171 /* Only hash fn bloom filter. */
6172 bfd_put_32 (output_bfd, 0, contents + 12);
6173 /* No hashes are valid - empty bitmask. */
6174 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
6175 /* No hashes in the only bucket. */
6176 bfd_put_32 (output_bfd, 0,
6177 contents + 16 + bed->s->arch_size / 8);
6179 else
6181 unsigned long int maskwords, maskbitslog2;
6182 BFD_ASSERT (cinfo.min_dynindx != -1);
6184 maskbitslog2 = bfd_log2 (cinfo.nsyms) + 1;
6185 if (maskbitslog2 < 3)
6186 maskbitslog2 = 5;
6187 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
6188 maskbitslog2 = maskbitslog2 + 3;
6189 else
6190 maskbitslog2 = maskbitslog2 + 2;
6191 if (bed->s->arch_size == 64)
6193 if (maskbitslog2 == 5)
6194 maskbitslog2 = 6;
6195 cinfo.shift1 = 6;
6197 else
6198 cinfo.shift1 = 5;
6199 cinfo.mask = (1 << cinfo.shift1) - 1;
6200 cinfo.shift2 = maskbitslog2;
6201 cinfo.maskbits = 1 << maskbitslog2;
6202 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6203 amt = bucketcount * sizeof (unsigned long int) * 2;
6204 amt += maskwords * sizeof (bfd_vma);
6205 cinfo.bitmask = bfd_malloc (amt);
6206 if (cinfo.bitmask == NULL)
6208 free (cinfo.hashcodes);
6209 return FALSE;
6212 cinfo.counts = (void *) (cinfo.bitmask + maskwords);
6213 cinfo.indx = cinfo.counts + bucketcount;
6214 cinfo.symindx = dynsymcount - cinfo.nsyms;
6215 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
6217 /* Determine how often each hash bucket is used. */
6218 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
6219 for (i = 0; i < cinfo.nsyms; ++i)
6220 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
6222 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
6223 if (cinfo.counts[i] != 0)
6225 cinfo.indx[i] = cnt;
6226 cnt += cinfo.counts[i];
6228 BFD_ASSERT (cnt == dynsymcount);
6229 cinfo.bucketcount = bucketcount;
6230 cinfo.local_indx = cinfo.min_dynindx;
6232 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
6233 s->size += cinfo.maskbits / 8;
6234 contents = bfd_zalloc (output_bfd, s->size);
6235 if (contents == NULL)
6237 free (cinfo.bitmask);
6238 free (cinfo.hashcodes);
6239 return FALSE;
6242 s->contents = contents;
6243 bfd_put_32 (output_bfd, bucketcount, contents);
6244 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
6245 bfd_put_32 (output_bfd, maskwords, contents + 8);
6246 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
6247 contents += 16 + cinfo.maskbits / 8;
6249 for (i = 0; i < bucketcount; ++i)
6251 if (cinfo.counts[i] == 0)
6252 bfd_put_32 (output_bfd, 0, contents);
6253 else
6254 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
6255 contents += 4;
6258 cinfo.contents = contents;
6260 /* Renumber dynamic symbols, populate .gnu.hash section. */
6261 elf_link_hash_traverse (elf_hash_table (info),
6262 elf_renumber_gnu_hash_syms, &cinfo);
6264 contents = s->contents + 16;
6265 for (i = 0; i < maskwords; ++i)
6267 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
6268 contents);
6269 contents += bed->s->arch_size / 8;
6272 free (cinfo.bitmask);
6273 free (cinfo.hashcodes);
6277 s = bfd_get_section_by_name (dynobj, ".dynstr");
6278 BFD_ASSERT (s != NULL);
6280 elf_finalize_dynstr (output_bfd, info);
6282 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
6284 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
6285 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
6286 return FALSE;
6289 return TRUE;
6292 /* Final phase of ELF linker. */
6294 /* A structure we use to avoid passing large numbers of arguments. */
6296 struct elf_final_link_info
6298 /* General link information. */
6299 struct bfd_link_info *info;
6300 /* Output BFD. */
6301 bfd *output_bfd;
6302 /* Symbol string table. */
6303 struct bfd_strtab_hash *symstrtab;
6304 /* .dynsym section. */
6305 asection *dynsym_sec;
6306 /* .hash section. */
6307 asection *hash_sec;
6308 /* symbol version section (.gnu.version). */
6309 asection *symver_sec;
6310 /* Buffer large enough to hold contents of any section. */
6311 bfd_byte *contents;
6312 /* Buffer large enough to hold external relocs of any section. */
6313 void *external_relocs;
6314 /* Buffer large enough to hold internal relocs of any section. */
6315 Elf_Internal_Rela *internal_relocs;
6316 /* Buffer large enough to hold external local symbols of any input
6317 BFD. */
6318 bfd_byte *external_syms;
6319 /* And a buffer for symbol section indices. */
6320 Elf_External_Sym_Shndx *locsym_shndx;
6321 /* Buffer large enough to hold internal local symbols of any input
6322 BFD. */
6323 Elf_Internal_Sym *internal_syms;
6324 /* Array large enough to hold a symbol index for each local symbol
6325 of any input BFD. */
6326 long *indices;
6327 /* Array large enough to hold a section pointer for each local
6328 symbol of any input BFD. */
6329 asection **sections;
6330 /* Buffer to hold swapped out symbols. */
6331 bfd_byte *symbuf;
6332 /* And one for symbol section indices. */
6333 Elf_External_Sym_Shndx *symshndxbuf;
6334 /* Number of swapped out symbols in buffer. */
6335 size_t symbuf_count;
6336 /* Number of symbols which fit in symbuf. */
6337 size_t symbuf_size;
6338 /* And same for symshndxbuf. */
6339 size_t shndxbuf_size;
6342 /* This struct is used to pass information to elf_link_output_extsym. */
6344 struct elf_outext_info
6346 bfd_boolean failed;
6347 bfd_boolean localsyms;
6348 struct elf_final_link_info *finfo;
6351 /* When performing a relocatable link, the input relocations are
6352 preserved. But, if they reference global symbols, the indices
6353 referenced must be updated. Update all the relocations in
6354 REL_HDR (there are COUNT of them), using the data in REL_HASH. */
6356 static void
6357 elf_link_adjust_relocs (bfd *abfd,
6358 Elf_Internal_Shdr *rel_hdr,
6359 unsigned int count,
6360 struct elf_link_hash_entry **rel_hash)
6362 unsigned int i;
6363 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6364 bfd_byte *erela;
6365 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
6366 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
6367 bfd_vma r_type_mask;
6368 int r_sym_shift;
6370 if (rel_hdr->sh_entsize == bed->s->sizeof_rel)
6372 swap_in = bed->s->swap_reloc_in;
6373 swap_out = bed->s->swap_reloc_out;
6375 else if (rel_hdr->sh_entsize == bed->s->sizeof_rela)
6377 swap_in = bed->s->swap_reloca_in;
6378 swap_out = bed->s->swap_reloca_out;
6380 else
6381 abort ();
6383 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
6384 abort ();
6386 if (bed->s->arch_size == 32)
6388 r_type_mask = 0xff;
6389 r_sym_shift = 8;
6391 else
6393 r_type_mask = 0xffffffff;
6394 r_sym_shift = 32;
6397 erela = rel_hdr->contents;
6398 for (i = 0; i < count; i++, rel_hash++, erela += rel_hdr->sh_entsize)
6400 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
6401 unsigned int j;
6403 if (*rel_hash == NULL)
6404 continue;
6406 BFD_ASSERT ((*rel_hash)->indx >= 0);
6408 (*swap_in) (abfd, erela, irela);
6409 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
6410 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
6411 | (irela[j].r_info & r_type_mask));
6412 (*swap_out) (abfd, irela, erela);
6416 struct elf_link_sort_rela
6418 union {
6419 bfd_vma offset;
6420 bfd_vma sym_mask;
6421 } u;
6422 enum elf_reloc_type_class type;
6423 /* We use this as an array of size int_rels_per_ext_rel. */
6424 Elf_Internal_Rela rela[1];
6427 static int
6428 elf_link_sort_cmp1 (const void *A, const void *B)
6430 const struct elf_link_sort_rela *a = A;
6431 const struct elf_link_sort_rela *b = B;
6432 int relativea, relativeb;
6434 relativea = a->type == reloc_class_relative;
6435 relativeb = b->type == reloc_class_relative;
6437 if (relativea < relativeb)
6438 return 1;
6439 if (relativea > relativeb)
6440 return -1;
6441 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
6442 return -1;
6443 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
6444 return 1;
6445 if (a->rela->r_offset < b->rela->r_offset)
6446 return -1;
6447 if (a->rela->r_offset > b->rela->r_offset)
6448 return 1;
6449 return 0;
6452 static int
6453 elf_link_sort_cmp2 (const void *A, const void *B)
6455 const struct elf_link_sort_rela *a = A;
6456 const struct elf_link_sort_rela *b = B;
6457 int copya, copyb;
6459 if (a->u.offset < b->u.offset)
6460 return -1;
6461 if (a->u.offset > b->u.offset)
6462 return 1;
6463 copya = (a->type == reloc_class_copy) * 2 + (a->type == reloc_class_plt);
6464 copyb = (b->type == reloc_class_copy) * 2 + (b->type == reloc_class_plt);
6465 if (copya < copyb)
6466 return -1;
6467 if (copya > copyb)
6468 return 1;
6469 if (a->rela->r_offset < b->rela->r_offset)
6470 return -1;
6471 if (a->rela->r_offset > b->rela->r_offset)
6472 return 1;
6473 return 0;
6476 static size_t
6477 elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
6479 asection *reldyn;
6480 bfd_size_type count, size;
6481 size_t i, ret, sort_elt, ext_size;
6482 bfd_byte *sort, *s_non_relative, *p;
6483 struct elf_link_sort_rela *sq;
6484 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6485 int i2e = bed->s->int_rels_per_ext_rel;
6486 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
6487 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
6488 struct bfd_link_order *lo;
6489 bfd_vma r_sym_mask;
6491 reldyn = bfd_get_section_by_name (abfd, ".rela.dyn");
6492 if (reldyn == NULL || reldyn->size == 0)
6494 reldyn = bfd_get_section_by_name (abfd, ".rel.dyn");
6495 if (reldyn == NULL || reldyn->size == 0)
6496 return 0;
6497 ext_size = bed->s->sizeof_rel;
6498 swap_in = bed->s->swap_reloc_in;
6499 swap_out = bed->s->swap_reloc_out;
6501 else
6503 ext_size = bed->s->sizeof_rela;
6504 swap_in = bed->s->swap_reloca_in;
6505 swap_out = bed->s->swap_reloca_out;
6507 count = reldyn->size / ext_size;
6509 size = 0;
6510 for (lo = reldyn->map_head.link_order; lo != NULL; lo = lo->next)
6511 if (lo->type == bfd_indirect_link_order)
6513 asection *o = lo->u.indirect.section;
6514 size += o->size;
6517 if (size != reldyn->size)
6518 return 0;
6520 sort_elt = (sizeof (struct elf_link_sort_rela)
6521 + (i2e - 1) * sizeof (Elf_Internal_Rela));
6522 sort = bfd_zmalloc (sort_elt * count);
6523 if (sort == NULL)
6525 (*info->callbacks->warning)
6526 (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
6527 return 0;
6530 if (bed->s->arch_size == 32)
6531 r_sym_mask = ~(bfd_vma) 0xff;
6532 else
6533 r_sym_mask = ~(bfd_vma) 0xffffffff;
6535 for (lo = reldyn->map_head.link_order; lo != NULL; lo = lo->next)
6536 if (lo->type == bfd_indirect_link_order)
6538 bfd_byte *erel, *erelend;
6539 asection *o = lo->u.indirect.section;
6541 if (o->contents == NULL && o->size != 0)
6543 /* This is a reloc section that is being handled as a normal
6544 section. See bfd_section_from_shdr. We can't combine
6545 relocs in this case. */
6546 free (sort);
6547 return 0;
6549 erel = o->contents;
6550 erelend = o->contents + o->size;
6551 p = sort + o->output_offset / ext_size * sort_elt;
6552 while (erel < erelend)
6554 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
6555 (*swap_in) (abfd, erel, s->rela);
6556 s->type = (*bed->elf_backend_reloc_type_class) (s->rela);
6557 s->u.sym_mask = r_sym_mask;
6558 p += sort_elt;
6559 erel += ext_size;
6563 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
6565 for (i = 0, p = sort; i < count; i++, p += sort_elt)
6567 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
6568 if (s->type != reloc_class_relative)
6569 break;
6571 ret = i;
6572 s_non_relative = p;
6574 sq = (struct elf_link_sort_rela *) s_non_relative;
6575 for (; i < count; i++, p += sort_elt)
6577 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
6578 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
6579 sq = sp;
6580 sp->u.offset = sq->rela->r_offset;
6583 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
6585 for (lo = reldyn->map_head.link_order; lo != NULL; lo = lo->next)
6586 if (lo->type == bfd_indirect_link_order)
6588 bfd_byte *erel, *erelend;
6589 asection *o = lo->u.indirect.section;
6591 erel = o->contents;
6592 erelend = o->contents + o->size;
6593 p = sort + o->output_offset / ext_size * sort_elt;
6594 while (erel < erelend)
6596 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
6597 (*swap_out) (abfd, s->rela, erel);
6598 p += sort_elt;
6599 erel += ext_size;
6603 free (sort);
6604 *psec = reldyn;
6605 return ret;
6608 /* Flush the output symbols to the file. */
6610 static bfd_boolean
6611 elf_link_flush_output_syms (struct elf_final_link_info *finfo,
6612 const struct elf_backend_data *bed)
6614 if (finfo->symbuf_count > 0)
6616 Elf_Internal_Shdr *hdr;
6617 file_ptr pos;
6618 bfd_size_type amt;
6620 hdr = &elf_tdata (finfo->output_bfd)->symtab_hdr;
6621 pos = hdr->sh_offset + hdr->sh_size;
6622 amt = finfo->symbuf_count * bed->s->sizeof_sym;
6623 if (bfd_seek (finfo->output_bfd, pos, SEEK_SET) != 0
6624 || bfd_bwrite (finfo->symbuf, amt, finfo->output_bfd) != amt)
6625 return FALSE;
6627 hdr->sh_size += amt;
6628 finfo->symbuf_count = 0;
6631 return TRUE;
6634 /* Add a symbol to the output symbol table. */
6636 static bfd_boolean
6637 elf_link_output_sym (struct elf_final_link_info *finfo,
6638 const char *name,
6639 Elf_Internal_Sym *elfsym,
6640 asection *input_sec,
6641 struct elf_link_hash_entry *h)
6643 bfd_byte *dest;
6644 Elf_External_Sym_Shndx *destshndx;
6645 bfd_boolean (*output_symbol_hook)
6646 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
6647 struct elf_link_hash_entry *);
6648 const struct elf_backend_data *bed;
6650 bed = get_elf_backend_data (finfo->output_bfd);
6651 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
6652 if (output_symbol_hook != NULL)
6654 if (! (*output_symbol_hook) (finfo->info, name, elfsym, input_sec, h))
6655 return FALSE;
6658 if (name == NULL || *name == '\0')
6659 elfsym->st_name = 0;
6660 else if (input_sec->flags & SEC_EXCLUDE)
6661 elfsym->st_name = 0;
6662 else
6664 elfsym->st_name = (unsigned long) _bfd_stringtab_add (finfo->symstrtab,
6665 name, TRUE, FALSE);
6666 if (elfsym->st_name == (unsigned long) -1)
6667 return FALSE;
6670 if (finfo->symbuf_count >= finfo->symbuf_size)
6672 if (! elf_link_flush_output_syms (finfo, bed))
6673 return FALSE;
6676 dest = finfo->symbuf + finfo->symbuf_count * bed->s->sizeof_sym;
6677 destshndx = finfo->symshndxbuf;
6678 if (destshndx != NULL)
6680 if (bfd_get_symcount (finfo->output_bfd) >= finfo->shndxbuf_size)
6682 bfd_size_type amt;
6684 amt = finfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx);
6685 finfo->symshndxbuf = destshndx = bfd_realloc (destshndx, amt * 2);
6686 if (destshndx == NULL)
6687 return FALSE;
6688 memset ((char *) destshndx + amt, 0, amt);
6689 finfo->shndxbuf_size *= 2;
6691 destshndx += bfd_get_symcount (finfo->output_bfd);
6694 bed->s->swap_symbol_out (finfo->output_bfd, elfsym, dest, destshndx);
6695 finfo->symbuf_count += 1;
6696 bfd_get_symcount (finfo->output_bfd) += 1;
6698 return TRUE;
6701 /* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
6703 static bfd_boolean
6704 check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
6706 if (sym->st_shndx > SHN_HIRESERVE)
6708 /* The gABI doesn't support dynamic symbols in output sections
6709 beyond 64k. */
6710 (*_bfd_error_handler)
6711 (_("%B: Too many sections: %d (>= %d)"),
6712 abfd, bfd_count_sections (abfd), SHN_LORESERVE);
6713 bfd_set_error (bfd_error_nonrepresentable_section);
6714 return FALSE;
6716 return TRUE;
6719 /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
6720 allowing an unsatisfied unversioned symbol in the DSO to match a
6721 versioned symbol that would normally require an explicit version.
6722 We also handle the case that a DSO references a hidden symbol
6723 which may be satisfied by a versioned symbol in another DSO. */
6725 static bfd_boolean
6726 elf_link_check_versioned_symbol (struct bfd_link_info *info,
6727 const struct elf_backend_data *bed,
6728 struct elf_link_hash_entry *h)
6730 bfd *abfd;
6731 struct elf_link_loaded_list *loaded;
6733 if (!is_elf_hash_table (info->hash))
6734 return FALSE;
6736 switch (h->root.type)
6738 default:
6739 abfd = NULL;
6740 break;
6742 case bfd_link_hash_undefined:
6743 case bfd_link_hash_undefweak:
6744 abfd = h->root.u.undef.abfd;
6745 if ((abfd->flags & DYNAMIC) == 0
6746 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
6747 return FALSE;
6748 break;
6750 case bfd_link_hash_defined:
6751 case bfd_link_hash_defweak:
6752 abfd = h->root.u.def.section->owner;
6753 break;
6755 case bfd_link_hash_common:
6756 abfd = h->root.u.c.p->section->owner;
6757 break;
6759 BFD_ASSERT (abfd != NULL);
6761 for (loaded = elf_hash_table (info)->loaded;
6762 loaded != NULL;
6763 loaded = loaded->next)
6765 bfd *input;
6766 Elf_Internal_Shdr *hdr;
6767 bfd_size_type symcount;
6768 bfd_size_type extsymcount;
6769 bfd_size_type extsymoff;
6770 Elf_Internal_Shdr *versymhdr;
6771 Elf_Internal_Sym *isym;
6772 Elf_Internal_Sym *isymend;
6773 Elf_Internal_Sym *isymbuf;
6774 Elf_External_Versym *ever;
6775 Elf_External_Versym *extversym;
6777 input = loaded->abfd;
6779 /* We check each DSO for a possible hidden versioned definition. */
6780 if (input == abfd
6781 || (input->flags & DYNAMIC) == 0
6782 || elf_dynversym (input) == 0)
6783 continue;
6785 hdr = &elf_tdata (input)->dynsymtab_hdr;
6787 symcount = hdr->sh_size / bed->s->sizeof_sym;
6788 if (elf_bad_symtab (input))
6790 extsymcount = symcount;
6791 extsymoff = 0;
6793 else
6795 extsymcount = symcount - hdr->sh_info;
6796 extsymoff = hdr->sh_info;
6799 if (extsymcount == 0)
6800 continue;
6802 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
6803 NULL, NULL, NULL);
6804 if (isymbuf == NULL)
6805 return FALSE;
6807 /* Read in any version definitions. */
6808 versymhdr = &elf_tdata (input)->dynversym_hdr;
6809 extversym = bfd_malloc (versymhdr->sh_size);
6810 if (extversym == NULL)
6811 goto error_ret;
6813 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
6814 || (bfd_bread (extversym, versymhdr->sh_size, input)
6815 != versymhdr->sh_size))
6817 free (extversym);
6818 error_ret:
6819 free (isymbuf);
6820 return FALSE;
6823 ever = extversym + extsymoff;
6824 isymend = isymbuf + extsymcount;
6825 for (isym = isymbuf; isym < isymend; isym++, ever++)
6827 const char *name;
6828 Elf_Internal_Versym iver;
6829 unsigned short version_index;
6831 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
6832 || isym->st_shndx == SHN_UNDEF)
6833 continue;
6835 name = bfd_elf_string_from_elf_section (input,
6836 hdr->sh_link,
6837 isym->st_name);
6838 if (strcmp (name, h->root.root.string) != 0)
6839 continue;
6841 _bfd_elf_swap_versym_in (input, ever, &iver);
6843 if ((iver.vs_vers & VERSYM_HIDDEN) == 0)
6845 /* If we have a non-hidden versioned sym, then it should
6846 have provided a definition for the undefined sym. */
6847 abort ();
6850 version_index = iver.vs_vers & VERSYM_VERSION;
6851 if (version_index == 1 || version_index == 2)
6853 /* This is the base or first version. We can use it. */
6854 free (extversym);
6855 free (isymbuf);
6856 return TRUE;
6860 free (extversym);
6861 free (isymbuf);
6864 return FALSE;
6867 /* Add an external symbol to the symbol table. This is called from
6868 the hash table traversal routine. When generating a shared object,
6869 we go through the symbol table twice. The first time we output
6870 anything that might have been forced to local scope in a version
6871 script. The second time we output the symbols that are still
6872 global symbols. */
6874 static bfd_boolean
6875 elf_link_output_extsym (struct elf_link_hash_entry *h, void *data)
6877 struct elf_outext_info *eoinfo = data;
6878 struct elf_final_link_info *finfo = eoinfo->finfo;
6879 bfd_boolean strip;
6880 Elf_Internal_Sym sym;
6881 asection *input_sec;
6882 const struct elf_backend_data *bed;
6884 if (h->root.type == bfd_link_hash_warning)
6886 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6887 if (h->root.type == bfd_link_hash_new)
6888 return TRUE;
6891 /* Decide whether to output this symbol in this pass. */
6892 if (eoinfo->localsyms)
6894 if (!h->forced_local)
6895 return TRUE;
6897 else
6899 if (h->forced_local)
6900 return TRUE;
6903 bed = get_elf_backend_data (finfo->output_bfd);
6905 if (h->root.type == bfd_link_hash_undefined)
6907 /* If we have an undefined symbol reference here then it must have
6908 come from a shared library that is being linked in. (Undefined
6909 references in regular files have already been handled). */
6910 bfd_boolean ignore_undef = FALSE;
6912 /* Some symbols may be special in that the fact that they're
6913 undefined can be safely ignored - let backend determine that. */
6914 if (bed->elf_backend_ignore_undef_symbol)
6915 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
6917 /* If we are reporting errors for this situation then do so now. */
6918 if (ignore_undef == FALSE
6919 && h->ref_dynamic
6920 && ! h->ref_regular
6921 && ! elf_link_check_versioned_symbol (finfo->info, bed, h)
6922 && finfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
6924 if (! (finfo->info->callbacks->undefined_symbol
6925 (finfo->info, h->root.root.string, h->root.u.undef.abfd,
6926 NULL, 0, finfo->info->unresolved_syms_in_shared_libs == RM_GENERATE_ERROR)))
6928 eoinfo->failed = TRUE;
6929 return FALSE;
6934 /* We should also warn if a forced local symbol is referenced from
6935 shared libraries. */
6936 if (! finfo->info->relocatable
6937 && (! finfo->info->shared)
6938 && h->forced_local
6939 && h->ref_dynamic
6940 && !h->dynamic_def
6941 && !h->dynamic_weak
6942 && ! elf_link_check_versioned_symbol (finfo->info, bed, h))
6944 (*_bfd_error_handler)
6945 (_("%B: %s symbol `%s' in %B is referenced by DSO"),
6946 finfo->output_bfd,
6947 h->root.u.def.section == bfd_abs_section_ptr
6948 ? finfo->output_bfd : h->root.u.def.section->owner,
6949 ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
6950 ? "internal"
6951 : ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
6952 ? "hidden" : "local",
6953 h->root.root.string);
6954 eoinfo->failed = TRUE;
6955 return FALSE;
6958 /* We don't want to output symbols that have never been mentioned by
6959 a regular file, or that we have been told to strip. However, if
6960 h->indx is set to -2, the symbol is used by a reloc and we must
6961 output it. */
6962 if (h->indx == -2)
6963 strip = FALSE;
6964 else if ((h->def_dynamic
6965 || h->ref_dynamic
6966 || h->root.type == bfd_link_hash_new)
6967 && !h->def_regular
6968 && !h->ref_regular)
6969 strip = TRUE;
6970 else if (finfo->info->strip == strip_all)
6971 strip = TRUE;
6972 else if (finfo->info->strip == strip_some
6973 && bfd_hash_lookup (finfo->info->keep_hash,
6974 h->root.root.string, FALSE, FALSE) == NULL)
6975 strip = TRUE;
6976 else if (finfo->info->strip_discarded
6977 && (h->root.type == bfd_link_hash_defined
6978 || h->root.type == bfd_link_hash_defweak)
6979 && elf_discarded_section (h->root.u.def.section))
6980 strip = TRUE;
6981 else
6982 strip = FALSE;
6984 /* If we're stripping it, and it's not a dynamic symbol, there's
6985 nothing else to do unless it is a forced local symbol. */
6986 if (strip
6987 && h->dynindx == -1
6988 && !h->forced_local)
6989 return TRUE;
6991 sym.st_value = 0;
6992 sym.st_size = h->size;
6993 sym.st_other = h->other;
6994 if (h->forced_local)
6995 sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
6996 else if (h->root.type == bfd_link_hash_undefweak
6997 || h->root.type == bfd_link_hash_defweak)
6998 sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
6999 else
7000 sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
7002 switch (h->root.type)
7004 default:
7005 case bfd_link_hash_new:
7006 case bfd_link_hash_warning:
7007 abort ();
7008 return FALSE;
7010 case bfd_link_hash_undefined:
7011 case bfd_link_hash_undefweak:
7012 input_sec = bfd_und_section_ptr;
7013 sym.st_shndx = SHN_UNDEF;
7014 break;
7016 case bfd_link_hash_defined:
7017 case bfd_link_hash_defweak:
7019 input_sec = h->root.u.def.section;
7020 if (input_sec->output_section != NULL)
7022 sym.st_shndx =
7023 _bfd_elf_section_from_bfd_section (finfo->output_bfd,
7024 input_sec->output_section);
7025 if (sym.st_shndx == SHN_BAD)
7027 (*_bfd_error_handler)
7028 (_("%B: could not find output section %A for input section %A"),
7029 finfo->output_bfd, input_sec->output_section, input_sec);
7030 eoinfo->failed = TRUE;
7031 return FALSE;
7034 /* ELF symbols in relocatable files are section relative,
7035 but in nonrelocatable files they are virtual
7036 addresses. */
7037 sym.st_value = h->root.u.def.value + input_sec->output_offset;
7038 if (! finfo->info->relocatable)
7040 sym.st_value += input_sec->output_section->vma;
7041 if (h->type == STT_TLS)
7043 /* STT_TLS symbols are relative to PT_TLS segment
7044 base. */
7045 BFD_ASSERT (elf_hash_table (finfo->info)->tls_sec != NULL);
7046 sym.st_value -= elf_hash_table (finfo->info)->tls_sec->vma;
7050 else
7052 BFD_ASSERT (input_sec->owner == NULL
7053 || (input_sec->owner->flags & DYNAMIC) != 0);
7054 sym.st_shndx = SHN_UNDEF;
7055 input_sec = bfd_und_section_ptr;
7058 break;
7060 case bfd_link_hash_common:
7061 input_sec = h->root.u.c.p->section;
7062 sym.st_shndx = bed->common_section_index (input_sec);
7063 sym.st_value = 1 << h->root.u.c.p->alignment_power;
7064 break;
7066 case bfd_link_hash_indirect:
7067 /* These symbols are created by symbol versioning. They point
7068 to the decorated version of the name. For example, if the
7069 symbol foo@@GNU_1.2 is the default, which should be used when
7070 foo is used with no version, then we add an indirect symbol
7071 foo which points to foo@@GNU_1.2. We ignore these symbols,
7072 since the indirected symbol is already in the hash table. */
7073 return TRUE;
7076 /* Give the processor backend a chance to tweak the symbol value,
7077 and also to finish up anything that needs to be done for this
7078 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
7079 forced local syms when non-shared is due to a historical quirk. */
7080 if ((h->dynindx != -1
7081 || h->forced_local)
7082 && ((finfo->info->shared
7083 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
7084 || h->root.type != bfd_link_hash_undefweak))
7085 || !h->forced_local)
7086 && elf_hash_table (finfo->info)->dynamic_sections_created)
7088 if (! ((*bed->elf_backend_finish_dynamic_symbol)
7089 (finfo->output_bfd, finfo->info, h, &sym)))
7091 eoinfo->failed = TRUE;
7092 return FALSE;
7096 /* If we are marking the symbol as undefined, and there are no
7097 non-weak references to this symbol from a regular object, then
7098 mark the symbol as weak undefined; if there are non-weak
7099 references, mark the symbol as strong. We can't do this earlier,
7100 because it might not be marked as undefined until the
7101 finish_dynamic_symbol routine gets through with it. */
7102 if (sym.st_shndx == SHN_UNDEF
7103 && h->ref_regular
7104 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
7105 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
7107 int bindtype;
7109 if (h->ref_regular_nonweak)
7110 bindtype = STB_GLOBAL;
7111 else
7112 bindtype = STB_WEAK;
7113 sym.st_info = ELF_ST_INFO (bindtype, ELF_ST_TYPE (sym.st_info));
7116 /* If a non-weak symbol with non-default visibility is not defined
7117 locally, it is a fatal error. */
7118 if (! finfo->info->relocatable
7119 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
7120 && ELF_ST_BIND (sym.st_info) != STB_WEAK
7121 && h->root.type == bfd_link_hash_undefined
7122 && !h->def_regular)
7124 (*_bfd_error_handler)
7125 (_("%B: %s symbol `%s' isn't defined"),
7126 finfo->output_bfd,
7127 ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED
7128 ? "protected"
7129 : ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL
7130 ? "internal" : "hidden",
7131 h->root.root.string);
7132 eoinfo->failed = TRUE;
7133 return FALSE;
7136 /* If this symbol should be put in the .dynsym section, then put it
7137 there now. We already know the symbol index. We also fill in
7138 the entry in the .hash section. */
7139 if (h->dynindx != -1
7140 && elf_hash_table (finfo->info)->dynamic_sections_created)
7142 bfd_byte *esym;
7144 sym.st_name = h->dynstr_index;
7145 esym = finfo->dynsym_sec->contents + h->dynindx * bed->s->sizeof_sym;
7146 if (! check_dynsym (finfo->output_bfd, &sym))
7148 eoinfo->failed = TRUE;
7149 return FALSE;
7151 bed->s->swap_symbol_out (finfo->output_bfd, &sym, esym, 0);
7153 if (finfo->hash_sec != NULL)
7155 size_t hash_entry_size;
7156 bfd_byte *bucketpos;
7157 bfd_vma chain;
7158 size_t bucketcount;
7159 size_t bucket;
7161 bucketcount = elf_hash_table (finfo->info)->bucketcount;
7162 bucket = h->u.elf_hash_value % bucketcount;
7164 hash_entry_size
7165 = elf_section_data (finfo->hash_sec)->this_hdr.sh_entsize;
7166 bucketpos = ((bfd_byte *) finfo->hash_sec->contents
7167 + (bucket + 2) * hash_entry_size);
7168 chain = bfd_get (8 * hash_entry_size, finfo->output_bfd, bucketpos);
7169 bfd_put (8 * hash_entry_size, finfo->output_bfd, h->dynindx, bucketpos);
7170 bfd_put (8 * hash_entry_size, finfo->output_bfd, chain,
7171 ((bfd_byte *) finfo->hash_sec->contents
7172 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
7175 if (finfo->symver_sec != NULL && finfo->symver_sec->contents != NULL)
7177 Elf_Internal_Versym iversym;
7178 Elf_External_Versym *eversym;
7180 if (!h->def_regular)
7182 if (h->verinfo.verdef == NULL)
7183 iversym.vs_vers = 0;
7184 else
7185 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
7187 else
7189 if (h->verinfo.vertree == NULL)
7190 iversym.vs_vers = 1;
7191 else
7192 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
7193 if (finfo->info->create_default_symver)
7194 iversym.vs_vers++;
7197 if (h->hidden)
7198 iversym.vs_vers |= VERSYM_HIDDEN;
7200 eversym = (Elf_External_Versym *) finfo->symver_sec->contents;
7201 eversym += h->dynindx;
7202 _bfd_elf_swap_versym_out (finfo->output_bfd, &iversym, eversym);
7206 /* If we're stripping it, then it was just a dynamic symbol, and
7207 there's nothing else to do. */
7208 if (strip || (input_sec->flags & SEC_EXCLUDE) != 0)
7209 return TRUE;
7211 h->indx = bfd_get_symcount (finfo->output_bfd);
7213 if (! elf_link_output_sym (finfo, h->root.root.string, &sym, input_sec, h))
7215 eoinfo->failed = TRUE;
7216 return FALSE;
7219 return TRUE;
7222 /* Return TRUE if special handling is done for relocs in SEC against
7223 symbols defined in discarded sections. */
7225 static bfd_boolean
7226 elf_section_ignore_discarded_relocs (asection *sec)
7228 const struct elf_backend_data *bed;
7230 switch (sec->sec_info_type)
7232 case ELF_INFO_TYPE_STABS:
7233 case ELF_INFO_TYPE_EH_FRAME:
7234 return TRUE;
7235 default:
7236 break;
7239 bed = get_elf_backend_data (sec->owner);
7240 if (bed->elf_backend_ignore_discarded_relocs != NULL
7241 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
7242 return TRUE;
7244 return FALSE;
7247 /* Return a mask saying how ld should treat relocations in SEC against
7248 symbols defined in discarded sections. If this function returns
7249 COMPLAIN set, ld will issue a warning message. If this function
7250 returns PRETEND set, and the discarded section was link-once and the
7251 same size as the kept link-once section, ld will pretend that the
7252 symbol was actually defined in the kept section. Otherwise ld will
7253 zero the reloc (at least that is the intent, but some cooperation by
7254 the target dependent code is needed, particularly for REL targets). */
7256 unsigned int
7257 _bfd_elf_default_action_discarded (asection *sec)
7259 if (sec->flags & SEC_DEBUGGING)
7260 return PRETEND;
7262 if (strcmp (".eh_frame", sec->name) == 0)
7263 return 0;
7265 if (strcmp (".gcc_except_table", sec->name) == 0)
7266 return 0;
7268 return COMPLAIN | PRETEND;
7271 /* Find a match between a section and a member of a section group. */
7273 static asection *
7274 match_group_member (asection *sec, asection *group,
7275 struct bfd_link_info *info)
7277 asection *first = elf_next_in_group (group);
7278 asection *s = first;
7280 while (s != NULL)
7282 if (bfd_elf_match_symbols_in_sections (s, sec, info))
7283 return s;
7285 s = elf_next_in_group (s);
7286 if (s == first)
7287 break;
7290 return NULL;
7293 /* Check if the kept section of a discarded section SEC can be used
7294 to replace it. Return the replacement if it is OK. Otherwise return
7295 NULL. */
7297 asection *
7298 _bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
7300 asection *kept;
7302 kept = sec->kept_section;
7303 if (kept != NULL)
7305 if ((kept->flags & SEC_GROUP) != 0)
7306 kept = match_group_member (sec, kept, info);
7307 if (kept != NULL && sec->size != kept->size)
7308 kept = NULL;
7309 sec->kept_section = kept;
7311 return kept;
7314 /* Link an input file into the linker output file. This function
7315 handles all the sections and relocations of the input file at once.
7316 This is so that we only have to read the local symbols once, and
7317 don't have to keep them in memory. */
7319 static bfd_boolean
7320 elf_link_input_bfd (struct elf_final_link_info *finfo, bfd *input_bfd)
7322 bfd_boolean (*relocate_section)
7323 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
7324 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
7325 bfd *output_bfd;
7326 Elf_Internal_Shdr *symtab_hdr;
7327 size_t locsymcount;
7328 size_t extsymoff;
7329 Elf_Internal_Sym *isymbuf;
7330 Elf_Internal_Sym *isym;
7331 Elf_Internal_Sym *isymend;
7332 long *pindex;
7333 asection **ppsection;
7334 asection *o;
7335 const struct elf_backend_data *bed;
7336 bfd_boolean emit_relocs;
7337 struct elf_link_hash_entry **sym_hashes;
7339 output_bfd = finfo->output_bfd;
7340 bed = get_elf_backend_data (output_bfd);
7341 relocate_section = bed->elf_backend_relocate_section;
7343 /* If this is a dynamic object, we don't want to do anything here:
7344 we don't want the local symbols, and we don't want the section
7345 contents. */
7346 if ((input_bfd->flags & DYNAMIC) != 0)
7347 return TRUE;
7349 emit_relocs = (finfo->info->relocatable
7350 || finfo->info->emitrelocations);
7352 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
7353 if (elf_bad_symtab (input_bfd))
7355 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
7356 extsymoff = 0;
7358 else
7360 locsymcount = symtab_hdr->sh_info;
7361 extsymoff = symtab_hdr->sh_info;
7364 /* Read the local symbols. */
7365 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
7366 if (isymbuf == NULL && locsymcount != 0)
7368 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
7369 finfo->internal_syms,
7370 finfo->external_syms,
7371 finfo->locsym_shndx);
7372 if (isymbuf == NULL)
7373 return FALSE;
7376 /* Find local symbol sections and adjust values of symbols in
7377 SEC_MERGE sections. Write out those local symbols we know are
7378 going into the output file. */
7379 isymend = isymbuf + locsymcount;
7380 for (isym = isymbuf, pindex = finfo->indices, ppsection = finfo->sections;
7381 isym < isymend;
7382 isym++, pindex++, ppsection++)
7384 asection *isec;
7385 const char *name;
7386 Elf_Internal_Sym osym;
7388 *pindex = -1;
7390 if (elf_bad_symtab (input_bfd))
7392 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
7394 *ppsection = NULL;
7395 continue;
7399 if (isym->st_shndx == SHN_UNDEF)
7400 isec = bfd_und_section_ptr;
7401 else if (isym->st_shndx < SHN_LORESERVE
7402 || isym->st_shndx > SHN_HIRESERVE)
7404 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
7405 if (isec
7406 && isec->sec_info_type == ELF_INFO_TYPE_MERGE
7407 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
7408 isym->st_value =
7409 _bfd_merged_section_offset (output_bfd, &isec,
7410 elf_section_data (isec)->sec_info,
7411 isym->st_value);
7413 else if (isym->st_shndx == SHN_ABS)
7414 isec = bfd_abs_section_ptr;
7415 else if (isym->st_shndx == SHN_COMMON)
7416 isec = bfd_com_section_ptr;
7417 else
7419 /* Don't attempt to output symbols with st_shnx in the
7420 reserved range other than SHN_ABS and SHN_COMMON. */
7421 *ppsection = NULL;
7422 continue;
7425 *ppsection = isec;
7427 /* Don't output the first, undefined, symbol. */
7428 if (ppsection == finfo->sections)
7429 continue;
7431 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
7433 /* We never output section symbols. Instead, we use the
7434 section symbol of the corresponding section in the output
7435 file. */
7436 continue;
7439 /* If we are stripping all symbols, we don't want to output this
7440 one. */
7441 if (finfo->info->strip == strip_all)
7442 continue;
7444 /* If we are discarding all local symbols, we don't want to
7445 output this one. If we are generating a relocatable output
7446 file, then some of the local symbols may be required by
7447 relocs; we output them below as we discover that they are
7448 needed. */
7449 if (finfo->info->discard == discard_all)
7450 continue;
7452 /* If this symbol is defined in a section which we are
7453 discarding, we don't need to keep it. */
7454 if (isym->st_shndx != SHN_UNDEF
7455 && (isym->st_shndx < SHN_LORESERVE || isym->st_shndx > SHN_HIRESERVE)
7456 && (isec == NULL
7457 || bfd_section_removed_from_list (output_bfd,
7458 isec->output_section)))
7459 continue;
7461 /* Get the name of the symbol. */
7462 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
7463 isym->st_name);
7464 if (name == NULL)
7465 return FALSE;
7467 /* See if we are discarding symbols with this name. */
7468 if ((finfo->info->strip == strip_some
7469 && (bfd_hash_lookup (finfo->info->keep_hash, name, FALSE, FALSE)
7470 == NULL))
7471 || (((finfo->info->discard == discard_sec_merge
7472 && (isec->flags & SEC_MERGE) && ! finfo->info->relocatable)
7473 || finfo->info->discard == discard_l)
7474 && bfd_is_local_label_name (input_bfd, name)))
7475 continue;
7477 /* If we get here, we are going to output this symbol. */
7479 osym = *isym;
7481 /* Adjust the section index for the output file. */
7482 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
7483 isec->output_section);
7484 if (osym.st_shndx == SHN_BAD)
7485 return FALSE;
7487 *pindex = bfd_get_symcount (output_bfd);
7489 /* ELF symbols in relocatable files are section relative, but
7490 in executable files they are virtual addresses. Note that
7491 this code assumes that all ELF sections have an associated
7492 BFD section with a reasonable value for output_offset; below
7493 we assume that they also have a reasonable value for
7494 output_section. Any special sections must be set up to meet
7495 these requirements. */
7496 osym.st_value += isec->output_offset;
7497 if (! finfo->info->relocatable)
7499 osym.st_value += isec->output_section->vma;
7500 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
7502 /* STT_TLS symbols are relative to PT_TLS segment base. */
7503 BFD_ASSERT (elf_hash_table (finfo->info)->tls_sec != NULL);
7504 osym.st_value -= elf_hash_table (finfo->info)->tls_sec->vma;
7508 if (! elf_link_output_sym (finfo, name, &osym, isec, NULL))
7509 return FALSE;
7512 /* Relocate the contents of each section. */
7513 sym_hashes = elf_sym_hashes (input_bfd);
7514 for (o = input_bfd->sections; o != NULL; o = o->next)
7516 bfd_byte *contents;
7518 if (! o->linker_mark)
7520 /* This section was omitted from the link. */
7521 continue;
7524 if ((o->flags & SEC_HAS_CONTENTS) == 0
7525 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
7526 continue;
7528 if ((o->flags & SEC_LINKER_CREATED) != 0)
7530 /* Section was created by _bfd_elf_link_create_dynamic_sections
7531 or somesuch. */
7532 continue;
7535 /* Get the contents of the section. They have been cached by a
7536 relaxation routine. Note that o is a section in an input
7537 file, so the contents field will not have been set by any of
7538 the routines which work on output files. */
7539 if (elf_section_data (o)->this_hdr.contents != NULL)
7540 contents = elf_section_data (o)->this_hdr.contents;
7541 else
7543 bfd_size_type amt = o->rawsize ? o->rawsize : o->size;
7545 contents = finfo->contents;
7546 if (! bfd_get_section_contents (input_bfd, o, contents, 0, amt))
7547 return FALSE;
7550 if ((o->flags & SEC_RELOC) != 0)
7552 Elf_Internal_Rela *internal_relocs;
7553 bfd_vma r_type_mask;
7554 int r_sym_shift;
7556 /* Get the swapped relocs. */
7557 internal_relocs
7558 = _bfd_elf_link_read_relocs (input_bfd, o, finfo->external_relocs,
7559 finfo->internal_relocs, FALSE);
7560 if (internal_relocs == NULL
7561 && o->reloc_count > 0)
7562 return FALSE;
7564 if (bed->s->arch_size == 32)
7566 r_type_mask = 0xff;
7567 r_sym_shift = 8;
7569 else
7571 r_type_mask = 0xffffffff;
7572 r_sym_shift = 32;
7575 /* Run through the relocs looking for any against symbols
7576 from discarded sections and section symbols from
7577 removed link-once sections. Complain about relocs
7578 against discarded sections. Zero relocs against removed
7579 link-once sections. */
7580 if (!elf_section_ignore_discarded_relocs (o))
7582 Elf_Internal_Rela *rel, *relend;
7583 unsigned int action = (*bed->action_discarded) (o);
7585 rel = internal_relocs;
7586 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
7587 for ( ; rel < relend; rel++)
7589 unsigned long r_symndx = rel->r_info >> r_sym_shift;
7590 asection **ps, *sec;
7591 struct elf_link_hash_entry *h = NULL;
7592 const char *sym_name;
7594 if (r_symndx == STN_UNDEF)
7595 continue;
7597 if (r_symndx >= locsymcount
7598 || (elf_bad_symtab (input_bfd)
7599 && finfo->sections[r_symndx] == NULL))
7601 h = sym_hashes[r_symndx - extsymoff];
7603 /* Badly formatted input files can contain relocs that
7604 reference non-existant symbols. Check here so that
7605 we do not seg fault. */
7606 if (h == NULL)
7608 char buffer [32];
7610 sprintf_vma (buffer, rel->r_info);
7611 (*_bfd_error_handler)
7612 (_("error: %B contains a reloc (0x%s) for section %A "
7613 "that references a non-existent global symbol"),
7614 input_bfd, o, buffer);
7615 bfd_set_error (bfd_error_bad_value);
7616 return FALSE;
7619 while (h->root.type == bfd_link_hash_indirect
7620 || h->root.type == bfd_link_hash_warning)
7621 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7623 if (h->root.type != bfd_link_hash_defined
7624 && h->root.type != bfd_link_hash_defweak)
7625 continue;
7627 ps = &h->root.u.def.section;
7628 sym_name = h->root.root.string;
7630 else
7632 Elf_Internal_Sym *sym = isymbuf + r_symndx;
7633 ps = &finfo->sections[r_symndx];
7634 sym_name = bfd_elf_sym_name (input_bfd,
7635 symtab_hdr,
7636 sym, *ps);
7639 /* Complain if the definition comes from a
7640 discarded section. */
7641 if ((sec = *ps) != NULL && elf_discarded_section (sec))
7643 BFD_ASSERT (r_symndx != 0);
7644 if (action & COMPLAIN)
7645 (*finfo->info->callbacks->einfo)
7646 (_("%X`%s' referenced in section `%A' of %B: "
7647 "defined in discarded section `%A' of %B\n"),
7648 sym_name, o, input_bfd, sec, sec->owner);
7650 /* Try to do the best we can to support buggy old
7651 versions of gcc. Pretend that the symbol is
7652 really defined in the kept linkonce section.
7653 FIXME: This is quite broken. Modifying the
7654 symbol here means we will be changing all later
7655 uses of the symbol, not just in this section. */
7656 if (action & PRETEND)
7658 asection *kept;
7660 kept = _bfd_elf_check_kept_section (sec,
7661 finfo->info);
7662 if (kept != NULL)
7664 *ps = kept;
7665 continue;
7669 /* Remove the symbol reference from the reloc, but
7670 don't kill the reloc completely. This is so that
7671 a zero value will be written into the section,
7672 which may have non-zero contents put there by the
7673 assembler. Zero in things like an eh_frame fde
7674 pc_begin allows stack unwinders to recognize the
7675 fde as bogus. */
7676 rel->r_info &= r_type_mask;
7677 rel->r_addend = 0;
7682 /* Relocate the section by invoking a back end routine.
7684 The back end routine is responsible for adjusting the
7685 section contents as necessary, and (if using Rela relocs
7686 and generating a relocatable output file) adjusting the
7687 reloc addend as necessary.
7689 The back end routine does not have to worry about setting
7690 the reloc address or the reloc symbol index.
7692 The back end routine is given a pointer to the swapped in
7693 internal symbols, and can access the hash table entries
7694 for the external symbols via elf_sym_hashes (input_bfd).
7696 When generating relocatable output, the back end routine
7697 must handle STB_LOCAL/STT_SECTION symbols specially. The
7698 output symbol is going to be a section symbol
7699 corresponding to the output section, which will require
7700 the addend to be adjusted. */
7702 if (! (*relocate_section) (output_bfd, finfo->info,
7703 input_bfd, o, contents,
7704 internal_relocs,
7705 isymbuf,
7706 finfo->sections))
7707 return FALSE;
7709 if (emit_relocs)
7711 Elf_Internal_Rela *irela;
7712 Elf_Internal_Rela *irelaend;
7713 bfd_vma last_offset;
7714 struct elf_link_hash_entry **rel_hash;
7715 struct elf_link_hash_entry **rel_hash_list;
7716 Elf_Internal_Shdr *input_rel_hdr, *input_rel_hdr2;
7717 unsigned int next_erel;
7718 bfd_boolean rela_normal;
7720 input_rel_hdr = &elf_section_data (o)->rel_hdr;
7721 rela_normal = (bed->rela_normal
7722 && (input_rel_hdr->sh_entsize
7723 == bed->s->sizeof_rela));
7725 /* Adjust the reloc addresses and symbol indices. */
7727 irela = internal_relocs;
7728 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
7729 rel_hash = (elf_section_data (o->output_section)->rel_hashes
7730 + elf_section_data (o->output_section)->rel_count
7731 + elf_section_data (o->output_section)->rel_count2);
7732 rel_hash_list = rel_hash;
7733 last_offset = o->output_offset;
7734 if (!finfo->info->relocatable)
7735 last_offset += o->output_section->vma;
7736 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
7738 unsigned long r_symndx;
7739 asection *sec;
7740 Elf_Internal_Sym sym;
7742 if (next_erel == bed->s->int_rels_per_ext_rel)
7744 rel_hash++;
7745 next_erel = 0;
7748 irela->r_offset = _bfd_elf_section_offset (output_bfd,
7749 finfo->info, o,
7750 irela->r_offset);
7751 if (irela->r_offset >= (bfd_vma) -2)
7753 /* This is a reloc for a deleted entry or somesuch.
7754 Turn it into an R_*_NONE reloc, at the same
7755 offset as the last reloc. elf_eh_frame.c and
7756 bfd_elf_discard_info rely on reloc offsets
7757 being ordered. */
7758 irela->r_offset = last_offset;
7759 irela->r_info = 0;
7760 irela->r_addend = 0;
7761 continue;
7764 irela->r_offset += o->output_offset;
7766 /* Relocs in an executable have to be virtual addresses. */
7767 if (!finfo->info->relocatable)
7768 irela->r_offset += o->output_section->vma;
7770 last_offset = irela->r_offset;
7772 r_symndx = irela->r_info >> r_sym_shift;
7773 if (r_symndx == STN_UNDEF)
7774 continue;
7776 if (r_symndx >= locsymcount
7777 || (elf_bad_symtab (input_bfd)
7778 && finfo->sections[r_symndx] == NULL))
7780 struct elf_link_hash_entry *rh;
7781 unsigned long indx;
7783 /* This is a reloc against a global symbol. We
7784 have not yet output all the local symbols, so
7785 we do not know the symbol index of any global
7786 symbol. We set the rel_hash entry for this
7787 reloc to point to the global hash table entry
7788 for this symbol. The symbol index is then
7789 set at the end of bfd_elf_final_link. */
7790 indx = r_symndx - extsymoff;
7791 rh = elf_sym_hashes (input_bfd)[indx];
7792 while (rh->root.type == bfd_link_hash_indirect
7793 || rh->root.type == bfd_link_hash_warning)
7794 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
7796 /* Setting the index to -2 tells
7797 elf_link_output_extsym that this symbol is
7798 used by a reloc. */
7799 BFD_ASSERT (rh->indx < 0);
7800 rh->indx = -2;
7802 *rel_hash = rh;
7804 continue;
7807 /* This is a reloc against a local symbol. */
7809 *rel_hash = NULL;
7810 sym = isymbuf[r_symndx];
7811 sec = finfo->sections[r_symndx];
7812 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
7814 /* I suppose the backend ought to fill in the
7815 section of any STT_SECTION symbol against a
7816 processor specific section. */
7817 r_symndx = 0;
7818 if (bfd_is_abs_section (sec))
7820 else if (sec == NULL || sec->owner == NULL)
7822 bfd_set_error (bfd_error_bad_value);
7823 return FALSE;
7825 else
7827 asection *osec = sec->output_section;
7829 /* If we have discarded a section, the output
7830 section will be the absolute section. In
7831 case of discarded link-once and discarded
7832 SEC_MERGE sections, use the kept section. */
7833 if (bfd_is_abs_section (osec)
7834 && sec->kept_section != NULL
7835 && sec->kept_section->output_section != NULL)
7837 osec = sec->kept_section->output_section;
7838 irela->r_addend -= osec->vma;
7841 if (!bfd_is_abs_section (osec))
7843 r_symndx = osec->target_index;
7844 if (r_symndx == 0)
7846 struct elf_link_hash_table *htab;
7847 asection *oi;
7849 htab = elf_hash_table (finfo->info);
7850 oi = htab->text_index_section;
7851 if ((osec->flags & SEC_READONLY) == 0
7852 && htab->data_index_section != NULL)
7853 oi = htab->data_index_section;
7855 if (oi != NULL)
7857 irela->r_addend += osec->vma - oi->vma;
7858 r_symndx = oi->target_index;
7862 BFD_ASSERT (r_symndx != 0);
7866 /* Adjust the addend according to where the
7867 section winds up in the output section. */
7868 if (rela_normal)
7869 irela->r_addend += sec->output_offset;
7871 else
7873 if (finfo->indices[r_symndx] == -1)
7875 unsigned long shlink;
7876 const char *name;
7877 asection *osec;
7879 if (finfo->info->strip == strip_all)
7881 /* You can't do ld -r -s. */
7882 bfd_set_error (bfd_error_invalid_operation);
7883 return FALSE;
7886 /* This symbol was skipped earlier, but
7887 since it is needed by a reloc, we
7888 must output it now. */
7889 shlink = symtab_hdr->sh_link;
7890 name = (bfd_elf_string_from_elf_section
7891 (input_bfd, shlink, sym.st_name));
7892 if (name == NULL)
7893 return FALSE;
7895 osec = sec->output_section;
7896 sym.st_shndx =
7897 _bfd_elf_section_from_bfd_section (output_bfd,
7898 osec);
7899 if (sym.st_shndx == SHN_BAD)
7900 return FALSE;
7902 sym.st_value += sec->output_offset;
7903 if (! finfo->info->relocatable)
7905 sym.st_value += osec->vma;
7906 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
7908 /* STT_TLS symbols are relative to PT_TLS
7909 segment base. */
7910 BFD_ASSERT (elf_hash_table (finfo->info)
7911 ->tls_sec != NULL);
7912 sym.st_value -= (elf_hash_table (finfo->info)
7913 ->tls_sec->vma);
7917 finfo->indices[r_symndx]
7918 = bfd_get_symcount (output_bfd);
7920 if (! elf_link_output_sym (finfo, name, &sym, sec,
7921 NULL))
7922 return FALSE;
7925 r_symndx = finfo->indices[r_symndx];
7928 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
7929 | (irela->r_info & r_type_mask));
7932 /* Swap out the relocs. */
7933 if (input_rel_hdr->sh_size != 0
7934 && !bed->elf_backend_emit_relocs (output_bfd, o,
7935 input_rel_hdr,
7936 internal_relocs,
7937 rel_hash_list))
7938 return FALSE;
7940 input_rel_hdr2 = elf_section_data (o)->rel_hdr2;
7941 if (input_rel_hdr2 && input_rel_hdr2->sh_size != 0)
7943 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
7944 * bed->s->int_rels_per_ext_rel);
7945 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
7946 if (!bed->elf_backend_emit_relocs (output_bfd, o,
7947 input_rel_hdr2,
7948 internal_relocs,
7949 rel_hash_list))
7950 return FALSE;
7955 /* Write out the modified section contents. */
7956 if (bed->elf_backend_write_section
7957 && (*bed->elf_backend_write_section) (output_bfd, o, contents))
7959 /* Section written out. */
7961 else switch (o->sec_info_type)
7963 case ELF_INFO_TYPE_STABS:
7964 if (! (_bfd_write_section_stabs
7965 (output_bfd,
7966 &elf_hash_table (finfo->info)->stab_info,
7967 o, &elf_section_data (o)->sec_info, contents)))
7968 return FALSE;
7969 break;
7970 case ELF_INFO_TYPE_MERGE:
7971 if (! _bfd_write_merged_section (output_bfd, o,
7972 elf_section_data (o)->sec_info))
7973 return FALSE;
7974 break;
7975 case ELF_INFO_TYPE_EH_FRAME:
7977 if (! _bfd_elf_write_section_eh_frame (output_bfd, finfo->info,
7978 o, contents))
7979 return FALSE;
7981 break;
7982 default:
7984 if (! (o->flags & SEC_EXCLUDE)
7985 && ! bfd_set_section_contents (output_bfd, o->output_section,
7986 contents,
7987 (file_ptr) o->output_offset,
7988 o->size))
7989 return FALSE;
7991 break;
7995 return TRUE;
7998 /* Generate a reloc when linking an ELF file. This is a reloc
7999 requested by the linker, and does not come from any input file. This
8000 is used to build constructor and destructor tables when linking
8001 with -Ur. */
8003 static bfd_boolean
8004 elf_reloc_link_order (bfd *output_bfd,
8005 struct bfd_link_info *info,
8006 asection *output_section,
8007 struct bfd_link_order *link_order)
8009 reloc_howto_type *howto;
8010 long indx;
8011 bfd_vma offset;
8012 bfd_vma addend;
8013 struct elf_link_hash_entry **rel_hash_ptr;
8014 Elf_Internal_Shdr *rel_hdr;
8015 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
8016 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
8017 bfd_byte *erel;
8018 unsigned int i;
8020 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
8021 if (howto == NULL)
8023 bfd_set_error (bfd_error_bad_value);
8024 return FALSE;
8027 addend = link_order->u.reloc.p->addend;
8029 /* Figure out the symbol index. */
8030 rel_hash_ptr = (elf_section_data (output_section)->rel_hashes
8031 + elf_section_data (output_section)->rel_count
8032 + elf_section_data (output_section)->rel_count2);
8033 if (link_order->type == bfd_section_reloc_link_order)
8035 indx = link_order->u.reloc.p->u.section->target_index;
8036 BFD_ASSERT (indx != 0);
8037 *rel_hash_ptr = NULL;
8039 else
8041 struct elf_link_hash_entry *h;
8043 /* Treat a reloc against a defined symbol as though it were
8044 actually against the section. */
8045 h = ((struct elf_link_hash_entry *)
8046 bfd_wrapped_link_hash_lookup (output_bfd, info,
8047 link_order->u.reloc.p->u.name,
8048 FALSE, FALSE, TRUE));
8049 if (h != NULL
8050 && (h->root.type == bfd_link_hash_defined
8051 || h->root.type == bfd_link_hash_defweak))
8053 asection *section;
8055 section = h->root.u.def.section;
8056 indx = section->output_section->target_index;
8057 *rel_hash_ptr = NULL;
8058 /* It seems that we ought to add the symbol value to the
8059 addend here, but in practice it has already been added
8060 because it was passed to constructor_callback. */
8061 addend += section->output_section->vma + section->output_offset;
8063 else if (h != NULL)
8065 /* Setting the index to -2 tells elf_link_output_extsym that
8066 this symbol is used by a reloc. */
8067 h->indx = -2;
8068 *rel_hash_ptr = h;
8069 indx = 0;
8071 else
8073 if (! ((*info->callbacks->unattached_reloc)
8074 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0)))
8075 return FALSE;
8076 indx = 0;
8080 /* If this is an inplace reloc, we must write the addend into the
8081 object file. */
8082 if (howto->partial_inplace && addend != 0)
8084 bfd_size_type size;
8085 bfd_reloc_status_type rstat;
8086 bfd_byte *buf;
8087 bfd_boolean ok;
8088 const char *sym_name;
8090 size = bfd_get_reloc_size (howto);
8091 buf = bfd_zmalloc (size);
8092 if (buf == NULL)
8093 return FALSE;
8094 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
8095 switch (rstat)
8097 case bfd_reloc_ok:
8098 break;
8100 default:
8101 case bfd_reloc_outofrange:
8102 abort ();
8104 case bfd_reloc_overflow:
8105 if (link_order->type == bfd_section_reloc_link_order)
8106 sym_name = bfd_section_name (output_bfd,
8107 link_order->u.reloc.p->u.section);
8108 else
8109 sym_name = link_order->u.reloc.p->u.name;
8110 if (! ((*info->callbacks->reloc_overflow)
8111 (info, NULL, sym_name, howto->name, addend, NULL,
8112 NULL, (bfd_vma) 0)))
8114 free (buf);
8115 return FALSE;
8117 break;
8119 ok = bfd_set_section_contents (output_bfd, output_section, buf,
8120 link_order->offset, size);
8121 free (buf);
8122 if (! ok)
8123 return FALSE;
8126 /* The address of a reloc is relative to the section in a
8127 relocatable file, and is a virtual address in an executable
8128 file. */
8129 offset = link_order->offset;
8130 if (! info->relocatable)
8131 offset += output_section->vma;
8133 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
8135 irel[i].r_offset = offset;
8136 irel[i].r_info = 0;
8137 irel[i].r_addend = 0;
8139 if (bed->s->arch_size == 32)
8140 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
8141 else
8142 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
8144 rel_hdr = &elf_section_data (output_section)->rel_hdr;
8145 erel = rel_hdr->contents;
8146 if (rel_hdr->sh_type == SHT_REL)
8148 erel += (elf_section_data (output_section)->rel_count
8149 * bed->s->sizeof_rel);
8150 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
8152 else
8154 irel[0].r_addend = addend;
8155 erel += (elf_section_data (output_section)->rel_count
8156 * bed->s->sizeof_rela);
8157 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
8160 ++elf_section_data (output_section)->rel_count;
8162 return TRUE;
8166 /* Get the output vma of the section pointed to by the sh_link field. */
8168 static bfd_vma
8169 elf_get_linked_section_vma (struct bfd_link_order *p)
8171 Elf_Internal_Shdr **elf_shdrp;
8172 asection *s;
8173 int elfsec;
8175 s = p->u.indirect.section;
8176 elf_shdrp = elf_elfsections (s->owner);
8177 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
8178 elfsec = elf_shdrp[elfsec]->sh_link;
8179 /* PR 290:
8180 The Intel C compiler generates SHT_IA_64_UNWIND with
8181 SHF_LINK_ORDER. But it doesn't set the sh_link or
8182 sh_info fields. Hence we could get the situation
8183 where elfsec is 0. */
8184 if (elfsec == 0)
8186 const struct elf_backend_data *bed
8187 = get_elf_backend_data (s->owner);
8188 if (bed->link_order_error_handler)
8189 bed->link_order_error_handler
8190 (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
8191 return 0;
8193 else
8195 s = elf_shdrp[elfsec]->bfd_section;
8196 return s->output_section->vma + s->output_offset;
8201 /* Compare two sections based on the locations of the sections they are
8202 linked to. Used by elf_fixup_link_order. */
8204 static int
8205 compare_link_order (const void * a, const void * b)
8207 bfd_vma apos;
8208 bfd_vma bpos;
8210 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
8211 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
8212 if (apos < bpos)
8213 return -1;
8214 return apos > bpos;
8218 /* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
8219 order as their linked sections. Returns false if this could not be done
8220 because an output section includes both ordered and unordered
8221 sections. Ideally we'd do this in the linker proper. */
8223 static bfd_boolean
8224 elf_fixup_link_order (bfd *abfd, asection *o)
8226 int seen_linkorder;
8227 int seen_other;
8228 int n;
8229 struct bfd_link_order *p;
8230 bfd *sub;
8231 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8232 unsigned elfsec;
8233 struct bfd_link_order **sections;
8234 asection *s, *other_sec, *linkorder_sec;
8235 bfd_vma offset;
8237 other_sec = NULL;
8238 linkorder_sec = NULL;
8239 seen_other = 0;
8240 seen_linkorder = 0;
8241 for (p = o->map_head.link_order; p != NULL; p = p->next)
8243 if (p->type == bfd_indirect_link_order)
8245 s = p->u.indirect.section;
8246 sub = s->owner;
8247 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
8248 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
8249 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
8250 && elfsec < elf_numsections (sub)
8251 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER)
8253 seen_linkorder++;
8254 linkorder_sec = s;
8256 else
8258 seen_other++;
8259 other_sec = s;
8262 else
8263 seen_other++;
8265 if (seen_other && seen_linkorder)
8267 if (other_sec && linkorder_sec)
8268 (*_bfd_error_handler) (_("%A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections"),
8269 o, linkorder_sec,
8270 linkorder_sec->owner, other_sec,
8271 other_sec->owner);
8272 else
8273 (*_bfd_error_handler) (_("%A has both ordered and unordered sections"),
8275 bfd_set_error (bfd_error_bad_value);
8276 return FALSE;
8280 if (!seen_linkorder)
8281 return TRUE;
8283 sections = (struct bfd_link_order **)
8284 xmalloc (seen_linkorder * sizeof (struct bfd_link_order *));
8285 seen_linkorder = 0;
8287 for (p = o->map_head.link_order; p != NULL; p = p->next)
8289 sections[seen_linkorder++] = p;
8291 /* Sort the input sections in the order of their linked section. */
8292 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
8293 compare_link_order);
8295 /* Change the offsets of the sections. */
8296 offset = 0;
8297 for (n = 0; n < seen_linkorder; n++)
8299 s = sections[n]->u.indirect.section;
8300 offset &= ~(bfd_vma)((1 << s->alignment_power) - 1);
8301 s->output_offset = offset;
8302 sections[n]->offset = offset;
8303 offset += sections[n]->size;
8306 return TRUE;
8310 /* Do the final step of an ELF link. */
8312 bfd_boolean
8313 bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
8315 bfd_boolean dynamic;
8316 bfd_boolean emit_relocs;
8317 bfd *dynobj;
8318 struct elf_final_link_info finfo;
8319 register asection *o;
8320 register struct bfd_link_order *p;
8321 register bfd *sub;
8322 bfd_size_type max_contents_size;
8323 bfd_size_type max_external_reloc_size;
8324 bfd_size_type max_internal_reloc_count;
8325 bfd_size_type max_sym_count;
8326 bfd_size_type max_sym_shndx_count;
8327 file_ptr off;
8328 Elf_Internal_Sym elfsym;
8329 unsigned int i;
8330 Elf_Internal_Shdr *symtab_hdr;
8331 Elf_Internal_Shdr *symtab_shndx_hdr;
8332 Elf_Internal_Shdr *symstrtab_hdr;
8333 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8334 struct elf_outext_info eoinfo;
8335 bfd_boolean merged;
8336 size_t relativecount = 0;
8337 asection *reldyn = 0;
8338 bfd_size_type amt;
8340 if (! is_elf_hash_table (info->hash))
8341 return FALSE;
8343 if (info->shared)
8344 abfd->flags |= DYNAMIC;
8346 dynamic = elf_hash_table (info)->dynamic_sections_created;
8347 dynobj = elf_hash_table (info)->dynobj;
8349 emit_relocs = (info->relocatable
8350 || info->emitrelocations);
8352 finfo.info = info;
8353 finfo.output_bfd = abfd;
8354 finfo.symstrtab = _bfd_elf_stringtab_init ();
8355 if (finfo.symstrtab == NULL)
8356 return FALSE;
8358 if (! dynamic)
8360 finfo.dynsym_sec = NULL;
8361 finfo.hash_sec = NULL;
8362 finfo.symver_sec = NULL;
8364 else
8366 finfo.dynsym_sec = bfd_get_section_by_name (dynobj, ".dynsym");
8367 finfo.hash_sec = bfd_get_section_by_name (dynobj, ".hash");
8368 BFD_ASSERT (finfo.dynsym_sec != NULL);
8369 finfo.symver_sec = bfd_get_section_by_name (dynobj, ".gnu.version");
8370 /* Note that it is OK if symver_sec is NULL. */
8373 finfo.contents = NULL;
8374 finfo.external_relocs = NULL;
8375 finfo.internal_relocs = NULL;
8376 finfo.external_syms = NULL;
8377 finfo.locsym_shndx = NULL;
8378 finfo.internal_syms = NULL;
8379 finfo.indices = NULL;
8380 finfo.sections = NULL;
8381 finfo.symbuf = NULL;
8382 finfo.symshndxbuf = NULL;
8383 finfo.symbuf_count = 0;
8384 finfo.shndxbuf_size = 0;
8386 /* Count up the number of relocations we will output for each output
8387 section, so that we know the sizes of the reloc sections. We
8388 also figure out some maximum sizes. */
8389 max_contents_size = 0;
8390 max_external_reloc_size = 0;
8391 max_internal_reloc_count = 0;
8392 max_sym_count = 0;
8393 max_sym_shndx_count = 0;
8394 merged = FALSE;
8395 for (o = abfd->sections; o != NULL; o = o->next)
8397 struct bfd_elf_section_data *esdo = elf_section_data (o);
8398 o->reloc_count = 0;
8400 for (p = o->map_head.link_order; p != NULL; p = p->next)
8402 unsigned int reloc_count = 0;
8403 struct bfd_elf_section_data *esdi = NULL;
8404 unsigned int *rel_count1;
8406 if (p->type == bfd_section_reloc_link_order
8407 || p->type == bfd_symbol_reloc_link_order)
8408 reloc_count = 1;
8409 else if (p->type == bfd_indirect_link_order)
8411 asection *sec;
8413 sec = p->u.indirect.section;
8414 esdi = elf_section_data (sec);
8416 /* Mark all sections which are to be included in the
8417 link. This will normally be every section. We need
8418 to do this so that we can identify any sections which
8419 the linker has decided to not include. */
8420 sec->linker_mark = TRUE;
8422 if (sec->flags & SEC_MERGE)
8423 merged = TRUE;
8425 if (info->relocatable || info->emitrelocations)
8426 reloc_count = sec->reloc_count;
8427 else if (bed->elf_backend_count_relocs)
8429 Elf_Internal_Rela * relocs;
8431 relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
8432 info->keep_memory);
8434 reloc_count = (*bed->elf_backend_count_relocs) (sec, relocs);
8436 if (elf_section_data (o)->relocs != relocs)
8437 free (relocs);
8440 if (sec->rawsize > max_contents_size)
8441 max_contents_size = sec->rawsize;
8442 if (sec->size > max_contents_size)
8443 max_contents_size = sec->size;
8445 /* We are interested in just local symbols, not all
8446 symbols. */
8447 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
8448 && (sec->owner->flags & DYNAMIC) == 0)
8450 size_t sym_count;
8452 if (elf_bad_symtab (sec->owner))
8453 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
8454 / bed->s->sizeof_sym);
8455 else
8456 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
8458 if (sym_count > max_sym_count)
8459 max_sym_count = sym_count;
8461 if (sym_count > max_sym_shndx_count
8462 && elf_symtab_shndx (sec->owner) != 0)
8463 max_sym_shndx_count = sym_count;
8465 if ((sec->flags & SEC_RELOC) != 0)
8467 size_t ext_size;
8469 ext_size = elf_section_data (sec)->rel_hdr.sh_size;
8470 if (ext_size > max_external_reloc_size)
8471 max_external_reloc_size = ext_size;
8472 if (sec->reloc_count > max_internal_reloc_count)
8473 max_internal_reloc_count = sec->reloc_count;
8478 if (reloc_count == 0)
8479 continue;
8481 o->reloc_count += reloc_count;
8483 /* MIPS may have a mix of REL and RELA relocs on sections.
8484 To support this curious ABI we keep reloc counts in
8485 elf_section_data too. We must be careful to add the
8486 relocations from the input section to the right output
8487 count. FIXME: Get rid of one count. We have
8488 o->reloc_count == esdo->rel_count + esdo->rel_count2. */
8489 rel_count1 = &esdo->rel_count;
8490 if (esdi != NULL)
8492 bfd_boolean same_size;
8493 bfd_size_type entsize1;
8495 entsize1 = esdi->rel_hdr.sh_entsize;
8496 BFD_ASSERT (entsize1 == bed->s->sizeof_rel
8497 || entsize1 == bed->s->sizeof_rela);
8498 same_size = !o->use_rela_p == (entsize1 == bed->s->sizeof_rel);
8500 if (!same_size)
8501 rel_count1 = &esdo->rel_count2;
8503 if (esdi->rel_hdr2 != NULL)
8505 bfd_size_type entsize2 = esdi->rel_hdr2->sh_entsize;
8506 unsigned int alt_count;
8507 unsigned int *rel_count2;
8509 BFD_ASSERT (entsize2 != entsize1
8510 && (entsize2 == bed->s->sizeof_rel
8511 || entsize2 == bed->s->sizeof_rela));
8513 rel_count2 = &esdo->rel_count2;
8514 if (!same_size)
8515 rel_count2 = &esdo->rel_count;
8517 /* The following is probably too simplistic if the
8518 backend counts output relocs unusually. */
8519 BFD_ASSERT (bed->elf_backend_count_relocs == NULL);
8520 alt_count = NUM_SHDR_ENTRIES (esdi->rel_hdr2);
8521 *rel_count2 += alt_count;
8522 reloc_count -= alt_count;
8525 *rel_count1 += reloc_count;
8528 if (o->reloc_count > 0)
8529 o->flags |= SEC_RELOC;
8530 else
8532 /* Explicitly clear the SEC_RELOC flag. The linker tends to
8533 set it (this is probably a bug) and if it is set
8534 assign_section_numbers will create a reloc section. */
8535 o->flags &=~ SEC_RELOC;
8538 /* If the SEC_ALLOC flag is not set, force the section VMA to
8539 zero. This is done in elf_fake_sections as well, but forcing
8540 the VMA to 0 here will ensure that relocs against these
8541 sections are handled correctly. */
8542 if ((o->flags & SEC_ALLOC) == 0
8543 && ! o->user_set_vma)
8544 o->vma = 0;
8547 if (! info->relocatable && merged)
8548 elf_link_hash_traverse (elf_hash_table (info),
8549 _bfd_elf_link_sec_merge_syms, abfd);
8551 /* Figure out the file positions for everything but the symbol table
8552 and the relocs. We set symcount to force assign_section_numbers
8553 to create a symbol table. */
8554 bfd_get_symcount (abfd) = info->strip == strip_all ? 0 : 1;
8555 BFD_ASSERT (! abfd->output_has_begun);
8556 if (! _bfd_elf_compute_section_file_positions (abfd, info))
8557 goto error_return;
8559 /* Set sizes, and assign file positions for reloc sections. */
8560 for (o = abfd->sections; o != NULL; o = o->next)
8562 if ((o->flags & SEC_RELOC) != 0)
8564 if (!(_bfd_elf_link_size_reloc_section
8565 (abfd, &elf_section_data (o)->rel_hdr, o)))
8566 goto error_return;
8568 if (elf_section_data (o)->rel_hdr2
8569 && !(_bfd_elf_link_size_reloc_section
8570 (abfd, elf_section_data (o)->rel_hdr2, o)))
8571 goto error_return;
8574 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
8575 to count upwards while actually outputting the relocations. */
8576 elf_section_data (o)->rel_count = 0;
8577 elf_section_data (o)->rel_count2 = 0;
8580 _bfd_elf_assign_file_positions_for_relocs (abfd);
8582 /* We have now assigned file positions for all the sections except
8583 .symtab and .strtab. We start the .symtab section at the current
8584 file position, and write directly to it. We build the .strtab
8585 section in memory. */
8586 bfd_get_symcount (abfd) = 0;
8587 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8588 /* sh_name is set in prep_headers. */
8589 symtab_hdr->sh_type = SHT_SYMTAB;
8590 /* sh_flags, sh_addr and sh_size all start off zero. */
8591 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8592 /* sh_link is set in assign_section_numbers. */
8593 /* sh_info is set below. */
8594 /* sh_offset is set just below. */
8595 symtab_hdr->sh_addralign = 1 << bed->s->log_file_align;
8597 off = elf_tdata (abfd)->next_file_pos;
8598 off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
8600 /* Note that at this point elf_tdata (abfd)->next_file_pos is
8601 incorrect. We do not yet know the size of the .symtab section.
8602 We correct next_file_pos below, after we do know the size. */
8604 /* Allocate a buffer to hold swapped out symbols. This is to avoid
8605 continuously seeking to the right position in the file. */
8606 if (! info->keep_memory || max_sym_count < 20)
8607 finfo.symbuf_size = 20;
8608 else
8609 finfo.symbuf_size = max_sym_count;
8610 amt = finfo.symbuf_size;
8611 amt *= bed->s->sizeof_sym;
8612 finfo.symbuf = bfd_malloc (amt);
8613 if (finfo.symbuf == NULL)
8614 goto error_return;
8615 if (elf_numsections (abfd) > SHN_LORESERVE)
8617 /* Wild guess at number of output symbols. realloc'd as needed. */
8618 amt = 2 * max_sym_count + elf_numsections (abfd) + 1000;
8619 finfo.shndxbuf_size = amt;
8620 amt *= sizeof (Elf_External_Sym_Shndx);
8621 finfo.symshndxbuf = bfd_zmalloc (amt);
8622 if (finfo.symshndxbuf == NULL)
8623 goto error_return;
8626 /* Start writing out the symbol table. The first symbol is always a
8627 dummy symbol. */
8628 if (info->strip != strip_all
8629 || emit_relocs)
8631 elfsym.st_value = 0;
8632 elfsym.st_size = 0;
8633 elfsym.st_info = 0;
8634 elfsym.st_other = 0;
8635 elfsym.st_shndx = SHN_UNDEF;
8636 if (! elf_link_output_sym (&finfo, NULL, &elfsym, bfd_und_section_ptr,
8637 NULL))
8638 goto error_return;
8641 /* Output a symbol for each section. We output these even if we are
8642 discarding local symbols, since they are used for relocs. These
8643 symbols have no names. We store the index of each one in the
8644 index field of the section, so that we can find it again when
8645 outputting relocs. */
8646 if (info->strip != strip_all
8647 || emit_relocs)
8649 elfsym.st_size = 0;
8650 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8651 elfsym.st_other = 0;
8652 elfsym.st_value = 0;
8653 for (i = 1; i < elf_numsections (abfd); i++)
8655 o = bfd_section_from_elf_index (abfd, i);
8656 if (o != NULL)
8658 o->target_index = bfd_get_symcount (abfd);
8659 elfsym.st_shndx = i;
8660 if (!info->relocatable)
8661 elfsym.st_value = o->vma;
8662 if (!elf_link_output_sym (&finfo, NULL, &elfsym, o, NULL))
8663 goto error_return;
8665 if (i == SHN_LORESERVE - 1)
8666 i += SHN_HIRESERVE + 1 - SHN_LORESERVE;
8670 /* Allocate some memory to hold information read in from the input
8671 files. */
8672 if (max_contents_size != 0)
8674 finfo.contents = bfd_malloc (max_contents_size);
8675 if (finfo.contents == NULL)
8676 goto error_return;
8679 if (max_external_reloc_size != 0)
8681 finfo.external_relocs = bfd_malloc (max_external_reloc_size);
8682 if (finfo.external_relocs == NULL)
8683 goto error_return;
8686 if (max_internal_reloc_count != 0)
8688 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
8689 amt *= sizeof (Elf_Internal_Rela);
8690 finfo.internal_relocs = bfd_malloc (amt);
8691 if (finfo.internal_relocs == NULL)
8692 goto error_return;
8695 if (max_sym_count != 0)
8697 amt = max_sym_count * bed->s->sizeof_sym;
8698 finfo.external_syms = bfd_malloc (amt);
8699 if (finfo.external_syms == NULL)
8700 goto error_return;
8702 amt = max_sym_count * sizeof (Elf_Internal_Sym);
8703 finfo.internal_syms = bfd_malloc (amt);
8704 if (finfo.internal_syms == NULL)
8705 goto error_return;
8707 amt = max_sym_count * sizeof (long);
8708 finfo.indices = bfd_malloc (amt);
8709 if (finfo.indices == NULL)
8710 goto error_return;
8712 amt = max_sym_count * sizeof (asection *);
8713 finfo.sections = bfd_malloc (amt);
8714 if (finfo.sections == NULL)
8715 goto error_return;
8718 if (max_sym_shndx_count != 0)
8720 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
8721 finfo.locsym_shndx = bfd_malloc (amt);
8722 if (finfo.locsym_shndx == NULL)
8723 goto error_return;
8726 if (elf_hash_table (info)->tls_sec)
8728 bfd_vma base, end = 0;
8729 asection *sec;
8731 for (sec = elf_hash_table (info)->tls_sec;
8732 sec && (sec->flags & SEC_THREAD_LOCAL);
8733 sec = sec->next)
8735 bfd_size_type size = sec->size;
8737 if (size == 0
8738 && (sec->flags & SEC_HAS_CONTENTS) == 0)
8740 struct bfd_link_order *o = sec->map_tail.link_order;
8741 if (o != NULL)
8742 size = o->offset + o->size;
8744 end = sec->vma + size;
8746 base = elf_hash_table (info)->tls_sec->vma;
8747 end = align_power (end, elf_hash_table (info)->tls_sec->alignment_power);
8748 elf_hash_table (info)->tls_size = end - base;
8751 /* Reorder SHF_LINK_ORDER sections. */
8752 for (o = abfd->sections; o != NULL; o = o->next)
8754 if (!elf_fixup_link_order (abfd, o))
8755 return FALSE;
8758 /* Since ELF permits relocations to be against local symbols, we
8759 must have the local symbols available when we do the relocations.
8760 Since we would rather only read the local symbols once, and we
8761 would rather not keep them in memory, we handle all the
8762 relocations for a single input file at the same time.
8764 Unfortunately, there is no way to know the total number of local
8765 symbols until we have seen all of them, and the local symbol
8766 indices precede the global symbol indices. This means that when
8767 we are generating relocatable output, and we see a reloc against
8768 a global symbol, we can not know the symbol index until we have
8769 finished examining all the local symbols to see which ones we are
8770 going to output. To deal with this, we keep the relocations in
8771 memory, and don't output them until the end of the link. This is
8772 an unfortunate waste of memory, but I don't see a good way around
8773 it. Fortunately, it only happens when performing a relocatable
8774 link, which is not the common case. FIXME: If keep_memory is set
8775 we could write the relocs out and then read them again; I don't
8776 know how bad the memory loss will be. */
8778 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
8779 sub->output_has_begun = FALSE;
8780 for (o = abfd->sections; o != NULL; o = o->next)
8782 for (p = o->map_head.link_order; p != NULL; p = p->next)
8784 if (p->type == bfd_indirect_link_order
8785 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
8786 == bfd_target_elf_flavour)
8787 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
8789 if (! sub->output_has_begun)
8791 if (! elf_link_input_bfd (&finfo, sub))
8792 goto error_return;
8793 sub->output_has_begun = TRUE;
8796 else if (p->type == bfd_section_reloc_link_order
8797 || p->type == bfd_symbol_reloc_link_order)
8799 if (! elf_reloc_link_order (abfd, info, o, p))
8800 goto error_return;
8802 else
8804 if (! _bfd_default_link_order (abfd, info, o, p))
8805 goto error_return;
8810 /* Free symbol buffer if needed. */
8811 if (!info->reduce_memory_overheads)
8813 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
8814 if (elf_tdata (sub)->symbuf)
8816 free (elf_tdata (sub)->symbuf);
8817 elf_tdata (sub)->symbuf = NULL;
8821 /* Output any global symbols that got converted to local in a
8822 version script or due to symbol visibility. We do this in a
8823 separate step since ELF requires all local symbols to appear
8824 prior to any global symbols. FIXME: We should only do this if
8825 some global symbols were, in fact, converted to become local.
8826 FIXME: Will this work correctly with the Irix 5 linker? */
8827 eoinfo.failed = FALSE;
8828 eoinfo.finfo = &finfo;
8829 eoinfo.localsyms = TRUE;
8830 elf_link_hash_traverse (elf_hash_table (info), elf_link_output_extsym,
8831 &eoinfo);
8832 if (eoinfo.failed)
8833 return FALSE;
8835 /* If backend needs to output some local symbols not present in the hash
8836 table, do it now. */
8837 if (bed->elf_backend_output_arch_local_syms)
8839 typedef bfd_boolean (*out_sym_func)
8840 (void *, const char *, Elf_Internal_Sym *, asection *,
8841 struct elf_link_hash_entry *);
8843 if (! ((*bed->elf_backend_output_arch_local_syms)
8844 (abfd, info, &finfo, (out_sym_func) elf_link_output_sym)))
8845 return FALSE;
8848 /* That wrote out all the local symbols. Finish up the symbol table
8849 with the global symbols. Even if we want to strip everything we
8850 can, we still need to deal with those global symbols that got
8851 converted to local in a version script. */
8853 /* The sh_info field records the index of the first non local symbol. */
8854 symtab_hdr->sh_info = bfd_get_symcount (abfd);
8856 if (dynamic
8857 && finfo.dynsym_sec->output_section != bfd_abs_section_ptr)
8859 Elf_Internal_Sym sym;
8860 bfd_byte *dynsym = finfo.dynsym_sec->contents;
8861 long last_local = 0;
8863 /* Write out the section symbols for the output sections. */
8864 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
8866 asection *s;
8868 sym.st_size = 0;
8869 sym.st_name = 0;
8870 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8871 sym.st_other = 0;
8873 for (s = abfd->sections; s != NULL; s = s->next)
8875 int indx;
8876 bfd_byte *dest;
8877 long dynindx;
8879 dynindx = elf_section_data (s)->dynindx;
8880 if (dynindx <= 0)
8881 continue;
8882 indx = elf_section_data (s)->this_idx;
8883 BFD_ASSERT (indx > 0);
8884 sym.st_shndx = indx;
8885 if (! check_dynsym (abfd, &sym))
8886 return FALSE;
8887 sym.st_value = s->vma;
8888 dest = dynsym + dynindx * bed->s->sizeof_sym;
8889 if (last_local < dynindx)
8890 last_local = dynindx;
8891 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
8895 /* Write out the local dynsyms. */
8896 if (elf_hash_table (info)->dynlocal)
8898 struct elf_link_local_dynamic_entry *e;
8899 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
8901 asection *s;
8902 bfd_byte *dest;
8904 sym.st_size = e->isym.st_size;
8905 sym.st_other = e->isym.st_other;
8907 /* Copy the internal symbol as is.
8908 Note that we saved a word of storage and overwrote
8909 the original st_name with the dynstr_index. */
8910 sym = e->isym;
8912 if (e->isym.st_shndx != SHN_UNDEF
8913 && (e->isym.st_shndx < SHN_LORESERVE
8914 || e->isym.st_shndx > SHN_HIRESERVE))
8916 s = bfd_section_from_elf_index (e->input_bfd,
8917 e->isym.st_shndx);
8919 sym.st_shndx =
8920 elf_section_data (s->output_section)->this_idx;
8921 if (! check_dynsym (abfd, &sym))
8922 return FALSE;
8923 sym.st_value = (s->output_section->vma
8924 + s->output_offset
8925 + e->isym.st_value);
8928 if (last_local < e->dynindx)
8929 last_local = e->dynindx;
8931 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
8932 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
8936 elf_section_data (finfo.dynsym_sec->output_section)->this_hdr.sh_info =
8937 last_local + 1;
8940 /* We get the global symbols from the hash table. */
8941 eoinfo.failed = FALSE;
8942 eoinfo.localsyms = FALSE;
8943 eoinfo.finfo = &finfo;
8944 elf_link_hash_traverse (elf_hash_table (info), elf_link_output_extsym,
8945 &eoinfo);
8946 if (eoinfo.failed)
8947 return FALSE;
8949 /* If backend needs to output some symbols not present in the hash
8950 table, do it now. */
8951 if (bed->elf_backend_output_arch_syms)
8953 typedef bfd_boolean (*out_sym_func)
8954 (void *, const char *, Elf_Internal_Sym *, asection *,
8955 struct elf_link_hash_entry *);
8957 if (! ((*bed->elf_backend_output_arch_syms)
8958 (abfd, info, &finfo, (out_sym_func) elf_link_output_sym)))
8959 return FALSE;
8962 /* Flush all symbols to the file. */
8963 if (! elf_link_flush_output_syms (&finfo, bed))
8964 return FALSE;
8966 /* Now we know the size of the symtab section. */
8967 off += symtab_hdr->sh_size;
8969 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
8970 if (symtab_shndx_hdr->sh_name != 0)
8972 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8973 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8974 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8975 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
8976 symtab_shndx_hdr->sh_size = amt;
8978 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
8979 off, TRUE);
8981 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
8982 || (bfd_bwrite (finfo.symshndxbuf, amt, abfd) != amt))
8983 return FALSE;
8987 /* Finish up and write out the symbol string table (.strtab)
8988 section. */
8989 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8990 /* sh_name was set in prep_headers. */
8991 symstrtab_hdr->sh_type = SHT_STRTAB;
8992 symstrtab_hdr->sh_flags = 0;
8993 symstrtab_hdr->sh_addr = 0;
8994 symstrtab_hdr->sh_size = _bfd_stringtab_size (finfo.symstrtab);
8995 symstrtab_hdr->sh_entsize = 0;
8996 symstrtab_hdr->sh_link = 0;
8997 symstrtab_hdr->sh_info = 0;
8998 /* sh_offset is set just below. */
8999 symstrtab_hdr->sh_addralign = 1;
9001 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr, off, TRUE);
9002 elf_tdata (abfd)->next_file_pos = off;
9004 if (bfd_get_symcount (abfd) > 0)
9006 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
9007 || ! _bfd_stringtab_emit (abfd, finfo.symstrtab))
9008 return FALSE;
9011 /* Adjust the relocs to have the correct symbol indices. */
9012 for (o = abfd->sections; o != NULL; o = o->next)
9014 if ((o->flags & SEC_RELOC) == 0)
9015 continue;
9017 elf_link_adjust_relocs (abfd, &elf_section_data (o)->rel_hdr,
9018 elf_section_data (o)->rel_count,
9019 elf_section_data (o)->rel_hashes);
9020 if (elf_section_data (o)->rel_hdr2 != NULL)
9021 elf_link_adjust_relocs (abfd, elf_section_data (o)->rel_hdr2,
9022 elf_section_data (o)->rel_count2,
9023 (elf_section_data (o)->rel_hashes
9024 + elf_section_data (o)->rel_count));
9026 /* Set the reloc_count field to 0 to prevent write_relocs from
9027 trying to swap the relocs out itself. */
9028 o->reloc_count = 0;
9031 if (dynamic && info->combreloc && dynobj != NULL)
9032 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
9034 /* If we are linking against a dynamic object, or generating a
9035 shared library, finish up the dynamic linking information. */
9036 if (dynamic)
9038 bfd_byte *dyncon, *dynconend;
9040 /* Fix up .dynamic entries. */
9041 o = bfd_get_section_by_name (dynobj, ".dynamic");
9042 BFD_ASSERT (o != NULL);
9044 dyncon = o->contents;
9045 dynconend = o->contents + o->size;
9046 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
9048 Elf_Internal_Dyn dyn;
9049 const char *name;
9050 unsigned int type;
9052 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
9054 switch (dyn.d_tag)
9056 default:
9057 continue;
9058 case DT_NULL:
9059 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
9061 switch (elf_section_data (reldyn)->this_hdr.sh_type)
9063 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
9064 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
9065 default: continue;
9067 dyn.d_un.d_val = relativecount;
9068 relativecount = 0;
9069 break;
9071 continue;
9073 case DT_INIT:
9074 name = info->init_function;
9075 goto get_sym;
9076 case DT_FINI:
9077 name = info->fini_function;
9078 get_sym:
9080 struct elf_link_hash_entry *h;
9082 h = elf_link_hash_lookup (elf_hash_table (info), name,
9083 FALSE, FALSE, TRUE);
9084 if (h != NULL
9085 && (h->root.type == bfd_link_hash_defined
9086 || h->root.type == bfd_link_hash_defweak))
9088 dyn.d_un.d_val = h->root.u.def.value;
9089 o = h->root.u.def.section;
9090 if (o->output_section != NULL)
9091 dyn.d_un.d_val += (o->output_section->vma
9092 + o->output_offset);
9093 else
9095 /* The symbol is imported from another shared
9096 library and does not apply to this one. */
9097 dyn.d_un.d_val = 0;
9099 break;
9102 continue;
9104 case DT_PREINIT_ARRAYSZ:
9105 name = ".preinit_array";
9106 goto get_size;
9107 case DT_INIT_ARRAYSZ:
9108 name = ".init_array";
9109 goto get_size;
9110 case DT_FINI_ARRAYSZ:
9111 name = ".fini_array";
9112 get_size:
9113 o = bfd_get_section_by_name (abfd, name);
9114 if (o == NULL)
9116 (*_bfd_error_handler)
9117 (_("%B: could not find output section %s"), abfd, name);
9118 goto error_return;
9120 if (o->size == 0)
9121 (*_bfd_error_handler)
9122 (_("warning: %s section has zero size"), name);
9123 dyn.d_un.d_val = o->size;
9124 break;
9126 case DT_PREINIT_ARRAY:
9127 name = ".preinit_array";
9128 goto get_vma;
9129 case DT_INIT_ARRAY:
9130 name = ".init_array";
9131 goto get_vma;
9132 case DT_FINI_ARRAY:
9133 name = ".fini_array";
9134 goto get_vma;
9136 case DT_HASH:
9137 name = ".hash";
9138 goto get_vma;
9139 case DT_GNU_HASH:
9140 name = ".gnu.hash";
9141 goto get_vma;
9142 case DT_STRTAB:
9143 name = ".dynstr";
9144 goto get_vma;
9145 case DT_SYMTAB:
9146 name = ".dynsym";
9147 goto get_vma;
9148 case DT_VERDEF:
9149 name = ".gnu.version_d";
9150 goto get_vma;
9151 case DT_VERNEED:
9152 name = ".gnu.version_r";
9153 goto get_vma;
9154 case DT_VERSYM:
9155 name = ".gnu.version";
9156 get_vma:
9157 o = bfd_get_section_by_name (abfd, name);
9158 if (o == NULL)
9160 (*_bfd_error_handler)
9161 (_("%B: could not find output section %s"), abfd, name);
9162 goto error_return;
9164 dyn.d_un.d_ptr = o->vma;
9165 break;
9167 case DT_REL:
9168 case DT_RELA:
9169 case DT_RELSZ:
9170 case DT_RELASZ:
9171 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
9172 type = SHT_REL;
9173 else
9174 type = SHT_RELA;
9175 dyn.d_un.d_val = 0;
9176 for (i = 1; i < elf_numsections (abfd); i++)
9178 Elf_Internal_Shdr *hdr;
9180 hdr = elf_elfsections (abfd)[i];
9181 if (hdr->sh_type == type
9182 && (hdr->sh_flags & SHF_ALLOC) != 0)
9184 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
9185 dyn.d_un.d_val += hdr->sh_size;
9186 else
9188 if (dyn.d_un.d_val == 0
9189 || hdr->sh_addr < dyn.d_un.d_val)
9190 dyn.d_un.d_val = hdr->sh_addr;
9194 break;
9196 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
9200 /* If we have created any dynamic sections, then output them. */
9201 if (dynobj != NULL)
9203 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
9204 goto error_return;
9206 /* Check for DT_TEXTREL (late, in case the backend removes it). */
9207 if (info->warn_shared_textrel && info->shared)
9209 bfd_byte *dyncon, *dynconend;
9211 /* Fix up .dynamic entries. */
9212 o = bfd_get_section_by_name (dynobj, ".dynamic");
9213 BFD_ASSERT (o != NULL);
9215 dyncon = o->contents;
9216 dynconend = o->contents + o->size;
9217 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
9219 Elf_Internal_Dyn dyn;
9221 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
9223 if (dyn.d_tag == DT_TEXTREL)
9225 _bfd_error_handler
9226 (_("warning: creating a DT_TEXTREL in a shared object."));
9227 break;
9232 for (o = dynobj->sections; o != NULL; o = o->next)
9234 if ((o->flags & SEC_HAS_CONTENTS) == 0
9235 || o->size == 0
9236 || o->output_section == bfd_abs_section_ptr)
9237 continue;
9238 if ((o->flags & SEC_LINKER_CREATED) == 0)
9240 /* At this point, we are only interested in sections
9241 created by _bfd_elf_link_create_dynamic_sections. */
9242 continue;
9244 if (elf_hash_table (info)->stab_info.stabstr == o)
9245 continue;
9246 if (elf_hash_table (info)->eh_info.hdr_sec == o)
9247 continue;
9248 if ((elf_section_data (o->output_section)->this_hdr.sh_type
9249 != SHT_STRTAB)
9250 || strcmp (bfd_get_section_name (abfd, o), ".dynstr") != 0)
9252 if (! bfd_set_section_contents (abfd, o->output_section,
9253 o->contents,
9254 (file_ptr) o->output_offset,
9255 o->size))
9256 goto error_return;
9258 else
9260 /* The contents of the .dynstr section are actually in a
9261 stringtab. */
9262 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
9263 if (bfd_seek (abfd, off, SEEK_SET) != 0
9264 || ! _bfd_elf_strtab_emit (abfd,
9265 elf_hash_table (info)->dynstr))
9266 goto error_return;
9271 if (info->relocatable)
9273 bfd_boolean failed = FALSE;
9275 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
9276 if (failed)
9277 goto error_return;
9280 /* If we have optimized stabs strings, output them. */
9281 if (elf_hash_table (info)->stab_info.stabstr != NULL)
9283 if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
9284 goto error_return;
9287 if (info->eh_frame_hdr)
9289 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
9290 goto error_return;
9293 if (finfo.symstrtab != NULL)
9294 _bfd_stringtab_free (finfo.symstrtab);
9295 if (finfo.contents != NULL)
9296 free (finfo.contents);
9297 if (finfo.external_relocs != NULL)
9298 free (finfo.external_relocs);
9299 if (finfo.internal_relocs != NULL)
9300 free (finfo.internal_relocs);
9301 if (finfo.external_syms != NULL)
9302 free (finfo.external_syms);
9303 if (finfo.locsym_shndx != NULL)
9304 free (finfo.locsym_shndx);
9305 if (finfo.internal_syms != NULL)
9306 free (finfo.internal_syms);
9307 if (finfo.indices != NULL)
9308 free (finfo.indices);
9309 if (finfo.sections != NULL)
9310 free (finfo.sections);
9311 if (finfo.symbuf != NULL)
9312 free (finfo.symbuf);
9313 if (finfo.symshndxbuf != NULL)
9314 free (finfo.symshndxbuf);
9315 for (o = abfd->sections; o != NULL; o = o->next)
9317 if ((o->flags & SEC_RELOC) != 0
9318 && elf_section_data (o)->rel_hashes != NULL)
9319 free (elf_section_data (o)->rel_hashes);
9322 elf_tdata (abfd)->linker = TRUE;
9324 return TRUE;
9326 error_return:
9327 if (finfo.symstrtab != NULL)
9328 _bfd_stringtab_free (finfo.symstrtab);
9329 if (finfo.contents != NULL)
9330 free (finfo.contents);
9331 if (finfo.external_relocs != NULL)
9332 free (finfo.external_relocs);
9333 if (finfo.internal_relocs != NULL)
9334 free (finfo.internal_relocs);
9335 if (finfo.external_syms != NULL)
9336 free (finfo.external_syms);
9337 if (finfo.locsym_shndx != NULL)
9338 free (finfo.locsym_shndx);
9339 if (finfo.internal_syms != NULL)
9340 free (finfo.internal_syms);
9341 if (finfo.indices != NULL)
9342 free (finfo.indices);
9343 if (finfo.sections != NULL)
9344 free (finfo.sections);
9345 if (finfo.symbuf != NULL)
9346 free (finfo.symbuf);
9347 if (finfo.symshndxbuf != NULL)
9348 free (finfo.symshndxbuf);
9349 for (o = abfd->sections; o != NULL; o = o->next)
9351 if ((o->flags & SEC_RELOC) != 0
9352 && elf_section_data (o)->rel_hashes != NULL)
9353 free (elf_section_data (o)->rel_hashes);
9356 return FALSE;
9359 /* Garbage collect unused sections. */
9361 typedef asection * (*gc_mark_hook_fn)
9362 (asection *, struct bfd_link_info *, Elf_Internal_Rela *,
9363 struct elf_link_hash_entry *, Elf_Internal_Sym *);
9365 /* Default gc_mark_hook. */
9367 asection *
9368 _bfd_elf_gc_mark_hook (asection *sec,
9369 struct bfd_link_info *info ATTRIBUTE_UNUSED,
9370 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
9371 struct elf_link_hash_entry *h,
9372 Elf_Internal_Sym *sym)
9374 if (h != NULL)
9376 switch (h->root.type)
9378 case bfd_link_hash_defined:
9379 case bfd_link_hash_defweak:
9380 return h->root.u.def.section;
9382 case bfd_link_hash_common:
9383 return h->root.u.c.p->section;
9385 default:
9386 break;
9389 else
9390 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
9392 return NULL;
9395 /* The mark phase of garbage collection. For a given section, mark
9396 it and any sections in this section's group, and all the sections
9397 which define symbols to which it refers. */
9399 bfd_boolean
9400 _bfd_elf_gc_mark (struct bfd_link_info *info,
9401 asection *sec,
9402 gc_mark_hook_fn gc_mark_hook)
9404 bfd_boolean ret;
9405 bfd_boolean is_eh;
9406 asection *group_sec;
9408 sec->gc_mark = 1;
9410 /* Mark all the sections in the group. */
9411 group_sec = elf_section_data (sec)->next_in_group;
9412 if (group_sec && !group_sec->gc_mark)
9413 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
9414 return FALSE;
9416 /* Look through the section relocs. */
9417 ret = TRUE;
9418 is_eh = strcmp (sec->name, ".eh_frame") == 0;
9419 if ((sec->flags & SEC_RELOC) != 0 && sec->reloc_count > 0)
9421 Elf_Internal_Rela *relstart, *rel, *relend;
9422 Elf_Internal_Shdr *symtab_hdr;
9423 struct elf_link_hash_entry **sym_hashes;
9424 size_t nlocsyms;
9425 size_t extsymoff;
9426 bfd *input_bfd = sec->owner;
9427 const struct elf_backend_data *bed = get_elf_backend_data (input_bfd);
9428 Elf_Internal_Sym *isym = NULL;
9429 int r_sym_shift;
9431 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9432 sym_hashes = elf_sym_hashes (input_bfd);
9434 /* Read the local symbols. */
9435 if (elf_bad_symtab (input_bfd))
9437 nlocsyms = symtab_hdr->sh_size / bed->s->sizeof_sym;
9438 extsymoff = 0;
9440 else
9441 extsymoff = nlocsyms = symtab_hdr->sh_info;
9443 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
9444 if (isym == NULL && nlocsyms != 0)
9446 isym = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, nlocsyms, 0,
9447 NULL, NULL, NULL);
9448 if (isym == NULL)
9449 return FALSE;
9452 /* Read the relocations. */
9453 relstart = _bfd_elf_link_read_relocs (input_bfd, sec, NULL, NULL,
9454 info->keep_memory);
9455 if (relstart == NULL)
9457 ret = FALSE;
9458 goto out1;
9460 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
9462 if (bed->s->arch_size == 32)
9463 r_sym_shift = 8;
9464 else
9465 r_sym_shift = 32;
9467 for (rel = relstart; rel < relend; rel++)
9469 unsigned long r_symndx;
9470 asection *rsec;
9471 struct elf_link_hash_entry *h;
9473 r_symndx = rel->r_info >> r_sym_shift;
9474 if (r_symndx == 0)
9475 continue;
9477 if (r_symndx >= nlocsyms
9478 || ELF_ST_BIND (isym[r_symndx].st_info) != STB_LOCAL)
9480 h = sym_hashes[r_symndx - extsymoff];
9481 while (h->root.type == bfd_link_hash_indirect
9482 || h->root.type == bfd_link_hash_warning)
9483 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9484 rsec = (*gc_mark_hook) (sec, info, rel, h, NULL);
9486 else
9488 rsec = (*gc_mark_hook) (sec, info, rel, NULL, &isym[r_symndx]);
9491 if (rsec && !rsec->gc_mark)
9493 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour)
9494 rsec->gc_mark = 1;
9495 else if (is_eh)
9496 rsec->gc_mark_from_eh = 1;
9497 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
9499 ret = FALSE;
9500 goto out2;
9505 out2:
9506 if (elf_section_data (sec)->relocs != relstart)
9507 free (relstart);
9508 out1:
9509 if (isym != NULL && symtab_hdr->contents != (unsigned char *) isym)
9511 if (! info->keep_memory)
9512 free (isym);
9513 else
9514 symtab_hdr->contents = (unsigned char *) isym;
9518 return ret;
9521 /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
9523 struct elf_gc_sweep_symbol_info
9525 struct bfd_link_info *info;
9526 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
9527 bfd_boolean);
9530 static bfd_boolean
9531 elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
9533 if (h->root.type == bfd_link_hash_warning)
9534 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9536 if ((h->root.type == bfd_link_hash_defined
9537 || h->root.type == bfd_link_hash_defweak)
9538 && !h->root.u.def.section->gc_mark
9539 && !(h->root.u.def.section->owner->flags & DYNAMIC))
9541 struct elf_gc_sweep_symbol_info *inf = data;
9542 (*inf->hide_symbol) (inf->info, h, TRUE);
9545 return TRUE;
9548 /* The sweep phase of garbage collection. Remove all garbage sections. */
9550 typedef bfd_boolean (*gc_sweep_hook_fn)
9551 (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
9553 static bfd_boolean
9554 elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
9556 bfd *sub;
9557 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9558 gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
9559 unsigned long section_sym_count;
9560 struct elf_gc_sweep_symbol_info sweep_info;
9562 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
9564 asection *o;
9566 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
9567 continue;
9569 for (o = sub->sections; o != NULL; o = o->next)
9571 /* Keep debug and special sections. */
9572 if ((o->flags & (SEC_DEBUGGING | SEC_LINKER_CREATED)) != 0
9573 || (o->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
9574 o->gc_mark = 1;
9576 if (o->gc_mark)
9577 continue;
9579 /* Skip sweeping sections already excluded. */
9580 if (o->flags & SEC_EXCLUDE)
9581 continue;
9583 /* Since this is early in the link process, it is simple
9584 to remove a section from the output. */
9585 o->flags |= SEC_EXCLUDE;
9587 if (info->print_gc_sections == TRUE)
9588 _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name);
9590 /* But we also have to update some of the relocation
9591 info we collected before. */
9592 if (gc_sweep_hook
9593 && (o->flags & SEC_RELOC) != 0
9594 && o->reloc_count > 0
9595 && !bfd_is_abs_section (o->output_section))
9597 Elf_Internal_Rela *internal_relocs;
9598 bfd_boolean r;
9600 internal_relocs
9601 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
9602 info->keep_memory);
9603 if (internal_relocs == NULL)
9604 return FALSE;
9606 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
9608 if (elf_section_data (o)->relocs != internal_relocs)
9609 free (internal_relocs);
9611 if (!r)
9612 return FALSE;
9617 /* Remove the symbols that were in the swept sections from the dynamic
9618 symbol table. GCFIXME: Anyone know how to get them out of the
9619 static symbol table as well? */
9620 sweep_info.info = info;
9621 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
9622 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
9623 &sweep_info);
9625 _bfd_elf_link_renumber_dynsyms (abfd, info, &section_sym_count);
9626 return TRUE;
9629 /* Propagate collected vtable information. This is called through
9630 elf_link_hash_traverse. */
9632 static bfd_boolean
9633 elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
9635 if (h->root.type == bfd_link_hash_warning)
9636 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9638 /* Those that are not vtables. */
9639 if (h->vtable == NULL || h->vtable->parent == NULL)
9640 return TRUE;
9642 /* Those vtables that do not have parents, we cannot merge. */
9643 if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
9644 return TRUE;
9646 /* If we've already been done, exit. */
9647 if (h->vtable->used && h->vtable->used[-1])
9648 return TRUE;
9650 /* Make sure the parent's table is up to date. */
9651 elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
9653 if (h->vtable->used == NULL)
9655 /* None of this table's entries were referenced. Re-use the
9656 parent's table. */
9657 h->vtable->used = h->vtable->parent->vtable->used;
9658 h->vtable->size = h->vtable->parent->vtable->size;
9660 else
9662 size_t n;
9663 bfd_boolean *cu, *pu;
9665 /* Or the parent's entries into ours. */
9666 cu = h->vtable->used;
9667 cu[-1] = TRUE;
9668 pu = h->vtable->parent->vtable->used;
9669 if (pu != NULL)
9671 const struct elf_backend_data *bed;
9672 unsigned int log_file_align;
9674 bed = get_elf_backend_data (h->root.u.def.section->owner);
9675 log_file_align = bed->s->log_file_align;
9676 n = h->vtable->parent->vtable->size >> log_file_align;
9677 while (n--)
9679 if (*pu)
9680 *cu = TRUE;
9681 pu++;
9682 cu++;
9687 return TRUE;
9690 static bfd_boolean
9691 elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
9693 asection *sec;
9694 bfd_vma hstart, hend;
9695 Elf_Internal_Rela *relstart, *relend, *rel;
9696 const struct elf_backend_data *bed;
9697 unsigned int log_file_align;
9699 if (h->root.type == bfd_link_hash_warning)
9700 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9702 /* Take care of both those symbols that do not describe vtables as
9703 well as those that are not loaded. */
9704 if (h->vtable == NULL || h->vtable->parent == NULL)
9705 return TRUE;
9707 BFD_ASSERT (h->root.type == bfd_link_hash_defined
9708 || h->root.type == bfd_link_hash_defweak);
9710 sec = h->root.u.def.section;
9711 hstart = h->root.u.def.value;
9712 hend = hstart + h->size;
9714 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
9715 if (!relstart)
9716 return *(bfd_boolean *) okp = FALSE;
9717 bed = get_elf_backend_data (sec->owner);
9718 log_file_align = bed->s->log_file_align;
9720 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
9722 for (rel = relstart; rel < relend; ++rel)
9723 if (rel->r_offset >= hstart && rel->r_offset < hend)
9725 /* If the entry is in use, do nothing. */
9726 if (h->vtable->used
9727 && (rel->r_offset - hstart) < h->vtable->size)
9729 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
9730 if (h->vtable->used[entry])
9731 continue;
9733 /* Otherwise, kill it. */
9734 rel->r_offset = rel->r_info = rel->r_addend = 0;
9737 return TRUE;
9740 /* Mark sections containing dynamically referenced symbols. When
9741 building shared libraries, we must assume that any visible symbol is
9742 referenced. */
9744 bfd_boolean
9745 bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
9747 struct bfd_link_info *info = (struct bfd_link_info *) inf;
9749 if (h->root.type == bfd_link_hash_warning)
9750 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9752 if ((h->root.type == bfd_link_hash_defined
9753 || h->root.type == bfd_link_hash_defweak)
9754 && (h->ref_dynamic
9755 || (!info->executable
9756 && h->def_regular
9757 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
9758 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN)))
9759 h->root.u.def.section->flags |= SEC_KEEP;
9761 return TRUE;
9764 /* Do mark and sweep of unused sections. */
9766 bfd_boolean
9767 bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
9769 bfd_boolean ok = TRUE;
9770 bfd *sub;
9771 asection * (*gc_mark_hook)
9772 (asection *, struct bfd_link_info *, Elf_Internal_Rela *,
9773 struct elf_link_hash_entry *h, Elf_Internal_Sym *);
9774 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9776 if (!bed->can_gc_sections
9777 || info->relocatable
9778 || info->emitrelocations
9779 || !is_elf_hash_table (info->hash))
9781 (*_bfd_error_handler)(_("Warning: gc-sections option ignored"));
9782 return TRUE;
9785 /* Apply transitive closure to the vtable entry usage info. */
9786 elf_link_hash_traverse (elf_hash_table (info),
9787 elf_gc_propagate_vtable_entries_used,
9788 &ok);
9789 if (!ok)
9790 return FALSE;
9792 /* Kill the vtable relocations that were not used. */
9793 elf_link_hash_traverse (elf_hash_table (info),
9794 elf_gc_smash_unused_vtentry_relocs,
9795 &ok);
9796 if (!ok)
9797 return FALSE;
9799 /* Mark dynamically referenced symbols. */
9800 if (elf_hash_table (info)->dynamic_sections_created)
9801 elf_link_hash_traverse (elf_hash_table (info),
9802 bed->gc_mark_dynamic_ref,
9803 info);
9805 /* Grovel through relocs to find out who stays ... */
9806 gc_mark_hook = bed->gc_mark_hook;
9807 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
9809 asection *o;
9811 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
9812 continue;
9814 for (o = sub->sections; o != NULL; o = o->next)
9815 if ((o->flags & (SEC_EXCLUDE | SEC_KEEP)) == SEC_KEEP && !o->gc_mark)
9816 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
9817 return FALSE;
9820 /* ... again for sections marked from eh_frame. */
9821 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
9823 asection *o;
9825 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
9826 continue;
9828 /* Keep .gcc_except_table.* if the associated .text.* (or the
9829 associated .gnu.linkonce.t.* if .text.* doesn't exist) is
9830 marked. This isn't very nice, but the proper solution,
9831 splitting .eh_frame up and using comdat doesn't pan out
9832 easily due to needing special relocs to handle the
9833 difference of two symbols in separate sections.
9834 Don't keep code sections referenced by .eh_frame. */
9835 #define TEXT_PREFIX ".text."
9836 #define TEXT_PREFIX2 ".gnu.linkonce.t."
9837 #define GCC_EXCEPT_TABLE_PREFIX ".gcc_except_table."
9838 for (o = sub->sections; o != NULL; o = o->next)
9839 if (!o->gc_mark && o->gc_mark_from_eh && (o->flags & SEC_CODE) == 0)
9841 if (CONST_STRNEQ (o->name, GCC_EXCEPT_TABLE_PREFIX))
9843 char *fn_name;
9844 const char *sec_name;
9845 asection *fn_text;
9846 unsigned o_name_prefix_len , fn_name_prefix_len, tmp;
9848 o_name_prefix_len = strlen (GCC_EXCEPT_TABLE_PREFIX);
9849 sec_name = o->name + o_name_prefix_len;
9850 fn_name_prefix_len = strlen (TEXT_PREFIX);
9851 tmp = strlen (TEXT_PREFIX2);
9852 if (tmp > fn_name_prefix_len)
9853 fn_name_prefix_len = tmp;
9854 fn_name
9855 = bfd_malloc (fn_name_prefix_len + strlen (sec_name) + 1);
9856 if (fn_name == NULL)
9857 return FALSE;
9859 /* Try the first prefix. */
9860 sprintf (fn_name, "%s%s", TEXT_PREFIX, sec_name);
9861 fn_text = bfd_get_section_by_name (sub, fn_name);
9863 /* Try the second prefix. */
9864 if (fn_text == NULL)
9866 sprintf (fn_name, "%s%s", TEXT_PREFIX2, sec_name);
9867 fn_text = bfd_get_section_by_name (sub, fn_name);
9870 free (fn_name);
9871 if (fn_text == NULL || !fn_text->gc_mark)
9872 continue;
9875 /* If not using specially named exception table section,
9876 then keep whatever we are using. */
9877 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
9878 return FALSE;
9882 /* ... and mark SEC_EXCLUDE for those that go. */
9883 return elf_gc_sweep (abfd, info);
9886 /* Called from check_relocs to record the existence of a VTINHERIT reloc. */
9888 bfd_boolean
9889 bfd_elf_gc_record_vtinherit (bfd *abfd,
9890 asection *sec,
9891 struct elf_link_hash_entry *h,
9892 bfd_vma offset)
9894 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
9895 struct elf_link_hash_entry **search, *child;
9896 bfd_size_type extsymcount;
9897 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9899 /* The sh_info field of the symtab header tells us where the
9900 external symbols start. We don't care about the local symbols at
9901 this point. */
9902 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
9903 if (!elf_bad_symtab (abfd))
9904 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
9906 sym_hashes = elf_sym_hashes (abfd);
9907 sym_hashes_end = sym_hashes + extsymcount;
9909 /* Hunt down the child symbol, which is in this section at the same
9910 offset as the relocation. */
9911 for (search = sym_hashes; search != sym_hashes_end; ++search)
9913 if ((child = *search) != NULL
9914 && (child->root.type == bfd_link_hash_defined
9915 || child->root.type == bfd_link_hash_defweak)
9916 && child->root.u.def.section == sec
9917 && child->root.u.def.value == offset)
9918 goto win;
9921 (*_bfd_error_handler) ("%B: %A+%lu: No symbol found for INHERIT",
9922 abfd, sec, (unsigned long) offset);
9923 bfd_set_error (bfd_error_invalid_operation);
9924 return FALSE;
9926 win:
9927 if (!child->vtable)
9929 child->vtable = bfd_zalloc (abfd, sizeof (*child->vtable));
9930 if (!child->vtable)
9931 return FALSE;
9933 if (!h)
9935 /* This *should* only be the absolute section. It could potentially
9936 be that someone has defined a non-global vtable though, which
9937 would be bad. It isn't worth paging in the local symbols to be
9938 sure though; that case should simply be handled by the assembler. */
9940 child->vtable->parent = (struct elf_link_hash_entry *) -1;
9942 else
9943 child->vtable->parent = h;
9945 return TRUE;
9948 /* Called from check_relocs to record the existence of a VTENTRY reloc. */
9950 bfd_boolean
9951 bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
9952 asection *sec ATTRIBUTE_UNUSED,
9953 struct elf_link_hash_entry *h,
9954 bfd_vma addend)
9956 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9957 unsigned int log_file_align = bed->s->log_file_align;
9959 if (!h->vtable)
9961 h->vtable = bfd_zalloc (abfd, sizeof (*h->vtable));
9962 if (!h->vtable)
9963 return FALSE;
9966 if (addend >= h->vtable->size)
9968 size_t size, bytes, file_align;
9969 bfd_boolean *ptr = h->vtable->used;
9971 /* While the symbol is undefined, we have to be prepared to handle
9972 a zero size. */
9973 file_align = 1 << log_file_align;
9974 if (h->root.type == bfd_link_hash_undefined)
9975 size = addend + file_align;
9976 else
9978 size = h->size;
9979 if (addend >= size)
9981 /* Oops! We've got a reference past the defined end of
9982 the table. This is probably a bug -- shall we warn? */
9983 size = addend + file_align;
9986 size = (size + file_align - 1) & -file_align;
9988 /* Allocate one extra entry for use as a "done" flag for the
9989 consolidation pass. */
9990 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
9992 if (ptr)
9994 ptr = bfd_realloc (ptr - 1, bytes);
9996 if (ptr != NULL)
9998 size_t oldbytes;
10000 oldbytes = (((h->vtable->size >> log_file_align) + 1)
10001 * sizeof (bfd_boolean));
10002 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
10005 else
10006 ptr = bfd_zmalloc (bytes);
10008 if (ptr == NULL)
10009 return FALSE;
10011 /* And arrange for that done flag to be at index -1. */
10012 h->vtable->used = ptr + 1;
10013 h->vtable->size = size;
10016 h->vtable->used[addend >> log_file_align] = TRUE;
10018 return TRUE;
10021 struct alloc_got_off_arg {
10022 bfd_vma gotoff;
10023 unsigned int got_elt_size;
10026 /* We need a special top-level link routine to convert got reference counts
10027 to real got offsets. */
10029 static bfd_boolean
10030 elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
10032 struct alloc_got_off_arg *gofarg = arg;
10034 if (h->root.type == bfd_link_hash_warning)
10035 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10037 if (h->got.refcount > 0)
10039 h->got.offset = gofarg->gotoff;
10040 gofarg->gotoff += gofarg->got_elt_size;
10042 else
10043 h->got.offset = (bfd_vma) -1;
10045 return TRUE;
10048 /* And an accompanying bit to work out final got entry offsets once
10049 we're done. Should be called from final_link. */
10051 bfd_boolean
10052 bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
10053 struct bfd_link_info *info)
10055 bfd *i;
10056 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10057 bfd_vma gotoff;
10058 unsigned int got_elt_size = bed->s->arch_size / 8;
10059 struct alloc_got_off_arg gofarg;
10061 if (! is_elf_hash_table (info->hash))
10062 return FALSE;
10064 /* The GOT offset is relative to the .got section, but the GOT header is
10065 put into the .got.plt section, if the backend uses it. */
10066 if (bed->want_got_plt)
10067 gotoff = 0;
10068 else
10069 gotoff = bed->got_header_size;
10071 /* Do the local .got entries first. */
10072 for (i = info->input_bfds; i; i = i->link_next)
10074 bfd_signed_vma *local_got;
10075 bfd_size_type j, locsymcount;
10076 Elf_Internal_Shdr *symtab_hdr;
10078 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
10079 continue;
10081 local_got = elf_local_got_refcounts (i);
10082 if (!local_got)
10083 continue;
10085 symtab_hdr = &elf_tdata (i)->symtab_hdr;
10086 if (elf_bad_symtab (i))
10087 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
10088 else
10089 locsymcount = symtab_hdr->sh_info;
10091 for (j = 0; j < locsymcount; ++j)
10093 if (local_got[j] > 0)
10095 local_got[j] = gotoff;
10096 gotoff += got_elt_size;
10098 else
10099 local_got[j] = (bfd_vma) -1;
10103 /* Then the global .got entries. .plt refcounts are handled by
10104 adjust_dynamic_symbol */
10105 gofarg.gotoff = gotoff;
10106 gofarg.got_elt_size = got_elt_size;
10107 elf_link_hash_traverse (elf_hash_table (info),
10108 elf_gc_allocate_got_offsets,
10109 &gofarg);
10110 return TRUE;
10113 /* Many folk need no more in the way of final link than this, once
10114 got entry reference counting is enabled. */
10116 bfd_boolean
10117 bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
10119 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
10120 return FALSE;
10122 /* Invoke the regular ELF backend linker to do all the work. */
10123 return bfd_elf_final_link (abfd, info);
10126 bfd_boolean
10127 bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
10129 struct elf_reloc_cookie *rcookie = cookie;
10131 if (rcookie->bad_symtab)
10132 rcookie->rel = rcookie->rels;
10134 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
10136 unsigned long r_symndx;
10138 if (! rcookie->bad_symtab)
10139 if (rcookie->rel->r_offset > offset)
10140 return FALSE;
10141 if (rcookie->rel->r_offset != offset)
10142 continue;
10144 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
10145 if (r_symndx == SHN_UNDEF)
10146 return TRUE;
10148 if (r_symndx >= rcookie->locsymcount
10149 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
10151 struct elf_link_hash_entry *h;
10153 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
10155 while (h->root.type == bfd_link_hash_indirect
10156 || h->root.type == bfd_link_hash_warning)
10157 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10159 if ((h->root.type == bfd_link_hash_defined
10160 || h->root.type == bfd_link_hash_defweak)
10161 && elf_discarded_section (h->root.u.def.section))
10162 return TRUE;
10163 else
10164 return FALSE;
10166 else
10168 /* It's not a relocation against a global symbol,
10169 but it could be a relocation against a local
10170 symbol for a discarded section. */
10171 asection *isec;
10172 Elf_Internal_Sym *isym;
10174 /* Need to: get the symbol; get the section. */
10175 isym = &rcookie->locsyms[r_symndx];
10176 if (isym->st_shndx < SHN_LORESERVE || isym->st_shndx > SHN_HIRESERVE)
10178 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
10179 if (isec != NULL && elf_discarded_section (isec))
10180 return TRUE;
10183 return FALSE;
10185 return FALSE;
10188 /* Discard unneeded references to discarded sections.
10189 Returns TRUE if any section's size was changed. */
10190 /* This function assumes that the relocations are in sorted order,
10191 which is true for all known assemblers. */
10193 bfd_boolean
10194 bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
10196 struct elf_reloc_cookie cookie;
10197 asection *stab, *eh;
10198 Elf_Internal_Shdr *symtab_hdr;
10199 const struct elf_backend_data *bed;
10200 bfd *abfd;
10201 unsigned int count;
10202 bfd_boolean ret = FALSE;
10204 if (info->traditional_format
10205 || !is_elf_hash_table (info->hash))
10206 return FALSE;
10208 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
10210 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
10211 continue;
10213 bed = get_elf_backend_data (abfd);
10215 if ((abfd->flags & DYNAMIC) != 0)
10216 continue;
10218 eh = bfd_get_section_by_name (abfd, ".eh_frame");
10219 if (info->relocatable
10220 || (eh != NULL
10221 && (eh->size == 0
10222 || bfd_is_abs_section (eh->output_section))))
10223 eh = NULL;
10225 stab = bfd_get_section_by_name (abfd, ".stab");
10226 if (stab != NULL
10227 && (stab->size == 0
10228 || bfd_is_abs_section (stab->output_section)
10229 || stab->sec_info_type != ELF_INFO_TYPE_STABS))
10230 stab = NULL;
10232 if (stab == NULL
10233 && eh == NULL
10234 && bed->elf_backend_discard_info == NULL)
10235 continue;
10237 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
10238 cookie.abfd = abfd;
10239 cookie.sym_hashes = elf_sym_hashes (abfd);
10240 cookie.bad_symtab = elf_bad_symtab (abfd);
10241 if (cookie.bad_symtab)
10243 cookie.locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
10244 cookie.extsymoff = 0;
10246 else
10248 cookie.locsymcount = symtab_hdr->sh_info;
10249 cookie.extsymoff = symtab_hdr->sh_info;
10252 if (bed->s->arch_size == 32)
10253 cookie.r_sym_shift = 8;
10254 else
10255 cookie.r_sym_shift = 32;
10257 cookie.locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
10258 if (cookie.locsyms == NULL && cookie.locsymcount != 0)
10260 cookie.locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
10261 cookie.locsymcount, 0,
10262 NULL, NULL, NULL);
10263 if (cookie.locsyms == NULL)
10264 return FALSE;
10267 if (stab != NULL)
10269 cookie.rels = NULL;
10270 count = stab->reloc_count;
10271 if (count != 0)
10272 cookie.rels = _bfd_elf_link_read_relocs (abfd, stab, NULL, NULL,
10273 info->keep_memory);
10274 if (cookie.rels != NULL)
10276 cookie.rel = cookie.rels;
10277 cookie.relend = cookie.rels;
10278 cookie.relend += count * bed->s->int_rels_per_ext_rel;
10279 if (_bfd_discard_section_stabs (abfd, stab,
10280 elf_section_data (stab)->sec_info,
10281 bfd_elf_reloc_symbol_deleted_p,
10282 &cookie))
10283 ret = TRUE;
10284 if (elf_section_data (stab)->relocs != cookie.rels)
10285 free (cookie.rels);
10289 if (eh != NULL)
10291 cookie.rels = NULL;
10292 count = eh->reloc_count;
10293 if (count != 0)
10294 cookie.rels = _bfd_elf_link_read_relocs (abfd, eh, NULL, NULL,
10295 info->keep_memory);
10296 cookie.rel = cookie.rels;
10297 cookie.relend = cookie.rels;
10298 if (cookie.rels != NULL)
10299 cookie.relend += count * bed->s->int_rels_per_ext_rel;
10301 if (_bfd_elf_discard_section_eh_frame (abfd, info, eh,
10302 bfd_elf_reloc_symbol_deleted_p,
10303 &cookie))
10304 ret = TRUE;
10306 if (cookie.rels != NULL
10307 && elf_section_data (eh)->relocs != cookie.rels)
10308 free (cookie.rels);
10311 if (bed->elf_backend_discard_info != NULL
10312 && (*bed->elf_backend_discard_info) (abfd, &cookie, info))
10313 ret = TRUE;
10315 if (cookie.locsyms != NULL
10316 && symtab_hdr->contents != (unsigned char *) cookie.locsyms)
10318 if (! info->keep_memory)
10319 free (cookie.locsyms);
10320 else
10321 symtab_hdr->contents = (unsigned char *) cookie.locsyms;
10325 if (info->eh_frame_hdr
10326 && !info->relocatable
10327 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
10328 ret = TRUE;
10330 return ret;
10333 void
10334 _bfd_elf_section_already_linked (bfd *abfd, struct bfd_section *sec,
10335 struct bfd_link_info *info)
10337 flagword flags;
10338 const char *name, *p;
10339 struct bfd_section_already_linked *l;
10340 struct bfd_section_already_linked_hash_entry *already_linked_list;
10342 if (sec->output_section == bfd_abs_section_ptr)
10343 return;
10345 flags = sec->flags;
10347 /* Return if it isn't a linkonce section. A comdat group section
10348 also has SEC_LINK_ONCE set. */
10349 if ((flags & SEC_LINK_ONCE) == 0)
10350 return;
10352 /* Don't put group member sections on our list of already linked
10353 sections. They are handled as a group via their group section. */
10354 if (elf_sec_group (sec) != NULL)
10355 return;
10357 /* FIXME: When doing a relocatable link, we may have trouble
10358 copying relocations in other sections that refer to local symbols
10359 in the section being discarded. Those relocations will have to
10360 be converted somehow; as of this writing I'm not sure that any of
10361 the backends handle that correctly.
10363 It is tempting to instead not discard link once sections when
10364 doing a relocatable link (technically, they should be discarded
10365 whenever we are building constructors). However, that fails,
10366 because the linker winds up combining all the link once sections
10367 into a single large link once section, which defeats the purpose
10368 of having link once sections in the first place.
10370 Also, not merging link once sections in a relocatable link
10371 causes trouble for MIPS ELF, which relies on link once semantics
10372 to handle the .reginfo section correctly. */
10374 name = bfd_get_section_name (abfd, sec);
10376 if (CONST_STRNEQ (name, ".gnu.linkonce.")
10377 && (p = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
10378 p++;
10379 else
10380 p = name;
10382 already_linked_list = bfd_section_already_linked_table_lookup (p);
10384 for (l = already_linked_list->entry; l != NULL; l = l->next)
10386 /* We may have 2 different types of sections on the list: group
10387 sections and linkonce sections. Match like sections. */
10388 if ((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
10389 && strcmp (name, l->sec->name) == 0
10390 && bfd_coff_get_comdat_section (l->sec->owner, l->sec) == NULL)
10392 /* The section has already been linked. See if we should
10393 issue a warning. */
10394 switch (flags & SEC_LINK_DUPLICATES)
10396 default:
10397 abort ();
10399 case SEC_LINK_DUPLICATES_DISCARD:
10400 break;
10402 case SEC_LINK_DUPLICATES_ONE_ONLY:
10403 (*_bfd_error_handler)
10404 (_("%B: ignoring duplicate section `%A'"),
10405 abfd, sec);
10406 break;
10408 case SEC_LINK_DUPLICATES_SAME_SIZE:
10409 if (sec->size != l->sec->size)
10410 (*_bfd_error_handler)
10411 (_("%B: duplicate section `%A' has different size"),
10412 abfd, sec);
10413 break;
10415 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
10416 if (sec->size != l->sec->size)
10417 (*_bfd_error_handler)
10418 (_("%B: duplicate section `%A' has different size"),
10419 abfd, sec);
10420 else if (sec->size != 0)
10422 bfd_byte *sec_contents, *l_sec_contents;
10424 if (!bfd_malloc_and_get_section (abfd, sec, &sec_contents))
10425 (*_bfd_error_handler)
10426 (_("%B: warning: could not read contents of section `%A'"),
10427 abfd, sec);
10428 else if (!bfd_malloc_and_get_section (l->sec->owner, l->sec,
10429 &l_sec_contents))
10430 (*_bfd_error_handler)
10431 (_("%B: warning: could not read contents of section `%A'"),
10432 l->sec->owner, l->sec);
10433 else if (memcmp (sec_contents, l_sec_contents, sec->size) != 0)
10434 (*_bfd_error_handler)
10435 (_("%B: warning: duplicate section `%A' has different contents"),
10436 abfd, sec);
10438 if (sec_contents)
10439 free (sec_contents);
10440 if (l_sec_contents)
10441 free (l_sec_contents);
10443 break;
10446 /* Set the output_section field so that lang_add_section
10447 does not create a lang_input_section structure for this
10448 section. Since there might be a symbol in the section
10449 being discarded, we must retain a pointer to the section
10450 which we are really going to use. */
10451 sec->output_section = bfd_abs_section_ptr;
10452 sec->kept_section = l->sec;
10454 if (flags & SEC_GROUP)
10456 asection *first = elf_next_in_group (sec);
10457 asection *s = first;
10459 while (s != NULL)
10461 s->output_section = bfd_abs_section_ptr;
10462 /* Record which group discards it. */
10463 s->kept_section = l->sec;
10464 s = elf_next_in_group (s);
10465 /* These lists are circular. */
10466 if (s == first)
10467 break;
10471 return;
10475 /* A single member comdat group section may be discarded by a
10476 linkonce section and vice versa. */
10478 if ((flags & SEC_GROUP) != 0)
10480 asection *first = elf_next_in_group (sec);
10482 if (first != NULL && elf_next_in_group (first) == first)
10483 /* Check this single member group against linkonce sections. */
10484 for (l = already_linked_list->entry; l != NULL; l = l->next)
10485 if ((l->sec->flags & SEC_GROUP) == 0
10486 && bfd_coff_get_comdat_section (l->sec->owner, l->sec) == NULL
10487 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
10489 first->output_section = bfd_abs_section_ptr;
10490 first->kept_section = l->sec;
10491 sec->output_section = bfd_abs_section_ptr;
10492 break;
10495 else
10496 /* Check this linkonce section against single member groups. */
10497 for (l = already_linked_list->entry; l != NULL; l = l->next)
10498 if (l->sec->flags & SEC_GROUP)
10500 asection *first = elf_next_in_group (l->sec);
10502 if (first != NULL
10503 && elf_next_in_group (first) == first
10504 && bfd_elf_match_symbols_in_sections (first, sec, info))
10506 sec->output_section = bfd_abs_section_ptr;
10507 sec->kept_section = first;
10508 break;
10512 /* This is the first section with this name. Record it. */
10513 bfd_section_already_linked_table_insert (already_linked_list, sec);
10516 bfd_boolean
10517 _bfd_elf_common_definition (Elf_Internal_Sym *sym)
10519 return sym->st_shndx == SHN_COMMON;
10522 unsigned int
10523 _bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
10525 return SHN_COMMON;
10528 asection *
10529 _bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
10531 return bfd_com_section_ptr;