Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / elflink.c
CommitLineData
252b5132 1/* ELF linking support for BFD.
82704155 2 Copyright (C) 1995-2019 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"
252b5132
RH
23#include "bfdlink.h"
24#include "libbfd.h"
25#define ARCH_SIZE 0
26#include "elf-bfd.h"
4ad4eba5 27#include "safe-ctype.h"
ccf2f652 28#include "libiberty.h"
66eb6687 29#include "objalloc.h"
08ce1d72 30#if BFD_SUPPORTS_PLUGINS
7d0b9ebc 31#include "plugin-api.h"
7dc3990e
L
32#include "plugin.h"
33#endif
252b5132 34
28caa186
AM
35/* This struct is used to pass information to routines called via
36 elf_link_hash_traverse which must return failure. */
37
38struct elf_info_failed
39{
40 struct bfd_link_info *info;
28caa186
AM
41 bfd_boolean failed;
42};
43
44/* This structure is used to pass information to
45 _bfd_elf_link_find_version_dependencies. */
46
47struct elf_find_verdep_info
48{
49 /* General link information. */
50 struct bfd_link_info *info;
51 /* The number of dependencies. */
52 unsigned int vers;
53 /* Whether we had a failure. */
54 bfd_boolean failed;
55};
56
57static bfd_boolean _bfd_elf_fix_symbol_flags
58 (struct elf_link_hash_entry *, struct elf_info_failed *);
59
2f0c68f2
CM
60asection *
61_bfd_elf_section_for_symbol (struct elf_reloc_cookie *cookie,
62 unsigned long r_symndx,
63 bfd_boolean discard)
64{
65 if (r_symndx >= cookie->locsymcount
66 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
67 {
68 struct elf_link_hash_entry *h;
69
70 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
71
72 while (h->root.type == bfd_link_hash_indirect
73 || h->root.type == bfd_link_hash_warning)
74 h = (struct elf_link_hash_entry *) h->root.u.i.link;
75
76 if ((h->root.type == bfd_link_hash_defined
77 || h->root.type == bfd_link_hash_defweak)
78 && discarded_section (h->root.u.def.section))
07d6d2b8 79 return h->root.u.def.section;
2f0c68f2
CM
80 else
81 return NULL;
82 }
83 else
84 {
85 /* It's not a relocation against a global symbol,
86 but it could be a relocation against a local
87 symbol for a discarded section. */
88 asection *isec;
89 Elf_Internal_Sym *isym;
90
91 /* Need to: get the symbol; get the section. */
92 isym = &cookie->locsyms[r_symndx];
93 isec = bfd_section_from_elf_index (cookie->abfd, isym->st_shndx);
94 if (isec != NULL
95 && discard ? discarded_section (isec) : 1)
96 return isec;
97 }
98 return NULL;
99}
100
d98685ac
AM
101/* Define a symbol in a dynamic linkage section. */
102
103struct elf_link_hash_entry *
104_bfd_elf_define_linkage_sym (bfd *abfd,
105 struct bfd_link_info *info,
106 asection *sec,
107 const char *name)
108{
109 struct elf_link_hash_entry *h;
110 struct bfd_link_hash_entry *bh;
ccabcbe5 111 const struct elf_backend_data *bed;
d98685ac
AM
112
113 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
114 if (h != NULL)
115 {
116 /* Zap symbol defined in an as-needed lib that wasn't linked.
117 This is a symptom of a larger problem: Absolute symbols
118 defined in shared libraries can't be overridden, because we
119 lose the link to the bfd which is via the symbol section. */
120 h->root.type = bfd_link_hash_new;
ad32986f 121 bh = &h->root;
d98685ac 122 }
ad32986f
NC
123 else
124 bh = NULL;
d98685ac 125
cf18fda4 126 bed = get_elf_backend_data (abfd);
d98685ac 127 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
cf18fda4 128 sec, 0, NULL, FALSE, bed->collect,
d98685ac
AM
129 &bh))
130 return NULL;
131 h = (struct elf_link_hash_entry *) bh;
ad32986f 132 BFD_ASSERT (h != NULL);
d98685ac 133 h->def_regular = 1;
e28df02b 134 h->non_elf = 0;
12b2843a 135 h->root.linker_def = 1;
d98685ac 136 h->type = STT_OBJECT;
00b7642b
AM
137 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
138 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
d98685ac 139
ccabcbe5 140 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
d98685ac
AM
141 return h;
142}
143
b34976b6 144bfd_boolean
268b6b39 145_bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
252b5132
RH
146{
147 flagword flags;
aad5d350 148 asection *s;
252b5132 149 struct elf_link_hash_entry *h;
9c5bfbb7 150 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6de2ae4a 151 struct elf_link_hash_table *htab = elf_hash_table (info);
252b5132
RH
152
153 /* This function may be called more than once. */
ce558b89 154 if (htab->sgot != NULL)
b34976b6 155 return TRUE;
252b5132 156
e5a52504 157 flags = bed->dynamic_sec_flags;
252b5132 158
14b2f831
AM
159 s = bfd_make_section_anyway_with_flags (abfd,
160 (bed->rela_plts_and_copies_p
161 ? ".rela.got" : ".rel.got"),
162 (bed->dynamic_sec_flags
163 | SEC_READONLY));
6de2ae4a
L
164 if (s == NULL
165 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
166 return FALSE;
167 htab->srelgot = s;
252b5132 168
14b2f831 169 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
64e77c6d
L
170 if (s == NULL
171 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
172 return FALSE;
173 htab->sgot = s;
174
252b5132
RH
175 if (bed->want_got_plt)
176 {
14b2f831 177 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
252b5132 178 if (s == NULL
6de2ae4a
L
179 || !bfd_set_section_alignment (abfd, s,
180 bed->s->log_file_align))
b34976b6 181 return FALSE;
6de2ae4a 182 htab->sgotplt = s;
252b5132
RH
183 }
184
64e77c6d
L
185 /* The first bit of the global offset table is the header. */
186 s->size += bed->got_header_size;
187
2517a57f
AM
188 if (bed->want_got_sym)
189 {
190 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
191 (or .got.plt) section. We don't do this in the linker script
192 because we don't want to define the symbol if we are not creating
193 a global offset table. */
6de2ae4a
L
194 h = _bfd_elf_define_linkage_sym (abfd, info, s,
195 "_GLOBAL_OFFSET_TABLE_");
2517a57f 196 elf_hash_table (info)->hgot = h;
d98685ac
AM
197 if (h == NULL)
198 return FALSE;
2517a57f 199 }
252b5132 200
b34976b6 201 return TRUE;
252b5132
RH
202}
203\f
7e9f0867
AM
204/* Create a strtab to hold the dynamic symbol names. */
205static bfd_boolean
206_bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
207{
208 struct elf_link_hash_table *hash_table;
209
210 hash_table = elf_hash_table (info);
211 if (hash_table->dynobj == NULL)
6cd255ca
L
212 {
213 /* We may not set dynobj, an input file holding linker created
214 dynamic sections to abfd, which may be a dynamic object with
215 its own dynamic sections. We need to find a normal input file
216 to hold linker created sections if possible. */
217 if ((abfd->flags & (DYNAMIC | BFD_PLUGIN)) != 0)
218 {
219 bfd *ibfd;
57963c05 220 asection *s;
6cd255ca 221 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
6645479e 222 if ((ibfd->flags
57963c05
AM
223 & (DYNAMIC | BFD_LINKER_CREATED | BFD_PLUGIN)) == 0
224 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
4de5434b 225 && elf_object_id (ibfd) == elf_hash_table_id (hash_table)
57963c05
AM
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
f16a9783 342 if (info->emit_gnu_hash && bed->record_xhash_symbol == NULL)
fdc90cb4 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
48e30f52
L
689 /* If this symbol is currently defined by a dynamic object, but not
690 by a regular object, then clear out any version information because
691 the symbol will not be associated with the dynamic object any
692 more. */
693 if (h->def_dynamic && !h->def_regular)
b531344c
MR
694 h->verinfo.verdef = NULL;
695
696 /* Make sure this symbol is not garbage collected. */
697 h->mark = 1;
45d6a902 698
f5385ebf 699 h->def_regular = 1;
45d6a902 700
eb8476a6 701 if (hidden)
fe21a8fc 702 {
91d6fa6a 703 bed = get_elf_backend_data (output_bfd);
b8297068
AM
704 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
705 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
fe21a8fc
L
706 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
707 }
708
6fa3860b
PB
709 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
710 and executables. */
0e1862bb 711 if (!bfd_link_relocatable (info)
6fa3860b
PB
712 && h->dynindx != -1
713 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
714 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
715 h->forced_local = 1;
716
f5385ebf
AM
717 if ((h->def_dynamic
718 || h->ref_dynamic
6b3b0ab8
L
719 || bfd_link_dll (info)
720 || elf_hash_table (info)->is_relocatable_executable)
34a87bb0 721 && !h->forced_local
45d6a902
AM
722 && h->dynindx == -1)
723 {
c152c796 724 if (! bfd_elf_link_record_dynamic_symbol (info, h))
45d6a902
AM
725 return FALSE;
726
727 /* If this is a weak defined symbol, and we know a corresponding
728 real symbol from the same dynamic object, make sure the real
729 symbol is also made into a dynamic symbol. */
60d67dc8 730 if (h->is_weakalias)
45d6a902 731 {
60d67dc8
AM
732 struct elf_link_hash_entry *def = weakdef (h);
733
734 if (def->dynindx == -1
735 && !bfd_elf_link_record_dynamic_symbol (info, def))
45d6a902
AM
736 return FALSE;
737 }
738 }
739
740 return TRUE;
741}
42751cf3 742
8c58d23b
AM
743/* Record a new local dynamic symbol. Returns 0 on failure, 1 on
744 success, and 2 on a failure caused by attempting to record a symbol
745 in a discarded section, eg. a discarded link-once section symbol. */
746
747int
c152c796
AM
748bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
749 bfd *input_bfd,
750 long input_indx)
8c58d23b
AM
751{
752 bfd_size_type amt;
753 struct elf_link_local_dynamic_entry *entry;
754 struct elf_link_hash_table *eht;
755 struct elf_strtab_hash *dynstr;
ef53be89 756 size_t dynstr_index;
8c58d23b
AM
757 char *name;
758 Elf_External_Sym_Shndx eshndx;
759 char esym[sizeof (Elf64_External_Sym)];
760
0eddce27 761 if (! is_elf_hash_table (info->hash))
8c58d23b
AM
762 return 0;
763
764 /* See if the entry exists already. */
765 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
766 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
767 return 1;
768
769 amt = sizeof (*entry);
a50b1753 770 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
8c58d23b
AM
771 if (entry == NULL)
772 return 0;
773
774 /* Go find the symbol, so that we can find it's name. */
775 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
268b6b39 776 1, input_indx, &entry->isym, esym, &eshndx))
8c58d23b
AM
777 {
778 bfd_release (input_bfd, entry);
779 return 0;
780 }
781
782 if (entry->isym.st_shndx != SHN_UNDEF
4fbb74a6 783 && entry->isym.st_shndx < SHN_LORESERVE)
8c58d23b
AM
784 {
785 asection *s;
786
787 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
788 if (s == NULL || bfd_is_abs_section (s->output_section))
789 {
790 /* We can still bfd_release here as nothing has done another
791 bfd_alloc. We can't do this later in this function. */
792 bfd_release (input_bfd, entry);
793 return 2;
794 }
795 }
796
797 name = (bfd_elf_string_from_elf_section
798 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
799 entry->isym.st_name));
800
801 dynstr = elf_hash_table (info)->dynstr;
802 if (dynstr == NULL)
803 {
804 /* Create a strtab to hold the dynamic symbol names. */
805 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
806 if (dynstr == NULL)
807 return 0;
808 }
809
b34976b6 810 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
ef53be89 811 if (dynstr_index == (size_t) -1)
8c58d23b
AM
812 return 0;
813 entry->isym.st_name = dynstr_index;
814
815 eht = elf_hash_table (info);
816
817 entry->next = eht->dynlocal;
818 eht->dynlocal = entry;
819 entry->input_bfd = input_bfd;
820 entry->input_indx = input_indx;
821 eht->dynsymcount++;
822
823 /* Whatever binding the symbol had before, it's now local. */
824 entry->isym.st_info
825 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
826
827 /* The dynindx will be set at the end of size_dynamic_sections. */
828
829 return 1;
830}
831
30b30c21 832/* Return the dynindex of a local dynamic symbol. */
42751cf3 833
30b30c21 834long
268b6b39
AM
835_bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
836 bfd *input_bfd,
837 long input_indx)
30b30c21
RH
838{
839 struct elf_link_local_dynamic_entry *e;
840
841 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
842 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
843 return e->dynindx;
844 return -1;
845}
846
847/* This function is used to renumber the dynamic symbols, if some of
848 them are removed because they are marked as local. This is called
849 via elf_link_hash_traverse. */
850
b34976b6 851static bfd_boolean
268b6b39
AM
852elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
853 void *data)
42751cf3 854{
a50b1753 855 size_t *count = (size_t *) data;
30b30c21 856
6fa3860b
PB
857 if (h->forced_local)
858 return TRUE;
859
860 if (h->dynindx != -1)
861 h->dynindx = ++(*count);
862
863 return TRUE;
864}
865
866
867/* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
868 STB_LOCAL binding. */
869
870static bfd_boolean
871elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
872 void *data)
873{
a50b1753 874 size_t *count = (size_t *) data;
6fa3860b 875
6fa3860b
PB
876 if (!h->forced_local)
877 return TRUE;
878
42751cf3 879 if (h->dynindx != -1)
30b30c21
RH
880 h->dynindx = ++(*count);
881
b34976b6 882 return TRUE;
42751cf3 883}
30b30c21 884
aee6f5b4
AO
885/* Return true if the dynamic symbol for a given section should be
886 omitted when creating a shared library. */
887bfd_boolean
d00dd7dc
AM
888_bfd_elf_omit_section_dynsym_default (bfd *output_bfd ATTRIBUTE_UNUSED,
889 struct bfd_link_info *info,
890 asection *p)
aee6f5b4 891{
74541ad4 892 struct elf_link_hash_table *htab;
ca55926c 893 asection *ip;
74541ad4 894
aee6f5b4
AO
895 switch (elf_section_data (p)->this_hdr.sh_type)
896 {
897 case SHT_PROGBITS:
898 case SHT_NOBITS:
899 /* If sh_type is yet undecided, assume it could be
900 SHT_PROGBITS/SHT_NOBITS. */
901 case SHT_NULL:
74541ad4 902 htab = elf_hash_table (info);
74541ad4
AM
903 if (htab->text_index_section != NULL)
904 return p != htab->text_index_section && p != htab->data_index_section;
905
ca55926c 906 return (htab->dynobj != NULL
3d4d4302 907 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
ca55926c 908 && ip->output_section == p);
aee6f5b4
AO
909
910 /* There shouldn't be section relative relocations
911 against any other section. */
912 default:
913 return TRUE;
914 }
915}
916
d00dd7dc
AM
917bfd_boolean
918_bfd_elf_omit_section_dynsym_all
919 (bfd *output_bfd ATTRIBUTE_UNUSED,
920 struct bfd_link_info *info ATTRIBUTE_UNUSED,
921 asection *p ATTRIBUTE_UNUSED)
922{
923 return TRUE;
924}
925
062e2358 926/* Assign dynsym indices. In a shared library we generate a section
6fa3860b
PB
927 symbol for each output section, which come first. Next come symbols
928 which have been forced to local binding. Then all of the back-end
929 allocated local dynamic syms, followed by the rest of the global
63f452a8
AM
930 symbols. If SECTION_SYM_COUNT is NULL, section dynindx is not set.
931 (This prevents the early call before elf_backend_init_index_section
932 and strip_excluded_output_sections setting dynindx for sections
933 that are stripped.) */
30b30c21 934
554220db
AM
935static unsigned long
936_bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
937 struct bfd_link_info *info,
938 unsigned long *section_sym_count)
30b30c21
RH
939{
940 unsigned long dynsymcount = 0;
63f452a8 941 bfd_boolean do_sec = section_sym_count != NULL;
30b30c21 942
0e1862bb
L
943 if (bfd_link_pic (info)
944 || elf_hash_table (info)->is_relocatable_executable)
30b30c21 945 {
aee6f5b4 946 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
30b30c21
RH
947 asection *p;
948 for (p = output_bfd->sections; p ; p = p->next)
8c37241b 949 if ((p->flags & SEC_EXCLUDE) == 0
aee6f5b4 950 && (p->flags & SEC_ALLOC) != 0
7f923b7f 951 && elf_hash_table (info)->dynamic_relocs
aee6f5b4 952 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
63f452a8
AM
953 {
954 ++dynsymcount;
955 if (do_sec)
956 elf_section_data (p)->dynindx = dynsymcount;
957 }
958 else if (do_sec)
74541ad4 959 elf_section_data (p)->dynindx = 0;
30b30c21 960 }
63f452a8
AM
961 if (do_sec)
962 *section_sym_count = dynsymcount;
30b30c21 963
6fa3860b
PB
964 elf_link_hash_traverse (elf_hash_table (info),
965 elf_link_renumber_local_hash_table_dynsyms,
966 &dynsymcount);
967
30b30c21
RH
968 if (elf_hash_table (info)->dynlocal)
969 {
970 struct elf_link_local_dynamic_entry *p;
971 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
972 p->dynindx = ++dynsymcount;
973 }
90ac2420 974 elf_hash_table (info)->local_dynsymcount = dynsymcount;
30b30c21
RH
975
976 elf_link_hash_traverse (elf_hash_table (info),
977 elf_link_renumber_hash_table_dynsyms,
978 &dynsymcount);
979
d5486c43
L
980 /* There is an unused NULL entry at the head of the table which we
981 must account for in our count even if the table is empty since it
982 is intended for the mandatory DT_SYMTAB tag (.dynsym section) in
983 .dynamic section. */
984 dynsymcount++;
30b30c21 985
ccabcbe5
AM
986 elf_hash_table (info)->dynsymcount = dynsymcount;
987 return dynsymcount;
30b30c21 988}
252b5132 989
54ac0771
L
990/* Merge st_other field. */
991
992static void
993elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
b8417128 994 const Elf_Internal_Sym *isym, asection *sec,
cd3416da 995 bfd_boolean definition, bfd_boolean dynamic)
54ac0771
L
996{
997 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
998
999 /* If st_other has a processor-specific meaning, specific
cd3416da 1000 code might be needed here. */
54ac0771
L
1001 if (bed->elf_backend_merge_symbol_attribute)
1002 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
1003 dynamic);
1004
cd3416da 1005 if (!dynamic)
54ac0771 1006 {
cd3416da
AM
1007 unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
1008 unsigned hvis = ELF_ST_VISIBILITY (h->other);
54ac0771 1009
cd3416da
AM
1010 /* Keep the most constraining visibility. Leave the remainder
1011 of the st_other field to elf_backend_merge_symbol_attribute. */
1012 if (symvis - 1 < hvis - 1)
1013 h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
54ac0771 1014 }
b8417128
AM
1015 else if (definition
1016 && ELF_ST_VISIBILITY (isym->st_other) != STV_DEFAULT
1017 && (sec->flags & SEC_READONLY) == 0)
6cabe1ea 1018 h->protected_def = 1;
54ac0771
L
1019}
1020
4f3fedcf
AM
1021/* This function is called when we want to merge a new symbol with an
1022 existing symbol. It handles the various cases which arise when we
1023 find a definition in a dynamic object, or when there is already a
1024 definition in a dynamic object. The new symbol is described by
1025 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
1026 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
1027 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
1028 of an old common symbol. We set OVERRIDE if the old symbol is
1029 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
1030 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
1031 to change. By OK to change, we mean that we shouldn't warn if the
1032 type or size does change. */
45d6a902 1033
8a56bd02 1034static bfd_boolean
268b6b39
AM
1035_bfd_elf_merge_symbol (bfd *abfd,
1036 struct bfd_link_info *info,
1037 const char *name,
1038 Elf_Internal_Sym *sym,
1039 asection **psec,
1040 bfd_vma *pvalue,
4f3fedcf
AM
1041 struct elf_link_hash_entry **sym_hash,
1042 bfd **poldbfd,
37a9e49a 1043 bfd_boolean *pold_weak,
af44c138 1044 unsigned int *pold_alignment,
268b6b39
AM
1045 bfd_boolean *skip,
1046 bfd_boolean *override,
1047 bfd_boolean *type_change_ok,
6e33951e
L
1048 bfd_boolean *size_change_ok,
1049 bfd_boolean *matched)
252b5132 1050{
7479dfd4 1051 asection *sec, *oldsec;
45d6a902 1052 struct elf_link_hash_entry *h;
90c984fc 1053 struct elf_link_hash_entry *hi;
45d6a902
AM
1054 struct elf_link_hash_entry *flip;
1055 int bind;
1056 bfd *oldbfd;
1057 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
0a36a439 1058 bfd_boolean newweak, oldweak, newfunc, oldfunc;
a4d8e49b 1059 const struct elf_backend_data *bed;
6e33951e 1060 char *new_version;
93f4de39 1061 bfd_boolean default_sym = *matched;
45d6a902
AM
1062
1063 *skip = FALSE;
1064 *override = FALSE;
1065
1066 sec = *psec;
1067 bind = ELF_ST_BIND (sym->st_info);
1068
1069 if (! bfd_is_und_section (sec))
1070 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
1071 else
1072 h = ((struct elf_link_hash_entry *)
1073 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
1074 if (h == NULL)
1075 return FALSE;
1076 *sym_hash = h;
252b5132 1077
88ba32a0
L
1078 bed = get_elf_backend_data (abfd);
1079
6e33951e 1080 /* NEW_VERSION is the symbol version of the new symbol. */
422f1182 1081 if (h->versioned != unversioned)
6e33951e 1082 {
422f1182
L
1083 /* Symbol version is unknown or versioned. */
1084 new_version = strrchr (name, ELF_VER_CHR);
1085 if (new_version)
1086 {
1087 if (h->versioned == unknown)
1088 {
1089 if (new_version > name && new_version[-1] != ELF_VER_CHR)
1090 h->versioned = versioned_hidden;
1091 else
1092 h->versioned = versioned;
1093 }
1094 new_version += 1;
1095 if (new_version[0] == '\0')
1096 new_version = NULL;
1097 }
1098 else
1099 h->versioned = unversioned;
6e33951e 1100 }
422f1182
L
1101 else
1102 new_version = NULL;
6e33951e 1103
90c984fc
L
1104 /* For merging, we only care about real symbols. But we need to make
1105 sure that indirect symbol dynamic flags are updated. */
1106 hi = h;
45d6a902
AM
1107 while (h->root.type == bfd_link_hash_indirect
1108 || h->root.type == bfd_link_hash_warning)
1109 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1110
6e33951e
L
1111 if (!*matched)
1112 {
1113 if (hi == h || h->root.type == bfd_link_hash_new)
1114 *matched = TRUE;
1115 else
1116 {
ae7683d2 1117 /* OLD_HIDDEN is true if the existing symbol is only visible
6e33951e 1118 to the symbol with the same symbol version. NEW_HIDDEN is
ae7683d2 1119 true if the new symbol is only visible to the symbol with
6e33951e 1120 the same symbol version. */
422f1182
L
1121 bfd_boolean old_hidden = h->versioned == versioned_hidden;
1122 bfd_boolean new_hidden = hi->versioned == versioned_hidden;
6e33951e
L
1123 if (!old_hidden && !new_hidden)
1124 /* The new symbol matches the existing symbol if both
1125 aren't hidden. */
1126 *matched = TRUE;
1127 else
1128 {
1129 /* OLD_VERSION is the symbol version of the existing
1130 symbol. */
422f1182
L
1131 char *old_version;
1132
1133 if (h->versioned >= versioned)
1134 old_version = strrchr (h->root.root.string,
1135 ELF_VER_CHR) + 1;
1136 else
1137 old_version = NULL;
6e33951e
L
1138
1139 /* The new symbol matches the existing symbol if they
1140 have the same symbol version. */
1141 *matched = (old_version == new_version
1142 || (old_version != NULL
1143 && new_version != NULL
1144 && strcmp (old_version, new_version) == 0));
1145 }
1146 }
1147 }
1148
934bce08
AM
1149 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
1150 existing symbol. */
1151
1152 oldbfd = NULL;
1153 oldsec = NULL;
1154 switch (h->root.type)
1155 {
1156 default:
1157 break;
1158
1159 case bfd_link_hash_undefined:
1160 case bfd_link_hash_undefweak:
1161 oldbfd = h->root.u.undef.abfd;
1162 break;
1163
1164 case bfd_link_hash_defined:
1165 case bfd_link_hash_defweak:
1166 oldbfd = h->root.u.def.section->owner;
1167 oldsec = h->root.u.def.section;
1168 break;
1169
1170 case bfd_link_hash_common:
1171 oldbfd = h->root.u.c.p->section->owner;
1172 oldsec = h->root.u.c.p->section;
1173 if (pold_alignment)
1174 *pold_alignment = h->root.u.c.p->alignment_power;
1175 break;
1176 }
1177 if (poldbfd && *poldbfd == NULL)
1178 *poldbfd = oldbfd;
1179
1180 /* Differentiate strong and weak symbols. */
1181 newweak = bind == STB_WEAK;
1182 oldweak = (h->root.type == bfd_link_hash_defweak
1183 || h->root.type == bfd_link_hash_undefweak);
1184 if (pold_weak)
1185 *pold_weak = oldweak;
1186
40b36307 1187 /* We have to check it for every instance since the first few may be
ee659f1f 1188 references and not all compilers emit symbol type for undefined
40b36307
L
1189 symbols. */
1190 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
1191
ee659f1f
AM
1192 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
1193 respectively, is from a dynamic object. */
1194
1195 newdyn = (abfd->flags & DYNAMIC) != 0;
1196
1197 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
1198 syms and defined syms in dynamic libraries respectively.
1199 ref_dynamic on the other hand can be set for a symbol defined in
1200 a dynamic library, and def_dynamic may not be set; When the
1201 definition in a dynamic lib is overridden by a definition in the
1202 executable use of the symbol in the dynamic lib becomes a
1203 reference to the executable symbol. */
1204 if (newdyn)
1205 {
1206 if (bfd_is_und_section (sec))
1207 {
1208 if (bind != STB_WEAK)
1209 {
1210 h->ref_dynamic_nonweak = 1;
1211 hi->ref_dynamic_nonweak = 1;
1212 }
1213 }
1214 else
1215 {
6e33951e
L
1216 /* Update the existing symbol only if they match. */
1217 if (*matched)
1218 h->dynamic_def = 1;
ee659f1f
AM
1219 hi->dynamic_def = 1;
1220 }
1221 }
1222
45d6a902
AM
1223 /* If we just created the symbol, mark it as being an ELF symbol.
1224 Other than that, there is nothing to do--there is no merge issue
1225 with a newly defined symbol--so we just return. */
1226
1227 if (h->root.type == bfd_link_hash_new)
252b5132 1228 {
f5385ebf 1229 h->non_elf = 0;
45d6a902
AM
1230 return TRUE;
1231 }
252b5132 1232
45d6a902
AM
1233 /* In cases involving weak versioned symbols, we may wind up trying
1234 to merge a symbol with itself. Catch that here, to avoid the
1235 confusion that results if we try to override a symbol with
1236 itself. The additional tests catch cases like
1237 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1238 dynamic object, which we do want to handle here. */
1239 if (abfd == oldbfd
895fa45f 1240 && (newweak || oldweak)
45d6a902 1241 && ((abfd->flags & DYNAMIC) == 0
f5385ebf 1242 || !h->def_regular))
45d6a902
AM
1243 return TRUE;
1244
707bba77 1245 olddyn = FALSE;
45d6a902
AM
1246 if (oldbfd != NULL)
1247 olddyn = (oldbfd->flags & DYNAMIC) != 0;
707bba77 1248 else if (oldsec != NULL)
45d6a902 1249 {
707bba77 1250 /* This handles the special SHN_MIPS_{TEXT,DATA} section
45d6a902 1251 indices used by MIPS ELF. */
707bba77 1252 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
45d6a902 1253 }
252b5132 1254
1a3b5c34
AM
1255 /* Handle a case where plugin_notice won't be called and thus won't
1256 set the non_ir_ref flags on the first pass over symbols. */
1257 if (oldbfd != NULL
1258 && (oldbfd->flags & BFD_PLUGIN) != (abfd->flags & BFD_PLUGIN)
1259 && newdyn != olddyn)
1260 {
1261 h->root.non_ir_ref_dynamic = TRUE;
1262 hi->root.non_ir_ref_dynamic = TRUE;
1263 }
1264
45d6a902
AM
1265 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1266 respectively, appear to be a definition rather than reference. */
1267
707bba77 1268 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
45d6a902 1269
707bba77
AM
1270 olddef = (h->root.type != bfd_link_hash_undefined
1271 && h->root.type != bfd_link_hash_undefweak
202ac193 1272 && h->root.type != bfd_link_hash_common);
45d6a902 1273
0a36a439
L
1274 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1275 respectively, appear to be a function. */
1276
1277 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1278 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1279
1280 oldfunc = (h->type != STT_NOTYPE
1281 && bed->is_function_type (h->type));
1282
c5d37467 1283 if (!(newfunc && oldfunc)
5b677558
AM
1284 && ELF_ST_TYPE (sym->st_info) != h->type
1285 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1286 && h->type != STT_NOTYPE
c5d37467
AM
1287 && (newdef || bfd_is_com_section (sec))
1288 && (olddef || h->root.type == bfd_link_hash_common))
580a2b6e 1289 {
c5d37467
AM
1290 /* If creating a default indirect symbol ("foo" or "foo@") from
1291 a dynamic versioned definition ("foo@@") skip doing so if
1292 there is an existing regular definition with a different
1293 type. We don't want, for example, a "time" variable in the
1294 executable overriding a "time" function in a shared library. */
1295 if (newdyn
1296 && !olddyn)
1297 {
1298 *skip = TRUE;
1299 return TRUE;
1300 }
1301
1302 /* When adding a symbol from a regular object file after we have
1303 created indirect symbols, undo the indirection and any
1304 dynamic state. */
1305 if (hi != h
1306 && !newdyn
1307 && olddyn)
1308 {
1309 h = hi;
1310 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1311 h->forced_local = 0;
1312 h->ref_dynamic = 0;
1313 h->def_dynamic = 0;
1314 h->dynamic_def = 0;
1315 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1316 {
1317 h->root.type = bfd_link_hash_undefined;
1318 h->root.u.undef.abfd = abfd;
1319 }
1320 else
1321 {
1322 h->root.type = bfd_link_hash_new;
1323 h->root.u.undef.abfd = NULL;
1324 }
1325 return TRUE;
1326 }
580a2b6e
L
1327 }
1328
4c34aff8
AM
1329 /* Check TLS symbols. We don't check undefined symbols introduced
1330 by "ld -u" which have no type (and oldbfd NULL), and we don't
1331 check symbols from plugins because they also have no type. */
1332 if (oldbfd != NULL
1333 && (oldbfd->flags & BFD_PLUGIN) == 0
1334 && (abfd->flags & BFD_PLUGIN) == 0
1335 && ELF_ST_TYPE (sym->st_info) != h->type
1336 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
7479dfd4
L
1337 {
1338 bfd *ntbfd, *tbfd;
1339 bfd_boolean ntdef, tdef;
1340 asection *ntsec, *tsec;
1341
1342 if (h->type == STT_TLS)
1343 {
3b36f7e6 1344 ntbfd = abfd;
7479dfd4
L
1345 ntsec = sec;
1346 ntdef = newdef;
1347 tbfd = oldbfd;
1348 tsec = oldsec;
1349 tdef = olddef;
1350 }
1351 else
1352 {
1353 ntbfd = oldbfd;
1354 ntsec = oldsec;
1355 ntdef = olddef;
1356 tbfd = abfd;
1357 tsec = sec;
1358 tdef = newdef;
1359 }
1360
1361 if (tdef && ntdef)
4eca0228 1362 _bfd_error_handler
695344c0 1363 /* xgettext:c-format */
871b3ab2
AM
1364 (_("%s: TLS definition in %pB section %pA "
1365 "mismatches non-TLS definition in %pB section %pA"),
c08bb8dd 1366 h->root.root.string, tbfd, tsec, ntbfd, ntsec);
7479dfd4 1367 else if (!tdef && !ntdef)
4eca0228 1368 _bfd_error_handler
695344c0 1369 /* xgettext:c-format */
871b3ab2
AM
1370 (_("%s: TLS reference in %pB "
1371 "mismatches non-TLS reference in %pB"),
c08bb8dd 1372 h->root.root.string, tbfd, ntbfd);
7479dfd4 1373 else if (tdef)
4eca0228 1374 _bfd_error_handler
695344c0 1375 /* xgettext:c-format */
871b3ab2
AM
1376 (_("%s: TLS definition in %pB section %pA "
1377 "mismatches non-TLS reference in %pB"),
c08bb8dd 1378 h->root.root.string, tbfd, tsec, ntbfd);
7479dfd4 1379 else
4eca0228 1380 _bfd_error_handler
695344c0 1381 /* xgettext:c-format */
871b3ab2
AM
1382 (_("%s: TLS reference in %pB "
1383 "mismatches non-TLS definition in %pB section %pA"),
c08bb8dd 1384 h->root.root.string, tbfd, ntbfd, ntsec);
7479dfd4
L
1385
1386 bfd_set_error (bfd_error_bad_value);
1387 return FALSE;
1388 }
1389
45d6a902
AM
1390 /* If the old symbol has non-default visibility, we ignore the new
1391 definition from a dynamic object. */
1392 if (newdyn
9c7a29a3 1393 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902
AM
1394 && !bfd_is_und_section (sec))
1395 {
1396 *skip = TRUE;
1397 /* Make sure this symbol is dynamic. */
f5385ebf 1398 h->ref_dynamic = 1;
90c984fc 1399 hi->ref_dynamic = 1;
45d6a902
AM
1400 /* A protected symbol has external availability. Make sure it is
1401 recorded as dynamic.
1402
1403 FIXME: Should we check type and size for protected symbol? */
1404 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
c152c796 1405 return bfd_elf_link_record_dynamic_symbol (info, h);
45d6a902
AM
1406 else
1407 return TRUE;
1408 }
1409 else if (!newdyn
9c7a29a3 1410 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
f5385ebf 1411 && h->def_dynamic)
45d6a902
AM
1412 {
1413 /* If the new symbol with non-default visibility comes from a
1414 relocatable file and the old definition comes from a dynamic
1415 object, we remove the old definition. */
6c9b78e6 1416 if (hi->root.type == bfd_link_hash_indirect)
d2dee3b2
L
1417 {
1418 /* Handle the case where the old dynamic definition is
1419 default versioned. We need to copy the symbol info from
1420 the symbol with default version to the normal one if it
1421 was referenced before. */
1422 if (h->ref_regular)
1423 {
6c9b78e6 1424 hi->root.type = h->root.type;
d2dee3b2 1425 h->root.type = bfd_link_hash_indirect;
6c9b78e6 1426 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
aed81c4e 1427
6c9b78e6 1428 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
aed81c4e 1429 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
d2dee3b2 1430 {
aed81c4e
MR
1431 /* If the new symbol is hidden or internal, completely undo
1432 any dynamic link state. */
1433 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1434 h->forced_local = 0;
1435 h->ref_dynamic = 0;
d2dee3b2
L
1436 }
1437 else
aed81c4e
MR
1438 h->ref_dynamic = 1;
1439
1440 h->def_dynamic = 0;
aed81c4e
MR
1441 /* FIXME: Should we check type and size for protected symbol? */
1442 h->size = 0;
1443 h->type = 0;
1444
6c9b78e6 1445 h = hi;
d2dee3b2
L
1446 }
1447 else
6c9b78e6 1448 h = hi;
d2dee3b2 1449 }
1de1a317 1450
f5eda473
AM
1451 /* If the old symbol was undefined before, then it will still be
1452 on the undefs list. If the new symbol is undefined or
1453 common, we can't make it bfd_link_hash_new here, because new
1454 undefined or common symbols will be added to the undefs list
1455 by _bfd_generic_link_add_one_symbol. Symbols may not be
1456 added twice to the undefs list. Also, if the new symbol is
1457 undefweak then we don't want to lose the strong undef. */
1458 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1de1a317 1459 {
1de1a317 1460 h->root.type = bfd_link_hash_undefined;
1de1a317
L
1461 h->root.u.undef.abfd = abfd;
1462 }
1463 else
1464 {
1465 h->root.type = bfd_link_hash_new;
1466 h->root.u.undef.abfd = NULL;
1467 }
1468
f5eda473 1469 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
252b5132 1470 {
f5eda473
AM
1471 /* If the new symbol is hidden or internal, completely undo
1472 any dynamic link state. */
1473 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1474 h->forced_local = 0;
1475 h->ref_dynamic = 0;
45d6a902 1476 }
f5eda473
AM
1477 else
1478 h->ref_dynamic = 1;
1479 h->def_dynamic = 0;
45d6a902
AM
1480 /* FIXME: Should we check type and size for protected symbol? */
1481 h->size = 0;
1482 h->type = 0;
1483 return TRUE;
1484 }
14a793b2 1485
15b43f48
AM
1486 /* If a new weak symbol definition comes from a regular file and the
1487 old symbol comes from a dynamic library, we treat the new one as
1488 strong. Similarly, an old weak symbol definition from a regular
1489 file is treated as strong when the new symbol comes from a dynamic
1490 library. Further, an old weak symbol from a dynamic library is
1491 treated as strong if the new symbol is from a dynamic library.
1492 This reflects the way glibc's ld.so works.
1493
165f707a
AM
1494 Also allow a weak symbol to override a linker script symbol
1495 defined by an early pass over the script. This is done so the
1496 linker knows the symbol is defined in an object file, for the
1497 DEFINED script function.
1498
15b43f48
AM
1499 Do this before setting *type_change_ok or *size_change_ok so that
1500 we warn properly when dynamic library symbols are overridden. */
1501
165f707a 1502 if (newdef && !newdyn && (olddyn || h->root.ldscript_def))
0f8a2703 1503 newweak = FALSE;
15b43f48 1504 if (olddef && newdyn)
0f8a2703
AM
1505 oldweak = FALSE;
1506
d334575b 1507 /* Allow changes between different types of function symbol. */
0a36a439 1508 if (newfunc && oldfunc)
fcb93ecf
PB
1509 *type_change_ok = TRUE;
1510
79349b09
AM
1511 /* It's OK to change the type if either the existing symbol or the
1512 new symbol is weak. A type change is also OK if the old symbol
1513 is undefined and the new symbol is defined. */
252b5132 1514
79349b09
AM
1515 if (oldweak
1516 || newweak
1517 || (newdef
1518 && h->root.type == bfd_link_hash_undefined))
1519 *type_change_ok = TRUE;
1520
1521 /* It's OK to change the size if either the existing symbol or the
1522 new symbol is weak, or if the old symbol is undefined. */
1523
1524 if (*type_change_ok
1525 || h->root.type == bfd_link_hash_undefined)
1526 *size_change_ok = TRUE;
45d6a902 1527
45d6a902
AM
1528 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1529 symbol, respectively, appears to be a common symbol in a dynamic
1530 object. If a symbol appears in an uninitialized section, and is
1531 not weak, and is not a function, then it may be a common symbol
1532 which was resolved when the dynamic object was created. We want
1533 to treat such symbols specially, because they raise special
1534 considerations when setting the symbol size: if the symbol
1535 appears as a common symbol in a regular object, and the size in
1536 the regular object is larger, we must make sure that we use the
1537 larger size. This problematic case can always be avoided in C,
1538 but it must be handled correctly when using Fortran shared
1539 libraries.
1540
1541 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1542 likewise for OLDDYNCOMMON and OLDDEF.
1543
1544 Note that this test is just a heuristic, and that it is quite
1545 possible to have an uninitialized symbol in a shared object which
1546 is really a definition, rather than a common symbol. This could
1547 lead to some minor confusion when the symbol really is a common
1548 symbol in some regular object. However, I think it will be
1549 harmless. */
1550
1551 if (newdyn
1552 && newdef
79349b09 1553 && !newweak
45d6a902
AM
1554 && (sec->flags & SEC_ALLOC) != 0
1555 && (sec->flags & SEC_LOAD) == 0
1556 && sym->st_size > 0
0a36a439 1557 && !newfunc)
45d6a902
AM
1558 newdyncommon = TRUE;
1559 else
1560 newdyncommon = FALSE;
1561
1562 if (olddyn
1563 && olddef
1564 && h->root.type == bfd_link_hash_defined
f5385ebf 1565 && h->def_dynamic
45d6a902
AM
1566 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1567 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1568 && h->size > 0
0a36a439 1569 && !oldfunc)
45d6a902
AM
1570 olddyncommon = TRUE;
1571 else
1572 olddyncommon = FALSE;
1573
a4d8e49b
L
1574 /* We now know everything about the old and new symbols. We ask the
1575 backend to check if we can merge them. */
5d13b3b3
AM
1576 if (bed->merge_symbol != NULL)
1577 {
1578 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1579 return FALSE;
1580 sec = *psec;
1581 }
a4d8e49b 1582
a83ef4d1
L
1583 /* There are multiple definitions of a normal symbol. Skip the
1584 default symbol as well as definition from an IR object. */
93f4de39 1585 if (olddef && !olddyn && !oldweak && newdef && !newdyn && !newweak
a83ef4d1
L
1586 && !default_sym && h->def_regular
1587 && !(oldbfd != NULL
1588 && (oldbfd->flags & BFD_PLUGIN) != 0
1589 && (abfd->flags & BFD_PLUGIN) == 0))
93f4de39
RL
1590 {
1591 /* Handle a multiple definition. */
1592 (*info->callbacks->multiple_definition) (info, &h->root,
1593 abfd, sec, *pvalue);
1594 *skip = TRUE;
1595 return TRUE;
1596 }
1597
45d6a902
AM
1598 /* If both the old and the new symbols look like common symbols in a
1599 dynamic object, set the size of the symbol to the larger of the
1600 two. */
1601
1602 if (olddyncommon
1603 && newdyncommon
1604 && sym->st_size != h->size)
1605 {
1606 /* Since we think we have two common symbols, issue a multiple
1607 common warning if desired. Note that we only warn if the
1608 size is different. If the size is the same, we simply let
1609 the old symbol override the new one as normally happens with
1610 symbols defined in dynamic objects. */
1611
1a72702b
AM
1612 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1613 bfd_link_hash_common, sym->st_size);
45d6a902
AM
1614 if (sym->st_size > h->size)
1615 h->size = sym->st_size;
252b5132 1616
45d6a902 1617 *size_change_ok = TRUE;
252b5132
RH
1618 }
1619
45d6a902
AM
1620 /* If we are looking at a dynamic object, and we have found a
1621 definition, we need to see if the symbol was already defined by
1622 some other object. If so, we want to use the existing
1623 definition, and we do not want to report a multiple symbol
1624 definition error; we do this by clobbering *PSEC to be
1625 bfd_und_section_ptr.
1626
1627 We treat a common symbol as a definition if the symbol in the
1628 shared library is a function, since common symbols always
1629 represent variables; this can cause confusion in principle, but
1630 any such confusion would seem to indicate an erroneous program or
1631 shared library. We also permit a common symbol in a regular
8170f769 1632 object to override a weak symbol in a shared object. */
45d6a902
AM
1633
1634 if (newdyn
1635 && newdef
77cfaee6 1636 && (olddef
45d6a902 1637 || (h->root.type == bfd_link_hash_common
8170f769 1638 && (newweak || newfunc))))
45d6a902
AM
1639 {
1640 *override = TRUE;
1641 newdef = FALSE;
1642 newdyncommon = FALSE;
252b5132 1643
45d6a902
AM
1644 *psec = sec = bfd_und_section_ptr;
1645 *size_change_ok = TRUE;
252b5132 1646
45d6a902
AM
1647 /* If we get here when the old symbol is a common symbol, then
1648 we are explicitly letting it override a weak symbol or
1649 function in a dynamic object, and we don't want to warn about
1650 a type change. If the old symbol is a defined symbol, a type
1651 change warning may still be appropriate. */
252b5132 1652
45d6a902
AM
1653 if (h->root.type == bfd_link_hash_common)
1654 *type_change_ok = TRUE;
1655 }
1656
1657 /* Handle the special case of an old common symbol merging with a
1658 new symbol which looks like a common symbol in a shared object.
1659 We change *PSEC and *PVALUE to make the new symbol look like a
91134c82
L
1660 common symbol, and let _bfd_generic_link_add_one_symbol do the
1661 right thing. */
45d6a902
AM
1662
1663 if (newdyncommon
1664 && h->root.type == bfd_link_hash_common)
1665 {
1666 *override = TRUE;
1667 newdef = FALSE;
1668 newdyncommon = FALSE;
1669 *pvalue = sym->st_size;
a4d8e49b 1670 *psec = sec = bed->common_section (oldsec);
45d6a902
AM
1671 *size_change_ok = TRUE;
1672 }
1673
c5e2cead 1674 /* Skip weak definitions of symbols that are already defined. */
f41d945b 1675 if (newdef && olddef && newweak)
54ac0771 1676 {
35ed3f94 1677 /* Don't skip new non-IR weak syms. */
3a5dbfb2
AM
1678 if (!(oldbfd != NULL
1679 && (oldbfd->flags & BFD_PLUGIN) != 0
35ed3f94 1680 && (abfd->flags & BFD_PLUGIN) == 0))
57fa7b8c
AM
1681 {
1682 newdef = FALSE;
1683 *skip = TRUE;
1684 }
54ac0771
L
1685
1686 /* Merge st_other. If the symbol already has a dynamic index,
1687 but visibility says it should not be visible, turn it into a
1688 local symbol. */
b8417128 1689 elf_merge_st_other (abfd, h, sym, sec, newdef, newdyn);
54ac0771
L
1690 if (h->dynindx != -1)
1691 switch (ELF_ST_VISIBILITY (h->other))
1692 {
1693 case STV_INTERNAL:
1694 case STV_HIDDEN:
1695 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1696 break;
1697 }
1698 }
c5e2cead 1699
45d6a902
AM
1700 /* If the old symbol is from a dynamic object, and the new symbol is
1701 a definition which is not from a dynamic object, then the new
1702 symbol overrides the old symbol. Symbols from regular files
1703 always take precedence over symbols from dynamic objects, even if
1704 they are defined after the dynamic object in the link.
1705
1706 As above, we again permit a common symbol in a regular object to
1707 override a definition in a shared object if the shared object
0f8a2703 1708 symbol is a function or is weak. */
45d6a902
AM
1709
1710 flip = NULL;
77cfaee6 1711 if (!newdyn
45d6a902
AM
1712 && (newdef
1713 || (bfd_is_com_section (sec)
0a36a439 1714 && (oldweak || oldfunc)))
45d6a902
AM
1715 && olddyn
1716 && olddef
f5385ebf 1717 && h->def_dynamic)
45d6a902
AM
1718 {
1719 /* Change the hash table entry to undefined, and let
1720 _bfd_generic_link_add_one_symbol do the right thing with the
1721 new definition. */
1722
1723 h->root.type = bfd_link_hash_undefined;
1724 h->root.u.undef.abfd = h->root.u.def.section->owner;
1725 *size_change_ok = TRUE;
1726
1727 olddef = FALSE;
1728 olddyncommon = FALSE;
1729
1730 /* We again permit a type change when a common symbol may be
1731 overriding a function. */
1732
1733 if (bfd_is_com_section (sec))
0a36a439
L
1734 {
1735 if (oldfunc)
1736 {
1737 /* If a common symbol overrides a function, make sure
1738 that it isn't defined dynamically nor has type
1739 function. */
1740 h->def_dynamic = 0;
1741 h->type = STT_NOTYPE;
1742 }
1743 *type_change_ok = TRUE;
1744 }
45d6a902 1745
6c9b78e6
AM
1746 if (hi->root.type == bfd_link_hash_indirect)
1747 flip = hi;
45d6a902
AM
1748 else
1749 /* This union may have been set to be non-NULL when this symbol
1750 was seen in a dynamic object. We must force the union to be
1751 NULL, so that it is correct for a regular symbol. */
1752 h->verinfo.vertree = NULL;
1753 }
1754
1755 /* Handle the special case of a new common symbol merging with an
1756 old symbol that looks like it might be a common symbol defined in
1757 a shared object. Note that we have already handled the case in
1758 which a new common symbol should simply override the definition
1759 in the shared library. */
1760
1761 if (! newdyn
1762 && bfd_is_com_section (sec)
1763 && olddyncommon)
1764 {
1765 /* It would be best if we could set the hash table entry to a
1766 common symbol, but we don't know what to use for the section
1767 or the alignment. */
1a72702b
AM
1768 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1769 bfd_link_hash_common, sym->st_size);
45d6a902 1770
4cc11e76 1771 /* If the presumed common symbol in the dynamic object is
45d6a902
AM
1772 larger, pretend that the new symbol has its size. */
1773
1774 if (h->size > *pvalue)
1775 *pvalue = h->size;
1776
af44c138
L
1777 /* We need to remember the alignment required by the symbol
1778 in the dynamic object. */
1779 BFD_ASSERT (pold_alignment);
1780 *pold_alignment = h->root.u.def.section->alignment_power;
45d6a902
AM
1781
1782 olddef = FALSE;
1783 olddyncommon = FALSE;
1784
1785 h->root.type = bfd_link_hash_undefined;
1786 h->root.u.undef.abfd = h->root.u.def.section->owner;
1787
1788 *size_change_ok = TRUE;
1789 *type_change_ok = TRUE;
1790
6c9b78e6
AM
1791 if (hi->root.type == bfd_link_hash_indirect)
1792 flip = hi;
45d6a902
AM
1793 else
1794 h->verinfo.vertree = NULL;
1795 }
1796
1797 if (flip != NULL)
1798 {
1799 /* Handle the case where we had a versioned symbol in a dynamic
1800 library and now find a definition in a normal object. In this
1801 case, we make the versioned symbol point to the normal one. */
45d6a902 1802 flip->root.type = h->root.type;
00cbee0a 1803 flip->root.u.undef.abfd = h->root.u.undef.abfd;
45d6a902
AM
1804 h->root.type = bfd_link_hash_indirect;
1805 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
fcfa13d2 1806 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
f5385ebf 1807 if (h->def_dynamic)
45d6a902 1808 {
f5385ebf
AM
1809 h->def_dynamic = 0;
1810 flip->ref_dynamic = 1;
45d6a902
AM
1811 }
1812 }
1813
45d6a902
AM
1814 return TRUE;
1815}
1816
1817/* This function is called to create an indirect symbol from the
1818 default for the symbol with the default version if needed. The
4f3fedcf 1819 symbol is described by H, NAME, SYM, SEC, and VALUE. We
0f8a2703 1820 set DYNSYM if the new indirect symbol is dynamic. */
45d6a902 1821
28caa186 1822static bfd_boolean
268b6b39
AM
1823_bfd_elf_add_default_symbol (bfd *abfd,
1824 struct bfd_link_info *info,
1825 struct elf_link_hash_entry *h,
1826 const char *name,
1827 Elf_Internal_Sym *sym,
4f3fedcf
AM
1828 asection *sec,
1829 bfd_vma value,
1830 bfd **poldbfd,
e3c9d234 1831 bfd_boolean *dynsym)
45d6a902
AM
1832{
1833 bfd_boolean type_change_ok;
1834 bfd_boolean size_change_ok;
1835 bfd_boolean skip;
1836 char *shortname;
1837 struct elf_link_hash_entry *hi;
1838 struct bfd_link_hash_entry *bh;
9c5bfbb7 1839 const struct elf_backend_data *bed;
45d6a902
AM
1840 bfd_boolean collect;
1841 bfd_boolean dynamic;
e3c9d234 1842 bfd_boolean override;
45d6a902
AM
1843 char *p;
1844 size_t len, shortlen;
ffd65175 1845 asection *tmp_sec;
6e33951e 1846 bfd_boolean matched;
45d6a902 1847
422f1182
L
1848 if (h->versioned == unversioned || h->versioned == versioned_hidden)
1849 return TRUE;
1850
45d6a902
AM
1851 /* If this symbol has a version, and it is the default version, we
1852 create an indirect symbol from the default name to the fully
1853 decorated name. This will cause external references which do not
1854 specify a version to be bound to this version of the symbol. */
1855 p = strchr (name, ELF_VER_CHR);
422f1182
L
1856 if (h->versioned == unknown)
1857 {
1858 if (p == NULL)
1859 {
1860 h->versioned = unversioned;
1861 return TRUE;
1862 }
1863 else
1864 {
1865 if (p[1] != ELF_VER_CHR)
1866 {
1867 h->versioned = versioned_hidden;
1868 return TRUE;
1869 }
1870 else
1871 h->versioned = versioned;
1872 }
1873 }
4373f8af
L
1874 else
1875 {
1876 /* PR ld/19073: We may see an unversioned definition after the
1877 default version. */
1878 if (p == NULL)
1879 return TRUE;
1880 }
45d6a902 1881
45d6a902
AM
1882 bed = get_elf_backend_data (abfd);
1883 collect = bed->collect;
1884 dynamic = (abfd->flags & DYNAMIC) != 0;
1885
1886 shortlen = p - name;
a50b1753 1887 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
45d6a902
AM
1888 if (shortname == NULL)
1889 return FALSE;
1890 memcpy (shortname, name, shortlen);
1891 shortname[shortlen] = '\0';
1892
1893 /* We are going to create a new symbol. Merge it with any existing
1894 symbol with this name. For the purposes of the merge, act as
1895 though we were defining the symbol we just defined, although we
1896 actually going to define an indirect symbol. */
1897 type_change_ok = FALSE;
1898 size_change_ok = FALSE;
6e33951e 1899 matched = TRUE;
ffd65175
AM
1900 tmp_sec = sec;
1901 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
4f3fedcf 1902 &hi, poldbfd, NULL, NULL, &skip, &override,
6e33951e 1903 &type_change_ok, &size_change_ok, &matched))
45d6a902
AM
1904 return FALSE;
1905
1906 if (skip)
1907 goto nondefault;
1908
5b677558
AM
1909 if (hi->def_regular)
1910 {
1911 /* If the undecorated symbol will have a version added by a
1912 script different to H, then don't indirect to/from the
1913 undecorated symbol. This isn't ideal because we may not yet
1914 have seen symbol versions, if given by a script on the
1915 command line rather than via --version-script. */
1916 if (hi->verinfo.vertree == NULL && info->version_info != NULL)
1917 {
1918 bfd_boolean hide;
1919
1920 hi->verinfo.vertree
1921 = bfd_find_version_for_sym (info->version_info,
1922 hi->root.root.string, &hide);
1923 if (hi->verinfo.vertree != NULL && hide)
1924 {
1925 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
1926 goto nondefault;
1927 }
1928 }
1929 if (hi->verinfo.vertree != NULL
1930 && strcmp (p + 1 + (p[1] == '@'), hi->verinfo.vertree->name) != 0)
1931 goto nondefault;
1932 }
1933
45d6a902
AM
1934 if (! override)
1935 {
c6e8a9a8 1936 /* Add the default symbol if not performing a relocatable link. */
0e1862bb 1937 if (! bfd_link_relocatable (info))
c6e8a9a8
L
1938 {
1939 bh = &hi->root;
fbcc8baf 1940 if (bh->type == bfd_link_hash_defined
6cc71b82 1941 && bh->u.def.section->owner != NULL
fbcc8baf
L
1942 && (bh->u.def.section->owner->flags & BFD_PLUGIN) != 0)
1943 {
1944 /* Mark the previous definition from IR object as
1945 undefined so that the generic linker will override
1946 it. */
1947 bh->type = bfd_link_hash_undefined;
1948 bh->u.undef.abfd = bh->u.def.section->owner;
1949 }
c6e8a9a8
L
1950 if (! (_bfd_generic_link_add_one_symbol
1951 (info, abfd, shortname, BSF_INDIRECT,
1952 bfd_ind_section_ptr,
1953 0, name, FALSE, collect, &bh)))
1954 return FALSE;
1955 hi = (struct elf_link_hash_entry *) bh;
1956 }
45d6a902
AM
1957 }
1958 else
1959 {
1960 /* In this case the symbol named SHORTNAME is overriding the
1961 indirect symbol we want to add. We were planning on making
1962 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1963 is the name without a version. NAME is the fully versioned
1964 name, and it is the default version.
1965
1966 Overriding means that we already saw a definition for the
1967 symbol SHORTNAME in a regular object, and it is overriding
1968 the symbol defined in the dynamic object.
1969
1970 When this happens, we actually want to change NAME, the
1971 symbol we just added, to refer to SHORTNAME. This will cause
1972 references to NAME in the shared object to become references
1973 to SHORTNAME in the regular object. This is what we expect
1974 when we override a function in a shared object: that the
1975 references in the shared object will be mapped to the
1976 definition in the regular object. */
1977
1978 while (hi->root.type == bfd_link_hash_indirect
1979 || hi->root.type == bfd_link_hash_warning)
1980 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1981
1982 h->root.type = bfd_link_hash_indirect;
1983 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
f5385ebf 1984 if (h->def_dynamic)
45d6a902 1985 {
f5385ebf
AM
1986 h->def_dynamic = 0;
1987 hi->ref_dynamic = 1;
1988 if (hi->ref_regular
1989 || hi->def_regular)
45d6a902 1990 {
c152c796 1991 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
45d6a902
AM
1992 return FALSE;
1993 }
1994 }
1995
1996 /* Now set HI to H, so that the following code will set the
1997 other fields correctly. */
1998 hi = h;
1999 }
2000
fab4a87f
L
2001 /* Check if HI is a warning symbol. */
2002 if (hi->root.type == bfd_link_hash_warning)
2003 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
2004
45d6a902
AM
2005 /* If there is a duplicate definition somewhere, then HI may not
2006 point to an indirect symbol. We will have reported an error to
2007 the user in that case. */
2008
2009 if (hi->root.type == bfd_link_hash_indirect)
2010 {
2011 struct elf_link_hash_entry *ht;
2012
45d6a902 2013 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
fcfa13d2 2014 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
45d6a902 2015
68c88cd4
AM
2016 /* A reference to the SHORTNAME symbol from a dynamic library
2017 will be satisfied by the versioned symbol at runtime. In
2018 effect, we have a reference to the versioned symbol. */
2019 ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
2020 hi->dynamic_def |= ht->dynamic_def;
2021
45d6a902
AM
2022 /* See if the new flags lead us to realize that the symbol must
2023 be dynamic. */
2024 if (! *dynsym)
2025 {
2026 if (! dynamic)
2027 {
0e1862bb 2028 if (! bfd_link_executable (info)
90c984fc 2029 || hi->def_dynamic
f5385ebf 2030 || hi->ref_dynamic)
45d6a902
AM
2031 *dynsym = TRUE;
2032 }
2033 else
2034 {
f5385ebf 2035 if (hi->ref_regular)
45d6a902
AM
2036 *dynsym = TRUE;
2037 }
2038 }
2039 }
2040
2041 /* We also need to define an indirection from the nondefault version
2042 of the symbol. */
2043
2044nondefault:
2045 len = strlen (name);
a50b1753 2046 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
45d6a902
AM
2047 if (shortname == NULL)
2048 return FALSE;
2049 memcpy (shortname, name, shortlen);
2050 memcpy (shortname + shortlen, p + 1, len - shortlen);
2051
2052 /* Once again, merge with any existing symbol. */
2053 type_change_ok = FALSE;
2054 size_change_ok = FALSE;
ffd65175
AM
2055 tmp_sec = sec;
2056 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
115c6d5c 2057 &hi, poldbfd, NULL, NULL, &skip, &override,
6e33951e 2058 &type_change_ok, &size_change_ok, &matched))
45d6a902
AM
2059 return FALSE;
2060
2061 if (skip)
2062 return TRUE;
2063
2064 if (override)
2065 {
2066 /* Here SHORTNAME is a versioned name, so we don't expect to see
2067 the type of override we do in the case above unless it is
4cc11e76 2068 overridden by a versioned definition. */
45d6a902
AM
2069 if (hi->root.type != bfd_link_hash_defined
2070 && hi->root.type != bfd_link_hash_defweak)
4eca0228 2071 _bfd_error_handler
695344c0 2072 /* xgettext:c-format */
871b3ab2 2073 (_("%pB: unexpected redefinition of indirect versioned symbol `%s'"),
d003868e 2074 abfd, shortname);
45d6a902
AM
2075 }
2076 else
2077 {
2078 bh = &hi->root;
2079 if (! (_bfd_generic_link_add_one_symbol
2080 (info, abfd, shortname, BSF_INDIRECT,
268b6b39 2081 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
45d6a902
AM
2082 return FALSE;
2083 hi = (struct elf_link_hash_entry *) bh;
2084
2085 /* If there is a duplicate definition somewhere, then HI may not
2086 point to an indirect symbol. We will have reported an error
2087 to the user in that case. */
2088
2089 if (hi->root.type == bfd_link_hash_indirect)
2090 {
fcfa13d2 2091 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
68c88cd4
AM
2092 h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
2093 hi->dynamic_def |= h->dynamic_def;
45d6a902
AM
2094
2095 /* See if the new flags lead us to realize that the symbol
2096 must be dynamic. */
2097 if (! *dynsym)
2098 {
2099 if (! dynamic)
2100 {
0e1862bb 2101 if (! bfd_link_executable (info)
f5385ebf 2102 || hi->ref_dynamic)
45d6a902
AM
2103 *dynsym = TRUE;
2104 }
2105 else
2106 {
f5385ebf 2107 if (hi->ref_regular)
45d6a902
AM
2108 *dynsym = TRUE;
2109 }
2110 }
2111 }
2112 }
2113
2114 return TRUE;
2115}
2116\f
2117/* This routine is used to export all defined symbols into the dynamic
2118 symbol table. It is called via elf_link_hash_traverse. */
2119
28caa186 2120static bfd_boolean
268b6b39 2121_bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 2122{
a50b1753 2123 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902
AM
2124
2125 /* Ignore indirect symbols. These are added by the versioning code. */
2126 if (h->root.type == bfd_link_hash_indirect)
2127 return TRUE;
2128
7686d77d
AM
2129 /* Ignore this if we won't export it. */
2130 if (!eif->info->export_dynamic && !h->dynamic)
2131 return TRUE;
45d6a902
AM
2132
2133 if (h->dynindx == -1
fd91d419
L
2134 && (h->def_regular || h->ref_regular)
2135 && ! bfd_hide_sym_by_version (eif->info->version_info,
2136 h->root.root.string))
45d6a902 2137 {
fd91d419 2138 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902 2139 {
fd91d419
L
2140 eif->failed = TRUE;
2141 return FALSE;
45d6a902
AM
2142 }
2143 }
2144
2145 return TRUE;
2146}
2147\f
2148/* Look through the symbols which are defined in other shared
2149 libraries and referenced here. Update the list of version
2150 dependencies. This will be put into the .gnu.version_r section.
2151 This function is called via elf_link_hash_traverse. */
2152
28caa186 2153static bfd_boolean
268b6b39
AM
2154_bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
2155 void *data)
45d6a902 2156{
a50b1753 2157 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
45d6a902
AM
2158 Elf_Internal_Verneed *t;
2159 Elf_Internal_Vernaux *a;
2160 bfd_size_type amt;
2161
45d6a902
AM
2162 /* We only care about symbols defined in shared objects with version
2163 information. */
f5385ebf
AM
2164 if (!h->def_dynamic
2165 || h->def_regular
45d6a902 2166 || h->dynindx == -1
7b20f099
AM
2167 || h->verinfo.verdef == NULL
2168 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
2169 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
45d6a902
AM
2170 return TRUE;
2171
2172 /* See if we already know about this version. */
28caa186
AM
2173 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
2174 t != NULL;
2175 t = t->vn_nextref)
45d6a902
AM
2176 {
2177 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
2178 continue;
2179
2180 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2181 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
2182 return TRUE;
2183
2184 break;
2185 }
2186
2187 /* This is a new version. Add it to tree we are building. */
2188
2189 if (t == NULL)
2190 {
2191 amt = sizeof *t;
a50b1753 2192 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
45d6a902
AM
2193 if (t == NULL)
2194 {
2195 rinfo->failed = TRUE;
2196 return FALSE;
2197 }
2198
2199 t->vn_bfd = h->verinfo.verdef->vd_bfd;
28caa186
AM
2200 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
2201 elf_tdata (rinfo->info->output_bfd)->verref = t;
45d6a902
AM
2202 }
2203
2204 amt = sizeof *a;
a50b1753 2205 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
14b1c01e
AM
2206 if (a == NULL)
2207 {
2208 rinfo->failed = TRUE;
2209 return FALSE;
2210 }
45d6a902
AM
2211
2212 /* Note that we are copying a string pointer here, and testing it
2213 above. If bfd_elf_string_from_elf_section is ever changed to
2214 discard the string data when low in memory, this will have to be
2215 fixed. */
2216 a->vna_nodename = h->verinfo.verdef->vd_nodename;
2217
2218 a->vna_flags = h->verinfo.verdef->vd_flags;
2219 a->vna_nextptr = t->vn_auxptr;
2220
2221 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
2222 ++rinfo->vers;
2223
2224 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
2225
2226 t->vn_auxptr = a;
2227
2228 return TRUE;
2229}
2230
099bb8fb
L
2231/* Return TRUE and set *HIDE to TRUE if the versioned symbol is
2232 hidden. Set *T_P to NULL if there is no match. */
2233
2234static bfd_boolean
2235_bfd_elf_link_hide_versioned_symbol (struct bfd_link_info *info,
2236 struct elf_link_hash_entry *h,
2237 const char *version_p,
2238 struct bfd_elf_version_tree **t_p,
2239 bfd_boolean *hide)
2240{
2241 struct bfd_elf_version_tree *t;
2242
2243 /* Look for the version. If we find it, it is no longer weak. */
2244 for (t = info->version_info; t != NULL; t = t->next)
2245 {
2246 if (strcmp (t->name, version_p) == 0)
2247 {
2248 size_t len;
2249 char *alc;
2250 struct bfd_elf_version_expr *d;
2251
2252 len = version_p - h->root.root.string;
2253 alc = (char *) bfd_malloc (len);
2254 if (alc == NULL)
2255 return FALSE;
2256 memcpy (alc, h->root.root.string, len - 1);
2257 alc[len - 1] = '\0';
2258 if (alc[len - 2] == ELF_VER_CHR)
2259 alc[len - 2] = '\0';
2260
2261 h->verinfo.vertree = t;
2262 t->used = TRUE;
2263 d = NULL;
2264
2265 if (t->globals.list != NULL)
2266 d = (*t->match) (&t->globals, NULL, alc);
2267
2268 /* See if there is anything to force this symbol to
2269 local scope. */
2270 if (d == NULL && t->locals.list != NULL)
2271 {
2272 d = (*t->match) (&t->locals, NULL, alc);
2273 if (d != NULL
2274 && h->dynindx != -1
2275 && ! info->export_dynamic)
2276 *hide = TRUE;
2277 }
2278
2279 free (alc);
2280 break;
2281 }
2282 }
2283
2284 *t_p = t;
2285
2286 return TRUE;
2287}
2288
2289/* Return TRUE if the symbol H is hidden by version script. */
2290
2291bfd_boolean
2292_bfd_elf_link_hide_sym_by_version (struct bfd_link_info *info,
2293 struct elf_link_hash_entry *h)
2294{
2295 const char *p;
2296 bfd_boolean hide = FALSE;
2297 const struct elf_backend_data *bed
2298 = get_elf_backend_data (info->output_bfd);
2299
2300 /* Version script only hides symbols defined in regular objects. */
2301 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
2302 return TRUE;
2303
2304 p = strchr (h->root.root.string, ELF_VER_CHR);
2305 if (p != NULL && h->verinfo.vertree == NULL)
2306 {
2307 struct bfd_elf_version_tree *t;
2308
2309 ++p;
2310 if (*p == ELF_VER_CHR)
2311 ++p;
2312
2313 if (*p != '\0'
2314 && _bfd_elf_link_hide_versioned_symbol (info, h, p, &t, &hide)
2315 && hide)
2316 {
2317 if (hide)
2318 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2319 return TRUE;
2320 }
2321 }
2322
2323 /* If we don't have a version for this symbol, see if we can find
2324 something. */
2325 if (h->verinfo.vertree == NULL && info->version_info != NULL)
2326 {
2327 h->verinfo.vertree
2328 = bfd_find_version_for_sym (info->version_info,
2329 h->root.root.string, &hide);
2330 if (h->verinfo.vertree != NULL && hide)
2331 {
2332 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2333 return TRUE;
2334 }
2335 }
2336
2337 return FALSE;
2338}
2339
45d6a902
AM
2340/* Figure out appropriate versions for all the symbols. We may not
2341 have the version number script until we have read all of the input
2342 files, so until that point we don't know which symbols should be
2343 local. This function is called via elf_link_hash_traverse. */
2344
28caa186 2345static bfd_boolean
268b6b39 2346_bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
45d6a902 2347{
28caa186 2348 struct elf_info_failed *sinfo;
45d6a902 2349 struct bfd_link_info *info;
9c5bfbb7 2350 const struct elf_backend_data *bed;
45d6a902
AM
2351 struct elf_info_failed eif;
2352 char *p;
099bb8fb 2353 bfd_boolean hide;
45d6a902 2354
a50b1753 2355 sinfo = (struct elf_info_failed *) data;
45d6a902
AM
2356 info = sinfo->info;
2357
45d6a902
AM
2358 /* Fix the symbol flags. */
2359 eif.failed = FALSE;
2360 eif.info = info;
2361 if (! _bfd_elf_fix_symbol_flags (h, &eif))
2362 {
2363 if (eif.failed)
2364 sinfo->failed = TRUE;
2365 return FALSE;
2366 }
2367
0a640d71
L
2368 bed = get_elf_backend_data (info->output_bfd);
2369
45d6a902
AM
2370 /* We only need version numbers for symbols defined in regular
2371 objects. */
f5385ebf 2372 if (!h->def_regular)
0a640d71
L
2373 {
2374 /* Hide symbols defined in discarded input sections. */
2375 if ((h->root.type == bfd_link_hash_defined
2376 || h->root.type == bfd_link_hash_defweak)
2377 && discarded_section (h->root.u.def.section))
2378 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2379 return TRUE;
2380 }
45d6a902 2381
099bb8fb 2382 hide = FALSE;
45d6a902
AM
2383 p = strchr (h->root.root.string, ELF_VER_CHR);
2384 if (p != NULL && h->verinfo.vertree == NULL)
2385 {
2386 struct bfd_elf_version_tree *t;
45d6a902 2387
45d6a902
AM
2388 ++p;
2389 if (*p == ELF_VER_CHR)
6e33951e 2390 ++p;
45d6a902
AM
2391
2392 /* If there is no version string, we can just return out. */
2393 if (*p == '\0')
6e33951e 2394 return TRUE;
45d6a902 2395
099bb8fb 2396 if (!_bfd_elf_link_hide_versioned_symbol (info, h, p, &t, &hide))
45d6a902 2397 {
099bb8fb
L
2398 sinfo->failed = TRUE;
2399 return FALSE;
45d6a902
AM
2400 }
2401
099bb8fb
L
2402 if (hide)
2403 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2404
45d6a902
AM
2405 /* If we are building an application, we need to create a
2406 version node for this version. */
0e1862bb 2407 if (t == NULL && bfd_link_executable (info))
45d6a902
AM
2408 {
2409 struct bfd_elf_version_tree **pp;
2410 int version_index;
2411
2412 /* If we aren't going to export this symbol, we don't need
2413 to worry about it. */
2414 if (h->dynindx == -1)
2415 return TRUE;
2416
ef53be89
AM
2417 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd,
2418 sizeof *t);
45d6a902
AM
2419 if (t == NULL)
2420 {
2421 sinfo->failed = TRUE;
2422 return FALSE;
2423 }
2424
45d6a902 2425 t->name = p;
45d6a902
AM
2426 t->name_indx = (unsigned int) -1;
2427 t->used = TRUE;
2428
2429 version_index = 1;
2430 /* Don't count anonymous version tag. */
fd91d419
L
2431 if (sinfo->info->version_info != NULL
2432 && sinfo->info->version_info->vernum == 0)
45d6a902 2433 version_index = 0;
fd91d419
L
2434 for (pp = &sinfo->info->version_info;
2435 *pp != NULL;
2436 pp = &(*pp)->next)
45d6a902
AM
2437 ++version_index;
2438 t->vernum = version_index;
2439
2440 *pp = t;
2441
2442 h->verinfo.vertree = t;
2443 }
2444 else if (t == NULL)
2445 {
2446 /* We could not find the version for a symbol when
2447 generating a shared archive. Return an error. */
4eca0228 2448 _bfd_error_handler
695344c0 2449 /* xgettext:c-format */
871b3ab2 2450 (_("%pB: version node not found for symbol %s"),
28caa186 2451 info->output_bfd, h->root.root.string);
45d6a902
AM
2452 bfd_set_error (bfd_error_bad_value);
2453 sinfo->failed = TRUE;
2454 return FALSE;
2455 }
45d6a902
AM
2456 }
2457
2458 /* If we don't have a version for this symbol, see if we can find
2459 something. */
099bb8fb
L
2460 if (!hide
2461 && h->verinfo.vertree == NULL
2462 && sinfo->info->version_info != NULL)
45d6a902 2463 {
fd91d419
L
2464 h->verinfo.vertree
2465 = bfd_find_version_for_sym (sinfo->info->version_info,
2466 h->root.root.string, &hide);
1e8fa21e
AM
2467 if (h->verinfo.vertree != NULL && hide)
2468 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
2469 }
2470
2471 return TRUE;
2472}
2473\f
45d6a902
AM
2474/* Read and swap the relocs from the section indicated by SHDR. This
2475 may be either a REL or a RELA section. The relocations are
2476 translated into RELA relocations and stored in INTERNAL_RELOCS,
2477 which should have already been allocated to contain enough space.
2478 The EXTERNAL_RELOCS are a buffer where the external form of the
2479 relocations should be stored.
2480
2481 Returns FALSE if something goes wrong. */
2482
2483static bfd_boolean
268b6b39 2484elf_link_read_relocs_from_section (bfd *abfd,
243ef1e0 2485 asection *sec,
268b6b39
AM
2486 Elf_Internal_Shdr *shdr,
2487 void *external_relocs,
2488 Elf_Internal_Rela *internal_relocs)
45d6a902 2489{
9c5bfbb7 2490 const struct elf_backend_data *bed;
268b6b39 2491 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
45d6a902
AM
2492 const bfd_byte *erela;
2493 const bfd_byte *erelaend;
2494 Elf_Internal_Rela *irela;
243ef1e0
L
2495 Elf_Internal_Shdr *symtab_hdr;
2496 size_t nsyms;
45d6a902 2497
45d6a902
AM
2498 /* Position ourselves at the start of the section. */
2499 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2500 return FALSE;
2501
2502 /* Read the relocations. */
2503 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2504 return FALSE;
2505
243ef1e0 2506 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
ce98a316 2507 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
243ef1e0 2508
45d6a902
AM
2509 bed = get_elf_backend_data (abfd);
2510
2511 /* Convert the external relocations to the internal format. */
2512 if (shdr->sh_entsize == bed->s->sizeof_rel)
2513 swap_in = bed->s->swap_reloc_in;
2514 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2515 swap_in = bed->s->swap_reloca_in;
2516 else
2517 {
2518 bfd_set_error (bfd_error_wrong_format);
2519 return FALSE;
2520 }
2521
a50b1753 2522 erela = (const bfd_byte *) external_relocs;
f55b1e32
AM
2523 /* Setting erelaend like this and comparing with <= handles case of
2524 a fuzzed object with sh_size not a multiple of sh_entsize. */
2525 erelaend = erela + shdr->sh_size - shdr->sh_entsize;
45d6a902 2526 irela = internal_relocs;
f55b1e32 2527 while (erela <= erelaend)
45d6a902 2528 {
243ef1e0
L
2529 bfd_vma r_symndx;
2530
45d6a902 2531 (*swap_in) (abfd, erela, irela);
243ef1e0
L
2532 r_symndx = ELF32_R_SYM (irela->r_info);
2533 if (bed->s->arch_size == 64)
2534 r_symndx >>= 24;
ce98a316
NC
2535 if (nsyms > 0)
2536 {
2537 if ((size_t) r_symndx >= nsyms)
2538 {
4eca0228 2539 _bfd_error_handler
695344c0 2540 /* xgettext:c-format */
2dcf00ce
AM
2541 (_("%pB: bad reloc symbol index (%#" PRIx64 " >= %#lx)"
2542 " for offset %#" PRIx64 " in section `%pA'"),
2543 abfd, (uint64_t) r_symndx, (unsigned long) nsyms,
2544 (uint64_t) irela->r_offset, sec);
ce98a316
NC
2545 bfd_set_error (bfd_error_bad_value);
2546 return FALSE;
2547 }
2548 }
cf35638d 2549 else if (r_symndx != STN_UNDEF)
243ef1e0 2550 {
4eca0228 2551 _bfd_error_handler
695344c0 2552 /* xgettext:c-format */
2dcf00ce
AM
2553 (_("%pB: non-zero symbol index (%#" PRIx64 ")"
2554 " for offset %#" PRIx64 " in section `%pA'"
ce98a316 2555 " when the object file has no symbol table"),
2dcf00ce
AM
2556 abfd, (uint64_t) r_symndx,
2557 (uint64_t) irela->r_offset, sec);
243ef1e0
L
2558 bfd_set_error (bfd_error_bad_value);
2559 return FALSE;
2560 }
45d6a902
AM
2561 irela += bed->s->int_rels_per_ext_rel;
2562 erela += shdr->sh_entsize;
2563 }
2564
2565 return TRUE;
2566}
2567
2568/* Read and swap the relocs for a section O. They may have been
2569 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2570 not NULL, they are used as buffers to read into. They are known to
2571 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2572 the return value is allocated using either malloc or bfd_alloc,
2573 according to the KEEP_MEMORY argument. If O has two relocation
2574 sections (both REL and RELA relocations), then the REL_HDR
2575 relocations will appear first in INTERNAL_RELOCS, followed by the
d4730f92 2576 RELA_HDR relocations. */
45d6a902
AM
2577
2578Elf_Internal_Rela *
268b6b39
AM
2579_bfd_elf_link_read_relocs (bfd *abfd,
2580 asection *o,
2581 void *external_relocs,
2582 Elf_Internal_Rela *internal_relocs,
2583 bfd_boolean keep_memory)
45d6a902 2584{
268b6b39 2585 void *alloc1 = NULL;
45d6a902 2586 Elf_Internal_Rela *alloc2 = NULL;
9c5bfbb7 2587 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92
BS
2588 struct bfd_elf_section_data *esdo = elf_section_data (o);
2589 Elf_Internal_Rela *internal_rela_relocs;
45d6a902 2590
d4730f92
BS
2591 if (esdo->relocs != NULL)
2592 return esdo->relocs;
45d6a902
AM
2593
2594 if (o->reloc_count == 0)
2595 return NULL;
2596
45d6a902
AM
2597 if (internal_relocs == NULL)
2598 {
2599 bfd_size_type size;
2600
056bafd4 2601 size = (bfd_size_type) o->reloc_count * sizeof (Elf_Internal_Rela);
45d6a902 2602 if (keep_memory)
a50b1753 2603 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
45d6a902 2604 else
a50b1753 2605 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
45d6a902
AM
2606 if (internal_relocs == NULL)
2607 goto error_return;
2608 }
2609
2610 if (external_relocs == NULL)
2611 {
d4730f92
BS
2612 bfd_size_type size = 0;
2613
2614 if (esdo->rel.hdr)
2615 size += esdo->rel.hdr->sh_size;
2616 if (esdo->rela.hdr)
2617 size += esdo->rela.hdr->sh_size;
45d6a902 2618
268b6b39 2619 alloc1 = bfd_malloc (size);
45d6a902
AM
2620 if (alloc1 == NULL)
2621 goto error_return;
2622 external_relocs = alloc1;
2623 }
2624
d4730f92
BS
2625 internal_rela_relocs = internal_relocs;
2626 if (esdo->rel.hdr)
2627 {
2628 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2629 external_relocs,
2630 internal_relocs))
2631 goto error_return;
2632 external_relocs = (((bfd_byte *) external_relocs)
2633 + esdo->rel.hdr->sh_size);
2634 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2635 * bed->s->int_rels_per_ext_rel);
2636 }
2637
2638 if (esdo->rela.hdr
2639 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2640 external_relocs,
2641 internal_rela_relocs)))
45d6a902
AM
2642 goto error_return;
2643
2644 /* Cache the results for next time, if we can. */
2645 if (keep_memory)
d4730f92 2646 esdo->relocs = internal_relocs;
45d6a902
AM
2647
2648 if (alloc1 != NULL)
2649 free (alloc1);
2650
2651 /* Don't free alloc2, since if it was allocated we are passing it
2652 back (under the name of internal_relocs). */
2653
2654 return internal_relocs;
2655
2656 error_return:
2657 if (alloc1 != NULL)
2658 free (alloc1);
2659 if (alloc2 != NULL)
4dd07732
AM
2660 {
2661 if (keep_memory)
2662 bfd_release (abfd, alloc2);
2663 else
2664 free (alloc2);
2665 }
45d6a902
AM
2666 return NULL;
2667}
2668
2669/* Compute the size of, and allocate space for, REL_HDR which is the
2670 section header for a section containing relocations for O. */
2671
28caa186 2672static bfd_boolean
9eaff861
AO
2673_bfd_elf_link_size_reloc_section (bfd *abfd,
2674 struct bfd_elf_section_reloc_data *reldata)
45d6a902 2675{
9eaff861 2676 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
45d6a902
AM
2677
2678 /* That allows us to calculate the size of the section. */
9eaff861 2679 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
45d6a902
AM
2680
2681 /* The contents field must last into write_object_contents, so we
2682 allocate it with bfd_alloc rather than malloc. Also since we
2683 cannot be sure that the contents will actually be filled in,
2684 we zero the allocated space. */
a50b1753 2685 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
45d6a902
AM
2686 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2687 return FALSE;
2688
d4730f92 2689 if (reldata->hashes == NULL && reldata->count)
45d6a902
AM
2690 {
2691 struct elf_link_hash_entry **p;
2692
ca4be51c
AM
2693 p = ((struct elf_link_hash_entry **)
2694 bfd_zmalloc (reldata->count * sizeof (*p)));
45d6a902
AM
2695 if (p == NULL)
2696 return FALSE;
2697
d4730f92 2698 reldata->hashes = p;
45d6a902
AM
2699 }
2700
2701 return TRUE;
2702}
2703
2704/* Copy the relocations indicated by the INTERNAL_RELOCS (which
2705 originated from the section given by INPUT_REL_HDR) to the
2706 OUTPUT_BFD. */
2707
2708bfd_boolean
268b6b39
AM
2709_bfd_elf_link_output_relocs (bfd *output_bfd,
2710 asection *input_section,
2711 Elf_Internal_Shdr *input_rel_hdr,
eac338cf
PB
2712 Elf_Internal_Rela *internal_relocs,
2713 struct elf_link_hash_entry **rel_hash
2714 ATTRIBUTE_UNUSED)
45d6a902
AM
2715{
2716 Elf_Internal_Rela *irela;
2717 Elf_Internal_Rela *irelaend;
2718 bfd_byte *erel;
d4730f92 2719 struct bfd_elf_section_reloc_data *output_reldata;
45d6a902 2720 asection *output_section;
9c5bfbb7 2721 const struct elf_backend_data *bed;
268b6b39 2722 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
d4730f92 2723 struct bfd_elf_section_data *esdo;
45d6a902
AM
2724
2725 output_section = input_section->output_section;
45d6a902 2726
d4730f92
BS
2727 bed = get_elf_backend_data (output_bfd);
2728 esdo = elf_section_data (output_section);
2729 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2730 {
d4730f92
BS
2731 output_reldata = &esdo->rel;
2732 swap_out = bed->s->swap_reloc_out;
45d6a902 2733 }
d4730f92
BS
2734 else if (esdo->rela.hdr
2735 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2736 {
d4730f92
BS
2737 output_reldata = &esdo->rela;
2738 swap_out = bed->s->swap_reloca_out;
45d6a902
AM
2739 }
2740 else
2741 {
4eca0228 2742 _bfd_error_handler
695344c0 2743 /* xgettext:c-format */
871b3ab2 2744 (_("%pB: relocation size mismatch in %pB section %pA"),
d003868e 2745 output_bfd, input_section->owner, input_section);
297d8443 2746 bfd_set_error (bfd_error_wrong_format);
45d6a902
AM
2747 return FALSE;
2748 }
2749
d4730f92
BS
2750 erel = output_reldata->hdr->contents;
2751 erel += output_reldata->count * input_rel_hdr->sh_entsize;
45d6a902
AM
2752 irela = internal_relocs;
2753 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2754 * bed->s->int_rels_per_ext_rel);
2755 while (irela < irelaend)
2756 {
2757 (*swap_out) (output_bfd, irela, erel);
2758 irela += bed->s->int_rels_per_ext_rel;
2759 erel += input_rel_hdr->sh_entsize;
2760 }
2761
2762 /* Bump the counter, so that we know where to add the next set of
2763 relocations. */
d4730f92 2764 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
45d6a902
AM
2765
2766 return TRUE;
2767}
2768\f
508c3946
L
2769/* Make weak undefined symbols in PIE dynamic. */
2770
2771bfd_boolean
2772_bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2773 struct elf_link_hash_entry *h)
2774{
0e1862bb 2775 if (bfd_link_pie (info)
508c3946
L
2776 && h->dynindx == -1
2777 && h->root.type == bfd_link_hash_undefweak)
2778 return bfd_elf_link_record_dynamic_symbol (info, h);
2779
2780 return TRUE;
2781}
2782
45d6a902
AM
2783/* Fix up the flags for a symbol. This handles various cases which
2784 can only be fixed after all the input files are seen. This is
2785 currently called by both adjust_dynamic_symbol and
2786 assign_sym_version, which is unnecessary but perhaps more robust in
2787 the face of future changes. */
2788
28caa186 2789static bfd_boolean
268b6b39
AM
2790_bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2791 struct elf_info_failed *eif)
45d6a902 2792{
33774f08 2793 const struct elf_backend_data *bed;
508c3946 2794
45d6a902
AM
2795 /* If this symbol was mentioned in a non-ELF file, try to set
2796 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2797 permit a non-ELF file to correctly refer to a symbol defined in
2798 an ELF dynamic object. */
f5385ebf 2799 if (h->non_elf)
45d6a902
AM
2800 {
2801 while (h->root.type == bfd_link_hash_indirect)
2802 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2803
2804 if (h->root.type != bfd_link_hash_defined
2805 && h->root.type != bfd_link_hash_defweak)
f5385ebf
AM
2806 {
2807 h->ref_regular = 1;
2808 h->ref_regular_nonweak = 1;
2809 }
45d6a902
AM
2810 else
2811 {
2812 if (h->root.u.def.section->owner != NULL
2813 && (bfd_get_flavour (h->root.u.def.section->owner)
2814 == bfd_target_elf_flavour))
f5385ebf
AM
2815 {
2816 h->ref_regular = 1;
2817 h->ref_regular_nonweak = 1;
2818 }
45d6a902 2819 else
f5385ebf 2820 h->def_regular = 1;
45d6a902
AM
2821 }
2822
2823 if (h->dynindx == -1
f5385ebf
AM
2824 && (h->def_dynamic
2825 || h->ref_dynamic))
45d6a902 2826 {
c152c796 2827 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902
AM
2828 {
2829 eif->failed = TRUE;
2830 return FALSE;
2831 }
2832 }
2833 }
2834 else
2835 {
f5385ebf 2836 /* Unfortunately, NON_ELF is only correct if the symbol
45d6a902
AM
2837 was first seen in a non-ELF file. Fortunately, if the symbol
2838 was first seen in an ELF file, we're probably OK unless the
2839 symbol was defined in a non-ELF file. Catch that case here.
2840 FIXME: We're still in trouble if the symbol was first seen in
2841 a dynamic object, and then later in a non-ELF regular object. */
2842 if ((h->root.type == bfd_link_hash_defined
2843 || h->root.type == bfd_link_hash_defweak)
f5385ebf 2844 && !h->def_regular
45d6a902
AM
2845 && (h->root.u.def.section->owner != NULL
2846 ? (bfd_get_flavour (h->root.u.def.section->owner)
2847 != bfd_target_elf_flavour)
2848 : (bfd_is_abs_section (h->root.u.def.section)
f5385ebf
AM
2849 && !h->def_dynamic)))
2850 h->def_regular = 1;
45d6a902
AM
2851 }
2852
508c3946 2853 /* Backend specific symbol fixup. */
33774f08
AM
2854 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2855 if (bed->elf_backend_fixup_symbol
2856 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2857 return FALSE;
508c3946 2858
45d6a902
AM
2859 /* If this is a final link, and the symbol was defined as a common
2860 symbol in a regular object file, and there was no definition in
2861 any dynamic object, then the linker will have allocated space for
f5385ebf 2862 the symbol in a common section but the DEF_REGULAR
45d6a902
AM
2863 flag will not have been set. */
2864 if (h->root.type == bfd_link_hash_defined
f5385ebf
AM
2865 && !h->def_regular
2866 && h->ref_regular
2867 && !h->def_dynamic
96f29d96 2868 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
f5385ebf 2869 h->def_regular = 1;
45d6a902 2870
af0bfb9c
AM
2871 /* Symbols defined in discarded sections shouldn't be dynamic. */
2872 if (h->root.type == bfd_link_hash_undefined && h->indx == -3)
2873 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2874
4deb8f71
L
2875 /* If a weak undefined symbol has non-default visibility, we also
2876 hide it from the dynamic linker. */
af0bfb9c
AM
2877 else if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2878 && h->root.type == bfd_link_hash_undefweak)
4deb8f71
L
2879 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2880
2881 /* A hidden versioned symbol in executable should be forced local if
2882 it is is locally defined, not referenced by shared library and not
2883 exported. */
2884 else if (bfd_link_executable (eif->info)
2885 && h->versioned == versioned_hidden
2886 && !eif->info->export_dynamic
2887 && !h->dynamic
2888 && !h->ref_dynamic
2889 && h->def_regular)
2890 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2891
45d6a902
AM
2892 /* If -Bsymbolic was used (which means to bind references to global
2893 symbols to the definition within the shared object), and this
2894 symbol was defined in a regular object, then it actually doesn't
9c7a29a3
AM
2895 need a PLT entry. Likewise, if the symbol has non-default
2896 visibility. If the symbol has hidden or internal visibility, we
c1be741f 2897 will force it local. */
4deb8f71
L
2898 else if (h->needs_plt
2899 && bfd_link_pic (eif->info)
2900 && is_elf_hash_table (eif->info->hash)
2901 && (SYMBOLIC_BIND (eif->info, h)
2902 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2903 && h->def_regular)
45d6a902 2904 {
45d6a902
AM
2905 bfd_boolean force_local;
2906
45d6a902
AM
2907 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2908 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2909 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2910 }
2911
45d6a902
AM
2912 /* If this is a weak defined symbol in a dynamic object, and we know
2913 the real definition in the dynamic object, copy interesting flags
2914 over to the real definition. */
60d67dc8 2915 if (h->is_weakalias)
45d6a902 2916 {
60d67dc8
AM
2917 struct elf_link_hash_entry *def = weakdef (h);
2918
45d6a902
AM
2919 /* If the real definition is defined by a regular object file,
2920 don't do anything special. See the longer description in
5b9d7a9a
AM
2921 _bfd_elf_adjust_dynamic_symbol, below. If the def is not
2922 bfd_link_hash_defined as it was when put on the alias list
2923 then it must have originally been a versioned symbol (for
2924 which a non-versioned indirect symbol is created) and later
2925 a definition for the non-versioned symbol is found. In that
2926 case the indirection is flipped with the versioned symbol
2927 becoming an indirect pointing at the non-versioned symbol.
2928 Thus, not an alias any more. */
2929 if (def->def_regular
2930 || def->root.type != bfd_link_hash_defined)
60d67dc8
AM
2931 {
2932 h = def;
2933 while ((h = h->u.alias) != def)
2934 h->is_weakalias = 0;
2935 }
45d6a902 2936 else
a26587ba 2937 {
4e6b54a6
AM
2938 while (h->root.type == bfd_link_hash_indirect)
2939 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4e6b54a6
AM
2940 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2941 || h->root.type == bfd_link_hash_defweak);
60d67dc8 2942 BFD_ASSERT (def->def_dynamic);
60d67dc8 2943 (*bed->elf_backend_copy_indirect_symbol) (eif->info, def, h);
a26587ba 2944 }
45d6a902
AM
2945 }
2946
2947 return TRUE;
2948}
2949
2950/* Make the backend pick a good value for a dynamic symbol. This is
2951 called via elf_link_hash_traverse, and also calls itself
2952 recursively. */
2953
28caa186 2954static bfd_boolean
268b6b39 2955_bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 2956{
a50b1753 2957 struct elf_info_failed *eif = (struct elf_info_failed *) data;
559192d8 2958 struct elf_link_hash_table *htab;
9c5bfbb7 2959 const struct elf_backend_data *bed;
45d6a902 2960
0eddce27 2961 if (! is_elf_hash_table (eif->info->hash))
45d6a902
AM
2962 return FALSE;
2963
45d6a902
AM
2964 /* Ignore indirect symbols. These are added by the versioning code. */
2965 if (h->root.type == bfd_link_hash_indirect)
2966 return TRUE;
2967
2968 /* Fix the symbol flags. */
2969 if (! _bfd_elf_fix_symbol_flags (h, eif))
2970 return FALSE;
2971
559192d8
AM
2972 htab = elf_hash_table (eif->info);
2973 bed = get_elf_backend_data (htab->dynobj);
2974
954b63d4
AM
2975 if (h->root.type == bfd_link_hash_undefweak)
2976 {
2977 if (eif->info->dynamic_undefined_weak == 0)
559192d8 2978 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
954b63d4
AM
2979 else if (eif->info->dynamic_undefined_weak > 0
2980 && h->ref_regular
2981 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2982 && !bfd_hide_sym_by_version (eif->info->version_info,
2983 h->root.root.string))
2984 {
2985 if (!bfd_elf_link_record_dynamic_symbol (eif->info, h))
2986 {
2987 eif->failed = TRUE;
2988 return FALSE;
2989 }
2990 }
2991 }
2992
45d6a902
AM
2993 /* If this symbol does not require a PLT entry, and it is not
2994 defined by a dynamic object, or is not referenced by a regular
2995 object, ignore it. We do have to handle a weak defined symbol,
2996 even if no regular object refers to it, if we decided to add it
2997 to the dynamic symbol table. FIXME: Do we normally need to worry
2998 about symbols which are defined by one dynamic object and
2999 referenced by another one? */
f5385ebf 3000 if (!h->needs_plt
91e21fb7 3001 && h->type != STT_GNU_IFUNC
f5385ebf
AM
3002 && (h->def_regular
3003 || !h->def_dynamic
3004 || (!h->ref_regular
60d67dc8 3005 && (!h->is_weakalias || weakdef (h)->dynindx == -1))))
45d6a902 3006 {
a6aa5195 3007 h->plt = elf_hash_table (eif->info)->init_plt_offset;
45d6a902
AM
3008 return TRUE;
3009 }
3010
3011 /* If we've already adjusted this symbol, don't do it again. This
3012 can happen via a recursive call. */
f5385ebf 3013 if (h->dynamic_adjusted)
45d6a902
AM
3014 return TRUE;
3015
3016 /* Don't look at this symbol again. Note that we must set this
3017 after checking the above conditions, because we may look at a
3018 symbol once, decide not to do anything, and then get called
3019 recursively later after REF_REGULAR is set below. */
f5385ebf 3020 h->dynamic_adjusted = 1;
45d6a902
AM
3021
3022 /* If this is a weak definition, and we know a real definition, and
3023 the real symbol is not itself defined by a regular object file,
3024 then get a good value for the real definition. We handle the
3025 real symbol first, for the convenience of the backend routine.
3026
3027 Note that there is a confusing case here. If the real definition
3028 is defined by a regular object file, we don't get the real symbol
3029 from the dynamic object, but we do get the weak symbol. If the
3030 processor backend uses a COPY reloc, then if some routine in the
3031 dynamic object changes the real symbol, we will not see that
3032 change in the corresponding weak symbol. This is the way other
3033 ELF linkers work as well, and seems to be a result of the shared
3034 library model.
3035
3036 I will clarify this issue. Most SVR4 shared libraries define the
3037 variable _timezone and define timezone as a weak synonym. The
3038 tzset call changes _timezone. If you write
3039 extern int timezone;
3040 int _timezone = 5;
3041 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
3042 you might expect that, since timezone is a synonym for _timezone,
3043 the same number will print both times. However, if the processor
3044 backend uses a COPY reloc, then actually timezone will be copied
3045 into your process image, and, since you define _timezone
3046 yourself, _timezone will not. Thus timezone and _timezone will
3047 wind up at different memory locations. The tzset call will set
3048 _timezone, leaving timezone unchanged. */
3049
60d67dc8 3050 if (h->is_weakalias)
45d6a902 3051 {
60d67dc8
AM
3052 struct elf_link_hash_entry *def = weakdef (h);
3053
ec24dc88 3054 /* If we get to this point, there is an implicit reference to
60d67dc8
AM
3055 the alias by a regular object file via the weak symbol H. */
3056 def->ref_regular = 1;
45d6a902 3057
ec24dc88 3058 /* Ensure that the backend adjust_dynamic_symbol function sees
60d67dc8
AM
3059 the strong alias before H by recursively calling ourselves. */
3060 if (!_bfd_elf_adjust_dynamic_symbol (def, eif))
45d6a902
AM
3061 return FALSE;
3062 }
3063
3064 /* If a symbol has no type and no size and does not require a PLT
3065 entry, then we are probably about to do the wrong thing here: we
3066 are probably going to create a COPY reloc for an empty object.
3067 This case can arise when a shared object is built with assembly
3068 code, and the assembly code fails to set the symbol type. */
3069 if (h->size == 0
3070 && h->type == STT_NOTYPE
f5385ebf 3071 && !h->needs_plt)
4eca0228 3072 _bfd_error_handler
45d6a902
AM
3073 (_("warning: type and size of dynamic symbol `%s' are not defined"),
3074 h->root.root.string);
3075
45d6a902
AM
3076 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
3077 {
3078 eif->failed = TRUE;
3079 return FALSE;
3080 }
3081
3082 return TRUE;
3083}
3084
027297b7
L
3085/* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
3086 DYNBSS. */
3087
3088bfd_boolean
6cabe1ea
AM
3089_bfd_elf_adjust_dynamic_copy (struct bfd_link_info *info,
3090 struct elf_link_hash_entry *h,
027297b7
L
3091 asection *dynbss)
3092{
91ac5911 3093 unsigned int power_of_two;
027297b7
L
3094 bfd_vma mask;
3095 asection *sec = h->root.u.def.section;
3096
de194d85 3097 /* The section alignment of the definition is the maximum alignment
91ac5911
L
3098 requirement of symbols defined in the section. Since we don't
3099 know the symbol alignment requirement, we start with the
3100 maximum alignment and check low bits of the symbol address
3101 for the minimum alignment. */
3102 power_of_two = bfd_get_section_alignment (sec->owner, sec);
3103 mask = ((bfd_vma) 1 << power_of_two) - 1;
3104 while ((h->root.u.def.value & mask) != 0)
3105 {
3106 mask >>= 1;
3107 --power_of_two;
3108 }
027297b7 3109
91ac5911
L
3110 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
3111 dynbss))
027297b7
L
3112 {
3113 /* Adjust the section alignment if needed. */
3114 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
91ac5911 3115 power_of_two))
027297b7
L
3116 return FALSE;
3117 }
3118
91ac5911 3119 /* We make sure that the symbol will be aligned properly. */
027297b7
L
3120 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
3121
3122 /* Define the symbol as being at this point in DYNBSS. */
3123 h->root.u.def.section = dynbss;
3124 h->root.u.def.value = dynbss->size;
3125
3126 /* Increment the size of DYNBSS to make room for the symbol. */
3127 dynbss->size += h->size;
3128
f7483970
L
3129 /* No error if extern_protected_data is true. */
3130 if (h->protected_def
889c2a67
L
3131 && (!info->extern_protected_data
3132 || (info->extern_protected_data < 0
3133 && !get_elf_backend_data (dynbss->owner)->extern_protected_data)))
d07a1b05 3134 info->callbacks->einfo
c1c8c1ef 3135 (_("%P: copy reloc against protected `%pT' is dangerous\n"),
d07a1b05 3136 h->root.root.string);
6cabe1ea 3137
027297b7
L
3138 return TRUE;
3139}
3140
45d6a902
AM
3141/* Adjust all external symbols pointing into SEC_MERGE sections
3142 to reflect the object merging within the sections. */
3143
28caa186 3144static bfd_boolean
268b6b39 3145_bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
45d6a902
AM
3146{
3147 asection *sec;
3148
45d6a902
AM
3149 if ((h->root.type == bfd_link_hash_defined
3150 || h->root.type == bfd_link_hash_defweak)
3151 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
dbaa2011 3152 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
45d6a902 3153 {
a50b1753 3154 bfd *output_bfd = (bfd *) data;
45d6a902
AM
3155
3156 h->root.u.def.value =
3157 _bfd_merged_section_offset (output_bfd,
3158 &h->root.u.def.section,
3159 elf_section_data (sec)->sec_info,
753731ee 3160 h->root.u.def.value);
45d6a902
AM
3161 }
3162
3163 return TRUE;
3164}
986a241f
RH
3165
3166/* Returns false if the symbol referred to by H should be considered
3167 to resolve local to the current module, and true if it should be
3168 considered to bind dynamically. */
3169
3170bfd_boolean
268b6b39
AM
3171_bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
3172 struct bfd_link_info *info,
89a2ee5a 3173 bfd_boolean not_local_protected)
986a241f
RH
3174{
3175 bfd_boolean binding_stays_local_p;
fcb93ecf
PB
3176 const struct elf_backend_data *bed;
3177 struct elf_link_hash_table *hash_table;
986a241f
RH
3178
3179 if (h == NULL)
3180 return FALSE;
3181
3182 while (h->root.type == bfd_link_hash_indirect
3183 || h->root.type == bfd_link_hash_warning)
3184 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3185
3186 /* If it was forced local, then clearly it's not dynamic. */
3187 if (h->dynindx == -1)
3188 return FALSE;
f5385ebf 3189 if (h->forced_local)
986a241f
RH
3190 return FALSE;
3191
3192 /* Identify the cases where name binding rules say that a
3193 visible symbol resolves locally. */
0e1862bb
L
3194 binding_stays_local_p = (bfd_link_executable (info)
3195 || SYMBOLIC_BIND (info, h));
986a241f
RH
3196
3197 switch (ELF_ST_VISIBILITY (h->other))
3198 {
3199 case STV_INTERNAL:
3200 case STV_HIDDEN:
3201 return FALSE;
3202
3203 case STV_PROTECTED:
fcb93ecf
PB
3204 hash_table = elf_hash_table (info);
3205 if (!is_elf_hash_table (hash_table))
3206 return FALSE;
3207
3208 bed = get_elf_backend_data (hash_table->dynobj);
3209
986a241f
RH
3210 /* Proper resolution for function pointer equality may require
3211 that these symbols perhaps be resolved dynamically, even though
3212 we should be resolving them to the current module. */
89a2ee5a 3213 if (!not_local_protected || !bed->is_function_type (h->type))
986a241f
RH
3214 binding_stays_local_p = TRUE;
3215 break;
3216
3217 default:
986a241f
RH
3218 break;
3219 }
3220
aa37626c 3221 /* If it isn't defined locally, then clearly it's dynamic. */
89a2ee5a 3222 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
aa37626c
L
3223 return TRUE;
3224
986a241f
RH
3225 /* Otherwise, the symbol is dynamic if binding rules don't tell
3226 us that it remains local. */
3227 return !binding_stays_local_p;
3228}
f6c52c13
AM
3229
3230/* Return true if the symbol referred to by H should be considered
3231 to resolve local to the current module, and false otherwise. Differs
3232 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2e76e85a 3233 undefined symbols. The two functions are virtually identical except
0fad2956
MR
3234 for the place where dynindx == -1 is tested. If that test is true,
3235 _bfd_elf_dynamic_symbol_p will say the symbol is local, while
3236 _bfd_elf_symbol_refs_local_p will say the symbol is local only for
3237 defined symbols.
89a2ee5a
AM
3238 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
3239 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
3240 treatment of undefined weak symbols. For those that do not make
3241 undefined weak symbols dynamic, both functions may return false. */
f6c52c13
AM
3242
3243bfd_boolean
268b6b39
AM
3244_bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
3245 struct bfd_link_info *info,
3246 bfd_boolean local_protected)
f6c52c13 3247{
fcb93ecf
PB
3248 const struct elf_backend_data *bed;
3249 struct elf_link_hash_table *hash_table;
3250
f6c52c13
AM
3251 /* If it's a local sym, of course we resolve locally. */
3252 if (h == NULL)
3253 return TRUE;
3254
d95edcac
L
3255 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
3256 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
3257 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
3258 return TRUE;
3259
0fad2956
MR
3260 /* Forced local symbols resolve locally. */
3261 if (h->forced_local)
3262 return TRUE;
3263
7e2294f9
AO
3264 /* Common symbols that become definitions don't get the DEF_REGULAR
3265 flag set, so test it first, and don't bail out. */
3266 if (ELF_COMMON_DEF_P (h))
3267 /* Do nothing. */;
f6c52c13 3268 /* If we don't have a definition in a regular file, then we can't
49ff44d6
L
3269 resolve locally. The sym is either undefined or dynamic. */
3270 else if (!h->def_regular)
f6c52c13
AM
3271 return FALSE;
3272
0fad2956 3273 /* Non-dynamic symbols resolve locally. */
f6c52c13
AM
3274 if (h->dynindx == -1)
3275 return TRUE;
3276
3277 /* At this point, we know the symbol is defined and dynamic. In an
3278 executable it must resolve locally, likewise when building symbolic
3279 shared libraries. */
0e1862bb 3280 if (bfd_link_executable (info) || SYMBOLIC_BIND (info, h))
f6c52c13
AM
3281 return TRUE;
3282
3283 /* Now deal with defined dynamic symbols in shared libraries. Ones
3284 with default visibility might not resolve locally. */
3285 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
3286 return FALSE;
3287
fcb93ecf
PB
3288 hash_table = elf_hash_table (info);
3289 if (!is_elf_hash_table (hash_table))
3290 return TRUE;
3291
3292 bed = get_elf_backend_data (hash_table->dynobj);
3293
f7483970
L
3294 /* If extern_protected_data is false, STV_PROTECTED non-function
3295 symbols are local. */
889c2a67
L
3296 if ((!info->extern_protected_data
3297 || (info->extern_protected_data < 0
3298 && !bed->extern_protected_data))
3299 && !bed->is_function_type (h->type))
1c16dfa5
L
3300 return TRUE;
3301
f6c52c13 3302 /* Function pointer equality tests may require that STV_PROTECTED
2676a7d9
AM
3303 symbols be treated as dynamic symbols. If the address of a
3304 function not defined in an executable is set to that function's
3305 plt entry in the executable, then the address of the function in
3306 a shared library must also be the plt entry in the executable. */
f6c52c13
AM
3307 return local_protected;
3308}
e1918d23
AM
3309
3310/* Caches some TLS segment info, and ensures that the TLS segment vma is
3311 aligned. Returns the first TLS output section. */
3312
3313struct bfd_section *
3314_bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
3315{
3316 struct bfd_section *sec, *tls;
3317 unsigned int align = 0;
3318
3319 for (sec = obfd->sections; sec != NULL; sec = sec->next)
3320 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
3321 break;
3322 tls = sec;
3323
3324 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
3325 if (sec->alignment_power > align)
3326 align = sec->alignment_power;
3327
3328 elf_hash_table (info)->tls_sec = tls;
3329
3330 /* Ensure the alignment of the first section is the largest alignment,
3331 so that the tls segment starts aligned. */
3332 if (tls != NULL)
3333 tls->alignment_power = align;
3334
3335 return tls;
3336}
0ad989f9
L
3337
3338/* Return TRUE iff this is a non-common, definition of a non-function symbol. */
3339static bfd_boolean
3340is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
3341 Elf_Internal_Sym *sym)
3342{
a4d8e49b
L
3343 const struct elf_backend_data *bed;
3344
0ad989f9
L
3345 /* Local symbols do not count, but target specific ones might. */
3346 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
3347 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
3348 return FALSE;
3349
fcb93ecf 3350 bed = get_elf_backend_data (abfd);
0ad989f9 3351 /* Function symbols do not count. */
fcb93ecf 3352 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
0ad989f9
L
3353 return FALSE;
3354
3355 /* If the section is undefined, then so is the symbol. */
3356 if (sym->st_shndx == SHN_UNDEF)
3357 return FALSE;
3358
3359 /* If the symbol is defined in the common section, then
3360 it is a common definition and so does not count. */
a4d8e49b 3361 if (bed->common_definition (sym))
0ad989f9
L
3362 return FALSE;
3363
3364 /* If the symbol is in a target specific section then we
3365 must rely upon the backend to tell us what it is. */
3366 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
3367 /* FIXME - this function is not coded yet:
3368
3369 return _bfd_is_global_symbol_definition (abfd, sym);
3370
3371 Instead for now assume that the definition is not global,
3372 Even if this is wrong, at least the linker will behave
3373 in the same way that it used to do. */
3374 return FALSE;
3375
3376 return TRUE;
3377}
3378
3379/* Search the symbol table of the archive element of the archive ABFD
3380 whose archive map contains a mention of SYMDEF, and determine if
3381 the symbol is defined in this element. */
3382static bfd_boolean
3383elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
3384{
3385 Elf_Internal_Shdr * hdr;
ef53be89
AM
3386 size_t symcount;
3387 size_t extsymcount;
3388 size_t extsymoff;
0ad989f9
L
3389 Elf_Internal_Sym *isymbuf;
3390 Elf_Internal_Sym *isym;
3391 Elf_Internal_Sym *isymend;
3392 bfd_boolean result;
3393
3394 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
3395 if (abfd == NULL)
3396 return FALSE;
3397
3398 if (! bfd_check_format (abfd, bfd_object))
3399 return FALSE;
3400
7dc3990e
L
3401 /* Select the appropriate symbol table. If we don't know if the
3402 object file is an IR object, give linker LTO plugin a chance to
3403 get the correct symbol table. */
3404 if (abfd->plugin_format == bfd_plugin_yes
08ce1d72 3405#if BFD_SUPPORTS_PLUGINS
7dc3990e
L
3406 || (abfd->plugin_format == bfd_plugin_unknown
3407 && bfd_link_plugin_object_p (abfd))
3408#endif
3409 )
3410 {
3411 /* Use the IR symbol table if the object has been claimed by
3412 plugin. */
3413 abfd = abfd->plugin_dummy_bfd;
3414 hdr = &elf_tdata (abfd)->symtab_hdr;
3415 }
3416 else if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
0ad989f9
L
3417 hdr = &elf_tdata (abfd)->symtab_hdr;
3418 else
3419 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3420
3421 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3422
3423 /* The sh_info field of the symtab header tells us where the
3424 external symbols start. We don't care about the local symbols. */
3425 if (elf_bad_symtab (abfd))
3426 {
3427 extsymcount = symcount;
3428 extsymoff = 0;
3429 }
3430 else
3431 {
3432 extsymcount = symcount - hdr->sh_info;
3433 extsymoff = hdr->sh_info;
3434 }
3435
3436 if (extsymcount == 0)
3437 return FALSE;
3438
3439 /* Read in the symbol table. */
3440 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3441 NULL, NULL, NULL);
3442 if (isymbuf == NULL)
3443 return FALSE;
3444
3445 /* Scan the symbol table looking for SYMDEF. */
3446 result = FALSE;
3447 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
3448 {
3449 const char *name;
3450
3451 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3452 isym->st_name);
3453 if (name == NULL)
3454 break;
3455
3456 if (strcmp (name, symdef->name) == 0)
3457 {
3458 result = is_global_data_symbol_definition (abfd, isym);
3459 break;
3460 }
3461 }
3462
3463 free (isymbuf);
3464
3465 return result;
3466}
3467\f
5a580b3a
AM
3468/* Add an entry to the .dynamic table. */
3469
3470bfd_boolean
3471_bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3472 bfd_vma tag,
3473 bfd_vma val)
3474{
3475 struct elf_link_hash_table *hash_table;
3476 const struct elf_backend_data *bed;
3477 asection *s;
3478 bfd_size_type newsize;
3479 bfd_byte *newcontents;
3480 Elf_Internal_Dyn dyn;
3481
3482 hash_table = elf_hash_table (info);
3483 if (! is_elf_hash_table (hash_table))
3484 return FALSE;
3485
7f923b7f
AM
3486 if (tag == DT_RELA || tag == DT_REL)
3487 hash_table->dynamic_relocs = TRUE;
3488
5a580b3a 3489 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3490 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
5a580b3a
AM
3491 BFD_ASSERT (s != NULL);
3492
eea6121a 3493 newsize = s->size + bed->s->sizeof_dyn;
a50b1753 3494 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
5a580b3a
AM
3495 if (newcontents == NULL)
3496 return FALSE;
3497
3498 dyn.d_tag = tag;
3499 dyn.d_un.d_val = val;
eea6121a 3500 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
5a580b3a 3501
eea6121a 3502 s->size = newsize;
5a580b3a
AM
3503 s->contents = newcontents;
3504
3505 return TRUE;
3506}
3507
3508/* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3509 otherwise just check whether one already exists. Returns -1 on error,
3510 1 if a DT_NEEDED tag already exists, and 0 on success. */
3511
4ad4eba5 3512static int
7e9f0867
AM
3513elf_add_dt_needed_tag (bfd *abfd,
3514 struct bfd_link_info *info,
4ad4eba5
AM
3515 const char *soname,
3516 bfd_boolean do_it)
5a580b3a
AM
3517{
3518 struct elf_link_hash_table *hash_table;
ef53be89 3519 size_t strindex;
5a580b3a 3520
7e9f0867
AM
3521 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3522 return -1;
3523
5a580b3a 3524 hash_table = elf_hash_table (info);
5a580b3a 3525 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
ef53be89 3526 if (strindex == (size_t) -1)
5a580b3a
AM
3527 return -1;
3528
02be4619 3529 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
5a580b3a
AM
3530 {
3531 asection *sdyn;
3532 const struct elf_backend_data *bed;
3533 bfd_byte *extdyn;
3534
3535 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3536 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
7e9f0867
AM
3537 if (sdyn != NULL)
3538 for (extdyn = sdyn->contents;
3539 extdyn < sdyn->contents + sdyn->size;
3540 extdyn += bed->s->sizeof_dyn)
3541 {
3542 Elf_Internal_Dyn dyn;
5a580b3a 3543
7e9f0867
AM
3544 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3545 if (dyn.d_tag == DT_NEEDED
3546 && dyn.d_un.d_val == strindex)
3547 {
3548 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3549 return 1;
3550 }
3551 }
5a580b3a
AM
3552 }
3553
3554 if (do_it)
3555 {
7e9f0867
AM
3556 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3557 return -1;
3558
5a580b3a
AM
3559 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3560 return -1;
3561 }
3562 else
3563 /* We were just checking for existence of the tag. */
3564 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3565
3566 return 0;
3567}
3568
7b15fa7a
AM
3569/* Return true if SONAME is on the needed list between NEEDED and STOP
3570 (or the end of list if STOP is NULL), and needed by a library that
3571 will be loaded. */
3572
010e5ae2 3573static bfd_boolean
7b15fa7a
AM
3574on_needed_list (const char *soname,
3575 struct bfd_link_needed_list *needed,
3576 struct bfd_link_needed_list *stop)
010e5ae2 3577{
7b15fa7a
AM
3578 struct bfd_link_needed_list *look;
3579 for (look = needed; look != stop; look = look->next)
3580 if (strcmp (soname, look->name) == 0
3581 && ((elf_dyn_lib_class (look->by) & DYN_AS_NEEDED) == 0
3582 /* If needed by a library that itself is not directly
3583 needed, recursively check whether that library is
3584 indirectly needed. Since we add DT_NEEDED entries to
3585 the end of the list, library dependencies appear after
3586 the library. Therefore search prior to the current
3587 LOOK, preventing possible infinite recursion. */
3588 || on_needed_list (elf_dt_name (look->by), needed, look)))
010e5ae2
AM
3589 return TRUE;
3590
3591 return FALSE;
3592}
3593
14160578 3594/* Sort symbol by value, section, and size. */
4ad4eba5
AM
3595static int
3596elf_sort_symbol (const void *arg1, const void *arg2)
5a580b3a
AM
3597{
3598 const struct elf_link_hash_entry *h1;
3599 const struct elf_link_hash_entry *h2;
10b7e05b 3600 bfd_signed_vma vdiff;
5a580b3a
AM
3601
3602 h1 = *(const struct elf_link_hash_entry **) arg1;
3603 h2 = *(const struct elf_link_hash_entry **) arg2;
10b7e05b
NC
3604 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3605 if (vdiff != 0)
3606 return vdiff > 0 ? 1 : -1;
3607 else
3608 {
d3435ae8 3609 int sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
10b7e05b
NC
3610 if (sdiff != 0)
3611 return sdiff > 0 ? 1 : -1;
3612 }
14160578
AM
3613 vdiff = h1->size - h2->size;
3614 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
5a580b3a 3615}
4ad4eba5 3616
5a580b3a
AM
3617/* This function is used to adjust offsets into .dynstr for
3618 dynamic symbols. This is called via elf_link_hash_traverse. */
3619
3620static bfd_boolean
3621elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3622{
a50b1753 3623 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
5a580b3a 3624
5a580b3a
AM
3625 if (h->dynindx != -1)
3626 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3627 return TRUE;
3628}
3629
3630/* Assign string offsets in .dynstr, update all structures referencing
3631 them. */
3632
4ad4eba5
AM
3633static bfd_boolean
3634elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
5a580b3a
AM
3635{
3636 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3637 struct elf_link_local_dynamic_entry *entry;
3638 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3639 bfd *dynobj = hash_table->dynobj;
3640 asection *sdyn;
3641 bfd_size_type size;
3642 const struct elf_backend_data *bed;
3643 bfd_byte *extdyn;
3644
3645 _bfd_elf_strtab_finalize (dynstr);
3646 size = _bfd_elf_strtab_size (dynstr);
3647
3648 bed = get_elf_backend_data (dynobj);
3d4d4302 3649 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
5a580b3a
AM
3650 BFD_ASSERT (sdyn != NULL);
3651
3652 /* Update all .dynamic entries referencing .dynstr strings. */
3653 for (extdyn = sdyn->contents;
eea6121a 3654 extdyn < sdyn->contents + sdyn->size;
5a580b3a
AM
3655 extdyn += bed->s->sizeof_dyn)
3656 {
3657 Elf_Internal_Dyn dyn;
3658
3659 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3660 switch (dyn.d_tag)
3661 {
3662 case DT_STRSZ:
3663 dyn.d_un.d_val = size;
3664 break;
3665 case DT_NEEDED:
3666 case DT_SONAME:
3667 case DT_RPATH:
3668 case DT_RUNPATH:
3669 case DT_FILTER:
3670 case DT_AUXILIARY:
7ee314fa
AM
3671 case DT_AUDIT:
3672 case DT_DEPAUDIT:
5a580b3a
AM
3673 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3674 break;
3675 default:
3676 continue;
3677 }
3678 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3679 }
3680
3681 /* Now update local dynamic symbols. */
3682 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3683 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3684 entry->isym.st_name);
3685
3686 /* And the rest of dynamic symbols. */
3687 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3688
3689 /* Adjust version definitions. */
3690 if (elf_tdata (output_bfd)->cverdefs)
3691 {
3692 asection *s;
3693 bfd_byte *p;
ef53be89 3694 size_t i;
5a580b3a
AM
3695 Elf_Internal_Verdef def;
3696 Elf_Internal_Verdaux defaux;
3697
3d4d4302 3698 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
3699 p = s->contents;
3700 do
3701 {
3702 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3703 &def);
3704 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
3705 if (def.vd_aux != sizeof (Elf_External_Verdef))
3706 continue;
5a580b3a
AM
3707 for (i = 0; i < def.vd_cnt; ++i)
3708 {
3709 _bfd_elf_swap_verdaux_in (output_bfd,
3710 (Elf_External_Verdaux *) p, &defaux);
3711 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3712 defaux.vda_name);
3713 _bfd_elf_swap_verdaux_out (output_bfd,
3714 &defaux, (Elf_External_Verdaux *) p);
3715 p += sizeof (Elf_External_Verdaux);
3716 }
3717 }
3718 while (def.vd_next);
3719 }
3720
3721 /* Adjust version references. */
3722 if (elf_tdata (output_bfd)->verref)
3723 {
3724 asection *s;
3725 bfd_byte *p;
ef53be89 3726 size_t i;
5a580b3a
AM
3727 Elf_Internal_Verneed need;
3728 Elf_Internal_Vernaux needaux;
3729
3d4d4302 3730 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
3731 p = s->contents;
3732 do
3733 {
3734 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3735 &need);
3736 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3737 _bfd_elf_swap_verneed_out (output_bfd, &need,
3738 (Elf_External_Verneed *) p);
3739 p += sizeof (Elf_External_Verneed);
3740 for (i = 0; i < need.vn_cnt; ++i)
3741 {
3742 _bfd_elf_swap_vernaux_in (output_bfd,
3743 (Elf_External_Vernaux *) p, &needaux);
3744 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3745 needaux.vna_name);
3746 _bfd_elf_swap_vernaux_out (output_bfd,
3747 &needaux,
3748 (Elf_External_Vernaux *) p);
3749 p += sizeof (Elf_External_Vernaux);
3750 }
3751 }
3752 while (need.vn_next);
3753 }
3754
3755 return TRUE;
3756}
3757\f
13285a1b
AM
3758/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3759 The default is to only match when the INPUT and OUTPUT are exactly
3760 the same target. */
3761
3762bfd_boolean
3763_bfd_elf_default_relocs_compatible (const bfd_target *input,
3764 const bfd_target *output)
3765{
3766 return input == output;
3767}
3768
3769/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3770 This version is used when different targets for the same architecture
3771 are virtually identical. */
3772
3773bfd_boolean
3774_bfd_elf_relocs_compatible (const bfd_target *input,
3775 const bfd_target *output)
3776{
3777 const struct elf_backend_data *obed, *ibed;
3778
3779 if (input == output)
3780 return TRUE;
3781
3782 ibed = xvec_get_elf_backend_data (input);
3783 obed = xvec_get_elf_backend_data (output);
3784
3785 if (ibed->arch != obed->arch)
3786 return FALSE;
3787
3788 /* If both backends are using this function, deem them compatible. */
3789 return ibed->relocs_compatible == obed->relocs_compatible;
3790}
3791
e5034e59
AM
3792/* Make a special call to the linker "notice" function to tell it that
3793 we are about to handle an as-needed lib, or have finished
1b786873 3794 processing the lib. */
e5034e59
AM
3795
3796bfd_boolean
3797_bfd_elf_notice_as_needed (bfd *ibfd,
3798 struct bfd_link_info *info,
3799 enum notice_asneeded_action act)
3800{
46135103 3801 return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
e5034e59
AM
3802}
3803
d9689752
L
3804/* Check relocations an ELF object file. */
3805
3806bfd_boolean
3807_bfd_elf_link_check_relocs (bfd *abfd, struct bfd_link_info *info)
3808{
3809 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3810 struct elf_link_hash_table *htab = elf_hash_table (info);
3811
3812 /* If this object is the same format as the output object, and it is
3813 not a shared library, then let the backend look through the
3814 relocs.
3815
3816 This is required to build global offset table entries and to
3817 arrange for dynamic relocs. It is not required for the
3818 particular common case of linking non PIC code, even when linking
3819 against shared libraries, but unfortunately there is no way of
3820 knowing whether an object file has been compiled PIC or not.
3821 Looking through the relocs is not particularly time consuming.
3822 The problem is that we must either (1) keep the relocs in memory,
3823 which causes the linker to require additional runtime memory or
3824 (2) read the relocs twice from the input file, which wastes time.
3825 This would be a good case for using mmap.
3826
3827 I have no idea how to handle linking PIC code into a file of a
3828 different format. It probably can't be done. */
3829 if ((abfd->flags & DYNAMIC) == 0
3830 && is_elf_hash_table (htab)
3831 && bed->check_relocs != NULL
3832 && elf_object_id (abfd) == elf_hash_table_id (htab)
3833 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
3834 {
3835 asection *o;
3836
3837 for (o = abfd->sections; o != NULL; o = o->next)
3838 {
3839 Elf_Internal_Rela *internal_relocs;
3840 bfd_boolean ok;
3841
5ce03cea 3842 /* Don't check relocations in excluded sections. */
d9689752 3843 if ((o->flags & SEC_RELOC) == 0
5ce03cea 3844 || (o->flags & SEC_EXCLUDE) != 0
d9689752
L
3845 || o->reloc_count == 0
3846 || ((info->strip == strip_all || info->strip == strip_debugger)
3847 && (o->flags & SEC_DEBUGGING) != 0)
3848 || bfd_is_abs_section (o->output_section))
3849 continue;
3850
3851 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
3852 info->keep_memory);
3853 if (internal_relocs == NULL)
3854 return FALSE;
3855
3856 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
3857
3858 if (elf_section_data (o)->relocs != internal_relocs)
3859 free (internal_relocs);
3860
3861 if (! ok)
3862 return FALSE;
3863 }
3864 }
3865
3866 return TRUE;
3867}
3868
4ad4eba5
AM
3869/* Add symbols from an ELF object file to the linker hash table. */
3870
3871static bfd_boolean
3872elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3873{
a0c402a5 3874 Elf_Internal_Ehdr *ehdr;
4ad4eba5 3875 Elf_Internal_Shdr *hdr;
ef53be89
AM
3876 size_t symcount;
3877 size_t extsymcount;
3878 size_t extsymoff;
4ad4eba5
AM
3879 struct elf_link_hash_entry **sym_hash;
3880 bfd_boolean dynamic;
3881 Elf_External_Versym *extversym = NULL;
be22c732 3882 Elf_External_Versym *extversym_end = NULL;
4ad4eba5
AM
3883 Elf_External_Versym *ever;
3884 struct elf_link_hash_entry *weaks;
3885 struct elf_link_hash_entry **nondeflt_vers = NULL;
ef53be89 3886 size_t nondeflt_vers_cnt = 0;
4ad4eba5
AM
3887 Elf_Internal_Sym *isymbuf = NULL;
3888 Elf_Internal_Sym *isym;
3889 Elf_Internal_Sym *isymend;
3890 const struct elf_backend_data *bed;
3891 bfd_boolean add_needed;
66eb6687 3892 struct elf_link_hash_table *htab;
4ad4eba5 3893 bfd_size_type amt;
66eb6687 3894 void *alloc_mark = NULL;
4f87808c
AM
3895 struct bfd_hash_entry **old_table = NULL;
3896 unsigned int old_size = 0;
3897 unsigned int old_count = 0;
66eb6687 3898 void *old_tab = NULL;
66eb6687
AM
3899 void *old_ent;
3900 struct bfd_link_hash_entry *old_undefs = NULL;
3901 struct bfd_link_hash_entry *old_undefs_tail = NULL;
5b677558 3902 void *old_strtab = NULL;
66eb6687 3903 size_t tabsize = 0;
db6a5d5f 3904 asection *s;
29a9f53e 3905 bfd_boolean just_syms;
4ad4eba5 3906
66eb6687 3907 htab = elf_hash_table (info);
4ad4eba5 3908 bed = get_elf_backend_data (abfd);
4ad4eba5
AM
3909
3910 if ((abfd->flags & DYNAMIC) == 0)
3911 dynamic = FALSE;
3912 else
3913 {
3914 dynamic = TRUE;
3915
3916 /* You can't use -r against a dynamic object. Also, there's no
3917 hope of using a dynamic object which does not exactly match
3918 the format of the output file. */
0e1862bb 3919 if (bfd_link_relocatable (info)
66eb6687 3920 || !is_elf_hash_table (htab)
f13a99db 3921 || info->output_bfd->xvec != abfd->xvec)
4ad4eba5 3922 {
0e1862bb 3923 if (bfd_link_relocatable (info))
9a0789ec
NC
3924 bfd_set_error (bfd_error_invalid_operation);
3925 else
3926 bfd_set_error (bfd_error_wrong_format);
4ad4eba5
AM
3927 goto error_return;
3928 }
3929 }
3930
a0c402a5
L
3931 ehdr = elf_elfheader (abfd);
3932 if (info->warn_alternate_em
3933 && bed->elf_machine_code != ehdr->e_machine
3934 && ((bed->elf_machine_alt1 != 0
3935 && ehdr->e_machine == bed->elf_machine_alt1)
3936 || (bed->elf_machine_alt2 != 0
3937 && ehdr->e_machine == bed->elf_machine_alt2)))
9793eb77 3938 _bfd_error_handler
695344c0 3939 /* xgettext:c-format */
9793eb77 3940 (_("alternate ELF machine code found (%d) in %pB, expecting %d"),
a0c402a5
L
3941 ehdr->e_machine, abfd, bed->elf_machine_code);
3942
4ad4eba5
AM
3943 /* As a GNU extension, any input sections which are named
3944 .gnu.warning.SYMBOL are treated as warning symbols for the given
3945 symbol. This differs from .gnu.warning sections, which generate
3946 warnings when they are included in an output file. */
dd98f8d2 3947 /* PR 12761: Also generate this warning when building shared libraries. */
db6a5d5f 3948 for (s = abfd->sections; s != NULL; s = s->next)
4ad4eba5 3949 {
db6a5d5f 3950 const char *name;
4ad4eba5 3951
db6a5d5f
AM
3952 name = bfd_get_section_name (abfd, s);
3953 if (CONST_STRNEQ (name, ".gnu.warning."))
4ad4eba5 3954 {
db6a5d5f
AM
3955 char *msg;
3956 bfd_size_type sz;
3957
3958 name += sizeof ".gnu.warning." - 1;
3959
3960 /* If this is a shared object, then look up the symbol
3961 in the hash table. If it is there, and it is already
3962 been defined, then we will not be using the entry
3963 from this shared object, so we don't need to warn.
3964 FIXME: If we see the definition in a regular object
3965 later on, we will warn, but we shouldn't. The only
3966 fix is to keep track of what warnings we are supposed
3967 to emit, and then handle them all at the end of the
3968 link. */
3969 if (dynamic)
4ad4eba5 3970 {
db6a5d5f
AM
3971 struct elf_link_hash_entry *h;
3972
3973 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3974
3975 /* FIXME: What about bfd_link_hash_common? */
3976 if (h != NULL
3977 && (h->root.type == bfd_link_hash_defined
3978 || h->root.type == bfd_link_hash_defweak))
3979 continue;
3980 }
4ad4eba5 3981
db6a5d5f
AM
3982 sz = s->size;
3983 msg = (char *) bfd_alloc (abfd, sz + 1);
3984 if (msg == NULL)
3985 goto error_return;
4ad4eba5 3986
db6a5d5f
AM
3987 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3988 goto error_return;
4ad4eba5 3989
db6a5d5f 3990 msg[sz] = '\0';
4ad4eba5 3991
db6a5d5f
AM
3992 if (! (_bfd_generic_link_add_one_symbol
3993 (info, abfd, name, BSF_WARNING, s, 0, msg,
3994 FALSE, bed->collect, NULL)))
3995 goto error_return;
4ad4eba5 3996
0e1862bb 3997 if (bfd_link_executable (info))
db6a5d5f
AM
3998 {
3999 /* Clobber the section size so that the warning does
4000 not get copied into the output file. */
4001 s->size = 0;
11d2f718 4002
db6a5d5f
AM
4003 /* Also set SEC_EXCLUDE, so that symbols defined in
4004 the warning section don't get copied to the output. */
4005 s->flags |= SEC_EXCLUDE;
4ad4eba5
AM
4006 }
4007 }
4008 }
4009
29a9f53e
L
4010 just_syms = ((s = abfd->sections) != NULL
4011 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
4012
4ad4eba5
AM
4013 add_needed = TRUE;
4014 if (! dynamic)
4015 {
4016 /* If we are creating a shared library, create all the dynamic
4017 sections immediately. We need to attach them to something,
4018 so we attach them to this BFD, provided it is the right
bf89386a
L
4019 format and is not from ld --just-symbols. Always create the
4020 dynamic sections for -E/--dynamic-list. FIXME: If there
29a9f53e
L
4021 are no input BFD's of the same format as the output, we can't
4022 make a shared library. */
4023 if (!just_syms
bf89386a 4024 && (bfd_link_pic (info)
9c1d7a08 4025 || (!bfd_link_relocatable (info)
3c5fce9b 4026 && info->nointerp
9c1d7a08 4027 && (info->export_dynamic || info->dynamic)))
66eb6687 4028 && is_elf_hash_table (htab)
f13a99db 4029 && info->output_bfd->xvec == abfd->xvec
66eb6687 4030 && !htab->dynamic_sections_created)
4ad4eba5
AM
4031 {
4032 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
4033 goto error_return;
4034 }
4035 }
66eb6687 4036 else if (!is_elf_hash_table (htab))
4ad4eba5
AM
4037 goto error_return;
4038 else
4039 {
4ad4eba5 4040 const char *soname = NULL;
7ee314fa 4041 char *audit = NULL;
4ad4eba5 4042 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
9acc85a6 4043 const Elf_Internal_Phdr *phdr;
4ad4eba5
AM
4044 int ret;
4045
4046 /* ld --just-symbols and dynamic objects don't mix very well.
92fd189d 4047 ld shouldn't allow it. */
29a9f53e 4048 if (just_syms)
92fd189d 4049 abort ();
4ad4eba5
AM
4050
4051 /* If this dynamic lib was specified on the command line with
4052 --as-needed in effect, then we don't want to add a DT_NEEDED
4053 tag unless the lib is actually used. Similary for libs brought
e56f61be
L
4054 in by another lib's DT_NEEDED. When --no-add-needed is used
4055 on a dynamic lib, we don't want to add a DT_NEEDED entry for
4056 any dynamic library in DT_NEEDED tags in the dynamic lib at
4057 all. */
4058 add_needed = (elf_dyn_lib_class (abfd)
4059 & (DYN_AS_NEEDED | DYN_DT_NEEDED
4060 | DYN_NO_NEEDED)) == 0;
4ad4eba5
AM
4061
4062 s = bfd_get_section_by_name (abfd, ".dynamic");
4063 if (s != NULL)
4064 {
4065 bfd_byte *dynbuf;
4066 bfd_byte *extdyn;
cb33740c 4067 unsigned int elfsec;
4ad4eba5
AM
4068 unsigned long shlink;
4069
eea6121a 4070 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
f8703194
L
4071 {
4072error_free_dyn:
4073 free (dynbuf);
4074 goto error_return;
4075 }
4ad4eba5
AM
4076
4077 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 4078 if (elfsec == SHN_BAD)
4ad4eba5
AM
4079 goto error_free_dyn;
4080 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
4081
4082 for (extdyn = dynbuf;
9bff840e 4083 extdyn <= dynbuf + s->size - bed->s->sizeof_dyn;
4ad4eba5
AM
4084 extdyn += bed->s->sizeof_dyn)
4085 {
4086 Elf_Internal_Dyn dyn;
4087
4088 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
4089 if (dyn.d_tag == DT_SONAME)
4090 {
4091 unsigned int tagv = dyn.d_un.d_val;
4092 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4093 if (soname == NULL)
4094 goto error_free_dyn;
4095 }
4096 if (dyn.d_tag == DT_NEEDED)
4097 {
4098 struct bfd_link_needed_list *n, **pn;
4099 char *fnm, *anm;
4100 unsigned int tagv = dyn.d_un.d_val;
4101
4102 amt = sizeof (struct bfd_link_needed_list);
a50b1753 4103 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4104 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4105 if (n == NULL || fnm == NULL)
4106 goto error_free_dyn;
4107 amt = strlen (fnm) + 1;
a50b1753 4108 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4109 if (anm == NULL)
4110 goto error_free_dyn;
4111 memcpy (anm, fnm, amt);
4112 n->name = anm;
4113 n->by = abfd;
4114 n->next = NULL;
66eb6687 4115 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
4116 ;
4117 *pn = n;
4118 }
4119 if (dyn.d_tag == DT_RUNPATH)
4120 {
4121 struct bfd_link_needed_list *n, **pn;
4122 char *fnm, *anm;
4123 unsigned int tagv = dyn.d_un.d_val;
4124
4125 amt = sizeof (struct bfd_link_needed_list);
a50b1753 4126 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4127 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4128 if (n == NULL || fnm == NULL)
4129 goto error_free_dyn;
4130 amt = strlen (fnm) + 1;
a50b1753 4131 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4132 if (anm == NULL)
4133 goto error_free_dyn;
4134 memcpy (anm, fnm, amt);
4135 n->name = anm;
4136 n->by = abfd;
4137 n->next = NULL;
4138 for (pn = & runpath;
4139 *pn != NULL;
4140 pn = &(*pn)->next)
4141 ;
4142 *pn = n;
4143 }
4144 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
4145 if (!runpath && dyn.d_tag == DT_RPATH)
4146 {
4147 struct bfd_link_needed_list *n, **pn;
4148 char *fnm, *anm;
4149 unsigned int tagv = dyn.d_un.d_val;
4150
4151 amt = sizeof (struct bfd_link_needed_list);
a50b1753 4152 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
4153 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4154 if (n == NULL || fnm == NULL)
4155 goto error_free_dyn;
4156 amt = strlen (fnm) + 1;
a50b1753 4157 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5 4158 if (anm == NULL)
f8703194 4159 goto error_free_dyn;
4ad4eba5
AM
4160 memcpy (anm, fnm, amt);
4161 n->name = anm;
4162 n->by = abfd;
4163 n->next = NULL;
4164 for (pn = & rpath;
4165 *pn != NULL;
4166 pn = &(*pn)->next)
4167 ;
4168 *pn = n;
4169 }
7ee314fa
AM
4170 if (dyn.d_tag == DT_AUDIT)
4171 {
4172 unsigned int tagv = dyn.d_un.d_val;
4173 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
4174 }
4ad4eba5
AM
4175 }
4176
4177 free (dynbuf);
4178 }
4179
4180 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
4181 frees all more recently bfd_alloc'd blocks as well. */
4182 if (runpath)
4183 rpath = runpath;
4184
4185 if (rpath)
4186 {
4187 struct bfd_link_needed_list **pn;
66eb6687 4188 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
4189 ;
4190 *pn = rpath;
4191 }
4192
9acc85a6
AM
4193 /* If we have a PT_GNU_RELRO program header, mark as read-only
4194 all sections contained fully therein. This makes relro
4195 shared library sections appear as they will at run-time. */
4196 phdr = elf_tdata (abfd)->phdr + elf_elfheader (abfd)->e_phnum;
54025d58 4197 while (phdr-- > elf_tdata (abfd)->phdr)
9acc85a6
AM
4198 if (phdr->p_type == PT_GNU_RELRO)
4199 {
4200 for (s = abfd->sections; s != NULL; s = s->next)
4201 if ((s->flags & SEC_ALLOC) != 0
4202 && s->vma >= phdr->p_vaddr
4203 && s->vma + s->size <= phdr->p_vaddr + phdr->p_memsz)
4204 s->flags |= SEC_READONLY;
4205 break;
4206 }
4207
4ad4eba5
AM
4208 /* We do not want to include any of the sections in a dynamic
4209 object in the output file. We hack by simply clobbering the
4210 list of sections in the BFD. This could be handled more
4211 cleanly by, say, a new section flag; the existing
4212 SEC_NEVER_LOAD flag is not the one we want, because that one
4213 still implies that the section takes up space in the output
4214 file. */
4215 bfd_section_list_clear (abfd);
4216
4ad4eba5
AM
4217 /* Find the name to use in a DT_NEEDED entry that refers to this
4218 object. If the object has a DT_SONAME entry, we use it.
4219 Otherwise, if the generic linker stuck something in
4220 elf_dt_name, we use that. Otherwise, we just use the file
4221 name. */
4222 if (soname == NULL || *soname == '\0')
4223 {
4224 soname = elf_dt_name (abfd);
4225 if (soname == NULL || *soname == '\0')
4226 soname = bfd_get_filename (abfd);
4227 }
4228
4229 /* Save the SONAME because sometimes the linker emulation code
4230 will need to know it. */
4231 elf_dt_name (abfd) = soname;
4232
7e9f0867 4233 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
4234 if (ret < 0)
4235 goto error_return;
4236
4237 /* If we have already included this dynamic object in the
4238 link, just ignore it. There is no reason to include a
4239 particular dynamic object more than once. */
4240 if (ret > 0)
4241 return TRUE;
7ee314fa
AM
4242
4243 /* Save the DT_AUDIT entry for the linker emulation code. */
68ffbac6 4244 elf_dt_audit (abfd) = audit;
4ad4eba5
AM
4245 }
4246
4247 /* If this is a dynamic object, we always link against the .dynsym
4248 symbol table, not the .symtab symbol table. The dynamic linker
4249 will only see the .dynsym symbol table, so there is no reason to
4250 look at .symtab for a dynamic object. */
4251
4252 if (! dynamic || elf_dynsymtab (abfd) == 0)
4253 hdr = &elf_tdata (abfd)->symtab_hdr;
4254 else
4255 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
4256
4257 symcount = hdr->sh_size / bed->s->sizeof_sym;
4258
4259 /* The sh_info field of the symtab header tells us where the
4260 external symbols start. We don't care about the local symbols at
4261 this point. */
4262 if (elf_bad_symtab (abfd))
4263 {
4264 extsymcount = symcount;
4265 extsymoff = 0;
4266 }
4267 else
4268 {
4269 extsymcount = symcount - hdr->sh_info;
4270 extsymoff = hdr->sh_info;
4271 }
4272
f45794cb 4273 sym_hash = elf_sym_hashes (abfd);
012b2306 4274 if (extsymcount != 0)
4ad4eba5
AM
4275 {
4276 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
4277 NULL, NULL, NULL);
4278 if (isymbuf == NULL)
4279 goto error_return;
4280
4ad4eba5 4281 if (sym_hash == NULL)
012b2306
AM
4282 {
4283 /* We store a pointer to the hash table entry for each
4284 external symbol. */
ef53be89
AM
4285 amt = extsymcount;
4286 amt *= sizeof (struct elf_link_hash_entry *);
012b2306
AM
4287 sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
4288 if (sym_hash == NULL)
4289 goto error_free_sym;
4290 elf_sym_hashes (abfd) = sym_hash;
4291 }
4ad4eba5
AM
4292 }
4293
4294 if (dynamic)
4295 {
4296 /* Read in any version definitions. */
fc0e6df6
PB
4297 if (!_bfd_elf_slurp_version_tables (abfd,
4298 info->default_imported_symver))
4ad4eba5
AM
4299 goto error_free_sym;
4300
4301 /* Read in the symbol versions, but don't bother to convert them
4302 to internal format. */
4303 if (elf_dynversym (abfd) != 0)
4304 {
4305 Elf_Internal_Shdr *versymhdr;
4306
4307 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
be22c732
NC
4308 amt = versymhdr->sh_size;
4309 extversym = (Elf_External_Versym *) bfd_malloc (amt);
4ad4eba5
AM
4310 if (extversym == NULL)
4311 goto error_free_sym;
4ad4eba5
AM
4312 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
4313 || bfd_bread (extversym, amt, abfd) != amt)
4314 goto error_free_vers;
be22c732 4315 extversym_end = extversym + (amt / sizeof (* extversym));
4ad4eba5
AM
4316 }
4317 }
4318
66eb6687
AM
4319 /* If we are loading an as-needed shared lib, save the symbol table
4320 state before we start adding symbols. If the lib turns out
4321 to be unneeded, restore the state. */
4322 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4323 {
4324 unsigned int i;
4325 size_t entsize;
4326
4327 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
4328 {
4329 struct bfd_hash_entry *p;
2de92251 4330 struct elf_link_hash_entry *h;
66eb6687
AM
4331
4332 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
2de92251
AM
4333 {
4334 h = (struct elf_link_hash_entry *) p;
4335 entsize += htab->root.table.entsize;
4336 if (h->root.type == bfd_link_hash_warning)
4337 entsize += htab->root.table.entsize;
4338 }
66eb6687
AM
4339 }
4340
4341 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
f45794cb 4342 old_tab = bfd_malloc (tabsize + entsize);
66eb6687
AM
4343 if (old_tab == NULL)
4344 goto error_free_vers;
4345
4346 /* Remember the current objalloc pointer, so that all mem for
4347 symbols added can later be reclaimed. */
4348 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
4349 if (alloc_mark == NULL)
4350 goto error_free_vers;
4351
5061a885
AM
4352 /* Make a special call to the linker "notice" function to
4353 tell it that we are about to handle an as-needed lib. */
e5034e59 4354 if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
9af2a943 4355 goto error_free_vers;
5061a885 4356
f45794cb
AM
4357 /* Clone the symbol table. Remember some pointers into the
4358 symbol table, and dynamic symbol count. */
4359 old_ent = (char *) old_tab + tabsize;
66eb6687 4360 memcpy (old_tab, htab->root.table.table, tabsize);
66eb6687
AM
4361 old_undefs = htab->root.undefs;
4362 old_undefs_tail = htab->root.undefs_tail;
4f87808c
AM
4363 old_table = htab->root.table.table;
4364 old_size = htab->root.table.size;
4365 old_count = htab->root.table.count;
5b677558
AM
4366 old_strtab = _bfd_elf_strtab_save (htab->dynstr);
4367 if (old_strtab == NULL)
4368 goto error_free_vers;
66eb6687
AM
4369
4370 for (i = 0; i < htab->root.table.size; i++)
4371 {
4372 struct bfd_hash_entry *p;
2de92251 4373 struct elf_link_hash_entry *h;
66eb6687
AM
4374
4375 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4376 {
4377 memcpy (old_ent, p, htab->root.table.entsize);
4378 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
4379 h = (struct elf_link_hash_entry *) p;
4380 if (h->root.type == bfd_link_hash_warning)
4381 {
4382 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
4383 old_ent = (char *) old_ent + htab->root.table.entsize;
4384 }
66eb6687
AM
4385 }
4386 }
4387 }
4ad4eba5 4388
66eb6687 4389 weaks = NULL;
be22c732
NC
4390 if (extversym == NULL)
4391 ever = NULL;
4392 else if (extversym + extsymoff < extversym_end)
4393 ever = extversym + extsymoff;
4394 else
4395 {
4396 /* xgettext:c-format */
4397 _bfd_error_handler (_("%pB: invalid version offset %lx (max %lx)"),
4398 abfd, (long) extsymoff,
4399 (long) (extversym_end - extversym) / sizeof (* extversym));
4400 bfd_set_error (bfd_error_bad_value);
4401 goto error_free_vers;
4402 }
4403
b4c555cf
ML
4404 if (!bfd_link_relocatable (info)
4405 && abfd->lto_slim_object)
cc5277b1
ML
4406 {
4407 _bfd_error_handler
4408 (_("%pB: plugin needed to handle lto object"), abfd);
4409 }
4410
4ad4eba5
AM
4411 for (isym = isymbuf, isymend = isymbuf + extsymcount;
4412 isym < isymend;
4413 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
4414 {
4415 int bind;
4416 bfd_vma value;
af44c138 4417 asection *sec, *new_sec;
4ad4eba5
AM
4418 flagword flags;
4419 const char *name;
4420 struct elf_link_hash_entry *h;
90c984fc 4421 struct elf_link_hash_entry *hi;
4ad4eba5
AM
4422 bfd_boolean definition;
4423 bfd_boolean size_change_ok;
4424 bfd_boolean type_change_ok;
37a9e49a
L
4425 bfd_boolean new_weak;
4426 bfd_boolean old_weak;
4ad4eba5 4427 bfd_boolean override;
a4d8e49b 4428 bfd_boolean common;
97196564 4429 bfd_boolean discarded;
4ad4eba5 4430 unsigned int old_alignment;
4538d1c7 4431 unsigned int shindex;
4ad4eba5 4432 bfd *old_bfd;
6e33951e 4433 bfd_boolean matched;
4ad4eba5
AM
4434
4435 override = FALSE;
4436
4437 flags = BSF_NO_FLAGS;
4438 sec = NULL;
4439 value = isym->st_value;
a4d8e49b 4440 common = bed->common_definition (isym);
2980ccad
L
4441 if (common && info->inhibit_common_definition)
4442 {
4443 /* Treat common symbol as undefined for --no-define-common. */
4444 isym->st_shndx = SHN_UNDEF;
4445 common = FALSE;
4446 }
97196564 4447 discarded = FALSE;
4ad4eba5
AM
4448
4449 bind = ELF_ST_BIND (isym->st_info);
3e7a7d11 4450 switch (bind)
4ad4eba5 4451 {
3e7a7d11 4452 case STB_LOCAL:
4ad4eba5
AM
4453 /* This should be impossible, since ELF requires that all
4454 global symbols follow all local symbols, and that sh_info
4455 point to the first global symbol. Unfortunately, Irix 5
4456 screws this up. */
fe3fef62
AM
4457 if (elf_bad_symtab (abfd))
4458 continue;
4459
4460 /* If we aren't prepared to handle locals within the globals
4538d1c7
AM
4461 then we'll likely segfault on a NULL symbol hash if the
4462 symbol is ever referenced in relocations. */
4463 shindex = elf_elfheader (abfd)->e_shstrndx;
4464 name = bfd_elf_string_from_elf_section (abfd, shindex, hdr->sh_name);
4465 _bfd_error_handler (_("%pB: %s local symbol at index %lu"
4466 " (>= sh_info of %lu)"),
4467 abfd, name, (long) (isym - isymbuf + extsymoff),
4468 (long) extsymoff);
4469
4470 /* Dynamic object relocations are not processed by ld, so
4471 ld won't run into the problem mentioned above. */
4472 if (dynamic)
4473 continue;
fe3fef62
AM
4474 bfd_set_error (bfd_error_bad_value);
4475 goto error_free_vers;
3e7a7d11
NC
4476
4477 case STB_GLOBAL:
a4d8e49b 4478 if (isym->st_shndx != SHN_UNDEF && !common)
4ad4eba5 4479 flags = BSF_GLOBAL;
3e7a7d11
NC
4480 break;
4481
4482 case STB_WEAK:
4483 flags = BSF_WEAK;
4484 break;
4485
4486 case STB_GNU_UNIQUE:
4487 flags = BSF_GNU_UNIQUE;
4488 break;
4489
4490 default:
4ad4eba5 4491 /* Leave it up to the processor backend. */
3e7a7d11 4492 break;
4ad4eba5
AM
4493 }
4494
4495 if (isym->st_shndx == SHN_UNDEF)
4496 sec = bfd_und_section_ptr;
cb33740c
AM
4497 else if (isym->st_shndx == SHN_ABS)
4498 sec = bfd_abs_section_ptr;
4499 else if (isym->st_shndx == SHN_COMMON)
4500 {
4501 sec = bfd_com_section_ptr;
4502 /* What ELF calls the size we call the value. What ELF
4503 calls the value we call the alignment. */
4504 value = isym->st_size;
4505 }
4506 else
4ad4eba5
AM
4507 {
4508 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4509 if (sec == NULL)
4510 sec = bfd_abs_section_ptr;
dbaa2011 4511 else if (discarded_section (sec))
529fcb95 4512 {
e5d08002
L
4513 /* Symbols from discarded section are undefined. We keep
4514 its visibility. */
529fcb95 4515 sec = bfd_und_section_ptr;
97196564 4516 discarded = TRUE;
529fcb95
PB
4517 isym->st_shndx = SHN_UNDEF;
4518 }
4ad4eba5
AM
4519 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
4520 value -= sec->vma;
4521 }
4ad4eba5
AM
4522
4523 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4524 isym->st_name);
4525 if (name == NULL)
4526 goto error_free_vers;
4527
4528 if (isym->st_shndx == SHN_COMMON
02d00247
AM
4529 && (abfd->flags & BFD_PLUGIN) != 0)
4530 {
4531 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
4532
4533 if (xc == NULL)
4534 {
4535 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
4536 | SEC_EXCLUDE);
4537 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
4538 if (xc == NULL)
4539 goto error_free_vers;
4540 }
4541 sec = xc;
4542 }
4543 else if (isym->st_shndx == SHN_COMMON
4544 && ELF_ST_TYPE (isym->st_info) == STT_TLS
0e1862bb 4545 && !bfd_link_relocatable (info))
4ad4eba5
AM
4546 {
4547 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
4548
4549 if (tcomm == NULL)
4550 {
02d00247
AM
4551 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
4552 | SEC_LINKER_CREATED);
4553 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3496cb2a 4554 if (tcomm == NULL)
4ad4eba5
AM
4555 goto error_free_vers;
4556 }
4557 sec = tcomm;
4558 }
66eb6687 4559 else if (bed->elf_add_symbol_hook)
4ad4eba5 4560 {
66eb6687
AM
4561 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
4562 &sec, &value))
4ad4eba5
AM
4563 goto error_free_vers;
4564
4565 /* The hook function sets the name to NULL if this symbol
4566 should be skipped for some reason. */
4567 if (name == NULL)
4568 continue;
4569 }
4570
4571 /* Sanity check that all possibilities were handled. */
4572 if (sec == NULL)
4538d1c7 4573 abort ();
4ad4eba5 4574
191c0c42
AM
4575 /* Silently discard TLS symbols from --just-syms. There's
4576 no way to combine a static TLS block with a new TLS block
4577 for this executable. */
4578 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
4579 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4580 continue;
4581
4ad4eba5
AM
4582 if (bfd_is_und_section (sec)
4583 || bfd_is_com_section (sec))
4584 definition = FALSE;
4585 else
4586 definition = TRUE;
4587
4588 size_change_ok = FALSE;
66eb6687 4589 type_change_ok = bed->type_change_ok;
37a9e49a 4590 old_weak = FALSE;
6e33951e 4591 matched = FALSE;
4ad4eba5
AM
4592 old_alignment = 0;
4593 old_bfd = NULL;
af44c138 4594 new_sec = sec;
4ad4eba5 4595
66eb6687 4596 if (is_elf_hash_table (htab))
4ad4eba5
AM
4597 {
4598 Elf_Internal_Versym iver;
4599 unsigned int vernum = 0;
4600 bfd_boolean skip;
4601
fc0e6df6 4602 if (ever == NULL)
4ad4eba5 4603 {
fc0e6df6
PB
4604 if (info->default_imported_symver)
4605 /* Use the default symbol version created earlier. */
4606 iver.vs_vers = elf_tdata (abfd)->cverdefs;
4607 else
4608 iver.vs_vers = 0;
4609 }
be22c732
NC
4610 else if (ever >= extversym_end)
4611 {
4612 /* xgettext:c-format */
4613 _bfd_error_handler (_("%pB: not enough version information"),
4614 abfd);
4615 bfd_set_error (bfd_error_bad_value);
4616 goto error_free_vers;
4617 }
fc0e6df6
PB
4618 else
4619 _bfd_elf_swap_versym_in (abfd, ever, &iver);
4620
4621 vernum = iver.vs_vers & VERSYM_VERSION;
4622
4623 /* If this is a hidden symbol, or if it is not version
4624 1, we append the version name to the symbol name.
cc86ff91
EB
4625 However, we do not modify a non-hidden absolute symbol
4626 if it is not a function, because it might be the version
4627 symbol itself. FIXME: What if it isn't? */
fc0e6df6 4628 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
fcb93ecf
PB
4629 || (vernum > 1
4630 && (!bfd_is_abs_section (sec)
4631 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
fc0e6df6
PB
4632 {
4633 const char *verstr;
4634 size_t namelen, verlen, newlen;
4635 char *newname, *p;
4636
4637 if (isym->st_shndx != SHN_UNDEF)
4ad4eba5 4638 {
fc0e6df6
PB
4639 if (vernum > elf_tdata (abfd)->cverdefs)
4640 verstr = NULL;
4641 else if (vernum > 1)
4642 verstr =
4643 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4644 else
4645 verstr = "";
4ad4eba5 4646
fc0e6df6 4647 if (verstr == NULL)
4ad4eba5 4648 {
4eca0228 4649 _bfd_error_handler
695344c0 4650 /* xgettext:c-format */
871b3ab2 4651 (_("%pB: %s: invalid version %u (max %d)"),
fc0e6df6
PB
4652 abfd, name, vernum,
4653 elf_tdata (abfd)->cverdefs);
4654 bfd_set_error (bfd_error_bad_value);
4655 goto error_free_vers;
4ad4eba5 4656 }
fc0e6df6
PB
4657 }
4658 else
4659 {
4660 /* We cannot simply test for the number of
4661 entries in the VERNEED section since the
4662 numbers for the needed versions do not start
4663 at 0. */
4664 Elf_Internal_Verneed *t;
4665
4666 verstr = NULL;
4667 for (t = elf_tdata (abfd)->verref;
4668 t != NULL;
4669 t = t->vn_nextref)
4ad4eba5 4670 {
fc0e6df6 4671 Elf_Internal_Vernaux *a;
4ad4eba5 4672
fc0e6df6
PB
4673 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4674 {
4675 if (a->vna_other == vernum)
4ad4eba5 4676 {
fc0e6df6
PB
4677 verstr = a->vna_nodename;
4678 break;
4ad4eba5 4679 }
4ad4eba5 4680 }
fc0e6df6
PB
4681 if (a != NULL)
4682 break;
4683 }
4684 if (verstr == NULL)
4685 {
4eca0228 4686 _bfd_error_handler
695344c0 4687 /* xgettext:c-format */
871b3ab2 4688 (_("%pB: %s: invalid needed version %d"),
fc0e6df6
PB
4689 abfd, name, vernum);
4690 bfd_set_error (bfd_error_bad_value);
4691 goto error_free_vers;
4ad4eba5 4692 }
4ad4eba5 4693 }
fc0e6df6
PB
4694
4695 namelen = strlen (name);
4696 verlen = strlen (verstr);
4697 newlen = namelen + verlen + 2;
4698 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4699 && isym->st_shndx != SHN_UNDEF)
4700 ++newlen;
4701
a50b1753 4702 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
fc0e6df6
PB
4703 if (newname == NULL)
4704 goto error_free_vers;
4705 memcpy (newname, name, namelen);
4706 p = newname + namelen;
4707 *p++ = ELF_VER_CHR;
4708 /* If this is a defined non-hidden version symbol,
4709 we add another @ to the name. This indicates the
4710 default version of the symbol. */
4711 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4712 && isym->st_shndx != SHN_UNDEF)
4713 *p++ = ELF_VER_CHR;
4714 memcpy (p, verstr, verlen + 1);
4715
4716 name = newname;
4ad4eba5
AM
4717 }
4718
cd3416da
AM
4719 /* If this symbol has default visibility and the user has
4720 requested we not re-export it, then mark it as hidden. */
a0d49154 4721 if (!bfd_is_und_section (sec)
cd3416da 4722 && !dynamic
ce875075 4723 && abfd->no_export
cd3416da
AM
4724 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4725 isym->st_other = (STV_HIDDEN
4726 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4727
4f3fedcf
AM
4728 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4729 sym_hash, &old_bfd, &old_weak,
4730 &old_alignment, &skip, &override,
6e33951e
L
4731 &type_change_ok, &size_change_ok,
4732 &matched))
4ad4eba5
AM
4733 goto error_free_vers;
4734
4735 if (skip)
4736 continue;
4737
6e33951e
L
4738 /* Override a definition only if the new symbol matches the
4739 existing one. */
4740 if (override && matched)
4ad4eba5
AM
4741 definition = FALSE;
4742
4743 h = *sym_hash;
4744 while (h->root.type == bfd_link_hash_indirect
4745 || h->root.type == bfd_link_hash_warning)
4746 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4747
4ad4eba5 4748 if (elf_tdata (abfd)->verdef != NULL
4ad4eba5
AM
4749 && vernum > 1
4750 && definition)
4751 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4752 }
4753
4754 if (! (_bfd_generic_link_add_one_symbol
66eb6687 4755 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4ad4eba5
AM
4756 (struct bfd_link_hash_entry **) sym_hash)))
4757 goto error_free_vers;
4758
4759 h = *sym_hash;
90c984fc
L
4760 /* We need to make sure that indirect symbol dynamic flags are
4761 updated. */
4762 hi = h;
4ad4eba5
AM
4763 while (h->root.type == bfd_link_hash_indirect
4764 || h->root.type == bfd_link_hash_warning)
4765 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3e7a7d11 4766
97196564
L
4767 /* Setting the index to -3 tells elf_link_output_extsym that
4768 this symbol is defined in a discarded section. */
4769 if (discarded)
4770 h->indx = -3;
4771
4ad4eba5
AM
4772 *sym_hash = h;
4773
37a9e49a 4774 new_weak = (flags & BSF_WEAK) != 0;
4ad4eba5
AM
4775 if (dynamic
4776 && definition
37a9e49a 4777 && new_weak
fcb93ecf 4778 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
66eb6687 4779 && is_elf_hash_table (htab)
60d67dc8 4780 && h->u.alias == NULL)
4ad4eba5
AM
4781 {
4782 /* Keep a list of all weak defined non function symbols from
60d67dc8
AM
4783 a dynamic object, using the alias field. Later in this
4784 function we will set the alias field to the correct
4ad4eba5
AM
4785 value. We only put non-function symbols from dynamic
4786 objects on this list, because that happens to be the only
4787 time we need to know the normal symbol corresponding to a
4788 weak symbol, and the information is time consuming to
60d67dc8 4789 figure out. If the alias field is not already NULL,
4ad4eba5
AM
4790 then this symbol was already defined by some previous
4791 dynamic object, and we will be using that previous
4792 definition anyhow. */
4793
60d67dc8 4794 h->u.alias = weaks;
4ad4eba5 4795 weaks = h;
4ad4eba5
AM
4796 }
4797
4798 /* Set the alignment of a common symbol. */
a4d8e49b 4799 if ((common || bfd_is_com_section (sec))
4ad4eba5
AM
4800 && h->root.type == bfd_link_hash_common)
4801 {
4802 unsigned int align;
4803
a4d8e49b 4804 if (common)
af44c138
L
4805 align = bfd_log2 (isym->st_value);
4806 else
4807 {
4808 /* The new symbol is a common symbol in a shared object.
4809 We need to get the alignment from the section. */
4810 align = new_sec->alignment_power;
4811 }
595213d4 4812 if (align > old_alignment)
4ad4eba5
AM
4813 h->root.u.c.p->alignment_power = align;
4814 else
4815 h->root.u.c.p->alignment_power = old_alignment;
4816 }
4817
66eb6687 4818 if (is_elf_hash_table (htab))
4ad4eba5 4819 {
4f3fedcf
AM
4820 /* Set a flag in the hash table entry indicating the type of
4821 reference or definition we just found. A dynamic symbol
4822 is one which is referenced or defined by both a regular
4823 object and a shared object. */
4824 bfd_boolean dynsym = FALSE;
4825
4826 /* Plugin symbols aren't normal. Don't set def_regular or
4827 ref_regular for them, or make them dynamic. */
4828 if ((abfd->flags & BFD_PLUGIN) != 0)
4829 ;
4830 else if (! dynamic)
4831 {
4832 if (! definition)
4833 {
4834 h->ref_regular = 1;
4835 if (bind != STB_WEAK)
4836 h->ref_regular_nonweak = 1;
4837 }
4838 else
4839 {
4840 h->def_regular = 1;
4841 if (h->def_dynamic)
4842 {
4843 h->def_dynamic = 0;
4844 h->ref_dynamic = 1;
4845 }
4846 }
4847
4848 /* If the indirect symbol has been forced local, don't
4849 make the real symbol dynamic. */
4850 if ((h == hi || !hi->forced_local)
0e1862bb 4851 && (bfd_link_dll (info)
4f3fedcf
AM
4852 || h->def_dynamic
4853 || h->ref_dynamic))
4854 dynsym = TRUE;
4855 }
4856 else
4857 {
4858 if (! definition)
4859 {
4860 h->ref_dynamic = 1;
4861 hi->ref_dynamic = 1;
4862 }
4863 else
4864 {
4865 h->def_dynamic = 1;
4866 hi->def_dynamic = 1;
4867 }
4868
4869 /* If the indirect symbol has been forced local, don't
4870 make the real symbol dynamic. */
4871 if ((h == hi || !hi->forced_local)
4872 && (h->def_regular
4873 || h->ref_regular
60d67dc8
AM
4874 || (h->is_weakalias
4875 && weakdef (h)->dynindx != -1)))
4f3fedcf
AM
4876 dynsym = TRUE;
4877 }
4878
4879 /* Check to see if we need to add an indirect symbol for
4880 the default name. */
4881 if (definition
4882 || (!override && h->root.type == bfd_link_hash_common))
4883 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4884 sec, value, &old_bfd, &dynsym))
4885 goto error_free_vers;
4ad4eba5
AM
4886
4887 /* Check the alignment when a common symbol is involved. This
4888 can change when a common symbol is overridden by a normal
4889 definition or a common symbol is ignored due to the old
4890 normal definition. We need to make sure the maximum
4891 alignment is maintained. */
a4d8e49b 4892 if ((old_alignment || common)
4ad4eba5
AM
4893 && h->root.type != bfd_link_hash_common)
4894 {
4895 unsigned int common_align;
4896 unsigned int normal_align;
4897 unsigned int symbol_align;
4898 bfd *normal_bfd;
4899 bfd *common_bfd;
4900
3a81e825
AM
4901 BFD_ASSERT (h->root.type == bfd_link_hash_defined
4902 || h->root.type == bfd_link_hash_defweak);
4903
4ad4eba5
AM
4904 symbol_align = ffs (h->root.u.def.value) - 1;
4905 if (h->root.u.def.section->owner != NULL
0616a280
AM
4906 && (h->root.u.def.section->owner->flags
4907 & (DYNAMIC | BFD_PLUGIN)) == 0)
4ad4eba5
AM
4908 {
4909 normal_align = h->root.u.def.section->alignment_power;
4910 if (normal_align > symbol_align)
4911 normal_align = symbol_align;
4912 }
4913 else
4914 normal_align = symbol_align;
4915
4916 if (old_alignment)
4917 {
4918 common_align = old_alignment;
4919 common_bfd = old_bfd;
4920 normal_bfd = abfd;
4921 }
4922 else
4923 {
4924 common_align = bfd_log2 (isym->st_value);
4925 common_bfd = abfd;
4926 normal_bfd = old_bfd;
4927 }
4928
4929 if (normal_align < common_align)
d07676f8
NC
4930 {
4931 /* PR binutils/2735 */
4932 if (normal_bfd == NULL)
4eca0228 4933 _bfd_error_handler
695344c0 4934 /* xgettext:c-format */
9793eb77 4935 (_("warning: alignment %u of common symbol `%s' in %pB is"
871b3ab2 4936 " greater than the alignment (%u) of its section %pA"),
c08bb8dd
AM
4937 1 << common_align, name, common_bfd,
4938 1 << normal_align, h->root.u.def.section);
d07676f8 4939 else
4eca0228 4940 _bfd_error_handler
695344c0 4941 /* xgettext:c-format */
9793eb77 4942 (_("warning: alignment %u of symbol `%s' in %pB"
871b3ab2 4943 " is smaller than %u in %pB"),
c08bb8dd
AM
4944 1 << normal_align, name, normal_bfd,
4945 1 << common_align, common_bfd);
d07676f8 4946 }
4ad4eba5
AM
4947 }
4948
83ad0046 4949 /* Remember the symbol size if it isn't undefined. */
3a81e825
AM
4950 if (isym->st_size != 0
4951 && isym->st_shndx != SHN_UNDEF
4ad4eba5
AM
4952 && (definition || h->size == 0))
4953 {
83ad0046
L
4954 if (h->size != 0
4955 && h->size != isym->st_size
4956 && ! size_change_ok)
4eca0228 4957 _bfd_error_handler
695344c0 4958 /* xgettext:c-format */
9793eb77 4959 (_("warning: size of symbol `%s' changed"
2dcf00ce
AM
4960 " from %" PRIu64 " in %pB to %" PRIu64 " in %pB"),
4961 name, (uint64_t) h->size, old_bfd,
4962 (uint64_t) isym->st_size, abfd);
4ad4eba5
AM
4963
4964 h->size = isym->st_size;
4965 }
4966
4967 /* If this is a common symbol, then we always want H->SIZE
4968 to be the size of the common symbol. The code just above
4969 won't fix the size if a common symbol becomes larger. We
4970 don't warn about a size change here, because that is
4f3fedcf 4971 covered by --warn-common. Allow changes between different
fcb93ecf 4972 function types. */
4ad4eba5
AM
4973 if (h->root.type == bfd_link_hash_common)
4974 h->size = h->root.u.c.size;
4975
4976 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
37a9e49a
L
4977 && ((definition && !new_weak)
4978 || (old_weak && h->root.type == bfd_link_hash_common)
4979 || h->type == STT_NOTYPE))
4ad4eba5 4980 {
2955ec4c
L
4981 unsigned int type = ELF_ST_TYPE (isym->st_info);
4982
4983 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4984 symbol. */
4985 if (type == STT_GNU_IFUNC
4986 && (abfd->flags & DYNAMIC) != 0)
4987 type = STT_FUNC;
4ad4eba5 4988
2955ec4c
L
4989 if (h->type != type)
4990 {
4991 if (h->type != STT_NOTYPE && ! type_change_ok)
695344c0 4992 /* xgettext:c-format */
4eca0228 4993 _bfd_error_handler
9793eb77 4994 (_("warning: type of symbol `%s' changed"
871b3ab2 4995 " from %d to %d in %pB"),
c08bb8dd 4996 name, h->type, type, abfd);
2955ec4c
L
4997
4998 h->type = type;
4999 }
4ad4eba5
AM
5000 }
5001
54ac0771 5002 /* Merge st_other field. */
b8417128 5003 elf_merge_st_other (abfd, h, isym, sec, definition, dynamic);
4ad4eba5 5004
c3df8c14 5005 /* We don't want to make debug symbol dynamic. */
0e1862bb
L
5006 if (definition
5007 && (sec->flags & SEC_DEBUGGING)
5008 && !bfd_link_relocatable (info))
c3df8c14
AM
5009 dynsym = FALSE;
5010
4f3fedcf
AM
5011 /* Nor should we make plugin symbols dynamic. */
5012 if ((abfd->flags & BFD_PLUGIN) != 0)
5013 dynsym = FALSE;
5014
35fc36a8 5015 if (definition)
35399224
L
5016 {
5017 h->target_internal = isym->st_target_internal;
5018 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
5019 }
35fc36a8 5020
4ad4eba5
AM
5021 if (definition && !dynamic)
5022 {
5023 char *p = strchr (name, ELF_VER_CHR);
5024 if (p != NULL && p[1] != ELF_VER_CHR)
5025 {
5026 /* Queue non-default versions so that .symver x, x@FOO
5027 aliases can be checked. */
66eb6687 5028 if (!nondeflt_vers)
4ad4eba5 5029 {
66eb6687
AM
5030 amt = ((isymend - isym + 1)
5031 * sizeof (struct elf_link_hash_entry *));
ca4be51c
AM
5032 nondeflt_vers
5033 = (struct elf_link_hash_entry **) bfd_malloc (amt);
14b1c01e
AM
5034 if (!nondeflt_vers)
5035 goto error_free_vers;
4ad4eba5 5036 }
66eb6687 5037 nondeflt_vers[nondeflt_vers_cnt++] = h;
4ad4eba5
AM
5038 }
5039 }
5040
5041 if (dynsym && h->dynindx == -1)
5042 {
c152c796 5043 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4ad4eba5 5044 goto error_free_vers;
60d67dc8
AM
5045 if (h->is_weakalias
5046 && weakdef (h)->dynindx == -1)
4ad4eba5 5047 {
60d67dc8 5048 if (!bfd_elf_link_record_dynamic_symbol (info, weakdef (h)))
4ad4eba5
AM
5049 goto error_free_vers;
5050 }
5051 }
1f599d0e 5052 else if (h->dynindx != -1)
4ad4eba5
AM
5053 /* If the symbol already has a dynamic index, but
5054 visibility says it should not be visible, turn it into
5055 a local symbol. */
5056 switch (ELF_ST_VISIBILITY (h->other))
5057 {
5058 case STV_INTERNAL:
5059 case STV_HIDDEN:
5060 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
5061 dynsym = FALSE;
5062 break;
5063 }
5064
aef28989
L
5065 /* Don't add DT_NEEDED for references from the dummy bfd nor
5066 for unmatched symbol. */
4ad4eba5 5067 if (!add_needed
aef28989 5068 && matched
4ad4eba5 5069 && definition
010e5ae2 5070 && ((dynsym
ffa9430d 5071 && h->ref_regular_nonweak
4f3fedcf
AM
5072 && (old_bfd == NULL
5073 || (old_bfd->flags & BFD_PLUGIN) == 0))
ffa9430d 5074 || (h->ref_dynamic_nonweak
010e5ae2 5075 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
7b15fa7a
AM
5076 && !on_needed_list (elf_dt_name (abfd),
5077 htab->needed, NULL))))
4ad4eba5
AM
5078 {
5079 int ret;
5080 const char *soname = elf_dt_name (abfd);
5081
16e4ecc0
AM
5082 info->callbacks->minfo ("%!", soname, old_bfd,
5083 h->root.root.string);
5084
4ad4eba5
AM
5085 /* A symbol from a library loaded via DT_NEEDED of some
5086 other library is referenced by a regular object.
e56f61be 5087 Add a DT_NEEDED entry for it. Issue an error if
b918acf9
NC
5088 --no-add-needed is used and the reference was not
5089 a weak one. */
4f3fedcf 5090 if (old_bfd != NULL
b918acf9 5091 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
e56f61be 5092 {
4eca0228 5093 _bfd_error_handler
695344c0 5094 /* xgettext:c-format */
871b3ab2 5095 (_("%pB: undefined reference to symbol '%s'"),
4f3fedcf 5096 old_bfd, name);
ff5ac77b 5097 bfd_set_error (bfd_error_missing_dso);
e56f61be
L
5098 goto error_free_vers;
5099 }
5100
a50b1753 5101 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
ca4be51c 5102 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
a5db907e 5103
4ad4eba5 5104 add_needed = TRUE;
7e9f0867 5105 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
5106 if (ret < 0)
5107 goto error_free_vers;
5108
5109 BFD_ASSERT (ret == 0);
5110 }
5111 }
5112 }
5113
a83ef4d1
L
5114 if (info->lto_plugin_active
5115 && !bfd_link_relocatable (info)
5116 && (abfd->flags & BFD_PLUGIN) == 0
5117 && !just_syms
5118 && extsymcount)
5119 {
5120 int r_sym_shift;
5121
5122 if (bed->s->arch_size == 32)
5123 r_sym_shift = 8;
5124 else
5125 r_sym_shift = 32;
5126
5127 /* If linker plugin is enabled, set non_ir_ref_regular on symbols
5128 referenced in regular objects so that linker plugin will get
5129 the correct symbol resolution. */
5130
5131 sym_hash = elf_sym_hashes (abfd);
5132 for (s = abfd->sections; s != NULL; s = s->next)
5133 {
5134 Elf_Internal_Rela *internal_relocs;
5135 Elf_Internal_Rela *rel, *relend;
5136
5137 /* Don't check relocations in excluded sections. */
5138 if ((s->flags & SEC_RELOC) == 0
5139 || s->reloc_count == 0
5140 || (s->flags & SEC_EXCLUDE) != 0
5141 || ((info->strip == strip_all
5142 || info->strip == strip_debugger)
5143 && (s->flags & SEC_DEBUGGING) != 0))
5144 continue;
5145
5146 internal_relocs = _bfd_elf_link_read_relocs (abfd, s, NULL,
5147 NULL,
5148 info->keep_memory);
5149 if (internal_relocs == NULL)
5150 goto error_free_vers;
5151
5152 rel = internal_relocs;
5153 relend = rel + s->reloc_count;
5154 for ( ; rel < relend; rel++)
5155 {
5156 unsigned long r_symndx = rel->r_info >> r_sym_shift;
5157 struct elf_link_hash_entry *h;
5158
5159 /* Skip local symbols. */
5160 if (r_symndx < extsymoff)
5161 continue;
5162
5163 h = sym_hash[r_symndx - extsymoff];
5164 if (h != NULL)
5165 h->root.non_ir_ref_regular = 1;
5166 }
5167
5168 if (elf_section_data (s)->relocs != internal_relocs)
5169 free (internal_relocs);
5170 }
5171 }
5172
66eb6687
AM
5173 if (extversym != NULL)
5174 {
5175 free (extversym);
5176 extversym = NULL;
5177 }
5178
5179 if (isymbuf != NULL)
5180 {
5181 free (isymbuf);
5182 isymbuf = NULL;
5183 }
5184
5185 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
5186 {
5187 unsigned int i;
5188
5189 /* Restore the symbol table. */
f45794cb
AM
5190 old_ent = (char *) old_tab + tabsize;
5191 memset (elf_sym_hashes (abfd), 0,
5192 extsymcount * sizeof (struct elf_link_hash_entry *));
4f87808c
AM
5193 htab->root.table.table = old_table;
5194 htab->root.table.size = old_size;
5195 htab->root.table.count = old_count;
66eb6687 5196 memcpy (htab->root.table.table, old_tab, tabsize);
66eb6687
AM
5197 htab->root.undefs = old_undefs;
5198 htab->root.undefs_tail = old_undefs_tail;
5b677558
AM
5199 _bfd_elf_strtab_restore (htab->dynstr, old_strtab);
5200 free (old_strtab);
5201 old_strtab = NULL;
66eb6687
AM
5202 for (i = 0; i < htab->root.table.size; i++)
5203 {
5204 struct bfd_hash_entry *p;
5205 struct elf_link_hash_entry *h;
3e0882af
L
5206 bfd_size_type size;
5207 unsigned int alignment_power;
4070765b 5208 unsigned int non_ir_ref_dynamic;
66eb6687
AM
5209
5210 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
5211 {
5212 h = (struct elf_link_hash_entry *) p;
2de92251
AM
5213 if (h->root.type == bfd_link_hash_warning)
5214 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2de92251 5215
3e0882af
L
5216 /* Preserve the maximum alignment and size for common
5217 symbols even if this dynamic lib isn't on DT_NEEDED
a4542f1b 5218 since it can still be loaded at run time by another
3e0882af
L
5219 dynamic lib. */
5220 if (h->root.type == bfd_link_hash_common)
5221 {
5222 size = h->root.u.c.size;
5223 alignment_power = h->root.u.c.p->alignment_power;
5224 }
5225 else
5226 {
5227 size = 0;
5228 alignment_power = 0;
5229 }
4070765b 5230 /* Preserve non_ir_ref_dynamic so that this symbol
59fa66c5
L
5231 will be exported when the dynamic lib becomes needed
5232 in the second pass. */
4070765b 5233 non_ir_ref_dynamic = h->root.non_ir_ref_dynamic;
66eb6687
AM
5234 memcpy (p, old_ent, htab->root.table.entsize);
5235 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
5236 h = (struct elf_link_hash_entry *) p;
5237 if (h->root.type == bfd_link_hash_warning)
5238 {
5239 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
5240 old_ent = (char *) old_ent + htab->root.table.entsize;
a4542f1b 5241 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2de92251 5242 }
a4542f1b 5243 if (h->root.type == bfd_link_hash_common)
3e0882af
L
5244 {
5245 if (size > h->root.u.c.size)
5246 h->root.u.c.size = size;
5247 if (alignment_power > h->root.u.c.p->alignment_power)
5248 h->root.u.c.p->alignment_power = alignment_power;
5249 }
4070765b 5250 h->root.non_ir_ref_dynamic = non_ir_ref_dynamic;
66eb6687
AM
5251 }
5252 }
5253
5061a885
AM
5254 /* Make a special call to the linker "notice" function to
5255 tell it that symbols added for crefs may need to be removed. */
e5034e59 5256 if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
9af2a943 5257 goto error_free_vers;
5061a885 5258
66eb6687
AM
5259 free (old_tab);
5260 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
5261 alloc_mark);
5262 if (nondeflt_vers != NULL)
5263 free (nondeflt_vers);
5264 return TRUE;
5265 }
2de92251 5266
66eb6687
AM
5267 if (old_tab != NULL)
5268 {
e5034e59 5269 if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
9af2a943 5270 goto error_free_vers;
66eb6687
AM
5271 free (old_tab);
5272 old_tab = NULL;
5273 }
5274
c6e8a9a8
L
5275 /* Now that all the symbols from this input file are created, if
5276 not performing a relocatable link, handle .symver foo, foo@BAR
5277 such that any relocs against foo become foo@BAR. */
0e1862bb 5278 if (!bfd_link_relocatable (info) && nondeflt_vers != NULL)
4ad4eba5 5279 {
ef53be89 5280 size_t cnt, symidx;
4ad4eba5
AM
5281
5282 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
5283 {
5284 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
5285 char *shortname, *p;
5286
5287 p = strchr (h->root.root.string, ELF_VER_CHR);
5288 if (p == NULL
5289 || (h->root.type != bfd_link_hash_defined
5290 && h->root.type != bfd_link_hash_defweak))
5291 continue;
5292
5293 amt = p - h->root.root.string;
a50b1753 5294 shortname = (char *) bfd_malloc (amt + 1);
14b1c01e
AM
5295 if (!shortname)
5296 goto error_free_vers;
4ad4eba5
AM
5297 memcpy (shortname, h->root.root.string, amt);
5298 shortname[amt] = '\0';
5299
5300 hi = (struct elf_link_hash_entry *)
66eb6687 5301 bfd_link_hash_lookup (&htab->root, shortname,
4ad4eba5
AM
5302 FALSE, FALSE, FALSE);
5303 if (hi != NULL
5304 && hi->root.type == h->root.type
5305 && hi->root.u.def.value == h->root.u.def.value
5306 && hi->root.u.def.section == h->root.u.def.section)
5307 {
5308 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
5309 hi->root.type = bfd_link_hash_indirect;
5310 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
fcfa13d2 5311 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4ad4eba5
AM
5312 sym_hash = elf_sym_hashes (abfd);
5313 if (sym_hash)
5314 for (symidx = 0; symidx < extsymcount; ++symidx)
5315 if (sym_hash[symidx] == hi)
5316 {
5317 sym_hash[symidx] = h;
5318 break;
5319 }
5320 }
5321 free (shortname);
5322 }
5323 free (nondeflt_vers);
5324 nondeflt_vers = NULL;
5325 }
5326
60d67dc8 5327 /* Now set the alias field correctly for all the weak defined
4ad4eba5
AM
5328 symbols we found. The only way to do this is to search all the
5329 symbols. Since we only need the information for non functions in
5330 dynamic objects, that's the only time we actually put anything on
5331 the list WEAKS. We need this information so that if a regular
5332 object refers to a symbol defined weakly in a dynamic object, the
5333 real symbol in the dynamic object is also put in the dynamic
5334 symbols; we also must arrange for both symbols to point to the
5335 same memory location. We could handle the general case of symbol
5336 aliasing, but a general symbol alias can only be generated in
5337 assembler code, handling it correctly would be very time
5338 consuming, and other ELF linkers don't handle general aliasing
5339 either. */
5340 if (weaks != NULL)
5341 {
5342 struct elf_link_hash_entry **hpp;
5343 struct elf_link_hash_entry **hppend;
5344 struct elf_link_hash_entry **sorted_sym_hash;
5345 struct elf_link_hash_entry *h;
5346 size_t sym_count;
5347
5348 /* Since we have to search the whole symbol list for each weak
5349 defined symbol, search time for N weak defined symbols will be
5350 O(N^2). Binary search will cut it down to O(NlogN). */
ef53be89
AM
5351 amt = extsymcount;
5352 amt *= sizeof (struct elf_link_hash_entry *);
a50b1753 5353 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4ad4eba5
AM
5354 if (sorted_sym_hash == NULL)
5355 goto error_return;
5356 sym_hash = sorted_sym_hash;
5357 hpp = elf_sym_hashes (abfd);
5358 hppend = hpp + extsymcount;
5359 sym_count = 0;
5360 for (; hpp < hppend; hpp++)
5361 {
5362 h = *hpp;
5363 if (h != NULL
5364 && h->root.type == bfd_link_hash_defined
fcb93ecf 5365 && !bed->is_function_type (h->type))
4ad4eba5
AM
5366 {
5367 *sym_hash = h;
5368 sym_hash++;
5369 sym_count++;
5370 }
5371 }
5372
5373 qsort (sorted_sym_hash, sym_count,
5374 sizeof (struct elf_link_hash_entry *),
5375 elf_sort_symbol);
5376
5377 while (weaks != NULL)
5378 {
5379 struct elf_link_hash_entry *hlook;
5380 asection *slook;
5381 bfd_vma vlook;
ed54588d 5382 size_t i, j, idx = 0;
4ad4eba5
AM
5383
5384 hlook = weaks;
60d67dc8
AM
5385 weaks = hlook->u.alias;
5386 hlook->u.alias = NULL;
4ad4eba5 5387
e3e53eed
AM
5388 if (hlook->root.type != bfd_link_hash_defined
5389 && hlook->root.type != bfd_link_hash_defweak)
5390 continue;
5391
4ad4eba5
AM
5392 slook = hlook->root.u.def.section;
5393 vlook = hlook->root.u.def.value;
5394
4ad4eba5
AM
5395 i = 0;
5396 j = sym_count;
14160578 5397 while (i != j)
4ad4eba5
AM
5398 {
5399 bfd_signed_vma vdiff;
5400 idx = (i + j) / 2;
14160578 5401 h = sorted_sym_hash[idx];
4ad4eba5
AM
5402 vdiff = vlook - h->root.u.def.value;
5403 if (vdiff < 0)
5404 j = idx;
5405 else if (vdiff > 0)
5406 i = idx + 1;
5407 else
5408 {
d3435ae8 5409 int sdiff = slook->id - h->root.u.def.section->id;
4ad4eba5
AM
5410 if (sdiff < 0)
5411 j = idx;
5412 else if (sdiff > 0)
5413 i = idx + 1;
5414 else
14160578 5415 break;
4ad4eba5
AM
5416 }
5417 }
5418
5419 /* We didn't find a value/section match. */
14160578 5420 if (i == j)
4ad4eba5
AM
5421 continue;
5422
14160578
AM
5423 /* With multiple aliases, or when the weak symbol is already
5424 strongly defined, we have multiple matching symbols and
5425 the binary search above may land on any of them. Step
5426 one past the matching symbol(s). */
5427 while (++idx != j)
5428 {
5429 h = sorted_sym_hash[idx];
5430 if (h->root.u.def.section != slook
5431 || h->root.u.def.value != vlook)
5432 break;
5433 }
5434
5435 /* Now look back over the aliases. Since we sorted by size
5436 as well as value and section, we'll choose the one with
5437 the largest size. */
5438 while (idx-- != i)
4ad4eba5 5439 {
14160578 5440 h = sorted_sym_hash[idx];
4ad4eba5
AM
5441
5442 /* Stop if value or section doesn't match. */
14160578
AM
5443 if (h->root.u.def.section != slook
5444 || h->root.u.def.value != vlook)
4ad4eba5
AM
5445 break;
5446 else if (h != hlook)
5447 {
60d67dc8
AM
5448 struct elf_link_hash_entry *t;
5449
5450 hlook->u.alias = h;
5451 hlook->is_weakalias = 1;
5452 t = h;
5453 if (t->u.alias != NULL)
5454 while (t->u.alias != h)
5455 t = t->u.alias;
5456 t->u.alias = hlook;
4ad4eba5
AM
5457
5458 /* If the weak definition is in the list of dynamic
5459 symbols, make sure the real definition is put
5460 there as well. */
5461 if (hlook->dynindx != -1 && h->dynindx == -1)
5462 {
c152c796 5463 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4dd07732
AM
5464 {
5465 err_free_sym_hash:
5466 free (sorted_sym_hash);
5467 goto error_return;
5468 }
4ad4eba5
AM
5469 }
5470
5471 /* If the real definition is in the list of dynamic
5472 symbols, make sure the weak definition is put
5473 there as well. If we don't do this, then the
5474 dynamic loader might not merge the entries for the
5475 real definition and the weak definition. */
5476 if (h->dynindx != -1 && hlook->dynindx == -1)
5477 {
c152c796 5478 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4dd07732 5479 goto err_free_sym_hash;
4ad4eba5
AM
5480 }
5481 break;
5482 }
5483 }
5484 }
5485
5486 free (sorted_sym_hash);
5487 }
5488
33177bb1
AM
5489 if (bed->check_directives
5490 && !(*bed->check_directives) (abfd, info))
5491 return FALSE;
85fbca6a 5492
4ad4eba5
AM
5493 /* If this is a non-traditional link, try to optimize the handling
5494 of the .stab/.stabstr sections. */
5495 if (! dynamic
5496 && ! info->traditional_format
66eb6687 5497 && is_elf_hash_table (htab)
4ad4eba5
AM
5498 && (info->strip != strip_all && info->strip != strip_debugger))
5499 {
5500 asection *stabstr;
5501
5502 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
5503 if (stabstr != NULL)
5504 {
5505 bfd_size_type string_offset = 0;
5506 asection *stab;
5507
5508 for (stab = abfd->sections; stab; stab = stab->next)
0112cd26 5509 if (CONST_STRNEQ (stab->name, ".stab")
4ad4eba5
AM
5510 && (!stab->name[5] ||
5511 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
5512 && (stab->flags & SEC_MERGE) == 0
5513 && !bfd_is_abs_section (stab->output_section))
5514 {
5515 struct bfd_elf_section_data *secdata;
5516
5517 secdata = elf_section_data (stab);
66eb6687
AM
5518 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
5519 stabstr, &secdata->sec_info,
4ad4eba5
AM
5520 &string_offset))
5521 goto error_return;
5522 if (secdata->sec_info)
dbaa2011 5523 stab->sec_info_type = SEC_INFO_TYPE_STABS;
4ad4eba5
AM
5524 }
5525 }
5526 }
5527
66eb6687 5528 if (is_elf_hash_table (htab) && add_needed)
4ad4eba5
AM
5529 {
5530 /* Add this bfd to the loaded list. */
5531 struct elf_link_loaded_list *n;
5532
ca4be51c 5533 n = (struct elf_link_loaded_list *) bfd_alloc (abfd, sizeof (*n));
4ad4eba5
AM
5534 if (n == NULL)
5535 goto error_return;
5536 n->abfd = abfd;
66eb6687
AM
5537 n->next = htab->loaded;
5538 htab->loaded = n;
4ad4eba5
AM
5539 }
5540
5541 return TRUE;
5542
5543 error_free_vers:
66eb6687
AM
5544 if (old_tab != NULL)
5545 free (old_tab);
5b677558
AM
5546 if (old_strtab != NULL)
5547 free (old_strtab);
4ad4eba5
AM
5548 if (nondeflt_vers != NULL)
5549 free (nondeflt_vers);
5550 if (extversym != NULL)
5551 free (extversym);
5552 error_free_sym:
5553 if (isymbuf != NULL)
5554 free (isymbuf);
5555 error_return:
5556 return FALSE;
5557}
5558
8387904d
AM
5559/* Return the linker hash table entry of a symbol that might be
5560 satisfied by an archive symbol. Return -1 on error. */
5561
5562struct elf_link_hash_entry *
5563_bfd_elf_archive_symbol_lookup (bfd *abfd,
5564 struct bfd_link_info *info,
5565 const char *name)
5566{
5567 struct elf_link_hash_entry *h;
5568 char *p, *copy;
5569 size_t len, first;
5570
2a41f396 5571 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
8387904d
AM
5572 if (h != NULL)
5573 return h;
5574
5575 /* If this is a default version (the name contains @@), look up the
5576 symbol again with only one `@' as well as without the version.
5577 The effect is that references to the symbol with and without the
5578 version will be matched by the default symbol in the archive. */
5579
5580 p = strchr (name, ELF_VER_CHR);
5581 if (p == NULL || p[1] != ELF_VER_CHR)
5582 return h;
5583
5584 /* First check with only one `@'. */
5585 len = strlen (name);
a50b1753 5586 copy = (char *) bfd_alloc (abfd, len);
8387904d 5587 if (copy == NULL)
e99955cd 5588 return (struct elf_link_hash_entry *) -1;
8387904d
AM
5589
5590 first = p - name + 1;
5591 memcpy (copy, name, first);
5592 memcpy (copy + first, name + first + 1, len - first);
5593
2a41f396 5594 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
8387904d
AM
5595 if (h == NULL)
5596 {
5597 /* We also need to check references to the symbol without the
5598 version. */
5599 copy[first - 1] = '\0';
5600 h = elf_link_hash_lookup (elf_hash_table (info), copy,
2a41f396 5601 FALSE, FALSE, TRUE);
8387904d
AM
5602 }
5603
5604 bfd_release (abfd, copy);
5605 return h;
5606}
5607
0ad989f9 5608/* Add symbols from an ELF archive file to the linker hash table. We
13e570f8
AM
5609 don't use _bfd_generic_link_add_archive_symbols because we need to
5610 handle versioned symbols.
0ad989f9
L
5611
5612 Fortunately, ELF archive handling is simpler than that done by
5613 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
5614 oddities. In ELF, if we find a symbol in the archive map, and the
5615 symbol is currently undefined, we know that we must pull in that
5616 object file.
5617
5618 Unfortunately, we do have to make multiple passes over the symbol
5619 table until nothing further is resolved. */
5620
4ad4eba5
AM
5621static bfd_boolean
5622elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
0ad989f9
L
5623{
5624 symindex c;
13e570f8 5625 unsigned char *included = NULL;
0ad989f9
L
5626 carsym *symdefs;
5627 bfd_boolean loop;
5628 bfd_size_type amt;
8387904d
AM
5629 const struct elf_backend_data *bed;
5630 struct elf_link_hash_entry * (*archive_symbol_lookup)
5631 (bfd *, struct bfd_link_info *, const char *);
0ad989f9
L
5632
5633 if (! bfd_has_map (abfd))
5634 {
5635 /* An empty archive is a special case. */
5636 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
5637 return TRUE;
5638 bfd_set_error (bfd_error_no_armap);
5639 return FALSE;
5640 }
5641
5642 /* Keep track of all symbols we know to be already defined, and all
5643 files we know to be already included. This is to speed up the
5644 second and subsequent passes. */
5645 c = bfd_ardata (abfd)->symdef_count;
5646 if (c == 0)
5647 return TRUE;
5648 amt = c;
13e570f8
AM
5649 amt *= sizeof (*included);
5650 included = (unsigned char *) bfd_zmalloc (amt);
5651 if (included == NULL)
5652 return FALSE;
0ad989f9
L
5653
5654 symdefs = bfd_ardata (abfd)->symdefs;
8387904d
AM
5655 bed = get_elf_backend_data (abfd);
5656 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
0ad989f9
L
5657
5658 do
5659 {
5660 file_ptr last;
5661 symindex i;
5662 carsym *symdef;
5663 carsym *symdefend;
5664
5665 loop = FALSE;
5666 last = -1;
5667
5668 symdef = symdefs;
5669 symdefend = symdef + c;
5670 for (i = 0; symdef < symdefend; symdef++, i++)
5671 {
5672 struct elf_link_hash_entry *h;
5673 bfd *element;
5674 struct bfd_link_hash_entry *undefs_tail;
5675 symindex mark;
5676
13e570f8 5677 if (included[i])
0ad989f9
L
5678 continue;
5679 if (symdef->file_offset == last)
5680 {
5681 included[i] = TRUE;
5682 continue;
5683 }
5684
8387904d 5685 h = archive_symbol_lookup (abfd, info, symdef->name);
e99955cd 5686 if (h == (struct elf_link_hash_entry *) -1)
8387904d 5687 goto error_return;
0ad989f9
L
5688
5689 if (h == NULL)
5690 continue;
5691
5692 if (h->root.type == bfd_link_hash_common)
5693 {
5694 /* We currently have a common symbol. The archive map contains
5695 a reference to this symbol, so we may want to include it. We
5696 only want to include it however, if this archive element
5697 contains a definition of the symbol, not just another common
5698 declaration of it.
5699
5700 Unfortunately some archivers (including GNU ar) will put
5701 declarations of common symbols into their archive maps, as
5702 well as real definitions, so we cannot just go by the archive
5703 map alone. Instead we must read in the element's symbol
5704 table and check that to see what kind of symbol definition
5705 this is. */
5706 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5707 continue;
5708 }
5709 else if (h->root.type != bfd_link_hash_undefined)
5710 {
5711 if (h->root.type != bfd_link_hash_undefweak)
13e570f8
AM
5712 /* Symbol must be defined. Don't check it again. */
5713 included[i] = TRUE;
0ad989f9
L
5714 continue;
5715 }
5716
5717 /* We need to include this archive member. */
5718 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5719 if (element == NULL)
5720 goto error_return;
5721
5722 if (! bfd_check_format (element, bfd_object))
5723 goto error_return;
5724
0ad989f9
L
5725 undefs_tail = info->hash->undefs_tail;
5726
0e144ba7
AM
5727 if (!(*info->callbacks
5728 ->add_archive_element) (info, element, symdef->name, &element))
b95a0a31 5729 continue;
0e144ba7 5730 if (!bfd_link_add_symbols (element, info))
0ad989f9
L
5731 goto error_return;
5732
5733 /* If there are any new undefined symbols, we need to make
5734 another pass through the archive in order to see whether
5735 they can be defined. FIXME: This isn't perfect, because
5736 common symbols wind up on undefs_tail and because an
5737 undefined symbol which is defined later on in this pass
5738 does not require another pass. This isn't a bug, but it
5739 does make the code less efficient than it could be. */
5740 if (undefs_tail != info->hash->undefs_tail)
5741 loop = TRUE;
5742
5743 /* Look backward to mark all symbols from this object file
5744 which we have already seen in this pass. */
5745 mark = i;
5746 do
5747 {
5748 included[mark] = TRUE;
5749 if (mark == 0)
5750 break;
5751 --mark;
5752 }
5753 while (symdefs[mark].file_offset == symdef->file_offset);
5754
5755 /* We mark subsequent symbols from this object file as we go
5756 on through the loop. */
5757 last = symdef->file_offset;
5758 }
5759 }
5760 while (loop);
5761
0ad989f9
L
5762 free (included);
5763
5764 return TRUE;
5765
5766 error_return:
0ad989f9
L
5767 if (included != NULL)
5768 free (included);
5769 return FALSE;
5770}
4ad4eba5
AM
5771
5772/* Given an ELF BFD, add symbols to the global hash table as
5773 appropriate. */
5774
5775bfd_boolean
5776bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5777{
5778 switch (bfd_get_format (abfd))
5779 {
5780 case bfd_object:
5781 return elf_link_add_object_symbols (abfd, info);
5782 case bfd_archive:
5783 return elf_link_add_archive_symbols (abfd, info);
5784 default:
5785 bfd_set_error (bfd_error_wrong_format);
5786 return FALSE;
5787 }
5788}
5a580b3a 5789\f
14b1c01e
AM
5790struct hash_codes_info
5791{
5792 unsigned long *hashcodes;
5793 bfd_boolean error;
5794};
a0c8462f 5795
5a580b3a
AM
5796/* This function will be called though elf_link_hash_traverse to store
5797 all hash value of the exported symbols in an array. */
5798
5799static bfd_boolean
5800elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5801{
a50b1753 5802 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5a580b3a 5803 const char *name;
5a580b3a
AM
5804 unsigned long ha;
5805 char *alc = NULL;
5806
5a580b3a
AM
5807 /* Ignore indirect symbols. These are added by the versioning code. */
5808 if (h->dynindx == -1)
5809 return TRUE;
5810
5811 name = h->root.root.string;
422f1182 5812 if (h->versioned >= versioned)
5a580b3a 5813 {
422f1182
L
5814 char *p = strchr (name, ELF_VER_CHR);
5815 if (p != NULL)
14b1c01e 5816 {
422f1182
L
5817 alc = (char *) bfd_malloc (p - name + 1);
5818 if (alc == NULL)
5819 {
5820 inf->error = TRUE;
5821 return FALSE;
5822 }
5823 memcpy (alc, name, p - name);
5824 alc[p - name] = '\0';
5825 name = alc;
14b1c01e 5826 }
5a580b3a
AM
5827 }
5828
5829 /* Compute the hash value. */
5830 ha = bfd_elf_hash (name);
5831
5832 /* Store the found hash value in the array given as the argument. */
14b1c01e 5833 *(inf->hashcodes)++ = ha;
5a580b3a
AM
5834
5835 /* And store it in the struct so that we can put it in the hash table
5836 later. */
f6e332e6 5837 h->u.elf_hash_value = ha;
5a580b3a
AM
5838
5839 if (alc != NULL)
5840 free (alc);
5841
5842 return TRUE;
5843}
5844
fdc90cb4
JJ
5845struct collect_gnu_hash_codes
5846{
5847 bfd *output_bfd;
5848 const struct elf_backend_data *bed;
5849 unsigned long int nsyms;
5850 unsigned long int maskbits;
5851 unsigned long int *hashcodes;
5852 unsigned long int *hashval;
5853 unsigned long int *indx;
5854 unsigned long int *counts;
5855 bfd_vma *bitmask;
5856 bfd_byte *contents;
f16a9783 5857 bfd_size_type xlat;
fdc90cb4
JJ
5858 long int min_dynindx;
5859 unsigned long int bucketcount;
5860 unsigned long int symindx;
5861 long int local_indx;
5862 long int shift1, shift2;
5863 unsigned long int mask;
14b1c01e 5864 bfd_boolean error;
fdc90cb4
JJ
5865};
5866
5867/* This function will be called though elf_link_hash_traverse to store
5868 all hash value of the exported symbols in an array. */
5869
5870static bfd_boolean
5871elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5872{
a50b1753 5873 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4 5874 const char *name;
fdc90cb4
JJ
5875 unsigned long ha;
5876 char *alc = NULL;
5877
fdc90cb4
JJ
5878 /* Ignore indirect symbols. These are added by the versioning code. */
5879 if (h->dynindx == -1)
5880 return TRUE;
5881
5882 /* Ignore also local symbols and undefined symbols. */
5883 if (! (*s->bed->elf_hash_symbol) (h))
5884 return TRUE;
5885
5886 name = h->root.root.string;
422f1182 5887 if (h->versioned >= versioned)
fdc90cb4 5888 {
422f1182
L
5889 char *p = strchr (name, ELF_VER_CHR);
5890 if (p != NULL)
14b1c01e 5891 {
422f1182
L
5892 alc = (char *) bfd_malloc (p - name + 1);
5893 if (alc == NULL)
5894 {
5895 s->error = TRUE;
5896 return FALSE;
5897 }
5898 memcpy (alc, name, p - name);
5899 alc[p - name] = '\0';
5900 name = alc;
14b1c01e 5901 }
fdc90cb4
JJ
5902 }
5903
5904 /* Compute the hash value. */
5905 ha = bfd_elf_gnu_hash (name);
5906
5907 /* Store the found hash value in the array for compute_bucket_count,
5908 and also for .dynsym reordering purposes. */
5909 s->hashcodes[s->nsyms] = ha;
5910 s->hashval[h->dynindx] = ha;
5911 ++s->nsyms;
5912 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5913 s->min_dynindx = h->dynindx;
5914
5915 if (alc != NULL)
5916 free (alc);
5917
5918 return TRUE;
5919}
5920
5921/* This function will be called though elf_link_hash_traverse to do
f16a9783
MS
5922 final dynamic symbol renumbering in case of .gnu.hash.
5923 If using .MIPS.xhash, invoke record_xhash_symbol to add symbol index
5924 to the translation table. */
fdc90cb4
JJ
5925
5926static bfd_boolean
f16a9783 5927elf_gnu_hash_process_symidx (struct elf_link_hash_entry *h, void *data)
fdc90cb4 5928{
a50b1753 5929 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4
JJ
5930 unsigned long int bucket;
5931 unsigned long int val;
5932
fdc90cb4
JJ
5933 /* Ignore indirect symbols. */
5934 if (h->dynindx == -1)
5935 return TRUE;
5936
5937 /* Ignore also local symbols and undefined symbols. */
5938 if (! (*s->bed->elf_hash_symbol) (h))
5939 {
5940 if (h->dynindx >= s->min_dynindx)
f16a9783
MS
5941 {
5942 if (s->bed->record_xhash_symbol != NULL)
5943 {
5944 (*s->bed->record_xhash_symbol) (h, 0);
5945 s->local_indx++;
5946 }
5947 else
5948 h->dynindx = s->local_indx++;
5949 }
fdc90cb4
JJ
5950 return TRUE;
5951 }
5952
5953 bucket = s->hashval[h->dynindx] % s->bucketcount;
5954 val = (s->hashval[h->dynindx] >> s->shift1)
5955 & ((s->maskbits >> s->shift1) - 1);
5956 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5957 s->bitmask[val]
5958 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5959 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5960 if (s->counts[bucket] == 1)
5961 /* Last element terminates the chain. */
5962 val |= 1;
5963 bfd_put_32 (s->output_bfd, val,
5964 s->contents + (s->indx[bucket] - s->symindx) * 4);
5965 --s->counts[bucket];
f16a9783
MS
5966 if (s->bed->record_xhash_symbol != NULL)
5967 {
5968 bfd_vma xlat_loc = s->xlat + (s->indx[bucket]++ - s->symindx) * 4;
5969
5970 (*s->bed->record_xhash_symbol) (h, xlat_loc);
5971 }
5972 else
5973 h->dynindx = s->indx[bucket]++;
fdc90cb4
JJ
5974 return TRUE;
5975}
5976
5977/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5978
5979bfd_boolean
5980_bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5981{
5982 return !(h->forced_local
5983 || h->root.type == bfd_link_hash_undefined
5984 || h->root.type == bfd_link_hash_undefweak
5985 || ((h->root.type == bfd_link_hash_defined
5986 || h->root.type == bfd_link_hash_defweak)
5987 && h->root.u.def.section->output_section == NULL));
5988}
5989
5a580b3a
AM
5990/* Array used to determine the number of hash table buckets to use
5991 based on the number of symbols there are. If there are fewer than
5992 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5993 fewer than 37 we use 17 buckets, and so forth. We never use more
5994 than 32771 buckets. */
5995
5996static const size_t elf_buckets[] =
5997{
5998 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5999 16411, 32771, 0
6000};
6001
6002/* Compute bucket count for hashing table. We do not use a static set
6003 of possible tables sizes anymore. Instead we determine for all
6004 possible reasonable sizes of the table the outcome (i.e., the
6005 number of collisions etc) and choose the best solution. The
6006 weighting functions are not too simple to allow the table to grow
6007 without bounds. Instead one of the weighting factors is the size.
6008 Therefore the result is always a good payoff between few collisions
6009 (= short chain lengths) and table size. */
6010static size_t
b20dd2ce 6011compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
d40f3da9
AM
6012 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
6013 unsigned long int nsyms,
6014 int gnu_hash)
5a580b3a 6015{
5a580b3a 6016 size_t best_size = 0;
5a580b3a 6017 unsigned long int i;
5a580b3a 6018
5a580b3a
AM
6019 /* We have a problem here. The following code to optimize the table
6020 size requires an integer type with more the 32 bits. If
6021 BFD_HOST_U_64_BIT is set we know about such a type. */
6022#ifdef BFD_HOST_U_64_BIT
6023 if (info->optimize)
6024 {
5a580b3a
AM
6025 size_t minsize;
6026 size_t maxsize;
6027 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5a580b3a 6028 bfd *dynobj = elf_hash_table (info)->dynobj;
d40f3da9 6029 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5a580b3a 6030 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
fdc90cb4 6031 unsigned long int *counts;
d40f3da9 6032 bfd_size_type amt;
0883b6e0 6033 unsigned int no_improvement_count = 0;
5a580b3a
AM
6034
6035 /* Possible optimization parameters: if we have NSYMS symbols we say
6036 that the hashing table must at least have NSYMS/4 and at most
6037 2*NSYMS buckets. */
6038 minsize = nsyms / 4;
6039 if (minsize == 0)
6040 minsize = 1;
6041 best_size = maxsize = nsyms * 2;
fdc90cb4
JJ
6042 if (gnu_hash)
6043 {
6044 if (minsize < 2)
6045 minsize = 2;
6046 if ((best_size & 31) == 0)
6047 ++best_size;
6048 }
5a580b3a
AM
6049
6050 /* Create array where we count the collisions in. We must use bfd_malloc
6051 since the size could be large. */
6052 amt = maxsize;
6053 amt *= sizeof (unsigned long int);
a50b1753 6054 counts = (unsigned long int *) bfd_malloc (amt);
5a580b3a 6055 if (counts == NULL)
fdc90cb4 6056 return 0;
5a580b3a
AM
6057
6058 /* Compute the "optimal" size for the hash table. The criteria is a
6059 minimal chain length. The minor criteria is (of course) the size
6060 of the table. */
6061 for (i = minsize; i < maxsize; ++i)
6062 {
6063 /* Walk through the array of hashcodes and count the collisions. */
6064 BFD_HOST_U_64_BIT max;
6065 unsigned long int j;
6066 unsigned long int fact;
6067
fdc90cb4
JJ
6068 if (gnu_hash && (i & 31) == 0)
6069 continue;
6070
5a580b3a
AM
6071 memset (counts, '\0', i * sizeof (unsigned long int));
6072
6073 /* Determine how often each hash bucket is used. */
6074 for (j = 0; j < nsyms; ++j)
6075 ++counts[hashcodes[j] % i];
6076
6077 /* For the weight function we need some information about the
6078 pagesize on the target. This is information need not be 100%
6079 accurate. Since this information is not available (so far) we
6080 define it here to a reasonable default value. If it is crucial
6081 to have a better value some day simply define this value. */
6082# ifndef BFD_TARGET_PAGESIZE
6083# define BFD_TARGET_PAGESIZE (4096)
6084# endif
6085
fdc90cb4
JJ
6086 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
6087 and the chains. */
6088 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5a580b3a
AM
6089
6090# if 1
6091 /* Variant 1: optimize for short chains. We add the squares
6092 of all the chain lengths (which favors many small chain
6093 over a few long chains). */
6094 for (j = 0; j < i; ++j)
6095 max += counts[j] * counts[j];
6096
6097 /* This adds penalties for the overall size of the table. */
fdc90cb4 6098 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
6099 max *= fact * fact;
6100# else
6101 /* Variant 2: Optimize a lot more for small table. Here we
6102 also add squares of the size but we also add penalties for
6103 empty slots (the +1 term). */
6104 for (j = 0; j < i; ++j)
6105 max += (1 + counts[j]) * (1 + counts[j]);
6106
6107 /* The overall size of the table is considered, but not as
6108 strong as in variant 1, where it is squared. */
fdc90cb4 6109 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
6110 max *= fact;
6111# endif
6112
6113 /* Compare with current best results. */
6114 if (max < best_chlen)
6115 {
6116 best_chlen = max;
6117 best_size = i;
ca4be51c 6118 no_improvement_count = 0;
5a580b3a 6119 }
0883b6e0
NC
6120 /* PR 11843: Avoid futile long searches for the best bucket size
6121 when there are a large number of symbols. */
6122 else if (++no_improvement_count == 100)
6123 break;
5a580b3a
AM
6124 }
6125
6126 free (counts);
6127 }
6128 else
6129#endif /* defined (BFD_HOST_U_64_BIT) */
6130 {
6131 /* This is the fallback solution if no 64bit type is available or if we
6132 are not supposed to spend much time on optimizations. We select the
6133 bucket count using a fixed set of numbers. */
6134 for (i = 0; elf_buckets[i] != 0; i++)
6135 {
6136 best_size = elf_buckets[i];
fdc90cb4 6137 if (nsyms < elf_buckets[i + 1])
5a580b3a
AM
6138 break;
6139 }
fdc90cb4
JJ
6140 if (gnu_hash && best_size < 2)
6141 best_size = 2;
5a580b3a
AM
6142 }
6143
5a580b3a
AM
6144 return best_size;
6145}
6146
d0bf826b
AM
6147/* Size any SHT_GROUP section for ld -r. */
6148
6149bfd_boolean
6150_bfd_elf_size_group_sections (struct bfd_link_info *info)
6151{
6152 bfd *ibfd;
57963c05 6153 asection *s;
d0bf826b 6154
c72f2fb2 6155 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
d0bf826b 6156 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
57963c05
AM
6157 && (s = ibfd->sections) != NULL
6158 && s->sec_info_type != SEC_INFO_TYPE_JUST_SYMS
d0bf826b
AM
6159 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
6160 return FALSE;
6161 return TRUE;
6162}
6163
04c3a755
NS
6164/* Set a default stack segment size. The value in INFO wins. If it
6165 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
6166 undefined it is initialized. */
6167
6168bfd_boolean
6169bfd_elf_stack_segment_size (bfd *output_bfd,
6170 struct bfd_link_info *info,
6171 const char *legacy_symbol,
6172 bfd_vma default_size)
6173{
6174 struct elf_link_hash_entry *h = NULL;
6175
6176 /* Look for legacy symbol. */
6177 if (legacy_symbol)
6178 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
6179 FALSE, FALSE, FALSE);
6180 if (h && (h->root.type == bfd_link_hash_defined
6181 || h->root.type == bfd_link_hash_defweak)
6182 && h->def_regular
6183 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
6184 {
6185 /* The symbol has no type if specified on the command line. */
6186 h->type = STT_OBJECT;
6187 if (info->stacksize)
695344c0 6188 /* xgettext:c-format */
871b3ab2 6189 _bfd_error_handler (_("%pB: stack size specified and %s set"),
4eca0228 6190 output_bfd, legacy_symbol);
04c3a755 6191 else if (h->root.u.def.section != bfd_abs_section_ptr)
695344c0 6192 /* xgettext:c-format */
871b3ab2 6193 _bfd_error_handler (_("%pB: %s not absolute"),
4eca0228 6194 output_bfd, legacy_symbol);
04c3a755
NS
6195 else
6196 info->stacksize = h->root.u.def.value;
6197 }
6198
6199 if (!info->stacksize)
6200 /* If the user didn't set a size, or explicitly inhibit the
6201 size, set it now. */
6202 info->stacksize = default_size;
6203
6204 /* Provide the legacy symbol, if it is referenced. */
6205 if (h && (h->root.type == bfd_link_hash_undefined
6206 || h->root.type == bfd_link_hash_undefweak))
6207 {
6208 struct bfd_link_hash_entry *bh = NULL;
6209
6210 if (!(_bfd_generic_link_add_one_symbol
6211 (info, output_bfd, legacy_symbol,
6212 BSF_GLOBAL, bfd_abs_section_ptr,
6213 info->stacksize >= 0 ? info->stacksize : 0,
6214 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
6215 return FALSE;
6216
6217 h = (struct elf_link_hash_entry *) bh;
6218 h->def_regular = 1;
6219 h->type = STT_OBJECT;
6220 }
6221
6222 return TRUE;
6223}
6224
b531344c
MR
6225/* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
6226
6227struct elf_gc_sweep_symbol_info
6228{
6229 struct bfd_link_info *info;
6230 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
6231 bfd_boolean);
6232};
6233
6234static bfd_boolean
6235elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
6236{
6237 if (!h->mark
6238 && (((h->root.type == bfd_link_hash_defined
6239 || h->root.type == bfd_link_hash_defweak)
6240 && !((h->def_regular || ELF_COMMON_DEF_P (h))
6241 && h->root.u.def.section->gc_mark))
6242 || h->root.type == bfd_link_hash_undefined
6243 || h->root.type == bfd_link_hash_undefweak))
6244 {
6245 struct elf_gc_sweep_symbol_info *inf;
6246
6247 inf = (struct elf_gc_sweep_symbol_info *) data;
6248 (*inf->hide_symbol) (inf->info, h, TRUE);
6249 h->def_regular = 0;
6250 h->ref_regular = 0;
6251 h->ref_regular_nonweak = 0;
6252 }
6253
6254 return TRUE;
6255}
6256
5a580b3a
AM
6257/* Set up the sizes and contents of the ELF dynamic sections. This is
6258 called by the ELF linker emulation before_allocation routine. We
6259 must set the sizes of the sections before the linker sets the
6260 addresses of the various sections. */
6261
6262bfd_boolean
6263bfd_elf_size_dynamic_sections (bfd *output_bfd,
6264 const char *soname,
6265 const char *rpath,
6266 const char *filter_shlib,
7ee314fa
AM
6267 const char *audit,
6268 const char *depaudit,
5a580b3a
AM
6269 const char * const *auxiliary_filters,
6270 struct bfd_link_info *info,
fd91d419 6271 asection **sinterpptr)
5a580b3a 6272{
5a580b3a
AM
6273 bfd *dynobj;
6274 const struct elf_backend_data *bed;
5a580b3a
AM
6275
6276 *sinterpptr = NULL;
6277
5a580b3a
AM
6278 if (!is_elf_hash_table (info->hash))
6279 return TRUE;
6280
5a580b3a
AM
6281 dynobj = elf_hash_table (info)->dynobj;
6282
9a2a56cc 6283 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a 6284 {
902e9fc7
MR
6285 struct bfd_elf_version_tree *verdefs;
6286 struct elf_info_failed asvinfo;
5a580b3a
AM
6287 struct bfd_elf_version_tree *t;
6288 struct bfd_elf_version_expr *d;
902e9fc7 6289 asection *s;
e6699019 6290 size_t soname_indx;
7ee314fa 6291
5a580b3a
AM
6292 /* If we are supposed to export all symbols into the dynamic symbol
6293 table (this is not the normal case), then do so. */
55255dae 6294 if (info->export_dynamic
0e1862bb 6295 || (bfd_link_executable (info) && info->dynamic))
5a580b3a 6296 {
3d13f3e9
AM
6297 struct elf_info_failed eif;
6298
6299 eif.info = info;
6300 eif.failed = FALSE;
5a580b3a
AM
6301 elf_link_hash_traverse (elf_hash_table (info),
6302 _bfd_elf_export_symbol,
6303 &eif);
6304 if (eif.failed)
6305 return FALSE;
6306 }
6307
e6699019
L
6308 if (soname != NULL)
6309 {
6310 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6311 soname, TRUE);
6312 if (soname_indx == (size_t) -1
6313 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
6314 return FALSE;
6315 }
6316 else
6317 soname_indx = (size_t) -1;
6318
5a580b3a 6319 /* Make all global versions with definition. */
fd91d419 6320 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 6321 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 6322 if (!d->symver && d->literal)
5a580b3a
AM
6323 {
6324 const char *verstr, *name;
6325 size_t namelen, verlen, newlen;
93252b1c 6326 char *newname, *p, leading_char;
5a580b3a
AM
6327 struct elf_link_hash_entry *newh;
6328
93252b1c 6329 leading_char = bfd_get_symbol_leading_char (output_bfd);
ae5a3597 6330 name = d->pattern;
93252b1c 6331 namelen = strlen (name) + (leading_char != '\0');
5a580b3a
AM
6332 verstr = t->name;
6333 verlen = strlen (verstr);
6334 newlen = namelen + verlen + 3;
6335
a50b1753 6336 newname = (char *) bfd_malloc (newlen);
5a580b3a
AM
6337 if (newname == NULL)
6338 return FALSE;
93252b1c
MF
6339 newname[0] = leading_char;
6340 memcpy (newname + (leading_char != '\0'), name, namelen);
5a580b3a
AM
6341
6342 /* Check the hidden versioned definition. */
6343 p = newname + namelen;
6344 *p++ = ELF_VER_CHR;
6345 memcpy (p, verstr, verlen + 1);
6346 newh = elf_link_hash_lookup (elf_hash_table (info),
6347 newname, FALSE, FALSE,
6348 FALSE);
6349 if (newh == NULL
6350 || (newh->root.type != bfd_link_hash_defined
6351 && newh->root.type != bfd_link_hash_defweak))
6352 {
6353 /* Check the default versioned definition. */
6354 *p++ = ELF_VER_CHR;
6355 memcpy (p, verstr, verlen + 1);
6356 newh = elf_link_hash_lookup (elf_hash_table (info),
6357 newname, FALSE, FALSE,
6358 FALSE);
6359 }
6360 free (newname);
6361
6362 /* Mark this version if there is a definition and it is
6363 not defined in a shared object. */
6364 if (newh != NULL
f5385ebf 6365 && !newh->def_dynamic
5a580b3a
AM
6366 && (newh->root.type == bfd_link_hash_defined
6367 || newh->root.type == bfd_link_hash_defweak))
6368 d->symver = 1;
6369 }
6370
6371 /* Attach all the symbols to their version information. */
5a580b3a 6372 asvinfo.info = info;
5a580b3a
AM
6373 asvinfo.failed = FALSE;
6374
6375 elf_link_hash_traverse (elf_hash_table (info),
6376 _bfd_elf_link_assign_sym_version,
6377 &asvinfo);
6378 if (asvinfo.failed)
6379 return FALSE;
6380
6381 if (!info->allow_undefined_version)
6382 {
6383 /* Check if all global versions have a definition. */
3d13f3e9 6384 bfd_boolean all_defined = TRUE;
fd91d419 6385 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 6386 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 6387 if (d->literal && !d->symver && !d->script)
5a580b3a 6388 {
4eca0228 6389 _bfd_error_handler
5a580b3a
AM
6390 (_("%s: undefined version: %s"),
6391 d->pattern, t->name);
6392 all_defined = FALSE;
6393 }
6394
6395 if (!all_defined)
6396 {
6397 bfd_set_error (bfd_error_bad_value);
6398 return FALSE;
6399 }
6400 }
6401
902e9fc7
MR
6402 /* Set up the version definition section. */
6403 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
6404 BFD_ASSERT (s != NULL);
5a580b3a 6405
902e9fc7
MR
6406 /* We may have created additional version definitions if we are
6407 just linking a regular application. */
6408 verdefs = info->version_info;
5a580b3a 6409
902e9fc7
MR
6410 /* Skip anonymous version tag. */
6411 if (verdefs != NULL && verdefs->vernum == 0)
6412 verdefs = verdefs->next;
5a580b3a 6413
902e9fc7
MR
6414 if (verdefs == NULL && !info->create_default_symver)
6415 s->flags |= SEC_EXCLUDE;
6416 else
5a580b3a 6417 {
902e9fc7
MR
6418 unsigned int cdefs;
6419 bfd_size_type size;
6420 bfd_byte *p;
6421 Elf_Internal_Verdef def;
6422 Elf_Internal_Verdaux defaux;
6423 struct bfd_link_hash_entry *bh;
6424 struct elf_link_hash_entry *h;
6425 const char *name;
5a580b3a 6426
902e9fc7
MR
6427 cdefs = 0;
6428 size = 0;
5a580b3a 6429
902e9fc7
MR
6430 /* Make space for the base version. */
6431 size += sizeof (Elf_External_Verdef);
6432 size += sizeof (Elf_External_Verdaux);
6433 ++cdefs;
6434
6435 /* Make space for the default version. */
6436 if (info->create_default_symver)
6437 {
6438 size += sizeof (Elf_External_Verdef);
6439 ++cdefs;
3e3b46e5
PB
6440 }
6441
5a580b3a
AM
6442 for (t = verdefs; t != NULL; t = t->next)
6443 {
6444 struct bfd_elf_version_deps *n;
6445
a6cc6b3b
RO
6446 /* Don't emit base version twice. */
6447 if (t->vernum == 0)
6448 continue;
6449
5a580b3a
AM
6450 size += sizeof (Elf_External_Verdef);
6451 size += sizeof (Elf_External_Verdaux);
6452 ++cdefs;
6453
6454 for (n = t->deps; n != NULL; n = n->next)
6455 size += sizeof (Elf_External_Verdaux);
6456 }
6457
eea6121a 6458 s->size = size;
a50b1753 6459 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
eea6121a 6460 if (s->contents == NULL && s->size != 0)
5a580b3a
AM
6461 return FALSE;
6462
6463 /* Fill in the version definition section. */
6464
6465 p = s->contents;
6466
6467 def.vd_version = VER_DEF_CURRENT;
6468 def.vd_flags = VER_FLG_BASE;
6469 def.vd_ndx = 1;
6470 def.vd_cnt = 1;
3e3b46e5
PB
6471 if (info->create_default_symver)
6472 {
6473 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6474 def.vd_next = sizeof (Elf_External_Verdef);
6475 }
6476 else
6477 {
6478 def.vd_aux = sizeof (Elf_External_Verdef);
6479 def.vd_next = (sizeof (Elf_External_Verdef)
6480 + sizeof (Elf_External_Verdaux));
6481 }
5a580b3a 6482
ef53be89 6483 if (soname_indx != (size_t) -1)
5a580b3a
AM
6484 {
6485 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6486 soname_indx);
6487 def.vd_hash = bfd_elf_hash (soname);
6488 defaux.vda_name = soname_indx;
3e3b46e5 6489 name = soname;
5a580b3a
AM
6490 }
6491 else
6492 {
ef53be89 6493 size_t indx;
5a580b3a 6494
06084812 6495 name = lbasename (output_bfd->filename);
5a580b3a
AM
6496 def.vd_hash = bfd_elf_hash (name);
6497 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6498 name, FALSE);
ef53be89 6499 if (indx == (size_t) -1)
5a580b3a
AM
6500 return FALSE;
6501 defaux.vda_name = indx;
6502 }
6503 defaux.vda_next = 0;
6504
6505 _bfd_elf_swap_verdef_out (output_bfd, &def,
6506 (Elf_External_Verdef *) p);
6507 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
6508 if (info->create_default_symver)
6509 {
6510 /* Add a symbol representing this version. */
6511 bh = NULL;
6512 if (! (_bfd_generic_link_add_one_symbol
6513 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6514 0, NULL, FALSE,
6515 get_elf_backend_data (dynobj)->collect, &bh)))
6516 return FALSE;
6517 h = (struct elf_link_hash_entry *) bh;
6518 h->non_elf = 0;
6519 h->def_regular = 1;
6520 h->type = STT_OBJECT;
6521 h->verinfo.vertree = NULL;
6522
6523 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6524 return FALSE;
6525
6526 /* Create a duplicate of the base version with the same
6527 aux block, but different flags. */
6528 def.vd_flags = 0;
6529 def.vd_ndx = 2;
6530 def.vd_aux = sizeof (Elf_External_Verdef);
6531 if (verdefs)
6532 def.vd_next = (sizeof (Elf_External_Verdef)
6533 + sizeof (Elf_External_Verdaux));
6534 else
6535 def.vd_next = 0;
6536 _bfd_elf_swap_verdef_out (output_bfd, &def,
6537 (Elf_External_Verdef *) p);
6538 p += sizeof (Elf_External_Verdef);
6539 }
5a580b3a
AM
6540 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6541 (Elf_External_Verdaux *) p);
6542 p += sizeof (Elf_External_Verdaux);
6543
6544 for (t = verdefs; t != NULL; t = t->next)
6545 {
6546 unsigned int cdeps;
6547 struct bfd_elf_version_deps *n;
5a580b3a 6548
a6cc6b3b
RO
6549 /* Don't emit the base version twice. */
6550 if (t->vernum == 0)
6551 continue;
6552
5a580b3a
AM
6553 cdeps = 0;
6554 for (n = t->deps; n != NULL; n = n->next)
6555 ++cdeps;
6556
6557 /* Add a symbol representing this version. */
6558 bh = NULL;
6559 if (! (_bfd_generic_link_add_one_symbol
6560 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6561 0, NULL, FALSE,
6562 get_elf_backend_data (dynobj)->collect, &bh)))
6563 return FALSE;
6564 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6565 h->non_elf = 0;
6566 h->def_regular = 1;
5a580b3a
AM
6567 h->type = STT_OBJECT;
6568 h->verinfo.vertree = t;
6569
c152c796 6570 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5a580b3a
AM
6571 return FALSE;
6572
6573 def.vd_version = VER_DEF_CURRENT;
6574 def.vd_flags = 0;
6575 if (t->globals.list == NULL
6576 && t->locals.list == NULL
6577 && ! t->used)
6578 def.vd_flags |= VER_FLG_WEAK;
3e3b46e5 6579 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
5a580b3a
AM
6580 def.vd_cnt = cdeps + 1;
6581 def.vd_hash = bfd_elf_hash (t->name);
6582 def.vd_aux = sizeof (Elf_External_Verdef);
6583 def.vd_next = 0;
a6cc6b3b
RO
6584
6585 /* If a basever node is next, it *must* be the last node in
6586 the chain, otherwise Verdef construction breaks. */
6587 if (t->next != NULL && t->next->vernum == 0)
6588 BFD_ASSERT (t->next->next == NULL);
6589
6590 if (t->next != NULL && t->next->vernum != 0)
5a580b3a
AM
6591 def.vd_next = (sizeof (Elf_External_Verdef)
6592 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6593
6594 _bfd_elf_swap_verdef_out (output_bfd, &def,
6595 (Elf_External_Verdef *) p);
6596 p += sizeof (Elf_External_Verdef);
6597
6598 defaux.vda_name = h->dynstr_index;
6599 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6600 h->dynstr_index);
6601 defaux.vda_next = 0;
6602 if (t->deps != NULL)
6603 defaux.vda_next = sizeof (Elf_External_Verdaux);
6604 t->name_indx = defaux.vda_name;
6605
6606 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6607 (Elf_External_Verdaux *) p);
6608 p += sizeof (Elf_External_Verdaux);
6609
6610 for (n = t->deps; n != NULL; n = n->next)
6611 {
6612 if (n->version_needed == NULL)
6613 {
6614 /* This can happen if there was an error in the
6615 version script. */
6616 defaux.vda_name = 0;
6617 }
6618 else
6619 {
6620 defaux.vda_name = n->version_needed->name_indx;
6621 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6622 defaux.vda_name);
6623 }
6624 if (n->next == NULL)
6625 defaux.vda_next = 0;
6626 else
6627 defaux.vda_next = sizeof (Elf_External_Verdaux);
6628
6629 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6630 (Elf_External_Verdaux *) p);
6631 p += sizeof (Elf_External_Verdaux);
6632 }
6633 }
6634
5a580b3a
AM
6635 elf_tdata (output_bfd)->cverdefs = cdefs;
6636 }
902e9fc7
MR
6637 }
6638
6639 bed = get_elf_backend_data (output_bfd);
6640
6641 if (info->gc_sections && bed->can_gc_sections)
6642 {
6643 struct elf_gc_sweep_symbol_info sweep_info;
902e9fc7
MR
6644
6645 /* Remove the symbols that were in the swept sections from the
3d13f3e9 6646 dynamic symbol table. */
902e9fc7
MR
6647 sweep_info.info = info;
6648 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
6649 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
6650 &sweep_info);
3d13f3e9
AM
6651 }
6652
6653 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6654 {
6655 asection *s;
6656 struct elf_find_verdep_info sinfo;
6657
6658 /* Work out the size of the version reference section. */
6659
6660 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
6661 BFD_ASSERT (s != NULL);
902e9fc7 6662
3d13f3e9
AM
6663 sinfo.info = info;
6664 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6665 if (sinfo.vers == 0)
6666 sinfo.vers = 1;
6667 sinfo.failed = FALSE;
6668
6669 elf_link_hash_traverse (elf_hash_table (info),
6670 _bfd_elf_link_find_version_dependencies,
6671 &sinfo);
6672 if (sinfo.failed)
6673 return FALSE;
6674
6675 if (elf_tdata (output_bfd)->verref == NULL)
6676 s->flags |= SEC_EXCLUDE;
6677 else
6678 {
6679 Elf_Internal_Verneed *vn;
6680 unsigned int size;
6681 unsigned int crefs;
6682 bfd_byte *p;
6683
6684 /* Build the version dependency section. */
6685 size = 0;
6686 crefs = 0;
6687 for (vn = elf_tdata (output_bfd)->verref;
6688 vn != NULL;
6689 vn = vn->vn_nextref)
6690 {
6691 Elf_Internal_Vernaux *a;
6692
6693 size += sizeof (Elf_External_Verneed);
6694 ++crefs;
6695 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6696 size += sizeof (Elf_External_Vernaux);
6697 }
6698
6699 s->size = size;
6700 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6701 if (s->contents == NULL)
6702 return FALSE;
6703
6704 p = s->contents;
6705 for (vn = elf_tdata (output_bfd)->verref;
6706 vn != NULL;
6707 vn = vn->vn_nextref)
6708 {
6709 unsigned int caux;
6710 Elf_Internal_Vernaux *a;
6711 size_t indx;
6712
6713 caux = 0;
6714 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6715 ++caux;
6716
6717 vn->vn_version = VER_NEED_CURRENT;
6718 vn->vn_cnt = caux;
6719 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6720 elf_dt_name (vn->vn_bfd) != NULL
6721 ? elf_dt_name (vn->vn_bfd)
6722 : lbasename (vn->vn_bfd->filename),
6723 FALSE);
6724 if (indx == (size_t) -1)
6725 return FALSE;
6726 vn->vn_file = indx;
6727 vn->vn_aux = sizeof (Elf_External_Verneed);
6728 if (vn->vn_nextref == NULL)
6729 vn->vn_next = 0;
6730 else
6731 vn->vn_next = (sizeof (Elf_External_Verneed)
6732 + caux * sizeof (Elf_External_Vernaux));
6733
6734 _bfd_elf_swap_verneed_out (output_bfd, vn,
6735 (Elf_External_Verneed *) p);
6736 p += sizeof (Elf_External_Verneed);
6737
6738 for (a = vn->vn_auxptr; a != NULL; a = a->vna_nextptr)
6739 {
6740 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6741 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6742 a->vna_nodename, FALSE);
6743 if (indx == (size_t) -1)
6744 return FALSE;
6745 a->vna_name = indx;
6746 if (a->vna_nextptr == NULL)
6747 a->vna_next = 0;
6748 else
6749 a->vna_next = sizeof (Elf_External_Vernaux);
6750
6751 _bfd_elf_swap_vernaux_out (output_bfd, a,
6752 (Elf_External_Vernaux *) p);
6753 p += sizeof (Elf_External_Vernaux);
6754 }
6755 }
6756
6757 elf_tdata (output_bfd)->cverrefs = crefs;
6758 }
902e9fc7
MR
6759 }
6760
6761 /* Any syms created from now on start with -1 in
6762 got.refcount/offset and plt.refcount/offset. */
6763 elf_hash_table (info)->init_got_refcount
6764 = elf_hash_table (info)->init_got_offset;
6765 elf_hash_table (info)->init_plt_refcount
6766 = elf_hash_table (info)->init_plt_offset;
6767
6768 if (bfd_link_relocatable (info)
6769 && !_bfd_elf_size_group_sections (info))
6770 return FALSE;
6771
6772 /* The backend may have to create some sections regardless of whether
6773 we're dynamic or not. */
6774 if (bed->elf_backend_always_size_sections
6775 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
6776 return FALSE;
6777
6778 /* Determine any GNU_STACK segment requirements, after the backend
6779 has had a chance to set a default segment size. */
6780 if (info->execstack)
6781 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
6782 else if (info->noexecstack)
6783 elf_stack_flags (output_bfd) = PF_R | PF_W;
6784 else
6785 {
6786 bfd *inputobj;
6787 asection *notesec = NULL;
6788 int exec = 0;
6789
6790 for (inputobj = info->input_bfds;
6791 inputobj;
6792 inputobj = inputobj->link.next)
6793 {
6794 asection *s;
6795
6796 if (inputobj->flags
6797 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
6798 continue;
57963c05
AM
6799 s = inputobj->sections;
6800 if (s == NULL || s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
6801 continue;
6802
902e9fc7
MR
6803 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
6804 if (s)
6805 {
6806 if (s->flags & SEC_CODE)
6807 exec = PF_X;
6808 notesec = s;
6809 }
6810 else if (bed->default_execstack)
6811 exec = PF_X;
6812 }
6813 if (notesec || info->stacksize > 0)
6814 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
6815 if (notesec && exec && bfd_link_relocatable (info)
6816 && notesec->output_section != bfd_abs_section_ptr)
6817 notesec->output_section->flags |= SEC_CODE;
6818 }
6819
6820 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
6821 {
6822 struct elf_info_failed eif;
6823 struct elf_link_hash_entry *h;
6824 asection *dynstr;
6825 asection *s;
6826
6827 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
6828 BFD_ASSERT (*sinterpptr != NULL || !bfd_link_executable (info) || info->nointerp);
6829
902e9fc7
MR
6830 if (info->symbolic)
6831 {
6832 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
6833 return FALSE;
6834 info->flags |= DF_SYMBOLIC;
6835 }
6836
6837 if (rpath != NULL)
6838 {
6839 size_t indx;
6840 bfd_vma tag;
6841
6842 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
6843 TRUE);
6844 if (indx == (size_t) -1)
6845 return FALSE;
6846
6847 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
6848 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
6849 return FALSE;
6850 }
6851
6852 if (filter_shlib != NULL)
6853 {
6854 size_t indx;
6855
6856 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6857 filter_shlib, TRUE);
6858 if (indx == (size_t) -1
6859 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
6860 return FALSE;
6861 }
6862
6863 if (auxiliary_filters != NULL)
6864 {
6865 const char * const *p;
6866
6867 for (p = auxiliary_filters; *p != NULL; p++)
6868 {
6869 size_t indx;
6870
6871 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6872 *p, TRUE);
6873 if (indx == (size_t) -1
6874 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
6875 return FALSE;
6876 }
6877 }
6878
6879 if (audit != NULL)
6880 {
6881 size_t indx;
6882
6883 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
6884 TRUE);
6885 if (indx == (size_t) -1
6886 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
6887 return FALSE;
6888 }
6889
6890 if (depaudit != NULL)
6891 {
6892 size_t indx;
6893
6894 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
6895 TRUE);
6896 if (indx == (size_t) -1
6897 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
6898 return FALSE;
6899 }
6900
6901 eif.info = info;
6902 eif.failed = FALSE;
6903
6904 /* Find all symbols which were defined in a dynamic object and make
6905 the backend pick a reasonable value for them. */
6906 elf_link_hash_traverse (elf_hash_table (info),
6907 _bfd_elf_adjust_dynamic_symbol,
6908 &eif);
6909 if (eif.failed)
6910 return FALSE;
6911
6912 /* Add some entries to the .dynamic section. We fill in some of the
6913 values later, in bfd_elf_final_link, but we must add the entries
6914 now so that we know the final size of the .dynamic section. */
6915
6916 /* If there are initialization and/or finalization functions to
6917 call then add the corresponding DT_INIT/DT_FINI entries. */
6918 h = (info->init_function
6919 ? elf_link_hash_lookup (elf_hash_table (info),
6920 info->init_function, FALSE,
6921 FALSE, FALSE)
6922 : NULL);
6923 if (h != NULL
6924 && (h->ref_regular
6925 || h->def_regular))
6926 {
6927 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
6928 return FALSE;
6929 }
6930 h = (info->fini_function
6931 ? elf_link_hash_lookup (elf_hash_table (info),
6932 info->fini_function, FALSE,
6933 FALSE, FALSE)
6934 : NULL);
6935 if (h != NULL
6936 && (h->ref_regular
6937 || h->def_regular))
6938 {
6939 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
6940 return FALSE;
6941 }
6942
6943 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
6944 if (s != NULL && s->linker_has_input)
6945 {
6946 /* DT_PREINIT_ARRAY is not allowed in shared library. */
6947 if (! bfd_link_executable (info))
6948 {
6949 bfd *sub;
6950 asection *o;
6951
57963c05
AM
6952 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
6953 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
6954 && (o = sub->sections) != NULL
6955 && o->sec_info_type != SEC_INFO_TYPE_JUST_SYMS)
902e9fc7
MR
6956 for (o = sub->sections; o != NULL; o = o->next)
6957 if (elf_section_data (o)->this_hdr.sh_type
6958 == SHT_PREINIT_ARRAY)
6959 {
6960 _bfd_error_handler
871b3ab2 6961 (_("%pB: .preinit_array section is not allowed in DSO"),
902e9fc7
MR
6962 sub);
6963 break;
6964 }
6965
6966 bfd_set_error (bfd_error_nonrepresentable_section);
6967 return FALSE;
6968 }
6969
6970 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
6971 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
6972 return FALSE;
6973 }
6974 s = bfd_get_section_by_name (output_bfd, ".init_array");
6975 if (s != NULL && s->linker_has_input)
6976 {
6977 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
6978 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
6979 return FALSE;
6980 }
6981 s = bfd_get_section_by_name (output_bfd, ".fini_array");
6982 if (s != NULL && s->linker_has_input)
6983 {
6984 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
6985 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
6986 return FALSE;
6987 }
6988
6989 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
6990 /* If .dynstr is excluded from the link, we don't want any of
6991 these tags. Strictly, we should be checking each section
6992 individually; This quick check covers for the case where
6993 someone does a /DISCARD/ : { *(*) }. */
6994 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
6995 {
6996 bfd_size_type strsize;
6997
6998 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
6999 if ((info->emit_hash
7000 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
7001 || (info->emit_gnu_hash
f16a9783
MS
7002 && (bed->record_xhash_symbol == NULL
7003 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0)))
902e9fc7
MR
7004 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
7005 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
7006 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
7007 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
7008 bed->s->sizeof_sym))
7009 return FALSE;
7010 }
7011 }
7012
7013 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
7014 return FALSE;
7015
7016 /* The backend must work out the sizes of all the other dynamic
7017 sections. */
7018 if (dynobj != NULL
7019 && bed->elf_backend_size_dynamic_sections != NULL
7020 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
7021 return FALSE;
7022
7023 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
7024 {
902e9fc7
MR
7025 if (elf_tdata (output_bfd)->cverdefs)
7026 {
7027 unsigned int crefs = elf_tdata (output_bfd)->cverdefs;
7028
7029 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
7030 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, crefs))
7031 return FALSE;
7032 }
7033
7034 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
7035 {
7036 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
7037 return FALSE;
7038 }
7039 else if (info->flags & DF_BIND_NOW)
7040 {
7041 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
7042 return FALSE;
7043 }
7044
7045 if (info->flags_1)
7046 {
7047 if (bfd_link_executable (info))
7048 info->flags_1 &= ~ (DF_1_INITFIRST
7049 | DF_1_NODELETE
7050 | DF_1_NOOPEN);
7051 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
7052 return FALSE;
7053 }
7054
7055 if (elf_tdata (output_bfd)->cverrefs)
7056 {
7057 unsigned int crefs = elf_tdata (output_bfd)->cverrefs;
7058
7059 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
7060 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
7061 return FALSE;
7062 }
5a580b3a 7063
8423293d
AM
7064 if ((elf_tdata (output_bfd)->cverrefs == 0
7065 && elf_tdata (output_bfd)->cverdefs == 0)
63f452a8 7066 || _bfd_elf_link_renumber_dynsyms (output_bfd, info, NULL) <= 1)
8423293d 7067 {
902e9fc7
MR
7068 asection *s;
7069
3d4d4302 7070 s = bfd_get_linker_section (dynobj, ".gnu.version");
8423293d
AM
7071 s->flags |= SEC_EXCLUDE;
7072 }
7073 }
7074 return TRUE;
7075}
7076
74541ad4
AM
7077/* Find the first non-excluded output section. We'll use its
7078 section symbol for some emitted relocs. */
7079void
7080_bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
7081{
7082 asection *s;
f26a3287 7083 asection *found = NULL;
74541ad4
AM
7084
7085 for (s = output_bfd->sections; s != NULL; s = s->next)
7086 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
d00dd7dc 7087 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
74541ad4 7088 {
f26a3287
AM
7089 found = s;
7090 if ((s->flags & SEC_THREAD_LOCAL) == 0)
7091 break;
74541ad4 7092 }
f26a3287 7093 elf_hash_table (info)->text_index_section = found;
74541ad4
AM
7094}
7095
7096/* Find two non-excluded output sections, one for code, one for data.
7097 We'll use their section symbols for some emitted relocs. */
7098void
7099_bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
7100{
7101 asection *s;
f26a3287 7102 asection *found = NULL;
74541ad4 7103
266b05cf 7104 /* Data first, since setting text_index_section changes
7f923b7f 7105 _bfd_elf_omit_section_dynsym_default. */
74541ad4 7106 for (s = output_bfd->sections; s != NULL; s = s->next)
f26a3287
AM
7107 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
7108 && !(s->flags & SEC_READONLY)
d00dd7dc 7109 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
74541ad4 7110 {
f26a3287
AM
7111 found = s;
7112 if ((s->flags & SEC_THREAD_LOCAL) == 0)
7113 break;
74541ad4 7114 }
f26a3287 7115 elf_hash_table (info)->data_index_section = found;
74541ad4
AM
7116
7117 for (s = output_bfd->sections; s != NULL; s = s->next)
f26a3287
AM
7118 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
7119 && (s->flags & SEC_READONLY)
d00dd7dc 7120 && !_bfd_elf_omit_section_dynsym_default (output_bfd, info, s))
74541ad4 7121 {
f26a3287 7122 found = s;
74541ad4
AM
7123 break;
7124 }
f26a3287 7125 elf_hash_table (info)->text_index_section = found;
74541ad4
AM
7126}
7127
f16a9783
MS
7128#define GNU_HASH_SECTION_NAME(bed) \
7129 (bed)->record_xhash_symbol != NULL ? ".MIPS.xhash" : ".gnu.hash"
7130
8423293d
AM
7131bfd_boolean
7132bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
7133{
74541ad4 7134 const struct elf_backend_data *bed;
23ec1e32 7135 unsigned long section_sym_count;
96d01d93 7136 bfd_size_type dynsymcount = 0;
74541ad4 7137
8423293d
AM
7138 if (!is_elf_hash_table (info->hash))
7139 return TRUE;
7140
74541ad4
AM
7141 bed = get_elf_backend_data (output_bfd);
7142 (*bed->elf_backend_init_index_section) (output_bfd, info);
7143
23ec1e32
MR
7144 /* Assign dynsym indices. In a shared library we generate a section
7145 symbol for each output section, which come first. Next come all
7146 of the back-end allocated local dynamic syms, followed by the rest
7147 of the global symbols.
7148
7149 This is usually not needed for static binaries, however backends
7150 can request to always do it, e.g. the MIPS backend uses dynamic
7151 symbol counts to lay out GOT, which will be produced in the
7152 presence of GOT relocations even in static binaries (holding fixed
7153 data in that case, to satisfy those relocations). */
7154
7155 if (elf_hash_table (info)->dynamic_sections_created
7156 || bed->always_renumber_dynsyms)
7157 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
7158 &section_sym_count);
7159
8423293d
AM
7160 if (elf_hash_table (info)->dynamic_sections_created)
7161 {
7162 bfd *dynobj;
8423293d 7163 asection *s;
8423293d
AM
7164 unsigned int dtagcount;
7165
7166 dynobj = elf_hash_table (info)->dynobj;
7167
5a580b3a 7168 /* Work out the size of the symbol version section. */
3d4d4302 7169 s = bfd_get_linker_section (dynobj, ".gnu.version");
5a580b3a 7170 BFD_ASSERT (s != NULL);
d5486c43 7171 if ((s->flags & SEC_EXCLUDE) == 0)
5a580b3a 7172 {
eea6121a 7173 s->size = dynsymcount * sizeof (Elf_External_Versym);
a50b1753 7174 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
5a580b3a
AM
7175 if (s->contents == NULL)
7176 return FALSE;
7177
7178 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
7179 return FALSE;
7180 }
7181
7182 /* Set the size of the .dynsym and .hash sections. We counted
7183 the number of dynamic symbols in elf_link_add_object_symbols.
7184 We will build the contents of .dynsym and .hash when we build
7185 the final symbol table, because until then we do not know the
7186 correct value to give the symbols. We built the .dynstr
7187 section as we went along in elf_link_add_object_symbols. */
cae1fbbb 7188 s = elf_hash_table (info)->dynsym;
5a580b3a 7189 BFD_ASSERT (s != NULL);
eea6121a 7190 s->size = dynsymcount * bed->s->sizeof_sym;
5a580b3a 7191
d5486c43
L
7192 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
7193 if (s->contents == NULL)
7194 return FALSE;
5a580b3a 7195
d5486c43
L
7196 /* The first entry in .dynsym is a dummy symbol. Clear all the
7197 section syms, in case we don't output them all. */
7198 ++section_sym_count;
7199 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
5a580b3a 7200
fdc90cb4
JJ
7201 elf_hash_table (info)->bucketcount = 0;
7202
5a580b3a
AM
7203 /* Compute the size of the hashing table. As a side effect this
7204 computes the hash values for all the names we export. */
fdc90cb4
JJ
7205 if (info->emit_hash)
7206 {
7207 unsigned long int *hashcodes;
14b1c01e 7208 struct hash_codes_info hashinf;
fdc90cb4
JJ
7209 bfd_size_type amt;
7210 unsigned long int nsyms;
7211 size_t bucketcount;
7212 size_t hash_entry_size;
7213
7214 /* Compute the hash values for all exported symbols. At the same
7215 time store the values in an array so that we could use them for
7216 optimizations. */
7217 amt = dynsymcount * sizeof (unsigned long int);
a50b1753 7218 hashcodes = (unsigned long int *) bfd_malloc (amt);
fdc90cb4
JJ
7219 if (hashcodes == NULL)
7220 return FALSE;
14b1c01e
AM
7221 hashinf.hashcodes = hashcodes;
7222 hashinf.error = FALSE;
5a580b3a 7223
fdc90cb4
JJ
7224 /* Put all hash values in HASHCODES. */
7225 elf_link_hash_traverse (elf_hash_table (info),
14b1c01e
AM
7226 elf_collect_hash_codes, &hashinf);
7227 if (hashinf.error)
4dd07732
AM
7228 {
7229 free (hashcodes);
7230 return FALSE;
7231 }
5a580b3a 7232
14b1c01e 7233 nsyms = hashinf.hashcodes - hashcodes;
fdc90cb4
JJ
7234 bucketcount
7235 = compute_bucket_count (info, hashcodes, nsyms, 0);
7236 free (hashcodes);
7237
4b48e2f6 7238 if (bucketcount == 0 && nsyms > 0)
fdc90cb4 7239 return FALSE;
5a580b3a 7240
fdc90cb4
JJ
7241 elf_hash_table (info)->bucketcount = bucketcount;
7242
3d4d4302 7243 s = bfd_get_linker_section (dynobj, ".hash");
fdc90cb4
JJ
7244 BFD_ASSERT (s != NULL);
7245 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
7246 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
a50b1753 7247 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
7248 if (s->contents == NULL)
7249 return FALSE;
7250
7251 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
7252 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
7253 s->contents + hash_entry_size);
7254 }
7255
7256 if (info->emit_gnu_hash)
7257 {
7258 size_t i, cnt;
7259 unsigned char *contents;
7260 struct collect_gnu_hash_codes cinfo;
7261 bfd_size_type amt;
7262 size_t bucketcount;
7263
7264 memset (&cinfo, 0, sizeof (cinfo));
7265
7266 /* Compute the hash values for all exported symbols. At the same
7267 time store the values in an array so that we could use them for
7268 optimizations. */
7269 amt = dynsymcount * 2 * sizeof (unsigned long int);
a50b1753 7270 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
fdc90cb4
JJ
7271 if (cinfo.hashcodes == NULL)
7272 return FALSE;
7273
7274 cinfo.hashval = cinfo.hashcodes + dynsymcount;
7275 cinfo.min_dynindx = -1;
7276 cinfo.output_bfd = output_bfd;
7277 cinfo.bed = bed;
7278
7279 /* Put all hash values in HASHCODES. */
7280 elf_link_hash_traverse (elf_hash_table (info),
7281 elf_collect_gnu_hash_codes, &cinfo);
14b1c01e 7282 if (cinfo.error)
4dd07732
AM
7283 {
7284 free (cinfo.hashcodes);
7285 return FALSE;
7286 }
fdc90cb4
JJ
7287
7288 bucketcount
7289 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
7290
7291 if (bucketcount == 0)
7292 {
7293 free (cinfo.hashcodes);
7294 return FALSE;
7295 }
7296
f16a9783 7297 s = bfd_get_linker_section (dynobj, GNU_HASH_SECTION_NAME (bed));
fdc90cb4
JJ
7298 BFD_ASSERT (s != NULL);
7299
7300 if (cinfo.nsyms == 0)
7301 {
f16a9783 7302 /* Empty .gnu.hash or .MIPS.xhash section is special. */
fdc90cb4
JJ
7303 BFD_ASSERT (cinfo.min_dynindx == -1);
7304 free (cinfo.hashcodes);
7305 s->size = 5 * 4 + bed->s->arch_size / 8;
a50b1753 7306 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
7307 if (contents == NULL)
7308 return FALSE;
7309 s->contents = contents;
7310 /* 1 empty bucket. */
7311 bfd_put_32 (output_bfd, 1, contents);
7312 /* SYMIDX above the special symbol 0. */
7313 bfd_put_32 (output_bfd, 1, contents + 4);
7314 /* Just one word for bitmask. */
7315 bfd_put_32 (output_bfd, 1, contents + 8);
7316 /* Only hash fn bloom filter. */
7317 bfd_put_32 (output_bfd, 0, contents + 12);
7318 /* No hashes are valid - empty bitmask. */
7319 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
7320 /* No hashes in the only bucket. */
7321 bfd_put_32 (output_bfd, 0,
7322 contents + 16 + bed->s->arch_size / 8);
7323 }
7324 else
7325 {
9e6619e2 7326 unsigned long int maskwords, maskbitslog2, x;
0b33793d 7327 BFD_ASSERT (cinfo.min_dynindx != -1);
fdc90cb4 7328
9e6619e2
AM
7329 x = cinfo.nsyms;
7330 maskbitslog2 = 1;
7331 while ((x >>= 1) != 0)
7332 ++maskbitslog2;
fdc90cb4
JJ
7333 if (maskbitslog2 < 3)
7334 maskbitslog2 = 5;
7335 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
7336 maskbitslog2 = maskbitslog2 + 3;
7337 else
7338 maskbitslog2 = maskbitslog2 + 2;
7339 if (bed->s->arch_size == 64)
7340 {
7341 if (maskbitslog2 == 5)
7342 maskbitslog2 = 6;
7343 cinfo.shift1 = 6;
7344 }
7345 else
7346 cinfo.shift1 = 5;
7347 cinfo.mask = (1 << cinfo.shift1) - 1;
2ccdbfcc 7348 cinfo.shift2 = maskbitslog2;
fdc90cb4
JJ
7349 cinfo.maskbits = 1 << maskbitslog2;
7350 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
7351 amt = bucketcount * sizeof (unsigned long int) * 2;
7352 amt += maskwords * sizeof (bfd_vma);
a50b1753 7353 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
fdc90cb4
JJ
7354 if (cinfo.bitmask == NULL)
7355 {
7356 free (cinfo.hashcodes);
7357 return FALSE;
7358 }
7359
a50b1753 7360 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
fdc90cb4
JJ
7361 cinfo.indx = cinfo.counts + bucketcount;
7362 cinfo.symindx = dynsymcount - cinfo.nsyms;
7363 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
7364
7365 /* Determine how often each hash bucket is used. */
7366 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
7367 for (i = 0; i < cinfo.nsyms; ++i)
7368 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
7369
7370 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
7371 if (cinfo.counts[i] != 0)
7372 {
7373 cinfo.indx[i] = cnt;
7374 cnt += cinfo.counts[i];
7375 }
7376 BFD_ASSERT (cnt == dynsymcount);
7377 cinfo.bucketcount = bucketcount;
7378 cinfo.local_indx = cinfo.min_dynindx;
7379
7380 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
7381 s->size += cinfo.maskbits / 8;
f16a9783
MS
7382 if (bed->record_xhash_symbol != NULL)
7383 s->size += cinfo.nsyms * 4;
a50b1753 7384 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
7385 if (contents == NULL)
7386 {
7387 free (cinfo.bitmask);
7388 free (cinfo.hashcodes);
7389 return FALSE;
7390 }
7391
7392 s->contents = contents;
7393 bfd_put_32 (output_bfd, bucketcount, contents);
7394 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
7395 bfd_put_32 (output_bfd, maskwords, contents + 8);
7396 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
7397 contents += 16 + cinfo.maskbits / 8;
7398
7399 for (i = 0; i < bucketcount; ++i)
7400 {
7401 if (cinfo.counts[i] == 0)
7402 bfd_put_32 (output_bfd, 0, contents);
7403 else
7404 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
7405 contents += 4;
7406 }
7407
7408 cinfo.contents = contents;
7409
f16a9783
MS
7410 cinfo.xlat = contents + cinfo.nsyms * 4 - s->contents;
7411 /* Renumber dynamic symbols, if populating .gnu.hash section.
7412 If using .MIPS.xhash, populate the translation table. */
fdc90cb4 7413 elf_link_hash_traverse (elf_hash_table (info),
f16a9783 7414 elf_gnu_hash_process_symidx, &cinfo);
fdc90cb4
JJ
7415
7416 contents = s->contents + 16;
7417 for (i = 0; i < maskwords; ++i)
7418 {
7419 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
7420 contents);
7421 contents += bed->s->arch_size / 8;
7422 }
7423
7424 free (cinfo.bitmask);
7425 free (cinfo.hashcodes);
7426 }
7427 }
5a580b3a 7428
3d4d4302 7429 s = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
7430 BFD_ASSERT (s != NULL);
7431
4ad4eba5 7432 elf_finalize_dynstr (output_bfd, info);
5a580b3a 7433
eea6121a 7434 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5a580b3a
AM
7435
7436 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
7437 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
7438 return FALSE;
7439 }
7440
7441 return TRUE;
7442}
4d269e42 7443\f
4d269e42
AM
7444/* Make sure sec_info_type is cleared if sec_info is cleared too. */
7445
7446static void
7447merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
7448 asection *sec)
7449{
dbaa2011
AM
7450 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
7451 sec->sec_info_type = SEC_INFO_TYPE_NONE;
4d269e42
AM
7452}
7453
7454/* Finish SHF_MERGE section merging. */
7455
7456bfd_boolean
630993ec 7457_bfd_elf_merge_sections (bfd *obfd, struct bfd_link_info *info)
4d269e42
AM
7458{
7459 bfd *ibfd;
7460 asection *sec;
7461
7462 if (!is_elf_hash_table (info->hash))
7463 return FALSE;
7464
c72f2fb2 7465 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
630993ec
AM
7466 if ((ibfd->flags & DYNAMIC) == 0
7467 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
017e6bce
AM
7468 && (elf_elfheader (ibfd)->e_ident[EI_CLASS]
7469 == get_elf_backend_data (obfd)->s->elfclass))
4d269e42
AM
7470 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
7471 if ((sec->flags & SEC_MERGE) != 0
7472 && !bfd_is_abs_section (sec->output_section))
7473 {
7474 struct bfd_elf_section_data *secdata;
7475
7476 secdata = elf_section_data (sec);
630993ec 7477 if (! _bfd_add_merge_section (obfd,
4d269e42
AM
7478 &elf_hash_table (info)->merge_info,
7479 sec, &secdata->sec_info))
7480 return FALSE;
7481 else if (secdata->sec_info)
dbaa2011 7482 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
4d269e42
AM
7483 }
7484
7485 if (elf_hash_table (info)->merge_info != NULL)
630993ec 7486 _bfd_merge_sections (obfd, info, elf_hash_table (info)->merge_info,
4d269e42
AM
7487 merge_sections_remove_hook);
7488 return TRUE;
7489}
7490
7491/* Create an entry in an ELF linker hash table. */
7492
7493struct bfd_hash_entry *
7494_bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
7495 struct bfd_hash_table *table,
7496 const char *string)
7497{
7498 /* Allocate the structure if it has not already been allocated by a
7499 subclass. */
7500 if (entry == NULL)
7501 {
a50b1753 7502 entry = (struct bfd_hash_entry *)
ca4be51c 7503 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
4d269e42
AM
7504 if (entry == NULL)
7505 return entry;
7506 }
7507
7508 /* Call the allocation method of the superclass. */
7509 entry = _bfd_link_hash_newfunc (entry, table, string);
7510 if (entry != NULL)
7511 {
7512 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
7513 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
7514
7515 /* Set local fields. */
7516 ret->indx = -1;
7517 ret->dynindx = -1;
7518 ret->got = htab->init_got_refcount;
7519 ret->plt = htab->init_plt_refcount;
7520 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
7521 - offsetof (struct elf_link_hash_entry, size)));
7522 /* Assume that we have been called by a non-ELF symbol reader.
7523 This flag is then reset by the code which reads an ELF input
7524 file. This ensures that a symbol created by a non-ELF symbol
7525 reader will have the flag set correctly. */
7526 ret->non_elf = 1;
7527 }
7528
7529 return entry;
7530}
7531
7532/* Copy data from an indirect symbol to its direct symbol, hiding the
7533 old indirect symbol. Also used for copying flags to a weakdef. */
7534
7535void
7536_bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
7537 struct elf_link_hash_entry *dir,
7538 struct elf_link_hash_entry *ind)
7539{
7540 struct elf_link_hash_table *htab;
7541
7542 /* Copy down any references that we may have already seen to the
e81830c5 7543 symbol which just became indirect. */
4d269e42 7544
422f1182 7545 if (dir->versioned != versioned_hidden)
e81830c5
AM
7546 dir->ref_dynamic |= ind->ref_dynamic;
7547 dir->ref_regular |= ind->ref_regular;
7548 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
7549 dir->non_got_ref |= ind->non_got_ref;
7550 dir->needs_plt |= ind->needs_plt;
7551 dir->pointer_equality_needed |= ind->pointer_equality_needed;
4d269e42
AM
7552
7553 if (ind->root.type != bfd_link_hash_indirect)
7554 return;
7555
7556 /* Copy over the global and procedure linkage table refcount entries.
7557 These may have been already set up by a check_relocs routine. */
7558 htab = elf_hash_table (info);
7559 if (ind->got.refcount > htab->init_got_refcount.refcount)
7560 {
7561 if (dir->got.refcount < 0)
7562 dir->got.refcount = 0;
7563 dir->got.refcount += ind->got.refcount;
7564 ind->got.refcount = htab->init_got_refcount.refcount;
7565 }
7566
7567 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
7568 {
7569 if (dir->plt.refcount < 0)
7570 dir->plt.refcount = 0;
7571 dir->plt.refcount += ind->plt.refcount;
7572 ind->plt.refcount = htab->init_plt_refcount.refcount;
7573 }
7574
7575 if (ind->dynindx != -1)
7576 {
7577 if (dir->dynindx != -1)
7578 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
7579 dir->dynindx = ind->dynindx;
7580 dir->dynstr_index = ind->dynstr_index;
7581 ind->dynindx = -1;
7582 ind->dynstr_index = 0;
7583 }
7584}
7585
7586void
7587_bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
7588 struct elf_link_hash_entry *h,
7589 bfd_boolean force_local)
7590{
3aa14d16
L
7591 /* STT_GNU_IFUNC symbol must go through PLT. */
7592 if (h->type != STT_GNU_IFUNC)
7593 {
7594 h->plt = elf_hash_table (info)->init_plt_offset;
7595 h->needs_plt = 0;
7596 }
4d269e42
AM
7597 if (force_local)
7598 {
7599 h->forced_local = 1;
7600 if (h->dynindx != -1)
7601 {
4d269e42
AM
7602 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
7603 h->dynstr_index);
641338d8
AM
7604 h->dynindx = -1;
7605 h->dynstr_index = 0;
4d269e42
AM
7606 }
7607 }
7608}
7609
34a87bb0
L
7610/* Hide a symbol. */
7611
7612void
7613_bfd_elf_link_hide_symbol (bfd *output_bfd,
7614 struct bfd_link_info *info,
7615 struct bfd_link_hash_entry *h)
7616{
7617 if (is_elf_hash_table (info->hash))
7618 {
7619 const struct elf_backend_data *bed
7620 = get_elf_backend_data (output_bfd);
7621 struct elf_link_hash_entry *eh
7622 = (struct elf_link_hash_entry *) h;
7623 bed->elf_backend_hide_symbol (info, eh, TRUE);
7624 eh->def_dynamic = 0;
7625 eh->ref_dynamic = 0;
7626 eh->dynamic_def = 0;
7627 }
7628}
7629
7bf52ea2
AM
7630/* Initialize an ELF linker hash table. *TABLE has been zeroed by our
7631 caller. */
4d269e42
AM
7632
7633bfd_boolean
7634_bfd_elf_link_hash_table_init
7635 (struct elf_link_hash_table *table,
7636 bfd *abfd,
7637 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
7638 struct bfd_hash_table *,
7639 const char *),
4dfe6ac6
NC
7640 unsigned int entsize,
7641 enum elf_target_id target_id)
4d269e42
AM
7642{
7643 bfd_boolean ret;
7644 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
7645
4d269e42
AM
7646 table->init_got_refcount.refcount = can_refcount - 1;
7647 table->init_plt_refcount.refcount = can_refcount - 1;
7648 table->init_got_offset.offset = -(bfd_vma) 1;
7649 table->init_plt_offset.offset = -(bfd_vma) 1;
7650 /* The first dynamic symbol is a dummy. */
7651 table->dynsymcount = 1;
7652
7653 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
4dfe6ac6 7654
4d269e42 7655 table->root.type = bfd_link_elf_hash_table;
4dfe6ac6 7656 table->hash_table_id = target_id;
4d269e42
AM
7657
7658 return ret;
7659}
7660
7661/* Create an ELF linker hash table. */
7662
7663struct bfd_link_hash_table *
7664_bfd_elf_link_hash_table_create (bfd *abfd)
7665{
7666 struct elf_link_hash_table *ret;
7667 bfd_size_type amt = sizeof (struct elf_link_hash_table);
7668
7bf52ea2 7669 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
4d269e42
AM
7670 if (ret == NULL)
7671 return NULL;
7672
7673 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
4dfe6ac6
NC
7674 sizeof (struct elf_link_hash_entry),
7675 GENERIC_ELF_DATA))
4d269e42
AM
7676 {
7677 free (ret);
7678 return NULL;
7679 }
d495ab0d 7680 ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
4d269e42
AM
7681
7682 return &ret->root;
7683}
7684
9f7c3e5e
AM
7685/* Destroy an ELF linker hash table. */
7686
7687void
d495ab0d 7688_bfd_elf_link_hash_table_free (bfd *obfd)
9f7c3e5e 7689{
d495ab0d
AM
7690 struct elf_link_hash_table *htab;
7691
7692 htab = (struct elf_link_hash_table *) obfd->link.hash;
9f7c3e5e
AM
7693 if (htab->dynstr != NULL)
7694 _bfd_elf_strtab_free (htab->dynstr);
7695 _bfd_merge_sections_free (htab->merge_info);
d495ab0d 7696 _bfd_generic_link_hash_table_free (obfd);
9f7c3e5e
AM
7697}
7698
4d269e42
AM
7699/* This is a hook for the ELF emulation code in the generic linker to
7700 tell the backend linker what file name to use for the DT_NEEDED
7701 entry for a dynamic object. */
7702
7703void
7704bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
7705{
7706 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7707 && bfd_get_format (abfd) == bfd_object)
7708 elf_dt_name (abfd) = name;
7709}
7710
7711int
7712bfd_elf_get_dyn_lib_class (bfd *abfd)
7713{
7714 int lib_class;
7715 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7716 && bfd_get_format (abfd) == bfd_object)
7717 lib_class = elf_dyn_lib_class (abfd);
7718 else
7719 lib_class = 0;
7720 return lib_class;
7721}
7722
7723void
7724bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
7725{
7726 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7727 && bfd_get_format (abfd) == bfd_object)
7728 elf_dyn_lib_class (abfd) = lib_class;
7729}
7730
7731/* Get the list of DT_NEEDED entries for a link. This is a hook for
7732 the linker ELF emulation code. */
7733
7734struct bfd_link_needed_list *
7735bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
7736 struct bfd_link_info *info)
7737{
7738 if (! is_elf_hash_table (info->hash))
7739 return NULL;
7740 return elf_hash_table (info)->needed;
7741}
7742
7743/* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
7744 hook for the linker ELF emulation code. */
7745
7746struct bfd_link_needed_list *
7747bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
7748 struct bfd_link_info *info)
7749{
7750 if (! is_elf_hash_table (info->hash))
7751 return NULL;
7752 return elf_hash_table (info)->runpath;
7753}
7754
7755/* Get the name actually used for a dynamic object for a link. This
7756 is the SONAME entry if there is one. Otherwise, it is the string
7757 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
7758
7759const char *
7760bfd_elf_get_dt_soname (bfd *abfd)
7761{
7762 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7763 && bfd_get_format (abfd) == bfd_object)
7764 return elf_dt_name (abfd);
7765 return NULL;
7766}
7767
7768/* Get the list of DT_NEEDED entries from a BFD. This is a hook for
7769 the ELF linker emulation code. */
7770
7771bfd_boolean
7772bfd_elf_get_bfd_needed_list (bfd *abfd,
7773 struct bfd_link_needed_list **pneeded)
7774{
7775 asection *s;
7776 bfd_byte *dynbuf = NULL;
cb33740c 7777 unsigned int elfsec;
4d269e42
AM
7778 unsigned long shlink;
7779 bfd_byte *extdyn, *extdynend;
7780 size_t extdynsize;
7781 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
7782
7783 *pneeded = NULL;
7784
7785 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
7786 || bfd_get_format (abfd) != bfd_object)
7787 return TRUE;
7788
7789 s = bfd_get_section_by_name (abfd, ".dynamic");
7790 if (s == NULL || s->size == 0)
7791 return TRUE;
7792
7793 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
7794 goto error_return;
7795
7796 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 7797 if (elfsec == SHN_BAD)
4d269e42
AM
7798 goto error_return;
7799
7800 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
c152c796 7801
4d269e42
AM
7802 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7803 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7804
7805 extdyn = dynbuf;
7806 extdynend = extdyn + s->size;
7807 for (; extdyn < extdynend; extdyn += extdynsize)
7808 {
7809 Elf_Internal_Dyn dyn;
7810
7811 (*swap_dyn_in) (abfd, extdyn, &dyn);
7812
7813 if (dyn.d_tag == DT_NULL)
7814 break;
7815
7816 if (dyn.d_tag == DT_NEEDED)
7817 {
7818 const char *string;
7819 struct bfd_link_needed_list *l;
7820 unsigned int tagv = dyn.d_un.d_val;
7821 bfd_size_type amt;
7822
7823 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7824 if (string == NULL)
7825 goto error_return;
7826
7827 amt = sizeof *l;
a50b1753 7828 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4d269e42
AM
7829 if (l == NULL)
7830 goto error_return;
7831
7832 l->by = abfd;
7833 l->name = string;
7834 l->next = *pneeded;
7835 *pneeded = l;
7836 }
7837 }
7838
7839 free (dynbuf);
7840
7841 return TRUE;
7842
7843 error_return:
7844 if (dynbuf != NULL)
7845 free (dynbuf);
7846 return FALSE;
7847}
7848
7849struct elf_symbuf_symbol
7850{
7851 unsigned long st_name; /* Symbol name, index in string tbl */
7852 unsigned char st_info; /* Type and binding attributes */
7853 unsigned char st_other; /* Visibilty, and target specific */
7854};
7855
7856struct elf_symbuf_head
7857{
7858 struct elf_symbuf_symbol *ssym;
ef53be89 7859 size_t count;
4d269e42
AM
7860 unsigned int st_shndx;
7861};
7862
7863struct elf_symbol
7864{
7865 union
7866 {
7867 Elf_Internal_Sym *isym;
7868 struct elf_symbuf_symbol *ssym;
7869 } u;
7870 const char *name;
7871};
7872
7873/* Sort references to symbols by ascending section number. */
7874
7875static int
7876elf_sort_elf_symbol (const void *arg1, const void *arg2)
7877{
7878 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7879 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7880
7881 return s1->st_shndx - s2->st_shndx;
7882}
7883
7884static int
7885elf_sym_name_compare (const void *arg1, const void *arg2)
7886{
7887 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7888 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7889 return strcmp (s1->name, s2->name);
7890}
7891
7892static struct elf_symbuf_head *
ef53be89 7893elf_create_symbuf (size_t symcount, Elf_Internal_Sym *isymbuf)
4d269e42 7894{
14b1c01e 7895 Elf_Internal_Sym **ind, **indbufend, **indbuf;
4d269e42
AM
7896 struct elf_symbuf_symbol *ssym;
7897 struct elf_symbuf_head *ssymbuf, *ssymhead;
ef53be89 7898 size_t i, shndx_count, total_size;
4d269e42 7899
a50b1753 7900 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
4d269e42
AM
7901 if (indbuf == NULL)
7902 return NULL;
7903
7904 for (ind = indbuf, i = 0; i < symcount; i++)
7905 if (isymbuf[i].st_shndx != SHN_UNDEF)
7906 *ind++ = &isymbuf[i];
7907 indbufend = ind;
7908
7909 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7910 elf_sort_elf_symbol);
7911
7912 shndx_count = 0;
7913 if (indbufend > indbuf)
7914 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7915 if (ind[0]->st_shndx != ind[1]->st_shndx)
7916 shndx_count++;
7917
3ae181ee
L
7918 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7919 + (indbufend - indbuf) * sizeof (*ssym));
a50b1753 7920 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
4d269e42
AM
7921 if (ssymbuf == NULL)
7922 {
7923 free (indbuf);
7924 return NULL;
7925 }
7926
3ae181ee 7927 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
4d269e42
AM
7928 ssymbuf->ssym = NULL;
7929 ssymbuf->count = shndx_count;
7930 ssymbuf->st_shndx = 0;
7931 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7932 {
7933 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7934 {
7935 ssymhead++;
7936 ssymhead->ssym = ssym;
7937 ssymhead->count = 0;
7938 ssymhead->st_shndx = (*ind)->st_shndx;
7939 }
7940 ssym->st_name = (*ind)->st_name;
7941 ssym->st_info = (*ind)->st_info;
7942 ssym->st_other = (*ind)->st_other;
7943 ssymhead->count++;
7944 }
ef53be89 7945 BFD_ASSERT ((size_t) (ssymhead - ssymbuf) == shndx_count
3ae181ee
L
7946 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7947 == total_size));
4d269e42
AM
7948
7949 free (indbuf);
7950 return ssymbuf;
7951}
7952
7953/* Check if 2 sections define the same set of local and global
7954 symbols. */
7955
8f317e31 7956static bfd_boolean
4d269e42
AM
7957bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7958 struct bfd_link_info *info)
7959{
7960 bfd *bfd1, *bfd2;
7961 const struct elf_backend_data *bed1, *bed2;
7962 Elf_Internal_Shdr *hdr1, *hdr2;
ef53be89 7963 size_t symcount1, symcount2;
4d269e42
AM
7964 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7965 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7966 Elf_Internal_Sym *isym, *isymend;
7967 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
ef53be89 7968 size_t count1, count2, i;
cb33740c 7969 unsigned int shndx1, shndx2;
4d269e42
AM
7970 bfd_boolean result;
7971
7972 bfd1 = sec1->owner;
7973 bfd2 = sec2->owner;
7974
4d269e42
AM
7975 /* Both sections have to be in ELF. */
7976 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7977 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7978 return FALSE;
7979
7980 if (elf_section_type (sec1) != elf_section_type (sec2))
7981 return FALSE;
7982
4d269e42
AM
7983 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7984 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
cb33740c 7985 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
4d269e42
AM
7986 return FALSE;
7987
7988 bed1 = get_elf_backend_data (bfd1);
7989 bed2 = get_elf_backend_data (bfd2);
7990 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7991 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7992 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7993 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7994
7995 if (symcount1 == 0 || symcount2 == 0)
7996 return FALSE;
7997
7998 result = FALSE;
7999 isymbuf1 = NULL;
8000 isymbuf2 = NULL;
a50b1753
NC
8001 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
8002 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
4d269e42
AM
8003
8004 if (ssymbuf1 == NULL)
8005 {
8006 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
8007 NULL, NULL, NULL);
8008 if (isymbuf1 == NULL)
8009 goto done;
8010
8011 if (!info->reduce_memory_overheads)
8012 elf_tdata (bfd1)->symbuf = ssymbuf1
8013 = elf_create_symbuf (symcount1, isymbuf1);
8014 }
8015
8016 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
8017 {
8018 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
8019 NULL, NULL, NULL);
8020 if (isymbuf2 == NULL)
8021 goto done;
8022
8023 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
8024 elf_tdata (bfd2)->symbuf = ssymbuf2
8025 = elf_create_symbuf (symcount2, isymbuf2);
8026 }
8027
8028 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
8029 {
8030 /* Optimized faster version. */
ef53be89 8031 size_t lo, hi, mid;
4d269e42
AM
8032 struct elf_symbol *symp;
8033 struct elf_symbuf_symbol *ssym, *ssymend;
8034
8035 lo = 0;
8036 hi = ssymbuf1->count;
8037 ssymbuf1++;
8038 count1 = 0;
8039 while (lo < hi)
8040 {
8041 mid = (lo + hi) / 2;
cb33740c 8042 if (shndx1 < ssymbuf1[mid].st_shndx)
4d269e42 8043 hi = mid;
cb33740c 8044 else if (shndx1 > ssymbuf1[mid].st_shndx)
4d269e42
AM
8045 lo = mid + 1;
8046 else
8047 {
8048 count1 = ssymbuf1[mid].count;
8049 ssymbuf1 += mid;
8050 break;
8051 }
8052 }
8053
8054 lo = 0;
8055 hi = ssymbuf2->count;
8056 ssymbuf2++;
8057 count2 = 0;
8058 while (lo < hi)
8059 {
8060 mid = (lo + hi) / 2;
cb33740c 8061 if (shndx2 < ssymbuf2[mid].st_shndx)
4d269e42 8062 hi = mid;
cb33740c 8063 else if (shndx2 > ssymbuf2[mid].st_shndx)
4d269e42
AM
8064 lo = mid + 1;
8065 else
8066 {
8067 count2 = ssymbuf2[mid].count;
8068 ssymbuf2 += mid;
8069 break;
8070 }
8071 }
8072
8073 if (count1 == 0 || count2 == 0 || count1 != count2)
8074 goto done;
8075
ca4be51c
AM
8076 symtable1
8077 = (struct elf_symbol *) bfd_malloc (count1 * sizeof (*symtable1));
8078 symtable2
8079 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
4d269e42
AM
8080 if (symtable1 == NULL || symtable2 == NULL)
8081 goto done;
8082
8083 symp = symtable1;
8084 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
8085 ssym < ssymend; ssym++, symp++)
8086 {
8087 symp->u.ssym = ssym;
8088 symp->name = bfd_elf_string_from_elf_section (bfd1,
8089 hdr1->sh_link,
8090 ssym->st_name);
8091 }
8092
8093 symp = symtable2;
8094 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
8095 ssym < ssymend; ssym++, symp++)
8096 {
8097 symp->u.ssym = ssym;
8098 symp->name = bfd_elf_string_from_elf_section (bfd2,
8099 hdr2->sh_link,
8100 ssym->st_name);
8101 }
8102
8103 /* Sort symbol by name. */
8104 qsort (symtable1, count1, sizeof (struct elf_symbol),
8105 elf_sym_name_compare);
8106 qsort (symtable2, count1, sizeof (struct elf_symbol),
8107 elf_sym_name_compare);
8108
8109 for (i = 0; i < count1; i++)
8110 /* Two symbols must have the same binding, type and name. */
8111 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
8112 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
8113 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8114 goto done;
8115
8116 result = TRUE;
8117 goto done;
8118 }
8119
a50b1753
NC
8120 symtable1 = (struct elf_symbol *)
8121 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
8122 symtable2 = (struct elf_symbol *)
8123 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
4d269e42
AM
8124 if (symtable1 == NULL || symtable2 == NULL)
8125 goto done;
8126
8127 /* Count definitions in the section. */
8128 count1 = 0;
8129 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
cb33740c 8130 if (isym->st_shndx == shndx1)
4d269e42
AM
8131 symtable1[count1++].u.isym = isym;
8132
8133 count2 = 0;
8134 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
cb33740c 8135 if (isym->st_shndx == shndx2)
4d269e42
AM
8136 symtable2[count2++].u.isym = isym;
8137
8138 if (count1 == 0 || count2 == 0 || count1 != count2)
8139 goto done;
8140
8141 for (i = 0; i < count1; i++)
8142 symtable1[i].name
8143 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
8144 symtable1[i].u.isym->st_name);
8145
8146 for (i = 0; i < count2; i++)
8147 symtable2[i].name
8148 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
8149 symtable2[i].u.isym->st_name);
8150
8151 /* Sort symbol by name. */
8152 qsort (symtable1, count1, sizeof (struct elf_symbol),
8153 elf_sym_name_compare);
8154 qsort (symtable2, count1, sizeof (struct elf_symbol),
8155 elf_sym_name_compare);
8156
8157 for (i = 0; i < count1; i++)
8158 /* Two symbols must have the same binding, type and name. */
8159 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
8160 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
8161 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
8162 goto done;
8163
8164 result = TRUE;
8165
8166done:
8167 if (symtable1)
8168 free (symtable1);
8169 if (symtable2)
8170 free (symtable2);
8171 if (isymbuf1)
8172 free (isymbuf1);
8173 if (isymbuf2)
8174 free (isymbuf2);
8175
8176 return result;
8177}
8178
8179/* Return TRUE if 2 section types are compatible. */
8180
8181bfd_boolean
8182_bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
8183 bfd *bbfd, const asection *bsec)
8184{
8185 if (asec == NULL
8186 || bsec == NULL
8187 || abfd->xvec->flavour != bfd_target_elf_flavour
8188 || bbfd->xvec->flavour != bfd_target_elf_flavour)
8189 return TRUE;
8190
8191 return elf_section_type (asec) == elf_section_type (bsec);
8192}
8193\f
c152c796
AM
8194/* Final phase of ELF linker. */
8195
8196/* A structure we use to avoid passing large numbers of arguments. */
8197
8198struct elf_final_link_info
8199{
8200 /* General link information. */
8201 struct bfd_link_info *info;
8202 /* Output BFD. */
8203 bfd *output_bfd;
8204 /* Symbol string table. */
ef10c3ac 8205 struct elf_strtab_hash *symstrtab;
c152c796
AM
8206 /* .hash section. */
8207 asection *hash_sec;
8208 /* symbol version section (.gnu.version). */
8209 asection *symver_sec;
8210 /* Buffer large enough to hold contents of any section. */
8211 bfd_byte *contents;
8212 /* Buffer large enough to hold external relocs of any section. */
8213 void *external_relocs;
8214 /* Buffer large enough to hold internal relocs of any section. */
8215 Elf_Internal_Rela *internal_relocs;
8216 /* Buffer large enough to hold external local symbols of any input
8217 BFD. */
8218 bfd_byte *external_syms;
8219 /* And a buffer for symbol section indices. */
8220 Elf_External_Sym_Shndx *locsym_shndx;
8221 /* Buffer large enough to hold internal local symbols of any input
8222 BFD. */
8223 Elf_Internal_Sym *internal_syms;
8224 /* Array large enough to hold a symbol index for each local symbol
8225 of any input BFD. */
8226 long *indices;
8227 /* Array large enough to hold a section pointer for each local
8228 symbol of any input BFD. */
8229 asection **sections;
ef10c3ac 8230 /* Buffer for SHT_SYMTAB_SHNDX section. */
c152c796 8231 Elf_External_Sym_Shndx *symshndxbuf;
ffbc01cc
AM
8232 /* Number of STT_FILE syms seen. */
8233 size_t filesym_count;
c152c796
AM
8234};
8235
8236/* This struct is used to pass information to elf_link_output_extsym. */
8237
8238struct elf_outext_info
8239{
8240 bfd_boolean failed;
8241 bfd_boolean localsyms;
34a79995 8242 bfd_boolean file_sym_done;
8b127cbc 8243 struct elf_final_link_info *flinfo;
c152c796
AM
8244};
8245
d9352518
DB
8246
8247/* Support for evaluating a complex relocation.
8248
8249 Complex relocations are generalized, self-describing relocations. The
8250 implementation of them consists of two parts: complex symbols, and the
a0c8462f 8251 relocations themselves.
d9352518
DB
8252
8253 The relocations are use a reserved elf-wide relocation type code (R_RELC
8254 external / BFD_RELOC_RELC internal) and an encoding of relocation field
8255 information (start bit, end bit, word width, etc) into the addend. This
8256 information is extracted from CGEN-generated operand tables within gas.
8257
8258 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
8259 internal) representing prefix-notation expressions, including but not
8260 limited to those sorts of expressions normally encoded as addends in the
8261 addend field. The symbol mangling format is:
8262
8263 <node> := <literal>
07d6d2b8
AM
8264 | <unary-operator> ':' <node>
8265 | <binary-operator> ':' <node> ':' <node>
d9352518
DB
8266 ;
8267
8268 <literal> := 's' <digits=N> ':' <N character symbol name>
07d6d2b8 8269 | 'S' <digits=N> ':' <N character section name>
d9352518
DB
8270 | '#' <hexdigits>
8271 ;
8272
8273 <binary-operator> := as in C
8274 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
8275
8276static void
a0c8462f
AM
8277set_symbol_value (bfd *bfd_with_globals,
8278 Elf_Internal_Sym *isymbuf,
8279 size_t locsymcount,
8280 size_t symidx,
8281 bfd_vma val)
d9352518 8282{
8977835c
AM
8283 struct elf_link_hash_entry **sym_hashes;
8284 struct elf_link_hash_entry *h;
8285 size_t extsymoff = locsymcount;
d9352518 8286
8977835c 8287 if (symidx < locsymcount)
d9352518 8288 {
8977835c
AM
8289 Elf_Internal_Sym *sym;
8290
8291 sym = isymbuf + symidx;
8292 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
8293 {
8294 /* It is a local symbol: move it to the
8295 "absolute" section and give it a value. */
8296 sym->st_shndx = SHN_ABS;
8297 sym->st_value = val;
8298 return;
8299 }
8300 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
8301 extsymoff = 0;
d9352518 8302 }
8977835c
AM
8303
8304 /* It is a global symbol: set its link type
8305 to "defined" and give it a value. */
8306
8307 sym_hashes = elf_sym_hashes (bfd_with_globals);
8308 h = sym_hashes [symidx - extsymoff];
8309 while (h->root.type == bfd_link_hash_indirect
8310 || h->root.type == bfd_link_hash_warning)
8311 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8312 h->root.type = bfd_link_hash_defined;
8313 h->root.u.def.value = val;
8314 h->root.u.def.section = bfd_abs_section_ptr;
d9352518
DB
8315}
8316
a0c8462f
AM
8317static bfd_boolean
8318resolve_symbol (const char *name,
8319 bfd *input_bfd,
8b127cbc 8320 struct elf_final_link_info *flinfo,
a0c8462f
AM
8321 bfd_vma *result,
8322 Elf_Internal_Sym *isymbuf,
8323 size_t locsymcount)
d9352518 8324{
a0c8462f
AM
8325 Elf_Internal_Sym *sym;
8326 struct bfd_link_hash_entry *global_entry;
8327 const char *candidate = NULL;
8328 Elf_Internal_Shdr *symtab_hdr;
8329 size_t i;
8330
d9352518
DB
8331 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
8332
8333 for (i = 0; i < locsymcount; ++ i)
8334 {
8977835c 8335 sym = isymbuf + i;
d9352518
DB
8336
8337 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
8338 continue;
8339
8340 candidate = bfd_elf_string_from_elf_section (input_bfd,
8341 symtab_hdr->sh_link,
8342 sym->st_name);
8343#ifdef DEBUG
0f02bbd9
AM
8344 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
8345 name, candidate, (unsigned long) sym->st_value);
d9352518
DB
8346#endif
8347 if (candidate && strcmp (candidate, name) == 0)
8348 {
8b127cbc 8349 asection *sec = flinfo->sections [i];
d9352518 8350
0f02bbd9
AM
8351 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
8352 *result += sec->output_offset + sec->output_section->vma;
d9352518 8353#ifdef DEBUG
0f02bbd9
AM
8354 printf ("Found symbol with value %8.8lx\n",
8355 (unsigned long) *result);
d9352518
DB
8356#endif
8357 return TRUE;
8358 }
8359 }
8360
8361 /* Hmm, haven't found it yet. perhaps it is a global. */
8b127cbc 8362 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
a0c8462f 8363 FALSE, FALSE, TRUE);
d9352518
DB
8364 if (!global_entry)
8365 return FALSE;
a0c8462f 8366
d9352518
DB
8367 if (global_entry->type == bfd_link_hash_defined
8368 || global_entry->type == bfd_link_hash_defweak)
8369 {
a0c8462f
AM
8370 *result = (global_entry->u.def.value
8371 + global_entry->u.def.section->output_section->vma
8372 + global_entry->u.def.section->output_offset);
d9352518 8373#ifdef DEBUG
0f02bbd9
AM
8374 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
8375 global_entry->root.string, (unsigned long) *result);
d9352518
DB
8376#endif
8377 return TRUE;
a0c8462f 8378 }
d9352518 8379
d9352518
DB
8380 return FALSE;
8381}
8382
37b01f6a
DG
8383/* Looks up NAME in SECTIONS. If found sets RESULT to NAME's address (in
8384 bytes) and returns TRUE, otherwise returns FALSE. Accepts pseudo-section
8385 names like "foo.end" which is the end address of section "foo". */
07d6d2b8 8386
d9352518 8387static bfd_boolean
a0c8462f
AM
8388resolve_section (const char *name,
8389 asection *sections,
37b01f6a
DG
8390 bfd_vma *result,
8391 bfd * abfd)
d9352518 8392{
a0c8462f
AM
8393 asection *curr;
8394 unsigned int len;
d9352518 8395
a0c8462f 8396 for (curr = sections; curr; curr = curr->next)
d9352518
DB
8397 if (strcmp (curr->name, name) == 0)
8398 {
8399 *result = curr->vma;
8400 return TRUE;
8401 }
8402
8403 /* Hmm. still haven't found it. try pseudo-section names. */
37b01f6a 8404 /* FIXME: This could be coded more efficiently... */
a0c8462f 8405 for (curr = sections; curr; curr = curr->next)
d9352518
DB
8406 {
8407 len = strlen (curr->name);
a0c8462f 8408 if (len > strlen (name))
d9352518
DB
8409 continue;
8410
8411 if (strncmp (curr->name, name, len) == 0)
8412 {
8413 if (strncmp (".end", name + len, 4) == 0)
8414 {
37b01f6a 8415 *result = curr->vma + curr->size / bfd_octets_per_byte (abfd);
d9352518
DB
8416 return TRUE;
8417 }
8418
8419 /* Insert more pseudo-section names here, if you like. */
8420 }
8421 }
a0c8462f 8422
d9352518
DB
8423 return FALSE;
8424}
8425
8426static void
a0c8462f 8427undefined_reference (const char *reftype, const char *name)
d9352518 8428{
695344c0 8429 /* xgettext:c-format */
a0c8462f
AM
8430 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
8431 reftype, name);
d9352518
DB
8432}
8433
8434static bfd_boolean
a0c8462f
AM
8435eval_symbol (bfd_vma *result,
8436 const char **symp,
8437 bfd *input_bfd,
8b127cbc 8438 struct elf_final_link_info *flinfo,
a0c8462f
AM
8439 bfd_vma dot,
8440 Elf_Internal_Sym *isymbuf,
8441 size_t locsymcount,
8442 int signed_p)
d9352518 8443{
4b93929b
NC
8444 size_t len;
8445 size_t symlen;
a0c8462f
AM
8446 bfd_vma a;
8447 bfd_vma b;
4b93929b 8448 char symbuf[4096];
0f02bbd9 8449 const char *sym = *symp;
a0c8462f
AM
8450 const char *symend;
8451 bfd_boolean symbol_is_section = FALSE;
d9352518
DB
8452
8453 len = strlen (sym);
8454 symend = sym + len;
8455
4b93929b 8456 if (len < 1 || len > sizeof (symbuf))
d9352518
DB
8457 {
8458 bfd_set_error (bfd_error_invalid_operation);
8459 return FALSE;
8460 }
a0c8462f 8461
d9352518
DB
8462 switch (* sym)
8463 {
8464 case '.':
0f02bbd9
AM
8465 *result = dot;
8466 *symp = sym + 1;
d9352518
DB
8467 return TRUE;
8468
8469 case '#':
0f02bbd9
AM
8470 ++sym;
8471 *result = strtoul (sym, (char **) symp, 16);
d9352518
DB
8472 return TRUE;
8473
8474 case 'S':
8475 symbol_is_section = TRUE;
1a0670f3 8476 /* Fall through. */
a0c8462f 8477 case 's':
0f02bbd9
AM
8478 ++sym;
8479 symlen = strtol (sym, (char **) symp, 10);
8480 sym = *symp + 1; /* Skip the trailing ':'. */
d9352518 8481
4b93929b 8482 if (symend < sym || symlen + 1 > sizeof (symbuf))
d9352518
DB
8483 {
8484 bfd_set_error (bfd_error_invalid_operation);
8485 return FALSE;
8486 }
8487
8488 memcpy (symbuf, sym, symlen);
a0c8462f 8489 symbuf[symlen] = '\0';
0f02bbd9 8490 *symp = sym + symlen;
a0c8462f
AM
8491
8492 /* Is it always possible, with complex symbols, that gas "mis-guessed"
d9352518
DB
8493 the symbol as a section, or vice-versa. so we're pretty liberal in our
8494 interpretation here; section means "try section first", not "must be a
8495 section", and likewise with symbol. */
8496
a0c8462f 8497 if (symbol_is_section)
d9352518 8498 {
37b01f6a 8499 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result, input_bfd)
8b127cbc 8500 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 8501 isymbuf, locsymcount))
d9352518
DB
8502 {
8503 undefined_reference ("section", symbuf);
8504 return FALSE;
8505 }
a0c8462f
AM
8506 }
8507 else
d9352518 8508 {
8b127cbc 8509 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 8510 isymbuf, locsymcount)
8b127cbc 8511 && !resolve_section (symbuf, flinfo->output_bfd->sections,
37b01f6a 8512 result, input_bfd))
d9352518
DB
8513 {
8514 undefined_reference ("symbol", symbuf);
8515 return FALSE;
8516 }
8517 }
8518
8519 return TRUE;
a0c8462f 8520
d9352518
DB
8521 /* All that remains are operators. */
8522
8523#define UNARY_OP(op) \
8524 if (strncmp (sym, #op, strlen (#op)) == 0) \
8525 { \
8526 sym += strlen (#op); \
a0c8462f
AM
8527 if (*sym == ':') \
8528 ++sym; \
0f02bbd9 8529 *symp = sym; \
8b127cbc 8530 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 8531 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
8532 return FALSE; \
8533 if (signed_p) \
0f02bbd9 8534 *result = op ((bfd_signed_vma) a); \
a0c8462f
AM
8535 else \
8536 *result = op a; \
d9352518
DB
8537 return TRUE; \
8538 }
8539
8540#define BINARY_OP(op) \
8541 if (strncmp (sym, #op, strlen (#op)) == 0) \
8542 { \
8543 sym += strlen (#op); \
a0c8462f
AM
8544 if (*sym == ':') \
8545 ++sym; \
0f02bbd9 8546 *symp = sym; \
8b127cbc 8547 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 8548 isymbuf, locsymcount, signed_p)) \
a0c8462f 8549 return FALSE; \
0f02bbd9 8550 ++*symp; \
8b127cbc 8551 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
0f02bbd9 8552 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
8553 return FALSE; \
8554 if (signed_p) \
0f02bbd9 8555 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
a0c8462f
AM
8556 else \
8557 *result = a op b; \
d9352518
DB
8558 return TRUE; \
8559 }
8560
8561 default:
8562 UNARY_OP (0-);
8563 BINARY_OP (<<);
8564 BINARY_OP (>>);
8565 BINARY_OP (==);
8566 BINARY_OP (!=);
8567 BINARY_OP (<=);
8568 BINARY_OP (>=);
8569 BINARY_OP (&&);
8570 BINARY_OP (||);
8571 UNARY_OP (~);
8572 UNARY_OP (!);
8573 BINARY_OP (*);
8574 BINARY_OP (/);
8575 BINARY_OP (%);
8576 BINARY_OP (^);
8577 BINARY_OP (|);
8578 BINARY_OP (&);
8579 BINARY_OP (+);
8580 BINARY_OP (-);
8581 BINARY_OP (<);
8582 BINARY_OP (>);
8583#undef UNARY_OP
8584#undef BINARY_OP
8585 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
8586 bfd_set_error (bfd_error_invalid_operation);
8587 return FALSE;
8588 }
8589}
8590
d9352518 8591static void
a0c8462f
AM
8592put_value (bfd_vma size,
8593 unsigned long chunksz,
8594 bfd *input_bfd,
8595 bfd_vma x,
8596 bfd_byte *location)
d9352518
DB
8597{
8598 location += (size - chunksz);
8599
41cd1ad1 8600 for (; size; size -= chunksz, location -= chunksz)
d9352518
DB
8601 {
8602 switch (chunksz)
8603 {
d9352518
DB
8604 case 1:
8605 bfd_put_8 (input_bfd, x, location);
41cd1ad1 8606 x >>= 8;
d9352518
DB
8607 break;
8608 case 2:
8609 bfd_put_16 (input_bfd, x, location);
41cd1ad1 8610 x >>= 16;
d9352518
DB
8611 break;
8612 case 4:
8613 bfd_put_32 (input_bfd, x, location);
65164438
NC
8614 /* Computed this way because x >>= 32 is undefined if x is a 32-bit value. */
8615 x >>= 16;
8616 x >>= 16;
d9352518 8617 break;
d9352518 8618#ifdef BFD64
41cd1ad1 8619 case 8:
d9352518 8620 bfd_put_64 (input_bfd, x, location);
41cd1ad1
NC
8621 /* Computed this way because x >>= 64 is undefined if x is a 64-bit value. */
8622 x >>= 32;
8623 x >>= 32;
8624 break;
d9352518 8625#endif
41cd1ad1
NC
8626 default:
8627 abort ();
d9352518
DB
8628 break;
8629 }
8630 }
8631}
8632
a0c8462f
AM
8633static bfd_vma
8634get_value (bfd_vma size,
8635 unsigned long chunksz,
8636 bfd *input_bfd,
8637 bfd_byte *location)
d9352518 8638{
9b239e0e 8639 int shift;
d9352518
DB
8640 bfd_vma x = 0;
8641
9b239e0e
NC
8642 /* Sanity checks. */
8643 BFD_ASSERT (chunksz <= sizeof (x)
8644 && size >= chunksz
8645 && chunksz != 0
8646 && (size % chunksz) == 0
8647 && input_bfd != NULL
8648 && location != NULL);
8649
8650 if (chunksz == sizeof (x))
8651 {
8652 BFD_ASSERT (size == chunksz);
8653
8654 /* Make sure that we do not perform an undefined shift operation.
8655 We know that size == chunksz so there will only be one iteration
8656 of the loop below. */
8657 shift = 0;
8658 }
8659 else
8660 shift = 8 * chunksz;
8661
a0c8462f 8662 for (; size; size -= chunksz, location += chunksz)
d9352518
DB
8663 {
8664 switch (chunksz)
8665 {
d9352518 8666 case 1:
9b239e0e 8667 x = (x << shift) | bfd_get_8 (input_bfd, location);
d9352518
DB
8668 break;
8669 case 2:
9b239e0e 8670 x = (x << shift) | bfd_get_16 (input_bfd, location);
d9352518
DB
8671 break;
8672 case 4:
9b239e0e 8673 x = (x << shift) | bfd_get_32 (input_bfd, location);
d9352518 8674 break;
d9352518 8675#ifdef BFD64
9b239e0e
NC
8676 case 8:
8677 x = (x << shift) | bfd_get_64 (input_bfd, location);
d9352518 8678 break;
9b239e0e
NC
8679#endif
8680 default:
8681 abort ();
d9352518
DB
8682 }
8683 }
8684 return x;
8685}
8686
a0c8462f
AM
8687static void
8688decode_complex_addend (unsigned long *start, /* in bits */
8689 unsigned long *oplen, /* in bits */
8690 unsigned long *len, /* in bits */
8691 unsigned long *wordsz, /* in bytes */
8692 unsigned long *chunksz, /* in bytes */
8693 unsigned long *lsb0_p,
8694 unsigned long *signed_p,
8695 unsigned long *trunc_p,
8696 unsigned long encoded)
d9352518 8697{
07d6d2b8
AM
8698 * start = encoded & 0x3F;
8699 * len = (encoded >> 6) & 0x3F;
d9352518
DB
8700 * oplen = (encoded >> 12) & 0x3F;
8701 * wordsz = (encoded >> 18) & 0xF;
8702 * chunksz = (encoded >> 22) & 0xF;
8703 * lsb0_p = (encoded >> 27) & 1;
8704 * signed_p = (encoded >> 28) & 1;
8705 * trunc_p = (encoded >> 29) & 1;
8706}
8707
cdfeee4f 8708bfd_reloc_status_type
0f02bbd9 8709bfd_elf_perform_complex_relocation (bfd *input_bfd,
cdfeee4f 8710 asection *input_section ATTRIBUTE_UNUSED,
0f02bbd9
AM
8711 bfd_byte *contents,
8712 Elf_Internal_Rela *rel,
8713 bfd_vma relocation)
d9352518 8714{
0f02bbd9
AM
8715 bfd_vma shift, x, mask;
8716 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
cdfeee4f 8717 bfd_reloc_status_type r;
d9352518
DB
8718
8719 /* Perform this reloc, since it is complex.
8720 (this is not to say that it necessarily refers to a complex
8721 symbol; merely that it is a self-describing CGEN based reloc.
8722 i.e. the addend has the complete reloc information (bit start, end,
a0c8462f 8723 word size, etc) encoded within it.). */
d9352518 8724
a0c8462f
AM
8725 decode_complex_addend (&start, &oplen, &len, &wordsz,
8726 &chunksz, &lsb0_p, &signed_p,
8727 &trunc_p, rel->r_addend);
d9352518
DB
8728
8729 mask = (((1L << (len - 1)) - 1) << 1) | 1;
8730
8731 if (lsb0_p)
8732 shift = (start + 1) - len;
8733 else
8734 shift = (8 * wordsz) - (start + len);
8735
37b01f6a
DG
8736 x = get_value (wordsz, chunksz, input_bfd,
8737 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
d9352518
DB
8738
8739#ifdef DEBUG
8740 printf ("Doing complex reloc: "
8741 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
8742 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
8743 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
8744 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
9ccb8af9
AM
8745 oplen, (unsigned long) x, (unsigned long) mask,
8746 (unsigned long) relocation);
d9352518
DB
8747#endif
8748
cdfeee4f 8749 r = bfd_reloc_ok;
d9352518 8750 if (! trunc_p)
cdfeee4f
AM
8751 /* Now do an overflow check. */
8752 r = bfd_check_overflow ((signed_p
8753 ? complain_overflow_signed
8754 : complain_overflow_unsigned),
8755 len, 0, (8 * wordsz),
8756 relocation);
a0c8462f 8757
d9352518
DB
8758 /* Do the deed. */
8759 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
8760
8761#ifdef DEBUG
8762 printf (" relocation: %8.8lx\n"
8763 " shifted mask: %8.8lx\n"
8764 " shifted/masked reloc: %8.8lx\n"
8765 " result: %8.8lx\n",
9ccb8af9
AM
8766 (unsigned long) relocation, (unsigned long) (mask << shift),
8767 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
d9352518 8768#endif
37b01f6a
DG
8769 put_value (wordsz, chunksz, input_bfd, x,
8770 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
cdfeee4f 8771 return r;
d9352518
DB
8772}
8773
0e287786
AM
8774/* Functions to read r_offset from external (target order) reloc
8775 entry. Faster than bfd_getl32 et al, because we let the compiler
8776 know the value is aligned. */
53df40a4 8777
0e287786
AM
8778static bfd_vma
8779ext32l_r_offset (const void *p)
53df40a4
AM
8780{
8781 union aligned32
8782 {
8783 uint32_t v;
8784 unsigned char c[4];
8785 };
8786 const union aligned32 *a
0e287786 8787 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
53df40a4
AM
8788
8789 uint32_t aval = ( (uint32_t) a->c[0]
8790 | (uint32_t) a->c[1] << 8
8791 | (uint32_t) a->c[2] << 16
8792 | (uint32_t) a->c[3] << 24);
0e287786 8793 return aval;
53df40a4
AM
8794}
8795
0e287786
AM
8796static bfd_vma
8797ext32b_r_offset (const void *p)
53df40a4
AM
8798{
8799 union aligned32
8800 {
8801 uint32_t v;
8802 unsigned char c[4];
8803 };
8804 const union aligned32 *a
0e287786 8805 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
53df40a4
AM
8806
8807 uint32_t aval = ( (uint32_t) a->c[0] << 24
8808 | (uint32_t) a->c[1] << 16
8809 | (uint32_t) a->c[2] << 8
8810 | (uint32_t) a->c[3]);
0e287786 8811 return aval;
53df40a4
AM
8812}
8813
8814#ifdef BFD_HOST_64_BIT
0e287786
AM
8815static bfd_vma
8816ext64l_r_offset (const void *p)
53df40a4
AM
8817{
8818 union aligned64
8819 {
8820 uint64_t v;
8821 unsigned char c[8];
8822 };
8823 const union aligned64 *a
0e287786 8824 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
53df40a4
AM
8825
8826 uint64_t aval = ( (uint64_t) a->c[0]
8827 | (uint64_t) a->c[1] << 8
8828 | (uint64_t) a->c[2] << 16
8829 | (uint64_t) a->c[3] << 24
8830 | (uint64_t) a->c[4] << 32
8831 | (uint64_t) a->c[5] << 40
8832 | (uint64_t) a->c[6] << 48
8833 | (uint64_t) a->c[7] << 56);
0e287786 8834 return aval;
53df40a4
AM
8835}
8836
0e287786
AM
8837static bfd_vma
8838ext64b_r_offset (const void *p)
53df40a4
AM
8839{
8840 union aligned64
8841 {
8842 uint64_t v;
8843 unsigned char c[8];
8844 };
8845 const union aligned64 *a
0e287786 8846 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
53df40a4
AM
8847
8848 uint64_t aval = ( (uint64_t) a->c[0] << 56
8849 | (uint64_t) a->c[1] << 48
8850 | (uint64_t) a->c[2] << 40
8851 | (uint64_t) a->c[3] << 32
8852 | (uint64_t) a->c[4] << 24
8853 | (uint64_t) a->c[5] << 16
8854 | (uint64_t) a->c[6] << 8
8855 | (uint64_t) a->c[7]);
0e287786 8856 return aval;
53df40a4
AM
8857}
8858#endif
8859
c152c796
AM
8860/* When performing a relocatable link, the input relocations are
8861 preserved. But, if they reference global symbols, the indices
d4730f92
BS
8862 referenced must be updated. Update all the relocations found in
8863 RELDATA. */
c152c796 8864
bca6d0e3 8865static bfd_boolean
c152c796 8866elf_link_adjust_relocs (bfd *abfd,
9eaff861 8867 asection *sec,
28dbcedc 8868 struct bfd_elf_section_reloc_data *reldata,
10bbbc1d
NC
8869 bfd_boolean sort,
8870 struct bfd_link_info *info)
c152c796
AM
8871{
8872 unsigned int i;
8873 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8874 bfd_byte *erela;
8875 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8876 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8877 bfd_vma r_type_mask;
8878 int r_sym_shift;
d4730f92
BS
8879 unsigned int count = reldata->count;
8880 struct elf_link_hash_entry **rel_hash = reldata->hashes;
c152c796 8881
d4730f92 8882 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
c152c796
AM
8883 {
8884 swap_in = bed->s->swap_reloc_in;
8885 swap_out = bed->s->swap_reloc_out;
8886 }
d4730f92 8887 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
c152c796
AM
8888 {
8889 swap_in = bed->s->swap_reloca_in;
8890 swap_out = bed->s->swap_reloca_out;
8891 }
8892 else
8893 abort ();
8894
8895 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
8896 abort ();
8897
8898 if (bed->s->arch_size == 32)
8899 {
8900 r_type_mask = 0xff;
8901 r_sym_shift = 8;
8902 }
8903 else
8904 {
8905 r_type_mask = 0xffffffff;
8906 r_sym_shift = 32;
8907 }
8908
d4730f92
BS
8909 erela = reldata->hdr->contents;
8910 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
c152c796
AM
8911 {
8912 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8913 unsigned int j;
8914
8915 if (*rel_hash == NULL)
8916 continue;
8917
10bbbc1d
NC
8918 if ((*rel_hash)->indx == -2
8919 && info->gc_sections
8920 && ! info->gc_keep_exported)
8921 {
8922 /* PR 21524: Let the user know if a symbol was removed by garbage collection. */
9793eb77 8923 _bfd_error_handler (_("%pB:%pA: error: relocation references symbol %s which was removed by garbage collection"),
10bbbc1d
NC
8924 abfd, sec,
8925 (*rel_hash)->root.root.string);
9793eb77 8926 _bfd_error_handler (_("%pB:%pA: error: try relinking with --gc-keep-exported enabled"),
d42c267e 8927 abfd, sec);
10bbbc1d
NC
8928 bfd_set_error (bfd_error_invalid_operation);
8929 return FALSE;
8930 }
c152c796
AM
8931 BFD_ASSERT ((*rel_hash)->indx >= 0);
8932
8933 (*swap_in) (abfd, erela, irela);
8934 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8935 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8936 | (irela[j].r_info & r_type_mask));
8937 (*swap_out) (abfd, irela, erela);
8938 }
53df40a4 8939
9eaff861
AO
8940 if (bed->elf_backend_update_relocs)
8941 (*bed->elf_backend_update_relocs) (sec, reldata);
8942
0e287786 8943 if (sort && count != 0)
53df40a4 8944 {
0e287786
AM
8945 bfd_vma (*ext_r_off) (const void *);
8946 bfd_vma r_off;
8947 size_t elt_size;
8948 bfd_byte *base, *end, *p, *loc;
bca6d0e3 8949 bfd_byte *buf = NULL;
28dbcedc
AM
8950
8951 if (bed->s->arch_size == 32)
8952 {
8953 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
0e287786 8954 ext_r_off = ext32l_r_offset;
28dbcedc 8955 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
0e287786 8956 ext_r_off = ext32b_r_offset;
28dbcedc
AM
8957 else
8958 abort ();
8959 }
53df40a4 8960 else
28dbcedc 8961 {
53df40a4 8962#ifdef BFD_HOST_64_BIT
28dbcedc 8963 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
0e287786 8964 ext_r_off = ext64l_r_offset;
28dbcedc 8965 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
0e287786 8966 ext_r_off = ext64b_r_offset;
28dbcedc 8967 else
53df40a4 8968#endif
28dbcedc
AM
8969 abort ();
8970 }
0e287786 8971
bca6d0e3
AM
8972 /* Must use a stable sort here. A modified insertion sort,
8973 since the relocs are mostly sorted already. */
0e287786
AM
8974 elt_size = reldata->hdr->sh_entsize;
8975 base = reldata->hdr->contents;
8976 end = base + count * elt_size;
bca6d0e3 8977 if (elt_size > sizeof (Elf64_External_Rela))
0e287786
AM
8978 abort ();
8979
8980 /* Ensure the first element is lowest. This acts as a sentinel,
8981 speeding the main loop below. */
8982 r_off = (*ext_r_off) (base);
8983 for (p = loc = base; (p += elt_size) < end; )
8984 {
8985 bfd_vma r_off2 = (*ext_r_off) (p);
8986 if (r_off > r_off2)
8987 {
8988 r_off = r_off2;
8989 loc = p;
8990 }
8991 }
8992 if (loc != base)
8993 {
8994 /* Don't just swap *base and *loc as that changes the order
8995 of the original base[0] and base[1] if they happen to
8996 have the same r_offset. */
bca6d0e3
AM
8997 bfd_byte onebuf[sizeof (Elf64_External_Rela)];
8998 memcpy (onebuf, loc, elt_size);
0e287786 8999 memmove (base + elt_size, base, loc - base);
bca6d0e3 9000 memcpy (base, onebuf, elt_size);
0e287786
AM
9001 }
9002
b29b8669 9003 for (p = base + elt_size; (p += elt_size) < end; )
0e287786
AM
9004 {
9005 /* base to p is sorted, *p is next to insert. */
9006 r_off = (*ext_r_off) (p);
9007 /* Search the sorted region for location to insert. */
9008 loc = p - elt_size;
9009 while (r_off < (*ext_r_off) (loc))
9010 loc -= elt_size;
9011 loc += elt_size;
9012 if (loc != p)
9013 {
bca6d0e3
AM
9014 /* Chances are there is a run of relocs to insert here,
9015 from one of more input files. Files are not always
9016 linked in order due to the way elf_link_input_bfd is
9017 called. See pr17666. */
9018 size_t sortlen = p - loc;
9019 bfd_vma r_off2 = (*ext_r_off) (loc);
9020 size_t runlen = elt_size;
9021 size_t buf_size = 96 * 1024;
9022 while (p + runlen < end
9023 && (sortlen <= buf_size
9024 || runlen + elt_size <= buf_size)
9025 && r_off2 > (*ext_r_off) (p + runlen))
9026 runlen += elt_size;
9027 if (buf == NULL)
9028 {
9029 buf = bfd_malloc (buf_size);
9030 if (buf == NULL)
9031 return FALSE;
9032 }
9033 if (runlen < sortlen)
9034 {
9035 memcpy (buf, p, runlen);
9036 memmove (loc + runlen, loc, sortlen);
9037 memcpy (loc, buf, runlen);
9038 }
9039 else
9040 {
9041 memcpy (buf, loc, sortlen);
9042 memmove (loc, p, runlen);
9043 memcpy (loc + runlen, buf, sortlen);
9044 }
b29b8669 9045 p += runlen - elt_size;
0e287786
AM
9046 }
9047 }
9048 /* Hashes are no longer valid. */
28dbcedc
AM
9049 free (reldata->hashes);
9050 reldata->hashes = NULL;
bca6d0e3 9051 free (buf);
53df40a4 9052 }
bca6d0e3 9053 return TRUE;
c152c796
AM
9054}
9055
9056struct elf_link_sort_rela
9057{
9058 union {
9059 bfd_vma offset;
9060 bfd_vma sym_mask;
9061 } u;
9062 enum elf_reloc_type_class type;
9063 /* We use this as an array of size int_rels_per_ext_rel. */
9064 Elf_Internal_Rela rela[1];
9065};
9066
9067static int
9068elf_link_sort_cmp1 (const void *A, const void *B)
9069{
a50b1753
NC
9070 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
9071 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796
AM
9072 int relativea, relativeb;
9073
9074 relativea = a->type == reloc_class_relative;
9075 relativeb = b->type == reloc_class_relative;
9076
9077 if (relativea < relativeb)
9078 return 1;
9079 if (relativea > relativeb)
9080 return -1;
9081 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
9082 return -1;
9083 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
9084 return 1;
9085 if (a->rela->r_offset < b->rela->r_offset)
9086 return -1;
9087 if (a->rela->r_offset > b->rela->r_offset)
9088 return 1;
9089 return 0;
9090}
9091
9092static int
9093elf_link_sort_cmp2 (const void *A, const void *B)
9094{
a50b1753
NC
9095 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
9096 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796 9097
7e612e98 9098 if (a->type < b->type)
c152c796 9099 return -1;
7e612e98 9100 if (a->type > b->type)
c152c796 9101 return 1;
7e612e98 9102 if (a->u.offset < b->u.offset)
c152c796 9103 return -1;
7e612e98 9104 if (a->u.offset > b->u.offset)
c152c796
AM
9105 return 1;
9106 if (a->rela->r_offset < b->rela->r_offset)
9107 return -1;
9108 if (a->rela->r_offset > b->rela->r_offset)
9109 return 1;
9110 return 0;
9111}
9112
9113static size_t
9114elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
9115{
3410fea8 9116 asection *dynamic_relocs;
fc66a176
L
9117 asection *rela_dyn;
9118 asection *rel_dyn;
c152c796
AM
9119 bfd_size_type count, size;
9120 size_t i, ret, sort_elt, ext_size;
9121 bfd_byte *sort, *s_non_relative, *p;
9122 struct elf_link_sort_rela *sq;
9123 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9124 int i2e = bed->s->int_rels_per_ext_rel;
c8e44c6d 9125 unsigned int opb = bfd_octets_per_byte (abfd);
c152c796
AM
9126 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
9127 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
9128 struct bfd_link_order *lo;
9129 bfd_vma r_sym_mask;
3410fea8 9130 bfd_boolean use_rela;
c152c796 9131
3410fea8
NC
9132 /* Find a dynamic reloc section. */
9133 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
9134 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
9135 if (rela_dyn != NULL && rela_dyn->size > 0
9136 && rel_dyn != NULL && rel_dyn->size > 0)
c152c796 9137 {
3410fea8
NC
9138 bfd_boolean use_rela_initialised = FALSE;
9139
9140 /* This is just here to stop gcc from complaining.
c8e44c6d 9141 Its initialization checking code is not perfect. */
3410fea8
NC
9142 use_rela = TRUE;
9143
9144 /* Both sections are present. Examine the sizes
9145 of the indirect sections to help us choose. */
9146 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
9147 if (lo->type == bfd_indirect_link_order)
9148 {
9149 asection *o = lo->u.indirect.section;
9150
9151 if ((o->size % bed->s->sizeof_rela) == 0)
9152 {
9153 if ((o->size % bed->s->sizeof_rel) == 0)
9154 /* Section size is divisible by both rel and rela sizes.
9155 It is of no help to us. */
9156 ;
9157 else
9158 {
9159 /* Section size is only divisible by rela. */
535b785f 9160 if (use_rela_initialised && !use_rela)
3410fea8 9161 {
9793eb77 9162 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9163 "they are in more than one size"),
9164 abfd);
3410fea8
NC
9165 bfd_set_error (bfd_error_invalid_operation);
9166 return 0;
9167 }
9168 else
9169 {
9170 use_rela = TRUE;
9171 use_rela_initialised = TRUE;
9172 }
9173 }
9174 }
9175 else if ((o->size % bed->s->sizeof_rel) == 0)
9176 {
9177 /* Section size is only divisible by rel. */
535b785f 9178 if (use_rela_initialised && use_rela)
3410fea8 9179 {
9793eb77 9180 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9181 "they are in more than one size"),
9182 abfd);
3410fea8
NC
9183 bfd_set_error (bfd_error_invalid_operation);
9184 return 0;
9185 }
9186 else
9187 {
9188 use_rela = FALSE;
9189 use_rela_initialised = TRUE;
9190 }
9191 }
9192 else
9193 {
c8e44c6d
AM
9194 /* The section size is not divisible by either -
9195 something is wrong. */
9793eb77 9196 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d 9197 "they are of an unknown size"), abfd);
3410fea8
NC
9198 bfd_set_error (bfd_error_invalid_operation);
9199 return 0;
9200 }
9201 }
9202
9203 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
9204 if (lo->type == bfd_indirect_link_order)
9205 {
9206 asection *o = lo->u.indirect.section;
9207
9208 if ((o->size % bed->s->sizeof_rela) == 0)
9209 {
9210 if ((o->size % bed->s->sizeof_rel) == 0)
9211 /* Section size is divisible by both rel and rela sizes.
9212 It is of no help to us. */
9213 ;
9214 else
9215 {
9216 /* Section size is only divisible by rela. */
535b785f 9217 if (use_rela_initialised && !use_rela)
3410fea8 9218 {
9793eb77 9219 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9220 "they are in more than one size"),
9221 abfd);
3410fea8
NC
9222 bfd_set_error (bfd_error_invalid_operation);
9223 return 0;
9224 }
9225 else
9226 {
9227 use_rela = TRUE;
9228 use_rela_initialised = TRUE;
9229 }
9230 }
9231 }
9232 else if ((o->size % bed->s->sizeof_rel) == 0)
9233 {
9234 /* Section size is only divisible by rel. */
535b785f 9235 if (use_rela_initialised && use_rela)
3410fea8 9236 {
9793eb77 9237 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d
AM
9238 "they are in more than one size"),
9239 abfd);
3410fea8
NC
9240 bfd_set_error (bfd_error_invalid_operation);
9241 return 0;
9242 }
9243 else
9244 {
9245 use_rela = FALSE;
9246 use_rela_initialised = TRUE;
9247 }
9248 }
9249 else
9250 {
c8e44c6d
AM
9251 /* The section size is not divisible by either -
9252 something is wrong. */
9793eb77 9253 _bfd_error_handler (_("%pB: unable to sort relocs - "
c8e44c6d 9254 "they are of an unknown size"), abfd);
3410fea8
NC
9255 bfd_set_error (bfd_error_invalid_operation);
9256 return 0;
9257 }
9258 }
9259
9260 if (! use_rela_initialised)
9261 /* Make a guess. */
9262 use_rela = TRUE;
c152c796 9263 }
fc66a176
L
9264 else if (rela_dyn != NULL && rela_dyn->size > 0)
9265 use_rela = TRUE;
9266 else if (rel_dyn != NULL && rel_dyn->size > 0)
3410fea8 9267 use_rela = FALSE;
c152c796 9268 else
fc66a176 9269 return 0;
3410fea8
NC
9270
9271 if (use_rela)
c152c796 9272 {
3410fea8 9273 dynamic_relocs = rela_dyn;
c152c796
AM
9274 ext_size = bed->s->sizeof_rela;
9275 swap_in = bed->s->swap_reloca_in;
9276 swap_out = bed->s->swap_reloca_out;
9277 }
3410fea8
NC
9278 else
9279 {
9280 dynamic_relocs = rel_dyn;
9281 ext_size = bed->s->sizeof_rel;
9282 swap_in = bed->s->swap_reloc_in;
9283 swap_out = bed->s->swap_reloc_out;
9284 }
c152c796
AM
9285
9286 size = 0;
3410fea8 9287 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796 9288 if (lo->type == bfd_indirect_link_order)
3410fea8 9289 size += lo->u.indirect.section->size;
c152c796 9290
3410fea8 9291 if (size != dynamic_relocs->size)
c152c796
AM
9292 return 0;
9293
9294 sort_elt = (sizeof (struct elf_link_sort_rela)
9295 + (i2e - 1) * sizeof (Elf_Internal_Rela));
3410fea8
NC
9296
9297 count = dynamic_relocs->size / ext_size;
5e486aa1
NC
9298 if (count == 0)
9299 return 0;
a50b1753 9300 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
3410fea8 9301
c152c796
AM
9302 if (sort == NULL)
9303 {
9304 (*info->callbacks->warning)
9793eb77 9305 (info, _("not enough memory to sort relocations"), 0, abfd, 0, 0);
c152c796
AM
9306 return 0;
9307 }
9308
9309 if (bed->s->arch_size == 32)
9310 r_sym_mask = ~(bfd_vma) 0xff;
9311 else
9312 r_sym_mask = ~(bfd_vma) 0xffffffff;
9313
3410fea8 9314 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
9315 if (lo->type == bfd_indirect_link_order)
9316 {
9317 bfd_byte *erel, *erelend;
9318 asection *o = lo->u.indirect.section;
9319
1da212d6
AM
9320 if (o->contents == NULL && o->size != 0)
9321 {
9322 /* This is a reloc section that is being handled as a normal
9323 section. See bfd_section_from_shdr. We can't combine
9324 relocs in this case. */
9325 free (sort);
9326 return 0;
9327 }
c152c796 9328 erel = o->contents;
eea6121a 9329 erelend = o->contents + o->size;
c8e44c6d 9330 p = sort + o->output_offset * opb / ext_size * sort_elt;
3410fea8 9331
c152c796
AM
9332 while (erel < erelend)
9333 {
9334 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3410fea8 9335
c152c796 9336 (*swap_in) (abfd, erel, s->rela);
7e612e98 9337 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
c152c796
AM
9338 s->u.sym_mask = r_sym_mask;
9339 p += sort_elt;
9340 erel += ext_size;
9341 }
9342 }
9343
9344 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
9345
9346 for (i = 0, p = sort; i < count; i++, p += sort_elt)
9347 {
9348 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9349 if (s->type != reloc_class_relative)
9350 break;
9351 }
9352 ret = i;
9353 s_non_relative = p;
9354
9355 sq = (struct elf_link_sort_rela *) s_non_relative;
9356 for (; i < count; i++, p += sort_elt)
9357 {
9358 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
9359 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
9360 sq = sp;
9361 sp->u.offset = sq->rela->r_offset;
9362 }
9363
9364 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
9365
c8e44c6d
AM
9366 struct elf_link_hash_table *htab = elf_hash_table (info);
9367 if (htab->srelplt && htab->srelplt->output_section == dynamic_relocs)
9368 {
9369 /* We have plt relocs in .rela.dyn. */
9370 sq = (struct elf_link_sort_rela *) sort;
9371 for (i = 0; i < count; i++)
9372 if (sq[count - i - 1].type != reloc_class_plt)
9373 break;
9374 if (i != 0 && htab->srelplt->size == i * ext_size)
9375 {
9376 struct bfd_link_order **plo;
9377 /* Put srelplt link_order last. This is so the output_offset
9378 set in the next loop is correct for DT_JMPREL. */
9379 for (plo = &dynamic_relocs->map_head.link_order; *plo != NULL; )
9380 if ((*plo)->type == bfd_indirect_link_order
9381 && (*plo)->u.indirect.section == htab->srelplt)
9382 {
9383 lo = *plo;
9384 *plo = lo->next;
9385 }
9386 else
9387 plo = &(*plo)->next;
9388 *plo = lo;
9389 lo->next = NULL;
9390 dynamic_relocs->map_tail.link_order = lo;
9391 }
9392 }
9393
9394 p = sort;
3410fea8 9395 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
9396 if (lo->type == bfd_indirect_link_order)
9397 {
9398 bfd_byte *erel, *erelend;
9399 asection *o = lo->u.indirect.section;
9400
9401 erel = o->contents;
eea6121a 9402 erelend = o->contents + o->size;
c8e44c6d 9403 o->output_offset = (p - sort) / sort_elt * ext_size / opb;
c152c796
AM
9404 while (erel < erelend)
9405 {
9406 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
9407 (*swap_out) (abfd, s->rela, erel);
9408 p += sort_elt;
9409 erel += ext_size;
9410 }
9411 }
9412
9413 free (sort);
3410fea8 9414 *psec = dynamic_relocs;
c152c796
AM
9415 return ret;
9416}
9417
ef10c3ac 9418/* Add a symbol to the output symbol string table. */
c152c796 9419
6e0b88f1 9420static int
ef10c3ac
L
9421elf_link_output_symstrtab (struct elf_final_link_info *flinfo,
9422 const char *name,
9423 Elf_Internal_Sym *elfsym,
9424 asection *input_sec,
9425 struct elf_link_hash_entry *h)
c152c796 9426{
6e0b88f1 9427 int (*output_symbol_hook)
c152c796
AM
9428 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
9429 struct elf_link_hash_entry *);
ef10c3ac 9430 struct elf_link_hash_table *hash_table;
c152c796 9431 const struct elf_backend_data *bed;
ef10c3ac 9432 bfd_size_type strtabsize;
c152c796 9433
8539e4e8
AM
9434 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9435
8b127cbc 9436 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796
AM
9437 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
9438 if (output_symbol_hook != NULL)
9439 {
8b127cbc 9440 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
6e0b88f1
AM
9441 if (ret != 1)
9442 return ret;
c152c796
AM
9443 }
9444
06f44071
AM
9445 if (ELF_ST_TYPE (elfsym->st_info) == STT_GNU_IFUNC)
9446 elf_tdata (flinfo->output_bfd)->has_gnu_osabi |= elf_gnu_osabi_ifunc;
9447 if (ELF_ST_BIND (elfsym->st_info) == STB_GNU_UNIQUE)
9448 elf_tdata (flinfo->output_bfd)->has_gnu_osabi |= elf_gnu_osabi_unique;
9449
ef10c3ac
L
9450 if (name == NULL
9451 || *name == '\0'
9452 || (input_sec->flags & SEC_EXCLUDE))
9453 elfsym->st_name = (unsigned long) -1;
c152c796
AM
9454 else
9455 {
ef10c3ac
L
9456 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
9457 to get the final offset for st_name. */
9458 elfsym->st_name
9459 = (unsigned long) _bfd_elf_strtab_add (flinfo->symstrtab,
9460 name, FALSE);
c152c796 9461 if (elfsym->st_name == (unsigned long) -1)
6e0b88f1 9462 return 0;
c152c796
AM
9463 }
9464
ef10c3ac
L
9465 hash_table = elf_hash_table (flinfo->info);
9466 strtabsize = hash_table->strtabsize;
9467 if (strtabsize <= hash_table->strtabcount)
c152c796 9468 {
ef10c3ac
L
9469 strtabsize += strtabsize;
9470 hash_table->strtabsize = strtabsize;
9471 strtabsize *= sizeof (*hash_table->strtab);
9472 hash_table->strtab
9473 = (struct elf_sym_strtab *) bfd_realloc (hash_table->strtab,
9474 strtabsize);
9475 if (hash_table->strtab == NULL)
6e0b88f1 9476 return 0;
c152c796 9477 }
ef10c3ac
L
9478 hash_table->strtab[hash_table->strtabcount].sym = *elfsym;
9479 hash_table->strtab[hash_table->strtabcount].dest_index
9480 = hash_table->strtabcount;
9481 hash_table->strtab[hash_table->strtabcount].destshndx_index
9482 = flinfo->symshndxbuf ? bfd_get_symcount (flinfo->output_bfd) : 0;
9483
ed48ec2e 9484 flinfo->output_bfd->symcount += 1;
ef10c3ac
L
9485 hash_table->strtabcount += 1;
9486
9487 return 1;
9488}
9489
9490/* Swap symbols out to the symbol table and flush the output symbols to
9491 the file. */
9492
9493static bfd_boolean
9494elf_link_swap_symbols_out (struct elf_final_link_info *flinfo)
9495{
9496 struct elf_link_hash_table *hash_table = elf_hash_table (flinfo->info);
ef53be89
AM
9497 bfd_size_type amt;
9498 size_t i;
ef10c3ac
L
9499 const struct elf_backend_data *bed;
9500 bfd_byte *symbuf;
9501 Elf_Internal_Shdr *hdr;
9502 file_ptr pos;
9503 bfd_boolean ret;
9504
9505 if (!hash_table->strtabcount)
9506 return TRUE;
9507
9508 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
9509
9510 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 9511
ef10c3ac
L
9512 amt = bed->s->sizeof_sym * hash_table->strtabcount;
9513 symbuf = (bfd_byte *) bfd_malloc (amt);
9514 if (symbuf == NULL)
9515 return FALSE;
1b786873 9516
ef10c3ac 9517 if (flinfo->symshndxbuf)
c152c796 9518 {
ef53be89
AM
9519 amt = sizeof (Elf_External_Sym_Shndx);
9520 amt *= bfd_get_symcount (flinfo->output_bfd);
ef10c3ac
L
9521 flinfo->symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
9522 if (flinfo->symshndxbuf == NULL)
c152c796 9523 {
ef10c3ac
L
9524 free (symbuf);
9525 return FALSE;
c152c796 9526 }
c152c796
AM
9527 }
9528
ef10c3ac
L
9529 for (i = 0; i < hash_table->strtabcount; i++)
9530 {
9531 struct elf_sym_strtab *elfsym = &hash_table->strtab[i];
9532 if (elfsym->sym.st_name == (unsigned long) -1)
9533 elfsym->sym.st_name = 0;
9534 else
9535 elfsym->sym.st_name
9536 = (unsigned long) _bfd_elf_strtab_offset (flinfo->symstrtab,
9537 elfsym->sym.st_name);
9538 bed->s->swap_symbol_out (flinfo->output_bfd, &elfsym->sym,
9539 ((bfd_byte *) symbuf
9540 + (elfsym->dest_index
9541 * bed->s->sizeof_sym)),
9542 (flinfo->symshndxbuf
9543 + elfsym->destshndx_index));
9544 }
9545
9546 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
9547 pos = hdr->sh_offset + hdr->sh_size;
9548 amt = hash_table->strtabcount * bed->s->sizeof_sym;
9549 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) == 0
9550 && bfd_bwrite (symbuf, amt, flinfo->output_bfd) == amt)
9551 {
9552 hdr->sh_size += amt;
9553 ret = TRUE;
9554 }
9555 else
9556 ret = FALSE;
c152c796 9557
ef10c3ac
L
9558 free (symbuf);
9559
9560 free (hash_table->strtab);
9561 hash_table->strtab = NULL;
9562
9563 return ret;
c152c796
AM
9564}
9565
c0d5a53d
L
9566/* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
9567
9568static bfd_boolean
9569check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
9570{
4fbb74a6
AM
9571 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
9572 && sym->st_shndx < SHN_LORESERVE)
c0d5a53d
L
9573 {
9574 /* The gABI doesn't support dynamic symbols in output sections
a0c8462f 9575 beyond 64k. */
4eca0228 9576 _bfd_error_handler
695344c0 9577 /* xgettext:c-format */
9793eb77 9578 (_("%pB: too many sections: %d (>= %d)"),
4fbb74a6 9579 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
c0d5a53d
L
9580 bfd_set_error (bfd_error_nonrepresentable_section);
9581 return FALSE;
9582 }
9583 return TRUE;
9584}
9585
c152c796
AM
9586/* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
9587 allowing an unsatisfied unversioned symbol in the DSO to match a
9588 versioned symbol that would normally require an explicit version.
9589 We also handle the case that a DSO references a hidden symbol
9590 which may be satisfied by a versioned symbol in another DSO. */
9591
9592static bfd_boolean
9593elf_link_check_versioned_symbol (struct bfd_link_info *info,
9594 const struct elf_backend_data *bed,
9595 struct elf_link_hash_entry *h)
9596{
9597 bfd *abfd;
9598 struct elf_link_loaded_list *loaded;
9599
9600 if (!is_elf_hash_table (info->hash))
9601 return FALSE;
9602
90c984fc
L
9603 /* Check indirect symbol. */
9604 while (h->root.type == bfd_link_hash_indirect)
9605 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9606
c152c796
AM
9607 switch (h->root.type)
9608 {
9609 default:
9610 abfd = NULL;
9611 break;
9612
9613 case bfd_link_hash_undefined:
9614 case bfd_link_hash_undefweak:
9615 abfd = h->root.u.undef.abfd;
f4ab0e2d
L
9616 if (abfd == NULL
9617 || (abfd->flags & DYNAMIC) == 0
e56f61be 9618 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
c152c796
AM
9619 return FALSE;
9620 break;
9621
9622 case bfd_link_hash_defined:
9623 case bfd_link_hash_defweak:
9624 abfd = h->root.u.def.section->owner;
9625 break;
9626
9627 case bfd_link_hash_common:
9628 abfd = h->root.u.c.p->section->owner;
9629 break;
9630 }
9631 BFD_ASSERT (abfd != NULL);
9632
9633 for (loaded = elf_hash_table (info)->loaded;
9634 loaded != NULL;
9635 loaded = loaded->next)
9636 {
9637 bfd *input;
9638 Elf_Internal_Shdr *hdr;
ef53be89
AM
9639 size_t symcount;
9640 size_t extsymcount;
9641 size_t extsymoff;
c152c796
AM
9642 Elf_Internal_Shdr *versymhdr;
9643 Elf_Internal_Sym *isym;
9644 Elf_Internal_Sym *isymend;
9645 Elf_Internal_Sym *isymbuf;
9646 Elf_External_Versym *ever;
9647 Elf_External_Versym *extversym;
9648
9649 input = loaded->abfd;
9650
9651 /* We check each DSO for a possible hidden versioned definition. */
9652 if (input == abfd
9653 || (input->flags & DYNAMIC) == 0
9654 || elf_dynversym (input) == 0)
9655 continue;
9656
9657 hdr = &elf_tdata (input)->dynsymtab_hdr;
9658
9659 symcount = hdr->sh_size / bed->s->sizeof_sym;
9660 if (elf_bad_symtab (input))
9661 {
9662 extsymcount = symcount;
9663 extsymoff = 0;
9664 }
9665 else
9666 {
9667 extsymcount = symcount - hdr->sh_info;
9668 extsymoff = hdr->sh_info;
9669 }
9670
9671 if (extsymcount == 0)
9672 continue;
9673
9674 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
9675 NULL, NULL, NULL);
9676 if (isymbuf == NULL)
9677 return FALSE;
9678
9679 /* Read in any version definitions. */
9680 versymhdr = &elf_tdata (input)->dynversym_hdr;
a50b1753 9681 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
c152c796
AM
9682 if (extversym == NULL)
9683 goto error_ret;
9684
9685 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
9686 || (bfd_bread (extversym, versymhdr->sh_size, input)
9687 != versymhdr->sh_size))
9688 {
9689 free (extversym);
9690 error_ret:
9691 free (isymbuf);
9692 return FALSE;
9693 }
9694
9695 ever = extversym + extsymoff;
9696 isymend = isymbuf + extsymcount;
9697 for (isym = isymbuf; isym < isymend; isym++, ever++)
9698 {
9699 const char *name;
9700 Elf_Internal_Versym iver;
9701 unsigned short version_index;
9702
9703 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
9704 || isym->st_shndx == SHN_UNDEF)
9705 continue;
9706
9707 name = bfd_elf_string_from_elf_section (input,
9708 hdr->sh_link,
9709 isym->st_name);
9710 if (strcmp (name, h->root.root.string) != 0)
9711 continue;
9712
9713 _bfd_elf_swap_versym_in (input, ever, &iver);
9714
d023c380
L
9715 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
9716 && !(h->def_regular
9717 && h->forced_local))
c152c796
AM
9718 {
9719 /* If we have a non-hidden versioned sym, then it should
d023c380
L
9720 have provided a definition for the undefined sym unless
9721 it is defined in a non-shared object and forced local.
9722 */
c152c796
AM
9723 abort ();
9724 }
9725
9726 version_index = iver.vs_vers & VERSYM_VERSION;
9727 if (version_index == 1 || version_index == 2)
9728 {
9729 /* This is the base or first version. We can use it. */
9730 free (extversym);
9731 free (isymbuf);
9732 return TRUE;
9733 }
9734 }
9735
9736 free (extversym);
9737 free (isymbuf);
9738 }
9739
9740 return FALSE;
9741}
9742
b8871f35
L
9743/* Convert ELF common symbol TYPE. */
9744
9745static int
9746elf_link_convert_common_type (struct bfd_link_info *info, int type)
9747{
9748 /* Commom symbol can only appear in relocatable link. */
9749 if (!bfd_link_relocatable (info))
9750 abort ();
9751 switch (info->elf_stt_common)
9752 {
9753 case unchanged:
9754 break;
9755 case elf_stt_common:
9756 type = STT_COMMON;
9757 break;
9758 case no_elf_stt_common:
9759 type = STT_OBJECT;
9760 break;
9761 }
9762 return type;
9763}
9764
c152c796
AM
9765/* Add an external symbol to the symbol table. This is called from
9766 the hash table traversal routine. When generating a shared object,
9767 we go through the symbol table twice. The first time we output
9768 anything that might have been forced to local scope in a version
9769 script. The second time we output the symbols that are still
9770 global symbols. */
9771
9772static bfd_boolean
7686d77d 9773elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
c152c796 9774{
7686d77d 9775 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
a50b1753 9776 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8b127cbc 9777 struct elf_final_link_info *flinfo = eoinfo->flinfo;
c152c796
AM
9778 bfd_boolean strip;
9779 Elf_Internal_Sym sym;
9780 asection *input_sec;
9781 const struct elf_backend_data *bed;
6e0b88f1
AM
9782 long indx;
9783 int ret;
b8871f35 9784 unsigned int type;
c152c796
AM
9785
9786 if (h->root.type == bfd_link_hash_warning)
9787 {
9788 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9789 if (h->root.type == bfd_link_hash_new)
9790 return TRUE;
9791 }
9792
9793 /* Decide whether to output this symbol in this pass. */
9794 if (eoinfo->localsyms)
9795 {
4deb8f71 9796 if (!h->forced_local)
c152c796
AM
9797 return TRUE;
9798 }
9799 else
9800 {
4deb8f71 9801 if (h->forced_local)
c152c796
AM
9802 return TRUE;
9803 }
9804
8b127cbc 9805 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 9806
12ac1cf5 9807 if (h->root.type == bfd_link_hash_undefined)
c152c796 9808 {
12ac1cf5
NC
9809 /* If we have an undefined symbol reference here then it must have
9810 come from a shared library that is being linked in. (Undefined
98da7939
L
9811 references in regular files have already been handled unless
9812 they are in unreferenced sections which are removed by garbage
9813 collection). */
12ac1cf5
NC
9814 bfd_boolean ignore_undef = FALSE;
9815
9816 /* Some symbols may be special in that the fact that they're
9817 undefined can be safely ignored - let backend determine that. */
9818 if (bed->elf_backend_ignore_undef_symbol)
9819 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
9820
9821 /* If we are reporting errors for this situation then do so now. */
89a2ee5a 9822 if (!ignore_undef
c54f1524 9823 && h->ref_dynamic_nonweak
8b127cbc
AM
9824 && (!h->ref_regular || flinfo->info->gc_sections)
9825 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
9826 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
1a72702b
AM
9827 (*flinfo->info->callbacks->undefined_symbol)
9828 (flinfo->info, h->root.root.string,
9829 h->ref_regular ? NULL : h->root.u.undef.abfd,
9830 NULL, 0,
9831 flinfo->info->unresolved_syms_in_shared_libs == RM_GENERATE_ERROR);
97196564
L
9832
9833 /* Strip a global symbol defined in a discarded section. */
9834 if (h->indx == -3)
9835 return TRUE;
c152c796
AM
9836 }
9837
9838 /* We should also warn if a forced local symbol is referenced from
9839 shared libraries. */
0e1862bb 9840 if (bfd_link_executable (flinfo->info)
f5385ebf
AM
9841 && h->forced_local
9842 && h->ref_dynamic
371a5866 9843 && h->def_regular
f5385ebf 9844 && !h->dynamic_def
ee659f1f 9845 && h->ref_dynamic_nonweak
8b127cbc 9846 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
c152c796 9847 {
17d078c5
AM
9848 bfd *def_bfd;
9849 const char *msg;
90c984fc
L
9850 struct elf_link_hash_entry *hi = h;
9851
9852 /* Check indirect symbol. */
9853 while (hi->root.type == bfd_link_hash_indirect)
9854 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
17d078c5
AM
9855
9856 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
695344c0 9857 /* xgettext:c-format */
871b3ab2 9858 msg = _("%pB: internal symbol `%s' in %pB is referenced by DSO");
17d078c5 9859 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
695344c0 9860 /* xgettext:c-format */
871b3ab2 9861 msg = _("%pB: hidden symbol `%s' in %pB is referenced by DSO");
17d078c5 9862 else
695344c0 9863 /* xgettext:c-format */
871b3ab2 9864 msg = _("%pB: local symbol `%s' in %pB is referenced by DSO");
8b127cbc 9865 def_bfd = flinfo->output_bfd;
90c984fc
L
9866 if (hi->root.u.def.section != bfd_abs_section_ptr)
9867 def_bfd = hi->root.u.def.section->owner;
c08bb8dd
AM
9868 _bfd_error_handler (msg, flinfo->output_bfd,
9869 h->root.root.string, def_bfd);
17d078c5 9870 bfd_set_error (bfd_error_bad_value);
c152c796
AM
9871 eoinfo->failed = TRUE;
9872 return FALSE;
9873 }
9874
9875 /* We don't want to output symbols that have never been mentioned by
9876 a regular file, or that we have been told to strip. However, if
9877 h->indx is set to -2, the symbol is used by a reloc and we must
9878 output it. */
d983c8c5 9879 strip = FALSE;
c152c796 9880 if (h->indx == -2)
d983c8c5 9881 ;
f5385ebf 9882 else if ((h->def_dynamic
77cfaee6
AM
9883 || h->ref_dynamic
9884 || h->root.type == bfd_link_hash_new)
f5385ebf
AM
9885 && !h->def_regular
9886 && !h->ref_regular)
c152c796 9887 strip = TRUE;
8b127cbc 9888 else if (flinfo->info->strip == strip_all)
c152c796 9889 strip = TRUE;
8b127cbc
AM
9890 else if (flinfo->info->strip == strip_some
9891 && bfd_hash_lookup (flinfo->info->keep_hash,
c152c796
AM
9892 h->root.root.string, FALSE, FALSE) == NULL)
9893 strip = TRUE;
d56d55e7
AM
9894 else if ((h->root.type == bfd_link_hash_defined
9895 || h->root.type == bfd_link_hash_defweak)
8b127cbc 9896 && ((flinfo->info->strip_discarded
dbaa2011 9897 && discarded_section (h->root.u.def.section))
ca4be51c
AM
9898 || ((h->root.u.def.section->flags & SEC_LINKER_CREATED) == 0
9899 && h->root.u.def.section->owner != NULL
d56d55e7 9900 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
c152c796 9901 strip = TRUE;
9e2278f5
AM
9902 else if ((h->root.type == bfd_link_hash_undefined
9903 || h->root.type == bfd_link_hash_undefweak)
9904 && h->root.u.undef.abfd != NULL
9905 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
9906 strip = TRUE;
c152c796 9907
b8871f35
L
9908 type = h->type;
9909
c152c796 9910 /* If we're stripping it, and it's not a dynamic symbol, there's
d983c8c5
AM
9911 nothing else to do. However, if it is a forced local symbol or
9912 an ifunc symbol we need to give the backend finish_dynamic_symbol
9913 function a chance to make it dynamic. */
c152c796
AM
9914 if (strip
9915 && h->dynindx == -1
b8871f35 9916 && type != STT_GNU_IFUNC
f5385ebf 9917 && !h->forced_local)
c152c796
AM
9918 return TRUE;
9919
9920 sym.st_value = 0;
9921 sym.st_size = h->size;
9922 sym.st_other = h->other;
c152c796
AM
9923 switch (h->root.type)
9924 {
9925 default:
9926 case bfd_link_hash_new:
9927 case bfd_link_hash_warning:
9928 abort ();
9929 return FALSE;
9930
9931 case bfd_link_hash_undefined:
9932 case bfd_link_hash_undefweak:
9933 input_sec = bfd_und_section_ptr;
9934 sym.st_shndx = SHN_UNDEF;
9935 break;
9936
9937 case bfd_link_hash_defined:
9938 case bfd_link_hash_defweak:
9939 {
9940 input_sec = h->root.u.def.section;
9941 if (input_sec->output_section != NULL)
9942 {
9943 sym.st_shndx =
8b127cbc 9944 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
c152c796
AM
9945 input_sec->output_section);
9946 if (sym.st_shndx == SHN_BAD)
9947 {
4eca0228 9948 _bfd_error_handler
695344c0 9949 /* xgettext:c-format */
871b3ab2 9950 (_("%pB: could not find output section %pA for input section %pA"),
8b127cbc 9951 flinfo->output_bfd, input_sec->output_section, input_sec);
17d078c5 9952 bfd_set_error (bfd_error_nonrepresentable_section);
c152c796
AM
9953 eoinfo->failed = TRUE;
9954 return FALSE;
9955 }
9956
9957 /* ELF symbols in relocatable files are section relative,
9958 but in nonrelocatable files they are virtual
9959 addresses. */
9960 sym.st_value = h->root.u.def.value + input_sec->output_offset;
0e1862bb 9961 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
9962 {
9963 sym.st_value += input_sec->output_section->vma;
9964 if (h->type == STT_TLS)
9965 {
8b127cbc 9966 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
430a16a5
NC
9967 if (tls_sec != NULL)
9968 sym.st_value -= tls_sec->vma;
c152c796
AM
9969 }
9970 }
9971 }
9972 else
9973 {
9974 BFD_ASSERT (input_sec->owner == NULL
9975 || (input_sec->owner->flags & DYNAMIC) != 0);
9976 sym.st_shndx = SHN_UNDEF;
9977 input_sec = bfd_und_section_ptr;
9978 }
9979 }
9980 break;
9981
9982 case bfd_link_hash_common:
9983 input_sec = h->root.u.c.p->section;
a4d8e49b 9984 sym.st_shndx = bed->common_section_index (input_sec);
c152c796
AM
9985 sym.st_value = 1 << h->root.u.c.p->alignment_power;
9986 break;
9987
9988 case bfd_link_hash_indirect:
9989 /* These symbols are created by symbol versioning. They point
9990 to the decorated version of the name. For example, if the
9991 symbol foo@@GNU_1.2 is the default, which should be used when
9992 foo is used with no version, then we add an indirect symbol
9993 foo which points to foo@@GNU_1.2. We ignore these symbols,
9994 since the indirected symbol is already in the hash table. */
9995 return TRUE;
9996 }
9997
b8871f35
L
9998 if (type == STT_COMMON || type == STT_OBJECT)
9999 switch (h->root.type)
10000 {
10001 case bfd_link_hash_common:
10002 type = elf_link_convert_common_type (flinfo->info, type);
10003 break;
10004 case bfd_link_hash_defined:
10005 case bfd_link_hash_defweak:
10006 if (bed->common_definition (&sym))
10007 type = elf_link_convert_common_type (flinfo->info, type);
10008 else
10009 type = STT_OBJECT;
10010 break;
10011 case bfd_link_hash_undefined:
10012 case bfd_link_hash_undefweak:
10013 break;
10014 default:
10015 abort ();
10016 }
10017
4deb8f71 10018 if (h->forced_local)
b8871f35
L
10019 {
10020 sym.st_info = ELF_ST_INFO (STB_LOCAL, type);
10021 /* Turn off visibility on local symbol. */
10022 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
10023 }
10024 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
10025 else if (h->unique_global && h->def_regular)
10026 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, type);
10027 else if (h->root.type == bfd_link_hash_undefweak
10028 || h->root.type == bfd_link_hash_defweak)
10029 sym.st_info = ELF_ST_INFO (STB_WEAK, type);
10030 else
10031 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
10032 sym.st_target_internal = h->target_internal;
10033
c152c796
AM
10034 /* Give the processor backend a chance to tweak the symbol value,
10035 and also to finish up anything that needs to be done for this
10036 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
3aa14d16 10037 forced local syms when non-shared is due to a historical quirk.
5f35ea9c 10038 STT_GNU_IFUNC symbol must go through PLT. */
3aa14d16 10039 if ((h->type == STT_GNU_IFUNC
5f35ea9c 10040 && h->def_regular
0e1862bb 10041 && !bfd_link_relocatable (flinfo->info))
3aa14d16
L
10042 || ((h->dynindx != -1
10043 || h->forced_local)
0e1862bb 10044 && ((bfd_link_pic (flinfo->info)
3aa14d16
L
10045 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
10046 || h->root.type != bfd_link_hash_undefweak))
10047 || !h->forced_local)
8b127cbc 10048 && elf_hash_table (flinfo->info)->dynamic_sections_created))
c152c796
AM
10049 {
10050 if (! ((*bed->elf_backend_finish_dynamic_symbol)
8b127cbc 10051 (flinfo->output_bfd, flinfo->info, h, &sym)))
c152c796
AM
10052 {
10053 eoinfo->failed = TRUE;
10054 return FALSE;
10055 }
10056 }
10057
10058 /* If we are marking the symbol as undefined, and there are no
10059 non-weak references to this symbol from a regular object, then
10060 mark the symbol as weak undefined; if there are non-weak
10061 references, mark the symbol as strong. We can't do this earlier,
10062 because it might not be marked as undefined until the
10063 finish_dynamic_symbol routine gets through with it. */
10064 if (sym.st_shndx == SHN_UNDEF
f5385ebf 10065 && h->ref_regular
c152c796
AM
10066 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
10067 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
10068 {
10069 int bindtype;
b8871f35 10070 type = ELF_ST_TYPE (sym.st_info);
2955ec4c
L
10071
10072 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
10073 if (type == STT_GNU_IFUNC)
10074 type = STT_FUNC;
c152c796 10075
f5385ebf 10076 if (h->ref_regular_nonweak)
c152c796
AM
10077 bindtype = STB_GLOBAL;
10078 else
10079 bindtype = STB_WEAK;
2955ec4c 10080 sym.st_info = ELF_ST_INFO (bindtype, type);
c152c796
AM
10081 }
10082
bda987c2
CD
10083 /* If this is a symbol defined in a dynamic library, don't use the
10084 symbol size from the dynamic library. Relinking an executable
10085 against a new library may introduce gratuitous changes in the
10086 executable's symbols if we keep the size. */
10087 if (sym.st_shndx == SHN_UNDEF
10088 && !h->def_regular
10089 && h->def_dynamic)
10090 sym.st_size = 0;
10091
c152c796
AM
10092 /* If a non-weak symbol with non-default visibility is not defined
10093 locally, it is a fatal error. */
0e1862bb 10094 if (!bfd_link_relocatable (flinfo->info)
c152c796
AM
10095 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
10096 && ELF_ST_BIND (sym.st_info) != STB_WEAK
10097 && h->root.type == bfd_link_hash_undefined
f5385ebf 10098 && !h->def_regular)
c152c796 10099 {
17d078c5
AM
10100 const char *msg;
10101
10102 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
695344c0 10103 /* xgettext:c-format */
871b3ab2 10104 msg = _("%pB: protected symbol `%s' isn't defined");
17d078c5 10105 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
695344c0 10106 /* xgettext:c-format */
871b3ab2 10107 msg = _("%pB: internal symbol `%s' isn't defined");
17d078c5 10108 else
695344c0 10109 /* xgettext:c-format */
871b3ab2 10110 msg = _("%pB: hidden symbol `%s' isn't defined");
4eca0228 10111 _bfd_error_handler (msg, flinfo->output_bfd, h->root.root.string);
17d078c5 10112 bfd_set_error (bfd_error_bad_value);
c152c796
AM
10113 eoinfo->failed = TRUE;
10114 return FALSE;
10115 }
10116
10117 /* If this symbol should be put in the .dynsym section, then put it
10118 there now. We already know the symbol index. We also fill in
10119 the entry in the .hash section. */
1c2649ed
EB
10120 if (h->dynindx != -1
10121 && elf_hash_table (flinfo->info)->dynamic_sections_created
10122 && elf_hash_table (flinfo->info)->dynsym != NULL
10123 && !discarded_section (elf_hash_table (flinfo->info)->dynsym))
c152c796 10124 {
c152c796
AM
10125 bfd_byte *esym;
10126
90c984fc
L
10127 /* Since there is no version information in the dynamic string,
10128 if there is no version info in symbol version section, we will
1659f720 10129 have a run-time problem if not linking executable, referenced
4deb8f71 10130 by shared library, or not bound locally. */
1659f720 10131 if (h->verinfo.verdef == NULL
0e1862bb 10132 && (!bfd_link_executable (flinfo->info)
1659f720
L
10133 || h->ref_dynamic
10134 || !h->def_regular))
90c984fc
L
10135 {
10136 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
10137
10138 if (p && p [1] != '\0')
10139 {
4eca0228 10140 _bfd_error_handler
695344c0 10141 /* xgettext:c-format */
9793eb77 10142 (_("%pB: no symbol version section for versioned symbol `%s'"),
90c984fc
L
10143 flinfo->output_bfd, h->root.root.string);
10144 eoinfo->failed = TRUE;
10145 return FALSE;
10146 }
10147 }
10148
c152c796 10149 sym.st_name = h->dynstr_index;
cae1fbbb
L
10150 esym = (elf_hash_table (flinfo->info)->dynsym->contents
10151 + h->dynindx * bed->s->sizeof_sym);
8b127cbc 10152 if (!check_dynsym (flinfo->output_bfd, &sym))
c0d5a53d
L
10153 {
10154 eoinfo->failed = TRUE;
10155 return FALSE;
10156 }
8b127cbc 10157 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
c152c796 10158
8b127cbc 10159 if (flinfo->hash_sec != NULL)
fdc90cb4
JJ
10160 {
10161 size_t hash_entry_size;
10162 bfd_byte *bucketpos;
10163 bfd_vma chain;
41198d0c
L
10164 size_t bucketcount;
10165 size_t bucket;
10166
8b127cbc 10167 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
41198d0c 10168 bucket = h->u.elf_hash_value % bucketcount;
fdc90cb4
JJ
10169
10170 hash_entry_size
8b127cbc
AM
10171 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
10172 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4 10173 + (bucket + 2) * hash_entry_size);
8b127cbc
AM
10174 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
10175 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
10176 bucketpos);
10177 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
10178 ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4
JJ
10179 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
10180 }
c152c796 10181
8b127cbc 10182 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
c152c796
AM
10183 {
10184 Elf_Internal_Versym iversym;
10185 Elf_External_Versym *eversym;
10186
f5385ebf 10187 if (!h->def_regular)
c152c796 10188 {
7b20f099
AM
10189 if (h->verinfo.verdef == NULL
10190 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
10191 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
c152c796
AM
10192 iversym.vs_vers = 0;
10193 else
10194 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
10195 }
10196 else
10197 {
10198 if (h->verinfo.vertree == NULL)
10199 iversym.vs_vers = 1;
10200 else
10201 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
8b127cbc 10202 if (flinfo->info->create_default_symver)
3e3b46e5 10203 iversym.vs_vers++;
c152c796
AM
10204 }
10205
422f1182 10206 /* Turn on VERSYM_HIDDEN only if the hidden versioned symbol is
6e33951e 10207 defined locally. */
422f1182 10208 if (h->versioned == versioned_hidden && h->def_regular)
c152c796
AM
10209 iversym.vs_vers |= VERSYM_HIDDEN;
10210
8b127cbc 10211 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
c152c796 10212 eversym += h->dynindx;
8b127cbc 10213 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
c152c796
AM
10214 }
10215 }
10216
d983c8c5
AM
10217 /* If the symbol is undefined, and we didn't output it to .dynsym,
10218 strip it from .symtab too. Obviously we can't do this for
10219 relocatable output or when needed for --emit-relocs. */
10220 else if (input_sec == bfd_und_section_ptr
10221 && h->indx != -2
66cae560
NC
10222 /* PR 22319 Do not strip global undefined symbols marked as being needed. */
10223 && (h->mark != 1 || ELF_ST_BIND (sym.st_info) != STB_GLOBAL)
0e1862bb 10224 && !bfd_link_relocatable (flinfo->info))
d983c8c5 10225 return TRUE;
66cae560 10226
d983c8c5
AM
10227 /* Also strip others that we couldn't earlier due to dynamic symbol
10228 processing. */
10229 if (strip)
10230 return TRUE;
10231 if ((input_sec->flags & SEC_EXCLUDE) != 0)
c152c796
AM
10232 return TRUE;
10233
2ec55de3
AM
10234 /* Output a FILE symbol so that following locals are not associated
10235 with the wrong input file. We need one for forced local symbols
10236 if we've seen more than one FILE symbol or when we have exactly
10237 one FILE symbol but global symbols are present in a file other
10238 than the one with the FILE symbol. We also need one if linker
10239 defined symbols are present. In practice these conditions are
10240 always met, so just emit the FILE symbol unconditionally. */
10241 if (eoinfo->localsyms
10242 && !eoinfo->file_sym_done
10243 && eoinfo->flinfo->filesym_count != 0)
10244 {
10245 Elf_Internal_Sym fsym;
10246
10247 memset (&fsym, 0, sizeof (fsym));
10248 fsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10249 fsym.st_shndx = SHN_ABS;
ef10c3ac
L
10250 if (!elf_link_output_symstrtab (eoinfo->flinfo, NULL, &fsym,
10251 bfd_und_section_ptr, NULL))
2ec55de3
AM
10252 return FALSE;
10253
10254 eoinfo->file_sym_done = TRUE;
10255 }
10256
8b127cbc 10257 indx = bfd_get_symcount (flinfo->output_bfd);
ef10c3ac
L
10258 ret = elf_link_output_symstrtab (flinfo, h->root.root.string, &sym,
10259 input_sec, h);
6e0b88f1 10260 if (ret == 0)
c152c796
AM
10261 {
10262 eoinfo->failed = TRUE;
10263 return FALSE;
10264 }
6e0b88f1
AM
10265 else if (ret == 1)
10266 h->indx = indx;
10267 else if (h->indx == -2)
10268 abort();
c152c796
AM
10269
10270 return TRUE;
10271}
10272
cdd3575c
AM
10273/* Return TRUE if special handling is done for relocs in SEC against
10274 symbols defined in discarded sections. */
10275
c152c796
AM
10276static bfd_boolean
10277elf_section_ignore_discarded_relocs (asection *sec)
10278{
10279 const struct elf_backend_data *bed;
10280
cdd3575c
AM
10281 switch (sec->sec_info_type)
10282 {
dbaa2011
AM
10283 case SEC_INFO_TYPE_STABS:
10284 case SEC_INFO_TYPE_EH_FRAME:
2f0c68f2 10285 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
cdd3575c
AM
10286 return TRUE;
10287 default:
10288 break;
10289 }
c152c796
AM
10290
10291 bed = get_elf_backend_data (sec->owner);
10292 if (bed->elf_backend_ignore_discarded_relocs != NULL
10293 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
10294 return TRUE;
10295
10296 return FALSE;
10297}
10298
9e66c942
AM
10299/* Return a mask saying how ld should treat relocations in SEC against
10300 symbols defined in discarded sections. If this function returns
10301 COMPLAIN set, ld will issue a warning message. If this function
10302 returns PRETEND set, and the discarded section was link-once and the
10303 same size as the kept link-once section, ld will pretend that the
10304 symbol was actually defined in the kept section. Otherwise ld will
10305 zero the reloc (at least that is the intent, but some cooperation by
10306 the target dependent code is needed, particularly for REL targets). */
10307
8a696751
AM
10308unsigned int
10309_bfd_elf_default_action_discarded (asection *sec)
cdd3575c 10310{
9e66c942 10311 if (sec->flags & SEC_DEBUGGING)
69d54b1b 10312 return PRETEND;
cdd3575c
AM
10313
10314 if (strcmp (".eh_frame", sec->name) == 0)
9e66c942 10315 return 0;
cdd3575c
AM
10316
10317 if (strcmp (".gcc_except_table", sec->name) == 0)
9e66c942 10318 return 0;
cdd3575c 10319
9e66c942 10320 return COMPLAIN | PRETEND;
cdd3575c
AM
10321}
10322
3d7f7666
L
10323/* Find a match between a section and a member of a section group. */
10324
10325static asection *
c0f00686
L
10326match_group_member (asection *sec, asection *group,
10327 struct bfd_link_info *info)
3d7f7666
L
10328{
10329 asection *first = elf_next_in_group (group);
10330 asection *s = first;
10331
10332 while (s != NULL)
10333 {
c0f00686 10334 if (bfd_elf_match_symbols_in_sections (s, sec, info))
3d7f7666
L
10335 return s;
10336
83180ade 10337 s = elf_next_in_group (s);
3d7f7666
L
10338 if (s == first)
10339 break;
10340 }
10341
10342 return NULL;
10343}
10344
01b3c8ab 10345/* Check if the kept section of a discarded section SEC can be used
c2370991
AM
10346 to replace it. Return the replacement if it is OK. Otherwise return
10347 NULL. */
01b3c8ab
L
10348
10349asection *
c0f00686 10350_bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
01b3c8ab
L
10351{
10352 asection *kept;
10353
10354 kept = sec->kept_section;
10355 if (kept != NULL)
10356 {
c2370991 10357 if ((kept->flags & SEC_GROUP) != 0)
c0f00686 10358 kept = match_group_member (sec, kept, info);
1dd2625f
BW
10359 if (kept != NULL
10360 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
10361 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
01b3c8ab 10362 kept = NULL;
c2370991 10363 sec->kept_section = kept;
01b3c8ab
L
10364 }
10365 return kept;
10366}
10367
c152c796
AM
10368/* Link an input file into the linker output file. This function
10369 handles all the sections and relocations of the input file at once.
10370 This is so that we only have to read the local symbols once, and
10371 don't have to keep them in memory. */
10372
10373static bfd_boolean
8b127cbc 10374elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
c152c796 10375{
ece5ef60 10376 int (*relocate_section)
c152c796
AM
10377 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
10378 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
10379 bfd *output_bfd;
10380 Elf_Internal_Shdr *symtab_hdr;
10381 size_t locsymcount;
10382 size_t extsymoff;
10383 Elf_Internal_Sym *isymbuf;
10384 Elf_Internal_Sym *isym;
10385 Elf_Internal_Sym *isymend;
10386 long *pindex;
10387 asection **ppsection;
10388 asection *o;
10389 const struct elf_backend_data *bed;
c152c796 10390 struct elf_link_hash_entry **sym_hashes;
310fd250
L
10391 bfd_size_type address_size;
10392 bfd_vma r_type_mask;
10393 int r_sym_shift;
ffbc01cc 10394 bfd_boolean have_file_sym = FALSE;
c152c796 10395
8b127cbc 10396 output_bfd = flinfo->output_bfd;
c152c796
AM
10397 bed = get_elf_backend_data (output_bfd);
10398 relocate_section = bed->elf_backend_relocate_section;
10399
10400 /* If this is a dynamic object, we don't want to do anything here:
10401 we don't want the local symbols, and we don't want the section
10402 contents. */
10403 if ((input_bfd->flags & DYNAMIC) != 0)
10404 return TRUE;
10405
c152c796
AM
10406 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
10407 if (elf_bad_symtab (input_bfd))
10408 {
10409 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
10410 extsymoff = 0;
10411 }
10412 else
10413 {
10414 locsymcount = symtab_hdr->sh_info;
10415 extsymoff = symtab_hdr->sh_info;
10416 }
10417
10418 /* Read the local symbols. */
10419 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
10420 if (isymbuf == NULL && locsymcount != 0)
10421 {
10422 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
8b127cbc
AM
10423 flinfo->internal_syms,
10424 flinfo->external_syms,
10425 flinfo->locsym_shndx);
c152c796
AM
10426 if (isymbuf == NULL)
10427 return FALSE;
10428 }
10429
10430 /* Find local symbol sections and adjust values of symbols in
10431 SEC_MERGE sections. Write out those local symbols we know are
10432 going into the output file. */
10433 isymend = isymbuf + locsymcount;
8b127cbc 10434 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
c152c796
AM
10435 isym < isymend;
10436 isym++, pindex++, ppsection++)
10437 {
10438 asection *isec;
10439 const char *name;
10440 Elf_Internal_Sym osym;
6e0b88f1
AM
10441 long indx;
10442 int ret;
c152c796
AM
10443
10444 *pindex = -1;
10445
10446 if (elf_bad_symtab (input_bfd))
10447 {
10448 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
10449 {
10450 *ppsection = NULL;
10451 continue;
10452 }
10453 }
10454
10455 if (isym->st_shndx == SHN_UNDEF)
10456 isec = bfd_und_section_ptr;
c152c796
AM
10457 else if (isym->st_shndx == SHN_ABS)
10458 isec = bfd_abs_section_ptr;
10459 else if (isym->st_shndx == SHN_COMMON)
10460 isec = bfd_com_section_ptr;
10461 else
10462 {
cb33740c
AM
10463 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
10464 if (isec == NULL)
10465 {
10466 /* Don't attempt to output symbols with st_shnx in the
10467 reserved range other than SHN_ABS and SHN_COMMON. */
6835821b 10468 isec = bfd_und_section_ptr;
cb33740c 10469 }
dbaa2011 10470 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
cb33740c
AM
10471 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
10472 isym->st_value =
10473 _bfd_merged_section_offset (output_bfd, &isec,
10474 elf_section_data (isec)->sec_info,
10475 isym->st_value);
c152c796
AM
10476 }
10477
10478 *ppsection = isec;
10479
d983c8c5
AM
10480 /* Don't output the first, undefined, symbol. In fact, don't
10481 output any undefined local symbol. */
10482 if (isec == bfd_und_section_ptr)
c152c796
AM
10483 continue;
10484
10485 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
10486 {
10487 /* We never output section symbols. Instead, we use the
10488 section symbol of the corresponding section in the output
10489 file. */
10490 continue;
10491 }
10492
10493 /* If we are stripping all symbols, we don't want to output this
10494 one. */
8b127cbc 10495 if (flinfo->info->strip == strip_all)
c152c796
AM
10496 continue;
10497
10498 /* If we are discarding all local symbols, we don't want to
10499 output this one. If we are generating a relocatable output
10500 file, then some of the local symbols may be required by
10501 relocs; we output them below as we discover that they are
10502 needed. */
8b127cbc 10503 if (flinfo->info->discard == discard_all)
c152c796
AM
10504 continue;
10505
10506 /* If this symbol is defined in a section which we are
f02571c5
AM
10507 discarding, we don't need to keep it. */
10508 if (isym->st_shndx != SHN_UNDEF
4fbb74a6
AM
10509 && isym->st_shndx < SHN_LORESERVE
10510 && bfd_section_removed_from_list (output_bfd,
10511 isec->output_section))
e75a280b
L
10512 continue;
10513
c152c796
AM
10514 /* Get the name of the symbol. */
10515 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
10516 isym->st_name);
10517 if (name == NULL)
10518 return FALSE;
10519
10520 /* See if we are discarding symbols with this name. */
8b127cbc
AM
10521 if ((flinfo->info->strip == strip_some
10522 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
c152c796 10523 == NULL))
8b127cbc 10524 || (((flinfo->info->discard == discard_sec_merge
0e1862bb
L
10525 && (isec->flags & SEC_MERGE)
10526 && !bfd_link_relocatable (flinfo->info))
8b127cbc 10527 || flinfo->info->discard == discard_l)
c152c796
AM
10528 && bfd_is_local_label_name (input_bfd, name)))
10529 continue;
10530
ffbc01cc
AM
10531 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
10532 {
ce875075
AM
10533 if (input_bfd->lto_output)
10534 /* -flto puts a temp file name here. This means builds
10535 are not reproducible. Discard the symbol. */
10536 continue;
ffbc01cc
AM
10537 have_file_sym = TRUE;
10538 flinfo->filesym_count += 1;
10539 }
10540 if (!have_file_sym)
10541 {
10542 /* In the absence of debug info, bfd_find_nearest_line uses
10543 FILE symbols to determine the source file for local
10544 function symbols. Provide a FILE symbol here if input
10545 files lack such, so that their symbols won't be
10546 associated with a previous input file. It's not the
10547 source file, but the best we can do. */
10548 have_file_sym = TRUE;
10549 flinfo->filesym_count += 1;
10550 memset (&osym, 0, sizeof (osym));
10551 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10552 osym.st_shndx = SHN_ABS;
ef10c3ac
L
10553 if (!elf_link_output_symstrtab (flinfo,
10554 (input_bfd->lto_output ? NULL
10555 : input_bfd->filename),
10556 &osym, bfd_abs_section_ptr,
10557 NULL))
ffbc01cc
AM
10558 return FALSE;
10559 }
10560
c152c796
AM
10561 osym = *isym;
10562
10563 /* Adjust the section index for the output file. */
10564 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10565 isec->output_section);
10566 if (osym.st_shndx == SHN_BAD)
10567 return FALSE;
10568
c152c796
AM
10569 /* ELF symbols in relocatable files are section relative, but
10570 in executable files they are virtual addresses. Note that
10571 this code assumes that all ELF sections have an associated
10572 BFD section with a reasonable value for output_offset; below
10573 we assume that they also have a reasonable value for
10574 output_section. Any special sections must be set up to meet
10575 these requirements. */
10576 osym.st_value += isec->output_offset;
0e1862bb 10577 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10578 {
10579 osym.st_value += isec->output_section->vma;
10580 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
10581 {
10582 /* STT_TLS symbols are relative to PT_TLS segment base. */
102def4d
AM
10583 if (elf_hash_table (flinfo->info)->tls_sec != NULL)
10584 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
10585 else
10586 osym.st_info = ELF_ST_INFO (ELF_ST_BIND (osym.st_info),
10587 STT_NOTYPE);
c152c796
AM
10588 }
10589 }
10590
6e0b88f1 10591 indx = bfd_get_symcount (output_bfd);
ef10c3ac 10592 ret = elf_link_output_symstrtab (flinfo, name, &osym, isec, NULL);
6e0b88f1 10593 if (ret == 0)
c152c796 10594 return FALSE;
6e0b88f1
AM
10595 else if (ret == 1)
10596 *pindex = indx;
c152c796
AM
10597 }
10598
310fd250
L
10599 if (bed->s->arch_size == 32)
10600 {
10601 r_type_mask = 0xff;
10602 r_sym_shift = 8;
10603 address_size = 4;
10604 }
10605 else
10606 {
10607 r_type_mask = 0xffffffff;
10608 r_sym_shift = 32;
10609 address_size = 8;
10610 }
10611
c152c796
AM
10612 /* Relocate the contents of each section. */
10613 sym_hashes = elf_sym_hashes (input_bfd);
10614 for (o = input_bfd->sections; o != NULL; o = o->next)
10615 {
10616 bfd_byte *contents;
10617
10618 if (! o->linker_mark)
10619 {
10620 /* This section was omitted from the link. */
10621 continue;
10622 }
10623
7bdf4127 10624 if (!flinfo->info->resolve_section_groups
bcacc0f5
AM
10625 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
10626 {
10627 /* Deal with the group signature symbol. */
10628 struct bfd_elf_section_data *sec_data = elf_section_data (o);
10629 unsigned long symndx = sec_data->this_hdr.sh_info;
10630 asection *osec = o->output_section;
10631
7bdf4127 10632 BFD_ASSERT (bfd_link_relocatable (flinfo->info));
bcacc0f5
AM
10633 if (symndx >= locsymcount
10634 || (elf_bad_symtab (input_bfd)
8b127cbc 10635 && flinfo->sections[symndx] == NULL))
bcacc0f5
AM
10636 {
10637 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
10638 while (h->root.type == bfd_link_hash_indirect
10639 || h->root.type == bfd_link_hash_warning)
10640 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10641 /* Arrange for symbol to be output. */
10642 h->indx = -2;
10643 elf_section_data (osec)->this_hdr.sh_info = -2;
10644 }
10645 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
10646 {
10647 /* We'll use the output section target_index. */
8b127cbc 10648 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5
AM
10649 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
10650 }
10651 else
10652 {
8b127cbc 10653 if (flinfo->indices[symndx] == -1)
bcacc0f5
AM
10654 {
10655 /* Otherwise output the local symbol now. */
10656 Elf_Internal_Sym sym = isymbuf[symndx];
8b127cbc 10657 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5 10658 const char *name;
6e0b88f1
AM
10659 long indx;
10660 int ret;
bcacc0f5
AM
10661
10662 name = bfd_elf_string_from_elf_section (input_bfd,
10663 symtab_hdr->sh_link,
10664 sym.st_name);
10665 if (name == NULL)
10666 return FALSE;
10667
10668 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10669 sec);
10670 if (sym.st_shndx == SHN_BAD)
10671 return FALSE;
10672
10673 sym.st_value += o->output_offset;
10674
6e0b88f1 10675 indx = bfd_get_symcount (output_bfd);
ef10c3ac
L
10676 ret = elf_link_output_symstrtab (flinfo, name, &sym, o,
10677 NULL);
6e0b88f1 10678 if (ret == 0)
bcacc0f5 10679 return FALSE;
6e0b88f1 10680 else if (ret == 1)
8b127cbc 10681 flinfo->indices[symndx] = indx;
6e0b88f1
AM
10682 else
10683 abort ();
bcacc0f5
AM
10684 }
10685 elf_section_data (osec)->this_hdr.sh_info
8b127cbc 10686 = flinfo->indices[symndx];
bcacc0f5
AM
10687 }
10688 }
10689
c152c796 10690 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 10691 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
c152c796
AM
10692 continue;
10693
10694 if ((o->flags & SEC_LINKER_CREATED) != 0)
10695 {
10696 /* Section was created by _bfd_elf_link_create_dynamic_sections
10697 or somesuch. */
10698 continue;
10699 }
10700
10701 /* Get the contents of the section. They have been cached by a
10702 relaxation routine. Note that o is a section in an input
10703 file, so the contents field will not have been set by any of
10704 the routines which work on output files. */
10705 if (elf_section_data (o)->this_hdr.contents != NULL)
53291d1f
AM
10706 {
10707 contents = elf_section_data (o)->this_hdr.contents;
10708 if (bed->caches_rawsize
10709 && o->rawsize != 0
10710 && o->rawsize < o->size)
10711 {
10712 memcpy (flinfo->contents, contents, o->rawsize);
10713 contents = flinfo->contents;
10714 }
10715 }
c152c796
AM
10716 else
10717 {
8b127cbc 10718 contents = flinfo->contents;
4a114e3e 10719 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
c152c796
AM
10720 return FALSE;
10721 }
10722
10723 if ((o->flags & SEC_RELOC) != 0)
10724 {
10725 Elf_Internal_Rela *internal_relocs;
0f02bbd9 10726 Elf_Internal_Rela *rel, *relend;
0f02bbd9 10727 int action_discarded;
ece5ef60 10728 int ret;
c152c796
AM
10729
10730 /* Get the swapped relocs. */
10731 internal_relocs
8b127cbc
AM
10732 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
10733 flinfo->internal_relocs, FALSE);
c152c796
AM
10734 if (internal_relocs == NULL
10735 && o->reloc_count > 0)
10736 return FALSE;
10737
310fd250
L
10738 /* We need to reverse-copy input .ctors/.dtors sections if
10739 they are placed in .init_array/.finit_array for output. */
10740 if (o->size > address_size
10741 && ((strncmp (o->name, ".ctors", 6) == 0
10742 && strcmp (o->output_section->name,
10743 ".init_array") == 0)
10744 || (strncmp (o->name, ".dtors", 6) == 0
10745 && strcmp (o->output_section->name,
10746 ".fini_array") == 0))
10747 && (o->name[6] == 0 || o->name[6] == '.'))
c152c796 10748 {
056bafd4
MR
10749 if (o->size * bed->s->int_rels_per_ext_rel
10750 != o->reloc_count * address_size)
310fd250 10751 {
4eca0228 10752 _bfd_error_handler
695344c0 10753 /* xgettext:c-format */
871b3ab2 10754 (_("error: %pB: size of section %pA is not "
310fd250
L
10755 "multiple of address size"),
10756 input_bfd, o);
8c6716e5 10757 bfd_set_error (bfd_error_bad_value);
310fd250
L
10758 return FALSE;
10759 }
10760 o->flags |= SEC_ELF_REVERSE_COPY;
c152c796
AM
10761 }
10762
0f02bbd9 10763 action_discarded = -1;
c152c796 10764 if (!elf_section_ignore_discarded_relocs (o))
0f02bbd9
AM
10765 action_discarded = (*bed->action_discarded) (o);
10766
10767 /* Run through the relocs evaluating complex reloc symbols and
10768 looking for relocs against symbols from discarded sections
10769 or section symbols from removed link-once sections.
10770 Complain about relocs against discarded sections. Zero
10771 relocs against removed link-once sections. */
10772
10773 rel = internal_relocs;
056bafd4 10774 relend = rel + o->reloc_count;
0f02bbd9 10775 for ( ; rel < relend; rel++)
c152c796 10776 {
0f02bbd9
AM
10777 unsigned long r_symndx = rel->r_info >> r_sym_shift;
10778 unsigned int s_type;
10779 asection **ps, *sec;
10780 struct elf_link_hash_entry *h = NULL;
10781 const char *sym_name;
c152c796 10782
0f02bbd9
AM
10783 if (r_symndx == STN_UNDEF)
10784 continue;
c152c796 10785
0f02bbd9
AM
10786 if (r_symndx >= locsymcount
10787 || (elf_bad_symtab (input_bfd)
8b127cbc 10788 && flinfo->sections[r_symndx] == NULL))
0f02bbd9
AM
10789 {
10790 h = sym_hashes[r_symndx - extsymoff];
ee75fd95 10791
0f02bbd9
AM
10792 /* Badly formatted input files can contain relocs that
10793 reference non-existant symbols. Check here so that
10794 we do not seg fault. */
10795 if (h == NULL)
c152c796 10796 {
4eca0228 10797 _bfd_error_handler
695344c0 10798 /* xgettext:c-format */
2dcf00ce 10799 (_("error: %pB contains a reloc (%#" PRIx64 ") for section %pA "
0f02bbd9 10800 "that references a non-existent global symbol"),
2dcf00ce 10801 input_bfd, (uint64_t) rel->r_info, o);
0f02bbd9
AM
10802 bfd_set_error (bfd_error_bad_value);
10803 return FALSE;
10804 }
3b36f7e6 10805
0f02bbd9
AM
10806 while (h->root.type == bfd_link_hash_indirect
10807 || h->root.type == bfd_link_hash_warning)
10808 h = (struct elf_link_hash_entry *) h->root.u.i.link;
c152c796 10809
0f02bbd9 10810 s_type = h->type;
cdd3575c 10811
9e2dec47 10812 /* If a plugin symbol is referenced from a non-IR file,
ca4be51c
AM
10813 mark the symbol as undefined. Note that the
10814 linker may attach linker created dynamic sections
10815 to the plugin bfd. Symbols defined in linker
10816 created sections are not plugin symbols. */
bc4e12de 10817 if ((h->root.non_ir_ref_regular
4070765b 10818 || h->root.non_ir_ref_dynamic)
9e2dec47
L
10819 && (h->root.type == bfd_link_hash_defined
10820 || h->root.type == bfd_link_hash_defweak)
10821 && (h->root.u.def.section->flags
10822 & SEC_LINKER_CREATED) == 0
10823 && h->root.u.def.section->owner != NULL
10824 && (h->root.u.def.section->owner->flags
10825 & BFD_PLUGIN) != 0)
10826 {
10827 h->root.type = bfd_link_hash_undefined;
10828 h->root.u.undef.abfd = h->root.u.def.section->owner;
10829 }
10830
0f02bbd9
AM
10831 ps = NULL;
10832 if (h->root.type == bfd_link_hash_defined
10833 || h->root.type == bfd_link_hash_defweak)
10834 ps = &h->root.u.def.section;
10835
10836 sym_name = h->root.root.string;
10837 }
10838 else
10839 {
10840 Elf_Internal_Sym *sym = isymbuf + r_symndx;
10841
10842 s_type = ELF_ST_TYPE (sym->st_info);
8b127cbc 10843 ps = &flinfo->sections[r_symndx];
0f02bbd9
AM
10844 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
10845 sym, *ps);
10846 }
c152c796 10847
c301e700 10848 if ((s_type == STT_RELC || s_type == STT_SRELC)
0e1862bb 10849 && !bfd_link_relocatable (flinfo->info))
0f02bbd9
AM
10850 {
10851 bfd_vma val;
10852 bfd_vma dot = (rel->r_offset
10853 + o->output_offset + o->output_section->vma);
10854#ifdef DEBUG
10855 printf ("Encountered a complex symbol!");
10856 printf (" (input_bfd %s, section %s, reloc %ld\n",
9ccb8af9
AM
10857 input_bfd->filename, o->name,
10858 (long) (rel - internal_relocs));
0f02bbd9
AM
10859 printf (" symbol: idx %8.8lx, name %s\n",
10860 r_symndx, sym_name);
10861 printf (" reloc : info %8.8lx, addr %8.8lx\n",
10862 (unsigned long) rel->r_info,
10863 (unsigned long) rel->r_offset);
10864#endif
8b127cbc 10865 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
0f02bbd9
AM
10866 isymbuf, locsymcount, s_type == STT_SRELC))
10867 return FALSE;
10868
10869 /* Symbol evaluated OK. Update to absolute value. */
10870 set_symbol_value (input_bfd, isymbuf, locsymcount,
10871 r_symndx, val);
10872 continue;
10873 }
10874
10875 if (action_discarded != -1 && ps != NULL)
10876 {
cdd3575c
AM
10877 /* Complain if the definition comes from a
10878 discarded section. */
dbaa2011 10879 if ((sec = *ps) != NULL && discarded_section (sec))
cdd3575c 10880 {
cf35638d 10881 BFD_ASSERT (r_symndx != STN_UNDEF);
0f02bbd9 10882 if (action_discarded & COMPLAIN)
8b127cbc 10883 (*flinfo->info->callbacks->einfo)
695344c0 10884 /* xgettext:c-format */
871b3ab2
AM
10885 (_("%X`%s' referenced in section `%pA' of %pB: "
10886 "defined in discarded section `%pA' of %pB\n"),
e1fffbe6 10887 sym_name, o, input_bfd, sec, sec->owner);
cdd3575c 10888
87e5235d 10889 /* Try to do the best we can to support buggy old
e0ae6d6f 10890 versions of gcc. Pretend that the symbol is
87e5235d
AM
10891 really defined in the kept linkonce section.
10892 FIXME: This is quite broken. Modifying the
10893 symbol here means we will be changing all later
e0ae6d6f 10894 uses of the symbol, not just in this section. */
0f02bbd9 10895 if (action_discarded & PRETEND)
87e5235d 10896 {
01b3c8ab
L
10897 asection *kept;
10898
c0f00686 10899 kept = _bfd_elf_check_kept_section (sec,
8b127cbc 10900 flinfo->info);
01b3c8ab 10901 if (kept != NULL)
87e5235d
AM
10902 {
10903 *ps = kept;
10904 continue;
10905 }
10906 }
c152c796
AM
10907 }
10908 }
10909 }
10910
10911 /* Relocate the section by invoking a back end routine.
10912
10913 The back end routine is responsible for adjusting the
10914 section contents as necessary, and (if using Rela relocs
10915 and generating a relocatable output file) adjusting the
10916 reloc addend as necessary.
10917
10918 The back end routine does not have to worry about setting
10919 the reloc address or the reloc symbol index.
10920
10921 The back end routine is given a pointer to the swapped in
10922 internal symbols, and can access the hash table entries
10923 for the external symbols via elf_sym_hashes (input_bfd).
10924
10925 When generating relocatable output, the back end routine
10926 must handle STB_LOCAL/STT_SECTION symbols specially. The
10927 output symbol is going to be a section symbol
10928 corresponding to the output section, which will require
10929 the addend to be adjusted. */
10930
8b127cbc 10931 ret = (*relocate_section) (output_bfd, flinfo->info,
c152c796
AM
10932 input_bfd, o, contents,
10933 internal_relocs,
10934 isymbuf,
8b127cbc 10935 flinfo->sections);
ece5ef60 10936 if (!ret)
c152c796
AM
10937 return FALSE;
10938
ece5ef60 10939 if (ret == 2
0e1862bb 10940 || bfd_link_relocatable (flinfo->info)
8b127cbc 10941 || flinfo->info->emitrelocations)
c152c796
AM
10942 {
10943 Elf_Internal_Rela *irela;
d4730f92 10944 Elf_Internal_Rela *irelaend, *irelamid;
c152c796
AM
10945 bfd_vma last_offset;
10946 struct elf_link_hash_entry **rel_hash;
d4730f92
BS
10947 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
10948 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
c152c796 10949 unsigned int next_erel;
c152c796 10950 bfd_boolean rela_normal;
d4730f92 10951 struct bfd_elf_section_data *esdi, *esdo;
c152c796 10952
d4730f92
BS
10953 esdi = elf_section_data (o);
10954 esdo = elf_section_data (o->output_section);
10955 rela_normal = FALSE;
c152c796
AM
10956
10957 /* Adjust the reloc addresses and symbol indices. */
10958
10959 irela = internal_relocs;
056bafd4 10960 irelaend = irela + o->reloc_count;
d4730f92
BS
10961 rel_hash = esdo->rel.hashes + esdo->rel.count;
10962 /* We start processing the REL relocs, if any. When we reach
10963 IRELAMID in the loop, we switch to the RELA relocs. */
10964 irelamid = irela;
10965 if (esdi->rel.hdr != NULL)
10966 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
10967 * bed->s->int_rels_per_ext_rel);
eac338cf 10968 rel_hash_list = rel_hash;
d4730f92 10969 rela_hash_list = NULL;
c152c796 10970 last_offset = o->output_offset;
0e1862bb 10971 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10972 last_offset += o->output_section->vma;
10973 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
10974 {
10975 unsigned long r_symndx;
10976 asection *sec;
10977 Elf_Internal_Sym sym;
10978
10979 if (next_erel == bed->s->int_rels_per_ext_rel)
10980 {
10981 rel_hash++;
10982 next_erel = 0;
10983 }
10984
d4730f92
BS
10985 if (irela == irelamid)
10986 {
10987 rel_hash = esdo->rela.hashes + esdo->rela.count;
10988 rela_hash_list = rel_hash;
10989 rela_normal = bed->rela_normal;
10990 }
10991
c152c796 10992 irela->r_offset = _bfd_elf_section_offset (output_bfd,
8b127cbc 10993 flinfo->info, o,
c152c796
AM
10994 irela->r_offset);
10995 if (irela->r_offset >= (bfd_vma) -2)
10996 {
10997 /* This is a reloc for a deleted entry or somesuch.
10998 Turn it into an R_*_NONE reloc, at the same
10999 offset as the last reloc. elf_eh_frame.c and
e460dd0d 11000 bfd_elf_discard_info rely on reloc offsets
c152c796
AM
11001 being ordered. */
11002 irela->r_offset = last_offset;
11003 irela->r_info = 0;
11004 irela->r_addend = 0;
11005 continue;
11006 }
11007
11008 irela->r_offset += o->output_offset;
11009
11010 /* Relocs in an executable have to be virtual addresses. */
0e1862bb 11011 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
11012 irela->r_offset += o->output_section->vma;
11013
11014 last_offset = irela->r_offset;
11015
11016 r_symndx = irela->r_info >> r_sym_shift;
11017 if (r_symndx == STN_UNDEF)
11018 continue;
11019
11020 if (r_symndx >= locsymcount
11021 || (elf_bad_symtab (input_bfd)
8b127cbc 11022 && flinfo->sections[r_symndx] == NULL))
c152c796
AM
11023 {
11024 struct elf_link_hash_entry *rh;
11025 unsigned long indx;
11026
11027 /* This is a reloc against a global symbol. We
11028 have not yet output all the local symbols, so
11029 we do not know the symbol index of any global
11030 symbol. We set the rel_hash entry for this
11031 reloc to point to the global hash table entry
11032 for this symbol. The symbol index is then
ee75fd95 11033 set at the end of bfd_elf_final_link. */
c152c796
AM
11034 indx = r_symndx - extsymoff;
11035 rh = elf_sym_hashes (input_bfd)[indx];
11036 while (rh->root.type == bfd_link_hash_indirect
11037 || rh->root.type == bfd_link_hash_warning)
11038 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
11039
11040 /* Setting the index to -2 tells
11041 elf_link_output_extsym that this symbol is
11042 used by a reloc. */
11043 BFD_ASSERT (rh->indx < 0);
11044 rh->indx = -2;
c152c796
AM
11045 *rel_hash = rh;
11046
11047 continue;
11048 }
11049
11050 /* This is a reloc against a local symbol. */
11051
11052 *rel_hash = NULL;
11053 sym = isymbuf[r_symndx];
8b127cbc 11054 sec = flinfo->sections[r_symndx];
c152c796
AM
11055 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
11056 {
11057 /* I suppose the backend ought to fill in the
11058 section of any STT_SECTION symbol against a
6a8d1586 11059 processor specific section. */
cf35638d 11060 r_symndx = STN_UNDEF;
6a8d1586
AM
11061 if (bfd_is_abs_section (sec))
11062 ;
c152c796
AM
11063 else if (sec == NULL || sec->owner == NULL)
11064 {
11065 bfd_set_error (bfd_error_bad_value);
11066 return FALSE;
11067 }
11068 else
11069 {
6a8d1586
AM
11070 asection *osec = sec->output_section;
11071
11072 /* If we have discarded a section, the output
11073 section will be the absolute section. In
ab96bf03
AM
11074 case of discarded SEC_MERGE sections, use
11075 the kept section. relocate_section should
11076 have already handled discarded linkonce
11077 sections. */
6a8d1586
AM
11078 if (bfd_is_abs_section (osec)
11079 && sec->kept_section != NULL
11080 && sec->kept_section->output_section != NULL)
11081 {
11082 osec = sec->kept_section->output_section;
11083 irela->r_addend -= osec->vma;
11084 }
11085
11086 if (!bfd_is_abs_section (osec))
11087 {
11088 r_symndx = osec->target_index;
cf35638d 11089 if (r_symndx == STN_UNDEF)
74541ad4 11090 {
051d833a
AM
11091 irela->r_addend += osec->vma;
11092 osec = _bfd_nearby_section (output_bfd, osec,
11093 osec->vma);
11094 irela->r_addend -= osec->vma;
11095 r_symndx = osec->target_index;
74541ad4 11096 }
6a8d1586 11097 }
c152c796
AM
11098 }
11099
11100 /* Adjust the addend according to where the
11101 section winds up in the output section. */
11102 if (rela_normal)
11103 irela->r_addend += sec->output_offset;
11104 }
11105 else
11106 {
8b127cbc 11107 if (flinfo->indices[r_symndx] == -1)
c152c796
AM
11108 {
11109 unsigned long shlink;
11110 const char *name;
11111 asection *osec;
6e0b88f1 11112 long indx;
c152c796 11113
8b127cbc 11114 if (flinfo->info->strip == strip_all)
c152c796
AM
11115 {
11116 /* You can't do ld -r -s. */
11117 bfd_set_error (bfd_error_invalid_operation);
11118 return FALSE;
11119 }
11120
11121 /* This symbol was skipped earlier, but
11122 since it is needed by a reloc, we
11123 must output it now. */
11124 shlink = symtab_hdr->sh_link;
11125 name = (bfd_elf_string_from_elf_section
11126 (input_bfd, shlink, sym.st_name));
11127 if (name == NULL)
11128 return FALSE;
11129
11130 osec = sec->output_section;
11131 sym.st_shndx =
11132 _bfd_elf_section_from_bfd_section (output_bfd,
11133 osec);
11134 if (sym.st_shndx == SHN_BAD)
11135 return FALSE;
11136
11137 sym.st_value += sec->output_offset;
0e1862bb 11138 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
11139 {
11140 sym.st_value += osec->vma;
11141 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
11142 {
102def4d
AM
11143 struct elf_link_hash_table *htab
11144 = elf_hash_table (flinfo->info);
11145
c152c796
AM
11146 /* STT_TLS symbols are relative to PT_TLS
11147 segment base. */
102def4d
AM
11148 if (htab->tls_sec != NULL)
11149 sym.st_value -= htab->tls_sec->vma;
11150 else
11151 sym.st_info
11152 = ELF_ST_INFO (ELF_ST_BIND (sym.st_info),
11153 STT_NOTYPE);
c152c796
AM
11154 }
11155 }
11156
6e0b88f1 11157 indx = bfd_get_symcount (output_bfd);
ef10c3ac
L
11158 ret = elf_link_output_symstrtab (flinfo, name,
11159 &sym, sec,
11160 NULL);
6e0b88f1 11161 if (ret == 0)
c152c796 11162 return FALSE;
6e0b88f1 11163 else if (ret == 1)
8b127cbc 11164 flinfo->indices[r_symndx] = indx;
6e0b88f1
AM
11165 else
11166 abort ();
c152c796
AM
11167 }
11168
8b127cbc 11169 r_symndx = flinfo->indices[r_symndx];
c152c796
AM
11170 }
11171
11172 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
11173 | (irela->r_info & r_type_mask));
11174 }
11175
11176 /* Swap out the relocs. */
d4730f92
BS
11177 input_rel_hdr = esdi->rel.hdr;
11178 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
c152c796 11179 {
d4730f92
BS
11180 if (!bed->elf_backend_emit_relocs (output_bfd, o,
11181 input_rel_hdr,
11182 internal_relocs,
11183 rel_hash_list))
11184 return FALSE;
c152c796
AM
11185 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
11186 * bed->s->int_rels_per_ext_rel);
eac338cf 11187 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
d4730f92
BS
11188 }
11189
11190 input_rela_hdr = esdi->rela.hdr;
11191 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
11192 {
eac338cf 11193 if (!bed->elf_backend_emit_relocs (output_bfd, o,
d4730f92 11194 input_rela_hdr,
eac338cf 11195 internal_relocs,
d4730f92 11196 rela_hash_list))
c152c796
AM
11197 return FALSE;
11198 }
11199 }
11200 }
11201
11202 /* Write out the modified section contents. */
11203 if (bed->elf_backend_write_section
8b127cbc 11204 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
c7b8f16e 11205 contents))
c152c796
AM
11206 {
11207 /* Section written out. */
11208 }
11209 else switch (o->sec_info_type)
11210 {
dbaa2011 11211 case SEC_INFO_TYPE_STABS:
c152c796
AM
11212 if (! (_bfd_write_section_stabs
11213 (output_bfd,
8b127cbc 11214 &elf_hash_table (flinfo->info)->stab_info,
c152c796
AM
11215 o, &elf_section_data (o)->sec_info, contents)))
11216 return FALSE;
11217 break;
dbaa2011 11218 case SEC_INFO_TYPE_MERGE:
c152c796
AM
11219 if (! _bfd_write_merged_section (output_bfd, o,
11220 elf_section_data (o)->sec_info))
11221 return FALSE;
11222 break;
dbaa2011 11223 case SEC_INFO_TYPE_EH_FRAME:
c152c796 11224 {
8b127cbc 11225 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
c152c796
AM
11226 o, contents))
11227 return FALSE;
11228 }
11229 break;
2f0c68f2
CM
11230 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
11231 {
11232 if (! _bfd_elf_write_section_eh_frame_entry (output_bfd,
11233 flinfo->info,
11234 o, contents))
11235 return FALSE;
11236 }
11237 break;
c152c796
AM
11238 default:
11239 {
310fd250
L
11240 if (! (o->flags & SEC_EXCLUDE))
11241 {
11242 file_ptr offset = (file_ptr) o->output_offset;
11243 bfd_size_type todo = o->size;
37b01f6a
DG
11244
11245 offset *= bfd_octets_per_byte (output_bfd);
11246
310fd250
L
11247 if ((o->flags & SEC_ELF_REVERSE_COPY))
11248 {
11249 /* Reverse-copy input section to output. */
11250 do
11251 {
11252 todo -= address_size;
11253 if (! bfd_set_section_contents (output_bfd,
11254 o->output_section,
11255 contents + todo,
11256 offset,
11257 address_size))
11258 return FALSE;
11259 if (todo == 0)
11260 break;
11261 offset += address_size;
11262 }
11263 while (1);
11264 }
11265 else if (! bfd_set_section_contents (output_bfd,
11266 o->output_section,
11267 contents,
11268 offset, todo))
11269 return FALSE;
11270 }
c152c796
AM
11271 }
11272 break;
11273 }
11274 }
11275
11276 return TRUE;
11277}
11278
11279/* Generate a reloc when linking an ELF file. This is a reloc
3a800eb9 11280 requested by the linker, and does not come from any input file. This
c152c796
AM
11281 is used to build constructor and destructor tables when linking
11282 with -Ur. */
11283
11284static bfd_boolean
11285elf_reloc_link_order (bfd *output_bfd,
11286 struct bfd_link_info *info,
11287 asection *output_section,
11288 struct bfd_link_order *link_order)
11289{
11290 reloc_howto_type *howto;
11291 long indx;
11292 bfd_vma offset;
11293 bfd_vma addend;
d4730f92 11294 struct bfd_elf_section_reloc_data *reldata;
c152c796
AM
11295 struct elf_link_hash_entry **rel_hash_ptr;
11296 Elf_Internal_Shdr *rel_hdr;
11297 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
11298 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
11299 bfd_byte *erel;
11300 unsigned int i;
d4730f92 11301 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
c152c796
AM
11302
11303 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
11304 if (howto == NULL)
11305 {
11306 bfd_set_error (bfd_error_bad_value);
11307 return FALSE;
11308 }
11309
11310 addend = link_order->u.reloc.p->addend;
11311
d4730f92
BS
11312 if (esdo->rel.hdr)
11313 reldata = &esdo->rel;
11314 else if (esdo->rela.hdr)
11315 reldata = &esdo->rela;
11316 else
11317 {
11318 reldata = NULL;
11319 BFD_ASSERT (0);
11320 }
11321
c152c796 11322 /* Figure out the symbol index. */
d4730f92 11323 rel_hash_ptr = reldata->hashes + reldata->count;
c152c796
AM
11324 if (link_order->type == bfd_section_reloc_link_order)
11325 {
11326 indx = link_order->u.reloc.p->u.section->target_index;
11327 BFD_ASSERT (indx != 0);
11328 *rel_hash_ptr = NULL;
11329 }
11330 else
11331 {
11332 struct elf_link_hash_entry *h;
11333
11334 /* Treat a reloc against a defined symbol as though it were
11335 actually against the section. */
11336 h = ((struct elf_link_hash_entry *)
11337 bfd_wrapped_link_hash_lookup (output_bfd, info,
11338 link_order->u.reloc.p->u.name,
11339 FALSE, FALSE, TRUE));
11340 if (h != NULL
11341 && (h->root.type == bfd_link_hash_defined
11342 || h->root.type == bfd_link_hash_defweak))
11343 {
11344 asection *section;
11345
11346 section = h->root.u.def.section;
11347 indx = section->output_section->target_index;
11348 *rel_hash_ptr = NULL;
11349 /* It seems that we ought to add the symbol value to the
11350 addend here, but in practice it has already been added
11351 because it was passed to constructor_callback. */
11352 addend += section->output_section->vma + section->output_offset;
11353 }
11354 else if (h != NULL)
11355 {
11356 /* Setting the index to -2 tells elf_link_output_extsym that
11357 this symbol is used by a reloc. */
11358 h->indx = -2;
11359 *rel_hash_ptr = h;
11360 indx = 0;
11361 }
11362 else
11363 {
1a72702b
AM
11364 (*info->callbacks->unattached_reloc)
11365 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0);
c152c796
AM
11366 indx = 0;
11367 }
11368 }
11369
11370 /* If this is an inplace reloc, we must write the addend into the
11371 object file. */
11372 if (howto->partial_inplace && addend != 0)
11373 {
11374 bfd_size_type size;
11375 bfd_reloc_status_type rstat;
11376 bfd_byte *buf;
11377 bfd_boolean ok;
11378 const char *sym_name;
11379
a50b1753
NC
11380 size = (bfd_size_type) bfd_get_reloc_size (howto);
11381 buf = (bfd_byte *) bfd_zmalloc (size);
6346d5ca 11382 if (buf == NULL && size != 0)
c152c796
AM
11383 return FALSE;
11384 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
11385 switch (rstat)
11386 {
11387 case bfd_reloc_ok:
11388 break;
11389
11390 default:
11391 case bfd_reloc_outofrange:
11392 abort ();
11393
11394 case bfd_reloc_overflow:
11395 if (link_order->type == bfd_section_reloc_link_order)
11396 sym_name = bfd_section_name (output_bfd,
11397 link_order->u.reloc.p->u.section);
11398 else
11399 sym_name = link_order->u.reloc.p->u.name;
1a72702b
AM
11400 (*info->callbacks->reloc_overflow) (info, NULL, sym_name,
11401 howto->name, addend, NULL, NULL,
11402 (bfd_vma) 0);
c152c796
AM
11403 break;
11404 }
37b01f6a 11405
c152c796 11406 ok = bfd_set_section_contents (output_bfd, output_section, buf,
37b01f6a
DG
11407 link_order->offset
11408 * bfd_octets_per_byte (output_bfd),
11409 size);
c152c796
AM
11410 free (buf);
11411 if (! ok)
11412 return FALSE;
11413 }
11414
11415 /* The address of a reloc is relative to the section in a
11416 relocatable file, and is a virtual address in an executable
11417 file. */
11418 offset = link_order->offset;
0e1862bb 11419 if (! bfd_link_relocatable (info))
c152c796
AM
11420 offset += output_section->vma;
11421
11422 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
11423 {
11424 irel[i].r_offset = offset;
11425 irel[i].r_info = 0;
11426 irel[i].r_addend = 0;
11427 }
11428 if (bed->s->arch_size == 32)
11429 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
11430 else
11431 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
11432
d4730f92 11433 rel_hdr = reldata->hdr;
c152c796
AM
11434 erel = rel_hdr->contents;
11435 if (rel_hdr->sh_type == SHT_REL)
11436 {
d4730f92 11437 erel += reldata->count * bed->s->sizeof_rel;
c152c796
AM
11438 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
11439 }
11440 else
11441 {
11442 irel[0].r_addend = addend;
d4730f92 11443 erel += reldata->count * bed->s->sizeof_rela;
c152c796
AM
11444 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
11445 }
11446
d4730f92 11447 ++reldata->count;
c152c796
AM
11448
11449 return TRUE;
11450}
11451
0b52efa6
PB
11452
11453/* Get the output vma of the section pointed to by the sh_link field. */
11454
11455static bfd_vma
11456elf_get_linked_section_vma (struct bfd_link_order *p)
11457{
11458 Elf_Internal_Shdr **elf_shdrp;
11459 asection *s;
11460 int elfsec;
11461
11462 s = p->u.indirect.section;
11463 elf_shdrp = elf_elfsections (s->owner);
11464 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
11465 elfsec = elf_shdrp[elfsec]->sh_link;
185d09ad
L
11466 /* PR 290:
11467 The Intel C compiler generates SHT_IA_64_UNWIND with
e04bcc6d 11468 SHF_LINK_ORDER. But it doesn't set the sh_link or
185d09ad
L
11469 sh_info fields. Hence we could get the situation
11470 where elfsec is 0. */
11471 if (elfsec == 0)
11472 {
11473 const struct elf_backend_data *bed
11474 = get_elf_backend_data (s->owner);
11475 if (bed->link_order_error_handler)
d003868e 11476 bed->link_order_error_handler
695344c0 11477 /* xgettext:c-format */
871b3ab2 11478 (_("%pB: warning: sh_link not set for section `%pA'"), s->owner, s);
185d09ad
L
11479 return 0;
11480 }
11481 else
11482 {
11483 s = elf_shdrp[elfsec]->bfd_section;
11484 return s->output_section->vma + s->output_offset;
11485 }
0b52efa6
PB
11486}
11487
11488
11489/* Compare two sections based on the locations of the sections they are
11490 linked to. Used by elf_fixup_link_order. */
11491
11492static int
11493compare_link_order (const void * a, const void * b)
11494{
11495 bfd_vma apos;
11496 bfd_vma bpos;
11497
11498 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
11499 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
11500 if (apos < bpos)
11501 return -1;
11502 return apos > bpos;
11503}
11504
11505
11506/* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
11507 order as their linked sections. Returns false if this could not be done
11508 because an output section includes both ordered and unordered
11509 sections. Ideally we'd do this in the linker proper. */
11510
11511static bfd_boolean
11512elf_fixup_link_order (bfd *abfd, asection *o)
11513{
11514 int seen_linkorder;
11515 int seen_other;
11516 int n;
11517 struct bfd_link_order *p;
11518 bfd *sub;
11519 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
b761a207 11520 unsigned elfsec;
0b52efa6 11521 struct bfd_link_order **sections;
d33cdfe3 11522 asection *s, *other_sec, *linkorder_sec;
0b52efa6 11523 bfd_vma offset;
3b36f7e6 11524
d33cdfe3
L
11525 other_sec = NULL;
11526 linkorder_sec = NULL;
0b52efa6
PB
11527 seen_other = 0;
11528 seen_linkorder = 0;
8423293d 11529 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6 11530 {
d33cdfe3 11531 if (p->type == bfd_indirect_link_order)
0b52efa6
PB
11532 {
11533 s = p->u.indirect.section;
d33cdfe3
L
11534 sub = s->owner;
11535 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
11536 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
b761a207
BE
11537 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
11538 && elfsec < elf_numsections (sub)
4fbb74a6
AM
11539 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
11540 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
d33cdfe3
L
11541 {
11542 seen_linkorder++;
11543 linkorder_sec = s;
11544 }
0b52efa6 11545 else
d33cdfe3
L
11546 {
11547 seen_other++;
11548 other_sec = s;
11549 }
0b52efa6
PB
11550 }
11551 else
11552 seen_other++;
d33cdfe3
L
11553
11554 if (seen_other && seen_linkorder)
11555 {
11556 if (other_sec && linkorder_sec)
4eca0228 11557 _bfd_error_handler
695344c0 11558 /* xgettext:c-format */
871b3ab2
AM
11559 (_("%pA has both ordered [`%pA' in %pB] "
11560 "and unordered [`%pA' in %pB] sections"),
63a5468a
AM
11561 o, linkorder_sec, linkorder_sec->owner,
11562 other_sec, other_sec->owner);
d33cdfe3 11563 else
4eca0228 11564 _bfd_error_handler
871b3ab2 11565 (_("%pA has both ordered and unordered sections"), o);
d33cdfe3
L
11566 bfd_set_error (bfd_error_bad_value);
11567 return FALSE;
11568 }
0b52efa6
PB
11569 }
11570
11571 if (!seen_linkorder)
11572 return TRUE;
11573
0b52efa6 11574 sections = (struct bfd_link_order **)
14b1c01e
AM
11575 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
11576 if (sections == NULL)
11577 return FALSE;
0b52efa6 11578 seen_linkorder = 0;
3b36f7e6 11579
8423293d 11580 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6
PB
11581 {
11582 sections[seen_linkorder++] = p;
11583 }
11584 /* Sort the input sections in the order of their linked section. */
11585 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
11586 compare_link_order);
11587
11588 /* Change the offsets of the sections. */
11589 offset = 0;
11590 for (n = 0; n < seen_linkorder; n++)
11591 {
11592 s = sections[n]->u.indirect.section;
461686a3 11593 offset &= ~(bfd_vma) 0 << s->alignment_power;
37b01f6a 11594 s->output_offset = offset / bfd_octets_per_byte (abfd);
0b52efa6
PB
11595 sections[n]->offset = offset;
11596 offset += sections[n]->size;
11597 }
11598
4dd07732 11599 free (sections);
0b52efa6
PB
11600 return TRUE;
11601}
11602
76359541
TP
11603/* Generate an import library in INFO->implib_bfd from symbols in ABFD.
11604 Returns TRUE upon success, FALSE otherwise. */
11605
11606static bfd_boolean
11607elf_output_implib (bfd *abfd, struct bfd_link_info *info)
11608{
11609 bfd_boolean ret = FALSE;
11610 bfd *implib_bfd;
11611 const struct elf_backend_data *bed;
11612 flagword flags;
11613 enum bfd_architecture arch;
11614 unsigned int mach;
11615 asymbol **sympp = NULL;
11616 long symsize;
11617 long symcount;
11618 long src_count;
11619 elf_symbol_type *osymbuf;
11620
11621 implib_bfd = info->out_implib_bfd;
11622 bed = get_elf_backend_data (abfd);
11623
11624 if (!bfd_set_format (implib_bfd, bfd_object))
11625 return FALSE;
11626
046734ff 11627 /* Use flag from executable but make it a relocatable object. */
76359541
TP
11628 flags = bfd_get_file_flags (abfd);
11629 flags &= ~HAS_RELOC;
11630 if (!bfd_set_start_address (implib_bfd, 0)
046734ff 11631 || !bfd_set_file_flags (implib_bfd, flags & ~EXEC_P))
76359541
TP
11632 return FALSE;
11633
11634 /* Copy architecture of output file to import library file. */
11635 arch = bfd_get_arch (abfd);
11636 mach = bfd_get_mach (abfd);
11637 if (!bfd_set_arch_mach (implib_bfd, arch, mach)
11638 && (abfd->target_defaulted
11639 || bfd_get_arch (abfd) != bfd_get_arch (implib_bfd)))
11640 return FALSE;
11641
11642 /* Get symbol table size. */
11643 symsize = bfd_get_symtab_upper_bound (abfd);
11644 if (symsize < 0)
11645 return FALSE;
11646
11647 /* Read in the symbol table. */
11648 sympp = (asymbol **) xmalloc (symsize);
11649 symcount = bfd_canonicalize_symtab (abfd, sympp);
11650 if (symcount < 0)
11651 goto free_sym_buf;
11652
11653 /* Allow the BFD backend to copy any private header data it
11654 understands from the output BFD to the import library BFD. */
11655 if (! bfd_copy_private_header_data (abfd, implib_bfd))
11656 goto free_sym_buf;
11657
11658 /* Filter symbols to appear in the import library. */
11659 if (bed->elf_backend_filter_implib_symbols)
11660 symcount = bed->elf_backend_filter_implib_symbols (abfd, info, sympp,
11661 symcount);
11662 else
11663 symcount = _bfd_elf_filter_global_symbols (abfd, info, sympp, symcount);
11664 if (symcount == 0)
11665 {
5df1bc57 11666 bfd_set_error (bfd_error_no_symbols);
871b3ab2 11667 _bfd_error_handler (_("%pB: no symbol found for import library"),
4eca0228 11668 implib_bfd);
76359541
TP
11669 goto free_sym_buf;
11670 }
11671
11672
11673 /* Make symbols absolute. */
11674 osymbuf = (elf_symbol_type *) bfd_alloc2 (implib_bfd, symcount,
11675 sizeof (*osymbuf));
11676 for (src_count = 0; src_count < symcount; src_count++)
11677 {
11678 memcpy (&osymbuf[src_count], (elf_symbol_type *) sympp[src_count],
11679 sizeof (*osymbuf));
11680 osymbuf[src_count].symbol.section = bfd_abs_section_ptr;
11681 osymbuf[src_count].internal_elf_sym.st_shndx = SHN_ABS;
11682 osymbuf[src_count].symbol.value += sympp[src_count]->section->vma;
11683 osymbuf[src_count].internal_elf_sym.st_value =
11684 osymbuf[src_count].symbol.value;
11685 sympp[src_count] = &osymbuf[src_count].symbol;
11686 }
11687
11688 bfd_set_symtab (implib_bfd, sympp, symcount);
11689
11690 /* Allow the BFD backend to copy any private data it understands
11691 from the output BFD to the import library BFD. This is done last
11692 to permit the routine to look at the filtered symbol table. */
11693 if (! bfd_copy_private_bfd_data (abfd, implib_bfd))
11694 goto free_sym_buf;
11695
11696 if (!bfd_close (implib_bfd))
11697 goto free_sym_buf;
11698
11699 ret = TRUE;
11700
11701free_sym_buf:
11702 free (sympp);
11703 return ret;
11704}
11705
9f7c3e5e
AM
11706static void
11707elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
11708{
11709 asection *o;
11710
11711 if (flinfo->symstrtab != NULL)
ef10c3ac 11712 _bfd_elf_strtab_free (flinfo->symstrtab);
9f7c3e5e
AM
11713 if (flinfo->contents != NULL)
11714 free (flinfo->contents);
11715 if (flinfo->external_relocs != NULL)
11716 free (flinfo->external_relocs);
11717 if (flinfo->internal_relocs != NULL)
11718 free (flinfo->internal_relocs);
11719 if (flinfo->external_syms != NULL)
11720 free (flinfo->external_syms);
11721 if (flinfo->locsym_shndx != NULL)
11722 free (flinfo->locsym_shndx);
11723 if (flinfo->internal_syms != NULL)
11724 free (flinfo->internal_syms);
11725 if (flinfo->indices != NULL)
11726 free (flinfo->indices);
11727 if (flinfo->sections != NULL)
11728 free (flinfo->sections);
a0f6fd21
AM
11729 if (flinfo->symshndxbuf != NULL
11730 && flinfo->symshndxbuf != (Elf_External_Sym_Shndx *) -1)
9f7c3e5e
AM
11731 free (flinfo->symshndxbuf);
11732 for (o = obfd->sections; o != NULL; o = o->next)
11733 {
11734 struct bfd_elf_section_data *esdo = elf_section_data (o);
11735 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
11736 free (esdo->rel.hashes);
11737 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
11738 free (esdo->rela.hashes);
11739 }
11740}
0b52efa6 11741
c152c796
AM
11742/* Do the final step of an ELF link. */
11743
11744bfd_boolean
11745bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
11746{
11747 bfd_boolean dynamic;
11748 bfd_boolean emit_relocs;
11749 bfd *dynobj;
8b127cbc 11750 struct elf_final_link_info flinfo;
91d6fa6a
NC
11751 asection *o;
11752 struct bfd_link_order *p;
11753 bfd *sub;
c152c796
AM
11754 bfd_size_type max_contents_size;
11755 bfd_size_type max_external_reloc_size;
11756 bfd_size_type max_internal_reloc_count;
11757 bfd_size_type max_sym_count;
11758 bfd_size_type max_sym_shndx_count;
c152c796
AM
11759 Elf_Internal_Sym elfsym;
11760 unsigned int i;
11761 Elf_Internal_Shdr *symtab_hdr;
11762 Elf_Internal_Shdr *symtab_shndx_hdr;
c152c796
AM
11763 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11764 struct elf_outext_info eoinfo;
11765 bfd_boolean merged;
11766 size_t relativecount = 0;
11767 asection *reldyn = 0;
11768 bfd_size_type amt;
104d59d1
JM
11769 asection *attr_section = NULL;
11770 bfd_vma attr_size = 0;
11771 const char *std_attrs_section;
64f52338 11772 struct elf_link_hash_table *htab = elf_hash_table (info);
c152c796 11773
64f52338 11774 if (!is_elf_hash_table (htab))
c152c796
AM
11775 return FALSE;
11776
0e1862bb 11777 if (bfd_link_pic (info))
c152c796
AM
11778 abfd->flags |= DYNAMIC;
11779
64f52338
AM
11780 dynamic = htab->dynamic_sections_created;
11781 dynobj = htab->dynobj;
c152c796 11782
0e1862bb 11783 emit_relocs = (bfd_link_relocatable (info)
a4676736 11784 || info->emitrelocations);
c152c796 11785
8b127cbc
AM
11786 flinfo.info = info;
11787 flinfo.output_bfd = abfd;
ef10c3ac 11788 flinfo.symstrtab = _bfd_elf_strtab_init ();
8b127cbc 11789 if (flinfo.symstrtab == NULL)
c152c796
AM
11790 return FALSE;
11791
11792 if (! dynamic)
11793 {
8b127cbc
AM
11794 flinfo.hash_sec = NULL;
11795 flinfo.symver_sec = NULL;
c152c796
AM
11796 }
11797 else
11798 {
3d4d4302 11799 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
202e2356 11800 /* Note that dynsym_sec can be NULL (on VMS). */
3d4d4302 11801 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
c152c796
AM
11802 /* Note that it is OK if symver_sec is NULL. */
11803 }
11804
8b127cbc
AM
11805 flinfo.contents = NULL;
11806 flinfo.external_relocs = NULL;
11807 flinfo.internal_relocs = NULL;
11808 flinfo.external_syms = NULL;
11809 flinfo.locsym_shndx = NULL;
11810 flinfo.internal_syms = NULL;
11811 flinfo.indices = NULL;
11812 flinfo.sections = NULL;
8b127cbc 11813 flinfo.symshndxbuf = NULL;
ffbc01cc 11814 flinfo.filesym_count = 0;
c152c796 11815
104d59d1
JM
11816 /* The object attributes have been merged. Remove the input
11817 sections from the link, and set the contents of the output
11818 secton. */
11819 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
11820 for (o = abfd->sections; o != NULL; o = o->next)
11821 {
5270eddc 11822 bfd_boolean remove_section = FALSE;
b8a6ced7 11823
104d59d1
JM
11824 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
11825 || strcmp (o->name, ".gnu.attributes") == 0)
11826 {
11827 for (p = o->map_head.link_order; p != NULL; p = p->next)
11828 {
11829 asection *input_section;
11830
11831 if (p->type != bfd_indirect_link_order)
11832 continue;
11833 input_section = p->u.indirect.section;
11834 /* Hack: reset the SEC_HAS_CONTENTS flag so that
11835 elf_link_input_bfd ignores this section. */
11836 input_section->flags &= ~SEC_HAS_CONTENTS;
11837 }
a0c8462f 11838
104d59d1 11839 attr_size = bfd_elf_obj_attr_size (abfd);
b8a6ced7
AM
11840 bfd_set_section_size (abfd, o, attr_size);
11841 /* Skip this section later on. */
11842 o->map_head.link_order = NULL;
104d59d1 11843 if (attr_size)
b8a6ced7 11844 attr_section = o;
104d59d1 11845 else
5270eddc 11846 remove_section = TRUE;
104d59d1 11847 }
6e5e9d58
AM
11848 else if ((o->flags & SEC_GROUP) != 0 && o->size == 0)
11849 {
11850 /* Remove empty group section from linker output. */
5270eddc 11851 remove_section = TRUE;
b8a6ced7 11852 }
5270eddc 11853 if (remove_section)
b8a6ced7 11854 {
6e5e9d58
AM
11855 o->flags |= SEC_EXCLUDE;
11856 bfd_section_list_remove (abfd, o);
11857 abfd->section_count--;
11858 }
104d59d1
JM
11859 }
11860
c152c796
AM
11861 /* Count up the number of relocations we will output for each output
11862 section, so that we know the sizes of the reloc sections. We
11863 also figure out some maximum sizes. */
11864 max_contents_size = 0;
11865 max_external_reloc_size = 0;
11866 max_internal_reloc_count = 0;
11867 max_sym_count = 0;
11868 max_sym_shndx_count = 0;
11869 merged = FALSE;
11870 for (o = abfd->sections; o != NULL; o = o->next)
11871 {
11872 struct bfd_elf_section_data *esdo = elf_section_data (o);
11873 o->reloc_count = 0;
11874
8423293d 11875 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
11876 {
11877 unsigned int reloc_count = 0;
9eaff861 11878 unsigned int additional_reloc_count = 0;
c152c796 11879 struct bfd_elf_section_data *esdi = NULL;
c152c796
AM
11880
11881 if (p->type == bfd_section_reloc_link_order
11882 || p->type == bfd_symbol_reloc_link_order)
11883 reloc_count = 1;
11884 else if (p->type == bfd_indirect_link_order)
11885 {
11886 asection *sec;
11887
11888 sec = p->u.indirect.section;
c152c796
AM
11889
11890 /* Mark all sections which are to be included in the
11891 link. This will normally be every section. We need
11892 to do this so that we can identify any sections which
11893 the linker has decided to not include. */
11894 sec->linker_mark = TRUE;
11895
11896 if (sec->flags & SEC_MERGE)
11897 merged = TRUE;
11898
eea6121a
AM
11899 if (sec->rawsize > max_contents_size)
11900 max_contents_size = sec->rawsize;
11901 if (sec->size > max_contents_size)
11902 max_contents_size = sec->size;
c152c796 11903
c152c796
AM
11904 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
11905 && (sec->owner->flags & DYNAMIC) == 0)
11906 {
11907 size_t sym_count;
11908
a961cdd5
AM
11909 /* We are interested in just local symbols, not all
11910 symbols. */
c152c796
AM
11911 if (elf_bad_symtab (sec->owner))
11912 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
11913 / bed->s->sizeof_sym);
11914 else
11915 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
11916
11917 if (sym_count > max_sym_count)
11918 max_sym_count = sym_count;
11919
11920 if (sym_count > max_sym_shndx_count
6a40cf0c 11921 && elf_symtab_shndx_list (sec->owner) != NULL)
c152c796
AM
11922 max_sym_shndx_count = sym_count;
11923
a961cdd5
AM
11924 if (esdo->this_hdr.sh_type == SHT_REL
11925 || esdo->this_hdr.sh_type == SHT_RELA)
11926 /* Some backends use reloc_count in relocation sections
11927 to count particular types of relocs. Of course,
11928 reloc sections themselves can't have relocations. */
11929 ;
11930 else if (emit_relocs)
11931 {
11932 reloc_count = sec->reloc_count;
11933 if (bed->elf_backend_count_additional_relocs)
11934 {
11935 int c;
11936 c = (*bed->elf_backend_count_additional_relocs) (sec);
11937 additional_reloc_count += c;
11938 }
11939 }
11940 else if (bed->elf_backend_count_relocs)
11941 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
11942
11943 esdi = elf_section_data (sec);
11944
c152c796
AM
11945 if ((sec->flags & SEC_RELOC) != 0)
11946 {
d4730f92 11947 size_t ext_size = 0;
c152c796 11948
d4730f92
BS
11949 if (esdi->rel.hdr != NULL)
11950 ext_size = esdi->rel.hdr->sh_size;
11951 if (esdi->rela.hdr != NULL)
11952 ext_size += esdi->rela.hdr->sh_size;
7326c758 11953
c152c796
AM
11954 if (ext_size > max_external_reloc_size)
11955 max_external_reloc_size = ext_size;
11956 if (sec->reloc_count > max_internal_reloc_count)
11957 max_internal_reloc_count = sec->reloc_count;
11958 }
11959 }
11960 }
11961
11962 if (reloc_count == 0)
11963 continue;
11964
9eaff861 11965 reloc_count += additional_reloc_count;
c152c796
AM
11966 o->reloc_count += reloc_count;
11967
0e1862bb 11968 if (p->type == bfd_indirect_link_order && emit_relocs)
c152c796 11969 {
d4730f92 11970 if (esdi->rel.hdr)
9eaff861 11971 {
491d01d3 11972 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
9eaff861
AO
11973 esdo->rel.count += additional_reloc_count;
11974 }
d4730f92 11975 if (esdi->rela.hdr)
9eaff861 11976 {
491d01d3 11977 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
9eaff861
AO
11978 esdo->rela.count += additional_reloc_count;
11979 }
d4730f92
BS
11980 }
11981 else
11982 {
11983 if (o->use_rela_p)
11984 esdo->rela.count += reloc_count;
2c2b4ed4 11985 else
d4730f92 11986 esdo->rel.count += reloc_count;
c152c796 11987 }
c152c796
AM
11988 }
11989
9eaff861 11990 if (o->reloc_count > 0)
c152c796
AM
11991 o->flags |= SEC_RELOC;
11992 else
11993 {
11994 /* Explicitly clear the SEC_RELOC flag. The linker tends to
11995 set it (this is probably a bug) and if it is set
11996 assign_section_numbers will create a reloc section. */
11997 o->flags &=~ SEC_RELOC;
11998 }
11999
12000 /* If the SEC_ALLOC flag is not set, force the section VMA to
12001 zero. This is done in elf_fake_sections as well, but forcing
12002 the VMA to 0 here will ensure that relocs against these
12003 sections are handled correctly. */
12004 if ((o->flags & SEC_ALLOC) == 0
12005 && ! o->user_set_vma)
12006 o->vma = 0;
12007 }
12008
0e1862bb 12009 if (! bfd_link_relocatable (info) && merged)
64f52338 12010 elf_link_hash_traverse (htab, _bfd_elf_link_sec_merge_syms, abfd);
c152c796
AM
12011
12012 /* Figure out the file positions for everything but the symbol table
12013 and the relocs. We set symcount to force assign_section_numbers
12014 to create a symbol table. */
ed48ec2e 12015 abfd->symcount = info->strip != strip_all || emit_relocs;
c152c796
AM
12016 BFD_ASSERT (! abfd->output_has_begun);
12017 if (! _bfd_elf_compute_section_file_positions (abfd, info))
12018 goto error_return;
12019
ee75fd95 12020 /* Set sizes, and assign file positions for reloc sections. */
c152c796
AM
12021 for (o = abfd->sections; o != NULL; o = o->next)
12022 {
d4730f92 12023 struct bfd_elf_section_data *esdo = elf_section_data (o);
c152c796
AM
12024 if ((o->flags & SEC_RELOC) != 0)
12025 {
d4730f92 12026 if (esdo->rel.hdr
9eaff861 12027 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
c152c796
AM
12028 goto error_return;
12029
d4730f92 12030 if (esdo->rela.hdr
9eaff861 12031 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
c152c796
AM
12032 goto error_return;
12033 }
12034
12035 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
12036 to count upwards while actually outputting the relocations. */
d4730f92
BS
12037 esdo->rel.count = 0;
12038 esdo->rela.count = 0;
0ce398f1
L
12039
12040 if (esdo->this_hdr.sh_offset == (file_ptr) -1)
12041 {
12042 /* Cache the section contents so that they can be compressed
12043 later. Use bfd_malloc since it will be freed by
12044 bfd_compress_section_contents. */
12045 unsigned char *contents = esdo->this_hdr.contents;
12046 if ((o->flags & SEC_ELF_COMPRESS) == 0 || contents != NULL)
12047 abort ();
12048 contents
12049 = (unsigned char *) bfd_malloc (esdo->this_hdr.sh_size);
12050 if (contents == NULL)
12051 goto error_return;
12052 esdo->this_hdr.contents = contents;
12053 }
c152c796
AM
12054 }
12055
c152c796 12056 /* We have now assigned file positions for all the sections except
a485e98e
AM
12057 .symtab, .strtab, and non-loaded reloc sections. We start the
12058 .symtab section at the current file position, and write directly
12059 to it. We build the .strtab section in memory. */
ed48ec2e 12060 abfd->symcount = 0;
c152c796
AM
12061 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12062 /* sh_name is set in prep_headers. */
12063 symtab_hdr->sh_type = SHT_SYMTAB;
12064 /* sh_flags, sh_addr and sh_size all start off zero. */
12065 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
12066 /* sh_link is set in assign_section_numbers. */
12067 /* sh_info is set below. */
12068 /* sh_offset is set just below. */
72de5009 12069 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
c152c796 12070
ef10c3ac
L
12071 if (max_sym_count < 20)
12072 max_sym_count = 20;
64f52338 12073 htab->strtabsize = max_sym_count;
ef10c3ac 12074 amt = max_sym_count * sizeof (struct elf_sym_strtab);
64f52338
AM
12075 htab->strtab = (struct elf_sym_strtab *) bfd_malloc (amt);
12076 if (htab->strtab == NULL)
c152c796 12077 goto error_return;
ef10c3ac
L
12078 /* The real buffer will be allocated in elf_link_swap_symbols_out. */
12079 flinfo.symshndxbuf
12080 = (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF)
12081 ? (Elf_External_Sym_Shndx *) -1 : NULL);
c152c796 12082
8539e4e8 12083 if (info->strip != strip_all || emit_relocs)
c152c796 12084 {
8539e4e8
AM
12085 file_ptr off = elf_next_file_pos (abfd);
12086
12087 _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
12088
12089 /* Note that at this point elf_next_file_pos (abfd) is
12090 incorrect. We do not yet know the size of the .symtab section.
12091 We correct next_file_pos below, after we do know the size. */
12092
12093 /* Start writing out the symbol table. The first symbol is always a
12094 dummy symbol. */
c152c796
AM
12095 elfsym.st_value = 0;
12096 elfsym.st_size = 0;
12097 elfsym.st_info = 0;
12098 elfsym.st_other = 0;
12099 elfsym.st_shndx = SHN_UNDEF;
35fc36a8 12100 elfsym.st_target_internal = 0;
ef10c3ac
L
12101 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym,
12102 bfd_und_section_ptr, NULL) != 1)
c152c796 12103 goto error_return;
c152c796 12104
8539e4e8
AM
12105 /* Output a symbol for each section. We output these even if we are
12106 discarding local symbols, since they are used for relocs. These
12107 symbols have no names. We store the index of each one in the
12108 index field of the section, so that we can find it again when
12109 outputting relocs. */
12110
c152c796
AM
12111 elfsym.st_size = 0;
12112 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
12113 elfsym.st_other = 0;
f0b5bb34 12114 elfsym.st_value = 0;
35fc36a8 12115 elfsym.st_target_internal = 0;
c152c796
AM
12116 for (i = 1; i < elf_numsections (abfd); i++)
12117 {
12118 o = bfd_section_from_elf_index (abfd, i);
12119 if (o != NULL)
f0b5bb34
AM
12120 {
12121 o->target_index = bfd_get_symcount (abfd);
12122 elfsym.st_shndx = i;
0e1862bb 12123 if (!bfd_link_relocatable (info))
f0b5bb34 12124 elfsym.st_value = o->vma;
ef10c3ac
L
12125 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym, o,
12126 NULL) != 1)
f0b5bb34
AM
12127 goto error_return;
12128 }
c152c796
AM
12129 }
12130 }
12131
12132 /* Allocate some memory to hold information read in from the input
12133 files. */
12134 if (max_contents_size != 0)
12135 {
8b127cbc
AM
12136 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
12137 if (flinfo.contents == NULL)
c152c796
AM
12138 goto error_return;
12139 }
12140
12141 if (max_external_reloc_size != 0)
12142 {
8b127cbc
AM
12143 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
12144 if (flinfo.external_relocs == NULL)
c152c796
AM
12145 goto error_return;
12146 }
12147
12148 if (max_internal_reloc_count != 0)
12149 {
056bafd4 12150 amt = max_internal_reloc_count * sizeof (Elf_Internal_Rela);
8b127cbc
AM
12151 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
12152 if (flinfo.internal_relocs == NULL)
c152c796
AM
12153 goto error_return;
12154 }
12155
12156 if (max_sym_count != 0)
12157 {
12158 amt = max_sym_count * bed->s->sizeof_sym;
8b127cbc
AM
12159 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
12160 if (flinfo.external_syms == NULL)
c152c796
AM
12161 goto error_return;
12162
12163 amt = max_sym_count * sizeof (Elf_Internal_Sym);
8b127cbc
AM
12164 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
12165 if (flinfo.internal_syms == NULL)
c152c796
AM
12166 goto error_return;
12167
12168 amt = max_sym_count * sizeof (long);
8b127cbc
AM
12169 flinfo.indices = (long int *) bfd_malloc (amt);
12170 if (flinfo.indices == NULL)
c152c796
AM
12171 goto error_return;
12172
12173 amt = max_sym_count * sizeof (asection *);
8b127cbc
AM
12174 flinfo.sections = (asection **) bfd_malloc (amt);
12175 if (flinfo.sections == NULL)
c152c796
AM
12176 goto error_return;
12177 }
12178
12179 if (max_sym_shndx_count != 0)
12180 {
12181 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
8b127cbc
AM
12182 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
12183 if (flinfo.locsym_shndx == NULL)
c152c796
AM
12184 goto error_return;
12185 }
12186
64f52338 12187 if (htab->tls_sec)
c152c796
AM
12188 {
12189 bfd_vma base, end = 0;
12190 asection *sec;
12191
64f52338 12192 for (sec = htab->tls_sec;
c152c796
AM
12193 sec && (sec->flags & SEC_THREAD_LOCAL);
12194 sec = sec->next)
12195 {
3a800eb9 12196 bfd_size_type size = sec->size;
c152c796 12197
3a800eb9
AM
12198 if (size == 0
12199 && (sec->flags & SEC_HAS_CONTENTS) == 0)
c152c796 12200 {
91d6fa6a
NC
12201 struct bfd_link_order *ord = sec->map_tail.link_order;
12202
12203 if (ord != NULL)
12204 size = ord->offset + ord->size;
c152c796
AM
12205 }
12206 end = sec->vma + size;
12207 }
64f52338 12208 base = htab->tls_sec->vma;
7dc98aea
RO
12209 /* Only align end of TLS section if static TLS doesn't have special
12210 alignment requirements. */
12211 if (bed->static_tls_alignment == 1)
64f52338
AM
12212 end = align_power (end, htab->tls_sec->alignment_power);
12213 htab->tls_size = end - base;
c152c796
AM
12214 }
12215
0b52efa6
PB
12216 /* Reorder SHF_LINK_ORDER sections. */
12217 for (o = abfd->sections; o != NULL; o = o->next)
12218 {
12219 if (!elf_fixup_link_order (abfd, o))
12220 return FALSE;
12221 }
12222
2f0c68f2
CM
12223 if (!_bfd_elf_fixup_eh_frame_hdr (info))
12224 return FALSE;
12225
c152c796
AM
12226 /* Since ELF permits relocations to be against local symbols, we
12227 must have the local symbols available when we do the relocations.
12228 Since we would rather only read the local symbols once, and we
12229 would rather not keep them in memory, we handle all the
12230 relocations for a single input file at the same time.
12231
12232 Unfortunately, there is no way to know the total number of local
12233 symbols until we have seen all of them, and the local symbol
12234 indices precede the global symbol indices. This means that when
12235 we are generating relocatable output, and we see a reloc against
12236 a global symbol, we can not know the symbol index until we have
12237 finished examining all the local symbols to see which ones we are
12238 going to output. To deal with this, we keep the relocations in
12239 memory, and don't output them until the end of the link. This is
12240 an unfortunate waste of memory, but I don't see a good way around
12241 it. Fortunately, it only happens when performing a relocatable
12242 link, which is not the common case. FIXME: If keep_memory is set
12243 we could write the relocs out and then read them again; I don't
12244 know how bad the memory loss will be. */
12245
c72f2fb2 12246 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
12247 sub->output_has_begun = FALSE;
12248 for (o = abfd->sections; o != NULL; o = o->next)
12249 {
8423293d 12250 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
12251 {
12252 if (p->type == bfd_indirect_link_order
12253 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
12254 == bfd_target_elf_flavour)
12255 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
12256 {
12257 if (! sub->output_has_begun)
12258 {
8b127cbc 12259 if (! elf_link_input_bfd (&flinfo, sub))
c152c796
AM
12260 goto error_return;
12261 sub->output_has_begun = TRUE;
12262 }
12263 }
12264 else if (p->type == bfd_section_reloc_link_order
12265 || p->type == bfd_symbol_reloc_link_order)
12266 {
12267 if (! elf_reloc_link_order (abfd, info, o, p))
12268 goto error_return;
12269 }
12270 else
12271 {
12272 if (! _bfd_default_link_order (abfd, info, o, p))
351f65ca
L
12273 {
12274 if (p->type == bfd_indirect_link_order
12275 && (bfd_get_flavour (sub)
12276 == bfd_target_elf_flavour)
12277 && (elf_elfheader (sub)->e_ident[EI_CLASS]
12278 != bed->s->elfclass))
12279 {
12280 const char *iclass, *oclass;
12281
aebf9be7 12282 switch (bed->s->elfclass)
351f65ca 12283 {
aebf9be7
NC
12284 case ELFCLASS64: oclass = "ELFCLASS64"; break;
12285 case ELFCLASS32: oclass = "ELFCLASS32"; break;
12286 case ELFCLASSNONE: oclass = "ELFCLASSNONE"; break;
12287 default: abort ();
351f65ca 12288 }
aebf9be7
NC
12289
12290 switch (elf_elfheader (sub)->e_ident[EI_CLASS])
351f65ca 12291 {
aebf9be7
NC
12292 case ELFCLASS64: iclass = "ELFCLASS64"; break;
12293 case ELFCLASS32: iclass = "ELFCLASS32"; break;
12294 case ELFCLASSNONE: iclass = "ELFCLASSNONE"; break;
12295 default: abort ();
351f65ca
L
12296 }
12297
12298 bfd_set_error (bfd_error_wrong_format);
4eca0228 12299 _bfd_error_handler
695344c0 12300 /* xgettext:c-format */
871b3ab2 12301 (_("%pB: file class %s incompatible with %s"),
351f65ca
L
12302 sub, iclass, oclass);
12303 }
12304
12305 goto error_return;
12306 }
c152c796
AM
12307 }
12308 }
12309 }
12310
c0f00686
L
12311 /* Free symbol buffer if needed. */
12312 if (!info->reduce_memory_overheads)
12313 {
c72f2fb2 12314 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3fcd97f1
JJ
12315 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
12316 && elf_tdata (sub)->symbuf)
c0f00686
L
12317 {
12318 free (elf_tdata (sub)->symbuf);
12319 elf_tdata (sub)->symbuf = NULL;
12320 }
12321 }
12322
c152c796
AM
12323 /* Output any global symbols that got converted to local in a
12324 version script or due to symbol visibility. We do this in a
12325 separate step since ELF requires all local symbols to appear
12326 prior to any global symbols. FIXME: We should only do this if
12327 some global symbols were, in fact, converted to become local.
12328 FIXME: Will this work correctly with the Irix 5 linker? */
12329 eoinfo.failed = FALSE;
8b127cbc 12330 eoinfo.flinfo = &flinfo;
c152c796 12331 eoinfo.localsyms = TRUE;
34a79995 12332 eoinfo.file_sym_done = FALSE;
7686d77d 12333 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
12334 if (eoinfo.failed)
12335 return FALSE;
12336
4e617b1e
PB
12337 /* If backend needs to output some local symbols not present in the hash
12338 table, do it now. */
8539e4e8
AM
12339 if (bed->elf_backend_output_arch_local_syms
12340 && (info->strip != strip_all || emit_relocs))
4e617b1e 12341 {
6e0b88f1 12342 typedef int (*out_sym_func)
4e617b1e
PB
12343 (void *, const char *, Elf_Internal_Sym *, asection *,
12344 struct elf_link_hash_entry *);
12345
12346 if (! ((*bed->elf_backend_output_arch_local_syms)
ef10c3ac
L
12347 (abfd, info, &flinfo,
12348 (out_sym_func) elf_link_output_symstrtab)))
4e617b1e
PB
12349 return FALSE;
12350 }
12351
c152c796
AM
12352 /* That wrote out all the local symbols. Finish up the symbol table
12353 with the global symbols. Even if we want to strip everything we
12354 can, we still need to deal with those global symbols that got
12355 converted to local in a version script. */
12356
12357 /* The sh_info field records the index of the first non local symbol. */
12358 symtab_hdr->sh_info = bfd_get_symcount (abfd);
12359
12360 if (dynamic
64f52338
AM
12361 && htab->dynsym != NULL
12362 && htab->dynsym->output_section != bfd_abs_section_ptr)
c152c796
AM
12363 {
12364 Elf_Internal_Sym sym;
64f52338 12365 bfd_byte *dynsym = htab->dynsym->contents;
90ac2420 12366
64f52338
AM
12367 o = htab->dynsym->output_section;
12368 elf_section_data (o)->this_hdr.sh_info = htab->local_dynsymcount + 1;
c152c796
AM
12369
12370 /* Write out the section symbols for the output sections. */
0e1862bb 12371 if (bfd_link_pic (info)
64f52338 12372 || htab->is_relocatable_executable)
c152c796
AM
12373 {
12374 asection *s;
12375
12376 sym.st_size = 0;
12377 sym.st_name = 0;
12378 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
12379 sym.st_other = 0;
35fc36a8 12380 sym.st_target_internal = 0;
c152c796
AM
12381
12382 for (s = abfd->sections; s != NULL; s = s->next)
12383 {
12384 int indx;
12385 bfd_byte *dest;
12386 long dynindx;
12387
c152c796 12388 dynindx = elf_section_data (s)->dynindx;
8c37241b
JJ
12389 if (dynindx <= 0)
12390 continue;
12391 indx = elf_section_data (s)->this_idx;
c152c796
AM
12392 BFD_ASSERT (indx > 0);
12393 sym.st_shndx = indx;
c0d5a53d
L
12394 if (! check_dynsym (abfd, &sym))
12395 return FALSE;
c152c796
AM
12396 sym.st_value = s->vma;
12397 dest = dynsym + dynindx * bed->s->sizeof_sym;
12398 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12399 }
c152c796
AM
12400 }
12401
12402 /* Write out the local dynsyms. */
64f52338 12403 if (htab->dynlocal)
c152c796
AM
12404 {
12405 struct elf_link_local_dynamic_entry *e;
64f52338 12406 for (e = htab->dynlocal; e ; e = e->next)
c152c796
AM
12407 {
12408 asection *s;
12409 bfd_byte *dest;
12410
935bd1e0 12411 /* Copy the internal symbol and turn off visibility.
c152c796
AM
12412 Note that we saved a word of storage and overwrote
12413 the original st_name with the dynstr_index. */
12414 sym = e->isym;
935bd1e0 12415 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
c152c796 12416
cb33740c
AM
12417 s = bfd_section_from_elf_index (e->input_bfd,
12418 e->isym.st_shndx);
12419 if (s != NULL)
c152c796 12420 {
c152c796
AM
12421 sym.st_shndx =
12422 elf_section_data (s->output_section)->this_idx;
c0d5a53d
L
12423 if (! check_dynsym (abfd, &sym))
12424 return FALSE;
c152c796
AM
12425 sym.st_value = (s->output_section->vma
12426 + s->output_offset
12427 + e->isym.st_value);
12428 }
12429
c152c796
AM
12430 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
12431 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
12432 }
12433 }
c152c796
AM
12434 }
12435
12436 /* We get the global symbols from the hash table. */
12437 eoinfo.failed = FALSE;
12438 eoinfo.localsyms = FALSE;
8b127cbc 12439 eoinfo.flinfo = &flinfo;
7686d77d 12440 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
12441 if (eoinfo.failed)
12442 return FALSE;
12443
12444 /* If backend needs to output some symbols not present in the hash
12445 table, do it now. */
8539e4e8
AM
12446 if (bed->elf_backend_output_arch_syms
12447 && (info->strip != strip_all || emit_relocs))
c152c796 12448 {
6e0b88f1 12449 typedef int (*out_sym_func)
c152c796
AM
12450 (void *, const char *, Elf_Internal_Sym *, asection *,
12451 struct elf_link_hash_entry *);
12452
12453 if (! ((*bed->elf_backend_output_arch_syms)
ef10c3ac
L
12454 (abfd, info, &flinfo,
12455 (out_sym_func) elf_link_output_symstrtab)))
c152c796
AM
12456 return FALSE;
12457 }
12458
ef10c3ac
L
12459 /* Finalize the .strtab section. */
12460 _bfd_elf_strtab_finalize (flinfo.symstrtab);
12461
12462 /* Swap out the .strtab section. */
12463 if (!elf_link_swap_symbols_out (&flinfo))
c152c796
AM
12464 return FALSE;
12465
12466 /* Now we know the size of the symtab section. */
c152c796
AM
12467 if (bfd_get_symcount (abfd) > 0)
12468 {
ee3b52e9
L
12469 /* Finish up and write out the symbol string table (.strtab)
12470 section. */
ad32986f 12471 Elf_Internal_Shdr *symstrtab_hdr = NULL;
8539e4e8
AM
12472 file_ptr off = symtab_hdr->sh_offset + symtab_hdr->sh_size;
12473
ad32986f 12474 if (elf_symtab_shndx_list (abfd))
8539e4e8 12475 {
ad32986f 12476 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8539e4e8 12477
ad32986f
NC
12478 if (symtab_shndx_hdr != NULL && symtab_shndx_hdr->sh_name != 0)
12479 {
12480 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
12481 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
12482 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
12483 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
12484 symtab_shndx_hdr->sh_size = amt;
8539e4e8 12485
ad32986f
NC
12486 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
12487 off, TRUE);
12488
12489 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
12490 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
12491 return FALSE;
12492 }
8539e4e8 12493 }
ee3b52e9
L
12494
12495 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
12496 /* sh_name was set in prep_headers. */
12497 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 12498 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
ee3b52e9 12499 symstrtab_hdr->sh_addr = 0;
ef10c3ac 12500 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (flinfo.symstrtab);
ee3b52e9
L
12501 symstrtab_hdr->sh_entsize = 0;
12502 symstrtab_hdr->sh_link = 0;
12503 symstrtab_hdr->sh_info = 0;
12504 /* sh_offset is set just below. */
12505 symstrtab_hdr->sh_addralign = 1;
12506
12507 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr,
12508 off, TRUE);
12509 elf_next_file_pos (abfd) = off;
12510
c152c796 12511 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 12512 || ! _bfd_elf_strtab_emit (abfd, flinfo.symstrtab))
c152c796
AM
12513 return FALSE;
12514 }
12515
76359541
TP
12516 if (info->out_implib_bfd && !elf_output_implib (abfd, info))
12517 {
871b3ab2 12518 _bfd_error_handler (_("%pB: failed to generate import library"),
4eca0228 12519 info->out_implib_bfd);
76359541
TP
12520 return FALSE;
12521 }
12522
c152c796
AM
12523 /* Adjust the relocs to have the correct symbol indices. */
12524 for (o = abfd->sections; o != NULL; o = o->next)
12525 {
d4730f92 12526 struct bfd_elf_section_data *esdo = elf_section_data (o);
28dbcedc 12527 bfd_boolean sort;
10bbbc1d 12528
c152c796
AM
12529 if ((o->flags & SEC_RELOC) == 0)
12530 continue;
12531
28dbcedc 12532 sort = bed->sort_relocs_p == NULL || (*bed->sort_relocs_p) (o);
bca6d0e3 12533 if (esdo->rel.hdr != NULL
10bbbc1d 12534 && !elf_link_adjust_relocs (abfd, o, &esdo->rel, sort, info))
bca6d0e3
AM
12535 return FALSE;
12536 if (esdo->rela.hdr != NULL
10bbbc1d 12537 && !elf_link_adjust_relocs (abfd, o, &esdo->rela, sort, info))
bca6d0e3 12538 return FALSE;
c152c796
AM
12539
12540 /* Set the reloc_count field to 0 to prevent write_relocs from
12541 trying to swap the relocs out itself. */
12542 o->reloc_count = 0;
12543 }
12544
12545 if (dynamic && info->combreloc && dynobj != NULL)
12546 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
12547
12548 /* If we are linking against a dynamic object, or generating a
12549 shared library, finish up the dynamic linking information. */
12550 if (dynamic)
12551 {
12552 bfd_byte *dyncon, *dynconend;
12553
12554 /* Fix up .dynamic entries. */
3d4d4302 12555 o = bfd_get_linker_section (dynobj, ".dynamic");
c152c796
AM
12556 BFD_ASSERT (o != NULL);
12557
12558 dyncon = o->contents;
eea6121a 12559 dynconend = o->contents + o->size;
c152c796
AM
12560 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12561 {
12562 Elf_Internal_Dyn dyn;
12563 const char *name;
12564 unsigned int type;
64487780
AM
12565 bfd_size_type sh_size;
12566 bfd_vma sh_addr;
c152c796
AM
12567
12568 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12569
12570 switch (dyn.d_tag)
12571 {
12572 default:
12573 continue;
12574 case DT_NULL:
12575 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
12576 {
12577 switch (elf_section_data (reldyn)->this_hdr.sh_type)
12578 {
12579 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
12580 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
12581 default: continue;
12582 }
12583 dyn.d_un.d_val = relativecount;
12584 relativecount = 0;
12585 break;
12586 }
12587 continue;
12588
12589 case DT_INIT:
12590 name = info->init_function;
12591 goto get_sym;
12592 case DT_FINI:
12593 name = info->fini_function;
12594 get_sym:
12595 {
12596 struct elf_link_hash_entry *h;
12597
64f52338 12598 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
c152c796
AM
12599 if (h != NULL
12600 && (h->root.type == bfd_link_hash_defined
12601 || h->root.type == bfd_link_hash_defweak))
12602 {
bef26483 12603 dyn.d_un.d_ptr = h->root.u.def.value;
c152c796
AM
12604 o = h->root.u.def.section;
12605 if (o->output_section != NULL)
bef26483 12606 dyn.d_un.d_ptr += (o->output_section->vma
c152c796
AM
12607 + o->output_offset);
12608 else
12609 {
12610 /* The symbol is imported from another shared
12611 library and does not apply to this one. */
bef26483 12612 dyn.d_un.d_ptr = 0;
c152c796
AM
12613 }
12614 break;
12615 }
12616 }
12617 continue;
12618
12619 case DT_PREINIT_ARRAYSZ:
12620 name = ".preinit_array";
4ade44b7 12621 goto get_out_size;
c152c796
AM
12622 case DT_INIT_ARRAYSZ:
12623 name = ".init_array";
4ade44b7 12624 goto get_out_size;
c152c796
AM
12625 case DT_FINI_ARRAYSZ:
12626 name = ".fini_array";
4ade44b7 12627 get_out_size:
c152c796
AM
12628 o = bfd_get_section_by_name (abfd, name);
12629 if (o == NULL)
12630 {
4eca0228 12631 _bfd_error_handler
4ade44b7 12632 (_("could not find section %s"), name);
c152c796
AM
12633 goto error_return;
12634 }
eea6121a 12635 if (o->size == 0)
4eca0228 12636 _bfd_error_handler
c152c796 12637 (_("warning: %s section has zero size"), name);
eea6121a 12638 dyn.d_un.d_val = o->size;
c152c796
AM
12639 break;
12640
12641 case DT_PREINIT_ARRAY:
12642 name = ".preinit_array";
4ade44b7 12643 goto get_out_vma;
c152c796
AM
12644 case DT_INIT_ARRAY:
12645 name = ".init_array";
4ade44b7 12646 goto get_out_vma;
c152c796
AM
12647 case DT_FINI_ARRAY:
12648 name = ".fini_array";
4ade44b7
AM
12649 get_out_vma:
12650 o = bfd_get_section_by_name (abfd, name);
12651 goto do_vma;
c152c796
AM
12652
12653 case DT_HASH:
12654 name = ".hash";
12655 goto get_vma;
fdc90cb4
JJ
12656 case DT_GNU_HASH:
12657 name = ".gnu.hash";
12658 goto get_vma;
c152c796
AM
12659 case DT_STRTAB:
12660 name = ".dynstr";
12661 goto get_vma;
12662 case DT_SYMTAB:
12663 name = ".dynsym";
12664 goto get_vma;
12665 case DT_VERDEF:
12666 name = ".gnu.version_d";
12667 goto get_vma;
12668 case DT_VERNEED:
12669 name = ".gnu.version_r";
12670 goto get_vma;
12671 case DT_VERSYM:
12672 name = ".gnu.version";
12673 get_vma:
4ade44b7
AM
12674 o = bfd_get_linker_section (dynobj, name);
12675 do_vma:
b3293efa 12676 if (o == NULL || bfd_is_abs_section (o->output_section))
c152c796 12677 {
4eca0228 12678 _bfd_error_handler
4ade44b7 12679 (_("could not find section %s"), name);
c152c796
AM
12680 goto error_return;
12681 }
894891db
NC
12682 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
12683 {
4eca0228 12684 _bfd_error_handler
894891db
NC
12685 (_("warning: section '%s' is being made into a note"), name);
12686 bfd_set_error (bfd_error_nonrepresentable_section);
12687 goto error_return;
12688 }
4ade44b7 12689 dyn.d_un.d_ptr = o->output_section->vma + o->output_offset;
c152c796
AM
12690 break;
12691
12692 case DT_REL:
12693 case DT_RELA:
12694 case DT_RELSZ:
12695 case DT_RELASZ:
12696 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
12697 type = SHT_REL;
12698 else
12699 type = SHT_RELA;
64487780
AM
12700 sh_size = 0;
12701 sh_addr = 0;
c152c796
AM
12702 for (i = 1; i < elf_numsections (abfd); i++)
12703 {
12704 Elf_Internal_Shdr *hdr;
12705
12706 hdr = elf_elfsections (abfd)[i];
12707 if (hdr->sh_type == type
12708 && (hdr->sh_flags & SHF_ALLOC) != 0)
12709 {
64487780
AM
12710 sh_size += hdr->sh_size;
12711 if (sh_addr == 0
12712 || sh_addr > hdr->sh_addr)
12713 sh_addr = hdr->sh_addr;
c152c796
AM
12714 }
12715 }
64487780 12716
64f52338
AM
12717 if (bed->dtrel_excludes_plt && htab->srelplt != NULL)
12718 {
12719 /* Don't count procedure linkage table relocs in the
12720 overall reloc count. */
64487780
AM
12721 sh_size -= htab->srelplt->size;
12722 if (sh_size == 0)
12723 /* If the size is zero, make the address zero too.
12724 This is to avoid a glibc bug. If the backend
12725 emits DT_RELA/DT_RELASZ even when DT_RELASZ is
12726 zero, then we'll put DT_RELA at the end of
12727 DT_JMPREL. glibc will interpret the end of
12728 DT_RELA matching the end of DT_JMPREL as the
12729 case where DT_RELA includes DT_JMPREL, and for
12730 LD_BIND_NOW will decide that processing DT_RELA
12731 will process the PLT relocs too. Net result:
12732 No PLT relocs applied. */
12733 sh_addr = 0;
12734
64f52338
AM
12735 /* If .rela.plt is the first .rela section, exclude
12736 it from DT_RELA. */
64487780
AM
12737 else if (sh_addr == (htab->srelplt->output_section->vma
12738 + htab->srelplt->output_offset))
12739 sh_addr += htab->srelplt->size;
64f52338 12740 }
64487780
AM
12741
12742 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
12743 dyn.d_un.d_val = sh_size;
12744 else
12745 dyn.d_un.d_ptr = sh_addr;
c152c796
AM
12746 break;
12747 }
12748 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
12749 }
12750 }
12751
12752 /* If we have created any dynamic sections, then output them. */
12753 if (dynobj != NULL)
12754 {
12755 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
12756 goto error_return;
12757
943284cc 12758 /* Check for DT_TEXTREL (late, in case the backend removes it). */
0e1862bb 12759 if (((info->warn_shared_textrel && bfd_link_pic (info))
be7b303d 12760 || info->error_textrel)
3d4d4302 12761 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
943284cc
DJ
12762 {
12763 bfd_byte *dyncon, *dynconend;
12764
943284cc
DJ
12765 dyncon = o->contents;
12766 dynconend = o->contents + o->size;
12767 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12768 {
12769 Elf_Internal_Dyn dyn;
12770
12771 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12772
12773 if (dyn.d_tag == DT_TEXTREL)
12774 {
c192a133
AM
12775 if (info->error_textrel)
12776 info->callbacks->einfo
9793eb77 12777 (_("%P%X: read-only segment has dynamic relocations\n"));
c192a133
AM
12778 else
12779 info->callbacks->einfo
9793eb77 12780 (_("%P: warning: creating a DT_TEXTREL in a shared object\n"));
943284cc
DJ
12781 break;
12782 }
12783 }
12784 }
12785
c152c796
AM
12786 for (o = dynobj->sections; o != NULL; o = o->next)
12787 {
12788 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 12789 || o->size == 0
c152c796
AM
12790 || o->output_section == bfd_abs_section_ptr)
12791 continue;
12792 if ((o->flags & SEC_LINKER_CREATED) == 0)
12793 {
12794 /* At this point, we are only interested in sections
12795 created by _bfd_elf_link_create_dynamic_sections. */
12796 continue;
12797 }
64f52338 12798 if (htab->stab_info.stabstr == o)
3722b82f 12799 continue;
64f52338 12800 if (htab->eh_info.hdr_sec == o)
eea6121a 12801 continue;
3d4d4302 12802 if (strcmp (o->name, ".dynstr") != 0)
c152c796
AM
12803 {
12804 if (! bfd_set_section_contents (abfd, o->output_section,
12805 o->contents,
37b01f6a
DG
12806 (file_ptr) o->output_offset
12807 * bfd_octets_per_byte (abfd),
eea6121a 12808 o->size))
c152c796
AM
12809 goto error_return;
12810 }
12811 else
12812 {
12813 /* The contents of the .dynstr section are actually in a
12814 stringtab. */
8539e4e8
AM
12815 file_ptr off;
12816
c152c796
AM
12817 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
12818 if (bfd_seek (abfd, off, SEEK_SET) != 0
64f52338 12819 || !_bfd_elf_strtab_emit (abfd, htab->dynstr))
c152c796
AM
12820 goto error_return;
12821 }
12822 }
12823 }
12824
7bdf4127 12825 if (!info->resolve_section_groups)
c152c796
AM
12826 {
12827 bfd_boolean failed = FALSE;
12828
7bdf4127 12829 BFD_ASSERT (bfd_link_relocatable (info));
c152c796
AM
12830 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
12831 if (failed)
12832 goto error_return;
12833 }
12834
12835 /* If we have optimized stabs strings, output them. */
64f52338 12836 if (htab->stab_info.stabstr != NULL)
c152c796 12837 {
64f52338 12838 if (!_bfd_write_stab_strings (abfd, &htab->stab_info))
c152c796
AM
12839 goto error_return;
12840 }
12841
9f7c3e5e
AM
12842 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
12843 goto error_return;
c152c796 12844
9f7c3e5e 12845 elf_final_link_free (abfd, &flinfo);
c152c796 12846
104d59d1
JM
12847 if (attr_section)
12848 {
a50b1753 12849 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
104d59d1 12850 if (contents == NULL)
d0f16d5e 12851 return FALSE; /* Bail out and fail. */
104d59d1
JM
12852 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
12853 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
12854 free (contents);
12855 }
12856
c152c796
AM
12857 return TRUE;
12858
12859 error_return:
9f7c3e5e 12860 elf_final_link_free (abfd, &flinfo);
c152c796
AM
12861 return FALSE;
12862}
12863\f
5241d853
RS
12864/* Initialize COOKIE for input bfd ABFD. */
12865
12866static bfd_boolean
12867init_reloc_cookie (struct elf_reloc_cookie *cookie,
12868 struct bfd_link_info *info, bfd *abfd)
12869{
12870 Elf_Internal_Shdr *symtab_hdr;
12871 const struct elf_backend_data *bed;
12872
12873 bed = get_elf_backend_data (abfd);
12874 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12875
12876 cookie->abfd = abfd;
12877 cookie->sym_hashes = elf_sym_hashes (abfd);
12878 cookie->bad_symtab = elf_bad_symtab (abfd);
12879 if (cookie->bad_symtab)
12880 {
12881 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12882 cookie->extsymoff = 0;
12883 }
12884 else
12885 {
12886 cookie->locsymcount = symtab_hdr->sh_info;
12887 cookie->extsymoff = symtab_hdr->sh_info;
12888 }
12889
12890 if (bed->s->arch_size == 32)
12891 cookie->r_sym_shift = 8;
12892 else
12893 cookie->r_sym_shift = 32;
12894
12895 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
12896 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
12897 {
12898 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
12899 cookie->locsymcount, 0,
12900 NULL, NULL, NULL);
12901 if (cookie->locsyms == NULL)
12902 {
12903 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
12904 return FALSE;
12905 }
12906 if (info->keep_memory)
12907 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
12908 }
12909 return TRUE;
12910}
12911
12912/* Free the memory allocated by init_reloc_cookie, if appropriate. */
12913
12914static void
12915fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
12916{
12917 Elf_Internal_Shdr *symtab_hdr;
12918
12919 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12920 if (cookie->locsyms != NULL
12921 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
12922 free (cookie->locsyms);
12923}
12924
12925/* Initialize the relocation information in COOKIE for input section SEC
12926 of input bfd ABFD. */
12927
12928static bfd_boolean
12929init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12930 struct bfd_link_info *info, bfd *abfd,
12931 asection *sec)
12932{
5241d853
RS
12933 if (sec->reloc_count == 0)
12934 {
12935 cookie->rels = NULL;
12936 cookie->relend = NULL;
12937 }
12938 else
12939 {
5241d853
RS
12940 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
12941 info->keep_memory);
12942 if (cookie->rels == NULL)
12943 return FALSE;
12944 cookie->rel = cookie->rels;
056bafd4 12945 cookie->relend = cookie->rels + sec->reloc_count;
5241d853
RS
12946 }
12947 cookie->rel = cookie->rels;
12948 return TRUE;
12949}
12950
12951/* Free the memory allocated by init_reloc_cookie_rels,
12952 if appropriate. */
12953
12954static void
12955fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12956 asection *sec)
12957{
12958 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
12959 free (cookie->rels);
12960}
12961
12962/* Initialize the whole of COOKIE for input section SEC. */
12963
12964static bfd_boolean
12965init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12966 struct bfd_link_info *info,
12967 asection *sec)
12968{
12969 if (!init_reloc_cookie (cookie, info, sec->owner))
12970 goto error1;
12971 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
12972 goto error2;
12973 return TRUE;
12974
12975 error2:
12976 fini_reloc_cookie (cookie, sec->owner);
12977 error1:
12978 return FALSE;
12979}
12980
12981/* Free the memory allocated by init_reloc_cookie_for_section,
12982 if appropriate. */
12983
12984static void
12985fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12986 asection *sec)
12987{
12988 fini_reloc_cookie_rels (cookie, sec);
12989 fini_reloc_cookie (cookie, sec->owner);
12990}
12991\f
c152c796
AM
12992/* Garbage collect unused sections. */
12993
07adf181
AM
12994/* Default gc_mark_hook. */
12995
12996asection *
12997_bfd_elf_gc_mark_hook (asection *sec,
12998 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12999 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
13000 struct elf_link_hash_entry *h,
13001 Elf_Internal_Sym *sym)
13002{
13003 if (h != NULL)
13004 {
13005 switch (h->root.type)
13006 {
13007 case bfd_link_hash_defined:
13008 case bfd_link_hash_defweak:
13009 return h->root.u.def.section;
13010
13011 case bfd_link_hash_common:
13012 return h->root.u.c.p->section;
13013
13014 default:
13015 break;
13016 }
13017 }
13018 else
13019 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
13020
13021 return NULL;
13022}
13023
9e223787 13024/* Return the debug definition section. */
b7c871ed
L
13025
13026static asection *
13027elf_gc_mark_debug_section (asection *sec ATTRIBUTE_UNUSED,
13028 struct bfd_link_info *info ATTRIBUTE_UNUSED,
13029 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
13030 struct elf_link_hash_entry *h,
9e223787 13031 Elf_Internal_Sym *sym)
b7c871ed 13032{
9e223787
L
13033 if (h != NULL)
13034 {
13035 /* Return the global debug definition section. */
13036 if ((h->root.type == bfd_link_hash_defined
13037 || h->root.type == bfd_link_hash_defweak)
13038 && (h->root.u.def.section->flags & SEC_DEBUGGING) != 0)
13039 return h->root.u.def.section;
13040 }
13041 else
13042 {
13043 /* Return the local debug definition section. */
13044 asection *isec = bfd_section_from_elf_index (sec->owner,
13045 sym->st_shndx);
13046 if ((isec->flags & SEC_DEBUGGING) != 0)
13047 return isec;
13048 }
b7c871ed
L
13049
13050 return NULL;
13051}
13052
5241d853
RS
13053/* COOKIE->rel describes a relocation against section SEC, which is
13054 a section we've decided to keep. Return the section that contains
13055 the relocation symbol, or NULL if no section contains it. */
13056
13057asection *
13058_bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
13059 elf_gc_mark_hook_fn gc_mark_hook,
1cce69b9
AM
13060 struct elf_reloc_cookie *cookie,
13061 bfd_boolean *start_stop)
5241d853
RS
13062{
13063 unsigned long r_symndx;
13064 struct elf_link_hash_entry *h;
13065
13066 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
cf35638d 13067 if (r_symndx == STN_UNDEF)
5241d853
RS
13068 return NULL;
13069
13070 if (r_symndx >= cookie->locsymcount
13071 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
13072 {
13073 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
263ddf68
L
13074 if (h == NULL)
13075 {
871b3ab2 13076 info->callbacks->einfo (_("%F%P: corrupt input: %pB\n"),
263ddf68
L
13077 sec->owner);
13078 return NULL;
13079 }
5241d853
RS
13080 while (h->root.type == bfd_link_hash_indirect
13081 || h->root.type == bfd_link_hash_warning)
13082 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1d5316ab 13083 h->mark = 1;
4e6b54a6
AM
13084 /* If this symbol is weak and there is a non-weak definition, we
13085 keep the non-weak definition because many backends put
13086 dynamic reloc info on the non-weak definition for code
13087 handling copy relocs. */
60d67dc8
AM
13088 if (h->is_weakalias)
13089 weakdef (h)->mark = 1;
1cce69b9 13090
a6a4679f 13091 if (start_stop != NULL)
1cce69b9 13092 {
7dba9362
AM
13093 /* To work around a glibc bug, mark XXX input sections
13094 when there is a reference to __start_XXX or __stop_XXX
13095 symbols. */
cbd0eecf 13096 if (h->start_stop)
1cce69b9 13097 {
cbd0eecf 13098 asection *s = h->u2.start_stop_section;
a6a4679f
AM
13099 *start_stop = !s->gc_mark;
13100 return s;
1cce69b9
AM
13101 }
13102 }
13103
5241d853
RS
13104 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
13105 }
13106
13107 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
13108 &cookie->locsyms[r_symndx]);
13109}
13110
13111/* COOKIE->rel describes a relocation against section SEC, which is
13112 a section we've decided to keep. Mark the section that contains
9d0a14d3 13113 the relocation symbol. */
5241d853
RS
13114
13115bfd_boolean
13116_bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
13117 asection *sec,
13118 elf_gc_mark_hook_fn gc_mark_hook,
9d0a14d3 13119 struct elf_reloc_cookie *cookie)
5241d853
RS
13120{
13121 asection *rsec;
1cce69b9 13122 bfd_boolean start_stop = FALSE;
5241d853 13123
1cce69b9
AM
13124 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie, &start_stop);
13125 while (rsec != NULL)
5241d853 13126 {
1cce69b9
AM
13127 if (!rsec->gc_mark)
13128 {
13129 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
13130 || (rsec->owner->flags & DYNAMIC) != 0)
13131 rsec->gc_mark = 1;
13132 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
13133 return FALSE;
13134 }
13135 if (!start_stop)
13136 break;
199af150 13137 rsec = bfd_get_next_section_by_name (rsec->owner, rsec);
5241d853
RS
13138 }
13139 return TRUE;
13140}
13141
07adf181
AM
13142/* The mark phase of garbage collection. For a given section, mark
13143 it and any sections in this section's group, and all the sections
13144 which define symbols to which it refers. */
13145
ccfa59ea
AM
13146bfd_boolean
13147_bfd_elf_gc_mark (struct bfd_link_info *info,
13148 asection *sec,
6a5bb875 13149 elf_gc_mark_hook_fn gc_mark_hook)
c152c796
AM
13150{
13151 bfd_boolean ret;
9d0a14d3 13152 asection *group_sec, *eh_frame;
c152c796
AM
13153
13154 sec->gc_mark = 1;
13155
13156 /* Mark all the sections in the group. */
13157 group_sec = elf_section_data (sec)->next_in_group;
13158 if (group_sec && !group_sec->gc_mark)
ccfa59ea 13159 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
c152c796
AM
13160 return FALSE;
13161
13162 /* Look through the section relocs. */
13163 ret = TRUE;
9d0a14d3
RS
13164 eh_frame = elf_eh_frame_section (sec->owner);
13165 if ((sec->flags & SEC_RELOC) != 0
13166 && sec->reloc_count > 0
13167 && sec != eh_frame)
c152c796 13168 {
5241d853 13169 struct elf_reloc_cookie cookie;
c152c796 13170
5241d853
RS
13171 if (!init_reloc_cookie_for_section (&cookie, info, sec))
13172 ret = FALSE;
c152c796 13173 else
c152c796 13174 {
5241d853 13175 for (; cookie.rel < cookie.relend; cookie.rel++)
9d0a14d3 13176 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
5241d853
RS
13177 {
13178 ret = FALSE;
13179 break;
13180 }
13181 fini_reloc_cookie_for_section (&cookie, sec);
c152c796
AM
13182 }
13183 }
9d0a14d3
RS
13184
13185 if (ret && eh_frame && elf_fde_list (sec))
13186 {
13187 struct elf_reloc_cookie cookie;
13188
13189 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
13190 ret = FALSE;
13191 else
13192 {
13193 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
13194 gc_mark_hook, &cookie))
13195 ret = FALSE;
13196 fini_reloc_cookie_for_section (&cookie, eh_frame);
13197 }
13198 }
13199
2f0c68f2
CM
13200 eh_frame = elf_section_eh_frame_entry (sec);
13201 if (ret && eh_frame && !eh_frame->gc_mark)
13202 if (!_bfd_elf_gc_mark (info, eh_frame, gc_mark_hook))
13203 ret = FALSE;
13204
c152c796
AM
13205 return ret;
13206}
13207
3c758495
TG
13208/* Scan and mark sections in a special or debug section group. */
13209
13210static void
13211_bfd_elf_gc_mark_debug_special_section_group (asection *grp)
13212{
13213 /* Point to first section of section group. */
13214 asection *ssec;
13215 /* Used to iterate the section group. */
13216 asection *msec;
13217
13218 bfd_boolean is_special_grp = TRUE;
13219 bfd_boolean is_debug_grp = TRUE;
13220
13221 /* First scan to see if group contains any section other than debug
13222 and special section. */
13223 ssec = msec = elf_next_in_group (grp);
13224 do
13225 {
13226 if ((msec->flags & SEC_DEBUGGING) == 0)
13227 is_debug_grp = FALSE;
13228
13229 if ((msec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) != 0)
13230 is_special_grp = FALSE;
13231
13232 msec = elf_next_in_group (msec);
13233 }
13234 while (msec != ssec);
13235
13236 /* If this is a pure debug section group or pure special section group,
13237 keep all sections in this group. */
13238 if (is_debug_grp || is_special_grp)
13239 {
13240 do
13241 {
13242 msec->gc_mark = 1;
13243 msec = elf_next_in_group (msec);
13244 }
13245 while (msec != ssec);
13246 }
13247}
13248
7f6ab9f8
AM
13249/* Keep debug and special sections. */
13250
13251bfd_boolean
13252_bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
13253 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
13254{
13255 bfd *ibfd;
13256
c72f2fb2 13257 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7f6ab9f8
AM
13258 {
13259 asection *isec;
13260 bfd_boolean some_kept;
b40bf0a2 13261 bfd_boolean debug_frag_seen;
b7c871ed 13262 bfd_boolean has_kept_debug_info;
7f6ab9f8
AM
13263
13264 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13265 continue;
57963c05
AM
13266 isec = ibfd->sections;
13267 if (isec == NULL || isec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13268 continue;
7f6ab9f8 13269
b40bf0a2
NC
13270 /* Ensure all linker created sections are kept,
13271 see if any other section is already marked,
13272 and note if we have any fragmented debug sections. */
b7c871ed 13273 debug_frag_seen = some_kept = has_kept_debug_info = FALSE;
7f6ab9f8
AM
13274 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13275 {
13276 if ((isec->flags & SEC_LINKER_CREATED) != 0)
13277 isec->gc_mark = 1;
eb026f09
AM
13278 else if (isec->gc_mark
13279 && (isec->flags & SEC_ALLOC) != 0
13280 && elf_section_type (isec) != SHT_NOTE)
7f6ab9f8 13281 some_kept = TRUE;
b40bf0a2 13282
535b785f 13283 if (!debug_frag_seen
b40bf0a2
NC
13284 && (isec->flags & SEC_DEBUGGING)
13285 && CONST_STRNEQ (isec->name, ".debug_line."))
13286 debug_frag_seen = TRUE;
7f6ab9f8
AM
13287 }
13288
eb026f09
AM
13289 /* If no non-note alloc section in this file will be kept, then
13290 we can toss out the debug and special sections. */
7f6ab9f8
AM
13291 if (!some_kept)
13292 continue;
13293
13294 /* Keep debug and special sections like .comment when they are
3c758495
TG
13295 not part of a group. Also keep section groups that contain
13296 just debug sections or special sections. */
7f6ab9f8 13297 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
3c758495
TG
13298 {
13299 if ((isec->flags & SEC_GROUP) != 0)
13300 _bfd_elf_gc_mark_debug_special_section_group (isec);
13301 else if (((isec->flags & SEC_DEBUGGING) != 0
13302 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
13303 && elf_next_in_group (isec) == NULL)
13304 isec->gc_mark = 1;
b7c871ed
L
13305 if (isec->gc_mark && (isec->flags & SEC_DEBUGGING) != 0)
13306 has_kept_debug_info = TRUE;
3c758495 13307 }
b40bf0a2 13308
b40bf0a2
NC
13309 /* Look for CODE sections which are going to be discarded,
13310 and find and discard any fragmented debug sections which
13311 are associated with that code section. */
b7c871ed
L
13312 if (debug_frag_seen)
13313 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13314 if ((isec->flags & SEC_CODE) != 0
13315 && isec->gc_mark == 0)
13316 {
13317 unsigned int ilen;
13318 asection *dsec;
b40bf0a2 13319
b7c871ed 13320 ilen = strlen (isec->name);
b40bf0a2 13321
b7c871ed 13322 /* Association is determined by the name of the debug
07d6d2b8 13323 section containing the name of the code section as
b7c871ed
L
13324 a suffix. For example .debug_line.text.foo is a
13325 debug section associated with .text.foo. */
13326 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
13327 {
13328 unsigned int dlen;
b40bf0a2 13329
b7c871ed
L
13330 if (dsec->gc_mark == 0
13331 || (dsec->flags & SEC_DEBUGGING) == 0)
13332 continue;
b40bf0a2 13333
b7c871ed 13334 dlen = strlen (dsec->name);
b40bf0a2 13335
b7c871ed
L
13336 if (dlen > ilen
13337 && strncmp (dsec->name + (dlen - ilen),
13338 isec->name, ilen) == 0)
b40bf0a2 13339 dsec->gc_mark = 0;
b7c871ed 13340 }
b40bf0a2 13341 }
b7c871ed
L
13342
13343 /* Mark debug sections referenced by kept debug sections. */
13344 if (has_kept_debug_info)
13345 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
13346 if (isec->gc_mark
13347 && (isec->flags & SEC_DEBUGGING) != 0)
13348 if (!_bfd_elf_gc_mark (info, isec,
13349 elf_gc_mark_debug_section))
13350 return FALSE;
7f6ab9f8
AM
13351 }
13352 return TRUE;
13353}
13354
c152c796 13355static bfd_boolean
ccabcbe5 13356elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
c152c796
AM
13357{
13358 bfd *sub;
ccabcbe5 13359 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
c152c796 13360
c72f2fb2 13361 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
13362 {
13363 asection *o;
13364
b19a8f85 13365 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
81742b83 13366 || elf_object_id (sub) != elf_hash_table_id (elf_hash_table (info))
b19a8f85 13367 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
c152c796 13368 continue;
57963c05
AM
13369 o = sub->sections;
13370 if (o == NULL || o->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13371 continue;
c152c796
AM
13372
13373 for (o = sub->sections; o != NULL; o = o->next)
13374 {
a33dafc3
L
13375 /* When any section in a section group is kept, we keep all
13376 sections in the section group. If the first member of
13377 the section group is excluded, we will also exclude the
13378 group section. */
13379 if (o->flags & SEC_GROUP)
13380 {
13381 asection *first = elf_next_in_group (o);
13382 o->gc_mark = first->gc_mark;
13383 }
c152c796 13384
1e7eae0d 13385 if (o->gc_mark)
c152c796
AM
13386 continue;
13387
13388 /* Skip sweeping sections already excluded. */
13389 if (o->flags & SEC_EXCLUDE)
13390 continue;
13391
13392 /* Since this is early in the link process, it is simple
13393 to remove a section from the output. */
13394 o->flags |= SEC_EXCLUDE;
13395
c55fe096 13396 if (info->print_gc_sections && o->size != 0)
695344c0 13397 /* xgettext:c-format */
9793eb77 13398 _bfd_error_handler (_("removing unused section '%pA' in file '%pB'"),
c08bb8dd 13399 o, sub);
c152c796
AM
13400 }
13401 }
13402
c152c796
AM
13403 return TRUE;
13404}
13405
13406/* Propagate collected vtable information. This is called through
13407 elf_link_hash_traverse. */
13408
13409static bfd_boolean
13410elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
13411{
c152c796 13412 /* Those that are not vtables. */
cbd0eecf
L
13413 if (h->start_stop
13414 || h->u2.vtable == NULL
13415 || h->u2.vtable->parent == NULL)
c152c796
AM
13416 return TRUE;
13417
13418 /* Those vtables that do not have parents, we cannot merge. */
cbd0eecf 13419 if (h->u2.vtable->parent == (struct elf_link_hash_entry *) -1)
c152c796
AM
13420 return TRUE;
13421
13422 /* If we've already been done, exit. */
cbd0eecf 13423 if (h->u2.vtable->used && h->u2.vtable->used[-1])
c152c796
AM
13424 return TRUE;
13425
13426 /* Make sure the parent's table is up to date. */
cbd0eecf 13427 elf_gc_propagate_vtable_entries_used (h->u2.vtable->parent, okp);
c152c796 13428
cbd0eecf 13429 if (h->u2.vtable->used == NULL)
c152c796
AM
13430 {
13431 /* None of this table's entries were referenced. Re-use the
13432 parent's table. */
cbd0eecf
L
13433 h->u2.vtable->used = h->u2.vtable->parent->u2.vtable->used;
13434 h->u2.vtable->size = h->u2.vtable->parent->u2.vtable->size;
c152c796
AM
13435 }
13436 else
13437 {
13438 size_t n;
13439 bfd_boolean *cu, *pu;
13440
13441 /* Or the parent's entries into ours. */
cbd0eecf 13442 cu = h->u2.vtable->used;
c152c796 13443 cu[-1] = TRUE;
cbd0eecf 13444 pu = h->u2.vtable->parent->u2.vtable->used;
c152c796
AM
13445 if (pu != NULL)
13446 {
13447 const struct elf_backend_data *bed;
13448 unsigned int log_file_align;
13449
13450 bed = get_elf_backend_data (h->root.u.def.section->owner);
13451 log_file_align = bed->s->log_file_align;
cbd0eecf 13452 n = h->u2.vtable->parent->u2.vtable->size >> log_file_align;
c152c796
AM
13453 while (n--)
13454 {
13455 if (*pu)
13456 *cu = TRUE;
13457 pu++;
13458 cu++;
13459 }
13460 }
13461 }
13462
13463 return TRUE;
13464}
13465
13466static bfd_boolean
13467elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
13468{
13469 asection *sec;
13470 bfd_vma hstart, hend;
13471 Elf_Internal_Rela *relstart, *relend, *rel;
13472 const struct elf_backend_data *bed;
13473 unsigned int log_file_align;
13474
c152c796
AM
13475 /* Take care of both those symbols that do not describe vtables as
13476 well as those that are not loaded. */
cbd0eecf
L
13477 if (h->start_stop
13478 || h->u2.vtable == NULL
13479 || h->u2.vtable->parent == NULL)
c152c796
AM
13480 return TRUE;
13481
13482 BFD_ASSERT (h->root.type == bfd_link_hash_defined
13483 || h->root.type == bfd_link_hash_defweak);
13484
13485 sec = h->root.u.def.section;
13486 hstart = h->root.u.def.value;
13487 hend = hstart + h->size;
13488
13489 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
13490 if (!relstart)
13491 return *(bfd_boolean *) okp = FALSE;
13492 bed = get_elf_backend_data (sec->owner);
13493 log_file_align = bed->s->log_file_align;
13494
056bafd4 13495 relend = relstart + sec->reloc_count;
c152c796
AM
13496
13497 for (rel = relstart; rel < relend; ++rel)
13498 if (rel->r_offset >= hstart && rel->r_offset < hend)
13499 {
13500 /* If the entry is in use, do nothing. */
cbd0eecf
L
13501 if (h->u2.vtable->used
13502 && (rel->r_offset - hstart) < h->u2.vtable->size)
c152c796
AM
13503 {
13504 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
cbd0eecf 13505 if (h->u2.vtable->used[entry])
c152c796
AM
13506 continue;
13507 }
13508 /* Otherwise, kill it. */
13509 rel->r_offset = rel->r_info = rel->r_addend = 0;
13510 }
13511
13512 return TRUE;
13513}
13514
87538722
AM
13515/* Mark sections containing dynamically referenced symbols. When
13516 building shared libraries, we must assume that any visible symbol is
13517 referenced. */
715df9b8 13518
64d03ab5
AM
13519bfd_boolean
13520bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
715df9b8 13521{
87538722 13522 struct bfd_link_info *info = (struct bfd_link_info *) inf;
d6f6f455 13523 struct bfd_elf_dynamic_list *d = info->dynamic_list;
87538722 13524
715df9b8
EB
13525 if ((h->root.type == bfd_link_hash_defined
13526 || h->root.type == bfd_link_hash_defweak)
d664fd41 13527 && ((h->ref_dynamic && !h->forced_local)
c4621b33 13528 || ((h->def_regular || ELF_COMMON_DEF_P (h))
87538722 13529 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
fd91d419 13530 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
0e1862bb 13531 && (!bfd_link_executable (info)
22185505 13532 || info->gc_keep_exported
b407645f
AM
13533 || info->export_dynamic
13534 || (h->dynamic
13535 && d != NULL
13536 && (*d->match) (&d->head, NULL, h->root.root.string)))
422f1182 13537 && (h->versioned >= versioned
54e8959c
L
13538 || !bfd_hide_sym_by_version (info->version_info,
13539 h->root.root.string)))))
715df9b8
EB
13540 h->root.u.def.section->flags |= SEC_KEEP;
13541
13542 return TRUE;
13543}
3b36f7e6 13544
74f0fb50
AM
13545/* Keep all sections containing symbols undefined on the command-line,
13546 and the section containing the entry symbol. */
13547
13548void
13549_bfd_elf_gc_keep (struct bfd_link_info *info)
13550{
13551 struct bfd_sym_chain *sym;
13552
13553 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
13554 {
13555 struct elf_link_hash_entry *h;
13556
13557 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
13558 FALSE, FALSE, FALSE);
13559
13560 if (h != NULL
13561 && (h->root.type == bfd_link_hash_defined
13562 || h->root.type == bfd_link_hash_defweak)
f02cb058
AM
13563 && !bfd_is_abs_section (h->root.u.def.section)
13564 && !bfd_is_und_section (h->root.u.def.section))
74f0fb50
AM
13565 h->root.u.def.section->flags |= SEC_KEEP;
13566 }
13567}
13568
2f0c68f2
CM
13569bfd_boolean
13570bfd_elf_parse_eh_frame_entries (bfd *abfd ATTRIBUTE_UNUSED,
13571 struct bfd_link_info *info)
13572{
13573 bfd *ibfd = info->input_bfds;
13574
13575 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
13576 {
13577 asection *sec;
13578 struct elf_reloc_cookie cookie;
13579
13580 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13581 continue;
57963c05
AM
13582 sec = ibfd->sections;
13583 if (sec == NULL || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13584 continue;
2f0c68f2
CM
13585
13586 if (!init_reloc_cookie (&cookie, info, ibfd))
13587 return FALSE;
13588
13589 for (sec = ibfd->sections; sec; sec = sec->next)
13590 {
13591 if (CONST_STRNEQ (bfd_section_name (ibfd, sec), ".eh_frame_entry")
13592 && init_reloc_cookie_rels (&cookie, info, ibfd, sec))
13593 {
13594 _bfd_elf_parse_eh_frame_entry (info, sec, &cookie);
13595 fini_reloc_cookie_rels (&cookie, sec);
13596 }
13597 }
13598 }
13599 return TRUE;
13600}
13601
c152c796
AM
13602/* Do mark and sweep of unused sections. */
13603
13604bfd_boolean
13605bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
13606{
13607 bfd_boolean ok = TRUE;
13608 bfd *sub;
6a5bb875 13609 elf_gc_mark_hook_fn gc_mark_hook;
64d03ab5 13610 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
da44f4e5 13611 struct elf_link_hash_table *htab;
c152c796 13612
64d03ab5 13613 if (!bed->can_gc_sections
715df9b8 13614 || !is_elf_hash_table (info->hash))
c152c796 13615 {
9793eb77 13616 _bfd_error_handler(_("warning: gc-sections option ignored"));
c152c796
AM
13617 return TRUE;
13618 }
13619
74f0fb50 13620 bed->gc_keep (info);
da44f4e5 13621 htab = elf_hash_table (info);
74f0fb50 13622
9d0a14d3
RS
13623 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
13624 at the .eh_frame section if we can mark the FDEs individually. */
2f0c68f2
CM
13625 for (sub = info->input_bfds;
13626 info->eh_frame_hdr_type != COMPACT_EH_HDR && sub != NULL;
13627 sub = sub->link.next)
9d0a14d3
RS
13628 {
13629 asection *sec;
13630 struct elf_reloc_cookie cookie;
13631
57963c05
AM
13632 sec = sub->sections;
13633 if (sec == NULL || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13634 continue;
9d0a14d3 13635 sec = bfd_get_section_by_name (sub, ".eh_frame");
9a2a56cc 13636 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
9d0a14d3
RS
13637 {
13638 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
9a2a56cc
AM
13639 if (elf_section_data (sec)->sec_info
13640 && (sec->flags & SEC_LINKER_CREATED) == 0)
9d0a14d3
RS
13641 elf_eh_frame_section (sub) = sec;
13642 fini_reloc_cookie_for_section (&cookie, sec);
199af150 13643 sec = bfd_get_next_section_by_name (NULL, sec);
9d0a14d3
RS
13644 }
13645 }
9d0a14d3 13646
c152c796 13647 /* Apply transitive closure to the vtable entry usage info. */
da44f4e5 13648 elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
c152c796
AM
13649 if (!ok)
13650 return FALSE;
13651
13652 /* Kill the vtable relocations that were not used. */
da44f4e5 13653 elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
c152c796
AM
13654 if (!ok)
13655 return FALSE;
13656
715df9b8 13657 /* Mark dynamically referenced symbols. */
22185505 13658 if (htab->dynamic_sections_created || info->gc_keep_exported)
da44f4e5 13659 elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
c152c796 13660
715df9b8 13661 /* Grovel through relocs to find out who stays ... */
64d03ab5 13662 gc_mark_hook = bed->gc_mark_hook;
c72f2fb2 13663 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
13664 {
13665 asection *o;
13666
b19a8f85 13667 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
81742b83 13668 || elf_object_id (sub) != elf_hash_table_id (htab)
b19a8f85 13669 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
c152c796
AM
13670 continue;
13671
57963c05
AM
13672 o = sub->sections;
13673 if (o == NULL || o->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
13674 continue;
13675
7f6ab9f8
AM
13676 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
13677 Also treat note sections as a root, if the section is not part
8b6f4cd3
L
13678 of a group. We must keep all PREINIT_ARRAY, INIT_ARRAY as
13679 well as FINI_ARRAY sections for ld -r. */
c152c796 13680 for (o = sub->sections; o != NULL; o = o->next)
7f6ab9f8
AM
13681 if (!o->gc_mark
13682 && (o->flags & SEC_EXCLUDE) == 0
24007750 13683 && ((o->flags & SEC_KEEP) != 0
8b6f4cd3
L
13684 || (bfd_link_relocatable (info)
13685 && ((elf_section_data (o)->this_hdr.sh_type
13686 == SHT_PREINIT_ARRAY)
13687 || (elf_section_data (o)->this_hdr.sh_type
13688 == SHT_INIT_ARRAY)
13689 || (elf_section_data (o)->this_hdr.sh_type
13690 == SHT_FINI_ARRAY)))
7f6ab9f8
AM
13691 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
13692 && elf_next_in_group (o) == NULL )))
13693 {
13694 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
13695 return FALSE;
13696 }
c152c796
AM
13697 }
13698
6a5bb875 13699 /* Allow the backend to mark additional target specific sections. */
7f6ab9f8 13700 bed->gc_mark_extra_sections (info, gc_mark_hook);
6a5bb875 13701
c152c796 13702 /* ... and mark SEC_EXCLUDE for those that go. */
ccabcbe5 13703 return elf_gc_sweep (abfd, info);
c152c796
AM
13704}
13705\f
13706/* Called from check_relocs to record the existence of a VTINHERIT reloc. */
13707
13708bfd_boolean
13709bfd_elf_gc_record_vtinherit (bfd *abfd,
13710 asection *sec,
13711 struct elf_link_hash_entry *h,
13712 bfd_vma offset)
13713{
13714 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
13715 struct elf_link_hash_entry **search, *child;
ef53be89 13716 size_t extsymcount;
c152c796
AM
13717 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13718
13719 /* The sh_info field of the symtab header tells us where the
13720 external symbols start. We don't care about the local symbols at
13721 this point. */
13722 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
13723 if (!elf_bad_symtab (abfd))
13724 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
13725
13726 sym_hashes = elf_sym_hashes (abfd);
13727 sym_hashes_end = sym_hashes + extsymcount;
13728
13729 /* Hunt down the child symbol, which is in this section at the same
13730 offset as the relocation. */
13731 for (search = sym_hashes; search != sym_hashes_end; ++search)
13732 {
13733 if ((child = *search) != NULL
13734 && (child->root.type == bfd_link_hash_defined
13735 || child->root.type == bfd_link_hash_defweak)
13736 && child->root.u.def.section == sec
13737 && child->root.u.def.value == offset)
13738 goto win;
13739 }
13740
695344c0 13741 /* xgettext:c-format */
9793eb77 13742 _bfd_error_handler (_("%pB: %pA+%#" PRIx64 ": no symbol found for INHERIT"),
2dcf00ce 13743 abfd, sec, (uint64_t) offset);
c152c796
AM
13744 bfd_set_error (bfd_error_invalid_operation);
13745 return FALSE;
13746
13747 win:
cbd0eecf 13748 if (!child->u2.vtable)
f6e332e6 13749 {
cbd0eecf
L
13750 child->u2.vtable = ((struct elf_link_virtual_table_entry *)
13751 bfd_zalloc (abfd, sizeof (*child->u2.vtable)));
13752 if (!child->u2.vtable)
f6e332e6
AM
13753 return FALSE;
13754 }
c152c796
AM
13755 if (!h)
13756 {
13757 /* This *should* only be the absolute section. It could potentially
13758 be that someone has defined a non-global vtable though, which
13759 would be bad. It isn't worth paging in the local symbols to be
13760 sure though; that case should simply be handled by the assembler. */
13761
cbd0eecf 13762 child->u2.vtable->parent = (struct elf_link_hash_entry *) -1;
c152c796
AM
13763 }
13764 else
cbd0eecf 13765 child->u2.vtable->parent = h;
c152c796
AM
13766
13767 return TRUE;
13768}
13769
13770/* Called from check_relocs to record the existence of a VTENTRY reloc. */
13771
13772bfd_boolean
a0ea3a14 13773bfd_elf_gc_record_vtentry (bfd *abfd, asection *sec,
c152c796
AM
13774 struct elf_link_hash_entry *h,
13775 bfd_vma addend)
13776{
13777 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13778 unsigned int log_file_align = bed->s->log_file_align;
13779
a0ea3a14
L
13780 if (!h)
13781 {
13782 /* xgettext:c-format */
13783 _bfd_error_handler (_("%pB: section '%pA': corrupt VTENTRY entry"),
13784 abfd, sec);
13785 bfd_set_error (bfd_error_bad_value);
13786 return FALSE;
13787 }
13788
cbd0eecf 13789 if (!h->u2.vtable)
f6e332e6 13790 {
cbd0eecf
L
13791 h->u2.vtable = ((struct elf_link_virtual_table_entry *)
13792 bfd_zalloc (abfd, sizeof (*h->u2.vtable)));
13793 if (!h->u2.vtable)
f6e332e6
AM
13794 return FALSE;
13795 }
13796
cbd0eecf 13797 if (addend >= h->u2.vtable->size)
c152c796
AM
13798 {
13799 size_t size, bytes, file_align;
cbd0eecf 13800 bfd_boolean *ptr = h->u2.vtable->used;
c152c796
AM
13801
13802 /* While the symbol is undefined, we have to be prepared to handle
13803 a zero size. */
13804 file_align = 1 << log_file_align;
13805 if (h->root.type == bfd_link_hash_undefined)
13806 size = addend + file_align;
13807 else
13808 {
13809 size = h->size;
13810 if (addend >= size)
13811 {
13812 /* Oops! We've got a reference past the defined end of
13813 the table. This is probably a bug -- shall we warn? */
13814 size = addend + file_align;
13815 }
13816 }
13817 size = (size + file_align - 1) & -file_align;
13818
13819 /* Allocate one extra entry for use as a "done" flag for the
13820 consolidation pass. */
13821 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
13822
13823 if (ptr)
13824 {
a50b1753 13825 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
c152c796
AM
13826
13827 if (ptr != NULL)
13828 {
13829 size_t oldbytes;
13830
cbd0eecf 13831 oldbytes = (((h->u2.vtable->size >> log_file_align) + 1)
c152c796
AM
13832 * sizeof (bfd_boolean));
13833 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
13834 }
13835 }
13836 else
a50b1753 13837 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
c152c796
AM
13838
13839 if (ptr == NULL)
13840 return FALSE;
13841
13842 /* And arrange for that done flag to be at index -1. */
cbd0eecf
L
13843 h->u2.vtable->used = ptr + 1;
13844 h->u2.vtable->size = size;
c152c796
AM
13845 }
13846
cbd0eecf 13847 h->u2.vtable->used[addend >> log_file_align] = TRUE;
c152c796
AM
13848
13849 return TRUE;
13850}
13851
ae17ab41
CM
13852/* Map an ELF section header flag to its corresponding string. */
13853typedef struct
13854{
13855 char *flag_name;
13856 flagword flag_value;
13857} elf_flags_to_name_table;
13858
13859static elf_flags_to_name_table elf_flags_to_names [] =
13860{
13861 { "SHF_WRITE", SHF_WRITE },
13862 { "SHF_ALLOC", SHF_ALLOC },
13863 { "SHF_EXECINSTR", SHF_EXECINSTR },
13864 { "SHF_MERGE", SHF_MERGE },
13865 { "SHF_STRINGS", SHF_STRINGS },
13866 { "SHF_INFO_LINK", SHF_INFO_LINK},
13867 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
13868 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
13869 { "SHF_GROUP", SHF_GROUP },
13870 { "SHF_TLS", SHF_TLS },
13871 { "SHF_MASKOS", SHF_MASKOS },
13872 { "SHF_EXCLUDE", SHF_EXCLUDE },
13873};
13874
b9c361e0
JL
13875/* Returns TRUE if the section is to be included, otherwise FALSE. */
13876bfd_boolean
ae17ab41 13877bfd_elf_lookup_section_flags (struct bfd_link_info *info,
8b127cbc 13878 struct flag_info *flaginfo,
b9c361e0 13879 asection *section)
ae17ab41 13880{
8b127cbc 13881 const bfd_vma sh_flags = elf_section_flags (section);
ae17ab41 13882
8b127cbc 13883 if (!flaginfo->flags_initialized)
ae17ab41 13884 {
8b127cbc
AM
13885 bfd *obfd = info->output_bfd;
13886 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
13887 struct flag_info_list *tf = flaginfo->flag_list;
b9c361e0
JL
13888 int with_hex = 0;
13889 int without_hex = 0;
13890
8b127cbc 13891 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
ae17ab41 13892 {
b9c361e0 13893 unsigned i;
8b127cbc 13894 flagword (*lookup) (char *);
ae17ab41 13895
8b127cbc
AM
13896 lookup = bed->elf_backend_lookup_section_flags_hook;
13897 if (lookup != NULL)
ae17ab41 13898 {
8b127cbc 13899 flagword hexval = (*lookup) ((char *) tf->name);
b9c361e0
JL
13900
13901 if (hexval != 0)
13902 {
13903 if (tf->with == with_flags)
13904 with_hex |= hexval;
13905 else if (tf->with == without_flags)
13906 without_hex |= hexval;
13907 tf->valid = TRUE;
13908 continue;
13909 }
ae17ab41 13910 }
8b127cbc 13911 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
ae17ab41 13912 {
8b127cbc 13913 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
b9c361e0
JL
13914 {
13915 if (tf->with == with_flags)
13916 with_hex |= elf_flags_to_names[i].flag_value;
13917 else if (tf->with == without_flags)
13918 without_hex |= elf_flags_to_names[i].flag_value;
13919 tf->valid = TRUE;
13920 break;
13921 }
13922 }
8b127cbc 13923 if (!tf->valid)
b9c361e0 13924 {
68ffbac6 13925 info->callbacks->einfo
9793eb77 13926 (_("unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
b9c361e0 13927 return FALSE;
ae17ab41
CM
13928 }
13929 }
8b127cbc
AM
13930 flaginfo->flags_initialized = TRUE;
13931 flaginfo->only_with_flags |= with_hex;
13932 flaginfo->not_with_flags |= without_hex;
ae17ab41 13933 }
ae17ab41 13934
8b127cbc 13935 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
b9c361e0
JL
13936 return FALSE;
13937
8b127cbc 13938 if ((flaginfo->not_with_flags & sh_flags) != 0)
b9c361e0
JL
13939 return FALSE;
13940
13941 return TRUE;
ae17ab41
CM
13942}
13943
c152c796
AM
13944struct alloc_got_off_arg {
13945 bfd_vma gotoff;
10455f89 13946 struct bfd_link_info *info;
c152c796
AM
13947};
13948
13949/* We need a special top-level link routine to convert got reference counts
13950 to real got offsets. */
13951
13952static bfd_boolean
13953elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
13954{
a50b1753 13955 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
10455f89
HPN
13956 bfd *obfd = gofarg->info->output_bfd;
13957 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
c152c796 13958
c152c796
AM
13959 if (h->got.refcount > 0)
13960 {
13961 h->got.offset = gofarg->gotoff;
10455f89 13962 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
c152c796
AM
13963 }
13964 else
13965 h->got.offset = (bfd_vma) -1;
13966
13967 return TRUE;
13968}
13969
13970/* And an accompanying bit to work out final got entry offsets once
13971 we're done. Should be called from final_link. */
13972
13973bfd_boolean
13974bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
13975 struct bfd_link_info *info)
13976{
13977 bfd *i;
13978 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13979 bfd_vma gotoff;
c152c796
AM
13980 struct alloc_got_off_arg gofarg;
13981
10455f89
HPN
13982 BFD_ASSERT (abfd == info->output_bfd);
13983
c152c796
AM
13984 if (! is_elf_hash_table (info->hash))
13985 return FALSE;
13986
13987 /* The GOT offset is relative to the .got section, but the GOT header is
13988 put into the .got.plt section, if the backend uses it. */
13989 if (bed->want_got_plt)
13990 gotoff = 0;
13991 else
13992 gotoff = bed->got_header_size;
13993
13994 /* Do the local .got entries first. */
c72f2fb2 13995 for (i = info->input_bfds; i; i = i->link.next)
c152c796
AM
13996 {
13997 bfd_signed_vma *local_got;
ef53be89 13998 size_t j, locsymcount;
c152c796
AM
13999 Elf_Internal_Shdr *symtab_hdr;
14000
14001 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
14002 continue;
14003
14004 local_got = elf_local_got_refcounts (i);
14005 if (!local_got)
14006 continue;
14007
14008 symtab_hdr = &elf_tdata (i)->symtab_hdr;
14009 if (elf_bad_symtab (i))
14010 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
14011 else
14012 locsymcount = symtab_hdr->sh_info;
14013
14014 for (j = 0; j < locsymcount; ++j)
14015 {
14016 if (local_got[j] > 0)
14017 {
14018 local_got[j] = gotoff;
10455f89 14019 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
c152c796
AM
14020 }
14021 else
14022 local_got[j] = (bfd_vma) -1;
14023 }
14024 }
14025
14026 /* Then the global .got entries. .plt refcounts are handled by
14027 adjust_dynamic_symbol */
14028 gofarg.gotoff = gotoff;
10455f89 14029 gofarg.info = info;
c152c796
AM
14030 elf_link_hash_traverse (elf_hash_table (info),
14031 elf_gc_allocate_got_offsets,
14032 &gofarg);
14033 return TRUE;
14034}
14035
14036/* Many folk need no more in the way of final link than this, once
14037 got entry reference counting is enabled. */
14038
14039bfd_boolean
14040bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
14041{
14042 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
14043 return FALSE;
14044
14045 /* Invoke the regular ELF backend linker to do all the work. */
14046 return bfd_elf_final_link (abfd, info);
14047}
14048
14049bfd_boolean
14050bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
14051{
a50b1753 14052 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
c152c796
AM
14053
14054 if (rcookie->bad_symtab)
14055 rcookie->rel = rcookie->rels;
14056
14057 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
14058 {
14059 unsigned long r_symndx;
14060
14061 if (! rcookie->bad_symtab)
14062 if (rcookie->rel->r_offset > offset)
14063 return FALSE;
14064 if (rcookie->rel->r_offset != offset)
14065 continue;
14066
14067 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
2c2fa401 14068 if (r_symndx == STN_UNDEF)
c152c796
AM
14069 return TRUE;
14070
14071 if (r_symndx >= rcookie->locsymcount
14072 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
14073 {
14074 struct elf_link_hash_entry *h;
14075
14076 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
14077
14078 while (h->root.type == bfd_link_hash_indirect
14079 || h->root.type == bfd_link_hash_warning)
14080 h = (struct elf_link_hash_entry *) h->root.u.i.link;
14081
14082 if ((h->root.type == bfd_link_hash_defined
14083 || h->root.type == bfd_link_hash_defweak)
5b69e357
AM
14084 && (h->root.u.def.section->owner != rcookie->abfd
14085 || h->root.u.def.section->kept_section != NULL
14086 || discarded_section (h->root.u.def.section)))
c152c796 14087 return TRUE;
c152c796
AM
14088 }
14089 else
14090 {
14091 /* It's not a relocation against a global symbol,
14092 but it could be a relocation against a local
14093 symbol for a discarded section. */
14094 asection *isec;
14095 Elf_Internal_Sym *isym;
14096
14097 /* Need to: get the symbol; get the section. */
14098 isym = &rcookie->locsyms[r_symndx];
cb33740c 14099 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
5b69e357
AM
14100 if (isec != NULL
14101 && (isec->kept_section != NULL
14102 || discarded_section (isec)))
cb33740c 14103 return TRUE;
c152c796
AM
14104 }
14105 return FALSE;
14106 }
14107 return FALSE;
14108}
14109
14110/* Discard unneeded references to discarded sections.
75938853
AM
14111 Returns -1 on error, 1 if any section's size was changed, 0 if
14112 nothing changed. This function assumes that the relocations are in
14113 sorted order, which is true for all known assemblers. */
c152c796 14114
75938853 14115int
c152c796
AM
14116bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
14117{
14118 struct elf_reloc_cookie cookie;
18cd5bce 14119 asection *o;
c152c796 14120 bfd *abfd;
75938853 14121 int changed = 0;
c152c796
AM
14122
14123 if (info->traditional_format
14124 || !is_elf_hash_table (info->hash))
75938853 14125 return 0;
c152c796 14126
18cd5bce
AM
14127 o = bfd_get_section_by_name (output_bfd, ".stab");
14128 if (o != NULL)
c152c796 14129 {
18cd5bce 14130 asection *i;
c152c796 14131
18cd5bce 14132 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
8da3dbc5 14133 {
18cd5bce
AM
14134 if (i->size == 0
14135 || i->reloc_count == 0
14136 || i->sec_info_type != SEC_INFO_TYPE_STABS)
14137 continue;
c152c796 14138
18cd5bce
AM
14139 abfd = i->owner;
14140 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14141 continue;
c152c796 14142
18cd5bce 14143 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 14144 return -1;
c152c796 14145
18cd5bce
AM
14146 if (_bfd_discard_section_stabs (abfd, i,
14147 elf_section_data (i)->sec_info,
5241d853
RS
14148 bfd_elf_reloc_symbol_deleted_p,
14149 &cookie))
75938853 14150 changed = 1;
18cd5bce
AM
14151
14152 fini_reloc_cookie_for_section (&cookie, i);
c152c796 14153 }
18cd5bce
AM
14154 }
14155
2f0c68f2
CM
14156 o = NULL;
14157 if (info->eh_frame_hdr_type != COMPACT_EH_HDR)
14158 o = bfd_get_section_by_name (output_bfd, ".eh_frame");
18cd5bce
AM
14159 if (o != NULL)
14160 {
14161 asection *i;
d7153c4a 14162 int eh_changed = 0;
79a94a2a 14163 unsigned int eh_alignment;
c152c796 14164
18cd5bce 14165 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
c152c796 14166 {
18cd5bce
AM
14167 if (i->size == 0)
14168 continue;
14169
14170 abfd = i->owner;
14171 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14172 continue;
14173
14174 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 14175 return -1;
18cd5bce
AM
14176
14177 _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
14178 if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
c152c796
AM
14179 bfd_elf_reloc_symbol_deleted_p,
14180 &cookie))
d7153c4a
AM
14181 {
14182 eh_changed = 1;
14183 if (i->size != i->rawsize)
14184 changed = 1;
14185 }
18cd5bce
AM
14186
14187 fini_reloc_cookie_for_section (&cookie, i);
c152c796 14188 }
9866ffe2 14189
79a94a2a 14190 eh_alignment = 1 << o->alignment_power;
9866ffe2
AM
14191 /* Skip over zero terminator, and prevent empty sections from
14192 adding alignment padding at the end. */
14193 for (i = o->map_tail.s; i != NULL; i = i->map_tail.s)
14194 if (i->size == 0)
14195 i->flags |= SEC_EXCLUDE;
14196 else if (i->size > 4)
14197 break;
14198 /* The last non-empty eh_frame section doesn't need padding. */
14199 if (i != NULL)
14200 i = i->map_tail.s;
14201 /* Any prior sections must pad the last FDE out to the output
14202 section alignment. Otherwise we might have zero padding
14203 between sections, which would be seen as a terminator. */
14204 for (; i != NULL; i = i->map_tail.s)
14205 if (i->size == 4)
14206 /* All but the last zero terminator should have been removed. */
14207 BFD_FAIL ();
14208 else
14209 {
14210 bfd_size_type size
14211 = (i->size + eh_alignment - 1) & -eh_alignment;
14212 if (i->size != size)
af471f82 14213 {
9866ffe2
AM
14214 i->size = size;
14215 changed = 1;
14216 eh_changed = 1;
af471f82 14217 }
9866ffe2 14218 }
d7153c4a
AM
14219 if (eh_changed)
14220 elf_link_hash_traverse (elf_hash_table (info),
14221 _bfd_elf_adjust_eh_frame_global_symbol, NULL);
18cd5bce 14222 }
c152c796 14223
18cd5bce
AM
14224 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
14225 {
14226 const struct elf_backend_data *bed;
57963c05 14227 asection *s;
c152c796 14228
18cd5bce
AM
14229 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
14230 continue;
57963c05
AM
14231 s = abfd->sections;
14232 if (s == NULL || s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
14233 continue;
18cd5bce
AM
14234
14235 bed = get_elf_backend_data (abfd);
14236
14237 if (bed->elf_backend_discard_info != NULL)
14238 {
14239 if (!init_reloc_cookie (&cookie, info, abfd))
75938853 14240 return -1;
18cd5bce
AM
14241
14242 if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
75938853 14243 changed = 1;
18cd5bce
AM
14244
14245 fini_reloc_cookie (&cookie, abfd);
14246 }
c152c796
AM
14247 }
14248
2f0c68f2
CM
14249 if (info->eh_frame_hdr_type == COMPACT_EH_HDR)
14250 _bfd_elf_end_eh_frame_parsing (info);
14251
14252 if (info->eh_frame_hdr_type
0e1862bb 14253 && !bfd_link_relocatable (info)
c152c796 14254 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
75938853 14255 changed = 1;
c152c796 14256
75938853 14257 return changed;
c152c796 14258}
082b7297 14259
43e1669b 14260bfd_boolean
0c511000 14261_bfd_elf_section_already_linked (bfd *abfd,
c77ec726 14262 asection *sec,
c0f00686 14263 struct bfd_link_info *info)
082b7297
L
14264{
14265 flagword flags;
c77ec726 14266 const char *name, *key;
082b7297
L
14267 struct bfd_section_already_linked *l;
14268 struct bfd_section_already_linked_hash_entry *already_linked_list;
0c511000 14269
c77ec726
AM
14270 if (sec->output_section == bfd_abs_section_ptr)
14271 return FALSE;
0c511000 14272
c77ec726 14273 flags = sec->flags;
0c511000 14274
c77ec726
AM
14275 /* Return if it isn't a linkonce section. A comdat group section
14276 also has SEC_LINK_ONCE set. */
14277 if ((flags & SEC_LINK_ONCE) == 0)
14278 return FALSE;
0c511000 14279
c77ec726
AM
14280 /* Don't put group member sections on our list of already linked
14281 sections. They are handled as a group via their group section. */
14282 if (elf_sec_group (sec) != NULL)
14283 return FALSE;
0c511000 14284
c77ec726
AM
14285 /* For a SHT_GROUP section, use the group signature as the key. */
14286 name = sec->name;
14287 if ((flags & SEC_GROUP) != 0
14288 && elf_next_in_group (sec) != NULL
14289 && elf_group_name (elf_next_in_group (sec)) != NULL)
14290 key = elf_group_name (elf_next_in_group (sec));
14291 else
14292 {
14293 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
0c511000 14294 if (CONST_STRNEQ (name, ".gnu.linkonce.")
c77ec726
AM
14295 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
14296 key++;
0c511000 14297 else
c77ec726
AM
14298 /* Must be a user linkonce section that doesn't follow gcc's
14299 naming convention. In this case we won't be matching
14300 single member groups. */
14301 key = name;
0c511000 14302 }
6d2cd210 14303
c77ec726 14304 already_linked_list = bfd_section_already_linked_table_lookup (key);
082b7297
L
14305
14306 for (l = already_linked_list->entry; l != NULL; l = l->next)
14307 {
c2370991 14308 /* We may have 2 different types of sections on the list: group
c77ec726
AM
14309 sections with a signature of <key> (<key> is some string),
14310 and linkonce sections named .gnu.linkonce.<type>.<key>.
14311 Match like sections. LTO plugin sections are an exception.
14312 They are always named .gnu.linkonce.t.<key> and match either
14313 type of section. */
14314 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
14315 && ((flags & SEC_GROUP) != 0
14316 || strcmp (name, l->sec->name) == 0))
14317 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
082b7297
L
14318 {
14319 /* The section has already been linked. See if we should
6d2cd210 14320 issue a warning. */
c77ec726
AM
14321 if (!_bfd_handle_already_linked (sec, l, info))
14322 return FALSE;
082b7297 14323
c77ec726 14324 if (flags & SEC_GROUP)
3d7f7666 14325 {
c77ec726
AM
14326 asection *first = elf_next_in_group (sec);
14327 asection *s = first;
3d7f7666 14328
c77ec726 14329 while (s != NULL)
3d7f7666 14330 {
c77ec726
AM
14331 s->output_section = bfd_abs_section_ptr;
14332 /* Record which group discards it. */
14333 s->kept_section = l->sec;
14334 s = elf_next_in_group (s);
14335 /* These lists are circular. */
14336 if (s == first)
14337 break;
3d7f7666
L
14338 }
14339 }
082b7297 14340
43e1669b 14341 return TRUE;
082b7297
L
14342 }
14343 }
14344
c77ec726
AM
14345 /* A single member comdat group section may be discarded by a
14346 linkonce section and vice versa. */
14347 if ((flags & SEC_GROUP) != 0)
3d7f7666 14348 {
c77ec726 14349 asection *first = elf_next_in_group (sec);
c2370991 14350
c77ec726
AM
14351 if (first != NULL && elf_next_in_group (first) == first)
14352 /* Check this single member group against linkonce sections. */
14353 for (l = already_linked_list->entry; l != NULL; l = l->next)
14354 if ((l->sec->flags & SEC_GROUP) == 0
14355 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
14356 {
14357 first->output_section = bfd_abs_section_ptr;
14358 first->kept_section = l->sec;
14359 sec->output_section = bfd_abs_section_ptr;
14360 break;
14361 }
14362 }
14363 else
14364 /* Check this linkonce section against single member groups. */
14365 for (l = already_linked_list->entry; l != NULL; l = l->next)
14366 if (l->sec->flags & SEC_GROUP)
6d2cd210 14367 {
c77ec726 14368 asection *first = elf_next_in_group (l->sec);
6d2cd210 14369
c77ec726
AM
14370 if (first != NULL
14371 && elf_next_in_group (first) == first
14372 && bfd_elf_match_symbols_in_sections (first, sec, info))
14373 {
14374 sec->output_section = bfd_abs_section_ptr;
14375 sec->kept_section = first;
14376 break;
14377 }
6d2cd210 14378 }
0c511000 14379
c77ec726
AM
14380 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
14381 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
14382 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
14383 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
14384 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
14385 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
14386 `.gnu.linkonce.t.F' section from a different bfd not requiring any
14387 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
14388 The reverse order cannot happen as there is never a bfd with only the
14389 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
14390 matter as here were are looking only for cross-bfd sections. */
14391
14392 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
14393 for (l = already_linked_list->entry; l != NULL; l = l->next)
14394 if ((l->sec->flags & SEC_GROUP) == 0
14395 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
14396 {
14397 if (abfd != l->sec->owner)
14398 sec->output_section = bfd_abs_section_ptr;
14399 break;
14400 }
80c29487 14401
082b7297 14402 /* This is the first section with this name. Record it. */
c77ec726 14403 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
bb6198d2 14404 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
c77ec726 14405 return sec->output_section == bfd_abs_section_ptr;
082b7297 14406}
81e1b023 14407
a4d8e49b
L
14408bfd_boolean
14409_bfd_elf_common_definition (Elf_Internal_Sym *sym)
14410{
14411 return sym->st_shndx == SHN_COMMON;
14412}
14413
14414unsigned int
14415_bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
14416{
14417 return SHN_COMMON;
14418}
14419
14420asection *
14421_bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
14422{
14423 return bfd_com_section_ptr;
14424}
10455f89
HPN
14425
14426bfd_vma
14427_bfd_elf_default_got_elt_size (bfd *abfd,
14428 struct bfd_link_info *info ATTRIBUTE_UNUSED,
14429 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
14430 bfd *ibfd ATTRIBUTE_UNUSED,
14431 unsigned long symndx ATTRIBUTE_UNUSED)
14432{
14433 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14434 return bed->s->arch_size / 8;
14435}
83bac4b0
NC
14436
14437/* Routines to support the creation of dynamic relocs. */
14438
83bac4b0
NC
14439/* Returns the name of the dynamic reloc section associated with SEC. */
14440
14441static const char *
14442get_dynamic_reloc_section_name (bfd * abfd,
14443 asection * sec,
14444 bfd_boolean is_rela)
14445{
ddcf1fcf
BS
14446 char *name;
14447 const char *old_name = bfd_get_section_name (NULL, sec);
14448 const char *prefix = is_rela ? ".rela" : ".rel";
83bac4b0 14449
ddcf1fcf 14450 if (old_name == NULL)
83bac4b0
NC
14451 return NULL;
14452
ddcf1fcf 14453 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
68ffbac6 14454 sprintf (name, "%s%s", prefix, old_name);
83bac4b0
NC
14455
14456 return name;
14457}
14458
14459/* Returns the dynamic reloc section associated with SEC.
14460 If necessary compute the name of the dynamic reloc section based
14461 on SEC's name (looked up in ABFD's string table) and the setting
14462 of IS_RELA. */
14463
14464asection *
14465_bfd_elf_get_dynamic_reloc_section (bfd * abfd,
14466 asection * sec,
14467 bfd_boolean is_rela)
14468{
14469 asection * reloc_sec = elf_section_data (sec)->sreloc;
14470
14471 if (reloc_sec == NULL)
14472 {
14473 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14474
14475 if (name != NULL)
14476 {
3d4d4302 14477 reloc_sec = bfd_get_linker_section (abfd, name);
83bac4b0
NC
14478
14479 if (reloc_sec != NULL)
14480 elf_section_data (sec)->sreloc = reloc_sec;
14481 }
14482 }
14483
14484 return reloc_sec;
14485}
14486
14487/* Returns the dynamic reloc section associated with SEC. If the
14488 section does not exist it is created and attached to the DYNOBJ
14489 bfd and stored in the SRELOC field of SEC's elf_section_data
14490 structure.
f8076f98 14491
83bac4b0
NC
14492 ALIGNMENT is the alignment for the newly created section and
14493 IS_RELA defines whether the name should be .rela.<SEC's name>
14494 or .rel.<SEC's name>. The section name is looked up in the
14495 string table associated with ABFD. */
14496
14497asection *
ca4be51c
AM
14498_bfd_elf_make_dynamic_reloc_section (asection *sec,
14499 bfd *dynobj,
14500 unsigned int alignment,
14501 bfd *abfd,
14502 bfd_boolean is_rela)
83bac4b0
NC
14503{
14504 asection * reloc_sec = elf_section_data (sec)->sreloc;
14505
14506 if (reloc_sec == NULL)
14507 {
14508 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
14509
14510 if (name == NULL)
14511 return NULL;
14512
3d4d4302 14513 reloc_sec = bfd_get_linker_section (dynobj, name);
83bac4b0
NC
14514
14515 if (reloc_sec == NULL)
14516 {
3d4d4302
AM
14517 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
14518 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
83bac4b0
NC
14519 if ((sec->flags & SEC_ALLOC) != 0)
14520 flags |= SEC_ALLOC | SEC_LOAD;
14521
3d4d4302 14522 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
83bac4b0
NC
14523 if (reloc_sec != NULL)
14524 {
8877b5e5
AM
14525 /* _bfd_elf_get_sec_type_attr chooses a section type by
14526 name. Override as it may be wrong, eg. for a user
14527 section named "auto" we'll get ".relauto" which is
14528 seen to be a .rela section. */
14529 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
83bac4b0
NC
14530 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
14531 reloc_sec = NULL;
14532 }
14533 }
14534
14535 elf_section_data (sec)->sreloc = reloc_sec;
14536 }
14537
14538 return reloc_sec;
14539}
1338dd10 14540
bffebb6b
AM
14541/* Copy the ELF symbol type and other attributes for a linker script
14542 assignment from HSRC to HDEST. Generally this should be treated as
14543 if we found a strong non-dynamic definition for HDEST (except that
14544 ld ignores multiple definition errors). */
1338dd10 14545void
bffebb6b
AM
14546_bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
14547 struct bfd_link_hash_entry *hdest,
14548 struct bfd_link_hash_entry *hsrc)
1338dd10 14549{
bffebb6b
AM
14550 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
14551 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
14552 Elf_Internal_Sym isym;
1338dd10
PB
14553
14554 ehdest->type = ehsrc->type;
35fc36a8 14555 ehdest->target_internal = ehsrc->target_internal;
bffebb6b
AM
14556
14557 isym.st_other = ehsrc->other;
b8417128 14558 elf_merge_st_other (abfd, ehdest, &isym, NULL, TRUE, FALSE);
1338dd10 14559}
351f65ca
L
14560
14561/* Append a RELA relocation REL to section S in BFD. */
14562
14563void
14564elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14565{
14566 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14567 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
14568 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
14569 bed->s->swap_reloca_out (abfd, rel, loc);
14570}
14571
14572/* Append a REL relocation REL to section S in BFD. */
14573
14574void
14575elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
14576{
14577 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14578 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
14579 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
59d6ffb2 14580 bed->s->swap_reloc_out (abfd, rel, loc);
351f65ca 14581}
7dba9362
AM
14582
14583/* Define __start, __stop, .startof. or .sizeof. symbol. */
14584
14585struct bfd_link_hash_entry *
14586bfd_elf_define_start_stop (struct bfd_link_info *info,
14587 const char *symbol, asection *sec)
14588{
487b6440 14589 struct elf_link_hash_entry *h;
7dba9362 14590
487b6440
AM
14591 h = elf_link_hash_lookup (elf_hash_table (info), symbol,
14592 FALSE, FALSE, TRUE);
14593 if (h != NULL
14594 && (h->root.type == bfd_link_hash_undefined
14595 || h->root.type == bfd_link_hash_undefweak
bf3077a6 14596 || ((h->ref_regular || h->def_dynamic) && !h->def_regular)))
7dba9362 14597 {
bf3077a6 14598 bfd_boolean was_dynamic = h->ref_dynamic || h->def_dynamic;
487b6440
AM
14599 h->root.type = bfd_link_hash_defined;
14600 h->root.u.def.section = sec;
14601 h->root.u.def.value = 0;
14602 h->def_regular = 1;
14603 h->def_dynamic = 0;
14604 h->start_stop = 1;
14605 h->u2.start_stop_section = sec;
14606 if (symbol[0] == '.')
14607 {
14608 /* .startof. and .sizeof. symbols are local. */
559192d8
AM
14609 const struct elf_backend_data *bed;
14610 bed = get_elf_backend_data (info->output_bfd);
14611 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
487b6440 14612 }
36b8fda5
AM
14613 else
14614 {
14615 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
14616 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_PROTECTED;
bf3077a6 14617 if (was_dynamic)
36b8fda5
AM
14618 bfd_elf_link_record_dynamic_symbol (info, h);
14619 }
487b6440 14620 return &h->root;
7dba9362 14621 }
487b6440 14622 return NULL;
7dba9362 14623}
This page took 2.520301 seconds and 4 git commands to generate.