PR23282, Reinstate seek optimization
[deliverable/binutils-gdb.git] / bfd / elflink.c
CommitLineData
252b5132 1/* ELF linking support for BFD.
219d1afa 2 Copyright (C) 1995-2018 Free Software Foundation, Inc.
252b5132 3
8fdd7217 4 This file is part of BFD, the Binary File Descriptor library.
252b5132 5
8fdd7217
NC
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
cd123cb7 8 the Free Software Foundation; either version 3 of the License, or
8fdd7217 9 (at your option) any later version.
252b5132 10
8fdd7217
NC
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.
252b5132 15
8fdd7217
NC
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
cd123cb7
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
252b5132 20
252b5132 21#include "sysdep.h"
3db64b00 22#include "bfd.h"
53df40a4 23#include "bfd_stdint.h"
252b5132
RH
24#include "bfdlink.h"
25#include "libbfd.h"
26#define ARCH_SIZE 0
27#include "elf-bfd.h"
4ad4eba5 28#include "safe-ctype.h"
ccf2f652 29#include "libiberty.h"
66eb6687 30#include "objalloc.h"
08ce1d72 31#if BFD_SUPPORTS_PLUGINS
7d0b9ebc 32#include "plugin-api.h"
7dc3990e
L
33#include "plugin.h"
34#endif
252b5132 35
28caa186
AM
36/* This struct is used to pass information to routines called via
37 elf_link_hash_traverse which must return failure. */
38
39struct elf_info_failed
40{
41 struct bfd_link_info *info;
28caa186
AM
42 bfd_boolean failed;
43};
44
45/* This structure is used to pass information to
46 _bfd_elf_link_find_version_dependencies. */
47
48struct elf_find_verdep_info
49{
50 /* General link information. */
51 struct bfd_link_info *info;
52 /* The number of dependencies. */
53 unsigned int vers;
54 /* Whether we had a failure. */
55 bfd_boolean failed;
56};
57
58static bfd_boolean _bfd_elf_fix_symbol_flags
59 (struct elf_link_hash_entry *, struct elf_info_failed *);
60
2f0c68f2
CM
61asection *
62_bfd_elf_section_for_symbol (struct elf_reloc_cookie *cookie,
63 unsigned long r_symndx,
64 bfd_boolean discard)
65{
66 if (r_symndx >= cookie->locsymcount
67 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
68 {
69 struct elf_link_hash_entry *h;
70
71 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
72
73 while (h->root.type == bfd_link_hash_indirect
74 || h->root.type == bfd_link_hash_warning)
75 h = (struct elf_link_hash_entry *) h->root.u.i.link;
76
77 if ((h->root.type == bfd_link_hash_defined
78 || h->root.type == bfd_link_hash_defweak)
79 && discarded_section (h->root.u.def.section))
07d6d2b8 80 return h->root.u.def.section;
2f0c68f2
CM
81 else
82 return NULL;
83 }
84 else
85 {
86 /* It's not a relocation against a global symbol,
87 but it could be a relocation against a local
88 symbol for a discarded section. */
89 asection *isec;
90 Elf_Internal_Sym *isym;
91
92 /* Need to: get the symbol; get the section. */
93 isym = &cookie->locsyms[r_symndx];
94 isec = bfd_section_from_elf_index (cookie->abfd, isym->st_shndx);
95 if (isec != NULL
96 && discard ? discarded_section (isec) : 1)
97 return isec;
98 }
99 return NULL;
100}
101
d98685ac
AM
102/* Define a symbol in a dynamic linkage section. */
103
104struct elf_link_hash_entry *
105_bfd_elf_define_linkage_sym (bfd *abfd,
106 struct bfd_link_info *info,
107 asection *sec,
108 const char *name)
109{
110 struct elf_link_hash_entry *h;
111 struct bfd_link_hash_entry *bh;
ccabcbe5 112 const struct elf_backend_data *bed;
d98685ac
AM
113
114 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
115 if (h != NULL)
116 {
117 /* Zap symbol defined in an as-needed lib that wasn't linked.
118 This is a symptom of a larger problem: Absolute symbols
119 defined in shared libraries can't be overridden, because we
120 lose the link to the bfd which is via the symbol section. */
121 h->root.type = bfd_link_hash_new;
ad32986f 122 bh = &h->root;
d98685ac 123 }
ad32986f
NC
124 else
125 bh = NULL;
d98685ac 126
cf18fda4 127 bed = get_elf_backend_data (abfd);
d98685ac 128 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
cf18fda4 129 sec, 0, NULL, FALSE, bed->collect,
d98685ac
AM
130 &bh))
131 return NULL;
132 h = (struct elf_link_hash_entry *) bh;
ad32986f 133 BFD_ASSERT (h != NULL);
d98685ac 134 h->def_regular = 1;
e28df02b 135 h->non_elf = 0;
12b2843a 136 h->root.linker_def = 1;
d98685ac 137 h->type = STT_OBJECT;
00b7642b
AM
138 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
139 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
d98685ac 140
ccabcbe5 141 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
d98685ac
AM
142 return h;
143}
144
b34976b6 145bfd_boolean
268b6b39 146_bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
252b5132
RH
147{
148 flagword flags;
aad5d350 149 asection *s;
252b5132 150 struct elf_link_hash_entry *h;
9c5bfbb7 151 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6de2ae4a 152 struct elf_link_hash_table *htab = elf_hash_table (info);
252b5132
RH
153
154 /* This function may be called more than once. */
ce558b89 155 if (htab->sgot != NULL)
b34976b6 156 return TRUE;
252b5132 157
e5a52504 158 flags = bed->dynamic_sec_flags;
252b5132 159
14b2f831
AM
160 s = bfd_make_section_anyway_with_flags (abfd,
161 (bed->rela_plts_and_copies_p
162 ? ".rela.got" : ".rel.got"),
163 (bed->dynamic_sec_flags
164 | SEC_READONLY));
6de2ae4a
L
165 if (s == NULL
166 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
167 return FALSE;
168 htab->srelgot = s;
252b5132 169
14b2f831 170 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
64e77c6d
L
171 if (s == NULL
172 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
173 return FALSE;
174 htab->sgot = s;
175
252b5132
RH
176 if (bed->want_got_plt)
177 {
14b2f831 178 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
252b5132 179 if (s == NULL
6de2ae4a
L
180 || !bfd_set_section_alignment (abfd, s,
181 bed->s->log_file_align))
b34976b6 182 return FALSE;
6de2ae4a 183 htab->sgotplt = s;
252b5132
RH
184 }
185
64e77c6d
L
186 /* The first bit of the global offset table is the header. */
187 s->size += bed->got_header_size;
188
2517a57f
AM
189 if (bed->want_got_sym)
190 {
191 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
192 (or .got.plt) section. We don't do this in the linker script
193 because we don't want to define the symbol if we are not creating
194 a global offset table. */
6de2ae4a
L
195 h = _bfd_elf_define_linkage_sym (abfd, info, s,
196 "_GLOBAL_OFFSET_TABLE_");
2517a57f 197 elf_hash_table (info)->hgot = h;
d98685ac
AM
198 if (h == NULL)
199 return FALSE;
2517a57f 200 }
252b5132 201
b34976b6 202 return TRUE;
252b5132
RH
203}
204\f
7e9f0867
AM
205/* Create a strtab to hold the dynamic symbol names. */
206static bfd_boolean
207_bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
208{
209 struct elf_link_hash_table *hash_table;
210
211 hash_table = elf_hash_table (info);
212 if (hash_table->dynobj == NULL)
6cd255ca
L
213 {
214 /* We may not set dynobj, an input file holding linker created
215 dynamic sections to abfd, which may be a dynamic object with
216 its own dynamic sections. We need to find a normal input file
217 to hold linker created sections if possible. */
218 if ((abfd->flags & (DYNAMIC | BFD_PLUGIN)) != 0)
219 {
220 bfd *ibfd;
57963c05 221 asection *s;
6cd255ca 222 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
6645479e 223 if ((ibfd->flags
57963c05
AM
224 & (DYNAMIC | BFD_LINKER_CREATED | BFD_PLUGIN)) == 0
225 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
226 && !((s = ibfd->sections) != NULL
227 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS))
6cd255ca
L
228 {
229 abfd = ibfd;
230 break;
231 }
232 }
233 hash_table->dynobj = abfd;
234 }
7e9f0867
AM
235
236 if (hash_table->dynstr == NULL)
237 {
238 hash_table->dynstr = _bfd_elf_strtab_init ();
239 if (hash_table->dynstr == NULL)
240 return FALSE;
241 }
242 return TRUE;
243}
244
45d6a902
AM
245/* Create some sections which will be filled in with dynamic linking
246 information. ABFD is an input file which requires dynamic sections
247 to be created. The dynamic sections take up virtual memory space
248 when the final executable is run, so we need to create them before
249 addresses are assigned to the output sections. We work out the
250 actual contents and size of these sections later. */
252b5132 251
b34976b6 252bfd_boolean
268b6b39 253_bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
252b5132 254{
45d6a902 255 flagword flags;
91d6fa6a 256 asection *s;
9c5bfbb7 257 const struct elf_backend_data *bed;
9637f6ef 258 struct elf_link_hash_entry *h;
252b5132 259
0eddce27 260 if (! is_elf_hash_table (info->hash))
45d6a902
AM
261 return FALSE;
262
263 if (elf_hash_table (info)->dynamic_sections_created)
264 return TRUE;
265
7e9f0867
AM
266 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
267 return FALSE;
45d6a902 268
7e9f0867 269 abfd = elf_hash_table (info)->dynobj;
e5a52504
MM
270 bed = get_elf_backend_data (abfd);
271
272 flags = bed->dynamic_sec_flags;
45d6a902
AM
273
274 /* A dynamically linked executable has a .interp section, but a
275 shared library does not. */
9b8b325a 276 if (bfd_link_executable (info) && !info->nointerp)
252b5132 277 {
14b2f831
AM
278 s = bfd_make_section_anyway_with_flags (abfd, ".interp",
279 flags | SEC_READONLY);
3496cb2a 280 if (s == NULL)
45d6a902
AM
281 return FALSE;
282 }
bb0deeff 283
45d6a902
AM
284 /* Create sections to hold version informations. These are removed
285 if they are not needed. */
14b2f831
AM
286 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
287 flags | SEC_READONLY);
45d6a902 288 if (s == NULL
45d6a902
AM
289 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
290 return FALSE;
291
14b2f831
AM
292 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
293 flags | SEC_READONLY);
45d6a902 294 if (s == NULL
45d6a902
AM
295 || ! bfd_set_section_alignment (abfd, s, 1))
296 return FALSE;
297
14b2f831
AM
298 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
299 flags | SEC_READONLY);
45d6a902 300 if (s == NULL
45d6a902
AM
301 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
302 return FALSE;
303
14b2f831
AM
304 s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
305 flags | SEC_READONLY);
45d6a902 306 if (s == NULL
45d6a902
AM
307 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
308 return FALSE;
cae1fbbb 309 elf_hash_table (info)->dynsym = s;
45d6a902 310
14b2f831
AM
311 s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
312 flags | SEC_READONLY);
3496cb2a 313 if (s == NULL)
45d6a902
AM
314 return FALSE;
315
14b2f831 316 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
45d6a902 317 if (s == NULL
45d6a902
AM
318 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
319 return FALSE;
320
321 /* The special symbol _DYNAMIC is always set to the start of the
77cfaee6
AM
322 .dynamic section. We could set _DYNAMIC in a linker script, but we
323 only want to define it if we are, in fact, creating a .dynamic
324 section. We don't want to define it if there is no .dynamic
325 section, since on some ELF platforms the start up code examines it
326 to decide how to initialize the process. */
9637f6ef
L
327 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
328 elf_hash_table (info)->hdynamic = h;
329 if (h == NULL)
45d6a902
AM
330 return FALSE;
331
fdc90cb4
JJ
332 if (info->emit_hash)
333 {
14b2f831
AM
334 s = bfd_make_section_anyway_with_flags (abfd, ".hash",
335 flags | SEC_READONLY);
fdc90cb4
JJ
336 if (s == NULL
337 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
338 return FALSE;
339 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
340 }
341
342 if (info->emit_gnu_hash)
343 {
14b2f831
AM
344 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
345 flags | SEC_READONLY);
fdc90cb4
JJ
346 if (s == NULL
347 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
348 return FALSE;
349 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
350 4 32-bit words followed by variable count of 64-bit words, then
351 variable count of 32-bit words. */
352 if (bed->s->arch_size == 64)
353 elf_section_data (s)->this_hdr.sh_entsize = 0;
354 else
355 elf_section_data (s)->this_hdr.sh_entsize = 4;
356 }
45d6a902
AM
357
358 /* Let the backend create the rest of the sections. This lets the
359 backend set the right flags. The backend will normally create
360 the .got and .plt sections. */
894891db
NC
361 if (bed->elf_backend_create_dynamic_sections == NULL
362 || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
45d6a902
AM
363 return FALSE;
364
365 elf_hash_table (info)->dynamic_sections_created = TRUE;
366
367 return TRUE;
368}
369
370/* Create dynamic sections when linking against a dynamic object. */
371
372bfd_boolean
268b6b39 373_bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
45d6a902
AM
374{
375 flagword flags, pltflags;
7325306f 376 struct elf_link_hash_entry *h;
45d6a902 377 asection *s;
9c5bfbb7 378 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6de2ae4a 379 struct elf_link_hash_table *htab = elf_hash_table (info);
45d6a902 380
252b5132
RH
381 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
382 .rel[a].bss sections. */
e5a52504 383 flags = bed->dynamic_sec_flags;
252b5132
RH
384
385 pltflags = flags;
252b5132 386 if (bed->plt_not_loaded)
6df4d94c
MM
387 /* We do not clear SEC_ALLOC here because we still want the OS to
388 allocate space for the section; it's just that there's nothing
389 to read in from the object file. */
5d1634d7 390 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
6df4d94c
MM
391 else
392 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
252b5132
RH
393 if (bed->plt_readonly)
394 pltflags |= SEC_READONLY;
395
14b2f831 396 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
252b5132 397 if (s == NULL
252b5132 398 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
b34976b6 399 return FALSE;
6de2ae4a 400 htab->splt = s;
252b5132 401
d98685ac
AM
402 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
403 .plt section. */
7325306f
RS
404 if (bed->want_plt_sym)
405 {
406 h = _bfd_elf_define_linkage_sym (abfd, info, s,
407 "_PROCEDURE_LINKAGE_TABLE_");
408 elf_hash_table (info)->hplt = h;
409 if (h == NULL)
410 return FALSE;
411 }
252b5132 412
14b2f831
AM
413 s = bfd_make_section_anyway_with_flags (abfd,
414 (bed->rela_plts_and_copies_p
415 ? ".rela.plt" : ".rel.plt"),
416 flags | SEC_READONLY);
252b5132 417 if (s == NULL
45d6a902 418 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
b34976b6 419 return FALSE;
6de2ae4a 420 htab->srelplt = s;
252b5132
RH
421
422 if (! _bfd_elf_create_got_section (abfd, info))
b34976b6 423 return FALSE;
252b5132 424
3018b441
RH
425 if (bed->want_dynbss)
426 {
427 /* The .dynbss section is a place to put symbols which are defined
428 by dynamic objects, are referenced by regular objects, and are
429 not functions. We must allocate space for them in the process
430 image and use a R_*_COPY reloc to tell the dynamic linker to
431 initialize them at run time. The linker script puts the .dynbss
432 section into the .bss section of the final image. */
14b2f831 433 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
afbf7e8e 434 SEC_ALLOC | SEC_LINKER_CREATED);
3496cb2a 435 if (s == NULL)
b34976b6 436 return FALSE;
9d19e4fd 437 htab->sdynbss = s;
252b5132 438
5474d94f
AM
439 if (bed->want_dynrelro)
440 {
441 /* Similarly, but for symbols that were originally in read-only
afbf7e8e
AM
442 sections. This section doesn't really need to have contents,
443 but make it like other .data.rel.ro sections. */
5474d94f 444 s = bfd_make_section_anyway_with_flags (abfd, ".data.rel.ro",
afbf7e8e 445 flags);
5474d94f
AM
446 if (s == NULL)
447 return FALSE;
448 htab->sdynrelro = s;
449 }
450
3018b441 451 /* The .rel[a].bss section holds copy relocs. This section is not
77cfaee6
AM
452 normally needed. We need to create it here, though, so that the
453 linker will map it to an output section. We can't just create it
454 only if we need it, because we will not know whether we need it
455 until we have seen all the input files, and the first time the
456 main linker code calls BFD after examining all the input files
457 (size_dynamic_sections) the input sections have already been
458 mapped to the output sections. If the section turns out not to
459 be needed, we can discard it later. We will never need this
460 section when generating a shared object, since they do not use
461 copy relocs. */
9d19e4fd 462 if (bfd_link_executable (info))
3018b441 463 {
14b2f831
AM
464 s = bfd_make_section_anyway_with_flags (abfd,
465 (bed->rela_plts_and_copies_p
466 ? ".rela.bss" : ".rel.bss"),
467 flags | SEC_READONLY);
3018b441 468 if (s == NULL
45d6a902 469 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
b34976b6 470 return FALSE;
9d19e4fd 471 htab->srelbss = s;
5474d94f
AM
472
473 if (bed->want_dynrelro)
474 {
475 s = (bfd_make_section_anyway_with_flags
476 (abfd, (bed->rela_plts_and_copies_p
477 ? ".rela.data.rel.ro" : ".rel.data.rel.ro"),
478 flags | SEC_READONLY));
479 if (s == NULL
480 || ! bfd_set_section_alignment (abfd, s,
481 bed->s->log_file_align))
482 return FALSE;
483 htab->sreldynrelro = s;
484 }
3018b441 485 }
252b5132
RH
486 }
487
b34976b6 488 return TRUE;
252b5132
RH
489}
490\f
252b5132
RH
491/* Record a new dynamic symbol. We record the dynamic symbols as we
492 read the input files, since we need to have a list of all of them
493 before we can determine the final sizes of the output sections.
494 Note that we may actually call this function even though we are not
495 going to output any dynamic symbols; in some cases we know that a
496 symbol should be in the dynamic symbol table, but only if there is
497 one. */
498
b34976b6 499bfd_boolean
c152c796
AM
500bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
501 struct elf_link_hash_entry *h)
252b5132
RH
502{
503 if (h->dynindx == -1)
504 {
2b0f7ef9 505 struct elf_strtab_hash *dynstr;
68b6ddd0 506 char *p;
252b5132 507 const char *name;
ef53be89 508 size_t indx;
252b5132 509
7a13edea
NC
510 /* XXX: The ABI draft says the linker must turn hidden and
511 internal symbols into STB_LOCAL symbols when producing the
512 DSO. However, if ld.so honors st_other in the dynamic table,
513 this would not be necessary. */
514 switch (ELF_ST_VISIBILITY (h->other))
515 {
516 case STV_INTERNAL:
517 case STV_HIDDEN:
9d6eee78
L
518 if (h->root.type != bfd_link_hash_undefined
519 && h->root.type != bfd_link_hash_undefweak)
38048eb9 520 {
f5385ebf 521 h->forced_local = 1;
67687978
PB
522 if (!elf_hash_table (info)->is_relocatable_executable)
523 return TRUE;
7a13edea 524 }
0444bdd4 525
7a13edea
NC
526 default:
527 break;
528 }
529
252b5132
RH
530 h->dynindx = elf_hash_table (info)->dynsymcount;
531 ++elf_hash_table (info)->dynsymcount;
532
533 dynstr = elf_hash_table (info)->dynstr;
534 if (dynstr == NULL)
535 {
536 /* Create a strtab to hold the dynamic symbol names. */
2b0f7ef9 537 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
252b5132 538 if (dynstr == NULL)
b34976b6 539 return FALSE;
252b5132
RH
540 }
541
542 /* We don't put any version information in the dynamic string
aad5d350 543 table. */
252b5132
RH
544 name = h->root.root.string;
545 p = strchr (name, ELF_VER_CHR);
68b6ddd0
AM
546 if (p != NULL)
547 /* We know that the p points into writable memory. In fact,
548 there are only a few symbols that have read-only names, being
549 those like _GLOBAL_OFFSET_TABLE_ that are created specially
550 by the backends. Most symbols will have names pointing into
551 an ELF string table read from a file, or to objalloc memory. */
552 *p = 0;
553
554 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
555
556 if (p != NULL)
557 *p = ELF_VER_CHR;
252b5132 558
ef53be89 559 if (indx == (size_t) -1)
b34976b6 560 return FALSE;
252b5132
RH
561 h->dynstr_index = indx;
562 }
563
b34976b6 564 return TRUE;
252b5132 565}
45d6a902 566\f
55255dae
L
567/* Mark a symbol dynamic. */
568
28caa186 569static void
55255dae 570bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
40b36307
L
571 struct elf_link_hash_entry *h,
572 Elf_Internal_Sym *sym)
55255dae 573{
40b36307 574 struct bfd_elf_dynamic_list *d = info->dynamic_list;
55255dae 575
40b36307 576 /* It may be called more than once on the same H. */
0e1862bb 577 if(h->dynamic || bfd_link_relocatable (info))
55255dae
L
578 return;
579
40b36307
L
580 if ((info->dynamic_data
581 && (h->type == STT_OBJECT
b8871f35 582 || h->type == STT_COMMON
40b36307 583 || (sym != NULL
b8871f35
L
584 && (ELF_ST_TYPE (sym->st_info) == STT_OBJECT
585 || ELF_ST_TYPE (sym->st_info) == STT_COMMON))))
a0c8462f 586 || (d != NULL
73ec947d 587 && h->non_elf
40b36307 588 && (*d->match) (&d->head, NULL, h->root.root.string)))
416c34d6
L
589 {
590 h->dynamic = 1;
591 /* NB: If a symbol is made dynamic by --dynamic-list, it has
592 non-IR reference. */
593 h->root.non_ir_ref_dynamic = 1;
594 }
55255dae
L
595}
596
45d6a902
AM
597/* Record an assignment to a symbol made by a linker script. We need
598 this in case some dynamic object refers to this symbol. */
599
600bfd_boolean
fe21a8fc
L
601bfd_elf_record_link_assignment (bfd *output_bfd,
602 struct bfd_link_info *info,
268b6b39 603 const char *name,
fe21a8fc
L
604 bfd_boolean provide,
605 bfd_boolean hidden)
45d6a902 606{
00cbee0a 607 struct elf_link_hash_entry *h, *hv;
4ea42fb7 608 struct elf_link_hash_table *htab;
00cbee0a 609 const struct elf_backend_data *bed;
45d6a902 610
0eddce27 611 if (!is_elf_hash_table (info->hash))
45d6a902
AM
612 return TRUE;
613
4ea42fb7
AM
614 htab = elf_hash_table (info);
615 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
45d6a902 616 if (h == NULL)
4ea42fb7 617 return provide;
45d6a902 618
8e2a4f11
AM
619 if (h->root.type == bfd_link_hash_warning)
620 h = (struct elf_link_hash_entry *) h->root.u.i.link;
621
0f550b3d
L
622 if (h->versioned == unknown)
623 {
624 /* Set versioned if symbol version is unknown. */
625 char *version = strrchr (name, ELF_VER_CHR);
626 if (version)
627 {
628 if (version > name && version[-1] != ELF_VER_CHR)
629 h->versioned = versioned_hidden;
630 else
631 h->versioned = versioned;
632 }
633 }
634
73ec947d
AM
635 /* Symbols defined in a linker script but not referenced anywhere
636 else will have non_elf set. */
637 if (h->non_elf)
638 {
639 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
640 h->non_elf = 0;
641 }
642
00cbee0a 643 switch (h->root.type)
77cfaee6 644 {
00cbee0a
L
645 case bfd_link_hash_defined:
646 case bfd_link_hash_defweak:
647 case bfd_link_hash_common:
648 break;
649 case bfd_link_hash_undefweak:
650 case bfd_link_hash_undefined:
651 /* Since we're defining the symbol, don't let it seem to have not
652 been defined. record_dynamic_symbol and size_dynamic_sections
653 may depend on this. */
4ea42fb7 654 h->root.type = bfd_link_hash_new;
77cfaee6
AM
655 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
656 bfd_link_repair_undef_list (&htab->root);
00cbee0a
L
657 break;
658 case bfd_link_hash_new:
00cbee0a
L
659 break;
660 case bfd_link_hash_indirect:
661 /* We had a versioned symbol in a dynamic library. We make the
a0c8462f 662 the versioned symbol point to this one. */
00cbee0a
L
663 bed = get_elf_backend_data (output_bfd);
664 hv = h;
665 while (hv->root.type == bfd_link_hash_indirect
666 || hv->root.type == bfd_link_hash_warning)
667 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
668 /* We don't need to update h->root.u since linker will set them
669 later. */
670 h->root.type = bfd_link_hash_undefined;
671 hv->root.type = bfd_link_hash_indirect;
672 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
673 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
674 break;
8e2a4f11
AM
675 default:
676 BFD_FAIL ();
c2596ca5 677 return FALSE;
55255dae 678 }
45d6a902
AM
679
680 /* If this symbol is being provided by the linker script, and it is
681 currently defined by a dynamic object, but not by a regular
682 object, then mark it as undefined so that the generic linker will
683 force the correct value. */
684 if (provide
f5385ebf
AM
685 && h->def_dynamic
686 && !h->def_regular)
45d6a902
AM
687 h->root.type = bfd_link_hash_undefined;
688
689 /* If this symbol is not being provided by the linker script, and it is
690 currently defined by a dynamic object, but not by a regular object,
b531344c
MR
691 then clear out any version information because the symbol will not be
692 associated with the dynamic object any more. */
45d6a902 693 if (!provide
f5385ebf
AM
694 && h->def_dynamic
695 && !h->def_regular)
b531344c
MR
696 h->verinfo.verdef = NULL;
697
698 /* Make sure this symbol is not garbage collected. */
699 h->mark = 1;
45d6a902 700
f5385ebf 701 h->def_regular = 1;
45d6a902 702
eb8476a6 703 if (hidden)
fe21a8fc 704 {
91d6fa6a 705 bed = get_elf_backend_data (output_bfd);
b8297068
AM
706 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
707 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
fe21a8fc
L
708 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
709 }
710
6fa3860b
PB
711 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
712 and executables. */
0e1862bb 713 if (!bfd_link_relocatable (info)
6fa3860b
PB
714 && h->dynindx != -1
715 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
716 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
717 h->forced_local = 1;
718
f5385ebf
AM
719 if ((h->def_dynamic
720 || h->ref_dynamic
6b3b0ab8
L
721 || bfd_link_dll (info)
722 || elf_hash_table (info)->is_relocatable_executable)
34a87bb0 723 && !h->forced_local
45d6a902
AM
724 && h->dynindx == -1)
725 {
c152c796 726 if (! bfd_elf_link_record_dynamic_symbol (info, h))
45d6a902
AM
727 return FALSE;
728
729 /* If this is a weak defined symbol, and we know a corresponding
730 real symbol from the same dynamic object, make sure the real
731 symbol is also made into a dynamic symbol. */
60d67dc8 732 if (h->is_weakalias)
45d6a902 733 {
60d67dc8
AM
734 struct elf_link_hash_entry *def = weakdef (h);
735
736 if (def->dynindx == -1
737 && !bfd_elf_link_record_dynamic_symbol (info, def))
45d6a902
AM
738 return FALSE;
739 }
740 }
741
742 return TRUE;
743}
42751cf3 744
8c58d23b
AM
745/* Record a new local dynamic symbol. Returns 0 on failure, 1 on
746 success, and 2 on a failure caused by attempting to record a symbol
747 in a discarded section, eg. a discarded link-once section symbol. */
748
749int
c152c796
AM
750bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
751 bfd *input_bfd,
752 long input_indx)
8c58d23b
AM
753{
754 bfd_size_type amt;
755 struct elf_link_local_dynamic_entry *entry;
756 struct elf_link_hash_table *eht;
757 struct elf_strtab_hash *dynstr;
ef53be89 758 size_t dynstr_index;
8c58d23b
AM
759 char *name;
760 Elf_External_Sym_Shndx eshndx;
761 char esym[sizeof (Elf64_External_Sym)];
762
0eddce27 763 if (! is_elf_hash_table (info->hash))
8c58d23b
AM
764 return 0;
765
766 /* See if the entry exists already. */
767 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
768 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
769 return 1;
770
771 amt = sizeof (*entry);
a50b1753 772 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
8c58d23b
AM
773 if (entry == NULL)
774 return 0;
775
776 /* Go find the symbol, so that we can find it's name. */
777 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
268b6b39 778 1, input_indx, &entry->isym, esym, &eshndx))
8c58d23b
AM
779 {
780 bfd_release (input_bfd, entry);
781 return 0;
782 }
783
784 if (entry->isym.st_shndx != SHN_UNDEF
4fbb74a6 785 && entry->isym.st_shndx < SHN_LORESERVE)
8c58d23b
AM
786 {
787 asection *s;
788
789 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
790 if (s == NULL || bfd_is_abs_section (s->output_section))
791 {
792 /* We can still bfd_release here as nothing has done another
793 bfd_alloc. We can't do this later in this function. */
794 bfd_release (input_bfd, entry);
795 return 2;
796 }
797 }
798
799 name = (bfd_elf_string_from_elf_section
800 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
801 entry->isym.st_name));
802
803 dynstr = elf_hash_table (info)->dynstr;
804 if (dynstr == NULL)
805 {
806 /* Create a strtab to hold the dynamic symbol names. */
807 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
808 if (dynstr == NULL)
809 return 0;
810 }
811
b34976b6 812 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
ef53be89 813 if (dynstr_index == (size_t) -1)
8c58d23b
AM
814 return 0;
815 entry->isym.st_name = dynstr_index;
816
817 eht = elf_hash_table (info);
818
819 entry->next = eht->dynlocal;
820 eht->dynlocal = entry;
821 entry->input_bfd = input_bfd;
822 entry->input_indx = input_indx;
823 eht->dynsymcount++;
824
825 /* Whatever binding the symbol had before, it's now local. */
826 entry->isym.st_info
827 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
828
829 /* The dynindx will be set at the end of size_dynamic_sections. */
830
831 return 1;
832}
833
30b30c21 834/* Return the dynindex of a local dynamic symbol. */
42751cf3 835
30b30c21 836long
268b6b39
AM
837_bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
838 bfd *input_bfd,
839 long input_indx)
30b30c21
RH
840{
841 struct elf_link_local_dynamic_entry *e;
842
843 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
844 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
845 return e->dynindx;
846 return -1;
847}
848
849/* This function is used to renumber the dynamic symbols, if some of
850 them are removed because they are marked as local. This is called
851 via elf_link_hash_traverse. */
852
b34976b6 853static bfd_boolean
268b6b39
AM
854elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
855 void *data)
42751cf3 856{
a50b1753 857 size_t *count = (size_t *) data;
30b30c21 858
6fa3860b
PB
859 if (h->forced_local)
860 return TRUE;
861
862 if (h->dynindx != -1)
863 h->dynindx = ++(*count);
864
865 return TRUE;
866}
867
868
869/* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
870 STB_LOCAL binding. */
871
872static bfd_boolean
873elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
874 void *data)
875{
a50b1753 876 size_t *count = (size_t *) data;
6fa3860b 877
6fa3860b
PB
878 if (!h->forced_local)
879 return TRUE;
880
42751cf3 881 if (h->dynindx != -1)
30b30c21
RH
882 h->dynindx = ++(*count);
883
b34976b6 884 return TRUE;
42751cf3 885}
30b30c21 886
aee6f5b4
AO
887/* Return true if the dynamic symbol for a given section should be
888 omitted when creating a shared library. */
889bfd_boolean
d00dd7dc
AM
890_bfd_elf_omit_section_dynsym_default (bfd *output_bfd ATTRIBUTE_UNUSED,
891 struct bfd_link_info *info,
892 asection *p)
aee6f5b4 893{
74541ad4 894 struct elf_link_hash_table *htab;
ca55926c 895 asection *ip;
74541ad4 896
aee6f5b4
AO
897 switch (elf_section_data (p)->this_hdr.sh_type)
898 {
899 case SHT_PROGBITS:
900 case SHT_NOBITS:
901 /* If sh_type is yet undecided, assume it could be
902 SHT_PROGBITS/SHT_NOBITS. */
903 case SHT_NULL:
74541ad4
AM
904 htab = elf_hash_table (info);
905 if (p == htab->tls_sec)
906 return FALSE;
907
908 if (htab->text_index_section != NULL)
909 return p != htab->text_index_section && p != htab->data_index_section;
910
ca55926c 911 return (htab->dynobj != NULL
3d4d4302 912 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
ca55926c 913 && ip->output_section == p);
aee6f5b4
AO
914
915 /* There shouldn't be section relative relocations
916 against any other section. */
917 default:
918 return TRUE;
919 }
920}
921
d00dd7dc
AM
922bfd_boolean
923_bfd_elf_omit_section_dynsym_all
924 (bfd *output_bfd ATTRIBUTE_UNUSED,
925 struct bfd_link_info *info ATTRIBUTE_UNUSED,
926 asection *p ATTRIBUTE_UNUSED)
927{
928 return TRUE;
929}
930
062e2358 931/* Assign dynsym indices. In a shared library we generate a section
6fa3860b
PB
932 symbol for each output section, which come first. Next come symbols
933 which have been forced to local binding. Then all of the back-end
934 allocated local dynamic syms, followed by the rest of the global
63f452a8
AM
935 symbols. If SECTION_SYM_COUNT is NULL, section dynindx is not set.
936 (This prevents the early call before elf_backend_init_index_section
937 and strip_excluded_output_sections setting dynindx for sections
938 that are stripped.) */
30b30c21 939
554220db
AM
940static unsigned long
941_bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
942 struct bfd_link_info *info,
943 unsigned long *section_sym_count)
30b30c21
RH
944{
945 unsigned long dynsymcount = 0;
63f452a8 946 bfd_boolean do_sec = section_sym_count != NULL;
30b30c21 947
0e1862bb
L
948 if (bfd_link_pic (info)
949 || elf_hash_table (info)->is_relocatable_executable)
30b30c21 950 {
aee6f5b4 951 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
30b30c21
RH
952 asection *p;
953 for (p = output_bfd->sections; p ; p = p->next)
8c37241b 954 if ((p->flags & SEC_EXCLUDE) == 0
aee6f5b4
AO
955 && (p->flags & SEC_ALLOC) != 0
956 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
63f452a8
AM
957 {
958 ++dynsymcount;
959 if (do_sec)
960 elf_section_data (p)->dynindx = dynsymcount;
961 }
962 else if (do_sec)
74541ad4 963 elf_section_data (p)->dynindx = 0;
30b30c21 964 }
63f452a8
AM
965 if (do_sec)
966 *section_sym_count = dynsymcount;
30b30c21 967
6fa3860b
PB
968 elf_link_hash_traverse (elf_hash_table (info),
969 elf_link_renumber_local_hash_table_dynsyms,
970 &dynsymcount);
971
30b30c21
RH
972 if (elf_hash_table (info)->dynlocal)
973 {
974 struct elf_link_local_dynamic_entry *p;
975 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
976 p->dynindx = ++dynsymcount;
977 }
90ac2420 978 elf_hash_table (info)->local_dynsymcount = dynsymcount;
30b30c21
RH
979
980 elf_link_hash_traverse (elf_hash_table (info),
981 elf_link_renumber_hash_table_dynsyms,
982 &dynsymcount);
983
d5486c43
L
984 /* There is an unused NULL entry at the head of the table which we
985 must account for in our count even if the table is empty since it
986 is intended for the mandatory DT_SYMTAB tag (.dynsym section) in
987 .dynamic section. */
988 dynsymcount++;
30b30c21 989
ccabcbe5
AM
990 elf_hash_table (info)->dynsymcount = dynsymcount;
991 return dynsymcount;
30b30c21 992}
252b5132 993
54ac0771
L
994/* Merge st_other field. */
995
996static void
997elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
b8417128 998 const Elf_Internal_Sym *isym, asection *sec,
cd3416da 999 bfd_boolean definition, bfd_boolean dynamic)
54ac0771
L
1000{
1001 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1002
1003 /* If st_other has a processor-specific meaning, specific
cd3416da 1004 code might be needed here. */
54ac0771
L
1005 if (bed->elf_backend_merge_symbol_attribute)
1006 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
1007 dynamic);
1008
cd3416da 1009 if (!dynamic)
54ac0771 1010 {
cd3416da
AM
1011 unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
1012 unsigned hvis = ELF_ST_VISIBILITY (h->other);
54ac0771 1013
cd3416da
AM
1014 /* Keep the most constraining visibility. Leave the remainder
1015 of the st_other field to elf_backend_merge_symbol_attribute. */
1016 if (symvis - 1 < hvis - 1)
1017 h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
54ac0771 1018 }
b8417128
AM
1019 else if (definition
1020 && ELF_ST_VISIBILITY (isym->st_other) != STV_DEFAULT
1021 && (sec->flags & SEC_READONLY) == 0)
6cabe1ea 1022 h->protected_def = 1;
54ac0771
L
1023}
1024
4f3fedcf
AM
1025/* This function is called when we want to merge a new symbol with an
1026 existing symbol. It handles the various cases which arise when we
1027 find a definition in a dynamic object, or when there is already a
1028 definition in a dynamic object. The new symbol is described by
1029 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
1030 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
1031 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
1032 of an old common symbol. We set OVERRIDE if the old symbol is
1033 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
1034 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
1035 to change. By OK to change, we mean that we shouldn't warn if the
1036 type or size does change. */
45d6a902 1037
8a56bd02 1038static bfd_boolean
268b6b39
AM
1039_bfd_elf_merge_symbol (bfd *abfd,
1040 struct bfd_link_info *info,
1041 const char *name,
1042 Elf_Internal_Sym *sym,
1043 asection **psec,
1044 bfd_vma *pvalue,
4f3fedcf
AM
1045 struct elf_link_hash_entry **sym_hash,
1046 bfd **poldbfd,
37a9e49a 1047 bfd_boolean *pold_weak,
af44c138 1048 unsigned int *pold_alignment,
268b6b39
AM
1049 bfd_boolean *skip,
1050 bfd_boolean *override,
1051 bfd_boolean *type_change_ok,
6e33951e
L
1052 bfd_boolean *size_change_ok,
1053 bfd_boolean *matched)
252b5132 1054{
7479dfd4 1055 asection *sec, *oldsec;
45d6a902 1056 struct elf_link_hash_entry *h;
90c984fc 1057 struct elf_link_hash_entry *hi;
45d6a902
AM
1058 struct elf_link_hash_entry *flip;
1059 int bind;
1060 bfd *oldbfd;
1061 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
0a36a439 1062 bfd_boolean newweak, oldweak, newfunc, oldfunc;
a4d8e49b 1063 const struct elf_backend_data *bed;
6e33951e 1064 char *new_version;
93f4de39 1065 bfd_boolean default_sym = *matched;
45d6a902
AM
1066
1067 *skip = FALSE;
1068 *override = FALSE;
1069
1070 sec = *psec;
1071 bind = ELF_ST_BIND (sym->st_info);
1072
1073 if (! bfd_is_und_section (sec))
1074 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
1075 else
1076 h = ((struct elf_link_hash_entry *)
1077 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
1078 if (h == NULL)
1079 return FALSE;
1080 *sym_hash = h;
252b5132 1081
88ba32a0
L
1082 bed = get_elf_backend_data (abfd);
1083
6e33951e 1084 /* NEW_VERSION is the symbol version of the new symbol. */
422f1182 1085 if (h->versioned != unversioned)
6e33951e 1086 {
422f1182
L
1087 /* Symbol version is unknown or versioned. */
1088 new_version = strrchr (name, ELF_VER_CHR);
1089 if (new_version)
1090 {
1091 if (h->versioned == unknown)
1092 {
1093 if (new_version > name && new_version[-1] != ELF_VER_CHR)
1094 h->versioned = versioned_hidden;
1095 else
1096 h->versioned = versioned;
1097 }
1098 new_version += 1;
1099 if (new_version[0] == '\0')
1100 new_version = NULL;
1101 }
1102 else
1103 h->versioned = unversioned;
6e33951e 1104 }
422f1182
L
1105 else
1106 new_version = NULL;
6e33951e 1107
90c984fc
L
1108 /* For merging, we only care about real symbols. But we need to make
1109 sure that indirect symbol dynamic flags are updated. */
1110 hi = h;
45d6a902
AM
1111 while (h->root.type == bfd_link_hash_indirect
1112 || h->root.type == bfd_link_hash_warning)
1113 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1114
6e33951e
L
1115 if (!*matched)
1116 {
1117 if (hi == h || h->root.type == bfd_link_hash_new)
1118 *matched = TRUE;
1119 else
1120 {
ae7683d2 1121 /* OLD_HIDDEN is true if the existing symbol is only visible
6e33951e 1122 to the symbol with the same symbol version. NEW_HIDDEN is
ae7683d2 1123 true if the new symbol is only visible to the symbol with
6e33951e 1124 the same symbol version. */
422f1182
L
1125 bfd_boolean old_hidden = h->versioned == versioned_hidden;
1126 bfd_boolean new_hidden = hi->versioned == versioned_hidden;
6e33951e
L
1127 if (!old_hidden && !new_hidden)
1128 /* The new symbol matches the existing symbol if both
1129 aren't hidden. */
1130 *matched = TRUE;
1131 else
1132 {
1133 /* OLD_VERSION is the symbol version of the existing
1134 symbol. */
422f1182
L
1135 char *old_version;
1136
1137 if (h->versioned >= versioned)
1138 old_version = strrchr (h->root.root.string,
1139 ELF_VER_CHR) + 1;
1140 else
1141 old_version = NULL;
6e33951e
L
1142
1143 /* The new symbol matches the existing symbol if they
1144 have the same symbol version. */
1145 *matched = (old_version == new_version
1146 || (old_version != NULL
1147 && new_version != NULL
1148 && strcmp (old_version, new_version) == 0));
1149 }
1150 }
1151 }
1152
934bce08
AM
1153 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
1154 existing symbol. */
1155
1156 oldbfd = NULL;
1157 oldsec = NULL;
1158 switch (h->root.type)
1159 {
1160 default:
1161 break;
1162
1163 case bfd_link_hash_undefined:
1164 case bfd_link_hash_undefweak:
1165 oldbfd = h->root.u.undef.abfd;
1166 break;
1167
1168 case bfd_link_hash_defined:
1169 case bfd_link_hash_defweak:
1170 oldbfd = h->root.u.def.section->owner;
1171 oldsec = h->root.u.def.section;
1172 break;
1173
1174 case bfd_link_hash_common:
1175 oldbfd = h->root.u.c.p->section->owner;
1176 oldsec = h->root.u.c.p->section;
1177 if (pold_alignment)
1178 *pold_alignment = h->root.u.c.p->alignment_power;
1179 break;
1180 }
1181 if (poldbfd && *poldbfd == NULL)
1182 *poldbfd = oldbfd;
1183
1184 /* Differentiate strong and weak symbols. */
1185 newweak = bind == STB_WEAK;
1186 oldweak = (h->root.type == bfd_link_hash_defweak
1187 || h->root.type == bfd_link_hash_undefweak);
1188 if (pold_weak)
1189 *pold_weak = oldweak;
1190
40b36307 1191 /* We have to check it for every instance since the first few may be
ee659f1f 1192 references and not all compilers emit symbol type for undefined
40b36307
L
1193 symbols. */
1194 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
1195
ee659f1f
AM
1196 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
1197 respectively, is from a dynamic object. */
1198
1199 newdyn = (abfd->flags & DYNAMIC) != 0;
1200
1201 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
1202 syms and defined syms in dynamic libraries respectively.
1203 ref_dynamic on the other hand can be set for a symbol defined in
1204 a dynamic library, and def_dynamic may not be set; When the
1205 definition in a dynamic lib is overridden by a definition in the
1206 executable use of the symbol in the dynamic lib becomes a
1207 reference to the executable symbol. */
1208 if (newdyn)
1209 {
1210 if (bfd_is_und_section (sec))
1211 {
1212 if (bind != STB_WEAK)
1213 {
1214 h->ref_dynamic_nonweak = 1;
1215 hi->ref_dynamic_nonweak = 1;
1216 }
1217 }
1218 else
1219 {
6e33951e
L
1220 /* Update the existing symbol only if they match. */
1221 if (*matched)
1222 h->dynamic_def = 1;
ee659f1f
AM
1223 hi->dynamic_def = 1;
1224 }
1225 }
1226
45d6a902
AM
1227 /* If we just created the symbol, mark it as being an ELF symbol.
1228 Other than that, there is nothing to do--there is no merge issue
1229 with a newly defined symbol--so we just return. */
1230
1231 if (h->root.type == bfd_link_hash_new)
252b5132 1232 {
f5385ebf 1233 h->non_elf = 0;
45d6a902
AM
1234 return TRUE;
1235 }
252b5132 1236
45d6a902
AM
1237 /* In cases involving weak versioned symbols, we may wind up trying
1238 to merge a symbol with itself. Catch that here, to avoid the
1239 confusion that results if we try to override a symbol with
1240 itself. The additional tests catch cases like
1241 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1242 dynamic object, which we do want to handle here. */
1243 if (abfd == oldbfd
895fa45f 1244 && (newweak || oldweak)
45d6a902 1245 && ((abfd->flags & DYNAMIC) == 0
f5385ebf 1246 || !h->def_regular))
45d6a902
AM
1247 return TRUE;
1248
707bba77 1249 olddyn = FALSE;
45d6a902
AM
1250 if (oldbfd != NULL)
1251 olddyn = (oldbfd->flags & DYNAMIC) != 0;
707bba77 1252 else if (oldsec != NULL)
45d6a902 1253 {
707bba77 1254 /* This handles the special SHN_MIPS_{TEXT,DATA} section
45d6a902 1255 indices used by MIPS ELF. */
707bba77 1256 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
45d6a902 1257 }
252b5132 1258
1a3b5c34
AM
1259 /* Handle a case where plugin_notice won't be called and thus won't
1260 set the non_ir_ref flags on the first pass over symbols. */
1261 if (oldbfd != NULL
1262 && (oldbfd->flags & BFD_PLUGIN) != (abfd->flags & BFD_PLUGIN)
1263 && newdyn != olddyn)
1264 {
1265 h->root.non_ir_ref_dynamic = TRUE;
1266 hi->root.non_ir_ref_dynamic = TRUE;
1267 }
1268
45d6a902
AM
1269 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1270 respectively, appear to be a definition rather than reference. */
1271
707bba77 1272 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
45d6a902 1273
707bba77
AM
1274 olddef = (h->root.type != bfd_link_hash_undefined
1275 && h->root.type != bfd_link_hash_undefweak
202ac193 1276 && h->root.type != bfd_link_hash_common);
45d6a902 1277
0a36a439
L
1278 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1279 respectively, appear to be a function. */
1280
1281 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1282 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1283
1284 oldfunc = (h->type != STT_NOTYPE
1285 && bed->is_function_type (h->type));
1286
c5d37467 1287 if (!(newfunc && oldfunc)
5b677558
AM
1288 && ELF_ST_TYPE (sym->st_info) != h->type
1289 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1290 && h->type != STT_NOTYPE
c5d37467
AM
1291 && (newdef || bfd_is_com_section (sec))
1292 && (olddef || h->root.type == bfd_link_hash_common))
580a2b6e 1293 {
c5d37467
AM
1294 /* If creating a default indirect symbol ("foo" or "foo@") from
1295 a dynamic versioned definition ("foo@@") skip doing so if
1296 there is an existing regular definition with a different
1297 type. We don't want, for example, a "time" variable in the
1298 executable overriding a "time" function in a shared library. */
1299 if (newdyn
1300 && !olddyn)
1301 {
1302 *skip = TRUE;
1303 return TRUE;
1304 }
1305
1306 /* When adding a symbol from a regular object file after we have
1307 created indirect symbols, undo the indirection and any
1308 dynamic state. */
1309 if (hi != h
1310 && !newdyn
1311 && olddyn)
1312 {
1313 h = hi;
1314 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1315 h->forced_local = 0;
1316 h->ref_dynamic = 0;
1317 h->def_dynamic = 0;
1318 h->dynamic_def = 0;
1319 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1320 {
1321 h->root.type = bfd_link_hash_undefined;
1322 h->root.u.undef.abfd = abfd;
1323 }
1324 else
1325 {
1326 h->root.type = bfd_link_hash_new;
1327 h->root.u.undef.abfd = NULL;
1328 }
1329 return TRUE;
1330 }
580a2b6e
L
1331 }
1332
4c34aff8
AM
1333 /* Check TLS symbols. We don't check undefined symbols introduced
1334 by "ld -u" which have no type (and oldbfd NULL), and we don't
1335 check symbols from plugins because they also have no type. */
1336 if (oldbfd != NULL
1337 && (oldbfd->flags & BFD_PLUGIN) == 0
1338 && (abfd->flags & BFD_PLUGIN) == 0
1339 && ELF_ST_TYPE (sym->st_info) != h->type
1340 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
7479dfd4
L
1341 {
1342 bfd *ntbfd, *tbfd;
1343 bfd_boolean ntdef, tdef;
1344 asection *ntsec, *tsec;
1345
1346 if (h->type == STT_TLS)
1347 {
3b36f7e6 1348 ntbfd = abfd;
7479dfd4
L
1349 ntsec = sec;
1350 ntdef = newdef;
1351 tbfd = oldbfd;
1352 tsec = oldsec;
1353 tdef = olddef;
1354 }
1355 else
1356 {
1357 ntbfd = oldbfd;
1358 ntsec = oldsec;
1359 ntdef = olddef;
1360 tbfd = abfd;
1361 tsec = sec;
1362 tdef = newdef;
1363 }
1364
1365 if (tdef && ntdef)
4eca0228 1366 _bfd_error_handler
695344c0 1367 /* xgettext:c-format */
871b3ab2
AM
1368 (_("%s: TLS definition in %pB section %pA "
1369 "mismatches non-TLS definition in %pB section %pA"),
c08bb8dd 1370 h->root.root.string, tbfd, tsec, ntbfd, ntsec);
7479dfd4 1371 else if (!tdef && !ntdef)
4eca0228 1372 _bfd_error_handler
695344c0 1373 /* xgettext:c-format */
871b3ab2
AM
1374 (_("%s: TLS reference in %pB "
1375 "mismatches non-TLS reference in %pB"),
c08bb8dd 1376 h->root.root.string, tbfd, ntbfd);
7479dfd4 1377 else if (tdef)
4eca0228 1378 _bfd_error_handler
695344c0 1379 /* xgettext:c-format */
871b3ab2
AM
1380 (_("%s: TLS definition in %pB section %pA "
1381 "mismatches non-TLS reference in %pB"),
c08bb8dd 1382 h->root.root.string, tbfd, tsec, ntbfd);
7479dfd4 1383 else
4eca0228 1384 _bfd_error_handler
695344c0 1385 /* xgettext:c-format */
871b3ab2
AM
1386 (_("%s: TLS reference in %pB "
1387 "mismatches non-TLS definition in %pB section %pA"),
c08bb8dd 1388 h->root.root.string, tbfd, ntbfd, ntsec);
7479dfd4
L
1389
1390 bfd_set_error (bfd_error_bad_value);
1391 return FALSE;
1392 }
1393
45d6a902
AM
1394 /* If the old symbol has non-default visibility, we ignore the new
1395 definition from a dynamic object. */
1396 if (newdyn
9c7a29a3 1397 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902
AM
1398 && !bfd_is_und_section (sec))
1399 {
1400 *skip = TRUE;
1401 /* Make sure this symbol is dynamic. */
f5385ebf 1402 h->ref_dynamic = 1;
90c984fc 1403 hi->ref_dynamic = 1;
45d6a902
AM
1404 /* A protected symbol has external availability. Make sure it is
1405 recorded as dynamic.
1406
1407 FIXME: Should we check type and size for protected symbol? */
1408 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
c152c796 1409 return bfd_elf_link_record_dynamic_symbol (info, h);
45d6a902
AM
1410 else
1411 return TRUE;
1412 }
1413 else if (!newdyn
9c7a29a3 1414 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
f5385ebf 1415 && h->def_dynamic)
45d6a902
AM
1416 {
1417 /* If the new symbol with non-default visibility comes from a
1418 relocatable file and the old definition comes from a dynamic
1419 object, we remove the old definition. */
6c9b78e6 1420 if (hi->root.type == bfd_link_hash_indirect)
d2dee3b2
L
1421 {
1422 /* Handle the case where the old dynamic definition is
1423 default versioned. We need to copy the symbol info from
1424 the symbol with default version to the normal one if it
1425 was referenced before. */
1426 if (h->ref_regular)
1427 {
6c9b78e6 1428 hi->root.type = h->root.type;
d2dee3b2 1429 h->root.type = bfd_link_hash_indirect;
6c9b78e6 1430 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
aed81c4e 1431
6c9b78e6 1432 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
aed81c4e 1433 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
d2dee3b2 1434 {
aed81c4e
MR
1435 /* If the new symbol is hidden or internal, completely undo
1436 any dynamic link state. */
1437 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1438 h->forced_local = 0;
1439 h->ref_dynamic = 0;
d2dee3b2
L
1440 }
1441 else
aed81c4e
MR
1442 h->ref_dynamic = 1;
1443
1444 h->def_dynamic = 0;
aed81c4e
MR
1445 /* FIXME: Should we check type and size for protected symbol? */
1446 h->size = 0;
1447 h->type = 0;
1448
6c9b78e6 1449 h = hi;
d2dee3b2
L
1450 }
1451 else
6c9b78e6 1452 h = hi;
d2dee3b2 1453 }
1de1a317 1454
f5eda473
AM
1455 /* If the old symbol was undefined before, then it will still be
1456 on the undefs list. If the new symbol is undefined or
1457 common, we can't make it bfd_link_hash_new here, because new
1458 undefined or common symbols will be added to the undefs list
1459 by _bfd_generic_link_add_one_symbol. Symbols may not be
1460 added twice to the undefs list. Also, if the new symbol is
1461 undefweak then we don't want to lose the strong undef. */
1462 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1de1a317 1463 {
1de1a317 1464 h->root.type = bfd_link_hash_undefined;
1de1a317
L
1465 h->root.u.undef.abfd = abfd;
1466 }
1467 else
1468 {
1469 h->root.type = bfd_link_hash_new;
1470 h->root.u.undef.abfd = NULL;
1471 }
1472
f5eda473 1473 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
252b5132 1474 {
f5eda473
AM
1475 /* If the new symbol is hidden or internal, completely undo
1476 any dynamic link state. */
1477 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1478 h->forced_local = 0;
1479 h->ref_dynamic = 0;
45d6a902 1480 }
f5eda473
AM
1481 else
1482 h->ref_dynamic = 1;
1483 h->def_dynamic = 0;
45d6a902
AM
1484 /* FIXME: Should we check type and size for protected symbol? */
1485 h->size = 0;
1486 h->type = 0;
1487 return TRUE;
1488 }
14a793b2 1489
15b43f48
AM
1490 /* If a new weak symbol definition comes from a regular file and the
1491 old symbol comes from a dynamic library, we treat the new one as
1492 strong. Similarly, an old weak symbol definition from a regular
1493 file is treated as strong when the new symbol comes from a dynamic
1494 library. Further, an old weak symbol from a dynamic library is
1495 treated as strong if the new symbol is from a dynamic library.
1496 This reflects the way glibc's ld.so works.
1497
165f707a
AM
1498 Also allow a weak symbol to override a linker script symbol
1499 defined by an early pass over the script. This is done so the
1500 linker knows the symbol is defined in an object file, for the
1501 DEFINED script function.
1502
15b43f48
AM
1503 Do this before setting *type_change_ok or *size_change_ok so that
1504 we warn properly when dynamic library symbols are overridden. */
1505
165f707a 1506 if (newdef && !newdyn && (olddyn || h->root.ldscript_def))
0f8a2703 1507 newweak = FALSE;
15b43f48 1508 if (olddef && newdyn)
0f8a2703
AM
1509 oldweak = FALSE;
1510
d334575b 1511 /* Allow changes between different types of function symbol. */
0a36a439 1512 if (newfunc && oldfunc)
fcb93ecf
PB
1513 *type_change_ok = TRUE;
1514
79349b09
AM
1515 /* It's OK to change the type if either the existing symbol or the
1516 new symbol is weak. A type change is also OK if the old symbol
1517 is undefined and the new symbol is defined. */
252b5132 1518
79349b09
AM
1519 if (oldweak
1520 || newweak
1521 || (newdef
1522 && h->root.type == bfd_link_hash_undefined))
1523 *type_change_ok = TRUE;
1524
1525 /* It's OK to change the size if either the existing symbol or the
1526 new symbol is weak, or if the old symbol is undefined. */
1527
1528 if (*type_change_ok
1529 || h->root.type == bfd_link_hash_undefined)
1530 *size_change_ok = TRUE;
45d6a902 1531
45d6a902
AM
1532 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1533 symbol, respectively, appears to be a common symbol in a dynamic
1534 object. If a symbol appears in an uninitialized section, and is
1535 not weak, and is not a function, then it may be a common symbol
1536 which was resolved when the dynamic object was created. We want
1537 to treat such symbols specially, because they raise special
1538 considerations when setting the symbol size: if the symbol
1539 appears as a common symbol in a regular object, and the size in
1540 the regular object is larger, we must make sure that we use the
1541 larger size. This problematic case can always be avoided in C,
1542 but it must be handled correctly when using Fortran shared
1543 libraries.
1544
1545 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1546 likewise for OLDDYNCOMMON and OLDDEF.
1547
1548 Note that this test is just a heuristic, and that it is quite
1549 possible to have an uninitialized symbol in a shared object which
1550 is really a definition, rather than a common symbol. This could
1551 lead to some minor confusion when the symbol really is a common
1552 symbol in some regular object. However, I think it will be
1553 harmless. */
1554
1555 if (newdyn
1556 && newdef
79349b09 1557 && !newweak
45d6a902
AM
1558 && (sec->flags & SEC_ALLOC) != 0
1559 && (sec->flags & SEC_LOAD) == 0
1560 && sym->st_size > 0
0a36a439 1561 && !newfunc)
45d6a902
AM
1562 newdyncommon = TRUE;
1563 else
1564 newdyncommon = FALSE;
1565
1566 if (olddyn
1567 && olddef
1568 && h->root.type == bfd_link_hash_defined
f5385ebf 1569 && h->def_dynamic
45d6a902
AM
1570 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1571 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1572 && h->size > 0
0a36a439 1573 && !oldfunc)
45d6a902
AM
1574 olddyncommon = TRUE;
1575 else
1576 olddyncommon = FALSE;
1577
a4d8e49b
L
1578 /* We now know everything about the old and new symbols. We ask the
1579 backend to check if we can merge them. */
5d13b3b3
AM
1580 if (bed->merge_symbol != NULL)
1581 {
1582 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1583 return FALSE;
1584 sec = *psec;
1585 }
a4d8e49b 1586
a83ef4d1
L
1587 /* There are multiple definitions of a normal symbol. Skip the
1588 default symbol as well as definition from an IR object. */
93f4de39 1589 if (olddef && !olddyn && !oldweak && newdef && !newdyn && !newweak
a83ef4d1
L
1590 && !default_sym && h->def_regular
1591 && !(oldbfd != NULL
1592 && (oldbfd->flags & BFD_PLUGIN) != 0
1593 && (abfd->flags & BFD_PLUGIN) == 0))
93f4de39
RL
1594 {
1595 /* Handle a multiple definition. */
1596 (*info->callbacks->multiple_definition) (info, &h->root,
1597 abfd, sec, *pvalue);
1598 *skip = TRUE;
1599 return TRUE;
1600 }
1601
45d6a902
AM
1602 /* If both the old and the new symbols look like common symbols in a
1603 dynamic object, set the size of the symbol to the larger of the
1604 two. */
1605
1606 if (olddyncommon
1607 && newdyncommon
1608 && sym->st_size != h->size)
1609 {
1610 /* Since we think we have two common symbols, issue a multiple
1611 common warning if desired. Note that we only warn if the
1612 size is different. If the size is the same, we simply let
1613 the old symbol override the new one as normally happens with
1614 symbols defined in dynamic objects. */
1615
1a72702b
AM
1616 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1617 bfd_link_hash_common, sym->st_size);
45d6a902
AM
1618 if (sym->st_size > h->size)
1619 h->size = sym->st_size;
252b5132 1620
45d6a902 1621 *size_change_ok = TRUE;
252b5132
RH
1622 }
1623
45d6a902
AM
1624 /* If we are looking at a dynamic object, and we have found a
1625 definition, we need to see if the symbol was already defined by
1626 some other object. If so, we want to use the existing
1627 definition, and we do not want to report a multiple symbol
1628 definition error; we do this by clobbering *PSEC to be
1629 bfd_und_section_ptr.
1630
1631 We treat a common symbol as a definition if the symbol in the
1632 shared library is a function, since common symbols always
1633 represent variables; this can cause confusion in principle, but
1634 any such confusion would seem to indicate an erroneous program or
1635 shared library. We also permit a common symbol in a regular
8170f769 1636 object to override a weak symbol in a shared object. */
45d6a902
AM
1637
1638 if (newdyn
1639 && newdef
77cfaee6 1640 && (olddef
45d6a902 1641 || (h->root.type == bfd_link_hash_common
8170f769 1642 && (newweak || newfunc))))
45d6a902
AM
1643 {
1644 *override = TRUE;
1645 newdef = FALSE;
1646 newdyncommon = FALSE;
252b5132 1647
45d6a902
AM
1648 *psec = sec = bfd_und_section_ptr;
1649 *size_change_ok = TRUE;
252b5132 1650
45d6a902
AM
1651 /* If we get here when the old symbol is a common symbol, then
1652 we are explicitly letting it override a weak symbol or
1653 function in a dynamic object, and we don't want to warn about
1654 a type change. If the old symbol is a defined symbol, a type
1655 change warning may still be appropriate. */
252b5132 1656
45d6a902
AM
1657 if (h->root.type == bfd_link_hash_common)
1658 *type_change_ok = TRUE;
1659 }
1660
1661 /* Handle the special case of an old common symbol merging with a
1662 new symbol which looks like a common symbol in a shared object.
1663 We change *PSEC and *PVALUE to make the new symbol look like a
91134c82
L
1664 common symbol, and let _bfd_generic_link_add_one_symbol do the
1665 right thing. */
45d6a902
AM
1666
1667 if (newdyncommon
1668 && h->root.type == bfd_link_hash_common)
1669 {
1670 *override = TRUE;
1671 newdef = FALSE;
1672 newdyncommon = FALSE;
1673 *pvalue = sym->st_size;
a4d8e49b 1674 *psec = sec = bed->common_section (oldsec);
45d6a902
AM
1675 *size_change_ok = TRUE;
1676 }
1677
c5e2cead 1678 /* Skip weak definitions of symbols that are already defined. */
f41d945b 1679 if (newdef && olddef && newweak)
54ac0771 1680 {
35ed3f94 1681 /* Don't skip new non-IR weak syms. */
3a5dbfb2
AM
1682 if (!(oldbfd != NULL
1683 && (oldbfd->flags & BFD_PLUGIN) != 0
35ed3f94 1684 && (abfd->flags & BFD_PLUGIN) == 0))
57fa7b8c
AM
1685 {
1686 newdef = FALSE;
1687 *skip = TRUE;
1688 }
54ac0771
L
1689
1690 /* Merge st_other. If the symbol already has a dynamic index,
1691 but visibility says it should not be visible, turn it into a
1692 local symbol. */
b8417128 1693 elf_merge_st_other (abfd, h, sym, sec, newdef, newdyn);
54ac0771
L
1694 if (h->dynindx != -1)
1695 switch (ELF_ST_VISIBILITY (h->other))
1696 {
1697 case STV_INTERNAL:
1698 case STV_HIDDEN:
1699 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1700 break;
1701 }
1702 }
c5e2cead 1703
45d6a902
AM
1704 /* If the old symbol is from a dynamic object, and the new symbol is
1705 a definition which is not from a dynamic object, then the new
1706 symbol overrides the old symbol. Symbols from regular files
1707 always take precedence over symbols from dynamic objects, even if
1708 they are defined after the dynamic object in the link.
1709
1710 As above, we again permit a common symbol in a regular object to
1711 override a definition in a shared object if the shared object
0f8a2703 1712 symbol is a function or is weak. */
45d6a902
AM
1713
1714 flip = NULL;
77cfaee6 1715 if (!newdyn
45d6a902
AM
1716 && (newdef
1717 || (bfd_is_com_section (sec)
0a36a439 1718 && (oldweak || oldfunc)))
45d6a902
AM
1719 && olddyn
1720 && olddef
f5385ebf 1721 && h->def_dynamic)
45d6a902
AM
1722 {
1723 /* Change the hash table entry to undefined, and let
1724 _bfd_generic_link_add_one_symbol do the right thing with the
1725 new definition. */
1726
1727 h->root.type = bfd_link_hash_undefined;
1728 h->root.u.undef.abfd = h->root.u.def.section->owner;
1729 *size_change_ok = TRUE;
1730
1731 olddef = FALSE;
1732 olddyncommon = FALSE;
1733
1734 /* We again permit a type change when a common symbol may be
1735 overriding a function. */
1736
1737 if (bfd_is_com_section (sec))
0a36a439
L
1738 {
1739 if (oldfunc)
1740 {
1741 /* If a common symbol overrides a function, make sure
1742 that it isn't defined dynamically nor has type
1743 function. */
1744 h->def_dynamic = 0;
1745 h->type = STT_NOTYPE;
1746 }
1747 *type_change_ok = TRUE;
1748 }
45d6a902 1749
6c9b78e6
AM
1750 if (hi->root.type == bfd_link_hash_indirect)
1751 flip = hi;
45d6a902
AM
1752 else
1753 /* This union may have been set to be non-NULL when this symbol
1754 was seen in a dynamic object. We must force the union to be
1755 NULL, so that it is correct for a regular symbol. */
1756 h->verinfo.vertree = NULL;
1757 }
1758
1759 /* Handle the special case of a new common symbol merging with an
1760 old symbol that looks like it might be a common symbol defined in
1761 a shared object. Note that we have already handled the case in
1762 which a new common symbol should simply override the definition
1763 in the shared library. */
1764
1765 if (! newdyn
1766 && bfd_is_com_section (sec)
1767 && olddyncommon)
1768 {
1769 /* It would be best if we could set the hash table entry to a
1770 common symbol, but we don't know what to use for the section
1771 or the alignment. */
1a72702b
AM
1772 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1773 bfd_link_hash_common, sym->st_size);
45d6a902 1774
4cc11e76 1775 /* If the presumed common symbol in the dynamic object is
45d6a902
AM
1776 larger, pretend that the new symbol has its size. */
1777
1778 if (h->size > *pvalue)
1779 *pvalue = h->size;
1780
af44c138
L
1781 /* We need to remember the alignment required by the symbol
1782 in the dynamic object. */
1783 BFD_ASSERT (pold_alignment);
1784 *pold_alignment = h->root.u.def.section->alignment_power;
45d6a902
AM
1785
1786 olddef = FALSE;
1787 olddyncommon = FALSE;
1788
1789 h->root.type = bfd_link_hash_undefined;
1790 h->root.u.undef.abfd = h->root.u.def.section->owner;
1791
1792 *size_change_ok = TRUE;
1793 *type_change_ok = TRUE;
1794
6c9b78e6
AM
1795 if (hi->root.type == bfd_link_hash_indirect)
1796 flip = hi;
45d6a902
AM
1797 else
1798 h->verinfo.vertree = NULL;
1799 }
1800
1801 if (flip != NULL)
1802 {
1803 /* Handle the case where we had a versioned symbol in a dynamic
1804 library and now find a definition in a normal object. In this
1805 case, we make the versioned symbol point to the normal one. */
45d6a902 1806 flip->root.type = h->root.type;
00cbee0a 1807 flip->root.u.undef.abfd = h->root.u.undef.abfd;
45d6a902
AM
1808 h->root.type = bfd_link_hash_indirect;
1809 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
fcfa13d2 1810 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
f5385ebf 1811 if (h->def_dynamic)
45d6a902 1812 {
f5385ebf
AM
1813 h->def_dynamic = 0;
1814 flip->ref_dynamic = 1;
45d6a902
AM
1815 }
1816 }
1817
45d6a902
AM
1818 return TRUE;
1819}
1820
1821/* This function is called to create an indirect symbol from the
1822 default for the symbol with the default version if needed. The
4f3fedcf 1823 symbol is described by H, NAME, SYM, SEC, and VALUE. We
0f8a2703 1824 set DYNSYM if the new indirect symbol is dynamic. */
45d6a902 1825
28caa186 1826static bfd_boolean
268b6b39
AM
1827_bfd_elf_add_default_symbol (bfd *abfd,
1828 struct bfd_link_info *info,
1829 struct elf_link_hash_entry *h,
1830 const char *name,
1831 Elf_Internal_Sym *sym,
4f3fedcf
AM
1832 asection *sec,
1833 bfd_vma value,
1834 bfd **poldbfd,
e3c9d234 1835 bfd_boolean *dynsym)
45d6a902
AM
1836{
1837 bfd_boolean type_change_ok;
1838 bfd_boolean size_change_ok;
1839 bfd_boolean skip;
1840 char *shortname;
1841 struct elf_link_hash_entry *hi;
1842 struct bfd_link_hash_entry *bh;
9c5bfbb7 1843 const struct elf_backend_data *bed;
45d6a902
AM
1844 bfd_boolean collect;
1845 bfd_boolean dynamic;
e3c9d234 1846 bfd_boolean override;
45d6a902
AM
1847 char *p;
1848 size_t len, shortlen;
ffd65175 1849 asection *tmp_sec;
6e33951e 1850 bfd_boolean matched;
45d6a902 1851
422f1182
L
1852 if (h->versioned == unversioned || h->versioned == versioned_hidden)
1853 return TRUE;
1854
45d6a902
AM
1855 /* If this symbol has a version, and it is the default version, we
1856 create an indirect symbol from the default name to the fully
1857 decorated name. This will cause external references which do not
1858 specify a version to be bound to this version of the symbol. */
1859 p = strchr (name, ELF_VER_CHR);
422f1182
L
1860 if (h->versioned == unknown)
1861 {
1862 if (p == NULL)
1863 {
1864 h->versioned = unversioned;
1865 return TRUE;
1866 }
1867 else
1868 {
1869 if (p[1] != ELF_VER_CHR)
1870 {
1871 h->versioned = versioned_hidden;
1872 return TRUE;
1873 }
1874 else
1875 h->versioned = versioned;
1876 }
1877 }
4373f8af
L
1878 else
1879 {
1880 /* PR ld/19073: We may see an unversioned definition after the
1881 default version. */
1882 if (p == NULL)
1883 return TRUE;
1884 }
45d6a902 1885
45d6a902
AM
1886 bed = get_elf_backend_data (abfd);
1887 collect = bed->collect;
1888 dynamic = (abfd->flags & DYNAMIC) != 0;
1889
1890 shortlen = p - name;
a50b1753 1891 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
45d6a902
AM
1892 if (shortname == NULL)
1893 return FALSE;
1894 memcpy (shortname, name, shortlen);
1895 shortname[shortlen] = '\0';
1896
1897 /* We are going to create a new symbol. Merge it with any existing
1898 symbol with this name. For the purposes of the merge, act as
1899 though we were defining the symbol we just defined, although we
1900 actually going to define an indirect symbol. */
1901 type_change_ok = FALSE;
1902 size_change_ok = FALSE;
6e33951e 1903 matched = TRUE;
ffd65175
AM
1904 tmp_sec = sec;
1905 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
4f3fedcf 1906 &hi, poldbfd, NULL, NULL, &skip, &override,
6e33951e 1907 &type_change_ok, &size_change_ok, &matched))
45d6a902
AM
1908 return FALSE;
1909
1910 if (skip)
1911 goto nondefault;
1912
5b677558
AM
1913 if (hi->def_regular)
1914 {
1915 /* If the undecorated symbol will have a version added by a
1916 script different to H, then don't indirect to/from the
1917 undecorated symbol. This isn't ideal because we may not yet
1918 have seen symbol versions, if given by a script on the
1919 command line rather than via --version-script. */
1920 if (hi->verinfo.vertree == NULL && info->version_info != NULL)
1921 {
1922 bfd_boolean hide;
1923
1924 hi->verinfo.vertree
1925 = bfd_find_version_for_sym (info->version_info,
1926 hi->root.root.string, &hide);
1927 if (hi->verinfo.vertree != NULL && hide)
1928 {
1929 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
1930 goto nondefault;
1931 }
1932 }
1933 if (hi->verinfo.vertree != NULL
1934 && strcmp (p + 1 + (p[1] == '@'), hi->verinfo.vertree->name) != 0)
1935 goto nondefault;
1936 }
1937
45d6a902
AM
1938 if (! override)
1939 {
c6e8a9a8 1940 /* Add the default symbol if not performing a relocatable link. */
0e1862bb 1941 if (! bfd_link_relocatable (info))
c6e8a9a8
L
1942 {
1943 bh = &hi->root;
1944 if (! (_bfd_generic_link_add_one_symbol
1945 (info, abfd, shortname, BSF_INDIRECT,
1946 bfd_ind_section_ptr,
1947 0, name, FALSE, collect, &bh)))
1948 return FALSE;
1949 hi = (struct elf_link_hash_entry *) bh;
1950 }
45d6a902
AM
1951 }
1952 else
1953 {
1954 /* In this case the symbol named SHORTNAME is overriding the
1955 indirect symbol we want to add. We were planning on making
1956 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1957 is the name without a version. NAME is the fully versioned
1958 name, and it is the default version.
1959
1960 Overriding means that we already saw a definition for the
1961 symbol SHORTNAME in a regular object, and it is overriding
1962 the symbol defined in the dynamic object.
1963
1964 When this happens, we actually want to change NAME, the
1965 symbol we just added, to refer to SHORTNAME. This will cause
1966 references to NAME in the shared object to become references
1967 to SHORTNAME in the regular object. This is what we expect
1968 when we override a function in a shared object: that the
1969 references in the shared object will be mapped to the
1970 definition in the regular object. */
1971
1972 while (hi->root.type == bfd_link_hash_indirect
1973 || hi->root.type == bfd_link_hash_warning)
1974 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1975
1976 h->root.type = bfd_link_hash_indirect;
1977 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
f5385ebf 1978 if (h->def_dynamic)
45d6a902 1979 {
f5385ebf
AM
1980 h->def_dynamic = 0;
1981 hi->ref_dynamic = 1;
1982 if (hi->ref_regular
1983 || hi->def_regular)
45d6a902 1984 {
c152c796 1985 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
45d6a902
AM
1986 return FALSE;
1987 }
1988 }
1989
1990 /* Now set HI to H, so that the following code will set the
1991 other fields correctly. */
1992 hi = h;
1993 }
1994
fab4a87f
L
1995 /* Check if HI is a warning symbol. */
1996 if (hi->root.type == bfd_link_hash_warning)
1997 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1998
45d6a902
AM
1999 /* If there is a duplicate definition somewhere, then HI may not
2000 point to an indirect symbol. We will have reported an error to
2001 the user in that case. */
2002
2003 if (hi->root.type == bfd_link_hash_indirect)
2004 {
2005 struct elf_link_hash_entry *ht;
2006
45d6a902 2007 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
fcfa13d2 2008 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
45d6a902 2009
68c88cd4
AM
2010 /* A reference to the SHORTNAME symbol from a dynamic library
2011 will be satisfied by the versioned symbol at runtime. In
2012 effect, we have a reference to the versioned symbol. */
2013 ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
2014 hi->dynamic_def |= ht->dynamic_def;
2015
45d6a902
AM
2016 /* See if the new flags lead us to realize that the symbol must
2017 be dynamic. */
2018 if (! *dynsym)
2019 {
2020 if (! dynamic)
2021 {
0e1862bb 2022 if (! bfd_link_executable (info)
90c984fc 2023 || hi->def_dynamic
f5385ebf 2024 || hi->ref_dynamic)
45d6a902
AM
2025 *dynsym = TRUE;
2026 }
2027 else
2028 {
f5385ebf 2029 if (hi->ref_regular)
45d6a902
AM
2030 *dynsym = TRUE;
2031 }
2032 }
2033 }
2034
2035 /* We also need to define an indirection from the nondefault version
2036 of the symbol. */
2037
2038nondefault:
2039 len = strlen (name);
a50b1753 2040 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
45d6a902
AM
2041 if (shortname == NULL)
2042 return FALSE;
2043 memcpy (shortname, name, shortlen);
2044 memcpy (shortname + shortlen, p + 1, len - shortlen);
2045
2046 /* Once again, merge with any existing symbol. */
2047 type_change_ok = FALSE;
2048 size_change_ok = FALSE;
ffd65175
AM
2049 tmp_sec = sec;
2050 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
115c6d5c 2051 &hi, poldbfd, NULL, NULL, &skip, &override,
6e33951e 2052 &type_change_ok, &size_change_ok, &matched))
45d6a902
AM
2053 return FALSE;
2054
2055 if (skip)
2056 return TRUE;
2057
2058 if (override)
2059 {
2060 /* Here SHORTNAME is a versioned name, so we don't expect to see
2061 the type of override we do in the case above unless it is
4cc11e76 2062 overridden by a versioned definition. */
45d6a902
AM
2063 if (hi->root.type != bfd_link_hash_defined
2064 && hi->root.type != bfd_link_hash_defweak)
4eca0228 2065 _bfd_error_handler
695344c0 2066 /* xgettext:c-format */
871b3ab2 2067 (_("%pB: unexpected redefinition of indirect versioned symbol `%s'"),
d003868e 2068 abfd, shortname);
45d6a902
AM
2069 }
2070 else
2071 {
2072 bh = &hi->root;
2073 if (! (_bfd_generic_link_add_one_symbol
2074 (info, abfd, shortname, BSF_INDIRECT,
268b6b39 2075 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
45d6a902
AM
2076 return FALSE;
2077 hi = (struct elf_link_hash_entry *) bh;
2078
2079 /* If there is a duplicate definition somewhere, then HI may not
2080 point to an indirect symbol. We will have reported an error
2081 to the user in that case. */
2082
2083 if (hi->root.type == bfd_link_hash_indirect)
2084 {
fcfa13d2 2085 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
68c88cd4
AM
2086 h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
2087 hi->dynamic_def |= h->dynamic_def;
45d6a902
AM
2088
2089 /* See if the new flags lead us to realize that the symbol
2090 must be dynamic. */
2091 if (! *dynsym)
2092 {
2093 if (! dynamic)
2094 {
0e1862bb 2095 if (! bfd_link_executable (info)
f5385ebf 2096 || hi->ref_dynamic)
45d6a902
AM
2097 *dynsym = TRUE;
2098 }
2099 else
2100 {
f5385ebf 2101 if (hi->ref_regular)
45d6a902
AM
2102 *dynsym = TRUE;
2103 }
2104 }
2105 }
2106 }
2107
2108 return TRUE;
2109}
2110\f
2111/* This routine is used to export all defined symbols into the dynamic
2112 symbol table. It is called via elf_link_hash_traverse. */
2113
28caa186 2114static bfd_boolean
268b6b39 2115_bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 2116{
a50b1753 2117 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902
AM
2118
2119 /* Ignore indirect symbols. These are added by the versioning code. */
2120 if (h->root.type == bfd_link_hash_indirect)
2121 return TRUE;
2122
7686d77d
AM
2123 /* Ignore this if we won't export it. */
2124 if (!eif->info->export_dynamic && !h->dynamic)
2125 return TRUE;
45d6a902
AM
2126
2127 if (h->dynindx == -1
fd91d419
L
2128 && (h->def_regular || h->ref_regular)
2129 && ! bfd_hide_sym_by_version (eif->info->version_info,
2130 h->root.root.string))
45d6a902 2131 {
fd91d419 2132 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902 2133 {
fd91d419
L
2134 eif->failed = TRUE;
2135 return FALSE;
45d6a902
AM
2136 }
2137 }
2138
2139 return TRUE;
2140}
2141\f
2142/* Look through the symbols which are defined in other shared
2143 libraries and referenced here. Update the list of version
2144 dependencies. This will be put into the .gnu.version_r section.
2145 This function is called via elf_link_hash_traverse. */
2146
28caa186 2147static bfd_boolean
268b6b39
AM
2148_bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
2149 void *data)
45d6a902 2150{
a50b1753 2151 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
45d6a902
AM
2152 Elf_Internal_Verneed *t;
2153 Elf_Internal_Vernaux *a;
2154 bfd_size_type amt;
2155
45d6a902
AM
2156 /* We only care about symbols defined in shared objects with version
2157 information. */
f5385ebf
AM
2158 if (!h->def_dynamic
2159 || h->def_regular
45d6a902 2160 || h->dynindx == -1
7b20f099
AM
2161 || h->verinfo.verdef == NULL
2162 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
2163 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
45d6a902
AM
2164 return TRUE;
2165
2166 /* See if we already know about this version. */
28caa186
AM
2167 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
2168 t != NULL;
2169 t = t->vn_nextref)
45d6a902
AM
2170 {
2171 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
2172 continue;
2173
2174 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2175 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
2176 return TRUE;
2177
2178 break;
2179 }
2180
2181 /* This is a new version. Add it to tree we are building. */
2182
2183 if (t == NULL)
2184 {
2185 amt = sizeof *t;
a50b1753 2186 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
45d6a902
AM
2187 if (t == NULL)
2188 {
2189 rinfo->failed = TRUE;
2190 return FALSE;
2191 }
2192
2193 t->vn_bfd = h->verinfo.verdef->vd_bfd;
28caa186
AM
2194 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
2195 elf_tdata (rinfo->info->output_bfd)->verref = t;
45d6a902
AM
2196 }
2197
2198 amt = sizeof *a;
a50b1753 2199 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
14b1c01e
AM
2200 if (a == NULL)
2201 {
2202 rinfo->failed = TRUE;
2203 return FALSE;
2204 }
45d6a902
AM
2205
2206 /* Note that we are copying a string pointer here, and testing it
2207 above. If bfd_elf_string_from_elf_section is ever changed to
2208 discard the string data when low in memory, this will have to be
2209 fixed. */
2210 a->vna_nodename = h->verinfo.verdef->vd_nodename;
2211
2212 a->vna_flags = h->verinfo.verdef->vd_flags;
2213 a->vna_nextptr = t->vn_auxptr;
2214
2215 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
2216 ++rinfo->vers;
2217
2218 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
2219
2220 t->vn_auxptr = a;
2221
2222 return TRUE;
2223}
2224
099bb8fb
L
2225/* Return TRUE and set *HIDE to TRUE if the versioned symbol is
2226 hidden. Set *T_P to NULL if there is no match. */
2227
2228static bfd_boolean
2229_bfd_elf_link_hide_versioned_symbol (struct bfd_link_info *info,
2230 struct elf_link_hash_entry *h,
2231 const char *version_p,
2232 struct bfd_elf_version_tree **t_p,
2233 bfd_boolean *hide)
2234{
2235 struct bfd_elf_version_tree *t;
2236
2237 /* Look for the version. If we find it, it is no longer weak. */
2238 for (t = info->version_info; t != NULL; t = t->next)
2239 {
2240 if (strcmp (t->name, version_p) == 0)
2241 {
2242 size_t len;
2243 char *alc;
2244 struct bfd_elf_version_expr *d;
2245
2246 len = version_p - h->root.root.string;
2247 alc = (char *) bfd_malloc (len);
2248 if (alc == NULL)
2249 return FALSE;
2250 memcpy (alc, h->root.root.string, len - 1);
2251 alc[len - 1] = '\0';
2252 if (alc[len - 2] == ELF_VER_CHR)
2253 alc[len - 2] = '\0';
2254
2255 h->verinfo.vertree = t;
2256 t->used = TRUE;
2257 d = NULL;
2258
2259 if (t->globals.list != NULL)
2260 d = (*t->match) (&t->globals, NULL, alc);
2261
2262 /* See if there is anything to force this symbol to
2263 local scope. */
2264 if (d == NULL && t->locals.list != NULL)
2265 {
2266 d = (*t->match) (&t->locals, NULL, alc);
2267 if (d != NULL
2268 && h->dynindx != -1
2269 && ! info->export_dynamic)
2270 *hide = TRUE;
2271 }
2272
2273 free (alc);
2274 break;
2275 }
2276 }
2277
2278 *t_p = t;
2279
2280 return TRUE;
2281}
2282
2283/* Return TRUE if the symbol H is hidden by version script. */
2284
2285bfd_boolean
2286_bfd_elf_link_hide_sym_by_version (struct bfd_link_info *info,
2287 struct elf_link_hash_entry *h)
2288{
2289 const char *p;
2290 bfd_boolean hide = FALSE;
2291 const struct elf_backend_data *bed
2292 = get_elf_backend_data (info->output_bfd);
2293
2294 /* Version script only hides symbols defined in regular objects. */
2295 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
2296 return TRUE;
2297
2298 p = strchr (h->root.root.string, ELF_VER_CHR);
2299 if (p != NULL && h->verinfo.vertree == NULL)
2300 {
2301 struct bfd_elf_version_tree *t;
2302
2303 ++p;
2304 if (*p == ELF_VER_CHR)
2305 ++p;
2306
2307 if (*p != '\0'
2308 && _bfd_elf_link_hide_versioned_symbol (info, h, p, &t, &hide)
2309 && hide)
2310 {
2311 if (hide)
2312 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2313 return TRUE;
2314 }
2315 }
2316
2317 /* If we don't have a version for this symbol, see if we can find
2318 something. */
2319 if (h->verinfo.vertree == NULL && info->version_info != NULL)
2320 {
2321 h->verinfo.vertree
2322 = bfd_find_version_for_sym (info->version_info,
2323 h->root.root.string, &hide);
2324 if (h->verinfo.vertree != NULL && hide)
2325 {
2326 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2327 return TRUE;
2328 }
2329 }
2330
2331 return FALSE;
2332}
2333
45d6a902
AM
2334/* Figure out appropriate versions for all the symbols. We may not
2335 have the version number script until we have read all of the input
2336 files, so until that point we don't know which symbols should be
2337 local. This function is called via elf_link_hash_traverse. */
2338
28caa186 2339static bfd_boolean
268b6b39 2340_bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
45d6a902 2341{
28caa186 2342 struct elf_info_failed *sinfo;
45d6a902 2343 struct bfd_link_info *info;
9c5bfbb7 2344 const struct elf_backend_data *bed;
45d6a902
AM
2345 struct elf_info_failed eif;
2346 char *p;
099bb8fb 2347 bfd_boolean hide;
45d6a902 2348
a50b1753 2349 sinfo = (struct elf_info_failed *) data;
45d6a902
AM
2350 info = sinfo->info;
2351
45d6a902
AM
2352 /* Fix the symbol flags. */
2353 eif.failed = FALSE;
2354 eif.info = info;
2355 if (! _bfd_elf_fix_symbol_flags (h, &eif))
2356 {
2357 if (eif.failed)
2358 sinfo->failed = TRUE;
2359 return FALSE;
2360 }
2361
2362 /* We only need version numbers for symbols defined in regular
2363 objects. */
f5385ebf 2364 if (!h->def_regular)
45d6a902
AM
2365 return TRUE;
2366
099bb8fb 2367 hide = FALSE;
28caa186 2368 bed = get_elf_backend_data (info->output_bfd);
45d6a902
AM
2369 p = strchr (h->root.root.string, ELF_VER_CHR);
2370 if (p != NULL && h->verinfo.vertree == NULL)
2371 {
2372 struct bfd_elf_version_tree *t;
45d6a902 2373
45d6a902
AM
2374 ++p;
2375 if (*p == ELF_VER_CHR)
6e33951e 2376 ++p;
45d6a902
AM
2377
2378 /* If there is no version string, we can just return out. */
2379 if (*p == '\0')
6e33951e 2380 return TRUE;
45d6a902 2381
099bb8fb 2382 if (!_bfd_elf_link_hide_versioned_symbol (info, h, p, &t, &hide))
45d6a902 2383 {
099bb8fb
L
2384 sinfo->failed = TRUE;
2385 return FALSE;
45d6a902
AM
2386 }
2387
099bb8fb
L
2388 if (hide)
2389 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2390
45d6a902
AM
2391 /* If we are building an application, we need to create a
2392 version node for this version. */
0e1862bb 2393 if (t == NULL && bfd_link_executable (info))
45d6a902
AM
2394 {
2395 struct bfd_elf_version_tree **pp;
2396 int version_index;
2397
2398 /* If we aren't going to export this symbol, we don't need
2399 to worry about it. */
2400 if (h->dynindx == -1)
2401 return TRUE;
2402
ef53be89
AM
2403 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd,
2404 sizeof *t);
45d6a902
AM
2405 if (t == NULL)
2406 {
2407 sinfo->failed = TRUE;
2408 return FALSE;
2409 }
2410
45d6a902 2411 t->name = p;
45d6a902
AM
2412 t->name_indx = (unsigned int) -1;
2413 t->used = TRUE;
2414
2415 version_index = 1;
2416 /* Don't count anonymous version tag. */
fd91d419
L
2417 if (sinfo->info->version_info != NULL
2418 && sinfo->info->version_info->vernum == 0)
45d6a902 2419 version_index = 0;
fd91d419
L
2420 for (pp = &sinfo->info->version_info;
2421 *pp != NULL;
2422 pp = &(*pp)->next)
45d6a902
AM
2423 ++version_index;
2424 t->vernum = version_index;
2425
2426 *pp = t;
2427
2428 h->verinfo.vertree = t;
2429 }
2430 else if (t == NULL)
2431 {
2432 /* We could not find the version for a symbol when
2433 generating a shared archive. Return an error. */
4eca0228 2434 _bfd_error_handler
695344c0 2435 /* xgettext:c-format */
871b3ab2 2436 (_("%pB: version node not found for symbol %s"),
28caa186 2437 info->output_bfd, h->root.root.string);
45d6a902
AM
2438 bfd_set_error (bfd_error_bad_value);
2439 sinfo->failed = TRUE;
2440 return FALSE;
2441 }
45d6a902
AM
2442 }
2443
2444 /* If we don't have a version for this symbol, see if we can find
2445 something. */
099bb8fb
L
2446 if (!hide
2447 && h->verinfo.vertree == NULL
2448 && sinfo->info->version_info != NULL)
45d6a902 2449 {
fd91d419
L
2450 h->verinfo.vertree
2451 = bfd_find_version_for_sym (sinfo->info->version_info,
2452 h->root.root.string, &hide);
1e8fa21e
AM
2453 if (h->verinfo.vertree != NULL && hide)
2454 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
2455 }
2456
2457 return TRUE;
2458}
2459\f
45d6a902
AM
2460/* Read and swap the relocs from the section indicated by SHDR. This
2461 may be either a REL or a RELA section. The relocations are
2462 translated into RELA relocations and stored in INTERNAL_RELOCS,
2463 which should have already been allocated to contain enough space.
2464 The EXTERNAL_RELOCS are a buffer where the external form of the
2465 relocations should be stored.
2466
2467 Returns FALSE if something goes wrong. */
2468
2469static bfd_boolean
268b6b39 2470elf_link_read_relocs_from_section (bfd *abfd,
243ef1e0 2471 asection *sec,
268b6b39
AM
2472 Elf_Internal_Shdr *shdr,
2473 void *external_relocs,
2474 Elf_Internal_Rela *internal_relocs)
45d6a902 2475{
9c5bfbb7 2476 const struct elf_backend_data *bed;
268b6b39 2477 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
45d6a902
AM
2478 const bfd_byte *erela;
2479 const bfd_byte *erelaend;
2480 Elf_Internal_Rela *irela;
243ef1e0
L
2481 Elf_Internal_Shdr *symtab_hdr;
2482 size_t nsyms;
45d6a902 2483
45d6a902
AM
2484 /* Position ourselves at the start of the section. */
2485 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2486 return FALSE;
2487
2488 /* Read the relocations. */
2489 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2490 return FALSE;
2491
243ef1e0 2492 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
ce98a316 2493 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
243ef1e0 2494
45d6a902
AM
2495 bed = get_elf_backend_data (abfd);
2496
2497 /* Convert the external relocations to the internal format. */
2498 if (shdr->sh_entsize == bed->s->sizeof_rel)
2499 swap_in = bed->s->swap_reloc_in;
2500 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2501 swap_in = bed->s->swap_reloca_in;
2502 else
2503 {
2504 bfd_set_error (bfd_error_wrong_format);
2505 return FALSE;
2506 }
2507
a50b1753 2508 erela = (const bfd_byte *) external_relocs;
51992aec 2509 erelaend = erela + shdr->sh_size;
45d6a902
AM
2510 irela = internal_relocs;
2511 while (erela < erelaend)
2512 {
243ef1e0
L
2513 bfd_vma r_symndx;
2514
45d6a902 2515 (*swap_in) (abfd, erela, irela);
243ef1e0
L
2516 r_symndx = ELF32_R_SYM (irela->r_info);
2517 if (bed->s->arch_size == 64)
2518 r_symndx >>= 24;
ce98a316
NC
2519 if (nsyms > 0)
2520 {
2521 if ((size_t) r_symndx >= nsyms)
2522 {
4eca0228 2523 _bfd_error_handler
695344c0 2524 /* xgettext:c-format */
2dcf00ce
AM
2525 (_("%pB: bad reloc symbol index (%#" PRIx64 " >= %#lx)"
2526 " for offset %#" PRIx64 " in section `%pA'"),
2527 abfd, (uint64_t) r_symndx, (unsigned long) nsyms,
2528 (uint64_t) irela->r_offset, sec);
ce98a316
NC
2529 bfd_set_error (bfd_error_bad_value);
2530 return FALSE;
2531 }
2532 }
cf35638d 2533 else if (r_symndx != STN_UNDEF)
243ef1e0 2534 {
4eca0228 2535 _bfd_error_handler
695344c0 2536 /* xgettext:c-format */
2dcf00ce
AM
2537 (_("%pB: non-zero symbol index (%#" PRIx64 ")"
2538 " for offset %#" PRIx64 " in section `%pA'"
ce98a316 2539 " when the object file has no symbol table"),
2dcf00ce
AM
2540 abfd, (uint64_t) r_symndx,
2541 (uint64_t) irela->r_offset, sec);
243ef1e0
L
2542 bfd_set_error (bfd_error_bad_value);
2543 return FALSE;
2544 }
45d6a902
AM
2545 irela += bed->s->int_rels_per_ext_rel;
2546 erela += shdr->sh_entsize;
2547 }
2548
2549 return TRUE;
2550}
2551
2552/* Read and swap the relocs for a section O. They may have been
2553 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2554 not NULL, they are used as buffers to read into. They are known to
2555 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2556 the return value is allocated using either malloc or bfd_alloc,
2557 according to the KEEP_MEMORY argument. If O has two relocation
2558 sections (both REL and RELA relocations), then the REL_HDR
2559 relocations will appear first in INTERNAL_RELOCS, followed by the
d4730f92 2560 RELA_HDR relocations. */
45d6a902
AM
2561
2562Elf_Internal_Rela *
268b6b39
AM
2563_bfd_elf_link_read_relocs (bfd *abfd,
2564 asection *o,
2565 void *external_relocs,
2566 Elf_Internal_Rela *internal_relocs,
2567 bfd_boolean keep_memory)
45d6a902 2568{
268b6b39 2569 void *alloc1 = NULL;
45d6a902 2570 Elf_Internal_Rela *alloc2 = NULL;
9c5bfbb7 2571 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92
BS
2572 struct bfd_elf_section_data *esdo = elf_section_data (o);
2573 Elf_Internal_Rela *internal_rela_relocs;
45d6a902 2574
d4730f92
BS
2575 if (esdo->relocs != NULL)
2576 return esdo->relocs;
45d6a902
AM
2577
2578 if (o->reloc_count == 0)
2579 return NULL;
2580
45d6a902
AM
2581 if (internal_relocs == NULL)
2582 {
2583 bfd_size_type size;
2584
056bafd4 2585 size = (bfd_size_type) o->reloc_count * sizeof (Elf_Internal_Rela);
45d6a902 2586 if (keep_memory)
a50b1753 2587 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
45d6a902 2588 else
a50b1753 2589 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
45d6a902
AM
2590 if (internal_relocs == NULL)
2591 goto error_return;
2592 }
2593
2594 if (external_relocs == NULL)
2595 {
d4730f92
BS
2596 bfd_size_type size = 0;
2597
2598 if (esdo->rel.hdr)
2599 size += esdo->rel.hdr->sh_size;
2600 if (esdo->rela.hdr)
2601 size += esdo->rela.hdr->sh_size;
45d6a902 2602
268b6b39 2603 alloc1 = bfd_malloc (size);
45d6a902
AM
2604 if (alloc1 == NULL)
2605 goto error_return;
2606 external_relocs = alloc1;
2607 }
2608
d4730f92
BS
2609 internal_rela_relocs = internal_relocs;
2610 if (esdo->rel.hdr)
2611 {
2612 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2613 external_relocs,
2614 internal_relocs))
2615 goto error_return;
2616 external_relocs = (((bfd_byte *) external_relocs)
2617 + esdo->rel.hdr->sh_size);
2618 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2619 * bed->s->int_rels_per_ext_rel);
2620 }
2621
2622 if (esdo->rela.hdr
2623 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2624 external_relocs,
2625 internal_rela_relocs)))
45d6a902
AM
2626 goto error_return;
2627
2628 /* Cache the results for next time, if we can. */
2629 if (keep_memory)
d4730f92 2630 esdo->relocs = internal_relocs;
45d6a902
AM
2631
2632 if (alloc1 != NULL)
2633 free (alloc1);
2634
2635 /* Don't free alloc2, since if it was allocated we are passing it
2636 back (under the name of internal_relocs). */
2637
2638 return internal_relocs;
2639
2640 error_return:
2641 if (alloc1 != NULL)
2642 free (alloc1);
2643 if (alloc2 != NULL)
4dd07732
AM
2644 {
2645 if (keep_memory)
2646 bfd_release (abfd, alloc2);
2647 else
2648 free (alloc2);
2649 }
45d6a902
AM
2650 return NULL;
2651}
2652
2653/* Compute the size of, and allocate space for, REL_HDR which is the
2654 section header for a section containing relocations for O. */
2655
28caa186 2656static bfd_boolean
9eaff861
AO
2657_bfd_elf_link_size_reloc_section (bfd *abfd,
2658 struct bfd_elf_section_reloc_data *reldata)
45d6a902 2659{
9eaff861 2660 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
45d6a902
AM
2661
2662 /* That allows us to calculate the size of the section. */
9eaff861 2663 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
45d6a902
AM
2664
2665 /* The contents field must last into write_object_contents, so we
2666 allocate it with bfd_alloc rather than malloc. Also since we
2667 cannot be sure that the contents will actually be filled in,
2668 we zero the allocated space. */
a50b1753 2669 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
45d6a902
AM
2670 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2671 return FALSE;
2672
d4730f92 2673 if (reldata->hashes == NULL && reldata->count)
45d6a902
AM
2674 {
2675 struct elf_link_hash_entry **p;
2676
ca4be51c
AM
2677 p = ((struct elf_link_hash_entry **)
2678 bfd_zmalloc (reldata->count * sizeof (*p)));
45d6a902
AM
2679 if (p == NULL)
2680 return FALSE;
2681
d4730f92 2682 reldata->hashes = p;
45d6a902
AM
2683 }
2684
2685 return TRUE;
2686}
2687
2688/* Copy the relocations indicated by the INTERNAL_RELOCS (which
2689 originated from the section given by INPUT_REL_HDR) to the
2690 OUTPUT_BFD. */
2691
2692bfd_boolean
268b6b39
AM
2693_bfd_elf_link_output_relocs (bfd *output_bfd,
2694 asection *input_section,
2695 Elf_Internal_Shdr *input_rel_hdr,
eac338cf
PB
2696 Elf_Internal_Rela *internal_relocs,
2697 struct elf_link_hash_entry **rel_hash
2698 ATTRIBUTE_UNUSED)
45d6a902
AM
2699{
2700 Elf_Internal_Rela *irela;
2701 Elf_Internal_Rela *irelaend;
2702 bfd_byte *erel;
d4730f92 2703 struct bfd_elf_section_reloc_data *output_reldata;
45d6a902 2704 asection *output_section;
9c5bfbb7 2705 const struct elf_backend_data *bed;
268b6b39 2706 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
d4730f92 2707 struct bfd_elf_section_data *esdo;
45d6a902
AM
2708
2709 output_section = input_section->output_section;
45d6a902 2710
d4730f92
BS
2711 bed = get_elf_backend_data (output_bfd);
2712 esdo = elf_section_data (output_section);
2713 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2714 {
d4730f92
BS
2715 output_reldata = &esdo->rel;
2716 swap_out = bed->s->swap_reloc_out;
45d6a902 2717 }
d4730f92
BS
2718 else if (esdo->rela.hdr
2719 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2720 {
d4730f92
BS
2721 output_reldata = &esdo->rela;
2722 swap_out = bed->s->swap_reloca_out;
45d6a902
AM
2723 }
2724 else
2725 {
4eca0228 2726 _bfd_error_handler
695344c0 2727 /* xgettext:c-format */
871b3ab2 2728 (_("%pB: relocation size mismatch in %pB section %pA"),
d003868e 2729 output_bfd, input_section->owner, input_section);
297d8443 2730 bfd_set_error (bfd_error_wrong_format);
45d6a902
AM
2731 return FALSE;
2732 }
2733
d4730f92
BS
2734 erel = output_reldata->hdr->contents;
2735 erel += output_reldata->count * input_rel_hdr->sh_entsize;
45d6a902
AM
2736 irela = internal_relocs;
2737 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2738 * bed->s->int_rels_per_ext_rel);
2739 while (irela < irelaend)
2740 {
2741 (*swap_out) (output_bfd, irela, erel);
2742 irela += bed->s->int_rels_per_ext_rel;
2743 erel += input_rel_hdr->sh_entsize;
2744 }
2745
2746 /* Bump the counter, so that we know where to add the next set of
2747 relocations. */
d4730f92 2748 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
45d6a902
AM
2749
2750 return TRUE;
2751}
2752\f
508c3946
L
2753/* Make weak undefined symbols in PIE dynamic. */
2754
2755bfd_boolean
2756_bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2757 struct elf_link_hash_entry *h)
2758{
0e1862bb 2759 if (bfd_link_pie (info)
508c3946
L
2760 && h->dynindx == -1
2761 && h->root.type == bfd_link_hash_undefweak)
2762 return bfd_elf_link_record_dynamic_symbol (info, h);
2763
2764 return TRUE;
2765}
2766
45d6a902
AM
2767/* Fix up the flags for a symbol. This handles various cases which
2768 can only be fixed after all the input files are seen. This is
2769 currently called by both adjust_dynamic_symbol and
2770 assign_sym_version, which is unnecessary but perhaps more robust in
2771 the face of future changes. */
2772
28caa186 2773static bfd_boolean
268b6b39
AM
2774_bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2775 struct elf_info_failed *eif)
45d6a902 2776{
33774f08 2777 const struct elf_backend_data *bed;
508c3946 2778
45d6a902
AM
2779 /* If this symbol was mentioned in a non-ELF file, try to set
2780 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2781 permit a non-ELF file to correctly refer to a symbol defined in
2782 an ELF dynamic object. */
f5385ebf 2783 if (h->non_elf)
45d6a902
AM
2784 {
2785 while (h->root.type == bfd_link_hash_indirect)
2786 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2787
2788 if (h->root.type != bfd_link_hash_defined
2789 && h->root.type != bfd_link_hash_defweak)
f5385ebf
AM
2790 {
2791 h->ref_regular = 1;
2792 h->ref_regular_nonweak = 1;
2793 }
45d6a902
AM
2794 else
2795 {
2796 if (h->root.u.def.section->owner != NULL
2797 && (bfd_get_flavour (h->root.u.def.section->owner)
2798 == bfd_target_elf_flavour))
f5385ebf
AM
2799 {
2800 h->ref_regular = 1;
2801 h->ref_regular_nonweak = 1;
2802 }
45d6a902 2803 else
f5385ebf 2804 h->def_regular = 1;
45d6a902
AM
2805 }
2806
2807 if (h->dynindx == -1
f5385ebf
AM
2808 && (h->def_dynamic
2809 || h->ref_dynamic))
45d6a902 2810 {
c152c796 2811 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902
AM
2812 {
2813 eif->failed = TRUE;
2814 return FALSE;
2815 }
2816 }
2817 }
2818 else
2819 {
f5385ebf 2820 /* Unfortunately, NON_ELF is only correct if the symbol
45d6a902
AM
2821 was first seen in a non-ELF file. Fortunately, if the symbol
2822 was first seen in an ELF file, we're probably OK unless the
2823 symbol was defined in a non-ELF file. Catch that case here.
2824 FIXME: We're still in trouble if the symbol was first seen in
2825 a dynamic object, and then later in a non-ELF regular object. */
2826 if ((h->root.type == bfd_link_hash_defined
2827 || h->root.type == bfd_link_hash_defweak)
f5385ebf 2828 && !h->def_regular
45d6a902
AM
2829 && (h->root.u.def.section->owner != NULL
2830 ? (bfd_get_flavour (h->root.u.def.section->owner)
2831 != bfd_target_elf_flavour)
2832 : (bfd_is_abs_section (h->root.u.def.section)
f5385ebf
AM
2833 && !h->def_dynamic)))
2834 h->def_regular = 1;
45d6a902
AM
2835 }
2836
508c3946 2837 /* Backend specific symbol fixup. */
33774f08
AM
2838 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2839 if (bed->elf_backend_fixup_symbol
2840 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2841 return FALSE;
508c3946 2842
45d6a902
AM
2843 /* If this is a final link, and the symbol was defined as a common
2844 symbol in a regular object file, and there was no definition in
2845 any dynamic object, then the linker will have allocated space for
f5385ebf 2846 the symbol in a common section but the DEF_REGULAR
45d6a902
AM
2847 flag will not have been set. */
2848 if (h->root.type == bfd_link_hash_defined
f5385ebf
AM
2849 && !h->def_regular
2850 && h->ref_regular
2851 && !h->def_dynamic
96f29d96 2852 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
f5385ebf 2853 h->def_regular = 1;
45d6a902 2854
4deb8f71
L
2855 /* If a weak undefined symbol has non-default visibility, we also
2856 hide it from the dynamic linker. */
2857 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2858 && h->root.type == bfd_link_hash_undefweak)
2859 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2860
2861 /* A hidden versioned symbol in executable should be forced local if
2862 it is is locally defined, not referenced by shared library and not
2863 exported. */
2864 else if (bfd_link_executable (eif->info)
2865 && h->versioned == versioned_hidden
2866 && !eif->info->export_dynamic
2867 && !h->dynamic
2868 && !h->ref_dynamic
2869 && h->def_regular)
2870 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2871
45d6a902
AM
2872 /* If -Bsymbolic was used (which means to bind references to global
2873 symbols to the definition within the shared object), and this
2874 symbol was defined in a regular object, then it actually doesn't
9c7a29a3
AM
2875 need a PLT entry. Likewise, if the symbol has non-default
2876 visibility. If the symbol has hidden or internal visibility, we
c1be741f 2877 will force it local. */
4deb8f71
L
2878 else if (h->needs_plt
2879 && bfd_link_pic (eif->info)
2880 && is_elf_hash_table (eif->info->hash)
2881 && (SYMBOLIC_BIND (eif->info, h)
2882 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2883 && h->def_regular)
45d6a902 2884 {
45d6a902
AM
2885 bfd_boolean force_local;
2886
45d6a902
AM
2887 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2888 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2889 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2890 }
2891
45d6a902
AM
2892 /* If this is a weak defined symbol in a dynamic object, and we know
2893 the real definition in the dynamic object, copy interesting flags
2894 over to the real definition. */
60d67dc8 2895 if (h->is_weakalias)
45d6a902 2896 {
60d67dc8
AM
2897 struct elf_link_hash_entry *def = weakdef (h);
2898
45d6a902
AM
2899 /* If the real definition is defined by a regular object file,
2900 don't do anything special. See the longer description in
2901 _bfd_elf_adjust_dynamic_symbol, below. */
60d67dc8
AM
2902 if (def->def_regular)
2903 {
2904 h = def;
2905 while ((h = h->u.alias) != def)
2906 h->is_weakalias = 0;
2907 }
45d6a902 2908 else
a26587ba 2909 {
4e6b54a6
AM
2910 while (h->root.type == bfd_link_hash_indirect)
2911 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4e6b54a6
AM
2912 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2913 || h->root.type == bfd_link_hash_defweak);
60d67dc8
AM
2914 BFD_ASSERT (def->def_dynamic);
2915 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
2916 (*bed->elf_backend_copy_indirect_symbol) (eif->info, def, h);
a26587ba 2917 }
45d6a902
AM
2918 }
2919
2920 return TRUE;
2921}
2922
2923/* Make the backend pick a good value for a dynamic symbol. This is
2924 called via elf_link_hash_traverse, and also calls itself
2925 recursively. */
2926
28caa186 2927static bfd_boolean
268b6b39 2928_bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 2929{
a50b1753 2930 struct elf_info_failed *eif = (struct elf_info_failed *) data;
559192d8 2931 struct elf_link_hash_table *htab;
9c5bfbb7 2932 const struct elf_backend_data *bed;
45d6a902 2933
0eddce27 2934 if (! is_elf_hash_table (eif->info->hash))
45d6a902
AM
2935 return FALSE;
2936
45d6a902
AM
2937 /* Ignore indirect symbols. These are added by the versioning code. */
2938 if (h->root.type == bfd_link_hash_indirect)
2939 return TRUE;
2940
2941 /* Fix the symbol flags. */
2942 if (! _bfd_elf_fix_symbol_flags (h, eif))
2943 return FALSE;
2944
559192d8
AM
2945 htab = elf_hash_table (eif->info);
2946 bed = get_elf_backend_data (htab->dynobj);
2947
954b63d4
AM
2948 if (h->root.type == bfd_link_hash_undefweak)
2949 {
2950 if (eif->info->dynamic_undefined_weak == 0)
559192d8 2951 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
954b63d4
AM
2952 else if (eif->info->dynamic_undefined_weak > 0
2953 && h->ref_regular
2954 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2955 && !bfd_hide_sym_by_version (eif->info->version_info,
2956 h->root.root.string))
2957 {
2958 if (!bfd_elf_link_record_dynamic_symbol (eif->info, h))
2959 {
2960 eif->failed = TRUE;
2961 return FALSE;
2962 }
2963 }
2964 }
2965
45d6a902
AM
2966 /* If this symbol does not require a PLT entry, and it is not
2967 defined by a dynamic object, or is not referenced by a regular
2968 object, ignore it. We do have to handle a weak defined symbol,
2969 even if no regular object refers to it, if we decided to add it
2970 to the dynamic symbol table. FIXME: Do we normally need to worry
2971 about symbols which are defined by one dynamic object and
2972 referenced by another one? */
f5385ebf 2973 if (!h->needs_plt
91e21fb7 2974 && h->type != STT_GNU_IFUNC
f5385ebf
AM
2975 && (h->def_regular
2976 || !h->def_dynamic
2977 || (!h->ref_regular
60d67dc8 2978 && (!h->is_weakalias || weakdef (h)->dynindx == -1))))
45d6a902 2979 {
a6aa5195 2980 h->plt = elf_hash_table (eif->info)->init_plt_offset;
45d6a902
AM
2981 return TRUE;
2982 }
2983
2984 /* If we've already adjusted this symbol, don't do it again. This
2985 can happen via a recursive call. */
f5385ebf 2986 if (h->dynamic_adjusted)
45d6a902
AM
2987 return TRUE;
2988
2989 /* Don't look at this symbol again. Note that we must set this
2990 after checking the above conditions, because we may look at a
2991 symbol once, decide not to do anything, and then get called
2992 recursively later after REF_REGULAR is set below. */
f5385ebf 2993 h->dynamic_adjusted = 1;
45d6a902
AM
2994
2995 /* If this is a weak definition, and we know a real definition, and
2996 the real symbol is not itself defined by a regular object file,
2997 then get a good value for the real definition. We handle the
2998 real symbol first, for the convenience of the backend routine.
2999
3000 Note that there is a confusing case here. If the real definition
3001 is defined by a regular object file, we don't get the real symbol
3002 from the dynamic object, but we do get the weak symbol. If the
3003 processor backend uses a COPY reloc, then if some routine in the
3004 dynamic object changes the real symbol, we will not see that
3005 change in the corresponding weak symbol. This is the way other
3006 ELF linkers work as well, and seems to be a result of the shared
3007 library model.
3008
3009 I will clarify this issue. Most SVR4 shared libraries define the
3010 variable _timezone and define timezone as a weak synonym. The
3011 tzset call changes _timezone. If you write
3012 extern int timezone;
3013 int _timezone = 5;
3014 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
3015 you might expect that, since timezone is a synonym for _timezone,
3016 the same number will print both times. However, if the processor
3017 backend uses a COPY reloc, then actually timezone will be copied
3018 into your process image, and, since you define _timezone
3019 yourself, _timezone will not. Thus timezone and _timezone will
3020 wind up at different memory locations. The tzset call will set
3021 _timezone, leaving timezone unchanged. */
3022
60d67dc8 3023 if (h->is_weakalias)
45d6a902 3024 {
60d67dc8
AM
3025 struct elf_link_hash_entry *def = weakdef (h);
3026
ec24dc88 3027 /* If we get to this point, there is an implicit reference to
60d67dc8
AM
3028 the alias by a regular object file via the weak symbol H. */
3029 def->ref_regular = 1;
45d6a902 3030
ec24dc88 3031 /* Ensure that the backend adjust_dynamic_symbol function sees
60d67dc8
AM
3032 the strong alias before H by recursively calling ourselves. */
3033 if (!_bfd_elf_adjust_dynamic_symbol (def, eif))
45d6a902
AM
3034 return FALSE;
3035 }
3036
3037 /* If a symbol has no type and no size and does not require a PLT
3038 entry, then we are probably about to do the wrong thing here: we
3039 are probably going to create a COPY reloc for an empty object.
3040 This case can arise when a shared object is built with assembly
3041 code, and the assembly code fails to set the symbol type. */
3042 if (h->size == 0
3043 && h->type == STT_NOTYPE
f5385ebf 3044 && !h->needs_plt)
4eca0228 3045 _bfd_error_handler
45d6a902
AM
3046 (_("warning: type and size of dynamic symbol `%s' are not defined"),
3047 h->root.root.string);
3048
45d6a902
AM
3049 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
3050 {
3051 eif->failed = TRUE;
3052 return FALSE;
3053 }
3054
3055 return TRUE;
3056}
3057
027297b7
L
3058/* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
3059 DYNBSS. */
3060
3061bfd_boolean
6cabe1ea
AM
3062_bfd_elf_adjust_dynamic_copy (struct bfd_link_info *info,
3063 struct elf_link_hash_entry *h,
027297b7
L
3064 asection *dynbss)
3065{
91ac5911 3066 unsigned int power_of_two;
027297b7
L
3067 bfd_vma mask;
3068 asection *sec = h->root.u.def.section;
3069
de194d85 3070 /* The section alignment of the definition is the maximum alignment
91ac5911
L
3071 requirement of symbols defined in the section. Since we don't
3072 know the symbol alignment requirement, we start with the
3073 maximum alignment and check low bits of the symbol address
3074 for the minimum alignment. */
3075 power_of_two = bfd_get_section_alignment (sec->owner, sec);
3076 mask = ((bfd_vma) 1 << power_of_two) - 1;
3077 while ((h->root.u.def.value & mask) != 0)
3078 {
3079 mask >>= 1;
3080 --power_of_two;
3081 }
027297b7 3082
91ac5911
L
3083 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
3084 dynbss))
027297b7
L
3085 {
3086 /* Adjust the section alignment if needed. */
3087 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
91ac5911 3088 power_of_two))
027297b7
L
3089 return FALSE;
3090 }
3091
91ac5911 3092 /* We make sure that the symbol will be aligned properly. */
027297b7
L
3093 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
3094
3095 /* Define the symbol as being at this point in DYNBSS. */
3096 h->root.u.def.section = dynbss;
3097 h->root.u.def.value = dynbss->size;
3098
3099 /* Increment the size of DYNBSS to make room for the symbol. */
3100 dynbss->size += h->size;
3101
f7483970
L
3102 /* No error if extern_protected_data is true. */
3103 if (h->protected_def
889c2a67
L
3104 && (!info->extern_protected_data
3105 || (info->extern_protected_data < 0
3106 && !get_elf_backend_data (dynbss->owner)->extern_protected_data)))
d07a1b05 3107 info->callbacks->einfo
c1c8c1ef 3108 (_("%P: copy reloc against protected `%pT' is dangerous\n"),
d07a1b05 3109 h->root.root.string);
6cabe1ea 3110
027297b7
L
3111 return TRUE;
3112}
3113
45d6a902
AM
3114/* Adjust all external symbols pointing into SEC_MERGE sections
3115 to reflect the object merging within the sections. */
3116
28caa186 3117static bfd_boolean
268b6b39 3118_bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
45d6a902
AM
3119{
3120 asection *sec;
3121
45d6a902
AM
3122 if ((h->root.type == bfd_link_hash_defined
3123 || h->root.type == bfd_link_hash_defweak)
3124 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
dbaa2011 3125 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
45d6a902 3126 {
a50b1753 3127 bfd *output_bfd = (bfd *) data;
45d6a902
AM
3128
3129 h->root.u.def.value =
3130 _bfd_merged_section_offset (output_bfd,
3131 &h->root.u.def.section,
3132 elf_section_data (sec)->sec_info,
753731ee 3133 h->root.u.def.value);
45d6a902
AM
3134 }
3135
3136 return TRUE;
3137}
986a241f
RH
3138
3139/* Returns false if the symbol referred to by H should be considered
3140 to resolve local to the current module, and true if it should be
3141 considered to bind dynamically. */
3142
3143bfd_boolean
268b6b39
AM
3144_bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
3145 struct bfd_link_info *info,
89a2ee5a 3146 bfd_boolean not_local_protected)
986a241f
RH
3147{
3148 bfd_boolean binding_stays_local_p;
fcb93ecf
PB
3149 const struct elf_backend_data *bed;
3150 struct elf_link_hash_table *hash_table;
986a241f
RH
3151
3152 if (h == NULL)
3153 return FALSE;
3154
3155 while (h->root.type == bfd_link_hash_indirect
3156 || h->root.type == bfd_link_hash_warning)
3157 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3158
3159 /* If it was forced local, then clearly it's not dynamic. */
3160 if (h->dynindx == -1)
3161 return FALSE;
f5385ebf 3162 if (h->forced_local)
986a241f
RH
3163 return FALSE;
3164
3165 /* Identify the cases where name binding rules say that a
3166 visible symbol resolves locally. */
0e1862bb
L
3167 binding_stays_local_p = (bfd_link_executable (info)
3168 || SYMBOLIC_BIND (info, h));
986a241f
RH
3169
3170 switch (ELF_ST_VISIBILITY (h->other))
3171 {
3172 case STV_INTERNAL:
3173 case STV_HIDDEN:
3174 return FALSE;
3175
3176 case STV_PROTECTED:
fcb93ecf
PB
3177 hash_table = elf_hash_table (info);
3178 if (!is_elf_hash_table (hash_table))
3179 return FALSE;
3180
3181 bed = get_elf_backend_data (hash_table->dynobj);
3182
986a241f
RH
3183 /* Proper resolution for function pointer equality may require
3184 that these symbols perhaps be resolved dynamically, even though
3185 we should be resolving them to the current module. */
89a2ee5a 3186 if (!not_local_protected || !bed->is_function_type (h->type))
986a241f
RH
3187 binding_stays_local_p = TRUE;
3188 break;
3189
3190 default:
986a241f
RH
3191 break;
3192 }
3193
aa37626c 3194 /* If it isn't defined locally, then clearly it's dynamic. */
89a2ee5a 3195 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
aa37626c
L
3196 return TRUE;
3197
986a241f
RH
3198 /* Otherwise, the symbol is dynamic if binding rules don't tell
3199 us that it remains local. */
3200 return !binding_stays_local_p;
3201}
f6c52c13
AM
3202
3203/* Return true if the symbol referred to by H should be considered
3204 to resolve local to the current module, and false otherwise. Differs
3205 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2e76e85a 3206 undefined symbols. The two functions are virtually identical except
0fad2956
MR
3207 for the place where dynindx == -1 is tested. If that test is true,
3208 _bfd_elf_dynamic_symbol_p will say the symbol is local, while
3209 _bfd_elf_symbol_refs_local_p will say the symbol is local only for
3210 defined symbols.
89a2ee5a
AM
3211 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
3212 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
3213 treatment of undefined weak symbols. For those that do not make
3214 undefined weak symbols dynamic, both functions may return false. */
f6c52c13
AM
3215
3216bfd_boolean
268b6b39
AM
3217_bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
3218 struct bfd_link_info *info,
3219 bfd_boolean local_protected)
f6c52c13 3220{
fcb93ecf
PB
3221 const struct elf_backend_data *bed;
3222 struct elf_link_hash_table *hash_table;
3223
f6c52c13
AM
3224 /* If it's a local sym, of course we resolve locally. */
3225 if (h == NULL)
3226 return TRUE;
3227
d95edcac
L
3228 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
3229 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
3230 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
3231 return TRUE;
3232
0fad2956
MR
3233 /* Forced local symbols resolve locally. */
3234 if (h->forced_local)
3235 return TRUE;
3236
7e2294f9
AO
3237 /* Common symbols that become definitions don't get the DEF_REGULAR
3238 flag set, so test it first, and don't bail out. */
3239 if (ELF_COMMON_DEF_P (h))
3240 /* Do nothing. */;
f6c52c13 3241 /* If we don't have a definition in a regular file, then we can't
49ff44d6
L
3242 resolve locally. The sym is either undefined or dynamic. */
3243 else if (!h->def_regular)
f6c52c13
AM
3244 return FALSE;
3245
0fad2956 3246 /* Non-dynamic symbols resolve locally. */
f6c52c13
AM
3247 if (h->dynindx == -1)
3248 return TRUE;
3249
3250 /* At this point, we know the symbol is defined and dynamic. In an
3251 executable it must resolve locally, likewise when building symbolic
3252 shared libraries. */
0e1862bb 3253 if (bfd_link_executable (info) || SYMBOLIC_BIND (info, h))
f6c52c13
AM
3254 return TRUE;
3255
3256 /* Now deal with defined dynamic symbols in shared libraries. Ones
3257 with default visibility might not resolve locally. */
3258 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
3259 return FALSE;
3260
fcb93ecf
PB
3261 hash_table = elf_hash_table (info);
3262 if (!is_elf_hash_table (hash_table))
3263 return TRUE;
3264
3265 bed = get_elf_backend_data (hash_table->dynobj);
3266
f7483970
L
3267 /* If extern_protected_data is false, STV_PROTECTED non-function
3268 symbols are local. */
889c2a67
L
3269 if ((!info->extern_protected_data
3270 || (info->extern_protected_data < 0
3271 && !bed->extern_protected_data))
3272 && !bed->is_function_type (h->type))
1c16dfa5
L
3273 return TRUE;
3274
f6c52c13 3275 /* Function pointer equality tests may require that STV_PROTECTED
2676a7d9
AM
3276 symbols be treated as dynamic symbols. If the address of a
3277 function not defined in an executable is set to that function's
3278 plt entry in the executable, then the address of the function in
3279 a shared library must also be the plt entry in the executable. */
f6c52c13
AM
3280 return local_protected;
3281}
e1918d23
AM
3282
3283/* Caches some TLS segment info, and ensures that the TLS segment vma is
3284 aligned. Returns the first TLS output section. */
3285
3286struct bfd_section *
3287_bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
3288{
3289 struct bfd_section *sec, *tls;
3290 unsigned int align = 0;
3291
3292 for (sec = obfd->sections; sec != NULL; sec = sec->next)
3293 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
3294 break;
3295 tls = sec;
3296
3297 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
3298 if (sec->alignment_power > align)
3299 align = sec->alignment_power;
3300
3301 elf_hash_table (info)->tls_sec = tls;
3302
3303 /* Ensure the alignment of the first section is the largest alignment,
3304 so that the tls segment starts aligned. */
3305 if (tls != NULL)
3306 tls->alignment_power = align;
3307
3308 return tls;
3309}
0ad989f9
L
3310
3311/* Return TRUE iff this is a non-common, definition of a non-function symbol. */
3312static bfd_boolean
3313is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
3314 Elf_Internal_Sym *sym)
3315{
a4d8e49b
L
3316 const struct elf_backend_data *bed;
3317
0ad989f9
L
3318 /* Local symbols do not count, but target specific ones might. */
3319 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
3320 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
3321 return FALSE;
3322
fcb93ecf 3323 bed = get_elf_backend_data (abfd);
0ad989f9 3324 /* Function symbols do not count. */
fcb93ecf 3325 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
0ad989f9
L
3326 return FALSE;
3327
3328 /* If the section is undefined, then so is the symbol. */
3329 if (sym->st_shndx == SHN_UNDEF)
3330 return FALSE;
3331
3332 /* If the symbol is defined in the common section, then
3333 it is a common definition and so does not count. */
a4d8e49b 3334 if (bed->common_definition (sym))
0ad989f9
L
3335 return FALSE;
3336
3337 /* If the symbol is in a target specific section then we
3338 must rely upon the backend to tell us what it is. */
3339 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
3340 /* FIXME - this function is not coded yet:
3341
3342 return _bfd_is_global_symbol_definition (abfd, sym);
3343
3344 Instead for now assume that the definition is not global,
3345 Even if this is wrong, at least the linker will behave
3346 in the same way that it used to do. */
3347 return FALSE;
3348
3349 return TRUE;
3350}
3351
3352/* Search the symbol table of the archive element of the archive ABFD
3353 whose archive map contains a mention of SYMDEF, and determine if
3354 the symbol is defined in this element. */
3355static bfd_boolean
3356elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
3357{
3358 Elf_Internal_Shdr * hdr;
ef53be89
AM
3359 size_t symcount;
3360 size_t extsymcount;
3361 size_t extsymoff;
0ad989f9
L
3362 Elf_Internal_Sym *isymbuf;
3363 Elf_Internal_Sym *isym;
3364 Elf_Internal_Sym *isymend;
3365 bfd_boolean result;
3366
3367 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
3368 if (abfd == NULL)
3369 return FALSE;
3370
3371 if (! bfd_check_format (abfd, bfd_object))
3372 return FALSE;
3373
7dc3990e
L
3374 /* Select the appropriate symbol table. If we don't know if the
3375 object file is an IR object, give linker LTO plugin a chance to
3376 get the correct symbol table. */
3377 if (abfd->plugin_format == bfd_plugin_yes
08ce1d72 3378#if BFD_SUPPORTS_PLUGINS
7dc3990e
L
3379 || (abfd->plugin_format == bfd_plugin_unknown
3380 && bfd_link_plugin_object_p (abfd))
3381#endif
3382 )
3383 {
3384 /* Use the IR symbol table if the object has been claimed by
3385 plugin. */
3386 abfd = abfd->plugin_dummy_bfd;
3387 hdr = &elf_tdata (abfd)->symtab_hdr;
3388 }
3389 else if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
0ad989f9
L
3390 hdr = &elf_tdata (abfd)->symtab_hdr;
3391 else
3392 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3393
3394 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3395
3396 /* The sh_info field of the symtab header tells us where the
3397 external symbols start. We don't care about the local symbols. */
3398 if (elf_bad_symtab (abfd))
3399 {
3400 extsymcount = symcount;
3401 extsymoff = 0;
3402 }
3403 else
3404 {
3405 extsymcount = symcount - hdr->sh_info;
3406 extsymoff = hdr->sh_info;
3407 }
3408
3409 if (extsymcount == 0)
3410 return FALSE;
3411
3412 /* Read in the symbol table. */
3413 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3414 NULL, NULL, NULL);
3415 if (isymbuf == NULL)
3416 return FALSE;
3417
3418 /* Scan the symbol table looking for SYMDEF. */
3419 result = FALSE;
3420 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
3421 {
3422 const char *name;
3423
3424 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3425 isym->st_name);
3426 if (name == NULL)
3427 break;
3428
3429 if (strcmp (name, symdef->name) == 0)
3430 {
3431 result = is_global_data_symbol_definition (abfd, isym);
3432 break;
3433 }
3434 }
3435
3436 free (isymbuf);
3437
3438 return result;
3439}
3440\f
5a580b3a
AM
3441/* Add an entry to the .dynamic table. */
3442
3443bfd_boolean
3444_bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3445 bfd_vma tag,
3446 bfd_vma val)
3447{
3448 struct elf_link_hash_table *hash_table;
3449 const struct elf_backend_data *bed;
3450 asection *s;
3451 bfd_size_type newsize;
3452 bfd_byte *newcontents;
3453 Elf_Internal_Dyn dyn;
3454
3455 hash_table = elf_hash_table (info);
3456 if (! is_elf_hash_table (hash_table))
3457 return FALSE;
3458
3459 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3460 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
5a580b3a
AM
3461 BFD_ASSERT (s != NULL);
3462
eea6121a 3463 newsize = s->size + bed->s->sizeof_dyn;
a50b1753 3464 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
5a580b3a
AM
3465 if (newcontents == NULL)
3466 return FALSE;
3467
3468 dyn.d_tag = tag;
3469 dyn.d_un.d_val = val;
eea6121a 3470 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
5a580b3a 3471
eea6121a 3472 s->size = newsize;
5a580b3a
AM
3473 s->contents = newcontents;
3474
3475 return TRUE;
3476}
3477
3478/* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3479 otherwise just check whether one already exists. Returns -1 on error,
3480 1 if a DT_NEEDED tag already exists, and 0 on success. */
3481
4ad4eba5 3482static int
7e9f0867
AM
3483elf_add_dt_needed_tag (bfd *abfd,
3484 struct bfd_link_info *info,
4ad4eba5
AM
3485 const char *soname,
3486 bfd_boolean do_it)
5a580b3a
AM
3487{
3488 struct elf_link_hash_table *hash_table;
ef53be89 3489 size_t strindex;
5a580b3a 3490
7e9f0867
AM
3491 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3492 return -1;
3493
5a580b3a 3494 hash_table = elf_hash_table (info);
5a580b3a 3495 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
ef53be89 3496 if (strindex == (size_t) -1)
5a580b3a
AM
3497 return -1;
3498
02be4619 3499 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
5a580b3a
AM
3500 {
3501 asection *sdyn;
3502 const struct elf_backend_data *bed;
3503 bfd_byte *extdyn;
3504
3505 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3506 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
7e9f0867
AM
3507 if (sdyn != NULL)
3508 for (extdyn = sdyn->contents;
3509 extdyn < sdyn->contents + sdyn->size;
3510 extdyn += bed->s->sizeof_dyn)
3511 {
3512 Elf_Internal_Dyn dyn;
5a580b3a 3513
7e9f0867
AM
3514 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3515 if (dyn.d_tag == DT_NEEDED
3516 && dyn.d_un.d_val == strindex)
3517 {
3518 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3519 return 1;
3520 }
3521 }
5a580b3a
AM
3522 }
3523
3524 if (do_it)
3525 {
7e9f0867
AM
3526 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3527 return -1;
3528
5a580b3a
AM
3529 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3530 return -1;
3531 }
3532 else
3533 /* We were just checking for existence of the tag. */
3534 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3535
3536 return 0;
3537}
3538
7b15fa7a
AM
3539/* Return true if SONAME is on the needed list between NEEDED and STOP
3540 (or the end of list if STOP is NULL), and needed by a library that
3541 will be loaded. */
3542
010e5ae2 3543static bfd_boolean
7b15fa7a
AM
3544on_needed_list (const char *soname,
3545 struct bfd_link_needed_list *needed,
3546 struct bfd_link_needed_list *stop)
010e5ae2 3547{
7b15fa7a
AM
3548 struct bfd_link_needed_list *look;
3549 for (look = needed; look != stop; look = look->next)
3550 if (strcmp (soname, look->name) == 0
3551 && ((elf_dyn_lib_class (look->by) & DYN_AS_NEEDED) == 0
3552 /* If needed by a library that itself is not directly
3553 needed, recursively check whether that library is
3554 indirectly needed. Since we add DT_NEEDED entries to
3555 the end of the list, library dependencies appear after
3556 the library. Therefore search prior to the current
3557 LOOK, preventing possible infinite recursion. */
3558 || on_needed_list (elf_dt_name (look->by), needed, look)))
010e5ae2
AM
3559 return TRUE;
3560
3561 return FALSE;
3562}
3563
14160578 3564/* Sort symbol by value, section, and size. */
4ad4eba5
AM
3565static int
3566elf_sort_symbol (const void *arg1, const void *arg2)
5a580b3a
AM
3567{
3568 const struct elf_link_hash_entry *h1;
3569 const struct elf_link_hash_entry *h2;
10b7e05b 3570 bfd_signed_vma vdiff;
5a580b3a
AM
3571
3572 h1 = *(const struct elf_link_hash_entry **) arg1;
3573 h2 = *(const struct elf_link_hash_entry **) arg2;
10b7e05b
NC
3574 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3575 if (vdiff != 0)
3576 return vdiff > 0 ? 1 : -1;
3577 else
3578 {
d3435ae8 3579 int sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
10b7e05b
NC
3580 if (sdiff != 0)
3581 return sdiff > 0 ? 1 : -1;
3582 }
14160578
AM
3583 vdiff = h1->size - h2->size;
3584 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
5a580b3a 3585}
4ad4eba5 3586
5a580b3a
AM
3587/* This function is used to adjust offsets into .dynstr for
3588 dynamic symbols. This is called via elf_link_hash_traverse. */
3589
3590static bfd_boolean
3591elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3592{
a50b1753 3593 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
5a580b3a 3594
5a580b3a
AM
3595 if (h->dynindx != -1)
3596 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3597 return TRUE;
3598}
3599
3600/* Assign string offsets in .dynstr, update all structures referencing
3601 them. */
3602
4ad4eba5
AM
3603static bfd_boolean
3604elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
5a580b3a
AM
3605{
3606 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3607 struct elf_link_local_dynamic_entry *entry;
3608 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3609 bfd *dynobj = hash_table->dynobj;
3610 asection *sdyn;
3611 bfd_size_type size;
3612 const struct elf_backend_data *bed;
3613 bfd_byte *extdyn;
3614
3615 _bfd_elf_strtab_finalize (dynstr);
3616 size = _bfd_elf_strtab_size (dynstr);
3617
3618 bed = get_elf_backend_data (dynobj);
3d4d4302 3619 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
5a580b3a
AM
3620 BFD_ASSERT (sdyn != NULL);
3621
3622 /* Update all .dynamic entries referencing .dynstr strings. */
3623 for (extdyn = sdyn->contents;
eea6121a 3624 extdyn < sdyn->contents + sdyn->size;
5a580b3a
AM
3625 extdyn += bed->s->sizeof_dyn)
3626 {
3627 Elf_Internal_Dyn dyn;
3628
3629 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3630 switch (dyn.d_tag)
3631 {
3632 case DT_STRSZ:
3633 dyn.d_un.d_val = size;
3634 break;
3635 case DT_NEEDED:
3636 case DT_SONAME:
3637 case DT_RPATH:
3638 case DT_RUNPATH:
3639 case DT_FILTER:
3640 case DT_AUXILIARY:
7ee314fa
AM
3641 case DT_AUDIT:
3642 case DT_DEPAUDIT:
5a580b3a
AM
3643 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3644 break;
3645 default:
3646 continue;
3647 }
3648 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3649 }
3650
3651 /* Now update local dynamic symbols. */
3652 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3653 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3654 entry->isym.st_name);
3655
3656 /* And the rest of dynamic symbols. */
3657 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3658
3659 /* Adjust version definitions. */
3660 if (elf_tdata (output_bfd)->cverdefs)
3661 {
3662 asection *s;
3663 bfd_byte *p;
ef53be89 3664 size_t i;
5a580b3a
AM
3665 Elf_Internal_Verdef def;
3666 Elf_Internal_Verdaux defaux;
3667
3d4d4302 3668 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
3669 p = s->contents;
3670 do
3671 {
3672 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3673 &def);
3674 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
3675 if (def.vd_aux != sizeof (Elf_External_Verdef))
3676 continue;
5a580b3a
AM
3677 for (i = 0; i < def.vd_cnt; ++i)
3678 {
3679 _bfd_elf_swap_verdaux_in (output_bfd,
3680 (Elf_External_Verdaux *) p, &defaux);
3681 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3682 defaux.vda_name);
3683 _bfd_elf_swap_verdaux_out (output_bfd,
3684 &defaux, (Elf_External_Verdaux *) p);
3685 p += sizeof (Elf_External_Verdaux);
3686 }
3687 }
3688 while (def.vd_next);
3689 }
3690
3691 /* Adjust version references. */
3692 if (elf_tdata (output_bfd)->verref)
3693 {
3694 asection *s;
3695 bfd_byte *p;
ef53be89 3696 size_t i;
5a580b3a
AM
3697 Elf_Internal_Verneed need;
3698 Elf_Internal_Vernaux needaux;
3699
3d4d4302 3700 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
3701 p = s->contents;
3702 do
3703 {
3704 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3705 &need);
3706 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3707 _bfd_elf_swap_verneed_out (output_bfd, &need,
3708 (Elf_External_Verneed *) p);
3709 p += sizeof (Elf_External_Verneed);
3710 for (i = 0; i < need.vn_cnt; ++i)
3711 {
3712 _bfd_elf_swap_vernaux_in (output_bfd,
3713 (Elf_External_Vernaux *) p, &needaux);
3714 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3715 needaux.vna_name);
3716 _bfd_elf_swap_vernaux_out (output_bfd,
3717 &needaux,
3718 (Elf_External_Vernaux *) p);
3719 p += sizeof (Elf_External_Vernaux);
3720 }
3721 }
3722 while (need.vn_next);
3723 }
3724
3725 return TRUE;
3726}
3727\f
13285a1b
AM
3728/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3729 The default is to only match when the INPUT and OUTPUT are exactly
3730 the same target. */
3731
3732bfd_boolean
3733_bfd_elf_default_relocs_compatible (const bfd_target *input,
3734 const bfd_target *output)
3735{
3736 return input == output;
3737}
3738
3739/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3740 This version is used when different targets for the same architecture
3741 are virtually identical. */
3742
3743bfd_boolean
3744_bfd_elf_relocs_compatible (const bfd_target *input,
3745 const bfd_target *output)
3746{
3747 const struct elf_backend_data *obed, *ibed;
3748
3749 if (input == output)
3750 return TRUE;
3751
3752 ibed = xvec_get_elf_backend_data (input);
3753 obed = xvec_get_elf_backend_data (output);
3754
3755 if (ibed->arch != obed->arch)
3756 return FALSE;
3757
3758 /* If both backends are using this function, deem them compatible. */
3759 return ibed->relocs_compatible == obed->relocs_compatible;
3760}
3761
e5034e59
AM
3762/* Make a special call to the linker "notice" function to tell it that
3763 we are about to handle an as-needed lib, or have finished
1b786873 3764 processing the lib. */
e5034e59
AM
3765
3766bfd_boolean
3767_bfd_elf_notice_as_needed (bfd *ibfd,
3768 struct bfd_link_info *info,
3769 enum notice_asneeded_action act)
3770{
46135103 3771 return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
e5034e59
AM
3772}
3773
d9689752
L
3774/* Check relocations an ELF object file. */
3775
3776bfd_boolean
3777_bfd_elf_link_check_relocs (bfd *abfd, struct bfd_link_info *info)
3778{
3779 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3780 struct elf_link_hash_table *htab = elf_hash_table (info);
3781
3782 /* If this object is the same format as the output object, and it is
3783 not a shared library, then let the backend look through the
3784 relocs.
3785
3786 This is required to build global offset table entries and to
3787 arrange for dynamic relocs. It is not required for the
3788 particular common case of linking non PIC code, even when linking
3789 against shared libraries, but unfortunately there is no way of
3790 knowing whether an object file has been compiled PIC or not.
3791 Looking through the relocs is not particularly time consuming.
3792 The problem is that we must either (1) keep the relocs in memory,
3793 which causes the linker to require additional runtime memory or
3794 (2) read the relocs twice from the input file, which wastes time.
3795 This would be a good case for using mmap.
3796
3797 I have no idea how to handle linking PIC code into a file of a
3798 different format. It probably can't be done. */
3799 if ((abfd->flags & DYNAMIC) == 0
3800 && is_elf_hash_table (htab)
3801 && bed->check_relocs != NULL
3802 && elf_object_id (abfd) == elf_hash_table_id (htab)
3803 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
3804 {
3805 asection *o;
3806
3807 for (o = abfd->sections; o != NULL; o = o->next)
3808 {
3809 Elf_Internal_Rela *internal_relocs;
3810 bfd_boolean ok;
3811
5ce03cea 3812 /* Don't check relocations in excluded sections. */
d9689752 3813 if ((o->flags & SEC_RELOC) == 0
5ce03cea 3814 || (o->flags & SEC_EXCLUDE) != 0
d9689752
L
3815 || o->reloc_count == 0
3816 || ((info->strip == strip_all || info->strip == strip_debugger)
3817 && (o->flags & SEC_DEBUGGING) != 0)
3818 || bfd_is_abs_section (o->output_section))
3819 continue;
3820
3821 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
3822 info->keep_memory);
3823 if (internal_relocs == NULL)
3824 return FALSE;
3825
3826 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
3827
3828 if (elf_section_data (o)->relocs != internal_relocs)
3829 free (internal_relocs);
3830
3831 if (! ok)
3832 return FALSE;
3833 }
3834 }
3835
3836 return TRUE;
3837}
3838
4ad4eba5
AM
3839/* Add symbols from an ELF object file to the linker hash table. */
3840
3841static bfd_boolean
3842elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3843{
a0c402a5 3844 Elf_Internal_Ehdr *ehdr;
4ad4eba5 3845 Elf_Internal_Shdr *hdr;
ef53be89
AM
3846 size_t symcount;
3847 size_t extsymcount;
3848 size_t extsymoff;
4ad4eba5
AM
3849 struct elf_link_hash_entry **sym_hash;
3850 bfd_boolean dynamic;
3851 Elf_External_Versym *extversym = NULL;
3852 Elf_External_Versym *ever;
3853 struct elf_link_hash_entry *weaks;
3854 struct elf_link_hash_entry **nondeflt_vers = NULL;
ef53be89 3855 size_t nondeflt_vers_cnt = 0;
4ad4eba5
AM
3856 Elf_Internal_Sym *isymbuf = NULL;
3857 Elf_Internal_Sym *isym;
3858 Elf_Internal_Sym *isymend;
3859 const struct elf_backend_data *bed;
3860 bfd_boolean add_needed;
66eb6687 3861 struct elf_link_hash_table *htab;
4ad4eba5 3862 bfd_size_type amt;
66eb6687 3863 void *alloc_mark = NULL;
4f87808c
AM
3864 struct bfd_hash_entry **old_table = NULL;
3865 unsigned int old_size = 0;
3866 unsigned int old_count = 0;
66eb6687 3867 void *old_tab = NULL;
66eb6687
AM
3868 void *old_ent;
3869 struct bfd_link_hash_entry *old_undefs = NULL;
3870 struct bfd_link_hash_entry *old_undefs_tail = NULL;
5b677558 3871 void *old_strtab = NULL;
66eb6687 3872 size_t tabsize = 0;
db6a5d5f 3873 asection *s;
29a9f53e 3874 bfd_boolean just_syms;
4ad4eba5 3875
66eb6687 3876 htab = elf_hash_table (info);
4ad4eba5 3877 bed = get_elf_backend_data (abfd);
4ad4eba5
AM
3878
3879 if ((abfd->flags & DYNAMIC) == 0)
3880 dynamic = FALSE;
3881 else
3882 {
3883 dynamic = TRUE;
3884
3885 /* You can't use -r against a dynamic object. Also, there's no
3886 hope of using a dynamic object which does not exactly match
3887 the format of the output file. */
0e1862bb 3888 if (bfd_link_relocatable (info)
66eb6687 3889 || !is_elf_hash_table (htab)
f13a99db 3890 || info->output_bfd->xvec != abfd->xvec)
4ad4eba5 3891 {
0e1862bb 3892 if (bfd_link_relocatable (info))
9a0789ec
NC
3893 bfd_set_error (bfd_error_invalid_operation);
3894 else
3895 bfd_set_error (bfd_error_wrong_format);
4ad4eba5
AM
3896 goto error_return;
3897 }
3898 }
3899
a0c402a5
L
3900 ehdr = elf_elfheader (abfd);
3901 if (info->warn_alternate_em
3902 && bed->elf_machine_code != ehdr->e_machine
3903 && ((bed->elf_machine_alt1 != 0
3904 && ehdr->e_machine == bed->elf_machine_alt1)
3905 || (bed->elf_machine_alt2 != 0
3906 && ehdr->e_machine == bed->elf_machine_alt2)))
9793eb77 3907 _bfd_error_handler
695344c0 3908 /* xgettext:c-format */
9793eb77 3909 (_("alternate ELF machine code found (%d) in %pB, expecting %d"),
a0c402a5
L
3910 ehdr->e_machine, abfd, bed->elf_machine_code);
3911
4ad4eba5
AM
3912 /* As a GNU extension, any input sections which are named
3913 .gnu.warning.SYMBOL are treated as warning symbols for the given
3914 symbol. This differs from .gnu.warning sections, which generate
3915 warnings when they are included in an output file. */
dd98f8d2 3916 /* PR 12761: Also generate this warning when building shared libraries. */
db6a5d5f 3917 for (s = abfd->sections; s != NULL; s = s->next)
4ad4eba5 3918 {
db6a5d5f 3919 const char *name;
4ad4eba5 3920
db6a5d5f
AM
3921 name = bfd_get_section_name (abfd, s);
3922 if (CONST_STRNEQ (name, ".gnu.warning."))
4ad4eba5 3923 {
db6a5d5f
AM
3924 char *msg;
3925 bfd_size_type sz;
3926
3927 name += sizeof ".gnu.warning." - 1;
3928
3929 /* If this is a shared object, then look up the symbol
3930 in the hash table. If it is there, and it is already
3931 been defined, then we will not be using the entry
3932 from this shared object, so we don't need to warn.
3933 FIXME: If we see the definition in a regular object
3934 later on, we will warn, but we shouldn't. The only
3935 fix is to keep track of what warnings we are supposed
3936 to emit, and then handle them all at the end of the
3937 link. */
3938 if (dynamic)
4ad4eba5 3939 {
db6a5d5f
AM
3940 struct elf_link_hash_entry *h;
3941
3942 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3943
3944 /* FIXME: What about bfd_link_hash_common? */
3945 if (h != NULL
3946 && (h->root.type == bfd_link_hash_defined
3947 || h->root.type == bfd_link_hash_defweak))
3948 continue;
3949 }
4ad4eba5 3950
db6a5d5f
AM
3951 sz = s->size;
3952 msg = (char *) bfd_alloc (abfd, sz + 1);
3953 if (msg == NULL)
3954 goto error_return;
4ad4eba5 3955
db6a5d5f
AM
3956 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3957 goto error_return;
4ad4eba5 3958
db6a5d5f 3959 msg[sz] = '\0';
4ad4eba5 3960
db6a5d5f
AM
3961 if (! (_bfd_generic_link_add_one_symbol
3962 (info, abfd, name, BSF_WARNING, s, 0, msg,
3963 FALSE, bed->collect, NULL)))
3964 goto error_return;
4ad4eba5 3965
0e1862bb 3966 if (bfd_link_executable (info))
db6a5d5f
AM
3967 {
3968 /* Clobber the section size so that the warning does
3969 not get copied into the output file. */
3970 s->size = 0;
11d2f718 3971
db6a5d5f
AM
3972 /* Also set SEC_EXCLUDE, so that symbols defined in
3973 the warning section don't get copied to the output. */
3974 s->flags |= SEC_EXCLUDE;
4ad4eba5
AM
3975 }
3976 }
3977 }
3978
29a9f53e
L
3979 just_syms = ((s = abfd->sections) != NULL
3980 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
3981
4ad4eba5
AM
3982 add_needed = TRUE;
3983 if (! dynamic)
3984 {
3985 /* If we are creating a shared library, create all the dynamic
3986 sections immediately. We need to attach them to something,
3987 so we attach them to this BFD, provided it is the right
bf89386a
L
3988 format and is not from ld --just-symbols. Always create the
3989 dynamic sections for -E/--dynamic-list. FIXME: If there
29a9f53e
L
3990 are no input BFD's of the same format as the output, we can't
3991 make a shared library. */
3992 if (!just_syms
bf89386a 3993 && (bfd_link_pic (info)
9c1d7a08 3994 || (!bfd_link_relocatable (info)
3c5fce9b 3995 && info->nointerp
9c1d7a08 3996 && (info->export_dynamic || info->dynamic)))
66eb6687 3997 && is_elf_hash_table (htab)
f13a99db 3998 && info->output_bfd->xvec == abfd->xvec
66eb6687 3999 && !htab->dynamic_sections_created)
4ad4eba5
AM
4000 {
4001 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
4002 goto error_return;
4003 }
4004 }
66eb6687 4005 else if (!is_elf_hash_table (htab))
4ad4eba5
AM
4006 goto error_return;
4007 else
4008 {
4ad4eba5 4009 const char *soname = NULL;
7ee314fa 4010 char *audit = NULL;
4ad4eba5 4011 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
9acc85a6 4012 const Elf_Internal_Phdr *phdr;
4ad4eba5
AM
4013 int ret;
4014
4015 /* ld --just-symbols and dynamic objects don't mix very well.
92fd189d 4016 ld shouldn't allow it. */
29a9f53e 4017 if (just_syms)
92fd189d 4018 abort ();
4ad4eba5
AM
4019
4020 /* If this dynamic lib was specified on the command line with
4021 --as-needed in effect, then we don't want to add a DT_NEEDED
4022 tag unless the lib is actually used. Similary for libs brought
e56f61be
L
4023 in by another lib's DT_NEEDED. When --no-add-needed is used
4024 on a dynamic lib, we don't want to add a DT_NEEDED entry for
4025 any dynamic library in DT_NEEDED tags in the dynamic lib at
4026 all. */
4027 add_needed = (elf_dyn_lib_class (abfd)
4028 & (DYN_AS_NEEDED | DYN_DT_NEEDED
4029 | DYN_NO_NEEDED)) == 0;
4ad4eba5
AM
4030
4031 s = bfd_get_section_by_name (abfd, ".dynamic");
4032 if (s != NULL)
4033 {
4034 bfd_byte *dynbuf;
4035 bfd_byte *extdyn;
cb33740c 4036 unsigned int elfsec;
4ad4eba5
AM
4037 unsigned long shlink;
4038
eea6121a 4039 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
f8703194
L
4040 {
4041error_free_dyn:
4042 free (dynbuf);
4043 goto error_return;
4044 }
4ad4eba5
AM
4045
4046 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 4047 if (elfsec == SHN_BAD)
4ad4eba5
AM
4048 goto error_free_dyn;
4049 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
4050
4051 for (extdyn = dynbuf;
eea6121a 4052 extdyn < dynbuf + s->size;
4ad4eba5
AM
4053 extdyn += bed->s->sizeof_dyn)
4054 {
4055 Elf_Internal_Dyn dyn;
4056
4057 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
4058 if (dyn.d_tag == DT_SONAME)
4059 {
4060 unsigned int tagv = dyn.d_un.d_val;
4061 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4062 if (soname == NULL)
4063 goto error_free_dyn;
4064 }
4065 if (dyn.d_tag == DT_NEEDED)
4066 {
4067 struct bfd_link_needed_list *n, **pn;
4068 char *fnm, *anm;
4069 unsigned int tagv = dyn.d_un.d_val;
4070
4071 amt = sizeof (struct bfd_link_needed_list);
a50b1753 4072 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4073 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4074 if (n == NULL || fnm == NULL)
4075 goto error_free_dyn;
4076 amt = strlen (fnm) + 1;
a50b1753 4077 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4078 if (anm == NULL)
4079 goto error_free_dyn;
4080 memcpy (anm, fnm, amt);
4081 n->name = anm;
4082 n->by = abfd;
4083 n->next = NULL;
66eb6687 4084 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
4085 ;
4086 *pn = n;
4087 }
4088 if (dyn.d_tag == DT_RUNPATH)
4089 {
4090 struct bfd_link_needed_list *n, **pn;
4091 char *fnm, *anm;
4092 unsigned int tagv = dyn.d_un.d_val;
4093
4094 amt = sizeof (struct bfd_link_needed_list);
a50b1753 4095 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4096 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4097 if (n == NULL || fnm == NULL)
4098 goto error_free_dyn;
4099 amt = strlen (fnm) + 1;
a50b1753 4100 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4101 if (anm == NULL)
4102 goto error_free_dyn;
4103 memcpy (anm, fnm, amt);
4104 n->name = anm;
4105 n->by = abfd;
4106 n->next = NULL;
4107 for (pn = & runpath;
4108 *pn != NULL;
4109 pn = &(*pn)->next)
4110 ;
4111 *pn = n;
4112 }
4113 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
4114 if (!runpath && dyn.d_tag == DT_RPATH)
4115 {
4116 struct bfd_link_needed_list *n, **pn;
4117 char *fnm, *anm;
4118 unsigned int tagv = dyn.d_un.d_val;
4119
4120 amt = sizeof (struct bfd_link_needed_list);
a50b1753 4121 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4122 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4123 if (n == NULL || fnm == NULL)
4124 goto error_free_dyn;
4125 amt = strlen (fnm) + 1;
a50b1753 4126 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5 4127 if (anm == NULL)
f8703194 4128 goto error_free_dyn;
4ad4eba5
AM
4129 memcpy (anm, fnm, amt);
4130 n->name = anm;
4131 n->by = abfd;
4132 n->next = NULL;
4133 for (pn = & rpath;
4134 *pn != NULL;
4135 pn = &(*pn)->next)
4136 ;
4137 *pn = n;
4138 }
7ee314fa
AM
4139 if (dyn.d_tag == DT_AUDIT)
4140 {
4141 unsigned int tagv = dyn.d_un.d_val;
4142 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4143 }
4ad4eba5
AM
4144 }
4145
4146 free (dynbuf);
4147 }
4148
4149 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
4150 frees all more recently bfd_alloc'd blocks as well. */
4151 if (runpath)
4152 rpath = runpath;
4153
4154 if (rpath)
4155 {
4156 struct bfd_link_needed_list **pn;
66eb6687 4157 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
4158 ;
4159 *pn = rpath;
4160 }
4161
9acc85a6
AM
4162 /* If we have a PT_GNU_RELRO program header, mark as read-only
4163 all sections contained fully therein. This makes relro
4164 shared library sections appear as they will at run-time. */
4165 phdr = elf_tdata (abfd)->phdr + elf_elfheader (abfd)->e_phnum;
4166 while (--phdr >= elf_tdata (abfd)->phdr)
4167 if (phdr->p_type == PT_GNU_RELRO)
4168 {
4169 for (s = abfd->sections; s != NULL; s = s->next)
4170 if ((s->flags & SEC_ALLOC) != 0
4171 && s->vma >= phdr->p_vaddr
4172 && s->vma + s->size <= phdr->p_vaddr + phdr->p_memsz)
4173 s->flags |= SEC_READONLY;
4174 break;
4175 }
4176
4ad4eba5
AM
4177 /* We do not want to include any of the sections in a dynamic
4178 object in the output file. We hack by simply clobbering the
4179 list of sections in the BFD. This could be handled more
4180 cleanly by, say, a new section flag; the existing
4181 SEC_NEVER_LOAD flag is not the one we want, because that one
4182 still implies that the section takes up space in the output
4183 file. */
4184 bfd_section_list_clear (abfd);
4185
4ad4eba5
AM
4186 /* Find the name to use in a DT_NEEDED entry that refers to this
4187 object. If the object has a DT_SONAME entry, we use it.
4188 Otherwise, if the generic linker stuck something in
4189 elf_dt_name, we use that. Otherwise, we just use the file
4190 name. */
4191 if (soname == NULL || *soname == '\0')
4192 {
4193 soname = elf_dt_name (abfd);
4194 if (soname == NULL || *soname == '\0')
4195 soname = bfd_get_filename (abfd);
4196 }
4197
4198 /* Save the SONAME because sometimes the linker emulation code
4199 will need to know it. */
4200 elf_dt_name (abfd) = soname;
4201
7e9f0867 4202 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
4203 if (ret < 0)
4204 goto error_return;
4205
4206 /* If we have already included this dynamic object in the
4207 link, just ignore it. There is no reason to include a
4208 particular dynamic object more than once. */
4209 if (ret > 0)
4210 return TRUE;
7ee314fa
AM
4211
4212 /* Save the DT_AUDIT entry for the linker emulation code. */
68ffbac6 4213 elf_dt_audit (abfd) = audit;
4ad4eba5
AM
4214 }
4215
4216 /* If this is a dynamic object, we always link against the .dynsym
4217 symbol table, not the .symtab symbol table. The dynamic linker
4218 will only see the .dynsym symbol table, so there is no reason to
4219 look at .symtab for a dynamic object. */
4220
4221 if (! dynamic || elf_dynsymtab (abfd) == 0)
4222 hdr = &elf_tdata (abfd)->symtab_hdr;
4223 else
4224 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
4225
4226 symcount = hdr->sh_size / bed->s->sizeof_sym;
4227
4228 /* The sh_info field of the symtab header tells us where the
4229 external symbols start. We don't care about the local symbols at
4230 this point. */
4231 if (elf_bad_symtab (abfd))
4232 {
4233 extsymcount = symcount;
4234 extsymoff = 0;
4235 }
4236 else
4237 {
4238 extsymcount = symcount - hdr->sh_info;
4239 extsymoff = hdr->sh_info;
4240 }
4241
f45794cb 4242 sym_hash = elf_sym_hashes (abfd);
012b2306 4243 if (extsymcount != 0)
4ad4eba5
AM
4244 {
4245 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
4246 NULL, NULL, NULL);
4247 if (isymbuf == NULL)
4248 goto error_return;
4249
4ad4eba5 4250 if (sym_hash == NULL)
012b2306
AM
4251 {
4252 /* We store a pointer to the hash table entry for each
4253 external symbol. */
ef53be89
AM
4254 amt = extsymcount;
4255 amt *= sizeof (struct elf_link_hash_entry *);
012b2306
AM
4256 sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
4257 if (sym_hash == NULL)
4258 goto error_free_sym;
4259 elf_sym_hashes (abfd) = sym_hash;
4260 }
4ad4eba5
AM
4261 }
4262
4263 if (dynamic)
4264 {
4265 /* Read in any version definitions. */
fc0e6df6
PB
4266 if (!_bfd_elf_slurp_version_tables (abfd,
4267 info->default_imported_symver))
4ad4eba5
AM
4268 goto error_free_sym;
4269
4270 /* Read in the symbol versions, but don't bother to convert them
4271 to internal format. */
4272 if (elf_dynversym (abfd) != 0)
4273 {
4274 Elf_Internal_Shdr *versymhdr;
4275
4276 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
a50b1753 4277 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
4ad4eba5
AM
4278 if (extversym == NULL)
4279 goto error_free_sym;
4280 amt = versymhdr->sh_size;
4281 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
4282 || bfd_bread (extversym, amt, abfd) != amt)
4283 goto error_free_vers;
4284 }
4285 }
4286
66eb6687
AM
4287 /* If we are loading an as-needed shared lib, save the symbol table
4288 state before we start adding symbols. If the lib turns out
4289 to be unneeded, restore the state. */
4290 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4291 {
4292 unsigned int i;
4293 size_t entsize;
4294
4295 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
4296 {
4297 struct bfd_hash_entry *p;
2de92251 4298 struct elf_link_hash_entry *h;
66eb6687
AM
4299
4300 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
2de92251
AM
4301 {
4302 h = (struct elf_link_hash_entry *) p;
4303 entsize += htab->root.table.entsize;
4304 if (h->root.type == bfd_link_hash_warning)
4305 entsize += htab->root.table.entsize;
4306 }
66eb6687
AM
4307 }
4308
4309 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
f45794cb 4310 old_tab = bfd_malloc (tabsize + entsize);
66eb6687
AM
4311 if (old_tab == NULL)
4312 goto error_free_vers;
4313
4314 /* Remember the current objalloc pointer, so that all mem for
4315 symbols added can later be reclaimed. */
4316 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
4317 if (alloc_mark == NULL)
4318 goto error_free_vers;
4319
5061a885
AM
4320 /* Make a special call to the linker "notice" function to
4321 tell it that we are about to handle an as-needed lib. */
e5034e59 4322 if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
9af2a943 4323 goto error_free_vers;
5061a885 4324
f45794cb
AM
4325 /* Clone the symbol table. Remember some pointers into the
4326 symbol table, and dynamic symbol count. */
4327 old_ent = (char *) old_tab + tabsize;
66eb6687 4328 memcpy (old_tab, htab->root.table.table, tabsize);
66eb6687
AM
4329 old_undefs = htab->root.undefs;
4330 old_undefs_tail = htab->root.undefs_tail;
4f87808c
AM
4331 old_table = htab->root.table.table;
4332 old_size = htab->root.table.size;
4333 old_count = htab->root.table.count;
5b677558
AM
4334 old_strtab = _bfd_elf_strtab_save (htab->dynstr);
4335 if (old_strtab == NULL)
4336 goto error_free_vers;
66eb6687
AM
4337
4338 for (i = 0; i < htab->root.table.size; i++)
4339 {
4340 struct bfd_hash_entry *p;
2de92251 4341 struct elf_link_hash_entry *h;
66eb6687
AM
4342
4343 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4344 {
4345 memcpy (old_ent, p, htab->root.table.entsize);
4346 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
4347 h = (struct elf_link_hash_entry *) p;
4348 if (h->root.type == bfd_link_hash_warning)
4349 {
4350 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
4351 old_ent = (char *) old_ent + htab->root.table.entsize;
4352 }
66eb6687
AM
4353 }
4354 }
4355 }
4ad4eba5 4356
66eb6687 4357 weaks = NULL;
4ad4eba5
AM
4358 ever = extversym != NULL ? extversym + extsymoff : NULL;
4359 for (isym = isymbuf, isymend = isymbuf + extsymcount;
4360 isym < isymend;
4361 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
4362 {
4363 int bind;
4364 bfd_vma value;
af44c138 4365 asection *sec, *new_sec;
4ad4eba5
AM
4366 flagword flags;
4367 const char *name;
4368 struct elf_link_hash_entry *h;
90c984fc 4369 struct elf_link_hash_entry *hi;
4ad4eba5
AM
4370 bfd_boolean definition;
4371 bfd_boolean size_change_ok;
4372 bfd_boolean type_change_ok;
37a9e49a
L
4373 bfd_boolean new_weak;
4374 bfd_boolean old_weak;
4ad4eba5 4375 bfd_boolean override;
a4d8e49b 4376 bfd_boolean common;
97196564 4377 bfd_boolean discarded;
4ad4eba5
AM
4378 unsigned int old_alignment;
4379 bfd *old_bfd;
6e33951e 4380 bfd_boolean matched;
4ad4eba5
AM
4381
4382 override = FALSE;
4383
4384 flags = BSF_NO_FLAGS;
4385 sec = NULL;
4386 value = isym->st_value;
a4d8e49b 4387 common = bed->common_definition (isym);
2980ccad
L
4388 if (common && info->inhibit_common_definition)
4389 {
4390 /* Treat common symbol as undefined for --no-define-common. */
4391 isym->st_shndx = SHN_UNDEF;
4392 common = FALSE;
4393 }
97196564 4394 discarded = FALSE;
4ad4eba5
AM
4395
4396 bind = ELF_ST_BIND (isym->st_info);
3e7a7d11 4397 switch (bind)
4ad4eba5 4398 {
3e7a7d11 4399 case STB_LOCAL:
4ad4eba5
AM
4400 /* This should be impossible, since ELF requires that all
4401 global symbols follow all local symbols, and that sh_info
4402 point to the first global symbol. Unfortunately, Irix 5
4403 screws this up. */
4404 continue;
3e7a7d11
NC
4405
4406 case STB_GLOBAL:
a4d8e49b 4407 if (isym->st_shndx != SHN_UNDEF && !common)
4ad4eba5 4408 flags = BSF_GLOBAL;
3e7a7d11
NC
4409 break;
4410
4411 case STB_WEAK:
4412 flags = BSF_WEAK;
4413 break;
4414
4415 case STB_GNU_UNIQUE:
4416 flags = BSF_GNU_UNIQUE;
4417 break;
4418
4419 default:
4ad4eba5 4420 /* Leave it up to the processor backend. */
3e7a7d11 4421 break;
4ad4eba5
AM
4422 }
4423
4424 if (isym->st_shndx == SHN_UNDEF)
4425 sec = bfd_und_section_ptr;
cb33740c
AM
4426 else if (isym->st_shndx == SHN_ABS)
4427 sec = bfd_abs_section_ptr;
4428 else if (isym->st_shndx == SHN_COMMON)
4429 {
4430 sec = bfd_com_section_ptr;
4431 /* What ELF calls the size we call the value. What ELF
4432 calls the value we call the alignment. */
4433 value = isym->st_size;
4434 }
4435 else
4ad4eba5
AM
4436 {
4437 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4438 if (sec == NULL)
4439 sec = bfd_abs_section_ptr;
dbaa2011 4440 else if (discarded_section (sec))
529fcb95 4441 {
e5d08002
L
4442 /* Symbols from discarded section are undefined. We keep
4443 its visibility. */
529fcb95 4444 sec = bfd_und_section_ptr;
97196564 4445 discarded = TRUE;
529fcb95
PB
4446 isym->st_shndx = SHN_UNDEF;
4447 }
4ad4eba5
AM
4448 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
4449 value -= sec->vma;
4450 }
4ad4eba5
AM
4451
4452 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4453 isym->st_name);
4454 if (name == NULL)
4455 goto error_free_vers;
4456
4457 if (isym->st_shndx == SHN_COMMON
02d00247
AM
4458 && (abfd->flags & BFD_PLUGIN) != 0)
4459 {
4460 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
4461
4462 if (xc == NULL)
4463 {
4464 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
4465 | SEC_EXCLUDE);
4466 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
4467 if (xc == NULL)
4468 goto error_free_vers;
4469 }
4470 sec = xc;
4471 }
4472 else if (isym->st_shndx == SHN_COMMON
4473 && ELF_ST_TYPE (isym->st_info) == STT_TLS
0e1862bb 4474 && !bfd_link_relocatable (info))
4ad4eba5
AM
4475 {
4476 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
4477
4478 if (tcomm == NULL)
4479 {
02d00247
AM
4480 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
4481 | SEC_LINKER_CREATED);
4482 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3496cb2a 4483 if (tcomm == NULL)
4ad4eba5
AM
4484 goto error_free_vers;
4485 }
4486 sec = tcomm;
4487 }
66eb6687 4488 else if (bed->elf_add_symbol_hook)
4ad4eba5 4489 {
66eb6687
AM
4490 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
4491 &sec, &value))
4ad4eba5
AM
4492 goto error_free_vers;
4493
4494 /* The hook function sets the name to NULL if this symbol
4495 should be skipped for some reason. */
4496 if (name == NULL)
4497 continue;
4498 }
4499
4500 /* Sanity check that all possibilities were handled. */
4501 if (sec == NULL)
4502 {
4503 bfd_set_error (bfd_error_bad_value);
4504 goto error_free_vers;
4505 }
4506
191c0c42
AM
4507 /* Silently discard TLS symbols from --just-syms. There's
4508 no way to combine a static TLS block with a new TLS block
4509 for this executable. */
4510 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
4511 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4512 continue;
4513
4ad4eba5
AM
4514 if (bfd_is_und_section (sec)
4515 || bfd_is_com_section (sec))
4516 definition = FALSE;
4517 else
4518 definition = TRUE;
4519
4520 size_change_ok = FALSE;
66eb6687 4521 type_change_ok = bed->type_change_ok;
37a9e49a 4522 old_weak = FALSE;
6e33951e 4523 matched = FALSE;
4ad4eba5
AM
4524 old_alignment = 0;
4525 old_bfd = NULL;
af44c138 4526 new_sec = sec;
4ad4eba5 4527
66eb6687 4528 if (is_elf_hash_table (htab))
4ad4eba5
AM
4529 {
4530 Elf_Internal_Versym iver;
4531 unsigned int vernum = 0;
4532 bfd_boolean skip;
4533
fc0e6df6 4534 if (ever == NULL)
4ad4eba5 4535 {
fc0e6df6
PB
4536 if (info->default_imported_symver)
4537 /* Use the default symbol version created earlier. */
4538 iver.vs_vers = elf_tdata (abfd)->cverdefs;
4539 else
4540 iver.vs_vers = 0;
4541 }
4542 else
4543 _bfd_elf_swap_versym_in (abfd, ever, &iver);
4544
4545 vernum = iver.vs_vers & VERSYM_VERSION;
4546
4547 /* If this is a hidden symbol, or if it is not version
4548 1, we append the version name to the symbol name.
cc86ff91
EB
4549 However, we do not modify a non-hidden absolute symbol
4550 if it is not a function, because it might be the version
4551 symbol itself. FIXME: What if it isn't? */
fc0e6df6 4552 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
fcb93ecf
PB
4553 || (vernum > 1
4554 && (!bfd_is_abs_section (sec)
4555 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
fc0e6df6
PB
4556 {
4557 const char *verstr;
4558 size_t namelen, verlen, newlen;
4559 char *newname, *p;
4560
4561 if (isym->st_shndx != SHN_UNDEF)
4ad4eba5 4562 {
fc0e6df6
PB
4563 if (vernum > elf_tdata (abfd)->cverdefs)
4564 verstr = NULL;
4565 else if (vernum > 1)
4566 verstr =
4567 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4568 else
4569 verstr = "";
4ad4eba5 4570
fc0e6df6 4571 if (verstr == NULL)
4ad4eba5 4572 {
4eca0228 4573 _bfd_error_handler
695344c0 4574 /* xgettext:c-format */
871b3ab2 4575 (_("%pB: %s: invalid version %u (max %d)"),
fc0e6df6
PB
4576 abfd, name, vernum,
4577 elf_tdata (abfd)->cverdefs);
4578 bfd_set_error (bfd_error_bad_value);
4579 goto error_free_vers;
4ad4eba5 4580 }
fc0e6df6
PB
4581 }
4582 else
4583 {
4584 /* We cannot simply test for the number of
4585 entries in the VERNEED section since the
4586 numbers for the needed versions do not start
4587 at 0. */
4588 Elf_Internal_Verneed *t;
4589
4590 verstr = NULL;
4591 for (t = elf_tdata (abfd)->verref;
4592 t != NULL;
4593 t = t->vn_nextref)
4ad4eba5 4594 {
fc0e6df6 4595 Elf_Internal_Vernaux *a;
4ad4eba5 4596
fc0e6df6
PB
4597 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4598 {
4599 if (a->vna_other == vernum)
4ad4eba5 4600 {
fc0e6df6
PB
4601 verstr = a->vna_nodename;
4602 break;
4ad4eba5 4603 }
4ad4eba5 4604 }
fc0e6df6
PB
4605 if (a != NULL)
4606 break;
4607 }
4608 if (verstr == NULL)
4609 {
4eca0228 4610 _bfd_error_handler
695344c0 4611 /* xgettext:c-format */
871b3ab2 4612 (_("%pB: %s: invalid needed version %d"),
fc0e6df6
PB
4613 abfd, name, vernum);
4614 bfd_set_error (bfd_error_bad_value);
4615 goto error_free_vers;
4ad4eba5 4616 }
4ad4eba5 4617 }
fc0e6df6
PB
4618
4619 namelen = strlen (name);
4620 verlen = strlen (verstr);
4621 newlen = namelen + verlen + 2;
4622 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4623 && isym->st_shndx != SHN_UNDEF)
4624 ++newlen;
4625
a50b1753 4626 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
fc0e6df6
PB
4627 if (newname == NULL)
4628 goto error_free_vers;
4629 memcpy (newname, name, namelen);
4630 p = newname + namelen;
4631 *p++ = ELF_VER_CHR;
4632 /* If this is a defined non-hidden version symbol,
4633 we add another @ to the name. This indicates the
4634 default version of the symbol. */
4635 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4636 && isym->st_shndx != SHN_UNDEF)
4637 *p++ = ELF_VER_CHR;
4638 memcpy (p, verstr, verlen + 1);
4639
4640 name = newname;
4ad4eba5
AM
4641 }
4642
cd3416da
AM
4643 /* If this symbol has default visibility and the user has
4644 requested we not re-export it, then mark it as hidden. */
a0d49154 4645 if (!bfd_is_und_section (sec)
cd3416da 4646 && !dynamic
ce875075 4647 && abfd->no_export
cd3416da
AM
4648 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4649 isym->st_other = (STV_HIDDEN
4650 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4651
4f3fedcf
AM
4652 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4653 sym_hash, &old_bfd, &old_weak,
4654 &old_alignment, &skip, &override,
6e33951e
L
4655 &type_change_ok, &size_change_ok,
4656 &matched))
4ad4eba5
AM
4657 goto error_free_vers;
4658
4659 if (skip)
4660 continue;
4661
6e33951e
L
4662 /* Override a definition only if the new symbol matches the
4663 existing one. */
4664 if (override && matched)
4ad4eba5
AM
4665 definition = FALSE;
4666
4667 h = *sym_hash;
4668 while (h->root.type == bfd_link_hash_indirect
4669 || h->root.type == bfd_link_hash_warning)
4670 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4671
4ad4eba5 4672 if (elf_tdata (abfd)->verdef != NULL
4ad4eba5
AM
4673 && vernum > 1
4674 && definition)
4675 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4676 }
4677
4678 if (! (_bfd_generic_link_add_one_symbol
66eb6687 4679 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4ad4eba5
AM
4680 (struct bfd_link_hash_entry **) sym_hash)))
4681 goto error_free_vers;
4682
ac98f9e2
L
4683 if ((abfd->flags & DYNAMIC) == 0
4684 && (bfd_get_flavour (info->output_bfd)
4685 == bfd_target_elf_flavour))
4686 {
4687 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
4688 elf_tdata (info->output_bfd)->has_gnu_symbols
4689 |= elf_gnu_symbol_ifunc;
4690 if ((flags & BSF_GNU_UNIQUE))
4691 elf_tdata (info->output_bfd)->has_gnu_symbols
4692 |= elf_gnu_symbol_unique;
4693 }
a43942db 4694
4ad4eba5 4695 h = *sym_hash;
90c984fc
L
4696 /* We need to make sure that indirect symbol dynamic flags are
4697 updated. */
4698 hi = h;
4ad4eba5
AM
4699 while (h->root.type == bfd_link_hash_indirect
4700 || h->root.type == bfd_link_hash_warning)
4701 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3e7a7d11 4702
97196564
L
4703 /* Setting the index to -3 tells elf_link_output_extsym that
4704 this symbol is defined in a discarded section. */
4705 if (discarded)
4706 h->indx = -3;
4707
4ad4eba5
AM
4708 *sym_hash = h;
4709
37a9e49a 4710 new_weak = (flags & BSF_WEAK) != 0;
4ad4eba5
AM
4711 if (dynamic
4712 && definition
37a9e49a 4713 && new_weak
fcb93ecf 4714 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
66eb6687 4715 && is_elf_hash_table (htab)
60d67dc8 4716 && h->u.alias == NULL)
4ad4eba5
AM
4717 {
4718 /* Keep a list of all weak defined non function symbols from
60d67dc8
AM
4719 a dynamic object, using the alias field. Later in this
4720 function we will set the alias field to the correct
4ad4eba5
AM
4721 value. We only put non-function symbols from dynamic
4722 objects on this list, because that happens to be the only
4723 time we need to know the normal symbol corresponding to a
4724 weak symbol, and the information is time consuming to
60d67dc8 4725 figure out. If the alias field is not already NULL,
4ad4eba5
AM
4726 then this symbol was already defined by some previous
4727 dynamic object, and we will be using that previous
4728 definition anyhow. */
4729
60d67dc8 4730 h->u.alias = weaks;
4ad4eba5 4731 weaks = h;
4ad4eba5
AM
4732 }
4733
4734 /* Set the alignment of a common symbol. */
a4d8e49b 4735 if ((common || bfd_is_com_section (sec))
4ad4eba5
AM
4736 && h->root.type == bfd_link_hash_common)
4737 {
4738 unsigned int align;
4739
a4d8e49b 4740 if (common)
af44c138
L
4741 align = bfd_log2 (isym->st_value);
4742 else
4743 {
4744 /* The new symbol is a common symbol in a shared object.
4745 We need to get the alignment from the section. */
4746 align = new_sec->alignment_power;
4747 }
595213d4 4748 if (align > old_alignment)
4ad4eba5
AM
4749 h->root.u.c.p->alignment_power = align;
4750 else
4751 h->root.u.c.p->alignment_power = old_alignment;
4752 }
4753
66eb6687 4754 if (is_elf_hash_table (htab))
4ad4eba5 4755 {
4f3fedcf
AM
4756 /* Set a flag in the hash table entry indicating the type of
4757 reference or definition we just found. A dynamic symbol
4758 is one which is referenced or defined by both a regular
4759 object and a shared object. */
4760 bfd_boolean dynsym = FALSE;
4761
4762 /* Plugin symbols aren't normal. Don't set def_regular or
4763 ref_regular for them, or make them dynamic. */
4764 if ((abfd->flags & BFD_PLUGIN) != 0)
4765 ;
4766 else if (! dynamic)
4767 {
4768 if (! definition)
4769 {
4770 h->ref_regular = 1;
4771 if (bind != STB_WEAK)
4772 h->ref_regular_nonweak = 1;
4773 }
4774 else
4775 {
4776 h->def_regular = 1;
4777 if (h->def_dynamic)
4778 {
4779 h->def_dynamic = 0;
4780 h->ref_dynamic = 1;
4781 }
4782 }
4783
4784 /* If the indirect symbol has been forced local, don't
4785 make the real symbol dynamic. */
4786 if ((h == hi || !hi->forced_local)
0e1862bb 4787 && (bfd_link_dll (info)
4f3fedcf
AM
4788 || h->def_dynamic
4789 || h->ref_dynamic))
4790 dynsym = TRUE;
4791 }
4792 else
4793 {
4794 if (! definition)
4795 {
4796 h->ref_dynamic = 1;
4797 hi->ref_dynamic = 1;
4798 }
4799 else
4800 {
4801 h->def_dynamic = 1;
4802 hi->def_dynamic = 1;
4803 }
4804
4805 /* If the indirect symbol has been forced local, don't
4806 make the real symbol dynamic. */
4807 if ((h == hi || !hi->forced_local)
4808 && (h->def_regular
4809 || h->ref_regular
60d67dc8
AM
4810 || (h->is_weakalias
4811 && weakdef (h)->dynindx != -1)))
4f3fedcf
AM
4812 dynsym = TRUE;
4813 }
4814
4815 /* Check to see if we need to add an indirect symbol for
4816 the default name. */
4817 if (definition
4818 || (!override && h->root.type == bfd_link_hash_common))
4819 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4820 sec, value, &old_bfd, &dynsym))
4821 goto error_free_vers;
4ad4eba5
AM
4822
4823 /* Check the alignment when a common symbol is involved. This
4824 can change when a common symbol is overridden by a normal
4825 definition or a common symbol is ignored due to the old
4826 normal definition. We need to make sure the maximum
4827 alignment is maintained. */
a4d8e49b 4828 if ((old_alignment || common)
4ad4eba5
AM
4829 && h->root.type != bfd_link_hash_common)
4830 {
4831 unsigned int common_align;
4832 unsigned int normal_align;
4833 unsigned int symbol_align;
4834 bfd *normal_bfd;
4835 bfd *common_bfd;
4836
3a81e825
AM
4837 BFD_ASSERT (h->root.type == bfd_link_hash_defined
4838 || h->root.type == bfd_link_hash_defweak);
4839
4ad4eba5
AM
4840 symbol_align = ffs (h->root.u.def.value) - 1;
4841 if (h->root.u.def.section->owner != NULL
0616a280
AM
4842 && (h->root.u.def.section->owner->flags
4843 & (DYNAMIC | BFD_PLUGIN)) == 0)
4ad4eba5
AM
4844 {
4845 normal_align = h->root.u.def.section->alignment_power;
4846 if (normal_align > symbol_align)
4847 normal_align = symbol_align;
4848 }
4849 else
4850 normal_align = symbol_align;
4851
4852 if (old_alignment)
4853 {
4854 common_align = old_alignment;
4855 common_bfd = old_bfd;
4856 normal_bfd = abfd;
4857 }
4858 else
4859 {
4860 common_align = bfd_log2 (isym->st_value);
4861 common_bfd = abfd;
4862 normal_bfd = old_bfd;
4863 }
4864
4865 if (normal_align < common_align)
d07676f8
NC
4866 {
4867 /* PR binutils/2735 */
4868 if (normal_bfd == NULL)
4eca0228 4869 _bfd_error_handler
695344c0 4870 /* xgettext:c-format */
9793eb77 4871 (_("warning: alignment %u of common symbol `%s' in %pB is"
871b3ab2 4872 " greater than the alignment (%u) of its section %pA"),
c08bb8dd
AM
4873 1 << common_align, name, common_bfd,
4874 1 << normal_align, h->root.u.def.section);
d07676f8 4875 else
4eca0228 4876 _bfd_error_handler
695344c0 4877 /* xgettext:c-format */
9793eb77 4878 (_("warning: alignment %u of symbol `%s' in %pB"
871b3ab2 4879 " is smaller than %u in %pB"),
c08bb8dd
AM
4880 1 << normal_align, name, normal_bfd,
4881 1 << common_align, common_bfd);
d07676f8 4882 }
4ad4eba5
AM
4883 }
4884
83ad0046 4885 /* Remember the symbol size if it isn't undefined. */
3a81e825
AM
4886 if (isym->st_size != 0
4887 && isym->st_shndx != SHN_UNDEF
4ad4eba5
AM
4888 && (definition || h->size == 0))
4889 {
83ad0046
L
4890 if (h->size != 0
4891 && h->size != isym->st_size
4892 && ! size_change_ok)
4eca0228 4893 _bfd_error_handler
695344c0 4894 /* xgettext:c-format */
9793eb77 4895 (_("warning: size of symbol `%s' changed"
2dcf00ce
AM
4896 " from %" PRIu64 " in %pB to %" PRIu64 " in %pB"),
4897 name, (uint64_t) h->size, old_bfd,
4898 (uint64_t) isym->st_size, abfd);
4ad4eba5
AM
4899
4900 h->size = isym->st_size;
4901 }
4902
4903 /* If this is a common symbol, then we always want H->SIZE
4904 to be the size of the common symbol. The code just above
4905 won't fix the size if a common symbol becomes larger. We
4906 don't warn about a size change here, because that is
4f3fedcf 4907 covered by --warn-common. Allow changes between different
fcb93ecf 4908 function types. */
4ad4eba5
AM
4909 if (h->root.type == bfd_link_hash_common)
4910 h->size = h->root.u.c.size;
4911
4912 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
37a9e49a
L
4913 && ((definition && !new_weak)
4914 || (old_weak && h->root.type == bfd_link_hash_common)
4915 || h->type == STT_NOTYPE))
4ad4eba5 4916 {
2955ec4c
L
4917 unsigned int type = ELF_ST_TYPE (isym->st_info);
4918
4919 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4920 symbol. */
4921 if (type == STT_GNU_IFUNC
4922 && (abfd->flags & DYNAMIC) != 0)
4923 type = STT_FUNC;
4ad4eba5 4924
2955ec4c
L
4925 if (h->type != type)
4926 {
4927 if (h->type != STT_NOTYPE && ! type_change_ok)
695344c0 4928 /* xgettext:c-format */
4eca0228 4929 _bfd_error_handler
9793eb77 4930 (_("warning: type of symbol `%s' changed"
871b3ab2 4931 " from %d to %d in %pB"),
c08bb8dd 4932 name, h->type, type, abfd);
2955ec4c
L
4933
4934 h->type = type;
4935 }
4ad4eba5
AM
4936 }
4937
54ac0771 4938 /* Merge st_other field. */
b8417128 4939 elf_merge_st_other (abfd, h, isym, sec, definition, dynamic);
4ad4eba5 4940
c3df8c14 4941 /* We don't want to make debug symbol dynamic. */
0e1862bb
L
4942 if (definition
4943 && (sec->flags & SEC_DEBUGGING)
4944 && !bfd_link_relocatable (info))
c3df8c14
AM
4945 dynsym = FALSE;
4946
4f3fedcf
AM
4947 /* Nor should we make plugin symbols dynamic. */
4948 if ((abfd->flags & BFD_PLUGIN) != 0)
4949 dynsym = FALSE;
4950
35fc36a8 4951 if (definition)
35399224
L
4952 {
4953 h->target_internal = isym->st_target_internal;
4954 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4955 }
35fc36a8 4956
4ad4eba5
AM
4957 if (definition && !dynamic)
4958 {
4959 char *p = strchr (name, ELF_VER_CHR);
4960 if (p != NULL && p[1] != ELF_VER_CHR)
4961 {
4962 /* Queue non-default versions so that .symver x, x@FOO
4963 aliases can be checked. */
66eb6687 4964 if (!nondeflt_vers)
4ad4eba5 4965 {
66eb6687
AM
4966 amt = ((isymend - isym + 1)
4967 * sizeof (struct elf_link_hash_entry *));
ca4be51c
AM
4968 nondeflt_vers
4969 = (struct elf_link_hash_entry **) bfd_malloc (amt);
14b1c01e
AM
4970 if (!nondeflt_vers)
4971 goto error_free_vers;
4ad4eba5 4972 }
66eb6687 4973 nondeflt_vers[nondeflt_vers_cnt++] = h;
4ad4eba5
AM
4974 }
4975 }
4976
4977 if (dynsym && h->dynindx == -1)
4978 {
c152c796 4979 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4ad4eba5 4980 goto error_free_vers;
60d67dc8
AM
4981 if (h->is_weakalias
4982 && weakdef (h)->dynindx == -1)
4ad4eba5 4983 {
60d67dc8 4984 if (!bfd_elf_link_record_dynamic_symbol (info, weakdef (h)))
4ad4eba5
AM
4985 goto error_free_vers;
4986 }
4987 }
1f599d0e 4988 else if (h->dynindx != -1)
4ad4eba5
AM
4989 /* If the symbol already has a dynamic index, but
4990 visibility says it should not be visible, turn it into
4991 a local symbol. */
4992 switch (ELF_ST_VISIBILITY (h->other))
4993 {
4994 case STV_INTERNAL:
4995 case STV_HIDDEN:
4996 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4997 dynsym = FALSE;
4998 break;
4999 }
5000
aef28989
L
5001 /* Don't add DT_NEEDED for references from the dummy bfd nor
5002 for unmatched symbol. */
4ad4eba5 5003 if (!add_needed
aef28989 5004 && matched
4ad4eba5 5005 && definition
010e5ae2 5006 && ((dynsym
ffa9430d 5007 && h->ref_regular_nonweak
4f3fedcf
AM
5008 && (old_bfd == NULL
5009 || (old_bfd->flags & BFD_PLUGIN) == 0))
ffa9430d 5010 || (h->ref_dynamic_nonweak
010e5ae2 5011 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
7b15fa7a
AM
5012 && !on_needed_list (elf_dt_name (abfd),
5013 htab->needed, NULL))))
4ad4eba5
AM
5014 {
5015 int ret;
5016 const char *soname = elf_dt_name (abfd);
5017
16e4ecc0
AM
5018 info->callbacks->minfo ("%!", soname, old_bfd,
5019 h->root.root.string);
5020
4ad4eba5
AM
5021 /* A symbol from a library loaded via DT_NEEDED of some
5022 other library is referenced by a regular object.
e56f61be 5023 Add a DT_NEEDED entry for it. Issue an error if
b918acf9
NC
5024 --no-add-needed is used and the reference was not
5025 a weak one. */
4f3fedcf 5026 if (old_bfd != NULL
b918acf9 5027 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
e56f61be 5028 {
4eca0228 5029 _bfd_error_handler
695344c0 5030 /* xgettext:c-format */
871b3ab2 5031 (_("%pB: undefined reference to symbol '%s'"),
4f3fedcf 5032 old_bfd, name);
ff5ac77b 5033 bfd_set_error (bfd_error_missing_dso);
e56f61be
L
5034 goto error_free_vers;
5035 }
5036
a50b1753 5037 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
ca4be51c 5038 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
a5db907e 5039
4ad4eba5 5040 add_needed = TRUE;
7e9f0867 5041 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
5042 if (ret < 0)
5043 goto error_free_vers;
5044
5045 BFD_ASSERT (ret == 0);
5046 }
5047 }
5048 }
5049
a83ef4d1
L
5050 if (info->lto_plugin_active
5051 && !bfd_link_relocatable (info)
5052 && (abfd->flags & BFD_PLUGIN) == 0
5053 && !just_syms
5054 && extsymcount)
5055 {
5056 int r_sym_shift;
5057
5058 if (bed->s->arch_size == 32)
5059 r_sym_shift = 8;
5060 else
5061 r_sym_shift = 32;
5062
5063 /* If linker plugin is enabled, set non_ir_ref_regular on symbols
5064 referenced in regular objects so that linker plugin will get
5065 the correct symbol resolution. */
5066
5067 sym_hash = elf_sym_hashes (abfd);
5068 for (s = abfd->sections; s != NULL; s = s->next)
5069 {
5070 Elf_Internal_Rela *internal_relocs;
5071 Elf_Internal_Rela *rel, *relend;
5072
5073 /* Don't check relocations in excluded sections. */
5074 if ((s->flags & SEC_RELOC) == 0
5075 || s->reloc_count == 0
5076 || (s->flags & SEC_EXCLUDE) != 0
5077 || ((info->strip == strip_all
5078 || info->strip == strip_debugger)
5079 && (s->flags & SEC_DEBUGGING) != 0))
5080 continue;
5081
5082 internal_relocs = _bfd_elf_link_read_relocs (abfd, s, NULL,
5083 NULL,
5084 info->keep_memory);
5085 if (internal_relocs == NULL)
5086 goto error_free_vers;
5087
5088 rel = internal_relocs;
5089 relend = rel + s->reloc_count;
5090 for ( ; rel < relend; rel++)
5091 {
5092 unsigned long r_symndx = rel->r_info >> r_sym_shift;
5093 struct elf_link_hash_entry *h;
5094
5095 /* Skip local symbols. */
5096 if (r_symndx < extsymoff)
5097 continue;
5098
5099 h = sym_hash[r_symndx - extsymoff];
5100 if (h != NULL)
5101 h->root.non_ir_ref_regular = 1;
5102 }
5103
5104 if (elf_section_data (s)->relocs != internal_relocs)
5105 free (internal_relocs);
5106 }
5107 }
5108
66eb6687
AM
5109 if (extversym != NULL)
5110 {
5111 free (extversym);
5112 extversym = NULL;
5113 }
5114
5115 if (isymbuf != NULL)
5116 {
5117 free (isymbuf);
5118 isymbuf = NULL;
5119 }
5120
5121 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
5122 {
5123 unsigned int i;
5124
5125 /* Restore the symbol table. */
f45794cb
AM
5126 old_ent = (char *) old_tab + tabsize;
5127 memset (elf_sym_hashes (abfd), 0,
5128 extsymcount * sizeof (struct elf_link_hash_entry *));
4f87808c
AM
5129 htab->root.table.table = old_table;
5130 htab->root.table.size = old_size;
5131 htab->root.table.count = old_count;
66eb6687 5132 memcpy (htab->root.table.table, old_tab, tabsize);
66eb6687
AM
5133 htab->root.undefs = old_undefs;
5134 htab->root.undefs_tail = old_undefs_tail;
5b677558
AM
5135 _bfd_elf_strtab_restore (htab->dynstr, old_strtab);
5136 free (old_strtab);
5137 old_strtab = NULL;
66eb6687
AM
5138 for (i = 0; i < htab->root.table.size; i++)
5139 {
5140 struct bfd_hash_entry *p;
5141 struct elf_link_hash_entry *h;
3e0882af
L
5142 bfd_size_type size;
5143 unsigned int alignment_power;
4070765b 5144 unsigned int non_ir_ref_dynamic;
66eb6687
AM
5145
5146 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
5147 {
5148 h = (struct elf_link_hash_entry *) p;
2de92251
AM
5149 if (h->root.type == bfd_link_hash_warning)
5150 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2de92251 5151
3e0882af
L
5152 /* Preserve the maximum alignment and size for common
5153 symbols even if this dynamic lib isn't on DT_NEEDED
a4542f1b 5154 since it can still be loaded at run time by another
3e0882af
L
5155 dynamic lib. */
5156 if (h->root.type == bfd_link_hash_common)
5157 {
5158 size = h->root.u.c.size;
5159 alignment_power = h->root.u.c.p->alignment_power;
5160 }
5161 else
5162 {
5163 size = 0;
5164 alignment_power = 0;
5165 }
4070765b 5166 /* Preserve non_ir_ref_dynamic so that this symbol
59fa66c5
L
5167 will be exported when the dynamic lib becomes needed
5168 in the second pass. */
4070765b 5169 non_ir_ref_dynamic = h->root.non_ir_ref_dynamic;
66eb6687
AM
5170 memcpy (p, old_ent, htab->root.table.entsize);
5171 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
5172 h = (struct elf_link_hash_entry *) p;
5173 if (h->root.type == bfd_link_hash_warning)
5174 {
5175 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
5176 old_ent = (char *) old_ent + htab->root.table.entsize;
a4542f1b 5177 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2de92251 5178 }
a4542f1b 5179 if (h->root.type == bfd_link_hash_common)
3e0882af
L
5180 {
5181 if (size > h->root.u.c.size)
5182 h->root.u.c.size = size;
5183 if (alignment_power > h->root.u.c.p->alignment_power)
5184 h->root.u.c.p->alignment_power = alignment_power;
5185 }
4070765b 5186 h->root.non_ir_ref_dynamic = non_ir_ref_dynamic;
66eb6687
AM
5187 }
5188 }
5189
5061a885
AM
5190 /* Make a special call to the linker "notice" function to
5191 tell it that symbols added for crefs may need to be removed. */
e5034e59 5192 if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
9af2a943 5193 goto error_free_vers;
5061a885 5194
66eb6687
AM
5195 free (old_tab);
5196 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
5197 alloc_mark);
5198 if (nondeflt_vers != NULL)
5199 free (nondeflt_vers);
5200 return TRUE;
5201 }
2de92251 5202
66eb6687
AM
5203 if (old_tab != NULL)
5204 {
e5034e59 5205 if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
9af2a943 5206 goto error_free_vers;
66eb6687
AM
5207 free (old_tab);
5208 old_tab = NULL;
5209 }
5210
c6e8a9a8
L
5211 /* Now that all the symbols from this input file are created, if
5212 not performing a relocatable link, handle .symver foo, foo@BAR
5213 such that any relocs against foo become foo@BAR. */
0e1862bb 5214 if (!bfd_link_relocatable (info) && nondeflt_vers != NULL)
4ad4eba5 5215 {
ef53be89 5216 size_t cnt, symidx;
4ad4eba5
AM
5217
5218 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
5219 {
5220 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
5221 char *shortname, *p;
5222
5223 p = strchr (h->root.root.string, ELF_VER_CHR);
5224 if (p == NULL
5225 || (h->root.type != bfd_link_hash_defined
5226 && h->root.type != bfd_link_hash_defweak))
5227 continue;
5228
5229 amt = p - h->root.root.string;
a50b1753 5230 shortname = (char *) bfd_malloc (amt + 1);
14b1c01e
AM
5231 if (!shortname)
5232 goto error_free_vers;
4ad4eba5
AM
5233 memcpy (shortname, h->root.root.string, amt);
5234 shortname[amt] = '\0';
5235
5236 hi = (struct elf_link_hash_entry *)
66eb6687 5237 bfd_link_hash_lookup (&htab->root, shortname,
4ad4eba5
AM
5238 FALSE, FALSE, FALSE);
5239 if (hi != NULL
5240 && hi->root.type == h->root.type
5241 && hi->root.u.def.value == h->root.u.def.value
5242 && hi->root.u.def.section == h->root.u.def.section)
5243 {
5244 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
5245 hi->root.type = bfd_link_hash_indirect;
5246 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
fcfa13d2 5247 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4ad4eba5
AM
5248 sym_hash = elf_sym_hashes (abfd);
5249 if (sym_hash)
5250 for (symidx = 0; symidx < extsymcount; ++symidx)
5251 if (sym_hash[symidx] == hi)
5252 {
5253 sym_hash[symidx] = h;
5254 break;
5255 }
5256 }
5257 free (shortname);
5258 }
5259 free (nondeflt_vers);
5260 nondeflt_vers = NULL;
5261 }
5262
60d67dc8 5263 /* Now set the alias field correctly for all the weak defined
4ad4eba5
AM
5264 symbols we found. The only way to do this is to search all the
5265 symbols. Since we only need the information for non functions in
5266 dynamic objects, that's the only time we actually put anything on
5267 the list WEAKS. We need this information so that if a regular
5268 object refers to a symbol defined weakly in a dynamic object, the
5269 real symbol in the dynamic object is also put in the dynamic
5270 symbols; we also must arrange for both symbols to point to the
5271 same memory location. We could handle the general case of symbol
5272 aliasing, but a general symbol alias can only be generated in
5273 assembler code, handling it correctly would be very time
5274 consuming, and other ELF linkers don't handle general aliasing
5275 either. */
5276 if (weaks != NULL)
5277 {
5278 struct elf_link_hash_entry **hpp;
5279 struct elf_link_hash_entry **hppend;
5280 struct elf_link_hash_entry **sorted_sym_hash;
5281 struct elf_link_hash_entry *h;
5282 size_t sym_count;
5283
5284 /* Since we have to search the whole symbol list for each weak
5285 defined symbol, search time for N weak defined symbols will be
5286 O(N^2). Binary search will cut it down to O(NlogN). */
ef53be89
AM
5287 amt = extsymcount;
5288 amt *= sizeof (struct elf_link_hash_entry *);
a50b1753 5289 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4ad4eba5
AM
5290 if (sorted_sym_hash == NULL)
5291 goto error_return;
5292 sym_hash = sorted_sym_hash;
5293 hpp = elf_sym_hashes (abfd);
5294 hppend = hpp + extsymcount;
5295 sym_count = 0;
5296 for (; hpp < hppend; hpp++)
5297 {
5298 h = *hpp;
5299 if (h != NULL
5300 && h->root.type == bfd_link_hash_defined
fcb93ecf 5301 && !bed->is_function_type (h->type))
4ad4eba5
AM
5302 {
5303 *sym_hash = h;
5304 sym_hash++;
5305 sym_count++;
5306 }
5307 }
5308
5309 qsort (sorted_sym_hash, sym_count,
5310 sizeof (struct elf_link_hash_entry *),
5311 elf_sort_symbol);
5312
5313 while (weaks != NULL)
5314 {
5315 struct elf_link_hash_entry *hlook;
5316 asection *slook;
5317 bfd_vma vlook;
ed54588d 5318 size_t i, j, idx = 0;
4ad4eba5
AM
5319
5320 hlook = weaks;
60d67dc8
AM
5321 weaks = hlook->u.alias;
5322 hlook->u.alias = NULL;
4ad4eba5 5323
e3e53eed
AM
5324 if (hlook->root.type != bfd_link_hash_defined
5325 && hlook->root.type != bfd_link_hash_defweak)
5326 continue;
5327
4ad4eba5
AM
5328 slook = hlook->root.u.def.section;
5329 vlook = hlook->root.u.def.value;
5330
4ad4eba5
AM
5331 i = 0;
5332 j = sym_count;
14160578 5333 while (i != j)
4ad4eba5
AM
5334 {
5335 bfd_signed_vma vdiff;
5336 idx = (i + j) / 2;
14160578 5337 h = sorted_sym_hash[idx];
4ad4eba5
AM
5338 vdiff = vlook - h->root.u.def.value;
5339 if (vdiff < 0)
5340 j = idx;
5341 else if (vdiff > 0)
5342 i = idx + 1;
5343 else
5344 {
d3435ae8 5345 int sdiff = slook->id - h->root.u.def.section->id;
4ad4eba5
AM
5346 if (sdiff < 0)
5347 j = idx;
5348 else if (sdiff > 0)
5349 i = idx + 1;
5350 else
14160578 5351 break;
4ad4eba5
AM
5352 }
5353 }
5354
5355 /* We didn't find a value/section match. */
14160578 5356 if (i == j)
4ad4eba5
AM
5357 continue;
5358
14160578
AM
5359 /* With multiple aliases, or when the weak symbol is already
5360 strongly defined, we have multiple matching symbols and
5361 the binary search above may land on any of them. Step
5362 one past the matching symbol(s). */
5363 while (++idx != j)
5364 {
5365 h = sorted_sym_hash[idx];
5366 if (h->root.u.def.section != slook
5367 || h->root.u.def.value != vlook)
5368 break;
5369 }
5370
5371 /* Now look back over the aliases. Since we sorted by size
5372 as well as value and section, we'll choose the one with
5373 the largest size. */
5374 while (idx-- != i)
4ad4eba5 5375 {
14160578 5376 h = sorted_sym_hash[idx];
4ad4eba5
AM
5377
5378 /* Stop if value or section doesn't match. */
14160578
AM
5379 if (h->root.u.def.section != slook
5380 || h->root.u.def.value != vlook)
4ad4eba5
AM
5381 break;
5382 else if (h != hlook)
5383 {
60d67dc8
AM
5384 struct elf_link_hash_entry *t;
5385
5386 hlook->u.alias = h;
5387 hlook->is_weakalias = 1;
5388 t = h;
5389 if (t->u.alias != NULL)
5390 while (t->u.alias != h)
5391 t = t->u.alias;
5392 t->u.alias = hlook;
4ad4eba5
AM
5393
5394 /* If the weak definition is in the list of dynamic
5395 symbols, make sure the real definition is put
5396 there as well. */
5397 if (hlook->dynindx != -1 && h->dynindx == -1)
5398 {
c152c796 5399 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4dd07732
AM
5400 {
5401 err_free_sym_hash:
5402 free (sorted_sym_hash);
5403 goto error_return;
5404 }
4ad4eba5
AM
5405 }
5406
5407 /* If the real definition is in the list of dynamic
5408 symbols, make sure the weak definition is put
5409 there as well. If we don't do this, then the
5410 dynamic loader might not merge the entries for the
5411 real definition and the weak definition. */
5412 if (h->dynindx != -1 && hlook->dynindx == -1)
5413 {
c152c796 5414 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4dd07732 5415 goto err_free_sym_hash;
4ad4eba5
AM
5416 }
5417 break;
5418 }
5419 }
5420 }
5421
5422 free (sorted_sym_hash);
5423 }
5424
33177bb1
AM
5425 if (bed->check_directives
5426 && !(*bed->check_directives) (abfd, info))
5427 return FALSE;
85fbca6a 5428
4ad4eba5
AM
5429 /* If this is a non-traditional link, try to optimize the handling
5430 of the .stab/.stabstr sections. */
5431 if (! dynamic
5432 && ! info->traditional_format
66eb6687 5433 && is_elf_hash_table (htab)
4ad4eba5
AM
5434 && (info->strip != strip_all && info->strip != strip_debugger))
5435 {
5436 asection *stabstr;
5437
5438 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
5439 if (stabstr != NULL)
5440 {
5441 bfd_size_type string_offset = 0;
5442 asection *stab;
5443
5444 for (stab = abfd->sections; stab; stab = stab->next)
0112cd26 5445 if (CONST_STRNEQ (stab->name, ".stab")
4ad4eba5
AM
5446 && (!stab->name[5] ||
5447 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
5448 && (stab->flags & SEC_MERGE) == 0
5449 && !bfd_is_abs_section (stab->output_section))
5450 {
5451 struct bfd_elf_section_data *secdata;
5452
5453 secdata = elf_section_data (stab);
66eb6687
AM
5454 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
5455 stabstr, &secdata->sec_info,
4ad4eba5
AM
5456 &string_offset))
5457 goto error_return;
5458 if (secdata->sec_info)
dbaa2011 5459 stab->sec_info_type = SEC_INFO_TYPE_STABS;
4ad4eba5
AM
5460 }
5461 }
5462 }
5463
66eb6687 5464 if (is_elf_hash_table (htab) && add_needed)
4ad4eba5
AM
5465 {
5466 /* Add this bfd to the loaded list. */
5467 struct elf_link_loaded_list *n;
5468
ca4be51c 5469 n = (struct elf_link_loaded_list *) bfd_alloc (abfd, sizeof (*n));
4ad4eba5
AM
5470 if (n == NULL)
5471 goto error_return;
5472 n->abfd = abfd;
66eb6687
AM
5473 n->next = htab->loaded;
5474 htab->loaded = n;
4ad4eba5
AM
5475 }
5476
5477 return TRUE;
5478
5479 error_free_vers:
66eb6687
AM
5480 if (old_tab != NULL)
5481 free (old_tab);
5b677558
AM
5482 if (old_strtab != NULL)
5483 free (old_strtab);
4ad4eba5
AM
5484 if (nondeflt_vers != NULL)
5485 free (nondeflt_vers);
5486 if (extversym != NULL)
5487 free (extversym);
5488 error_free_sym:
5489 if (isymbuf != NULL)
5490 free (isymbuf);
5491 error_return:
5492 return FALSE;
5493}
5494
8387904d
AM
5495/* Return the linker hash table entry of a symbol that might be
5496 satisfied by an archive symbol. Return -1 on error. */
5497
5498struct elf_link_hash_entry *
5499_bfd_elf_archive_symbol_lookup (bfd *abfd,
5500 struct bfd_link_info *info,
5501 const char *name)
5502{
5503 struct elf_link_hash_entry *h;
5504 char *p, *copy;
5505 size_t len, first;
5506
2a41f396 5507 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
8387904d
AM
5508 if (h != NULL)
5509 return h;
5510
5511 /* If this is a default version (the name contains @@), look up the
5512 symbol again with only one `@' as well as without the version.
5513 The effect is that references to the symbol with and without the
5514 version will be matched by the default symbol in the archive. */
5515
5516 p = strchr (name, ELF_VER_CHR);
5517 if (p == NULL || p[1] != ELF_VER_CHR)
5518 return h;
5519
5520 /* First check with only one `@'. */
5521 len = strlen (name);
a50b1753 5522 copy = (char *) bfd_alloc (abfd, len);
8387904d 5523 if (copy == NULL)
e99955cd 5524 return (struct elf_link_hash_entry *) -1;
8387904d
AM
5525
5526 first = p - name + 1;
5527 memcpy (copy, name, first);
5528 memcpy (copy + first, name + first + 1, len - first);
5529
2a41f396 5530 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
8387904d
AM
5531 if (h == NULL)
5532 {
5533 /* We also need to check references to the symbol without the
5534 version. */
5535 copy[first - 1] = '\0';
5536 h = elf_link_hash_lookup (elf_hash_table (info), copy,
2a41f396 5537 FALSE, FALSE, TRUE);
8387904d
AM
5538 }
5539
5540 bfd_release (abfd, copy);
5541 return h;
5542}
5543
0ad989f9 5544/* Add symbols from an ELF archive file to the linker hash table. We
13e570f8
AM
5545 don't use _bfd_generic_link_add_archive_symbols because we need to
5546 handle versioned symbols.
0ad989f9
L
5547
5548 Fortunately, ELF archive handling is simpler than that done by
5549 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
5550 oddities. In ELF, if we find a symbol in the archive map, and the
5551 symbol is currently undefined, we know that we must pull in that
5552 object file.
5553
5554 Unfortunately, we do have to make multiple passes over the symbol
5555 table until nothing further is resolved. */
5556
4ad4eba5
AM
5557static bfd_boolean
5558elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
0ad989f9
L
5559{
5560 symindex c;
13e570f8 5561 unsigned char *included = NULL;
0ad989f9
L
5562 carsym *symdefs;
5563 bfd_boolean loop;
5564 bfd_size_type amt;
8387904d
AM
5565 const struct elf_backend_data *bed;
5566 struct elf_link_hash_entry * (*archive_symbol_lookup)
5567 (bfd *, struct bfd_link_info *, const char *);
0ad989f9
L
5568
5569 if (! bfd_has_map (abfd))
5570 {
5571 /* An empty archive is a special case. */
5572 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
5573 return TRUE;
5574 bfd_set_error (bfd_error_no_armap);
5575 return FALSE;
5576 }
5577
5578 /* Keep track of all symbols we know to be already defined, and all
5579 files we know to be already included. This is to speed up the
5580 second and subsequent passes. */
5581 c = bfd_ardata (abfd)->symdef_count;
5582 if (c == 0)
5583 return TRUE;
5584 amt = c;
13e570f8
AM
5585 amt *= sizeof (*included);
5586 included = (unsigned char *) bfd_zmalloc (amt);
5587 if (included == NULL)
5588 return FALSE;
0ad989f9
L
5589
5590 symdefs = bfd_ardata (abfd)->symdefs;
8387904d
AM
5591 bed = get_elf_backend_data (abfd);
5592 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
0ad989f9
L
5593
5594 do
5595 {
5596 file_ptr last;
5597 symindex i;
5598 carsym *symdef;
5599 carsym *symdefend;
5600
5601 loop = FALSE;
5602 last = -1;
5603
5604 symdef = symdefs;
5605 symdefend = symdef + c;
5606 for (i = 0; symdef < symdefend; symdef++, i++)
5607 {
5608 struct elf_link_hash_entry *h;
5609 bfd *element;
5610 struct bfd_link_hash_entry *undefs_tail;
5611 symindex mark;
5612
13e570f8 5613 if (included[i])
0ad989f9
L
5614 continue;
5615 if (symdef->file_offset == last)
5616 {
5617 included[i] = TRUE;
5618 continue;
5619 }
5620
8387904d 5621 h = archive_symbol_lookup (abfd, info, symdef->name);
e99955cd 5622 if (h == (struct elf_link_hash_entry *) -1)
8387904d 5623 goto error_return;
0ad989f9
L
5624
5625 if (h == NULL)
5626 continue;
5627
5628 if (h->root.type == bfd_link_hash_common)
5629 {
5630 /* We currently have a common symbol. The archive map contains
5631 a reference to this symbol, so we may want to include it. We
5632 only want to include it however, if this archive element
5633 contains a definition of the symbol, not just another common
5634 declaration of it.
5635
5636 Unfortunately some archivers (including GNU ar) will put
5637 declarations of common symbols into their archive maps, as
5638 well as real definitions, so we cannot just go by the archive
5639 map alone. Instead we must read in the element's symbol
5640 table and check that to see what kind of symbol definition
5641 this is. */
5642 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5643 continue;
5644 }
5645 else if (h->root.type != bfd_link_hash_undefined)
5646 {
5647 if (h->root.type != bfd_link_hash_undefweak)
13e570f8
AM
5648 /* Symbol must be defined. Don't check it again. */
5649 included[i] = TRUE;
0ad989f9
L
5650 continue;
5651 }
5652
5653 /* We need to include this archive member. */
5654 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5655 if (element == NULL)
5656 goto error_return;
5657
5658 if (! bfd_check_format (element, bfd_object))
5659 goto error_return;
5660
0ad989f9
L
5661 undefs_tail = info->hash->undefs_tail;
5662
0e144ba7
AM
5663 if (!(*info->callbacks
5664 ->add_archive_element) (info, element, symdef->name, &element))
b95a0a31 5665 continue;
0e144ba7 5666 if (!bfd_link_add_symbols (element, info))
0ad989f9
L
5667 goto error_return;
5668
5669 /* If there are any new undefined symbols, we need to make
5670 another pass through the archive in order to see whether
5671 they can be defined. FIXME: This isn't perfect, because
5672 common symbols wind up on undefs_tail and because an
5673 undefined symbol which is defined later on in this pass
5674 does not require another pass. This isn't a bug, but it
5675 does make the code less efficient than it could be. */
5676 if (undefs_tail != info->hash->undefs_tail)
5677 loop = TRUE;
5678
5679 /* Look backward to mark all symbols from this object file
5680 which we have already seen in this pass. */
5681 mark = i;
5682 do
5683 {
5684 included[mark] = TRUE;
5685 if (mark == 0)
5686 break;
5687 --mark;
5688 }
5689 while (symdefs[mark].file_offset == symdef->file_offset);
5690
5691 /* We mark subsequent symbols from this object file as we go
5692 on through the loop. */
5693 last = symdef->file_offset;
5694 }
5695 }
5696 while (loop);
5697
0ad989f9
L
5698 free (included);
5699
5700 return TRUE;
5701
5702 error_return:
0ad989f9
L
5703 if (included != NULL)
5704 free (included);
5705 return FALSE;
5706}
4ad4eba5
AM
5707
5708/* Given an ELF BFD, add symbols to the global hash table as
5709 appropriate. */
5710
5711bfd_boolean
5712bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5713{
5714 switch (bfd_get_format (abfd))
5715 {
5716 case bfd_object:
5717 return elf_link_add_object_symbols (abfd, info);
5718 case bfd_archive:
5719 return elf_link_add_archive_symbols (abfd, info);
5720 default:
5721 bfd_set_error (bfd_error_wrong_format);
5722 return FALSE;
5723 }
5724}
5a580b3a 5725\f
14b1c01e
AM
5726struct hash_codes_info
5727{
5728 unsigned long *hashcodes;
5729 bfd_boolean error;
5730};
a0c8462f 5731
5a580b3a
AM
5732/* This function will be called though elf_link_hash_traverse to store
5733 all hash value of the exported symbols in an array. */
5734
5735static bfd_boolean
5736elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5737{
a50b1753 5738 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5a580b3a 5739 const char *name;
5a580b3a
AM
5740 unsigned long ha;
5741 char *alc = NULL;
5742
5a580b3a
AM
5743 /* Ignore indirect symbols. These are added by the versioning code. */
5744 if (h->dynindx == -1)
5745 return TRUE;
5746
5747 name = h->root.root.string;
422f1182 5748 if (h->versioned >= versioned)
5a580b3a 5749 {
422f1182
L
5750 char *p = strchr (name, ELF_VER_CHR);
5751 if (p != NULL)
14b1c01e 5752 {
422f1182
L
5753 alc = (char *) bfd_malloc (p - name + 1);
5754 if (alc == NULL)
5755 {
5756 inf->error = TRUE;
5757 return FALSE;
5758 }
5759 memcpy (alc, name, p - name);
5760 alc[p - name] = '\0';
5761 name = alc;
14b1c01e 5762 }
5a580b3a
AM
5763 }
5764
5765 /* Compute the hash value. */
5766 ha = bfd_elf_hash (name);
5767
5768 /* Store the found hash value in the array given as the argument. */
14b1c01e 5769 *(inf->hashcodes)++ = ha;
5a580b3a
AM
5770
5771 /* And store it in the struct so that we can put it in the hash table
5772 later. */
f6e332e6 5773 h->u.elf_hash_value = ha;
5a580b3a
AM
5774
5775 if (alc != NULL)
5776 free (alc);
5777
5778 return TRUE;
5779}
5780
fdc90cb4
JJ
5781struct collect_gnu_hash_codes
5782{
5783 bfd *output_bfd;
5784 const struct elf_backend_data *bed;
5785 unsigned long int nsyms;
5786 unsigned long int maskbits;
5787 unsigned long int *hashcodes;
5788 unsigned long int *hashval;
5789 unsigned long int *indx;
5790 unsigned long int *counts;
5791 bfd_vma *bitmask;
5792 bfd_byte *contents;
5793 long int min_dynindx;
5794 unsigned long int bucketcount;
5795 unsigned long int symindx;
5796 long int local_indx;
5797 long int shift1, shift2;
5798 unsigned long int mask;
14b1c01e 5799 bfd_boolean error;
fdc90cb4
JJ
5800};
5801
5802/* This function will be called though elf_link_hash_traverse to store
5803 all hash value of the exported symbols in an array. */
5804
5805static bfd_boolean
5806elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5807{
a50b1753 5808 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4 5809 const char *name;
fdc90cb4
JJ
5810 unsigned long ha;
5811 char *alc = NULL;
5812
fdc90cb4
JJ
5813 /* Ignore indirect symbols. These are added by the versioning code. */
5814 if (h->dynindx == -1)
5815 return TRUE;
5816
5817 /* Ignore also local symbols and undefined symbols. */
5818 if (! (*s->bed->elf_hash_symbol) (h))
5819 return TRUE;
5820
5821 name = h->root.root.string;
422f1182 5822 if (h->versioned >= versioned)
fdc90cb4 5823 {
422f1182
L
5824 char *p = strchr (name, ELF_VER_CHR);
5825 if (p != NULL)
14b1c01e 5826 {
422f1182
L
5827 alc = (char *) bfd_malloc (p - name + 1);
5828 if (alc == NULL)
5829 {
5830 s->error = TRUE;
5831 return FALSE;
5832 }
5833 memcpy (alc, name, p - name);
5834 alc[p - name] = '\0';
5835 name = alc;
14b1c01e 5836 }
fdc90cb4
JJ
5837 }
5838
5839 /* Compute the hash value. */
5840 ha = bfd_elf_gnu_hash (name);
5841
5842 /* Store the found hash value in the array for compute_bucket_count,
5843 and also for .dynsym reordering purposes. */
5844 s->hashcodes[s->nsyms] = ha;
5845 s->hashval[h->dynindx] = ha;
5846 ++s->nsyms;
5847 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5848 s->min_dynindx = h->dynindx;
5849
5850 if (alc != NULL)
5851 free (alc);
5852
5853 return TRUE;
5854}
5855
5856/* This function will be called though elf_link_hash_traverse to do
5857 final dynaminc symbol renumbering. */
5858
5859static bfd_boolean
5860elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5861{
a50b1753 5862 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4
JJ
5863 unsigned long int bucket;
5864 unsigned long int val;
5865
fdc90cb4
JJ
5866 /* Ignore indirect symbols. */
5867 if (h->dynindx == -1)
5868 return TRUE;
5869
5870 /* Ignore also local symbols and undefined symbols. */
5871 if (! (*s->bed->elf_hash_symbol) (h))
5872 {
5873 if (h->dynindx >= s->min_dynindx)
5874 h->dynindx = s->local_indx++;
5875 return TRUE;
5876 }
5877
5878 bucket = s->hashval[h->dynindx] % s->bucketcount;
5879 val = (s->hashval[h->dynindx] >> s->shift1)
5880 & ((s->maskbits >> s->shift1) - 1);
5881 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5882 s->bitmask[val]
5883 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5884 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5885 if (s->counts[bucket] == 1)
5886 /* Last element terminates the chain. */
5887 val |= 1;
5888 bfd_put_32 (s->output_bfd, val,
5889 s->contents + (s->indx[bucket] - s->symindx) * 4);
5890 --s->counts[bucket];
5891 h->dynindx = s->indx[bucket]++;
5892 return TRUE;
5893}
5894
5895/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5896
5897bfd_boolean
5898_bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5899{
5900 return !(h->forced_local
5901 || h->root.type == bfd_link_hash_undefined
5902 || h->root.type == bfd_link_hash_undefweak
5903 || ((h->root.type == bfd_link_hash_defined
5904 || h->root.type == bfd_link_hash_defweak)
5905 && h->root.u.def.section->output_section == NULL));
5906}
5907
5a580b3a
AM
5908/* Array used to determine the number of hash table buckets to use
5909 based on the number of symbols there are. If there are fewer than
5910 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5911 fewer than 37 we use 17 buckets, and so forth. We never use more
5912 than 32771 buckets. */
5913
5914static const size_t elf_buckets[] =
5915{
5916 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5917 16411, 32771, 0
5918};
5919
5920/* Compute bucket count for hashing table. We do not use a static set
5921 of possible tables sizes anymore. Instead we determine for all
5922 possible reasonable sizes of the table the outcome (i.e., the
5923 number of collisions etc) and choose the best solution. The
5924 weighting functions are not too simple to allow the table to grow
5925 without bounds. Instead one of the weighting factors is the size.
5926 Therefore the result is always a good payoff between few collisions
5927 (= short chain lengths) and table size. */
5928static size_t
b20dd2ce 5929compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
d40f3da9
AM
5930 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5931 unsigned long int nsyms,
5932 int gnu_hash)
5a580b3a 5933{
5a580b3a 5934 size_t best_size = 0;
5a580b3a 5935 unsigned long int i;
5a580b3a 5936
5a580b3a
AM
5937 /* We have a problem here. The following code to optimize the table
5938 size requires an integer type with more the 32 bits. If
5939 BFD_HOST_U_64_BIT is set we know about such a type. */
5940#ifdef BFD_HOST_U_64_BIT
5941 if (info->optimize)
5942 {
5a580b3a
AM
5943 size_t minsize;
5944 size_t maxsize;
5945 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5a580b3a 5946 bfd *dynobj = elf_hash_table (info)->dynobj;
d40f3da9 5947 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5a580b3a 5948 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
fdc90cb4 5949 unsigned long int *counts;
d40f3da9 5950 bfd_size_type amt;
0883b6e0 5951 unsigned int no_improvement_count = 0;
5a580b3a
AM
5952
5953 /* Possible optimization parameters: if we have NSYMS symbols we say
5954 that the hashing table must at least have NSYMS/4 and at most
5955 2*NSYMS buckets. */
5956 minsize = nsyms / 4;
5957 if (minsize == 0)
5958 minsize = 1;
5959 best_size = maxsize = nsyms * 2;
fdc90cb4
JJ
5960 if (gnu_hash)
5961 {
5962 if (minsize < 2)
5963 minsize = 2;
5964 if ((best_size & 31) == 0)
5965 ++best_size;
5966 }
5a580b3a
AM
5967
5968 /* Create array where we count the collisions in. We must use bfd_malloc
5969 since the size could be large. */
5970 amt = maxsize;
5971 amt *= sizeof (unsigned long int);
a50b1753 5972 counts = (unsigned long int *) bfd_malloc (amt);
5a580b3a 5973 if (counts == NULL)
fdc90cb4 5974 return 0;
5a580b3a
AM
5975
5976 /* Compute the "optimal" size for the hash table. The criteria is a
5977 minimal chain length. The minor criteria is (of course) the size
5978 of the table. */
5979 for (i = minsize; i < maxsize; ++i)
5980 {
5981 /* Walk through the array of hashcodes and count the collisions. */
5982 BFD_HOST_U_64_BIT max;
5983 unsigned long int j;
5984 unsigned long int fact;
5985
fdc90cb4
JJ
5986 if (gnu_hash && (i & 31) == 0)
5987 continue;
5988
5a580b3a
AM
5989 memset (counts, '\0', i * sizeof (unsigned long int));
5990
5991 /* Determine how often each hash bucket is used. */
5992 for (j = 0; j < nsyms; ++j)
5993 ++counts[hashcodes[j] % i];
5994
5995 /* For the weight function we need some information about the
5996 pagesize on the target. This is information need not be 100%
5997 accurate. Since this information is not available (so far) we
5998 define it here to a reasonable default value. If it is crucial
5999 to have a better value some day simply define this value. */
6000# ifndef BFD_TARGET_PAGESIZE
6001# define BFD_TARGET_PAGESIZE (4096)
6002# endif
6003
fdc90cb4
JJ
6004 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
6005 and the chains. */
6006 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5a580b3a
AM
6007
6008# if 1
6009 /* Variant 1: optimize for short chains. We add the squares
6010 of all the chain lengths (which favors many small chain
6011 over a few long chains). */
6012 for (j = 0; j < i; ++j)
6013 max += counts[j] * counts[j];
6014
6015 /* This adds penalties for the overall size of the table. */
fdc90cb4 6016 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
6017 max *= fact * fact;
6018# else
6019 /* Variant 2: Optimize a lot more for small table. Here we
6020 also add squares of the size but we also add penalties for
6021 empty slots (the +1 term). */
6022 for (j = 0; j < i; ++j)
6023 max += (1 + counts[j]) * (1 + counts[j]);
6024
6025 /* The overall size of the table is considered, but not as
6026 strong as in variant 1, where it is squared. */
fdc90cb4 6027 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
6028 max *= fact;
6029# endif
6030
6031 /* Compare with current best results. */
6032 if (max < best_chlen)
6033 {
6034 best_chlen = max;
6035 best_size = i;
ca4be51c 6036 no_improvement_count = 0;
5a580b3a 6037 }
0883b6e0
NC
6038 /* PR 11843: Avoid futile long searches for the best bucket size
6039 when there are a large number of symbols. */
6040 else if (++no_improvement_count == 100)
6041 break;
5a580b3a
AM
6042 }
6043
6044 free (counts);
6045 }
6046 else
6047#endif /* defined (BFD_HOST_U_64_BIT) */
6048 {
6049 /* This is the fallback solution if no 64bit type is available or if we
6050 are not supposed to spend much time on optimizations. We select the
6051 bucket count using a fixed set of numbers. */
6052 for (i = 0; elf_buckets[i] != 0; i++)
6053 {
6054 best_size = elf_buckets[i];
fdc90cb4 6055 if (nsyms < elf_buckets[i + 1])
5a580b3a
AM
6056 break;
6057 }
fdc90cb4
JJ
6058 if (gnu_hash && best_size < 2)
6059 best_size = 2;
5a580b3a
AM
6060 }
6061
5a580b3a
AM
6062 return best_size;
6063}
6064
d0bf826b
AM
6065/* Size any SHT_GROUP section for ld -r. */
6066
6067bfd_boolean
6068_bfd_elf_size_group_sections (struct bfd_link_info *info)
6069{
6070 bfd *ibfd;
57963c05 6071 asection *s;
d0bf826b 6072
c72f2fb2 6073 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
d0bf826b 6074 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
57963c05
AM
6075 && (s = ibfd->sections) != NULL
6076 && s->sec_info_type != SEC_INFO_TYPE_JUST_SYMS
d0bf826b
AM
6077 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
6078 return FALSE;
6079 return TRUE;
6080}
6081
04c3a755
NS
6082/* Set a default stack segment size. The value in INFO wins. If it
6083 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
6084 undefined it is initialized. */
6085
6086bfd_boolean
6087bfd_elf_stack_segment_size (bfd *output_bfd,
6088 struct bfd_link_info *info,
6089 const char *legacy_symbol,
6090 bfd_vma default_size)
6091{
6092 struct elf_link_hash_entry *h = NULL;
6093
6094 /* Look for legacy symbol. */
6095 if (legacy_symbol)
6096 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
6097 FALSE, FALSE, FALSE);
6098 if (h && (h->root.type == bfd_link_hash_defined
6099 || h->root.type == bfd_link_hash_defweak)
6100 && h->def_regular
6101 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
6102 {
6103 /* The symbol has no type if specified on the command line. */
6104 h->type = STT_OBJECT;
6105 if (info->stacksize)
695344c0 6106 /* xgettext:c-format */
871b3ab2 6107 _bfd_error_handler (_("%pB: stack size specified and %s set"),
4eca0228 6108 output_bfd, legacy_symbol);
04c3a755 6109 else if (h->root.u.def.section != bfd_abs_section_ptr)
695344c0 6110 /* xgettext:c-format */
871b3ab2 6111 _bfd_error_handler (_("%pB: %s not absolute"),
4eca0228 6112 output_bfd, legacy_symbol);
04c3a755
NS
6113 else
6114 info->stacksize = h->root.u.def.value;
6115 }
6116
6117 if (!info->stacksize)
6118 /* If the user didn't set a size, or explicitly inhibit the
6119 size, set it now. */
6120 info->stacksize = default_size;
6121
6122 /* Provide the legacy symbol, if it is referenced. */
6123 if (h && (h->root.type == bfd_link_hash_undefined
6124 || h->root.type == bfd_link_hash_undefweak))
6125 {
6126 struct bfd_link_hash_entry *bh = NULL;
6127
6128 if (!(_bfd_generic_link_add_one_symbol
6129 (info, output_bfd, legacy_symbol,
6130 BSF_GLOBAL, bfd_abs_section_ptr,
6131 info->stacksize >= 0 ? info->stacksize : 0,
6132 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
6133 return FALSE;
6134
6135 h = (struct elf_link_hash_entry *) bh;
6136 h->def_regular = 1;
6137 h->type = STT_OBJECT;
6138 }
6139
6140 return TRUE;
6141}
6142
b531344c
MR
6143/* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
6144
6145struct elf_gc_sweep_symbol_info
6146{
6147 struct bfd_link_info *info;
6148 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
6149 bfd_boolean);
6150};
6151
6152static bfd_boolean
6153elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
6154{
6155 if (!h->mark
6156 && (((h->root.type == bfd_link_hash_defined
6157 || h->root.type == bfd_link_hash_defweak)
6158 && !((h->def_regular || ELF_COMMON_DEF_P (h))
6159 && h->root.u.def.section->gc_mark))
6160 || h->root.type == bfd_link_hash_undefined
6161 || h->root.type == bfd_link_hash_undefweak))
6162 {
6163 struct elf_gc_sweep_symbol_info *inf;
6164
6165 inf = (struct elf_gc_sweep_symbol_info *) data;
6166 (*inf->hide_symbol) (inf->info, h, TRUE);
6167 h->def_regular = 0;
6168 h->ref_regular = 0;
6169 h->ref_regular_nonweak = 0;
6170 }
6171
6172 return TRUE;
6173}
6174
5a580b3a
AM
6175/* Set up the sizes and contents of the ELF dynamic sections. This is
6176 called by the ELF linker emulation before_allocation routine. We
6177 must set the sizes of the sections before the linker sets the
6178 addresses of the various sections. */
6179
6180bfd_boolean
6181bfd_elf_size_dynamic_sections (bfd *output_bfd,
6182 const char *soname,
6183 const char *rpath,
6184 const char *filter_shlib,
7ee314fa
AM
6185 const char *audit,
6186 const char *depaudit,
5a580b3a
AM
6187 const char * const *auxiliary_filters,
6188 struct bfd_link_info *info,
fd91d419 6189 asection **sinterpptr)
5a580b3a 6190{
5a580b3a
AM
6191 bfd *dynobj;
6192 const struct elf_backend_data *bed;
5a580b3a
AM
6193
6194 *sinterpptr = NULL;
6195
5a580b3a
AM
6196 if (!is_elf_hash_table (info->hash))
6197 return TRUE;
6198
5a580b3a
AM
6199 dynobj = elf_hash_table (info)->dynobj;
6200
9a2a56cc 6201 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a 6202 {
902e9fc7
MR
6203 struct bfd_elf_version_tree *verdefs;
6204 struct elf_info_failed asvinfo;
5a580b3a
AM
6205 struct bfd_elf_version_tree *t;
6206 struct bfd_elf_version_expr *d;
902e9fc7 6207 asection *s;
e6699019 6208 size_t soname_indx;
7ee314fa 6209
5a580b3a
AM
6210 /* If we are supposed to export all symbols into the dynamic symbol
6211 table (this is not the normal case), then do so. */
55255dae 6212 if (info->export_dynamic
0e1862bb 6213 || (bfd_link_executable (info) && info->dynamic))
5a580b3a 6214 {
3d13f3e9
AM
6215 struct elf_info_failed eif;
6216
6217 eif.info = info;
6218 eif.failed = FALSE;
5a580b3a
AM
6219 elf_link_hash_traverse (elf_hash_table (info),
6220 _bfd_elf_export_symbol,
6221 &eif);
6222 if (eif.failed)
6223 return FALSE;
6224 }
6225
e6699019
L
6226 if (soname != NULL)
6227 {
6228 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6229 soname, TRUE);
6230 if (soname_indx == (size_t) -1
6231 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
6232 return FALSE;
6233 }
6234 else
6235 soname_indx = (size_t) -1;
6236
5a580b3a 6237 /* Make all global versions with definition. */
fd91d419 6238 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 6239 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 6240 if (!d->symver && d->literal)
5a580b3a
AM
6241 {
6242 const char *verstr, *name;
6243 size_t namelen, verlen, newlen;
93252b1c 6244 char *newname, *p, leading_char;
5a580b3a
AM
6245 struct elf_link_hash_entry *newh;
6246
93252b1c 6247 leading_char = bfd_get_symbol_leading_char (output_bfd);
ae5a3597 6248 name = d->pattern;
93252b1c 6249 namelen = strlen (name) + (leading_char != '\0');
5a580b3a
AM
6250 verstr = t->name;
6251 verlen = strlen (verstr);
6252 newlen = namelen + verlen + 3;
6253
a50b1753 6254 newname = (char *) bfd_malloc (newlen);
5a580b3a
AM
6255 if (newname == NULL)
6256 return FALSE;
93252b1c
MF
6257 newname[0] = leading_char;
6258 memcpy (newname + (leading_char != '\0'), name, namelen);
5a580b3a
AM
6259
6260 /* Check the hidden versioned definition. */
6261 p = newname + namelen;
6262 *p++ = ELF_VER_CHR;
6263 memcpy (p, verstr, verlen + 1);
6264 newh = elf_link_hash_lookup (elf_hash_table (info),
6265 newname, FALSE, FALSE,
6266 FALSE);
6267 if (newh == NULL
6268 || (newh->root.type != bfd_link_hash_defined
6269 && newh->root.type != bfd_link_hash_defweak))
6270 {
6271 /* Check the default versioned definition. */
6272 *p++ = ELF_VER_CHR;
6273 memcpy (p, verstr, verlen + 1);
6274 newh = elf_link_hash_lookup (elf_hash_table (info),
6275 newname, FALSE, FALSE,
6276 FALSE);
6277 }
6278 free (newname);
6279
6280 /* Mark this version if there is a definition and it is
6281 not defined in a shared object. */
6282 if (newh != NULL
f5385ebf 6283 && !newh->def_dynamic
5a580b3a
AM
6284 && (newh->root.type == bfd_link_hash_defined
6285 || newh->root.type == bfd_link_hash_defweak))
6286 d->symver = 1;
6287 }
6288
6289 /* Attach all the symbols to their version information. */
5a580b3a 6290 asvinfo.info = info;
5a580b3a
AM
6291 asvinfo.failed = FALSE;
6292
6293 elf_link_hash_traverse (elf_hash_table (info),
6294 _bfd_elf_link_assign_sym_version,
6295 &asvinfo);
6296 if (asvinfo.failed)
6297 return FALSE;
6298
6299 if (!info->allow_undefined_version)
6300 {
6301 /* Check if all global versions have a definition. */
3d13f3e9 6302 bfd_boolean all_defined = TRUE;
fd91d419 6303 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 6304 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 6305 if (d->literal && !d->symver && !d->script)
5a580b3a 6306 {
4eca0228 6307 _bfd_error_handler
5a580b3a
AM
6308 (_("%s: undefined version: %s"),
6309 d->pattern, t->name);
6310 all_defined = FALSE;
6311 }
6312
6313 if (!all_defined)
6314 {
6315 bfd_set_error (bfd_error_bad_value);
6316 return FALSE;
6317 }
6318 }
6319
902e9fc7
MR
6320 /* Set up the version definition section. */
6321 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
6322 BFD_ASSERT (s != NULL);
5a580b3a 6323
902e9fc7
MR
6324 /* We may have created additional version definitions if we are
6325 just linking a regular application. */
6326 verdefs = info->version_info;
5a580b3a 6327
902e9fc7
MR
6328 /* Skip anonymous version tag. */
6329 if (verdefs != NULL && verdefs->vernum == 0)
6330 verdefs = verdefs->next;
5a580b3a 6331
902e9fc7
MR
6332 if (verdefs == NULL && !info->create_default_symver)
6333 s->flags |= SEC_EXCLUDE;
6334 else
5a580b3a 6335 {
902e9fc7
MR
6336 unsigned int cdefs;
6337 bfd_size_type size;
6338 bfd_byte *p;
6339 Elf_Internal_Verdef def;
6340 Elf_Internal_Verdaux defaux;
6341 struct bfd_link_hash_entry *bh;
6342 struct elf_link_hash_entry *h;
6343 const char *name;
5a580b3a 6344
902e9fc7
MR
6345 cdefs = 0;
6346 size = 0;
5a580b3a 6347
902e9fc7
MR
6348 /* Make space for the base version. */
6349 size += sizeof (Elf_External_Verdef);
6350 size += sizeof (Elf_External_Verdaux);
6351 ++cdefs;
6352
6353 /* Make space for the default version. */
6354 if (info->create_default_symver)
6355 {
6356 size += sizeof (Elf_External_Verdef);
6357 ++cdefs;
3e3b46e5
PB
6358 }
6359
5a580b3a
AM
6360 for (t = verdefs; t != NULL; t = t->next)
6361 {
6362 struct bfd_elf_version_deps *n;
6363
a6cc6b3b
RO
6364 /* Don't emit base version twice. */
6365 if (t->vernum == 0)
6366 continue;
6367
5a580b3a
AM
6368 size += sizeof (Elf_External_Verdef);
6369 size += sizeof (Elf_External_Verdaux);
6370 ++cdefs;
6371
6372 for (n = t->deps; n != NULL; n = n->next)
6373 size += sizeof (Elf_External_Verdaux);
6374 }
6375
eea6121a 6376 s->size = size;
a50b1753 6377 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
eea6121a 6378 if (s->contents == NULL && s->size != 0)
5a580b3a
AM
6379 return FALSE;
6380
6381 /* Fill in the version definition section. */
6382
6383 p = s->contents;
6384
6385 def.vd_version = VER_DEF_CURRENT;
6386 def.vd_flags = VER_FLG_BASE;
6387 def.vd_ndx = 1;
6388 def.vd_cnt = 1;
3e3b46e5
PB
6389 if (info->create_default_symver)
6390 {
6391 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6392 def.vd_next = sizeof (Elf_External_Verdef);
6393 }
6394 else
6395 {
6396 def.vd_aux = sizeof (Elf_External_Verdef);
6397 def.vd_next = (sizeof (Elf_External_Verdef)
6398 + sizeof (Elf_External_Verdaux));
6399 }
5a580b3a 6400
ef53be89 6401 if (soname_indx != (size_t) -1)
5a580b3a
AM
6402 {
6403 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6404 soname_indx);
6405 def.vd_hash = bfd_elf_hash (soname);
6406 defaux.vda_name = soname_indx;
3e3b46e5 6407 name = soname;
5a580b3a
AM
6408 }
6409 else
6410 {
ef53be89 6411 size_t indx;
5a580b3a 6412
06084812 6413 name = lbasename (output_bfd->filename);
5a580b3a
AM
6414 def.vd_hash = bfd_elf_hash (name);
6415 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6416 name, FALSE);
ef53be89 6417 if (indx == (size_t) -1)
5a580b3a
AM
6418 return FALSE;
6419 defaux.vda_name = indx;
6420 }
6421 defaux.vda_next = 0;
6422
6423 _bfd_elf_swap_verdef_out (output_bfd, &def,
6424 (Elf_External_Verdef *) p);
6425 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
6426 if (info->create_default_symver)
6427 {
6428 /* Add a symbol representing this version. */
6429 bh = NULL;
6430 if (! (_bfd_generic_link_add_one_symbol
6431 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6432 0, NULL, FALSE,
6433 get_elf_backend_data (dynobj)->collect, &bh)))
6434 return FALSE;
6435 h = (struct elf_link_hash_entry *) bh;
6436 h->non_elf = 0;
6437 h->def_regular = 1;
6438 h->type = STT_OBJECT;
6439 h->verinfo.vertree = NULL;
6440
6441 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6442 return FALSE;
6443
6444 /* Create a duplicate of the base version with the same
6445 aux block, but different flags. */
6446 def.vd_flags = 0;
6447 def.vd_ndx = 2;
6448 def.vd_aux = sizeof (Elf_External_Verdef);
6449 if (verdefs)
6450 def.vd_next = (sizeof (Elf_External_Verdef)
6451 + sizeof (Elf_External_Verdaux));
6452 else
6453 def.vd_next = 0;
6454 _bfd_elf_swap_verdef_out (output_bfd, &def,
6455 (Elf_External_Verdef *) p);
6456 p += sizeof (Elf_External_Verdef);
6457 }
5a580b3a
AM
6458 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6459 (Elf_External_Verdaux *) p);
6460 p += sizeof (Elf_External_Verdaux);
6461
6462 for (t = verdefs; t != NULL; t = t->next)
6463 {
6464 unsigned int cdeps;
6465 struct bfd_elf_version_deps *n;
5a580b3a 6466
a6cc6b3b
RO
6467 /* Don't emit the base version twice. */
6468 if (t->vernum == 0)
6469 continue;
6470
5a580b3a
AM
6471 cdeps = 0;
6472 for (n = t->deps; n != NULL; n = n->next)
6473 ++cdeps;
6474
6475 /* Add a symbol representing this version. */
6476 bh = NULL;
6477 if (! (_bfd_generic_link_add_one_symbol
6478 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6479 0, NULL, FALSE,
6480 get_elf_backend_data (dynobj)->collect, &bh)))
6481 return FALSE;
6482 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6483 h->non_elf = 0;
6484 h->def_regular = 1;
5a580b3a
AM
6485 h->type = STT_OBJECT;
6486 h->verinfo.vertree = t;
6487
c152c796 6488 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5a580b3a
AM
6489 return FALSE;
6490
6491 def.vd_version = VER_DEF_CURRENT;
6492 def.vd_flags = 0;
6493 if (t->globals.list == NULL
6494 && t->locals.list == NULL
6495 && ! t->used)
6496 def.vd_flags |= VER_FLG_WEAK;
3e3b46e5 6497 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
5a580b3a
AM
6498 def.vd_cnt = cdeps + 1;
6499 def.vd_hash = bfd_elf_hash (t->name);
6500 def.vd_aux = sizeof (Elf_External_Verdef);
6501 def.vd_next = 0;
a6cc6b3b
RO
6502
6503 /* If a basever node is next, it *must* be the last node in
6504 the chain, otherwise Verdef construction breaks. */
6505 if (t->next != NULL && t->next->vernum == 0)
6506 BFD_ASSERT (t->next->next == NULL);
6507
6508 if (t->next != NULL && t->next->vernum != 0)
5a580b3a
AM
6509 def.vd_next = (sizeof (Elf_External_Verdef)
6510 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6511
6512 _bfd_elf_swap_verdef_out (output_bfd, &def,
6513 (Elf_External_Verdef *) p);
6514 p += sizeof (Elf_External_Verdef);
6515
6516 defaux.vda_name = h->dynstr_index;
6517 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6518 h->dynstr_index);
6519 defaux.vda_next = 0;
6520 if (t->deps != NULL)
6521 defaux.vda_next = sizeof (Elf_External_Verdaux);
6522 t->name_indx = defaux.vda_name;
6523
6524 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6525 (Elf_External_Verdaux *) p);
6526 p += sizeof (Elf_External_Verdaux);
6527
6528 for (n = t->deps; n != NULL; n = n->next)
6529 {
6530 if (n->version_needed == NULL)
6531 {
6532 /* This can happen if there was an error in the
6533 version script. */
6534 defaux.vda_name = 0;
6535 }
6536 else
6537 {
6538 defaux.vda_name = n->version_needed->name_indx;
6539 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6540 defaux.vda_name);
6541 }
6542 if (n->next == NULL)
6543 defaux.vda_next = 0;
6544 else
6545 defaux.vda_next = sizeof (Elf_External_Verdaux);
6546
6547 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6548 (Elf_External_Verdaux *) p);
6549 p += sizeof (Elf_External_Verdaux);
6550 }
6551 }
6552
5a580b3a
AM
6553 elf_tdata (output_bfd)->cverdefs = cdefs;
6554 }
902e9fc7
MR
6555 }
6556
6557 bed = get_elf_backend_data (output_bfd);
6558
6559 if (info->gc_sections && bed->can_gc_sections)
6560 {
6561 struct elf_gc_sweep_symbol_info sweep_info;
902e9fc7
MR
6562
6563 /* Remove the symbols that were in the swept sections from the
3d13f3e9 6564 dynamic symbol table. */
902e9fc7
MR
6565 sweep_info.info = info;
6566 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
6567 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
6568 &sweep_info);
3d13f3e9
AM
6569 }
6570
6571 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6572 {
6573 asection *s;
6574 struct elf_find_verdep_info sinfo;
6575
6576 /* Work out the size of the version reference section. */
6577
6578 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
6579 BFD_ASSERT (s != NULL);
902e9fc7 6580
3d13f3e9
AM
6581 sinfo.info = info;
6582 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6583 if (sinfo.vers == 0)
6584 sinfo.vers = 1;
6585 sinfo.failed = FALSE;
6586
6587 elf_link_hash_traverse (elf_hash_table (info),
6588 _bfd_elf_link_find_version_dependencies,
6589 &sinfo);
6590 if (sinfo.failed)
6591 return FALSE;
6592
6593 if (elf_tdata (output_bfd)->verref == NULL)
6594 s->flags |= SEC_EXCLUDE;
6595 else
6596 {
6597 Elf_Internal_Verneed *vn;
6598 unsigned int size;
6599 unsigned int crefs;
6600 bfd_byte *p;
6601
6602 /* Build the version dependency section. */
6603 size = 0;
6604 crefs = 0;
6605 for (vn = elf_tdata (output_bfd)->verref;
6606 vn != NULL;
6607 vn = vn->vn_nextref)
6608 {
6609 Elf_Internal_Vernaux *a;
6610
6611 size += sizeof (Elf_External_Verneed);
6612 ++crefs;
6613 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6614 size += sizeof (Elf_External_Vernaux);
6615 }
6616
6617 s->size = size;
6618 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6619 if (s->contents == NULL)
6620 return FALSE;
6621
6622 p = s->contents;
6623 for (vn = elf_tdata (output_bfd)->verref;
6624 vn != NULL;
6625 vn = vn->vn_nextref)
6626 {
6627 unsigned int caux;
6628 Elf_Internal_Vernaux *a;
6629 size_t indx;
6630
6631 caux = 0;
6632 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6633 ++caux;
6634
6635 vn->vn_version = VER_NEED_CURRENT;
6636 vn->vn_cnt = caux;
6637 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6638 elf_dt_name (vn->vn_bfd) != NULL
6639 ? elf_dt_name (vn->vn_bfd)
6640 : lbasename (vn->vn_bfd->filename),
6641 FALSE);
6642 if (indx == (size_t) -1)
6643 return FALSE;
6644 vn->vn_file = indx;
6645 vn->vn_aux = sizeof (Elf_External_Verneed);
6646 if (vn->vn_nextref == NULL)
6647 vn->vn_next = 0;
6648 else
6649 vn->vn_next = (sizeof (Elf_External_Verneed)
6650 + caux * sizeof (Elf_External_Vernaux));
6651
6652 _bfd_elf_swap_verneed_out (output_bfd, vn,
6653 (Elf_External_Verneed *) p);
6654 p += sizeof (Elf_External_Verneed);
6655
6656 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6657 {
6658 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6659 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6660 a->vna_nodename, FALSE);
6661 if (indx == (size_t) -1)
6662 return FALSE;
6663 a->vna_name = indx;
6664 if (a->vna_nextptr == NULL)
6665 a->vna_next = 0;
6666 else
6667 a->vna_next = sizeof (Elf_External_Vernaux);
6668
6669 _bfd_elf_swap_vernaux_out (output_bfd, a,
6670 (Elf_External_Vernaux *) p);
6671 p += sizeof (Elf_External_Vernaux);
6672 }
6673 }
6674
6675 elf_tdata (output_bfd)->cverrefs = crefs;
6676 }
902e9fc7
MR
6677 }
6678
6679 /* Any syms created from now on start with -1 in
6680 got.refcount/offset and plt.refcount/offset. */
6681 elf_hash_table (info)->init_got_refcount
6682 = elf_hash_table (info)->init_got_offset;
6683 elf_hash_table (info)->init_plt_refcount
6684 = elf_hash_table (info)->init_plt_offset;
6685
6686 if (bfd_link_relocatable (info)
6687 && !_bfd_elf_size_group_sections (info))
6688 return FALSE;
6689
6690 /* The backend may have to create some sections regardless of whether
6691 we're dynamic or not. */
6692 if (bed->elf_backend_always_size_sections
6693 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
6694 return FALSE;
6695
6696 /* Determine any GNU_STACK segment requirements, after the backend
6697 has had a chance to set a default segment size. */
6698 if (info->execstack)
6699 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
6700 else if (info->noexecstack)
6701 elf_stack_flags (output_bfd) = PF_R | PF_W;
6702 else
6703 {
6704 bfd *inputobj;
6705 asection *notesec = NULL;
6706 int exec = 0;
6707
6708 for (inputobj = info->input_bfds;
6709 inputobj;
6710 inputobj = inputobj->link.next)
6711 {
6712 asection *s;
6713
6714 if (inputobj->flags
6715 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
6716 continue;
57963c05
AM
6717 s = inputobj->sections;
6718 if (s == NULL || s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
6719 continue;
6720
902e9fc7
MR
6721 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
6722 if (s)
6723 {
6724 if (s->flags & SEC_CODE)
6725 exec = PF_X;
6726 notesec = s;
6727 }
6728 else if (bed->default_execstack)
6729 exec = PF_X;
6730 }
6731 if (notesec || info->stacksize > 0)
6732 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
6733 if (notesec && exec && bfd_link_relocatable (info)
6734 && notesec->output_section != bfd_abs_section_ptr)
6735 notesec->output_section->flags |= SEC_CODE;
6736 }
6737
6738 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6739 {
6740 struct elf_info_failed eif;
6741 struct elf_link_hash_entry *h;
6742 asection *dynstr;
6743 asection *s;
6744
6745 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
6746 BFD_ASSERT (*sinterpptr != NULL || !bfd_link_executable (info) || info->nointerp);
6747
902e9fc7
MR
6748 if (info->symbolic)
6749 {
6750 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
6751 return FALSE;
6752 info->flags |= DF_SYMBOLIC;
6753 }
6754
6755 if (rpath != NULL)
6756 {
6757 size_t indx;
6758 bfd_vma tag;
6759
6760 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
6761 TRUE);
6762 if (indx == (size_t) -1)
6763 return FALSE;
6764
6765 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
6766 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
6767 return FALSE;
6768 }
6769
6770 if (filter_shlib != NULL)
6771 {
6772 size_t indx;
6773
6774 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6775 filter_shlib, TRUE);
6776 if (indx == (size_t) -1
6777 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
6778 return FALSE;
6779 }
6780
6781 if (auxiliary_filters != NULL)
6782 {
6783 const char * const *p;
6784
6785 for (p = auxiliary_filters; *p != NULL; p++)
6786 {
6787 size_t indx;
6788
6789 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6790 *p, TRUE);
6791 if (indx == (size_t) -1
6792 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
6793 return FALSE;
6794 }
6795 }
6796
6797 if (audit != NULL)
6798 {
6799 size_t indx;
6800
6801 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
6802 TRUE);
6803 if (indx == (size_t) -1
6804 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
6805 return FALSE;
6806 }
6807
6808 if (depaudit != NULL)
6809 {
6810 size_t indx;
6811
6812 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
6813 TRUE);
6814 if (indx == (size_t) -1
6815 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
6816 return FALSE;
6817 }
6818
6819 eif.info = info;
6820 eif.failed = FALSE;
6821
6822 /* Find all symbols which were defined in a dynamic object and make
6823 the backend pick a reasonable value for them. */
6824 elf_link_hash_traverse (elf_hash_table (info),
6825 _bfd_elf_adjust_dynamic_symbol,
6826 &eif);
6827 if (eif.failed)
6828 return FALSE;
6829
6830 /* Add some entries to the .dynamic section. We fill in some of the
6831 values later, in bfd_elf_final_link, but we must add the entries
6832 now so that we know the final size of the .dynamic section. */
6833
6834 /* If there are initialization and/or finalization functions to
6835 call then add the corresponding DT_INIT/DT_FINI entries. */
6836 h = (info->init_function
6837 ? elf_link_hash_lookup (elf_hash_table (info),
6838 info->init_function, FALSE,
6839 FALSE, FALSE)
6840 : NULL);
6841 if (h != NULL
6842 && (h->ref_regular
6843 || h->def_regular))
6844 {
6845 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
6846 return FALSE;
6847 }
6848 h = (info->fini_function
6849 ? elf_link_hash_lookup (elf_hash_table (info),
6850 info->fini_function, FALSE,
6851 FALSE, FALSE)
6852 : NULL);
6853 if (h != NULL
6854 && (h->ref_regular
6855 || h->def_regular))
6856 {
6857 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
6858 return FALSE;
6859 }
6860
6861 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
6862 if (s != NULL && s->linker_has_input)
6863 {
6864 /* DT_PREINIT_ARRAY is not allowed in shared library. */
6865 if (! bfd_link_executable (info))
6866 {
6867 bfd *sub;
6868 asection *o;
6869
57963c05
AM
6870 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
6871 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
6872 && (o = sub->sections) != NULL
6873 && o->sec_info_type != SEC_INFO_TYPE_JUST_SYMS)
902e9fc7
MR
6874 for (o = sub->sections; o != NULL; o = o->next)
6875 if (elf_section_data (o)->this_hdr.sh_type
6876 == SHT_PREINIT_ARRAY)
6877 {
6878 _bfd_error_handler
871b3ab2 6879 (_("%pB: .preinit_array section is not allowed in DSO"),
902e9fc7
MR
6880 sub);
6881 break;
6882 }
6883
6884 bfd_set_error (bfd_error_nonrepresentable_section);
6885 return FALSE;
6886 }
6887
6888 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
6889 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
6890 return FALSE;
6891 }
6892 s = bfd_get_section_by_name (output_bfd, ".init_array");
6893 if (s != NULL && s->linker_has_input)
6894 {
6895 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
6896 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
6897 return FALSE;
6898 }
6899 s = bfd_get_section_by_name (output_bfd, ".fini_array");
6900 if (s != NULL && s->linker_has_input)
6901 {
6902 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
6903 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
6904 return FALSE;
6905 }
6906
6907 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
6908 /* If .dynstr is excluded from the link, we don't want any of
6909 these tags. Strictly, we should be checking each section
6910 individually; This quick check covers for the case where
6911 someone does a /DISCARD/ : { *(*) }. */
6912 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
6913 {
6914 bfd_size_type strsize;
6915
6916 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
6917 if ((info->emit_hash
6918 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
6919 || (info->emit_gnu_hash
6920 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
6921 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
6922 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
6923 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
6924 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
6925 bed->s->sizeof_sym))
6926 return FALSE;
6927 }
6928 }
6929
6930 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
6931 return FALSE;
6932
6933 /* The backend must work out the sizes of all the other dynamic
6934 sections. */
6935 if (dynobj != NULL
6936 && bed->elf_backend_size_dynamic_sections != NULL
6937 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
6938 return FALSE;
6939
6940 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6941 {
902e9fc7
MR
6942 if (elf_tdata (output_bfd)->cverdefs)
6943 {
6944 unsigned int crefs = elf_tdata (output_bfd)->cverdefs;
6945
6946 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6947 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, crefs))
6948 return FALSE;
6949 }
6950
6951 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6952 {
6953 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6954 return FALSE;
6955 }
6956 else if (info->flags & DF_BIND_NOW)
6957 {
6958 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6959 return FALSE;
6960 }
6961
6962 if (info->flags_1)
6963 {
6964 if (bfd_link_executable (info))
6965 info->flags_1 &= ~ (DF_1_INITFIRST
6966 | DF_1_NODELETE
6967 | DF_1_NOOPEN);
6968 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6969 return FALSE;
6970 }
6971
6972 if (elf_tdata (output_bfd)->cverrefs)
6973 {
6974 unsigned int crefs = elf_tdata (output_bfd)->cverrefs;
6975
6976 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6977 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6978 return FALSE;
6979 }
5a580b3a 6980
8423293d
AM
6981 if ((elf_tdata (output_bfd)->cverrefs == 0
6982 && elf_tdata (output_bfd)->cverdefs == 0)
63f452a8 6983 || _bfd_elf_link_renumber_dynsyms (output_bfd, info, NULL) <= 1)
8423293d 6984 {
902e9fc7
MR
6985 asection *s;
6986
3d4d4302 6987 s = bfd_get_linker_section (dynobj, ".gnu.version");
8423293d
AM
6988 s->flags |= SEC_EXCLUDE;
6989 }
6990 }
6991 return TRUE;
6992}
6993
74541ad4
AM
6994/* Find the first non-excluded output section. We'll use its
6995 section symbol for some emitted relocs. */
6996void
6997_bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6998{
6999 asection *s;
7000
7001 for (s = output_bfd->sections; s != NULL; s = s->next)
7002 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
d00dd7dc 7003 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
74541ad4
AM
7004 {
7005 elf_hash_table (info)->text_index_section = s;
7006 break;
7007 }
7008}
7009
7010/* Find two non-excluded output sections, one for code, one for data.
7011 We'll use their section symbols for some emitted relocs. */
7012void
7013_bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
7014{
7015 asection *s;
7016
266b05cf
DJ
7017 /* Data first, since setting text_index_section changes
7018 _bfd_elf_link_omit_section_dynsym. */
74541ad4 7019 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf 7020 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
d00dd7dc 7021 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
74541ad4 7022 {
266b05cf 7023 elf_hash_table (info)->data_index_section = s;
74541ad4
AM
7024 break;
7025 }
7026
7027 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf
DJ
7028 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
7029 == (SEC_ALLOC | SEC_READONLY))
d00dd7dc 7030 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
74541ad4 7031 {
266b05cf 7032 elf_hash_table (info)->text_index_section = s;
74541ad4
AM
7033 break;
7034 }
7035
7036 if (elf_hash_table (info)->text_index_section == NULL)
7037 elf_hash_table (info)->text_index_section
7038 = elf_hash_table (info)->data_index_section;
7039}
7040
8423293d
AM
7041bfd_boolean
7042bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
7043{
74541ad4 7044 const struct elf_backend_data *bed;
23ec1e32 7045 unsigned long section_sym_count;
96d01d93 7046 bfd_size_type dynsymcount = 0;
74541ad4 7047
8423293d
AM
7048 if (!is_elf_hash_table (info->hash))
7049 return TRUE;
7050
74541ad4
AM
7051 bed = get_elf_backend_data (output_bfd);
7052 (*bed->elf_backend_init_index_section) (output_bfd, info);
7053
23ec1e32
MR
7054 /* Assign dynsym indices. In a shared library we generate a section
7055 symbol for each output section, which come first. Next come all
7056 of the back-end allocated local dynamic syms, followed by the rest
7057 of the global symbols.
7058
7059 This is usually not needed for static binaries, however backends
7060 can request to always do it, e.g. the MIPS backend uses dynamic
7061 symbol counts to lay out GOT, which will be produced in the
7062 presence of GOT relocations even in static binaries (holding fixed
7063 data in that case, to satisfy those relocations). */
7064
7065 if (elf_hash_table (info)->dynamic_sections_created
7066 || bed->always_renumber_dynsyms)
7067 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
7068 &section_sym_count);
7069
8423293d
AM
7070 if (elf_hash_table (info)->dynamic_sections_created)
7071 {
7072 bfd *dynobj;
8423293d 7073 asection *s;
8423293d
AM
7074 unsigned int dtagcount;
7075
7076 dynobj = elf_hash_table (info)->dynobj;
7077
5a580b3a 7078 /* Work out the size of the symbol version section. */
3d4d4302 7079 s = bfd_get_linker_section (dynobj, ".gnu.version");
5a580b3a 7080 BFD_ASSERT (s != NULL);
d5486c43 7081 if ((s->flags & SEC_EXCLUDE) == 0)
5a580b3a 7082 {
eea6121a 7083 s->size = dynsymcount * sizeof (Elf_External_Versym);
a50b1753 7084 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
5a580b3a
AM
7085 if (s->contents == NULL)
7086 return FALSE;
7087
7088 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
7089 return FALSE;
7090 }
7091
7092 /* Set the size of the .dynsym and .hash sections. We counted
7093 the number of dynamic symbols in elf_link_add_object_symbols.
7094 We will build the contents of .dynsym and .hash when we build
7095 the final symbol table, because until then we do not know the
7096 correct value to give the symbols. We built the .dynstr
7097 section as we went along in elf_link_add_object_symbols. */
cae1fbbb 7098 s = elf_hash_table (info)->dynsym;
5a580b3a 7099 BFD_ASSERT (s != NULL);
eea6121a 7100 s->size = dynsymcount * bed->s->sizeof_sym;
5a580b3a 7101
d5486c43
L
7102 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
7103 if (s->contents == NULL)
7104 return FALSE;
5a580b3a 7105
d5486c43
L
7106 /* The first entry in .dynsym is a dummy symbol. Clear all the
7107 section syms, in case we don't output them all. */
7108 ++section_sym_count;
7109 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
5a580b3a 7110
fdc90cb4
JJ
7111 elf_hash_table (info)->bucketcount = 0;
7112
5a580b3a
AM
7113 /* Compute the size of the hashing table. As a side effect this
7114 computes the hash values for all the names we export. */
fdc90cb4
JJ
7115 if (info->emit_hash)
7116 {
7117 unsigned long int *hashcodes;
14b1c01e 7118 struct hash_codes_info hashinf;
fdc90cb4
JJ
7119 bfd_size_type amt;
7120 unsigned long int nsyms;
7121 size_t bucketcount;
7122 size_t hash_entry_size;
7123
7124 /* Compute the hash values for all exported symbols. At the same
7125 time store the values in an array so that we could use them for
7126 optimizations. */
7127 amt = dynsymcount * sizeof (unsigned long int);
a50b1753 7128 hashcodes = (unsigned long int *) bfd_malloc (amt);
fdc90cb4
JJ
7129 if (hashcodes == NULL)
7130 return FALSE;
14b1c01e
AM
7131 hashinf.hashcodes = hashcodes;
7132 hashinf.error = FALSE;
5a580b3a 7133
fdc90cb4
JJ
7134 /* Put all hash values in HASHCODES. */
7135 elf_link_hash_traverse (elf_hash_table (info),
14b1c01e
AM
7136 elf_collect_hash_codes, &hashinf);
7137 if (hashinf.error)
4dd07732
AM
7138 {
7139 free (hashcodes);
7140 return FALSE;
7141 }
5a580b3a 7142
14b1c01e 7143 nsyms = hashinf.hashcodes - hashcodes;
fdc90cb4
JJ
7144 bucketcount
7145 = compute_bucket_count (info, hashcodes, nsyms, 0);
7146 free (hashcodes);
7147
4b48e2f6 7148 if (bucketcount == 0 && nsyms > 0)
fdc90cb4 7149 return FALSE;
5a580b3a 7150
fdc90cb4
JJ
7151 elf_hash_table (info)->bucketcount = bucketcount;
7152
3d4d4302 7153 s = bfd_get_linker_section (dynobj, ".hash");
fdc90cb4
JJ
7154 BFD_ASSERT (s != NULL);
7155 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
7156 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
a50b1753 7157 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
7158 if (s->contents == NULL)
7159 return FALSE;
7160
7161 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
7162 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
7163 s->contents + hash_entry_size);
7164 }
7165
7166 if (info->emit_gnu_hash)
7167 {
7168 size_t i, cnt;
7169 unsigned char *contents;
7170 struct collect_gnu_hash_codes cinfo;
7171 bfd_size_type amt;
7172 size_t bucketcount;
7173
7174 memset (&cinfo, 0, sizeof (cinfo));
7175
7176 /* Compute the hash values for all exported symbols. At the same
7177 time store the values in an array so that we could use them for
7178 optimizations. */
7179 amt = dynsymcount * 2 * sizeof (unsigned long int);
a50b1753 7180 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
fdc90cb4
JJ
7181 if (cinfo.hashcodes == NULL)
7182 return FALSE;
7183
7184 cinfo.hashval = cinfo.hashcodes + dynsymcount;
7185 cinfo.min_dynindx = -1;
7186 cinfo.output_bfd = output_bfd;
7187 cinfo.bed = bed;
7188
7189 /* Put all hash values in HASHCODES. */
7190 elf_link_hash_traverse (elf_hash_table (info),
7191 elf_collect_gnu_hash_codes, &cinfo);
14b1c01e 7192 if (cinfo.error)
4dd07732
AM
7193 {
7194 free (cinfo.hashcodes);
7195 return FALSE;
7196 }
fdc90cb4
JJ
7197
7198 bucketcount
7199 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
7200
7201 if (bucketcount == 0)
7202 {
7203 free (cinfo.hashcodes);
7204 return FALSE;
7205 }
7206
3d4d4302 7207 s = bfd_get_linker_section (dynobj, ".gnu.hash");
fdc90cb4
JJ
7208 BFD_ASSERT (s != NULL);
7209
7210 if (cinfo.nsyms == 0)
7211 {
7212 /* Empty .gnu.hash section is special. */
7213 BFD_ASSERT (cinfo.min_dynindx == -1);
7214 free (cinfo.hashcodes);
7215 s->size = 5 * 4 + bed->s->arch_size / 8;
a50b1753 7216 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
7217 if (contents == NULL)
7218 return FALSE;
7219 s->contents = contents;
7220 /* 1 empty bucket. */
7221 bfd_put_32 (output_bfd, 1, contents);
7222 /* SYMIDX above the special symbol 0. */
7223 bfd_put_32 (output_bfd, 1, contents + 4);
7224 /* Just one word for bitmask. */
7225 bfd_put_32 (output_bfd, 1, contents + 8);
7226 /* Only hash fn bloom filter. */
7227 bfd_put_32 (output_bfd, 0, contents + 12);
7228 /* No hashes are valid - empty bitmask. */
7229 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
7230 /* No hashes in the only bucket. */
7231 bfd_put_32 (output_bfd, 0,
7232 contents + 16 + bed->s->arch_size / 8);
7233 }
7234 else
7235 {
9e6619e2 7236 unsigned long int maskwords, maskbitslog2, x;
0b33793d 7237 BFD_ASSERT (cinfo.min_dynindx != -1);
fdc90cb4 7238
9e6619e2
AM
7239 x = cinfo.nsyms;
7240 maskbitslog2 = 1;
7241 while ((x >>= 1) != 0)
7242 ++maskbitslog2;
fdc90cb4
JJ
7243 if (maskbitslog2 < 3)
7244 maskbitslog2 = 5;
7245 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
7246 maskbitslog2 = maskbitslog2 + 3;
7247 else
7248 maskbitslog2 = maskbitslog2 + 2;
7249 if (bed->s->arch_size == 64)
7250 {
7251 if (maskbitslog2 == 5)
7252 maskbitslog2 = 6;
7253 cinfo.shift1 = 6;
7254 }
7255 else
7256 cinfo.shift1 = 5;
7257 cinfo.mask = (1 << cinfo.shift1) - 1;
2ccdbfcc 7258 cinfo.shift2 = maskbitslog2;
fdc90cb4
JJ
7259 cinfo.maskbits = 1 << maskbitslog2;
7260 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
7261 amt = bucketcount * sizeof (unsigned long int) * 2;
7262 amt += maskwords * sizeof (bfd_vma);
a50b1753 7263 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
fdc90cb4
JJ
7264 if (cinfo.bitmask == NULL)
7265 {
7266 free (cinfo.hashcodes);
7267 return FALSE;
7268 }
7269
a50b1753 7270 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
fdc90cb4
JJ
7271 cinfo.indx = cinfo.counts + bucketcount;
7272 cinfo.symindx = dynsymcount - cinfo.nsyms;
7273 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
7274
7275 /* Determine how often each hash bucket is used. */
7276 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
7277 for (i = 0; i < cinfo.nsyms; ++i)
7278 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
7279
7280 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
7281 if (cinfo.counts[i] != 0)
7282 {
7283 cinfo.indx[i] = cnt;
7284 cnt += cinfo.counts[i];
7285 }
7286 BFD_ASSERT (cnt == dynsymcount);
7287 cinfo.bucketcount = bucketcount;
7288 cinfo.local_indx = cinfo.min_dynindx;
7289
7290 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
7291 s->size += cinfo.maskbits / 8;
a50b1753 7292 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
7293 if (contents == NULL)
7294 {
7295 free (cinfo.bitmask);
7296 free (cinfo.hashcodes);
7297 return FALSE;
7298 }
7299
7300 s->contents = contents;
7301 bfd_put_32 (output_bfd, bucketcount, contents);
7302 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
7303 bfd_put_32 (output_bfd, maskwords, contents + 8);
7304 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
7305 contents += 16 + cinfo.maskbits / 8;
7306
7307 for (i = 0; i < bucketcount; ++i)
7308 {
7309 if (cinfo.counts[i] == 0)
7310 bfd_put_32 (output_bfd, 0, contents);
7311 else
7312 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
7313 contents += 4;
7314 }
7315
7316 cinfo.contents = contents;
7317
7318 /* Renumber dynamic symbols, populate .gnu.hash section. */
7319 elf_link_hash_traverse (elf_hash_table (info),
7320 elf_renumber_gnu_hash_syms, &cinfo);
7321
7322 contents = s->contents + 16;
7323 for (i = 0; i < maskwords; ++i)
7324 {
7325 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
7326 contents);
7327 contents += bed->s->arch_size / 8;
7328 }
7329
7330 free (cinfo.bitmask);
7331 free (cinfo.hashcodes);
7332 }
7333 }
5a580b3a 7334
3d4d4302 7335 s = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
7336 BFD_ASSERT (s != NULL);
7337
4ad4eba5 7338 elf_finalize_dynstr (output_bfd, info);
5a580b3a 7339
eea6121a 7340 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5a580b3a
AM
7341
7342 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
7343 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
7344 return FALSE;
7345 }
7346
7347 return TRUE;
7348}
4d269e42 7349\f
4d269e42
AM
7350/* Make sure sec_info_type is cleared if sec_info is cleared too. */
7351
7352static void
7353merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
7354 asection *sec)
7355{
dbaa2011
AM
7356 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
7357 sec->sec_info_type = SEC_INFO_TYPE_NONE;
4d269e42
AM
7358}
7359
7360/* Finish SHF_MERGE section merging. */
7361
7362bfd_boolean
630993ec 7363_bfd_elf_merge_sections (bfd *obfd, struct bfd_link_info *info)
4d269e42
AM
7364{
7365 bfd *ibfd;
7366 asection *sec;
7367
7368 if (!is_elf_hash_table (info->hash))
7369 return FALSE;
7370
c72f2fb2 7371 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
630993ec
AM
7372 if ((ibfd->flags & DYNAMIC) == 0
7373 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
017e6bce
AM
7374 && (elf_elfheader (ibfd)->e_ident[EI_CLASS]
7375 == get_elf_backend_data (obfd)->s->elfclass))
4d269e42
AM
7376 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
7377 if ((sec->flags & SEC_MERGE) != 0
7378 && !bfd_is_abs_section (sec->output_section))
7379 {
7380 struct bfd_elf_section_data *secdata;
7381
7382 secdata = elf_section_data (sec);
630993ec 7383 if (! _bfd_add_merge_section (obfd,
4d269e42
AM
7384 &elf_hash_table (info)->merge_info,
7385 sec, &secdata->sec_info))
7386 return FALSE;
7387 else if (secdata->sec_info)
dbaa2011 7388 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
4d269e42
AM
7389 }
7390
7391 if (elf_hash_table (info)->merge_info != NULL)
630993ec 7392 _bfd_merge_sections (obfd, info, elf_hash_table (info)->merge_info,
4d269e42
AM
7393 merge_sections_remove_hook);
7394 return TRUE;
7395}
7396
7397/* Create an entry in an ELF linker hash table. */
7398
7399struct bfd_hash_entry *
7400_bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
7401 struct bfd_hash_table *table,
7402 const char *string)
7403{
7404 /* Allocate the structure if it has not already been allocated by a
7405 subclass. */
7406 if (entry == NULL)
7407 {
a50b1753 7408 entry = (struct bfd_hash_entry *)
ca4be51c 7409 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
4d269e42
AM
7410 if (entry == NULL)
7411 return entry;
7412 }
7413
7414 /* Call the allocation method of the superclass. */
7415 entry = _bfd_link_hash_newfunc (entry, table, string);
7416 if (entry != NULL)
7417 {
7418 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
7419 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
7420
7421 /* Set local fields. */
7422 ret->indx = -1;
7423 ret->dynindx = -1;
7424 ret->got = htab->init_got_refcount;
7425 ret->plt = htab->init_plt_refcount;
7426 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
7427 - offsetof (struct elf_link_hash_entry, size)));
7428 /* Assume that we have been called by a non-ELF symbol reader.
7429 This flag is then reset by the code which reads an ELF input
7430 file. This ensures that a symbol created by a non-ELF symbol
7431 reader will have the flag set correctly. */
7432 ret->non_elf = 1;
7433 }
7434
7435 return entry;
7436}
7437
7438/* Copy data from an indirect symbol to its direct symbol, hiding the
7439 old indirect symbol. Also used for copying flags to a weakdef. */
7440
7441void
7442_bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
7443 struct elf_link_hash_entry *dir,
7444 struct elf_link_hash_entry *ind)
7445{
7446 struct elf_link_hash_table *htab;
7447
7448 /* Copy down any references that we may have already seen to the
e81830c5 7449 symbol which just became indirect. */
4d269e42 7450
422f1182 7451 if (dir->versioned != versioned_hidden)
e81830c5
AM
7452 dir->ref_dynamic |= ind->ref_dynamic;
7453 dir->ref_regular |= ind->ref_regular;
7454 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
7455 dir->non_got_ref |= ind->non_got_ref;
7456 dir->needs_plt |= ind->needs_plt;
7457 dir->pointer_equality_needed |= ind->pointer_equality_needed;
4d269e42
AM
7458
7459 if (ind->root.type != bfd_link_hash_indirect)
7460 return;
7461
7462 /* Copy over the global and procedure linkage table refcount entries.
7463 These may have been already set up by a check_relocs routine. */
7464 htab = elf_hash_table (info);
7465 if (ind->got.refcount > htab->init_got_refcount.refcount)
7466 {
7467 if (dir->got.refcount < 0)
7468 dir->got.refcount = 0;
7469 dir->got.refcount += ind->got.refcount;
7470 ind->got.refcount = htab->init_got_refcount.refcount;
7471 }
7472
7473 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
7474 {
7475 if (dir->plt.refcount < 0)
7476 dir->plt.refcount = 0;
7477 dir->plt.refcount += ind->plt.refcount;
7478 ind->plt.refcount = htab->init_plt_refcount.refcount;
7479 }
7480
7481 if (ind->dynindx != -1)
7482 {
7483 if (dir->dynindx != -1)
7484 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
7485 dir->dynindx = ind->dynindx;
7486 dir->dynstr_index = ind->dynstr_index;
7487 ind->dynindx = -1;
7488 ind->dynstr_index = 0;
7489 }
7490}
7491
7492void
7493_bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
7494 struct elf_link_hash_entry *h,
7495 bfd_boolean force_local)
7496{
3aa14d16
L
7497 /* STT_GNU_IFUNC symbol must go through PLT. */
7498 if (h->type != STT_GNU_IFUNC)
7499 {
7500 h->plt = elf_hash_table (info)->init_plt_offset;
7501 h->needs_plt = 0;
7502 }
4d269e42
AM
7503 if (force_local)
7504 {
7505 h->forced_local = 1;
7506 if (h->dynindx != -1)
7507 {
4d269e42
AM
7508 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
7509 h->dynstr_index);
641338d8
AM
7510 h->dynindx = -1;
7511 h->dynstr_index = 0;
4d269e42
AM
7512 }
7513 }
7514}
7515
34a87bb0
L
7516/* Hide a symbol. */
7517
7518void
7519_bfd_elf_link_hide_symbol (bfd *output_bfd,
7520 struct bfd_link_info *info,
7521 struct bfd_link_hash_entry *h)
7522{
7523 if (is_elf_hash_table (info->hash))
7524 {
7525 const struct elf_backend_data *bed
7526 = get_elf_backend_data (output_bfd);
7527 struct elf_link_hash_entry *eh
7528 = (struct elf_link_hash_entry *) h;
7529 bed->elf_backend_hide_symbol (info, eh, TRUE);
7530 eh->def_dynamic = 0;
7531 eh->ref_dynamic = 0;
7532 eh->dynamic_def = 0;
7533 }
7534}
7535
7bf52ea2
AM
7536/* Initialize an ELF linker hash table. *TABLE has been zeroed by our
7537 caller. */
4d269e42
AM
7538
7539bfd_boolean
7540_bfd_elf_link_hash_table_init
7541 (struct elf_link_hash_table *table,
7542 bfd *abfd,
7543 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
7544 struct bfd_hash_table *,
7545 const char *),
4dfe6ac6
NC
7546 unsigned int entsize,
7547 enum elf_target_id target_id)
4d269e42
AM
7548{
7549 bfd_boolean ret;
7550 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
7551
4d269e42
AM
7552 table->init_got_refcount.refcount = can_refcount - 1;
7553 table->init_plt_refcount.refcount = can_refcount - 1;
7554 table->init_got_offset.offset = -(bfd_vma) 1;
7555 table->init_plt_offset.offset = -(bfd_vma) 1;
7556 /* The first dynamic symbol is a dummy. */
7557 table->dynsymcount = 1;
7558
7559 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
4dfe6ac6 7560
4d269e42 7561 table->root.type = bfd_link_elf_hash_table;
4dfe6ac6 7562 table->hash_table_id = target_id;
4d269e42
AM
7563
7564 return ret;
7565}
7566
7567/* Create an ELF linker hash table. */
7568
7569struct bfd_link_hash_table *
7570_bfd_elf_link_hash_table_create (bfd *abfd)
7571{
7572 struct elf_link_hash_table *ret;
7573 bfd_size_type amt = sizeof (struct elf_link_hash_table);
7574
7bf52ea2 7575 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
4d269e42
AM
7576 if (ret == NULL)
7577 return NULL;
7578
7579 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
4dfe6ac6
NC
7580 sizeof (struct elf_link_hash_entry),
7581 GENERIC_ELF_DATA))
4d269e42
AM
7582 {
7583 free (ret);
7584 return NULL;
7585 }
d495ab0d 7586 ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
4d269e42
AM
7587
7588 return &ret->root;
7589}
7590
9f7c3e5e
AM
7591/* Destroy an ELF linker hash table. */
7592
7593void
d495ab0d 7594_bfd_elf_link_hash_table_free (bfd *obfd)
9f7c3e5e 7595{
d495ab0d
AM
7596 struct elf_link_hash_table *htab;
7597
7598 htab = (struct elf_link_hash_table *) obfd->link.hash;
9f7c3e5e
AM
7599 if (htab->dynstr != NULL)
7600 _bfd_elf_strtab_free (htab->dynstr);
7601 _bfd_merge_sections_free (htab->merge_info);
d495ab0d 7602 _bfd_generic_link_hash_table_free (obfd);
9f7c3e5e
AM
7603}
7604
4d269e42
AM
7605/* This is a hook for the ELF emulation code in the generic linker to
7606 tell the backend linker what file name to use for the DT_NEEDED
7607 entry for a dynamic object. */
7608
7609void
7610bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
7611{
7612 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7613 && bfd_get_format (abfd) == bfd_object)
7614 elf_dt_name (abfd) = name;
7615}
7616
7617int
7618bfd_elf_get_dyn_lib_class (bfd *abfd)
7619{
7620 int lib_class;
7621 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7622 && bfd_get_format (abfd) == bfd_object)
7623 lib_class = elf_dyn_lib_class (abfd);
7624 else
7625 lib_class = 0;
7626 return lib_class;
7627}
7628
7629void
7630bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
7631{
7632 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7633 && bfd_get_format (abfd) == bfd_object)
7634 elf_dyn_lib_class (abfd) = lib_class;
7635}
7636
7637/* Get the list of DT_NEEDED entries for a link. This is a hook for
7638 the linker ELF emulation code. */
7639
7640struct bfd_link_needed_list *
7641bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
7642 struct bfd_link_info *info)
7643{
7644 if (! is_elf_hash_table (info->hash))
7645 return NULL;
7646 return elf_hash_table (info)->needed;
7647}
7648
7649/* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
7650 hook for the linker ELF emulation code. */
7651
7652struct bfd_link_needed_list *
7653bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
7654 struct bfd_link_info *info)
7655{
7656 if (! is_elf_hash_table (info->hash))
7657 return NULL;
7658 return elf_hash_table (info)->runpath;
7659}
7660
7661/* Get the name actually used for a dynamic object for a link. This
7662 is the SONAME entry if there is one. Otherwise, it is the string
7663 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
7664
7665const char *
7666bfd_elf_get_dt_soname (bfd *abfd)
7667{
7668 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7669 && bfd_get_format (abfd) == bfd_object)
7670 return elf_dt_name (abfd);
7671 return NULL;
7672}
7673
7674/* Get the list of DT_NEEDED entries from a BFD. This is a hook for
7675 the ELF linker emulation code. */
7676
7677bfd_boolean
7678bfd_elf_get_bfd_needed_list (bfd *abfd,
7679 struct bfd_link_needed_list **pneeded)
7680{
7681 asection *s;
7682 bfd_byte *dynbuf = NULL;
cb33740c 7683 unsigned int elfsec;
4d269e42
AM
7684 unsigned long shlink;
7685 bfd_byte *extdyn, *extdynend;
7686 size_t extdynsize;
7687 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
7688
7689 *pneeded = NULL;
7690
7691 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
7692 || bfd_get_format (abfd) != bfd_object)
7693 return TRUE;
7694
7695 s = bfd_get_section_by_name (abfd, ".dynamic");
7696 if (s == NULL || s->size == 0)
7697 return TRUE;
7698
7699 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
7700 goto error_return;
7701
7702 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 7703 if (elfsec == SHN_BAD)
4d269e42
AM
7704 goto error_return;
7705
7706 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
c152c796 7707
4d269e42
AM
7708 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7709 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7710
7711 extdyn = dynbuf;
7712 extdynend = extdyn + s->size;
7713 for (; extdyn < extdynend; extdyn += extdynsize)
7714 {
7715 Elf_Internal_Dyn dyn;
7716
7717 (*swap_dyn_in) (abfd, extdyn, &dyn);
7718
7719 if (dyn.d_tag == DT_NULL)
7720 break;
7721
7722 if (dyn.d_tag == DT_NEEDED)
7723 {
7724 const char *string;
7725 struct bfd_link_needed_list *l;
7726 unsigned int tagv = dyn.d_un.d_val;
7727 bfd_size_type amt;
7728
7729 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7730 if (string == NULL)
7731 goto error_return;
7732
7733 amt = sizeof *l;
a50b1753 7734 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4d269e42
AM
7735 if (l == NULL)
7736 goto error_return;
7737
7738 l->by = abfd;
7739 l->name = string;
7740 l->next = *pneeded;
7741 *pneeded = l;
7742 }
7743 }
7744
7745 free (dynbuf);
7746
7747 return TRUE;
7748
7749 error_return:
7750 if (dynbuf != NULL)
7751 free (dynbuf);
7752 return FALSE;
7753}
7754
7755struct elf_symbuf_symbol
7756{
7757 unsigned long st_name; /* Symbol name, index in string tbl */
7758 unsigned char st_info; /* Type and binding attributes */
7759 unsigned char st_other; /* Visibilty, and target specific */
7760};
7761
7762struct elf_symbuf_head
7763{
7764 struct elf_symbuf_symbol *ssym;
ef53be89 7765 size_t count;
4d269e42
AM
7766 unsigned int st_shndx;
7767};
7768
7769struct elf_symbol
7770{
7771 union
7772 {
7773 Elf_Internal_Sym *isym;
7774 struct elf_symbuf_symbol *ssym;
7775 } u;
7776 const char *name;
7777};
7778
7779/* Sort references to symbols by ascending section number. */
7780
7781static int
7782elf_sort_elf_symbol (const void *arg1, const void *arg2)
7783{
7784 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7785 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7786
7787 return s1->st_shndx - s2->st_shndx;
7788}
7789
7790static int
7791elf_sym_name_compare (const void *arg1, const void *arg2)
7792{
7793 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7794 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7795 return strcmp (s1->name, s2->name);
7796}
7797
7798static struct elf_symbuf_head *
ef53be89 7799elf_create_symbuf (size_t symcount, Elf_Internal_Sym *isymbuf)
4d269e42 7800{
14b1c01e 7801 Elf_Internal_Sym **ind, **indbufend, **indbuf;
4d269e42
AM
7802 struct elf_symbuf_symbol *ssym;
7803 struct elf_symbuf_head *ssymbuf, *ssymhead;
ef53be89 7804 size_t i, shndx_count, total_size;
4d269e42 7805
a50b1753 7806 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
4d269e42
AM
7807 if (indbuf == NULL)
7808 return NULL;
7809
7810 for (ind = indbuf, i = 0; i < symcount; i++)
7811 if (isymbuf[i].st_shndx != SHN_UNDEF)
7812 *ind++ = &isymbuf[i];
7813 indbufend = ind;
7814
7815 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7816 elf_sort_elf_symbol);
7817
7818 shndx_count = 0;
7819 if (indbufend > indbuf)
7820 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7821 if (ind[0]->st_shndx != ind[1]->st_shndx)
7822 shndx_count++;
7823
3ae181ee
L
7824 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7825 + (indbufend - indbuf) * sizeof (*ssym));
a50b1753 7826 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
4d269e42
AM
7827 if (ssymbuf == NULL)
7828 {
7829 free (indbuf);
7830 return NULL;
7831 }
7832
3ae181ee 7833 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
4d269e42
AM
7834 ssymbuf->ssym = NULL;
7835 ssymbuf->count = shndx_count;
7836 ssymbuf->st_shndx = 0;
7837 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7838 {
7839 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7840 {
7841 ssymhead++;
7842 ssymhead->ssym = ssym;
7843 ssymhead->count = 0;
7844 ssymhead->st_shndx = (*ind)->st_shndx;
7845 }
7846 ssym->st_name = (*ind)->st_name;
7847 ssym->st_info = (*ind)->st_info;
7848 ssym->st_other = (*ind)->st_other;
7849 ssymhead->count++;
7850 }
ef53be89 7851 BFD_ASSERT ((size_t) (ssymhead - ssymbuf) == shndx_count
3ae181ee
L
7852 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7853 == total_size));
4d269e42
AM
7854
7855 free (indbuf);
7856 return ssymbuf;
7857}
7858
7859/* Check if 2 sections define the same set of local and global
7860 symbols. */
7861
8f317e31 7862static bfd_boolean
4d269e42
AM
7863bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7864 struct bfd_link_info *info)
7865{
7866 bfd *bfd1, *bfd2;
7867 const struct elf_backend_data *bed1, *bed2;
7868 Elf_Internal_Shdr *hdr1, *hdr2;
ef53be89 7869 size_t symcount1, symcount2;
4d269e42
AM
7870 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7871 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7872 Elf_Internal_Sym *isym, *isymend;
7873 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
ef53be89 7874 size_t count1, count2, i;
cb33740c 7875 unsigned int shndx1, shndx2;
4d269e42
AM
7876 bfd_boolean result;
7877
7878 bfd1 = sec1->owner;
7879 bfd2 = sec2->owner;
7880
4d269e42
AM
7881 /* Both sections have to be in ELF. */
7882 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7883 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7884 return FALSE;
7885
7886 if (elf_section_type (sec1) != elf_section_type (sec2))
7887 return FALSE;
7888
4d269e42
AM
7889 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7890 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
cb33740c 7891 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
4d269e42
AM
7892 return FALSE;
7893
7894 bed1 = get_elf_backend_data (bfd1);
7895 bed2 = get_elf_backend_data (bfd2);
7896 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7897 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7898 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7899 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7900
7901 if (symcount1 == 0 || symcount2 == 0)
7902 return FALSE;
7903
7904 result = FALSE;
7905 isymbuf1 = NULL;
7906 isymbuf2 = NULL;
a50b1753
NC
7907 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7908 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
4d269e42
AM
7909
7910 if (ssymbuf1 == NULL)
7911 {
7912 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7913 NULL, NULL, NULL);
7914 if (isymbuf1 == NULL)
7915 goto done;
7916
7917 if (!info->reduce_memory_overheads)
7918 elf_tdata (bfd1)->symbuf = ssymbuf1
7919 = elf_create_symbuf (symcount1, isymbuf1);
7920 }
7921
7922 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7923 {
7924 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7925 NULL, NULL, NULL);
7926 if (isymbuf2 == NULL)
7927 goto done;
7928
7929 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7930 elf_tdata (bfd2)->symbuf = ssymbuf2
7931 = elf_create_symbuf (symcount2, isymbuf2);
7932 }
7933
7934 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7935 {
7936 /* Optimized faster version. */
ef53be89 7937 size_t lo, hi, mid;
4d269e42
AM
7938 struct elf_symbol *symp;
7939 struct elf_symbuf_symbol *ssym, *ssymend;
7940
7941 lo = 0;
7942 hi = ssymbuf1->count;
7943 ssymbuf1++;
7944 count1 = 0;
7945 while (lo < hi)
7946 {
7947 mid = (lo + hi) / 2;
cb33740c 7948 if (shndx1 < ssymbuf1[mid].st_shndx)
4d269e42 7949 hi = mid;
cb33740c 7950 else if (shndx1 > ssymbuf1[mid].st_shndx)
4d269e42
AM
7951 lo = mid + 1;
7952 else
7953 {
7954 count1 = ssymbuf1[mid].count;
7955 ssymbuf1 += mid;
7956 break;
7957 }
7958 }
7959
7960 lo = 0;
7961 hi = ssymbuf2->count;
7962 ssymbuf2++;
7963 count2 = 0;
7964 while (lo < hi)
7965 {
7966 mid = (lo + hi) / 2;
cb33740c 7967 if (shndx2 < ssymbuf2[mid].st_shndx)
4d269e42 7968 hi = mid;
cb33740c 7969 else if (shndx2 > ssymbuf2[mid].st_shndx)
4d269e42
AM
7970 lo = mid + 1;
7971 else
7972 {
7973 count2 = ssymbuf2[mid].count;
7974 ssymbuf2 += mid;
7975 break;
7976 }
7977 }
7978
7979 if (count1 == 0 || count2 == 0 || count1 != count2)
7980 goto done;
7981
ca4be51c
AM
7982 symtable1
7983 = (struct elf_symbol *) bfd_malloc (count1 * sizeof (*symtable1));
7984 symtable2
7985 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
4d269e42
AM
7986 if (symtable1 == NULL || symtable2 == NULL)
7987 goto done;
7988
7989 symp = symtable1;
7990 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7991 ssym < ssymend; ssym++, symp++)
7992 {
7993 symp->u.ssym = ssym;
7994 symp->name = bfd_elf_string_from_elf_section (bfd1,
7995 hdr1->sh_link,
7996 ssym->st_name);
7997 }
7998
7999 symp = symtable2;
8000 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
8001 ssym < ssymend; ssym++, symp++)
8002 {
8003 symp->u.ssym = ssym;
8004 symp->name = bfd_elf_string_from_elf_section (bfd2,
8005 hdr2->sh_link,
8006 ssym->st_name);
8007 }
8008
8009 /* Sort symbol by name. */
8010 qsort (symtable1, count1, sizeof (struct elf_symbol),
8011 elf_sym_name_compare);
8012 qsort (symtable2, count1, sizeof (struct elf_symbol),
8013 elf_sym_name_compare);
8014
8015 for (i = 0; i < count1; i++)
8016 /* Two symbols must have the same binding, type and name. */
8017 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
8018 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
8019 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8020 goto done;
8021
8022 result = TRUE;
8023 goto done;
8024 }
8025
a50b1753
NC
8026 symtable1 = (struct elf_symbol *)
8027 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
8028 symtable2 = (struct elf_symbol *)
8029 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
4d269e42
AM
8030 if (symtable1 == NULL || symtable2 == NULL)
8031 goto done;
8032
8033 /* Count definitions in the section. */
8034 count1 = 0;
8035 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
cb33740c 8036 if (isym->st_shndx == shndx1)
4d269e42
AM
8037 symtable1[count1++].u.isym = isym;
8038
8039 count2 = 0;
8040 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
cb33740c 8041 if (isym->st_shndx == shndx2)
4d269e42
AM
8042 symtable2[count2++].u.isym = isym;
8043
8044 if (count1 == 0 || count2 == 0 || count1 != count2)
8045 goto done;
8046
8047 for (i = 0; i < count1; i++)
8048 symtable1[i].name
8049 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
8050 symtable1[i].u.isym->st_name);
8051
8052 for (i = 0; i < count2; i++)
8053 symtable2[i].name
8054 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
8055 symtable2[i].u.isym->st_name);
8056
8057 /* Sort symbol by name. */
8058 qsort (symtable1, count1, sizeof (struct elf_symbol),
8059 elf_sym_name_compare);
8060 qsort (symtable2, count1, sizeof (struct elf_symbol),
8061 elf_sym_name_compare);
8062
8063 for (i = 0; i < count1; i++)
8064 /* Two symbols must have the same binding, type and name. */
8065 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
8066 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
8067 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8068 goto done;
8069
8070 result = TRUE;
8071
8072done:
8073 if (symtable1)
8074 free (symtable1);
8075 if (symtable2)
8076 free (symtable2);
8077 if (isymbuf1)
8078 free (isymbuf1);
8079 if (isymbuf2)
8080 free (isymbuf2);
8081
8082 return result;
8083}
8084
8085/* Return TRUE if 2 section types are compatible. */
8086
8087bfd_boolean
8088_bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
8089 bfd *bbfd, const asection *bsec)
8090{
8091 if (asec == NULL
8092 || bsec == NULL
8093 || abfd->xvec->flavour != bfd_target_elf_flavour
8094 || bbfd->xvec->flavour != bfd_target_elf_flavour)
8095 return TRUE;
8096
8097 return elf_section_type (asec) == elf_section_type (bsec);
8098}
8099\f
c152c796
AM
8100/* Final phase of ELF linker. */
8101
8102/* A structure we use to avoid passing large numbers of arguments. */
8103
8104struct elf_final_link_info
8105{
8106 /* General link information. */
8107 struct bfd_link_info *info;
8108 /* Output BFD. */
8109 bfd *output_bfd;
8110 /* Symbol string table. */
ef10c3ac 8111 struct elf_strtab_hash *symstrtab;
c152c796
AM
8112 /* .hash section. */
8113 asection *hash_sec;
8114 /* symbol version section (.gnu.version). */
8115 asection *symver_sec;
8116 /* Buffer large enough to hold contents of any section. */
8117 bfd_byte *contents;
8118 /* Buffer large enough to hold external relocs of any section. */
8119 void *external_relocs;
8120 /* Buffer large enough to hold internal relocs of any section. */
8121 Elf_Internal_Rela *internal_relocs;
8122 /* Buffer large enough to hold external local symbols of any input
8123 BFD. */
8124 bfd_byte *external_syms;
8125 /* And a buffer for symbol section indices. */
8126 Elf_External_Sym_Shndx *locsym_shndx;
8127 /* Buffer large enough to hold internal local symbols of any input
8128 BFD. */
8129 Elf_Internal_Sym *internal_syms;
8130 /* Array large enough to hold a symbol index for each local symbol
8131 of any input BFD. */
8132 long *indices;
8133 /* Array large enough to hold a section pointer for each local
8134 symbol of any input BFD. */
8135 asection **sections;
ef10c3ac 8136 /* Buffer for SHT_SYMTAB_SHNDX section. */
c152c796 8137 Elf_External_Sym_Shndx *symshndxbuf;
ffbc01cc
AM
8138 /* Number of STT_FILE syms seen. */
8139 size_t filesym_count;
c152c796
AM
8140};
8141
8142/* This struct is used to pass information to elf_link_output_extsym. */
8143
8144struct elf_outext_info
8145{
8146 bfd_boolean failed;
8147 bfd_boolean localsyms;
34a79995 8148 bfd_boolean file_sym_done;
8b127cbc 8149 struct elf_final_link_info *flinfo;
c152c796
AM
8150};
8151
d9352518
DB
8152
8153/* Support for evaluating a complex relocation.
8154
8155 Complex relocations are generalized, self-describing relocations. The
8156 implementation of them consists of two parts: complex symbols, and the
a0c8462f 8157 relocations themselves.
d9352518
DB
8158
8159 The relocations are use a reserved elf-wide relocation type code (R_RELC
8160 external / BFD_RELOC_RELC internal) and an encoding of relocation field
8161 information (start bit, end bit, word width, etc) into the addend. This
8162 information is extracted from CGEN-generated operand tables within gas.
8163
8164 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
8165 internal) representing prefix-notation expressions, including but not
8166 limited to those sorts of expressions normally encoded as addends in the
8167 addend field. The symbol mangling format is:
8168
8169 <node> := <literal>
07d6d2b8
AM
8170 | <unary-operator> ':' <node>
8171 | <binary-operator> ':' <node> ':' <node>
d9352518
DB
8172 ;
8173
8174 <literal> := 's' <digits=N> ':' <N character symbol name>
07d6d2b8 8175 | 'S' <digits=N> ':' <N character section name>
d9352518
DB
8176 | '#' <hexdigits>
8177 ;
8178
8179 <binary-operator> := as in C
8180 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
8181
8182static void
a0c8462f
AM
8183set_symbol_value (bfd *bfd_with_globals,
8184 Elf_Internal_Sym *isymbuf,
8185 size_t locsymcount,
8186 size_t symidx,
8187 bfd_vma val)
d9352518 8188{
8977835c
AM
8189 struct elf_link_hash_entry **sym_hashes;
8190 struct elf_link_hash_entry *h;
8191 size_t extsymoff = locsymcount;
d9352518 8192
8977835c 8193 if (symidx < locsymcount)
d9352518 8194 {
8977835c
AM
8195 Elf_Internal_Sym *sym;
8196
8197 sym = isymbuf + symidx;
8198 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
8199 {
8200 /* It is a local symbol: move it to the
8201 "absolute" section and give it a value. */
8202 sym->st_shndx = SHN_ABS;
8203 sym->st_value = val;
8204 return;
8205 }
8206 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
8207 extsymoff = 0;
d9352518 8208 }
8977835c
AM
8209
8210 /* It is a global symbol: set its link type
8211 to "defined" and give it a value. */
8212
8213 sym_hashes = elf_sym_hashes (bfd_with_globals);
8214 h = sym_hashes [symidx - extsymoff];
8215 while (h->root.type == bfd_link_hash_indirect
8216 || h->root.type == bfd_link_hash_warning)
8217 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8218 h->root.type = bfd_link_hash_defined;
8219 h->root.u.def.value = val;
8220 h->root.u.def.section = bfd_abs_section_ptr;
d9352518
DB
8221}
8222
a0c8462f
AM
8223static bfd_boolean
8224resolve_symbol (const char *name,
8225 bfd *input_bfd,
8b127cbc 8226 struct elf_final_link_info *flinfo,
a0c8462f
AM
8227 bfd_vma *result,
8228 Elf_Internal_Sym *isymbuf,
8229 size_t locsymcount)
d9352518 8230{
a0c8462f
AM
8231 Elf_Internal_Sym *sym;
8232 struct bfd_link_hash_entry *global_entry;
8233 const char *candidate = NULL;
8234 Elf_Internal_Shdr *symtab_hdr;
8235 size_t i;
8236
d9352518
DB
8237 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
8238
8239 for (i = 0; i < locsymcount; ++ i)
8240 {
8977835c 8241 sym = isymbuf + i;
d9352518
DB
8242
8243 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
8244 continue;
8245
8246 candidate = bfd_elf_string_from_elf_section (input_bfd,
8247 symtab_hdr->sh_link,
8248 sym->st_name);
8249#ifdef DEBUG
0f02bbd9
AM
8250 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
8251 name, candidate, (unsigned long) sym->st_value);
d9352518
DB
8252#endif
8253 if (candidate && strcmp (candidate, name) == 0)
8254 {
8b127cbc 8255 asection *sec = flinfo->sections [i];
d9352518 8256
0f02bbd9
AM
8257 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
8258 *result += sec->output_offset + sec->output_section->vma;
d9352518 8259#ifdef DEBUG
0f02bbd9
AM
8260 printf ("Found symbol with value %8.8lx\n",
8261 (unsigned long) *result);
d9352518
DB
8262#endif
8263 return TRUE;
8264 }
8265 }
8266
8267 /* Hmm, haven't found it yet. perhaps it is a global. */
8b127cbc 8268 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
a0c8462f 8269 FALSE, FALSE, TRUE);
d9352518
DB
8270 if (!global_entry)
8271 return FALSE;
a0c8462f 8272
d9352518
DB
8273 if (global_entry->type == bfd_link_hash_defined
8274 || global_entry->type == bfd_link_hash_defweak)
8275 {
a0c8462f
AM
8276 *result = (global_entry->u.def.value
8277 + global_entry->u.def.section->output_section->vma
8278 + global_entry->u.def.section->output_offset);
d9352518 8279#ifdef DEBUG
0f02bbd9
AM
8280 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
8281 global_entry->root.string, (unsigned long) *result);
d9352518
DB
8282#endif
8283 return TRUE;
a0c8462f 8284 }
d9352518 8285
d9352518
DB
8286 return FALSE;
8287}
8288
37b01f6a
DG
8289/* Looks up NAME in SECTIONS. If found sets RESULT to NAME's address (in
8290 bytes) and returns TRUE, otherwise returns FALSE. Accepts pseudo-section
8291 names like "foo.end" which is the end address of section "foo". */
07d6d2b8 8292
d9352518 8293static bfd_boolean
a0c8462f
AM
8294resolve_section (const char *name,
8295 asection *sections,
37b01f6a
DG
8296 bfd_vma *result,
8297 bfd * abfd)
d9352518 8298{
a0c8462f
AM
8299 asection *curr;
8300 unsigned int len;
d9352518 8301
a0c8462f 8302 for (curr = sections; curr; curr = curr->next)
d9352518
DB
8303 if (strcmp (curr->name, name) == 0)
8304 {
8305 *result = curr->vma;
8306 return TRUE;
8307 }
8308
8309 /* Hmm. still haven't found it. try pseudo-section names. */
37b01f6a 8310 /* FIXME: This could be coded more efficiently... */
a0c8462f 8311 for (curr = sections; curr; curr = curr->next)
d9352518
DB
8312 {
8313 len = strlen (curr->name);
a0c8462f 8314 if (len > strlen (name))
d9352518
DB
8315 continue;
8316
8317 if (strncmp (curr->name, name, len) == 0)
8318 {
8319 if (strncmp (".end", name + len, 4) == 0)
8320 {
37b01f6a 8321 *result = curr->vma + curr->size / bfd_octets_per_byte (abfd);
d9352518
DB
8322 return TRUE;
8323 }
8324
8325 /* Insert more pseudo-section names here, if you like. */
8326 }
8327 }
a0c8462f 8328
d9352518
DB
8329 return FALSE;
8330}
8331
8332static void
a0c8462f 8333undefined_reference (const char *reftype, const char *name)
d9352518 8334{
695344c0 8335 /* xgettext:c-format */
a0c8462f
AM
8336 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
8337 reftype, name);
d9352518
DB
8338}
8339
8340static bfd_boolean
a0c8462f
AM
8341eval_symbol (bfd_vma *result,
8342 const char **symp,
8343 bfd *input_bfd,
8b127cbc 8344 struct elf_final_link_info *flinfo,
a0c8462f
AM
8345 bfd_vma dot,
8346 Elf_Internal_Sym *isymbuf,
8347 size_t locsymcount,
8348 int signed_p)
d9352518 8349{
4b93929b
NC
8350 size_t len;
8351 size_t symlen;
a0c8462f
AM
8352 bfd_vma a;
8353 bfd_vma b;
4b93929b 8354 char symbuf[4096];
0f02bbd9 8355 const char *sym = *symp;
a0c8462f
AM
8356 const char *symend;
8357 bfd_boolean symbol_is_section = FALSE;
d9352518
DB
8358
8359 len = strlen (sym);
8360 symend = sym + len;
8361
4b93929b 8362 if (len < 1 || len > sizeof (symbuf))
d9352518
DB
8363 {
8364 bfd_set_error (bfd_error_invalid_operation);
8365 return FALSE;
8366 }
a0c8462f 8367
d9352518
DB
8368 switch (* sym)
8369 {
8370 case '.':
0f02bbd9
AM
8371 *result = dot;
8372 *symp = sym + 1;
d9352518
DB
8373 return TRUE;
8374
8375 case '#':
0f02bbd9
AM
8376 ++sym;
8377 *result = strtoul (sym, (char **) symp, 16);
d9352518
DB
8378 return TRUE;
8379
8380 case 'S':
8381 symbol_is_section = TRUE;
1a0670f3 8382 /* Fall through. */
a0c8462f 8383 case 's':
0f02bbd9
AM
8384 ++sym;
8385 symlen = strtol (sym, (char **) symp, 10);
8386 sym = *symp + 1; /* Skip the trailing ':'. */
d9352518 8387
4b93929b 8388 if (symend < sym || symlen + 1 > sizeof (symbuf))
d9352518
DB
8389 {
8390 bfd_set_error (bfd_error_invalid_operation);
8391 return FALSE;
8392 }
8393
8394 memcpy (symbuf, sym, symlen);
a0c8462f 8395 symbuf[symlen] = '\0';
0f02bbd9 8396 *symp = sym + symlen;
a0c8462f
AM
8397
8398 /* Is it always possible, with complex symbols, that gas "mis-guessed"
d9352518
DB
8399 the symbol as a section, or vice-versa. so we're pretty liberal in our
8400 interpretation here; section means "try section first", not "must be a
8401 section", and likewise with symbol. */
8402
a0c8462f 8403 if (symbol_is_section)
d9352518 8404 {
37b01f6a 8405 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result, input_bfd)
8b127cbc 8406 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 8407 isymbuf, locsymcount))
d9352518
DB
8408 {
8409 undefined_reference ("section", symbuf);
8410 return FALSE;
8411 }
a0c8462f
AM
8412 }
8413 else
d9352518 8414 {
8b127cbc 8415 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 8416 isymbuf, locsymcount)
8b127cbc 8417 && !resolve_section (symbuf, flinfo->output_bfd->sections,
37b01f6a 8418 result, input_bfd))
d9352518
DB
8419 {
8420 undefined_reference ("symbol", symbuf);
8421 return FALSE;
8422 }
8423 }
8424
8425 return TRUE;
a0c8462f 8426
d9352518
DB
8427 /* All that remains are operators. */
8428
8429#define UNARY_OP(op) \
8430 if (strncmp (sym, #op, strlen (#op)) == 0) \
8431 { \
8432 sym += strlen (#op); \
a0c8462f
AM
8433 if (*sym == ':') \
8434 ++sym; \
0f02bbd9 8435 *symp = sym; \
8b127cbc 8436 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 8437 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
8438 return FALSE; \
8439 if (signed_p) \
0f02bbd9 8440 *result = op ((bfd_signed_vma) a); \
a0c8462f
AM
8441 else \
8442 *result = op a; \
d9352518
DB
8443 return TRUE; \
8444 }
8445
8446#define BINARY_OP(op) \
8447 if (strncmp (sym, #op, strlen (#op)) == 0) \
8448 { \
8449 sym += strlen (#op); \
a0c8462f
AM
8450 if (*sym == ':') \
8451 ++sym; \
0f02bbd9 8452 *symp = sym; \
8b127cbc 8453 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 8454 isymbuf, locsymcount, signed_p)) \
a0c8462f 8455 return FALSE; \
0f02bbd9 8456 ++*symp; \
8b127cbc 8457 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
0f02bbd9 8458 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
8459 return FALSE; \
8460 if (signed_p) \
0f02bbd9 8461 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
a0c8462f
AM
8462 else \
8463 *result = a op b; \
d9352518
DB
8464 return TRUE; \
8465 }
8466
8467 default:
8468 UNARY_OP (0-);
8469 BINARY_OP (<<);
8470 BINARY_OP (>>);
8471 BINARY_OP (==);
8472 BINARY_OP (!=);
8473 BINARY_OP (<=);
8474 BINARY_OP (>=);
8475 BINARY_OP (&&);
8476 BINARY_OP (||);
8477 UNARY_OP (~);
8478 UNARY_OP (!);
8479 BINARY_OP (*);
8480 BINARY_OP (/);
8481 BINARY_OP (%);
8482 BINARY_OP (^);
8483 BINARY_OP (|);
8484 BINARY_OP (&);
8485 BINARY_OP (+);
8486 BINARY_OP (-);
8487 BINARY_OP (<);
8488 BINARY_OP (>);
8489#undef UNARY_OP
8490#undef BINARY_OP
8491 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
8492 bfd_set_error (bfd_error_invalid_operation);
8493 return FALSE;
8494 }
8495}
8496
d9352518 8497static void
a0c8462f
AM
8498put_value (bfd_vma size,
8499 unsigned long chunksz,
8500 bfd *input_bfd,
8501 bfd_vma x,
8502 bfd_byte *location)
d9352518
DB
8503{
8504 location += (size - chunksz);
8505
41cd1ad1 8506 for (; size; size -= chunksz, location -= chunksz)
d9352518
DB
8507 {
8508 switch (chunksz)
8509 {
d9352518
DB
8510 case 1:
8511 bfd_put_8 (input_bfd, x, location);
41cd1ad1 8512 x >>= 8;
d9352518
DB
8513 break;
8514 case 2:
8515 bfd_put_16 (input_bfd, x, location);
41cd1ad1 8516 x >>= 16;
d9352518
DB
8517 break;
8518 case 4:
8519 bfd_put_32 (input_bfd, x, location);
65164438
NC
8520 /* Computed this way because x >>= 32 is undefined if x is a 32-bit value. */
8521 x >>= 16;
8522 x >>= 16;
d9352518 8523 break;
d9352518 8524#ifdef BFD64
41cd1ad1 8525 case 8:
d9352518 8526 bfd_put_64 (input_bfd, x, location);
41cd1ad1
NC
8527 /* Computed this way because x >>= 64 is undefined if x is a 64-bit value. */
8528 x >>= 32;
8529 x >>= 32;
8530 break;
d9352518 8531#endif
41cd1ad1
NC
8532 default:
8533 abort ();
d9352518
DB
8534 break;
8535 }
8536 }
8537}
8538
a0c8462f
AM
8539static bfd_vma
8540get_value (bfd_vma size,
8541 unsigned long chunksz,
8542 bfd *input_bfd,
8543 bfd_byte *location)
d9352518 8544{
9b239e0e 8545 int shift;
d9352518
DB
8546 bfd_vma x = 0;
8547
9b239e0e
NC
8548 /* Sanity checks. */
8549 BFD_ASSERT (chunksz <= sizeof (x)
8550 && size >= chunksz
8551 && chunksz != 0
8552 && (size % chunksz) == 0
8553 && input_bfd != NULL
8554 && location != NULL);
8555
8556 if (chunksz == sizeof (x))
8557 {
8558 BFD_ASSERT (size == chunksz);
8559
8560 /* Make sure that we do not perform an undefined shift operation.
8561 We know that size == chunksz so there will only be one iteration
8562 of the loop below. */
8563 shift = 0;
8564 }
8565 else
8566 shift = 8 * chunksz;
8567
a0c8462f 8568 for (; size; size -= chunksz, location += chunksz)
d9352518
DB
8569 {
8570 switch (chunksz)
8571 {
d9352518 8572 case 1:
9b239e0e 8573 x = (x << shift) | bfd_get_8 (input_bfd, location);
d9352518
DB
8574 break;
8575 case 2:
9b239e0e 8576 x = (x << shift) | bfd_get_16 (input_bfd, location);
d9352518
DB
8577 break;
8578 case 4:
9b239e0e 8579 x = (x << shift) | bfd_get_32 (input_bfd, location);
d9352518 8580 break;
d9352518 8581#ifdef BFD64
9b239e0e
NC
8582 case 8:
8583 x = (x << shift) | bfd_get_64 (input_bfd, location);
d9352518 8584 break;
9b239e0e
NC
8585#endif
8586 default:
8587 abort ();
d9352518
DB
8588 }
8589 }
8590 return x;
8591}
8592
a0c8462f
AM
8593static void
8594decode_complex_addend (unsigned long *start, /* in bits */
8595 unsigned long *oplen, /* in bits */
8596 unsigned long *len, /* in bits */
8597 unsigned long *wordsz, /* in bytes */
8598 unsigned long *chunksz, /* in bytes */
8599 unsigned long *lsb0_p,
8600 unsigned long *signed_p,
8601 unsigned long *trunc_p,
8602 unsigned long encoded)
d9352518 8603{
07d6d2b8
AM
8604 * start = encoded & 0x3F;
8605 * len = (encoded >> 6) & 0x3F;
d9352518
DB
8606 * oplen = (encoded >> 12) & 0x3F;
8607 * wordsz = (encoded >> 18) & 0xF;
8608 * chunksz = (encoded >> 22) & 0xF;
8609 * lsb0_p = (encoded >> 27) & 1;
8610 * signed_p = (encoded >> 28) & 1;
8611 * trunc_p = (encoded >> 29) & 1;
8612}
8613
cdfeee4f 8614bfd_reloc_status_type
0f02bbd9 8615bfd_elf_perform_complex_relocation (bfd *input_bfd,
cdfeee4f 8616 asection *input_section ATTRIBUTE_UNUSED,
0f02bbd9
AM
8617 bfd_byte *contents,
8618 Elf_Internal_Rela *rel,
8619 bfd_vma relocation)
d9352518 8620{
0f02bbd9
AM
8621 bfd_vma shift, x, mask;
8622 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
cdfeee4f 8623 bfd_reloc_status_type r;
d9352518
DB
8624
8625 /* Perform this reloc, since it is complex.
8626 (this is not to say that it necessarily refers to a complex
8627 symbol; merely that it is a self-describing CGEN based reloc.
8628 i.e. the addend has the complete reloc information (bit start, end,
a0c8462f 8629 word size, etc) encoded within it.). */
d9352518 8630
a0c8462f
AM
8631 decode_complex_addend (&start, &oplen, &len, &wordsz,
8632 &chunksz, &lsb0_p, &signed_p,
8633 &trunc_p, rel->r_addend);
d9352518
DB
8634
8635 mask = (((1L << (len - 1)) - 1) << 1) | 1;
8636
8637 if (lsb0_p)
8638 shift = (start + 1) - len;
8639 else
8640 shift = (8 * wordsz) - (start + len);
8641
37b01f6a
DG
8642 x = get_value (wordsz, chunksz, input_bfd,
8643 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
d9352518
DB
8644
8645#ifdef DEBUG
8646 printf ("Doing complex reloc: "
8647 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
8648 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
8649 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
8650 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
9ccb8af9
AM
8651 oplen, (unsigned long) x, (unsigned long) mask,
8652 (unsigned long) relocation);
d9352518
DB
8653#endif
8654
cdfeee4f 8655 r = bfd_reloc_ok;
d9352518 8656 if (! trunc_p)
cdfeee4f
AM
8657 /* Now do an overflow check. */
8658 r = bfd_check_overflow ((signed_p
8659 ? complain_overflow_signed
8660 : complain_overflow_unsigned),
8661 len, 0, (8 * wordsz),
8662 relocation);
a0c8462f 8663
d9352518
DB
8664 /* Do the deed. */
8665 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
8666
8667#ifdef DEBUG
8668 printf (" relocation: %8.8lx\n"
8669 " shifted mask: %8.8lx\n"
8670 " shifted/masked reloc: %8.8lx\n"
8671 " result: %8.8lx\n",
9ccb8af9
AM
8672 (unsigned long) relocation, (unsigned long) (mask << shift),
8673 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
d9352518 8674#endif
37b01f6a
DG
8675 put_value (wordsz, chunksz, input_bfd, x,
8676 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
cdfeee4f 8677 return r;
d9352518
DB
8678}
8679
0e287786
AM
8680/* Functions to read r_offset from external (target order) reloc
8681 entry. Faster than bfd_getl32 et al, because we let the compiler
8682 know the value is aligned. */
53df40a4 8683
0e287786
AM
8684static bfd_vma
8685ext32l_r_offset (const void *p)
53df40a4
AM
8686{
8687 union aligned32
8688 {
8689 uint32_t v;
8690 unsigned char c[4];
8691 };
8692 const union aligned32 *a
0e287786 8693 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
53df40a4
AM
8694
8695 uint32_t aval = ( (uint32_t) a->c[0]
8696 | (uint32_t) a->c[1] << 8
8697 | (uint32_t) a->c[2] << 16
8698 | (uint32_t) a->c[3] << 24);
0e287786 8699 return aval;
53df40a4
AM
8700}
8701
0e287786
AM
8702static bfd_vma
8703ext32b_r_offset (const void *p)
53df40a4
AM
8704{
8705 union aligned32
8706 {
8707 uint32_t v;
8708 unsigned char c[4];
8709 };
8710 const union aligned32 *a
0e287786 8711 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
53df40a4
AM
8712
8713 uint32_t aval = ( (uint32_t) a->c[0] << 24
8714 | (uint32_t) a->c[1] << 16
8715 | (uint32_t) a->c[2] << 8
8716 | (uint32_t) a->c[3]);
0e287786 8717 return aval;
53df40a4
AM
8718}
8719
8720#ifdef BFD_HOST_64_BIT
0e287786
AM
8721static bfd_vma
8722ext64l_r_offset (const void *p)
53df40a4
AM
8723{
8724 union aligned64
8725 {
8726 uint64_t v;
8727 unsigned char c[8];
8728 };
8729 const union aligned64 *a
0e287786 8730 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
53df40a4
AM
8731
8732 uint64_t aval = ( (uint64_t) a->c[0]
8733 | (uint64_t) a->c[1] << 8
8734 | (uint64_t) a->c[2] << 16
8735 | (uint64_t) a->c[3] << 24
8736 | (uint64_t) a->c[4] << 32
8737 | (uint64_t) a->c[5] << 40
8738 | (uint64_t) a->c[6] << 48
8739 | (uint64_t) a->c[7] << 56);
0e287786 8740 return aval;
53df40a4
AM
8741}
8742
0e287786
AM
8743static bfd_vma
8744ext64b_r_offset (const void *p)
53df40a4
AM
8745{
8746 union aligned64
8747 {
8748 uint64_t v;
8749 unsigned char c[8];
8750 };
8751 const union aligned64 *a
0e287786 8752 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
53df40a4
AM
8753
8754 uint64_t aval = ( (uint64_t) a->c[0] << 56
8755 | (uint64_t) a->c[1] << 48
8756 | (uint64_t) a->c[2] << 40
8757 | (uint64_t) a->c[3] << 32
8758 | (uint64_t) a->c[4] << 24
8759 | (uint64_t) a->c[5] << 16
8760 | (uint64_t) a->c[6] << 8
8761 | (uint64_t) a->c[7]);
0e287786 8762 return aval;
53df40a4
AM
8763}
8764#endif
8765
c152c796
AM
8766/* When performing a relocatable link, the input relocations are
8767 preserved. But, if they reference global symbols, the indices
d4730f92
BS
8768 referenced must be updated. Update all the relocations found in
8769 RELDATA. */
c152c796 8770
bca6d0e3 8771static bfd_boolean
c152c796 8772elf_link_adjust_relocs (bfd *abfd,
9eaff861 8773 asection *sec,
28dbcedc 8774 struct bfd_elf_section_reloc_data *reldata,
10bbbc1d
NC
8775 bfd_boolean sort,
8776 struct bfd_link_info *info)
c152c796
AM
8777{
8778 unsigned int i;
8779 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8780 bfd_byte *erela;
8781 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8782 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8783 bfd_vma r_type_mask;
8784 int r_sym_shift;
d4730f92
BS
8785 unsigned int count = reldata->count;
8786 struct elf_link_hash_entry **rel_hash = reldata->hashes;
c152c796 8787
d4730f92 8788 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
c152c796
AM
8789 {
8790 swap_in = bed->s->swap_reloc_in;
8791 swap_out = bed->s->swap_reloc_out;
8792 }
d4730f92 8793 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
c152c796
AM
8794 {
8795 swap_in = bed->s->swap_reloca_in;
8796 swap_out = bed->s->swap_reloca_out;
8797 }
8798 else
8799 abort ();
8800
8801 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
8802 abort ();
8803
8804 if (bed->s->arch_size == 32)
8805 {
8806 r_type_mask = 0xff;
8807 r_sym_shift = 8;
8808 }
8809 else
8810 {
8811 r_type_mask = 0xffffffff;
8812 r_sym_shift = 32;
8813 }
8814
d4730f92
BS
8815 erela = reldata->hdr->contents;
8816 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
c152c796
AM
8817 {
8818 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8819 unsigned int j;
8820
8821 if (*rel_hash == NULL)
8822 continue;
8823
10bbbc1d
NC
8824 if ((*rel_hash)->indx == -2
8825 && info->gc_sections
8826 && ! info->gc_keep_exported)
8827 {
8828 /* PR 21524: Let the user know if a symbol was removed by garbage collection. */
9793eb77 8829 _bfd_error_handler (_("%pB:%pA: error: relocation references symbol %s which was removed by garbage collection"),
10bbbc1d
NC
8830 abfd, sec,
8831 (*rel_hash)->root.root.string);
9793eb77 8832 _bfd_error_handler (_("%pB:%pA: error: try relinking with --gc-keep-exported enabled"),
d42c267e 8833 abfd, sec);
10bbbc1d
NC
8834 bfd_set_error (bfd_error_invalid_operation);
8835 return FALSE;
8836 }
c152c796
AM
8837 BFD_ASSERT ((*rel_hash)->indx >= 0);
8838
8839 (*swap_in) (abfd, erela, irela);
8840 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8841 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8842 | (irela[j].r_info & r_type_mask));
8843 (*swap_out) (abfd, irela, erela);
8844 }
53df40a4 8845
9eaff861
AO
8846 if (bed->elf_backend_update_relocs)
8847 (*bed->elf_backend_update_relocs) (sec, reldata);
8848
0e287786 8849 if (sort && count != 0)
53df40a4 8850 {
0e287786
AM
8851 bfd_vma (*ext_r_off) (const void *);
8852 bfd_vma r_off;
8853 size_t elt_size;
8854 bfd_byte *base, *end, *p, *loc;
bca6d0e3 8855 bfd_byte *buf = NULL;
28dbcedc
AM
8856
8857 if (bed->s->arch_size == 32)
8858 {
8859 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
0e287786 8860 ext_r_off = ext32l_r_offset;
28dbcedc 8861 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
0e287786 8862 ext_r_off = ext32b_r_offset;
28dbcedc
AM
8863 else
8864 abort ();
8865 }
53df40a4 8866 else
28dbcedc 8867 {
53df40a4 8868#ifdef BFD_HOST_64_BIT
28dbcedc 8869 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
0e287786 8870 ext_r_off = ext64l_r_offset;
28dbcedc 8871 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
0e287786 8872 ext_r_off = ext64b_r_offset;
28dbcedc 8873 else
53df40a4 8874#endif
28dbcedc
AM
8875 abort ();
8876 }
0e287786 8877
bca6d0e3
AM
8878 /* Must use a stable sort here. A modified insertion sort,
8879 since the relocs are mostly sorted already. */
0e287786
AM
8880 elt_size = reldata->hdr->sh_entsize;
8881 base = reldata->hdr->contents;
8882 end = base + count * elt_size;
bca6d0e3 8883 if (elt_size > sizeof (Elf64_External_Rela))
0e287786
AM
8884 abort ();
8885
8886 /* Ensure the first element is lowest. This acts as a sentinel,
8887 speeding the main loop below. */
8888 r_off = (*ext_r_off) (base);
8889 for (p = loc = base; (p += elt_size) < end; )
8890 {
8891 bfd_vma r_off2 = (*ext_r_off) (p);
8892 if (r_off > r_off2)
8893 {
8894 r_off = r_off2;
8895 loc = p;
8896 }
8897 }
8898 if (loc != base)
8899 {
8900 /* Don't just swap *base and *loc as that changes the order
8901 of the original base[0] and base[1] if they happen to
8902 have the same r_offset. */
bca6d0e3
AM
8903 bfd_byte onebuf[sizeof (Elf64_External_Rela)];
8904 memcpy (onebuf, loc, elt_size);
0e287786 8905 memmove (base + elt_size, base, loc - base);
bca6d0e3 8906 memcpy (base, onebuf, elt_size);
0e287786
AM
8907 }
8908
b29b8669 8909 for (p = base + elt_size; (p += elt_size) < end; )
0e287786
AM
8910 {
8911 /* base to p is sorted, *p is next to insert. */
8912 r_off = (*ext_r_off) (p);
8913 /* Search the sorted region for location to insert. */
8914 loc = p - elt_size;
8915 while (r_off < (*ext_r_off) (loc))
8916 loc -= elt_size;
8917 loc += elt_size;
8918 if (loc != p)
8919 {
bca6d0e3
AM
8920 /* Chances are there is a run of relocs to insert here,
8921 from one of more input files. Files are not always
8922 linked in order due to the way elf_link_input_bfd is
8923 called. See pr17666. */
8924 size_t sortlen = p - loc;
8925 bfd_vma r_off2 = (*ext_r_off) (loc);
8926 size_t runlen = elt_size;
8927 size_t buf_size = 96 * 1024;
8928 while (p + runlen < end
8929 && (sortlen <= buf_size
8930 || runlen + elt_size <= buf_size)
8931 && r_off2 > (*ext_r_off) (p + runlen))
8932 runlen += elt_size;
8933 if (buf == NULL)
8934 {
8935 buf = bfd_malloc (buf_size);
8936 if (buf == NULL)
8937 return FALSE;
8938 }
8939 if (runlen < sortlen)
8940 {
8941 memcpy (buf, p, runlen);
8942 memmove (loc + runlen, loc, sortlen);
8943 memcpy (loc, buf, runlen);
8944 }
8945 else
8946 {
8947 memcpy (buf, loc, sortlen);
8948 memmove (loc, p, runlen);
8949 memcpy (loc + runlen, buf, sortlen);
8950 }
b29b8669 8951 p += runlen - elt_size;
0e287786
AM
8952 }
8953 }
8954 /* Hashes are no longer valid. */
28dbcedc
AM
8955 free (reldata->hashes);
8956 reldata->hashes = NULL;
bca6d0e3 8957 free (buf);
53df40a4 8958 }
bca6d0e3 8959 return TRUE;
c152c796
AM
8960}
8961
8962struct elf_link_sort_rela
8963{
8964 union {
8965 bfd_vma offset;
8966 bfd_vma sym_mask;
8967 } u;
8968 enum elf_reloc_type_class type;
8969 /* We use this as an array of size int_rels_per_ext_rel. */
8970 Elf_Internal_Rela rela[1];
8971};
8972
8973static int
8974elf_link_sort_cmp1 (const void *A, const void *B)
8975{
a50b1753
NC
8976 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8977 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796
AM
8978 int relativea, relativeb;
8979
8980 relativea = a->type == reloc_class_relative;
8981 relativeb = b->type == reloc_class_relative;
8982
8983 if (relativea < relativeb)
8984 return 1;
8985 if (relativea > relativeb)
8986 return -1;
8987 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8988 return -1;
8989 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8990 return 1;
8991 if (a->rela->r_offset < b->rela->r_offset)
8992 return -1;
8993 if (a->rela->r_offset > b->rela->r_offset)
8994 return 1;
8995 return 0;
8996}
8997
8998static int
8999elf_link_sort_cmp2 (const void *A, const void *B)
9000{
a50b1753
NC
9001 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
9002 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796 9003
7e612e98 9004 if (a->type < b->type)
c152c796 9005 return -1;
7e612e98 9006 if (a->type > b->type)
c152c796 9007 return 1;
7e612e98 9008 if (a->u.offset < b->u.offset)
c152c796 9009 return -1;
7e612e98 9010 if (a->u.offset > b->u.offset)
c152c796
AM
9011 return 1;
9012 if (a->rela->r_offset < b->rela->r_offset)
9013 return -1;
9014 if (a->rela->r_offset > b->rela->r_offset)
9015 return 1;
9016 return 0;
9017}
9018
9019static size_t
9020elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
9021{
3410fea8 9022 asection *dynamic_relocs;
fc66a176
L
9023 asection *rela_dyn;
9024 asection *rel_dyn;
c152c796
AM
9025 bfd_size_type count, size;
9026 size_t i, ret, sort_elt, ext_size;
9027 bfd_byte *sort, *s_non_relative, *p;
9028 struct elf_link_sort_rela *sq;
9029 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9030 int i2e = bed->s->int_rels_per_ext_rel;
c8e44c6d 9031 unsigned int opb = bfd_octets_per_byte (abfd);
c152c796
AM
9032 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
9033 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
9034 struct bfd_link_order *lo;
9035 bfd_vma r_sym_mask;
3410fea8 9036 bfd_boolean use_rela;
c152c796 9037
3410fea8
NC
9038 /* Find a dynamic reloc section. */
9039 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
9040 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
9041 if (rela_dyn != NULL && rela_dyn->size > 0
9042 && rel_dyn != NULL && rel_dyn->size > 0)
c152c796 9043 {
3410fea8
NC
9044 bfd_boolean use_rela_initialised = FALSE;
9045
9046 /* This is just here to stop gcc from complaining.
c8e44c6d 9047 Its initialization checking code is not perfect. */
3410fea8
NC
9048 use_rela = TRUE;
9049
9050 /* Both sections are present. Examine the sizes
9051 of the indirect sections to help us choose. */
9052 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
9053 if (lo->type == bfd_indirect_link_order)
9054 {
9055 asection *o = lo->u.indirect.section;
9056
9057 if ((o->size % bed->s->sizeof_rela) == 0)
9058 {
9059 if ((o->size % bed->s->sizeof_rel) == 0)
9060 /* Section size is divisible by both rel and rela sizes.
9061 It is of no help to us. */
9062 ;
9063 else
9064 {
9065 /* Section size is only divisible by rela. */
535b785f 9066 if (use_rela_initialised && !use_rela)
3410fea8 9067 {
9793eb77 9068 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9069 "they are in more than one size"),
9070 abfd);
3410fea8
NC
9071 bfd_set_error (bfd_error_invalid_operation);
9072 return 0;
9073 }
9074 else
9075 {
9076 use_rela = TRUE;
9077 use_rela_initialised = TRUE;
9078 }
9079 }
9080 }
9081 else if ((o->size % bed->s->sizeof_rel) == 0)
9082 {
9083 /* Section size is only divisible by rel. */
535b785f 9084 if (use_rela_initialised && use_rela)
3410fea8 9085 {
9793eb77 9086 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9087 "they are in more than one size"),
9088 abfd);
3410fea8
NC
9089 bfd_set_error (bfd_error_invalid_operation);
9090 return 0;
9091 }
9092 else
9093 {
9094 use_rela = FALSE;
9095 use_rela_initialised = TRUE;
9096 }
9097 }
9098 else
9099 {
c8e44c6d
AM
9100 /* The section size is not divisible by either -
9101 something is wrong. */
9793eb77 9102 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d 9103 "they are of an unknown size"), abfd);
3410fea8
NC
9104 bfd_set_error (bfd_error_invalid_operation);
9105 return 0;
9106 }
9107 }
9108
9109 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
9110 if (lo->type == bfd_indirect_link_order)
9111 {
9112 asection *o = lo->u.indirect.section;
9113
9114 if ((o->size % bed->s->sizeof_rela) == 0)
9115 {
9116 if ((o->size % bed->s->sizeof_rel) == 0)
9117 /* Section size is divisible by both rel and rela sizes.
9118 It is of no help to us. */
9119 ;
9120 else
9121 {
9122 /* Section size is only divisible by rela. */
535b785f 9123 if (use_rela_initialised && !use_rela)
3410fea8 9124 {
9793eb77 9125 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9126 "they are in more than one size"),
9127 abfd);
3410fea8
NC
9128 bfd_set_error (bfd_error_invalid_operation);
9129 return 0;
9130 }
9131 else
9132 {
9133 use_rela = TRUE;
9134 use_rela_initialised = TRUE;
9135 }
9136 }
9137 }
9138 else if ((o->size % bed->s->sizeof_rel) == 0)
9139 {
9140 /* Section size is only divisible by rel. */
535b785f 9141 if (use_rela_initialised && use_rela)
3410fea8 9142 {
9793eb77 9143 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9144 "they are in more than one size"),
9145 abfd);
3410fea8
NC
9146 bfd_set_error (bfd_error_invalid_operation);
9147 return 0;
9148 }
9149 else
9150 {
9151 use_rela = FALSE;
9152 use_rela_initialised = TRUE;
9153 }
9154 }
9155 else
9156 {
c8e44c6d
AM
9157 /* The section size is not divisible by either -
9158 something is wrong. */
9793eb77 9159 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d 9160 "they are of an unknown size"), abfd);
3410fea8
NC
9161 bfd_set_error (bfd_error_invalid_operation);
9162 return 0;
9163 }
9164 }
9165
9166 if (! use_rela_initialised)
9167 /* Make a guess. */
9168 use_rela = TRUE;
c152c796 9169 }
fc66a176
L
9170 else if (rela_dyn != NULL && rela_dyn->size > 0)
9171 use_rela = TRUE;
9172 else if (rel_dyn != NULL && rel_dyn->size > 0)
3410fea8 9173 use_rela = FALSE;
c152c796 9174 else
fc66a176 9175 return 0;
3410fea8
NC
9176
9177 if (use_rela)
c152c796 9178 {
3410fea8 9179 dynamic_relocs = rela_dyn;
c152c796
AM
9180 ext_size = bed->s->sizeof_rela;
9181 swap_in = bed->s->swap_reloca_in;
9182 swap_out = bed->s->swap_reloca_out;
9183 }
3410fea8
NC
9184 else
9185 {
9186 dynamic_relocs = rel_dyn;
9187 ext_size = bed->s->sizeof_rel;
9188 swap_in = bed->s->swap_reloc_in;
9189 swap_out = bed->s->swap_reloc_out;
9190 }
c152c796
AM
9191
9192 size = 0;
3410fea8 9193 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796 9194 if (lo->type == bfd_indirect_link_order)
3410fea8 9195 size += lo->u.indirect.section->size;
c152c796 9196
3410fea8 9197 if (size != dynamic_relocs->size)
c152c796
AM
9198 return 0;
9199
9200 sort_elt = (sizeof (struct elf_link_sort_rela)
9201 + (i2e - 1) * sizeof (Elf_Internal_Rela));
3410fea8
NC
9202
9203 count = dynamic_relocs->size / ext_size;
5e486aa1
NC
9204 if (count == 0)
9205 return 0;
a50b1753 9206 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
3410fea8 9207
c152c796
AM
9208 if (sort == NULL)
9209 {
9210 (*info->callbacks->warning)
9793eb77 9211 (info, _("not enough memory to sort relocations"), 0, abfd, 0, 0);
c152c796
AM
9212 return 0;
9213 }
9214
9215 if (bed->s->arch_size == 32)
9216 r_sym_mask = ~(bfd_vma) 0xff;
9217 else
9218 r_sym_mask = ~(bfd_vma) 0xffffffff;
9219
3410fea8 9220 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
9221 if (lo->type == bfd_indirect_link_order)
9222 {
9223 bfd_byte *erel, *erelend;
9224 asection *o = lo->u.indirect.section;
9225
1da212d6
AM
9226 if (o->contents == NULL && o->size != 0)
9227 {
9228 /* This is a reloc section that is being handled as a normal
9229 section. See bfd_section_from_shdr. We can't combine
9230 relocs in this case. */
9231 free (sort);
9232 return 0;
9233 }
c152c796 9234 erel = o->contents;
eea6121a 9235 erelend = o->contents + o->size;
c8e44c6d 9236 p = sort + o->output_offset * opb / ext_size * sort_elt;
3410fea8 9237
c152c796
AM
9238 while (erel < erelend)
9239 {
9240 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3410fea8 9241
c152c796 9242 (*swap_in) (abfd, erel, s->rela);
7e612e98 9243 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
c152c796
AM
9244 s->u.sym_mask = r_sym_mask;
9245 p += sort_elt;
9246 erel += ext_size;
9247 }
9248 }
9249
9250 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
9251
9252 for (i = 0, p = sort; i < count; i++, p += sort_elt)
9253 {
9254 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9255 if (s->type != reloc_class_relative)
9256 break;
9257 }
9258 ret = i;
9259 s_non_relative = p;
9260
9261 sq = (struct elf_link_sort_rela *) s_non_relative;
9262 for (; i < count; i++, p += sort_elt)
9263 {
9264 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
9265 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
9266 sq = sp;
9267 sp->u.offset = sq->rela->r_offset;
9268 }
9269
9270 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
9271
c8e44c6d
AM
9272 struct elf_link_hash_table *htab = elf_hash_table (info);
9273 if (htab->srelplt && htab->srelplt->output_section == dynamic_relocs)
9274 {
9275 /* We have plt relocs in .rela.dyn. */
9276 sq = (struct elf_link_sort_rela *) sort;
9277 for (i = 0; i < count; i++)
9278 if (sq[count - i - 1].type != reloc_class_plt)
9279 break;
9280 if (i != 0 && htab->srelplt->size == i * ext_size)
9281 {
9282 struct bfd_link_order **plo;
9283 /* Put srelplt link_order last. This is so the output_offset
9284 set in the next loop is correct for DT_JMPREL. */
9285 for (plo = &dynamic_relocs->map_head.link_order; *plo != NULL; )
9286 if ((*plo)->type == bfd_indirect_link_order
9287 && (*plo)->u.indirect.section == htab->srelplt)
9288 {
9289 lo = *plo;
9290 *plo = lo->next;
9291 }
9292 else
9293 plo = &(*plo)->next;
9294 *plo = lo;
9295 lo->next = NULL;
9296 dynamic_relocs->map_tail.link_order = lo;
9297 }
9298 }
9299
9300 p = sort;
3410fea8 9301 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
9302 if (lo->type == bfd_indirect_link_order)
9303 {
9304 bfd_byte *erel, *erelend;
9305 asection *o = lo->u.indirect.section;
9306
9307 erel = o->contents;
eea6121a 9308 erelend = o->contents + o->size;
c8e44c6d 9309 o->output_offset = (p - sort) / sort_elt * ext_size / opb;
c152c796
AM
9310 while (erel < erelend)
9311 {
9312 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9313 (*swap_out) (abfd, s->rela, erel);
9314 p += sort_elt;
9315 erel += ext_size;
9316 }
9317 }
9318
9319 free (sort);
3410fea8 9320 *psec = dynamic_relocs;
c152c796
AM
9321 return ret;
9322}
9323
ef10c3ac 9324/* Add a symbol to the output symbol string table. */
c152c796 9325
6e0b88f1 9326static int
ef10c3ac
L
9327elf_link_output_symstrtab (struct elf_final_link_info *flinfo,
9328 const char *name,
9329 Elf_Internal_Sym *elfsym,
9330 asection *input_sec,
9331 struct elf_link_hash_entry *h)
c152c796 9332{
6e0b88f1 9333 int (*output_symbol_hook)
c152c796
AM
9334 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
9335 struct elf_link_hash_entry *);
ef10c3ac 9336 struct elf_link_hash_table *hash_table;
c152c796 9337 const struct elf_backend_data *bed;
ef10c3ac 9338 bfd_size_type strtabsize;
c152c796 9339
8539e4e8
AM
9340 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9341
8b127cbc 9342 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796
AM
9343 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
9344 if (output_symbol_hook != NULL)
9345 {
8b127cbc 9346 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
6e0b88f1
AM
9347 if (ret != 1)
9348 return ret;
c152c796
AM
9349 }
9350
ef10c3ac
L
9351 if (name == NULL
9352 || *name == '\0'
9353 || (input_sec->flags & SEC_EXCLUDE))
9354 elfsym->st_name = (unsigned long) -1;
c152c796
AM
9355 else
9356 {
ef10c3ac
L
9357 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
9358 to get the final offset for st_name. */
9359 elfsym->st_name
9360 = (unsigned long) _bfd_elf_strtab_add (flinfo->symstrtab,
9361 name, FALSE);
c152c796 9362 if (elfsym->st_name == (unsigned long) -1)
6e0b88f1 9363 return 0;
c152c796
AM
9364 }
9365
ef10c3ac
L
9366 hash_table = elf_hash_table (flinfo->info);
9367 strtabsize = hash_table->strtabsize;
9368 if (strtabsize <= hash_table->strtabcount)
c152c796 9369 {
ef10c3ac
L
9370 strtabsize += strtabsize;
9371 hash_table->strtabsize = strtabsize;
9372 strtabsize *= sizeof (*hash_table->strtab);
9373 hash_table->strtab
9374 = (struct elf_sym_strtab *) bfd_realloc (hash_table->strtab,
9375 strtabsize);
9376 if (hash_table->strtab == NULL)
6e0b88f1 9377 return 0;
c152c796 9378 }
ef10c3ac
L
9379 hash_table->strtab[hash_table->strtabcount].sym = *elfsym;
9380 hash_table->strtab[hash_table->strtabcount].dest_index
9381 = hash_table->strtabcount;
9382 hash_table->strtab[hash_table->strtabcount].destshndx_index
9383 = flinfo->symshndxbuf ? bfd_get_symcount (flinfo->output_bfd) : 0;
9384
9385 bfd_get_symcount (flinfo->output_bfd) += 1;
9386 hash_table->strtabcount += 1;
9387
9388 return 1;
9389}
9390
9391/* Swap symbols out to the symbol table and flush the output symbols to
9392 the file. */
9393
9394static bfd_boolean
9395elf_link_swap_symbols_out (struct elf_final_link_info *flinfo)
9396{
9397 struct elf_link_hash_table *hash_table = elf_hash_table (flinfo->info);
ef53be89
AM
9398 bfd_size_type amt;
9399 size_t i;
ef10c3ac
L
9400 const struct elf_backend_data *bed;
9401 bfd_byte *symbuf;
9402 Elf_Internal_Shdr *hdr;
9403 file_ptr pos;
9404 bfd_boolean ret;
9405
9406 if (!hash_table->strtabcount)
9407 return TRUE;
9408
9409 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9410
9411 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 9412
ef10c3ac
L
9413 amt = bed->s->sizeof_sym * hash_table->strtabcount;
9414 symbuf = (bfd_byte *) bfd_malloc (amt);
9415 if (symbuf == NULL)
9416 return FALSE;
1b786873 9417
ef10c3ac 9418 if (flinfo->symshndxbuf)
c152c796 9419 {
ef53be89
AM
9420 amt = sizeof (Elf_External_Sym_Shndx);
9421 amt *= bfd_get_symcount (flinfo->output_bfd);
ef10c3ac
L
9422 flinfo->symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
9423 if (flinfo->symshndxbuf == NULL)
c152c796 9424 {
ef10c3ac
L
9425 free (symbuf);
9426 return FALSE;
c152c796 9427 }
c152c796
AM
9428 }
9429
ef10c3ac
L
9430 for (i = 0; i < hash_table->strtabcount; i++)
9431 {
9432 struct elf_sym_strtab *elfsym = &hash_table->strtab[i];
9433 if (elfsym->sym.st_name == (unsigned long) -1)
9434 elfsym->sym.st_name = 0;
9435 else
9436 elfsym->sym.st_name
9437 = (unsigned long) _bfd_elf_strtab_offset (flinfo->symstrtab,
9438 elfsym->sym.st_name);
9439 bed->s->swap_symbol_out (flinfo->output_bfd, &elfsym->sym,
9440 ((bfd_byte *) symbuf
9441 + (elfsym->dest_index
9442 * bed->s->sizeof_sym)),
9443 (flinfo->symshndxbuf
9444 + elfsym->destshndx_index));
9445 }
9446
9447 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
9448 pos = hdr->sh_offset + hdr->sh_size;
9449 amt = hash_table->strtabcount * bed->s->sizeof_sym;
9450 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) == 0
9451 && bfd_bwrite (symbuf, amt, flinfo->output_bfd) == amt)
9452 {
9453 hdr->sh_size += amt;
9454 ret = TRUE;
9455 }
9456 else
9457 ret = FALSE;
c152c796 9458
ef10c3ac
L
9459 free (symbuf);
9460
9461 free (hash_table->strtab);
9462 hash_table->strtab = NULL;
9463
9464 return ret;
c152c796
AM
9465}
9466
c0d5a53d
L
9467/* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
9468
9469static bfd_boolean
9470check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
9471{
4fbb74a6
AM
9472 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
9473 && sym->st_shndx < SHN_LORESERVE)
c0d5a53d
L
9474 {
9475 /* The gABI doesn't support dynamic symbols in output sections
a0c8462f 9476 beyond 64k. */
4eca0228 9477 _bfd_error_handler
695344c0 9478 /* xgettext:c-format */
9793eb77 9479 (_("%pB: too many sections: %d (>= %d)"),
4fbb74a6 9480 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
c0d5a53d
L
9481 bfd_set_error (bfd_error_nonrepresentable_section);
9482 return FALSE;
9483 }
9484 return TRUE;
9485}
9486
c152c796
AM
9487/* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
9488 allowing an unsatisfied unversioned symbol in the DSO to match a
9489 versioned symbol that would normally require an explicit version.
9490 We also handle the case that a DSO references a hidden symbol
9491 which may be satisfied by a versioned symbol in another DSO. */
9492
9493static bfd_boolean
9494elf_link_check_versioned_symbol (struct bfd_link_info *info,
9495 const struct elf_backend_data *bed,
9496 struct elf_link_hash_entry *h)
9497{
9498 bfd *abfd;
9499 struct elf_link_loaded_list *loaded;
9500
9501 if (!is_elf_hash_table (info->hash))
9502 return FALSE;
9503
90c984fc
L
9504 /* Check indirect symbol. */
9505 while (h->root.type == bfd_link_hash_indirect)
9506 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9507
c152c796
AM
9508 switch (h->root.type)
9509 {
9510 default:
9511 abfd = NULL;
9512 break;
9513
9514 case bfd_link_hash_undefined:
9515 case bfd_link_hash_undefweak:
9516 abfd = h->root.u.undef.abfd;
f4ab0e2d
L
9517 if (abfd == NULL
9518 || (abfd->flags & DYNAMIC) == 0
e56f61be 9519 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
c152c796
AM
9520 return FALSE;
9521 break;
9522
9523 case bfd_link_hash_defined:
9524 case bfd_link_hash_defweak:
9525 abfd = h->root.u.def.section->owner;
9526 break;
9527
9528 case bfd_link_hash_common:
9529 abfd = h->root.u.c.p->section->owner;
9530 break;
9531 }
9532 BFD_ASSERT (abfd != NULL);
9533
9534 for (loaded = elf_hash_table (info)->loaded;
9535 loaded != NULL;
9536 loaded = loaded->next)
9537 {
9538 bfd *input;
9539 Elf_Internal_Shdr *hdr;
ef53be89
AM
9540 size_t symcount;
9541 size_t extsymcount;
9542 size_t extsymoff;
c152c796
AM
9543 Elf_Internal_Shdr *versymhdr;
9544 Elf_Internal_Sym *isym;
9545 Elf_Internal_Sym *isymend;
9546 Elf_Internal_Sym *isymbuf;
9547 Elf_External_Versym *ever;
9548 Elf_External_Versym *extversym;
9549
9550 input = loaded->abfd;
9551
9552 /* We check each DSO for a possible hidden versioned definition. */
9553 if (input == abfd
9554 || (input->flags & DYNAMIC) == 0
9555 || elf_dynversym (input) == 0)
9556 continue;
9557
9558 hdr = &elf_tdata (input)->dynsymtab_hdr;
9559
9560 symcount = hdr->sh_size / bed->s->sizeof_sym;
9561 if (elf_bad_symtab (input))
9562 {
9563 extsymcount = symcount;
9564 extsymoff = 0;
9565 }
9566 else
9567 {
9568 extsymcount = symcount - hdr->sh_info;
9569 extsymoff = hdr->sh_info;
9570 }
9571
9572 if (extsymcount == 0)
9573 continue;
9574
9575 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
9576 NULL, NULL, NULL);
9577 if (isymbuf == NULL)
9578 return FALSE;
9579
9580 /* Read in any version definitions. */
9581 versymhdr = &elf_tdata (input)->dynversym_hdr;
a50b1753 9582 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
c152c796
AM
9583 if (extversym == NULL)
9584 goto error_ret;
9585
9586 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
9587 || (bfd_bread (extversym, versymhdr->sh_size, input)
9588 != versymhdr->sh_size))
9589 {
9590 free (extversym);
9591 error_ret:
9592 free (isymbuf);
9593 return FALSE;
9594 }
9595
9596 ever = extversym + extsymoff;
9597 isymend = isymbuf + extsymcount;
9598 for (isym = isymbuf; isym < isymend; isym++, ever++)
9599 {
9600 const char *name;
9601 Elf_Internal_Versym iver;
9602 unsigned short version_index;
9603
9604 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
9605 || isym->st_shndx == SHN_UNDEF)
9606 continue;
9607
9608 name = bfd_elf_string_from_elf_section (input,
9609 hdr->sh_link,
9610 isym->st_name);
9611 if (strcmp (name, h->root.root.string) != 0)
9612 continue;
9613
9614 _bfd_elf_swap_versym_in (input, ever, &iver);
9615
d023c380
L
9616 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
9617 && !(h->def_regular
9618 && h->forced_local))
c152c796
AM
9619 {
9620 /* If we have a non-hidden versioned sym, then it should
d023c380
L
9621 have provided a definition for the undefined sym unless
9622 it is defined in a non-shared object and forced local.
9623 */
c152c796
AM
9624 abort ();
9625 }
9626
9627 version_index = iver.vs_vers & VERSYM_VERSION;
9628 if (version_index == 1 || version_index == 2)
9629 {
9630 /* This is the base or first version. We can use it. */
9631 free (extversym);
9632 free (isymbuf);
9633 return TRUE;
9634 }
9635 }
9636
9637 free (extversym);
9638 free (isymbuf);
9639 }
9640
9641 return FALSE;
9642}
9643
b8871f35
L
9644/* Convert ELF common symbol TYPE. */
9645
9646static int
9647elf_link_convert_common_type (struct bfd_link_info *info, int type)
9648{
9649 /* Commom symbol can only appear in relocatable link. */
9650 if (!bfd_link_relocatable (info))
9651 abort ();
9652 switch (info->elf_stt_common)
9653 {
9654 case unchanged:
9655 break;
9656 case elf_stt_common:
9657 type = STT_COMMON;
9658 break;
9659 case no_elf_stt_common:
9660 type = STT_OBJECT;
9661 break;
9662 }
9663 return type;
9664}
9665
c152c796
AM
9666/* Add an external symbol to the symbol table. This is called from
9667 the hash table traversal routine. When generating a shared object,
9668 we go through the symbol table twice. The first time we output
9669 anything that might have been forced to local scope in a version
9670 script. The second time we output the symbols that are still
9671 global symbols. */
9672
9673static bfd_boolean
7686d77d 9674elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
c152c796 9675{
7686d77d 9676 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
a50b1753 9677 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8b127cbc 9678 struct elf_final_link_info *flinfo = eoinfo->flinfo;
c152c796
AM
9679 bfd_boolean strip;
9680 Elf_Internal_Sym sym;
9681 asection *input_sec;
9682 const struct elf_backend_data *bed;
6e0b88f1
AM
9683 long indx;
9684 int ret;
b8871f35 9685 unsigned int type;
c152c796
AM
9686
9687 if (h->root.type == bfd_link_hash_warning)
9688 {
9689 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9690 if (h->root.type == bfd_link_hash_new)
9691 return TRUE;
9692 }
9693
9694 /* Decide whether to output this symbol in this pass. */
9695 if (eoinfo->localsyms)
9696 {
4deb8f71 9697 if (!h->forced_local)
c152c796
AM
9698 return TRUE;
9699 }
9700 else
9701 {
4deb8f71 9702 if (h->forced_local)
c152c796
AM
9703 return TRUE;
9704 }
9705
8b127cbc 9706 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 9707
12ac1cf5 9708 if (h->root.type == bfd_link_hash_undefined)
c152c796 9709 {
12ac1cf5
NC
9710 /* If we have an undefined symbol reference here then it must have
9711 come from a shared library that is being linked in. (Undefined
98da7939
L
9712 references in regular files have already been handled unless
9713 they are in unreferenced sections which are removed by garbage
9714 collection). */
12ac1cf5
NC
9715 bfd_boolean ignore_undef = FALSE;
9716
9717 /* Some symbols may be special in that the fact that they're
9718 undefined can be safely ignored - let backend determine that. */
9719 if (bed->elf_backend_ignore_undef_symbol)
9720 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
9721
9722 /* If we are reporting errors for this situation then do so now. */
89a2ee5a 9723 if (!ignore_undef
12ac1cf5 9724 && h->ref_dynamic
8b127cbc
AM
9725 && (!h->ref_regular || flinfo->info->gc_sections)
9726 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
9727 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
1a72702b
AM
9728 (*flinfo->info->callbacks->undefined_symbol)
9729 (flinfo->info, h->root.root.string,
9730 h->ref_regular ? NULL : h->root.u.undef.abfd,
9731 NULL, 0,
9732 flinfo->info->unresolved_syms_in_shared_libs == RM_GENERATE_ERROR);
97196564
L
9733
9734 /* Strip a global symbol defined in a discarded section. */
9735 if (h->indx == -3)
9736 return TRUE;
c152c796
AM
9737 }
9738
9739 /* We should also warn if a forced local symbol is referenced from
9740 shared libraries. */
0e1862bb 9741 if (bfd_link_executable (flinfo->info)
f5385ebf
AM
9742 && h->forced_local
9743 && h->ref_dynamic
371a5866 9744 && h->def_regular
f5385ebf 9745 && !h->dynamic_def
ee659f1f 9746 && h->ref_dynamic_nonweak
8b127cbc 9747 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
c152c796 9748 {
17d078c5
AM
9749 bfd *def_bfd;
9750 const char *msg;
90c984fc
L
9751 struct elf_link_hash_entry *hi = h;
9752
9753 /* Check indirect symbol. */
9754 while (hi->root.type == bfd_link_hash_indirect)
9755 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
17d078c5
AM
9756
9757 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
695344c0 9758 /* xgettext:c-format */
871b3ab2 9759 msg = _("%pB: internal symbol `%s' in %pB is referenced by DSO");
17d078c5 9760 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
695344c0 9761 /* xgettext:c-format */
871b3ab2 9762 msg = _("%pB: hidden symbol `%s' in %pB is referenced by DSO");
17d078c5 9763 else
695344c0 9764 /* xgettext:c-format */
871b3ab2 9765 msg = _("%pB: local symbol `%s' in %pB is referenced by DSO");
8b127cbc 9766 def_bfd = flinfo->output_bfd;
90c984fc
L
9767 if (hi->root.u.def.section != bfd_abs_section_ptr)
9768 def_bfd = hi->root.u.def.section->owner;
c08bb8dd
AM
9769 _bfd_error_handler (msg, flinfo->output_bfd,
9770 h->root.root.string, def_bfd);
17d078c5 9771 bfd_set_error (bfd_error_bad_value);
c152c796
AM
9772 eoinfo->failed = TRUE;
9773 return FALSE;
9774 }
9775
9776 /* We don't want to output symbols that have never been mentioned by
9777 a regular file, or that we have been told to strip. However, if
9778 h->indx is set to -2, the symbol is used by a reloc and we must
9779 output it. */
d983c8c5 9780 strip = FALSE;
c152c796 9781 if (h->indx == -2)
d983c8c5 9782 ;
f5385ebf 9783 else if ((h->def_dynamic
77cfaee6
AM
9784 || h->ref_dynamic
9785 || h->root.type == bfd_link_hash_new)
f5385ebf
AM
9786 && !h->def_regular
9787 && !h->ref_regular)
c152c796 9788 strip = TRUE;
8b127cbc 9789 else if (flinfo->info->strip == strip_all)
c152c796 9790 strip = TRUE;
8b127cbc
AM
9791 else if (flinfo->info->strip == strip_some
9792 && bfd_hash_lookup (flinfo->info->keep_hash,
c152c796
AM
9793 h->root.root.string, FALSE, FALSE) == NULL)
9794 strip = TRUE;
d56d55e7
AM
9795 else if ((h->root.type == bfd_link_hash_defined
9796 || h->root.type == bfd_link_hash_defweak)
8b127cbc 9797 && ((flinfo->info->strip_discarded
dbaa2011 9798 && discarded_section (h->root.u.def.section))
ca4be51c
AM
9799 || ((h->root.u.def.section->flags & SEC_LINKER_CREATED) == 0
9800 && h->root.u.def.section->owner != NULL
d56d55e7 9801 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
c152c796 9802 strip = TRUE;
9e2278f5
AM
9803 else if ((h->root.type == bfd_link_hash_undefined
9804 || h->root.type == bfd_link_hash_undefweak)
9805 && h->root.u.undef.abfd != NULL
9806 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
9807 strip = TRUE;
c152c796 9808
b8871f35
L
9809 type = h->type;
9810
c152c796 9811 /* If we're stripping it, and it's not a dynamic symbol, there's
d983c8c5
AM
9812 nothing else to do. However, if it is a forced local symbol or
9813 an ifunc symbol we need to give the backend finish_dynamic_symbol
9814 function a chance to make it dynamic. */
c152c796
AM
9815 if (strip
9816 && h->dynindx == -1
b8871f35 9817 && type != STT_GNU_IFUNC
f5385ebf 9818 && !h->forced_local)
c152c796
AM
9819 return TRUE;
9820
9821 sym.st_value = 0;
9822 sym.st_size = h->size;
9823 sym.st_other = h->other;
c152c796
AM
9824 switch (h->root.type)
9825 {
9826 default:
9827 case bfd_link_hash_new:
9828 case bfd_link_hash_warning:
9829 abort ();
9830 return FALSE;
9831
9832 case bfd_link_hash_undefined:
9833 case bfd_link_hash_undefweak:
9834 input_sec = bfd_und_section_ptr;
9835 sym.st_shndx = SHN_UNDEF;
9836 break;
9837
9838 case bfd_link_hash_defined:
9839 case bfd_link_hash_defweak:
9840 {
9841 input_sec = h->root.u.def.section;
9842 if (input_sec->output_section != NULL)
9843 {
9844 sym.st_shndx =
8b127cbc 9845 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
c152c796
AM
9846 input_sec->output_section);
9847 if (sym.st_shndx == SHN_BAD)
9848 {
4eca0228 9849 _bfd_error_handler
695344c0 9850 /* xgettext:c-format */
871b3ab2 9851 (_("%pB: could not find output section %pA for input section %pA"),
8b127cbc 9852 flinfo->output_bfd, input_sec->output_section, input_sec);
17d078c5 9853 bfd_set_error (bfd_error_nonrepresentable_section);
c152c796
AM
9854 eoinfo->failed = TRUE;
9855 return FALSE;
9856 }
9857
9858 /* ELF symbols in relocatable files are section relative,
9859 but in nonrelocatable files they are virtual
9860 addresses. */
9861 sym.st_value = h->root.u.def.value + input_sec->output_offset;
0e1862bb 9862 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
9863 {
9864 sym.st_value += input_sec->output_section->vma;
9865 if (h->type == STT_TLS)
9866 {
8b127cbc 9867 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
430a16a5
NC
9868 if (tls_sec != NULL)
9869 sym.st_value -= tls_sec->vma;
c152c796
AM
9870 }
9871 }
9872 }
9873 else
9874 {
9875 BFD_ASSERT (input_sec->owner == NULL
9876 || (input_sec->owner->flags & DYNAMIC) != 0);
9877 sym.st_shndx = SHN_UNDEF;
9878 input_sec = bfd_und_section_ptr;
9879 }
9880 }
9881 break;
9882
9883 case bfd_link_hash_common:
9884 input_sec = h->root.u.c.p->section;
a4d8e49b 9885 sym.st_shndx = bed->common_section_index (input_sec);
c152c796
AM
9886 sym.st_value = 1 << h->root.u.c.p->alignment_power;
9887 break;
9888
9889 case bfd_link_hash_indirect:
9890 /* These symbols are created by symbol versioning. They point
9891 to the decorated version of the name. For example, if the
9892 symbol foo@@GNU_1.2 is the default, which should be used when
9893 foo is used with no version, then we add an indirect symbol
9894 foo which points to foo@@GNU_1.2. We ignore these symbols,
9895 since the indirected symbol is already in the hash table. */
9896 return TRUE;
9897 }
9898
b8871f35
L
9899 if (type == STT_COMMON || type == STT_OBJECT)
9900 switch (h->root.type)
9901 {
9902 case bfd_link_hash_common:
9903 type = elf_link_convert_common_type (flinfo->info, type);
9904 break;
9905 case bfd_link_hash_defined:
9906 case bfd_link_hash_defweak:
9907 if (bed->common_definition (&sym))
9908 type = elf_link_convert_common_type (flinfo->info, type);
9909 else
9910 type = STT_OBJECT;
9911 break;
9912 case bfd_link_hash_undefined:
9913 case bfd_link_hash_undefweak:
9914 break;
9915 default:
9916 abort ();
9917 }
9918
4deb8f71 9919 if (h->forced_local)
b8871f35
L
9920 {
9921 sym.st_info = ELF_ST_INFO (STB_LOCAL, type);
9922 /* Turn off visibility on local symbol. */
9923 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
9924 }
9925 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
9926 else if (h->unique_global && h->def_regular)
9927 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, type);
9928 else if (h->root.type == bfd_link_hash_undefweak
9929 || h->root.type == bfd_link_hash_defweak)
9930 sym.st_info = ELF_ST_INFO (STB_WEAK, type);
9931 else
9932 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
9933 sym.st_target_internal = h->target_internal;
9934
c152c796
AM
9935 /* Give the processor backend a chance to tweak the symbol value,
9936 and also to finish up anything that needs to be done for this
9937 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
3aa14d16 9938 forced local syms when non-shared is due to a historical quirk.
5f35ea9c 9939 STT_GNU_IFUNC symbol must go through PLT. */
3aa14d16 9940 if ((h->type == STT_GNU_IFUNC
5f35ea9c 9941 && h->def_regular
0e1862bb 9942 && !bfd_link_relocatable (flinfo->info))
3aa14d16
L
9943 || ((h->dynindx != -1
9944 || h->forced_local)
0e1862bb 9945 && ((bfd_link_pic (flinfo->info)
3aa14d16
L
9946 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
9947 || h->root.type != bfd_link_hash_undefweak))
9948 || !h->forced_local)
8b127cbc 9949 && elf_hash_table (flinfo->info)->dynamic_sections_created))
c152c796
AM
9950 {
9951 if (! ((*bed->elf_backend_finish_dynamic_symbol)
8b127cbc 9952 (flinfo->output_bfd, flinfo->info, h, &sym)))
c152c796
AM
9953 {
9954 eoinfo->failed = TRUE;
9955 return FALSE;
9956 }
9957 }
9958
9959 /* If we are marking the symbol as undefined, and there are no
9960 non-weak references to this symbol from a regular object, then
9961 mark the symbol as weak undefined; if there are non-weak
9962 references, mark the symbol as strong. We can't do this earlier,
9963 because it might not be marked as undefined until the
9964 finish_dynamic_symbol routine gets through with it. */
9965 if (sym.st_shndx == SHN_UNDEF
f5385ebf 9966 && h->ref_regular
c152c796
AM
9967 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
9968 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
9969 {
9970 int bindtype;
b8871f35 9971 type = ELF_ST_TYPE (sym.st_info);
2955ec4c
L
9972
9973 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
9974 if (type == STT_GNU_IFUNC)
9975 type = STT_FUNC;
c152c796 9976
f5385ebf 9977 if (h->ref_regular_nonweak)
c152c796
AM
9978 bindtype = STB_GLOBAL;
9979 else
9980 bindtype = STB_WEAK;
2955ec4c 9981 sym.st_info = ELF_ST_INFO (bindtype, type);
c152c796
AM
9982 }
9983
bda987c2
CD
9984 /* If this is a symbol defined in a dynamic library, don't use the
9985 symbol size from the dynamic library. Relinking an executable
9986 against a new library may introduce gratuitous changes in the
9987 executable's symbols if we keep the size. */
9988 if (sym.st_shndx == SHN_UNDEF
9989 && !h->def_regular
9990 && h->def_dynamic)
9991 sym.st_size = 0;
9992
c152c796
AM
9993 /* If a non-weak symbol with non-default visibility is not defined
9994 locally, it is a fatal error. */
0e1862bb 9995 if (!bfd_link_relocatable (flinfo->info)
c152c796
AM
9996 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
9997 && ELF_ST_BIND (sym.st_info) != STB_WEAK
9998 && h->root.type == bfd_link_hash_undefined
f5385ebf 9999 && !h->def_regular)
c152c796 10000 {
17d078c5
AM
10001 const char *msg;
10002
10003 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
695344c0 10004 /* xgettext:c-format */
871b3ab2 10005 msg = _("%pB: protected symbol `%s' isn't defined");
17d078c5 10006 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
695344c0 10007 /* xgettext:c-format */
871b3ab2 10008 msg = _("%pB: internal symbol `%s' isn't defined");
17d078c5 10009 else
695344c0 10010 /* xgettext:c-format */
871b3ab2 10011 msg = _("%pB: hidden symbol `%s' isn't defined");
4eca0228 10012 _bfd_error_handler (msg, flinfo->output_bfd, h->root.root.string);
17d078c5 10013 bfd_set_error (bfd_error_bad_value);
c152c796
AM
10014 eoinfo->failed = TRUE;
10015 return FALSE;
10016 }
10017
10018 /* If this symbol should be put in the .dynsym section, then put it
10019 there now. We already know the symbol index. We also fill in
10020 the entry in the .hash section. */
cae1fbbb 10021 if (elf_hash_table (flinfo->info)->dynsym != NULL
202e2356 10022 && h->dynindx != -1
8b127cbc 10023 && elf_hash_table (flinfo->info)->dynamic_sections_created)
c152c796 10024 {
c152c796
AM
10025 bfd_byte *esym;
10026
90c984fc
L
10027 /* Since there is no version information in the dynamic string,
10028 if there is no version info in symbol version section, we will
1659f720 10029 have a run-time problem if not linking executable, referenced
4deb8f71 10030 by shared library, or not bound locally. */
1659f720 10031 if (h->verinfo.verdef == NULL
0e1862bb 10032 && (!bfd_link_executable (flinfo->info)
1659f720
L
10033 || h->ref_dynamic
10034 || !h->def_regular))
90c984fc
L
10035 {
10036 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
10037
10038 if (p && p [1] != '\0')
10039 {
4eca0228 10040 _bfd_error_handler
695344c0 10041 /* xgettext:c-format */
9793eb77 10042 (_("%pB: no symbol version section for versioned symbol `%s'"),
90c984fc
L
10043 flinfo->output_bfd, h->root.root.string);
10044 eoinfo->failed = TRUE;
10045 return FALSE;
10046 }
10047 }
10048
c152c796 10049 sym.st_name = h->dynstr_index;
cae1fbbb
L
10050 esym = (elf_hash_table (flinfo->info)->dynsym->contents
10051 + h->dynindx * bed->s->sizeof_sym);
8b127cbc 10052 if (!check_dynsym (flinfo->output_bfd, &sym))
c0d5a53d
L
10053 {
10054 eoinfo->failed = TRUE;
10055 return FALSE;
10056 }
8b127cbc 10057 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
c152c796 10058
8b127cbc 10059 if (flinfo->hash_sec != NULL)
fdc90cb4
JJ
10060 {
10061 size_t hash_entry_size;
10062 bfd_byte *bucketpos;
10063 bfd_vma chain;
41198d0c
L
10064 size_t bucketcount;
10065 size_t bucket;
10066
8b127cbc 10067 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
41198d0c 10068 bucket = h->u.elf_hash_value % bucketcount;
fdc90cb4
JJ
10069
10070 hash_entry_size
8b127cbc
AM
10071 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
10072 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4 10073 + (bucket + 2) * hash_entry_size);
8b127cbc
AM
10074 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
10075 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
10076 bucketpos);
10077 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
10078 ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4
JJ
10079 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
10080 }
c152c796 10081
8b127cbc 10082 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
c152c796
AM
10083 {
10084 Elf_Internal_Versym iversym;
10085 Elf_External_Versym *eversym;
10086
f5385ebf 10087 if (!h->def_regular)
c152c796 10088 {
7b20f099
AM
10089 if (h->verinfo.verdef == NULL
10090 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
10091 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
c152c796
AM
10092 iversym.vs_vers = 0;
10093 else
10094 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
10095 }
10096 else
10097 {
10098 if (h->verinfo.vertree == NULL)
10099 iversym.vs_vers = 1;
10100 else
10101 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
8b127cbc 10102 if (flinfo->info->create_default_symver)
3e3b46e5 10103 iversym.vs_vers++;
c152c796
AM
10104 }
10105
422f1182 10106 /* Turn on VERSYM_HIDDEN only if the hidden versioned symbol is
6e33951e 10107 defined locally. */
422f1182 10108 if (h->versioned == versioned_hidden && h->def_regular)
c152c796
AM
10109 iversym.vs_vers |= VERSYM_HIDDEN;
10110
8b127cbc 10111 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
c152c796 10112 eversym += h->dynindx;
8b127cbc 10113 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
c152c796
AM
10114 }
10115 }
10116
d983c8c5
AM
10117 /* If the symbol is undefined, and we didn't output it to .dynsym,
10118 strip it from .symtab too. Obviously we can't do this for
10119 relocatable output or when needed for --emit-relocs. */
10120 else if (input_sec == bfd_und_section_ptr
10121 && h->indx != -2
66cae560
NC
10122 /* PR 22319 Do not strip global undefined symbols marked as being needed. */
10123 && (h->mark != 1 || ELF_ST_BIND (sym.st_info) != STB_GLOBAL)
0e1862bb 10124 && !bfd_link_relocatable (flinfo->info))
d983c8c5 10125 return TRUE;
66cae560 10126
d983c8c5
AM
10127 /* Also strip others that we couldn't earlier due to dynamic symbol
10128 processing. */
10129 if (strip)
10130 return TRUE;
10131 if ((input_sec->flags & SEC_EXCLUDE) != 0)
c152c796
AM
10132 return TRUE;
10133
2ec55de3
AM
10134 /* Output a FILE symbol so that following locals are not associated
10135 with the wrong input file. We need one for forced local symbols
10136 if we've seen more than one FILE symbol or when we have exactly
10137 one FILE symbol but global symbols are present in a file other
10138 than the one with the FILE symbol. We also need one if linker
10139 defined symbols are present. In practice these conditions are
10140 always met, so just emit the FILE symbol unconditionally. */
10141 if (eoinfo->localsyms
10142 && !eoinfo->file_sym_done
10143 && eoinfo->flinfo->filesym_count != 0)
10144 {
10145 Elf_Internal_Sym fsym;
10146
10147 memset (&fsym, 0, sizeof (fsym));
10148 fsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10149 fsym.st_shndx = SHN_ABS;
ef10c3ac
L
10150 if (!elf_link_output_symstrtab (eoinfo->flinfo, NULL, &fsym,
10151 bfd_und_section_ptr, NULL))
2ec55de3
AM
10152 return FALSE;
10153
10154 eoinfo->file_sym_done = TRUE;
10155 }
10156
8b127cbc 10157 indx = bfd_get_symcount (flinfo->output_bfd);
ef10c3ac
L
10158 ret = elf_link_output_symstrtab (flinfo, h->root.root.string, &sym,
10159 input_sec, h);
6e0b88f1 10160 if (ret == 0)
c152c796
AM
10161 {
10162 eoinfo->failed = TRUE;
10163 return FALSE;
10164 }
6e0b88f1
AM
10165 else if (ret == 1)
10166 h->indx = indx;
10167 else if (h->indx == -2)
10168 abort();
c152c796
AM
10169
10170 return TRUE;
10171}
10172
cdd3575c
AM
10173/* Return TRUE if special handling is done for relocs in SEC against
10174 symbols defined in discarded sections. */
10175
c152c796
AM
10176static bfd_boolean
10177elf_section_ignore_discarded_relocs (asection *sec)
10178{
10179 const struct elf_backend_data *bed;
10180
cdd3575c
AM
10181 switch (sec->sec_info_type)
10182 {
dbaa2011
AM
10183 case SEC_INFO_TYPE_STABS:
10184 case SEC_INFO_TYPE_EH_FRAME:
2f0c68f2 10185 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
cdd3575c
AM
10186 return TRUE;
10187 default:
10188 break;
10189 }
c152c796
AM
10190
10191 bed = get_elf_backend_data (sec->owner);
10192 if (bed->elf_backend_ignore_discarded_relocs != NULL
10193 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
10194 return TRUE;
10195
10196 return FALSE;
10197}
10198
9e66c942
AM
10199/* Return a mask saying how ld should treat relocations in SEC against
10200 symbols defined in discarded sections. If this function returns
10201 COMPLAIN set, ld will issue a warning message. If this function
10202 returns PRETEND set, and the discarded section was link-once and the
10203 same size as the kept link-once section, ld will pretend that the
10204 symbol was actually defined in the kept section. Otherwise ld will
10205 zero the reloc (at least that is the intent, but some cooperation by
10206 the target dependent code is needed, particularly for REL targets). */
10207
8a696751
AM
10208unsigned int
10209_bfd_elf_default_action_discarded (asection *sec)
cdd3575c 10210{
9e66c942 10211 if (sec->flags & SEC_DEBUGGING)
69d54b1b 10212 return PRETEND;
cdd3575c
AM
10213
10214 if (strcmp (".eh_frame", sec->name) == 0)
9e66c942 10215 return 0;
cdd3575c
AM
10216
10217 if (strcmp (".gcc_except_table", sec->name) == 0)
9e66c942 10218 return 0;
cdd3575c 10219
9e66c942 10220 return COMPLAIN | PRETEND;
cdd3575c
AM
10221}
10222
3d7f7666
L
10223/* Find a match between a section and a member of a section group. */
10224
10225static asection *
c0f00686
L
10226match_group_member (asection *sec, asection *group,
10227 struct bfd_link_info *info)
3d7f7666
L
10228{
10229 asection *first = elf_next_in_group (group);
10230 asection *s = first;
10231
10232 while (s != NULL)
10233 {
c0f00686 10234 if (bfd_elf_match_symbols_in_sections (s, sec, info))
3d7f7666
L
10235 return s;
10236
83180ade 10237 s = elf_next_in_group (s);
3d7f7666
L
10238 if (s == first)
10239 break;
10240 }
10241
10242 return NULL;
10243}
10244
01b3c8ab 10245/* Check if the kept section of a discarded section SEC can be used
c2370991
AM
10246 to replace it. Return the replacement if it is OK. Otherwise return
10247 NULL. */
01b3c8ab
L
10248
10249asection *
c0f00686 10250_bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
01b3c8ab
L
10251{
10252 asection *kept;
10253
10254 kept = sec->kept_section;
10255 if (kept != NULL)
10256 {
c2370991 10257 if ((kept->flags & SEC_GROUP) != 0)
c0f00686 10258 kept = match_group_member (sec, kept, info);
1dd2625f
BW
10259 if (kept != NULL
10260 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
10261 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
01b3c8ab 10262 kept = NULL;
c2370991 10263 sec->kept_section = kept;
01b3c8ab
L
10264 }
10265 return kept;
10266}
10267
c152c796
AM
10268/* Link an input file into the linker output file. This function
10269 handles all the sections and relocations of the input file at once.
10270 This is so that we only have to read the local symbols once, and
10271 don't have to keep them in memory. */
10272
10273static bfd_boolean
8b127cbc 10274elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
c152c796 10275{
ece5ef60 10276 int (*relocate_section)
c152c796
AM
10277 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
10278 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
10279 bfd *output_bfd;
10280 Elf_Internal_Shdr *symtab_hdr;
10281 size_t locsymcount;
10282 size_t extsymoff;
10283 Elf_Internal_Sym *isymbuf;
10284 Elf_Internal_Sym *isym;
10285 Elf_Internal_Sym *isymend;
10286 long *pindex;
10287 asection **ppsection;
10288 asection *o;
10289 const struct elf_backend_data *bed;
c152c796 10290 struct elf_link_hash_entry **sym_hashes;
310fd250
L
10291 bfd_size_type address_size;
10292 bfd_vma r_type_mask;
10293 int r_sym_shift;
ffbc01cc 10294 bfd_boolean have_file_sym = FALSE;
c152c796 10295
8b127cbc 10296 output_bfd = flinfo->output_bfd;
c152c796
AM
10297 bed = get_elf_backend_data (output_bfd);
10298 relocate_section = bed->elf_backend_relocate_section;
10299
10300 /* If this is a dynamic object, we don't want to do anything here:
10301 we don't want the local symbols, and we don't want the section
10302 contents. */
10303 if ((input_bfd->flags & DYNAMIC) != 0)
10304 return TRUE;
10305
c152c796
AM
10306 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
10307 if (elf_bad_symtab (input_bfd))
10308 {
10309 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
10310 extsymoff = 0;
10311 }
10312 else
10313 {
10314 locsymcount = symtab_hdr->sh_info;
10315 extsymoff = symtab_hdr->sh_info;
10316 }
10317
10318 /* Read the local symbols. */
10319 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
10320 if (isymbuf == NULL && locsymcount != 0)
10321 {
10322 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
8b127cbc
AM
10323 flinfo->internal_syms,
10324 flinfo->external_syms,
10325 flinfo->locsym_shndx);
c152c796
AM
10326 if (isymbuf == NULL)
10327 return FALSE;
10328 }
10329
10330 /* Find local symbol sections and adjust values of symbols in
10331 SEC_MERGE sections. Write out those local symbols we know are
10332 going into the output file. */
10333 isymend = isymbuf + locsymcount;
8b127cbc 10334 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
c152c796
AM
10335 isym < isymend;
10336 isym++, pindex++, ppsection++)
10337 {
10338 asection *isec;
10339 const char *name;
10340 Elf_Internal_Sym osym;
6e0b88f1
AM
10341 long indx;
10342 int ret;
c152c796
AM
10343
10344 *pindex = -1;
10345
10346 if (elf_bad_symtab (input_bfd))
10347 {
10348 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
10349 {
10350 *ppsection = NULL;
10351 continue;
10352 }
10353 }
10354
10355 if (isym->st_shndx == SHN_UNDEF)
10356 isec = bfd_und_section_ptr;
c152c796
AM
10357 else if (isym->st_shndx == SHN_ABS)
10358 isec = bfd_abs_section_ptr;
10359 else if (isym->st_shndx == SHN_COMMON)
10360 isec = bfd_com_section_ptr;
10361 else
10362 {
cb33740c
AM
10363 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
10364 if (isec == NULL)
10365 {
10366 /* Don't attempt to output symbols with st_shnx in the
10367 reserved range other than SHN_ABS and SHN_COMMON. */
10368 *ppsection = NULL;
10369 continue;
10370 }
dbaa2011 10371 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
cb33740c
AM
10372 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
10373 isym->st_value =
10374 _bfd_merged_section_offset (output_bfd, &isec,
10375 elf_section_data (isec)->sec_info,
10376 isym->st_value);
c152c796
AM
10377 }
10378
10379 *ppsection = isec;
10380
d983c8c5
AM
10381 /* Don't output the first, undefined, symbol. In fact, don't
10382 output any undefined local symbol. */
10383 if (isec == bfd_und_section_ptr)
c152c796
AM
10384 continue;
10385
10386 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
10387 {
10388 /* We never output section symbols. Instead, we use the
10389 section symbol of the corresponding section in the output
10390 file. */
10391 continue;
10392 }
10393
10394 /* If we are stripping all symbols, we don't want to output this
10395 one. */
8b127cbc 10396 if (flinfo->info->strip == strip_all)
c152c796
AM
10397 continue;
10398
10399 /* If we are discarding all local symbols, we don't want to
10400 output this one. If we are generating a relocatable output
10401 file, then some of the local symbols may be required by
10402 relocs; we output them below as we discover that they are
10403 needed. */
8b127cbc 10404 if (flinfo->info->discard == discard_all)
c152c796
AM
10405 continue;
10406
10407 /* If this symbol is defined in a section which we are
f02571c5
AM
10408 discarding, we don't need to keep it. */
10409 if (isym->st_shndx != SHN_UNDEF
4fbb74a6
AM
10410 && isym->st_shndx < SHN_LORESERVE
10411 && bfd_section_removed_from_list (output_bfd,
10412 isec->output_section))
e75a280b
L
10413 continue;
10414
c152c796
AM
10415 /* Get the name of the symbol. */
10416 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
10417 isym->st_name);
10418 if (name == NULL)
10419 return FALSE;
10420
10421 /* See if we are discarding symbols with this name. */
8b127cbc
AM
10422 if ((flinfo->info->strip == strip_some
10423 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
c152c796 10424 == NULL))
8b127cbc 10425 || (((flinfo->info->discard == discard_sec_merge
0e1862bb
L
10426 && (isec->flags & SEC_MERGE)
10427 && !bfd_link_relocatable (flinfo->info))
8b127cbc 10428 || flinfo->info->discard == discard_l)
c152c796
AM
10429 && bfd_is_local_label_name (input_bfd, name)))
10430 continue;
10431
ffbc01cc
AM
10432 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
10433 {
ce875075
AM
10434 if (input_bfd->lto_output)
10435 /* -flto puts a temp file name here. This means builds
10436 are not reproducible. Discard the symbol. */
10437 continue;
ffbc01cc
AM
10438 have_file_sym = TRUE;
10439 flinfo->filesym_count += 1;
10440 }
10441 if (!have_file_sym)
10442 {
10443 /* In the absence of debug info, bfd_find_nearest_line uses
10444 FILE symbols to determine the source file for local
10445 function symbols. Provide a FILE symbol here if input
10446 files lack such, so that their symbols won't be
10447 associated with a previous input file. It's not the
10448 source file, but the best we can do. */
10449 have_file_sym = TRUE;
10450 flinfo->filesym_count += 1;
10451 memset (&osym, 0, sizeof (osym));
10452 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10453 osym.st_shndx = SHN_ABS;
ef10c3ac
L
10454 if (!elf_link_output_symstrtab (flinfo,
10455 (input_bfd->lto_output ? NULL
10456 : input_bfd->filename),
10457 &osym, bfd_abs_section_ptr,
10458 NULL))
ffbc01cc
AM
10459 return FALSE;
10460 }
10461
c152c796
AM
10462 osym = *isym;
10463
10464 /* Adjust the section index for the output file. */
10465 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10466 isec->output_section);
10467 if (osym.st_shndx == SHN_BAD)
10468 return FALSE;
10469
c152c796
AM
10470 /* ELF symbols in relocatable files are section relative, but
10471 in executable files they are virtual addresses. Note that
10472 this code assumes that all ELF sections have an associated
10473 BFD section with a reasonable value for output_offset; below
10474 we assume that they also have a reasonable value for
10475 output_section. Any special sections must be set up to meet
10476 these requirements. */
10477 osym.st_value += isec->output_offset;
0e1862bb 10478 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10479 {
10480 osym.st_value += isec->output_section->vma;
10481 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
10482 {
10483 /* STT_TLS symbols are relative to PT_TLS segment base. */
8b127cbc
AM
10484 BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
10485 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
c152c796
AM
10486 }
10487 }
10488
6e0b88f1 10489 indx = bfd_get_symcount (output_bfd);
ef10c3ac 10490 ret = elf_link_output_symstrtab (flinfo, name, &osym, isec, NULL);
6e0b88f1 10491 if (ret == 0)
c152c796 10492 return FALSE;
6e0b88f1
AM
10493 else if (ret == 1)
10494 *pindex = indx;
c152c796
AM
10495 }
10496
310fd250
L
10497 if (bed->s->arch_size == 32)
10498 {
10499 r_type_mask = 0xff;
10500 r_sym_shift = 8;
10501 address_size = 4;
10502 }
10503 else
10504 {
10505 r_type_mask = 0xffffffff;
10506 r_sym_shift = 32;
10507 address_size = 8;
10508 }
10509
c152c796
AM
10510 /* Relocate the contents of each section. */
10511 sym_hashes = elf_sym_hashes (input_bfd);
10512 for (o = input_bfd->sections; o != NULL; o = o->next)
10513 {
10514 bfd_byte *contents;
10515
10516 if (! o->linker_mark)
10517 {
10518 /* This section was omitted from the link. */
10519 continue;
10520 }
10521
7bdf4127 10522 if (!flinfo->info->resolve_section_groups
bcacc0f5
AM
10523 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
10524 {
10525 /* Deal with the group signature symbol. */
10526 struct bfd_elf_section_data *sec_data = elf_section_data (o);
10527 unsigned long symndx = sec_data->this_hdr.sh_info;
10528 asection *osec = o->output_section;
10529
7bdf4127 10530 BFD_ASSERT (bfd_link_relocatable (flinfo->info));
bcacc0f5
AM
10531 if (symndx >= locsymcount
10532 || (elf_bad_symtab (input_bfd)
8b127cbc 10533 && flinfo->sections[symndx] == NULL))
bcacc0f5
AM
10534 {
10535 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
10536 while (h->root.type == bfd_link_hash_indirect
10537 || h->root.type == bfd_link_hash_warning)
10538 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10539 /* Arrange for symbol to be output. */
10540 h->indx = -2;
10541 elf_section_data (osec)->this_hdr.sh_info = -2;
10542 }
10543 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
10544 {
10545 /* We'll use the output section target_index. */
8b127cbc 10546 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5
AM
10547 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
10548 }
10549 else
10550 {
8b127cbc 10551 if (flinfo->indices[symndx] == -1)
bcacc0f5
AM
10552 {
10553 /* Otherwise output the local symbol now. */
10554 Elf_Internal_Sym sym = isymbuf[symndx];
8b127cbc 10555 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5 10556 const char *name;
6e0b88f1
AM
10557 long indx;
10558 int ret;
bcacc0f5
AM
10559
10560 name = bfd_elf_string_from_elf_section (input_bfd,
10561 symtab_hdr->sh_link,
10562 sym.st_name);
10563 if (name == NULL)
10564 return FALSE;
10565
10566 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10567 sec);
10568 if (sym.st_shndx == SHN_BAD)
10569 return FALSE;
10570
10571 sym.st_value += o->output_offset;
10572
6e0b88f1 10573 indx = bfd_get_symcount (output_bfd);
ef10c3ac
L
10574 ret = elf_link_output_symstrtab (flinfo, name, &sym, o,
10575 NULL);
6e0b88f1 10576 if (ret == 0)
bcacc0f5 10577 return FALSE;
6e0b88f1 10578 else if (ret == 1)
8b127cbc 10579 flinfo->indices[symndx] = indx;
6e0b88f1
AM
10580 else
10581 abort ();
bcacc0f5
AM
10582 }
10583 elf_section_data (osec)->this_hdr.sh_info
8b127cbc 10584 = flinfo->indices[symndx];
bcacc0f5
AM
10585 }
10586 }
10587
c152c796 10588 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 10589 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
c152c796
AM
10590 continue;
10591
10592 if ((o->flags & SEC_LINKER_CREATED) != 0)
10593 {
10594 /* Section was created by _bfd_elf_link_create_dynamic_sections
10595 or somesuch. */
10596 continue;
10597 }
10598
10599 /* Get the contents of the section. They have been cached by a
10600 relaxation routine. Note that o is a section in an input
10601 file, so the contents field will not have been set by any of
10602 the routines which work on output files. */
10603 if (elf_section_data (o)->this_hdr.contents != NULL)
53291d1f
AM
10604 {
10605 contents = elf_section_data (o)->this_hdr.contents;
10606 if (bed->caches_rawsize
10607 && o->rawsize != 0
10608 && o->rawsize < o->size)
10609 {
10610 memcpy (flinfo->contents, contents, o->rawsize);
10611 contents = flinfo->contents;
10612 }
10613 }
c152c796
AM
10614 else
10615 {
8b127cbc 10616 contents = flinfo->contents;
4a114e3e 10617 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
c152c796
AM
10618 return FALSE;
10619 }
10620
10621 if ((o->flags & SEC_RELOC) != 0)
10622 {
10623 Elf_Internal_Rela *internal_relocs;
0f02bbd9 10624 Elf_Internal_Rela *rel, *relend;
0f02bbd9 10625 int action_discarded;
ece5ef60 10626 int ret;
c152c796
AM
10627
10628 /* Get the swapped relocs. */
10629 internal_relocs
8b127cbc
AM
10630 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
10631 flinfo->internal_relocs, FALSE);
c152c796
AM
10632 if (internal_relocs == NULL
10633 && o->reloc_count > 0)
10634 return FALSE;
10635
310fd250
L
10636 /* We need to reverse-copy input .ctors/.dtors sections if
10637 they are placed in .init_array/.finit_array for output. */
10638 if (o->size > address_size
10639 && ((strncmp (o->name, ".ctors", 6) == 0
10640 && strcmp (o->output_section->name,
10641 ".init_array") == 0)
10642 || (strncmp (o->name, ".dtors", 6) == 0
10643 && strcmp (o->output_section->name,
10644 ".fini_array") == 0))
10645 && (o->name[6] == 0 || o->name[6] == '.'))
c152c796 10646 {
056bafd4
MR
10647 if (o->size * bed->s->int_rels_per_ext_rel
10648 != o->reloc_count * address_size)
310fd250 10649 {
4eca0228 10650 _bfd_error_handler
695344c0 10651 /* xgettext:c-format */
871b3ab2 10652 (_("error: %pB: size of section %pA is not "
310fd250
L
10653 "multiple of address size"),
10654 input_bfd, o);
8c6716e5 10655 bfd_set_error (bfd_error_bad_value);
310fd250
L
10656 return FALSE;
10657 }
10658 o->flags |= SEC_ELF_REVERSE_COPY;
c152c796
AM
10659 }
10660
0f02bbd9 10661 action_discarded = -1;
c152c796 10662 if (!elf_section_ignore_discarded_relocs (o))
0f02bbd9
AM
10663 action_discarded = (*bed->action_discarded) (o);
10664
10665 /* Run through the relocs evaluating complex reloc symbols and
10666 looking for relocs against symbols from discarded sections
10667 or section symbols from removed link-once sections.
10668 Complain about relocs against discarded sections. Zero
10669 relocs against removed link-once sections. */
10670
10671 rel = internal_relocs;
056bafd4 10672 relend = rel + o->reloc_count;
0f02bbd9 10673 for ( ; rel < relend; rel++)
c152c796 10674 {
0f02bbd9
AM
10675 unsigned long r_symndx = rel->r_info >> r_sym_shift;
10676 unsigned int s_type;
10677 asection **ps, *sec;
10678 struct elf_link_hash_entry *h = NULL;
10679 const char *sym_name;
c152c796 10680
0f02bbd9
AM
10681 if (r_symndx == STN_UNDEF)
10682 continue;
c152c796 10683
0f02bbd9
AM
10684 if (r_symndx >= locsymcount
10685 || (elf_bad_symtab (input_bfd)
8b127cbc 10686 && flinfo->sections[r_symndx] == NULL))
0f02bbd9
AM
10687 {
10688 h = sym_hashes[r_symndx - extsymoff];
ee75fd95 10689
0f02bbd9
AM
10690 /* Badly formatted input files can contain relocs that
10691 reference non-existant symbols. Check here so that
10692 we do not seg fault. */
10693 if (h == NULL)
c152c796 10694 {
4eca0228 10695 _bfd_error_handler
695344c0 10696 /* xgettext:c-format */
2dcf00ce 10697 (_("error: %pB contains a reloc (%#" PRIx64 ") for section %pA "
0f02bbd9 10698 "that references a non-existent global symbol"),
2dcf00ce 10699 input_bfd, (uint64_t) rel->r_info, o);
0f02bbd9
AM
10700 bfd_set_error (bfd_error_bad_value);
10701 return FALSE;
10702 }
3b36f7e6 10703
0f02bbd9
AM
10704 while (h->root.type == bfd_link_hash_indirect
10705 || h->root.type == bfd_link_hash_warning)
10706 h = (struct elf_link_hash_entry *) h->root.u.i.link;
c152c796 10707
0f02bbd9 10708 s_type = h->type;
cdd3575c 10709
9e2dec47 10710 /* If a plugin symbol is referenced from a non-IR file,
ca4be51c
AM
10711 mark the symbol as undefined. Note that the
10712 linker may attach linker created dynamic sections
10713 to the plugin bfd. Symbols defined in linker
10714 created sections are not plugin symbols. */
bc4e12de 10715 if ((h->root.non_ir_ref_regular
4070765b 10716 || h->root.non_ir_ref_dynamic)
9e2dec47
L
10717 && (h->root.type == bfd_link_hash_defined
10718 || h->root.type == bfd_link_hash_defweak)
10719 && (h->root.u.def.section->flags
10720 & SEC_LINKER_CREATED) == 0
10721 && h->root.u.def.section->owner != NULL
10722 && (h->root.u.def.section->owner->flags
10723 & BFD_PLUGIN) != 0)
10724 {
10725 h->root.type = bfd_link_hash_undefined;
10726 h->root.u.undef.abfd = h->root.u.def.section->owner;
10727 }
10728
0f02bbd9
AM
10729 ps = NULL;
10730 if (h->root.type == bfd_link_hash_defined
10731 || h->root.type == bfd_link_hash_defweak)
10732 ps = &h->root.u.def.section;
10733
10734 sym_name = h->root.root.string;
10735 }
10736 else
10737 {
10738 Elf_Internal_Sym *sym = isymbuf + r_symndx;
10739
10740 s_type = ELF_ST_TYPE (sym->st_info);
8b127cbc 10741 ps = &flinfo->sections[r_symndx];
0f02bbd9
AM
10742 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
10743 sym, *ps);
10744 }
c152c796 10745
c301e700 10746 if ((s_type == STT_RELC || s_type == STT_SRELC)
0e1862bb 10747 && !bfd_link_relocatable (flinfo->info))
0f02bbd9
AM
10748 {
10749 bfd_vma val;
10750 bfd_vma dot = (rel->r_offset
10751 + o->output_offset + o->output_section->vma);
10752#ifdef DEBUG
10753 printf ("Encountered a complex symbol!");
10754 printf (" (input_bfd %s, section %s, reloc %ld\n",
9ccb8af9
AM
10755 input_bfd->filename, o->name,
10756 (long) (rel - internal_relocs));
0f02bbd9
AM
10757 printf (" symbol: idx %8.8lx, name %s\n",
10758 r_symndx, sym_name);
10759 printf (" reloc : info %8.8lx, addr %8.8lx\n",
10760 (unsigned long) rel->r_info,
10761 (unsigned long) rel->r_offset);
10762#endif
8b127cbc 10763 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
0f02bbd9
AM
10764 isymbuf, locsymcount, s_type == STT_SRELC))
10765 return FALSE;
10766
10767 /* Symbol evaluated OK. Update to absolute value. */
10768 set_symbol_value (input_bfd, isymbuf, locsymcount,
10769 r_symndx, val);
10770 continue;
10771 }
10772
10773 if (action_discarded != -1 && ps != NULL)
10774 {
cdd3575c
AM
10775 /* Complain if the definition comes from a
10776 discarded section. */
dbaa2011 10777 if ((sec = *ps) != NULL && discarded_section (sec))
cdd3575c 10778 {
cf35638d 10779 BFD_ASSERT (r_symndx != STN_UNDEF);
0f02bbd9 10780 if (action_discarded & COMPLAIN)
8b127cbc 10781 (*flinfo->info->callbacks->einfo)
695344c0 10782 /* xgettext:c-format */
871b3ab2
AM
10783 (_("%X`%s' referenced in section `%pA' of %pB: "
10784 "defined in discarded section `%pA' of %pB\n"),
e1fffbe6 10785 sym_name, o, input_bfd, sec, sec->owner);
cdd3575c 10786
87e5235d 10787 /* Try to do the best we can to support buggy old
e0ae6d6f 10788 versions of gcc. Pretend that the symbol is
87e5235d
AM
10789 really defined in the kept linkonce section.
10790 FIXME: This is quite broken. Modifying the
10791 symbol here means we will be changing all later
e0ae6d6f 10792 uses of the symbol, not just in this section. */
0f02bbd9 10793 if (action_discarded & PRETEND)
87e5235d 10794 {
01b3c8ab
L
10795 asection *kept;
10796
c0f00686 10797 kept = _bfd_elf_check_kept_section (sec,
8b127cbc 10798 flinfo->info);
01b3c8ab 10799 if (kept != NULL)
87e5235d
AM
10800 {
10801 *ps = kept;
10802 continue;
10803 }
10804 }
c152c796
AM
10805 }
10806 }
10807 }
10808
10809 /* Relocate the section by invoking a back end routine.
10810
10811 The back end routine is responsible for adjusting the
10812 section contents as necessary, and (if using Rela relocs
10813 and generating a relocatable output file) adjusting the
10814 reloc addend as necessary.
10815
10816 The back end routine does not have to worry about setting
10817 the reloc address or the reloc symbol index.
10818
10819 The back end routine is given a pointer to the swapped in
10820 internal symbols, and can access the hash table entries
10821 for the external symbols via elf_sym_hashes (input_bfd).
10822
10823 When generating relocatable output, the back end routine
10824 must handle STB_LOCAL/STT_SECTION symbols specially. The
10825 output symbol is going to be a section symbol
10826 corresponding to the output section, which will require
10827 the addend to be adjusted. */
10828
8b127cbc 10829 ret = (*relocate_section) (output_bfd, flinfo->info,
c152c796
AM
10830 input_bfd, o, contents,
10831 internal_relocs,
10832 isymbuf,
8b127cbc 10833 flinfo->sections);
ece5ef60 10834 if (!ret)
c152c796
AM
10835 return FALSE;
10836
ece5ef60 10837 if (ret == 2
0e1862bb 10838 || bfd_link_relocatable (flinfo->info)
8b127cbc 10839 || flinfo->info->emitrelocations)
c152c796
AM
10840 {
10841 Elf_Internal_Rela *irela;
d4730f92 10842 Elf_Internal_Rela *irelaend, *irelamid;
c152c796
AM
10843 bfd_vma last_offset;
10844 struct elf_link_hash_entry **rel_hash;
d4730f92
BS
10845 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
10846 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
c152c796 10847 unsigned int next_erel;
c152c796 10848 bfd_boolean rela_normal;
d4730f92 10849 struct bfd_elf_section_data *esdi, *esdo;
c152c796 10850
d4730f92
BS
10851 esdi = elf_section_data (o);
10852 esdo = elf_section_data (o->output_section);
10853 rela_normal = FALSE;
c152c796
AM
10854
10855 /* Adjust the reloc addresses and symbol indices. */
10856
10857 irela = internal_relocs;
056bafd4 10858 irelaend = irela + o->reloc_count;
d4730f92
BS
10859 rel_hash = esdo->rel.hashes + esdo->rel.count;
10860 /* We start processing the REL relocs, if any. When we reach
10861 IRELAMID in the loop, we switch to the RELA relocs. */
10862 irelamid = irela;
10863 if (esdi->rel.hdr != NULL)
10864 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
10865 * bed->s->int_rels_per_ext_rel);
eac338cf 10866 rel_hash_list = rel_hash;
d4730f92 10867 rela_hash_list = NULL;
c152c796 10868 last_offset = o->output_offset;
0e1862bb 10869 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10870 last_offset += o->output_section->vma;
10871 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
10872 {
10873 unsigned long r_symndx;
10874 asection *sec;
10875 Elf_Internal_Sym sym;
10876
10877 if (next_erel == bed->s->int_rels_per_ext_rel)
10878 {
10879 rel_hash++;
10880 next_erel = 0;
10881 }
10882
d4730f92
BS
10883 if (irela == irelamid)
10884 {
10885 rel_hash = esdo->rela.hashes + esdo->rela.count;
10886 rela_hash_list = rel_hash;
10887 rela_normal = bed->rela_normal;
10888 }
10889
c152c796 10890 irela->r_offset = _bfd_elf_section_offset (output_bfd,
8b127cbc 10891 flinfo->info, o,
c152c796
AM
10892 irela->r_offset);
10893 if (irela->r_offset >= (bfd_vma) -2)
10894 {
10895 /* This is a reloc for a deleted entry or somesuch.
10896 Turn it into an R_*_NONE reloc, at the same
10897 offset as the last reloc. elf_eh_frame.c and
e460dd0d 10898 bfd_elf_discard_info rely on reloc offsets
c152c796
AM
10899 being ordered. */
10900 irela->r_offset = last_offset;
10901 irela->r_info = 0;
10902 irela->r_addend = 0;
10903 continue;
10904 }
10905
10906 irela->r_offset += o->output_offset;
10907
10908 /* Relocs in an executable have to be virtual addresses. */
0e1862bb 10909 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10910 irela->r_offset += o->output_section->vma;
10911
10912 last_offset = irela->r_offset;
10913
10914 r_symndx = irela->r_info >> r_sym_shift;
10915 if (r_symndx == STN_UNDEF)
10916 continue;
10917
10918 if (r_symndx >= locsymcount
10919 || (elf_bad_symtab (input_bfd)
8b127cbc 10920 && flinfo->sections[r_symndx] == NULL))
c152c796
AM
10921 {
10922 struct elf_link_hash_entry *rh;
10923 unsigned long indx;
10924
10925 /* This is a reloc against a global symbol. We
10926 have not yet output all the local symbols, so
10927 we do not know the symbol index of any global
10928 symbol. We set the rel_hash entry for this
10929 reloc to point to the global hash table entry
10930 for this symbol. The symbol index is then
ee75fd95 10931 set at the end of bfd_elf_final_link. */
c152c796
AM
10932 indx = r_symndx - extsymoff;
10933 rh = elf_sym_hashes (input_bfd)[indx];
10934 while (rh->root.type == bfd_link_hash_indirect
10935 || rh->root.type == bfd_link_hash_warning)
10936 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
10937
10938 /* Setting the index to -2 tells
10939 elf_link_output_extsym that this symbol is
10940 used by a reloc. */
10941 BFD_ASSERT (rh->indx < 0);
10942 rh->indx = -2;
c152c796
AM
10943 *rel_hash = rh;
10944
10945 continue;
10946 }
10947
10948 /* This is a reloc against a local symbol. */
10949
10950 *rel_hash = NULL;
10951 sym = isymbuf[r_symndx];
8b127cbc 10952 sec = flinfo->sections[r_symndx];
c152c796
AM
10953 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
10954 {
10955 /* I suppose the backend ought to fill in the
10956 section of any STT_SECTION symbol against a
6a8d1586 10957 processor specific section. */
cf35638d 10958 r_symndx = STN_UNDEF;
6a8d1586
AM
10959 if (bfd_is_abs_section (sec))
10960 ;
c152c796
AM
10961 else if (sec == NULL || sec->owner == NULL)
10962 {
10963 bfd_set_error (bfd_error_bad_value);
10964 return FALSE;
10965 }
10966 else
10967 {
6a8d1586
AM
10968 asection *osec = sec->output_section;
10969
10970 /* If we have discarded a section, the output
10971 section will be the absolute section. In
ab96bf03
AM
10972 case of discarded SEC_MERGE sections, use
10973 the kept section. relocate_section should
10974 have already handled discarded linkonce
10975 sections. */
6a8d1586
AM
10976 if (bfd_is_abs_section (osec)
10977 && sec->kept_section != NULL
10978 && sec->kept_section->output_section != NULL)
10979 {
10980 osec = sec->kept_section->output_section;
10981 irela->r_addend -= osec->vma;
10982 }
10983
10984 if (!bfd_is_abs_section (osec))
10985 {
10986 r_symndx = osec->target_index;
cf35638d 10987 if (r_symndx == STN_UNDEF)
74541ad4 10988 {
051d833a
AM
10989 irela->r_addend += osec->vma;
10990 osec = _bfd_nearby_section (output_bfd, osec,
10991 osec->vma);
10992 irela->r_addend -= osec->vma;
10993 r_symndx = osec->target_index;
74541ad4 10994 }
6a8d1586 10995 }
c152c796
AM
10996 }
10997
10998 /* Adjust the addend according to where the
10999 section winds up in the output section. */
11000 if (rela_normal)
11001 irela->r_addend += sec->output_offset;
11002 }
11003 else
11004 {
8b127cbc 11005 if (flinfo->indices[r_symndx] == -1)
c152c796
AM
11006 {
11007 unsigned long shlink;
11008 const char *name;
11009 asection *osec;
6e0b88f1 11010 long indx;
c152c796 11011
8b127cbc 11012 if (flinfo->info->strip == strip_all)
c152c796
AM
11013 {
11014 /* You can't do ld -r -s. */
11015 bfd_set_error (bfd_error_invalid_operation);
11016 return FALSE;
11017 }
11018
11019 /* This symbol was skipped earlier, but
11020 since it is needed by a reloc, we
11021 must output it now. */
11022 shlink = symtab_hdr->sh_link;
11023 name = (bfd_elf_string_from_elf_section
11024 (input_bfd, shlink, sym.st_name));
11025 if (name == NULL)
11026 return FALSE;
11027
11028 osec = sec->output_section;
11029 sym.st_shndx =
11030 _bfd_elf_section_from_bfd_section (output_bfd,
11031 osec);
11032 if (sym.st_shndx == SHN_BAD)
11033 return FALSE;
11034
11035 sym.st_value += sec->output_offset;
0e1862bb 11036 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
11037 {
11038 sym.st_value += osec->vma;
11039 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
11040 {
11041 /* STT_TLS symbols are relative to PT_TLS
11042 segment base. */
8b127cbc 11043 BFD_ASSERT (elf_hash_table (flinfo->info)
c152c796 11044 ->tls_sec != NULL);
8b127cbc 11045 sym.st_value -= (elf_hash_table (flinfo->info)
c152c796
AM
11046 ->tls_sec->vma);
11047 }
11048 }
11049
6e0b88f1 11050 indx = bfd_get_symcount (output_bfd);
ef10c3ac
L
11051 ret = elf_link_output_symstrtab (flinfo, name,
11052 &sym, sec,
11053 NULL);
6e0b88f1 11054 if (ret == 0)
c152c796 11055 return FALSE;
6e0b88f1 11056 else if (ret == 1)
8b127cbc 11057 flinfo->indices[r_symndx] = indx;
6e0b88f1
AM
11058 else
11059 abort ();
c152c796
AM
11060 }
11061
8b127cbc 11062 r_symndx = flinfo->indices[r_symndx];
c152c796
AM
11063 }
11064
11065 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
11066 | (irela->r_info & r_type_mask));
11067 }
11068
11069 /* Swap out the relocs. */
d4730f92
BS
11070 input_rel_hdr = esdi->rel.hdr;
11071 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
c152c796 11072 {
d4730f92
BS
11073 if (!bed->elf_backend_emit_relocs (output_bfd, o,
11074 input_rel_hdr,
11075 internal_relocs,
11076 rel_hash_list))
11077 return FALSE;
c152c796
AM
11078 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
11079 * bed->s->int_rels_per_ext_rel);
eac338cf 11080 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
d4730f92
BS
11081 }
11082
11083 input_rela_hdr = esdi->rela.hdr;
11084 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
11085 {
eac338cf 11086 if (!bed->elf_backend_emit_relocs (output_bfd, o,
d4730f92 11087 input_rela_hdr,
eac338cf 11088 internal_relocs,
d4730f92 11089 rela_hash_list))
c152c796
AM
11090 return FALSE;
11091 }
11092 }
11093 }
11094
11095 /* Write out the modified section contents. */
11096 if (bed->elf_backend_write_section
8b127cbc 11097 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
c7b8f16e 11098 contents))
c152c796
AM
11099 {
11100 /* Section written out. */
11101 }
11102 else switch (o->sec_info_type)
11103 {
dbaa2011 11104 case SEC_INFO_TYPE_STABS:
c152c796
AM
11105 if (! (_bfd_write_section_stabs
11106 (output_bfd,
8b127cbc 11107 &elf_hash_table (flinfo->info)->stab_info,
c152c796
AM
11108 o, &elf_section_data (o)->sec_info, contents)))
11109 return FALSE;
11110 break;
dbaa2011 11111 case SEC_INFO_TYPE_MERGE:
c152c796
AM
11112 if (! _bfd_write_merged_section (output_bfd, o,
11113 elf_section_data (o)->sec_info))
11114 return FALSE;
11115 break;
dbaa2011 11116 case SEC_INFO_TYPE_EH_FRAME:
c152c796 11117 {
8b127cbc 11118 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
c152c796
AM
11119 o, contents))
11120 return FALSE;
11121 }
11122 break;
2f0c68f2
CM
11123 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
11124 {
11125 if (! _bfd_elf_write_section_eh_frame_entry (output_bfd,
11126 flinfo->info,
11127 o, contents))
11128 return FALSE;
11129 }
11130 break;
c152c796
AM
11131 default:
11132 {
310fd250
L
11133 if (! (o->flags & SEC_EXCLUDE))
11134 {
11135 file_ptr offset = (file_ptr) o->output_offset;
11136 bfd_size_type todo = o->size;
37b01f6a
DG
11137
11138 offset *= bfd_octets_per_byte (output_bfd);
11139
310fd250
L
11140 if ((o->flags & SEC_ELF_REVERSE_COPY))
11141 {
11142 /* Reverse-copy input section to output. */
11143 do
11144 {
11145 todo -= address_size;
11146 if (! bfd_set_section_contents (output_bfd,
11147 o->output_section,
11148 contents + todo,
11149 offset,
11150 address_size))
11151 return FALSE;
11152 if (todo == 0)
11153 break;
11154 offset += address_size;
11155 }
11156 while (1);
11157 }
11158 else if (! bfd_set_section_contents (output_bfd,
11159 o->output_section,
11160 contents,
11161 offset, todo))
11162 return FALSE;
11163 }
c152c796
AM
11164 }
11165 break;
11166 }
11167 }
11168
11169 return TRUE;
11170}
11171
11172/* Generate a reloc when linking an ELF file. This is a reloc
3a800eb9 11173 requested by the linker, and does not come from any input file. This
c152c796
AM
11174 is used to build constructor and destructor tables when linking
11175 with -Ur. */
11176
11177static bfd_boolean
11178elf_reloc_link_order (bfd *output_bfd,
11179 struct bfd_link_info *info,
11180 asection *output_section,
11181 struct bfd_link_order *link_order)
11182{
11183 reloc_howto_type *howto;
11184 long indx;
11185 bfd_vma offset;
11186 bfd_vma addend;
d4730f92 11187 struct bfd_elf_section_reloc_data *reldata;
c152c796
AM
11188 struct elf_link_hash_entry **rel_hash_ptr;
11189 Elf_Internal_Shdr *rel_hdr;
11190 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
11191 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
11192 bfd_byte *erel;
11193 unsigned int i;
d4730f92 11194 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
c152c796
AM
11195
11196 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
11197 if (howto == NULL)
11198 {
11199 bfd_set_error (bfd_error_bad_value);
11200 return FALSE;
11201 }
11202
11203 addend = link_order->u.reloc.p->addend;
11204
d4730f92
BS
11205 if (esdo->rel.hdr)
11206 reldata = &esdo->rel;
11207 else if (esdo->rela.hdr)
11208 reldata = &esdo->rela;
11209 else
11210 {
11211 reldata = NULL;
11212 BFD_ASSERT (0);
11213 }
11214
c152c796 11215 /* Figure out the symbol index. */
d4730f92 11216 rel_hash_ptr = reldata->hashes + reldata->count;
c152c796
AM
11217 if (link_order->type == bfd_section_reloc_link_order)
11218 {
11219 indx = link_order->u.reloc.p->u.section->target_index;
11220 BFD_ASSERT (indx != 0);
11221 *rel_hash_ptr = NULL;
11222 }
11223 else
11224 {
11225 struct elf_link_hash_entry *h;
11226
11227 /* Treat a reloc against a defined symbol as though it were
11228 actually against the section. */
11229 h = ((struct elf_link_hash_entry *)
11230 bfd_wrapped_link_hash_lookup (output_bfd, info,
11231 link_order->u.reloc.p->u.name,
11232 FALSE, FALSE, TRUE));
11233 if (h != NULL
11234 && (h->root.type == bfd_link_hash_defined
11235 || h->root.type == bfd_link_hash_defweak))
11236 {
11237 asection *section;
11238
11239 section = h->root.u.def.section;
11240 indx = section->output_section->target_index;
11241 *rel_hash_ptr = NULL;
11242 /* It seems that we ought to add the symbol value to the
11243 addend here, but in practice it has already been added
11244 because it was passed to constructor_callback. */
11245 addend += section->output_section->vma + section->output_offset;
11246 }
11247 else if (h != NULL)
11248 {
11249 /* Setting the index to -2 tells elf_link_output_extsym that
11250 this symbol is used by a reloc. */
11251 h->indx = -2;
11252 *rel_hash_ptr = h;
11253 indx = 0;
11254 }
11255 else
11256 {
1a72702b
AM
11257 (*info->callbacks->unattached_reloc)
11258 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0);
c152c796
AM
11259 indx = 0;
11260 }
11261 }
11262
11263 /* If this is an inplace reloc, we must write the addend into the
11264 object file. */
11265 if (howto->partial_inplace && addend != 0)
11266 {
11267 bfd_size_type size;
11268 bfd_reloc_status_type rstat;
11269 bfd_byte *buf;
11270 bfd_boolean ok;
11271 const char *sym_name;
11272
a50b1753
NC
11273 size = (bfd_size_type) bfd_get_reloc_size (howto);
11274 buf = (bfd_byte *) bfd_zmalloc (size);
6346d5ca 11275 if (buf == NULL && size != 0)
c152c796
AM
11276 return FALSE;
11277 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
11278 switch (rstat)
11279 {
11280 case bfd_reloc_ok:
11281 break;
11282
11283 default:
11284 case bfd_reloc_outofrange:
11285 abort ();
11286
11287 case bfd_reloc_overflow:
11288 if (link_order->type == bfd_section_reloc_link_order)
11289 sym_name = bfd_section_name (output_bfd,
11290 link_order->u.reloc.p->u.section);
11291 else
11292 sym_name = link_order->u.reloc.p->u.name;
1a72702b
AM
11293 (*info->callbacks->reloc_overflow) (info, NULL, sym_name,
11294 howto->name, addend, NULL, NULL,
11295 (bfd_vma) 0);
c152c796
AM
11296 break;
11297 }
37b01f6a 11298
c152c796 11299 ok = bfd_set_section_contents (output_bfd, output_section, buf,
37b01f6a
DG
11300 link_order->offset
11301 * bfd_octets_per_byte (output_bfd),
11302 size);
c152c796
AM
11303 free (buf);
11304 if (! ok)
11305 return FALSE;
11306 }
11307
11308 /* The address of a reloc is relative to the section in a
11309 relocatable file, and is a virtual address in an executable
11310 file. */
11311 offset = link_order->offset;
0e1862bb 11312 if (! bfd_link_relocatable (info))
c152c796
AM
11313 offset += output_section->vma;
11314
11315 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
11316 {
11317 irel[i].r_offset = offset;
11318 irel[i].r_info = 0;
11319 irel[i].r_addend = 0;
11320 }
11321 if (bed->s->arch_size == 32)
11322 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
11323 else
11324 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
11325
d4730f92 11326 rel_hdr = reldata->hdr;
c152c796
AM
11327 erel = rel_hdr->contents;
11328 if (rel_hdr->sh_type == SHT_REL)
11329 {
d4730f92 11330 erel += reldata->count * bed->s->sizeof_rel;
c152c796
AM
11331 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
11332 }
11333 else
11334 {
11335 irel[0].r_addend = addend;
d4730f92 11336 erel += reldata->count * bed->s->sizeof_rela;
c152c796
AM
11337 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
11338 }
11339
d4730f92 11340 ++reldata->count;
c152c796
AM
11341
11342 return TRUE;
11343}
11344
0b52efa6
PB
11345
11346/* Get the output vma of the section pointed to by the sh_link field. */
11347
11348static bfd_vma
11349elf_get_linked_section_vma (struct bfd_link_order *p)
11350{
11351 Elf_Internal_Shdr **elf_shdrp;
11352 asection *s;
11353 int elfsec;
11354
11355 s = p->u.indirect.section;
11356 elf_shdrp = elf_elfsections (s->owner);
11357 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
11358 elfsec = elf_shdrp[elfsec]->sh_link;
185d09ad
L
11359 /* PR 290:
11360 The Intel C compiler generates SHT_IA_64_UNWIND with
e04bcc6d 11361 SHF_LINK_ORDER. But it doesn't set the sh_link or
185d09ad
L
11362 sh_info fields. Hence we could get the situation
11363 where elfsec is 0. */
11364 if (elfsec == 0)
11365 {
11366 const struct elf_backend_data *bed
11367 = get_elf_backend_data (s->owner);
11368 if (bed->link_order_error_handler)
d003868e 11369 bed->link_order_error_handler
695344c0 11370 /* xgettext:c-format */
871b3ab2 11371 (_("%pB: warning: sh_link not set for section `%pA'"), s->owner, s);
185d09ad
L
11372 return 0;
11373 }
11374 else
11375 {
11376 s = elf_shdrp[elfsec]->bfd_section;
11377 return s->output_section->vma + s->output_offset;
11378 }
0b52efa6
PB
11379}
11380
11381
11382/* Compare two sections based on the locations of the sections they are
11383 linked to. Used by elf_fixup_link_order. */
11384
11385static int
11386compare_link_order (const void * a, const void * b)
11387{
11388 bfd_vma apos;
11389 bfd_vma bpos;
11390
11391 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
11392 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
11393 if (apos < bpos)
11394 return -1;
11395 return apos > bpos;
11396}
11397
11398
11399/* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
11400 order as their linked sections. Returns false if this could not be done
11401 because an output section includes both ordered and unordered
11402 sections. Ideally we'd do this in the linker proper. */
11403
11404static bfd_boolean
11405elf_fixup_link_order (bfd *abfd, asection *o)
11406{
11407 int seen_linkorder;
11408 int seen_other;
11409 int n;
11410 struct bfd_link_order *p;
11411 bfd *sub;
11412 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
b761a207 11413 unsigned elfsec;
0b52efa6 11414 struct bfd_link_order **sections;
d33cdfe3 11415 asection *s, *other_sec, *linkorder_sec;
0b52efa6 11416 bfd_vma offset;
3b36f7e6 11417
d33cdfe3
L
11418 other_sec = NULL;
11419 linkorder_sec = NULL;
0b52efa6
PB
11420 seen_other = 0;
11421 seen_linkorder = 0;
8423293d 11422 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6 11423 {
d33cdfe3 11424 if (p->type == bfd_indirect_link_order)
0b52efa6
PB
11425 {
11426 s = p->u.indirect.section;
d33cdfe3
L
11427 sub = s->owner;
11428 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
11429 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
b761a207
BE
11430 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
11431 && elfsec < elf_numsections (sub)
4fbb74a6
AM
11432 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
11433 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
d33cdfe3
L
11434 {
11435 seen_linkorder++;
11436 linkorder_sec = s;
11437 }
0b52efa6 11438 else
d33cdfe3
L
11439 {
11440 seen_other++;
11441 other_sec = s;
11442 }
0b52efa6
PB
11443 }
11444 else
11445 seen_other++;
d33cdfe3
L
11446
11447 if (seen_other && seen_linkorder)
11448 {
11449 if (other_sec && linkorder_sec)
4eca0228 11450 _bfd_error_handler
695344c0 11451 /* xgettext:c-format */
871b3ab2
AM
11452 (_("%pA has both ordered [`%pA' in %pB] "
11453 "and unordered [`%pA' in %pB] sections"),
63a5468a
AM
11454 o, linkorder_sec, linkorder_sec->owner,
11455 other_sec, other_sec->owner);
d33cdfe3 11456 else
4eca0228 11457 _bfd_error_handler
871b3ab2 11458 (_("%pA has both ordered and unordered sections"), o);
d33cdfe3
L
11459 bfd_set_error (bfd_error_bad_value);
11460 return FALSE;
11461 }
0b52efa6
PB
11462 }
11463
11464 if (!seen_linkorder)
11465 return TRUE;
11466
0b52efa6 11467 sections = (struct bfd_link_order **)
14b1c01e
AM
11468 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
11469 if (sections == NULL)
11470 return FALSE;
0b52efa6 11471 seen_linkorder = 0;
3b36f7e6 11472
8423293d 11473 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6
PB
11474 {
11475 sections[seen_linkorder++] = p;
11476 }
11477 /* Sort the input sections in the order of their linked section. */
11478 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
11479 compare_link_order);
11480
11481 /* Change the offsets of the sections. */
11482 offset = 0;
11483 for (n = 0; n < seen_linkorder; n++)
11484 {
11485 s = sections[n]->u.indirect.section;
461686a3 11486 offset &= ~(bfd_vma) 0 << s->alignment_power;
37b01f6a 11487 s->output_offset = offset / bfd_octets_per_byte (abfd);
0b52efa6
PB
11488 sections[n]->offset = offset;
11489 offset += sections[n]->size;
11490 }
11491
4dd07732 11492 free (sections);
0b52efa6
PB
11493 return TRUE;
11494}
11495
76359541
TP
11496/* Generate an import library in INFO->implib_bfd from symbols in ABFD.
11497 Returns TRUE upon success, FALSE otherwise. */
11498
11499static bfd_boolean
11500elf_output_implib (bfd *abfd, struct bfd_link_info *info)
11501{
11502 bfd_boolean ret = FALSE;
11503 bfd *implib_bfd;
11504 const struct elf_backend_data *bed;
11505 flagword flags;
11506 enum bfd_architecture arch;
11507 unsigned int mach;
11508 asymbol **sympp = NULL;
11509 long symsize;
11510 long symcount;
11511 long src_count;
11512 elf_symbol_type *osymbuf;
11513
11514 implib_bfd = info->out_implib_bfd;
11515 bed = get_elf_backend_data (abfd);
11516
11517 if (!bfd_set_format (implib_bfd, bfd_object))
11518 return FALSE;
11519
046734ff 11520 /* Use flag from executable but make it a relocatable object. */
76359541
TP
11521 flags = bfd_get_file_flags (abfd);
11522 flags &= ~HAS_RELOC;
11523 if (!bfd_set_start_address (implib_bfd, 0)
046734ff 11524 || !bfd_set_file_flags (implib_bfd, flags & ~EXEC_P))
76359541
TP
11525 return FALSE;
11526
11527 /* Copy architecture of output file to import library file. */
11528 arch = bfd_get_arch (abfd);
11529 mach = bfd_get_mach (abfd);
11530 if (!bfd_set_arch_mach (implib_bfd, arch, mach)
11531 && (abfd->target_defaulted
11532 || bfd_get_arch (abfd) != bfd_get_arch (implib_bfd)))
11533 return FALSE;
11534
11535 /* Get symbol table size. */
11536 symsize = bfd_get_symtab_upper_bound (abfd);
11537 if (symsize < 0)
11538 return FALSE;
11539
11540 /* Read in the symbol table. */
11541 sympp = (asymbol **) xmalloc (symsize);
11542 symcount = bfd_canonicalize_symtab (abfd, sympp);
11543 if (symcount < 0)
11544 goto free_sym_buf;
11545
11546 /* Allow the BFD backend to copy any private header data it
11547 understands from the output BFD to the import library BFD. */
11548 if (! bfd_copy_private_header_data (abfd, implib_bfd))
11549 goto free_sym_buf;
11550
11551 /* Filter symbols to appear in the import library. */
11552 if (bed->elf_backend_filter_implib_symbols)
11553 symcount = bed->elf_backend_filter_implib_symbols (abfd, info, sympp,
11554 symcount);
11555 else
11556 symcount = _bfd_elf_filter_global_symbols (abfd, info, sympp, symcount);
11557 if (symcount == 0)
11558 {
5df1bc57 11559 bfd_set_error (bfd_error_no_symbols);
871b3ab2 11560 _bfd_error_handler (_("%pB: no symbol found for import library"),
4eca0228 11561 implib_bfd);
76359541
TP
11562 goto free_sym_buf;
11563 }
11564
11565
11566 /* Make symbols absolute. */
11567 osymbuf = (elf_symbol_type *) bfd_alloc2 (implib_bfd, symcount,
11568 sizeof (*osymbuf));
11569 for (src_count = 0; src_count < symcount; src_count++)
11570 {
11571 memcpy (&osymbuf[src_count], (elf_symbol_type *) sympp[src_count],
11572 sizeof (*osymbuf));
11573 osymbuf[src_count].symbol.section = bfd_abs_section_ptr;
11574 osymbuf[src_count].internal_elf_sym.st_shndx = SHN_ABS;
11575 osymbuf[src_count].symbol.value += sympp[src_count]->section->vma;
11576 osymbuf[src_count].internal_elf_sym.st_value =
11577 osymbuf[src_count].symbol.value;
11578 sympp[src_count] = &osymbuf[src_count].symbol;
11579 }
11580
11581 bfd_set_symtab (implib_bfd, sympp, symcount);
11582
11583 /* Allow the BFD backend to copy any private data it understands
11584 from the output BFD to the import library BFD. This is done last
11585 to permit the routine to look at the filtered symbol table. */
11586 if (! bfd_copy_private_bfd_data (abfd, implib_bfd))
11587 goto free_sym_buf;
11588
11589 if (!bfd_close (implib_bfd))
11590 goto free_sym_buf;
11591
11592 ret = TRUE;
11593
11594free_sym_buf:
11595 free (sympp);
11596 return ret;
11597}
11598
9f7c3e5e
AM
11599static void
11600elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
11601{
11602 asection *o;
11603
11604 if (flinfo->symstrtab != NULL)
ef10c3ac 11605 _bfd_elf_strtab_free (flinfo->symstrtab);
9f7c3e5e
AM
11606 if (flinfo->contents != NULL)
11607 free (flinfo->contents);
11608 if (flinfo->external_relocs != NULL)
11609 free (flinfo->external_relocs);
11610 if (flinfo->internal_relocs != NULL)
11611 free (flinfo->internal_relocs);
11612 if (flinfo->external_syms != NULL)
11613 free (flinfo->external_syms);
11614 if (flinfo->locsym_shndx != NULL)
11615 free (flinfo->locsym_shndx);
11616 if (flinfo->internal_syms != NULL)
11617 free (flinfo->internal_syms);
11618 if (flinfo->indices != NULL)
11619 free (flinfo->indices);
11620 if (flinfo->sections != NULL)
11621 free (flinfo->sections);
9f7c3e5e
AM
11622 if (flinfo->symshndxbuf != NULL)
11623 free (flinfo->symshndxbuf);
11624 for (o = obfd->sections; o != NULL; o = o->next)
11625 {
11626 struct bfd_elf_section_data *esdo = elf_section_data (o);
11627 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
11628 free (esdo->rel.hashes);
11629 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
11630 free (esdo->rela.hashes);
11631 }
11632}
0b52efa6 11633
c152c796
AM
11634/* Do the final step of an ELF link. */
11635
11636bfd_boolean
11637bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
11638{
11639 bfd_boolean dynamic;
11640 bfd_boolean emit_relocs;
11641 bfd *dynobj;
8b127cbc 11642 struct elf_final_link_info flinfo;
91d6fa6a
NC
11643 asection *o;
11644 struct bfd_link_order *p;
11645 bfd *sub;
c152c796
AM
11646 bfd_size_type max_contents_size;
11647 bfd_size_type max_external_reloc_size;
11648 bfd_size_type max_internal_reloc_count;
11649 bfd_size_type max_sym_count;
11650 bfd_size_type max_sym_shndx_count;
c152c796
AM
11651 Elf_Internal_Sym elfsym;
11652 unsigned int i;
11653 Elf_Internal_Shdr *symtab_hdr;
11654 Elf_Internal_Shdr *symtab_shndx_hdr;
c152c796
AM
11655 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11656 struct elf_outext_info eoinfo;
11657 bfd_boolean merged;
11658 size_t relativecount = 0;
11659 asection *reldyn = 0;
11660 bfd_size_type amt;
104d59d1
JM
11661 asection *attr_section = NULL;
11662 bfd_vma attr_size = 0;
11663 const char *std_attrs_section;
64f52338 11664 struct elf_link_hash_table *htab = elf_hash_table (info);
c152c796 11665
64f52338 11666 if (!is_elf_hash_table (htab))
c152c796
AM
11667 return FALSE;
11668
0e1862bb 11669 if (bfd_link_pic (info))
c152c796
AM
11670 abfd->flags |= DYNAMIC;
11671
64f52338
AM
11672 dynamic = htab->dynamic_sections_created;
11673 dynobj = htab->dynobj;
c152c796 11674
0e1862bb 11675 emit_relocs = (bfd_link_relocatable (info)
a4676736 11676 || info->emitrelocations);
c152c796 11677
8b127cbc
AM
11678 flinfo.info = info;
11679 flinfo.output_bfd = abfd;
ef10c3ac 11680 flinfo.symstrtab = _bfd_elf_strtab_init ();
8b127cbc 11681 if (flinfo.symstrtab == NULL)
c152c796
AM
11682 return FALSE;
11683
11684 if (! dynamic)
11685 {
8b127cbc
AM
11686 flinfo.hash_sec = NULL;
11687 flinfo.symver_sec = NULL;
c152c796
AM
11688 }
11689 else
11690 {
3d4d4302 11691 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
202e2356 11692 /* Note that dynsym_sec can be NULL (on VMS). */
3d4d4302 11693 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
c152c796
AM
11694 /* Note that it is OK if symver_sec is NULL. */
11695 }
11696
8b127cbc
AM
11697 flinfo.contents = NULL;
11698 flinfo.external_relocs = NULL;
11699 flinfo.internal_relocs = NULL;
11700 flinfo.external_syms = NULL;
11701 flinfo.locsym_shndx = NULL;
11702 flinfo.internal_syms = NULL;
11703 flinfo.indices = NULL;
11704 flinfo.sections = NULL;
8b127cbc 11705 flinfo.symshndxbuf = NULL;
ffbc01cc 11706 flinfo.filesym_count = 0;
c152c796 11707
104d59d1
JM
11708 /* The object attributes have been merged. Remove the input
11709 sections from the link, and set the contents of the output
11710 secton. */
11711 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
11712 for (o = abfd->sections; o != NULL; o = o->next)
11713 {
11714 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
11715 || strcmp (o->name, ".gnu.attributes") == 0)
11716 {
11717 for (p = o->map_head.link_order; p != NULL; p = p->next)
11718 {
11719 asection *input_section;
11720
11721 if (p->type != bfd_indirect_link_order)
11722 continue;
11723 input_section = p->u.indirect.section;
11724 /* Hack: reset the SEC_HAS_CONTENTS flag so that
11725 elf_link_input_bfd ignores this section. */
11726 input_section->flags &= ~SEC_HAS_CONTENTS;
11727 }
a0c8462f 11728
104d59d1
JM
11729 attr_size = bfd_elf_obj_attr_size (abfd);
11730 if (attr_size)
11731 {
11732 bfd_set_section_size (abfd, o, attr_size);
11733 attr_section = o;
11734 /* Skip this section later on. */
11735 o->map_head.link_order = NULL;
11736 }
11737 else
11738 o->flags |= SEC_EXCLUDE;
11739 }
6e5e9d58
AM
11740 else if ((o->flags & SEC_GROUP) != 0 && o->size == 0)
11741 {
11742 /* Remove empty group section from linker output. */
11743 o->flags |= SEC_EXCLUDE;
11744 bfd_section_list_remove (abfd, o);
11745 abfd->section_count--;
11746 }
104d59d1
JM
11747 }
11748
c152c796
AM
11749 /* Count up the number of relocations we will output for each output
11750 section, so that we know the sizes of the reloc sections. We
11751 also figure out some maximum sizes. */
11752 max_contents_size = 0;
11753 max_external_reloc_size = 0;
11754 max_internal_reloc_count = 0;
11755 max_sym_count = 0;
11756 max_sym_shndx_count = 0;
11757 merged = FALSE;
11758 for (o = abfd->sections; o != NULL; o = o->next)
11759 {
11760 struct bfd_elf_section_data *esdo = elf_section_data (o);
11761 o->reloc_count = 0;
11762
8423293d 11763 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
11764 {
11765 unsigned int reloc_count = 0;
9eaff861 11766 unsigned int additional_reloc_count = 0;
c152c796 11767 struct bfd_elf_section_data *esdi = NULL;
c152c796
AM
11768
11769 if (p->type == bfd_section_reloc_link_order
11770 || p->type == bfd_symbol_reloc_link_order)
11771 reloc_count = 1;
11772 else if (p->type == bfd_indirect_link_order)
11773 {
11774 asection *sec;
11775
11776 sec = p->u.indirect.section;
c152c796
AM
11777
11778 /* Mark all sections which are to be included in the
11779 link. This will normally be every section. We need
11780 to do this so that we can identify any sections which
11781 the linker has decided to not include. */
11782 sec->linker_mark = TRUE;
11783
11784 if (sec->flags & SEC_MERGE)
11785 merged = TRUE;
11786
eea6121a
AM
11787 if (sec->rawsize > max_contents_size)
11788 max_contents_size = sec->rawsize;
11789 if (sec->size > max_contents_size)
11790 max_contents_size = sec->size;
c152c796 11791
c152c796
AM
11792 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
11793 && (sec->owner->flags & DYNAMIC) == 0)
11794 {
11795 size_t sym_count;
11796
a961cdd5
AM
11797 /* We are interested in just local symbols, not all
11798 symbols. */
c152c796
AM
11799 if (elf_bad_symtab (sec->owner))
11800 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
11801 / bed->s->sizeof_sym);
11802 else
11803 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
11804
11805 if (sym_count > max_sym_count)
11806 max_sym_count = sym_count;
11807
11808 if (sym_count > max_sym_shndx_count
6a40cf0c 11809 && elf_symtab_shndx_list (sec->owner) != NULL)
c152c796
AM
11810 max_sym_shndx_count = sym_count;
11811
a961cdd5
AM
11812 if (esdo->this_hdr.sh_type == SHT_REL
11813 || esdo->this_hdr.sh_type == SHT_RELA)
11814 /* Some backends use reloc_count in relocation sections
11815 to count particular types of relocs. Of course,
11816 reloc sections themselves can't have relocations. */
11817 ;
11818 else if (emit_relocs)
11819 {
11820 reloc_count = sec->reloc_count;
11821 if (bed->elf_backend_count_additional_relocs)
11822 {
11823 int c;
11824 c = (*bed->elf_backend_count_additional_relocs) (sec);
11825 additional_reloc_count += c;
11826 }
11827 }
11828 else if (bed->elf_backend_count_relocs)
11829 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
11830
11831 esdi = elf_section_data (sec);
11832
c152c796
AM
11833 if ((sec->flags & SEC_RELOC) != 0)
11834 {
d4730f92 11835 size_t ext_size = 0;
c152c796 11836
d4730f92
BS
11837 if (esdi->rel.hdr != NULL)
11838 ext_size = esdi->rel.hdr->sh_size;
11839 if (esdi->rela.hdr != NULL)
11840 ext_size += esdi->rela.hdr->sh_size;
7326c758 11841
c152c796
AM
11842 if (ext_size > max_external_reloc_size)
11843 max_external_reloc_size = ext_size;
11844 if (sec->reloc_count > max_internal_reloc_count)
11845 max_internal_reloc_count = sec->reloc_count;
11846 }
11847 }
11848 }
11849
11850 if (reloc_count == 0)
11851 continue;
11852
9eaff861 11853 reloc_count += additional_reloc_count;
c152c796
AM
11854 o->reloc_count += reloc_count;
11855
0e1862bb 11856 if (p->type == bfd_indirect_link_order && emit_relocs)
c152c796 11857 {
d4730f92 11858 if (esdi->rel.hdr)
9eaff861 11859 {
491d01d3 11860 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
9eaff861
AO
11861 esdo->rel.count += additional_reloc_count;
11862 }
d4730f92 11863 if (esdi->rela.hdr)
9eaff861 11864 {
491d01d3 11865 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
9eaff861
AO
11866 esdo->rela.count += additional_reloc_count;
11867 }
d4730f92
BS
11868 }
11869 else
11870 {
11871 if (o->use_rela_p)
11872 esdo->rela.count += reloc_count;
2c2b4ed4 11873 else
d4730f92 11874 esdo->rel.count += reloc_count;
c152c796 11875 }
c152c796
AM
11876 }
11877
9eaff861 11878 if (o->reloc_count > 0)
c152c796
AM
11879 o->flags |= SEC_RELOC;
11880 else
11881 {
11882 /* Explicitly clear the SEC_RELOC flag. The linker tends to
11883 set it (this is probably a bug) and if it is set
11884 assign_section_numbers will create a reloc section. */
11885 o->flags &=~ SEC_RELOC;
11886 }
11887
11888 /* If the SEC_ALLOC flag is not set, force the section VMA to
11889 zero. This is done in elf_fake_sections as well, but forcing
11890 the VMA to 0 here will ensure that relocs against these
11891 sections are handled correctly. */
11892 if ((o->flags & SEC_ALLOC) == 0
11893 && ! o->user_set_vma)
11894 o->vma = 0;
11895 }
11896
0e1862bb 11897 if (! bfd_link_relocatable (info) && merged)
64f52338 11898 elf_link_hash_traverse (htab, _bfd_elf_link_sec_merge_syms, abfd);
c152c796
AM
11899
11900 /* Figure out the file positions for everything but the symbol table
11901 and the relocs. We set symcount to force assign_section_numbers
11902 to create a symbol table. */
8539e4e8 11903 bfd_get_symcount (abfd) = info->strip != strip_all || emit_relocs;
c152c796
AM
11904 BFD_ASSERT (! abfd->output_has_begun);
11905 if (! _bfd_elf_compute_section_file_positions (abfd, info))
11906 goto error_return;
11907
ee75fd95 11908 /* Set sizes, and assign file positions for reloc sections. */
c152c796
AM
11909 for (o = abfd->sections; o != NULL; o = o->next)
11910 {
d4730f92 11911 struct bfd_elf_section_data *esdo = elf_section_data (o);
c152c796
AM
11912 if ((o->flags & SEC_RELOC) != 0)
11913 {
d4730f92 11914 if (esdo->rel.hdr
9eaff861 11915 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
c152c796
AM
11916 goto error_return;
11917
d4730f92 11918 if (esdo->rela.hdr
9eaff861 11919 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
c152c796
AM
11920 goto error_return;
11921 }
11922
11923 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
11924 to count upwards while actually outputting the relocations. */
d4730f92
BS
11925 esdo->rel.count = 0;
11926 esdo->rela.count = 0;
0ce398f1
L
11927
11928 if (esdo->this_hdr.sh_offset == (file_ptr) -1)
11929 {
11930 /* Cache the section contents so that they can be compressed
11931 later. Use bfd_malloc since it will be freed by
11932 bfd_compress_section_contents. */
11933 unsigned char *contents = esdo->this_hdr.contents;
11934 if ((o->flags & SEC_ELF_COMPRESS) == 0 || contents != NULL)
11935 abort ();
11936 contents
11937 = (unsigned char *) bfd_malloc (esdo->this_hdr.sh_size);
11938 if (contents == NULL)
11939 goto error_return;
11940 esdo->this_hdr.contents = contents;
11941 }
c152c796
AM
11942 }
11943
c152c796 11944 /* We have now assigned file positions for all the sections except
a485e98e
AM
11945 .symtab, .strtab, and non-loaded reloc sections. We start the
11946 .symtab section at the current file position, and write directly
11947 to it. We build the .strtab section in memory. */
c152c796
AM
11948 bfd_get_symcount (abfd) = 0;
11949 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11950 /* sh_name is set in prep_headers. */
11951 symtab_hdr->sh_type = SHT_SYMTAB;
11952 /* sh_flags, sh_addr and sh_size all start off zero. */
11953 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
11954 /* sh_link is set in assign_section_numbers. */
11955 /* sh_info is set below. */
11956 /* sh_offset is set just below. */
72de5009 11957 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
c152c796 11958
ef10c3ac
L
11959 if (max_sym_count < 20)
11960 max_sym_count = 20;
64f52338 11961 htab->strtabsize = max_sym_count;
ef10c3ac 11962 amt = max_sym_count * sizeof (struct elf_sym_strtab);
64f52338
AM
11963 htab->strtab = (struct elf_sym_strtab *) bfd_malloc (amt);
11964 if (htab->strtab == NULL)
c152c796 11965 goto error_return;
ef10c3ac
L
11966 /* The real buffer will be allocated in elf_link_swap_symbols_out. */
11967 flinfo.symshndxbuf
11968 = (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF)
11969 ? (Elf_External_Sym_Shndx *) -1 : NULL);
c152c796 11970
8539e4e8 11971 if (info->strip != strip_all || emit_relocs)
c152c796 11972 {
8539e4e8
AM
11973 file_ptr off = elf_next_file_pos (abfd);
11974
11975 _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
11976
11977 /* Note that at this point elf_next_file_pos (abfd) is
11978 incorrect. We do not yet know the size of the .symtab section.
11979 We correct next_file_pos below, after we do know the size. */
11980
11981 /* Start writing out the symbol table. The first symbol is always a
11982 dummy symbol. */
c152c796
AM
11983 elfsym.st_value = 0;
11984 elfsym.st_size = 0;
11985 elfsym.st_info = 0;
11986 elfsym.st_other = 0;
11987 elfsym.st_shndx = SHN_UNDEF;
35fc36a8 11988 elfsym.st_target_internal = 0;
ef10c3ac
L
11989 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym,
11990 bfd_und_section_ptr, NULL) != 1)
c152c796 11991 goto error_return;
c152c796 11992
8539e4e8
AM
11993 /* Output a symbol for each section. We output these even if we are
11994 discarding local symbols, since they are used for relocs. These
11995 symbols have no names. We store the index of each one in the
11996 index field of the section, so that we can find it again when
11997 outputting relocs. */
11998
c152c796
AM
11999 elfsym.st_size = 0;
12000 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
12001 elfsym.st_other = 0;
f0b5bb34 12002 elfsym.st_value = 0;
35fc36a8 12003 elfsym.st_target_internal = 0;
c152c796
AM
12004 for (i = 1; i < elf_numsections (abfd); i++)
12005 {
12006 o = bfd_section_from_elf_index (abfd, i);
12007 if (o != NULL)
f0b5bb34
AM
12008 {
12009 o->target_index = bfd_get_symcount (abfd);
12010 elfsym.st_shndx = i;
0e1862bb 12011 if (!bfd_link_relocatable (info))
f0b5bb34 12012 elfsym.st_value = o->vma;
ef10c3ac
L
12013 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym, o,
12014 NULL) != 1)
f0b5bb34
AM
12015 goto error_return;
12016 }
c152c796
AM
12017 }
12018 }
12019
12020 /* Allocate some memory to hold information read in from the input
12021 files. */
12022 if (max_contents_size != 0)
12023 {
8b127cbc
AM
12024 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
12025 if (flinfo.contents == NULL)
c152c796
AM
12026 goto error_return;
12027 }
12028
12029 if (max_external_reloc_size != 0)
12030 {
8b127cbc
AM
12031 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
12032 if (flinfo.external_relocs == NULL)
c152c796
AM
12033 goto error_return;
12034 }
12035
12036 if (max_internal_reloc_count != 0)
12037 {
056bafd4 12038 amt = max_internal_reloc_count * sizeof (Elf_Internal_Rela);
8b127cbc
AM
12039 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
12040 if (flinfo.internal_relocs == NULL)
c152c796
AM
12041 goto error_return;
12042 }
12043
12044 if (max_sym_count != 0)
12045 {
12046 amt = max_sym_count * bed->s->sizeof_sym;
8b127cbc
AM
12047 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
12048 if (flinfo.external_syms == NULL)
c152c796
AM
12049 goto error_return;
12050
12051 amt = max_sym_count * sizeof (Elf_Internal_Sym);
8b127cbc
AM
12052 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
12053 if (flinfo.internal_syms == NULL)
c152c796
AM
12054 goto error_return;
12055
12056 amt = max_sym_count * sizeof (long);
8b127cbc
AM
12057 flinfo.indices = (long int *) bfd_malloc (amt);
12058 if (flinfo.indices == NULL)
c152c796
AM
12059 goto error_return;
12060
12061 amt = max_sym_count * sizeof (asection *);
8b127cbc
AM
12062 flinfo.sections = (asection **) bfd_malloc (amt);
12063 if (flinfo.sections == NULL)
c152c796
AM
12064 goto error_return;
12065 }
12066
12067 if (max_sym_shndx_count != 0)
12068 {
12069 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
8b127cbc
AM
12070 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
12071 if (flinfo.locsym_shndx == NULL)
c152c796
AM
12072 goto error_return;
12073 }
12074
64f52338 12075 if (htab->tls_sec)
c152c796
AM
12076 {
12077 bfd_vma base, end = 0;
12078 asection *sec;
12079
64f52338 12080 for (sec = htab->tls_sec;
c152c796
AM
12081 sec && (sec->flags & SEC_THREAD_LOCAL);
12082 sec = sec->next)
12083 {
3a800eb9 12084 bfd_size_type size = sec->size;
c152c796 12085
3a800eb9
AM
12086 if (size == 0
12087 && (sec->flags & SEC_HAS_CONTENTS) == 0)
c152c796 12088 {
91d6fa6a
NC
12089 struct bfd_link_order *ord = sec->map_tail.link_order;
12090
12091 if (ord != NULL)
12092 size = ord->offset + ord->size;
c152c796
AM
12093 }
12094 end = sec->vma + size;
12095 }
64f52338 12096 base = htab->tls_sec->vma;
7dc98aea
RO
12097 /* Only align end of TLS section if static TLS doesn't have special
12098 alignment requirements. */
12099 if (bed->static_tls_alignment == 1)
64f52338
AM
12100 end = align_power (end, htab->tls_sec->alignment_power);
12101 htab->tls_size = end - base;
c152c796
AM
12102 }
12103
0b52efa6
PB
12104 /* Reorder SHF_LINK_ORDER sections. */
12105 for (o = abfd->sections; o != NULL; o = o->next)
12106 {
12107 if (!elf_fixup_link_order (abfd, o))
12108 return FALSE;
12109 }
12110
2f0c68f2
CM
12111 if (!_bfd_elf_fixup_eh_frame_hdr (info))
12112 return FALSE;
12113
c152c796
AM
12114 /* Since ELF permits relocations to be against local symbols, we
12115 must have the local symbols available when we do the relocations.
12116 Since we would rather only read the local symbols once, and we
12117 would rather not keep them in memory, we handle all the
12118 relocations for a single input file at the same time.
12119
12120 Unfortunately, there is no way to know the total number of local
12121 symbols until we have seen all of them, and the local symbol
12122 indices precede the global symbol indices. This means that when
12123 we are generating relocatable output, and we see a reloc against
12124 a global symbol, we can not know the symbol index until we have
12125 finished examining all the local symbols to see which ones we are
12126 going to output. To deal with this, we keep the relocations in
12127 memory, and don't output them until the end of the link. This is
12128 an unfortunate waste of memory, but I don't see a good way around
12129 it. Fortunately, it only happens when performing a relocatable
12130 link, which is not the common case. FIXME: If keep_memory is set
12131 we could write the relocs out and then read them again; I don't
12132 know how bad the memory loss will be. */
12133
c72f2fb2 12134 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
12135 sub->output_has_begun = FALSE;
12136 for (o = abfd->sections; o != NULL; o = o->next)
12137 {
8423293d 12138 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
12139 {
12140 if (p->type == bfd_indirect_link_order
12141 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
12142 == bfd_target_elf_flavour)
12143 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
12144 {
12145 if (! sub->output_has_begun)
12146 {
8b127cbc 12147 if (! elf_link_input_bfd (&flinfo, sub))
c152c796
AM
12148 goto error_return;
12149 sub->output_has_begun = TRUE;
12150 }
12151 }
12152 else if (p->type == bfd_section_reloc_link_order
12153 || p->type == bfd_symbol_reloc_link_order)
12154 {
12155 if (! elf_reloc_link_order (abfd, info, o, p))
12156 goto error_return;
12157 }
12158 else
12159 {
12160 if (! _bfd_default_link_order (abfd, info, o, p))
351f65ca
L
12161 {
12162 if (p->type == bfd_indirect_link_order
12163 && (bfd_get_flavour (sub)
12164 == bfd_target_elf_flavour)
12165 && (elf_elfheader (sub)->e_ident[EI_CLASS]
12166 != bed->s->elfclass))
12167 {
12168 const char *iclass, *oclass;
12169
aebf9be7 12170 switch (bed->s->elfclass)
351f65ca 12171 {
aebf9be7
NC
12172 case ELFCLASS64: oclass = "ELFCLASS64"; break;
12173 case ELFCLASS32: oclass = "ELFCLASS32"; break;
12174 case ELFCLASSNONE: oclass = "ELFCLASSNONE"; break;
12175 default: abort ();
351f65ca 12176 }
aebf9be7
NC
12177
12178 switch (elf_elfheader (sub)->e_ident[EI_CLASS])
351f65ca 12179 {
aebf9be7
NC
12180 case ELFCLASS64: iclass = "ELFCLASS64"; break;
12181 case ELFCLASS32: iclass = "ELFCLASS32"; break;
12182 case ELFCLASSNONE: iclass = "ELFCLASSNONE"; break;
12183 default: abort ();
351f65ca
L
12184 }
12185
12186 bfd_set_error (bfd_error_wrong_format);
4eca0228 12187 _bfd_error_handler
695344c0 12188 /* xgettext:c-format */
871b3ab2 12189 (_("%pB: file class %s incompatible with %s"),
351f65ca
L
12190 sub, iclass, oclass);
12191 }
12192
12193 goto error_return;
12194 }
c152c796
AM
12195 }
12196 }
12197 }
12198
c0f00686
L
12199 /* Free symbol buffer if needed. */
12200 if (!info->reduce_memory_overheads)
12201 {
c72f2fb2 12202 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3fcd97f1
JJ
12203 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
12204 && elf_tdata (sub)->symbuf)
c0f00686
L
12205 {
12206 free (elf_tdata (sub)->symbuf);
12207 elf_tdata (sub)->symbuf = NULL;
12208 }
12209 }
12210
c152c796
AM
12211 /* Output any global symbols that got converted to local in a
12212 version script or due to symbol visibility. We do this in a
12213 separate step since ELF requires all local symbols to appear
12214 prior to any global symbols. FIXME: We should only do this if
12215 some global symbols were, in fact, converted to become local.
12216 FIXME: Will this work correctly with the Irix 5 linker? */
12217 eoinfo.failed = FALSE;
8b127cbc 12218 eoinfo.flinfo = &flinfo;
c152c796 12219 eoinfo.localsyms = TRUE;
34a79995 12220 eoinfo.file_sym_done = FALSE;
7686d77d 12221 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
12222 if (eoinfo.failed)
12223 return FALSE;
12224
4e617b1e
PB
12225 /* If backend needs to output some local symbols not present in the hash
12226 table, do it now. */
8539e4e8
AM
12227 if (bed->elf_backend_output_arch_local_syms
12228 && (info->strip != strip_all || emit_relocs))
4e617b1e 12229 {
6e0b88f1 12230 typedef int (*out_sym_func)
4e617b1e
PB
12231 (void *, const char *, Elf_Internal_Sym *, asection *,
12232 struct elf_link_hash_entry *);
12233
12234 if (! ((*bed->elf_backend_output_arch_local_syms)
ef10c3ac
L
12235 (abfd, info, &flinfo,
12236 (out_sym_func) elf_link_output_symstrtab)))
4e617b1e
PB
12237 return FALSE;
12238 }
12239
c152c796
AM
12240 /* That wrote out all the local symbols. Finish up the symbol table
12241 with the global symbols. Even if we want to strip everything we
12242 can, we still need to deal with those global symbols that got
12243 converted to local in a version script. */
12244
12245 /* The sh_info field records the index of the first non local symbol. */
12246 symtab_hdr->sh_info = bfd_get_symcount (abfd);
12247
12248 if (dynamic
64f52338
AM
12249 && htab->dynsym != NULL
12250 && htab->dynsym->output_section != bfd_abs_section_ptr)
c152c796
AM
12251 {
12252 Elf_Internal_Sym sym;
64f52338 12253 bfd_byte *dynsym = htab->dynsym->contents;
90ac2420 12254
64f52338
AM
12255 o = htab->dynsym->output_section;
12256 elf_section_data (o)->this_hdr.sh_info = htab->local_dynsymcount + 1;
c152c796
AM
12257
12258 /* Write out the section symbols for the output sections. */
0e1862bb 12259 if (bfd_link_pic (info)
64f52338 12260 || htab->is_relocatable_executable)
c152c796
AM
12261 {
12262 asection *s;
12263
12264 sym.st_size = 0;
12265 sym.st_name = 0;
12266 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
12267 sym.st_other = 0;
35fc36a8 12268 sym.st_target_internal = 0;
c152c796
AM
12269
12270 for (s = abfd->sections; s != NULL; s = s->next)
12271 {
12272 int indx;
12273 bfd_byte *dest;
12274 long dynindx;
12275
c152c796 12276 dynindx = elf_section_data (s)->dynindx;
8c37241b
JJ
12277 if (dynindx <= 0)
12278 continue;
12279 indx = elf_section_data (s)->this_idx;
c152c796
AM
12280 BFD_ASSERT (indx > 0);
12281 sym.st_shndx = indx;
c0d5a53d
L
12282 if (! check_dynsym (abfd, &sym))
12283 return FALSE;
c152c796
AM
12284 sym.st_value = s->vma;
12285 dest = dynsym + dynindx * bed->s->sizeof_sym;
12286 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12287 }
c152c796
AM
12288 }
12289
12290 /* Write out the local dynsyms. */
64f52338 12291 if (htab->dynlocal)
c152c796
AM
12292 {
12293 struct elf_link_local_dynamic_entry *e;
64f52338 12294 for (e = htab->dynlocal; e ; e = e->next)
c152c796
AM
12295 {
12296 asection *s;
12297 bfd_byte *dest;
12298
935bd1e0 12299 /* Copy the internal symbol and turn off visibility.
c152c796
AM
12300 Note that we saved a word of storage and overwrote
12301 the original st_name with the dynstr_index. */
12302 sym = e->isym;
935bd1e0 12303 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
c152c796 12304
cb33740c
AM
12305 s = bfd_section_from_elf_index (e->input_bfd,
12306 e->isym.st_shndx);
12307 if (s != NULL)
c152c796 12308 {
c152c796
AM
12309 sym.st_shndx =
12310 elf_section_data (s->output_section)->this_idx;
c0d5a53d
L
12311 if (! check_dynsym (abfd, &sym))
12312 return FALSE;
c152c796
AM
12313 sym.st_value = (s->output_section->vma
12314 + s->output_offset
12315 + e->isym.st_value);
12316 }
12317
c152c796
AM
12318 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
12319 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12320 }
12321 }
c152c796
AM
12322 }
12323
12324 /* We get the global symbols from the hash table. */
12325 eoinfo.failed = FALSE;
12326 eoinfo.localsyms = FALSE;
8b127cbc 12327 eoinfo.flinfo = &flinfo;
7686d77d 12328 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
12329 if (eoinfo.failed)
12330 return FALSE;
12331
12332 /* If backend needs to output some symbols not present in the hash
12333 table, do it now. */
8539e4e8
AM
12334 if (bed->elf_backend_output_arch_syms
12335 && (info->strip != strip_all || emit_relocs))
c152c796 12336 {
6e0b88f1 12337 typedef int (*out_sym_func)
c152c796
AM
12338 (void *, const char *, Elf_Internal_Sym *, asection *,
12339 struct elf_link_hash_entry *);
12340
12341 if (! ((*bed->elf_backend_output_arch_syms)
ef10c3ac
L
12342 (abfd, info, &flinfo,
12343 (out_sym_func) elf_link_output_symstrtab)))
c152c796
AM
12344 return FALSE;
12345 }
12346
ef10c3ac
L
12347 /* Finalize the .strtab section. */
12348 _bfd_elf_strtab_finalize (flinfo.symstrtab);
12349
12350 /* Swap out the .strtab section. */
12351 if (!elf_link_swap_symbols_out (&flinfo))
c152c796
AM
12352 return FALSE;
12353
12354 /* Now we know the size of the symtab section. */
c152c796
AM
12355 if (bfd_get_symcount (abfd) > 0)
12356 {
ee3b52e9
L
12357 /* Finish up and write out the symbol string table (.strtab)
12358 section. */
ad32986f 12359 Elf_Internal_Shdr *symstrtab_hdr = NULL;
8539e4e8
AM
12360 file_ptr off = symtab_hdr->sh_offset + symtab_hdr->sh_size;
12361
ad32986f 12362 if (elf_symtab_shndx_list (abfd))
8539e4e8 12363 {
ad32986f 12364 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8539e4e8 12365
ad32986f
NC
12366 if (symtab_shndx_hdr != NULL && symtab_shndx_hdr->sh_name != 0)
12367 {
12368 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
12369 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
12370 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
12371 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
12372 symtab_shndx_hdr->sh_size = amt;
8539e4e8 12373
ad32986f
NC
12374 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
12375 off, TRUE);
12376
12377 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
12378 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
12379 return FALSE;
12380 }
8539e4e8 12381 }
ee3b52e9
L
12382
12383 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
12384 /* sh_name was set in prep_headers. */
12385 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 12386 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
ee3b52e9 12387 symstrtab_hdr->sh_addr = 0;
ef10c3ac 12388 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (flinfo.symstrtab);
ee3b52e9
L
12389 symstrtab_hdr->sh_entsize = 0;
12390 symstrtab_hdr->sh_link = 0;
12391 symstrtab_hdr->sh_info = 0;
12392 /* sh_offset is set just below. */
12393 symstrtab_hdr->sh_addralign = 1;
12394
12395 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr,
12396 off, TRUE);
12397 elf_next_file_pos (abfd) = off;
12398
c152c796 12399 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 12400 || ! _bfd_elf_strtab_emit (abfd, flinfo.symstrtab))
c152c796
AM
12401 return FALSE;
12402 }
12403
76359541
TP
12404 if (info->out_implib_bfd && !elf_output_implib (abfd, info))
12405 {
871b3ab2 12406 _bfd_error_handler (_("%pB: failed to generate import library"),
4eca0228 12407 info->out_implib_bfd);
76359541
TP
12408 return FALSE;
12409 }
12410
c152c796
AM
12411 /* Adjust the relocs to have the correct symbol indices. */
12412 for (o = abfd->sections; o != NULL; o = o->next)
12413 {
d4730f92 12414 struct bfd_elf_section_data *esdo = elf_section_data (o);
28dbcedc 12415 bfd_boolean sort;
10bbbc1d 12416
c152c796
AM
12417 if ((o->flags & SEC_RELOC) == 0)
12418 continue;
12419
28dbcedc 12420 sort = bed->sort_relocs_p == NULL || (*bed->sort_relocs_p) (o);
bca6d0e3 12421 if (esdo->rel.hdr != NULL
10bbbc1d 12422 && !elf_link_adjust_relocs (abfd, o, &esdo->rel, sort, info))
bca6d0e3
AM
12423 return FALSE;
12424 if (esdo->rela.hdr != NULL
10bbbc1d 12425 && !elf_link_adjust_relocs (abfd, o, &esdo->rela, sort, info))
bca6d0e3 12426 return FALSE;
c152c796
AM
12427
12428 /* Set the reloc_count field to 0 to prevent write_relocs from
12429 trying to swap the relocs out itself. */
12430 o->reloc_count = 0;
12431 }
12432
12433 if (dynamic && info->combreloc && dynobj != NULL)
12434 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
12435
12436 /* If we are linking against a dynamic object, or generating a
12437 shared library, finish up the dynamic linking information. */
12438 if (dynamic)
12439 {
12440 bfd_byte *dyncon, *dynconend;
12441
12442 /* Fix up .dynamic entries. */
3d4d4302 12443 o = bfd_get_linker_section (dynobj, ".dynamic");
c152c796
AM
12444 BFD_ASSERT (o != NULL);
12445
12446 dyncon = o->contents;
eea6121a 12447 dynconend = o->contents + o->size;
c152c796
AM
12448 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12449 {
12450 Elf_Internal_Dyn dyn;
12451 const char *name;
12452 unsigned int type;
64487780
AM
12453 bfd_size_type sh_size;
12454 bfd_vma sh_addr;
c152c796
AM
12455
12456 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12457
12458 switch (dyn.d_tag)
12459 {
12460 default:
12461 continue;
12462 case DT_NULL:
12463 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
12464 {
12465 switch (elf_section_data (reldyn)->this_hdr.sh_type)
12466 {
12467 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
12468 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
12469 default: continue;
12470 }
12471 dyn.d_un.d_val = relativecount;
12472 relativecount = 0;
12473 break;
12474 }
12475 continue;
12476
12477 case DT_INIT:
12478 name = info->init_function;
12479 goto get_sym;
12480 case DT_FINI:
12481 name = info->fini_function;
12482 get_sym:
12483 {
12484 struct elf_link_hash_entry *h;
12485
64f52338 12486 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
c152c796
AM
12487 if (h != NULL
12488 && (h->root.type == bfd_link_hash_defined
12489 || h->root.type == bfd_link_hash_defweak))
12490 {
bef26483 12491 dyn.d_un.d_ptr = h->root.u.def.value;
c152c796
AM
12492 o = h->root.u.def.section;
12493 if (o->output_section != NULL)
bef26483 12494 dyn.d_un.d_ptr += (o->output_section->vma
c152c796
AM
12495 + o->output_offset);
12496 else
12497 {
12498 /* The symbol is imported from another shared
12499 library and does not apply to this one. */
bef26483 12500 dyn.d_un.d_ptr = 0;
c152c796
AM
12501 }
12502 break;
12503 }
12504 }
12505 continue;
12506
12507 case DT_PREINIT_ARRAYSZ:
12508 name = ".preinit_array";
4ade44b7 12509 goto get_out_size;
c152c796
AM
12510 case DT_INIT_ARRAYSZ:
12511 name = ".init_array";
4ade44b7 12512 goto get_out_size;
c152c796
AM
12513 case DT_FINI_ARRAYSZ:
12514 name = ".fini_array";
4ade44b7 12515 get_out_size:
c152c796
AM
12516 o = bfd_get_section_by_name (abfd, name);
12517 if (o == NULL)
12518 {
4eca0228 12519 _bfd_error_handler
4ade44b7 12520 (_("could not find section %s"), name);
c152c796
AM
12521 goto error_return;
12522 }
eea6121a 12523 if (o->size == 0)
4eca0228 12524 _bfd_error_handler
c152c796 12525 (_("warning: %s section has zero size"), name);
eea6121a 12526 dyn.d_un.d_val = o->size;
c152c796
AM
12527 break;
12528
12529 case DT_PREINIT_ARRAY:
12530 name = ".preinit_array";
4ade44b7 12531 goto get_out_vma;
c152c796
AM
12532 case DT_INIT_ARRAY:
12533 name = ".init_array";
4ade44b7 12534 goto get_out_vma;
c152c796
AM
12535 case DT_FINI_ARRAY:
12536 name = ".fini_array";
4ade44b7
AM
12537 get_out_vma:
12538 o = bfd_get_section_by_name (abfd, name);
12539 goto do_vma;
c152c796
AM
12540
12541 case DT_HASH:
12542 name = ".hash";
12543 goto get_vma;
fdc90cb4
JJ
12544 case DT_GNU_HASH:
12545 name = ".gnu.hash";
12546 goto get_vma;
c152c796
AM
12547 case DT_STRTAB:
12548 name = ".dynstr";
12549 goto get_vma;
12550 case DT_SYMTAB:
12551 name = ".dynsym";
12552 goto get_vma;
12553 case DT_VERDEF:
12554 name = ".gnu.version_d";
12555 goto get_vma;
12556 case DT_VERNEED:
12557 name = ".gnu.version_r";
12558 goto get_vma;
12559 case DT_VERSYM:
12560 name = ".gnu.version";
12561 get_vma:
4ade44b7
AM
12562 o = bfd_get_linker_section (dynobj, name);
12563 do_vma:
b3293efa 12564 if (o == NULL || bfd_is_abs_section (o->output_section))
c152c796 12565 {
4eca0228 12566 _bfd_error_handler
4ade44b7 12567 (_("could not find section %s"), name);
c152c796
AM
12568 goto error_return;
12569 }
894891db
NC
12570 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
12571 {
4eca0228 12572 _bfd_error_handler
894891db
NC
12573 (_("warning: section '%s' is being made into a note"), name);
12574 bfd_set_error (bfd_error_nonrepresentable_section);
12575 goto error_return;
12576 }
4ade44b7 12577 dyn.d_un.d_ptr = o->output_section->vma + o->output_offset;
c152c796
AM
12578 break;
12579
12580 case DT_REL:
12581 case DT_RELA:
12582 case DT_RELSZ:
12583 case DT_RELASZ:
12584 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
12585 type = SHT_REL;
12586 else
12587 type = SHT_RELA;
64487780
AM
12588 sh_size = 0;
12589 sh_addr = 0;
c152c796
AM
12590 for (i = 1; i < elf_numsections (abfd); i++)
12591 {
12592 Elf_Internal_Shdr *hdr;
12593
12594 hdr = elf_elfsections (abfd)[i];
12595 if (hdr->sh_type == type
12596 && (hdr->sh_flags & SHF_ALLOC) != 0)
12597 {
64487780
AM
12598 sh_size += hdr->sh_size;
12599 if (sh_addr == 0
12600 || sh_addr > hdr->sh_addr)
12601 sh_addr = hdr->sh_addr;
c152c796
AM
12602 }
12603 }
64487780 12604
64f52338
AM
12605 if (bed->dtrel_excludes_plt && htab->srelplt != NULL)
12606 {
12607 /* Don't count procedure linkage table relocs in the
12608 overall reloc count. */
64487780
AM
12609 sh_size -= htab->srelplt->size;
12610 if (sh_size == 0)
12611 /* If the size is zero, make the address zero too.
12612 This is to avoid a glibc bug. If the backend
12613 emits DT_RELA/DT_RELASZ even when DT_RELASZ is
12614 zero, then we'll put DT_RELA at the end of
12615 DT_JMPREL. glibc will interpret the end of
12616 DT_RELA matching the end of DT_JMPREL as the
12617 case where DT_RELA includes DT_JMPREL, and for
12618 LD_BIND_NOW will decide that processing DT_RELA
12619 will process the PLT relocs too. Net result:
12620 No PLT relocs applied. */
12621 sh_addr = 0;
12622
64f52338
AM
12623 /* If .rela.plt is the first .rela section, exclude
12624 it from DT_RELA. */
64487780
AM
12625 else if (sh_addr == (htab->srelplt->output_section->vma
12626 + htab->srelplt->output_offset))
12627 sh_addr += htab->srelplt->size;
64f52338 12628 }
64487780
AM
12629
12630 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
12631 dyn.d_un.d_val = sh_size;
12632 else
12633 dyn.d_un.d_ptr = sh_addr;
c152c796
AM
12634 break;
12635 }
12636 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
12637 }
12638 }
12639
12640 /* If we have created any dynamic sections, then output them. */
12641 if (dynobj != NULL)
12642 {
12643 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
12644 goto error_return;
12645
943284cc 12646 /* Check for DT_TEXTREL (late, in case the backend removes it). */
0e1862bb 12647 if (((info->warn_shared_textrel && bfd_link_pic (info))
be7b303d 12648 || info->error_textrel)
3d4d4302 12649 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
943284cc
DJ
12650 {
12651 bfd_byte *dyncon, *dynconend;
12652
943284cc
DJ
12653 dyncon = o->contents;
12654 dynconend = o->contents + o->size;
12655 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12656 {
12657 Elf_Internal_Dyn dyn;
12658
12659 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12660
12661 if (dyn.d_tag == DT_TEXTREL)
12662 {
c192a133
AM
12663 if (info->error_textrel)
12664 info->callbacks->einfo
9793eb77 12665 (_("%P%X: read-only segment has dynamic relocations\n"));
c192a133
AM
12666 else
12667 info->callbacks->einfo
9793eb77 12668 (_("%P: warning: creating a DT_TEXTREL in a shared object\n"));
943284cc
DJ
12669 break;
12670 }
12671 }
12672 }
12673
c152c796
AM
12674 for (o = dynobj->sections; o != NULL; o = o->next)
12675 {
12676 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 12677 || o->size == 0
c152c796
AM
12678 || o->output_section == bfd_abs_section_ptr)
12679 continue;
12680 if ((o->flags & SEC_LINKER_CREATED) == 0)
12681 {
12682 /* At this point, we are only interested in sections
12683 created by _bfd_elf_link_create_dynamic_sections. */
12684 continue;
12685 }
64f52338 12686 if (htab->stab_info.stabstr == o)
3722b82f 12687 continue;
64f52338 12688 if (htab->eh_info.hdr_sec == o)
eea6121a 12689 continue;
3d4d4302 12690 if (strcmp (o->name, ".dynstr") != 0)
c152c796
AM
12691 {
12692 if (! bfd_set_section_contents (abfd, o->output_section,
12693 o->contents,
37b01f6a
DG
12694 (file_ptr) o->output_offset
12695 * bfd_octets_per_byte (abfd),
eea6121a 12696 o->size))
c152c796
AM
12697 goto error_return;
12698 }
12699 else
12700 {
12701 /* The contents of the .dynstr section are actually in a
12702 stringtab. */
8539e4e8
AM
12703 file_ptr off;
12704
c152c796
AM
12705 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
12706 if (bfd_seek (abfd, off, SEEK_SET) != 0
64f52338 12707 || !_bfd_elf_strtab_emit (abfd, htab->dynstr))
c152c796
AM
12708 goto error_return;
12709 }
12710 }
12711 }
12712
7bdf4127 12713 if (!info->resolve_section_groups)
c152c796
AM
12714 {
12715 bfd_boolean failed = FALSE;
12716
7bdf4127 12717 BFD_ASSERT (bfd_link_relocatable (info));
c152c796
AM
12718 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
12719 if (failed)
12720 goto error_return;
12721 }
12722
12723 /* If we have optimized stabs strings, output them. */
64f52338 12724 if (htab->stab_info.stabstr != NULL)
c152c796 12725 {
64f52338 12726 if (!_bfd_write_stab_strings (abfd, &htab->stab_info))
c152c796
AM
12727 goto error_return;
12728 }
12729
9f7c3e5e
AM
12730 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
12731 goto error_return;
c152c796 12732
9f7c3e5e 12733 elf_final_link_free (abfd, &flinfo);
c152c796 12734
12bd6957 12735 elf_linker (abfd) = TRUE;
c152c796 12736
104d59d1
JM
12737 if (attr_section)
12738 {
a50b1753 12739 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
104d59d1 12740 if (contents == NULL)
d0f16d5e 12741 return FALSE; /* Bail out and fail. */
104d59d1
JM
12742 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
12743 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
12744 free (contents);
12745 }
12746
c152c796
AM
12747 return TRUE;
12748
12749 error_return:
9f7c3e5e 12750 elf_final_link_free (abfd, &flinfo);
c152c796
AM
12751 return FALSE;
12752}
12753\f
5241d853
RS
12754/* Initialize COOKIE for input bfd ABFD. */
12755
12756static bfd_boolean
12757init_reloc_cookie (struct elf_reloc_cookie *cookie,
12758 struct bfd_link_info *info, bfd *abfd)
12759{
12760 Elf_Internal_Shdr *symtab_hdr;
12761 const struct elf_backend_data *bed;
12762
12763 bed = get_elf_backend_data (abfd);
12764 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12765
12766 cookie->abfd = abfd;
12767 cookie->sym_hashes = elf_sym_hashes (abfd);
12768 cookie->bad_symtab = elf_bad_symtab (abfd);
12769 if (cookie->bad_symtab)
12770 {
12771 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12772 cookie->extsymoff = 0;
12773 }
12774 else
12775 {
12776 cookie->locsymcount = symtab_hdr->sh_info;
12777 cookie->extsymoff = symtab_hdr->sh_info;
12778 }
12779
12780 if (bed->s->arch_size == 32)
12781 cookie->r_sym_shift = 8;
12782 else
12783 cookie->r_sym_shift = 32;
12784
12785 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
12786 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
12787 {
12788 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
12789 cookie->locsymcount, 0,
12790 NULL, NULL, NULL);
12791 if (cookie->locsyms == NULL)
12792 {
12793 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
12794 return FALSE;
12795 }
12796 if (info->keep_memory)
12797 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
12798 }
12799 return TRUE;
12800}
12801
12802/* Free the memory allocated by init_reloc_cookie, if appropriate. */
12803
12804static void
12805fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
12806{
12807 Elf_Internal_Shdr *symtab_hdr;
12808
12809 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12810 if (cookie->locsyms != NULL
12811 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
12812 free (cookie->locsyms);
12813}
12814
12815/* Initialize the relocation information in COOKIE for input section SEC
12816 of input bfd ABFD. */
12817
12818static bfd_boolean
12819init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12820 struct bfd_link_info *info, bfd *abfd,
12821 asection *sec)
12822{
5241d853
RS
12823 if (sec->reloc_count == 0)
12824 {
12825 cookie->rels = NULL;
12826 cookie->relend = NULL;
12827 }
12828 else
12829 {
5241d853
RS
12830 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
12831 info->keep_memory);
12832 if (cookie->rels == NULL)
12833 return FALSE;
12834 cookie->rel = cookie->rels;
056bafd4 12835 cookie->relend = cookie->rels + sec->reloc_count;
5241d853
RS
12836 }
12837 cookie->rel = cookie->rels;
12838 return TRUE;
12839}
12840
12841/* Free the memory allocated by init_reloc_cookie_rels,
12842 if appropriate. */
12843
12844static void
12845fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12846 asection *sec)
12847{
12848 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
12849 free (cookie->rels);
12850}
12851
12852/* Initialize the whole of COOKIE for input section SEC. */
12853
12854static bfd_boolean
12855init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12856 struct bfd_link_info *info,
12857 asection *sec)
12858{
12859 if (!init_reloc_cookie (cookie, info, sec->owner))
12860 goto error1;
12861 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
12862 goto error2;
12863 return TRUE;
12864
12865 error2:
12866 fini_reloc_cookie (cookie, sec->owner);
12867 error1:
12868 return FALSE;
12869}
12870
12871/* Free the memory allocated by init_reloc_cookie_for_section,
12872 if appropriate. */
12873
12874static void
12875fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12876 asection *sec)
12877{
12878 fini_reloc_cookie_rels (cookie, sec);
12879 fini_reloc_cookie (cookie, sec->owner);
12880}
12881\f
c152c796
AM
12882/* Garbage collect unused sections. */
12883
07adf181
AM
12884/* Default gc_mark_hook. */
12885
12886asection *
12887_bfd_elf_gc_mark_hook (asection *sec,
12888 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12889 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
12890 struct elf_link_hash_entry *h,
12891 Elf_Internal_Sym *sym)
12892{
12893 if (h != NULL)
12894 {
12895 switch (h->root.type)
12896 {
12897 case bfd_link_hash_defined:
12898 case bfd_link_hash_defweak:
12899 return h->root.u.def.section;
12900
12901 case bfd_link_hash_common:
12902 return h->root.u.c.p->section;
12903
12904 default:
12905 break;
12906 }
12907 }
12908 else
12909 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
12910
12911 return NULL;
12912}
12913
9e223787 12914/* Return the debug definition section. */
b7c871ed
L
12915
12916static asection *
12917elf_gc_mark_debug_section (asection *sec ATTRIBUTE_UNUSED,
12918 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12919 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
12920 struct elf_link_hash_entry *h,
9e223787 12921 Elf_Internal_Sym *sym)
b7c871ed 12922{
9e223787
L
12923 if (h != NULL)
12924 {
12925 /* Return the global debug definition section. */
12926 if ((h->root.type == bfd_link_hash_defined
12927 || h->root.type == bfd_link_hash_defweak)
12928 && (h->root.u.def.section->flags & SEC_DEBUGGING) != 0)
12929 return h->root.u.def.section;
12930 }
12931 else
12932 {
12933 /* Return the local debug definition section. */
12934 asection *isec = bfd_section_from_elf_index (sec->owner,
12935 sym->st_shndx);
12936 if ((isec->flags & SEC_DEBUGGING) != 0)
12937 return isec;
12938 }
b7c871ed
L
12939
12940 return NULL;
12941}
12942
5241d853
RS
12943/* COOKIE->rel describes a relocation against section SEC, which is
12944 a section we've decided to keep. Return the section that contains
12945 the relocation symbol, or NULL if no section contains it. */
12946
12947asection *
12948_bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
12949 elf_gc_mark_hook_fn gc_mark_hook,
1cce69b9
AM
12950 struct elf_reloc_cookie *cookie,
12951 bfd_boolean *start_stop)
5241d853
RS
12952{
12953 unsigned long r_symndx;
12954 struct elf_link_hash_entry *h;
12955
12956 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
cf35638d 12957 if (r_symndx == STN_UNDEF)
5241d853
RS
12958 return NULL;
12959
12960 if (r_symndx >= cookie->locsymcount
12961 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12962 {
12963 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
263ddf68
L
12964 if (h == NULL)
12965 {
871b3ab2 12966 info->callbacks->einfo (_("%F%P: corrupt input: %pB\n"),
263ddf68
L
12967 sec->owner);
12968 return NULL;
12969 }
5241d853
RS
12970 while (h->root.type == bfd_link_hash_indirect
12971 || h->root.type == bfd_link_hash_warning)
12972 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1d5316ab 12973 h->mark = 1;
4e6b54a6
AM
12974 /* If this symbol is weak and there is a non-weak definition, we
12975 keep the non-weak definition because many backends put
12976 dynamic reloc info on the non-weak definition for code
12977 handling copy relocs. */
60d67dc8
AM
12978 if (h->is_weakalias)
12979 weakdef (h)->mark = 1;
1cce69b9 12980
a6a4679f 12981 if (start_stop != NULL)
1cce69b9 12982 {
7dba9362
AM
12983 /* To work around a glibc bug, mark XXX input sections
12984 when there is a reference to __start_XXX or __stop_XXX
12985 symbols. */
cbd0eecf 12986 if (h->start_stop)
1cce69b9 12987 {
cbd0eecf 12988 asection *s = h->u2.start_stop_section;
a6a4679f
AM
12989 *start_stop = !s->gc_mark;
12990 return s;
1cce69b9
AM
12991 }
12992 }
12993
5241d853
RS
12994 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
12995 }
12996
12997 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
12998 &cookie->locsyms[r_symndx]);
12999}
13000
13001/* COOKIE->rel describes a relocation against section SEC, which is
13002 a section we've decided to keep. Mark the section that contains
9d0a14d3 13003 the relocation symbol. */
5241d853
RS
13004
13005bfd_boolean
13006_bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
13007 asection *sec,
13008 elf_gc_mark_hook_fn gc_mark_hook,
9d0a14d3 13009 struct elf_reloc_cookie *cookie)
5241d853
RS
13010{
13011 asection *rsec;
1cce69b9 13012 bfd_boolean start_stop = FALSE;
5241d853 13013
1cce69b9
AM
13014 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie, &start_stop);
13015 while (rsec != NULL)
5241d853 13016 {
1cce69b9
AM
13017 if (!rsec->gc_mark)
13018 {
13019 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
13020 || (rsec->owner->flags & DYNAMIC) != 0)
13021 rsec->gc_mark = 1;
13022 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
13023 return FALSE;
13024 }
13025 if (!start_stop)
13026 break;
199af150 13027 rsec = bfd_get_next_section_by_name (rsec->owner, rsec);
5241d853
RS
13028 }
13029 return TRUE;
13030}
13031
07adf181
AM
13032/* The mark phase of garbage collection. For a given section, mark
13033 it and any sections in this section's group, and all the sections
13034 which define symbols to which it refers. */
13035
ccfa59ea
AM
13036bfd_boolean
13037_bfd_elf_gc_mark (struct bfd_link_info *info,
13038 asection *sec,
6a5bb875 13039 elf_gc_mark_hook_fn gc_mark_hook)
c152c796
AM
13040{
13041 bfd_boolean ret;
9d0a14d3 13042 asection *group_sec, *eh_frame;
c152c796
AM
13043
13044 sec->gc_mark = 1;
13045
13046 /* Mark all the sections in the group. */
13047 group_sec = elf_section_data (sec)->next_in_group;
13048 if (group_sec && !group_sec->gc_mark)
ccfa59ea 13049 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
c152c796
AM
13050 return FALSE;
13051
13052 /* Look through the section relocs. */
13053 ret = TRUE;
9d0a14d3
RS
13054 eh_frame = elf_eh_frame_section (sec->owner);
13055 if ((sec->flags & SEC_RELOC) != 0
13056 && sec->reloc_count > 0
13057 && sec != eh_frame)
c152c796 13058 {
5241d853 13059 struct elf_reloc_cookie cookie;
c152c796 13060
5241d853
RS
13061 if (!init_reloc_cookie_for_section (&cookie, info, sec))
13062 ret = FALSE;
c152c796 13063 else
c152c796 13064 {
5241d853 13065 for (; cookie.rel < cookie.relend; cookie.rel++)
9d0a14d3 13066 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
5241d853
RS
13067 {
13068 ret = FALSE;
13069 break;
13070 }
13071 fini_reloc_cookie_for_section (&cookie, sec);
c152c796
AM
13072 }
13073 }
9d0a14d3
RS
13074
13075 if (ret && eh_frame && elf_fde_list (sec))
13076 {
13077 struct elf_reloc_cookie cookie;
13078
13079 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
13080 ret = FALSE;
13081 else
13082 {
13083 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
13084 gc_mark_hook, &cookie))
13085 ret = FALSE;
13086 fini_reloc_cookie_for_section (&cookie, eh_frame);
13087 }
13088 }
13089
2f0c68f2
CM
13090 eh_frame = elf_section_eh_frame_entry (sec);
13091 if (ret && eh_frame && !eh_frame->gc_mark)
13092 if (!_bfd_elf_gc_mark (info, eh_frame, gc_mark_hook))
13093 ret = FALSE;
13094
c152c796
AM
13095 return ret;
13096}
13097
3c758495
TG
13098/* Scan and mark sections in a special or debug section group. */
13099
13100static void
13101_bfd_elf_gc_mark_debug_special_section_group (asection *grp)
13102{
13103 /* Point to first section of section group. */
13104 asection *ssec;
13105 /* Used to iterate the section group. */
13106 asection *msec;
13107
13108 bfd_boolean is_special_grp = TRUE;
13109 bfd_boolean is_debug_grp = TRUE;
13110
13111 /* First scan to see if group contains any section other than debug
13112 and special section. */
13113 ssec = msec = elf_next_in_group (grp);
13114 do
13115 {
13116 if ((msec->flags & SEC_DEBUGGING) == 0)
13117 is_debug_grp = FALSE;
13118
13119 if ((msec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) != 0)
13120 is_special_grp = FALSE;
13121
13122 msec = elf_next_in_group (msec);
13123 }
13124 while (msec != ssec);
13125
13126 /* If this is a pure debug section group or pure special section group,
13127 keep all sections in this group. */
13128 if (is_debug_grp || is_special_grp)
13129 {
13130 do
13131 {
13132 msec->gc_mark = 1;
13133 msec = elf_next_in_group (msec);
13134 }
13135 while (msec != ssec);
13136 }
13137}
13138
7f6ab9f8
AM
13139/* Keep debug and special sections. */
13140
13141bfd_boolean
13142_bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
13143 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
13144{
13145 bfd *ibfd;
13146
c72f2fb2 13147 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7f6ab9f8
AM
13148 {
13149 asection *isec;
13150 bfd_boolean some_kept;
b40bf0a2 13151 bfd_boolean debug_frag_seen;
b7c871ed 13152 bfd_boolean has_kept_debug_info;
7f6ab9f8
AM
13153
13154 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13155 continue;
57963c05
AM
13156 isec = ibfd->sections;
13157 if (isec == NULL || isec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13158 continue;
7f6ab9f8 13159
b40bf0a2
NC
13160 /* Ensure all linker created sections are kept,
13161 see if any other section is already marked,
13162 and note if we have any fragmented debug sections. */
b7c871ed 13163 debug_frag_seen = some_kept = has_kept_debug_info = FALSE;
7f6ab9f8
AM
13164 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13165 {
13166 if ((isec->flags & SEC_LINKER_CREATED) != 0)
13167 isec->gc_mark = 1;
eb026f09
AM
13168 else if (isec->gc_mark
13169 && (isec->flags & SEC_ALLOC) != 0
13170 && elf_section_type (isec) != SHT_NOTE)
7f6ab9f8 13171 some_kept = TRUE;
b40bf0a2 13172
535b785f 13173 if (!debug_frag_seen
b40bf0a2
NC
13174 && (isec->flags & SEC_DEBUGGING)
13175 && CONST_STRNEQ (isec->name, ".debug_line."))
13176 debug_frag_seen = TRUE;
7f6ab9f8
AM
13177 }
13178
eb026f09
AM
13179 /* If no non-note alloc section in this file will be kept, then
13180 we can toss out the debug and special sections. */
7f6ab9f8
AM
13181 if (!some_kept)
13182 continue;
13183
13184 /* Keep debug and special sections like .comment when they are
3c758495
TG
13185 not part of a group. Also keep section groups that contain
13186 just debug sections or special sections. */
7f6ab9f8 13187 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
3c758495
TG
13188 {
13189 if ((isec->flags & SEC_GROUP) != 0)
13190 _bfd_elf_gc_mark_debug_special_section_group (isec);
13191 else if (((isec->flags & SEC_DEBUGGING) != 0
13192 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
13193 && elf_next_in_group (isec) == NULL)
13194 isec->gc_mark = 1;
b7c871ed
L
13195 if (isec->gc_mark && (isec->flags & SEC_DEBUGGING) != 0)
13196 has_kept_debug_info = TRUE;
3c758495 13197 }
b40bf0a2 13198
b40bf0a2
NC
13199 /* Look for CODE sections which are going to be discarded,
13200 and find and discard any fragmented debug sections which
13201 are associated with that code section. */
b7c871ed
L
13202 if (debug_frag_seen)
13203 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13204 if ((isec->flags & SEC_CODE) != 0
13205 && isec->gc_mark == 0)
13206 {
13207 unsigned int ilen;
13208 asection *dsec;
b40bf0a2 13209
b7c871ed 13210 ilen = strlen (isec->name);
b40bf0a2 13211
b7c871ed 13212 /* Association is determined by the name of the debug
07d6d2b8 13213 section containing the name of the code section as
b7c871ed
L
13214 a suffix. For example .debug_line.text.foo is a
13215 debug section associated with .text.foo. */
13216 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
13217 {
13218 unsigned int dlen;
b40bf0a2 13219
b7c871ed
L
13220 if (dsec->gc_mark == 0
13221 || (dsec->flags & SEC_DEBUGGING) == 0)
13222 continue;
b40bf0a2 13223
b7c871ed 13224 dlen = strlen (dsec->name);
b40bf0a2 13225
b7c871ed
L
13226 if (dlen > ilen
13227 && strncmp (dsec->name + (dlen - ilen),
13228 isec->name, ilen) == 0)
b40bf0a2 13229 dsec->gc_mark = 0;
b7c871ed 13230 }
b40bf0a2 13231 }
b7c871ed
L
13232
13233 /* Mark debug sections referenced by kept debug sections. */
13234 if (has_kept_debug_info)
13235 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13236 if (isec->gc_mark
13237 && (isec->flags & SEC_DEBUGGING) != 0)
13238 if (!_bfd_elf_gc_mark (info, isec,
13239 elf_gc_mark_debug_section))
13240 return FALSE;
7f6ab9f8
AM
13241 }
13242 return TRUE;
13243}
13244
c152c796 13245static bfd_boolean
ccabcbe5 13246elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
c152c796
AM
13247{
13248 bfd *sub;
ccabcbe5 13249 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
c152c796 13250
c72f2fb2 13251 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
13252 {
13253 asection *o;
13254
b19a8f85 13255 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
81742b83 13256 || elf_object_id (sub) != elf_hash_table_id (elf_hash_table (info))
b19a8f85 13257 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
c152c796 13258 continue;
57963c05
AM
13259 o = sub->sections;
13260 if (o == NULL || o->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13261 continue;
c152c796
AM
13262
13263 for (o = sub->sections; o != NULL; o = o->next)
13264 {
a33dafc3
L
13265 /* When any section in a section group is kept, we keep all
13266 sections in the section group. If the first member of
13267 the section group is excluded, we will also exclude the
13268 group section. */
13269 if (o->flags & SEC_GROUP)
13270 {
13271 asection *first = elf_next_in_group (o);
13272 o->gc_mark = first->gc_mark;
13273 }
c152c796 13274
1e7eae0d 13275 if (o->gc_mark)
c152c796
AM
13276 continue;
13277
13278 /* Skip sweeping sections already excluded. */
13279 if (o->flags & SEC_EXCLUDE)
13280 continue;
13281
13282 /* Since this is early in the link process, it is simple
13283 to remove a section from the output. */
13284 o->flags |= SEC_EXCLUDE;
13285
c55fe096 13286 if (info->print_gc_sections && o->size != 0)
695344c0 13287 /* xgettext:c-format */
9793eb77 13288 _bfd_error_handler (_("removing unused section '%pA' in file '%pB'"),
c08bb8dd 13289 o, sub);
c152c796
AM
13290 }
13291 }
13292
c152c796
AM
13293 return TRUE;
13294}
13295
13296/* Propagate collected vtable information. This is called through
13297 elf_link_hash_traverse. */
13298
13299static bfd_boolean
13300elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
13301{
c152c796 13302 /* Those that are not vtables. */
cbd0eecf
L
13303 if (h->start_stop
13304 || h->u2.vtable == NULL
13305 || h->u2.vtable->parent == NULL)
c152c796
AM
13306 return TRUE;
13307
13308 /* Those vtables that do not have parents, we cannot merge. */
cbd0eecf 13309 if (h->u2.vtable->parent == (struct elf_link_hash_entry *) -1)
c152c796
AM
13310 return TRUE;
13311
13312 /* If we've already been done, exit. */
cbd0eecf 13313 if (h->u2.vtable->used && h->u2.vtable->used[-1])
c152c796
AM
13314 return TRUE;
13315
13316 /* Make sure the parent's table is up to date. */
cbd0eecf 13317 elf_gc_propagate_vtable_entries_used (h->u2.vtable->parent, okp);
c152c796 13318
cbd0eecf 13319 if (h->u2.vtable->used == NULL)
c152c796
AM
13320 {
13321 /* None of this table's entries were referenced. Re-use the
13322 parent's table. */
cbd0eecf
L
13323 h->u2.vtable->used = h->u2.vtable->parent->u2.vtable->used;
13324 h->u2.vtable->size = h->u2.vtable->parent->u2.vtable->size;
c152c796
AM
13325 }
13326 else
13327 {
13328 size_t n;
13329 bfd_boolean *cu, *pu;
13330
13331 /* Or the parent's entries into ours. */
cbd0eecf 13332 cu = h->u2.vtable->used;
c152c796 13333 cu[-1] = TRUE;
cbd0eecf 13334 pu = h->u2.vtable->parent->u2.vtable->used;
c152c796
AM
13335 if (pu != NULL)
13336 {
13337 const struct elf_backend_data *bed;
13338 unsigned int log_file_align;
13339
13340 bed = get_elf_backend_data (h->root.u.def.section->owner);
13341 log_file_align = bed->s->log_file_align;
cbd0eecf 13342 n = h->u2.vtable->parent->u2.vtable->size >> log_file_align;
c152c796
AM
13343 while (n--)
13344 {
13345 if (*pu)
13346 *cu = TRUE;
13347 pu++;
13348 cu++;
13349 }
13350 }
13351 }
13352
13353 return TRUE;
13354}
13355
13356static bfd_boolean
13357elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
13358{
13359 asection *sec;
13360 bfd_vma hstart, hend;
13361 Elf_Internal_Rela *relstart, *relend, *rel;
13362 const struct elf_backend_data *bed;
13363 unsigned int log_file_align;
13364
c152c796
AM
13365 /* Take care of both those symbols that do not describe vtables as
13366 well as those that are not loaded. */
cbd0eecf
L
13367 if (h->start_stop
13368 || h->u2.vtable == NULL
13369 || h->u2.vtable->parent == NULL)
c152c796
AM
13370 return TRUE;
13371
13372 BFD_ASSERT (h->root.type == bfd_link_hash_defined
13373 || h->root.type == bfd_link_hash_defweak);
13374
13375 sec = h->root.u.def.section;
13376 hstart = h->root.u.def.value;
13377 hend = hstart + h->size;
13378
13379 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
13380 if (!relstart)
13381 return *(bfd_boolean *) okp = FALSE;
13382 bed = get_elf_backend_data (sec->owner);
13383 log_file_align = bed->s->log_file_align;
13384
056bafd4 13385 relend = relstart + sec->reloc_count;
c152c796
AM
13386
13387 for (rel = relstart; rel < relend; ++rel)
13388 if (rel->r_offset >= hstart && rel->r_offset < hend)
13389 {
13390 /* If the entry is in use, do nothing. */
cbd0eecf
L
13391 if (h->u2.vtable->used
13392 && (rel->r_offset - hstart) < h->u2.vtable->size)
c152c796
AM
13393 {
13394 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
cbd0eecf 13395 if (h->u2.vtable->used[entry])
c152c796
AM
13396 continue;
13397 }
13398 /* Otherwise, kill it. */
13399 rel->r_offset = rel->r_info = rel->r_addend = 0;
13400 }
13401
13402 return TRUE;
13403}
13404
87538722
AM
13405/* Mark sections containing dynamically referenced symbols. When
13406 building shared libraries, we must assume that any visible symbol is
13407 referenced. */
715df9b8 13408
64d03ab5
AM
13409bfd_boolean
13410bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
715df9b8 13411{
87538722 13412 struct bfd_link_info *info = (struct bfd_link_info *) inf;
d6f6f455 13413 struct bfd_elf_dynamic_list *d = info->dynamic_list;
87538722 13414
715df9b8
EB
13415 if ((h->root.type == bfd_link_hash_defined
13416 || h->root.type == bfd_link_hash_defweak)
d664fd41 13417 && ((h->ref_dynamic && !h->forced_local)
c4621b33 13418 || ((h->def_regular || ELF_COMMON_DEF_P (h))
87538722 13419 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
fd91d419 13420 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
0e1862bb 13421 && (!bfd_link_executable (info)
22185505 13422 || info->gc_keep_exported
b407645f
AM
13423 || info->export_dynamic
13424 || (h->dynamic
13425 && d != NULL
13426 && (*d->match) (&d->head, NULL, h->root.root.string)))
422f1182 13427 && (h->versioned >= versioned
54e8959c
L
13428 || !bfd_hide_sym_by_version (info->version_info,
13429 h->root.root.string)))))
715df9b8
EB
13430 h->root.u.def.section->flags |= SEC_KEEP;
13431
13432 return TRUE;
13433}
3b36f7e6 13434
74f0fb50
AM
13435/* Keep all sections containing symbols undefined on the command-line,
13436 and the section containing the entry symbol. */
13437
13438void
13439_bfd_elf_gc_keep (struct bfd_link_info *info)
13440{
13441 struct bfd_sym_chain *sym;
13442
13443 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
13444 {
13445 struct elf_link_hash_entry *h;
13446
13447 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
13448 FALSE, FALSE, FALSE);
13449
13450 if (h != NULL
13451 && (h->root.type == bfd_link_hash_defined
13452 || h->root.type == bfd_link_hash_defweak)
f02cb058
AM
13453 && !bfd_is_abs_section (h->root.u.def.section)
13454 && !bfd_is_und_section (h->root.u.def.section))
74f0fb50
AM
13455 h->root.u.def.section->flags |= SEC_KEEP;
13456 }
13457}
13458
2f0c68f2
CM
13459bfd_boolean
13460bfd_elf_parse_eh_frame_entries (bfd *abfd ATTRIBUTE_UNUSED,
13461 struct bfd_link_info *info)
13462{
13463 bfd *ibfd = info->input_bfds;
13464
13465 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
13466 {
13467 asection *sec;
13468 struct elf_reloc_cookie cookie;
13469
13470 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13471 continue;
57963c05
AM
13472 sec = ibfd->sections;
13473 if (sec == NULL || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13474 continue;
2f0c68f2
CM
13475
13476 if (!init_reloc_cookie (&cookie, info, ibfd))
13477 return FALSE;
13478
13479 for (sec = ibfd->sections; sec; sec = sec->next)
13480 {
13481 if (CONST_STRNEQ (bfd_section_name (ibfd, sec), ".eh_frame_entry")
13482 && init_reloc_cookie_rels (&cookie, info, ibfd, sec))
13483 {
13484 _bfd_elf_parse_eh_frame_entry (info, sec, &cookie);
13485 fini_reloc_cookie_rels (&cookie, sec);
13486 }
13487 }
13488 }
13489 return TRUE;
13490}
13491
c152c796
AM
13492/* Do mark and sweep of unused sections. */
13493
13494bfd_boolean
13495bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
13496{
13497 bfd_boolean ok = TRUE;
13498 bfd *sub;
6a5bb875 13499 elf_gc_mark_hook_fn gc_mark_hook;
64d03ab5 13500 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
da44f4e5 13501 struct elf_link_hash_table *htab;
c152c796 13502
64d03ab5 13503 if (!bed->can_gc_sections
715df9b8 13504 || !is_elf_hash_table (info->hash))
c152c796 13505 {
9793eb77 13506 _bfd_error_handler(_("warning: gc-sections option ignored"));
c152c796
AM
13507 return TRUE;
13508 }
13509
74f0fb50 13510 bed->gc_keep (info);
da44f4e5 13511 htab = elf_hash_table (info);
74f0fb50 13512
9d0a14d3
RS
13513 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
13514 at the .eh_frame section if we can mark the FDEs individually. */
2f0c68f2
CM
13515 for (sub = info->input_bfds;
13516 info->eh_frame_hdr_type != COMPACT_EH_HDR && sub != NULL;
13517 sub = sub->link.next)
9d0a14d3
RS
13518 {
13519 asection *sec;
13520 struct elf_reloc_cookie cookie;
13521
57963c05
AM
13522 sec = sub->sections;
13523 if (sec == NULL || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13524 continue;
9d0a14d3 13525 sec = bfd_get_section_by_name (sub, ".eh_frame");
9a2a56cc 13526 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
9d0a14d3
RS
13527 {
13528 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
9a2a56cc
AM
13529 if (elf_section_data (sec)->sec_info
13530 && (sec->flags & SEC_LINKER_CREATED) == 0)
9d0a14d3
RS
13531 elf_eh_frame_section (sub) = sec;
13532 fini_reloc_cookie_for_section (&cookie, sec);
199af150 13533 sec = bfd_get_next_section_by_name (NULL, sec);
9d0a14d3
RS
13534 }
13535 }
9d0a14d3 13536
c152c796 13537 /* Apply transitive closure to the vtable entry usage info. */
da44f4e5 13538 elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
c152c796
AM
13539 if (!ok)
13540 return FALSE;
13541
13542 /* Kill the vtable relocations that were not used. */
da44f4e5 13543 elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
c152c796
AM
13544 if (!ok)
13545 return FALSE;
13546
715df9b8 13547 /* Mark dynamically referenced symbols. */
22185505 13548 if (htab->dynamic_sections_created || info->gc_keep_exported)
da44f4e5 13549 elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
c152c796 13550
715df9b8 13551 /* Grovel through relocs to find out who stays ... */
64d03ab5 13552 gc_mark_hook = bed->gc_mark_hook;
c72f2fb2 13553 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
13554 {
13555 asection *o;
13556
b19a8f85 13557 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
81742b83 13558 || elf_object_id (sub) != elf_hash_table_id (htab)
b19a8f85 13559 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
c152c796
AM
13560 continue;
13561
57963c05
AM
13562 o = sub->sections;
13563 if (o == NULL || o->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13564 continue;
13565
7f6ab9f8
AM
13566 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
13567 Also treat note sections as a root, if the section is not part
8b6f4cd3
L
13568 of a group. We must keep all PREINIT_ARRAY, INIT_ARRAY as
13569 well as FINI_ARRAY sections for ld -r. */
c152c796 13570 for (o = sub->sections; o != NULL; o = o->next)
7f6ab9f8
AM
13571 if (!o->gc_mark
13572 && (o->flags & SEC_EXCLUDE) == 0
24007750 13573 && ((o->flags & SEC_KEEP) != 0
8b6f4cd3
L
13574 || (bfd_link_relocatable (info)
13575 && ((elf_section_data (o)->this_hdr.sh_type
13576 == SHT_PREINIT_ARRAY)
13577 || (elf_section_data (o)->this_hdr.sh_type
13578 == SHT_INIT_ARRAY)
13579 || (elf_section_data (o)->this_hdr.sh_type
13580 == SHT_FINI_ARRAY)))
7f6ab9f8
AM
13581 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
13582 && elf_next_in_group (o) == NULL )))
13583 {
13584 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
13585 return FALSE;
13586 }
c152c796
AM
13587 }
13588
6a5bb875 13589 /* Allow the backend to mark additional target specific sections. */
7f6ab9f8 13590 bed->gc_mark_extra_sections (info, gc_mark_hook);
6a5bb875 13591
c152c796 13592 /* ... and mark SEC_EXCLUDE for those that go. */
ccabcbe5 13593 return elf_gc_sweep (abfd, info);
c152c796
AM
13594}
13595\f
13596/* Called from check_relocs to record the existence of a VTINHERIT reloc. */
13597
13598bfd_boolean
13599bfd_elf_gc_record_vtinherit (bfd *abfd,
13600 asection *sec,
13601 struct elf_link_hash_entry *h,
13602 bfd_vma offset)
13603{
13604 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
13605 struct elf_link_hash_entry **search, *child;
ef53be89 13606 size_t extsymcount;
c152c796
AM
13607 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13608
13609 /* The sh_info field of the symtab header tells us where the
13610 external symbols start. We don't care about the local symbols at
13611 this point. */
13612 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
13613 if (!elf_bad_symtab (abfd))
13614 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
13615
13616 sym_hashes = elf_sym_hashes (abfd);
13617 sym_hashes_end = sym_hashes + extsymcount;
13618
13619 /* Hunt down the child symbol, which is in this section at the same
13620 offset as the relocation. */
13621 for (search = sym_hashes; search != sym_hashes_end; ++search)
13622 {
13623 if ((child = *search) != NULL
13624 && (child->root.type == bfd_link_hash_defined
13625 || child->root.type == bfd_link_hash_defweak)
13626 && child->root.u.def.section == sec
13627 && child->root.u.def.value == offset)
13628 goto win;
13629 }
13630
695344c0 13631 /* xgettext:c-format */
9793eb77 13632 _bfd_error_handler (_("%pB: %pA+%#" PRIx64 ": no symbol found for INHERIT"),
2dcf00ce 13633 abfd, sec, (uint64_t) offset);
c152c796
AM
13634 bfd_set_error (bfd_error_invalid_operation);
13635 return FALSE;
13636
13637 win:
cbd0eecf 13638 if (!child->u2.vtable)
f6e332e6 13639 {
cbd0eecf
L
13640 child->u2.vtable = ((struct elf_link_virtual_table_entry *)
13641 bfd_zalloc (abfd, sizeof (*child->u2.vtable)));
13642 if (!child->u2.vtable)
f6e332e6
AM
13643 return FALSE;
13644 }
c152c796
AM
13645 if (!h)
13646 {
13647 /* This *should* only be the absolute section. It could potentially
13648 be that someone has defined a non-global vtable though, which
13649 would be bad. It isn't worth paging in the local symbols to be
13650 sure though; that case should simply be handled by the assembler. */
13651
cbd0eecf 13652 child->u2.vtable->parent = (struct elf_link_hash_entry *) -1;
c152c796
AM
13653 }
13654 else
cbd0eecf 13655 child->u2.vtable->parent = h;
c152c796
AM
13656
13657 return TRUE;
13658}
13659
13660/* Called from check_relocs to record the existence of a VTENTRY reloc. */
13661
13662bfd_boolean
13663bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
13664 asection *sec ATTRIBUTE_UNUSED,
13665 struct elf_link_hash_entry *h,
13666 bfd_vma addend)
13667{
13668 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13669 unsigned int log_file_align = bed->s->log_file_align;
13670
cbd0eecf 13671 if (!h->u2.vtable)
f6e332e6 13672 {
cbd0eecf
L
13673 h->u2.vtable = ((struct elf_link_virtual_table_entry *)
13674 bfd_zalloc (abfd, sizeof (*h->u2.vtable)));
13675 if (!h->u2.vtable)
f6e332e6
AM
13676 return FALSE;
13677 }
13678
cbd0eecf 13679 if (addend >= h->u2.vtable->size)
c152c796
AM
13680 {
13681 size_t size, bytes, file_align;
cbd0eecf 13682 bfd_boolean *ptr = h->u2.vtable->used;
c152c796
AM
13683
13684 /* While the symbol is undefined, we have to be prepared to handle
13685 a zero size. */
13686 file_align = 1 << log_file_align;
13687 if (h->root.type == bfd_link_hash_undefined)
13688 size = addend + file_align;
13689 else
13690 {
13691 size = h->size;
13692 if (addend >= size)
13693 {
13694 /* Oops! We've got a reference past the defined end of
13695 the table. This is probably a bug -- shall we warn? */
13696 size = addend + file_align;
13697 }
13698 }
13699 size = (size + file_align - 1) & -file_align;
13700
13701 /* Allocate one extra entry for use as a "done" flag for the
13702 consolidation pass. */
13703 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
13704
13705 if (ptr)
13706 {
a50b1753 13707 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
c152c796
AM
13708
13709 if (ptr != NULL)
13710 {
13711 size_t oldbytes;
13712
cbd0eecf 13713 oldbytes = (((h->u2.vtable->size >> log_file_align) + 1)
c152c796
AM
13714 * sizeof (bfd_boolean));
13715 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
13716 }
13717 }
13718 else
a50b1753 13719 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
c152c796
AM
13720
13721 if (ptr == NULL)
13722 return FALSE;
13723
13724 /* And arrange for that done flag to be at index -1. */
cbd0eecf
L
13725 h->u2.vtable->used = ptr + 1;
13726 h->u2.vtable->size = size;
c152c796
AM
13727 }
13728
cbd0eecf 13729 h->u2.vtable->used[addend >> log_file_align] = TRUE;
c152c796
AM
13730
13731 return TRUE;
13732}
13733
ae17ab41
CM
13734/* Map an ELF section header flag to its corresponding string. */
13735typedef struct
13736{
13737 char *flag_name;
13738 flagword flag_value;
13739} elf_flags_to_name_table;
13740
13741static elf_flags_to_name_table elf_flags_to_names [] =
13742{
13743 { "SHF_WRITE", SHF_WRITE },
13744 { "SHF_ALLOC", SHF_ALLOC },
13745 { "SHF_EXECINSTR", SHF_EXECINSTR },
13746 { "SHF_MERGE", SHF_MERGE },
13747 { "SHF_STRINGS", SHF_STRINGS },
13748 { "SHF_INFO_LINK", SHF_INFO_LINK},
13749 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
13750 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
13751 { "SHF_GROUP", SHF_GROUP },
13752 { "SHF_TLS", SHF_TLS },
13753 { "SHF_MASKOS", SHF_MASKOS },
13754 { "SHF_EXCLUDE", SHF_EXCLUDE },
13755};
13756
b9c361e0
JL
13757/* Returns TRUE if the section is to be included, otherwise FALSE. */
13758bfd_boolean
ae17ab41 13759bfd_elf_lookup_section_flags (struct bfd_link_info *info,
8b127cbc 13760 struct flag_info *flaginfo,
b9c361e0 13761 asection *section)
ae17ab41 13762{
8b127cbc 13763 const bfd_vma sh_flags = elf_section_flags (section);
ae17ab41 13764
8b127cbc 13765 if (!flaginfo->flags_initialized)
ae17ab41 13766 {
8b127cbc
AM
13767 bfd *obfd = info->output_bfd;
13768 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
13769 struct flag_info_list *tf = flaginfo->flag_list;
b9c361e0
JL
13770 int with_hex = 0;
13771 int without_hex = 0;
13772
8b127cbc 13773 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
ae17ab41 13774 {
b9c361e0 13775 unsigned i;
8b127cbc 13776 flagword (*lookup) (char *);
ae17ab41 13777
8b127cbc
AM
13778 lookup = bed->elf_backend_lookup_section_flags_hook;
13779 if (lookup != NULL)
ae17ab41 13780 {
8b127cbc 13781 flagword hexval = (*lookup) ((char *) tf->name);
b9c361e0
JL
13782
13783 if (hexval != 0)
13784 {
13785 if (tf->with == with_flags)
13786 with_hex |= hexval;
13787 else if (tf->with == without_flags)
13788 without_hex |= hexval;
13789 tf->valid = TRUE;
13790 continue;
13791 }
ae17ab41 13792 }
8b127cbc 13793 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
ae17ab41 13794 {
8b127cbc 13795 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
b9c361e0
JL
13796 {
13797 if (tf->with == with_flags)
13798 with_hex |= elf_flags_to_names[i].flag_value;
13799 else if (tf->with == without_flags)
13800 without_hex |= elf_flags_to_names[i].flag_value;
13801 tf->valid = TRUE;
13802 break;
13803 }
13804 }
8b127cbc 13805 if (!tf->valid)
b9c361e0 13806 {
68ffbac6 13807 info->callbacks->einfo
9793eb77 13808 (_("unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
b9c361e0 13809 return FALSE;
ae17ab41
CM
13810 }
13811 }
8b127cbc
AM
13812 flaginfo->flags_initialized = TRUE;
13813 flaginfo->only_with_flags |= with_hex;
13814 flaginfo->not_with_flags |= without_hex;
ae17ab41 13815 }
ae17ab41 13816
8b127cbc 13817 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
b9c361e0
JL
13818 return FALSE;
13819
8b127cbc 13820 if ((flaginfo->not_with_flags & sh_flags) != 0)
b9c361e0
JL
13821 return FALSE;
13822
13823 return TRUE;
ae17ab41
CM
13824}
13825
c152c796
AM
13826struct alloc_got_off_arg {
13827 bfd_vma gotoff;
10455f89 13828 struct bfd_link_info *info;
c152c796
AM
13829};
13830
13831/* We need a special top-level link routine to convert got reference counts
13832 to real got offsets. */
13833
13834static bfd_boolean
13835elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
13836{
a50b1753 13837 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
10455f89
HPN
13838 bfd *obfd = gofarg->info->output_bfd;
13839 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
c152c796 13840
c152c796
AM
13841 if (h->got.refcount > 0)
13842 {
13843 h->got.offset = gofarg->gotoff;
10455f89 13844 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
c152c796
AM
13845 }
13846 else
13847 h->got.offset = (bfd_vma) -1;
13848
13849 return TRUE;
13850}
13851
13852/* And an accompanying bit to work out final got entry offsets once
13853 we're done. Should be called from final_link. */
13854
13855bfd_boolean
13856bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
13857 struct bfd_link_info *info)
13858{
13859 bfd *i;
13860 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13861 bfd_vma gotoff;
c152c796
AM
13862 struct alloc_got_off_arg gofarg;
13863
10455f89
HPN
13864 BFD_ASSERT (abfd == info->output_bfd);
13865
c152c796
AM
13866 if (! is_elf_hash_table (info->hash))
13867 return FALSE;
13868
13869 /* The GOT offset is relative to the .got section, but the GOT header is
13870 put into the .got.plt section, if the backend uses it. */
13871 if (bed->want_got_plt)
13872 gotoff = 0;
13873 else
13874 gotoff = bed->got_header_size;
13875
13876 /* Do the local .got entries first. */
c72f2fb2 13877 for (i = info->input_bfds; i; i = i->link.next)
c152c796
AM
13878 {
13879 bfd_signed_vma *local_got;
ef53be89 13880 size_t j, locsymcount;
c152c796
AM
13881 Elf_Internal_Shdr *symtab_hdr;
13882
13883 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
13884 continue;
13885
13886 local_got = elf_local_got_refcounts (i);
13887 if (!local_got)
13888 continue;
13889
13890 symtab_hdr = &elf_tdata (i)->symtab_hdr;
13891 if (elf_bad_symtab (i))
13892 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
13893 else
13894 locsymcount = symtab_hdr->sh_info;
13895
13896 for (j = 0; j < locsymcount; ++j)
13897 {
13898 if (local_got[j] > 0)
13899 {
13900 local_got[j] = gotoff;
10455f89 13901 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
c152c796
AM
13902 }
13903 else
13904 local_got[j] = (bfd_vma) -1;
13905 }
13906 }
13907
13908 /* Then the global .got entries. .plt refcounts are handled by
13909 adjust_dynamic_symbol */
13910 gofarg.gotoff = gotoff;
10455f89 13911 gofarg.info = info;
c152c796
AM
13912 elf_link_hash_traverse (elf_hash_table (info),
13913 elf_gc_allocate_got_offsets,
13914 &gofarg);
13915 return TRUE;
13916}
13917
13918/* Many folk need no more in the way of final link than this, once
13919 got entry reference counting is enabled. */
13920
13921bfd_boolean
13922bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
13923{
13924 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
13925 return FALSE;
13926
13927 /* Invoke the regular ELF backend linker to do all the work. */
13928 return bfd_elf_final_link (abfd, info);
13929}
13930
13931bfd_boolean
13932bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
13933{
a50b1753 13934 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
c152c796
AM
13935
13936 if (rcookie->bad_symtab)
13937 rcookie->rel = rcookie->rels;
13938
13939 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
13940 {
13941 unsigned long r_symndx;
13942
13943 if (! rcookie->bad_symtab)
13944 if (rcookie->rel->r_offset > offset)
13945 return FALSE;
13946 if (rcookie->rel->r_offset != offset)
13947 continue;
13948
13949 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
2c2fa401 13950 if (r_symndx == STN_UNDEF)
c152c796
AM
13951 return TRUE;
13952
13953 if (r_symndx >= rcookie->locsymcount
13954 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
13955 {
13956 struct elf_link_hash_entry *h;
13957
13958 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
13959
13960 while (h->root.type == bfd_link_hash_indirect
13961 || h->root.type == bfd_link_hash_warning)
13962 h = (struct elf_link_hash_entry *) h->root.u.i.link;
13963
13964 if ((h->root.type == bfd_link_hash_defined
13965 || h->root.type == bfd_link_hash_defweak)
5b69e357
AM
13966 && (h->root.u.def.section->owner != rcookie->abfd
13967 || h->root.u.def.section->kept_section != NULL
13968 || discarded_section (h->root.u.def.section)))
c152c796 13969 return TRUE;
c152c796
AM
13970 }
13971 else
13972 {
13973 /* It's not a relocation against a global symbol,
13974 but it could be a relocation against a local
13975 symbol for a discarded section. */
13976 asection *isec;
13977 Elf_Internal_Sym *isym;
13978
13979 /* Need to: get the symbol; get the section. */
13980 isym = &rcookie->locsyms[r_symndx];
cb33740c 13981 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
5b69e357
AM
13982 if (isec != NULL
13983 && (isec->kept_section != NULL
13984 || discarded_section (isec)))
cb33740c 13985 return TRUE;
c152c796
AM
13986 }
13987 return FALSE;
13988 }
13989 return FALSE;
13990}
13991
13992/* Discard unneeded references to discarded sections.
75938853
AM
13993 Returns -1 on error, 1 if any section's size was changed, 0 if
13994 nothing changed. This function assumes that the relocations are in
13995 sorted order, which is true for all known assemblers. */
c152c796 13996
75938853 13997int
c152c796
AM
13998bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
13999{
14000 struct elf_reloc_cookie cookie;
18cd5bce 14001 asection *o;
c152c796 14002 bfd *abfd;
75938853 14003 int changed = 0;
c152c796
AM
14004
14005 if (info->traditional_format
14006 || !is_elf_hash_table (info->hash))
75938853 14007 return 0;
c152c796 14008
18cd5bce
AM
14009 o = bfd_get_section_by_name (output_bfd, ".stab");
14010 if (o != NULL)
c152c796 14011 {
18cd5bce 14012 asection *i;
c152c796 14013
18cd5bce 14014 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
8da3dbc5 14015 {
18cd5bce
AM
14016 if (i->size == 0
14017 || i->reloc_count == 0
14018 || i->sec_info_type != SEC_INFO_TYPE_STABS)
14019 continue;
c152c796 14020
18cd5bce
AM
14021 abfd = i->owner;
14022 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14023 continue;
c152c796 14024
18cd5bce 14025 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 14026 return -1;
c152c796 14027
18cd5bce
AM
14028 if (_bfd_discard_section_stabs (abfd, i,
14029 elf_section_data (i)->sec_info,
5241d853
RS
14030 bfd_elf_reloc_symbol_deleted_p,
14031 &cookie))
75938853 14032 changed = 1;
18cd5bce
AM
14033
14034 fini_reloc_cookie_for_section (&cookie, i);
c152c796 14035 }
18cd5bce
AM
14036 }
14037
2f0c68f2
CM
14038 o = NULL;
14039 if (info->eh_frame_hdr_type != COMPACT_EH_HDR)
14040 o = bfd_get_section_by_name (output_bfd, ".eh_frame");
18cd5bce
AM
14041 if (o != NULL)
14042 {
14043 asection *i;
d7153c4a 14044 int eh_changed = 0;
79a94a2a 14045 unsigned int eh_alignment;
c152c796 14046
18cd5bce 14047 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
c152c796 14048 {
18cd5bce
AM
14049 if (i->size == 0)
14050 continue;
14051
14052 abfd = i->owner;
14053 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14054 continue;
14055
14056 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 14057 return -1;
18cd5bce
AM
14058
14059 _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
14060 if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
c152c796
AM
14061 bfd_elf_reloc_symbol_deleted_p,
14062 &cookie))
d7153c4a
AM
14063 {
14064 eh_changed = 1;
14065 if (i->size != i->rawsize)
14066 changed = 1;
14067 }
18cd5bce
AM
14068
14069 fini_reloc_cookie_for_section (&cookie, i);
c152c796 14070 }
9866ffe2 14071
79a94a2a 14072 eh_alignment = 1 << o->alignment_power;
9866ffe2
AM
14073 /* Skip over zero terminator, and prevent empty sections from
14074 adding alignment padding at the end. */
14075 for (i = o->map_tail.s; i != NULL; i = i->map_tail.s)
14076 if (i->size == 0)
14077 i->flags |= SEC_EXCLUDE;
14078 else if (i->size > 4)
14079 break;
14080 /* The last non-empty eh_frame section doesn't need padding. */
14081 if (i != NULL)
14082 i = i->map_tail.s;
14083 /* Any prior sections must pad the last FDE out to the output
14084 section alignment. Otherwise we might have zero padding
14085 between sections, which would be seen as a terminator. */
14086 for (; i != NULL; i = i->map_tail.s)
14087 if (i->size == 4)
14088 /* All but the last zero terminator should have been removed. */
14089 BFD_FAIL ();
14090 else
14091 {
14092 bfd_size_type size
14093 = (i->size + eh_alignment - 1) & -eh_alignment;
14094 if (i->size != size)
af471f82 14095 {
9866ffe2
AM
14096 i->size = size;
14097 changed = 1;
14098 eh_changed = 1;
af471f82 14099 }
9866ffe2 14100 }
d7153c4a
AM
14101 if (eh_changed)
14102 elf_link_hash_traverse (elf_hash_table (info),
14103 _bfd_elf_adjust_eh_frame_global_symbol, NULL);
18cd5bce 14104 }
c152c796 14105
18cd5bce
AM
14106 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
14107 {
14108 const struct elf_backend_data *bed;
57963c05 14109 asection *s;
c152c796 14110
18cd5bce
AM
14111 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14112 continue;
57963c05
AM
14113 s = abfd->sections;
14114 if (s == NULL || s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
14115 continue;
18cd5bce
AM
14116
14117 bed = get_elf_backend_data (abfd);
14118
14119 if (bed->elf_backend_discard_info != NULL)
14120 {
14121 if (!init_reloc_cookie (&cookie, info, abfd))
75938853 14122 return -1;
18cd5bce
AM
14123
14124 if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
75938853 14125 changed = 1;
18cd5bce
AM
14126
14127 fini_reloc_cookie (&cookie, abfd);
14128 }
c152c796
AM
14129 }
14130
2f0c68f2
CM
14131 if (info->eh_frame_hdr_type == COMPACT_EH_HDR)
14132 _bfd_elf_end_eh_frame_parsing (info);
14133
14134 if (info->eh_frame_hdr_type
0e1862bb 14135 && !bfd_link_relocatable (info)
c152c796 14136 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
75938853 14137 changed = 1;
c152c796 14138
75938853 14139 return changed;
c152c796 14140}
082b7297 14141
43e1669b 14142bfd_boolean
0c511000 14143_bfd_elf_section_already_linked (bfd *abfd,
c77ec726 14144 asection *sec,
c0f00686 14145 struct bfd_link_info *info)
082b7297
L
14146{
14147 flagword flags;
c77ec726 14148 const char *name, *key;
082b7297
L
14149 struct bfd_section_already_linked *l;
14150 struct bfd_section_already_linked_hash_entry *already_linked_list;
0c511000 14151
c77ec726
AM
14152 if (sec->output_section == bfd_abs_section_ptr)
14153 return FALSE;
0c511000 14154
c77ec726 14155 flags = sec->flags;
0c511000 14156
c77ec726
AM
14157 /* Return if it isn't a linkonce section. A comdat group section
14158 also has SEC_LINK_ONCE set. */
14159 if ((flags & SEC_LINK_ONCE) == 0)
14160 return FALSE;
0c511000 14161
c77ec726
AM
14162 /* Don't put group member sections on our list of already linked
14163 sections. They are handled as a group via their group section. */
14164 if (elf_sec_group (sec) != NULL)
14165 return FALSE;
0c511000 14166
c77ec726
AM
14167 /* For a SHT_GROUP section, use the group signature as the key. */
14168 name = sec->name;
14169 if ((flags & SEC_GROUP) != 0
14170 && elf_next_in_group (sec) != NULL
14171 && elf_group_name (elf_next_in_group (sec)) != NULL)
14172 key = elf_group_name (elf_next_in_group (sec));
14173 else
14174 {
14175 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
0c511000 14176 if (CONST_STRNEQ (name, ".gnu.linkonce.")
c77ec726
AM
14177 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
14178 key++;
0c511000 14179 else
c77ec726
AM
14180 /* Must be a user linkonce section that doesn't follow gcc's
14181 naming convention. In this case we won't be matching
14182 single member groups. */
14183 key = name;
0c511000 14184 }
6d2cd210 14185
c77ec726 14186 already_linked_list = bfd_section_already_linked_table_lookup (key);
082b7297
L
14187
14188 for (l = already_linked_list->entry; l != NULL; l = l->next)
14189 {
c2370991 14190 /* We may have 2 different types of sections on the list: group
c77ec726
AM
14191 sections with a signature of <key> (<key> is some string),
14192 and linkonce sections named .gnu.linkonce.<type>.<key>.
14193 Match like sections. LTO plugin sections are an exception.
14194 They are always named .gnu.linkonce.t.<key> and match either
14195 type of section. */
14196 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
14197 && ((flags & SEC_GROUP) != 0
14198 || strcmp (name, l->sec->name) == 0))
14199 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
082b7297
L
14200 {
14201 /* The section has already been linked. See if we should
6d2cd210 14202 issue a warning. */
c77ec726
AM
14203 if (!_bfd_handle_already_linked (sec, l, info))
14204 return FALSE;
082b7297 14205
c77ec726 14206 if (flags & SEC_GROUP)
3d7f7666 14207 {
c77ec726
AM
14208 asection *first = elf_next_in_group (sec);
14209 asection *s = first;
3d7f7666 14210
c77ec726 14211 while (s != NULL)
3d7f7666 14212 {
c77ec726
AM
14213 s->output_section = bfd_abs_section_ptr;
14214 /* Record which group discards it. */
14215 s->kept_section = l->sec;
14216 s = elf_next_in_group (s);
14217 /* These lists are circular. */
14218 if (s == first)
14219 break;
3d7f7666
L
14220 }
14221 }
082b7297 14222
43e1669b 14223 return TRUE;
082b7297
L
14224 }
14225 }
14226
c77ec726
AM
14227 /* A single member comdat group section may be discarded by a
14228 linkonce section and vice versa. */
14229 if ((flags & SEC_GROUP) != 0)
3d7f7666 14230 {
c77ec726 14231 asection *first = elf_next_in_group (sec);
c2370991 14232
c77ec726
AM
14233 if (first != NULL && elf_next_in_group (first) == first)
14234 /* Check this single member group against linkonce sections. */
14235 for (l = already_linked_list->entry; l != NULL; l = l->next)
14236 if ((l->sec->flags & SEC_GROUP) == 0
14237 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
14238 {
14239 first->output_section = bfd_abs_section_ptr;
14240 first->kept_section = l->sec;
14241 sec->output_section = bfd_abs_section_ptr;
14242 break;
14243 }
14244 }
14245 else
14246 /* Check this linkonce section against single member groups. */
14247 for (l = already_linked_list->entry; l != NULL; l = l->next)
14248 if (l->sec->flags & SEC_GROUP)
6d2cd210 14249 {
c77ec726 14250 asection *first = elf_next_in_group (l->sec);
6d2cd210 14251
c77ec726
AM
14252 if (first != NULL
14253 && elf_next_in_group (first) == first
14254 && bfd_elf_match_symbols_in_sections (first, sec, info))
14255 {
14256 sec->output_section = bfd_abs_section_ptr;
14257 sec->kept_section = first;
14258 break;
14259 }
6d2cd210 14260 }
0c511000 14261
c77ec726
AM
14262 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
14263 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
14264 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
14265 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
14266 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
14267 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
14268 `.gnu.linkonce.t.F' section from a different bfd not requiring any
14269 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
14270 The reverse order cannot happen as there is never a bfd with only the
14271 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
14272 matter as here were are looking only for cross-bfd sections. */
14273
14274 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
14275 for (l = already_linked_list->entry; l != NULL; l = l->next)
14276 if ((l->sec->flags & SEC_GROUP) == 0
14277 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
14278 {
14279 if (abfd != l->sec->owner)
14280 sec->output_section = bfd_abs_section_ptr;
14281 break;
14282 }
80c29487 14283
082b7297 14284 /* This is the first section with this name. Record it. */
c77ec726 14285 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
bb6198d2 14286 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
c77ec726 14287 return sec->output_section == bfd_abs_section_ptr;
082b7297 14288}
81e1b023 14289
a4d8e49b
L
14290bfd_boolean
14291_bfd_elf_common_definition (Elf_Internal_Sym *sym)
14292{
14293 return sym->st_shndx == SHN_COMMON;
14294}
14295
14296unsigned int
14297_bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
14298{
14299 return SHN_COMMON;
14300}
14301
14302asection *
14303_bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
14304{
14305 return bfd_com_section_ptr;
14306}
10455f89
HPN
14307
14308bfd_vma
14309_bfd_elf_default_got_elt_size (bfd *abfd,
14310 struct bfd_link_info *info ATTRIBUTE_UNUSED,
14311 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
14312 bfd *ibfd ATTRIBUTE_UNUSED,
14313 unsigned long symndx ATTRIBUTE_UNUSED)
14314{
14315 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14316 return bed->s->arch_size / 8;
14317}
83bac4b0
NC
14318
14319/* Routines to support the creation of dynamic relocs. */
14320
83bac4b0
NC
14321/* Returns the name of the dynamic reloc section associated with SEC. */
14322
14323static const char *
14324get_dynamic_reloc_section_name (bfd * abfd,
14325 asection * sec,
14326 bfd_boolean is_rela)
14327{
ddcf1fcf
BS
14328 char *name;
14329 const char *old_name = bfd_get_section_name (NULL, sec);
14330 const char *prefix = is_rela ? ".rela" : ".rel";
83bac4b0 14331
ddcf1fcf 14332 if (old_name == NULL)
83bac4b0
NC
14333 return NULL;
14334
ddcf1fcf 14335 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
68ffbac6 14336 sprintf (name, "%s%s", prefix, old_name);
83bac4b0
NC
14337
14338 return name;
14339}
14340
14341/* Returns the dynamic reloc section associated with SEC.
14342 If necessary compute the name of the dynamic reloc section based
14343 on SEC's name (looked up in ABFD's string table) and the setting
14344 of IS_RELA. */
14345
14346asection *
14347_bfd_elf_get_dynamic_reloc_section (bfd * abfd,
14348 asection * sec,
14349 bfd_boolean is_rela)
14350{
14351 asection * reloc_sec = elf_section_data (sec)->sreloc;
14352
14353 if (reloc_sec == NULL)
14354 {
14355 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14356
14357 if (name != NULL)
14358 {
3d4d4302 14359 reloc_sec = bfd_get_linker_section (abfd, name);
83bac4b0
NC
14360
14361 if (reloc_sec != NULL)
14362 elf_section_data (sec)->sreloc = reloc_sec;
14363 }
14364 }
14365
14366 return reloc_sec;
14367}
14368
14369/* Returns the dynamic reloc section associated with SEC. If the
14370 section does not exist it is created and attached to the DYNOBJ
14371 bfd and stored in the SRELOC field of SEC's elf_section_data
14372 structure.
f8076f98 14373
83bac4b0
NC
14374 ALIGNMENT is the alignment for the newly created section and
14375 IS_RELA defines whether the name should be .rela.<SEC's name>
14376 or .rel.<SEC's name>. The section name is looked up in the
14377 string table associated with ABFD. */
14378
14379asection *
ca4be51c
AM
14380_bfd_elf_make_dynamic_reloc_section (asection *sec,
14381 bfd *dynobj,
14382 unsigned int alignment,
14383 bfd *abfd,
14384 bfd_boolean is_rela)
83bac4b0
NC
14385{
14386 asection * reloc_sec = elf_section_data (sec)->sreloc;
14387
14388 if (reloc_sec == NULL)
14389 {
14390 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14391
14392 if (name == NULL)
14393 return NULL;
14394
3d4d4302 14395 reloc_sec = bfd_get_linker_section (dynobj, name);
83bac4b0
NC
14396
14397 if (reloc_sec == NULL)
14398 {
3d4d4302
AM
14399 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
14400 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
83bac4b0
NC
14401 if ((sec->flags & SEC_ALLOC) != 0)
14402 flags |= SEC_ALLOC | SEC_LOAD;
14403
3d4d4302 14404 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
83bac4b0
NC
14405 if (reloc_sec != NULL)
14406 {
8877b5e5
AM
14407 /* _bfd_elf_get_sec_type_attr chooses a section type by
14408 name. Override as it may be wrong, eg. for a user
14409 section named "auto" we'll get ".relauto" which is
14410 seen to be a .rela section. */
14411 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
83bac4b0
NC
14412 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
14413 reloc_sec = NULL;
14414 }
14415 }
14416
14417 elf_section_data (sec)->sreloc = reloc_sec;
14418 }
14419
14420 return reloc_sec;
14421}
1338dd10 14422
bffebb6b
AM
14423/* Copy the ELF symbol type and other attributes for a linker script
14424 assignment from HSRC to HDEST. Generally this should be treated as
14425 if we found a strong non-dynamic definition for HDEST (except that
14426 ld ignores multiple definition errors). */
1338dd10 14427void
bffebb6b
AM
14428_bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
14429 struct bfd_link_hash_entry *hdest,
14430 struct bfd_link_hash_entry *hsrc)
1338dd10 14431{
bffebb6b
AM
14432 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
14433 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
14434 Elf_Internal_Sym isym;
1338dd10
PB
14435
14436 ehdest->type = ehsrc->type;
35fc36a8 14437 ehdest->target_internal = ehsrc->target_internal;
bffebb6b
AM
14438
14439 isym.st_other = ehsrc->other;
b8417128 14440 elf_merge_st_other (abfd, ehdest, &isym, NULL, TRUE, FALSE);
1338dd10 14441}
351f65ca
L
14442
14443/* Append a RELA relocation REL to section S in BFD. */
14444
14445void
14446elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14447{
14448 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14449 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
14450 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
14451 bed->s->swap_reloca_out (abfd, rel, loc);
14452}
14453
14454/* Append a REL relocation REL to section S in BFD. */
14455
14456void
14457elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14458{
14459 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14460 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
14461 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
59d6ffb2 14462 bed->s->swap_reloc_out (abfd, rel, loc);
351f65ca 14463}
7dba9362
AM
14464
14465/* Define __start, __stop, .startof. or .sizeof. symbol. */
14466
14467struct bfd_link_hash_entry *
14468bfd_elf_define_start_stop (struct bfd_link_info *info,
14469 const char *symbol, asection *sec)
14470{
487b6440 14471 struct elf_link_hash_entry *h;
7dba9362 14472
487b6440
AM
14473 h = elf_link_hash_lookup (elf_hash_table (info), symbol,
14474 FALSE, FALSE, TRUE);
14475 if (h != NULL
14476 && (h->root.type == bfd_link_hash_undefined
14477 || h->root.type == bfd_link_hash_undefweak
bf3077a6 14478 || ((h->ref_regular || h->def_dynamic) && !h->def_regular)))
7dba9362 14479 {
bf3077a6 14480 bfd_boolean was_dynamic = h->ref_dynamic || h->def_dynamic;
487b6440
AM
14481 h->root.type = bfd_link_hash_defined;
14482 h->root.u.def.section = sec;
14483 h->root.u.def.value = 0;
14484 h->def_regular = 1;
14485 h->def_dynamic = 0;
14486 h->start_stop = 1;
14487 h->u2.start_stop_section = sec;
14488 if (symbol[0] == '.')
14489 {
14490 /* .startof. and .sizeof. symbols are local. */
559192d8
AM
14491 const struct elf_backend_data *bed;
14492 bed = get_elf_backend_data (info->output_bfd);
14493 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
487b6440 14494 }
36b8fda5
AM
14495 else
14496 {
14497 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
14498 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_PROTECTED;
bf3077a6 14499 if (was_dynamic)
36b8fda5
AM
14500 bfd_elf_link_record_dynamic_symbol (info, h);
14501 }
487b6440 14502 return &h->root;
7dba9362 14503 }
487b6440 14504 return NULL;
7dba9362 14505}
This page took 3.642043 seconds and 4 git commands to generate.