]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - bfd/elflink.c
ELF: Add _bfd_elf_add_dynamic_tags
[thirdparty/binutils-gdb.git] / bfd / elflink.c
1 /* ELF linking support for BFD.
2 Copyright (C) 1995-2020 Free Software Foundation, Inc.
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21 #include "sysdep.h"
22 #include "bfd.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"
30 #if BFD_SUPPORTS_PLUGINS
31 #include "plugin-api.h"
32 #include "plugin.h"
33 #endif
34
35 /* This struct is used to pass information to routines called via
36 elf_link_hash_traverse which must return failure. */
37
38 struct elf_info_failed
39 {
40 struct bfd_link_info *info;
41 bfd_boolean failed;
42 };
43
44 /* This structure is used to pass information to
45 _bfd_elf_link_find_version_dependencies. */
46
47 struct elf_find_verdep_info
48 {
49 /* General link information. */
50 struct bfd_link_info *info;
51 /* The number of dependencies. */
52 unsigned int vers;
53 /* Whether we had a failure. */
54 bfd_boolean failed;
55 };
56
57 static bfd_boolean _bfd_elf_fix_symbol_flags
58 (struct elf_link_hash_entry *, struct elf_info_failed *);
59
60 asection *
61 _bfd_elf_section_for_symbol (struct elf_reloc_cookie *cookie,
62 unsigned long r_symndx,
63 bfd_boolean discard)
64 {
65 if (r_symndx >= cookie->locsymcount
66 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
67 {
68 struct elf_link_hash_entry *h;
69
70 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
71
72 while (h->root.type == bfd_link_hash_indirect
73 || h->root.type == bfd_link_hash_warning)
74 h = (struct elf_link_hash_entry *) h->root.u.i.link;
75
76 if ((h->root.type == bfd_link_hash_defined
77 || h->root.type == bfd_link_hash_defweak)
78 && discarded_section (h->root.u.def.section))
79 return h->root.u.def.section;
80 else
81 return NULL;
82 }
83 else
84 {
85 /* It's not a relocation against a global symbol,
86 but it could be a relocation against a local
87 symbol for a discarded section. */
88 asection *isec;
89 Elf_Internal_Sym *isym;
90
91 /* Need to: get the symbol; get the section. */
92 isym = &cookie->locsyms[r_symndx];
93 isec = bfd_section_from_elf_index (cookie->abfd, isym->st_shndx);
94 if (isec != NULL
95 && discard ? discarded_section (isec) : 1)
96 return isec;
97 }
98 return NULL;
99 }
100
101 /* Define a symbol in a dynamic linkage section. */
102
103 struct elf_link_hash_entry *
104 _bfd_elf_define_linkage_sym (bfd *abfd,
105 struct bfd_link_info *info,
106 asection *sec,
107 const char *name)
108 {
109 struct elf_link_hash_entry *h;
110 struct bfd_link_hash_entry *bh;
111 const struct elf_backend_data *bed;
112
113 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
114 if (h != NULL)
115 {
116 /* Zap symbol defined in an as-needed lib that wasn't linked.
117 This is a symptom of a larger problem: Absolute symbols
118 defined in shared libraries can't be overridden, because we
119 lose the link to the bfd which is via the symbol section. */
120 h->root.type = bfd_link_hash_new;
121 bh = &h->root;
122 }
123 else
124 bh = NULL;
125
126 bed = get_elf_backend_data (abfd);
127 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
128 sec, 0, NULL, FALSE, bed->collect,
129 &bh))
130 return NULL;
131 h = (struct elf_link_hash_entry *) bh;
132 BFD_ASSERT (h != NULL);
133 h->def_regular = 1;
134 h->non_elf = 0;
135 h->root.linker_def = 1;
136 h->type = STT_OBJECT;
137 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
138 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
139
140 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
141 return h;
142 }
143
144 bfd_boolean
145 _bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
146 {
147 flagword flags;
148 asection *s;
149 struct elf_link_hash_entry *h;
150 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
151 struct elf_link_hash_table *htab = elf_hash_table (info);
152
153 /* This function may be called more than once. */
154 if (htab->sgot != NULL)
155 return TRUE;
156
157 flags = bed->dynamic_sec_flags;
158
159 s = bfd_make_section_anyway_with_flags (abfd,
160 (bed->rela_plts_and_copies_p
161 ? ".rela.got" : ".rel.got"),
162 (bed->dynamic_sec_flags
163 | SEC_READONLY));
164 if (s == NULL
165 || !bfd_set_section_alignment (s, bed->s->log_file_align))
166 return FALSE;
167 htab->srelgot = s;
168
169 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
170 if (s == NULL
171 || !bfd_set_section_alignment (s, bed->s->log_file_align))
172 return FALSE;
173 htab->sgot = s;
174
175 if (bed->want_got_plt)
176 {
177 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
178 if (s == NULL
179 || !bfd_set_section_alignment (s, bed->s->log_file_align))
180 return FALSE;
181 htab->sgotplt = s;
182 }
183
184 /* The first bit of the global offset table is the header. */
185 s->size += bed->got_header_size;
186
187 if (bed->want_got_sym)
188 {
189 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
190 (or .got.plt) section. We don't do this in the linker script
191 because we don't want to define the symbol if we are not creating
192 a global offset table. */
193 h = _bfd_elf_define_linkage_sym (abfd, info, s,
194 "_GLOBAL_OFFSET_TABLE_");
195 elf_hash_table (info)->hgot = h;
196 if (h == NULL)
197 return FALSE;
198 }
199
200 return TRUE;
201 }
202 \f
203 /* Create a strtab to hold the dynamic symbol names. */
204 static bfd_boolean
205 _bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
206 {
207 struct elf_link_hash_table *hash_table;
208
209 hash_table = elf_hash_table (info);
210 if (hash_table->dynobj == NULL)
211 {
212 /* We may not set dynobj, an input file holding linker created
213 dynamic sections to abfd, which may be a dynamic object with
214 its own dynamic sections. We need to find a normal input file
215 to hold linker created sections if possible. */
216 if ((abfd->flags & (DYNAMIC | BFD_PLUGIN)) != 0)
217 {
218 bfd *ibfd;
219 asection *s;
220 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
221 if ((ibfd->flags
222 & (DYNAMIC | BFD_LINKER_CREATED | BFD_PLUGIN)) == 0
223 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
224 && elf_object_id (ibfd) == elf_hash_table_id (hash_table)
225 && !((s = ibfd->sections) != NULL
226 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS))
227 {
228 abfd = ibfd;
229 break;
230 }
231 }
232 hash_table->dynobj = abfd;
233 }
234
235 if (hash_table->dynstr == NULL)
236 {
237 hash_table->dynstr = _bfd_elf_strtab_init ();
238 if (hash_table->dynstr == NULL)
239 return FALSE;
240 }
241 return TRUE;
242 }
243
244 /* Create some sections which will be filled in with dynamic linking
245 information. ABFD is an input file which requires dynamic sections
246 to be created. The dynamic sections take up virtual memory space
247 when the final executable is run, so we need to create them before
248 addresses are assigned to the output sections. We work out the
249 actual contents and size of these sections later. */
250
251 bfd_boolean
252 _bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
253 {
254 flagword flags;
255 asection *s;
256 const struct elf_backend_data *bed;
257 struct elf_link_hash_entry *h;
258
259 if (! is_elf_hash_table (info->hash))
260 return FALSE;
261
262 if (elf_hash_table (info)->dynamic_sections_created)
263 return TRUE;
264
265 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
266 return FALSE;
267
268 abfd = elf_hash_table (info)->dynobj;
269 bed = get_elf_backend_data (abfd);
270
271 flags = bed->dynamic_sec_flags;
272
273 /* A dynamically linked executable has a .interp section, but a
274 shared library does not. */
275 if (bfd_link_executable (info) && !info->nointerp)
276 {
277 s = bfd_make_section_anyway_with_flags (abfd, ".interp",
278 flags | SEC_READONLY);
279 if (s == NULL)
280 return FALSE;
281 }
282
283 /* Create sections to hold version informations. These are removed
284 if they are not needed. */
285 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
286 flags | SEC_READONLY);
287 if (s == NULL
288 || !bfd_set_section_alignment (s, bed->s->log_file_align))
289 return FALSE;
290
291 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
292 flags | SEC_READONLY);
293 if (s == NULL
294 || !bfd_set_section_alignment (s, 1))
295 return FALSE;
296
297 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
298 flags | SEC_READONLY);
299 if (s == NULL
300 || !bfd_set_section_alignment (s, bed->s->log_file_align))
301 return FALSE;
302
303 s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
304 flags | SEC_READONLY);
305 if (s == NULL
306 || !bfd_set_section_alignment (s, bed->s->log_file_align))
307 return FALSE;
308 elf_hash_table (info)->dynsym = s;
309
310 s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
311 flags | SEC_READONLY);
312 if (s == NULL)
313 return FALSE;
314
315 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
316 if (s == NULL
317 || !bfd_set_section_alignment (s, bed->s->log_file_align))
318 return FALSE;
319
320 /* The special symbol _DYNAMIC is always set to the start of the
321 .dynamic section. We could set _DYNAMIC in a linker script, but we
322 only want to define it if we are, in fact, creating a .dynamic
323 section. We don't want to define it if there is no .dynamic
324 section, since on some ELF platforms the start up code examines it
325 to decide how to initialize the process. */
326 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
327 elf_hash_table (info)->hdynamic = h;
328 if (h == NULL)
329 return FALSE;
330
331 if (info->emit_hash)
332 {
333 s = bfd_make_section_anyway_with_flags (abfd, ".hash",
334 flags | SEC_READONLY);
335 if (s == NULL
336 || !bfd_set_section_alignment (s, bed->s->log_file_align))
337 return FALSE;
338 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
339 }
340
341 if (info->emit_gnu_hash && bed->record_xhash_symbol == NULL)
342 {
343 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
344 flags | SEC_READONLY);
345 if (s == NULL
346 || !bfd_set_section_alignment (s, bed->s->log_file_align))
347 return FALSE;
348 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
349 4 32-bit words followed by variable count of 64-bit words, then
350 variable count of 32-bit words. */
351 if (bed->s->arch_size == 64)
352 elf_section_data (s)->this_hdr.sh_entsize = 0;
353 else
354 elf_section_data (s)->this_hdr.sh_entsize = 4;
355 }
356
357 /* Let the backend create the rest of the sections. This lets the
358 backend set the right flags. The backend will normally create
359 the .got and .plt sections. */
360 if (bed->elf_backend_create_dynamic_sections == NULL
361 || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
362 return FALSE;
363
364 elf_hash_table (info)->dynamic_sections_created = TRUE;
365
366 return TRUE;
367 }
368
369 /* Create dynamic sections when linking against a dynamic object. */
370
371 bfd_boolean
372 _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
373 {
374 flagword flags, pltflags;
375 struct elf_link_hash_entry *h;
376 asection *s;
377 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
378 struct elf_link_hash_table *htab = elf_hash_table (info);
379
380 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
381 .rel[a].bss sections. */
382 flags = bed->dynamic_sec_flags;
383
384 pltflags = flags;
385 if (bed->plt_not_loaded)
386 /* We do not clear SEC_ALLOC here because we still want the OS to
387 allocate space for the section; it's just that there's nothing
388 to read in from the object file. */
389 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
390 else
391 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
392 if (bed->plt_readonly)
393 pltflags |= SEC_READONLY;
394
395 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
396 if (s == NULL
397 || !bfd_set_section_alignment (s, bed->plt_alignment))
398 return FALSE;
399 htab->splt = s;
400
401 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
402 .plt section. */
403 if (bed->want_plt_sym)
404 {
405 h = _bfd_elf_define_linkage_sym (abfd, info, s,
406 "_PROCEDURE_LINKAGE_TABLE_");
407 elf_hash_table (info)->hplt = h;
408 if (h == NULL)
409 return FALSE;
410 }
411
412 s = bfd_make_section_anyway_with_flags (abfd,
413 (bed->rela_plts_and_copies_p
414 ? ".rela.plt" : ".rel.plt"),
415 flags | SEC_READONLY);
416 if (s == NULL
417 || !bfd_set_section_alignment (s, bed->s->log_file_align))
418 return FALSE;
419 htab->srelplt = s;
420
421 if (! _bfd_elf_create_got_section (abfd, info))
422 return FALSE;
423
424 if (bed->want_dynbss)
425 {
426 /* The .dynbss section is a place to put symbols which are defined
427 by dynamic objects, are referenced by regular objects, and are
428 not functions. We must allocate space for them in the process
429 image and use a R_*_COPY reloc to tell the dynamic linker to
430 initialize them at run time. The linker script puts the .dynbss
431 section into the .bss section of the final image. */
432 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
433 SEC_ALLOC | SEC_LINKER_CREATED);
434 if (s == NULL)
435 return FALSE;
436 htab->sdynbss = s;
437
438 if (bed->want_dynrelro)
439 {
440 /* Similarly, but for symbols that were originally in read-only
441 sections. This section doesn't really need to have contents,
442 but make it like other .data.rel.ro sections. */
443 s = bfd_make_section_anyway_with_flags (abfd, ".data.rel.ro",
444 flags);
445 if (s == NULL)
446 return FALSE;
447 htab->sdynrelro = s;
448 }
449
450 /* The .rel[a].bss section holds copy relocs. This section is not
451 normally needed. We need to create it here, though, so that the
452 linker will map it to an output section. We can't just create it
453 only if we need it, because we will not know whether we need it
454 until we have seen all the input files, and the first time the
455 main linker code calls BFD after examining all the input files
456 (size_dynamic_sections) the input sections have already been
457 mapped to the output sections. If the section turns out not to
458 be needed, we can discard it later. We will never need this
459 section when generating a shared object, since they do not use
460 copy relocs. */
461 if (bfd_link_executable (info))
462 {
463 s = bfd_make_section_anyway_with_flags (abfd,
464 (bed->rela_plts_and_copies_p
465 ? ".rela.bss" : ".rel.bss"),
466 flags | SEC_READONLY);
467 if (s == NULL
468 || !bfd_set_section_alignment (s, bed->s->log_file_align))
469 return FALSE;
470 htab->srelbss = s;
471
472 if (bed->want_dynrelro)
473 {
474 s = (bfd_make_section_anyway_with_flags
475 (abfd, (bed->rela_plts_and_copies_p
476 ? ".rela.data.rel.ro" : ".rel.data.rel.ro"),
477 flags | SEC_READONLY));
478 if (s == NULL
479 || !bfd_set_section_alignment (s, bed->s->log_file_align))
480 return FALSE;
481 htab->sreldynrelro = s;
482 }
483 }
484 }
485
486 return TRUE;
487 }
488 \f
489 /* Record a new dynamic symbol. We record the dynamic symbols as we
490 read the input files, since we need to have a list of all of them
491 before we can determine the final sizes of the output sections.
492 Note that we may actually call this function even though we are not
493 going to output any dynamic symbols; in some cases we know that a
494 symbol should be in the dynamic symbol table, but only if there is
495 one. */
496
497 bfd_boolean
498 bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
499 struct elf_link_hash_entry *h)
500 {
501 if (h->dynindx == -1)
502 {
503 struct elf_strtab_hash *dynstr;
504 char *p;
505 const char *name;
506 size_t indx;
507
508 /* XXX: The ABI draft says the linker must turn hidden and
509 internal symbols into STB_LOCAL symbols when producing the
510 DSO. However, if ld.so honors st_other in the dynamic table,
511 this would not be necessary. */
512 switch (ELF_ST_VISIBILITY (h->other))
513 {
514 case STV_INTERNAL:
515 case STV_HIDDEN:
516 if (h->root.type != bfd_link_hash_undefined
517 && h->root.type != bfd_link_hash_undefweak)
518 {
519 h->forced_local = 1;
520 if (!elf_hash_table (info)->is_relocatable_executable)
521 return TRUE;
522 }
523
524 default:
525 break;
526 }
527
528 h->dynindx = elf_hash_table (info)->dynsymcount;
529 ++elf_hash_table (info)->dynsymcount;
530
531 dynstr = elf_hash_table (info)->dynstr;
532 if (dynstr == NULL)
533 {
534 /* Create a strtab to hold the dynamic symbol names. */
535 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
536 if (dynstr == NULL)
537 return FALSE;
538 }
539
540 /* We don't put any version information in the dynamic string
541 table. */
542 name = h->root.root.string;
543 p = strchr (name, ELF_VER_CHR);
544 if (p != NULL)
545 /* We know that the p points into writable memory. In fact,
546 there are only a few symbols that have read-only names, being
547 those like _GLOBAL_OFFSET_TABLE_ that are created specially
548 by the backends. Most symbols will have names pointing into
549 an ELF string table read from a file, or to objalloc memory. */
550 *p = 0;
551
552 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
553
554 if (p != NULL)
555 *p = ELF_VER_CHR;
556
557 if (indx == (size_t) -1)
558 return FALSE;
559 h->dynstr_index = indx;
560 }
561
562 return TRUE;
563 }
564 \f
565 /* Mark a symbol dynamic. */
566
567 static void
568 bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
569 struct elf_link_hash_entry *h,
570 Elf_Internal_Sym *sym)
571 {
572 struct bfd_elf_dynamic_list *d = info->dynamic_list;
573
574 /* It may be called more than once on the same H. */
575 if(h->dynamic || bfd_link_relocatable (info))
576 return;
577
578 if ((info->dynamic_data
579 && (h->type == STT_OBJECT
580 || h->type == STT_COMMON
581 || (sym != NULL
582 && (ELF_ST_TYPE (sym->st_info) == STT_OBJECT
583 || ELF_ST_TYPE (sym->st_info) == STT_COMMON))))
584 || (d != NULL
585 && h->non_elf
586 && (*d->match) (&d->head, NULL, h->root.root.string)))
587 {
588 h->dynamic = 1;
589 /* NB: If a symbol is made dynamic by --dynamic-list, it has
590 non-IR reference. */
591 h->root.non_ir_ref_dynamic = 1;
592 }
593 }
594
595 /* Record an assignment to a symbol made by a linker script. We need
596 this in case some dynamic object refers to this symbol. */
597
598 bfd_boolean
599 bfd_elf_record_link_assignment (bfd *output_bfd,
600 struct bfd_link_info *info,
601 const char *name,
602 bfd_boolean provide,
603 bfd_boolean hidden)
604 {
605 struct elf_link_hash_entry *h, *hv;
606 struct elf_link_hash_table *htab;
607 const struct elf_backend_data *bed;
608
609 if (!is_elf_hash_table (info->hash))
610 return TRUE;
611
612 htab = elf_hash_table (info);
613 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
614 if (h == NULL)
615 return provide;
616
617 if (h->root.type == bfd_link_hash_warning)
618 h = (struct elf_link_hash_entry *) h->root.u.i.link;
619
620 if (h->versioned == unknown)
621 {
622 /* Set versioned if symbol version is unknown. */
623 char *version = strrchr (name, ELF_VER_CHR);
624 if (version)
625 {
626 if (version > name && version[-1] != ELF_VER_CHR)
627 h->versioned = versioned_hidden;
628 else
629 h->versioned = versioned;
630 }
631 }
632
633 /* Symbols defined in a linker script but not referenced anywhere
634 else will have non_elf set. */
635 if (h->non_elf)
636 {
637 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
638 h->non_elf = 0;
639 }
640
641 switch (h->root.type)
642 {
643 case bfd_link_hash_defined:
644 case bfd_link_hash_defweak:
645 case bfd_link_hash_common:
646 break;
647 case bfd_link_hash_undefweak:
648 case bfd_link_hash_undefined:
649 /* Since we're defining the symbol, don't let it seem to have not
650 been defined. record_dynamic_symbol and size_dynamic_sections
651 may depend on this. */
652 h->root.type = bfd_link_hash_new;
653 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
654 bfd_link_repair_undef_list (&htab->root);
655 break;
656 case bfd_link_hash_new:
657 break;
658 case bfd_link_hash_indirect:
659 /* We had a versioned symbol in a dynamic library. We make the
660 the versioned symbol point to this one. */
661 bed = get_elf_backend_data (output_bfd);
662 hv = h;
663 while (hv->root.type == bfd_link_hash_indirect
664 || hv->root.type == bfd_link_hash_warning)
665 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
666 /* We don't need to update h->root.u since linker will set them
667 later. */
668 h->root.type = bfd_link_hash_undefined;
669 hv->root.type = bfd_link_hash_indirect;
670 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
671 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
672 break;
673 default:
674 BFD_FAIL ();
675 return FALSE;
676 }
677
678 /* If this symbol is being provided by the linker script, and it is
679 currently defined by a dynamic object, but not by a regular
680 object, then mark it as undefined so that the generic linker will
681 force the correct value. */
682 if (provide
683 && h->def_dynamic
684 && !h->def_regular)
685 h->root.type = bfd_link_hash_undefined;
686
687 /* If this symbol is currently defined by a dynamic object, but not
688 by a regular object, then clear out any version information because
689 the symbol will not be associated with the dynamic object any
690 more. */
691 if (h->def_dynamic && !h->def_regular)
692 h->verinfo.verdef = NULL;
693
694 /* Make sure this symbol is not garbage collected. */
695 h->mark = 1;
696
697 h->def_regular = 1;
698
699 if (hidden)
700 {
701 bed = get_elf_backend_data (output_bfd);
702 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
703 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
704 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
705 }
706
707 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
708 and executables. */
709 if (!bfd_link_relocatable (info)
710 && h->dynindx != -1
711 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
712 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
713 h->forced_local = 1;
714
715 if ((h->def_dynamic
716 || h->ref_dynamic
717 || bfd_link_dll (info)
718 || elf_hash_table (info)->is_relocatable_executable)
719 && !h->forced_local
720 && h->dynindx == -1)
721 {
722 if (! bfd_elf_link_record_dynamic_symbol (info, h))
723 return FALSE;
724
725 /* If this is a weak defined symbol, and we know a corresponding
726 real symbol from the same dynamic object, make sure the real
727 symbol is also made into a dynamic symbol. */
728 if (h->is_weakalias)
729 {
730 struct elf_link_hash_entry *def = weakdef (h);
731
732 if (def->dynindx == -1
733 && !bfd_elf_link_record_dynamic_symbol (info, def))
734 return FALSE;
735 }
736 }
737
738 return TRUE;
739 }
740
741 /* Record a new local dynamic symbol. Returns 0 on failure, 1 on
742 success, and 2 on a failure caused by attempting to record a symbol
743 in a discarded section, eg. a discarded link-once section symbol. */
744
745 int
746 bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
747 bfd *input_bfd,
748 long input_indx)
749 {
750 size_t amt;
751 struct elf_link_local_dynamic_entry *entry;
752 struct elf_link_hash_table *eht;
753 struct elf_strtab_hash *dynstr;
754 size_t dynstr_index;
755 char *name;
756 Elf_External_Sym_Shndx eshndx;
757 char esym[sizeof (Elf64_External_Sym)];
758
759 if (! is_elf_hash_table (info->hash))
760 return 0;
761
762 /* See if the entry exists already. */
763 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
764 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
765 return 1;
766
767 amt = sizeof (*entry);
768 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
769 if (entry == NULL)
770 return 0;
771
772 /* Go find the symbol, so that we can find it's name. */
773 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
774 1, input_indx, &entry->isym, esym, &eshndx))
775 {
776 bfd_release (input_bfd, entry);
777 return 0;
778 }
779
780 if (entry->isym.st_shndx != SHN_UNDEF
781 && entry->isym.st_shndx < SHN_LORESERVE)
782 {
783 asection *s;
784
785 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
786 if (s == NULL || bfd_is_abs_section (s->output_section))
787 {
788 /* We can still bfd_release here as nothing has done another
789 bfd_alloc. We can't do this later in this function. */
790 bfd_release (input_bfd, entry);
791 return 2;
792 }
793 }
794
795 name = (bfd_elf_string_from_elf_section
796 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
797 entry->isym.st_name));
798
799 dynstr = elf_hash_table (info)->dynstr;
800 if (dynstr == NULL)
801 {
802 /* Create a strtab to hold the dynamic symbol names. */
803 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
804 if (dynstr == NULL)
805 return 0;
806 }
807
808 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
809 if (dynstr_index == (size_t) -1)
810 return 0;
811 entry->isym.st_name = dynstr_index;
812
813 eht = elf_hash_table (info);
814
815 entry->next = eht->dynlocal;
816 eht->dynlocal = entry;
817 entry->input_bfd = input_bfd;
818 entry->input_indx = input_indx;
819 eht->dynsymcount++;
820
821 /* Whatever binding the symbol had before, it's now local. */
822 entry->isym.st_info
823 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
824
825 /* The dynindx will be set at the end of size_dynamic_sections. */
826
827 return 1;
828 }
829
830 /* Return the dynindex of a local dynamic symbol. */
831
832 long
833 _bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
834 bfd *input_bfd,
835 long input_indx)
836 {
837 struct elf_link_local_dynamic_entry *e;
838
839 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
840 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
841 return e->dynindx;
842 return -1;
843 }
844
845 /* This function is used to renumber the dynamic symbols, if some of
846 them are removed because they are marked as local. This is called
847 via elf_link_hash_traverse. */
848
849 static bfd_boolean
850 elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
851 void *data)
852 {
853 size_t *count = (size_t *) data;
854
855 if (h->forced_local)
856 return TRUE;
857
858 if (h->dynindx != -1)
859 h->dynindx = ++(*count);
860
861 return TRUE;
862 }
863
864
865 /* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
866 STB_LOCAL binding. */
867
868 static bfd_boolean
869 elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
870 void *data)
871 {
872 size_t *count = (size_t *) data;
873
874 if (!h->forced_local)
875 return TRUE;
876
877 if (h->dynindx != -1)
878 h->dynindx = ++(*count);
879
880 return TRUE;
881 }
882
883 /* Return true if the dynamic symbol for a given section should be
884 omitted when creating a shared library. */
885 bfd_boolean
886 _bfd_elf_omit_section_dynsym_default (bfd *output_bfd ATTRIBUTE_UNUSED,
887 struct bfd_link_info *info,
888 asection *p)
889 {
890 struct elf_link_hash_table *htab;
891 asection *ip;
892
893 switch (elf_section_data (p)->this_hdr.sh_type)
894 {
895 case SHT_PROGBITS:
896 case SHT_NOBITS:
897 /* If sh_type is yet undecided, assume it could be
898 SHT_PROGBITS/SHT_NOBITS. */
899 case SHT_NULL:
900 htab = elf_hash_table (info);
901 if (htab->text_index_section != NULL)
902 return p != htab->text_index_section && p != htab->data_index_section;
903
904 return (htab->dynobj != NULL
905 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
906 && ip->output_section == p);
907
908 /* There shouldn't be section relative relocations
909 against any other section. */
910 default:
911 return TRUE;
912 }
913 }
914
915 bfd_boolean
916 _bfd_elf_omit_section_dynsym_all
917 (bfd *output_bfd ATTRIBUTE_UNUSED,
918 struct bfd_link_info *info ATTRIBUTE_UNUSED,
919 asection *p ATTRIBUTE_UNUSED)
920 {
921 return TRUE;
922 }
923
924 /* Assign dynsym indices. In a shared library we generate a section
925 symbol for each output section, which come first. Next come symbols
926 which have been forced to local binding. Then all of the back-end
927 allocated local dynamic syms, followed by the rest of the global
928 symbols. If SECTION_SYM_COUNT is NULL, section dynindx is not set.
929 (This prevents the early call before elf_backend_init_index_section
930 and strip_excluded_output_sections setting dynindx for sections
931 that are stripped.) */
932
933 static unsigned long
934 _bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
935 struct bfd_link_info *info,
936 unsigned long *section_sym_count)
937 {
938 unsigned long dynsymcount = 0;
939 bfd_boolean do_sec = section_sym_count != NULL;
940
941 if (bfd_link_pic (info)
942 || elf_hash_table (info)->is_relocatable_executable)
943 {
944 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
945 asection *p;
946 for (p = output_bfd->sections; p ; p = p->next)
947 if ((p->flags & SEC_EXCLUDE) == 0
948 && (p->flags & SEC_ALLOC) != 0
949 && elf_hash_table (info)->dynamic_relocs
950 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
951 {
952 ++dynsymcount;
953 if (do_sec)
954 elf_section_data (p)->dynindx = dynsymcount;
955 }
956 else if (do_sec)
957 elf_section_data (p)->dynindx = 0;
958 }
959 if (do_sec)
960 *section_sym_count = dynsymcount;
961
962 elf_link_hash_traverse (elf_hash_table (info),
963 elf_link_renumber_local_hash_table_dynsyms,
964 &dynsymcount);
965
966 if (elf_hash_table (info)->dynlocal)
967 {
968 struct elf_link_local_dynamic_entry *p;
969 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
970 p->dynindx = ++dynsymcount;
971 }
972 elf_hash_table (info)->local_dynsymcount = dynsymcount;
973
974 elf_link_hash_traverse (elf_hash_table (info),
975 elf_link_renumber_hash_table_dynsyms,
976 &dynsymcount);
977
978 /* There is an unused NULL entry at the head of the table which we
979 must account for in our count even if the table is empty since it
980 is intended for the mandatory DT_SYMTAB tag (.dynsym section) in
981 .dynamic section. */
982 dynsymcount++;
983
984 elf_hash_table (info)->dynsymcount = dynsymcount;
985 return dynsymcount;
986 }
987
988 /* Merge st_other field. */
989
990 static void
991 elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
992 const Elf_Internal_Sym *isym, asection *sec,
993 bfd_boolean definition, bfd_boolean dynamic)
994 {
995 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
996
997 /* If st_other has a processor-specific meaning, specific
998 code might be needed here. */
999 if (bed->elf_backend_merge_symbol_attribute)
1000 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
1001 dynamic);
1002
1003 if (!dynamic)
1004 {
1005 unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
1006 unsigned hvis = ELF_ST_VISIBILITY (h->other);
1007
1008 /* Keep the most constraining visibility. Leave the remainder
1009 of the st_other field to elf_backend_merge_symbol_attribute. */
1010 if (symvis - 1 < hvis - 1)
1011 h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
1012 }
1013 else if (definition
1014 && ELF_ST_VISIBILITY (isym->st_other) != STV_DEFAULT
1015 && (sec->flags & SEC_READONLY) == 0)
1016 h->protected_def = 1;
1017 }
1018
1019 /* This function is called when we want to merge a new symbol with an
1020 existing symbol. It handles the various cases which arise when we
1021 find a definition in a dynamic object, or when there is already a
1022 definition in a dynamic object. The new symbol is described by
1023 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
1024 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
1025 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
1026 of an old common symbol. We set OVERRIDE if the old symbol is
1027 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
1028 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
1029 to change. By OK to change, we mean that we shouldn't warn if the
1030 type or size does change. */
1031
1032 static bfd_boolean
1033 _bfd_elf_merge_symbol (bfd *abfd,
1034 struct bfd_link_info *info,
1035 const char *name,
1036 Elf_Internal_Sym *sym,
1037 asection **psec,
1038 bfd_vma *pvalue,
1039 struct elf_link_hash_entry **sym_hash,
1040 bfd **poldbfd,
1041 bfd_boolean *pold_weak,
1042 unsigned int *pold_alignment,
1043 bfd_boolean *skip,
1044 bfd_boolean *override,
1045 bfd_boolean *type_change_ok,
1046 bfd_boolean *size_change_ok,
1047 bfd_boolean *matched)
1048 {
1049 asection *sec, *oldsec;
1050 struct elf_link_hash_entry *h;
1051 struct elf_link_hash_entry *hi;
1052 struct elf_link_hash_entry *flip;
1053 int bind;
1054 bfd *oldbfd;
1055 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
1056 bfd_boolean newweak, oldweak, newfunc, oldfunc;
1057 const struct elf_backend_data *bed;
1058 char *new_version;
1059 bfd_boolean default_sym = *matched;
1060
1061 *skip = FALSE;
1062 *override = FALSE;
1063
1064 sec = *psec;
1065 bind = ELF_ST_BIND (sym->st_info);
1066
1067 if (! bfd_is_und_section (sec))
1068 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
1069 else
1070 h = ((struct elf_link_hash_entry *)
1071 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
1072 if (h == NULL)
1073 return FALSE;
1074 *sym_hash = h;
1075
1076 bed = get_elf_backend_data (abfd);
1077
1078 /* NEW_VERSION is the symbol version of the new symbol. */
1079 if (h->versioned != unversioned)
1080 {
1081 /* Symbol version is unknown or versioned. */
1082 new_version = strrchr (name, ELF_VER_CHR);
1083 if (new_version)
1084 {
1085 if (h->versioned == unknown)
1086 {
1087 if (new_version > name && new_version[-1] != ELF_VER_CHR)
1088 h->versioned = versioned_hidden;
1089 else
1090 h->versioned = versioned;
1091 }
1092 new_version += 1;
1093 if (new_version[0] == '\0')
1094 new_version = NULL;
1095 }
1096 else
1097 h->versioned = unversioned;
1098 }
1099 else
1100 new_version = NULL;
1101
1102 /* For merging, we only care about real symbols. But we need to make
1103 sure that indirect symbol dynamic flags are updated. */
1104 hi = h;
1105 while (h->root.type == bfd_link_hash_indirect
1106 || h->root.type == bfd_link_hash_warning)
1107 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1108
1109 if (!*matched)
1110 {
1111 if (hi == h || h->root.type == bfd_link_hash_new)
1112 *matched = TRUE;
1113 else
1114 {
1115 /* OLD_HIDDEN is true if the existing symbol is only visible
1116 to the symbol with the same symbol version. NEW_HIDDEN is
1117 true if the new symbol is only visible to the symbol with
1118 the same symbol version. */
1119 bfd_boolean old_hidden = h->versioned == versioned_hidden;
1120 bfd_boolean new_hidden = hi->versioned == versioned_hidden;
1121 if (!old_hidden && !new_hidden)
1122 /* The new symbol matches the existing symbol if both
1123 aren't hidden. */
1124 *matched = TRUE;
1125 else
1126 {
1127 /* OLD_VERSION is the symbol version of the existing
1128 symbol. */
1129 char *old_version;
1130
1131 if (h->versioned >= versioned)
1132 old_version = strrchr (h->root.root.string,
1133 ELF_VER_CHR) + 1;
1134 else
1135 old_version = NULL;
1136
1137 /* The new symbol matches the existing symbol if they
1138 have the same symbol version. */
1139 *matched = (old_version == new_version
1140 || (old_version != NULL
1141 && new_version != NULL
1142 && strcmp (old_version, new_version) == 0));
1143 }
1144 }
1145 }
1146
1147 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
1148 existing symbol. */
1149
1150 oldbfd = NULL;
1151 oldsec = NULL;
1152 switch (h->root.type)
1153 {
1154 default:
1155 break;
1156
1157 case bfd_link_hash_undefined:
1158 case bfd_link_hash_undefweak:
1159 oldbfd = h->root.u.undef.abfd;
1160 break;
1161
1162 case bfd_link_hash_defined:
1163 case bfd_link_hash_defweak:
1164 oldbfd = h->root.u.def.section->owner;
1165 oldsec = h->root.u.def.section;
1166 break;
1167
1168 case bfd_link_hash_common:
1169 oldbfd = h->root.u.c.p->section->owner;
1170 oldsec = h->root.u.c.p->section;
1171 if (pold_alignment)
1172 *pold_alignment = h->root.u.c.p->alignment_power;
1173 break;
1174 }
1175 if (poldbfd && *poldbfd == NULL)
1176 *poldbfd = oldbfd;
1177
1178 /* Differentiate strong and weak symbols. */
1179 newweak = bind == STB_WEAK;
1180 oldweak = (h->root.type == bfd_link_hash_defweak
1181 || h->root.type == bfd_link_hash_undefweak);
1182 if (pold_weak)
1183 *pold_weak = oldweak;
1184
1185 /* We have to check it for every instance since the first few may be
1186 references and not all compilers emit symbol type for undefined
1187 symbols. */
1188 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
1189
1190 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
1191 respectively, is from a dynamic object. */
1192
1193 newdyn = (abfd->flags & DYNAMIC) != 0;
1194
1195 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
1196 syms and defined syms in dynamic libraries respectively.
1197 ref_dynamic on the other hand can be set for a symbol defined in
1198 a dynamic library, and def_dynamic may not be set; When the
1199 definition in a dynamic lib is overridden by a definition in the
1200 executable use of the symbol in the dynamic lib becomes a
1201 reference to the executable symbol. */
1202 if (newdyn)
1203 {
1204 if (bfd_is_und_section (sec))
1205 {
1206 if (bind != STB_WEAK)
1207 {
1208 h->ref_dynamic_nonweak = 1;
1209 hi->ref_dynamic_nonweak = 1;
1210 }
1211 }
1212 else
1213 {
1214 /* Update the existing symbol only if they match. */
1215 if (*matched)
1216 h->dynamic_def = 1;
1217 hi->dynamic_def = 1;
1218 }
1219 }
1220
1221 /* If we just created the symbol, mark it as being an ELF symbol.
1222 Other than that, there is nothing to do--there is no merge issue
1223 with a newly defined symbol--so we just return. */
1224
1225 if (h->root.type == bfd_link_hash_new)
1226 {
1227 h->non_elf = 0;
1228 return TRUE;
1229 }
1230
1231 /* In cases involving weak versioned symbols, we may wind up trying
1232 to merge a symbol with itself. Catch that here, to avoid the
1233 confusion that results if we try to override a symbol with
1234 itself. The additional tests catch cases like
1235 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1236 dynamic object, which we do want to handle here. */
1237 if (abfd == oldbfd
1238 && (newweak || oldweak)
1239 && ((abfd->flags & DYNAMIC) == 0
1240 || !h->def_regular))
1241 return TRUE;
1242
1243 olddyn = FALSE;
1244 if (oldbfd != NULL)
1245 olddyn = (oldbfd->flags & DYNAMIC) != 0;
1246 else if (oldsec != NULL)
1247 {
1248 /* This handles the special SHN_MIPS_{TEXT,DATA} section
1249 indices used by MIPS ELF. */
1250 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
1251 }
1252
1253 /* Handle a case where plugin_notice won't be called and thus won't
1254 set the non_ir_ref flags on the first pass over symbols. */
1255 if (oldbfd != NULL
1256 && (oldbfd->flags & BFD_PLUGIN) != (abfd->flags & BFD_PLUGIN)
1257 && newdyn != olddyn)
1258 {
1259 h->root.non_ir_ref_dynamic = TRUE;
1260 hi->root.non_ir_ref_dynamic = TRUE;
1261 }
1262
1263 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1264 respectively, appear to be a definition rather than reference. */
1265
1266 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
1267
1268 olddef = (h->root.type != bfd_link_hash_undefined
1269 && h->root.type != bfd_link_hash_undefweak
1270 && h->root.type != bfd_link_hash_common);
1271
1272 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1273 respectively, appear to be a function. */
1274
1275 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1276 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1277
1278 oldfunc = (h->type != STT_NOTYPE
1279 && bed->is_function_type (h->type));
1280
1281 if (!(newfunc && oldfunc)
1282 && ELF_ST_TYPE (sym->st_info) != h->type
1283 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1284 && h->type != STT_NOTYPE
1285 && (newdef || bfd_is_com_section (sec))
1286 && (olddef || h->root.type == bfd_link_hash_common))
1287 {
1288 /* If creating a default indirect symbol ("foo" or "foo@") from
1289 a dynamic versioned definition ("foo@@") skip doing so if
1290 there is an existing regular definition with a different
1291 type. We don't want, for example, a "time" variable in the
1292 executable overriding a "time" function in a shared library. */
1293 if (newdyn
1294 && !olddyn)
1295 {
1296 *skip = TRUE;
1297 return TRUE;
1298 }
1299
1300 /* When adding a symbol from a regular object file after we have
1301 created indirect symbols, undo the indirection and any
1302 dynamic state. */
1303 if (hi != h
1304 && !newdyn
1305 && olddyn)
1306 {
1307 h = hi;
1308 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1309 h->forced_local = 0;
1310 h->ref_dynamic = 0;
1311 h->def_dynamic = 0;
1312 h->dynamic_def = 0;
1313 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1314 {
1315 h->root.type = bfd_link_hash_undefined;
1316 h->root.u.undef.abfd = abfd;
1317 }
1318 else
1319 {
1320 h->root.type = bfd_link_hash_new;
1321 h->root.u.undef.abfd = NULL;
1322 }
1323 return TRUE;
1324 }
1325 }
1326
1327 /* Check TLS symbols. We don't check undefined symbols introduced
1328 by "ld -u" which have no type (and oldbfd NULL), and we don't
1329 check symbols from plugins because they also have no type. */
1330 if (oldbfd != NULL
1331 && (oldbfd->flags & BFD_PLUGIN) == 0
1332 && (abfd->flags & BFD_PLUGIN) == 0
1333 && ELF_ST_TYPE (sym->st_info) != h->type
1334 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
1335 {
1336 bfd *ntbfd, *tbfd;
1337 bfd_boolean ntdef, tdef;
1338 asection *ntsec, *tsec;
1339
1340 if (h->type == STT_TLS)
1341 {
1342 ntbfd = abfd;
1343 ntsec = sec;
1344 ntdef = newdef;
1345 tbfd = oldbfd;
1346 tsec = oldsec;
1347 tdef = olddef;
1348 }
1349 else
1350 {
1351 ntbfd = oldbfd;
1352 ntsec = oldsec;
1353 ntdef = olddef;
1354 tbfd = abfd;
1355 tsec = sec;
1356 tdef = newdef;
1357 }
1358
1359 if (tdef && ntdef)
1360 _bfd_error_handler
1361 /* xgettext:c-format */
1362 (_("%s: TLS definition in %pB section %pA "
1363 "mismatches non-TLS definition in %pB section %pA"),
1364 h->root.root.string, tbfd, tsec, ntbfd, ntsec);
1365 else if (!tdef && !ntdef)
1366 _bfd_error_handler
1367 /* xgettext:c-format */
1368 (_("%s: TLS reference in %pB "
1369 "mismatches non-TLS reference in %pB"),
1370 h->root.root.string, tbfd, ntbfd);
1371 else if (tdef)
1372 _bfd_error_handler
1373 /* xgettext:c-format */
1374 (_("%s: TLS definition in %pB section %pA "
1375 "mismatches non-TLS reference in %pB"),
1376 h->root.root.string, tbfd, tsec, ntbfd);
1377 else
1378 _bfd_error_handler
1379 /* xgettext:c-format */
1380 (_("%s: TLS reference in %pB "
1381 "mismatches non-TLS definition in %pB section %pA"),
1382 h->root.root.string, tbfd, ntbfd, ntsec);
1383
1384 bfd_set_error (bfd_error_bad_value);
1385 return FALSE;
1386 }
1387
1388 /* If the old symbol has non-default visibility, we ignore the new
1389 definition from a dynamic object. */
1390 if (newdyn
1391 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1392 && !bfd_is_und_section (sec))
1393 {
1394 *skip = TRUE;
1395 /* Make sure this symbol is dynamic. */
1396 h->ref_dynamic = 1;
1397 hi->ref_dynamic = 1;
1398 /* A protected symbol has external availability. Make sure it is
1399 recorded as dynamic.
1400
1401 FIXME: Should we check type and size for protected symbol? */
1402 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
1403 return bfd_elf_link_record_dynamic_symbol (info, h);
1404 else
1405 return TRUE;
1406 }
1407 else if (!newdyn
1408 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
1409 && h->def_dynamic)
1410 {
1411 /* If the new symbol with non-default visibility comes from a
1412 relocatable file and the old definition comes from a dynamic
1413 object, we remove the old definition. */
1414 if (hi->root.type == bfd_link_hash_indirect)
1415 {
1416 /* Handle the case where the old dynamic definition is
1417 default versioned. We need to copy the symbol info from
1418 the symbol with default version to the normal one if it
1419 was referenced before. */
1420 if (h->ref_regular)
1421 {
1422 hi->root.type = h->root.type;
1423 h->root.type = bfd_link_hash_indirect;
1424 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
1425
1426 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1427 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1428 {
1429 /* If the new symbol is hidden or internal, completely undo
1430 any dynamic link state. */
1431 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1432 h->forced_local = 0;
1433 h->ref_dynamic = 0;
1434 }
1435 else
1436 h->ref_dynamic = 1;
1437
1438 h->def_dynamic = 0;
1439 /* FIXME: Should we check type and size for protected symbol? */
1440 h->size = 0;
1441 h->type = 0;
1442
1443 h = hi;
1444 }
1445 else
1446 h = hi;
1447 }
1448
1449 /* If the old symbol was undefined before, then it will still be
1450 on the undefs list. If the new symbol is undefined or
1451 common, we can't make it bfd_link_hash_new here, because new
1452 undefined or common symbols will be added to the undefs list
1453 by _bfd_generic_link_add_one_symbol. Symbols may not be
1454 added twice to the undefs list. Also, if the new symbol is
1455 undefweak then we don't want to lose the strong undef. */
1456 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1457 {
1458 h->root.type = bfd_link_hash_undefined;
1459 h->root.u.undef.abfd = abfd;
1460 }
1461 else
1462 {
1463 h->root.type = bfd_link_hash_new;
1464 h->root.u.undef.abfd = NULL;
1465 }
1466
1467 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1468 {
1469 /* If the new symbol is hidden or internal, completely undo
1470 any dynamic link state. */
1471 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1472 h->forced_local = 0;
1473 h->ref_dynamic = 0;
1474 }
1475 else
1476 h->ref_dynamic = 1;
1477 h->def_dynamic = 0;
1478 /* FIXME: Should we check type and size for protected symbol? */
1479 h->size = 0;
1480 h->type = 0;
1481 return TRUE;
1482 }
1483
1484 /* If a new weak symbol definition comes from a regular file and the
1485 old symbol comes from a dynamic library, we treat the new one as
1486 strong. Similarly, an old weak symbol definition from a regular
1487 file is treated as strong when the new symbol comes from a dynamic
1488 library. Further, an old weak symbol from a dynamic library is
1489 treated as strong if the new symbol is from a dynamic library.
1490 This reflects the way glibc's ld.so works.
1491
1492 Also allow a weak symbol to override a linker script symbol
1493 defined by an early pass over the script. This is done so the
1494 linker knows the symbol is defined in an object file, for the
1495 DEFINED script function.
1496
1497 Do this before setting *type_change_ok or *size_change_ok so that
1498 we warn properly when dynamic library symbols are overridden. */
1499
1500 if (newdef && !newdyn && (olddyn || h->root.ldscript_def))
1501 newweak = FALSE;
1502 if (olddef && newdyn)
1503 oldweak = FALSE;
1504
1505 /* Allow changes between different types of function symbol. */
1506 if (newfunc && oldfunc)
1507 *type_change_ok = TRUE;
1508
1509 /* It's OK to change the type if either the existing symbol or the
1510 new symbol is weak. A type change is also OK if the old symbol
1511 is undefined and the new symbol is defined. */
1512
1513 if (oldweak
1514 || newweak
1515 || (newdef
1516 && h->root.type == bfd_link_hash_undefined))
1517 *type_change_ok = TRUE;
1518
1519 /* It's OK to change the size if either the existing symbol or the
1520 new symbol is weak, or if the old symbol is undefined. */
1521
1522 if (*type_change_ok
1523 || h->root.type == bfd_link_hash_undefined)
1524 *size_change_ok = TRUE;
1525
1526 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1527 symbol, respectively, appears to be a common symbol in a dynamic
1528 object. If a symbol appears in an uninitialized section, and is
1529 not weak, and is not a function, then it may be a common symbol
1530 which was resolved when the dynamic object was created. We want
1531 to treat such symbols specially, because they raise special
1532 considerations when setting the symbol size: if the symbol
1533 appears as a common symbol in a regular object, and the size in
1534 the regular object is larger, we must make sure that we use the
1535 larger size. This problematic case can always be avoided in C,
1536 but it must be handled correctly when using Fortran shared
1537 libraries.
1538
1539 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1540 likewise for OLDDYNCOMMON and OLDDEF.
1541
1542 Note that this test is just a heuristic, and that it is quite
1543 possible to have an uninitialized symbol in a shared object which
1544 is really a definition, rather than a common symbol. This could
1545 lead to some minor confusion when the symbol really is a common
1546 symbol in some regular object. However, I think it will be
1547 harmless. */
1548
1549 if (newdyn
1550 && newdef
1551 && !newweak
1552 && (sec->flags & SEC_ALLOC) != 0
1553 && (sec->flags & SEC_LOAD) == 0
1554 && sym->st_size > 0
1555 && !newfunc)
1556 newdyncommon = TRUE;
1557 else
1558 newdyncommon = FALSE;
1559
1560 if (olddyn
1561 && olddef
1562 && h->root.type == bfd_link_hash_defined
1563 && h->def_dynamic
1564 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1565 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1566 && h->size > 0
1567 && !oldfunc)
1568 olddyncommon = TRUE;
1569 else
1570 olddyncommon = FALSE;
1571
1572 /* We now know everything about the old and new symbols. We ask the
1573 backend to check if we can merge them. */
1574 if (bed->merge_symbol != NULL)
1575 {
1576 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1577 return FALSE;
1578 sec = *psec;
1579 }
1580
1581 /* There are multiple definitions of a normal symbol. Skip the
1582 default symbol as well as definition from an IR object. */
1583 if (olddef && !olddyn && !oldweak && newdef && !newdyn && !newweak
1584 && !default_sym && h->def_regular
1585 && !(oldbfd != NULL
1586 && (oldbfd->flags & BFD_PLUGIN) != 0
1587 && (abfd->flags & BFD_PLUGIN) == 0))
1588 {
1589 /* Handle a multiple definition. */
1590 (*info->callbacks->multiple_definition) (info, &h->root,
1591 abfd, sec, *pvalue);
1592 *skip = TRUE;
1593 return TRUE;
1594 }
1595
1596 /* If both the old and the new symbols look like common symbols in a
1597 dynamic object, set the size of the symbol to the larger of the
1598 two. */
1599
1600 if (olddyncommon
1601 && newdyncommon
1602 && sym->st_size != h->size)
1603 {
1604 /* Since we think we have two common symbols, issue a multiple
1605 common warning if desired. Note that we only warn if the
1606 size is different. If the size is the same, we simply let
1607 the old symbol override the new one as normally happens with
1608 symbols defined in dynamic objects. */
1609
1610 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1611 bfd_link_hash_common, sym->st_size);
1612 if (sym->st_size > h->size)
1613 h->size = sym->st_size;
1614
1615 *size_change_ok = TRUE;
1616 }
1617
1618 /* If we are looking at a dynamic object, and we have found a
1619 definition, we need to see if the symbol was already defined by
1620 some other object. If so, we want to use the existing
1621 definition, and we do not want to report a multiple symbol
1622 definition error; we do this by clobbering *PSEC to be
1623 bfd_und_section_ptr.
1624
1625 We treat a common symbol as a definition if the symbol in the
1626 shared library is a function, since common symbols always
1627 represent variables; this can cause confusion in principle, but
1628 any such confusion would seem to indicate an erroneous program or
1629 shared library. We also permit a common symbol in a regular
1630 object to override a weak symbol in a shared object. */
1631
1632 if (newdyn
1633 && newdef
1634 && (olddef
1635 || (h->root.type == bfd_link_hash_common
1636 && (newweak || newfunc))))
1637 {
1638 *override = TRUE;
1639 newdef = FALSE;
1640 newdyncommon = FALSE;
1641
1642 *psec = sec = bfd_und_section_ptr;
1643 *size_change_ok = TRUE;
1644
1645 /* If we get here when the old symbol is a common symbol, then
1646 we are explicitly letting it override a weak symbol or
1647 function in a dynamic object, and we don't want to warn about
1648 a type change. If the old symbol is a defined symbol, a type
1649 change warning may still be appropriate. */
1650
1651 if (h->root.type == bfd_link_hash_common)
1652 *type_change_ok = TRUE;
1653 }
1654
1655 /* Handle the special case of an old common symbol merging with a
1656 new symbol which looks like a common symbol in a shared object.
1657 We change *PSEC and *PVALUE to make the new symbol look like a
1658 common symbol, and let _bfd_generic_link_add_one_symbol do the
1659 right thing. */
1660
1661 if (newdyncommon
1662 && h->root.type == bfd_link_hash_common)
1663 {
1664 *override = TRUE;
1665 newdef = FALSE;
1666 newdyncommon = FALSE;
1667 *pvalue = sym->st_size;
1668 *psec = sec = bed->common_section (oldsec);
1669 *size_change_ok = TRUE;
1670 }
1671
1672 /* Skip weak definitions of symbols that are already defined. */
1673 if (newdef && olddef && newweak)
1674 {
1675 /* Don't skip new non-IR weak syms. */
1676 if (!(oldbfd != NULL
1677 && (oldbfd->flags & BFD_PLUGIN) != 0
1678 && (abfd->flags & BFD_PLUGIN) == 0))
1679 {
1680 newdef = FALSE;
1681 *skip = TRUE;
1682 }
1683
1684 /* Merge st_other. If the symbol already has a dynamic index,
1685 but visibility says it should not be visible, turn it into a
1686 local symbol. */
1687 elf_merge_st_other (abfd, h, sym, sec, newdef, newdyn);
1688 if (h->dynindx != -1)
1689 switch (ELF_ST_VISIBILITY (h->other))
1690 {
1691 case STV_INTERNAL:
1692 case STV_HIDDEN:
1693 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1694 break;
1695 }
1696 }
1697
1698 /* If the old symbol is from a dynamic object, and the new symbol is
1699 a definition which is not from a dynamic object, then the new
1700 symbol overrides the old symbol. Symbols from regular files
1701 always take precedence over symbols from dynamic objects, even if
1702 they are defined after the dynamic object in the link.
1703
1704 As above, we again permit a common symbol in a regular object to
1705 override a definition in a shared object if the shared object
1706 symbol is a function or is weak. */
1707
1708 flip = NULL;
1709 if (!newdyn
1710 && (newdef
1711 || (bfd_is_com_section (sec)
1712 && (oldweak || oldfunc)))
1713 && olddyn
1714 && olddef
1715 && h->def_dynamic)
1716 {
1717 /* Change the hash table entry to undefined, and let
1718 _bfd_generic_link_add_one_symbol do the right thing with the
1719 new definition. */
1720
1721 h->root.type = bfd_link_hash_undefined;
1722 h->root.u.undef.abfd = h->root.u.def.section->owner;
1723 *size_change_ok = TRUE;
1724
1725 olddef = FALSE;
1726 olddyncommon = FALSE;
1727
1728 /* We again permit a type change when a common symbol may be
1729 overriding a function. */
1730
1731 if (bfd_is_com_section (sec))
1732 {
1733 if (oldfunc)
1734 {
1735 /* If a common symbol overrides a function, make sure
1736 that it isn't defined dynamically nor has type
1737 function. */
1738 h->def_dynamic = 0;
1739 h->type = STT_NOTYPE;
1740 }
1741 *type_change_ok = TRUE;
1742 }
1743
1744 if (hi->root.type == bfd_link_hash_indirect)
1745 flip = hi;
1746 else
1747 /* This union may have been set to be non-NULL when this symbol
1748 was seen in a dynamic object. We must force the union to be
1749 NULL, so that it is correct for a regular symbol. */
1750 h->verinfo.vertree = NULL;
1751 }
1752
1753 /* Handle the special case of a new common symbol merging with an
1754 old symbol that looks like it might be a common symbol defined in
1755 a shared object. Note that we have already handled the case in
1756 which a new common symbol should simply override the definition
1757 in the shared library. */
1758
1759 if (! newdyn
1760 && bfd_is_com_section (sec)
1761 && olddyncommon)
1762 {
1763 /* It would be best if we could set the hash table entry to a
1764 common symbol, but we don't know what to use for the section
1765 or the alignment. */
1766 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1767 bfd_link_hash_common, sym->st_size);
1768
1769 /* If the presumed common symbol in the dynamic object is
1770 larger, pretend that the new symbol has its size. */
1771
1772 if (h->size > *pvalue)
1773 *pvalue = h->size;
1774
1775 /* We need to remember the alignment required by the symbol
1776 in the dynamic object. */
1777 BFD_ASSERT (pold_alignment);
1778 *pold_alignment = h->root.u.def.section->alignment_power;
1779
1780 olddef = FALSE;
1781 olddyncommon = FALSE;
1782
1783 h->root.type = bfd_link_hash_undefined;
1784 h->root.u.undef.abfd = h->root.u.def.section->owner;
1785
1786 *size_change_ok = TRUE;
1787 *type_change_ok = TRUE;
1788
1789 if (hi->root.type == bfd_link_hash_indirect)
1790 flip = hi;
1791 else
1792 h->verinfo.vertree = NULL;
1793 }
1794
1795 if (flip != NULL)
1796 {
1797 /* Handle the case where we had a versioned symbol in a dynamic
1798 library and now find a definition in a normal object. In this
1799 case, we make the versioned symbol point to the normal one. */
1800 flip->root.type = h->root.type;
1801 flip->root.u.undef.abfd = h->root.u.undef.abfd;
1802 h->root.type = bfd_link_hash_indirect;
1803 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
1804 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
1805 if (h->def_dynamic)
1806 {
1807 h->def_dynamic = 0;
1808 flip->ref_dynamic = 1;
1809 }
1810 }
1811
1812 return TRUE;
1813 }
1814
1815 /* This function is called to create an indirect symbol from the
1816 default for the symbol with the default version if needed. The
1817 symbol is described by H, NAME, SYM, SEC, and VALUE. We
1818 set DYNSYM if the new indirect symbol is dynamic. */
1819
1820 static bfd_boolean
1821 _bfd_elf_add_default_symbol (bfd *abfd,
1822 struct bfd_link_info *info,
1823 struct elf_link_hash_entry *h,
1824 const char *name,
1825 Elf_Internal_Sym *sym,
1826 asection *sec,
1827 bfd_vma value,
1828 bfd **poldbfd,
1829 bfd_boolean *dynsym)
1830 {
1831 bfd_boolean type_change_ok;
1832 bfd_boolean size_change_ok;
1833 bfd_boolean skip;
1834 char *shortname;
1835 struct elf_link_hash_entry *hi;
1836 struct bfd_link_hash_entry *bh;
1837 const struct elf_backend_data *bed;
1838 bfd_boolean collect;
1839 bfd_boolean dynamic;
1840 bfd_boolean override;
1841 char *p;
1842 size_t len, shortlen;
1843 asection *tmp_sec;
1844 bfd_boolean matched;
1845
1846 if (h->versioned == unversioned || h->versioned == versioned_hidden)
1847 return TRUE;
1848
1849 /* If this symbol has a version, and it is the default version, we
1850 create an indirect symbol from the default name to the fully
1851 decorated name. This will cause external references which do not
1852 specify a version to be bound to this version of the symbol. */
1853 p = strchr (name, ELF_VER_CHR);
1854 if (h->versioned == unknown)
1855 {
1856 if (p == NULL)
1857 {
1858 h->versioned = unversioned;
1859 return TRUE;
1860 }
1861 else
1862 {
1863 if (p[1] != ELF_VER_CHR)
1864 {
1865 h->versioned = versioned_hidden;
1866 return TRUE;
1867 }
1868 else
1869 h->versioned = versioned;
1870 }
1871 }
1872 else
1873 {
1874 /* PR ld/19073: We may see an unversioned definition after the
1875 default version. */
1876 if (p == NULL)
1877 return TRUE;
1878 }
1879
1880 bed = get_elf_backend_data (abfd);
1881 collect = bed->collect;
1882 dynamic = (abfd->flags & DYNAMIC) != 0;
1883
1884 shortlen = p - name;
1885 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
1886 if (shortname == NULL)
1887 return FALSE;
1888 memcpy (shortname, name, shortlen);
1889 shortname[shortlen] = '\0';
1890
1891 /* We are going to create a new symbol. Merge it with any existing
1892 symbol with this name. For the purposes of the merge, act as
1893 though we were defining the symbol we just defined, although we
1894 actually going to define an indirect symbol. */
1895 type_change_ok = FALSE;
1896 size_change_ok = FALSE;
1897 matched = TRUE;
1898 tmp_sec = sec;
1899 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1900 &hi, poldbfd, NULL, NULL, &skip, &override,
1901 &type_change_ok, &size_change_ok, &matched))
1902 return FALSE;
1903
1904 if (skip)
1905 goto nondefault;
1906
1907 if (hi->def_regular || ELF_COMMON_DEF_P (hi))
1908 {
1909 /* If the undecorated symbol will have a version added by a
1910 script different to H, then don't indirect to/from the
1911 undecorated symbol. This isn't ideal because we may not yet
1912 have seen symbol versions, if given by a script on the
1913 command line rather than via --version-script. */
1914 if (hi->verinfo.vertree == NULL && info->version_info != NULL)
1915 {
1916 bfd_boolean hide;
1917
1918 hi->verinfo.vertree
1919 = bfd_find_version_for_sym (info->version_info,
1920 hi->root.root.string, &hide);
1921 if (hi->verinfo.vertree != NULL && hide)
1922 {
1923 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
1924 goto nondefault;
1925 }
1926 }
1927 if (hi->verinfo.vertree != NULL
1928 && strcmp (p + 1 + (p[1] == '@'), hi->verinfo.vertree->name) != 0)
1929 goto nondefault;
1930 }
1931
1932 if (! override)
1933 {
1934 /* Add the default symbol if not performing a relocatable link. */
1935 if (! bfd_link_relocatable (info))
1936 {
1937 bh = &hi->root;
1938 if (bh->type == bfd_link_hash_defined
1939 && bh->u.def.section->owner != NULL
1940 && (bh->u.def.section->owner->flags & BFD_PLUGIN) != 0)
1941 {
1942 /* Mark the previous definition from IR object as
1943 undefined so that the generic linker will override
1944 it. */
1945 bh->type = bfd_link_hash_undefined;
1946 bh->u.undef.abfd = bh->u.def.section->owner;
1947 }
1948 if (! (_bfd_generic_link_add_one_symbol
1949 (info, abfd, shortname, BSF_INDIRECT,
1950 bfd_ind_section_ptr,
1951 0, name, FALSE, collect, &bh)))
1952 return FALSE;
1953 hi = (struct elf_link_hash_entry *) bh;
1954 }
1955 }
1956 else
1957 {
1958 /* In this case the symbol named SHORTNAME is overriding the
1959 indirect symbol we want to add. We were planning on making
1960 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1961 is the name without a version. NAME is the fully versioned
1962 name, and it is the default version.
1963
1964 Overriding means that we already saw a definition for the
1965 symbol SHORTNAME in a regular object, and it is overriding
1966 the symbol defined in the dynamic object.
1967
1968 When this happens, we actually want to change NAME, the
1969 symbol we just added, to refer to SHORTNAME. This will cause
1970 references to NAME in the shared object to become references
1971 to SHORTNAME in the regular object. This is what we expect
1972 when we override a function in a shared object: that the
1973 references in the shared object will be mapped to the
1974 definition in the regular object. */
1975
1976 while (hi->root.type == bfd_link_hash_indirect
1977 || hi->root.type == bfd_link_hash_warning)
1978 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1979
1980 h->root.type = bfd_link_hash_indirect;
1981 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1982 if (h->def_dynamic)
1983 {
1984 h->def_dynamic = 0;
1985 hi->ref_dynamic = 1;
1986 if (hi->ref_regular
1987 || hi->def_regular)
1988 {
1989 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
1990 return FALSE;
1991 }
1992 }
1993
1994 /* Now set HI to H, so that the following code will set the
1995 other fields correctly. */
1996 hi = h;
1997 }
1998
1999 /* Check if HI is a warning symbol. */
2000 if (hi->root.type == bfd_link_hash_warning)
2001 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
2002
2003 /* If there is a duplicate definition somewhere, then HI may not
2004 point to an indirect symbol. We will have reported an error to
2005 the user in that case. */
2006
2007 if (hi->root.type == bfd_link_hash_indirect)
2008 {
2009 struct elf_link_hash_entry *ht;
2010
2011 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
2012 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
2013
2014 /* A reference to the SHORTNAME symbol from a dynamic library
2015 will be satisfied by the versioned symbol at runtime. In
2016 effect, we have a reference to the versioned symbol. */
2017 ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
2018 hi->dynamic_def |= ht->dynamic_def;
2019
2020 /* See if the new flags lead us to realize that the symbol must
2021 be dynamic. */
2022 if (! *dynsym)
2023 {
2024 if (! dynamic)
2025 {
2026 if (! bfd_link_executable (info)
2027 || hi->def_dynamic
2028 || hi->ref_dynamic)
2029 *dynsym = TRUE;
2030 }
2031 else
2032 {
2033 if (hi->ref_regular)
2034 *dynsym = TRUE;
2035 }
2036 }
2037 }
2038
2039 /* We also need to define an indirection from the nondefault version
2040 of the symbol. */
2041
2042 nondefault:
2043 len = strlen (name);
2044 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
2045 if (shortname == NULL)
2046 return FALSE;
2047 memcpy (shortname, name, shortlen);
2048 memcpy (shortname + shortlen, p + 1, len - shortlen);
2049
2050 /* Once again, merge with any existing symbol. */
2051 type_change_ok = FALSE;
2052 size_change_ok = FALSE;
2053 tmp_sec = sec;
2054 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
2055 &hi, poldbfd, NULL, NULL, &skip, &override,
2056 &type_change_ok, &size_change_ok, &matched))
2057 return FALSE;
2058
2059 if (skip)
2060 return TRUE;
2061
2062 if (override)
2063 {
2064 /* Here SHORTNAME is a versioned name, so we don't expect to see
2065 the type of override we do in the case above unless it is
2066 overridden by a versioned definition. */
2067 if (hi->root.type != bfd_link_hash_defined
2068 && hi->root.type != bfd_link_hash_defweak)
2069 _bfd_error_handler
2070 /* xgettext:c-format */
2071 (_("%pB: unexpected redefinition of indirect versioned symbol `%s'"),
2072 abfd, shortname);
2073 }
2074 else
2075 {
2076 bh = &hi->root;
2077 if (! (_bfd_generic_link_add_one_symbol
2078 (info, abfd, shortname, BSF_INDIRECT,
2079 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
2080 return FALSE;
2081 hi = (struct elf_link_hash_entry *) bh;
2082
2083 /* If there is a duplicate definition somewhere, then HI may not
2084 point to an indirect symbol. We will have reported an error
2085 to the user in that case. */
2086
2087 if (hi->root.type == bfd_link_hash_indirect)
2088 {
2089 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
2090 h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
2091 hi->dynamic_def |= h->dynamic_def;
2092
2093 /* See if the new flags lead us to realize that the symbol
2094 must be dynamic. */
2095 if (! *dynsym)
2096 {
2097 if (! dynamic)
2098 {
2099 if (! bfd_link_executable (info)
2100 || hi->ref_dynamic)
2101 *dynsym = TRUE;
2102 }
2103 else
2104 {
2105 if (hi->ref_regular)
2106 *dynsym = TRUE;
2107 }
2108 }
2109 }
2110 }
2111
2112 return TRUE;
2113 }
2114 \f
2115 /* This routine is used to export all defined symbols into the dynamic
2116 symbol table. It is called via elf_link_hash_traverse. */
2117
2118 static bfd_boolean
2119 _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
2120 {
2121 struct elf_info_failed *eif = (struct elf_info_failed *) data;
2122
2123 /* Ignore indirect symbols. These are added by the versioning code. */
2124 if (h->root.type == bfd_link_hash_indirect)
2125 return TRUE;
2126
2127 /* Ignore this if we won't export it. */
2128 if (!eif->info->export_dynamic && !h->dynamic)
2129 return TRUE;
2130
2131 if (h->dynindx == -1
2132 && (h->def_regular || h->ref_regular)
2133 && ! bfd_hide_sym_by_version (eif->info->version_info,
2134 h->root.root.string))
2135 {
2136 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2137 {
2138 eif->failed = TRUE;
2139 return FALSE;
2140 }
2141 }
2142
2143 return TRUE;
2144 }
2145 \f
2146 /* Look through the symbols which are defined in other shared
2147 libraries and referenced here. Update the list of version
2148 dependencies. This will be put into the .gnu.version_r section.
2149 This function is called via elf_link_hash_traverse. */
2150
2151 static bfd_boolean
2152 _bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
2153 void *data)
2154 {
2155 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
2156 Elf_Internal_Verneed *t;
2157 Elf_Internal_Vernaux *a;
2158 size_t amt;
2159
2160 /* We only care about symbols defined in shared objects with version
2161 information. */
2162 if (!h->def_dynamic
2163 || h->def_regular
2164 || h->dynindx == -1
2165 || h->verinfo.verdef == NULL
2166 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
2167 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
2168 return TRUE;
2169
2170 /* See if we already know about this version. */
2171 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
2172 t != NULL;
2173 t = t->vn_nextref)
2174 {
2175 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
2176 continue;
2177
2178 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2179 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
2180 return TRUE;
2181
2182 break;
2183 }
2184
2185 /* This is a new version. Add it to tree we are building. */
2186
2187 if (t == NULL)
2188 {
2189 amt = sizeof *t;
2190 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
2191 if (t == NULL)
2192 {
2193 rinfo->failed = TRUE;
2194 return FALSE;
2195 }
2196
2197 t->vn_bfd = h->verinfo.verdef->vd_bfd;
2198 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
2199 elf_tdata (rinfo->info->output_bfd)->verref = t;
2200 }
2201
2202 amt = sizeof *a;
2203 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
2204 if (a == NULL)
2205 {
2206 rinfo->failed = TRUE;
2207 return FALSE;
2208 }
2209
2210 /* Note that we are copying a string pointer here, and testing it
2211 above. If bfd_elf_string_from_elf_section is ever changed to
2212 discard the string data when low in memory, this will have to be
2213 fixed. */
2214 a->vna_nodename = h->verinfo.verdef->vd_nodename;
2215
2216 a->vna_flags = h->verinfo.verdef->vd_flags;
2217 a->vna_nextptr = t->vn_auxptr;
2218
2219 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
2220 ++rinfo->vers;
2221
2222 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
2223
2224 t->vn_auxptr = a;
2225
2226 return TRUE;
2227 }
2228
2229 /* Return TRUE and set *HIDE to TRUE if the versioned symbol is
2230 hidden. Set *T_P to NULL if there is no match. */
2231
2232 static bfd_boolean
2233 _bfd_elf_link_hide_versioned_symbol (struct bfd_link_info *info,
2234 struct elf_link_hash_entry *h,
2235 const char *version_p,
2236 struct bfd_elf_version_tree **t_p,
2237 bfd_boolean *hide)
2238 {
2239 struct bfd_elf_version_tree *t;
2240
2241 /* Look for the version. If we find it, it is no longer weak. */
2242 for (t = info->version_info; t != NULL; t = t->next)
2243 {
2244 if (strcmp (t->name, version_p) == 0)
2245 {
2246 size_t len;
2247 char *alc;
2248 struct bfd_elf_version_expr *d;
2249
2250 len = version_p - h->root.root.string;
2251 alc = (char *) bfd_malloc (len);
2252 if (alc == NULL)
2253 return FALSE;
2254 memcpy (alc, h->root.root.string, len - 1);
2255 alc[len - 1] = '\0';
2256 if (alc[len - 2] == ELF_VER_CHR)
2257 alc[len - 2] = '\0';
2258
2259 h->verinfo.vertree = t;
2260 t->used = TRUE;
2261 d = NULL;
2262
2263 if (t->globals.list != NULL)
2264 d = (*t->match) (&t->globals, NULL, alc);
2265
2266 /* See if there is anything to force this symbol to
2267 local scope. */
2268 if (d == NULL && t->locals.list != NULL)
2269 {
2270 d = (*t->match) (&t->locals, NULL, alc);
2271 if (d != NULL
2272 && h->dynindx != -1
2273 && ! info->export_dynamic)
2274 *hide = TRUE;
2275 }
2276
2277 free (alc);
2278 break;
2279 }
2280 }
2281
2282 *t_p = t;
2283
2284 return TRUE;
2285 }
2286
2287 /* Return TRUE if the symbol H is hidden by version script. */
2288
2289 bfd_boolean
2290 _bfd_elf_link_hide_sym_by_version (struct bfd_link_info *info,
2291 struct elf_link_hash_entry *h)
2292 {
2293 const char *p;
2294 bfd_boolean hide = FALSE;
2295 const struct elf_backend_data *bed
2296 = get_elf_backend_data (info->output_bfd);
2297
2298 /* Version script only hides symbols defined in regular objects. */
2299 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
2300 return TRUE;
2301
2302 p = strchr (h->root.root.string, ELF_VER_CHR);
2303 if (p != NULL && h->verinfo.vertree == NULL)
2304 {
2305 struct bfd_elf_version_tree *t;
2306
2307 ++p;
2308 if (*p == ELF_VER_CHR)
2309 ++p;
2310
2311 if (*p != '\0'
2312 && _bfd_elf_link_hide_versioned_symbol (info, h, p, &t, &hide)
2313 && hide)
2314 {
2315 if (hide)
2316 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2317 return TRUE;
2318 }
2319 }
2320
2321 /* If we don't have a version for this symbol, see if we can find
2322 something. */
2323 if (h->verinfo.vertree == NULL && info->version_info != NULL)
2324 {
2325 h->verinfo.vertree
2326 = bfd_find_version_for_sym (info->version_info,
2327 h->root.root.string, &hide);
2328 if (h->verinfo.vertree != NULL && hide)
2329 {
2330 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2331 return TRUE;
2332 }
2333 }
2334
2335 return FALSE;
2336 }
2337
2338 /* Figure out appropriate versions for all the symbols. We may not
2339 have the version number script until we have read all of the input
2340 files, so until that point we don't know which symbols should be
2341 local. This function is called via elf_link_hash_traverse. */
2342
2343 static bfd_boolean
2344 _bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
2345 {
2346 struct elf_info_failed *sinfo;
2347 struct bfd_link_info *info;
2348 const struct elf_backend_data *bed;
2349 struct elf_info_failed eif;
2350 char *p;
2351 bfd_boolean hide;
2352
2353 sinfo = (struct elf_info_failed *) data;
2354 info = sinfo->info;
2355
2356 /* Fix the symbol flags. */
2357 eif.failed = FALSE;
2358 eif.info = info;
2359 if (! _bfd_elf_fix_symbol_flags (h, &eif))
2360 {
2361 if (eif.failed)
2362 sinfo->failed = TRUE;
2363 return FALSE;
2364 }
2365
2366 bed = get_elf_backend_data (info->output_bfd);
2367
2368 /* We only need version numbers for symbols defined in regular
2369 objects. */
2370 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
2371 {
2372 /* Hide symbols defined in discarded input sections. */
2373 if ((h->root.type == bfd_link_hash_defined
2374 || h->root.type == bfd_link_hash_defweak)
2375 && discarded_section (h->root.u.def.section))
2376 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2377 return TRUE;
2378 }
2379
2380 hide = FALSE;
2381 p = strchr (h->root.root.string, ELF_VER_CHR);
2382 if (p != NULL && h->verinfo.vertree == NULL)
2383 {
2384 struct bfd_elf_version_tree *t;
2385
2386 ++p;
2387 if (*p == ELF_VER_CHR)
2388 ++p;
2389
2390 /* If there is no version string, we can just return out. */
2391 if (*p == '\0')
2392 return TRUE;
2393
2394 if (!_bfd_elf_link_hide_versioned_symbol (info, h, p, &t, &hide))
2395 {
2396 sinfo->failed = TRUE;
2397 return FALSE;
2398 }
2399
2400 if (hide)
2401 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2402
2403 /* If we are building an application, we need to create a
2404 version node for this version. */
2405 if (t == NULL && bfd_link_executable (info))
2406 {
2407 struct bfd_elf_version_tree **pp;
2408 int version_index;
2409
2410 /* If we aren't going to export this symbol, we don't need
2411 to worry about it. */
2412 if (h->dynindx == -1)
2413 return TRUE;
2414
2415 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd,
2416 sizeof *t);
2417 if (t == NULL)
2418 {
2419 sinfo->failed = TRUE;
2420 return FALSE;
2421 }
2422
2423 t->name = p;
2424 t->name_indx = (unsigned int) -1;
2425 t->used = TRUE;
2426
2427 version_index = 1;
2428 /* Don't count anonymous version tag. */
2429 if (sinfo->info->version_info != NULL
2430 && sinfo->info->version_info->vernum == 0)
2431 version_index = 0;
2432 for (pp = &sinfo->info->version_info;
2433 *pp != NULL;
2434 pp = &(*pp)->next)
2435 ++version_index;
2436 t->vernum = version_index;
2437
2438 *pp = t;
2439
2440 h->verinfo.vertree = t;
2441 }
2442 else if (t == NULL)
2443 {
2444 /* We could not find the version for a symbol when
2445 generating a shared archive. Return an error. */
2446 _bfd_error_handler
2447 /* xgettext:c-format */
2448 (_("%pB: version node not found for symbol %s"),
2449 info->output_bfd, h->root.root.string);
2450 bfd_set_error (bfd_error_bad_value);
2451 sinfo->failed = TRUE;
2452 return FALSE;
2453 }
2454 }
2455
2456 /* If we don't have a version for this symbol, see if we can find
2457 something. */
2458 if (!hide
2459 && h->verinfo.vertree == NULL
2460 && sinfo->info->version_info != NULL)
2461 {
2462 h->verinfo.vertree
2463 = bfd_find_version_for_sym (sinfo->info->version_info,
2464 h->root.root.string, &hide);
2465 if (h->verinfo.vertree != NULL && hide)
2466 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2467 }
2468
2469 return TRUE;
2470 }
2471 \f
2472 /* Read and swap the relocs from the section indicated by SHDR. This
2473 may be either a REL or a RELA section. The relocations are
2474 translated into RELA relocations and stored in INTERNAL_RELOCS,
2475 which should have already been allocated to contain enough space.
2476 The EXTERNAL_RELOCS are a buffer where the external form of the
2477 relocations should be stored.
2478
2479 Returns FALSE if something goes wrong. */
2480
2481 static bfd_boolean
2482 elf_link_read_relocs_from_section (bfd *abfd,
2483 asection *sec,
2484 Elf_Internal_Shdr *shdr,
2485 void *external_relocs,
2486 Elf_Internal_Rela *internal_relocs)
2487 {
2488 const struct elf_backend_data *bed;
2489 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
2490 const bfd_byte *erela;
2491 const bfd_byte *erelaend;
2492 Elf_Internal_Rela *irela;
2493 Elf_Internal_Shdr *symtab_hdr;
2494 size_t nsyms;
2495
2496 /* Position ourselves at the start of the section. */
2497 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2498 return FALSE;
2499
2500 /* Read the relocations. */
2501 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2502 return FALSE;
2503
2504 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2505 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
2506
2507 bed = get_elf_backend_data (abfd);
2508
2509 /* Convert the external relocations to the internal format. */
2510 if (shdr->sh_entsize == bed->s->sizeof_rel)
2511 swap_in = bed->s->swap_reloc_in;
2512 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2513 swap_in = bed->s->swap_reloca_in;
2514 else
2515 {
2516 bfd_set_error (bfd_error_wrong_format);
2517 return FALSE;
2518 }
2519
2520 erela = (const bfd_byte *) external_relocs;
2521 /* Setting erelaend like this and comparing with <= handles case of
2522 a fuzzed object with sh_size not a multiple of sh_entsize. */
2523 erelaend = erela + shdr->sh_size - shdr->sh_entsize;
2524 irela = internal_relocs;
2525 while (erela <= erelaend)
2526 {
2527 bfd_vma r_symndx;
2528
2529 (*swap_in) (abfd, erela, irela);
2530 r_symndx = ELF32_R_SYM (irela->r_info);
2531 if (bed->s->arch_size == 64)
2532 r_symndx >>= 24;
2533 if (nsyms > 0)
2534 {
2535 if ((size_t) r_symndx >= nsyms)
2536 {
2537 _bfd_error_handler
2538 /* xgettext:c-format */
2539 (_("%pB: bad reloc symbol index (%#" PRIx64 " >= %#lx)"
2540 " for offset %#" PRIx64 " in section `%pA'"),
2541 abfd, (uint64_t) r_symndx, (unsigned long) nsyms,
2542 (uint64_t) irela->r_offset, sec);
2543 bfd_set_error (bfd_error_bad_value);
2544 return FALSE;
2545 }
2546 }
2547 else if (r_symndx != STN_UNDEF)
2548 {
2549 _bfd_error_handler
2550 /* xgettext:c-format */
2551 (_("%pB: non-zero symbol index (%#" PRIx64 ")"
2552 " for offset %#" PRIx64 " in section `%pA'"
2553 " when the object file has no symbol table"),
2554 abfd, (uint64_t) r_symndx,
2555 (uint64_t) irela->r_offset, sec);
2556 bfd_set_error (bfd_error_bad_value);
2557 return FALSE;
2558 }
2559 irela += bed->s->int_rels_per_ext_rel;
2560 erela += shdr->sh_entsize;
2561 }
2562
2563 return TRUE;
2564 }
2565
2566 /* Read and swap the relocs for a section O. They may have been
2567 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2568 not NULL, they are used as buffers to read into. They are known to
2569 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2570 the return value is allocated using either malloc or bfd_alloc,
2571 according to the KEEP_MEMORY argument. If O has two relocation
2572 sections (both REL and RELA relocations), then the REL_HDR
2573 relocations will appear first in INTERNAL_RELOCS, followed by the
2574 RELA_HDR relocations. */
2575
2576 Elf_Internal_Rela *
2577 _bfd_elf_link_read_relocs (bfd *abfd,
2578 asection *o,
2579 void *external_relocs,
2580 Elf_Internal_Rela *internal_relocs,
2581 bfd_boolean keep_memory)
2582 {
2583 void *alloc1 = NULL;
2584 Elf_Internal_Rela *alloc2 = NULL;
2585 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2586 struct bfd_elf_section_data *esdo = elf_section_data (o);
2587 Elf_Internal_Rela *internal_rela_relocs;
2588
2589 if (esdo->relocs != NULL)
2590 return esdo->relocs;
2591
2592 if (o->reloc_count == 0)
2593 return NULL;
2594
2595 if (internal_relocs == NULL)
2596 {
2597 bfd_size_type size;
2598
2599 size = (bfd_size_type) o->reloc_count * sizeof (Elf_Internal_Rela);
2600 if (keep_memory)
2601 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
2602 else
2603 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
2604 if (internal_relocs == NULL)
2605 goto error_return;
2606 }
2607
2608 if (external_relocs == NULL)
2609 {
2610 bfd_size_type size = 0;
2611
2612 if (esdo->rel.hdr)
2613 size += esdo->rel.hdr->sh_size;
2614 if (esdo->rela.hdr)
2615 size += esdo->rela.hdr->sh_size;
2616
2617 alloc1 = bfd_malloc (size);
2618 if (alloc1 == NULL)
2619 goto error_return;
2620 external_relocs = alloc1;
2621 }
2622
2623 internal_rela_relocs = internal_relocs;
2624 if (esdo->rel.hdr)
2625 {
2626 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2627 external_relocs,
2628 internal_relocs))
2629 goto error_return;
2630 external_relocs = (((bfd_byte *) external_relocs)
2631 + esdo->rel.hdr->sh_size);
2632 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2633 * bed->s->int_rels_per_ext_rel);
2634 }
2635
2636 if (esdo->rela.hdr
2637 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2638 external_relocs,
2639 internal_rela_relocs)))
2640 goto error_return;
2641
2642 /* Cache the results for next time, if we can. */
2643 if (keep_memory)
2644 esdo->relocs = internal_relocs;
2645
2646 free (alloc1);
2647
2648 /* Don't free alloc2, since if it was allocated we are passing it
2649 back (under the name of internal_relocs). */
2650
2651 return internal_relocs;
2652
2653 error_return:
2654 free (alloc1);
2655 if (alloc2 != NULL)
2656 {
2657 if (keep_memory)
2658 bfd_release (abfd, alloc2);
2659 else
2660 free (alloc2);
2661 }
2662 return NULL;
2663 }
2664
2665 /* Compute the size of, and allocate space for, REL_HDR which is the
2666 section header for a section containing relocations for O. */
2667
2668 static bfd_boolean
2669 _bfd_elf_link_size_reloc_section (bfd *abfd,
2670 struct bfd_elf_section_reloc_data *reldata)
2671 {
2672 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
2673
2674 /* That allows us to calculate the size of the section. */
2675 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
2676
2677 /* The contents field must last into write_object_contents, so we
2678 allocate it with bfd_alloc rather than malloc. Also since we
2679 cannot be sure that the contents will actually be filled in,
2680 we zero the allocated space. */
2681 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
2682 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2683 return FALSE;
2684
2685 if (reldata->hashes == NULL && reldata->count)
2686 {
2687 struct elf_link_hash_entry **p;
2688
2689 p = ((struct elf_link_hash_entry **)
2690 bfd_zmalloc (reldata->count * sizeof (*p)));
2691 if (p == NULL)
2692 return FALSE;
2693
2694 reldata->hashes = p;
2695 }
2696
2697 return TRUE;
2698 }
2699
2700 /* Copy the relocations indicated by the INTERNAL_RELOCS (which
2701 originated from the section given by INPUT_REL_HDR) to the
2702 OUTPUT_BFD. */
2703
2704 bfd_boolean
2705 _bfd_elf_link_output_relocs (bfd *output_bfd,
2706 asection *input_section,
2707 Elf_Internal_Shdr *input_rel_hdr,
2708 Elf_Internal_Rela *internal_relocs,
2709 struct elf_link_hash_entry **rel_hash
2710 ATTRIBUTE_UNUSED)
2711 {
2712 Elf_Internal_Rela *irela;
2713 Elf_Internal_Rela *irelaend;
2714 bfd_byte *erel;
2715 struct bfd_elf_section_reloc_data *output_reldata;
2716 asection *output_section;
2717 const struct elf_backend_data *bed;
2718 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
2719 struct bfd_elf_section_data *esdo;
2720
2721 output_section = input_section->output_section;
2722
2723 bed = get_elf_backend_data (output_bfd);
2724 esdo = elf_section_data (output_section);
2725 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2726 {
2727 output_reldata = &esdo->rel;
2728 swap_out = bed->s->swap_reloc_out;
2729 }
2730 else if (esdo->rela.hdr
2731 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2732 {
2733 output_reldata = &esdo->rela;
2734 swap_out = bed->s->swap_reloca_out;
2735 }
2736 else
2737 {
2738 _bfd_error_handler
2739 /* xgettext:c-format */
2740 (_("%pB: relocation size mismatch in %pB section %pA"),
2741 output_bfd, input_section->owner, input_section);
2742 bfd_set_error (bfd_error_wrong_format);
2743 return FALSE;
2744 }
2745
2746 erel = output_reldata->hdr->contents;
2747 erel += output_reldata->count * input_rel_hdr->sh_entsize;
2748 irela = internal_relocs;
2749 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2750 * bed->s->int_rels_per_ext_rel);
2751 while (irela < irelaend)
2752 {
2753 (*swap_out) (output_bfd, irela, erel);
2754 irela += bed->s->int_rels_per_ext_rel;
2755 erel += input_rel_hdr->sh_entsize;
2756 }
2757
2758 /* Bump the counter, so that we know where to add the next set of
2759 relocations. */
2760 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
2761
2762 return TRUE;
2763 }
2764 \f
2765 /* Make weak undefined symbols in PIE dynamic. */
2766
2767 bfd_boolean
2768 _bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2769 struct elf_link_hash_entry *h)
2770 {
2771 if (bfd_link_pie (info)
2772 && h->dynindx == -1
2773 && h->root.type == bfd_link_hash_undefweak)
2774 return bfd_elf_link_record_dynamic_symbol (info, h);
2775
2776 return TRUE;
2777 }
2778
2779 /* Fix up the flags for a symbol. This handles various cases which
2780 can only be fixed after all the input files are seen. This is
2781 currently called by both adjust_dynamic_symbol and
2782 assign_sym_version, which is unnecessary but perhaps more robust in
2783 the face of future changes. */
2784
2785 static bfd_boolean
2786 _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2787 struct elf_info_failed *eif)
2788 {
2789 const struct elf_backend_data *bed;
2790
2791 /* If this symbol was mentioned in a non-ELF file, try to set
2792 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2793 permit a non-ELF file to correctly refer to a symbol defined in
2794 an ELF dynamic object. */
2795 if (h->non_elf)
2796 {
2797 while (h->root.type == bfd_link_hash_indirect)
2798 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2799
2800 if (h->root.type != bfd_link_hash_defined
2801 && h->root.type != bfd_link_hash_defweak)
2802 {
2803 h->ref_regular = 1;
2804 h->ref_regular_nonweak = 1;
2805 }
2806 else
2807 {
2808 if (h->root.u.def.section->owner != NULL
2809 && (bfd_get_flavour (h->root.u.def.section->owner)
2810 == bfd_target_elf_flavour))
2811 {
2812 h->ref_regular = 1;
2813 h->ref_regular_nonweak = 1;
2814 }
2815 else
2816 h->def_regular = 1;
2817 }
2818
2819 if (h->dynindx == -1
2820 && (h->def_dynamic
2821 || h->ref_dynamic))
2822 {
2823 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2824 {
2825 eif->failed = TRUE;
2826 return FALSE;
2827 }
2828 }
2829 }
2830 else
2831 {
2832 /* Unfortunately, NON_ELF is only correct if the symbol
2833 was first seen in a non-ELF file. Fortunately, if the symbol
2834 was first seen in an ELF file, we're probably OK unless the
2835 symbol was defined in a non-ELF file. Catch that case here.
2836 FIXME: We're still in trouble if the symbol was first seen in
2837 a dynamic object, and then later in a non-ELF regular object. */
2838 if ((h->root.type == bfd_link_hash_defined
2839 || h->root.type == bfd_link_hash_defweak)
2840 && !h->def_regular
2841 && (h->root.u.def.section->owner != NULL
2842 ? (bfd_get_flavour (h->root.u.def.section->owner)
2843 != bfd_target_elf_flavour)
2844 : (bfd_is_abs_section (h->root.u.def.section)
2845 && !h->def_dynamic)))
2846 h->def_regular = 1;
2847 }
2848
2849 /* Backend specific symbol fixup. */
2850 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2851 if (bed->elf_backend_fixup_symbol
2852 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2853 return FALSE;
2854
2855 /* If this is a final link, and the symbol was defined as a common
2856 symbol in a regular object file, and there was no definition in
2857 any dynamic object, then the linker will have allocated space for
2858 the symbol in a common section but the DEF_REGULAR
2859 flag will not have been set. */
2860 if (h->root.type == bfd_link_hash_defined
2861 && !h->def_regular
2862 && h->ref_regular
2863 && !h->def_dynamic
2864 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
2865 h->def_regular = 1;
2866
2867 /* Symbols defined in discarded sections shouldn't be dynamic. */
2868 if (h->root.type == bfd_link_hash_undefined && h->indx == -3)
2869 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2870
2871 /* If a weak undefined symbol has non-default visibility, we also
2872 hide it from the dynamic linker. */
2873 else if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2874 && h->root.type == bfd_link_hash_undefweak)
2875 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2876
2877 /* A hidden versioned symbol in executable should be forced local if
2878 it is is locally defined, not referenced by shared library and not
2879 exported. */
2880 else if (bfd_link_executable (eif->info)
2881 && h->versioned == versioned_hidden
2882 && !eif->info->export_dynamic
2883 && !h->dynamic
2884 && !h->ref_dynamic
2885 && h->def_regular)
2886 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2887
2888 /* If -Bsymbolic was used (which means to bind references to global
2889 symbols to the definition within the shared object), and this
2890 symbol was defined in a regular object, then it actually doesn't
2891 need a PLT entry. Likewise, if the symbol has non-default
2892 visibility. If the symbol has hidden or internal visibility, we
2893 will force it local. */
2894 else if (h->needs_plt
2895 && bfd_link_pic (eif->info)
2896 && is_elf_hash_table (eif->info->hash)
2897 && (SYMBOLIC_BIND (eif->info, h)
2898 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2899 && h->def_regular)
2900 {
2901 bfd_boolean force_local;
2902
2903 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2904 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2905 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2906 }
2907
2908 /* If this is a weak defined symbol in a dynamic object, and we know
2909 the real definition in the dynamic object, copy interesting flags
2910 over to the real definition. */
2911 if (h->is_weakalias)
2912 {
2913 struct elf_link_hash_entry *def = weakdef (h);
2914
2915 /* If the real definition is defined by a regular object file,
2916 don't do anything special. See the longer description in
2917 _bfd_elf_adjust_dynamic_symbol, below. If the def is not
2918 bfd_link_hash_defined as it was when put on the alias list
2919 then it must have originally been a versioned symbol (for
2920 which a non-versioned indirect symbol is created) and later
2921 a definition for the non-versioned symbol is found. In that
2922 case the indirection is flipped with the versioned symbol
2923 becoming an indirect pointing at the non-versioned symbol.
2924 Thus, not an alias any more. */
2925 if (def->def_regular
2926 || def->root.type != bfd_link_hash_defined)
2927 {
2928 h = def;
2929 while ((h = h->u.alias) != def)
2930 h->is_weakalias = 0;
2931 }
2932 else
2933 {
2934 while (h->root.type == bfd_link_hash_indirect)
2935 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2936 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2937 || h->root.type == bfd_link_hash_defweak);
2938 BFD_ASSERT (def->def_dynamic);
2939 (*bed->elf_backend_copy_indirect_symbol) (eif->info, def, h);
2940 }
2941 }
2942
2943 return TRUE;
2944 }
2945
2946 /* Make the backend pick a good value for a dynamic symbol. This is
2947 called via elf_link_hash_traverse, and also calls itself
2948 recursively. */
2949
2950 static bfd_boolean
2951 _bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
2952 {
2953 struct elf_info_failed *eif = (struct elf_info_failed *) data;
2954 struct elf_link_hash_table *htab;
2955 const struct elf_backend_data *bed;
2956
2957 if (! is_elf_hash_table (eif->info->hash))
2958 return FALSE;
2959
2960 /* Ignore indirect symbols. These are added by the versioning code. */
2961 if (h->root.type == bfd_link_hash_indirect)
2962 return TRUE;
2963
2964 /* Fix the symbol flags. */
2965 if (! _bfd_elf_fix_symbol_flags (h, eif))
2966 return FALSE;
2967
2968 htab = elf_hash_table (eif->info);
2969 bed = get_elf_backend_data (htab->dynobj);
2970
2971 if (h->root.type == bfd_link_hash_undefweak)
2972 {
2973 if (eif->info->dynamic_undefined_weak == 0)
2974 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2975 else if (eif->info->dynamic_undefined_weak > 0
2976 && h->ref_regular
2977 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2978 && !bfd_hide_sym_by_version (eif->info->version_info,
2979 h->root.root.string))
2980 {
2981 if (!bfd_elf_link_record_dynamic_symbol (eif->info, h))
2982 {
2983 eif->failed = TRUE;
2984 return FALSE;
2985 }
2986 }
2987 }
2988
2989 /* If this symbol does not require a PLT entry, and it is not
2990 defined by a dynamic object, or is not referenced by a regular
2991 object, ignore it. We do have to handle a weak defined symbol,
2992 even if no regular object refers to it, if we decided to add it
2993 to the dynamic symbol table. FIXME: Do we normally need to worry
2994 about symbols which are defined by one dynamic object and
2995 referenced by another one? */
2996 if (!h->needs_plt
2997 && h->type != STT_GNU_IFUNC
2998 && (h->def_regular
2999 || !h->def_dynamic
3000 || (!h->ref_regular
3001 && (!h->is_weakalias || weakdef (h)->dynindx == -1))))
3002 {
3003 h->plt = elf_hash_table (eif->info)->init_plt_offset;
3004 return TRUE;
3005 }
3006
3007 /* If we've already adjusted this symbol, don't do it again. This
3008 can happen via a recursive call. */
3009 if (h->dynamic_adjusted)
3010 return TRUE;
3011
3012 /* Don't look at this symbol again. Note that we must set this
3013 after checking the above conditions, because we may look at a
3014 symbol once, decide not to do anything, and then get called
3015 recursively later after REF_REGULAR is set below. */
3016 h->dynamic_adjusted = 1;
3017
3018 /* If this is a weak definition, and we know a real definition, and
3019 the real symbol is not itself defined by a regular object file,
3020 then get a good value for the real definition. We handle the
3021 real symbol first, for the convenience of the backend routine.
3022
3023 Note that there is a confusing case here. If the real definition
3024 is defined by a regular object file, we don't get the real symbol
3025 from the dynamic object, but we do get the weak symbol. If the
3026 processor backend uses a COPY reloc, then if some routine in the
3027 dynamic object changes the real symbol, we will not see that
3028 change in the corresponding weak symbol. This is the way other
3029 ELF linkers work as well, and seems to be a result of the shared
3030 library model.
3031
3032 I will clarify this issue. Most SVR4 shared libraries define the
3033 variable _timezone and define timezone as a weak synonym. The
3034 tzset call changes _timezone. If you write
3035 extern int timezone;
3036 int _timezone = 5;
3037 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
3038 you might expect that, since timezone is a synonym for _timezone,
3039 the same number will print both times. However, if the processor
3040 backend uses a COPY reloc, then actually timezone will be copied
3041 into your process image, and, since you define _timezone
3042 yourself, _timezone will not. Thus timezone and _timezone will
3043 wind up at different memory locations. The tzset call will set
3044 _timezone, leaving timezone unchanged. */
3045
3046 if (h->is_weakalias)
3047 {
3048 struct elf_link_hash_entry *def = weakdef (h);
3049
3050 /* If we get to this point, there is an implicit reference to
3051 the alias by a regular object file via the weak symbol H. */
3052 def->ref_regular = 1;
3053
3054 /* Ensure that the backend adjust_dynamic_symbol function sees
3055 the strong alias before H by recursively calling ourselves. */
3056 if (!_bfd_elf_adjust_dynamic_symbol (def, eif))
3057 return FALSE;
3058 }
3059
3060 /* If a symbol has no type and no size and does not require a PLT
3061 entry, then we are probably about to do the wrong thing here: we
3062 are probably going to create a COPY reloc for an empty object.
3063 This case can arise when a shared object is built with assembly
3064 code, and the assembly code fails to set the symbol type. */
3065 if (h->size == 0
3066 && h->type == STT_NOTYPE
3067 && !h->needs_plt)
3068 _bfd_error_handler
3069 (_("warning: type and size of dynamic symbol `%s' are not defined"),
3070 h->root.root.string);
3071
3072 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
3073 {
3074 eif->failed = TRUE;
3075 return FALSE;
3076 }
3077
3078 return TRUE;
3079 }
3080
3081 /* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
3082 DYNBSS. */
3083
3084 bfd_boolean
3085 _bfd_elf_adjust_dynamic_copy (struct bfd_link_info *info,
3086 struct elf_link_hash_entry *h,
3087 asection *dynbss)
3088 {
3089 unsigned int power_of_two;
3090 bfd_vma mask;
3091 asection *sec = h->root.u.def.section;
3092
3093 /* The section alignment of the definition is the maximum alignment
3094 requirement of symbols defined in the section. Since we don't
3095 know the symbol alignment requirement, we start with the
3096 maximum alignment and check low bits of the symbol address
3097 for the minimum alignment. */
3098 power_of_two = bfd_section_alignment (sec);
3099 mask = ((bfd_vma) 1 << power_of_two) - 1;
3100 while ((h->root.u.def.value & mask) != 0)
3101 {
3102 mask >>= 1;
3103 --power_of_two;
3104 }
3105
3106 if (power_of_two > bfd_section_alignment (dynbss))
3107 {
3108 /* Adjust the section alignment if needed. */
3109 if (!bfd_set_section_alignment (dynbss, power_of_two))
3110 return FALSE;
3111 }
3112
3113 /* We make sure that the symbol will be aligned properly. */
3114 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
3115
3116 /* Define the symbol as being at this point in DYNBSS. */
3117 h->root.u.def.section = dynbss;
3118 h->root.u.def.value = dynbss->size;
3119
3120 /* Increment the size of DYNBSS to make room for the symbol. */
3121 dynbss->size += h->size;
3122
3123 /* No error if extern_protected_data is true. */
3124 if (h->protected_def
3125 && (!info->extern_protected_data
3126 || (info->extern_protected_data < 0
3127 && !get_elf_backend_data (dynbss->owner)->extern_protected_data)))
3128 info->callbacks->einfo
3129 (_("%P: copy reloc against protected `%pT' is dangerous\n"),
3130 h->root.root.string);
3131
3132 return TRUE;
3133 }
3134
3135 /* Adjust all external symbols pointing into SEC_MERGE sections
3136 to reflect the object merging within the sections. */
3137
3138 static bfd_boolean
3139 _bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
3140 {
3141 asection *sec;
3142
3143 if ((h->root.type == bfd_link_hash_defined
3144 || h->root.type == bfd_link_hash_defweak)
3145 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
3146 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
3147 {
3148 bfd *output_bfd = (bfd *) data;
3149
3150 h->root.u.def.value =
3151 _bfd_merged_section_offset (output_bfd,
3152 &h->root.u.def.section,
3153 elf_section_data (sec)->sec_info,
3154 h->root.u.def.value);
3155 }
3156
3157 return TRUE;
3158 }
3159
3160 /* Returns false if the symbol referred to by H should be considered
3161 to resolve local to the current module, and true if it should be
3162 considered to bind dynamically. */
3163
3164 bfd_boolean
3165 _bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
3166 struct bfd_link_info *info,
3167 bfd_boolean not_local_protected)
3168 {
3169 bfd_boolean binding_stays_local_p;
3170 const struct elf_backend_data *bed;
3171 struct elf_link_hash_table *hash_table;
3172
3173 if (h == NULL)
3174 return FALSE;
3175
3176 while (h->root.type == bfd_link_hash_indirect
3177 || h->root.type == bfd_link_hash_warning)
3178 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3179
3180 /* If it was forced local, then clearly it's not dynamic. */
3181 if (h->dynindx == -1)
3182 return FALSE;
3183 if (h->forced_local)
3184 return FALSE;
3185
3186 /* Identify the cases where name binding rules say that a
3187 visible symbol resolves locally. */
3188 binding_stays_local_p = (bfd_link_executable (info)
3189 || SYMBOLIC_BIND (info, h));
3190
3191 switch (ELF_ST_VISIBILITY (h->other))
3192 {
3193 case STV_INTERNAL:
3194 case STV_HIDDEN:
3195 return FALSE;
3196
3197 case STV_PROTECTED:
3198 hash_table = elf_hash_table (info);
3199 if (!is_elf_hash_table (hash_table))
3200 return FALSE;
3201
3202 bed = get_elf_backend_data (hash_table->dynobj);
3203
3204 /* Proper resolution for function pointer equality may require
3205 that these symbols perhaps be resolved dynamically, even though
3206 we should be resolving them to the current module. */
3207 if (!not_local_protected || !bed->is_function_type (h->type))
3208 binding_stays_local_p = TRUE;
3209 break;
3210
3211 default:
3212 break;
3213 }
3214
3215 /* If it isn't defined locally, then clearly it's dynamic. */
3216 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
3217 return TRUE;
3218
3219 /* Otherwise, the symbol is dynamic if binding rules don't tell
3220 us that it remains local. */
3221 return !binding_stays_local_p;
3222 }
3223
3224 /* Return true if the symbol referred to by H should be considered
3225 to resolve local to the current module, and false otherwise. Differs
3226 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
3227 undefined symbols. The two functions are virtually identical except
3228 for the place where dynindx == -1 is tested. If that test is true,
3229 _bfd_elf_dynamic_symbol_p will say the symbol is local, while
3230 _bfd_elf_symbol_refs_local_p will say the symbol is local only for
3231 defined symbols.
3232 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
3233 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
3234 treatment of undefined weak symbols. For those that do not make
3235 undefined weak symbols dynamic, both functions may return false. */
3236
3237 bfd_boolean
3238 _bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
3239 struct bfd_link_info *info,
3240 bfd_boolean local_protected)
3241 {
3242 const struct elf_backend_data *bed;
3243 struct elf_link_hash_table *hash_table;
3244
3245 /* If it's a local sym, of course we resolve locally. */
3246 if (h == NULL)
3247 return TRUE;
3248
3249 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
3250 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
3251 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
3252 return TRUE;
3253
3254 /* Forced local symbols resolve locally. */
3255 if (h->forced_local)
3256 return TRUE;
3257
3258 /* Common symbols that become definitions don't get the DEF_REGULAR
3259 flag set, so test it first, and don't bail out. */
3260 if (ELF_COMMON_DEF_P (h))
3261 /* Do nothing. */;
3262 /* If we don't have a definition in a regular file, then we can't
3263 resolve locally. The sym is either undefined or dynamic. */
3264 else if (!h->def_regular)
3265 return FALSE;
3266
3267 /* Non-dynamic symbols resolve locally. */
3268 if (h->dynindx == -1)
3269 return TRUE;
3270
3271 /* At this point, we know the symbol is defined and dynamic. In an
3272 executable it must resolve locally, likewise when building symbolic
3273 shared libraries. */
3274 if (bfd_link_executable (info) || SYMBOLIC_BIND (info, h))
3275 return TRUE;
3276
3277 /* Now deal with defined dynamic symbols in shared libraries. Ones
3278 with default visibility might not resolve locally. */
3279 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
3280 return FALSE;
3281
3282 hash_table = elf_hash_table (info);
3283 if (!is_elf_hash_table (hash_table))
3284 return TRUE;
3285
3286 bed = get_elf_backend_data (hash_table->dynobj);
3287
3288 /* If extern_protected_data is false, STV_PROTECTED non-function
3289 symbols are local. */
3290 if ((!info->extern_protected_data
3291 || (info->extern_protected_data < 0
3292 && !bed->extern_protected_data))
3293 && !bed->is_function_type (h->type))
3294 return TRUE;
3295
3296 /* Function pointer equality tests may require that STV_PROTECTED
3297 symbols be treated as dynamic symbols. If the address of a
3298 function not defined in an executable is set to that function's
3299 plt entry in the executable, then the address of the function in
3300 a shared library must also be the plt entry in the executable. */
3301 return local_protected;
3302 }
3303
3304 /* Caches some TLS segment info, and ensures that the TLS segment vma is
3305 aligned. Returns the first TLS output section. */
3306
3307 struct bfd_section *
3308 _bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
3309 {
3310 struct bfd_section *sec, *tls;
3311 unsigned int align = 0;
3312
3313 for (sec = obfd->sections; sec != NULL; sec = sec->next)
3314 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
3315 break;
3316 tls = sec;
3317
3318 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
3319 if (sec->alignment_power > align)
3320 align = sec->alignment_power;
3321
3322 elf_hash_table (info)->tls_sec = tls;
3323
3324 /* Ensure the alignment of the first section (usually .tdata) is the largest
3325 alignment, so that the tls segment starts aligned. */
3326 if (tls != NULL)
3327 tls->alignment_power = align;
3328
3329 return tls;
3330 }
3331
3332 /* Return TRUE iff this is a non-common, definition of a non-function symbol. */
3333 static bfd_boolean
3334 is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
3335 Elf_Internal_Sym *sym)
3336 {
3337 const struct elf_backend_data *bed;
3338
3339 /* Local symbols do not count, but target specific ones might. */
3340 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
3341 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
3342 return FALSE;
3343
3344 bed = get_elf_backend_data (abfd);
3345 /* Function symbols do not count. */
3346 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
3347 return FALSE;
3348
3349 /* If the section is undefined, then so is the symbol. */
3350 if (sym->st_shndx == SHN_UNDEF)
3351 return FALSE;
3352
3353 /* If the symbol is defined in the common section, then
3354 it is a common definition and so does not count. */
3355 if (bed->common_definition (sym))
3356 return FALSE;
3357
3358 /* If the symbol is in a target specific section then we
3359 must rely upon the backend to tell us what it is. */
3360 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
3361 /* FIXME - this function is not coded yet:
3362
3363 return _bfd_is_global_symbol_definition (abfd, sym);
3364
3365 Instead for now assume that the definition is not global,
3366 Even if this is wrong, at least the linker will behave
3367 in the same way that it used to do. */
3368 return FALSE;
3369
3370 return TRUE;
3371 }
3372
3373 /* Search the symbol table of the archive element of the archive ABFD
3374 whose archive map contains a mention of SYMDEF, and determine if
3375 the symbol is defined in this element. */
3376 static bfd_boolean
3377 elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
3378 {
3379 Elf_Internal_Shdr * hdr;
3380 size_t symcount;
3381 size_t extsymcount;
3382 size_t extsymoff;
3383 Elf_Internal_Sym *isymbuf;
3384 Elf_Internal_Sym *isym;
3385 Elf_Internal_Sym *isymend;
3386 bfd_boolean result;
3387
3388 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
3389 if (abfd == NULL)
3390 return FALSE;
3391
3392 if (! bfd_check_format (abfd, bfd_object))
3393 return FALSE;
3394
3395 /* Select the appropriate symbol table. If we don't know if the
3396 object file is an IR object, give linker LTO plugin a chance to
3397 get the correct symbol table. */
3398 if (abfd->plugin_format == bfd_plugin_yes
3399 #if BFD_SUPPORTS_PLUGINS
3400 || (abfd->plugin_format == bfd_plugin_unknown
3401 && bfd_link_plugin_object_p (abfd))
3402 #endif
3403 )
3404 {
3405 /* Use the IR symbol table if the object has been claimed by
3406 plugin. */
3407 abfd = abfd->plugin_dummy_bfd;
3408 hdr = &elf_tdata (abfd)->symtab_hdr;
3409 }
3410 else if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
3411 hdr = &elf_tdata (abfd)->symtab_hdr;
3412 else
3413 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3414
3415 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3416
3417 /* The sh_info field of the symtab header tells us where the
3418 external symbols start. We don't care about the local symbols. */
3419 if (elf_bad_symtab (abfd))
3420 {
3421 extsymcount = symcount;
3422 extsymoff = 0;
3423 }
3424 else
3425 {
3426 extsymcount = symcount - hdr->sh_info;
3427 extsymoff = hdr->sh_info;
3428 }
3429
3430 if (extsymcount == 0)
3431 return FALSE;
3432
3433 /* Read in the symbol table. */
3434 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3435 NULL, NULL, NULL);
3436 if (isymbuf == NULL)
3437 return FALSE;
3438
3439 /* Scan the symbol table looking for SYMDEF. */
3440 result = FALSE;
3441 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
3442 {
3443 const char *name;
3444
3445 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3446 isym->st_name);
3447 if (name == NULL)
3448 break;
3449
3450 if (strcmp (name, symdef->name) == 0)
3451 {
3452 result = is_global_data_symbol_definition (abfd, isym);
3453 break;
3454 }
3455 }
3456
3457 free (isymbuf);
3458
3459 return result;
3460 }
3461 \f
3462 /* Add an entry to the .dynamic table. */
3463
3464 bfd_boolean
3465 _bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3466 bfd_vma tag,
3467 bfd_vma val)
3468 {
3469 struct elf_link_hash_table *hash_table;
3470 const struct elf_backend_data *bed;
3471 asection *s;
3472 bfd_size_type newsize;
3473 bfd_byte *newcontents;
3474 Elf_Internal_Dyn dyn;
3475
3476 hash_table = elf_hash_table (info);
3477 if (! is_elf_hash_table (hash_table))
3478 return FALSE;
3479
3480 if (tag == DT_RELA || tag == DT_REL)
3481 hash_table->dynamic_relocs = TRUE;
3482
3483 bed = get_elf_backend_data (hash_table->dynobj);
3484 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3485 BFD_ASSERT (s != NULL);
3486
3487 newsize = s->size + bed->s->sizeof_dyn;
3488 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
3489 if (newcontents == NULL)
3490 return FALSE;
3491
3492 dyn.d_tag = tag;
3493 dyn.d_un.d_val = val;
3494 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
3495
3496 s->size = newsize;
3497 s->contents = newcontents;
3498
3499 return TRUE;
3500 }
3501
3502 /* Strip zero-sized dynamic sections. */
3503
3504 bfd_boolean
3505 _bfd_elf_strip_zero_sized_dynamic_sections (struct bfd_link_info *info)
3506 {
3507 struct elf_link_hash_table *hash_table;
3508 const struct elf_backend_data *bed;
3509 asection *s, *sdynamic, **pp;
3510 asection *rela_dyn, *rel_dyn;
3511 Elf_Internal_Dyn dyn;
3512 bfd_byte *extdyn, *next;
3513 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
3514 bfd_boolean strip_zero_sized;
3515 bfd_boolean strip_zero_sized_plt;
3516
3517 if (bfd_link_relocatable (info))
3518 return TRUE;
3519
3520 hash_table = elf_hash_table (info);
3521 if (!is_elf_hash_table (hash_table))
3522 return FALSE;
3523
3524 if (!hash_table->dynobj)
3525 return TRUE;
3526
3527 sdynamic= bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3528 if (!sdynamic)
3529 return TRUE;
3530
3531 bed = get_elf_backend_data (hash_table->dynobj);
3532 swap_dyn_in = bed->s->swap_dyn_in;
3533
3534 strip_zero_sized = FALSE;
3535 strip_zero_sized_plt = FALSE;
3536
3537 /* Strip zero-sized dynamic sections. */
3538 rela_dyn = bfd_get_section_by_name (info->output_bfd, ".rela.dyn");
3539 rel_dyn = bfd_get_section_by_name (info->output_bfd, ".rel.dyn");
3540 for (pp = &info->output_bfd->sections; (s = *pp) != NULL;)
3541 if (s->size == 0
3542 && (s == rela_dyn
3543 || s == rel_dyn
3544 || s == hash_table->srelplt->output_section
3545 || s == hash_table->splt->output_section))
3546 {
3547 *pp = s->next;
3548 info->output_bfd->section_count--;
3549 strip_zero_sized = TRUE;
3550 if (s == rela_dyn)
3551 s = rela_dyn;
3552 if (s == rel_dyn)
3553 s = rel_dyn;
3554 else if (s == hash_table->splt->output_section)
3555 {
3556 s = hash_table->splt;
3557 strip_zero_sized_plt = TRUE;
3558 }
3559 else
3560 s = hash_table->srelplt;
3561 s->flags |= SEC_EXCLUDE;
3562 s->output_section = bfd_abs_section_ptr;
3563 }
3564 else
3565 pp = &s->next;
3566
3567 if (strip_zero_sized_plt)
3568 for (extdyn = sdynamic->contents;
3569 extdyn < sdynamic->contents + sdynamic->size;
3570 extdyn = next)
3571 {
3572 next = extdyn + bed->s->sizeof_dyn;
3573 swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3574 switch (dyn.d_tag)
3575 {
3576 default:
3577 break;
3578 case DT_JMPREL:
3579 case DT_PLTRELSZ:
3580 case DT_PLTREL:
3581 /* Strip DT_PLTRELSZ, DT_JMPREL and DT_PLTREL entries if
3582 the procedure linkage table (the .plt section) has been
3583 removed. */
3584 memmove (extdyn, next,
3585 sdynamic->size - (next - sdynamic->contents));
3586 next = extdyn;
3587 }
3588 }
3589
3590 if (strip_zero_sized)
3591 {
3592 /* Regenerate program headers. */
3593 elf_seg_map (info->output_bfd) = NULL;
3594 return _bfd_elf_map_sections_to_segments (info->output_bfd, info);
3595 }
3596
3597 return TRUE;
3598 }
3599
3600 /* Add a DT_NEEDED entry for this dynamic object. Returns -1 on error,
3601 1 if a DT_NEEDED tag already exists, and 0 on success. */
3602
3603 int
3604 bfd_elf_add_dt_needed_tag (bfd *abfd, struct bfd_link_info *info)
3605 {
3606 struct elf_link_hash_table *hash_table;
3607 size_t strindex;
3608 const char *soname;
3609
3610 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3611 return -1;
3612
3613 hash_table = elf_hash_table (info);
3614 soname = elf_dt_name (abfd);
3615 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3616 if (strindex == (size_t) -1)
3617 return -1;
3618
3619 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
3620 {
3621 asection *sdyn;
3622 const struct elf_backend_data *bed;
3623 bfd_byte *extdyn;
3624
3625 bed = get_elf_backend_data (hash_table->dynobj);
3626 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3627 if (sdyn != NULL)
3628 for (extdyn = sdyn->contents;
3629 extdyn < sdyn->contents + sdyn->size;
3630 extdyn += bed->s->sizeof_dyn)
3631 {
3632 Elf_Internal_Dyn dyn;
3633
3634 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3635 if (dyn.d_tag == DT_NEEDED
3636 && dyn.d_un.d_val == strindex)
3637 {
3638 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3639 return 1;
3640 }
3641 }
3642 }
3643
3644 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3645 return -1;
3646
3647 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3648 return -1;
3649
3650 return 0;
3651 }
3652
3653 /* Return true if SONAME is on the needed list between NEEDED and STOP
3654 (or the end of list if STOP is NULL), and needed by a library that
3655 will be loaded. */
3656
3657 static bfd_boolean
3658 on_needed_list (const char *soname,
3659 struct bfd_link_needed_list *needed,
3660 struct bfd_link_needed_list *stop)
3661 {
3662 struct bfd_link_needed_list *look;
3663 for (look = needed; look != stop; look = look->next)
3664 if (strcmp (soname, look->name) == 0
3665 && ((elf_dyn_lib_class (look->by) & DYN_AS_NEEDED) == 0
3666 /* If needed by a library that itself is not directly
3667 needed, recursively check whether that library is
3668 indirectly needed. Since we add DT_NEEDED entries to
3669 the end of the list, library dependencies appear after
3670 the library. Therefore search prior to the current
3671 LOOK, preventing possible infinite recursion. */
3672 || on_needed_list (elf_dt_name (look->by), needed, look)))
3673 return TRUE;
3674
3675 return FALSE;
3676 }
3677
3678 /* Sort symbol by value, section, size, and type. */
3679 static int
3680 elf_sort_symbol (const void *arg1, const void *arg2)
3681 {
3682 const struct elf_link_hash_entry *h1;
3683 const struct elf_link_hash_entry *h2;
3684 bfd_signed_vma vdiff;
3685 int sdiff;
3686 const char *n1;
3687 const char *n2;
3688
3689 h1 = *(const struct elf_link_hash_entry **) arg1;
3690 h2 = *(const struct elf_link_hash_entry **) arg2;
3691 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3692 if (vdiff != 0)
3693 return vdiff > 0 ? 1 : -1;
3694
3695 sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3696 if (sdiff != 0)
3697 return sdiff;
3698
3699 /* Sort so that sized symbols are selected over zero size symbols. */
3700 vdiff = h1->size - h2->size;
3701 if (vdiff != 0)
3702 return vdiff > 0 ? 1 : -1;
3703
3704 /* Sort so that STT_OBJECT is selected over STT_NOTYPE. */
3705 if (h1->type != h2->type)
3706 return h1->type - h2->type;
3707
3708 /* If symbols are properly sized and typed, and multiple strong
3709 aliases are not defined in a shared library by the user we
3710 shouldn't get here. Unfortunately linker script symbols like
3711 __bss_start sometimes match a user symbol defined at the start of
3712 .bss without proper size and type. We'd like to preference the
3713 user symbol over reserved system symbols. Sort on leading
3714 underscores. */
3715 n1 = h1->root.root.string;
3716 n2 = h2->root.root.string;
3717 while (*n1 == *n2)
3718 {
3719 if (*n1 == 0)
3720 break;
3721 ++n1;
3722 ++n2;
3723 }
3724 if (*n1 == '_')
3725 return -1;
3726 if (*n2 == '_')
3727 return 1;
3728
3729 /* Final sort on name selects user symbols like '_u' over reserved
3730 system symbols like '_Z' and also will avoid qsort instability. */
3731 return *n1 - *n2;
3732 }
3733
3734 /* This function is used to adjust offsets into .dynstr for
3735 dynamic symbols. This is called via elf_link_hash_traverse. */
3736
3737 static bfd_boolean
3738 elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3739 {
3740 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
3741
3742 if (h->dynindx != -1)
3743 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3744 return TRUE;
3745 }
3746
3747 /* Assign string offsets in .dynstr, update all structures referencing
3748 them. */
3749
3750 static bfd_boolean
3751 elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
3752 {
3753 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3754 struct elf_link_local_dynamic_entry *entry;
3755 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3756 bfd *dynobj = hash_table->dynobj;
3757 asection *sdyn;
3758 bfd_size_type size;
3759 const struct elf_backend_data *bed;
3760 bfd_byte *extdyn;
3761
3762 _bfd_elf_strtab_finalize (dynstr);
3763 size = _bfd_elf_strtab_size (dynstr);
3764
3765 bed = get_elf_backend_data (dynobj);
3766 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
3767 BFD_ASSERT (sdyn != NULL);
3768
3769 /* Update all .dynamic entries referencing .dynstr strings. */
3770 for (extdyn = sdyn->contents;
3771 extdyn < sdyn->contents + sdyn->size;
3772 extdyn += bed->s->sizeof_dyn)
3773 {
3774 Elf_Internal_Dyn dyn;
3775
3776 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3777 switch (dyn.d_tag)
3778 {
3779 case DT_STRSZ:
3780 dyn.d_un.d_val = size;
3781 break;
3782 case DT_NEEDED:
3783 case DT_SONAME:
3784 case DT_RPATH:
3785 case DT_RUNPATH:
3786 case DT_FILTER:
3787 case DT_AUXILIARY:
3788 case DT_AUDIT:
3789 case DT_DEPAUDIT:
3790 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3791 break;
3792 default:
3793 continue;
3794 }
3795 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3796 }
3797
3798 /* Now update local dynamic symbols. */
3799 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3800 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3801 entry->isym.st_name);
3802
3803 /* And the rest of dynamic symbols. */
3804 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3805
3806 /* Adjust version definitions. */
3807 if (elf_tdata (output_bfd)->cverdefs)
3808 {
3809 asection *s;
3810 bfd_byte *p;
3811 size_t i;
3812 Elf_Internal_Verdef def;
3813 Elf_Internal_Verdaux defaux;
3814
3815 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
3816 p = s->contents;
3817 do
3818 {
3819 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3820 &def);
3821 p += sizeof (Elf_External_Verdef);
3822 if (def.vd_aux != sizeof (Elf_External_Verdef))
3823 continue;
3824 for (i = 0; i < def.vd_cnt; ++i)
3825 {
3826 _bfd_elf_swap_verdaux_in (output_bfd,
3827 (Elf_External_Verdaux *) p, &defaux);
3828 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3829 defaux.vda_name);
3830 _bfd_elf_swap_verdaux_out (output_bfd,
3831 &defaux, (Elf_External_Verdaux *) p);
3832 p += sizeof (Elf_External_Verdaux);
3833 }
3834 }
3835 while (def.vd_next);
3836 }
3837
3838 /* Adjust version references. */
3839 if (elf_tdata (output_bfd)->verref)
3840 {
3841 asection *s;
3842 bfd_byte *p;
3843 size_t i;
3844 Elf_Internal_Verneed need;
3845 Elf_Internal_Vernaux needaux;
3846
3847 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
3848 p = s->contents;
3849 do
3850 {
3851 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3852 &need);
3853 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3854 _bfd_elf_swap_verneed_out (output_bfd, &need,
3855 (Elf_External_Verneed *) p);
3856 p += sizeof (Elf_External_Verneed);
3857 for (i = 0; i < need.vn_cnt; ++i)
3858 {
3859 _bfd_elf_swap_vernaux_in (output_bfd,
3860 (Elf_External_Vernaux *) p, &needaux);
3861 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3862 needaux.vna_name);
3863 _bfd_elf_swap_vernaux_out (output_bfd,
3864 &needaux,
3865 (Elf_External_Vernaux *) p);
3866 p += sizeof (Elf_External_Vernaux);
3867 }
3868 }
3869 while (need.vn_next);
3870 }
3871
3872 return TRUE;
3873 }
3874 \f
3875 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3876 The default is to only match when the INPUT and OUTPUT are exactly
3877 the same target. */
3878
3879 bfd_boolean
3880 _bfd_elf_default_relocs_compatible (const bfd_target *input,
3881 const bfd_target *output)
3882 {
3883 return input == output;
3884 }
3885
3886 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3887 This version is used when different targets for the same architecture
3888 are virtually identical. */
3889
3890 bfd_boolean
3891 _bfd_elf_relocs_compatible (const bfd_target *input,
3892 const bfd_target *output)
3893 {
3894 const struct elf_backend_data *obed, *ibed;
3895
3896 if (input == output)
3897 return TRUE;
3898
3899 ibed = xvec_get_elf_backend_data (input);
3900 obed = xvec_get_elf_backend_data (output);
3901
3902 if (ibed->arch != obed->arch)
3903 return FALSE;
3904
3905 /* If both backends are using this function, deem them compatible. */
3906 return ibed->relocs_compatible == obed->relocs_compatible;
3907 }
3908
3909 /* Make a special call to the linker "notice" function to tell it that
3910 we are about to handle an as-needed lib, or have finished
3911 processing the lib. */
3912
3913 bfd_boolean
3914 _bfd_elf_notice_as_needed (bfd *ibfd,
3915 struct bfd_link_info *info,
3916 enum notice_asneeded_action act)
3917 {
3918 return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
3919 }
3920
3921 /* Check relocations an ELF object file. */
3922
3923 bfd_boolean
3924 _bfd_elf_link_check_relocs (bfd *abfd, struct bfd_link_info *info)
3925 {
3926 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3927 struct elf_link_hash_table *htab = elf_hash_table (info);
3928
3929 /* If this object is the same format as the output object, and it is
3930 not a shared library, then let the backend look through the
3931 relocs.
3932
3933 This is required to build global offset table entries and to
3934 arrange for dynamic relocs. It is not required for the
3935 particular common case of linking non PIC code, even when linking
3936 against shared libraries, but unfortunately there is no way of
3937 knowing whether an object file has been compiled PIC or not.
3938 Looking through the relocs is not particularly time consuming.
3939 The problem is that we must either (1) keep the relocs in memory,
3940 which causes the linker to require additional runtime memory or
3941 (2) read the relocs twice from the input file, which wastes time.
3942 This would be a good case for using mmap.
3943
3944 I have no idea how to handle linking PIC code into a file of a
3945 different format. It probably can't be done. */
3946 if ((abfd->flags & DYNAMIC) == 0
3947 && is_elf_hash_table (htab)
3948 && bed->check_relocs != NULL
3949 && elf_object_id (abfd) == elf_hash_table_id (htab)
3950 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
3951 {
3952 asection *o;
3953
3954 for (o = abfd->sections; o != NULL; o = o->next)
3955 {
3956 Elf_Internal_Rela *internal_relocs;
3957 bfd_boolean ok;
3958
3959 /* Don't check relocations in excluded sections. Don't do
3960 anything special with non-loaded, non-alloced sections.
3961 In particular, any relocs in such sections should not
3962 affect GOT and PLT reference counting (ie. we don't
3963 allow them to create GOT or PLT entries), there's no
3964 possibility or desire to optimize TLS relocs, and
3965 there's not much point in propagating relocs to shared
3966 libs that the dynamic linker won't relocate. */
3967 if ((o->flags & SEC_ALLOC) == 0
3968 || (o->flags & SEC_RELOC) == 0
3969 || (o->flags & SEC_EXCLUDE) != 0
3970 || o->reloc_count == 0
3971 || ((info->strip == strip_all || info->strip == strip_debugger)
3972 && (o->flags & SEC_DEBUGGING) != 0)
3973 || bfd_is_abs_section (o->output_section))
3974 continue;
3975
3976 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
3977 info->keep_memory);
3978 if (internal_relocs == NULL)
3979 return FALSE;
3980
3981 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
3982
3983 if (elf_section_data (o)->relocs != internal_relocs)
3984 free (internal_relocs);
3985
3986 if (! ok)
3987 return FALSE;
3988 }
3989 }
3990
3991 return TRUE;
3992 }
3993
3994 /* Add symbols from an ELF object file to the linker hash table. */
3995
3996 static bfd_boolean
3997 elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3998 {
3999 Elf_Internal_Ehdr *ehdr;
4000 Elf_Internal_Shdr *hdr;
4001 size_t symcount;
4002 size_t extsymcount;
4003 size_t extsymoff;
4004 struct elf_link_hash_entry **sym_hash;
4005 bfd_boolean dynamic;
4006 Elf_External_Versym *extversym = NULL;
4007 Elf_External_Versym *extversym_end = NULL;
4008 Elf_External_Versym *ever;
4009 struct elf_link_hash_entry *weaks;
4010 struct elf_link_hash_entry **nondeflt_vers = NULL;
4011 size_t nondeflt_vers_cnt = 0;
4012 Elf_Internal_Sym *isymbuf = NULL;
4013 Elf_Internal_Sym *isym;
4014 Elf_Internal_Sym *isymend;
4015 const struct elf_backend_data *bed;
4016 bfd_boolean add_needed;
4017 struct elf_link_hash_table *htab;
4018 void *alloc_mark = NULL;
4019 struct bfd_hash_entry **old_table = NULL;
4020 unsigned int old_size = 0;
4021 unsigned int old_count = 0;
4022 void *old_tab = NULL;
4023 void *old_ent;
4024 struct bfd_link_hash_entry *old_undefs = NULL;
4025 struct bfd_link_hash_entry *old_undefs_tail = NULL;
4026 void *old_strtab = NULL;
4027 size_t tabsize = 0;
4028 asection *s;
4029 bfd_boolean just_syms;
4030
4031 htab = elf_hash_table (info);
4032 bed = get_elf_backend_data (abfd);
4033
4034 if ((abfd->flags & DYNAMIC) == 0)
4035 dynamic = FALSE;
4036 else
4037 {
4038 dynamic = TRUE;
4039
4040 /* You can't use -r against a dynamic object. Also, there's no
4041 hope of using a dynamic object which does not exactly match
4042 the format of the output file. */
4043 if (bfd_link_relocatable (info)
4044 || !is_elf_hash_table (htab)
4045 || info->output_bfd->xvec != abfd->xvec)
4046 {
4047 if (bfd_link_relocatable (info))
4048 bfd_set_error (bfd_error_invalid_operation);
4049 else
4050 bfd_set_error (bfd_error_wrong_format);
4051 goto error_return;
4052 }
4053 }
4054
4055 ehdr = elf_elfheader (abfd);
4056 if (info->warn_alternate_em
4057 && bed->elf_machine_code != ehdr->e_machine
4058 && ((bed->elf_machine_alt1 != 0
4059 && ehdr->e_machine == bed->elf_machine_alt1)
4060 || (bed->elf_machine_alt2 != 0
4061 && ehdr->e_machine == bed->elf_machine_alt2)))
4062 _bfd_error_handler
4063 /* xgettext:c-format */
4064 (_("alternate ELF machine code found (%d) in %pB, expecting %d"),
4065 ehdr->e_machine, abfd, bed->elf_machine_code);
4066
4067 /* As a GNU extension, any input sections which are named
4068 .gnu.warning.SYMBOL are treated as warning symbols for the given
4069 symbol. This differs from .gnu.warning sections, which generate
4070 warnings when they are included in an output file. */
4071 /* PR 12761: Also generate this warning when building shared libraries. */
4072 for (s = abfd->sections; s != NULL; s = s->next)
4073 {
4074 const char *name;
4075
4076 name = bfd_section_name (s);
4077 if (CONST_STRNEQ (name, ".gnu.warning."))
4078 {
4079 char *msg;
4080 bfd_size_type sz;
4081
4082 name += sizeof ".gnu.warning." - 1;
4083
4084 /* If this is a shared object, then look up the symbol
4085 in the hash table. If it is there, and it is already
4086 been defined, then we will not be using the entry
4087 from this shared object, so we don't need to warn.
4088 FIXME: If we see the definition in a regular object
4089 later on, we will warn, but we shouldn't. The only
4090 fix is to keep track of what warnings we are supposed
4091 to emit, and then handle them all at the end of the
4092 link. */
4093 if (dynamic)
4094 {
4095 struct elf_link_hash_entry *h;
4096
4097 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
4098
4099 /* FIXME: What about bfd_link_hash_common? */
4100 if (h != NULL
4101 && (h->root.type == bfd_link_hash_defined
4102 || h->root.type == bfd_link_hash_defweak))
4103 continue;
4104 }
4105
4106 sz = s->size;
4107 msg = (char *) bfd_alloc (abfd, sz + 1);
4108 if (msg == NULL)
4109 goto error_return;
4110
4111 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
4112 goto error_return;
4113
4114 msg[sz] = '\0';
4115
4116 if (! (_bfd_generic_link_add_one_symbol
4117 (info, abfd, name, BSF_WARNING, s, 0, msg,
4118 FALSE, bed->collect, NULL)))
4119 goto error_return;
4120
4121 if (bfd_link_executable (info))
4122 {
4123 /* Clobber the section size so that the warning does
4124 not get copied into the output file. */
4125 s->size = 0;
4126
4127 /* Also set SEC_EXCLUDE, so that symbols defined in
4128 the warning section don't get copied to the output. */
4129 s->flags |= SEC_EXCLUDE;
4130 }
4131 }
4132 }
4133
4134 just_syms = ((s = abfd->sections) != NULL
4135 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
4136
4137 add_needed = TRUE;
4138 if (! dynamic)
4139 {
4140 /* If we are creating a shared library, create all the dynamic
4141 sections immediately. We need to attach them to something,
4142 so we attach them to this BFD, provided it is the right
4143 format and is not from ld --just-symbols. Always create the
4144 dynamic sections for -E/--dynamic-list. FIXME: If there
4145 are no input BFD's of the same format as the output, we can't
4146 make a shared library. */
4147 if (!just_syms
4148 && (bfd_link_pic (info)
4149 || (!bfd_link_relocatable (info)
4150 && info->nointerp
4151 && (info->export_dynamic || info->dynamic)))
4152 && is_elf_hash_table (htab)
4153 && info->output_bfd->xvec == abfd->xvec
4154 && !htab->dynamic_sections_created)
4155 {
4156 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
4157 goto error_return;
4158 }
4159 }
4160 else if (!is_elf_hash_table (htab))
4161 goto error_return;
4162 else
4163 {
4164 const char *soname = NULL;
4165 char *audit = NULL;
4166 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
4167 const Elf_Internal_Phdr *phdr;
4168 struct elf_link_loaded_list *loaded_lib;
4169
4170 /* ld --just-symbols and dynamic objects don't mix very well.
4171 ld shouldn't allow it. */
4172 if (just_syms)
4173 abort ();
4174
4175 /* If this dynamic lib was specified on the command line with
4176 --as-needed in effect, then we don't want to add a DT_NEEDED
4177 tag unless the lib is actually used. Similary for libs brought
4178 in by another lib's DT_NEEDED. When --no-add-needed is used
4179 on a dynamic lib, we don't want to add a DT_NEEDED entry for
4180 any dynamic library in DT_NEEDED tags in the dynamic lib at
4181 all. */
4182 add_needed = (elf_dyn_lib_class (abfd)
4183 & (DYN_AS_NEEDED | DYN_DT_NEEDED
4184 | DYN_NO_NEEDED)) == 0;
4185
4186 s = bfd_get_section_by_name (abfd, ".dynamic");
4187 if (s != NULL)
4188 {
4189 bfd_byte *dynbuf;
4190 bfd_byte *extdyn;
4191 unsigned int elfsec;
4192 unsigned long shlink;
4193
4194 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
4195 {
4196 error_free_dyn:
4197 free (dynbuf);
4198 goto error_return;
4199 }
4200
4201 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
4202 if (elfsec == SHN_BAD)
4203 goto error_free_dyn;
4204 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
4205
4206 for (extdyn = dynbuf;
4207 extdyn <= dynbuf + s->size - bed->s->sizeof_dyn;
4208 extdyn += bed->s->sizeof_dyn)
4209 {
4210 Elf_Internal_Dyn dyn;
4211
4212 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
4213 if (dyn.d_tag == DT_SONAME)
4214 {
4215 unsigned int tagv = dyn.d_un.d_val;
4216 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4217 if (soname == NULL)
4218 goto error_free_dyn;
4219 }
4220 if (dyn.d_tag == DT_NEEDED)
4221 {
4222 struct bfd_link_needed_list *n, **pn;
4223 char *fnm, *anm;
4224 unsigned int tagv = dyn.d_un.d_val;
4225 size_t amt = sizeof (struct bfd_link_needed_list);
4226
4227 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4228 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4229 if (n == NULL || fnm == NULL)
4230 goto error_free_dyn;
4231 amt = strlen (fnm) + 1;
4232 anm = (char *) bfd_alloc (abfd, amt);
4233 if (anm == NULL)
4234 goto error_free_dyn;
4235 memcpy (anm, fnm, amt);
4236 n->name = anm;
4237 n->by = abfd;
4238 n->next = NULL;
4239 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
4240 ;
4241 *pn = n;
4242 }
4243 if (dyn.d_tag == DT_RUNPATH)
4244 {
4245 struct bfd_link_needed_list *n, **pn;
4246 char *fnm, *anm;
4247 unsigned int tagv = dyn.d_un.d_val;
4248 size_t amt = sizeof (struct bfd_link_needed_list);
4249
4250 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4251 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4252 if (n == NULL || fnm == NULL)
4253 goto error_free_dyn;
4254 amt = strlen (fnm) + 1;
4255 anm = (char *) bfd_alloc (abfd, amt);
4256 if (anm == NULL)
4257 goto error_free_dyn;
4258 memcpy (anm, fnm, amt);
4259 n->name = anm;
4260 n->by = abfd;
4261 n->next = NULL;
4262 for (pn = & runpath;
4263 *pn != NULL;
4264 pn = &(*pn)->next)
4265 ;
4266 *pn = n;
4267 }
4268 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
4269 if (!runpath && dyn.d_tag == DT_RPATH)
4270 {
4271 struct bfd_link_needed_list *n, **pn;
4272 char *fnm, *anm;
4273 unsigned int tagv = dyn.d_un.d_val;
4274 size_t amt = sizeof (struct bfd_link_needed_list);
4275
4276 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4277 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4278 if (n == NULL || fnm == NULL)
4279 goto error_free_dyn;
4280 amt = strlen (fnm) + 1;
4281 anm = (char *) bfd_alloc (abfd, amt);
4282 if (anm == NULL)
4283 goto error_free_dyn;
4284 memcpy (anm, fnm, amt);
4285 n->name = anm;
4286 n->by = abfd;
4287 n->next = NULL;
4288 for (pn = & rpath;
4289 *pn != NULL;
4290 pn = &(*pn)->next)
4291 ;
4292 *pn = n;
4293 }
4294 if (dyn.d_tag == DT_AUDIT)
4295 {
4296 unsigned int tagv = dyn.d_un.d_val;
4297 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4298 }
4299 }
4300
4301 free (dynbuf);
4302 }
4303
4304 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
4305 frees all more recently bfd_alloc'd blocks as well. */
4306 if (runpath)
4307 rpath = runpath;
4308
4309 if (rpath)
4310 {
4311 struct bfd_link_needed_list **pn;
4312 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
4313 ;
4314 *pn = rpath;
4315 }
4316
4317 /* If we have a PT_GNU_RELRO program header, mark as read-only
4318 all sections contained fully therein. This makes relro
4319 shared library sections appear as they will at run-time. */
4320 phdr = elf_tdata (abfd)->phdr + elf_elfheader (abfd)->e_phnum;
4321 while (phdr-- > elf_tdata (abfd)->phdr)
4322 if (phdr->p_type == PT_GNU_RELRO)
4323 {
4324 for (s = abfd->sections; s != NULL; s = s->next)
4325 {
4326 unsigned int opb = bfd_octets_per_byte (abfd, s);
4327
4328 if ((s->flags & SEC_ALLOC) != 0
4329 && s->vma * opb >= phdr->p_vaddr
4330 && s->vma * opb + s->size <= phdr->p_vaddr + phdr->p_memsz)
4331 s->flags |= SEC_READONLY;
4332 }
4333 break;
4334 }
4335
4336 /* We do not want to include any of the sections in a dynamic
4337 object in the output file. We hack by simply clobbering the
4338 list of sections in the BFD. This could be handled more
4339 cleanly by, say, a new section flag; the existing
4340 SEC_NEVER_LOAD flag is not the one we want, because that one
4341 still implies that the section takes up space in the output
4342 file. */
4343 bfd_section_list_clear (abfd);
4344
4345 /* Find the name to use in a DT_NEEDED entry that refers to this
4346 object. If the object has a DT_SONAME entry, we use it.
4347 Otherwise, if the generic linker stuck something in
4348 elf_dt_name, we use that. Otherwise, we just use the file
4349 name. */
4350 if (soname == NULL || *soname == '\0')
4351 {
4352 soname = elf_dt_name (abfd);
4353 if (soname == NULL || *soname == '\0')
4354 soname = bfd_get_filename (abfd);
4355 }
4356
4357 /* Save the SONAME because sometimes the linker emulation code
4358 will need to know it. */
4359 elf_dt_name (abfd) = soname;
4360
4361 /* If we have already included this dynamic object in the
4362 link, just ignore it. There is no reason to include a
4363 particular dynamic object more than once. */
4364 for (loaded_lib = htab->dyn_loaded;
4365 loaded_lib != NULL;
4366 loaded_lib = loaded_lib->next)
4367 {
4368 if (strcmp (elf_dt_name (loaded_lib->abfd), soname) == 0)
4369 return TRUE;
4370 }
4371
4372 /* Create dynamic sections for backends that require that be done
4373 before setup_gnu_properties. */
4374 if (add_needed
4375 && !_bfd_elf_link_create_dynamic_sections (abfd, info))
4376 return FALSE;
4377
4378 /* Save the DT_AUDIT entry for the linker emulation code. */
4379 elf_dt_audit (abfd) = audit;
4380 }
4381
4382 /* If this is a dynamic object, we always link against the .dynsym
4383 symbol table, not the .symtab symbol table. The dynamic linker
4384 will only see the .dynsym symbol table, so there is no reason to
4385 look at .symtab for a dynamic object. */
4386
4387 if (! dynamic || elf_dynsymtab (abfd) == 0)
4388 hdr = &elf_tdata (abfd)->symtab_hdr;
4389 else
4390 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
4391
4392 symcount = hdr->sh_size / bed->s->sizeof_sym;
4393
4394 /* The sh_info field of the symtab header tells us where the
4395 external symbols start. We don't care about the local symbols at
4396 this point. */
4397 if (elf_bad_symtab (abfd))
4398 {
4399 extsymcount = symcount;
4400 extsymoff = 0;
4401 }
4402 else
4403 {
4404 extsymcount = symcount - hdr->sh_info;
4405 extsymoff = hdr->sh_info;
4406 }
4407
4408 sym_hash = elf_sym_hashes (abfd);
4409 if (extsymcount != 0)
4410 {
4411 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
4412 NULL, NULL, NULL);
4413 if (isymbuf == NULL)
4414 goto error_return;
4415
4416 if (sym_hash == NULL)
4417 {
4418 /* We store a pointer to the hash table entry for each
4419 external symbol. */
4420 size_t amt = extsymcount * sizeof (struct elf_link_hash_entry *);
4421 sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
4422 if (sym_hash == NULL)
4423 goto error_free_sym;
4424 elf_sym_hashes (abfd) = sym_hash;
4425 }
4426 }
4427
4428 if (dynamic)
4429 {
4430 /* Read in any version definitions. */
4431 if (!_bfd_elf_slurp_version_tables (abfd,
4432 info->default_imported_symver))
4433 goto error_free_sym;
4434
4435 /* Read in the symbol versions, but don't bother to convert them
4436 to internal format. */
4437 if (elf_dynversym (abfd) != 0)
4438 {
4439 Elf_Internal_Shdr *versymhdr = &elf_tdata (abfd)->dynversym_hdr;
4440 bfd_size_type amt = versymhdr->sh_size;
4441
4442 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0)
4443 goto error_free_sym;
4444 extversym = (Elf_External_Versym *)
4445 _bfd_malloc_and_read (abfd, amt, amt);
4446 if (extversym == NULL)
4447 goto error_free_sym;
4448 extversym_end = extversym + amt / sizeof (*extversym);
4449 }
4450 }
4451
4452 /* If we are loading an as-needed shared lib, save the symbol table
4453 state before we start adding symbols. If the lib turns out
4454 to be unneeded, restore the state. */
4455 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4456 {
4457 unsigned int i;
4458 size_t entsize;
4459
4460 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
4461 {
4462 struct bfd_hash_entry *p;
4463 struct elf_link_hash_entry *h;
4464
4465 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4466 {
4467 h = (struct elf_link_hash_entry *) p;
4468 entsize += htab->root.table.entsize;
4469 if (h->root.type == bfd_link_hash_warning)
4470 entsize += htab->root.table.entsize;
4471 }
4472 }
4473
4474 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
4475 old_tab = bfd_malloc (tabsize + entsize);
4476 if (old_tab == NULL)
4477 goto error_free_vers;
4478
4479 /* Remember the current objalloc pointer, so that all mem for
4480 symbols added can later be reclaimed. */
4481 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
4482 if (alloc_mark == NULL)
4483 goto error_free_vers;
4484
4485 /* Make a special call to the linker "notice" function to
4486 tell it that we are about to handle an as-needed lib. */
4487 if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
4488 goto error_free_vers;
4489
4490 /* Clone the symbol table. Remember some pointers into the
4491 symbol table, and dynamic symbol count. */
4492 old_ent = (char *) old_tab + tabsize;
4493 memcpy (old_tab, htab->root.table.table, tabsize);
4494 old_undefs = htab->root.undefs;
4495 old_undefs_tail = htab->root.undefs_tail;
4496 old_table = htab->root.table.table;
4497 old_size = htab->root.table.size;
4498 old_count = htab->root.table.count;
4499 old_strtab = NULL;
4500 if (htab->dynstr != NULL)
4501 {
4502 old_strtab = _bfd_elf_strtab_save (htab->dynstr);
4503 if (old_strtab == NULL)
4504 goto error_free_vers;
4505 }
4506
4507 for (i = 0; i < htab->root.table.size; i++)
4508 {
4509 struct bfd_hash_entry *p;
4510 struct elf_link_hash_entry *h;
4511
4512 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4513 {
4514 memcpy (old_ent, p, htab->root.table.entsize);
4515 old_ent = (char *) old_ent + htab->root.table.entsize;
4516 h = (struct elf_link_hash_entry *) p;
4517 if (h->root.type == bfd_link_hash_warning)
4518 {
4519 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
4520 old_ent = (char *) old_ent + htab->root.table.entsize;
4521 }
4522 }
4523 }
4524 }
4525
4526 weaks = NULL;
4527 if (extversym == NULL)
4528 ever = NULL;
4529 else if (extversym + extsymoff < extversym_end)
4530 ever = extversym + extsymoff;
4531 else
4532 {
4533 /* xgettext:c-format */
4534 _bfd_error_handler (_("%pB: invalid version offset %lx (max %lx)"),
4535 abfd, (long) extsymoff,
4536 (long) (extversym_end - extversym) / sizeof (* extversym));
4537 bfd_set_error (bfd_error_bad_value);
4538 goto error_free_vers;
4539 }
4540
4541 if (!bfd_link_relocatable (info)
4542 && abfd->lto_slim_object)
4543 {
4544 _bfd_error_handler
4545 (_("%pB: plugin needed to handle lto object"), abfd);
4546 }
4547
4548 for (isym = isymbuf, isymend = isymbuf + extsymcount;
4549 isym < isymend;
4550 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
4551 {
4552 int bind;
4553 bfd_vma value;
4554 asection *sec, *new_sec;
4555 flagword flags;
4556 const char *name;
4557 struct elf_link_hash_entry *h;
4558 struct elf_link_hash_entry *hi;
4559 bfd_boolean definition;
4560 bfd_boolean size_change_ok;
4561 bfd_boolean type_change_ok;
4562 bfd_boolean new_weak;
4563 bfd_boolean old_weak;
4564 bfd_boolean override;
4565 bfd_boolean common;
4566 bfd_boolean discarded;
4567 unsigned int old_alignment;
4568 unsigned int shindex;
4569 bfd *old_bfd;
4570 bfd_boolean matched;
4571
4572 override = FALSE;
4573
4574 flags = BSF_NO_FLAGS;
4575 sec = NULL;
4576 value = isym->st_value;
4577 common = bed->common_definition (isym);
4578 if (common && info->inhibit_common_definition)
4579 {
4580 /* Treat common symbol as undefined for --no-define-common. */
4581 isym->st_shndx = SHN_UNDEF;
4582 common = FALSE;
4583 }
4584 discarded = FALSE;
4585
4586 bind = ELF_ST_BIND (isym->st_info);
4587 switch (bind)
4588 {
4589 case STB_LOCAL:
4590 /* This should be impossible, since ELF requires that all
4591 global symbols follow all local symbols, and that sh_info
4592 point to the first global symbol. Unfortunately, Irix 5
4593 screws this up. */
4594 if (elf_bad_symtab (abfd))
4595 continue;
4596
4597 /* If we aren't prepared to handle locals within the globals
4598 then we'll likely segfault on a NULL symbol hash if the
4599 symbol is ever referenced in relocations. */
4600 shindex = elf_elfheader (abfd)->e_shstrndx;
4601 name = bfd_elf_string_from_elf_section (abfd, shindex, hdr->sh_name);
4602 _bfd_error_handler (_("%pB: %s local symbol at index %lu"
4603 " (>= sh_info of %lu)"),
4604 abfd, name, (long) (isym - isymbuf + extsymoff),
4605 (long) extsymoff);
4606
4607 /* Dynamic object relocations are not processed by ld, so
4608 ld won't run into the problem mentioned above. */
4609 if (dynamic)
4610 continue;
4611 bfd_set_error (bfd_error_bad_value);
4612 goto error_free_vers;
4613
4614 case STB_GLOBAL:
4615 if (isym->st_shndx != SHN_UNDEF && !common)
4616 flags = BSF_GLOBAL;
4617 break;
4618
4619 case STB_WEAK:
4620 flags = BSF_WEAK;
4621 break;
4622
4623 case STB_GNU_UNIQUE:
4624 flags = BSF_GNU_UNIQUE;
4625 break;
4626
4627 default:
4628 /* Leave it up to the processor backend. */
4629 break;
4630 }
4631
4632 if (isym->st_shndx == SHN_UNDEF)
4633 sec = bfd_und_section_ptr;
4634 else if (isym->st_shndx == SHN_ABS)
4635 sec = bfd_abs_section_ptr;
4636 else if (isym->st_shndx == SHN_COMMON)
4637 {
4638 sec = bfd_com_section_ptr;
4639 /* What ELF calls the size we call the value. What ELF
4640 calls the value we call the alignment. */
4641 value = isym->st_size;
4642 }
4643 else
4644 {
4645 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4646 if (sec == NULL)
4647 sec = bfd_abs_section_ptr;
4648 else if (discarded_section (sec))
4649 {
4650 /* Symbols from discarded section are undefined. We keep
4651 its visibility. */
4652 sec = bfd_und_section_ptr;
4653 discarded = TRUE;
4654 isym->st_shndx = SHN_UNDEF;
4655 }
4656 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
4657 value -= sec->vma;
4658 }
4659
4660 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4661 isym->st_name);
4662 if (name == NULL)
4663 goto error_free_vers;
4664
4665 if (isym->st_shndx == SHN_COMMON
4666 && (abfd->flags & BFD_PLUGIN) != 0)
4667 {
4668 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
4669
4670 if (xc == NULL)
4671 {
4672 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
4673 | SEC_EXCLUDE);
4674 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
4675 if (xc == NULL)
4676 goto error_free_vers;
4677 }
4678 sec = xc;
4679 }
4680 else if (isym->st_shndx == SHN_COMMON
4681 && ELF_ST_TYPE (isym->st_info) == STT_TLS
4682 && !bfd_link_relocatable (info))
4683 {
4684 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
4685
4686 if (tcomm == NULL)
4687 {
4688 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
4689 | SEC_LINKER_CREATED);
4690 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
4691 if (tcomm == NULL)
4692 goto error_free_vers;
4693 }
4694 sec = tcomm;
4695 }
4696 else if (bed->elf_add_symbol_hook)
4697 {
4698 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
4699 &sec, &value))
4700 goto error_free_vers;
4701
4702 /* The hook function sets the name to NULL if this symbol
4703 should be skipped for some reason. */
4704 if (name == NULL)
4705 continue;
4706 }
4707
4708 /* Sanity check that all possibilities were handled. */
4709 if (sec == NULL)
4710 abort ();
4711
4712 /* Silently discard TLS symbols from --just-syms. There's
4713 no way to combine a static TLS block with a new TLS block
4714 for this executable. */
4715 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
4716 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4717 continue;
4718
4719 if (bfd_is_und_section (sec)
4720 || bfd_is_com_section (sec))
4721 definition = FALSE;
4722 else
4723 definition = TRUE;
4724
4725 size_change_ok = FALSE;
4726 type_change_ok = bed->type_change_ok;
4727 old_weak = FALSE;
4728 matched = FALSE;
4729 old_alignment = 0;
4730 old_bfd = NULL;
4731 new_sec = sec;
4732
4733 if (is_elf_hash_table (htab))
4734 {
4735 Elf_Internal_Versym iver;
4736 unsigned int vernum = 0;
4737 bfd_boolean skip;
4738
4739 if (ever == NULL)
4740 {
4741 if (info->default_imported_symver)
4742 /* Use the default symbol version created earlier. */
4743 iver.vs_vers = elf_tdata (abfd)->cverdefs;
4744 else
4745 iver.vs_vers = 0;
4746 }
4747 else if (ever >= extversym_end)
4748 {
4749 /* xgettext:c-format */
4750 _bfd_error_handler (_("%pB: not enough version information"),
4751 abfd);
4752 bfd_set_error (bfd_error_bad_value);
4753 goto error_free_vers;
4754 }
4755 else
4756 _bfd_elf_swap_versym_in (abfd, ever, &iver);
4757
4758 vernum = iver.vs_vers & VERSYM_VERSION;
4759
4760 /* If this is a hidden symbol, or if it is not version
4761 1, we append the version name to the symbol name.
4762 However, we do not modify a non-hidden absolute symbol
4763 if it is not a function, because it might be the version
4764 symbol itself. FIXME: What if it isn't? */
4765 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
4766 || (vernum > 1
4767 && (!bfd_is_abs_section (sec)
4768 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
4769 {
4770 const char *verstr;
4771 size_t namelen, verlen, newlen;
4772 char *newname, *p;
4773
4774 if (isym->st_shndx != SHN_UNDEF)
4775 {
4776 if (vernum > elf_tdata (abfd)->cverdefs)
4777 verstr = NULL;
4778 else if (vernum > 1)
4779 verstr =
4780 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4781 else
4782 verstr = "";
4783
4784 if (verstr == NULL)
4785 {
4786 _bfd_error_handler
4787 /* xgettext:c-format */
4788 (_("%pB: %s: invalid version %u (max %d)"),
4789 abfd, name, vernum,
4790 elf_tdata (abfd)->cverdefs);
4791 bfd_set_error (bfd_error_bad_value);
4792 goto error_free_vers;
4793 }
4794 }
4795 else
4796 {
4797 /* We cannot simply test for the number of
4798 entries in the VERNEED section since the
4799 numbers for the needed versions do not start
4800 at 0. */
4801 Elf_Internal_Verneed *t;
4802
4803 verstr = NULL;
4804 for (t = elf_tdata (abfd)->verref;
4805 t != NULL;
4806 t = t->vn_nextref)
4807 {
4808 Elf_Internal_Vernaux *a;
4809
4810 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4811 {
4812 if (a->vna_other == vernum)
4813 {
4814 verstr = a->vna_nodename;
4815 break;
4816 }
4817 }
4818 if (a != NULL)
4819 break;
4820 }
4821 if (verstr == NULL)
4822 {
4823 _bfd_error_handler
4824 /* xgettext:c-format */
4825 (_("%pB: %s: invalid needed version %d"),
4826 abfd, name, vernum);
4827 bfd_set_error (bfd_error_bad_value);
4828 goto error_free_vers;
4829 }
4830 }
4831
4832 namelen = strlen (name);
4833 verlen = strlen (verstr);
4834 newlen = namelen + verlen + 2;
4835 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4836 && isym->st_shndx != SHN_UNDEF)
4837 ++newlen;
4838
4839 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
4840 if (newname == NULL)
4841 goto error_free_vers;
4842 memcpy (newname, name, namelen);
4843 p = newname + namelen;
4844 *p++ = ELF_VER_CHR;
4845 /* If this is a defined non-hidden version symbol,
4846 we add another @ to the name. This indicates the
4847 default version of the symbol. */
4848 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4849 && isym->st_shndx != SHN_UNDEF)
4850 *p++ = ELF_VER_CHR;
4851 memcpy (p, verstr, verlen + 1);
4852
4853 name = newname;
4854 }
4855
4856 /* If this symbol has default visibility and the user has
4857 requested we not re-export it, then mark it as hidden. */
4858 if (!bfd_is_und_section (sec)
4859 && !dynamic
4860 && abfd->no_export
4861 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4862 isym->st_other = (STV_HIDDEN
4863 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4864
4865 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4866 sym_hash, &old_bfd, &old_weak,
4867 &old_alignment, &skip, &override,
4868 &type_change_ok, &size_change_ok,
4869 &matched))
4870 goto error_free_vers;
4871
4872 if (skip)
4873 continue;
4874
4875 /* Override a definition only if the new symbol matches the
4876 existing one. */
4877 if (override && matched)
4878 definition = FALSE;
4879
4880 h = *sym_hash;
4881 while (h->root.type == bfd_link_hash_indirect
4882 || h->root.type == bfd_link_hash_warning)
4883 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4884
4885 if (elf_tdata (abfd)->verdef != NULL
4886 && vernum > 1
4887 && definition)
4888 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4889 }
4890
4891 if (! (_bfd_generic_link_add_one_symbol
4892 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4893 (struct bfd_link_hash_entry **) sym_hash)))
4894 goto error_free_vers;
4895
4896 h = *sym_hash;
4897 /* We need to make sure that indirect symbol dynamic flags are
4898 updated. */
4899 hi = h;
4900 while (h->root.type == bfd_link_hash_indirect
4901 || h->root.type == bfd_link_hash_warning)
4902 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4903
4904 /* Setting the index to -3 tells elf_link_output_extsym that
4905 this symbol is defined in a discarded section. */
4906 if (discarded)
4907 h->indx = -3;
4908
4909 *sym_hash = h;
4910
4911 new_weak = (flags & BSF_WEAK) != 0;
4912 if (dynamic
4913 && definition
4914 && new_weak
4915 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
4916 && is_elf_hash_table (htab)
4917 && h->u.alias == NULL)
4918 {
4919 /* Keep a list of all weak defined non function symbols from
4920 a dynamic object, using the alias field. Later in this
4921 function we will set the alias field to the correct
4922 value. We only put non-function symbols from dynamic
4923 objects on this list, because that happens to be the only
4924 time we need to know the normal symbol corresponding to a
4925 weak symbol, and the information is time consuming to
4926 figure out. If the alias field is not already NULL,
4927 then this symbol was already defined by some previous
4928 dynamic object, and we will be using that previous
4929 definition anyhow. */
4930
4931 h->u.alias = weaks;
4932 weaks = h;
4933 }
4934
4935 /* Set the alignment of a common symbol. */
4936 if ((common || bfd_is_com_section (sec))
4937 && h->root.type == bfd_link_hash_common)
4938 {
4939 unsigned int align;
4940
4941 if (common)
4942 align = bfd_log2 (isym->st_value);
4943 else
4944 {
4945 /* The new symbol is a common symbol in a shared object.
4946 We need to get the alignment from the section. */
4947 align = new_sec->alignment_power;
4948 }
4949 if (align > old_alignment)
4950 h->root.u.c.p->alignment_power = align;
4951 else
4952 h->root.u.c.p->alignment_power = old_alignment;
4953 }
4954
4955 if (is_elf_hash_table (htab))
4956 {
4957 /* Set a flag in the hash table entry indicating the type of
4958 reference or definition we just found. A dynamic symbol
4959 is one which is referenced or defined by both a regular
4960 object and a shared object. */
4961 bfd_boolean dynsym = FALSE;
4962
4963 /* Plugin symbols aren't normal. Don't set def_regular or
4964 ref_regular for them, or make them dynamic. */
4965 if ((abfd->flags & BFD_PLUGIN) != 0)
4966 ;
4967 else if (! dynamic)
4968 {
4969 if (! definition)
4970 {
4971 h->ref_regular = 1;
4972 if (bind != STB_WEAK)
4973 h->ref_regular_nonweak = 1;
4974 }
4975 else
4976 {
4977 h->def_regular = 1;
4978 if (h->def_dynamic)
4979 {
4980 h->def_dynamic = 0;
4981 h->ref_dynamic = 1;
4982 }
4983 }
4984
4985 /* If the indirect symbol has been forced local, don't
4986 make the real symbol dynamic. */
4987 if ((h == hi || !hi->forced_local)
4988 && (bfd_link_dll (info)
4989 || h->def_dynamic
4990 || h->ref_dynamic))
4991 dynsym = TRUE;
4992 }
4993 else
4994 {
4995 if (! definition)
4996 {
4997 h->ref_dynamic = 1;
4998 hi->ref_dynamic = 1;
4999 }
5000 else
5001 {
5002 h->def_dynamic = 1;
5003 hi->def_dynamic = 1;
5004 }
5005
5006 /* If the indirect symbol has been forced local, don't
5007 make the real symbol dynamic. */
5008 if ((h == hi || !hi->forced_local)
5009 && (h->def_regular
5010 || h->ref_regular
5011 || (h->is_weakalias
5012 && weakdef (h)->dynindx != -1)))
5013 dynsym = TRUE;
5014 }
5015
5016 /* Check to see if we need to add an indirect symbol for
5017 the default name. */
5018 if (definition
5019 || (!override && h->root.type == bfd_link_hash_common))
5020 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
5021 sec, value, &old_bfd, &dynsym))
5022 goto error_free_vers;
5023
5024 /* Check the alignment when a common symbol is involved. This
5025 can change when a common symbol is overridden by a normal
5026 definition or a common symbol is ignored due to the old
5027 normal definition. We need to make sure the maximum
5028 alignment is maintained. */
5029 if ((old_alignment || common)
5030 && h->root.type != bfd_link_hash_common)
5031 {
5032 unsigned int common_align;
5033 unsigned int normal_align;
5034 unsigned int symbol_align;
5035 bfd *normal_bfd;
5036 bfd *common_bfd;
5037
5038 BFD_ASSERT (h->root.type == bfd_link_hash_defined
5039 || h->root.type == bfd_link_hash_defweak);
5040
5041 symbol_align = ffs (h->root.u.def.value) - 1;
5042 if (h->root.u.def.section->owner != NULL
5043 && (h->root.u.def.section->owner->flags
5044 & (DYNAMIC | BFD_PLUGIN)) == 0)
5045 {
5046 normal_align = h->root.u.def.section->alignment_power;
5047 if (normal_align > symbol_align)
5048 normal_align = symbol_align;
5049 }
5050 else
5051 normal_align = symbol_align;
5052
5053 if (old_alignment)
5054 {
5055 common_align = old_alignment;
5056 common_bfd = old_bfd;
5057 normal_bfd = abfd;
5058 }
5059 else
5060 {
5061 common_align = bfd_log2 (isym->st_value);
5062 common_bfd = abfd;
5063 normal_bfd = old_bfd;
5064 }
5065
5066 if (normal_align < common_align)
5067 {
5068 /* PR binutils/2735 */
5069 if (normal_bfd == NULL)
5070 _bfd_error_handler
5071 /* xgettext:c-format */
5072 (_("warning: alignment %u of common symbol `%s' in %pB is"
5073 " greater than the alignment (%u) of its section %pA"),
5074 1 << common_align, name, common_bfd,
5075 1 << normal_align, h->root.u.def.section);
5076 else
5077 _bfd_error_handler
5078 /* xgettext:c-format */
5079 (_("warning: alignment %u of symbol `%s' in %pB"
5080 " is smaller than %u in %pB"),
5081 1 << normal_align, name, normal_bfd,
5082 1 << common_align, common_bfd);
5083 }
5084 }
5085
5086 /* Remember the symbol size if it isn't undefined. */
5087 if (isym->st_size != 0
5088 && isym->st_shndx != SHN_UNDEF
5089 && (definition || h->size == 0))
5090 {
5091 if (h->size != 0
5092 && h->size != isym->st_size
5093 && ! size_change_ok)
5094 _bfd_error_handler
5095 /* xgettext:c-format */
5096 (_("warning: size of symbol `%s' changed"
5097 " from %" PRIu64 " in %pB to %" PRIu64 " in %pB"),
5098 name, (uint64_t) h->size, old_bfd,
5099 (uint64_t) isym->st_size, abfd);
5100
5101 h->size = isym->st_size;
5102 }
5103
5104 /* If this is a common symbol, then we always want H->SIZE
5105 to be the size of the common symbol. The code just above
5106 won't fix the size if a common symbol becomes larger. We
5107 don't warn about a size change here, because that is
5108 covered by --warn-common. Allow changes between different
5109 function types. */
5110 if (h->root.type == bfd_link_hash_common)
5111 h->size = h->root.u.c.size;
5112
5113 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
5114 && ((definition && !new_weak)
5115 || (old_weak && h->root.type == bfd_link_hash_common)
5116 || h->type == STT_NOTYPE))
5117 {
5118 unsigned int type = ELF_ST_TYPE (isym->st_info);
5119
5120 /* Turn an IFUNC symbol from a DSO into a normal FUNC
5121 symbol. */
5122 if (type == STT_GNU_IFUNC
5123 && (abfd->flags & DYNAMIC) != 0)
5124 type = STT_FUNC;
5125
5126 if (h->type != type)
5127 {
5128 if (h->type != STT_NOTYPE && ! type_change_ok)
5129 /* xgettext:c-format */
5130 _bfd_error_handler
5131 (_("warning: type of symbol `%s' changed"
5132 " from %d to %d in %pB"),
5133 name, h->type, type, abfd);
5134
5135 h->type = type;
5136 }
5137 }
5138
5139 /* Merge st_other field. */
5140 elf_merge_st_other (abfd, h, isym, sec, definition, dynamic);
5141
5142 /* We don't want to make debug symbol dynamic. */
5143 if (definition
5144 && (sec->flags & SEC_DEBUGGING)
5145 && !bfd_link_relocatable (info))
5146 dynsym = FALSE;
5147
5148 /* Nor should we make plugin symbols dynamic. */
5149 if ((abfd->flags & BFD_PLUGIN) != 0)
5150 dynsym = FALSE;
5151
5152 if (definition)
5153 {
5154 h->target_internal = isym->st_target_internal;
5155 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
5156 }
5157
5158 if (definition && !dynamic)
5159 {
5160 char *p = strchr (name, ELF_VER_CHR);
5161 if (p != NULL && p[1] != ELF_VER_CHR)
5162 {
5163 /* Queue non-default versions so that .symver x, x@FOO
5164 aliases can be checked. */
5165 if (!nondeflt_vers)
5166 {
5167 size_t amt = ((isymend - isym + 1)
5168 * sizeof (struct elf_link_hash_entry *));
5169 nondeflt_vers
5170 = (struct elf_link_hash_entry **) bfd_malloc (amt);
5171 if (!nondeflt_vers)
5172 goto error_free_vers;
5173 }
5174 nondeflt_vers[nondeflt_vers_cnt++] = h;
5175 }
5176 }
5177
5178 if (dynsym && h->dynindx == -1)
5179 {
5180 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5181 goto error_free_vers;
5182 if (h->is_weakalias
5183 && weakdef (h)->dynindx == -1)
5184 {
5185 if (!bfd_elf_link_record_dynamic_symbol (info, weakdef (h)))
5186 goto error_free_vers;
5187 }
5188 }
5189 else if (h->dynindx != -1)
5190 /* If the symbol already has a dynamic index, but
5191 visibility says it should not be visible, turn it into
5192 a local symbol. */
5193 switch (ELF_ST_VISIBILITY (h->other))
5194 {
5195 case STV_INTERNAL:
5196 case STV_HIDDEN:
5197 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
5198 dynsym = FALSE;
5199 break;
5200 }
5201
5202 /* Don't add DT_NEEDED for references from the dummy bfd nor
5203 for unmatched symbol. */
5204 if (!add_needed
5205 && matched
5206 && definition
5207 && ((dynsym
5208 && h->ref_regular_nonweak
5209 && (old_bfd == NULL
5210 || (old_bfd->flags & BFD_PLUGIN) == 0))
5211 || (h->ref_dynamic_nonweak
5212 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
5213 && !on_needed_list (elf_dt_name (abfd),
5214 htab->needed, NULL))))
5215 {
5216 const char *soname = elf_dt_name (abfd);
5217
5218 info->callbacks->minfo ("%!", soname, old_bfd,
5219 h->root.root.string);
5220
5221 /* A symbol from a library loaded via DT_NEEDED of some
5222 other library is referenced by a regular object.
5223 Add a DT_NEEDED entry for it. Issue an error if
5224 --no-add-needed is used and the reference was not
5225 a weak one. */
5226 if (old_bfd != NULL
5227 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
5228 {
5229 _bfd_error_handler
5230 /* xgettext:c-format */
5231 (_("%pB: undefined reference to symbol '%s'"),
5232 old_bfd, name);
5233 bfd_set_error (bfd_error_missing_dso);
5234 goto error_free_vers;
5235 }
5236
5237 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
5238 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
5239
5240 /* Create dynamic sections for backends that require
5241 that be done before setup_gnu_properties. */
5242 if (!_bfd_elf_link_create_dynamic_sections (abfd, info))
5243 return FALSE;
5244 add_needed = TRUE;
5245 }
5246 }
5247 }
5248
5249 if (info->lto_plugin_active
5250 && !bfd_link_relocatable (info)
5251 && (abfd->flags & BFD_PLUGIN) == 0
5252 && !just_syms
5253 && extsymcount)
5254 {
5255 int r_sym_shift;
5256
5257 if (bed->s->arch_size == 32)
5258 r_sym_shift = 8;
5259 else
5260 r_sym_shift = 32;
5261
5262 /* If linker plugin is enabled, set non_ir_ref_regular on symbols
5263 referenced in regular objects so that linker plugin will get
5264 the correct symbol resolution. */
5265
5266 sym_hash = elf_sym_hashes (abfd);
5267 for (s = abfd->sections; s != NULL; s = s->next)
5268 {
5269 Elf_Internal_Rela *internal_relocs;
5270 Elf_Internal_Rela *rel, *relend;
5271
5272 /* Don't check relocations in excluded sections. */
5273 if ((s->flags & SEC_RELOC) == 0
5274 || s->reloc_count == 0
5275 || (s->flags & SEC_EXCLUDE) != 0
5276 || ((info->strip == strip_all
5277 || info->strip == strip_debugger)
5278 && (s->flags & SEC_DEBUGGING) != 0))
5279 continue;
5280
5281 internal_relocs = _bfd_elf_link_read_relocs (abfd, s, NULL,
5282 NULL,
5283 info->keep_memory);
5284 if (internal_relocs == NULL)
5285 goto error_free_vers;
5286
5287 rel = internal_relocs;
5288 relend = rel + s->reloc_count;
5289 for ( ; rel < relend; rel++)
5290 {
5291 unsigned long r_symndx = rel->r_info >> r_sym_shift;
5292 struct elf_link_hash_entry *h;
5293
5294 /* Skip local symbols. */
5295 if (r_symndx < extsymoff)
5296 continue;
5297
5298 h = sym_hash[r_symndx - extsymoff];
5299 if (h != NULL)
5300 h->root.non_ir_ref_regular = 1;
5301 }
5302
5303 if (elf_section_data (s)->relocs != internal_relocs)
5304 free (internal_relocs);
5305 }
5306 }
5307
5308 free (extversym);
5309 extversym = NULL;
5310 free (isymbuf);
5311 isymbuf = NULL;
5312
5313 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
5314 {
5315 unsigned int i;
5316
5317 /* Restore the symbol table. */
5318 old_ent = (char *) old_tab + tabsize;
5319 memset (elf_sym_hashes (abfd), 0,
5320 extsymcount * sizeof (struct elf_link_hash_entry *));
5321 htab->root.table.table = old_table;
5322 htab->root.table.size = old_size;
5323 htab->root.table.count = old_count;
5324 memcpy (htab->root.table.table, old_tab, tabsize);
5325 htab->root.undefs = old_undefs;
5326 htab->root.undefs_tail = old_undefs_tail;
5327 if (htab->dynstr != NULL)
5328 _bfd_elf_strtab_restore (htab->dynstr, old_strtab);
5329 free (old_strtab);
5330 old_strtab = NULL;
5331 for (i = 0; i < htab->root.table.size; i++)
5332 {
5333 struct bfd_hash_entry *p;
5334 struct elf_link_hash_entry *h;
5335 bfd_size_type size;
5336 unsigned int alignment_power;
5337 unsigned int non_ir_ref_dynamic;
5338
5339 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
5340 {
5341 h = (struct elf_link_hash_entry *) p;
5342 if (h->root.type == bfd_link_hash_warning)
5343 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5344
5345 /* Preserve the maximum alignment and size for common
5346 symbols even if this dynamic lib isn't on DT_NEEDED
5347 since it can still be loaded at run time by another
5348 dynamic lib. */
5349 if (h->root.type == bfd_link_hash_common)
5350 {
5351 size = h->root.u.c.size;
5352 alignment_power = h->root.u.c.p->alignment_power;
5353 }
5354 else
5355 {
5356 size = 0;
5357 alignment_power = 0;
5358 }
5359 /* Preserve non_ir_ref_dynamic so that this symbol
5360 will be exported when the dynamic lib becomes needed
5361 in the second pass. */
5362 non_ir_ref_dynamic = h->root.non_ir_ref_dynamic;
5363 memcpy (p, old_ent, htab->root.table.entsize);
5364 old_ent = (char *) old_ent + htab->root.table.entsize;
5365 h = (struct elf_link_hash_entry *) p;
5366 if (h->root.type == bfd_link_hash_warning)
5367 {
5368 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
5369 old_ent = (char *) old_ent + htab->root.table.entsize;
5370 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5371 }
5372 if (h->root.type == bfd_link_hash_common)
5373 {
5374 if (size > h->root.u.c.size)
5375 h->root.u.c.size = size;
5376 if (alignment_power > h->root.u.c.p->alignment_power)
5377 h->root.u.c.p->alignment_power = alignment_power;
5378 }
5379 h->root.non_ir_ref_dynamic = non_ir_ref_dynamic;
5380 }
5381 }
5382
5383 /* Make a special call to the linker "notice" function to
5384 tell it that symbols added for crefs may need to be removed. */
5385 if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
5386 goto error_free_vers;
5387
5388 free (old_tab);
5389 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
5390 alloc_mark);
5391 free (nondeflt_vers);
5392 return TRUE;
5393 }
5394
5395 if (old_tab != NULL)
5396 {
5397 if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
5398 goto error_free_vers;
5399 free (old_tab);
5400 old_tab = NULL;
5401 }
5402
5403 /* Now that all the symbols from this input file are created, if
5404 not performing a relocatable link, handle .symver foo, foo@BAR
5405 such that any relocs against foo become foo@BAR. */
5406 if (!bfd_link_relocatable (info) && nondeflt_vers != NULL)
5407 {
5408 size_t cnt, symidx;
5409
5410 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
5411 {
5412 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
5413 char *shortname, *p;
5414 size_t amt;
5415
5416 p = strchr (h->root.root.string, ELF_VER_CHR);
5417 if (p == NULL
5418 || (h->root.type != bfd_link_hash_defined
5419 && h->root.type != bfd_link_hash_defweak))
5420 continue;
5421
5422 amt = p - h->root.root.string;
5423 shortname = (char *) bfd_malloc (amt + 1);
5424 if (!shortname)
5425 goto error_free_vers;
5426 memcpy (shortname, h->root.root.string, amt);
5427 shortname[amt] = '\0';
5428
5429 hi = (struct elf_link_hash_entry *)
5430 bfd_link_hash_lookup (&htab->root, shortname,
5431 FALSE, FALSE, FALSE);
5432 if (hi != NULL
5433 && hi->root.type == h->root.type
5434 && hi->root.u.def.value == h->root.u.def.value
5435 && hi->root.u.def.section == h->root.u.def.section)
5436 {
5437 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
5438 hi->root.type = bfd_link_hash_indirect;
5439 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
5440 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
5441 sym_hash = elf_sym_hashes (abfd);
5442 if (sym_hash)
5443 for (symidx = 0; symidx < extsymcount; ++symidx)
5444 if (sym_hash[symidx] == hi)
5445 {
5446 sym_hash[symidx] = h;
5447 break;
5448 }
5449 }
5450 free (shortname);
5451 }
5452 free (nondeflt_vers);
5453 nondeflt_vers = NULL;
5454 }
5455
5456 /* Now set the alias field correctly for all the weak defined
5457 symbols we found. The only way to do this is to search all the
5458 symbols. Since we only need the information for non functions in
5459 dynamic objects, that's the only time we actually put anything on
5460 the list WEAKS. We need this information so that if a regular
5461 object refers to a symbol defined weakly in a dynamic object, the
5462 real symbol in the dynamic object is also put in the dynamic
5463 symbols; we also must arrange for both symbols to point to the
5464 same memory location. We could handle the general case of symbol
5465 aliasing, but a general symbol alias can only be generated in
5466 assembler code, handling it correctly would be very time
5467 consuming, and other ELF linkers don't handle general aliasing
5468 either. */
5469 if (weaks != NULL)
5470 {
5471 struct elf_link_hash_entry **hpp;
5472 struct elf_link_hash_entry **hppend;
5473 struct elf_link_hash_entry **sorted_sym_hash;
5474 struct elf_link_hash_entry *h;
5475 size_t sym_count, amt;
5476
5477 /* Since we have to search the whole symbol list for each weak
5478 defined symbol, search time for N weak defined symbols will be
5479 O(N^2). Binary search will cut it down to O(NlogN). */
5480 amt = extsymcount * sizeof (*sorted_sym_hash);
5481 sorted_sym_hash = bfd_malloc (amt);
5482 if (sorted_sym_hash == NULL)
5483 goto error_return;
5484 sym_hash = sorted_sym_hash;
5485 hpp = elf_sym_hashes (abfd);
5486 hppend = hpp + extsymcount;
5487 sym_count = 0;
5488 for (; hpp < hppend; hpp++)
5489 {
5490 h = *hpp;
5491 if (h != NULL
5492 && h->root.type == bfd_link_hash_defined
5493 && !bed->is_function_type (h->type))
5494 {
5495 *sym_hash = h;
5496 sym_hash++;
5497 sym_count++;
5498 }
5499 }
5500
5501 qsort (sorted_sym_hash, sym_count, sizeof (*sorted_sym_hash),
5502 elf_sort_symbol);
5503
5504 while (weaks != NULL)
5505 {
5506 struct elf_link_hash_entry *hlook;
5507 asection *slook;
5508 bfd_vma vlook;
5509 size_t i, j, idx = 0;
5510
5511 hlook = weaks;
5512 weaks = hlook->u.alias;
5513 hlook->u.alias = NULL;
5514
5515 if (hlook->root.type != bfd_link_hash_defined
5516 && hlook->root.type != bfd_link_hash_defweak)
5517 continue;
5518
5519 slook = hlook->root.u.def.section;
5520 vlook = hlook->root.u.def.value;
5521
5522 i = 0;
5523 j = sym_count;
5524 while (i != j)
5525 {
5526 bfd_signed_vma vdiff;
5527 idx = (i + j) / 2;
5528 h = sorted_sym_hash[idx];
5529 vdiff = vlook - h->root.u.def.value;
5530 if (vdiff < 0)
5531 j = idx;
5532 else if (vdiff > 0)
5533 i = idx + 1;
5534 else
5535 {
5536 int sdiff = slook->id - h->root.u.def.section->id;
5537 if (sdiff < 0)
5538 j = idx;
5539 else if (sdiff > 0)
5540 i = idx + 1;
5541 else
5542 break;
5543 }
5544 }
5545
5546 /* We didn't find a value/section match. */
5547 if (i == j)
5548 continue;
5549
5550 /* With multiple aliases, or when the weak symbol is already
5551 strongly defined, we have multiple matching symbols and
5552 the binary search above may land on any of them. Step
5553 one past the matching symbol(s). */
5554 while (++idx != j)
5555 {
5556 h = sorted_sym_hash[idx];
5557 if (h->root.u.def.section != slook
5558 || h->root.u.def.value != vlook)
5559 break;
5560 }
5561
5562 /* Now look back over the aliases. Since we sorted by size
5563 as well as value and section, we'll choose the one with
5564 the largest size. */
5565 while (idx-- != i)
5566 {
5567 h = sorted_sym_hash[idx];
5568
5569 /* Stop if value or section doesn't match. */
5570 if (h->root.u.def.section != slook
5571 || h->root.u.def.value != vlook)
5572 break;
5573 else if (h != hlook)
5574 {
5575 struct elf_link_hash_entry *t;
5576
5577 hlook->u.alias = h;
5578 hlook->is_weakalias = 1;
5579 t = h;
5580 if (t->u.alias != NULL)
5581 while (t->u.alias != h)
5582 t = t->u.alias;
5583 t->u.alias = hlook;
5584
5585 /* If the weak definition is in the list of dynamic
5586 symbols, make sure the real definition is put
5587 there as well. */
5588 if (hlook->dynindx != -1 && h->dynindx == -1)
5589 {
5590 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5591 {
5592 err_free_sym_hash:
5593 free (sorted_sym_hash);
5594 goto error_return;
5595 }
5596 }
5597
5598 /* If the real definition is in the list of dynamic
5599 symbols, make sure the weak definition is put
5600 there as well. If we don't do this, then the
5601 dynamic loader might not merge the entries for the
5602 real definition and the weak definition. */
5603 if (h->dynindx != -1 && hlook->dynindx == -1)
5604 {
5605 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
5606 goto err_free_sym_hash;
5607 }
5608 break;
5609 }
5610 }
5611 }
5612
5613 free (sorted_sym_hash);
5614 }
5615
5616 if (bed->check_directives
5617 && !(*bed->check_directives) (abfd, info))
5618 return FALSE;
5619
5620 /* If this is a non-traditional link, try to optimize the handling
5621 of the .stab/.stabstr sections. */
5622 if (! dynamic
5623 && ! info->traditional_format
5624 && is_elf_hash_table (htab)
5625 && (info->strip != strip_all && info->strip != strip_debugger))
5626 {
5627 asection *stabstr;
5628
5629 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
5630 if (stabstr != NULL)
5631 {
5632 bfd_size_type string_offset = 0;
5633 asection *stab;
5634
5635 for (stab = abfd->sections; stab; stab = stab->next)
5636 if (CONST_STRNEQ (stab->name, ".stab")
5637 && (!stab->name[5] ||
5638 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
5639 && (stab->flags & SEC_MERGE) == 0
5640 && !bfd_is_abs_section (stab->output_section))
5641 {
5642 struct bfd_elf_section_data *secdata;
5643
5644 secdata = elf_section_data (stab);
5645 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
5646 stabstr, &secdata->sec_info,
5647 &string_offset))
5648 goto error_return;
5649 if (secdata->sec_info)
5650 stab->sec_info_type = SEC_INFO_TYPE_STABS;
5651 }
5652 }
5653 }
5654
5655 if (dynamic && add_needed)
5656 {
5657 /* Add this bfd to the loaded list. */
5658 struct elf_link_loaded_list *n;
5659
5660 n = (struct elf_link_loaded_list *) bfd_alloc (abfd, sizeof (*n));
5661 if (n == NULL)
5662 goto error_return;
5663 n->abfd = abfd;
5664 n->next = htab->dyn_loaded;
5665 htab->dyn_loaded = n;
5666 }
5667 if (dynamic && !add_needed
5668 && (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) != 0)
5669 elf_dyn_lib_class (abfd) |= DYN_NO_NEEDED;
5670
5671 return TRUE;
5672
5673 error_free_vers:
5674 free (old_tab);
5675 free (old_strtab);
5676 free (nondeflt_vers);
5677 free (extversym);
5678 error_free_sym:
5679 free (isymbuf);
5680 error_return:
5681 return FALSE;
5682 }
5683
5684 /* Return the linker hash table entry of a symbol that might be
5685 satisfied by an archive symbol. Return -1 on error. */
5686
5687 struct elf_link_hash_entry *
5688 _bfd_elf_archive_symbol_lookup (bfd *abfd,
5689 struct bfd_link_info *info,
5690 const char *name)
5691 {
5692 struct elf_link_hash_entry *h;
5693 char *p, *copy;
5694 size_t len, first;
5695
5696 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
5697 if (h != NULL)
5698 return h;
5699
5700 /* If this is a default version (the name contains @@), look up the
5701 symbol again with only one `@' as well as without the version.
5702 The effect is that references to the symbol with and without the
5703 version will be matched by the default symbol in the archive. */
5704
5705 p = strchr (name, ELF_VER_CHR);
5706 if (p == NULL || p[1] != ELF_VER_CHR)
5707 return h;
5708
5709 /* First check with only one `@'. */
5710 len = strlen (name);
5711 copy = (char *) bfd_alloc (abfd, len);
5712 if (copy == NULL)
5713 return (struct elf_link_hash_entry *) -1;
5714
5715 first = p - name + 1;
5716 memcpy (copy, name, first);
5717 memcpy (copy + first, name + first + 1, len - first);
5718
5719 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
5720 if (h == NULL)
5721 {
5722 /* We also need to check references to the symbol without the
5723 version. */
5724 copy[first - 1] = '\0';
5725 h = elf_link_hash_lookup (elf_hash_table (info), copy,
5726 FALSE, FALSE, TRUE);
5727 }
5728
5729 bfd_release (abfd, copy);
5730 return h;
5731 }
5732
5733 /* Add symbols from an ELF archive file to the linker hash table. We
5734 don't use _bfd_generic_link_add_archive_symbols because we need to
5735 handle versioned symbols.
5736
5737 Fortunately, ELF archive handling is simpler than that done by
5738 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
5739 oddities. In ELF, if we find a symbol in the archive map, and the
5740 symbol is currently undefined, we know that we must pull in that
5741 object file.
5742
5743 Unfortunately, we do have to make multiple passes over the symbol
5744 table until nothing further is resolved. */
5745
5746 static bfd_boolean
5747 elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
5748 {
5749 symindex c;
5750 unsigned char *included = NULL;
5751 carsym *symdefs;
5752 bfd_boolean loop;
5753 size_t amt;
5754 const struct elf_backend_data *bed;
5755 struct elf_link_hash_entry * (*archive_symbol_lookup)
5756 (bfd *, struct bfd_link_info *, const char *);
5757
5758 if (! bfd_has_map (abfd))
5759 {
5760 /* An empty archive is a special case. */
5761 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
5762 return TRUE;
5763 bfd_set_error (bfd_error_no_armap);
5764 return FALSE;
5765 }
5766
5767 /* Keep track of all symbols we know to be already defined, and all
5768 files we know to be already included. This is to speed up the
5769 second and subsequent passes. */
5770 c = bfd_ardata (abfd)->symdef_count;
5771 if (c == 0)
5772 return TRUE;
5773 amt = c * sizeof (*included);
5774 included = (unsigned char *) bfd_zmalloc (amt);
5775 if (included == NULL)
5776 return FALSE;
5777
5778 symdefs = bfd_ardata (abfd)->symdefs;
5779 bed = get_elf_backend_data (abfd);
5780 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
5781
5782 do
5783 {
5784 file_ptr last;
5785 symindex i;
5786 carsym *symdef;
5787 carsym *symdefend;
5788
5789 loop = FALSE;
5790 last = -1;
5791
5792 symdef = symdefs;
5793 symdefend = symdef + c;
5794 for (i = 0; symdef < symdefend; symdef++, i++)
5795 {
5796 struct elf_link_hash_entry *h;
5797 bfd *element;
5798 struct bfd_link_hash_entry *undefs_tail;
5799 symindex mark;
5800
5801 if (included[i])
5802 continue;
5803 if (symdef->file_offset == last)
5804 {
5805 included[i] = TRUE;
5806 continue;
5807 }
5808
5809 h = archive_symbol_lookup (abfd, info, symdef->name);
5810 if (h == (struct elf_link_hash_entry *) -1)
5811 goto error_return;
5812
5813 if (h == NULL)
5814 continue;
5815
5816 if (h->root.type == bfd_link_hash_undefined)
5817 {
5818 /* If the archive element has already been loaded then one
5819 of the symbols defined by that element might have been
5820 made undefined due to being in a discarded section. */
5821 if (h->indx == -3)
5822 continue;
5823 }
5824 else if (h->root.type == bfd_link_hash_common)
5825 {
5826 /* We currently have a common symbol. The archive map contains
5827 a reference to this symbol, so we may want to include it. We
5828 only want to include it however, if this archive element
5829 contains a definition of the symbol, not just another common
5830 declaration of it.
5831
5832 Unfortunately some archivers (including GNU ar) will put
5833 declarations of common symbols into their archive maps, as
5834 well as real definitions, so we cannot just go by the archive
5835 map alone. Instead we must read in the element's symbol
5836 table and check that to see what kind of symbol definition
5837 this is. */
5838 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5839 continue;
5840 }
5841 else
5842 {
5843 if (h->root.type != bfd_link_hash_undefweak)
5844 /* Symbol must be defined. Don't check it again. */
5845 included[i] = TRUE;
5846 continue;
5847 }
5848
5849 /* We need to include this archive member. */
5850 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5851 if (element == NULL)
5852 goto error_return;
5853
5854 if (! bfd_check_format (element, bfd_object))
5855 goto error_return;
5856
5857 undefs_tail = info->hash->undefs_tail;
5858
5859 if (!(*info->callbacks
5860 ->add_archive_element) (info, element, symdef->name, &element))
5861 continue;
5862 if (!bfd_link_add_symbols (element, info))
5863 goto error_return;
5864
5865 /* If there are any new undefined symbols, we need to make
5866 another pass through the archive in order to see whether
5867 they can be defined. FIXME: This isn't perfect, because
5868 common symbols wind up on undefs_tail and because an
5869 undefined symbol which is defined later on in this pass
5870 does not require another pass. This isn't a bug, but it
5871 does make the code less efficient than it could be. */
5872 if (undefs_tail != info->hash->undefs_tail)
5873 loop = TRUE;
5874
5875 /* Look backward to mark all symbols from this object file
5876 which we have already seen in this pass. */
5877 mark = i;
5878 do
5879 {
5880 included[mark] = TRUE;
5881 if (mark == 0)
5882 break;
5883 --mark;
5884 }
5885 while (symdefs[mark].file_offset == symdef->file_offset);
5886
5887 /* We mark subsequent symbols from this object file as we go
5888 on through the loop. */
5889 last = symdef->file_offset;
5890 }
5891 }
5892 while (loop);
5893
5894 free (included);
5895 return TRUE;
5896
5897 error_return:
5898 free (included);
5899 return FALSE;
5900 }
5901
5902 /* Given an ELF BFD, add symbols to the global hash table as
5903 appropriate. */
5904
5905 bfd_boolean
5906 bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5907 {
5908 switch (bfd_get_format (abfd))
5909 {
5910 case bfd_object:
5911 return elf_link_add_object_symbols (abfd, info);
5912 case bfd_archive:
5913 return elf_link_add_archive_symbols (abfd, info);
5914 default:
5915 bfd_set_error (bfd_error_wrong_format);
5916 return FALSE;
5917 }
5918 }
5919 \f
5920 struct hash_codes_info
5921 {
5922 unsigned long *hashcodes;
5923 bfd_boolean error;
5924 };
5925
5926 /* This function will be called though elf_link_hash_traverse to store
5927 all hash value of the exported symbols in an array. */
5928
5929 static bfd_boolean
5930 elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5931 {
5932 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5933 const char *name;
5934 unsigned long ha;
5935 char *alc = NULL;
5936
5937 /* Ignore indirect symbols. These are added by the versioning code. */
5938 if (h->dynindx == -1)
5939 return TRUE;
5940
5941 name = h->root.root.string;
5942 if (h->versioned >= versioned)
5943 {
5944 char *p = strchr (name, ELF_VER_CHR);
5945 if (p != NULL)
5946 {
5947 alc = (char *) bfd_malloc (p - name + 1);
5948 if (alc == NULL)
5949 {
5950 inf->error = TRUE;
5951 return FALSE;
5952 }
5953 memcpy (alc, name, p - name);
5954 alc[p - name] = '\0';
5955 name = alc;
5956 }
5957 }
5958
5959 /* Compute the hash value. */
5960 ha = bfd_elf_hash (name);
5961
5962 /* Store the found hash value in the array given as the argument. */
5963 *(inf->hashcodes)++ = ha;
5964
5965 /* And store it in the struct so that we can put it in the hash table
5966 later. */
5967 h->u.elf_hash_value = ha;
5968
5969 free (alc);
5970 return TRUE;
5971 }
5972
5973 struct collect_gnu_hash_codes
5974 {
5975 bfd *output_bfd;
5976 const struct elf_backend_data *bed;
5977 unsigned long int nsyms;
5978 unsigned long int maskbits;
5979 unsigned long int *hashcodes;
5980 unsigned long int *hashval;
5981 unsigned long int *indx;
5982 unsigned long int *counts;
5983 bfd_vma *bitmask;
5984 bfd_byte *contents;
5985 bfd_size_type xlat;
5986 long int min_dynindx;
5987 unsigned long int bucketcount;
5988 unsigned long int symindx;
5989 long int local_indx;
5990 long int shift1, shift2;
5991 unsigned long int mask;
5992 bfd_boolean error;
5993 };
5994
5995 /* This function will be called though elf_link_hash_traverse to store
5996 all hash value of the exported symbols in an array. */
5997
5998 static bfd_boolean
5999 elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
6000 {
6001 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
6002 const char *name;
6003 unsigned long ha;
6004 char *alc = NULL;
6005
6006 /* Ignore indirect symbols. These are added by the versioning code. */
6007 if (h->dynindx == -1)
6008 return TRUE;
6009
6010 /* Ignore also local symbols and undefined symbols. */
6011 if (! (*s->bed->elf_hash_symbol) (h))
6012 return TRUE;
6013
6014 name = h->root.root.string;
6015 if (h->versioned >= versioned)
6016 {
6017 char *p = strchr (name, ELF_VER_CHR);
6018 if (p != NULL)
6019 {
6020 alc = (char *) bfd_malloc (p - name + 1);
6021 if (alc == NULL)
6022 {
6023 s->error = TRUE;
6024 return FALSE;
6025 }
6026 memcpy (alc, name, p - name);
6027 alc[p - name] = '\0';
6028 name = alc;
6029 }
6030 }
6031
6032 /* Compute the hash value. */
6033 ha = bfd_elf_gnu_hash (name);
6034
6035 /* Store the found hash value in the array for compute_bucket_count,
6036 and also for .dynsym reordering purposes. */
6037 s->hashcodes[s->nsyms] = ha;
6038 s->hashval[h->dynindx] = ha;
6039 ++s->nsyms;
6040 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
6041 s->min_dynindx = h->dynindx;
6042
6043 free (alc);
6044 return TRUE;
6045 }
6046
6047 /* This function will be called though elf_link_hash_traverse to do
6048 final dynamic symbol renumbering in case of .gnu.hash.
6049 If using .MIPS.xhash, invoke record_xhash_symbol to add symbol index
6050 to the translation table. */
6051
6052 static bfd_boolean
6053 elf_gnu_hash_process_symidx (struct elf_link_hash_entry *h, void *data)
6054 {
6055 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
6056 unsigned long int bucket;
6057 unsigned long int val;
6058
6059 /* Ignore indirect symbols. */
6060 if (h->dynindx == -1)
6061 return TRUE;
6062
6063 /* Ignore also local symbols and undefined symbols. */
6064 if (! (*s->bed->elf_hash_symbol) (h))
6065 {
6066 if (h->dynindx >= s->min_dynindx)
6067 {
6068 if (s->bed->record_xhash_symbol != NULL)
6069 {
6070 (*s->bed->record_xhash_symbol) (h, 0);
6071 s->local_indx++;
6072 }
6073 else
6074 h->dynindx = s->local_indx++;
6075 }
6076 return TRUE;
6077 }
6078
6079 bucket = s->hashval[h->dynindx] % s->bucketcount;
6080 val = (s->hashval[h->dynindx] >> s->shift1)
6081 & ((s->maskbits >> s->shift1) - 1);
6082 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
6083 s->bitmask[val]
6084 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
6085 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
6086 if (s->counts[bucket] == 1)
6087 /* Last element terminates the chain. */
6088 val |= 1;
6089 bfd_put_32 (s->output_bfd, val,
6090 s->contents + (s->indx[bucket] - s->symindx) * 4);
6091 --s->counts[bucket];
6092 if (s->bed->record_xhash_symbol != NULL)
6093 {
6094 bfd_vma xlat_loc = s->xlat + (s->indx[bucket]++ - s->symindx) * 4;
6095
6096 (*s->bed->record_xhash_symbol) (h, xlat_loc);
6097 }
6098 else
6099 h->dynindx = s->indx[bucket]++;
6100 return TRUE;
6101 }
6102
6103 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
6104
6105 bfd_boolean
6106 _bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
6107 {
6108 return !(h->forced_local
6109 || h->root.type == bfd_link_hash_undefined
6110 || h->root.type == bfd_link_hash_undefweak
6111 || ((h->root.type == bfd_link_hash_defined
6112 || h->root.type == bfd_link_hash_defweak)
6113 && h->root.u.def.section->output_section == NULL));
6114 }
6115
6116 /* Array used to determine the number of hash table buckets to use
6117 based on the number of symbols there are. If there are fewer than
6118 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
6119 fewer than 37 we use 17 buckets, and so forth. We never use more
6120 than 32771 buckets. */
6121
6122 static const size_t elf_buckets[] =
6123 {
6124 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
6125 16411, 32771, 0
6126 };
6127
6128 /* Compute bucket count for hashing table. We do not use a static set
6129 of possible tables sizes anymore. Instead we determine for all
6130 possible reasonable sizes of the table the outcome (i.e., the
6131 number of collisions etc) and choose the best solution. The
6132 weighting functions are not too simple to allow the table to grow
6133 without bounds. Instead one of the weighting factors is the size.
6134 Therefore the result is always a good payoff between few collisions
6135 (= short chain lengths) and table size. */
6136 static size_t
6137 compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
6138 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
6139 unsigned long int nsyms,
6140 int gnu_hash)
6141 {
6142 size_t best_size = 0;
6143 unsigned long int i;
6144
6145 /* We have a problem here. The following code to optimize the table
6146 size requires an integer type with more the 32 bits. If
6147 BFD_HOST_U_64_BIT is set we know about such a type. */
6148 #ifdef BFD_HOST_U_64_BIT
6149 if (info->optimize)
6150 {
6151 size_t minsize;
6152 size_t maxsize;
6153 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
6154 bfd *dynobj = elf_hash_table (info)->dynobj;
6155 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
6156 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
6157 unsigned long int *counts;
6158 bfd_size_type amt;
6159 unsigned int no_improvement_count = 0;
6160
6161 /* Possible optimization parameters: if we have NSYMS symbols we say
6162 that the hashing table must at least have NSYMS/4 and at most
6163 2*NSYMS buckets. */
6164 minsize = nsyms / 4;
6165 if (minsize == 0)
6166 minsize = 1;
6167 best_size = maxsize = nsyms * 2;
6168 if (gnu_hash)
6169 {
6170 if (minsize < 2)
6171 minsize = 2;
6172 if ((best_size & 31) == 0)
6173 ++best_size;
6174 }
6175
6176 /* Create array where we count the collisions in. We must use bfd_malloc
6177 since the size could be large. */
6178 amt = maxsize;
6179 amt *= sizeof (unsigned long int);
6180 counts = (unsigned long int *) bfd_malloc (amt);
6181 if (counts == NULL)
6182 return 0;
6183
6184 /* Compute the "optimal" size for the hash table. The criteria is a
6185 minimal chain length. The minor criteria is (of course) the size
6186 of the table. */
6187 for (i = minsize; i < maxsize; ++i)
6188 {
6189 /* Walk through the array of hashcodes and count the collisions. */
6190 BFD_HOST_U_64_BIT max;
6191 unsigned long int j;
6192 unsigned long int fact;
6193
6194 if (gnu_hash && (i & 31) == 0)
6195 continue;
6196
6197 memset (counts, '\0', i * sizeof (unsigned long int));
6198
6199 /* Determine how often each hash bucket is used. */
6200 for (j = 0; j < nsyms; ++j)
6201 ++counts[hashcodes[j] % i];
6202
6203 /* For the weight function we need some information about the
6204 pagesize on the target. This is information need not be 100%
6205 accurate. Since this information is not available (so far) we
6206 define it here to a reasonable default value. If it is crucial
6207 to have a better value some day simply define this value. */
6208 # ifndef BFD_TARGET_PAGESIZE
6209 # define BFD_TARGET_PAGESIZE (4096)
6210 # endif
6211
6212 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
6213 and the chains. */
6214 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
6215
6216 # if 1
6217 /* Variant 1: optimize for short chains. We add the squares
6218 of all the chain lengths (which favors many small chain
6219 over a few long chains). */
6220 for (j = 0; j < i; ++j)
6221 max += counts[j] * counts[j];
6222
6223 /* This adds penalties for the overall size of the table. */
6224 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
6225 max *= fact * fact;
6226 # else
6227 /* Variant 2: Optimize a lot more for small table. Here we
6228 also add squares of the size but we also add penalties for
6229 empty slots (the +1 term). */
6230 for (j = 0; j < i; ++j)
6231 max += (1 + counts[j]) * (1 + counts[j]);
6232
6233 /* The overall size of the table is considered, but not as
6234 strong as in variant 1, where it is squared. */
6235 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
6236 max *= fact;
6237 # endif
6238
6239 /* Compare with current best results. */
6240 if (max < best_chlen)
6241 {
6242 best_chlen = max;
6243 best_size = i;
6244 no_improvement_count = 0;
6245 }
6246 /* PR 11843: Avoid futile long searches for the best bucket size
6247 when there are a large number of symbols. */
6248 else if (++no_improvement_count == 100)
6249 break;
6250 }
6251
6252 free (counts);
6253 }
6254 else
6255 #endif /* defined (BFD_HOST_U_64_BIT) */
6256 {
6257 /* This is the fallback solution if no 64bit type is available or if we
6258 are not supposed to spend much time on optimizations. We select the
6259 bucket count using a fixed set of numbers. */
6260 for (i = 0; elf_buckets[i] != 0; i++)
6261 {
6262 best_size = elf_buckets[i];
6263 if (nsyms < elf_buckets[i + 1])
6264 break;
6265 }
6266 if (gnu_hash && best_size < 2)
6267 best_size = 2;
6268 }
6269
6270 return best_size;
6271 }
6272
6273 /* Size any SHT_GROUP section for ld -r. */
6274
6275 bfd_boolean
6276 _bfd_elf_size_group_sections (struct bfd_link_info *info)
6277 {
6278 bfd *ibfd;
6279 asection *s;
6280
6281 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
6282 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
6283 && (s = ibfd->sections) != NULL
6284 && s->sec_info_type != SEC_INFO_TYPE_JUST_SYMS
6285 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
6286 return FALSE;
6287 return TRUE;
6288 }
6289
6290 /* Set a default stack segment size. The value in INFO wins. If it
6291 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
6292 undefined it is initialized. */
6293
6294 bfd_boolean
6295 bfd_elf_stack_segment_size (bfd *output_bfd,
6296 struct bfd_link_info *info,
6297 const char *legacy_symbol,
6298 bfd_vma default_size)
6299 {
6300 struct elf_link_hash_entry *h = NULL;
6301
6302 /* Look for legacy symbol. */
6303 if (legacy_symbol)
6304 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
6305 FALSE, FALSE, FALSE);
6306 if (h && (h->root.type == bfd_link_hash_defined
6307 || h->root.type == bfd_link_hash_defweak)
6308 && h->def_regular
6309 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
6310 {
6311 /* The symbol has no type if specified on the command line. */
6312 h->type = STT_OBJECT;
6313 if (info->stacksize)
6314 /* xgettext:c-format */
6315 _bfd_error_handler (_("%pB: stack size specified and %s set"),
6316 output_bfd, legacy_symbol);
6317 else if (h->root.u.def.section != bfd_abs_section_ptr)
6318 /* xgettext:c-format */
6319 _bfd_error_handler (_("%pB: %s not absolute"),
6320 output_bfd, legacy_symbol);
6321 else
6322 info->stacksize = h->root.u.def.value;
6323 }
6324
6325 if (!info->stacksize)
6326 /* If the user didn't set a size, or explicitly inhibit the
6327 size, set it now. */
6328 info->stacksize = default_size;
6329
6330 /* Provide the legacy symbol, if it is referenced. */
6331 if (h && (h->root.type == bfd_link_hash_undefined
6332 || h->root.type == bfd_link_hash_undefweak))
6333 {
6334 struct bfd_link_hash_entry *bh = NULL;
6335
6336 if (!(_bfd_generic_link_add_one_symbol
6337 (info, output_bfd, legacy_symbol,
6338 BSF_GLOBAL, bfd_abs_section_ptr,
6339 info->stacksize >= 0 ? info->stacksize : 0,
6340 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
6341 return FALSE;
6342
6343 h = (struct elf_link_hash_entry *) bh;
6344 h->def_regular = 1;
6345 h->type = STT_OBJECT;
6346 }
6347
6348 return TRUE;
6349 }
6350
6351 /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
6352
6353 struct elf_gc_sweep_symbol_info
6354 {
6355 struct bfd_link_info *info;
6356 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
6357 bfd_boolean);
6358 };
6359
6360 static bfd_boolean
6361 elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
6362 {
6363 if (!h->mark
6364 && (((h->root.type == bfd_link_hash_defined
6365 || h->root.type == bfd_link_hash_defweak)
6366 && !((h->def_regular || ELF_COMMON_DEF_P (h))
6367 && h->root.u.def.section->gc_mark))
6368 || h->root.type == bfd_link_hash_undefined
6369 || h->root.type == bfd_link_hash_undefweak))
6370 {
6371 struct elf_gc_sweep_symbol_info *inf;
6372
6373 inf = (struct elf_gc_sweep_symbol_info *) data;
6374 (*inf->hide_symbol) (inf->info, h, TRUE);
6375 h->def_regular = 0;
6376 h->ref_regular = 0;
6377 h->ref_regular_nonweak = 0;
6378 }
6379
6380 return TRUE;
6381 }
6382
6383 /* Set up the sizes and contents of the ELF dynamic sections. This is
6384 called by the ELF linker emulation before_allocation routine. We
6385 must set the sizes of the sections before the linker sets the
6386 addresses of the various sections. */
6387
6388 bfd_boolean
6389 bfd_elf_size_dynamic_sections (bfd *output_bfd,
6390 const char *soname,
6391 const char *rpath,
6392 const char *filter_shlib,
6393 const char *audit,
6394 const char *depaudit,
6395 const char * const *auxiliary_filters,
6396 struct bfd_link_info *info,
6397 asection **sinterpptr)
6398 {
6399 bfd *dynobj;
6400 const struct elf_backend_data *bed;
6401
6402 *sinterpptr = NULL;
6403
6404 if (!is_elf_hash_table (info->hash))
6405 return TRUE;
6406
6407 dynobj = elf_hash_table (info)->dynobj;
6408
6409 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6410 {
6411 struct bfd_elf_version_tree *verdefs;
6412 struct elf_info_failed asvinfo;
6413 struct bfd_elf_version_tree *t;
6414 struct bfd_elf_version_expr *d;
6415 asection *s;
6416 size_t soname_indx;
6417
6418 /* If we are supposed to export all symbols into the dynamic symbol
6419 table (this is not the normal case), then do so. */
6420 if (info->export_dynamic
6421 || (bfd_link_executable (info) && info->dynamic))
6422 {
6423 struct elf_info_failed eif;
6424
6425 eif.info = info;
6426 eif.failed = FALSE;
6427 elf_link_hash_traverse (elf_hash_table (info),
6428 _bfd_elf_export_symbol,
6429 &eif);
6430 if (eif.failed)
6431 return FALSE;
6432 }
6433
6434 if (soname != NULL)
6435 {
6436 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6437 soname, TRUE);
6438 if (soname_indx == (size_t) -1
6439 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
6440 return FALSE;
6441 }
6442 else
6443 soname_indx = (size_t) -1;
6444
6445 /* Make all global versions with definition. */
6446 for (t = info->version_info; t != NULL; t = t->next)
6447 for (d = t->globals.list; d != NULL; d = d->next)
6448 if (!d->symver && d->literal)
6449 {
6450 const char *verstr, *name;
6451 size_t namelen, verlen, newlen;
6452 char *newname, *p, leading_char;
6453 struct elf_link_hash_entry *newh;
6454
6455 leading_char = bfd_get_symbol_leading_char (output_bfd);
6456 name = d->pattern;
6457 namelen = strlen (name) + (leading_char != '\0');
6458 verstr = t->name;
6459 verlen = strlen (verstr);
6460 newlen = namelen + verlen + 3;
6461
6462 newname = (char *) bfd_malloc (newlen);
6463 if (newname == NULL)
6464 return FALSE;
6465 newname[0] = leading_char;
6466 memcpy (newname + (leading_char != '\0'), name, namelen);
6467
6468 /* Check the hidden versioned definition. */
6469 p = newname + namelen;
6470 *p++ = ELF_VER_CHR;
6471 memcpy (p, verstr, verlen + 1);
6472 newh = elf_link_hash_lookup (elf_hash_table (info),
6473 newname, FALSE, FALSE,
6474 FALSE);
6475 if (newh == NULL
6476 || (newh->root.type != bfd_link_hash_defined
6477 && newh->root.type != bfd_link_hash_defweak))
6478 {
6479 /* Check the default versioned definition. */
6480 *p++ = ELF_VER_CHR;
6481 memcpy (p, verstr, verlen + 1);
6482 newh = elf_link_hash_lookup (elf_hash_table (info),
6483 newname, FALSE, FALSE,
6484 FALSE);
6485 }
6486 free (newname);
6487
6488 /* Mark this version if there is a definition and it is
6489 not defined in a shared object. */
6490 if (newh != NULL
6491 && !newh->def_dynamic
6492 && (newh->root.type == bfd_link_hash_defined
6493 || newh->root.type == bfd_link_hash_defweak))
6494 d->symver = 1;
6495 }
6496
6497 /* Attach all the symbols to their version information. */
6498 asvinfo.info = info;
6499 asvinfo.failed = FALSE;
6500
6501 elf_link_hash_traverse (elf_hash_table (info),
6502 _bfd_elf_link_assign_sym_version,
6503 &asvinfo);
6504 if (asvinfo.failed)
6505 return FALSE;
6506
6507 if (!info->allow_undefined_version)
6508 {
6509 /* Check if all global versions have a definition. */
6510 bfd_boolean all_defined = TRUE;
6511 for (t = info->version_info; t != NULL; t = t->next)
6512 for (d = t->globals.list; d != NULL; d = d->next)
6513 if (d->literal && !d->symver && !d->script)
6514 {
6515 _bfd_error_handler
6516 (_("%s: undefined version: %s"),
6517 d->pattern, t->name);
6518 all_defined = FALSE;
6519 }
6520
6521 if (!all_defined)
6522 {
6523 bfd_set_error (bfd_error_bad_value);
6524 return FALSE;
6525 }
6526 }
6527
6528 /* Set up the version definition section. */
6529 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
6530 BFD_ASSERT (s != NULL);
6531
6532 /* We may have created additional version definitions if we are
6533 just linking a regular application. */
6534 verdefs = info->version_info;
6535
6536 /* Skip anonymous version tag. */
6537 if (verdefs != NULL && verdefs->vernum == 0)
6538 verdefs = verdefs->next;
6539
6540 if (verdefs == NULL && !info->create_default_symver)
6541 s->flags |= SEC_EXCLUDE;
6542 else
6543 {
6544 unsigned int cdefs;
6545 bfd_size_type size;
6546 bfd_byte *p;
6547 Elf_Internal_Verdef def;
6548 Elf_Internal_Verdaux defaux;
6549 struct bfd_link_hash_entry *bh;
6550 struct elf_link_hash_entry *h;
6551 const char *name;
6552
6553 cdefs = 0;
6554 size = 0;
6555
6556 /* Make space for the base version. */
6557 size += sizeof (Elf_External_Verdef);
6558 size += sizeof (Elf_External_Verdaux);
6559 ++cdefs;
6560
6561 /* Make space for the default version. */
6562 if (info->create_default_symver)
6563 {
6564 size += sizeof (Elf_External_Verdef);
6565 ++cdefs;
6566 }
6567
6568 for (t = verdefs; t != NULL; t = t->next)
6569 {
6570 struct bfd_elf_version_deps *n;
6571
6572 /* Don't emit base version twice. */
6573 if (t->vernum == 0)
6574 continue;
6575
6576 size += sizeof (Elf_External_Verdef);
6577 size += sizeof (Elf_External_Verdaux);
6578 ++cdefs;
6579
6580 for (n = t->deps; n != NULL; n = n->next)
6581 size += sizeof (Elf_External_Verdaux);
6582 }
6583
6584 s->size = size;
6585 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6586 if (s->contents == NULL && s->size != 0)
6587 return FALSE;
6588
6589 /* Fill in the version definition section. */
6590
6591 p = s->contents;
6592
6593 def.vd_version = VER_DEF_CURRENT;
6594 def.vd_flags = VER_FLG_BASE;
6595 def.vd_ndx = 1;
6596 def.vd_cnt = 1;
6597 if (info->create_default_symver)
6598 {
6599 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6600 def.vd_next = sizeof (Elf_External_Verdef);
6601 }
6602 else
6603 {
6604 def.vd_aux = sizeof (Elf_External_Verdef);
6605 def.vd_next = (sizeof (Elf_External_Verdef)
6606 + sizeof (Elf_External_Verdaux));
6607 }
6608
6609 if (soname_indx != (size_t) -1)
6610 {
6611 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6612 soname_indx);
6613 def.vd_hash = bfd_elf_hash (soname);
6614 defaux.vda_name = soname_indx;
6615 name = soname;
6616 }
6617 else
6618 {
6619 size_t indx;
6620
6621 name = lbasename (bfd_get_filename (output_bfd));
6622 def.vd_hash = bfd_elf_hash (name);
6623 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6624 name, FALSE);
6625 if (indx == (size_t) -1)
6626 return FALSE;
6627 defaux.vda_name = indx;
6628 }
6629 defaux.vda_next = 0;
6630
6631 _bfd_elf_swap_verdef_out (output_bfd, &def,
6632 (Elf_External_Verdef *) p);
6633 p += sizeof (Elf_External_Verdef);
6634 if (info->create_default_symver)
6635 {
6636 /* Add a symbol representing this version. */
6637 bh = NULL;
6638 if (! (_bfd_generic_link_add_one_symbol
6639 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6640 0, NULL, FALSE,
6641 get_elf_backend_data (dynobj)->collect, &bh)))
6642 return FALSE;
6643 h = (struct elf_link_hash_entry *) bh;
6644 h->non_elf = 0;
6645 h->def_regular = 1;
6646 h->type = STT_OBJECT;
6647 h->verinfo.vertree = NULL;
6648
6649 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6650 return FALSE;
6651
6652 /* Create a duplicate of the base version with the same
6653 aux block, but different flags. */
6654 def.vd_flags = 0;
6655 def.vd_ndx = 2;
6656 def.vd_aux = sizeof (Elf_External_Verdef);
6657 if (verdefs)
6658 def.vd_next = (sizeof (Elf_External_Verdef)
6659 + sizeof (Elf_External_Verdaux));
6660 else
6661 def.vd_next = 0;
6662 _bfd_elf_swap_verdef_out (output_bfd, &def,
6663 (Elf_External_Verdef *) p);
6664 p += sizeof (Elf_External_Verdef);
6665 }
6666 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6667 (Elf_External_Verdaux *) p);
6668 p += sizeof (Elf_External_Verdaux);
6669
6670 for (t = verdefs; t != NULL; t = t->next)
6671 {
6672 unsigned int cdeps;
6673 struct bfd_elf_version_deps *n;
6674
6675 /* Don't emit the base version twice. */
6676 if (t->vernum == 0)
6677 continue;
6678
6679 cdeps = 0;
6680 for (n = t->deps; n != NULL; n = n->next)
6681 ++cdeps;
6682
6683 /* Add a symbol representing this version. */
6684 bh = NULL;
6685 if (! (_bfd_generic_link_add_one_symbol
6686 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6687 0, NULL, FALSE,
6688 get_elf_backend_data (dynobj)->collect, &bh)))
6689 return FALSE;
6690 h = (struct elf_link_hash_entry *) bh;
6691 h->non_elf = 0;
6692 h->def_regular = 1;
6693 h->type = STT_OBJECT;
6694 h->verinfo.vertree = t;
6695
6696 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6697 return FALSE;
6698
6699 def.vd_version = VER_DEF_CURRENT;
6700 def.vd_flags = 0;
6701 if (t->globals.list == NULL
6702 && t->locals.list == NULL
6703 && ! t->used)
6704 def.vd_flags |= VER_FLG_WEAK;
6705 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
6706 def.vd_cnt = cdeps + 1;
6707 def.vd_hash = bfd_elf_hash (t->name);
6708 def.vd_aux = sizeof (Elf_External_Verdef);
6709 def.vd_next = 0;
6710
6711 /* If a basever node is next, it *must* be the last node in
6712 the chain, otherwise Verdef construction breaks. */
6713 if (t->next != NULL && t->next->vernum == 0)
6714 BFD_ASSERT (t->next->next == NULL);
6715
6716 if (t->next != NULL && t->next->vernum != 0)
6717 def.vd_next = (sizeof (Elf_External_Verdef)
6718 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6719
6720 _bfd_elf_swap_verdef_out (output_bfd, &def,
6721 (Elf_External_Verdef *) p);
6722 p += sizeof (Elf_External_Verdef);
6723
6724 defaux.vda_name = h->dynstr_index;
6725 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6726 h->dynstr_index);
6727 defaux.vda_next = 0;
6728 if (t->deps != NULL)
6729 defaux.vda_next = sizeof (Elf_External_Verdaux);
6730 t->name_indx = defaux.vda_name;
6731
6732 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6733 (Elf_External_Verdaux *) p);
6734 p += sizeof (Elf_External_Verdaux);
6735
6736 for (n = t->deps; n != NULL; n = n->next)
6737 {
6738 if (n->version_needed == NULL)
6739 {
6740 /* This can happen if there was an error in the
6741 version script. */
6742 defaux.vda_name = 0;
6743 }
6744 else
6745 {
6746 defaux.vda_name = n->version_needed->name_indx;
6747 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6748 defaux.vda_name);
6749 }
6750 if (n->next == NULL)
6751 defaux.vda_next = 0;
6752 else
6753 defaux.vda_next = sizeof (Elf_External_Verdaux);
6754
6755 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6756 (Elf_External_Verdaux *) p);
6757 p += sizeof (Elf_External_Verdaux);
6758 }
6759 }
6760
6761 elf_tdata (output_bfd)->cverdefs = cdefs;
6762 }
6763 }
6764
6765 bed = get_elf_backend_data (output_bfd);
6766
6767 if (info->gc_sections && bed->can_gc_sections)
6768 {
6769 struct elf_gc_sweep_symbol_info sweep_info;
6770
6771 /* Remove the symbols that were in the swept sections from the
6772 dynamic symbol table. */
6773 sweep_info.info = info;
6774 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
6775 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
6776 &sweep_info);
6777 }
6778
6779 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6780 {
6781 asection *s;
6782 struct elf_find_verdep_info sinfo;
6783
6784 /* Work out the size of the version reference section. */
6785
6786 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
6787 BFD_ASSERT (s != NULL);
6788
6789 sinfo.info = info;
6790 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6791 if (sinfo.vers == 0)
6792 sinfo.vers = 1;
6793 sinfo.failed = FALSE;
6794
6795 elf_link_hash_traverse (elf_hash_table (info),
6796 _bfd_elf_link_find_version_dependencies,
6797 &sinfo);
6798 if (sinfo.failed)
6799 return FALSE;
6800
6801 if (elf_tdata (output_bfd)->verref == NULL)
6802 s->flags |= SEC_EXCLUDE;
6803 else
6804 {
6805 Elf_Internal_Verneed *vn;
6806 unsigned int size;
6807 unsigned int crefs;
6808 bfd_byte *p;
6809
6810 /* Build the version dependency section. */
6811 size = 0;
6812 crefs = 0;
6813 for (vn = elf_tdata (output_bfd)->verref;
6814 vn != NULL;
6815 vn = vn->vn_nextref)
6816 {
6817 Elf_Internal_Vernaux *a;
6818
6819 size += sizeof (Elf_External_Verneed);
6820 ++crefs;
6821 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6822 size += sizeof (Elf_External_Vernaux);
6823 }
6824
6825 s->size = size;
6826 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6827 if (s->contents == NULL)
6828 return FALSE;
6829
6830 p = s->contents;
6831 for (vn = elf_tdata (output_bfd)->verref;
6832 vn != NULL;
6833 vn = vn->vn_nextref)
6834 {
6835 unsigned int caux;
6836 Elf_Internal_Vernaux *a;
6837 size_t indx;
6838
6839 caux = 0;
6840 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6841 ++caux;
6842
6843 vn->vn_version = VER_NEED_CURRENT;
6844 vn->vn_cnt = caux;
6845 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6846 elf_dt_name (vn->vn_bfd) != NULL
6847 ? elf_dt_name (vn->vn_bfd)
6848 : lbasename (bfd_get_filename
6849 (vn->vn_bfd)),
6850 FALSE);
6851 if (indx == (size_t) -1)
6852 return FALSE;
6853 vn->vn_file = indx;
6854 vn->vn_aux = sizeof (Elf_External_Verneed);
6855 if (vn->vn_nextref == NULL)
6856 vn->vn_next = 0;
6857 else
6858 vn->vn_next = (sizeof (Elf_External_Verneed)
6859 + caux * sizeof (Elf_External_Vernaux));
6860
6861 _bfd_elf_swap_verneed_out (output_bfd, vn,
6862 (Elf_External_Verneed *) p);
6863 p += sizeof (Elf_External_Verneed);
6864
6865 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6866 {
6867 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6868 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6869 a->vna_nodename, FALSE);
6870 if (indx == (size_t) -1)
6871 return FALSE;
6872 a->vna_name = indx;
6873 if (a->vna_nextptr == NULL)
6874 a->vna_next = 0;
6875 else
6876 a->vna_next = sizeof (Elf_External_Vernaux);
6877
6878 _bfd_elf_swap_vernaux_out (output_bfd, a,
6879 (Elf_External_Vernaux *) p);
6880 p += sizeof (Elf_External_Vernaux);
6881 }
6882 }
6883
6884 elf_tdata (output_bfd)->cverrefs = crefs;
6885 }
6886 }
6887
6888 /* Any syms created from now on start with -1 in
6889 got.refcount/offset and plt.refcount/offset. */
6890 elf_hash_table (info)->init_got_refcount
6891 = elf_hash_table (info)->init_got_offset;
6892 elf_hash_table (info)->init_plt_refcount
6893 = elf_hash_table (info)->init_plt_offset;
6894
6895 if (bfd_link_relocatable (info)
6896 && !_bfd_elf_size_group_sections (info))
6897 return FALSE;
6898
6899 /* The backend may have to create some sections regardless of whether
6900 we're dynamic or not. */
6901 if (bed->elf_backend_always_size_sections
6902 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
6903 return FALSE;
6904
6905 /* Determine any GNU_STACK segment requirements, after the backend
6906 has had a chance to set a default segment size. */
6907 if (info->execstack)
6908 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
6909 else if (info->noexecstack)
6910 elf_stack_flags (output_bfd) = PF_R | PF_W;
6911 else
6912 {
6913 bfd *inputobj;
6914 asection *notesec = NULL;
6915 int exec = 0;
6916
6917 for (inputobj = info->input_bfds;
6918 inputobj;
6919 inputobj = inputobj->link.next)
6920 {
6921 asection *s;
6922
6923 if (inputobj->flags
6924 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
6925 continue;
6926 s = inputobj->sections;
6927 if (s == NULL || s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
6928 continue;
6929
6930 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
6931 if (s)
6932 {
6933 if (s->flags & SEC_CODE)
6934 exec = PF_X;
6935 notesec = s;
6936 }
6937 else if (bed->default_execstack)
6938 exec = PF_X;
6939 }
6940 if (notesec || info->stacksize > 0)
6941 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
6942 if (notesec && exec && bfd_link_relocatable (info)
6943 && notesec->output_section != bfd_abs_section_ptr)
6944 notesec->output_section->flags |= SEC_CODE;
6945 }
6946
6947 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6948 {
6949 struct elf_info_failed eif;
6950 struct elf_link_hash_entry *h;
6951 asection *dynstr;
6952 asection *s;
6953
6954 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
6955 BFD_ASSERT (*sinterpptr != NULL || !bfd_link_executable (info) || info->nointerp);
6956
6957 if (info->symbolic)
6958 {
6959 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
6960 return FALSE;
6961 info->flags |= DF_SYMBOLIC;
6962 }
6963
6964 if (rpath != NULL)
6965 {
6966 size_t indx;
6967 bfd_vma tag;
6968
6969 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
6970 TRUE);
6971 if (indx == (size_t) -1)
6972 return FALSE;
6973
6974 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
6975 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
6976 return FALSE;
6977 }
6978
6979 if (filter_shlib != NULL)
6980 {
6981 size_t indx;
6982
6983 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6984 filter_shlib, TRUE);
6985 if (indx == (size_t) -1
6986 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
6987 return FALSE;
6988 }
6989
6990 if (auxiliary_filters != NULL)
6991 {
6992 const char * const *p;
6993
6994 for (p = auxiliary_filters; *p != NULL; p++)
6995 {
6996 size_t indx;
6997
6998 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6999 *p, TRUE);
7000 if (indx == (size_t) -1
7001 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
7002 return FALSE;
7003 }
7004 }
7005
7006 if (audit != NULL)
7007 {
7008 size_t indx;
7009
7010 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
7011 TRUE);
7012 if (indx == (size_t) -1
7013 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
7014 return FALSE;
7015 }
7016
7017 if (depaudit != NULL)
7018 {
7019 size_t indx;
7020
7021 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
7022 TRUE);
7023 if (indx == (size_t) -1
7024 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
7025 return FALSE;
7026 }
7027
7028 eif.info = info;
7029 eif.failed = FALSE;
7030
7031 /* Find all symbols which were defined in a dynamic object and make
7032 the backend pick a reasonable value for them. */
7033 elf_link_hash_traverse (elf_hash_table (info),
7034 _bfd_elf_adjust_dynamic_symbol,
7035 &eif);
7036 if (eif.failed)
7037 return FALSE;
7038
7039 /* Add some entries to the .dynamic section. We fill in some of the
7040 values later, in bfd_elf_final_link, but we must add the entries
7041 now so that we know the final size of the .dynamic section. */
7042
7043 /* If there are initialization and/or finalization functions to
7044 call then add the corresponding DT_INIT/DT_FINI entries. */
7045 h = (info->init_function
7046 ? elf_link_hash_lookup (elf_hash_table (info),
7047 info->init_function, FALSE,
7048 FALSE, FALSE)
7049 : NULL);
7050 if (h != NULL
7051 && (h->ref_regular
7052 || h->def_regular))
7053 {
7054 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
7055 return FALSE;
7056 }
7057 h = (info->fini_function
7058 ? elf_link_hash_lookup (elf_hash_table (info),
7059 info->fini_function, FALSE,
7060 FALSE, FALSE)
7061 : NULL);
7062 if (h != NULL
7063 && (h->ref_regular
7064 || h->def_regular))
7065 {
7066 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
7067 return FALSE;
7068 }
7069
7070 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
7071 if (s != NULL && s->linker_has_input)
7072 {
7073 /* DT_PREINIT_ARRAY is not allowed in shared library. */
7074 if (! bfd_link_executable (info))
7075 {
7076 bfd *sub;
7077 asection *o;
7078
7079 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
7080 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
7081 && (o = sub->sections) != NULL
7082 && o->sec_info_type != SEC_INFO_TYPE_JUST_SYMS)
7083 for (o = sub->sections; o != NULL; o = o->next)
7084 if (elf_section_data (o)->this_hdr.sh_type
7085 == SHT_PREINIT_ARRAY)
7086 {
7087 _bfd_error_handler
7088 (_("%pB: .preinit_array section is not allowed in DSO"),
7089 sub);
7090 break;
7091 }
7092
7093 bfd_set_error (bfd_error_nonrepresentable_section);
7094 return FALSE;
7095 }
7096
7097 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
7098 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
7099 return FALSE;
7100 }
7101 s = bfd_get_section_by_name (output_bfd, ".init_array");
7102 if (s != NULL && s->linker_has_input)
7103 {
7104 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
7105 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
7106 return FALSE;
7107 }
7108 s = bfd_get_section_by_name (output_bfd, ".fini_array");
7109 if (s != NULL && s->linker_has_input)
7110 {
7111 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
7112 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
7113 return FALSE;
7114 }
7115
7116 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
7117 /* If .dynstr is excluded from the link, we don't want any of
7118 these tags. Strictly, we should be checking each section
7119 individually; This quick check covers for the case where
7120 someone does a /DISCARD/ : { *(*) }. */
7121 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
7122 {
7123 bfd_size_type strsize;
7124
7125 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
7126 if ((info->emit_hash
7127 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
7128 || (info->emit_gnu_hash
7129 && (bed->record_xhash_symbol == NULL
7130 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0)))
7131 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
7132 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
7133 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
7134 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
7135 bed->s->sizeof_sym))
7136 return FALSE;
7137 }
7138 }
7139
7140 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
7141 return FALSE;
7142
7143 /* The backend must work out the sizes of all the other dynamic
7144 sections. */
7145 if (dynobj != NULL
7146 && bed->elf_backend_size_dynamic_sections != NULL
7147 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
7148 return FALSE;
7149
7150 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
7151 {
7152 if (elf_tdata (output_bfd)->cverdefs)
7153 {
7154 unsigned int crefs = elf_tdata (output_bfd)->cverdefs;
7155
7156 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
7157 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, crefs))
7158 return FALSE;
7159 }
7160
7161 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
7162 {
7163 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
7164 return FALSE;
7165 }
7166 else if (info->flags & DF_BIND_NOW)
7167 {
7168 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
7169 return FALSE;
7170 }
7171
7172 if (info->flags_1)
7173 {
7174 if (bfd_link_executable (info))
7175 info->flags_1 &= ~ (DF_1_INITFIRST
7176 | DF_1_NODELETE
7177 | DF_1_NOOPEN);
7178 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
7179 return FALSE;
7180 }
7181
7182 if (elf_tdata (output_bfd)->cverrefs)
7183 {
7184 unsigned int crefs = elf_tdata (output_bfd)->cverrefs;
7185
7186 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
7187 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
7188 return FALSE;
7189 }
7190
7191 if ((elf_tdata (output_bfd)->cverrefs == 0
7192 && elf_tdata (output_bfd)->cverdefs == 0)
7193 || _bfd_elf_link_renumber_dynsyms (output_bfd, info, NULL) <= 1)
7194 {
7195 asection *s;
7196
7197 s = bfd_get_linker_section (dynobj, ".gnu.version");
7198 s->flags |= SEC_EXCLUDE;
7199 }
7200 }
7201 return TRUE;
7202 }
7203
7204 /* Find the first non-excluded output section. We'll use its
7205 section symbol for some emitted relocs. */
7206 void
7207 _bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
7208 {
7209 asection *s;
7210 asection *found = NULL;
7211
7212 for (s = output_bfd->sections; s != NULL; s = s->next)
7213 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
7214 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
7215 {
7216 found = s;
7217 if ((s->flags & SEC_THREAD_LOCAL) == 0)
7218 break;
7219 }
7220 elf_hash_table (info)->text_index_section = found;
7221 }
7222
7223 /* Find two non-excluded output sections, one for code, one for data.
7224 We'll use their section symbols for some emitted relocs. */
7225 void
7226 _bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
7227 {
7228 asection *s;
7229 asection *found = NULL;
7230
7231 /* Data first, since setting text_index_section changes
7232 _bfd_elf_omit_section_dynsym_default. */
7233 for (s = output_bfd->sections; s != NULL; s = s->next)
7234 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
7235 && !(s->flags & SEC_READONLY)
7236 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
7237 {
7238 found = s;
7239 if ((s->flags & SEC_THREAD_LOCAL) == 0)
7240 break;
7241 }
7242 elf_hash_table (info)->data_index_section = found;
7243
7244 for (s = output_bfd->sections; s != NULL; s = s->next)
7245 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
7246 && (s->flags & SEC_READONLY)
7247 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
7248 {
7249 found = s;
7250 break;
7251 }
7252 elf_hash_table (info)->text_index_section = found;
7253 }
7254
7255 #define GNU_HASH_SECTION_NAME(bed) \
7256 (bed)->record_xhash_symbol != NULL ? ".MIPS.xhash" : ".gnu.hash"
7257
7258 bfd_boolean
7259 bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
7260 {
7261 const struct elf_backend_data *bed;
7262 unsigned long section_sym_count;
7263 bfd_size_type dynsymcount = 0;
7264
7265 if (!is_elf_hash_table (info->hash))
7266 return TRUE;
7267
7268 bed = get_elf_backend_data (output_bfd);
7269 (*bed->elf_backend_init_index_section) (output_bfd, info);
7270
7271 /* Assign dynsym indices. In a shared library we generate a section
7272 symbol for each output section, which come first. Next come all
7273 of the back-end allocated local dynamic syms, followed by the rest
7274 of the global symbols.
7275
7276 This is usually not needed for static binaries, however backends
7277 can request to always do it, e.g. the MIPS backend uses dynamic
7278 symbol counts to lay out GOT, which will be produced in the
7279 presence of GOT relocations even in static binaries (holding fixed
7280 data in that case, to satisfy those relocations). */
7281
7282 if (elf_hash_table (info)->dynamic_sections_created
7283 || bed->always_renumber_dynsyms)
7284 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
7285 &section_sym_count);
7286
7287 if (elf_hash_table (info)->dynamic_sections_created)
7288 {
7289 bfd *dynobj;
7290 asection *s;
7291 unsigned int dtagcount;
7292
7293 dynobj = elf_hash_table (info)->dynobj;
7294
7295 /* Work out the size of the symbol version section. */
7296 s = bfd_get_linker_section (dynobj, ".gnu.version");
7297 BFD_ASSERT (s != NULL);
7298 if ((s->flags & SEC_EXCLUDE) == 0)
7299 {
7300 s->size = dynsymcount * sizeof (Elf_External_Versym);
7301 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
7302 if (s->contents == NULL)
7303 return FALSE;
7304
7305 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
7306 return FALSE;
7307 }
7308
7309 /* Set the size of the .dynsym and .hash sections. We counted
7310 the number of dynamic symbols in elf_link_add_object_symbols.
7311 We will build the contents of .dynsym and .hash when we build
7312 the final symbol table, because until then we do not know the
7313 correct value to give the symbols. We built the .dynstr
7314 section as we went along in elf_link_add_object_symbols. */
7315 s = elf_hash_table (info)->dynsym;
7316 BFD_ASSERT (s != NULL);
7317 s->size = dynsymcount * bed->s->sizeof_sym;
7318
7319 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
7320 if (s->contents == NULL)
7321 return FALSE;
7322
7323 /* The first entry in .dynsym is a dummy symbol. Clear all the
7324 section syms, in case we don't output them all. */
7325 ++section_sym_count;
7326 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
7327
7328 elf_hash_table (info)->bucketcount = 0;
7329
7330 /* Compute the size of the hashing table. As a side effect this
7331 computes the hash values for all the names we export. */
7332 if (info->emit_hash)
7333 {
7334 unsigned long int *hashcodes;
7335 struct hash_codes_info hashinf;
7336 bfd_size_type amt;
7337 unsigned long int nsyms;
7338 size_t bucketcount;
7339 size_t hash_entry_size;
7340
7341 /* Compute the hash values for all exported symbols. At the same
7342 time store the values in an array so that we could use them for
7343 optimizations. */
7344 amt = dynsymcount * sizeof (unsigned long int);
7345 hashcodes = (unsigned long int *) bfd_malloc (amt);
7346 if (hashcodes == NULL)
7347 return FALSE;
7348 hashinf.hashcodes = hashcodes;
7349 hashinf.error = FALSE;
7350
7351 /* Put all hash values in HASHCODES. */
7352 elf_link_hash_traverse (elf_hash_table (info),
7353 elf_collect_hash_codes, &hashinf);
7354 if (hashinf.error)
7355 {
7356 free (hashcodes);
7357 return FALSE;
7358 }
7359
7360 nsyms = hashinf.hashcodes - hashcodes;
7361 bucketcount
7362 = compute_bucket_count (info, hashcodes, nsyms, 0);
7363 free (hashcodes);
7364
7365 if (bucketcount == 0 && nsyms > 0)
7366 return FALSE;
7367
7368 elf_hash_table (info)->bucketcount = bucketcount;
7369
7370 s = bfd_get_linker_section (dynobj, ".hash");
7371 BFD_ASSERT (s != NULL);
7372 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
7373 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
7374 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
7375 if (s->contents == NULL)
7376 return FALSE;
7377
7378 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
7379 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
7380 s->contents + hash_entry_size);
7381 }
7382
7383 if (info->emit_gnu_hash)
7384 {
7385 size_t i, cnt;
7386 unsigned char *contents;
7387 struct collect_gnu_hash_codes cinfo;
7388 bfd_size_type amt;
7389 size_t bucketcount;
7390
7391 memset (&cinfo, 0, sizeof (cinfo));
7392
7393 /* Compute the hash values for all exported symbols. At the same
7394 time store the values in an array so that we could use them for
7395 optimizations. */
7396 amt = dynsymcount * 2 * sizeof (unsigned long int);
7397 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
7398 if (cinfo.hashcodes == NULL)
7399 return FALSE;
7400
7401 cinfo.hashval = cinfo.hashcodes + dynsymcount;
7402 cinfo.min_dynindx = -1;
7403 cinfo.output_bfd = output_bfd;
7404 cinfo.bed = bed;
7405
7406 /* Put all hash values in HASHCODES. */
7407 elf_link_hash_traverse (elf_hash_table (info),
7408 elf_collect_gnu_hash_codes, &cinfo);
7409 if (cinfo.error)
7410 {
7411 free (cinfo.hashcodes);
7412 return FALSE;
7413 }
7414
7415 bucketcount
7416 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
7417
7418 if (bucketcount == 0)
7419 {
7420 free (cinfo.hashcodes);
7421 return FALSE;
7422 }
7423
7424 s = bfd_get_linker_section (dynobj, GNU_HASH_SECTION_NAME (bed));
7425 BFD_ASSERT (s != NULL);
7426
7427 if (cinfo.nsyms == 0)
7428 {
7429 /* Empty .gnu.hash or .MIPS.xhash section is special. */
7430 BFD_ASSERT (cinfo.min_dynindx == -1);
7431 free (cinfo.hashcodes);
7432 s->size = 5 * 4 + bed->s->arch_size / 8;
7433 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
7434 if (contents == NULL)
7435 return FALSE;
7436 s->contents = contents;
7437 /* 1 empty bucket. */
7438 bfd_put_32 (output_bfd, 1, contents);
7439 /* SYMIDX above the special symbol 0. */
7440 bfd_put_32 (output_bfd, 1, contents + 4);
7441 /* Just one word for bitmask. */
7442 bfd_put_32 (output_bfd, 1, contents + 8);
7443 /* Only hash fn bloom filter. */
7444 bfd_put_32 (output_bfd, 0, contents + 12);
7445 /* No hashes are valid - empty bitmask. */
7446 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
7447 /* No hashes in the only bucket. */
7448 bfd_put_32 (output_bfd, 0,
7449 contents + 16 + bed->s->arch_size / 8);
7450 }
7451 else
7452 {
7453 unsigned long int maskwords, maskbitslog2, x;
7454 BFD_ASSERT (cinfo.min_dynindx != -1);
7455
7456 x = cinfo.nsyms;
7457 maskbitslog2 = 1;
7458 while ((x >>= 1) != 0)
7459 ++maskbitslog2;
7460 if (maskbitslog2 < 3)
7461 maskbitslog2 = 5;
7462 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
7463 maskbitslog2 = maskbitslog2 + 3;
7464 else
7465 maskbitslog2 = maskbitslog2 + 2;
7466 if (bed->s->arch_size == 64)
7467 {
7468 if (maskbitslog2 == 5)
7469 maskbitslog2 = 6;
7470 cinfo.shift1 = 6;
7471 }
7472 else
7473 cinfo.shift1 = 5;
7474 cinfo.mask = (1 << cinfo.shift1) - 1;
7475 cinfo.shift2 = maskbitslog2;
7476 cinfo.maskbits = 1 << maskbitslog2;
7477 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
7478 amt = bucketcount * sizeof (unsigned long int) * 2;
7479 amt += maskwords * sizeof (bfd_vma);
7480 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
7481 if (cinfo.bitmask == NULL)
7482 {
7483 free (cinfo.hashcodes);
7484 return FALSE;
7485 }
7486
7487 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
7488 cinfo.indx = cinfo.counts + bucketcount;
7489 cinfo.symindx = dynsymcount - cinfo.nsyms;
7490 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
7491
7492 /* Determine how often each hash bucket is used. */
7493 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
7494 for (i = 0; i < cinfo.nsyms; ++i)
7495 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
7496
7497 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
7498 if (cinfo.counts[i] != 0)
7499 {
7500 cinfo.indx[i] = cnt;
7501 cnt += cinfo.counts[i];
7502 }
7503 BFD_ASSERT (cnt == dynsymcount);
7504 cinfo.bucketcount = bucketcount;
7505 cinfo.local_indx = cinfo.min_dynindx;
7506
7507 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
7508 s->size += cinfo.maskbits / 8;
7509 if (bed->record_xhash_symbol != NULL)
7510 s->size += cinfo.nsyms * 4;
7511 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
7512 if (contents == NULL)
7513 {
7514 free (cinfo.bitmask);
7515 free (cinfo.hashcodes);
7516 return FALSE;
7517 }
7518
7519 s->contents = contents;
7520 bfd_put_32 (output_bfd, bucketcount, contents);
7521 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
7522 bfd_put_32 (output_bfd, maskwords, contents + 8);
7523 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
7524 contents += 16 + cinfo.maskbits / 8;
7525
7526 for (i = 0; i < bucketcount; ++i)
7527 {
7528 if (cinfo.counts[i] == 0)
7529 bfd_put_32 (output_bfd, 0, contents);
7530 else
7531 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
7532 contents += 4;
7533 }
7534
7535 cinfo.contents = contents;
7536
7537 cinfo.xlat = contents + cinfo.nsyms * 4 - s->contents;
7538 /* Renumber dynamic symbols, if populating .gnu.hash section.
7539 If using .MIPS.xhash, populate the translation table. */
7540 elf_link_hash_traverse (elf_hash_table (info),
7541 elf_gnu_hash_process_symidx, &cinfo);
7542
7543 contents = s->contents + 16;
7544 for (i = 0; i < maskwords; ++i)
7545 {
7546 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
7547 contents);
7548 contents += bed->s->arch_size / 8;
7549 }
7550
7551 free (cinfo.bitmask);
7552 free (cinfo.hashcodes);
7553 }
7554 }
7555
7556 s = bfd_get_linker_section (dynobj, ".dynstr");
7557 BFD_ASSERT (s != NULL);
7558
7559 elf_finalize_dynstr (output_bfd, info);
7560
7561 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
7562
7563 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
7564 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
7565 return FALSE;
7566 }
7567
7568 return TRUE;
7569 }
7570 \f
7571 /* Make sure sec_info_type is cleared if sec_info is cleared too. */
7572
7573 static void
7574 merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
7575 asection *sec)
7576 {
7577 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
7578 sec->sec_info_type = SEC_INFO_TYPE_NONE;
7579 }
7580
7581 /* Finish SHF_MERGE section merging. */
7582
7583 bfd_boolean
7584 _bfd_elf_merge_sections (bfd *obfd, struct bfd_link_info *info)
7585 {
7586 bfd *ibfd;
7587 asection *sec;
7588
7589 if (!is_elf_hash_table (info->hash))
7590 return FALSE;
7591
7592 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7593 if ((ibfd->flags & DYNAMIC) == 0
7594 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
7595 && (elf_elfheader (ibfd)->e_ident[EI_CLASS]
7596 == get_elf_backend_data (obfd)->s->elfclass))
7597 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
7598 if ((sec->flags & SEC_MERGE) != 0
7599 && !bfd_is_abs_section (sec->output_section))
7600 {
7601 struct bfd_elf_section_data *secdata;
7602
7603 secdata = elf_section_data (sec);
7604 if (! _bfd_add_merge_section (obfd,
7605 &elf_hash_table (info)->merge_info,
7606 sec, &secdata->sec_info))
7607 return FALSE;
7608 else if (secdata->sec_info)
7609 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
7610 }
7611
7612 if (elf_hash_table (info)->merge_info != NULL)
7613 _bfd_merge_sections (obfd, info, elf_hash_table (info)->merge_info,
7614 merge_sections_remove_hook);
7615 return TRUE;
7616 }
7617
7618 /* Create an entry in an ELF linker hash table. */
7619
7620 struct bfd_hash_entry *
7621 _bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
7622 struct bfd_hash_table *table,
7623 const char *string)
7624 {
7625 /* Allocate the structure if it has not already been allocated by a
7626 subclass. */
7627 if (entry == NULL)
7628 {
7629 entry = (struct bfd_hash_entry *)
7630 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
7631 if (entry == NULL)
7632 return entry;
7633 }
7634
7635 /* Call the allocation method of the superclass. */
7636 entry = _bfd_link_hash_newfunc (entry, table, string);
7637 if (entry != NULL)
7638 {
7639 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
7640 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
7641
7642 /* Set local fields. */
7643 ret->indx = -1;
7644 ret->dynindx = -1;
7645 ret->got = htab->init_got_refcount;
7646 ret->plt = htab->init_plt_refcount;
7647 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
7648 - offsetof (struct elf_link_hash_entry, size)));
7649 /* Assume that we have been called by a non-ELF symbol reader.
7650 This flag is then reset by the code which reads an ELF input
7651 file. This ensures that a symbol created by a non-ELF symbol
7652 reader will have the flag set correctly. */
7653 ret->non_elf = 1;
7654 }
7655
7656 return entry;
7657 }
7658
7659 /* Copy data from an indirect symbol to its direct symbol, hiding the
7660 old indirect symbol. Also used for copying flags to a weakdef. */
7661
7662 void
7663 _bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
7664 struct elf_link_hash_entry *dir,
7665 struct elf_link_hash_entry *ind)
7666 {
7667 struct elf_link_hash_table *htab;
7668
7669 if (ind->dyn_relocs != NULL)
7670 {
7671 if (dir->dyn_relocs != NULL)
7672 {
7673 struct elf_dyn_relocs **pp;
7674 struct elf_dyn_relocs *p;
7675
7676 /* Add reloc counts against the indirect sym to the direct sym
7677 list. Merge any entries against the same section. */
7678 for (pp = &ind->dyn_relocs; (p = *pp) != NULL; )
7679 {
7680 struct elf_dyn_relocs *q;
7681
7682 for (q = dir->dyn_relocs; q != NULL; q = q->next)
7683 if (q->sec == p->sec)
7684 {
7685 q->pc_count += p->pc_count;
7686 q->count += p->count;
7687 *pp = p->next;
7688 break;
7689 }
7690 if (q == NULL)
7691 pp = &p->next;
7692 }
7693 *pp = dir->dyn_relocs;
7694 }
7695
7696 dir->dyn_relocs = ind->dyn_relocs;
7697 ind->dyn_relocs = NULL;
7698 }
7699
7700 /* Copy down any references that we may have already seen to the
7701 symbol which just became indirect. */
7702
7703 if (dir->versioned != versioned_hidden)
7704 dir->ref_dynamic |= ind->ref_dynamic;
7705 dir->ref_regular |= ind->ref_regular;
7706 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
7707 dir->non_got_ref |= ind->non_got_ref;
7708 dir->needs_plt |= ind->needs_plt;
7709 dir->pointer_equality_needed |= ind->pointer_equality_needed;
7710
7711 if (ind->root.type != bfd_link_hash_indirect)
7712 return;
7713
7714 /* Copy over the global and procedure linkage table refcount entries.
7715 These may have been already set up by a check_relocs routine. */
7716 htab = elf_hash_table (info);
7717 if (ind->got.refcount > htab->init_got_refcount.refcount)
7718 {
7719 if (dir->got.refcount < 0)
7720 dir->got.refcount = 0;
7721 dir->got.refcount += ind->got.refcount;
7722 ind->got.refcount = htab->init_got_refcount.refcount;
7723 }
7724
7725 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
7726 {
7727 if (dir->plt.refcount < 0)
7728 dir->plt.refcount = 0;
7729 dir->plt.refcount += ind->plt.refcount;
7730 ind->plt.refcount = htab->init_plt_refcount.refcount;
7731 }
7732
7733 if (ind->dynindx != -1)
7734 {
7735 if (dir->dynindx != -1)
7736 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
7737 dir->dynindx = ind->dynindx;
7738 dir->dynstr_index = ind->dynstr_index;
7739 ind->dynindx = -1;
7740 ind->dynstr_index = 0;
7741 }
7742 }
7743
7744 void
7745 _bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
7746 struct elf_link_hash_entry *h,
7747 bfd_boolean force_local)
7748 {
7749 /* STT_GNU_IFUNC symbol must go through PLT. */
7750 if (h->type != STT_GNU_IFUNC)
7751 {
7752 h->plt = elf_hash_table (info)->init_plt_offset;
7753 h->needs_plt = 0;
7754 }
7755 if (force_local)
7756 {
7757 h->forced_local = 1;
7758 if (h->dynindx != -1)
7759 {
7760 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
7761 h->dynstr_index);
7762 h->dynindx = -1;
7763 h->dynstr_index = 0;
7764 }
7765 }
7766 }
7767
7768 /* Hide a symbol. */
7769
7770 void
7771 _bfd_elf_link_hide_symbol (bfd *output_bfd,
7772 struct bfd_link_info *info,
7773 struct bfd_link_hash_entry *h)
7774 {
7775 if (is_elf_hash_table (info->hash))
7776 {
7777 const struct elf_backend_data *bed
7778 = get_elf_backend_data (output_bfd);
7779 struct elf_link_hash_entry *eh
7780 = (struct elf_link_hash_entry *) h;
7781 bed->elf_backend_hide_symbol (info, eh, TRUE);
7782 eh->def_dynamic = 0;
7783 eh->ref_dynamic = 0;
7784 eh->dynamic_def = 0;
7785 }
7786 }
7787
7788 /* Initialize an ELF linker hash table. *TABLE has been zeroed by our
7789 caller. */
7790
7791 bfd_boolean
7792 _bfd_elf_link_hash_table_init
7793 (struct elf_link_hash_table *table,
7794 bfd *abfd,
7795 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
7796 struct bfd_hash_table *,
7797 const char *),
7798 unsigned int entsize,
7799 enum elf_target_id target_id)
7800 {
7801 bfd_boolean ret;
7802 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
7803
7804 table->init_got_refcount.refcount = can_refcount - 1;
7805 table->init_plt_refcount.refcount = can_refcount - 1;
7806 table->init_got_offset.offset = -(bfd_vma) 1;
7807 table->init_plt_offset.offset = -(bfd_vma) 1;
7808 /* The first dynamic symbol is a dummy. */
7809 table->dynsymcount = 1;
7810
7811 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
7812
7813 table->root.type = bfd_link_elf_hash_table;
7814 table->hash_table_id = target_id;
7815 table->target_os = get_elf_backend_data (abfd)->target_os;
7816
7817 return ret;
7818 }
7819
7820 /* Create an ELF linker hash table. */
7821
7822 struct bfd_link_hash_table *
7823 _bfd_elf_link_hash_table_create (bfd *abfd)
7824 {
7825 struct elf_link_hash_table *ret;
7826 size_t amt = sizeof (struct elf_link_hash_table);
7827
7828 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
7829 if (ret == NULL)
7830 return NULL;
7831
7832 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
7833 sizeof (struct elf_link_hash_entry),
7834 GENERIC_ELF_DATA))
7835 {
7836 free (ret);
7837 return NULL;
7838 }
7839 ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
7840
7841 return &ret->root;
7842 }
7843
7844 /* Destroy an ELF linker hash table. */
7845
7846 void
7847 _bfd_elf_link_hash_table_free (bfd *obfd)
7848 {
7849 struct elf_link_hash_table *htab;
7850
7851 htab = (struct elf_link_hash_table *) obfd->link.hash;
7852 if (htab->dynstr != NULL)
7853 _bfd_elf_strtab_free (htab->dynstr);
7854 _bfd_merge_sections_free (htab->merge_info);
7855 _bfd_generic_link_hash_table_free (obfd);
7856 }
7857
7858 /* This is a hook for the ELF emulation code in the generic linker to
7859 tell the backend linker what file name to use for the DT_NEEDED
7860 entry for a dynamic object. */
7861
7862 void
7863 bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
7864 {
7865 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7866 && bfd_get_format (abfd) == bfd_object)
7867 elf_dt_name (abfd) = name;
7868 }
7869
7870 int
7871 bfd_elf_get_dyn_lib_class (bfd *abfd)
7872 {
7873 int lib_class;
7874 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7875 && bfd_get_format (abfd) == bfd_object)
7876 lib_class = elf_dyn_lib_class (abfd);
7877 else
7878 lib_class = 0;
7879 return lib_class;
7880 }
7881
7882 void
7883 bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
7884 {
7885 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7886 && bfd_get_format (abfd) == bfd_object)
7887 elf_dyn_lib_class (abfd) = lib_class;
7888 }
7889
7890 /* Get the list of DT_NEEDED entries for a link. This is a hook for
7891 the linker ELF emulation code. */
7892
7893 struct bfd_link_needed_list *
7894 bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
7895 struct bfd_link_info *info)
7896 {
7897 if (! is_elf_hash_table (info->hash))
7898 return NULL;
7899 return elf_hash_table (info)->needed;
7900 }
7901
7902 /* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
7903 hook for the linker ELF emulation code. */
7904
7905 struct bfd_link_needed_list *
7906 bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
7907 struct bfd_link_info *info)
7908 {
7909 if (! is_elf_hash_table (info->hash))
7910 return NULL;
7911 return elf_hash_table (info)->runpath;
7912 }
7913
7914 /* Get the name actually used for a dynamic object for a link. This
7915 is the SONAME entry if there is one. Otherwise, it is the string
7916 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
7917
7918 const char *
7919 bfd_elf_get_dt_soname (bfd *abfd)
7920 {
7921 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7922 && bfd_get_format (abfd) == bfd_object)
7923 return elf_dt_name (abfd);
7924 return NULL;
7925 }
7926
7927 /* Get the list of DT_NEEDED entries from a BFD. This is a hook for
7928 the ELF linker emulation code. */
7929
7930 bfd_boolean
7931 bfd_elf_get_bfd_needed_list (bfd *abfd,
7932 struct bfd_link_needed_list **pneeded)
7933 {
7934 asection *s;
7935 bfd_byte *dynbuf = NULL;
7936 unsigned int elfsec;
7937 unsigned long shlink;
7938 bfd_byte *extdyn, *extdynend;
7939 size_t extdynsize;
7940 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
7941
7942 *pneeded = NULL;
7943
7944 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
7945 || bfd_get_format (abfd) != bfd_object)
7946 return TRUE;
7947
7948 s = bfd_get_section_by_name (abfd, ".dynamic");
7949 if (s == NULL || s->size == 0)
7950 return TRUE;
7951
7952 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
7953 goto error_return;
7954
7955 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
7956 if (elfsec == SHN_BAD)
7957 goto error_return;
7958
7959 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
7960
7961 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7962 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7963
7964 extdyn = dynbuf;
7965 extdynend = extdyn + s->size;
7966 for (; extdyn < extdynend; extdyn += extdynsize)
7967 {
7968 Elf_Internal_Dyn dyn;
7969
7970 (*swap_dyn_in) (abfd, extdyn, &dyn);
7971
7972 if (dyn.d_tag == DT_NULL)
7973 break;
7974
7975 if (dyn.d_tag == DT_NEEDED)
7976 {
7977 const char *string;
7978 struct bfd_link_needed_list *l;
7979 unsigned int tagv = dyn.d_un.d_val;
7980 size_t amt;
7981
7982 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7983 if (string == NULL)
7984 goto error_return;
7985
7986 amt = sizeof *l;
7987 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
7988 if (l == NULL)
7989 goto error_return;
7990
7991 l->by = abfd;
7992 l->name = string;
7993 l->next = *pneeded;
7994 *pneeded = l;
7995 }
7996 }
7997
7998 free (dynbuf);
7999
8000 return TRUE;
8001
8002 error_return:
8003 free (dynbuf);
8004 return FALSE;
8005 }
8006
8007 struct elf_symbuf_symbol
8008 {
8009 unsigned long st_name; /* Symbol name, index in string tbl */
8010 unsigned char st_info; /* Type and binding attributes */
8011 unsigned char st_other; /* Visibilty, and target specific */
8012 };
8013
8014 struct elf_symbuf_head
8015 {
8016 struct elf_symbuf_symbol *ssym;
8017 size_t count;
8018 unsigned int st_shndx;
8019 };
8020
8021 struct elf_symbol
8022 {
8023 union
8024 {
8025 Elf_Internal_Sym *isym;
8026 struct elf_symbuf_symbol *ssym;
8027 void *p;
8028 } u;
8029 const char *name;
8030 };
8031
8032 /* Sort references to symbols by ascending section number. */
8033
8034 static int
8035 elf_sort_elf_symbol (const void *arg1, const void *arg2)
8036 {
8037 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
8038 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
8039
8040 if (s1->st_shndx != s2->st_shndx)
8041 return s1->st_shndx > s2->st_shndx ? 1 : -1;
8042 /* Final sort by the address of the sym in the symbuf ensures
8043 a stable sort. */
8044 if (s1 != s2)
8045 return s1 > s2 ? 1 : -1;
8046 return 0;
8047 }
8048
8049 static int
8050 elf_sym_name_compare (const void *arg1, const void *arg2)
8051 {
8052 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
8053 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
8054 int ret = strcmp (s1->name, s2->name);
8055 if (ret != 0)
8056 return ret;
8057 if (s1->u.p != s2->u.p)
8058 return s1->u.p > s2->u.p ? 1 : -1;
8059 return 0;
8060 }
8061
8062 static struct elf_symbuf_head *
8063 elf_create_symbuf (size_t symcount, Elf_Internal_Sym *isymbuf)
8064 {
8065 Elf_Internal_Sym **ind, **indbufend, **indbuf;
8066 struct elf_symbuf_symbol *ssym;
8067 struct elf_symbuf_head *ssymbuf, *ssymhead;
8068 size_t i, shndx_count, total_size, amt;
8069
8070 amt = symcount * sizeof (*indbuf);
8071 indbuf = (Elf_Internal_Sym **) bfd_malloc (amt);
8072 if (indbuf == NULL)
8073 return NULL;
8074
8075 for (ind = indbuf, i = 0; i < symcount; i++)
8076 if (isymbuf[i].st_shndx != SHN_UNDEF)
8077 *ind++ = &isymbuf[i];
8078 indbufend = ind;
8079
8080 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
8081 elf_sort_elf_symbol);
8082
8083 shndx_count = 0;
8084 if (indbufend > indbuf)
8085 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
8086 if (ind[0]->st_shndx != ind[1]->st_shndx)
8087 shndx_count++;
8088
8089 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
8090 + (indbufend - indbuf) * sizeof (*ssym));
8091 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
8092 if (ssymbuf == NULL)
8093 {
8094 free (indbuf);
8095 return NULL;
8096 }
8097
8098 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
8099 ssymbuf->ssym = NULL;
8100 ssymbuf->count = shndx_count;
8101 ssymbuf->st_shndx = 0;
8102 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
8103 {
8104 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
8105 {
8106 ssymhead++;
8107 ssymhead->ssym = ssym;
8108 ssymhead->count = 0;
8109 ssymhead->st_shndx = (*ind)->st_shndx;
8110 }
8111 ssym->st_name = (*ind)->st_name;
8112 ssym->st_info = (*ind)->st_info;
8113 ssym->st_other = (*ind)->st_other;
8114 ssymhead->count++;
8115 }
8116 BFD_ASSERT ((size_t) (ssymhead - ssymbuf) == shndx_count
8117 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
8118 == total_size));
8119
8120 free (indbuf);
8121 return ssymbuf;
8122 }
8123
8124 /* Check if 2 sections define the same set of local and global
8125 symbols. */
8126
8127 static bfd_boolean
8128 bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
8129 struct bfd_link_info *info)
8130 {
8131 bfd *bfd1, *bfd2;
8132 const struct elf_backend_data *bed1, *bed2;
8133 Elf_Internal_Shdr *hdr1, *hdr2;
8134 size_t symcount1, symcount2;
8135 Elf_Internal_Sym *isymbuf1, *isymbuf2;
8136 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
8137 Elf_Internal_Sym *isym, *isymend;
8138 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
8139 size_t count1, count2, i;
8140 unsigned int shndx1, shndx2;
8141 bfd_boolean result;
8142
8143 bfd1 = sec1->owner;
8144 bfd2 = sec2->owner;
8145
8146 /* Both sections have to be in ELF. */
8147 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
8148 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
8149 return FALSE;
8150
8151 if (elf_section_type (sec1) != elf_section_type (sec2))
8152 return FALSE;
8153
8154 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
8155 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
8156 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
8157 return FALSE;
8158
8159 bed1 = get_elf_backend_data (bfd1);
8160 bed2 = get_elf_backend_data (bfd2);
8161 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
8162 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
8163 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
8164 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
8165
8166 if (symcount1 == 0 || symcount2 == 0)
8167 return FALSE;
8168
8169 result = FALSE;
8170 isymbuf1 = NULL;
8171 isymbuf2 = NULL;
8172 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
8173 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
8174
8175 if (ssymbuf1 == NULL)
8176 {
8177 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
8178 NULL, NULL, NULL);
8179 if (isymbuf1 == NULL)
8180 goto done;
8181
8182 if (!info->reduce_memory_overheads)
8183 {
8184 ssymbuf1 = elf_create_symbuf (symcount1, isymbuf1);
8185 elf_tdata (bfd1)->symbuf = ssymbuf1;
8186 }
8187 }
8188
8189 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
8190 {
8191 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
8192 NULL, NULL, NULL);
8193 if (isymbuf2 == NULL)
8194 goto done;
8195
8196 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
8197 {
8198 ssymbuf2 = elf_create_symbuf (symcount2, isymbuf2);
8199 elf_tdata (bfd2)->symbuf = ssymbuf2;
8200 }
8201 }
8202
8203 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
8204 {
8205 /* Optimized faster version. */
8206 size_t lo, hi, mid;
8207 struct elf_symbol *symp;
8208 struct elf_symbuf_symbol *ssym, *ssymend;
8209
8210 lo = 0;
8211 hi = ssymbuf1->count;
8212 ssymbuf1++;
8213 count1 = 0;
8214 while (lo < hi)
8215 {
8216 mid = (lo + hi) / 2;
8217 if (shndx1 < ssymbuf1[mid].st_shndx)
8218 hi = mid;
8219 else if (shndx1 > ssymbuf1[mid].st_shndx)
8220 lo = mid + 1;
8221 else
8222 {
8223 count1 = ssymbuf1[mid].count;
8224 ssymbuf1 += mid;
8225 break;
8226 }
8227 }
8228
8229 lo = 0;
8230 hi = ssymbuf2->count;
8231 ssymbuf2++;
8232 count2 = 0;
8233 while (lo < hi)
8234 {
8235 mid = (lo + hi) / 2;
8236 if (shndx2 < ssymbuf2[mid].st_shndx)
8237 hi = mid;
8238 else if (shndx2 > ssymbuf2[mid].st_shndx)
8239 lo = mid + 1;
8240 else
8241 {
8242 count2 = ssymbuf2[mid].count;
8243 ssymbuf2 += mid;
8244 break;
8245 }
8246 }
8247
8248 if (count1 == 0 || count2 == 0 || count1 != count2)
8249 goto done;
8250
8251 symtable1
8252 = (struct elf_symbol *) bfd_malloc (count1 * sizeof (*symtable1));
8253 symtable2
8254 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
8255 if (symtable1 == NULL || symtable2 == NULL)
8256 goto done;
8257
8258 symp = symtable1;
8259 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
8260 ssym < ssymend; ssym++, symp++)
8261 {
8262 symp->u.ssym = ssym;
8263 symp->name = bfd_elf_string_from_elf_section (bfd1,
8264 hdr1->sh_link,
8265 ssym->st_name);
8266 }
8267
8268 symp = symtable2;
8269 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
8270 ssym < ssymend; ssym++, symp++)
8271 {
8272 symp->u.ssym = ssym;
8273 symp->name = bfd_elf_string_from_elf_section (bfd2,
8274 hdr2->sh_link,
8275 ssym->st_name);
8276 }
8277
8278 /* Sort symbol by name. */
8279 qsort (symtable1, count1, sizeof (struct elf_symbol),
8280 elf_sym_name_compare);
8281 qsort (symtable2, count1, sizeof (struct elf_symbol),
8282 elf_sym_name_compare);
8283
8284 for (i = 0; i < count1; i++)
8285 /* Two symbols must have the same binding, type and name. */
8286 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
8287 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
8288 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8289 goto done;
8290
8291 result = TRUE;
8292 goto done;
8293 }
8294
8295 symtable1 = (struct elf_symbol *)
8296 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
8297 symtable2 = (struct elf_symbol *)
8298 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
8299 if (symtable1 == NULL || symtable2 == NULL)
8300 goto done;
8301
8302 /* Count definitions in the section. */
8303 count1 = 0;
8304 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
8305 if (isym->st_shndx == shndx1)
8306 symtable1[count1++].u.isym = isym;
8307
8308 count2 = 0;
8309 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
8310 if (isym->st_shndx == shndx2)
8311 symtable2[count2++].u.isym = isym;
8312
8313 if (count1 == 0 || count2 == 0 || count1 != count2)
8314 goto done;
8315
8316 for (i = 0; i < count1; i++)
8317 symtable1[i].name
8318 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
8319 symtable1[i].u.isym->st_name);
8320
8321 for (i = 0; i < count2; i++)
8322 symtable2[i].name
8323 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
8324 symtable2[i].u.isym->st_name);
8325
8326 /* Sort symbol by name. */
8327 qsort (symtable1, count1, sizeof (struct elf_symbol),
8328 elf_sym_name_compare);
8329 qsort (symtable2, count1, sizeof (struct elf_symbol),
8330 elf_sym_name_compare);
8331
8332 for (i = 0; i < count1; i++)
8333 /* Two symbols must have the same binding, type and name. */
8334 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
8335 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
8336 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8337 goto done;
8338
8339 result = TRUE;
8340
8341 done:
8342 free (symtable1);
8343 free (symtable2);
8344 free (isymbuf1);
8345 free (isymbuf2);
8346
8347 return result;
8348 }
8349
8350 /* Return TRUE if 2 section types are compatible. */
8351
8352 bfd_boolean
8353 _bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
8354 bfd *bbfd, const asection *bsec)
8355 {
8356 if (asec == NULL
8357 || bsec == NULL
8358 || abfd->xvec->flavour != bfd_target_elf_flavour
8359 || bbfd->xvec->flavour != bfd_target_elf_flavour)
8360 return TRUE;
8361
8362 return elf_section_type (asec) == elf_section_type (bsec);
8363 }
8364 \f
8365 /* Final phase of ELF linker. */
8366
8367 /* A structure we use to avoid passing large numbers of arguments. */
8368
8369 struct elf_final_link_info
8370 {
8371 /* General link information. */
8372 struct bfd_link_info *info;
8373 /* Output BFD. */
8374 bfd *output_bfd;
8375 /* Symbol string table. */
8376 struct elf_strtab_hash *symstrtab;
8377 /* .hash section. */
8378 asection *hash_sec;
8379 /* symbol version section (.gnu.version). */
8380 asection *symver_sec;
8381 /* Buffer large enough to hold contents of any section. */
8382 bfd_byte *contents;
8383 /* Buffer large enough to hold external relocs of any section. */
8384 void *external_relocs;
8385 /* Buffer large enough to hold internal relocs of any section. */
8386 Elf_Internal_Rela *internal_relocs;
8387 /* Buffer large enough to hold external local symbols of any input
8388 BFD. */
8389 bfd_byte *external_syms;
8390 /* And a buffer for symbol section indices. */
8391 Elf_External_Sym_Shndx *locsym_shndx;
8392 /* Buffer large enough to hold internal local symbols of any input
8393 BFD. */
8394 Elf_Internal_Sym *internal_syms;
8395 /* Array large enough to hold a symbol index for each local symbol
8396 of any input BFD. */
8397 long *indices;
8398 /* Array large enough to hold a section pointer for each local
8399 symbol of any input BFD. */
8400 asection **sections;
8401 /* Buffer for SHT_SYMTAB_SHNDX section. */
8402 Elf_External_Sym_Shndx *symshndxbuf;
8403 /* Number of STT_FILE syms seen. */
8404 size_t filesym_count;
8405 };
8406
8407 /* This struct is used to pass information to elf_link_output_extsym. */
8408
8409 struct elf_outext_info
8410 {
8411 bfd_boolean failed;
8412 bfd_boolean localsyms;
8413 bfd_boolean file_sym_done;
8414 struct elf_final_link_info *flinfo;
8415 };
8416
8417
8418 /* Support for evaluating a complex relocation.
8419
8420 Complex relocations are generalized, self-describing relocations. The
8421 implementation of them consists of two parts: complex symbols, and the
8422 relocations themselves.
8423
8424 The relocations are use a reserved elf-wide relocation type code (R_RELC
8425 external / BFD_RELOC_RELC internal) and an encoding of relocation field
8426 information (start bit, end bit, word width, etc) into the addend. This
8427 information is extracted from CGEN-generated operand tables within gas.
8428
8429 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
8430 internal) representing prefix-notation expressions, including but not
8431 limited to those sorts of expressions normally encoded as addends in the
8432 addend field. The symbol mangling format is:
8433
8434 <node> := <literal>
8435 | <unary-operator> ':' <node>
8436 | <binary-operator> ':' <node> ':' <node>
8437 ;
8438
8439 <literal> := 's' <digits=N> ':' <N character symbol name>
8440 | 'S' <digits=N> ':' <N character section name>
8441 | '#' <hexdigits>
8442 ;
8443
8444 <binary-operator> := as in C
8445 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
8446
8447 static void
8448 set_symbol_value (bfd *bfd_with_globals,
8449 Elf_Internal_Sym *isymbuf,
8450 size_t locsymcount,
8451 size_t symidx,
8452 bfd_vma val)
8453 {
8454 struct elf_link_hash_entry **sym_hashes;
8455 struct elf_link_hash_entry *h;
8456 size_t extsymoff = locsymcount;
8457
8458 if (symidx < locsymcount)
8459 {
8460 Elf_Internal_Sym *sym;
8461
8462 sym = isymbuf + symidx;
8463 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
8464 {
8465 /* It is a local symbol: move it to the
8466 "absolute" section and give it a value. */
8467 sym->st_shndx = SHN_ABS;
8468 sym->st_value = val;
8469 return;
8470 }
8471 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
8472 extsymoff = 0;
8473 }
8474
8475 /* It is a global symbol: set its link type
8476 to "defined" and give it a value. */
8477
8478 sym_hashes = elf_sym_hashes (bfd_with_globals);
8479 h = sym_hashes [symidx - extsymoff];
8480 while (h->root.type == bfd_link_hash_indirect
8481 || h->root.type == bfd_link_hash_warning)
8482 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8483 h->root.type = bfd_link_hash_defined;
8484 h->root.u.def.value = val;
8485 h->root.u.def.section = bfd_abs_section_ptr;
8486 }
8487
8488 static bfd_boolean
8489 resolve_symbol (const char *name,
8490 bfd *input_bfd,
8491 struct elf_final_link_info *flinfo,
8492 bfd_vma *result,
8493 Elf_Internal_Sym *isymbuf,
8494 size_t locsymcount)
8495 {
8496 Elf_Internal_Sym *sym;
8497 struct bfd_link_hash_entry *global_entry;
8498 const char *candidate = NULL;
8499 Elf_Internal_Shdr *symtab_hdr;
8500 size_t i;
8501
8502 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
8503
8504 for (i = 0; i < locsymcount; ++ i)
8505 {
8506 sym = isymbuf + i;
8507
8508 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
8509 continue;
8510
8511 candidate = bfd_elf_string_from_elf_section (input_bfd,
8512 symtab_hdr->sh_link,
8513 sym->st_name);
8514 #ifdef DEBUG
8515 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
8516 name, candidate, (unsigned long) sym->st_value);
8517 #endif
8518 if (candidate && strcmp (candidate, name) == 0)
8519 {
8520 asection *sec = flinfo->sections [i];
8521
8522 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
8523 *result += sec->output_offset + sec->output_section->vma;
8524 #ifdef DEBUG
8525 printf ("Found symbol with value %8.8lx\n",
8526 (unsigned long) *result);
8527 #endif
8528 return TRUE;
8529 }
8530 }
8531
8532 /* Hmm, haven't found it yet. perhaps it is a global. */
8533 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
8534 FALSE, FALSE, TRUE);
8535 if (!global_entry)
8536 return FALSE;
8537
8538 if (global_entry->type == bfd_link_hash_defined
8539 || global_entry->type == bfd_link_hash_defweak)
8540 {
8541 *result = (global_entry->u.def.value
8542 + global_entry->u.def.section->output_section->vma
8543 + global_entry->u.def.section->output_offset);
8544 #ifdef DEBUG
8545 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
8546 global_entry->root.string, (unsigned long) *result);
8547 #endif
8548 return TRUE;
8549 }
8550
8551 return FALSE;
8552 }
8553
8554 /* Looks up NAME in SECTIONS. If found sets RESULT to NAME's address (in
8555 bytes) and returns TRUE, otherwise returns FALSE. Accepts pseudo-section
8556 names like "foo.end" which is the end address of section "foo". */
8557
8558 static bfd_boolean
8559 resolve_section (const char *name,
8560 asection *sections,
8561 bfd_vma *result,
8562 bfd * abfd)
8563 {
8564 asection *curr;
8565 unsigned int len;
8566
8567 for (curr = sections; curr; curr = curr->next)
8568 if (strcmp (curr->name, name) == 0)
8569 {
8570 *result = curr->vma;
8571 return TRUE;
8572 }
8573
8574 /* Hmm. still haven't found it. try pseudo-section names. */
8575 /* FIXME: This could be coded more efficiently... */
8576 for (curr = sections; curr; curr = curr->next)
8577 {
8578 len = strlen (curr->name);
8579 if (len > strlen (name))
8580 continue;
8581
8582 if (strncmp (curr->name, name, len) == 0)
8583 {
8584 if (strncmp (".end", name + len, 4) == 0)
8585 {
8586 *result = (curr->vma
8587 + curr->size / bfd_octets_per_byte (abfd, curr));
8588 return TRUE;
8589 }
8590
8591 /* Insert more pseudo-section names here, if you like. */
8592 }
8593 }
8594
8595 return FALSE;
8596 }
8597
8598 static void
8599 undefined_reference (const char *reftype, const char *name)
8600 {
8601 /* xgettext:c-format */
8602 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
8603 reftype, name);
8604 }
8605
8606 static bfd_boolean
8607 eval_symbol (bfd_vma *result,
8608 const char **symp,
8609 bfd *input_bfd,
8610 struct elf_final_link_info *flinfo,
8611 bfd_vma dot,
8612 Elf_Internal_Sym *isymbuf,
8613 size_t locsymcount,
8614 int signed_p)
8615 {
8616 size_t len;
8617 size_t symlen;
8618 bfd_vma a;
8619 bfd_vma b;
8620 char symbuf[4096];
8621 const char *sym = *symp;
8622 const char *symend;
8623 bfd_boolean symbol_is_section = FALSE;
8624
8625 len = strlen (sym);
8626 symend = sym + len;
8627
8628 if (len < 1 || len > sizeof (symbuf))
8629 {
8630 bfd_set_error (bfd_error_invalid_operation);
8631 return FALSE;
8632 }
8633
8634 switch (* sym)
8635 {
8636 case '.':
8637 *result = dot;
8638 *symp = sym + 1;
8639 return TRUE;
8640
8641 case '#':
8642 ++sym;
8643 *result = strtoul (sym, (char **) symp, 16);
8644 return TRUE;
8645
8646 case 'S':
8647 symbol_is_section = TRUE;
8648 /* Fall through. */
8649 case 's':
8650 ++sym;
8651 symlen = strtol (sym, (char **) symp, 10);
8652 sym = *symp + 1; /* Skip the trailing ':'. */
8653
8654 if (symend < sym || symlen + 1 > sizeof (symbuf))
8655 {
8656 bfd_set_error (bfd_error_invalid_operation);
8657 return FALSE;
8658 }
8659
8660 memcpy (symbuf, sym, symlen);
8661 symbuf[symlen] = '\0';
8662 *symp = sym + symlen;
8663
8664 /* Is it always possible, with complex symbols, that gas "mis-guessed"
8665 the symbol as a section, or vice-versa. so we're pretty liberal in our
8666 interpretation here; section means "try section first", not "must be a
8667 section", and likewise with symbol. */
8668
8669 if (symbol_is_section)
8670 {
8671 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result, input_bfd)
8672 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
8673 isymbuf, locsymcount))
8674 {
8675 undefined_reference ("section", symbuf);
8676 return FALSE;
8677 }
8678 }
8679 else
8680 {
8681 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
8682 isymbuf, locsymcount)
8683 && !resolve_section (symbuf, flinfo->output_bfd->sections,
8684 result, input_bfd))
8685 {
8686 undefined_reference ("symbol", symbuf);
8687 return FALSE;
8688 }
8689 }
8690
8691 return TRUE;
8692
8693 /* All that remains are operators. */
8694
8695 #define UNARY_OP(op) \
8696 if (strncmp (sym, #op, strlen (#op)) == 0) \
8697 { \
8698 sym += strlen (#op); \
8699 if (*sym == ':') \
8700 ++sym; \
8701 *symp = sym; \
8702 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
8703 isymbuf, locsymcount, signed_p)) \
8704 return FALSE; \
8705 if (signed_p) \
8706 *result = op ((bfd_signed_vma) a); \
8707 else \
8708 *result = op a; \
8709 return TRUE; \
8710 }
8711
8712 #define BINARY_OP(op) \
8713 if (strncmp (sym, #op, strlen (#op)) == 0) \
8714 { \
8715 sym += strlen (#op); \
8716 if (*sym == ':') \
8717 ++sym; \
8718 *symp = sym; \
8719 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
8720 isymbuf, locsymcount, signed_p)) \
8721 return FALSE; \
8722 ++*symp; \
8723 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
8724 isymbuf, locsymcount, signed_p)) \
8725 return FALSE; \
8726 if (signed_p) \
8727 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
8728 else \
8729 *result = a op b; \
8730 return TRUE; \
8731 }
8732
8733 default:
8734 UNARY_OP (0-);
8735 BINARY_OP (<<);
8736 BINARY_OP (>>);
8737 BINARY_OP (==);
8738 BINARY_OP (!=);
8739 BINARY_OP (<=);
8740 BINARY_OP (>=);
8741 BINARY_OP (&&);
8742 BINARY_OP (||);
8743 UNARY_OP (~);
8744 UNARY_OP (!);
8745 BINARY_OP (*);
8746 BINARY_OP (/);
8747 BINARY_OP (%);
8748 BINARY_OP (^);
8749 BINARY_OP (|);
8750 BINARY_OP (&);
8751 BINARY_OP (+);
8752 BINARY_OP (-);
8753 BINARY_OP (<);
8754 BINARY_OP (>);
8755 #undef UNARY_OP
8756 #undef BINARY_OP
8757 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
8758 bfd_set_error (bfd_error_invalid_operation);
8759 return FALSE;
8760 }
8761 }
8762
8763 static void
8764 put_value (bfd_vma size,
8765 unsigned long chunksz,
8766 bfd *input_bfd,
8767 bfd_vma x,
8768 bfd_byte *location)
8769 {
8770 location += (size - chunksz);
8771
8772 for (; size; size -= chunksz, location -= chunksz)
8773 {
8774 switch (chunksz)
8775 {
8776 case 1:
8777 bfd_put_8 (input_bfd, x, location);
8778 x >>= 8;
8779 break;
8780 case 2:
8781 bfd_put_16 (input_bfd, x, location);
8782 x >>= 16;
8783 break;
8784 case 4:
8785 bfd_put_32 (input_bfd, x, location);
8786 /* Computed this way because x >>= 32 is undefined if x is a 32-bit value. */
8787 x >>= 16;
8788 x >>= 16;
8789 break;
8790 #ifdef BFD64
8791 case 8:
8792 bfd_put_64 (input_bfd, x, location);
8793 /* Computed this way because x >>= 64 is undefined if x is a 64-bit value. */
8794 x >>= 32;
8795 x >>= 32;
8796 break;
8797 #endif
8798 default:
8799 abort ();
8800 break;
8801 }
8802 }
8803 }
8804
8805 static bfd_vma
8806 get_value (bfd_vma size,
8807 unsigned long chunksz,
8808 bfd *input_bfd,
8809 bfd_byte *location)
8810 {
8811 int shift;
8812 bfd_vma x = 0;
8813
8814 /* Sanity checks. */
8815 BFD_ASSERT (chunksz <= sizeof (x)
8816 && size >= chunksz
8817 && chunksz != 0
8818 && (size % chunksz) == 0
8819 && input_bfd != NULL
8820 && location != NULL);
8821
8822 if (chunksz == sizeof (x))
8823 {
8824 BFD_ASSERT (size == chunksz);
8825
8826 /* Make sure that we do not perform an undefined shift operation.
8827 We know that size == chunksz so there will only be one iteration
8828 of the loop below. */
8829 shift = 0;
8830 }
8831 else
8832 shift = 8 * chunksz;
8833
8834 for (; size; size -= chunksz, location += chunksz)
8835 {
8836 switch (chunksz)
8837 {
8838 case 1:
8839 x = (x << shift) | bfd_get_8 (input_bfd, location);
8840 break;
8841 case 2:
8842 x = (x << shift) | bfd_get_16 (input_bfd, location);
8843 break;
8844 case 4:
8845 x = (x << shift) | bfd_get_32 (input_bfd, location);
8846 break;
8847 #ifdef BFD64
8848 case 8:
8849 x = (x << shift) | bfd_get_64 (input_bfd, location);
8850 break;
8851 #endif
8852 default:
8853 abort ();
8854 }
8855 }
8856 return x;
8857 }
8858
8859 static void
8860 decode_complex_addend (unsigned long *start, /* in bits */
8861 unsigned long *oplen, /* in bits */
8862 unsigned long *len, /* in bits */
8863 unsigned long *wordsz, /* in bytes */
8864 unsigned long *chunksz, /* in bytes */
8865 unsigned long *lsb0_p,
8866 unsigned long *signed_p,
8867 unsigned long *trunc_p,
8868 unsigned long encoded)
8869 {
8870 * start = encoded & 0x3F;
8871 * len = (encoded >> 6) & 0x3F;
8872 * oplen = (encoded >> 12) & 0x3F;
8873 * wordsz = (encoded >> 18) & 0xF;
8874 * chunksz = (encoded >> 22) & 0xF;
8875 * lsb0_p = (encoded >> 27) & 1;
8876 * signed_p = (encoded >> 28) & 1;
8877 * trunc_p = (encoded >> 29) & 1;
8878 }
8879
8880 bfd_reloc_status_type
8881 bfd_elf_perform_complex_relocation (bfd *input_bfd,
8882 asection *input_section,
8883 bfd_byte *contents,
8884 Elf_Internal_Rela *rel,
8885 bfd_vma relocation)
8886 {
8887 bfd_vma shift, x, mask;
8888 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
8889 bfd_reloc_status_type r;
8890 bfd_size_type octets;
8891
8892 /* Perform this reloc, since it is complex.
8893 (this is not to say that it necessarily refers to a complex
8894 symbol; merely that it is a self-describing CGEN based reloc.
8895 i.e. the addend has the complete reloc information (bit start, end,
8896 word size, etc) encoded within it.). */
8897
8898 decode_complex_addend (&start, &oplen, &len, &wordsz,
8899 &chunksz, &lsb0_p, &signed_p,
8900 &trunc_p, rel->r_addend);
8901
8902 mask = (((1L << (len - 1)) - 1) << 1) | 1;
8903
8904 if (lsb0_p)
8905 shift = (start + 1) - len;
8906 else
8907 shift = (8 * wordsz) - (start + len);
8908
8909 octets = rel->r_offset * bfd_octets_per_byte (input_bfd, input_section);
8910 x = get_value (wordsz, chunksz, input_bfd, contents + octets);
8911
8912 #ifdef DEBUG
8913 printf ("Doing complex reloc: "
8914 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
8915 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
8916 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
8917 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
8918 oplen, (unsigned long) x, (unsigned long) mask,
8919 (unsigned long) relocation);
8920 #endif
8921
8922 r = bfd_reloc_ok;
8923 if (! trunc_p)
8924 /* Now do an overflow check. */
8925 r = bfd_check_overflow ((signed_p
8926 ? complain_overflow_signed
8927 : complain_overflow_unsigned),
8928 len, 0, (8 * wordsz),
8929 relocation);
8930
8931 /* Do the deed. */
8932 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
8933
8934 #ifdef DEBUG
8935 printf (" relocation: %8.8lx\n"
8936 " shifted mask: %8.8lx\n"
8937 " shifted/masked reloc: %8.8lx\n"
8938 " result: %8.8lx\n",
8939 (unsigned long) relocation, (unsigned long) (mask << shift),
8940 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
8941 #endif
8942 put_value (wordsz, chunksz, input_bfd, x, contents + octets);
8943 return r;
8944 }
8945
8946 /* Functions to read r_offset from external (target order) reloc
8947 entry. Faster than bfd_getl32 et al, because we let the compiler
8948 know the value is aligned. */
8949
8950 static bfd_vma
8951 ext32l_r_offset (const void *p)
8952 {
8953 union aligned32
8954 {
8955 uint32_t v;
8956 unsigned char c[4];
8957 };
8958 const union aligned32 *a
8959 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
8960
8961 uint32_t aval = ( (uint32_t) a->c[0]
8962 | (uint32_t) a->c[1] << 8
8963 | (uint32_t) a->c[2] << 16
8964 | (uint32_t) a->c[3] << 24);
8965 return aval;
8966 }
8967
8968 static bfd_vma
8969 ext32b_r_offset (const void *p)
8970 {
8971 union aligned32
8972 {
8973 uint32_t v;
8974 unsigned char c[4];
8975 };
8976 const union aligned32 *a
8977 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
8978
8979 uint32_t aval = ( (uint32_t) a->c[0] << 24
8980 | (uint32_t) a->c[1] << 16
8981 | (uint32_t) a->c[2] << 8
8982 | (uint32_t) a->c[3]);
8983 return aval;
8984 }
8985
8986 #ifdef BFD_HOST_64_BIT
8987 static bfd_vma
8988 ext64l_r_offset (const void *p)
8989 {
8990 union aligned64
8991 {
8992 uint64_t v;
8993 unsigned char c[8];
8994 };
8995 const union aligned64 *a
8996 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
8997
8998 uint64_t aval = ( (uint64_t) a->c[0]
8999 | (uint64_t) a->c[1] << 8
9000 | (uint64_t) a->c[2] << 16
9001 | (uint64_t) a->c[3] << 24
9002 | (uint64_t) a->c[4] << 32
9003 | (uint64_t) a->c[5] << 40
9004 | (uint64_t) a->c[6] << 48
9005 | (uint64_t) a->c[7] << 56);
9006 return aval;
9007 }
9008
9009 static bfd_vma
9010 ext64b_r_offset (const void *p)
9011 {
9012 union aligned64
9013 {
9014 uint64_t v;
9015 unsigned char c[8];
9016 };
9017 const union aligned64 *a
9018 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
9019
9020 uint64_t aval = ( (uint64_t) a->c[0] << 56
9021 | (uint64_t) a->c[1] << 48
9022 | (uint64_t) a->c[2] << 40
9023 | (uint64_t) a->c[3] << 32
9024 | (uint64_t) a->c[4] << 24
9025 | (uint64_t) a->c[5] << 16
9026 | (uint64_t) a->c[6] << 8
9027 | (uint64_t) a->c[7]);
9028 return aval;
9029 }
9030 #endif
9031
9032 /* When performing a relocatable link, the input relocations are
9033 preserved. But, if they reference global symbols, the indices
9034 referenced must be updated. Update all the relocations found in
9035 RELDATA. */
9036
9037 static bfd_boolean
9038 elf_link_adjust_relocs (bfd *abfd,
9039 asection *sec,
9040 struct bfd_elf_section_reloc_data *reldata,
9041 bfd_boolean sort,
9042 struct bfd_link_info *info)
9043 {
9044 unsigned int i;
9045 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9046 bfd_byte *erela;
9047 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
9048 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
9049 bfd_vma r_type_mask;
9050 int r_sym_shift;
9051 unsigned int count = reldata->count;
9052 struct elf_link_hash_entry **rel_hash = reldata->hashes;
9053
9054 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
9055 {
9056 swap_in = bed->s->swap_reloc_in;
9057 swap_out = bed->s->swap_reloc_out;
9058 }
9059 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
9060 {
9061 swap_in = bed->s->swap_reloca_in;
9062 swap_out = bed->s->swap_reloca_out;
9063 }
9064 else
9065 abort ();
9066
9067 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
9068 abort ();
9069
9070 if (bed->s->arch_size == 32)
9071 {
9072 r_type_mask = 0xff;
9073 r_sym_shift = 8;
9074 }
9075 else
9076 {
9077 r_type_mask = 0xffffffff;
9078 r_sym_shift = 32;
9079 }
9080
9081 erela = reldata->hdr->contents;
9082 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
9083 {
9084 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
9085 unsigned int j;
9086
9087 if (*rel_hash == NULL)
9088 continue;
9089
9090 if ((*rel_hash)->indx == -2
9091 && info->gc_sections
9092 && ! info->gc_keep_exported)
9093 {
9094 /* PR 21524: Let the user know if a symbol was removed by garbage collection. */
9095 _bfd_error_handler (_("%pB:%pA: error: relocation references symbol %s which was removed by garbage collection"),
9096 abfd, sec,
9097 (*rel_hash)->root.root.string);
9098 _bfd_error_handler (_("%pB:%pA: error: try relinking with --gc-keep-exported enabled"),
9099 abfd, sec);
9100 bfd_set_error (bfd_error_invalid_operation);
9101 return FALSE;
9102 }
9103 BFD_ASSERT ((*rel_hash)->indx >= 0);
9104
9105 (*swap_in) (abfd, erela, irela);
9106 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
9107 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
9108 | (irela[j].r_info & r_type_mask));
9109 (*swap_out) (abfd, irela, erela);
9110 }
9111
9112 if (bed->elf_backend_update_relocs)
9113 (*bed->elf_backend_update_relocs) (sec, reldata);
9114
9115 if (sort && count != 0)
9116 {
9117 bfd_vma (*ext_r_off) (const void *);
9118 bfd_vma r_off;
9119 size_t elt_size;
9120 bfd_byte *base, *end, *p, *loc;
9121 bfd_byte *buf = NULL;
9122
9123 if (bed->s->arch_size == 32)
9124 {
9125 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
9126 ext_r_off = ext32l_r_offset;
9127 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
9128 ext_r_off = ext32b_r_offset;
9129 else
9130 abort ();
9131 }
9132 else
9133 {
9134 #ifdef BFD_HOST_64_BIT
9135 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
9136 ext_r_off = ext64l_r_offset;
9137 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
9138 ext_r_off = ext64b_r_offset;
9139 else
9140 #endif
9141 abort ();
9142 }
9143
9144 /* Must use a stable sort here. A modified insertion sort,
9145 since the relocs are mostly sorted already. */
9146 elt_size = reldata->hdr->sh_entsize;
9147 base = reldata->hdr->contents;
9148 end = base + count * elt_size;
9149 if (elt_size > sizeof (Elf64_External_Rela))
9150 abort ();
9151
9152 /* Ensure the first element is lowest. This acts as a sentinel,
9153 speeding the main loop below. */
9154 r_off = (*ext_r_off) (base);
9155 for (p = loc = base; (p += elt_size) < end; )
9156 {
9157 bfd_vma r_off2 = (*ext_r_off) (p);
9158 if (r_off > r_off2)
9159 {
9160 r_off = r_off2;
9161 loc = p;
9162 }
9163 }
9164 if (loc != base)
9165 {
9166 /* Don't just swap *base and *loc as that changes the order
9167 of the original base[0] and base[1] if they happen to
9168 have the same r_offset. */
9169 bfd_byte onebuf[sizeof (Elf64_External_Rela)];
9170 memcpy (onebuf, loc, elt_size);
9171 memmove (base + elt_size, base, loc - base);
9172 memcpy (base, onebuf, elt_size);
9173 }
9174
9175 for (p = base + elt_size; (p += elt_size) < end; )
9176 {
9177 /* base to p is sorted, *p is next to insert. */
9178 r_off = (*ext_r_off) (p);
9179 /* Search the sorted region for location to insert. */
9180 loc = p - elt_size;
9181 while (r_off < (*ext_r_off) (loc))
9182 loc -= elt_size;
9183 loc += elt_size;
9184 if (loc != p)
9185 {
9186 /* Chances are there is a run of relocs to insert here,
9187 from one of more input files. Files are not always
9188 linked in order due to the way elf_link_input_bfd is
9189 called. See pr17666. */
9190 size_t sortlen = p - loc;
9191 bfd_vma r_off2 = (*ext_r_off) (loc);
9192 size_t runlen = elt_size;
9193 size_t buf_size = 96 * 1024;
9194 while (p + runlen < end
9195 && (sortlen <= buf_size
9196 || runlen + elt_size <= buf_size)
9197 && r_off2 > (*ext_r_off) (p + runlen))
9198 runlen += elt_size;
9199 if (buf == NULL)
9200 {
9201 buf = bfd_malloc (buf_size);
9202 if (buf == NULL)
9203 return FALSE;
9204 }
9205 if (runlen < sortlen)
9206 {
9207 memcpy (buf, p, runlen);
9208 memmove (loc + runlen, loc, sortlen);
9209 memcpy (loc, buf, runlen);
9210 }
9211 else
9212 {
9213 memcpy (buf, loc, sortlen);
9214 memmove (loc, p, runlen);
9215 memcpy (loc + runlen, buf, sortlen);
9216 }
9217 p += runlen - elt_size;
9218 }
9219 }
9220 /* Hashes are no longer valid. */
9221 free (reldata->hashes);
9222 reldata->hashes = NULL;
9223 free (buf);
9224 }
9225 return TRUE;
9226 }
9227
9228 struct elf_link_sort_rela
9229 {
9230 union {
9231 bfd_vma offset;
9232 bfd_vma sym_mask;
9233 } u;
9234 enum elf_reloc_type_class type;
9235 /* We use this as an array of size int_rels_per_ext_rel. */
9236 Elf_Internal_Rela rela[1];
9237 };
9238
9239 /* qsort stability here and for cmp2 is only an issue if multiple
9240 dynamic relocations are emitted at the same address. But targets
9241 that apply a series of dynamic relocations each operating on the
9242 result of the prior relocation can't use -z combreloc as
9243 implemented anyway. Such schemes tend to be broken by sorting on
9244 symbol index. That leaves dynamic NONE relocs as the only other
9245 case where ld might emit multiple relocs at the same address, and
9246 those are only emitted due to target bugs. */
9247
9248 static int
9249 elf_link_sort_cmp1 (const void *A, const void *B)
9250 {
9251 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
9252 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
9253 int relativea, relativeb;
9254
9255 relativea = a->type == reloc_class_relative;
9256 relativeb = b->type == reloc_class_relative;
9257
9258 if (relativea < relativeb)
9259 return 1;
9260 if (relativea > relativeb)
9261 return -1;
9262 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
9263 return -1;
9264 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
9265 return 1;
9266 if (a->rela->r_offset < b->rela->r_offset)
9267 return -1;
9268 if (a->rela->r_offset > b->rela->r_offset)
9269 return 1;
9270 return 0;
9271 }
9272
9273 static int
9274 elf_link_sort_cmp2 (const void *A, const void *B)
9275 {
9276 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
9277 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
9278
9279 if (a->type < b->type)
9280 return -1;
9281 if (a->type > b->type)
9282 return 1;
9283 if (a->u.offset < b->u.offset)
9284 return -1;
9285 if (a->u.offset > b->u.offset)
9286 return 1;
9287 if (a->rela->r_offset < b->rela->r_offset)
9288 return -1;
9289 if (a->rela->r_offset > b->rela->r_offset)
9290 return 1;
9291 return 0;
9292 }
9293
9294 static size_t
9295 elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
9296 {
9297 asection *dynamic_relocs;
9298 asection *rela_dyn;
9299 asection *rel_dyn;
9300 bfd_size_type count, size;
9301 size_t i, ret, sort_elt, ext_size;
9302 bfd_byte *sort, *s_non_relative, *p;
9303 struct elf_link_sort_rela *sq;
9304 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9305 int i2e = bed->s->int_rels_per_ext_rel;
9306 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
9307 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
9308 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
9309 struct bfd_link_order *lo;
9310 bfd_vma r_sym_mask;
9311 bfd_boolean use_rela;
9312
9313 /* Find a dynamic reloc section. */
9314 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
9315 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
9316 if (rela_dyn != NULL && rela_dyn->size > 0
9317 && rel_dyn != NULL && rel_dyn->size > 0)
9318 {
9319 bfd_boolean use_rela_initialised = FALSE;
9320
9321 /* This is just here to stop gcc from complaining.
9322 Its initialization checking code is not perfect. */
9323 use_rela = TRUE;
9324
9325 /* Both sections are present. Examine the sizes
9326 of the indirect sections to help us choose. */
9327 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
9328 if (lo->type == bfd_indirect_link_order)
9329 {
9330 asection *o = lo->u.indirect.section;
9331
9332 if ((o->size % bed->s->sizeof_rela) == 0)
9333 {
9334 if ((o->size % bed->s->sizeof_rel) == 0)
9335 /* Section size is divisible by both rel and rela sizes.
9336 It is of no help to us. */
9337 ;
9338 else
9339 {
9340 /* Section size is only divisible by rela. */
9341 if (use_rela_initialised && !use_rela)
9342 {
9343 _bfd_error_handler (_("%pB: unable to sort relocs - "
9344 "they are in more than one size"),
9345 abfd);
9346 bfd_set_error (bfd_error_invalid_operation);
9347 return 0;
9348 }
9349 else
9350 {
9351 use_rela = TRUE;
9352 use_rela_initialised = TRUE;
9353 }
9354 }
9355 }
9356 else if ((o->size % bed->s->sizeof_rel) == 0)
9357 {
9358 /* Section size is only divisible by rel. */
9359 if (use_rela_initialised && use_rela)
9360 {
9361 _bfd_error_handler (_("%pB: unable to sort relocs - "
9362 "they are in more than one size"),
9363 abfd);
9364 bfd_set_error (bfd_error_invalid_operation);
9365 return 0;
9366 }
9367 else
9368 {
9369 use_rela = FALSE;
9370 use_rela_initialised = TRUE;
9371 }
9372 }
9373 else
9374 {
9375 /* The section size is not divisible by either -
9376 something is wrong. */
9377 _bfd_error_handler (_("%pB: unable to sort relocs - "
9378 "they are of an unknown size"), abfd);
9379 bfd_set_error (bfd_error_invalid_operation);
9380 return 0;
9381 }
9382 }
9383
9384 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
9385 if (lo->type == bfd_indirect_link_order)
9386 {
9387 asection *o = lo->u.indirect.section;
9388
9389 if ((o->size % bed->s->sizeof_rela) == 0)
9390 {
9391 if ((o->size % bed->s->sizeof_rel) == 0)
9392 /* Section size is divisible by both rel and rela sizes.
9393 It is of no help to us. */
9394 ;
9395 else
9396 {
9397 /* Section size is only divisible by rela. */
9398 if (use_rela_initialised && !use_rela)
9399 {
9400 _bfd_error_handler (_("%pB: unable to sort relocs - "
9401 "they are in more than one size"),
9402 abfd);
9403 bfd_set_error (bfd_error_invalid_operation);
9404 return 0;
9405 }
9406 else
9407 {
9408 use_rela = TRUE;
9409 use_rela_initialised = TRUE;
9410 }
9411 }
9412 }
9413 else if ((o->size % bed->s->sizeof_rel) == 0)
9414 {
9415 /* Section size is only divisible by rel. */
9416 if (use_rela_initialised && use_rela)
9417 {
9418 _bfd_error_handler (_("%pB: unable to sort relocs - "
9419 "they are in more than one size"),
9420 abfd);
9421 bfd_set_error (bfd_error_invalid_operation);
9422 return 0;
9423 }
9424 else
9425 {
9426 use_rela = FALSE;
9427 use_rela_initialised = TRUE;
9428 }
9429 }
9430 else
9431 {
9432 /* The section size is not divisible by either -
9433 something is wrong. */
9434 _bfd_error_handler (_("%pB: unable to sort relocs - "
9435 "they are of an unknown size"), abfd);
9436 bfd_set_error (bfd_error_invalid_operation);
9437 return 0;
9438 }
9439 }
9440
9441 if (! use_rela_initialised)
9442 /* Make a guess. */
9443 use_rela = TRUE;
9444 }
9445 else if (rela_dyn != NULL && rela_dyn->size > 0)
9446 use_rela = TRUE;
9447 else if (rel_dyn != NULL && rel_dyn->size > 0)
9448 use_rela = FALSE;
9449 else
9450 return 0;
9451
9452 if (use_rela)
9453 {
9454 dynamic_relocs = rela_dyn;
9455 ext_size = bed->s->sizeof_rela;
9456 swap_in = bed->s->swap_reloca_in;
9457 swap_out = bed->s->swap_reloca_out;
9458 }
9459 else
9460 {
9461 dynamic_relocs = rel_dyn;
9462 ext_size = bed->s->sizeof_rel;
9463 swap_in = bed->s->swap_reloc_in;
9464 swap_out = bed->s->swap_reloc_out;
9465 }
9466
9467 size = 0;
9468 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
9469 if (lo->type == bfd_indirect_link_order)
9470 size += lo->u.indirect.section->size;
9471
9472 if (size != dynamic_relocs->size)
9473 return 0;
9474
9475 sort_elt = (sizeof (struct elf_link_sort_rela)
9476 + (i2e - 1) * sizeof (Elf_Internal_Rela));
9477
9478 count = dynamic_relocs->size / ext_size;
9479 if (count == 0)
9480 return 0;
9481 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
9482
9483 if (sort == NULL)
9484 {
9485 (*info->callbacks->warning)
9486 (info, _("not enough memory to sort relocations"), 0, abfd, 0, 0);
9487 return 0;
9488 }
9489
9490 if (bed->s->arch_size == 32)
9491 r_sym_mask = ~(bfd_vma) 0xff;
9492 else
9493 r_sym_mask = ~(bfd_vma) 0xffffffff;
9494
9495 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
9496 if (lo->type == bfd_indirect_link_order)
9497 {
9498 bfd_byte *erel, *erelend;
9499 asection *o = lo->u.indirect.section;
9500
9501 if (o->contents == NULL && o->size != 0)
9502 {
9503 /* This is a reloc section that is being handled as a normal
9504 section. See bfd_section_from_shdr. We can't combine
9505 relocs in this case. */
9506 free (sort);
9507 return 0;
9508 }
9509 erel = o->contents;
9510 erelend = o->contents + o->size;
9511 p = sort + o->output_offset * opb / ext_size * sort_elt;
9512
9513 while (erel < erelend)
9514 {
9515 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9516
9517 (*swap_in) (abfd, erel, s->rela);
9518 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
9519 s->u.sym_mask = r_sym_mask;
9520 p += sort_elt;
9521 erel += ext_size;
9522 }
9523 }
9524
9525 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
9526
9527 for (i = 0, p = sort; i < count; i++, p += sort_elt)
9528 {
9529 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9530 if (s->type != reloc_class_relative)
9531 break;
9532 }
9533 ret = i;
9534 s_non_relative = p;
9535
9536 sq = (struct elf_link_sort_rela *) s_non_relative;
9537 for (; i < count; i++, p += sort_elt)
9538 {
9539 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
9540 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
9541 sq = sp;
9542 sp->u.offset = sq->rela->r_offset;
9543 }
9544
9545 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
9546
9547 struct elf_link_hash_table *htab = elf_hash_table (info);
9548 if (htab->srelplt && htab->srelplt->output_section == dynamic_relocs)
9549 {
9550 /* We have plt relocs in .rela.dyn. */
9551 sq = (struct elf_link_sort_rela *) sort;
9552 for (i = 0; i < count; i++)
9553 if (sq[count - i - 1].type != reloc_class_plt)
9554 break;
9555 if (i != 0 && htab->srelplt->size == i * ext_size)
9556 {
9557 struct bfd_link_order **plo;
9558 /* Put srelplt link_order last. This is so the output_offset
9559 set in the next loop is correct for DT_JMPREL. */
9560 for (plo = &dynamic_relocs->map_head.link_order; *plo != NULL; )
9561 if ((*plo)->type == bfd_indirect_link_order
9562 && (*plo)->u.indirect.section == htab->srelplt)
9563 {
9564 lo = *plo;
9565 *plo = lo->next;
9566 }
9567 else
9568 plo = &(*plo)->next;
9569 *plo = lo;
9570 lo->next = NULL;
9571 dynamic_relocs->map_tail.link_order = lo;
9572 }
9573 }
9574
9575 p = sort;
9576 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
9577 if (lo->type == bfd_indirect_link_order)
9578 {
9579 bfd_byte *erel, *erelend;
9580 asection *o = lo->u.indirect.section;
9581
9582 erel = o->contents;
9583 erelend = o->contents + o->size;
9584 o->output_offset = (p - sort) / sort_elt * ext_size / opb;
9585 while (erel < erelend)
9586 {
9587 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9588 (*swap_out) (abfd, s->rela, erel);
9589 p += sort_elt;
9590 erel += ext_size;
9591 }
9592 }
9593
9594 free (sort);
9595 *psec = dynamic_relocs;
9596 return ret;
9597 }
9598
9599 /* Add a symbol to the output symbol string table. */
9600
9601 static int
9602 elf_link_output_symstrtab (struct elf_final_link_info *flinfo,
9603 const char *name,
9604 Elf_Internal_Sym *elfsym,
9605 asection *input_sec,
9606 struct elf_link_hash_entry *h)
9607 {
9608 int (*output_symbol_hook)
9609 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
9610 struct elf_link_hash_entry *);
9611 struct elf_link_hash_table *hash_table;
9612 const struct elf_backend_data *bed;
9613 bfd_size_type strtabsize;
9614
9615 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9616
9617 bed = get_elf_backend_data (flinfo->output_bfd);
9618 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
9619 if (output_symbol_hook != NULL)
9620 {
9621 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
9622 if (ret != 1)
9623 return ret;
9624 }
9625
9626 if (ELF_ST_TYPE (elfsym->st_info) == STT_GNU_IFUNC)
9627 elf_tdata (flinfo->output_bfd)->has_gnu_osabi |= elf_gnu_osabi_ifunc;
9628 if (ELF_ST_BIND (elfsym->st_info) == STB_GNU_UNIQUE)
9629 elf_tdata (flinfo->output_bfd)->has_gnu_osabi |= elf_gnu_osabi_unique;
9630
9631 if (name == NULL
9632 || *name == '\0'
9633 || (input_sec->flags & SEC_EXCLUDE))
9634 elfsym->st_name = (unsigned long) -1;
9635 else
9636 {
9637 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
9638 to get the final offset for st_name. */
9639 elfsym->st_name
9640 = (unsigned long) _bfd_elf_strtab_add (flinfo->symstrtab,
9641 name, FALSE);
9642 if (elfsym->st_name == (unsigned long) -1)
9643 return 0;
9644 }
9645
9646 hash_table = elf_hash_table (flinfo->info);
9647 strtabsize = hash_table->strtabsize;
9648 if (strtabsize <= hash_table->strtabcount)
9649 {
9650 strtabsize += strtabsize;
9651 hash_table->strtabsize = strtabsize;
9652 strtabsize *= sizeof (*hash_table->strtab);
9653 hash_table->strtab
9654 = (struct elf_sym_strtab *) bfd_realloc (hash_table->strtab,
9655 strtabsize);
9656 if (hash_table->strtab == NULL)
9657 return 0;
9658 }
9659 hash_table->strtab[hash_table->strtabcount].sym = *elfsym;
9660 hash_table->strtab[hash_table->strtabcount].dest_index
9661 = hash_table->strtabcount;
9662 hash_table->strtab[hash_table->strtabcount].destshndx_index
9663 = flinfo->symshndxbuf ? bfd_get_symcount (flinfo->output_bfd) : 0;
9664
9665 flinfo->output_bfd->symcount += 1;
9666 hash_table->strtabcount += 1;
9667
9668 return 1;
9669 }
9670
9671 /* Swap symbols out to the symbol table and flush the output symbols to
9672 the file. */
9673
9674 static bfd_boolean
9675 elf_link_swap_symbols_out (struct elf_final_link_info *flinfo)
9676 {
9677 struct elf_link_hash_table *hash_table = elf_hash_table (flinfo->info);
9678 size_t amt;
9679 size_t i;
9680 const struct elf_backend_data *bed;
9681 bfd_byte *symbuf;
9682 Elf_Internal_Shdr *hdr;
9683 file_ptr pos;
9684 bfd_boolean ret;
9685
9686 if (!hash_table->strtabcount)
9687 return TRUE;
9688
9689 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9690
9691 bed = get_elf_backend_data (flinfo->output_bfd);
9692
9693 amt = bed->s->sizeof_sym * hash_table->strtabcount;
9694 symbuf = (bfd_byte *) bfd_malloc (amt);
9695 if (symbuf == NULL)
9696 return FALSE;
9697
9698 if (flinfo->symshndxbuf)
9699 {
9700 amt = sizeof (Elf_External_Sym_Shndx);
9701 amt *= bfd_get_symcount (flinfo->output_bfd);
9702 flinfo->symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
9703 if (flinfo->symshndxbuf == NULL)
9704 {
9705 free (symbuf);
9706 return FALSE;
9707 }
9708 }
9709
9710 for (i = 0; i < hash_table->strtabcount; i++)
9711 {
9712 struct elf_sym_strtab *elfsym = &hash_table->strtab[i];
9713 if (elfsym->sym.st_name == (unsigned long) -1)
9714 elfsym->sym.st_name = 0;
9715 else
9716 elfsym->sym.st_name
9717 = (unsigned long) _bfd_elf_strtab_offset (flinfo->symstrtab,
9718 elfsym->sym.st_name);
9719 bed->s->swap_symbol_out (flinfo->output_bfd, &elfsym->sym,
9720 ((bfd_byte *) symbuf
9721 + (elfsym->dest_index
9722 * bed->s->sizeof_sym)),
9723 (flinfo->symshndxbuf
9724 + elfsym->destshndx_index));
9725 }
9726
9727 /* Allow the linker to examine the strtab and symtab now they are
9728 populated. */
9729
9730 if (flinfo->info->callbacks->examine_strtab)
9731 flinfo->info->callbacks->examine_strtab (hash_table->strtab,
9732 hash_table->strtabcount,
9733 flinfo->symstrtab);
9734
9735 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
9736 pos = hdr->sh_offset + hdr->sh_size;
9737 amt = hash_table->strtabcount * bed->s->sizeof_sym;
9738 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) == 0
9739 && bfd_bwrite (symbuf, amt, flinfo->output_bfd) == amt)
9740 {
9741 hdr->sh_size += amt;
9742 ret = TRUE;
9743 }
9744 else
9745 ret = FALSE;
9746
9747 free (symbuf);
9748
9749 free (hash_table->strtab);
9750 hash_table->strtab = NULL;
9751
9752 return ret;
9753 }
9754
9755 /* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
9756
9757 static bfd_boolean
9758 check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
9759 {
9760 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
9761 && sym->st_shndx < SHN_LORESERVE)
9762 {
9763 /* The gABI doesn't support dynamic symbols in output sections
9764 beyond 64k. */
9765 _bfd_error_handler
9766 /* xgettext:c-format */
9767 (_("%pB: too many sections: %d (>= %d)"),
9768 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
9769 bfd_set_error (bfd_error_nonrepresentable_section);
9770 return FALSE;
9771 }
9772 return TRUE;
9773 }
9774
9775 /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
9776 allowing an unsatisfied unversioned symbol in the DSO to match a
9777 versioned symbol that would normally require an explicit version.
9778 We also handle the case that a DSO references a hidden symbol
9779 which may be satisfied by a versioned symbol in another DSO. */
9780
9781 static bfd_boolean
9782 elf_link_check_versioned_symbol (struct bfd_link_info *info,
9783 const struct elf_backend_data *bed,
9784 struct elf_link_hash_entry *h)
9785 {
9786 bfd *abfd;
9787 struct elf_link_loaded_list *loaded;
9788
9789 if (!is_elf_hash_table (info->hash))
9790 return FALSE;
9791
9792 /* Check indirect symbol. */
9793 while (h->root.type == bfd_link_hash_indirect)
9794 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9795
9796 switch (h->root.type)
9797 {
9798 default:
9799 abfd = NULL;
9800 break;
9801
9802 case bfd_link_hash_undefined:
9803 case bfd_link_hash_undefweak:
9804 abfd = h->root.u.undef.abfd;
9805 if (abfd == NULL
9806 || (abfd->flags & DYNAMIC) == 0
9807 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
9808 return FALSE;
9809 break;
9810
9811 case bfd_link_hash_defined:
9812 case bfd_link_hash_defweak:
9813 abfd = h->root.u.def.section->owner;
9814 break;
9815
9816 case bfd_link_hash_common:
9817 abfd = h->root.u.c.p->section->owner;
9818 break;
9819 }
9820 BFD_ASSERT (abfd != NULL);
9821
9822 for (loaded = elf_hash_table (info)->dyn_loaded;
9823 loaded != NULL;
9824 loaded = loaded->next)
9825 {
9826 bfd *input;
9827 Elf_Internal_Shdr *hdr;
9828 size_t symcount;
9829 size_t extsymcount;
9830 size_t extsymoff;
9831 Elf_Internal_Shdr *versymhdr;
9832 Elf_Internal_Sym *isym;
9833 Elf_Internal_Sym *isymend;
9834 Elf_Internal_Sym *isymbuf;
9835 Elf_External_Versym *ever;
9836 Elf_External_Versym *extversym;
9837
9838 input = loaded->abfd;
9839
9840 /* We check each DSO for a possible hidden versioned definition. */
9841 if (input == abfd
9842 || elf_dynversym (input) == 0)
9843 continue;
9844
9845 hdr = &elf_tdata (input)->dynsymtab_hdr;
9846
9847 symcount = hdr->sh_size / bed->s->sizeof_sym;
9848 if (elf_bad_symtab (input))
9849 {
9850 extsymcount = symcount;
9851 extsymoff = 0;
9852 }
9853 else
9854 {
9855 extsymcount = symcount - hdr->sh_info;
9856 extsymoff = hdr->sh_info;
9857 }
9858
9859 if (extsymcount == 0)
9860 continue;
9861
9862 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
9863 NULL, NULL, NULL);
9864 if (isymbuf == NULL)
9865 return FALSE;
9866
9867 /* Read in any version definitions. */
9868 versymhdr = &elf_tdata (input)->dynversym_hdr;
9869 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
9870 || (extversym = (Elf_External_Versym *)
9871 _bfd_malloc_and_read (input, versymhdr->sh_size,
9872 versymhdr->sh_size)) == NULL)
9873 {
9874 free (isymbuf);
9875 return FALSE;
9876 }
9877
9878 ever = extversym + extsymoff;
9879 isymend = isymbuf + extsymcount;
9880 for (isym = isymbuf; isym < isymend; isym++, ever++)
9881 {
9882 const char *name;
9883 Elf_Internal_Versym iver;
9884 unsigned short version_index;
9885
9886 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
9887 || isym->st_shndx == SHN_UNDEF)
9888 continue;
9889
9890 name = bfd_elf_string_from_elf_section (input,
9891 hdr->sh_link,
9892 isym->st_name);
9893 if (strcmp (name, h->root.root.string) != 0)
9894 continue;
9895
9896 _bfd_elf_swap_versym_in (input, ever, &iver);
9897
9898 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
9899 && !(h->def_regular
9900 && h->forced_local))
9901 {
9902 /* If we have a non-hidden versioned sym, then it should
9903 have provided a definition for the undefined sym unless
9904 it is defined in a non-shared object and forced local.
9905 */
9906 abort ();
9907 }
9908
9909 version_index = iver.vs_vers & VERSYM_VERSION;
9910 if (version_index == 1 || version_index == 2)
9911 {
9912 /* This is the base or first version. We can use it. */
9913 free (extversym);
9914 free (isymbuf);
9915 return TRUE;
9916 }
9917 }
9918
9919 free (extversym);
9920 free (isymbuf);
9921 }
9922
9923 return FALSE;
9924 }
9925
9926 /* Convert ELF common symbol TYPE. */
9927
9928 static int
9929 elf_link_convert_common_type (struct bfd_link_info *info, int type)
9930 {
9931 /* Commom symbol can only appear in relocatable link. */
9932 if (!bfd_link_relocatable (info))
9933 abort ();
9934 switch (info->elf_stt_common)
9935 {
9936 case unchanged:
9937 break;
9938 case elf_stt_common:
9939 type = STT_COMMON;
9940 break;
9941 case no_elf_stt_common:
9942 type = STT_OBJECT;
9943 break;
9944 }
9945 return type;
9946 }
9947
9948 /* Add an external symbol to the symbol table. This is called from
9949 the hash table traversal routine. When generating a shared object,
9950 we go through the symbol table twice. The first time we output
9951 anything that might have been forced to local scope in a version
9952 script. The second time we output the symbols that are still
9953 global symbols. */
9954
9955 static bfd_boolean
9956 elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
9957 {
9958 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
9959 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
9960 struct elf_final_link_info *flinfo = eoinfo->flinfo;
9961 bfd_boolean strip;
9962 Elf_Internal_Sym sym;
9963 asection *input_sec;
9964 const struct elf_backend_data *bed;
9965 long indx;
9966 int ret;
9967 unsigned int type;
9968
9969 if (h->root.type == bfd_link_hash_warning)
9970 {
9971 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9972 if (h->root.type == bfd_link_hash_new)
9973 return TRUE;
9974 }
9975
9976 /* Decide whether to output this symbol in this pass. */
9977 if (eoinfo->localsyms)
9978 {
9979 if (!h->forced_local)
9980 return TRUE;
9981 }
9982 else
9983 {
9984 if (h->forced_local)
9985 return TRUE;
9986 }
9987
9988 bed = get_elf_backend_data (flinfo->output_bfd);
9989
9990 if (h->root.type == bfd_link_hash_undefined)
9991 {
9992 /* If we have an undefined symbol reference here then it must have
9993 come from a shared library that is being linked in. (Undefined
9994 references in regular files have already been handled unless
9995 they are in unreferenced sections which are removed by garbage
9996 collection). */
9997 bfd_boolean ignore_undef = FALSE;
9998
9999 /* Some symbols may be special in that the fact that they're
10000 undefined can be safely ignored - let backend determine that. */
10001 if (bed->elf_backend_ignore_undef_symbol)
10002 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
10003
10004 /* If we are reporting errors for this situation then do so now. */
10005 if (!ignore_undef
10006 && h->ref_dynamic_nonweak
10007 && (!h->ref_regular || flinfo->info->gc_sections)
10008 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
10009 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
10010 {
10011 flinfo->info->callbacks->undefined_symbol
10012 (flinfo->info, h->root.root.string,
10013 h->ref_regular ? NULL : h->root.u.undef.abfd, NULL, 0,
10014 flinfo->info->unresolved_syms_in_shared_libs == RM_DIAGNOSE
10015 && !flinfo->info->warn_unresolved_syms);
10016 }
10017
10018 /* Strip a global symbol defined in a discarded section. */
10019 if (h->indx == -3)
10020 return TRUE;
10021 }
10022
10023 /* We should also warn if a forced local symbol is referenced from
10024 shared libraries. */
10025 if (bfd_link_executable (flinfo->info)
10026 && h->forced_local
10027 && h->ref_dynamic
10028 && h->def_regular
10029 && !h->dynamic_def
10030 && h->ref_dynamic_nonweak
10031 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
10032 {
10033 bfd *def_bfd;
10034 const char *msg;
10035 struct elf_link_hash_entry *hi = h;
10036
10037 /* Check indirect symbol. */
10038 while (hi->root.type == bfd_link_hash_indirect)
10039 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
10040
10041 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
10042 /* xgettext:c-format */
10043 msg = _("%pB: internal symbol `%s' in %pB is referenced by DSO");
10044 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
10045 /* xgettext:c-format */
10046 msg = _("%pB: hidden symbol `%s' in %pB is referenced by DSO");
10047 else
10048 /* xgettext:c-format */
10049 msg = _("%pB: local symbol `%s' in %pB is referenced by DSO");
10050 def_bfd = flinfo->output_bfd;
10051 if (hi->root.u.def.section != bfd_abs_section_ptr)
10052 def_bfd = hi->root.u.def.section->owner;
10053 _bfd_error_handler (msg, flinfo->output_bfd,
10054 h->root.root.string, def_bfd);
10055 bfd_set_error (bfd_error_bad_value);
10056 eoinfo->failed = TRUE;
10057 return FALSE;
10058 }
10059
10060 /* We don't want to output symbols that have never been mentioned by
10061 a regular file, or that we have been told to strip. However, if
10062 h->indx is set to -2, the symbol is used by a reloc and we must
10063 output it. */
10064 strip = FALSE;
10065 if (h->indx == -2)
10066 ;
10067 else if ((h->def_dynamic
10068 || h->ref_dynamic
10069 || h->root.type == bfd_link_hash_new)
10070 && !h->def_regular
10071 && !h->ref_regular)
10072 strip = TRUE;
10073 else if (flinfo->info->strip == strip_all)
10074 strip = TRUE;
10075 else if (flinfo->info->strip == strip_some
10076 && bfd_hash_lookup (flinfo->info->keep_hash,
10077 h->root.root.string, FALSE, FALSE) == NULL)
10078 strip = TRUE;
10079 else if ((h->root.type == bfd_link_hash_defined
10080 || h->root.type == bfd_link_hash_defweak)
10081 && ((flinfo->info->strip_discarded
10082 && discarded_section (h->root.u.def.section))
10083 || ((h->root.u.def.section->flags & SEC_LINKER_CREATED) == 0
10084 && h->root.u.def.section->owner != NULL
10085 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
10086 strip = TRUE;
10087 else if ((h->root.type == bfd_link_hash_undefined
10088 || h->root.type == bfd_link_hash_undefweak)
10089 && h->root.u.undef.abfd != NULL
10090 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
10091 strip = TRUE;
10092
10093 type = h->type;
10094
10095 /* If we're stripping it, and it's not a dynamic symbol, there's
10096 nothing else to do. However, if it is a forced local symbol or
10097 an ifunc symbol we need to give the backend finish_dynamic_symbol
10098 function a chance to make it dynamic. */
10099 if (strip
10100 && h->dynindx == -1
10101 && type != STT_GNU_IFUNC
10102 && !h->forced_local)
10103 return TRUE;
10104
10105 sym.st_value = 0;
10106 sym.st_size = h->size;
10107 sym.st_other = h->other;
10108 switch (h->root.type)
10109 {
10110 default:
10111 case bfd_link_hash_new:
10112 case bfd_link_hash_warning:
10113 abort ();
10114 return FALSE;
10115
10116 case bfd_link_hash_undefined:
10117 case bfd_link_hash_undefweak:
10118 input_sec = bfd_und_section_ptr;
10119 sym.st_shndx = SHN_UNDEF;
10120 break;
10121
10122 case bfd_link_hash_defined:
10123 case bfd_link_hash_defweak:
10124 {
10125 input_sec = h->root.u.def.section;
10126 if (input_sec->output_section != NULL)
10127 {
10128 sym.st_shndx =
10129 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
10130 input_sec->output_section);
10131 if (sym.st_shndx == SHN_BAD)
10132 {
10133 _bfd_error_handler
10134 /* xgettext:c-format */
10135 (_("%pB: could not find output section %pA for input section %pA"),
10136 flinfo->output_bfd, input_sec->output_section, input_sec);
10137 bfd_set_error (bfd_error_nonrepresentable_section);
10138 eoinfo->failed = TRUE;
10139 return FALSE;
10140 }
10141
10142 /* ELF symbols in relocatable files are section relative,
10143 but in nonrelocatable files they are virtual
10144 addresses. */
10145 sym.st_value = h->root.u.def.value + input_sec->output_offset;
10146 if (!bfd_link_relocatable (flinfo->info))
10147 {
10148 sym.st_value += input_sec->output_section->vma;
10149 if (h->type == STT_TLS)
10150 {
10151 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
10152 if (tls_sec != NULL)
10153 sym.st_value -= tls_sec->vma;
10154 }
10155 }
10156 }
10157 else
10158 {
10159 BFD_ASSERT (input_sec->owner == NULL
10160 || (input_sec->owner->flags & DYNAMIC) != 0);
10161 sym.st_shndx = SHN_UNDEF;
10162 input_sec = bfd_und_section_ptr;
10163 }
10164 }
10165 break;
10166
10167 case bfd_link_hash_common:
10168 input_sec = h->root.u.c.p->section;
10169 sym.st_shndx = bed->common_section_index (input_sec);
10170 sym.st_value = 1 << h->root.u.c.p->alignment_power;
10171 break;
10172
10173 case bfd_link_hash_indirect:
10174 /* These symbols are created by symbol versioning. They point
10175 to the decorated version of the name. For example, if the
10176 symbol foo@@GNU_1.2 is the default, which should be used when
10177 foo is used with no version, then we add an indirect symbol
10178 foo which points to foo@@GNU_1.2. We ignore these symbols,
10179 since the indirected symbol is already in the hash table. */
10180 return TRUE;
10181 }
10182
10183 if (type == STT_COMMON || type == STT_OBJECT)
10184 switch (h->root.type)
10185 {
10186 case bfd_link_hash_common:
10187 type = elf_link_convert_common_type (flinfo->info, type);
10188 break;
10189 case bfd_link_hash_defined:
10190 case bfd_link_hash_defweak:
10191 if (bed->common_definition (&sym))
10192 type = elf_link_convert_common_type (flinfo->info, type);
10193 else
10194 type = STT_OBJECT;
10195 break;
10196 case bfd_link_hash_undefined:
10197 case bfd_link_hash_undefweak:
10198 break;
10199 default:
10200 abort ();
10201 }
10202
10203 if (h->forced_local)
10204 {
10205 sym.st_info = ELF_ST_INFO (STB_LOCAL, type);
10206 /* Turn off visibility on local symbol. */
10207 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
10208 }
10209 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
10210 else if (h->unique_global && h->def_regular)
10211 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, type);
10212 else if (h->root.type == bfd_link_hash_undefweak
10213 || h->root.type == bfd_link_hash_defweak)
10214 sym.st_info = ELF_ST_INFO (STB_WEAK, type);
10215 else
10216 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
10217 sym.st_target_internal = h->target_internal;
10218
10219 /* Give the processor backend a chance to tweak the symbol value,
10220 and also to finish up anything that needs to be done for this
10221 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
10222 forced local syms when non-shared is due to a historical quirk.
10223 STT_GNU_IFUNC symbol must go through PLT. */
10224 if ((h->type == STT_GNU_IFUNC
10225 && h->def_regular
10226 && !bfd_link_relocatable (flinfo->info))
10227 || ((h->dynindx != -1
10228 || h->forced_local)
10229 && ((bfd_link_pic (flinfo->info)
10230 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
10231 || h->root.type != bfd_link_hash_undefweak))
10232 || !h->forced_local)
10233 && elf_hash_table (flinfo->info)->dynamic_sections_created))
10234 {
10235 if (! ((*bed->elf_backend_finish_dynamic_symbol)
10236 (flinfo->output_bfd, flinfo->info, h, &sym)))
10237 {
10238 eoinfo->failed = TRUE;
10239 return FALSE;
10240 }
10241 }
10242
10243 /* If we are marking the symbol as undefined, and there are no
10244 non-weak references to this symbol from a regular object, then
10245 mark the symbol as weak undefined; if there are non-weak
10246 references, mark the symbol as strong. We can't do this earlier,
10247 because it might not be marked as undefined until the
10248 finish_dynamic_symbol routine gets through with it. */
10249 if (sym.st_shndx == SHN_UNDEF
10250 && h->ref_regular
10251 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
10252 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
10253 {
10254 int bindtype;
10255 type = ELF_ST_TYPE (sym.st_info);
10256
10257 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
10258 if (type == STT_GNU_IFUNC)
10259 type = STT_FUNC;
10260
10261 if (h->ref_regular_nonweak)
10262 bindtype = STB_GLOBAL;
10263 else
10264 bindtype = STB_WEAK;
10265 sym.st_info = ELF_ST_INFO (bindtype, type);
10266 }
10267
10268 /* If this is a symbol defined in a dynamic library, don't use the
10269 symbol size from the dynamic library. Relinking an executable
10270 against a new library may introduce gratuitous changes in the
10271 executable's symbols if we keep the size. */
10272 if (sym.st_shndx == SHN_UNDEF
10273 && !h->def_regular
10274 && h->def_dynamic)
10275 sym.st_size = 0;
10276
10277 /* If a non-weak symbol with non-default visibility is not defined
10278 locally, it is a fatal error. */
10279 if (!bfd_link_relocatable (flinfo->info)
10280 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
10281 && ELF_ST_BIND (sym.st_info) != STB_WEAK
10282 && h->root.type == bfd_link_hash_undefined
10283 && !h->def_regular)
10284 {
10285 const char *msg;
10286
10287 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
10288 /* xgettext:c-format */
10289 msg = _("%pB: protected symbol `%s' isn't defined");
10290 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
10291 /* xgettext:c-format */
10292 msg = _("%pB: internal symbol `%s' isn't defined");
10293 else
10294 /* xgettext:c-format */
10295 msg = _("%pB: hidden symbol `%s' isn't defined");
10296 _bfd_error_handler (msg, flinfo->output_bfd, h->root.root.string);
10297 bfd_set_error (bfd_error_bad_value);
10298 eoinfo->failed = TRUE;
10299 return FALSE;
10300 }
10301
10302 /* If this symbol should be put in the .dynsym section, then put it
10303 there now. We already know the symbol index. We also fill in
10304 the entry in the .hash section. */
10305 if (h->dynindx != -1
10306 && elf_hash_table (flinfo->info)->dynamic_sections_created
10307 && elf_hash_table (flinfo->info)->dynsym != NULL
10308 && !discarded_section (elf_hash_table (flinfo->info)->dynsym))
10309 {
10310 bfd_byte *esym;
10311
10312 /* Since there is no version information in the dynamic string,
10313 if there is no version info in symbol version section, we will
10314 have a run-time problem if not linking executable, referenced
10315 by shared library, or not bound locally. */
10316 if (h->verinfo.verdef == NULL
10317 && (!bfd_link_executable (flinfo->info)
10318 || h->ref_dynamic
10319 || !h->def_regular))
10320 {
10321 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
10322
10323 if (p && p [1] != '\0')
10324 {
10325 _bfd_error_handler
10326 /* xgettext:c-format */
10327 (_("%pB: no symbol version section for versioned symbol `%s'"),
10328 flinfo->output_bfd, h->root.root.string);
10329 eoinfo->failed = TRUE;
10330 return FALSE;
10331 }
10332 }
10333
10334 sym.st_name = h->dynstr_index;
10335 esym = (elf_hash_table (flinfo->info)->dynsym->contents
10336 + h->dynindx * bed->s->sizeof_sym);
10337 if (!check_dynsym (flinfo->output_bfd, &sym))
10338 {
10339 eoinfo->failed = TRUE;
10340 return FALSE;
10341 }
10342 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
10343
10344 if (flinfo->hash_sec != NULL)
10345 {
10346 size_t hash_entry_size;
10347 bfd_byte *bucketpos;
10348 bfd_vma chain;
10349 size_t bucketcount;
10350 size_t bucket;
10351
10352 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
10353 bucket = h->u.elf_hash_value % bucketcount;
10354
10355 hash_entry_size
10356 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
10357 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
10358 + (bucket + 2) * hash_entry_size);
10359 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
10360 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
10361 bucketpos);
10362 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
10363 ((bfd_byte *) flinfo->hash_sec->contents
10364 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
10365 }
10366
10367 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
10368 {
10369 Elf_Internal_Versym iversym;
10370 Elf_External_Versym *eversym;
10371
10372 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
10373 {
10374 if (h->verinfo.verdef == NULL
10375 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
10376 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
10377 iversym.vs_vers = 0;
10378 else
10379 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
10380 }
10381 else
10382 {
10383 if (h->verinfo.vertree == NULL)
10384 iversym.vs_vers = 1;
10385 else
10386 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
10387 if (flinfo->info->create_default_symver)
10388 iversym.vs_vers++;
10389 }
10390
10391 /* Turn on VERSYM_HIDDEN only if the hidden versioned symbol is
10392 defined locally. */
10393 if (h->versioned == versioned_hidden && h->def_regular)
10394 iversym.vs_vers |= VERSYM_HIDDEN;
10395
10396 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
10397 eversym += h->dynindx;
10398 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
10399 }
10400 }
10401
10402 /* If the symbol is undefined, and we didn't output it to .dynsym,
10403 strip it from .symtab too. Obviously we can't do this for
10404 relocatable output or when needed for --emit-relocs. */
10405 else if (input_sec == bfd_und_section_ptr
10406 && h->indx != -2
10407 /* PR 22319 Do not strip global undefined symbols marked as being needed. */
10408 && (h->mark != 1 || ELF_ST_BIND (sym.st_info) != STB_GLOBAL)
10409 && !bfd_link_relocatable (flinfo->info))
10410 return TRUE;
10411
10412 /* Also strip others that we couldn't earlier due to dynamic symbol
10413 processing. */
10414 if (strip)
10415 return TRUE;
10416 if ((input_sec->flags & SEC_EXCLUDE) != 0)
10417 return TRUE;
10418
10419 /* Output a FILE symbol so that following locals are not associated
10420 with the wrong input file. We need one for forced local symbols
10421 if we've seen more than one FILE symbol or when we have exactly
10422 one FILE symbol but global symbols are present in a file other
10423 than the one with the FILE symbol. We also need one if linker
10424 defined symbols are present. In practice these conditions are
10425 always met, so just emit the FILE symbol unconditionally. */
10426 if (eoinfo->localsyms
10427 && !eoinfo->file_sym_done
10428 && eoinfo->flinfo->filesym_count != 0)
10429 {
10430 Elf_Internal_Sym fsym;
10431
10432 memset (&fsym, 0, sizeof (fsym));
10433 fsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10434 fsym.st_shndx = SHN_ABS;
10435 if (!elf_link_output_symstrtab (eoinfo->flinfo, NULL, &fsym,
10436 bfd_und_section_ptr, NULL))
10437 return FALSE;
10438
10439 eoinfo->file_sym_done = TRUE;
10440 }
10441
10442 indx = bfd_get_symcount (flinfo->output_bfd);
10443 ret = elf_link_output_symstrtab (flinfo, h->root.root.string, &sym,
10444 input_sec, h);
10445 if (ret == 0)
10446 {
10447 eoinfo->failed = TRUE;
10448 return FALSE;
10449 }
10450 else if (ret == 1)
10451 h->indx = indx;
10452 else if (h->indx == -2)
10453 abort();
10454
10455 return TRUE;
10456 }
10457
10458 /* Return TRUE if special handling is done for relocs in SEC against
10459 symbols defined in discarded sections. */
10460
10461 static bfd_boolean
10462 elf_section_ignore_discarded_relocs (asection *sec)
10463 {
10464 const struct elf_backend_data *bed;
10465
10466 switch (sec->sec_info_type)
10467 {
10468 case SEC_INFO_TYPE_STABS:
10469 case SEC_INFO_TYPE_EH_FRAME:
10470 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
10471 return TRUE;
10472 default:
10473 break;
10474 }
10475
10476 bed = get_elf_backend_data (sec->owner);
10477 if (bed->elf_backend_ignore_discarded_relocs != NULL
10478 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
10479 return TRUE;
10480
10481 return FALSE;
10482 }
10483
10484 /* Return a mask saying how ld should treat relocations in SEC against
10485 symbols defined in discarded sections. If this function returns
10486 COMPLAIN set, ld will issue a warning message. If this function
10487 returns PRETEND set, and the discarded section was link-once and the
10488 same size as the kept link-once section, ld will pretend that the
10489 symbol was actually defined in the kept section. Otherwise ld will
10490 zero the reloc (at least that is the intent, but some cooperation by
10491 the target dependent code is needed, particularly for REL targets). */
10492
10493 unsigned int
10494 _bfd_elf_default_action_discarded (asection *sec)
10495 {
10496 if (sec->flags & SEC_DEBUGGING)
10497 return PRETEND;
10498
10499 if (strcmp (".eh_frame", sec->name) == 0)
10500 return 0;
10501
10502 if (strcmp (".gcc_except_table", sec->name) == 0)
10503 return 0;
10504
10505 return COMPLAIN | PRETEND;
10506 }
10507
10508 /* Find a match between a section and a member of a section group. */
10509
10510 static asection *
10511 match_group_member (asection *sec, asection *group,
10512 struct bfd_link_info *info)
10513 {
10514 asection *first = elf_next_in_group (group);
10515 asection *s = first;
10516
10517 while (s != NULL)
10518 {
10519 if (bfd_elf_match_symbols_in_sections (s, sec, info))
10520 return s;
10521
10522 s = elf_next_in_group (s);
10523 if (s == first)
10524 break;
10525 }
10526
10527 return NULL;
10528 }
10529
10530 /* Check if the kept section of a discarded section SEC can be used
10531 to replace it. Return the replacement if it is OK. Otherwise return
10532 NULL. */
10533
10534 asection *
10535 _bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
10536 {
10537 asection *kept;
10538
10539 kept = sec->kept_section;
10540 if (kept != NULL)
10541 {
10542 if ((kept->flags & SEC_GROUP) != 0)
10543 kept = match_group_member (sec, kept, info);
10544 if (kept != NULL
10545 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
10546 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
10547 kept = NULL;
10548 sec->kept_section = kept;
10549 }
10550 return kept;
10551 }
10552
10553 /* Link an input file into the linker output file. This function
10554 handles all the sections and relocations of the input file at once.
10555 This is so that we only have to read the local symbols once, and
10556 don't have to keep them in memory. */
10557
10558 static bfd_boolean
10559 elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
10560 {
10561 int (*relocate_section)
10562 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
10563 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
10564 bfd *output_bfd;
10565 Elf_Internal_Shdr *symtab_hdr;
10566 size_t locsymcount;
10567 size_t extsymoff;
10568 Elf_Internal_Sym *isymbuf;
10569 Elf_Internal_Sym *isym;
10570 Elf_Internal_Sym *isymend;
10571 long *pindex;
10572 asection **ppsection;
10573 asection *o;
10574 const struct elf_backend_data *bed;
10575 struct elf_link_hash_entry **sym_hashes;
10576 bfd_size_type address_size;
10577 bfd_vma r_type_mask;
10578 int r_sym_shift;
10579 bfd_boolean have_file_sym = FALSE;
10580
10581 output_bfd = flinfo->output_bfd;
10582 bed = get_elf_backend_data (output_bfd);
10583 relocate_section = bed->elf_backend_relocate_section;
10584
10585 /* If this is a dynamic object, we don't want to do anything here:
10586 we don't want the local symbols, and we don't want the section
10587 contents. */
10588 if ((input_bfd->flags & DYNAMIC) != 0)
10589 return TRUE;
10590
10591 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
10592 if (elf_bad_symtab (input_bfd))
10593 {
10594 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
10595 extsymoff = 0;
10596 }
10597 else
10598 {
10599 locsymcount = symtab_hdr->sh_info;
10600 extsymoff = symtab_hdr->sh_info;
10601 }
10602
10603 /* Read the local symbols. */
10604 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
10605 if (isymbuf == NULL && locsymcount != 0)
10606 {
10607 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
10608 flinfo->internal_syms,
10609 flinfo->external_syms,
10610 flinfo->locsym_shndx);
10611 if (isymbuf == NULL)
10612 return FALSE;
10613 }
10614
10615 /* Find local symbol sections and adjust values of symbols in
10616 SEC_MERGE sections. Write out those local symbols we know are
10617 going into the output file. */
10618 isymend = isymbuf + locsymcount;
10619 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
10620 isym < isymend;
10621 isym++, pindex++, ppsection++)
10622 {
10623 asection *isec;
10624 const char *name;
10625 Elf_Internal_Sym osym;
10626 long indx;
10627 int ret;
10628
10629 *pindex = -1;
10630
10631 if (elf_bad_symtab (input_bfd))
10632 {
10633 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
10634 {
10635 *ppsection = NULL;
10636 continue;
10637 }
10638 }
10639
10640 if (isym->st_shndx == SHN_UNDEF)
10641 isec = bfd_und_section_ptr;
10642 else if (isym->st_shndx == SHN_ABS)
10643 isec = bfd_abs_section_ptr;
10644 else if (isym->st_shndx == SHN_COMMON)
10645 isec = bfd_com_section_ptr;
10646 else
10647 {
10648 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
10649 if (isec == NULL)
10650 {
10651 /* Don't attempt to output symbols with st_shnx in the
10652 reserved range other than SHN_ABS and SHN_COMMON. */
10653 isec = bfd_und_section_ptr;
10654 }
10655 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
10656 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
10657 isym->st_value =
10658 _bfd_merged_section_offset (output_bfd, &isec,
10659 elf_section_data (isec)->sec_info,
10660 isym->st_value);
10661 }
10662
10663 *ppsection = isec;
10664
10665 /* Don't output the first, undefined, symbol. In fact, don't
10666 output any undefined local symbol. */
10667 if (isec == bfd_und_section_ptr)
10668 continue;
10669
10670 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
10671 {
10672 /* We never output section symbols. Instead, we use the
10673 section symbol of the corresponding section in the output
10674 file. */
10675 continue;
10676 }
10677
10678 /* If we are stripping all symbols, we don't want to output this
10679 one. */
10680 if (flinfo->info->strip == strip_all)
10681 continue;
10682
10683 /* If we are discarding all local symbols, we don't want to
10684 output this one. If we are generating a relocatable output
10685 file, then some of the local symbols may be required by
10686 relocs; we output them below as we discover that they are
10687 needed. */
10688 if (flinfo->info->discard == discard_all)
10689 continue;
10690
10691 /* If this symbol is defined in a section which we are
10692 discarding, we don't need to keep it. */
10693 if (isym->st_shndx != SHN_UNDEF
10694 && isym->st_shndx < SHN_LORESERVE
10695 && isec->output_section == NULL
10696 && flinfo->info->non_contiguous_regions
10697 && flinfo->info->non_contiguous_regions_warnings)
10698 {
10699 _bfd_error_handler (_("warning: --enable-non-contiguous-regions "
10700 "discards section `%s' from '%s'\n"),
10701 isec->name, bfd_get_filename (isec->owner));
10702 continue;
10703 }
10704
10705 if (isym->st_shndx != SHN_UNDEF
10706 && isym->st_shndx < SHN_LORESERVE
10707 && bfd_section_removed_from_list (output_bfd,
10708 isec->output_section))
10709 continue;
10710
10711 /* Get the name of the symbol. */
10712 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
10713 isym->st_name);
10714 if (name == NULL)
10715 return FALSE;
10716
10717 /* See if we are discarding symbols with this name. */
10718 if ((flinfo->info->strip == strip_some
10719 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
10720 == NULL))
10721 || (((flinfo->info->discard == discard_sec_merge
10722 && (isec->flags & SEC_MERGE)
10723 && !bfd_link_relocatable (flinfo->info))
10724 || flinfo->info->discard == discard_l)
10725 && bfd_is_local_label_name (input_bfd, name)))
10726 continue;
10727
10728 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
10729 {
10730 if (input_bfd->lto_output)
10731 /* -flto puts a temp file name here. This means builds
10732 are not reproducible. Discard the symbol. */
10733 continue;
10734 have_file_sym = TRUE;
10735 flinfo->filesym_count += 1;
10736 }
10737 if (!have_file_sym)
10738 {
10739 /* In the absence of debug info, bfd_find_nearest_line uses
10740 FILE symbols to determine the source file for local
10741 function symbols. Provide a FILE symbol here if input
10742 files lack such, so that their symbols won't be
10743 associated with a previous input file. It's not the
10744 source file, but the best we can do. */
10745 have_file_sym = TRUE;
10746 flinfo->filesym_count += 1;
10747 memset (&osym, 0, sizeof (osym));
10748 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10749 osym.st_shndx = SHN_ABS;
10750 if (!elf_link_output_symstrtab (flinfo,
10751 (input_bfd->lto_output ? NULL
10752 : bfd_get_filename (input_bfd)),
10753 &osym, bfd_abs_section_ptr,
10754 NULL))
10755 return FALSE;
10756 }
10757
10758 osym = *isym;
10759
10760 /* Adjust the section index for the output file. */
10761 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10762 isec->output_section);
10763 if (osym.st_shndx == SHN_BAD)
10764 return FALSE;
10765
10766 /* ELF symbols in relocatable files are section relative, but
10767 in executable files they are virtual addresses. Note that
10768 this code assumes that all ELF sections have an associated
10769 BFD section with a reasonable value for output_offset; below
10770 we assume that they also have a reasonable value for
10771 output_section. Any special sections must be set up to meet
10772 these requirements. */
10773 osym.st_value += isec->output_offset;
10774 if (!bfd_link_relocatable (flinfo->info))
10775 {
10776 osym.st_value += isec->output_section->vma;
10777 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
10778 {
10779 /* STT_TLS symbols are relative to PT_TLS segment base. */
10780 if (elf_hash_table (flinfo->info)->tls_sec != NULL)
10781 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
10782 else
10783 osym.st_info = ELF_ST_INFO (ELF_ST_BIND (osym.st_info),
10784 STT_NOTYPE);
10785 }
10786 }
10787
10788 indx = bfd_get_symcount (output_bfd);
10789 ret = elf_link_output_symstrtab (flinfo, name, &osym, isec, NULL);
10790 if (ret == 0)
10791 return FALSE;
10792 else if (ret == 1)
10793 *pindex = indx;
10794 }
10795
10796 if (bed->s->arch_size == 32)
10797 {
10798 r_type_mask = 0xff;
10799 r_sym_shift = 8;
10800 address_size = 4;
10801 }
10802 else
10803 {
10804 r_type_mask = 0xffffffff;
10805 r_sym_shift = 32;
10806 address_size = 8;
10807 }
10808
10809 /* Relocate the contents of each section. */
10810 sym_hashes = elf_sym_hashes (input_bfd);
10811 for (o = input_bfd->sections; o != NULL; o = o->next)
10812 {
10813 bfd_byte *contents;
10814
10815 if (! o->linker_mark)
10816 {
10817 /* This section was omitted from the link. */
10818 continue;
10819 }
10820
10821 if (!flinfo->info->resolve_section_groups
10822 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
10823 {
10824 /* Deal with the group signature symbol. */
10825 struct bfd_elf_section_data *sec_data = elf_section_data (o);
10826 unsigned long symndx = sec_data->this_hdr.sh_info;
10827 asection *osec = o->output_section;
10828
10829 BFD_ASSERT (bfd_link_relocatable (flinfo->info));
10830 if (symndx >= locsymcount
10831 || (elf_bad_symtab (input_bfd)
10832 && flinfo->sections[symndx] == NULL))
10833 {
10834 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
10835 while (h->root.type == bfd_link_hash_indirect
10836 || h->root.type == bfd_link_hash_warning)
10837 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10838 /* Arrange for symbol to be output. */
10839 h->indx = -2;
10840 elf_section_data (osec)->this_hdr.sh_info = -2;
10841 }
10842 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
10843 {
10844 /* We'll use the output section target_index. */
10845 asection *sec = flinfo->sections[symndx]->output_section;
10846 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
10847 }
10848 else
10849 {
10850 if (flinfo->indices[symndx] == -1)
10851 {
10852 /* Otherwise output the local symbol now. */
10853 Elf_Internal_Sym sym = isymbuf[symndx];
10854 asection *sec = flinfo->sections[symndx]->output_section;
10855 const char *name;
10856 long indx;
10857 int ret;
10858
10859 name = bfd_elf_string_from_elf_section (input_bfd,
10860 symtab_hdr->sh_link,
10861 sym.st_name);
10862 if (name == NULL)
10863 return FALSE;
10864
10865 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10866 sec);
10867 if (sym.st_shndx == SHN_BAD)
10868 return FALSE;
10869
10870 sym.st_value += o->output_offset;
10871
10872 indx = bfd_get_symcount (output_bfd);
10873 ret = elf_link_output_symstrtab (flinfo, name, &sym, o,
10874 NULL);
10875 if (ret == 0)
10876 return FALSE;
10877 else if (ret == 1)
10878 flinfo->indices[symndx] = indx;
10879 else
10880 abort ();
10881 }
10882 elf_section_data (osec)->this_hdr.sh_info
10883 = flinfo->indices[symndx];
10884 }
10885 }
10886
10887 if ((o->flags & SEC_HAS_CONTENTS) == 0
10888 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
10889 continue;
10890
10891 if ((o->flags & SEC_LINKER_CREATED) != 0)
10892 {
10893 /* Section was created by _bfd_elf_link_create_dynamic_sections
10894 or somesuch. */
10895 continue;
10896 }
10897
10898 /* Get the contents of the section. They have been cached by a
10899 relaxation routine. Note that o is a section in an input
10900 file, so the contents field will not have been set by any of
10901 the routines which work on output files. */
10902 if (elf_section_data (o)->this_hdr.contents != NULL)
10903 {
10904 contents = elf_section_data (o)->this_hdr.contents;
10905 if (bed->caches_rawsize
10906 && o->rawsize != 0
10907 && o->rawsize < o->size)
10908 {
10909 memcpy (flinfo->contents, contents, o->rawsize);
10910 contents = flinfo->contents;
10911 }
10912 }
10913 else
10914 {
10915 contents = flinfo->contents;
10916 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
10917 return FALSE;
10918 }
10919
10920 if ((o->flags & SEC_RELOC) != 0)
10921 {
10922 Elf_Internal_Rela *internal_relocs;
10923 Elf_Internal_Rela *rel, *relend;
10924 int action_discarded;
10925 int ret;
10926
10927 /* Get the swapped relocs. */
10928 internal_relocs
10929 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
10930 flinfo->internal_relocs, FALSE);
10931 if (internal_relocs == NULL
10932 && o->reloc_count > 0)
10933 return FALSE;
10934
10935 /* We need to reverse-copy input .ctors/.dtors sections if
10936 they are placed in .init_array/.finit_array for output. */
10937 if (o->size > address_size
10938 && ((strncmp (o->name, ".ctors", 6) == 0
10939 && strcmp (o->output_section->name,
10940 ".init_array") == 0)
10941 || (strncmp (o->name, ".dtors", 6) == 0
10942 && strcmp (o->output_section->name,
10943 ".fini_array") == 0))
10944 && (o->name[6] == 0 || o->name[6] == '.'))
10945 {
10946 if (o->size * bed->s->int_rels_per_ext_rel
10947 != o->reloc_count * address_size)
10948 {
10949 _bfd_error_handler
10950 /* xgettext:c-format */
10951 (_("error: %pB: size of section %pA is not "
10952 "multiple of address size"),
10953 input_bfd, o);
10954 bfd_set_error (bfd_error_bad_value);
10955 return FALSE;
10956 }
10957 o->flags |= SEC_ELF_REVERSE_COPY;
10958 }
10959
10960 action_discarded = -1;
10961 if (!elf_section_ignore_discarded_relocs (o))
10962 action_discarded = (*bed->action_discarded) (o);
10963
10964 /* Run through the relocs evaluating complex reloc symbols and
10965 looking for relocs against symbols from discarded sections
10966 or section symbols from removed link-once sections.
10967 Complain about relocs against discarded sections. Zero
10968 relocs against removed link-once sections. */
10969
10970 rel = internal_relocs;
10971 relend = rel + o->reloc_count;
10972 for ( ; rel < relend; rel++)
10973 {
10974 unsigned long r_symndx = rel->r_info >> r_sym_shift;
10975 unsigned int s_type;
10976 asection **ps, *sec;
10977 struct elf_link_hash_entry *h = NULL;
10978 const char *sym_name;
10979
10980 if (r_symndx == STN_UNDEF)
10981 continue;
10982
10983 if (r_symndx >= locsymcount
10984 || (elf_bad_symtab (input_bfd)
10985 && flinfo->sections[r_symndx] == NULL))
10986 {
10987 h = sym_hashes[r_symndx - extsymoff];
10988
10989 /* Badly formatted input files can contain relocs that
10990 reference non-existant symbols. Check here so that
10991 we do not seg fault. */
10992 if (h == NULL)
10993 {
10994 _bfd_error_handler
10995 /* xgettext:c-format */
10996 (_("error: %pB contains a reloc (%#" PRIx64 ") for section %pA "
10997 "that references a non-existent global symbol"),
10998 input_bfd, (uint64_t) rel->r_info, o);
10999 bfd_set_error (bfd_error_bad_value);
11000 return FALSE;
11001 }
11002
11003 while (h->root.type == bfd_link_hash_indirect
11004 || h->root.type == bfd_link_hash_warning)
11005 h = (struct elf_link_hash_entry *) h->root.u.i.link;
11006
11007 s_type = h->type;
11008
11009 /* If a plugin symbol is referenced from a non-IR file,
11010 mark the symbol as undefined. Note that the
11011 linker may attach linker created dynamic sections
11012 to the plugin bfd. Symbols defined in linker
11013 created sections are not plugin symbols. */
11014 if ((h->root.non_ir_ref_regular
11015 || h->root.non_ir_ref_dynamic)
11016 && (h->root.type == bfd_link_hash_defined
11017 || h->root.type == bfd_link_hash_defweak)
11018 && (h->root.u.def.section->flags
11019 & SEC_LINKER_CREATED) == 0
11020 && h->root.u.def.section->owner != NULL
11021 && (h->root.u.def.section->owner->flags
11022 & BFD_PLUGIN) != 0)
11023 {
11024 h->root.type = bfd_link_hash_undefined;
11025 h->root.u.undef.abfd = h->root.u.def.section->owner;
11026 }
11027
11028 ps = NULL;
11029 if (h->root.type == bfd_link_hash_defined
11030 || h->root.type == bfd_link_hash_defweak)
11031 ps = &h->root.u.def.section;
11032
11033 sym_name = h->root.root.string;
11034 }
11035 else
11036 {
11037 Elf_Internal_Sym *sym = isymbuf + r_symndx;
11038
11039 s_type = ELF_ST_TYPE (sym->st_info);
11040 ps = &flinfo->sections[r_symndx];
11041 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
11042 sym, *ps);
11043 }
11044
11045 if ((s_type == STT_RELC || s_type == STT_SRELC)
11046 && !bfd_link_relocatable (flinfo->info))
11047 {
11048 bfd_vma val;
11049 bfd_vma dot = (rel->r_offset
11050 + o->output_offset + o->output_section->vma);
11051 #ifdef DEBUG
11052 printf ("Encountered a complex symbol!");
11053 printf (" (input_bfd %s, section %s, reloc %ld\n",
11054 bfd_get_filename (input_bfd), o->name,
11055 (long) (rel - internal_relocs));
11056 printf (" symbol: idx %8.8lx, name %s\n",
11057 r_symndx, sym_name);
11058 printf (" reloc : info %8.8lx, addr %8.8lx\n",
11059 (unsigned long) rel->r_info,
11060 (unsigned long) rel->r_offset);
11061 #endif
11062 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
11063 isymbuf, locsymcount, s_type == STT_SRELC))
11064 return FALSE;
11065
11066 /* Symbol evaluated OK. Update to absolute value. */
11067 set_symbol_value (input_bfd, isymbuf, locsymcount,
11068 r_symndx, val);
11069 continue;
11070 }
11071
11072 if (action_discarded != -1 && ps != NULL)
11073 {
11074 /* Complain if the definition comes from a
11075 discarded section. */
11076 if ((sec = *ps) != NULL && discarded_section (sec))
11077 {
11078 BFD_ASSERT (r_symndx != STN_UNDEF);
11079 if (action_discarded & COMPLAIN)
11080 (*flinfo->info->callbacks->einfo)
11081 /* xgettext:c-format */
11082 (_("%X`%s' referenced in section `%pA' of %pB: "
11083 "defined in discarded section `%pA' of %pB\n"),
11084 sym_name, o, input_bfd, sec, sec->owner);
11085
11086 /* Try to do the best we can to support buggy old
11087 versions of gcc. Pretend that the symbol is
11088 really defined in the kept linkonce section.
11089 FIXME: This is quite broken. Modifying the
11090 symbol here means we will be changing all later
11091 uses of the symbol, not just in this section. */
11092 if (action_discarded & PRETEND)
11093 {
11094 asection *kept;
11095
11096 kept = _bfd_elf_check_kept_section (sec,
11097 flinfo->info);
11098 if (kept != NULL)
11099 {
11100 *ps = kept;
11101 continue;
11102 }
11103 }
11104 }
11105 }
11106 }
11107
11108 /* Relocate the section by invoking a back end routine.
11109
11110 The back end routine is responsible for adjusting the
11111 section contents as necessary, and (if using Rela relocs
11112 and generating a relocatable output file) adjusting the
11113 reloc addend as necessary.
11114
11115 The back end routine does not have to worry about setting
11116 the reloc address or the reloc symbol index.
11117
11118 The back end routine is given a pointer to the swapped in
11119 internal symbols, and can access the hash table entries
11120 for the external symbols via elf_sym_hashes (input_bfd).
11121
11122 When generating relocatable output, the back end routine
11123 must handle STB_LOCAL/STT_SECTION symbols specially. The
11124 output symbol is going to be a section symbol
11125 corresponding to the output section, which will require
11126 the addend to be adjusted. */
11127
11128 ret = (*relocate_section) (output_bfd, flinfo->info,
11129 input_bfd, o, contents,
11130 internal_relocs,
11131 isymbuf,
11132 flinfo->sections);
11133 if (!ret)
11134 return FALSE;
11135
11136 if (ret == 2
11137 || bfd_link_relocatable (flinfo->info)
11138 || flinfo->info->emitrelocations)
11139 {
11140 Elf_Internal_Rela *irela;
11141 Elf_Internal_Rela *irelaend, *irelamid;
11142 bfd_vma last_offset;
11143 struct elf_link_hash_entry **rel_hash;
11144 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
11145 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
11146 unsigned int next_erel;
11147 bfd_boolean rela_normal;
11148 struct bfd_elf_section_data *esdi, *esdo;
11149
11150 esdi = elf_section_data (o);
11151 esdo = elf_section_data (o->output_section);
11152 rela_normal = FALSE;
11153
11154 /* Adjust the reloc addresses and symbol indices. */
11155
11156 irela = internal_relocs;
11157 irelaend = irela + o->reloc_count;
11158 rel_hash = esdo->rel.hashes + esdo->rel.count;
11159 /* We start processing the REL relocs, if any. When we reach
11160 IRELAMID in the loop, we switch to the RELA relocs. */
11161 irelamid = irela;
11162 if (esdi->rel.hdr != NULL)
11163 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
11164 * bed->s->int_rels_per_ext_rel);
11165 rel_hash_list = rel_hash;
11166 rela_hash_list = NULL;
11167 last_offset = o->output_offset;
11168 if (!bfd_link_relocatable (flinfo->info))
11169 last_offset += o->output_section->vma;
11170 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
11171 {
11172 unsigned long r_symndx;
11173 asection *sec;
11174 Elf_Internal_Sym sym;
11175
11176 if (next_erel == bed->s->int_rels_per_ext_rel)
11177 {
11178 rel_hash++;
11179 next_erel = 0;
11180 }
11181
11182 if (irela == irelamid)
11183 {
11184 rel_hash = esdo->rela.hashes + esdo->rela.count;
11185 rela_hash_list = rel_hash;
11186 rela_normal = bed->rela_normal;
11187 }
11188
11189 irela->r_offset = _bfd_elf_section_offset (output_bfd,
11190 flinfo->info, o,
11191 irela->r_offset);
11192 if (irela->r_offset >= (bfd_vma) -2)
11193 {
11194 /* This is a reloc for a deleted entry or somesuch.
11195 Turn it into an R_*_NONE reloc, at the same
11196 offset as the last reloc. elf_eh_frame.c and
11197 bfd_elf_discard_info rely on reloc offsets
11198 being ordered. */
11199 irela->r_offset = last_offset;
11200 irela->r_info = 0;
11201 irela->r_addend = 0;
11202 continue;
11203 }
11204
11205 irela->r_offset += o->output_offset;
11206
11207 /* Relocs in an executable have to be virtual addresses. */
11208 if (!bfd_link_relocatable (flinfo->info))
11209 irela->r_offset += o->output_section->vma;
11210
11211 last_offset = irela->r_offset;
11212
11213 r_symndx = irela->r_info >> r_sym_shift;
11214 if (r_symndx == STN_UNDEF)
11215 continue;
11216
11217 if (r_symndx >= locsymcount
11218 || (elf_bad_symtab (input_bfd)
11219 && flinfo->sections[r_symndx] == NULL))
11220 {
11221 struct elf_link_hash_entry *rh;
11222 unsigned long indx;
11223
11224 /* This is a reloc against a global symbol. We
11225 have not yet output all the local symbols, so
11226 we do not know the symbol index of any global
11227 symbol. We set the rel_hash entry for this
11228 reloc to point to the global hash table entry
11229 for this symbol. The symbol index is then
11230 set at the end of bfd_elf_final_link. */
11231 indx = r_symndx - extsymoff;
11232 rh = elf_sym_hashes (input_bfd)[indx];
11233 while (rh->root.type == bfd_link_hash_indirect
11234 || rh->root.type == bfd_link_hash_warning)
11235 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
11236
11237 /* Setting the index to -2 tells
11238 elf_link_output_extsym that this symbol is
11239 used by a reloc. */
11240 BFD_ASSERT (rh->indx < 0);
11241 rh->indx = -2;
11242 *rel_hash = rh;
11243
11244 continue;
11245 }
11246
11247 /* This is a reloc against a local symbol. */
11248
11249 *rel_hash = NULL;
11250 sym = isymbuf[r_symndx];
11251 sec = flinfo->sections[r_symndx];
11252 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
11253 {
11254 /* I suppose the backend ought to fill in the
11255 section of any STT_SECTION symbol against a
11256 processor specific section. */
11257 r_symndx = STN_UNDEF;
11258 if (bfd_is_abs_section (sec))
11259 ;
11260 else if (sec == NULL || sec->owner == NULL)
11261 {
11262 bfd_set_error (bfd_error_bad_value);
11263 return FALSE;
11264 }
11265 else
11266 {
11267 asection *osec = sec->output_section;
11268
11269 /* If we have discarded a section, the output
11270 section will be the absolute section. In
11271 case of discarded SEC_MERGE sections, use
11272 the kept section. relocate_section should
11273 have already handled discarded linkonce
11274 sections. */
11275 if (bfd_is_abs_section (osec)
11276 && sec->kept_section != NULL
11277 && sec->kept_section->output_section != NULL)
11278 {
11279 osec = sec->kept_section->output_section;
11280 irela->r_addend -= osec->vma;
11281 }
11282
11283 if (!bfd_is_abs_section (osec))
11284 {
11285 r_symndx = osec->target_index;
11286 if (r_symndx == STN_UNDEF)
11287 {
11288 irela->r_addend += osec->vma;
11289 osec = _bfd_nearby_section (output_bfd, osec,
11290 osec->vma);
11291 irela->r_addend -= osec->vma;
11292 r_symndx = osec->target_index;
11293 }
11294 }
11295 }
11296
11297 /* Adjust the addend according to where the
11298 section winds up in the output section. */
11299 if (rela_normal)
11300 irela->r_addend += sec->output_offset;
11301 }
11302 else
11303 {
11304 if (flinfo->indices[r_symndx] == -1)
11305 {
11306 unsigned long shlink;
11307 const char *name;
11308 asection *osec;
11309 long indx;
11310
11311 if (flinfo->info->strip == strip_all)
11312 {
11313 /* You can't do ld -r -s. */
11314 bfd_set_error (bfd_error_invalid_operation);
11315 return FALSE;
11316 }
11317
11318 /* This symbol was skipped earlier, but
11319 since it is needed by a reloc, we
11320 must output it now. */
11321 shlink = symtab_hdr->sh_link;
11322 name = (bfd_elf_string_from_elf_section
11323 (input_bfd, shlink, sym.st_name));
11324 if (name == NULL)
11325 return FALSE;
11326
11327 osec = sec->output_section;
11328 sym.st_shndx =
11329 _bfd_elf_section_from_bfd_section (output_bfd,
11330 osec);
11331 if (sym.st_shndx == SHN_BAD)
11332 return FALSE;
11333
11334 sym.st_value += sec->output_offset;
11335 if (!bfd_link_relocatable (flinfo->info))
11336 {
11337 sym.st_value += osec->vma;
11338 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
11339 {
11340 struct elf_link_hash_table *htab
11341 = elf_hash_table (flinfo->info);
11342
11343 /* STT_TLS symbols are relative to PT_TLS
11344 segment base. */
11345 if (htab->tls_sec != NULL)
11346 sym.st_value -= htab->tls_sec->vma;
11347 else
11348 sym.st_info
11349 = ELF_ST_INFO (ELF_ST_BIND (sym.st_info),
11350 STT_NOTYPE);
11351 }
11352 }
11353
11354 indx = bfd_get_symcount (output_bfd);
11355 ret = elf_link_output_symstrtab (flinfo, name,
11356 &sym, sec,
11357 NULL);
11358 if (ret == 0)
11359 return FALSE;
11360 else if (ret == 1)
11361 flinfo->indices[r_symndx] = indx;
11362 else
11363 abort ();
11364 }
11365
11366 r_symndx = flinfo->indices[r_symndx];
11367 }
11368
11369 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
11370 | (irela->r_info & r_type_mask));
11371 }
11372
11373 /* Swap out the relocs. */
11374 input_rel_hdr = esdi->rel.hdr;
11375 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
11376 {
11377 if (!bed->elf_backend_emit_relocs (output_bfd, o,
11378 input_rel_hdr,
11379 internal_relocs,
11380 rel_hash_list))
11381 return FALSE;
11382 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
11383 * bed->s->int_rels_per_ext_rel);
11384 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
11385 }
11386
11387 input_rela_hdr = esdi->rela.hdr;
11388 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
11389 {
11390 if (!bed->elf_backend_emit_relocs (output_bfd, o,
11391 input_rela_hdr,
11392 internal_relocs,
11393 rela_hash_list))
11394 return FALSE;
11395 }
11396 }
11397 }
11398
11399 /* Write out the modified section contents. */
11400 if (bed->elf_backend_write_section
11401 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
11402 contents))
11403 {
11404 /* Section written out. */
11405 }
11406 else switch (o->sec_info_type)
11407 {
11408 case SEC_INFO_TYPE_STABS:
11409 if (! (_bfd_write_section_stabs
11410 (output_bfd,
11411 &elf_hash_table (flinfo->info)->stab_info,
11412 o, &elf_section_data (o)->sec_info, contents)))
11413 return FALSE;
11414 break;
11415 case SEC_INFO_TYPE_MERGE:
11416 if (! _bfd_write_merged_section (output_bfd, o,
11417 elf_section_data (o)->sec_info))
11418 return FALSE;
11419 break;
11420 case SEC_INFO_TYPE_EH_FRAME:
11421 {
11422 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
11423 o, contents))
11424 return FALSE;
11425 }
11426 break;
11427 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
11428 {
11429 if (! _bfd_elf_write_section_eh_frame_entry (output_bfd,
11430 flinfo->info,
11431 o, contents))
11432 return FALSE;
11433 }
11434 break;
11435 default:
11436 {
11437 if (! (o->flags & SEC_EXCLUDE))
11438 {
11439 file_ptr offset = (file_ptr) o->output_offset;
11440 bfd_size_type todo = o->size;
11441
11442 offset *= bfd_octets_per_byte (output_bfd, o);
11443
11444 if ((o->flags & SEC_ELF_REVERSE_COPY))
11445 {
11446 /* Reverse-copy input section to output. */
11447 do
11448 {
11449 todo -= address_size;
11450 if (! bfd_set_section_contents (output_bfd,
11451 o->output_section,
11452 contents + todo,
11453 offset,
11454 address_size))
11455 return FALSE;
11456 if (todo == 0)
11457 break;
11458 offset += address_size;
11459 }
11460 while (1);
11461 }
11462 else if (! bfd_set_section_contents (output_bfd,
11463 o->output_section,
11464 contents,
11465 offset, todo))
11466 return FALSE;
11467 }
11468 }
11469 break;
11470 }
11471 }
11472
11473 return TRUE;
11474 }
11475
11476 /* Generate a reloc when linking an ELF file. This is a reloc
11477 requested by the linker, and does not come from any input file. This
11478 is used to build constructor and destructor tables when linking
11479 with -Ur. */
11480
11481 static bfd_boolean
11482 elf_reloc_link_order (bfd *output_bfd,
11483 struct bfd_link_info *info,
11484 asection *output_section,
11485 struct bfd_link_order *link_order)
11486 {
11487 reloc_howto_type *howto;
11488 long indx;
11489 bfd_vma offset;
11490 bfd_vma addend;
11491 struct bfd_elf_section_reloc_data *reldata;
11492 struct elf_link_hash_entry **rel_hash_ptr;
11493 Elf_Internal_Shdr *rel_hdr;
11494 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
11495 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
11496 bfd_byte *erel;
11497 unsigned int i;
11498 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
11499
11500 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
11501 if (howto == NULL)
11502 {
11503 bfd_set_error (bfd_error_bad_value);
11504 return FALSE;
11505 }
11506
11507 addend = link_order->u.reloc.p->addend;
11508
11509 if (esdo->rel.hdr)
11510 reldata = &esdo->rel;
11511 else if (esdo->rela.hdr)
11512 reldata = &esdo->rela;
11513 else
11514 {
11515 reldata = NULL;
11516 BFD_ASSERT (0);
11517 }
11518
11519 /* Figure out the symbol index. */
11520 rel_hash_ptr = reldata->hashes + reldata->count;
11521 if (link_order->type == bfd_section_reloc_link_order)
11522 {
11523 indx = link_order->u.reloc.p->u.section->target_index;
11524 BFD_ASSERT (indx != 0);
11525 *rel_hash_ptr = NULL;
11526 }
11527 else
11528 {
11529 struct elf_link_hash_entry *h;
11530
11531 /* Treat a reloc against a defined symbol as though it were
11532 actually against the section. */
11533 h = ((struct elf_link_hash_entry *)
11534 bfd_wrapped_link_hash_lookup (output_bfd, info,
11535 link_order->u.reloc.p->u.name,
11536 FALSE, FALSE, TRUE));
11537 if (h != NULL
11538 && (h->root.type == bfd_link_hash_defined
11539 || h->root.type == bfd_link_hash_defweak))
11540 {
11541 asection *section;
11542
11543 section = h->root.u.def.section;
11544 indx = section->output_section->target_index;
11545 *rel_hash_ptr = NULL;
11546 /* It seems that we ought to add the symbol value to the
11547 addend here, but in practice it has already been added
11548 because it was passed to constructor_callback. */
11549 addend += section->output_section->vma + section->output_offset;
11550 }
11551 else if (h != NULL)
11552 {
11553 /* Setting the index to -2 tells elf_link_output_extsym that
11554 this symbol is used by a reloc. */
11555 h->indx = -2;
11556 *rel_hash_ptr = h;
11557 indx = 0;
11558 }
11559 else
11560 {
11561 (*info->callbacks->unattached_reloc)
11562 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0);
11563 indx = 0;
11564 }
11565 }
11566
11567 /* If this is an inplace reloc, we must write the addend into the
11568 object file. */
11569 if (howto->partial_inplace && addend != 0)
11570 {
11571 bfd_size_type size;
11572 bfd_reloc_status_type rstat;
11573 bfd_byte *buf;
11574 bfd_boolean ok;
11575 const char *sym_name;
11576 bfd_size_type octets;
11577
11578 size = (bfd_size_type) bfd_get_reloc_size (howto);
11579 buf = (bfd_byte *) bfd_zmalloc (size);
11580 if (buf == NULL && size != 0)
11581 return FALSE;
11582 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
11583 switch (rstat)
11584 {
11585 case bfd_reloc_ok:
11586 break;
11587
11588 default:
11589 case bfd_reloc_outofrange:
11590 abort ();
11591
11592 case bfd_reloc_overflow:
11593 if (link_order->type == bfd_section_reloc_link_order)
11594 sym_name = bfd_section_name (link_order->u.reloc.p->u.section);
11595 else
11596 sym_name = link_order->u.reloc.p->u.name;
11597 (*info->callbacks->reloc_overflow) (info, NULL, sym_name,
11598 howto->name, addend, NULL, NULL,
11599 (bfd_vma) 0);
11600 break;
11601 }
11602
11603 octets = link_order->offset * bfd_octets_per_byte (output_bfd,
11604 output_section);
11605 ok = bfd_set_section_contents (output_bfd, output_section, buf,
11606 octets, size);
11607 free (buf);
11608 if (! ok)
11609 return FALSE;
11610 }
11611
11612 /* The address of a reloc is relative to the section in a
11613 relocatable file, and is a virtual address in an executable
11614 file. */
11615 offset = link_order->offset;
11616 if (! bfd_link_relocatable (info))
11617 offset += output_section->vma;
11618
11619 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
11620 {
11621 irel[i].r_offset = offset;
11622 irel[i].r_info = 0;
11623 irel[i].r_addend = 0;
11624 }
11625 if (bed->s->arch_size == 32)
11626 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
11627 else
11628 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
11629
11630 rel_hdr = reldata->hdr;
11631 erel = rel_hdr->contents;
11632 if (rel_hdr->sh_type == SHT_REL)
11633 {
11634 erel += reldata->count * bed->s->sizeof_rel;
11635 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
11636 }
11637 else
11638 {
11639 irel[0].r_addend = addend;
11640 erel += reldata->count * bed->s->sizeof_rela;
11641 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
11642 }
11643
11644 ++reldata->count;
11645
11646 return TRUE;
11647 }
11648
11649
11650 /* Compare two sections based on the locations of the sections they are
11651 linked to. Used by elf_fixup_link_order. */
11652
11653 static int
11654 compare_link_order (const void *a, const void *b)
11655 {
11656 const struct bfd_link_order *alo = *(const struct bfd_link_order **) a;
11657 const struct bfd_link_order *blo = *(const struct bfd_link_order **) b;
11658 asection *asec = elf_linked_to_section (alo->u.indirect.section);
11659 asection *bsec = elf_linked_to_section (blo->u.indirect.section);
11660 bfd_vma apos = asec->output_section->lma + asec->output_offset;
11661 bfd_vma bpos = bsec->output_section->lma + bsec->output_offset;
11662
11663 if (apos < bpos)
11664 return -1;
11665 if (apos > bpos)
11666 return 1;
11667
11668 /* The only way we should get matching LMAs is when the first of two
11669 sections has zero size. */
11670 if (asec->size < bsec->size)
11671 return -1;
11672 if (asec->size > bsec->size)
11673 return 1;
11674
11675 /* If they are both zero size then they almost certainly have the same
11676 VMA and thus are not ordered with respect to each other. Test VMA
11677 anyway, and fall back to id to make the result reproducible across
11678 qsort implementations. */
11679 apos = asec->output_section->vma + asec->output_offset;
11680 bpos = bsec->output_section->vma + bsec->output_offset;
11681 if (apos < bpos)
11682 return -1;
11683 if (apos > bpos)
11684 return 1;
11685
11686 return asec->id - bsec->id;
11687 }
11688
11689
11690 /* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
11691 order as their linked sections. Returns false if this could not be done
11692 because an output section includes both ordered and unordered
11693 sections. Ideally we'd do this in the linker proper. */
11694
11695 static bfd_boolean
11696 elf_fixup_link_order (bfd *abfd, asection *o)
11697 {
11698 size_t seen_linkorder;
11699 size_t seen_other;
11700 size_t n;
11701 struct bfd_link_order *p;
11702 bfd *sub;
11703 struct bfd_link_order **sections;
11704 asection *other_sec, *linkorder_sec;
11705 bfd_vma offset; /* Octets. */
11706
11707 other_sec = NULL;
11708 linkorder_sec = NULL;
11709 seen_other = 0;
11710 seen_linkorder = 0;
11711 for (p = o->map_head.link_order; p != NULL; p = p->next)
11712 {
11713 if (p->type == bfd_indirect_link_order)
11714 {
11715 asection *s = p->u.indirect.section;
11716 sub = s->owner;
11717 if ((s->flags & SEC_LINKER_CREATED) == 0
11718 && bfd_get_flavour (sub) == bfd_target_elf_flavour
11719 && elf_section_data (s) != NULL
11720 && elf_linked_to_section (s) != NULL)
11721 {
11722 seen_linkorder++;
11723 linkorder_sec = s;
11724 }
11725 else
11726 {
11727 seen_other++;
11728 other_sec = s;
11729 }
11730 }
11731 else
11732 seen_other++;
11733
11734 if (seen_other && seen_linkorder)
11735 {
11736 if (other_sec && linkorder_sec)
11737 _bfd_error_handler
11738 /* xgettext:c-format */
11739 (_("%pA has both ordered [`%pA' in %pB] "
11740 "and unordered [`%pA' in %pB] sections"),
11741 o, linkorder_sec, linkorder_sec->owner,
11742 other_sec, other_sec->owner);
11743 else
11744 _bfd_error_handler
11745 (_("%pA has both ordered and unordered sections"), o);
11746 bfd_set_error (bfd_error_bad_value);
11747 return FALSE;
11748 }
11749 }
11750
11751 if (!seen_linkorder)
11752 return TRUE;
11753
11754 sections = bfd_malloc (seen_linkorder * sizeof (*sections));
11755 if (sections == NULL)
11756 return FALSE;
11757
11758 seen_linkorder = 0;
11759 for (p = o->map_head.link_order; p != NULL; p = p->next)
11760 sections[seen_linkorder++] = p;
11761
11762 /* Sort the input sections in the order of their linked section. */
11763 qsort (sections, seen_linkorder, sizeof (*sections), compare_link_order);
11764
11765 /* Change the offsets of the sections. */
11766 offset = 0;
11767 for (n = 0; n < seen_linkorder; n++)
11768 {
11769 bfd_vma mask;
11770 asection *s = sections[n]->u.indirect.section;
11771 unsigned int opb = bfd_octets_per_byte (abfd, s);
11772
11773 mask = ~(bfd_vma) 0 << s->alignment_power * opb;
11774 offset = (offset + ~mask) & mask;
11775 sections[n]->offset = s->output_offset = offset / opb;
11776 offset += sections[n]->size;
11777 }
11778
11779 free (sections);
11780 return TRUE;
11781 }
11782
11783 /* Generate an import library in INFO->implib_bfd from symbols in ABFD.
11784 Returns TRUE upon success, FALSE otherwise. */
11785
11786 static bfd_boolean
11787 elf_output_implib (bfd *abfd, struct bfd_link_info *info)
11788 {
11789 bfd_boolean ret = FALSE;
11790 bfd *implib_bfd;
11791 const struct elf_backend_data *bed;
11792 flagword flags;
11793 enum bfd_architecture arch;
11794 unsigned int mach;
11795 asymbol **sympp = NULL;
11796 long symsize;
11797 long symcount;
11798 long src_count;
11799 elf_symbol_type *osymbuf;
11800 size_t amt;
11801
11802 implib_bfd = info->out_implib_bfd;
11803 bed = get_elf_backend_data (abfd);
11804
11805 if (!bfd_set_format (implib_bfd, bfd_object))
11806 return FALSE;
11807
11808 /* Use flag from executable but make it a relocatable object. */
11809 flags = bfd_get_file_flags (abfd);
11810 flags &= ~HAS_RELOC;
11811 if (!bfd_set_start_address (implib_bfd, 0)
11812 || !bfd_set_file_flags (implib_bfd, flags & ~EXEC_P))
11813 return FALSE;
11814
11815 /* Copy architecture of output file to import library file. */
11816 arch = bfd_get_arch (abfd);
11817 mach = bfd_get_mach (abfd);
11818 if (!bfd_set_arch_mach (implib_bfd, arch, mach)
11819 && (abfd->target_defaulted
11820 || bfd_get_arch (abfd) != bfd_get_arch (implib_bfd)))
11821 return FALSE;
11822
11823 /* Get symbol table size. */
11824 symsize = bfd_get_symtab_upper_bound (abfd);
11825 if (symsize < 0)
11826 return FALSE;
11827
11828 /* Read in the symbol table. */
11829 sympp = (asymbol **) bfd_malloc (symsize);
11830 if (sympp == NULL)
11831 return FALSE;
11832
11833 symcount = bfd_canonicalize_symtab (abfd, sympp);
11834 if (symcount < 0)
11835 goto free_sym_buf;
11836
11837 /* Allow the BFD backend to copy any private header data it
11838 understands from the output BFD to the import library BFD. */
11839 if (! bfd_copy_private_header_data (abfd, implib_bfd))
11840 goto free_sym_buf;
11841
11842 /* Filter symbols to appear in the import library. */
11843 if (bed->elf_backend_filter_implib_symbols)
11844 symcount = bed->elf_backend_filter_implib_symbols (abfd, info, sympp,
11845 symcount);
11846 else
11847 symcount = _bfd_elf_filter_global_symbols (abfd, info, sympp, symcount);
11848 if (symcount == 0)
11849 {
11850 bfd_set_error (bfd_error_no_symbols);
11851 _bfd_error_handler (_("%pB: no symbol found for import library"),
11852 implib_bfd);
11853 goto free_sym_buf;
11854 }
11855
11856
11857 /* Make symbols absolute. */
11858 amt = symcount * sizeof (*osymbuf);
11859 osymbuf = (elf_symbol_type *) bfd_alloc (implib_bfd, amt);
11860 if (osymbuf == NULL)
11861 goto free_sym_buf;
11862
11863 for (src_count = 0; src_count < symcount; src_count++)
11864 {
11865 memcpy (&osymbuf[src_count], (elf_symbol_type *) sympp[src_count],
11866 sizeof (*osymbuf));
11867 osymbuf[src_count].symbol.section = bfd_abs_section_ptr;
11868 osymbuf[src_count].internal_elf_sym.st_shndx = SHN_ABS;
11869 osymbuf[src_count].symbol.value += sympp[src_count]->section->vma;
11870 osymbuf[src_count].internal_elf_sym.st_value =
11871 osymbuf[src_count].symbol.value;
11872 sympp[src_count] = &osymbuf[src_count].symbol;
11873 }
11874
11875 bfd_set_symtab (implib_bfd, sympp, symcount);
11876
11877 /* Allow the BFD backend to copy any private data it understands
11878 from the output BFD to the import library BFD. This is done last
11879 to permit the routine to look at the filtered symbol table. */
11880 if (! bfd_copy_private_bfd_data (abfd, implib_bfd))
11881 goto free_sym_buf;
11882
11883 if (!bfd_close (implib_bfd))
11884 goto free_sym_buf;
11885
11886 ret = TRUE;
11887
11888 free_sym_buf:
11889 free (sympp);
11890 return ret;
11891 }
11892
11893 static void
11894 elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
11895 {
11896 asection *o;
11897
11898 if (flinfo->symstrtab != NULL)
11899 _bfd_elf_strtab_free (flinfo->symstrtab);
11900 free (flinfo->contents);
11901 free (flinfo->external_relocs);
11902 free (flinfo->internal_relocs);
11903 free (flinfo->external_syms);
11904 free (flinfo->locsym_shndx);
11905 free (flinfo->internal_syms);
11906 free (flinfo->indices);
11907 free (flinfo->sections);
11908 if (flinfo->symshndxbuf != (Elf_External_Sym_Shndx *) -1)
11909 free (flinfo->symshndxbuf);
11910 for (o = obfd->sections; o != NULL; o = o->next)
11911 {
11912 struct bfd_elf_section_data *esdo = elf_section_data (o);
11913 free (esdo->rel.hashes);
11914 free (esdo->rela.hashes);
11915 }
11916 }
11917
11918 /* Do the final step of an ELF link. */
11919
11920 bfd_boolean
11921 bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
11922 {
11923 bfd_boolean dynamic;
11924 bfd_boolean emit_relocs;
11925 bfd *dynobj;
11926 struct elf_final_link_info flinfo;
11927 asection *o;
11928 struct bfd_link_order *p;
11929 bfd *sub;
11930 bfd_size_type max_contents_size;
11931 bfd_size_type max_external_reloc_size;
11932 bfd_size_type max_internal_reloc_count;
11933 bfd_size_type max_sym_count;
11934 bfd_size_type max_sym_shndx_count;
11935 Elf_Internal_Sym elfsym;
11936 unsigned int i;
11937 Elf_Internal_Shdr *symtab_hdr;
11938 Elf_Internal_Shdr *symtab_shndx_hdr;
11939 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11940 struct elf_outext_info eoinfo;
11941 bfd_boolean merged;
11942 size_t relativecount = 0;
11943 asection *reldyn = 0;
11944 bfd_size_type amt;
11945 asection *attr_section = NULL;
11946 bfd_vma attr_size = 0;
11947 const char *std_attrs_section;
11948 struct elf_link_hash_table *htab = elf_hash_table (info);
11949 bfd_boolean sections_removed;
11950
11951 if (!is_elf_hash_table (htab))
11952 return FALSE;
11953
11954 if (bfd_link_pic (info))
11955 abfd->flags |= DYNAMIC;
11956
11957 dynamic = htab->dynamic_sections_created;
11958 dynobj = htab->dynobj;
11959
11960 emit_relocs = (bfd_link_relocatable (info)
11961 || info->emitrelocations);
11962
11963 flinfo.info = info;
11964 flinfo.output_bfd = abfd;
11965 flinfo.symstrtab = _bfd_elf_strtab_init ();
11966 if (flinfo.symstrtab == NULL)
11967 return FALSE;
11968
11969 if (! dynamic)
11970 {
11971 flinfo.hash_sec = NULL;
11972 flinfo.symver_sec = NULL;
11973 }
11974 else
11975 {
11976 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
11977 /* Note that dynsym_sec can be NULL (on VMS). */
11978 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
11979 /* Note that it is OK if symver_sec is NULL. */
11980 }
11981
11982 flinfo.contents = NULL;
11983 flinfo.external_relocs = NULL;
11984 flinfo.internal_relocs = NULL;
11985 flinfo.external_syms = NULL;
11986 flinfo.locsym_shndx = NULL;
11987 flinfo.internal_syms = NULL;
11988 flinfo.indices = NULL;
11989 flinfo.sections = NULL;
11990 flinfo.symshndxbuf = NULL;
11991 flinfo.filesym_count = 0;
11992
11993 /* The object attributes have been merged. Remove the input
11994 sections from the link, and set the contents of the output
11995 section. */
11996 sections_removed = FALSE;
11997 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
11998 for (o = abfd->sections; o != NULL; o = o->next)
11999 {
12000 bfd_boolean remove_section = FALSE;
12001
12002 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
12003 || strcmp (o->name, ".gnu.attributes") == 0)
12004 {
12005 for (p = o->map_head.link_order; p != NULL; p = p->next)
12006 {
12007 asection *input_section;
12008
12009 if (p->type != bfd_indirect_link_order)
12010 continue;
12011 input_section = p->u.indirect.section;
12012 /* Hack: reset the SEC_HAS_CONTENTS flag so that
12013 elf_link_input_bfd ignores this section. */
12014 input_section->flags &= ~SEC_HAS_CONTENTS;
12015 }
12016
12017 attr_size = bfd_elf_obj_attr_size (abfd);
12018 bfd_set_section_size (o, attr_size);
12019 /* Skip this section later on. */
12020 o->map_head.link_order = NULL;
12021 if (attr_size)
12022 attr_section = o;
12023 else
12024 remove_section = TRUE;
12025 }
12026 else if ((o->flags & SEC_GROUP) != 0 && o->size == 0)
12027 {
12028 /* Remove empty group section from linker output. */
12029 remove_section = TRUE;
12030 }
12031 if (remove_section)
12032 {
12033 o->flags |= SEC_EXCLUDE;
12034 bfd_section_list_remove (abfd, o);
12035 abfd->section_count--;
12036 sections_removed = TRUE;
12037 }
12038 }
12039 if (sections_removed)
12040 _bfd_fix_excluded_sec_syms (abfd, info);
12041
12042 /* Count up the number of relocations we will output for each output
12043 section, so that we know the sizes of the reloc sections. We
12044 also figure out some maximum sizes. */
12045 max_contents_size = 0;
12046 max_external_reloc_size = 0;
12047 max_internal_reloc_count = 0;
12048 max_sym_count = 0;
12049 max_sym_shndx_count = 0;
12050 merged = FALSE;
12051 for (o = abfd->sections; o != NULL; o = o->next)
12052 {
12053 struct bfd_elf_section_data *esdo = elf_section_data (o);
12054 o->reloc_count = 0;
12055
12056 for (p = o->map_head.link_order; p != NULL; p = p->next)
12057 {
12058 unsigned int reloc_count = 0;
12059 unsigned int additional_reloc_count = 0;
12060 struct bfd_elf_section_data *esdi = NULL;
12061
12062 if (p->type == bfd_section_reloc_link_order
12063 || p->type == bfd_symbol_reloc_link_order)
12064 reloc_count = 1;
12065 else if (p->type == bfd_indirect_link_order)
12066 {
12067 asection *sec;
12068
12069 sec = p->u.indirect.section;
12070
12071 /* Mark all sections which are to be included in the
12072 link. This will normally be every section. We need
12073 to do this so that we can identify any sections which
12074 the linker has decided to not include. */
12075 sec->linker_mark = TRUE;
12076
12077 if (sec->flags & SEC_MERGE)
12078 merged = TRUE;
12079
12080 if (sec->rawsize > max_contents_size)
12081 max_contents_size = sec->rawsize;
12082 if (sec->size > max_contents_size)
12083 max_contents_size = sec->size;
12084
12085 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
12086 && (sec->owner->flags & DYNAMIC) == 0)
12087 {
12088 size_t sym_count;
12089
12090 /* We are interested in just local symbols, not all
12091 symbols. */
12092 if (elf_bad_symtab (sec->owner))
12093 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
12094 / bed->s->sizeof_sym);
12095 else
12096 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
12097
12098 if (sym_count > max_sym_count)
12099 max_sym_count = sym_count;
12100
12101 if (sym_count > max_sym_shndx_count
12102 && elf_symtab_shndx_list (sec->owner) != NULL)
12103 max_sym_shndx_count = sym_count;
12104
12105 if (esdo->this_hdr.sh_type == SHT_REL
12106 || esdo->this_hdr.sh_type == SHT_RELA)
12107 /* Some backends use reloc_count in relocation sections
12108 to count particular types of relocs. Of course,
12109 reloc sections themselves can't have relocations. */
12110 ;
12111 else if (emit_relocs)
12112 {
12113 reloc_count = sec->reloc_count;
12114 if (bed->elf_backend_count_additional_relocs)
12115 {
12116 int c;
12117 c = (*bed->elf_backend_count_additional_relocs) (sec);
12118 additional_reloc_count += c;
12119 }
12120 }
12121 else if (bed->elf_backend_count_relocs)
12122 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
12123
12124 esdi = elf_section_data (sec);
12125
12126 if ((sec->flags & SEC_RELOC) != 0)
12127 {
12128 size_t ext_size = 0;
12129
12130 if (esdi->rel.hdr != NULL)
12131 ext_size = esdi->rel.hdr->sh_size;
12132 if (esdi->rela.hdr != NULL)
12133 ext_size += esdi->rela.hdr->sh_size;
12134
12135 if (ext_size > max_external_reloc_size)
12136 max_external_reloc_size = ext_size;
12137 if (sec->reloc_count > max_internal_reloc_count)
12138 max_internal_reloc_count = sec->reloc_count;
12139 }
12140 }
12141 }
12142
12143 if (reloc_count == 0)
12144 continue;
12145
12146 reloc_count += additional_reloc_count;
12147 o->reloc_count += reloc_count;
12148
12149 if (p->type == bfd_indirect_link_order && emit_relocs)
12150 {
12151 if (esdi->rel.hdr)
12152 {
12153 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
12154 esdo->rel.count += additional_reloc_count;
12155 }
12156 if (esdi->rela.hdr)
12157 {
12158 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
12159 esdo->rela.count += additional_reloc_count;
12160 }
12161 }
12162 else
12163 {
12164 if (o->use_rela_p)
12165 esdo->rela.count += reloc_count;
12166 else
12167 esdo->rel.count += reloc_count;
12168 }
12169 }
12170
12171 if (o->reloc_count > 0)
12172 o->flags |= SEC_RELOC;
12173 else
12174 {
12175 /* Explicitly clear the SEC_RELOC flag. The linker tends to
12176 set it (this is probably a bug) and if it is set
12177 assign_section_numbers will create a reloc section. */
12178 o->flags &=~ SEC_RELOC;
12179 }
12180
12181 /* If the SEC_ALLOC flag is not set, force the section VMA to
12182 zero. This is done in elf_fake_sections as well, but forcing
12183 the VMA to 0 here will ensure that relocs against these
12184 sections are handled correctly. */
12185 if ((o->flags & SEC_ALLOC) == 0
12186 && ! o->user_set_vma)
12187 o->vma = 0;
12188 }
12189
12190 if (! bfd_link_relocatable (info) && merged)
12191 elf_link_hash_traverse (htab, _bfd_elf_link_sec_merge_syms, abfd);
12192
12193 /* Figure out the file positions for everything but the symbol table
12194 and the relocs. We set symcount to force assign_section_numbers
12195 to create a symbol table. */
12196 abfd->symcount = info->strip != strip_all || emit_relocs;
12197 BFD_ASSERT (! abfd->output_has_begun);
12198 if (! _bfd_elf_compute_section_file_positions (abfd, info))
12199 goto error_return;
12200
12201 /* Set sizes, and assign file positions for reloc sections. */
12202 for (o = abfd->sections; o != NULL; o = o->next)
12203 {
12204 struct bfd_elf_section_data *esdo = elf_section_data (o);
12205 if ((o->flags & SEC_RELOC) != 0)
12206 {
12207 if (esdo->rel.hdr
12208 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
12209 goto error_return;
12210
12211 if (esdo->rela.hdr
12212 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
12213 goto error_return;
12214 }
12215
12216 /* _bfd_elf_compute_section_file_positions makes temporary use
12217 of target_index. Reset it. */
12218 o->target_index = 0;
12219
12220 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
12221 to count upwards while actually outputting the relocations. */
12222 esdo->rel.count = 0;
12223 esdo->rela.count = 0;
12224
12225 if ((esdo->this_hdr.sh_offset == (file_ptr) -1)
12226 && !bfd_section_is_ctf (o))
12227 {
12228 /* Cache the section contents so that they can be compressed
12229 later. Use bfd_malloc since it will be freed by
12230 bfd_compress_section_contents. */
12231 unsigned char *contents = esdo->this_hdr.contents;
12232 if ((o->flags & SEC_ELF_COMPRESS) == 0 || contents != NULL)
12233 abort ();
12234 contents
12235 = (unsigned char *) bfd_malloc (esdo->this_hdr.sh_size);
12236 if (contents == NULL)
12237 goto error_return;
12238 esdo->this_hdr.contents = contents;
12239 }
12240 }
12241
12242 /* We have now assigned file positions for all the sections except .symtab,
12243 .strtab, and non-loaded reloc and compressed debugging sections. We start
12244 the .symtab section at the current file position, and write directly to it.
12245 We build the .strtab section in memory. */
12246 abfd->symcount = 0;
12247 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12248 /* sh_name is set in prep_headers. */
12249 symtab_hdr->sh_type = SHT_SYMTAB;
12250 /* sh_flags, sh_addr and sh_size all start off zero. */
12251 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
12252 /* sh_link is set in assign_section_numbers. */
12253 /* sh_info is set below. */
12254 /* sh_offset is set just below. */
12255 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
12256
12257 if (max_sym_count < 20)
12258 max_sym_count = 20;
12259 htab->strtabsize = max_sym_count;
12260 amt = max_sym_count * sizeof (struct elf_sym_strtab);
12261 htab->strtab = (struct elf_sym_strtab *) bfd_malloc (amt);
12262 if (htab->strtab == NULL)
12263 goto error_return;
12264 /* The real buffer will be allocated in elf_link_swap_symbols_out. */
12265 flinfo.symshndxbuf
12266 = (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF)
12267 ? (Elf_External_Sym_Shndx *) -1 : NULL);
12268
12269 if (info->strip != strip_all || emit_relocs)
12270 {
12271 file_ptr off = elf_next_file_pos (abfd);
12272
12273 _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
12274
12275 /* Note that at this point elf_next_file_pos (abfd) is
12276 incorrect. We do not yet know the size of the .symtab section.
12277 We correct next_file_pos below, after we do know the size. */
12278
12279 /* Start writing out the symbol table. The first symbol is always a
12280 dummy symbol. */
12281 elfsym.st_value = 0;
12282 elfsym.st_size = 0;
12283 elfsym.st_info = 0;
12284 elfsym.st_other = 0;
12285 elfsym.st_shndx = SHN_UNDEF;
12286 elfsym.st_target_internal = 0;
12287 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym,
12288 bfd_und_section_ptr, NULL) != 1)
12289 goto error_return;
12290
12291 /* Output a symbol for each section. We output these even if we are
12292 discarding local symbols, since they are used for relocs. These
12293 symbols have no names. We store the index of each one in the
12294 index field of the section, so that we can find it again when
12295 outputting relocs. */
12296
12297 elfsym.st_size = 0;
12298 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
12299 elfsym.st_other = 0;
12300 elfsym.st_value = 0;
12301 elfsym.st_target_internal = 0;
12302 for (i = 1; i < elf_numsections (abfd); i++)
12303 {
12304 o = bfd_section_from_elf_index (abfd, i);
12305 if (o != NULL)
12306 {
12307 o->target_index = bfd_get_symcount (abfd);
12308 elfsym.st_shndx = i;
12309 if (!bfd_link_relocatable (info))
12310 elfsym.st_value = o->vma;
12311 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym, o,
12312 NULL) != 1)
12313 goto error_return;
12314 }
12315 }
12316 }
12317
12318 /* Allocate some memory to hold information read in from the input
12319 files. */
12320 if (max_contents_size != 0)
12321 {
12322 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
12323 if (flinfo.contents == NULL)
12324 goto error_return;
12325 }
12326
12327 if (max_external_reloc_size != 0)
12328 {
12329 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
12330 if (flinfo.external_relocs == NULL)
12331 goto error_return;
12332 }
12333
12334 if (max_internal_reloc_count != 0)
12335 {
12336 amt = max_internal_reloc_count * sizeof (Elf_Internal_Rela);
12337 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
12338 if (flinfo.internal_relocs == NULL)
12339 goto error_return;
12340 }
12341
12342 if (max_sym_count != 0)
12343 {
12344 amt = max_sym_count * bed->s->sizeof_sym;
12345 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
12346 if (flinfo.external_syms == NULL)
12347 goto error_return;
12348
12349 amt = max_sym_count * sizeof (Elf_Internal_Sym);
12350 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
12351 if (flinfo.internal_syms == NULL)
12352 goto error_return;
12353
12354 amt = max_sym_count * sizeof (long);
12355 flinfo.indices = (long int *) bfd_malloc (amt);
12356 if (flinfo.indices == NULL)
12357 goto error_return;
12358
12359 amt = max_sym_count * sizeof (asection *);
12360 flinfo.sections = (asection **) bfd_malloc (amt);
12361 if (flinfo.sections == NULL)
12362 goto error_return;
12363 }
12364
12365 if (max_sym_shndx_count != 0)
12366 {
12367 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
12368 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
12369 if (flinfo.locsym_shndx == NULL)
12370 goto error_return;
12371 }
12372
12373 if (htab->tls_sec)
12374 {
12375 bfd_vma base, end = 0; /* Both bytes. */
12376 asection *sec;
12377
12378 for (sec = htab->tls_sec;
12379 sec && (sec->flags & SEC_THREAD_LOCAL);
12380 sec = sec->next)
12381 {
12382 bfd_size_type size = sec->size;
12383 unsigned int opb = bfd_octets_per_byte (abfd, sec);
12384
12385 if (size == 0
12386 && (sec->flags & SEC_HAS_CONTENTS) == 0)
12387 {
12388 struct bfd_link_order *ord = sec->map_tail.link_order;
12389
12390 if (ord != NULL)
12391 size = ord->offset * opb + ord->size;
12392 }
12393 end = sec->vma + size / opb;
12394 }
12395 base = htab->tls_sec->vma;
12396 /* Only align end of TLS section if static TLS doesn't have special
12397 alignment requirements. */
12398 if (bed->static_tls_alignment == 1)
12399 end = align_power (end, htab->tls_sec->alignment_power);
12400 htab->tls_size = end - base;
12401 }
12402
12403 /* Reorder SHF_LINK_ORDER sections. */
12404 for (o = abfd->sections; o != NULL; o = o->next)
12405 {
12406 if (!elf_fixup_link_order (abfd, o))
12407 return FALSE;
12408 }
12409
12410 if (!_bfd_elf_fixup_eh_frame_hdr (info))
12411 return FALSE;
12412
12413 /* Since ELF permits relocations to be against local symbols, we
12414 must have the local symbols available when we do the relocations.
12415 Since we would rather only read the local symbols once, and we
12416 would rather not keep them in memory, we handle all the
12417 relocations for a single input file at the same time.
12418
12419 Unfortunately, there is no way to know the total number of local
12420 symbols until we have seen all of them, and the local symbol
12421 indices precede the global symbol indices. This means that when
12422 we are generating relocatable output, and we see a reloc against
12423 a global symbol, we can not know the symbol index until we have
12424 finished examining all the local symbols to see which ones we are
12425 going to output. To deal with this, we keep the relocations in
12426 memory, and don't output them until the end of the link. This is
12427 an unfortunate waste of memory, but I don't see a good way around
12428 it. Fortunately, it only happens when performing a relocatable
12429 link, which is not the common case. FIXME: If keep_memory is set
12430 we could write the relocs out and then read them again; I don't
12431 know how bad the memory loss will be. */
12432
12433 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12434 sub->output_has_begun = FALSE;
12435 for (o = abfd->sections; o != NULL; o = o->next)
12436 {
12437 for (p = o->map_head.link_order; p != NULL; p = p->next)
12438 {
12439 if (p->type == bfd_indirect_link_order
12440 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
12441 == bfd_target_elf_flavour)
12442 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
12443 {
12444 if (! sub->output_has_begun)
12445 {
12446 if (! elf_link_input_bfd (&flinfo, sub))
12447 goto error_return;
12448 sub->output_has_begun = TRUE;
12449 }
12450 }
12451 else if (p->type == bfd_section_reloc_link_order
12452 || p->type == bfd_symbol_reloc_link_order)
12453 {
12454 if (! elf_reloc_link_order (abfd, info, o, p))
12455 goto error_return;
12456 }
12457 else
12458 {
12459 if (! _bfd_default_link_order (abfd, info, o, p))
12460 {
12461 if (p->type == bfd_indirect_link_order
12462 && (bfd_get_flavour (sub)
12463 == bfd_target_elf_flavour)
12464 && (elf_elfheader (sub)->e_ident[EI_CLASS]
12465 != bed->s->elfclass))
12466 {
12467 const char *iclass, *oclass;
12468
12469 switch (bed->s->elfclass)
12470 {
12471 case ELFCLASS64: oclass = "ELFCLASS64"; break;
12472 case ELFCLASS32: oclass = "ELFCLASS32"; break;
12473 case ELFCLASSNONE: oclass = "ELFCLASSNONE"; break;
12474 default: abort ();
12475 }
12476
12477 switch (elf_elfheader (sub)->e_ident[EI_CLASS])
12478 {
12479 case ELFCLASS64: iclass = "ELFCLASS64"; break;
12480 case ELFCLASS32: iclass = "ELFCLASS32"; break;
12481 case ELFCLASSNONE: iclass = "ELFCLASSNONE"; break;
12482 default: abort ();
12483 }
12484
12485 bfd_set_error (bfd_error_wrong_format);
12486 _bfd_error_handler
12487 /* xgettext:c-format */
12488 (_("%pB: file class %s incompatible with %s"),
12489 sub, iclass, oclass);
12490 }
12491
12492 goto error_return;
12493 }
12494 }
12495 }
12496 }
12497
12498 /* Free symbol buffer if needed. */
12499 if (!info->reduce_memory_overheads)
12500 {
12501 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12502 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
12503 {
12504 free (elf_tdata (sub)->symbuf);
12505 elf_tdata (sub)->symbuf = NULL;
12506 }
12507 }
12508
12509 /* Output any global symbols that got converted to local in a
12510 version script or due to symbol visibility. We do this in a
12511 separate step since ELF requires all local symbols to appear
12512 prior to any global symbols. FIXME: We should only do this if
12513 some global symbols were, in fact, converted to become local.
12514 FIXME: Will this work correctly with the Irix 5 linker? */
12515 eoinfo.failed = FALSE;
12516 eoinfo.flinfo = &flinfo;
12517 eoinfo.localsyms = TRUE;
12518 eoinfo.file_sym_done = FALSE;
12519 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
12520 if (eoinfo.failed)
12521 return FALSE;
12522
12523 /* If backend needs to output some local symbols not present in the hash
12524 table, do it now. */
12525 if (bed->elf_backend_output_arch_local_syms
12526 && (info->strip != strip_all || emit_relocs))
12527 {
12528 typedef int (*out_sym_func)
12529 (void *, const char *, Elf_Internal_Sym *, asection *,
12530 struct elf_link_hash_entry *);
12531
12532 if (! ((*bed->elf_backend_output_arch_local_syms)
12533 (abfd, info, &flinfo,
12534 (out_sym_func) elf_link_output_symstrtab)))
12535 return FALSE;
12536 }
12537
12538 /* That wrote out all the local symbols. Finish up the symbol table
12539 with the global symbols. Even if we want to strip everything we
12540 can, we still need to deal with those global symbols that got
12541 converted to local in a version script. */
12542
12543 /* The sh_info field records the index of the first non local symbol. */
12544 symtab_hdr->sh_info = bfd_get_symcount (abfd);
12545
12546 if (dynamic
12547 && htab->dynsym != NULL
12548 && htab->dynsym->output_section != bfd_abs_section_ptr)
12549 {
12550 Elf_Internal_Sym sym;
12551 bfd_byte *dynsym = htab->dynsym->contents;
12552
12553 o = htab->dynsym->output_section;
12554 elf_section_data (o)->this_hdr.sh_info = htab->local_dynsymcount + 1;
12555
12556 /* Write out the section symbols for the output sections. */
12557 if (bfd_link_pic (info)
12558 || htab->is_relocatable_executable)
12559 {
12560 asection *s;
12561
12562 sym.st_size = 0;
12563 sym.st_name = 0;
12564 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
12565 sym.st_other = 0;
12566 sym.st_target_internal = 0;
12567
12568 for (s = abfd->sections; s != NULL; s = s->next)
12569 {
12570 int indx;
12571 bfd_byte *dest;
12572 long dynindx;
12573
12574 dynindx = elf_section_data (s)->dynindx;
12575 if (dynindx <= 0)
12576 continue;
12577 indx = elf_section_data (s)->this_idx;
12578 BFD_ASSERT (indx > 0);
12579 sym.st_shndx = indx;
12580 if (! check_dynsym (abfd, &sym))
12581 return FALSE;
12582 sym.st_value = s->vma;
12583 dest = dynsym + dynindx * bed->s->sizeof_sym;
12584 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12585 }
12586 }
12587
12588 /* Write out the local dynsyms. */
12589 if (htab->dynlocal)
12590 {
12591 struct elf_link_local_dynamic_entry *e;
12592 for (e = htab->dynlocal; e ; e = e->next)
12593 {
12594 asection *s;
12595 bfd_byte *dest;
12596
12597 /* Copy the internal symbol and turn off visibility.
12598 Note that we saved a word of storage and overwrote
12599 the original st_name with the dynstr_index. */
12600 sym = e->isym;
12601 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
12602
12603 s = bfd_section_from_elf_index (e->input_bfd,
12604 e->isym.st_shndx);
12605 if (s != NULL)
12606 {
12607 sym.st_shndx =
12608 elf_section_data (s->output_section)->this_idx;
12609 if (! check_dynsym (abfd, &sym))
12610 return FALSE;
12611 sym.st_value = (s->output_section->vma
12612 + s->output_offset
12613 + e->isym.st_value);
12614 }
12615
12616 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
12617 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12618 }
12619 }
12620 }
12621
12622 /* We get the global symbols from the hash table. */
12623 eoinfo.failed = FALSE;
12624 eoinfo.localsyms = FALSE;
12625 eoinfo.flinfo = &flinfo;
12626 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
12627 if (eoinfo.failed)
12628 return FALSE;
12629
12630 /* If backend needs to output some symbols not present in the hash
12631 table, do it now. */
12632 if (bed->elf_backend_output_arch_syms
12633 && (info->strip != strip_all || emit_relocs))
12634 {
12635 typedef int (*out_sym_func)
12636 (void *, const char *, Elf_Internal_Sym *, asection *,
12637 struct elf_link_hash_entry *);
12638
12639 if (! ((*bed->elf_backend_output_arch_syms)
12640 (abfd, info, &flinfo,
12641 (out_sym_func) elf_link_output_symstrtab)))
12642 return FALSE;
12643 }
12644
12645 /* Finalize the .strtab section. */
12646 _bfd_elf_strtab_finalize (flinfo.symstrtab);
12647
12648 /* Swap out the .strtab section. */
12649 if (!elf_link_swap_symbols_out (&flinfo))
12650 return FALSE;
12651
12652 /* Now we know the size of the symtab section. */
12653 if (bfd_get_symcount (abfd) > 0)
12654 {
12655 /* Finish up and write out the symbol string table (.strtab)
12656 section. */
12657 Elf_Internal_Shdr *symstrtab_hdr = NULL;
12658 file_ptr off = symtab_hdr->sh_offset + symtab_hdr->sh_size;
12659
12660 if (elf_symtab_shndx_list (abfd))
12661 {
12662 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
12663
12664 if (symtab_shndx_hdr != NULL && symtab_shndx_hdr->sh_name != 0)
12665 {
12666 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
12667 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
12668 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
12669 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
12670 symtab_shndx_hdr->sh_size = amt;
12671
12672 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
12673 off, TRUE);
12674
12675 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
12676 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
12677 return FALSE;
12678 }
12679 }
12680
12681 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
12682 /* sh_name was set in prep_headers. */
12683 symstrtab_hdr->sh_type = SHT_STRTAB;
12684 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
12685 symstrtab_hdr->sh_addr = 0;
12686 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (flinfo.symstrtab);
12687 symstrtab_hdr->sh_entsize = 0;
12688 symstrtab_hdr->sh_link = 0;
12689 symstrtab_hdr->sh_info = 0;
12690 /* sh_offset is set just below. */
12691 symstrtab_hdr->sh_addralign = 1;
12692
12693 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr,
12694 off, TRUE);
12695 elf_next_file_pos (abfd) = off;
12696
12697 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
12698 || ! _bfd_elf_strtab_emit (abfd, flinfo.symstrtab))
12699 return FALSE;
12700 }
12701
12702 if (info->out_implib_bfd && !elf_output_implib (abfd, info))
12703 {
12704 _bfd_error_handler (_("%pB: failed to generate import library"),
12705 info->out_implib_bfd);
12706 return FALSE;
12707 }
12708
12709 /* Adjust the relocs to have the correct symbol indices. */
12710 for (o = abfd->sections; o != NULL; o = o->next)
12711 {
12712 struct bfd_elf_section_data *esdo = elf_section_data (o);
12713 bfd_boolean sort;
12714
12715 if ((o->flags & SEC_RELOC) == 0)
12716 continue;
12717
12718 sort = bed->sort_relocs_p == NULL || (*bed->sort_relocs_p) (o);
12719 if (esdo->rel.hdr != NULL
12720 && !elf_link_adjust_relocs (abfd, o, &esdo->rel, sort, info))
12721 return FALSE;
12722 if (esdo->rela.hdr != NULL
12723 && !elf_link_adjust_relocs (abfd, o, &esdo->rela, sort, info))
12724 return FALSE;
12725
12726 /* Set the reloc_count field to 0 to prevent write_relocs from
12727 trying to swap the relocs out itself. */
12728 o->reloc_count = 0;
12729 }
12730
12731 if (dynamic && info->combreloc && dynobj != NULL)
12732 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
12733
12734 /* If we are linking against a dynamic object, or generating a
12735 shared library, finish up the dynamic linking information. */
12736 if (dynamic)
12737 {
12738 bfd_byte *dyncon, *dynconend;
12739
12740 /* Fix up .dynamic entries. */
12741 o = bfd_get_linker_section (dynobj, ".dynamic");
12742 BFD_ASSERT (o != NULL);
12743
12744 dyncon = o->contents;
12745 dynconend = o->contents + o->size;
12746 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12747 {
12748 Elf_Internal_Dyn dyn;
12749 const char *name;
12750 unsigned int type;
12751 bfd_size_type sh_size;
12752 bfd_vma sh_addr;
12753
12754 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12755
12756 switch (dyn.d_tag)
12757 {
12758 default:
12759 continue;
12760 case DT_NULL:
12761 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
12762 {
12763 switch (elf_section_data (reldyn)->this_hdr.sh_type)
12764 {
12765 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
12766 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
12767 default: continue;
12768 }
12769 dyn.d_un.d_val = relativecount;
12770 relativecount = 0;
12771 break;
12772 }
12773 continue;
12774
12775 case DT_INIT:
12776 name = info->init_function;
12777 goto get_sym;
12778 case DT_FINI:
12779 name = info->fini_function;
12780 get_sym:
12781 {
12782 struct elf_link_hash_entry *h;
12783
12784 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
12785 if (h != NULL
12786 && (h->root.type == bfd_link_hash_defined
12787 || h->root.type == bfd_link_hash_defweak))
12788 {
12789 dyn.d_un.d_ptr = h->root.u.def.value;
12790 o = h->root.u.def.section;
12791 if (o->output_section != NULL)
12792 dyn.d_un.d_ptr += (o->output_section->vma
12793 + o->output_offset);
12794 else
12795 {
12796 /* The symbol is imported from another shared
12797 library and does not apply to this one. */
12798 dyn.d_un.d_ptr = 0;
12799 }
12800 break;
12801 }
12802 }
12803 continue;
12804
12805 case DT_PREINIT_ARRAYSZ:
12806 name = ".preinit_array";
12807 goto get_out_size;
12808 case DT_INIT_ARRAYSZ:
12809 name = ".init_array";
12810 goto get_out_size;
12811 case DT_FINI_ARRAYSZ:
12812 name = ".fini_array";
12813 get_out_size:
12814 o = bfd_get_section_by_name (abfd, name);
12815 if (o == NULL)
12816 {
12817 _bfd_error_handler
12818 (_("could not find section %s"), name);
12819 goto error_return;
12820 }
12821 if (o->size == 0)
12822 _bfd_error_handler
12823 (_("warning: %s section has zero size"), name);
12824 dyn.d_un.d_val = o->size;
12825 break;
12826
12827 case DT_PREINIT_ARRAY:
12828 name = ".preinit_array";
12829 goto get_out_vma;
12830 case DT_INIT_ARRAY:
12831 name = ".init_array";
12832 goto get_out_vma;
12833 case DT_FINI_ARRAY:
12834 name = ".fini_array";
12835 get_out_vma:
12836 o = bfd_get_section_by_name (abfd, name);
12837 goto do_vma;
12838
12839 case DT_HASH:
12840 name = ".hash";
12841 goto get_vma;
12842 case DT_GNU_HASH:
12843 name = ".gnu.hash";
12844 goto get_vma;
12845 case DT_STRTAB:
12846 name = ".dynstr";
12847 goto get_vma;
12848 case DT_SYMTAB:
12849 name = ".dynsym";
12850 goto get_vma;
12851 case DT_VERDEF:
12852 name = ".gnu.version_d";
12853 goto get_vma;
12854 case DT_VERNEED:
12855 name = ".gnu.version_r";
12856 goto get_vma;
12857 case DT_VERSYM:
12858 name = ".gnu.version";
12859 get_vma:
12860 o = bfd_get_linker_section (dynobj, name);
12861 do_vma:
12862 if (o == NULL || bfd_is_abs_section (o->output_section))
12863 {
12864 _bfd_error_handler
12865 (_("could not find section %s"), name);
12866 goto error_return;
12867 }
12868 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
12869 {
12870 _bfd_error_handler
12871 (_("warning: section '%s' is being made into a note"), name);
12872 bfd_set_error (bfd_error_nonrepresentable_section);
12873 goto error_return;
12874 }
12875 dyn.d_un.d_ptr = o->output_section->vma + o->output_offset;
12876 break;
12877
12878 case DT_REL:
12879 case DT_RELA:
12880 case DT_RELSZ:
12881 case DT_RELASZ:
12882 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
12883 type = SHT_REL;
12884 else
12885 type = SHT_RELA;
12886 sh_size = 0;
12887 sh_addr = 0;
12888 for (i = 1; i < elf_numsections (abfd); i++)
12889 {
12890 Elf_Internal_Shdr *hdr;
12891
12892 hdr = elf_elfsections (abfd)[i];
12893 if (hdr->sh_type == type
12894 && (hdr->sh_flags & SHF_ALLOC) != 0)
12895 {
12896 sh_size += hdr->sh_size;
12897 if (sh_addr == 0
12898 || sh_addr > hdr->sh_addr)
12899 sh_addr = hdr->sh_addr;
12900 }
12901 }
12902
12903 if (bed->dtrel_excludes_plt && htab->srelplt != NULL)
12904 {
12905 unsigned int opb = bfd_octets_per_byte (abfd, o);
12906
12907 /* Don't count procedure linkage table relocs in the
12908 overall reloc count. */
12909 sh_size -= htab->srelplt->size;
12910 if (sh_size == 0)
12911 /* If the size is zero, make the address zero too.
12912 This is to avoid a glibc bug. If the backend
12913 emits DT_RELA/DT_RELASZ even when DT_RELASZ is
12914 zero, then we'll put DT_RELA at the end of
12915 DT_JMPREL. glibc will interpret the end of
12916 DT_RELA matching the end of DT_JMPREL as the
12917 case where DT_RELA includes DT_JMPREL, and for
12918 LD_BIND_NOW will decide that processing DT_RELA
12919 will process the PLT relocs too. Net result:
12920 No PLT relocs applied. */
12921 sh_addr = 0;
12922
12923 /* If .rela.plt is the first .rela section, exclude
12924 it from DT_RELA. */
12925 else if (sh_addr == (htab->srelplt->output_section->vma
12926 + htab->srelplt->output_offset) * opb)
12927 sh_addr += htab->srelplt->size;
12928 }
12929
12930 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
12931 dyn.d_un.d_val = sh_size;
12932 else
12933 dyn.d_un.d_ptr = sh_addr;
12934 break;
12935 }
12936 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
12937 }
12938 }
12939
12940 /* If we have created any dynamic sections, then output them. */
12941 if (dynobj != NULL)
12942 {
12943 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
12944 goto error_return;
12945
12946 /* Check for DT_TEXTREL (late, in case the backend removes it). */
12947 if (bfd_link_textrel_check (info)
12948 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
12949 {
12950 bfd_byte *dyncon, *dynconend;
12951
12952 dyncon = o->contents;
12953 dynconend = o->contents + o->size;
12954 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12955 {
12956 Elf_Internal_Dyn dyn;
12957
12958 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12959
12960 if (dyn.d_tag == DT_TEXTREL)
12961 {
12962 if (info->textrel_check == textrel_check_error)
12963 info->callbacks->einfo
12964 (_("%P%X: read-only segment has dynamic relocations\n"));
12965 else if (bfd_link_dll (info))
12966 info->callbacks->einfo
12967 (_("%P: warning: creating DT_TEXTREL in a shared object\n"));
12968 else
12969 info->callbacks->einfo
12970 (_("%P: warning: creating DT_TEXTREL in a PIE\n"));
12971 break;
12972 }
12973 }
12974 }
12975
12976 for (o = dynobj->sections; o != NULL; o = o->next)
12977 {
12978 if ((o->flags & SEC_HAS_CONTENTS) == 0
12979 || o->size == 0
12980 || o->output_section == bfd_abs_section_ptr)
12981 continue;
12982 if ((o->flags & SEC_LINKER_CREATED) == 0)
12983 {
12984 /* At this point, we are only interested in sections
12985 created by _bfd_elf_link_create_dynamic_sections. */
12986 continue;
12987 }
12988 if (htab->stab_info.stabstr == o)
12989 continue;
12990 if (htab->eh_info.hdr_sec == o)
12991 continue;
12992 if (strcmp (o->name, ".dynstr") != 0)
12993 {
12994 bfd_size_type octets = ((file_ptr) o->output_offset
12995 * bfd_octets_per_byte (abfd, o));
12996 if (!bfd_set_section_contents (abfd, o->output_section,
12997 o->contents, octets, o->size))
12998 goto error_return;
12999 }
13000 else
13001 {
13002 /* The contents of the .dynstr section are actually in a
13003 stringtab. */
13004 file_ptr off;
13005
13006 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
13007 if (bfd_seek (abfd, off, SEEK_SET) != 0
13008 || !_bfd_elf_strtab_emit (abfd, htab->dynstr))
13009 goto error_return;
13010 }
13011 }
13012 }
13013
13014 if (!info->resolve_section_groups)
13015 {
13016 bfd_boolean failed = FALSE;
13017
13018 BFD_ASSERT (bfd_link_relocatable (info));
13019 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
13020 if (failed)
13021 goto error_return;
13022 }
13023
13024 /* If we have optimized stabs strings, output them. */
13025 if (htab->stab_info.stabstr != NULL)
13026 {
13027 if (!_bfd_write_stab_strings (abfd, &htab->stab_info))
13028 goto error_return;
13029 }
13030
13031 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
13032 goto error_return;
13033
13034 if (info->callbacks->emit_ctf)
13035 info->callbacks->emit_ctf ();
13036
13037 elf_final_link_free (abfd, &flinfo);
13038
13039 if (attr_section)
13040 {
13041 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
13042 if (contents == NULL)
13043 return FALSE; /* Bail out and fail. */
13044 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
13045 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
13046 free (contents);
13047 }
13048
13049 return TRUE;
13050
13051 error_return:
13052 elf_final_link_free (abfd, &flinfo);
13053 return FALSE;
13054 }
13055 \f
13056 /* Initialize COOKIE for input bfd ABFD. */
13057
13058 static bfd_boolean
13059 init_reloc_cookie (struct elf_reloc_cookie *cookie,
13060 struct bfd_link_info *info, bfd *abfd)
13061 {
13062 Elf_Internal_Shdr *symtab_hdr;
13063 const struct elf_backend_data *bed;
13064
13065 bed = get_elf_backend_data (abfd);
13066 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
13067
13068 cookie->abfd = abfd;
13069 cookie->sym_hashes = elf_sym_hashes (abfd);
13070 cookie->bad_symtab = elf_bad_symtab (abfd);
13071 if (cookie->bad_symtab)
13072 {
13073 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
13074 cookie->extsymoff = 0;
13075 }
13076 else
13077 {
13078 cookie->locsymcount = symtab_hdr->sh_info;
13079 cookie->extsymoff = symtab_hdr->sh_info;
13080 }
13081
13082 if (bed->s->arch_size == 32)
13083 cookie->r_sym_shift = 8;
13084 else
13085 cookie->r_sym_shift = 32;
13086
13087 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
13088 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
13089 {
13090 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
13091 cookie->locsymcount, 0,
13092 NULL, NULL, NULL);
13093 if (cookie->locsyms == NULL)
13094 {
13095 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
13096 return FALSE;
13097 }
13098 if (info->keep_memory)
13099 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
13100 }
13101 return TRUE;
13102 }
13103
13104 /* Free the memory allocated by init_reloc_cookie, if appropriate. */
13105
13106 static void
13107 fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
13108 {
13109 Elf_Internal_Shdr *symtab_hdr;
13110
13111 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
13112 if (symtab_hdr->contents != (unsigned char *) cookie->locsyms)
13113 free (cookie->locsyms);
13114 }
13115
13116 /* Initialize the relocation information in COOKIE for input section SEC
13117 of input bfd ABFD. */
13118
13119 static bfd_boolean
13120 init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
13121 struct bfd_link_info *info, bfd *abfd,
13122 asection *sec)
13123 {
13124 if (sec->reloc_count == 0)
13125 {
13126 cookie->rels = NULL;
13127 cookie->relend = NULL;
13128 }
13129 else
13130 {
13131 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
13132 info->keep_memory);
13133 if (cookie->rels == NULL)
13134 return FALSE;
13135 cookie->rel = cookie->rels;
13136 cookie->relend = cookie->rels + sec->reloc_count;
13137 }
13138 cookie->rel = cookie->rels;
13139 return TRUE;
13140 }
13141
13142 /* Free the memory allocated by init_reloc_cookie_rels,
13143 if appropriate. */
13144
13145 static void
13146 fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
13147 asection *sec)
13148 {
13149 if (elf_section_data (sec)->relocs != cookie->rels)
13150 free (cookie->rels);
13151 }
13152
13153 /* Initialize the whole of COOKIE for input section SEC. */
13154
13155 static bfd_boolean
13156 init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
13157 struct bfd_link_info *info,
13158 asection *sec)
13159 {
13160 if (!init_reloc_cookie (cookie, info, sec->owner))
13161 goto error1;
13162 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
13163 goto error2;
13164 return TRUE;
13165
13166 error2:
13167 fini_reloc_cookie (cookie, sec->owner);
13168 error1:
13169 return FALSE;
13170 }
13171
13172 /* Free the memory allocated by init_reloc_cookie_for_section,
13173 if appropriate. */
13174
13175 static void
13176 fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
13177 asection *sec)
13178 {
13179 fini_reloc_cookie_rels (cookie, sec);
13180 fini_reloc_cookie (cookie, sec->owner);
13181 }
13182 \f
13183 /* Garbage collect unused sections. */
13184
13185 /* Default gc_mark_hook. */
13186
13187 asection *
13188 _bfd_elf_gc_mark_hook (asection *sec,
13189 struct bfd_link_info *info ATTRIBUTE_UNUSED,
13190 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
13191 struct elf_link_hash_entry *h,
13192 Elf_Internal_Sym *sym)
13193 {
13194 if (h != NULL)
13195 {
13196 switch (h->root.type)
13197 {
13198 case bfd_link_hash_defined:
13199 case bfd_link_hash_defweak:
13200 return h->root.u.def.section;
13201
13202 case bfd_link_hash_common:
13203 return h->root.u.c.p->section;
13204
13205 default:
13206 break;
13207 }
13208 }
13209 else
13210 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
13211
13212 return NULL;
13213 }
13214
13215 /* Return the debug definition section. */
13216
13217 static asection *
13218 elf_gc_mark_debug_section (asection *sec ATTRIBUTE_UNUSED,
13219 struct bfd_link_info *info ATTRIBUTE_UNUSED,
13220 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
13221 struct elf_link_hash_entry *h,
13222 Elf_Internal_Sym *sym)
13223 {
13224 if (h != NULL)
13225 {
13226 /* Return the global debug definition section. */
13227 if ((h->root.type == bfd_link_hash_defined
13228 || h->root.type == bfd_link_hash_defweak)
13229 && (h->root.u.def.section->flags & SEC_DEBUGGING) != 0)
13230 return h->root.u.def.section;
13231 }
13232 else
13233 {
13234 /* Return the local debug definition section. */
13235 asection *isec = bfd_section_from_elf_index (sec->owner,
13236 sym->st_shndx);
13237 if ((isec->flags & SEC_DEBUGGING) != 0)
13238 return isec;
13239 }
13240
13241 return NULL;
13242 }
13243
13244 /* COOKIE->rel describes a relocation against section SEC, which is
13245 a section we've decided to keep. Return the section that contains
13246 the relocation symbol, or NULL if no section contains it. */
13247
13248 asection *
13249 _bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
13250 elf_gc_mark_hook_fn gc_mark_hook,
13251 struct elf_reloc_cookie *cookie,
13252 bfd_boolean *start_stop)
13253 {
13254 unsigned long r_symndx;
13255 struct elf_link_hash_entry *h, *hw;
13256
13257 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
13258 if (r_symndx == STN_UNDEF)
13259 return NULL;
13260
13261 if (r_symndx >= cookie->locsymcount
13262 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
13263 {
13264 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
13265 if (h == NULL)
13266 {
13267 info->callbacks->einfo (_("%F%P: corrupt input: %pB\n"),
13268 sec->owner);
13269 return NULL;
13270 }
13271 while (h->root.type == bfd_link_hash_indirect
13272 || h->root.type == bfd_link_hash_warning)
13273 h = (struct elf_link_hash_entry *) h->root.u.i.link;
13274 h->mark = 1;
13275 /* Keep all aliases of the symbol too. If an object symbol
13276 needs to be copied into .dynbss then all of its aliases
13277 should be present as dynamic symbols, not just the one used
13278 on the copy relocation. */
13279 hw = h;
13280 while (hw->is_weakalias)
13281 {
13282 hw = hw->u.alias;
13283 hw->mark = 1;
13284 }
13285
13286 if (start_stop != NULL)
13287 {
13288 /* To work around a glibc bug, mark XXX input sections
13289 when there is a reference to __start_XXX or __stop_XXX
13290 symbols. */
13291 if (h->start_stop)
13292 {
13293 asection *s = h->u2.start_stop_section;
13294 *start_stop = !s->gc_mark;
13295 return s;
13296 }
13297 }
13298
13299 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
13300 }
13301
13302 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
13303 &cookie->locsyms[r_symndx]);
13304 }
13305
13306 /* COOKIE->rel describes a relocation against section SEC, which is
13307 a section we've decided to keep. Mark the section that contains
13308 the relocation symbol. */
13309
13310 bfd_boolean
13311 _bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
13312 asection *sec,
13313 elf_gc_mark_hook_fn gc_mark_hook,
13314 struct elf_reloc_cookie *cookie)
13315 {
13316 asection *rsec;
13317 bfd_boolean start_stop = FALSE;
13318
13319 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie, &start_stop);
13320 while (rsec != NULL)
13321 {
13322 if (!rsec->gc_mark)
13323 {
13324 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
13325 || (rsec->owner->flags & DYNAMIC) != 0)
13326 rsec->gc_mark = 1;
13327 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
13328 return FALSE;
13329 }
13330 if (!start_stop)
13331 break;
13332 rsec = bfd_get_next_section_by_name (rsec->owner, rsec);
13333 }
13334 return TRUE;
13335 }
13336
13337 /* The mark phase of garbage collection. For a given section, mark
13338 it and any sections in this section's group, and all the sections
13339 which define symbols to which it refers. */
13340
13341 bfd_boolean
13342 _bfd_elf_gc_mark (struct bfd_link_info *info,
13343 asection *sec,
13344 elf_gc_mark_hook_fn gc_mark_hook)
13345 {
13346 bfd_boolean ret;
13347 asection *group_sec, *eh_frame;
13348
13349 sec->gc_mark = 1;
13350
13351 /* Mark all the sections in the group. */
13352 group_sec = elf_section_data (sec)->next_in_group;
13353 if (group_sec && !group_sec->gc_mark)
13354 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
13355 return FALSE;
13356
13357 /* Look through the section relocs. */
13358 ret = TRUE;
13359 eh_frame = elf_eh_frame_section (sec->owner);
13360 if ((sec->flags & SEC_RELOC) != 0
13361 && sec->reloc_count > 0
13362 && sec != eh_frame)
13363 {
13364 struct elf_reloc_cookie cookie;
13365
13366 if (!init_reloc_cookie_for_section (&cookie, info, sec))
13367 ret = FALSE;
13368 else
13369 {
13370 for (; cookie.rel < cookie.relend; cookie.rel++)
13371 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
13372 {
13373 ret = FALSE;
13374 break;
13375 }
13376 fini_reloc_cookie_for_section (&cookie, sec);
13377 }
13378 }
13379
13380 if (ret && eh_frame && elf_fde_list (sec))
13381 {
13382 struct elf_reloc_cookie cookie;
13383
13384 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
13385 ret = FALSE;
13386 else
13387 {
13388 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
13389 gc_mark_hook, &cookie))
13390 ret = FALSE;
13391 fini_reloc_cookie_for_section (&cookie, eh_frame);
13392 }
13393 }
13394
13395 eh_frame = elf_section_eh_frame_entry (sec);
13396 if (ret && eh_frame && !eh_frame->gc_mark)
13397 if (!_bfd_elf_gc_mark (info, eh_frame, gc_mark_hook))
13398 ret = FALSE;
13399
13400 return ret;
13401 }
13402
13403 /* Scan and mark sections in a special or debug section group. */
13404
13405 static void
13406 _bfd_elf_gc_mark_debug_special_section_group (asection *grp)
13407 {
13408 /* Point to first section of section group. */
13409 asection *ssec;
13410 /* Used to iterate the section group. */
13411 asection *msec;
13412
13413 bfd_boolean is_special_grp = TRUE;
13414 bfd_boolean is_debug_grp = TRUE;
13415
13416 /* First scan to see if group contains any section other than debug
13417 and special section. */
13418 ssec = msec = elf_next_in_group (grp);
13419 do
13420 {
13421 if ((msec->flags & SEC_DEBUGGING) == 0)
13422 is_debug_grp = FALSE;
13423
13424 if ((msec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) != 0)
13425 is_special_grp = FALSE;
13426
13427 msec = elf_next_in_group (msec);
13428 }
13429 while (msec != ssec);
13430
13431 /* If this is a pure debug section group or pure special section group,
13432 keep all sections in this group. */
13433 if (is_debug_grp || is_special_grp)
13434 {
13435 do
13436 {
13437 msec->gc_mark = 1;
13438 msec = elf_next_in_group (msec);
13439 }
13440 while (msec != ssec);
13441 }
13442 }
13443
13444 /* Keep debug and special sections. */
13445
13446 bfd_boolean
13447 _bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
13448 elf_gc_mark_hook_fn mark_hook)
13449 {
13450 bfd *ibfd;
13451
13452 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
13453 {
13454 asection *isec;
13455 bfd_boolean some_kept;
13456 bfd_boolean debug_frag_seen;
13457 bfd_boolean has_kept_debug_info;
13458
13459 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13460 continue;
13461 isec = ibfd->sections;
13462 if (isec == NULL || isec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13463 continue;
13464
13465 /* Ensure all linker created sections are kept,
13466 see if any other section is already marked,
13467 and note if we have any fragmented debug sections. */
13468 debug_frag_seen = some_kept = has_kept_debug_info = FALSE;
13469 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13470 {
13471 if ((isec->flags & SEC_LINKER_CREATED) != 0)
13472 isec->gc_mark = 1;
13473 else if (isec->gc_mark
13474 && (isec->flags & SEC_ALLOC) != 0
13475 && elf_section_type (isec) != SHT_NOTE)
13476 some_kept = TRUE;
13477 else
13478 {
13479 /* Since all sections, except for backend specific ones,
13480 have been garbage collected, call mark_hook on this
13481 section if any of its linked-to sections is marked. */
13482 asection *linked_to_sec = elf_linked_to_section (isec);
13483 for (; linked_to_sec != NULL;
13484 linked_to_sec = elf_linked_to_section (linked_to_sec))
13485 if (linked_to_sec->gc_mark)
13486 {
13487 if (!_bfd_elf_gc_mark (info, isec, mark_hook))
13488 return FALSE;
13489 break;
13490 }
13491 }
13492
13493 if (!debug_frag_seen
13494 && (isec->flags & SEC_DEBUGGING)
13495 && CONST_STRNEQ (isec->name, ".debug_line."))
13496 debug_frag_seen = TRUE;
13497 else if (strcmp (bfd_section_name (isec),
13498 "__patchable_function_entries") == 0
13499 && elf_linked_to_section (isec) == NULL)
13500 info->callbacks->einfo (_("%F%P: %pB(%pA): error: "
13501 "need linked-to section "
13502 "for --gc-sections\n"),
13503 isec->owner, isec);
13504 }
13505
13506 /* If no non-note alloc section in this file will be kept, then
13507 we can toss out the debug and special sections. */
13508 if (!some_kept)
13509 continue;
13510
13511 /* Keep debug and special sections like .comment when they are
13512 not part of a group. Also keep section groups that contain
13513 just debug sections or special sections. NB: Sections with
13514 linked-to section has been handled above. */
13515 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13516 {
13517 if ((isec->flags & SEC_GROUP) != 0)
13518 _bfd_elf_gc_mark_debug_special_section_group (isec);
13519 else if (((isec->flags & SEC_DEBUGGING) != 0
13520 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
13521 && elf_next_in_group (isec) == NULL
13522 && elf_linked_to_section (isec) == NULL)
13523 isec->gc_mark = 1;
13524 if (isec->gc_mark && (isec->flags & SEC_DEBUGGING) != 0)
13525 has_kept_debug_info = TRUE;
13526 }
13527
13528 /* Look for CODE sections which are going to be discarded,
13529 and find and discard any fragmented debug sections which
13530 are associated with that code section. */
13531 if (debug_frag_seen)
13532 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13533 if ((isec->flags & SEC_CODE) != 0
13534 && isec->gc_mark == 0)
13535 {
13536 unsigned int ilen;
13537 asection *dsec;
13538
13539 ilen = strlen (isec->name);
13540
13541 /* Association is determined by the name of the debug
13542 section containing the name of the code section as
13543 a suffix. For example .debug_line.text.foo is a
13544 debug section associated with .text.foo. */
13545 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
13546 {
13547 unsigned int dlen;
13548
13549 if (dsec->gc_mark == 0
13550 || (dsec->flags & SEC_DEBUGGING) == 0)
13551 continue;
13552
13553 dlen = strlen (dsec->name);
13554
13555 if (dlen > ilen
13556 && strncmp (dsec->name + (dlen - ilen),
13557 isec->name, ilen) == 0)
13558 dsec->gc_mark = 0;
13559 }
13560 }
13561
13562 /* Mark debug sections referenced by kept debug sections. */
13563 if (has_kept_debug_info)
13564 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13565 if (isec->gc_mark
13566 && (isec->flags & SEC_DEBUGGING) != 0)
13567 if (!_bfd_elf_gc_mark (info, isec,
13568 elf_gc_mark_debug_section))
13569 return FALSE;
13570 }
13571 return TRUE;
13572 }
13573
13574 static bfd_boolean
13575 elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
13576 {
13577 bfd *sub;
13578 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13579
13580 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
13581 {
13582 asection *o;
13583
13584 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
13585 || elf_object_id (sub) != elf_hash_table_id (elf_hash_table (info))
13586 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
13587 continue;
13588 o = sub->sections;
13589 if (o == NULL || o->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13590 continue;
13591
13592 for (o = sub->sections; o != NULL; o = o->next)
13593 {
13594 /* When any section in a section group is kept, we keep all
13595 sections in the section group. If the first member of
13596 the section group is excluded, we will also exclude the
13597 group section. */
13598 if (o->flags & SEC_GROUP)
13599 {
13600 asection *first = elf_next_in_group (o);
13601 o->gc_mark = first->gc_mark;
13602 }
13603
13604 if (o->gc_mark)
13605 continue;
13606
13607 /* Skip sweeping sections already excluded. */
13608 if (o->flags & SEC_EXCLUDE)
13609 continue;
13610
13611 /* Since this is early in the link process, it is simple
13612 to remove a section from the output. */
13613 o->flags |= SEC_EXCLUDE;
13614
13615 if (info->print_gc_sections && o->size != 0)
13616 /* xgettext:c-format */
13617 _bfd_error_handler (_("removing unused section '%pA' in file '%pB'"),
13618 o, sub);
13619 }
13620 }
13621
13622 return TRUE;
13623 }
13624
13625 /* Propagate collected vtable information. This is called through
13626 elf_link_hash_traverse. */
13627
13628 static bfd_boolean
13629 elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
13630 {
13631 /* Those that are not vtables. */
13632 if (h->start_stop
13633 || h->u2.vtable == NULL
13634 || h->u2.vtable->parent == NULL)
13635 return TRUE;
13636
13637 /* Those vtables that do not have parents, we cannot merge. */
13638 if (h->u2.vtable->parent == (struct elf_link_hash_entry *) -1)
13639 return TRUE;
13640
13641 /* If we've already been done, exit. */
13642 if (h->u2.vtable->used && h->u2.vtable->used[-1])
13643 return TRUE;
13644
13645 /* Make sure the parent's table is up to date. */
13646 elf_gc_propagate_vtable_entries_used (h->u2.vtable->parent, okp);
13647
13648 if (h->u2.vtable->used == NULL)
13649 {
13650 /* None of this table's entries were referenced. Re-use the
13651 parent's table. */
13652 h->u2.vtable->used = h->u2.vtable->parent->u2.vtable->used;
13653 h->u2.vtable->size = h->u2.vtable->parent->u2.vtable->size;
13654 }
13655 else
13656 {
13657 size_t n;
13658 bfd_boolean *cu, *pu;
13659
13660 /* Or the parent's entries into ours. */
13661 cu = h->u2.vtable->used;
13662 cu[-1] = TRUE;
13663 pu = h->u2.vtable->parent->u2.vtable->used;
13664 if (pu != NULL)
13665 {
13666 const struct elf_backend_data *bed;
13667 unsigned int log_file_align;
13668
13669 bed = get_elf_backend_data (h->root.u.def.section->owner);
13670 log_file_align = bed->s->log_file_align;
13671 n = h->u2.vtable->parent->u2.vtable->size >> log_file_align;
13672 while (n--)
13673 {
13674 if (*pu)
13675 *cu = TRUE;
13676 pu++;
13677 cu++;
13678 }
13679 }
13680 }
13681
13682 return TRUE;
13683 }
13684
13685 static bfd_boolean
13686 elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
13687 {
13688 asection *sec;
13689 bfd_vma hstart, hend;
13690 Elf_Internal_Rela *relstart, *relend, *rel;
13691 const struct elf_backend_data *bed;
13692 unsigned int log_file_align;
13693
13694 /* Take care of both those symbols that do not describe vtables as
13695 well as those that are not loaded. */
13696 if (h->start_stop
13697 || h->u2.vtable == NULL
13698 || h->u2.vtable->parent == NULL)
13699 return TRUE;
13700
13701 BFD_ASSERT (h->root.type == bfd_link_hash_defined
13702 || h->root.type == bfd_link_hash_defweak);
13703
13704 sec = h->root.u.def.section;
13705 hstart = h->root.u.def.value;
13706 hend = hstart + h->size;
13707
13708 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
13709 if (!relstart)
13710 return *(bfd_boolean *) okp = FALSE;
13711 bed = get_elf_backend_data (sec->owner);
13712 log_file_align = bed->s->log_file_align;
13713
13714 relend = relstart + sec->reloc_count;
13715
13716 for (rel = relstart; rel < relend; ++rel)
13717 if (rel->r_offset >= hstart && rel->r_offset < hend)
13718 {
13719 /* If the entry is in use, do nothing. */
13720 if (h->u2.vtable->used
13721 && (rel->r_offset - hstart) < h->u2.vtable->size)
13722 {
13723 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
13724 if (h->u2.vtable->used[entry])
13725 continue;
13726 }
13727 /* Otherwise, kill it. */
13728 rel->r_offset = rel->r_info = rel->r_addend = 0;
13729 }
13730
13731 return TRUE;
13732 }
13733
13734 /* Mark sections containing dynamically referenced symbols. When
13735 building shared libraries, we must assume that any visible symbol is
13736 referenced. */
13737
13738 bfd_boolean
13739 bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
13740 {
13741 struct bfd_link_info *info = (struct bfd_link_info *) inf;
13742 struct bfd_elf_dynamic_list *d = info->dynamic_list;
13743
13744 if ((h->root.type == bfd_link_hash_defined
13745 || h->root.type == bfd_link_hash_defweak)
13746 && ((h->ref_dynamic && !h->forced_local)
13747 || ((h->def_regular || ELF_COMMON_DEF_P (h))
13748 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
13749 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
13750 && (!bfd_link_executable (info)
13751 || info->gc_keep_exported
13752 || info->export_dynamic
13753 || (h->dynamic
13754 && d != NULL
13755 && (*d->match) (&d->head, NULL, h->root.root.string)))
13756 && (h->versioned >= versioned
13757 || !bfd_hide_sym_by_version (info->version_info,
13758 h->root.root.string)))))
13759 h->root.u.def.section->flags |= SEC_KEEP;
13760
13761 return TRUE;
13762 }
13763
13764 /* Keep all sections containing symbols undefined on the command-line,
13765 and the section containing the entry symbol. */
13766
13767 void
13768 _bfd_elf_gc_keep (struct bfd_link_info *info)
13769 {
13770 struct bfd_sym_chain *sym;
13771
13772 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
13773 {
13774 struct elf_link_hash_entry *h;
13775
13776 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
13777 FALSE, FALSE, FALSE);
13778
13779 if (h != NULL
13780 && (h->root.type == bfd_link_hash_defined
13781 || h->root.type == bfd_link_hash_defweak)
13782 && !bfd_is_abs_section (h->root.u.def.section)
13783 && !bfd_is_und_section (h->root.u.def.section))
13784 h->root.u.def.section->flags |= SEC_KEEP;
13785 }
13786 }
13787
13788 bfd_boolean
13789 bfd_elf_parse_eh_frame_entries (bfd *abfd ATTRIBUTE_UNUSED,
13790 struct bfd_link_info *info)
13791 {
13792 bfd *ibfd = info->input_bfds;
13793
13794 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
13795 {
13796 asection *sec;
13797 struct elf_reloc_cookie cookie;
13798
13799 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13800 continue;
13801 sec = ibfd->sections;
13802 if (sec == NULL || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13803 continue;
13804
13805 if (!init_reloc_cookie (&cookie, info, ibfd))
13806 return FALSE;
13807
13808 for (sec = ibfd->sections; sec; sec = sec->next)
13809 {
13810 if (CONST_STRNEQ (bfd_section_name (sec), ".eh_frame_entry")
13811 && init_reloc_cookie_rels (&cookie, info, ibfd, sec))
13812 {
13813 _bfd_elf_parse_eh_frame_entry (info, sec, &cookie);
13814 fini_reloc_cookie_rels (&cookie, sec);
13815 }
13816 }
13817 }
13818 return TRUE;
13819 }
13820
13821 /* Do mark and sweep of unused sections. */
13822
13823 bfd_boolean
13824 bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
13825 {
13826 bfd_boolean ok = TRUE;
13827 bfd *sub;
13828 elf_gc_mark_hook_fn gc_mark_hook;
13829 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13830 struct elf_link_hash_table *htab;
13831
13832 if (!bed->can_gc_sections
13833 || !is_elf_hash_table (info->hash))
13834 {
13835 _bfd_error_handler(_("warning: gc-sections option ignored"));
13836 return TRUE;
13837 }
13838
13839 bed->gc_keep (info);
13840 htab = elf_hash_table (info);
13841
13842 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
13843 at the .eh_frame section if we can mark the FDEs individually. */
13844 for (sub = info->input_bfds;
13845 info->eh_frame_hdr_type != COMPACT_EH_HDR && sub != NULL;
13846 sub = sub->link.next)
13847 {
13848 asection *sec;
13849 struct elf_reloc_cookie cookie;
13850
13851 sec = sub->sections;
13852 if (sec == NULL || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13853 continue;
13854 sec = bfd_get_section_by_name (sub, ".eh_frame");
13855 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
13856 {
13857 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
13858 if (elf_section_data (sec)->sec_info
13859 && (sec->flags & SEC_LINKER_CREATED) == 0)
13860 elf_eh_frame_section (sub) = sec;
13861 fini_reloc_cookie_for_section (&cookie, sec);
13862 sec = bfd_get_next_section_by_name (NULL, sec);
13863 }
13864 }
13865
13866 /* Apply transitive closure to the vtable entry usage info. */
13867 elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
13868 if (!ok)
13869 return FALSE;
13870
13871 /* Kill the vtable relocations that were not used. */
13872 elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
13873 if (!ok)
13874 return FALSE;
13875
13876 /* Mark dynamically referenced symbols. */
13877 if (htab->dynamic_sections_created || info->gc_keep_exported)
13878 elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
13879
13880 /* Grovel through relocs to find out who stays ... */
13881 gc_mark_hook = bed->gc_mark_hook;
13882 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
13883 {
13884 asection *o;
13885
13886 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
13887 || elf_object_id (sub) != elf_hash_table_id (htab)
13888 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
13889 continue;
13890
13891 o = sub->sections;
13892 if (o == NULL || o->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13893 continue;
13894
13895 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
13896 Also treat note sections as a root, if the section is not part
13897 of a group. We must keep all PREINIT_ARRAY, INIT_ARRAY as
13898 well as FINI_ARRAY sections for ld -r. */
13899 for (o = sub->sections; o != NULL; o = o->next)
13900 if (!o->gc_mark
13901 && (o->flags & SEC_EXCLUDE) == 0
13902 && ((o->flags & SEC_KEEP) != 0
13903 || (bfd_link_relocatable (info)
13904 && ((elf_section_data (o)->this_hdr.sh_type
13905 == SHT_PREINIT_ARRAY)
13906 || (elf_section_data (o)->this_hdr.sh_type
13907 == SHT_INIT_ARRAY)
13908 || (elf_section_data (o)->this_hdr.sh_type
13909 == SHT_FINI_ARRAY)))
13910 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
13911 && elf_next_in_group (o) == NULL )))
13912 {
13913 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
13914 return FALSE;
13915 }
13916 }
13917
13918 /* Allow the backend to mark additional target specific sections. */
13919 bed->gc_mark_extra_sections (info, gc_mark_hook);
13920
13921 /* ... and mark SEC_EXCLUDE for those that go. */
13922 return elf_gc_sweep (abfd, info);
13923 }
13924 \f
13925 /* Called from check_relocs to record the existence of a VTINHERIT reloc. */
13926
13927 bfd_boolean
13928 bfd_elf_gc_record_vtinherit (bfd *abfd,
13929 asection *sec,
13930 struct elf_link_hash_entry *h,
13931 bfd_vma offset)
13932 {
13933 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
13934 struct elf_link_hash_entry **search, *child;
13935 size_t extsymcount;
13936 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13937
13938 /* The sh_info field of the symtab header tells us where the
13939 external symbols start. We don't care about the local symbols at
13940 this point. */
13941 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
13942 if (!elf_bad_symtab (abfd))
13943 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
13944
13945 sym_hashes = elf_sym_hashes (abfd);
13946 sym_hashes_end = sym_hashes + extsymcount;
13947
13948 /* Hunt down the child symbol, which is in this section at the same
13949 offset as the relocation. */
13950 for (search = sym_hashes; search != sym_hashes_end; ++search)
13951 {
13952 if ((child = *search) != NULL
13953 && (child->root.type == bfd_link_hash_defined
13954 || child->root.type == bfd_link_hash_defweak)
13955 && child->root.u.def.section == sec
13956 && child->root.u.def.value == offset)
13957 goto win;
13958 }
13959
13960 /* xgettext:c-format */
13961 _bfd_error_handler (_("%pB: %pA+%#" PRIx64 ": no symbol found for INHERIT"),
13962 abfd, sec, (uint64_t) offset);
13963 bfd_set_error (bfd_error_invalid_operation);
13964 return FALSE;
13965
13966 win:
13967 if (!child->u2.vtable)
13968 {
13969 child->u2.vtable = ((struct elf_link_virtual_table_entry *)
13970 bfd_zalloc (abfd, sizeof (*child->u2.vtable)));
13971 if (!child->u2.vtable)
13972 return FALSE;
13973 }
13974 if (!h)
13975 {
13976 /* This *should* only be the absolute section. It could potentially
13977 be that someone has defined a non-global vtable though, which
13978 would be bad. It isn't worth paging in the local symbols to be
13979 sure though; that case should simply be handled by the assembler. */
13980
13981 child->u2.vtable->parent = (struct elf_link_hash_entry *) -1;
13982 }
13983 else
13984 child->u2.vtable->parent = h;
13985
13986 return TRUE;
13987 }
13988
13989 /* Called from check_relocs to record the existence of a VTENTRY reloc. */
13990
13991 bfd_boolean
13992 bfd_elf_gc_record_vtentry (bfd *abfd, asection *sec,
13993 struct elf_link_hash_entry *h,
13994 bfd_vma addend)
13995 {
13996 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13997 unsigned int log_file_align = bed->s->log_file_align;
13998
13999 if (!h)
14000 {
14001 /* xgettext:c-format */
14002 _bfd_error_handler (_("%pB: section '%pA': corrupt VTENTRY entry"),
14003 abfd, sec);
14004 bfd_set_error (bfd_error_bad_value);
14005 return FALSE;
14006 }
14007
14008 if (!h->u2.vtable)
14009 {
14010 h->u2.vtable = ((struct elf_link_virtual_table_entry *)
14011 bfd_zalloc (abfd, sizeof (*h->u2.vtable)));
14012 if (!h->u2.vtable)
14013 return FALSE;
14014 }
14015
14016 if (addend >= h->u2.vtable->size)
14017 {
14018 size_t size, bytes, file_align;
14019 bfd_boolean *ptr = h->u2.vtable->used;
14020
14021 /* While the symbol is undefined, we have to be prepared to handle
14022 a zero size. */
14023 file_align = 1 << log_file_align;
14024 if (h->root.type == bfd_link_hash_undefined)
14025 size = addend + file_align;
14026 else
14027 {
14028 size = h->size;
14029 if (addend >= size)
14030 {
14031 /* Oops! We've got a reference past the defined end of
14032 the table. This is probably a bug -- shall we warn? */
14033 size = addend + file_align;
14034 }
14035 }
14036 size = (size + file_align - 1) & -file_align;
14037
14038 /* Allocate one extra entry for use as a "done" flag for the
14039 consolidation pass. */
14040 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
14041
14042 if (ptr)
14043 {
14044 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
14045
14046 if (ptr != NULL)
14047 {
14048 size_t oldbytes;
14049
14050 oldbytes = (((h->u2.vtable->size >> log_file_align) + 1)
14051 * sizeof (bfd_boolean));
14052 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
14053 }
14054 }
14055 else
14056 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
14057
14058 if (ptr == NULL)
14059 return FALSE;
14060
14061 /* And arrange for that done flag to be at index -1. */
14062 h->u2.vtable->used = ptr + 1;
14063 h->u2.vtable->size = size;
14064 }
14065
14066 h->u2.vtable->used[addend >> log_file_align] = TRUE;
14067
14068 return TRUE;
14069 }
14070
14071 /* Map an ELF section header flag to its corresponding string. */
14072 typedef struct
14073 {
14074 char *flag_name;
14075 flagword flag_value;
14076 } elf_flags_to_name_table;
14077
14078 static elf_flags_to_name_table elf_flags_to_names [] =
14079 {
14080 { "SHF_WRITE", SHF_WRITE },
14081 { "SHF_ALLOC", SHF_ALLOC },
14082 { "SHF_EXECINSTR", SHF_EXECINSTR },
14083 { "SHF_MERGE", SHF_MERGE },
14084 { "SHF_STRINGS", SHF_STRINGS },
14085 { "SHF_INFO_LINK", SHF_INFO_LINK},
14086 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
14087 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
14088 { "SHF_GROUP", SHF_GROUP },
14089 { "SHF_TLS", SHF_TLS },
14090 { "SHF_MASKOS", SHF_MASKOS },
14091 { "SHF_EXCLUDE", SHF_EXCLUDE },
14092 };
14093
14094 /* Returns TRUE if the section is to be included, otherwise FALSE. */
14095 bfd_boolean
14096 bfd_elf_lookup_section_flags (struct bfd_link_info *info,
14097 struct flag_info *flaginfo,
14098 asection *section)
14099 {
14100 const bfd_vma sh_flags = elf_section_flags (section);
14101
14102 if (!flaginfo->flags_initialized)
14103 {
14104 bfd *obfd = info->output_bfd;
14105 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
14106 struct flag_info_list *tf = flaginfo->flag_list;
14107 int with_hex = 0;
14108 int without_hex = 0;
14109
14110 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
14111 {
14112 unsigned i;
14113 flagword (*lookup) (char *);
14114
14115 lookup = bed->elf_backend_lookup_section_flags_hook;
14116 if (lookup != NULL)
14117 {
14118 flagword hexval = (*lookup) ((char *) tf->name);
14119
14120 if (hexval != 0)
14121 {
14122 if (tf->with == with_flags)
14123 with_hex |= hexval;
14124 else if (tf->with == without_flags)
14125 without_hex |= hexval;
14126 tf->valid = TRUE;
14127 continue;
14128 }
14129 }
14130 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
14131 {
14132 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
14133 {
14134 if (tf->with == with_flags)
14135 with_hex |= elf_flags_to_names[i].flag_value;
14136 else if (tf->with == without_flags)
14137 without_hex |= elf_flags_to_names[i].flag_value;
14138 tf->valid = TRUE;
14139 break;
14140 }
14141 }
14142 if (!tf->valid)
14143 {
14144 info->callbacks->einfo
14145 (_("unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
14146 return FALSE;
14147 }
14148 }
14149 flaginfo->flags_initialized = TRUE;
14150 flaginfo->only_with_flags |= with_hex;
14151 flaginfo->not_with_flags |= without_hex;
14152 }
14153
14154 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
14155 return FALSE;
14156
14157 if ((flaginfo->not_with_flags & sh_flags) != 0)
14158 return FALSE;
14159
14160 return TRUE;
14161 }
14162
14163 struct alloc_got_off_arg {
14164 bfd_vma gotoff;
14165 struct bfd_link_info *info;
14166 };
14167
14168 /* We need a special top-level link routine to convert got reference counts
14169 to real got offsets. */
14170
14171 static bfd_boolean
14172 elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
14173 {
14174 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
14175 bfd *obfd = gofarg->info->output_bfd;
14176 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
14177
14178 if (h->got.refcount > 0)
14179 {
14180 h->got.offset = gofarg->gotoff;
14181 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
14182 }
14183 else
14184 h->got.offset = (bfd_vma) -1;
14185
14186 return TRUE;
14187 }
14188
14189 /* And an accompanying bit to work out final got entry offsets once
14190 we're done. Should be called from final_link. */
14191
14192 bfd_boolean
14193 bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
14194 struct bfd_link_info *info)
14195 {
14196 bfd *i;
14197 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14198 bfd_vma gotoff;
14199 struct alloc_got_off_arg gofarg;
14200
14201 BFD_ASSERT (abfd == info->output_bfd);
14202
14203 if (! is_elf_hash_table (info->hash))
14204 return FALSE;
14205
14206 /* The GOT offset is relative to the .got section, but the GOT header is
14207 put into the .got.plt section, if the backend uses it. */
14208 if (bed->want_got_plt)
14209 gotoff = 0;
14210 else
14211 gotoff = bed->got_header_size;
14212
14213 /* Do the local .got entries first. */
14214 for (i = info->input_bfds; i; i = i->link.next)
14215 {
14216 bfd_signed_vma *local_got;
14217 size_t j, locsymcount;
14218 Elf_Internal_Shdr *symtab_hdr;
14219
14220 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
14221 continue;
14222
14223 local_got = elf_local_got_refcounts (i);
14224 if (!local_got)
14225 continue;
14226
14227 symtab_hdr = &elf_tdata (i)->symtab_hdr;
14228 if (elf_bad_symtab (i))
14229 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
14230 else
14231 locsymcount = symtab_hdr->sh_info;
14232
14233 for (j = 0; j < locsymcount; ++j)
14234 {
14235 if (local_got[j] > 0)
14236 {
14237 local_got[j] = gotoff;
14238 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
14239 }
14240 else
14241 local_got[j] = (bfd_vma) -1;
14242 }
14243 }
14244
14245 /* Then the global .got entries. .plt refcounts are handled by
14246 adjust_dynamic_symbol */
14247 gofarg.gotoff = gotoff;
14248 gofarg.info = info;
14249 elf_link_hash_traverse (elf_hash_table (info),
14250 elf_gc_allocate_got_offsets,
14251 &gofarg);
14252 return TRUE;
14253 }
14254
14255 /* Many folk need no more in the way of final link than this, once
14256 got entry reference counting is enabled. */
14257
14258 bfd_boolean
14259 bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
14260 {
14261 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
14262 return FALSE;
14263
14264 /* Invoke the regular ELF backend linker to do all the work. */
14265 return bfd_elf_final_link (abfd, info);
14266 }
14267
14268 bfd_boolean
14269 bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
14270 {
14271 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
14272
14273 if (rcookie->bad_symtab)
14274 rcookie->rel = rcookie->rels;
14275
14276 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
14277 {
14278 unsigned long r_symndx;
14279
14280 if (! rcookie->bad_symtab)
14281 if (rcookie->rel->r_offset > offset)
14282 return FALSE;
14283 if (rcookie->rel->r_offset != offset)
14284 continue;
14285
14286 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
14287 if (r_symndx == STN_UNDEF)
14288 return TRUE;
14289
14290 if (r_symndx >= rcookie->locsymcount
14291 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
14292 {
14293 struct elf_link_hash_entry *h;
14294
14295 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
14296
14297 while (h->root.type == bfd_link_hash_indirect
14298 || h->root.type == bfd_link_hash_warning)
14299 h = (struct elf_link_hash_entry *) h->root.u.i.link;
14300
14301 if ((h->root.type == bfd_link_hash_defined
14302 || h->root.type == bfd_link_hash_defweak)
14303 && (h->root.u.def.section->owner != rcookie->abfd
14304 || h->root.u.def.section->kept_section != NULL
14305 || discarded_section (h->root.u.def.section)))
14306 return TRUE;
14307 }
14308 else
14309 {
14310 /* It's not a relocation against a global symbol,
14311 but it could be a relocation against a local
14312 symbol for a discarded section. */
14313 asection *isec;
14314 Elf_Internal_Sym *isym;
14315
14316 /* Need to: get the symbol; get the section. */
14317 isym = &rcookie->locsyms[r_symndx];
14318 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
14319 if (isec != NULL
14320 && (isec->kept_section != NULL
14321 || discarded_section (isec)))
14322 return TRUE;
14323 }
14324 return FALSE;
14325 }
14326 return FALSE;
14327 }
14328
14329 /* Discard unneeded references to discarded sections.
14330 Returns -1 on error, 1 if any section's size was changed, 0 if
14331 nothing changed. This function assumes that the relocations are in
14332 sorted order, which is true for all known assemblers. */
14333
14334 int
14335 bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
14336 {
14337 struct elf_reloc_cookie cookie;
14338 asection *o;
14339 bfd *abfd;
14340 int changed = 0;
14341
14342 if (info->traditional_format
14343 || !is_elf_hash_table (info->hash))
14344 return 0;
14345
14346 o = bfd_get_section_by_name (output_bfd, ".stab");
14347 if (o != NULL)
14348 {
14349 asection *i;
14350
14351 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
14352 {
14353 if (i->size == 0
14354 || i->reloc_count == 0
14355 || i->sec_info_type != SEC_INFO_TYPE_STABS)
14356 continue;
14357
14358 abfd = i->owner;
14359 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14360 continue;
14361
14362 if (!init_reloc_cookie_for_section (&cookie, info, i))
14363 return -1;
14364
14365 if (_bfd_discard_section_stabs (abfd, i,
14366 elf_section_data (i)->sec_info,
14367 bfd_elf_reloc_symbol_deleted_p,
14368 &cookie))
14369 changed = 1;
14370
14371 fini_reloc_cookie_for_section (&cookie, i);
14372 }
14373 }
14374
14375 o = NULL;
14376 if (info->eh_frame_hdr_type != COMPACT_EH_HDR)
14377 o = bfd_get_section_by_name (output_bfd, ".eh_frame");
14378 if (o != NULL)
14379 {
14380 asection *i;
14381 int eh_changed = 0;
14382 unsigned int eh_alignment; /* Octets. */
14383
14384 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
14385 {
14386 if (i->size == 0)
14387 continue;
14388
14389 abfd = i->owner;
14390 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14391 continue;
14392
14393 if (!init_reloc_cookie_for_section (&cookie, info, i))
14394 return -1;
14395
14396 _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
14397 if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
14398 bfd_elf_reloc_symbol_deleted_p,
14399 &cookie))
14400 {
14401 eh_changed = 1;
14402 if (i->size != i->rawsize)
14403 changed = 1;
14404 }
14405
14406 fini_reloc_cookie_for_section (&cookie, i);
14407 }
14408
14409 eh_alignment = ((1 << o->alignment_power)
14410 * bfd_octets_per_byte (output_bfd, o));
14411 /* Skip over zero terminator, and prevent empty sections from
14412 adding alignment padding at the end. */
14413 for (i = o->map_tail.s; i != NULL; i = i->map_tail.s)
14414 if (i->size == 0)
14415 i->flags |= SEC_EXCLUDE;
14416 else if (i->size > 4)
14417 break;
14418 /* The last non-empty eh_frame section doesn't need padding. */
14419 if (i != NULL)
14420 i = i->map_tail.s;
14421 /* Any prior sections must pad the last FDE out to the output
14422 section alignment. Otherwise we might have zero padding
14423 between sections, which would be seen as a terminator. */
14424 for (; i != NULL; i = i->map_tail.s)
14425 if (i->size == 4)
14426 /* All but the last zero terminator should have been removed. */
14427 BFD_FAIL ();
14428 else
14429 {
14430 bfd_size_type size
14431 = (i->size + eh_alignment - 1) & -eh_alignment;
14432 if (i->size != size)
14433 {
14434 i->size = size;
14435 changed = 1;
14436 eh_changed = 1;
14437 }
14438 }
14439 if (eh_changed)
14440 elf_link_hash_traverse (elf_hash_table (info),
14441 _bfd_elf_adjust_eh_frame_global_symbol, NULL);
14442 }
14443
14444 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
14445 {
14446 const struct elf_backend_data *bed;
14447 asection *s;
14448
14449 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14450 continue;
14451 s = abfd->sections;
14452 if (s == NULL || s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
14453 continue;
14454
14455 bed = get_elf_backend_data (abfd);
14456
14457 if (bed->elf_backend_discard_info != NULL)
14458 {
14459 if (!init_reloc_cookie (&cookie, info, abfd))
14460 return -1;
14461
14462 if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
14463 changed = 1;
14464
14465 fini_reloc_cookie (&cookie, abfd);
14466 }
14467 }
14468
14469 if (info->eh_frame_hdr_type == COMPACT_EH_HDR)
14470 _bfd_elf_end_eh_frame_parsing (info);
14471
14472 if (info->eh_frame_hdr_type
14473 && !bfd_link_relocatable (info)
14474 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
14475 changed = 1;
14476
14477 return changed;
14478 }
14479
14480 bfd_boolean
14481 _bfd_elf_section_already_linked (bfd *abfd,
14482 asection *sec,
14483 struct bfd_link_info *info)
14484 {
14485 flagword flags;
14486 const char *name, *key;
14487 struct bfd_section_already_linked *l;
14488 struct bfd_section_already_linked_hash_entry *already_linked_list;
14489
14490 if (sec->output_section == bfd_abs_section_ptr)
14491 return FALSE;
14492
14493 flags = sec->flags;
14494
14495 /* Return if it isn't a linkonce section. A comdat group section
14496 also has SEC_LINK_ONCE set. */
14497 if ((flags & SEC_LINK_ONCE) == 0)
14498 return FALSE;
14499
14500 /* Don't put group member sections on our list of already linked
14501 sections. They are handled as a group via their group section. */
14502 if (elf_sec_group (sec) != NULL)
14503 return FALSE;
14504
14505 /* For a SHT_GROUP section, use the group signature as the key. */
14506 name = sec->name;
14507 if ((flags & SEC_GROUP) != 0
14508 && elf_next_in_group (sec) != NULL
14509 && elf_group_name (elf_next_in_group (sec)) != NULL)
14510 key = elf_group_name (elf_next_in_group (sec));
14511 else
14512 {
14513 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
14514 if (CONST_STRNEQ (name, ".gnu.linkonce.")
14515 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
14516 key++;
14517 else
14518 /* Must be a user linkonce section that doesn't follow gcc's
14519 naming convention. In this case we won't be matching
14520 single member groups. */
14521 key = name;
14522 }
14523
14524 already_linked_list = bfd_section_already_linked_table_lookup (key);
14525
14526 for (l = already_linked_list->entry; l != NULL; l = l->next)
14527 {
14528 /* We may have 2 different types of sections on the list: group
14529 sections with a signature of <key> (<key> is some string),
14530 and linkonce sections named .gnu.linkonce.<type>.<key>.
14531 Match like sections. LTO plugin sections are an exception.
14532 They are always named .gnu.linkonce.t.<key> and match either
14533 type of section. */
14534 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
14535 && ((flags & SEC_GROUP) != 0
14536 || strcmp (name, l->sec->name) == 0))
14537 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
14538 {
14539 /* The section has already been linked. See if we should
14540 issue a warning. */
14541 if (!_bfd_handle_already_linked (sec, l, info))
14542 return FALSE;
14543
14544 if (flags & SEC_GROUP)
14545 {
14546 asection *first = elf_next_in_group (sec);
14547 asection *s = first;
14548
14549 while (s != NULL)
14550 {
14551 s->output_section = bfd_abs_section_ptr;
14552 /* Record which group discards it. */
14553 s->kept_section = l->sec;
14554 s = elf_next_in_group (s);
14555 /* These lists are circular. */
14556 if (s == first)
14557 break;
14558 }
14559 }
14560
14561 return TRUE;
14562 }
14563 }
14564
14565 /* A single member comdat group section may be discarded by a
14566 linkonce section and vice versa. */
14567 if ((flags & SEC_GROUP) != 0)
14568 {
14569 asection *first = elf_next_in_group (sec);
14570
14571 if (first != NULL && elf_next_in_group (first) == first)
14572 /* Check this single member group against linkonce sections. */
14573 for (l = already_linked_list->entry; l != NULL; l = l->next)
14574 if ((l->sec->flags & SEC_GROUP) == 0
14575 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
14576 {
14577 first->output_section = bfd_abs_section_ptr;
14578 first->kept_section = l->sec;
14579 sec->output_section = bfd_abs_section_ptr;
14580 break;
14581 }
14582 }
14583 else
14584 /* Check this linkonce section against single member groups. */
14585 for (l = already_linked_list->entry; l != NULL; l = l->next)
14586 if (l->sec->flags & SEC_GROUP)
14587 {
14588 asection *first = elf_next_in_group (l->sec);
14589
14590 if (first != NULL
14591 && elf_next_in_group (first) == first
14592 && bfd_elf_match_symbols_in_sections (first, sec, info))
14593 {
14594 sec->output_section = bfd_abs_section_ptr;
14595 sec->kept_section = first;
14596 break;
14597 }
14598 }
14599
14600 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
14601 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
14602 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
14603 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
14604 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
14605 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
14606 `.gnu.linkonce.t.F' section from a different bfd not requiring any
14607 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
14608 The reverse order cannot happen as there is never a bfd with only the
14609 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
14610 matter as here were are looking only for cross-bfd sections. */
14611
14612 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
14613 for (l = already_linked_list->entry; l != NULL; l = l->next)
14614 if ((l->sec->flags & SEC_GROUP) == 0
14615 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
14616 {
14617 if (abfd != l->sec->owner)
14618 sec->output_section = bfd_abs_section_ptr;
14619 break;
14620 }
14621
14622 /* This is the first section with this name. Record it. */
14623 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
14624 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
14625 return sec->output_section == bfd_abs_section_ptr;
14626 }
14627
14628 bfd_boolean
14629 _bfd_elf_common_definition (Elf_Internal_Sym *sym)
14630 {
14631 return sym->st_shndx == SHN_COMMON;
14632 }
14633
14634 unsigned int
14635 _bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
14636 {
14637 return SHN_COMMON;
14638 }
14639
14640 asection *
14641 _bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
14642 {
14643 return bfd_com_section_ptr;
14644 }
14645
14646 bfd_vma
14647 _bfd_elf_default_got_elt_size (bfd *abfd,
14648 struct bfd_link_info *info ATTRIBUTE_UNUSED,
14649 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
14650 bfd *ibfd ATTRIBUTE_UNUSED,
14651 unsigned long symndx ATTRIBUTE_UNUSED)
14652 {
14653 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14654 return bed->s->arch_size / 8;
14655 }
14656
14657 /* Routines to support the creation of dynamic relocs. */
14658
14659 /* Returns the name of the dynamic reloc section associated with SEC. */
14660
14661 static const char *
14662 get_dynamic_reloc_section_name (bfd * abfd,
14663 asection * sec,
14664 bfd_boolean is_rela)
14665 {
14666 char *name;
14667 const char *old_name = bfd_section_name (sec);
14668 const char *prefix = is_rela ? ".rela" : ".rel";
14669
14670 if (old_name == NULL)
14671 return NULL;
14672
14673 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
14674 sprintf (name, "%s%s", prefix, old_name);
14675
14676 return name;
14677 }
14678
14679 /* Returns the dynamic reloc section associated with SEC.
14680 If necessary compute the name of the dynamic reloc section based
14681 on SEC's name (looked up in ABFD's string table) and the setting
14682 of IS_RELA. */
14683
14684 asection *
14685 _bfd_elf_get_dynamic_reloc_section (bfd * abfd,
14686 asection * sec,
14687 bfd_boolean is_rela)
14688 {
14689 asection * reloc_sec = elf_section_data (sec)->sreloc;
14690
14691 if (reloc_sec == NULL)
14692 {
14693 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14694
14695 if (name != NULL)
14696 {
14697 reloc_sec = bfd_get_linker_section (abfd, name);
14698
14699 if (reloc_sec != NULL)
14700 elf_section_data (sec)->sreloc = reloc_sec;
14701 }
14702 }
14703
14704 return reloc_sec;
14705 }
14706
14707 /* Returns the dynamic reloc section associated with SEC. If the
14708 section does not exist it is created and attached to the DYNOBJ
14709 bfd and stored in the SRELOC field of SEC's elf_section_data
14710 structure.
14711
14712 ALIGNMENT is the alignment for the newly created section and
14713 IS_RELA defines whether the name should be .rela.<SEC's name>
14714 or .rel.<SEC's name>. The section name is looked up in the
14715 string table associated with ABFD. */
14716
14717 asection *
14718 _bfd_elf_make_dynamic_reloc_section (asection *sec,
14719 bfd *dynobj,
14720 unsigned int alignment,
14721 bfd *abfd,
14722 bfd_boolean is_rela)
14723 {
14724 asection * reloc_sec = elf_section_data (sec)->sreloc;
14725
14726 if (reloc_sec == NULL)
14727 {
14728 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14729
14730 if (name == NULL)
14731 return NULL;
14732
14733 reloc_sec = bfd_get_linker_section (dynobj, name);
14734
14735 if (reloc_sec == NULL)
14736 {
14737 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
14738 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
14739 if ((sec->flags & SEC_ALLOC) != 0)
14740 flags |= SEC_ALLOC | SEC_LOAD;
14741
14742 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
14743 if (reloc_sec != NULL)
14744 {
14745 /* _bfd_elf_get_sec_type_attr chooses a section type by
14746 name. Override as it may be wrong, eg. for a user
14747 section named "auto" we'll get ".relauto" which is
14748 seen to be a .rela section. */
14749 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
14750 if (!bfd_set_section_alignment (reloc_sec, alignment))
14751 reloc_sec = NULL;
14752 }
14753 }
14754
14755 elf_section_data (sec)->sreloc = reloc_sec;
14756 }
14757
14758 return reloc_sec;
14759 }
14760
14761 /* Copy the ELF symbol type and other attributes for a linker script
14762 assignment from HSRC to HDEST. Generally this should be treated as
14763 if we found a strong non-dynamic definition for HDEST (except that
14764 ld ignores multiple definition errors). */
14765 void
14766 _bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
14767 struct bfd_link_hash_entry *hdest,
14768 struct bfd_link_hash_entry *hsrc)
14769 {
14770 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
14771 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
14772 Elf_Internal_Sym isym;
14773
14774 ehdest->type = ehsrc->type;
14775 ehdest->target_internal = ehsrc->target_internal;
14776
14777 isym.st_other = ehsrc->other;
14778 elf_merge_st_other (abfd, ehdest, &isym, NULL, TRUE, FALSE);
14779 }
14780
14781 /* Append a RELA relocation REL to section S in BFD. */
14782
14783 void
14784 elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14785 {
14786 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14787 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
14788 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
14789 bed->s->swap_reloca_out (abfd, rel, loc);
14790 }
14791
14792 /* Append a REL relocation REL to section S in BFD. */
14793
14794 void
14795 elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14796 {
14797 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14798 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
14799 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
14800 bed->s->swap_reloc_out (abfd, rel, loc);
14801 }
14802
14803 /* Define __start, __stop, .startof. or .sizeof. symbol. */
14804
14805 struct bfd_link_hash_entry *
14806 bfd_elf_define_start_stop (struct bfd_link_info *info,
14807 const char *symbol, asection *sec)
14808 {
14809 struct elf_link_hash_entry *h;
14810
14811 h = elf_link_hash_lookup (elf_hash_table (info), symbol,
14812 FALSE, FALSE, TRUE);
14813 /* NB: Common symbols will be turned into definition later. */
14814 if (h != NULL
14815 && (h->root.type == bfd_link_hash_undefined
14816 || h->root.type == bfd_link_hash_undefweak
14817 || ((h->ref_regular || h->def_dynamic)
14818 && !h->def_regular
14819 && h->root.type != bfd_link_hash_common)))
14820 {
14821 bfd_boolean was_dynamic = h->ref_dynamic || h->def_dynamic;
14822 h->verinfo.verdef = NULL;
14823 h->root.type = bfd_link_hash_defined;
14824 h->root.u.def.section = sec;
14825 h->root.u.def.value = 0;
14826 h->def_regular = 1;
14827 h->def_dynamic = 0;
14828 h->start_stop = 1;
14829 h->u2.start_stop_section = sec;
14830 if (symbol[0] == '.')
14831 {
14832 /* .startof. and .sizeof. symbols are local. */
14833 const struct elf_backend_data *bed;
14834 bed = get_elf_backend_data (info->output_bfd);
14835 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
14836 }
14837 else
14838 {
14839 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
14840 h->other = ((h->other & ~ELF_ST_VISIBILITY (-1))
14841 | info->start_stop_visibility);
14842 if (was_dynamic)
14843 bfd_elf_link_record_dynamic_symbol (info, h);
14844 }
14845 return &h->root;
14846 }
14847 return NULL;
14848 }
14849
14850 /* Find dynamic relocs for H that apply to read-only sections. */
14851
14852 asection *
14853 _bfd_elf_readonly_dynrelocs (struct elf_link_hash_entry *h)
14854 {
14855 struct elf_dyn_relocs *p;
14856
14857 for (p = h->dyn_relocs; p != NULL; p = p->next)
14858 {
14859 asection *s = p->sec->output_section;
14860
14861 if (s != NULL && (s->flags & SEC_READONLY) != 0)
14862 return p->sec;
14863 }
14864 return NULL;
14865 }
14866
14867 /* Set DF_TEXTREL if we find any dynamic relocs that apply to
14868 read-only sections. */
14869
14870 bfd_boolean
14871 _bfd_elf_maybe_set_textrel (struct elf_link_hash_entry *h, void *inf)
14872 {
14873 asection *sec;
14874
14875 if (h->root.type == bfd_link_hash_indirect)
14876 return TRUE;
14877
14878 sec = _bfd_elf_readonly_dynrelocs (h);
14879 if (sec != NULL)
14880 {
14881 struct bfd_link_info *info = (struct bfd_link_info *) inf;
14882
14883 info->flags |= DF_TEXTREL;
14884 /* xgettext:c-format */
14885 info->callbacks->minfo (_("%pB: dynamic relocation against `%pT' "
14886 "in read-only section `%pA'\n"),
14887 sec->owner, h->root.root.string, sec);
14888
14889 if (bfd_link_textrel_check (info))
14890 /* xgettext:c-format */
14891 info->callbacks->einfo (_("%P: %pB: warning: relocation against `%s' "
14892 "in read-only section `%pA'\n"),
14893 sec->owner, h->root.root.string, sec);
14894
14895 /* Not an error, just cut short the traversal. */
14896 return FALSE;
14897 }
14898 return TRUE;
14899 }
14900
14901 /* Add dynamic tags. */
14902
14903 bfd_boolean
14904 _bfd_elf_add_dynamic_tags (bfd *output_bfd, struct bfd_link_info *info,
14905 bfd_boolean need_dynamic_reloc)
14906 {
14907 struct elf_link_hash_table *htab = elf_hash_table (info);
14908
14909 if (htab->dynamic_sections_created)
14910 {
14911 /* Add some entries to the .dynamic section. We fill in the
14912 values later, in finish_dynamic_sections, but we must add
14913 the entries now so that we get the correct size for the
14914 .dynamic section. The DT_DEBUG entry is filled in by the
14915 dynamic linker and used by the debugger. */
14916 #define add_dynamic_entry(TAG, VAL) \
14917 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
14918
14919 const struct elf_backend_data *bed
14920 = get_elf_backend_data (output_bfd);
14921
14922 if (bfd_link_executable (info))
14923 {
14924 if (!add_dynamic_entry (DT_DEBUG, 0))
14925 return FALSE;
14926 }
14927
14928 if (htab->dt_pltgot_required || htab->splt->size != 0)
14929 {
14930 /* DT_PLTGOT is used by prelink even if there is no PLT
14931 relocation. */
14932 if (!add_dynamic_entry (DT_PLTGOT, 0))
14933 return FALSE;
14934 }
14935
14936 if (htab->dt_jmprel_required || htab->srelplt->size != 0)
14937 {
14938 if (!add_dynamic_entry (DT_PLTRELSZ, 0)
14939 || !add_dynamic_entry (DT_PLTREL,
14940 (bed->rela_plts_and_copies_p
14941 ? DT_RELA : DT_REL))
14942 || !add_dynamic_entry (DT_JMPREL, 0))
14943 return FALSE;
14944 }
14945
14946 if (htab->tlsdesc_plt
14947 && (!add_dynamic_entry (DT_TLSDESC_PLT, 0)
14948 || !add_dynamic_entry (DT_TLSDESC_GOT, 0)))
14949 return FALSE;
14950
14951 if (need_dynamic_reloc)
14952 {
14953 if (bed->rela_plts_and_copies_p)
14954 {
14955 if (!add_dynamic_entry (DT_RELA, 0)
14956 || !add_dynamic_entry (DT_RELASZ, 0)
14957 || !add_dynamic_entry (DT_RELAENT,
14958 bed->s->sizeof_rela))
14959 return FALSE;
14960 }
14961 else
14962 {
14963 if (!add_dynamic_entry (DT_REL, 0)
14964 || !add_dynamic_entry (DT_RELSZ, 0)
14965 || !add_dynamic_entry (DT_RELENT,
14966 bed->s->sizeof_rel))
14967 return FALSE;
14968 }
14969
14970 /* If any dynamic relocs apply to a read-only section,
14971 then we need a DT_TEXTREL entry. */
14972 if ((info->flags & DF_TEXTREL) == 0)
14973 elf_link_hash_traverse (htab, _bfd_elf_maybe_set_textrel,
14974 info);
14975
14976 if ((info->flags & DF_TEXTREL) != 0)
14977 {
14978 if (htab->ifunc_resolvers)
14979 info->callbacks->einfo
14980 (_("%P: warning: GNU indirect functions with DT_TEXTREL "
14981 "may result in a segfault at runtime; recompile with %s\n"),
14982 bfd_link_dll (info) ? "-fPIC" : "-fPIE");
14983
14984 if (!add_dynamic_entry (DT_TEXTREL, 0))
14985 return FALSE;
14986 }
14987 }
14988 }
14989 #undef add_dynamic_entry
14990
14991 return TRUE;
14992 }