S390: Fix gdbserver support for TDB
[deliverable/binutils-gdb.git] / bfd / elflink.c
CommitLineData
252b5132 1/* ELF linking support for BFD.
4b95cf5c 2 Copyright (C) 1995-2014 Free Software Foundation, Inc.
252b5132 3
8fdd7217 4 This file is part of BFD, the Binary File Descriptor library.
252b5132 5
8fdd7217
NC
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
cd123cb7 8 the Free Software Foundation; either version 3 of the License, or
8fdd7217 9 (at your option) any later version.
252b5132 10
8fdd7217
NC
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
252b5132 15
8fdd7217
NC
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
cd123cb7
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
252b5132 20
252b5132 21#include "sysdep.h"
3db64b00 22#include "bfd.h"
53df40a4 23#include "bfd_stdint.h"
252b5132
RH
24#include "bfdlink.h"
25#include "libbfd.h"
26#define ARCH_SIZE 0
27#include "elf-bfd.h"
4ad4eba5 28#include "safe-ctype.h"
ccf2f652 29#include "libiberty.h"
66eb6687 30#include "objalloc.h"
252b5132 31
28caa186
AM
32/* This struct is used to pass information to routines called via
33 elf_link_hash_traverse which must return failure. */
34
35struct elf_info_failed
36{
37 struct bfd_link_info *info;
28caa186
AM
38 bfd_boolean failed;
39};
40
41/* This structure is used to pass information to
42 _bfd_elf_link_find_version_dependencies. */
43
44struct elf_find_verdep_info
45{
46 /* General link information. */
47 struct bfd_link_info *info;
48 /* The number of dependencies. */
49 unsigned int vers;
50 /* Whether we had a failure. */
51 bfd_boolean failed;
52};
53
54static bfd_boolean _bfd_elf_fix_symbol_flags
55 (struct elf_link_hash_entry *, struct elf_info_failed *);
56
d98685ac
AM
57/* Define a symbol in a dynamic linkage section. */
58
59struct elf_link_hash_entry *
60_bfd_elf_define_linkage_sym (bfd *abfd,
61 struct bfd_link_info *info,
62 asection *sec,
63 const char *name)
64{
65 struct elf_link_hash_entry *h;
66 struct bfd_link_hash_entry *bh;
ccabcbe5 67 const struct elf_backend_data *bed;
d98685ac
AM
68
69 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
70 if (h != NULL)
71 {
72 /* Zap symbol defined in an as-needed lib that wasn't linked.
73 This is a symptom of a larger problem: Absolute symbols
74 defined in shared libraries can't be overridden, because we
75 lose the link to the bfd which is via the symbol section. */
76 h->root.type = bfd_link_hash_new;
77 }
78
79 bh = &h->root;
80 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
81 sec, 0, NULL, FALSE,
82 get_elf_backend_data (abfd)->collect,
83 &bh))
84 return NULL;
85 h = (struct elf_link_hash_entry *) bh;
86 h->def_regular = 1;
e28df02b 87 h->non_elf = 0;
d98685ac 88 h->type = STT_OBJECT;
00b7642b
AM
89 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
90 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
d98685ac 91
ccabcbe5
AM
92 bed = get_elf_backend_data (abfd);
93 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
d98685ac
AM
94 return h;
95}
96
b34976b6 97bfd_boolean
268b6b39 98_bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
252b5132
RH
99{
100 flagword flags;
aad5d350 101 asection *s;
252b5132 102 struct elf_link_hash_entry *h;
9c5bfbb7 103 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6de2ae4a 104 struct elf_link_hash_table *htab = elf_hash_table (info);
252b5132
RH
105
106 /* This function may be called more than once. */
3d4d4302
AM
107 s = bfd_get_linker_section (abfd, ".got");
108 if (s != NULL)
b34976b6 109 return TRUE;
252b5132 110
e5a52504 111 flags = bed->dynamic_sec_flags;
252b5132 112
14b2f831
AM
113 s = bfd_make_section_anyway_with_flags (abfd,
114 (bed->rela_plts_and_copies_p
115 ? ".rela.got" : ".rel.got"),
116 (bed->dynamic_sec_flags
117 | SEC_READONLY));
6de2ae4a
L
118 if (s == NULL
119 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
120 return FALSE;
121 htab->srelgot = s;
252b5132 122
14b2f831 123 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
64e77c6d
L
124 if (s == NULL
125 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
126 return FALSE;
127 htab->sgot = s;
128
252b5132
RH
129 if (bed->want_got_plt)
130 {
14b2f831 131 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
252b5132 132 if (s == NULL
6de2ae4a
L
133 || !bfd_set_section_alignment (abfd, s,
134 bed->s->log_file_align))
b34976b6 135 return FALSE;
6de2ae4a 136 htab->sgotplt = s;
252b5132
RH
137 }
138
64e77c6d
L
139 /* The first bit of the global offset table is the header. */
140 s->size += bed->got_header_size;
141
2517a57f
AM
142 if (bed->want_got_sym)
143 {
144 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
145 (or .got.plt) section. We don't do this in the linker script
146 because we don't want to define the symbol if we are not creating
147 a global offset table. */
6de2ae4a
L
148 h = _bfd_elf_define_linkage_sym (abfd, info, s,
149 "_GLOBAL_OFFSET_TABLE_");
2517a57f 150 elf_hash_table (info)->hgot = h;
d98685ac
AM
151 if (h == NULL)
152 return FALSE;
2517a57f 153 }
252b5132 154
b34976b6 155 return TRUE;
252b5132
RH
156}
157\f
7e9f0867
AM
158/* Create a strtab to hold the dynamic symbol names. */
159static bfd_boolean
160_bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
161{
162 struct elf_link_hash_table *hash_table;
163
164 hash_table = elf_hash_table (info);
165 if (hash_table->dynobj == NULL)
166 hash_table->dynobj = abfd;
167
168 if (hash_table->dynstr == NULL)
169 {
170 hash_table->dynstr = _bfd_elf_strtab_init ();
171 if (hash_table->dynstr == NULL)
172 return FALSE;
173 }
174 return TRUE;
175}
176
45d6a902
AM
177/* Create some sections which will be filled in with dynamic linking
178 information. ABFD is an input file which requires dynamic sections
179 to be created. The dynamic sections take up virtual memory space
180 when the final executable is run, so we need to create them before
181 addresses are assigned to the output sections. We work out the
182 actual contents and size of these sections later. */
252b5132 183
b34976b6 184bfd_boolean
268b6b39 185_bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
252b5132 186{
45d6a902 187 flagword flags;
91d6fa6a 188 asection *s;
9c5bfbb7 189 const struct elf_backend_data *bed;
9637f6ef 190 struct elf_link_hash_entry *h;
252b5132 191
0eddce27 192 if (! is_elf_hash_table (info->hash))
45d6a902
AM
193 return FALSE;
194
195 if (elf_hash_table (info)->dynamic_sections_created)
196 return TRUE;
197
7e9f0867
AM
198 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
199 return FALSE;
45d6a902 200
7e9f0867 201 abfd = elf_hash_table (info)->dynobj;
e5a52504
MM
202 bed = get_elf_backend_data (abfd);
203
204 flags = bed->dynamic_sec_flags;
45d6a902
AM
205
206 /* A dynamically linked executable has a .interp section, but a
207 shared library does not. */
36af4a4e 208 if (info->executable)
252b5132 209 {
14b2f831
AM
210 s = bfd_make_section_anyway_with_flags (abfd, ".interp",
211 flags | SEC_READONLY);
3496cb2a 212 if (s == NULL)
45d6a902
AM
213 return FALSE;
214 }
bb0deeff 215
45d6a902
AM
216 /* Create sections to hold version informations. These are removed
217 if they are not needed. */
14b2f831
AM
218 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
219 flags | SEC_READONLY);
45d6a902 220 if (s == NULL
45d6a902
AM
221 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
222 return FALSE;
223
14b2f831
AM
224 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
225 flags | SEC_READONLY);
45d6a902 226 if (s == NULL
45d6a902
AM
227 || ! bfd_set_section_alignment (abfd, s, 1))
228 return FALSE;
229
14b2f831
AM
230 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
231 flags | SEC_READONLY);
45d6a902 232 if (s == NULL
45d6a902
AM
233 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
234 return FALSE;
235
14b2f831
AM
236 s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
237 flags | SEC_READONLY);
45d6a902 238 if (s == NULL
45d6a902
AM
239 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
240 return FALSE;
241
14b2f831
AM
242 s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
243 flags | SEC_READONLY);
3496cb2a 244 if (s == NULL)
45d6a902
AM
245 return FALSE;
246
14b2f831 247 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
45d6a902 248 if (s == NULL
45d6a902
AM
249 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
250 return FALSE;
251
252 /* The special symbol _DYNAMIC is always set to the start of the
77cfaee6
AM
253 .dynamic section. We could set _DYNAMIC in a linker script, but we
254 only want to define it if we are, in fact, creating a .dynamic
255 section. We don't want to define it if there is no .dynamic
256 section, since on some ELF platforms the start up code examines it
257 to decide how to initialize the process. */
9637f6ef
L
258 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
259 elf_hash_table (info)->hdynamic = h;
260 if (h == NULL)
45d6a902
AM
261 return FALSE;
262
fdc90cb4
JJ
263 if (info->emit_hash)
264 {
14b2f831
AM
265 s = bfd_make_section_anyway_with_flags (abfd, ".hash",
266 flags | SEC_READONLY);
fdc90cb4
JJ
267 if (s == NULL
268 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
269 return FALSE;
270 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
271 }
272
273 if (info->emit_gnu_hash)
274 {
14b2f831
AM
275 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
276 flags | SEC_READONLY);
fdc90cb4
JJ
277 if (s == NULL
278 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
279 return FALSE;
280 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
281 4 32-bit words followed by variable count of 64-bit words, then
282 variable count of 32-bit words. */
283 if (bed->s->arch_size == 64)
284 elf_section_data (s)->this_hdr.sh_entsize = 0;
285 else
286 elf_section_data (s)->this_hdr.sh_entsize = 4;
287 }
45d6a902
AM
288
289 /* Let the backend create the rest of the sections. This lets the
290 backend set the right flags. The backend will normally create
291 the .got and .plt sections. */
894891db
NC
292 if (bed->elf_backend_create_dynamic_sections == NULL
293 || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
45d6a902
AM
294 return FALSE;
295
296 elf_hash_table (info)->dynamic_sections_created = TRUE;
297
298 return TRUE;
299}
300
301/* Create dynamic sections when linking against a dynamic object. */
302
303bfd_boolean
268b6b39 304_bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
45d6a902
AM
305{
306 flagword flags, pltflags;
7325306f 307 struct elf_link_hash_entry *h;
45d6a902 308 asection *s;
9c5bfbb7 309 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6de2ae4a 310 struct elf_link_hash_table *htab = elf_hash_table (info);
45d6a902 311
252b5132
RH
312 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
313 .rel[a].bss sections. */
e5a52504 314 flags = bed->dynamic_sec_flags;
252b5132
RH
315
316 pltflags = flags;
252b5132 317 if (bed->plt_not_loaded)
6df4d94c
MM
318 /* We do not clear SEC_ALLOC here because we still want the OS to
319 allocate space for the section; it's just that there's nothing
320 to read in from the object file. */
5d1634d7 321 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
6df4d94c
MM
322 else
323 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
252b5132
RH
324 if (bed->plt_readonly)
325 pltflags |= SEC_READONLY;
326
14b2f831 327 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
252b5132 328 if (s == NULL
252b5132 329 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
b34976b6 330 return FALSE;
6de2ae4a 331 htab->splt = s;
252b5132 332
d98685ac
AM
333 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
334 .plt section. */
7325306f
RS
335 if (bed->want_plt_sym)
336 {
337 h = _bfd_elf_define_linkage_sym (abfd, info, s,
338 "_PROCEDURE_LINKAGE_TABLE_");
339 elf_hash_table (info)->hplt = h;
340 if (h == NULL)
341 return FALSE;
342 }
252b5132 343
14b2f831
AM
344 s = bfd_make_section_anyway_with_flags (abfd,
345 (bed->rela_plts_and_copies_p
346 ? ".rela.plt" : ".rel.plt"),
347 flags | SEC_READONLY);
252b5132 348 if (s == NULL
45d6a902 349 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
b34976b6 350 return FALSE;
6de2ae4a 351 htab->srelplt = s;
252b5132
RH
352
353 if (! _bfd_elf_create_got_section (abfd, info))
b34976b6 354 return FALSE;
252b5132 355
3018b441
RH
356 if (bed->want_dynbss)
357 {
358 /* The .dynbss section is a place to put symbols which are defined
359 by dynamic objects, are referenced by regular objects, and are
360 not functions. We must allocate space for them in the process
361 image and use a R_*_COPY reloc to tell the dynamic linker to
362 initialize them at run time. The linker script puts the .dynbss
363 section into the .bss section of the final image. */
14b2f831
AM
364 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
365 (SEC_ALLOC | SEC_LINKER_CREATED));
3496cb2a 366 if (s == NULL)
b34976b6 367 return FALSE;
252b5132 368
3018b441 369 /* The .rel[a].bss section holds copy relocs. This section is not
77cfaee6
AM
370 normally needed. We need to create it here, though, so that the
371 linker will map it to an output section. We can't just create it
372 only if we need it, because we will not know whether we need it
373 until we have seen all the input files, and the first time the
374 main linker code calls BFD after examining all the input files
375 (size_dynamic_sections) the input sections have already been
376 mapped to the output sections. If the section turns out not to
377 be needed, we can discard it later. We will never need this
378 section when generating a shared object, since they do not use
379 copy relocs. */
3018b441
RH
380 if (! info->shared)
381 {
14b2f831
AM
382 s = bfd_make_section_anyway_with_flags (abfd,
383 (bed->rela_plts_and_copies_p
384 ? ".rela.bss" : ".rel.bss"),
385 flags | SEC_READONLY);
3018b441 386 if (s == NULL
45d6a902 387 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
b34976b6 388 return FALSE;
3018b441 389 }
252b5132
RH
390 }
391
b34976b6 392 return TRUE;
252b5132
RH
393}
394\f
252b5132
RH
395/* Record a new dynamic symbol. We record the dynamic symbols as we
396 read the input files, since we need to have a list of all of them
397 before we can determine the final sizes of the output sections.
398 Note that we may actually call this function even though we are not
399 going to output any dynamic symbols; in some cases we know that a
400 symbol should be in the dynamic symbol table, but only if there is
401 one. */
402
b34976b6 403bfd_boolean
c152c796
AM
404bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
405 struct elf_link_hash_entry *h)
252b5132
RH
406{
407 if (h->dynindx == -1)
408 {
2b0f7ef9 409 struct elf_strtab_hash *dynstr;
68b6ddd0 410 char *p;
252b5132 411 const char *name;
252b5132
RH
412 bfd_size_type indx;
413
7a13edea
NC
414 /* XXX: The ABI draft says the linker must turn hidden and
415 internal symbols into STB_LOCAL symbols when producing the
416 DSO. However, if ld.so honors st_other in the dynamic table,
417 this would not be necessary. */
418 switch (ELF_ST_VISIBILITY (h->other))
419 {
420 case STV_INTERNAL:
421 case STV_HIDDEN:
9d6eee78
L
422 if (h->root.type != bfd_link_hash_undefined
423 && h->root.type != bfd_link_hash_undefweak)
38048eb9 424 {
f5385ebf 425 h->forced_local = 1;
67687978
PB
426 if (!elf_hash_table (info)->is_relocatable_executable)
427 return TRUE;
7a13edea 428 }
0444bdd4 429
7a13edea
NC
430 default:
431 break;
432 }
433
252b5132
RH
434 h->dynindx = elf_hash_table (info)->dynsymcount;
435 ++elf_hash_table (info)->dynsymcount;
436
437 dynstr = elf_hash_table (info)->dynstr;
438 if (dynstr == NULL)
439 {
440 /* Create a strtab to hold the dynamic symbol names. */
2b0f7ef9 441 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
252b5132 442 if (dynstr == NULL)
b34976b6 443 return FALSE;
252b5132
RH
444 }
445
446 /* We don't put any version information in the dynamic string
aad5d350 447 table. */
252b5132
RH
448 name = h->root.root.string;
449 p = strchr (name, ELF_VER_CHR);
68b6ddd0
AM
450 if (p != NULL)
451 /* We know that the p points into writable memory. In fact,
452 there are only a few symbols that have read-only names, being
453 those like _GLOBAL_OFFSET_TABLE_ that are created specially
454 by the backends. Most symbols will have names pointing into
455 an ELF string table read from a file, or to objalloc memory. */
456 *p = 0;
457
458 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
459
460 if (p != NULL)
461 *p = ELF_VER_CHR;
252b5132
RH
462
463 if (indx == (bfd_size_type) -1)
b34976b6 464 return FALSE;
252b5132
RH
465 h->dynstr_index = indx;
466 }
467
b34976b6 468 return TRUE;
252b5132 469}
45d6a902 470\f
55255dae
L
471/* Mark a symbol dynamic. */
472
28caa186 473static void
55255dae 474bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
40b36307
L
475 struct elf_link_hash_entry *h,
476 Elf_Internal_Sym *sym)
55255dae 477{
40b36307 478 struct bfd_elf_dynamic_list *d = info->dynamic_list;
55255dae 479
40b36307
L
480 /* It may be called more than once on the same H. */
481 if(h->dynamic || info->relocatable)
55255dae
L
482 return;
483
40b36307
L
484 if ((info->dynamic_data
485 && (h->type == STT_OBJECT
486 || (sym != NULL
487 && ELF_ST_TYPE (sym->st_info) == STT_OBJECT)))
a0c8462f 488 || (d != NULL
40b36307
L
489 && h->root.type == bfd_link_hash_new
490 && (*d->match) (&d->head, NULL, h->root.root.string)))
55255dae
L
491 h->dynamic = 1;
492}
493
45d6a902
AM
494/* Record an assignment to a symbol made by a linker script. We need
495 this in case some dynamic object refers to this symbol. */
496
497bfd_boolean
fe21a8fc
L
498bfd_elf_record_link_assignment (bfd *output_bfd,
499 struct bfd_link_info *info,
268b6b39 500 const char *name,
fe21a8fc
L
501 bfd_boolean provide,
502 bfd_boolean hidden)
45d6a902 503{
00cbee0a 504 struct elf_link_hash_entry *h, *hv;
4ea42fb7 505 struct elf_link_hash_table *htab;
00cbee0a 506 const struct elf_backend_data *bed;
45d6a902 507
0eddce27 508 if (!is_elf_hash_table (info->hash))
45d6a902
AM
509 return TRUE;
510
4ea42fb7
AM
511 htab = elf_hash_table (info);
512 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
45d6a902 513 if (h == NULL)
4ea42fb7 514 return provide;
45d6a902 515
00cbee0a 516 switch (h->root.type)
77cfaee6 517 {
00cbee0a
L
518 case bfd_link_hash_defined:
519 case bfd_link_hash_defweak:
520 case bfd_link_hash_common:
521 break;
522 case bfd_link_hash_undefweak:
523 case bfd_link_hash_undefined:
524 /* Since we're defining the symbol, don't let it seem to have not
525 been defined. record_dynamic_symbol and size_dynamic_sections
526 may depend on this. */
4ea42fb7 527 h->root.type = bfd_link_hash_new;
77cfaee6
AM
528 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
529 bfd_link_repair_undef_list (&htab->root);
00cbee0a
L
530 break;
531 case bfd_link_hash_new:
40b36307 532 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
55255dae 533 h->non_elf = 0;
00cbee0a
L
534 break;
535 case bfd_link_hash_indirect:
536 /* We had a versioned symbol in a dynamic library. We make the
a0c8462f 537 the versioned symbol point to this one. */
00cbee0a
L
538 bed = get_elf_backend_data (output_bfd);
539 hv = h;
540 while (hv->root.type == bfd_link_hash_indirect
541 || hv->root.type == bfd_link_hash_warning)
542 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
543 /* We don't need to update h->root.u since linker will set them
544 later. */
545 h->root.type = bfd_link_hash_undefined;
546 hv->root.type = bfd_link_hash_indirect;
547 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
548 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
549 break;
550 case bfd_link_hash_warning:
551 abort ();
552 break;
55255dae 553 }
45d6a902
AM
554
555 /* If this symbol is being provided by the linker script, and it is
556 currently defined by a dynamic object, but not by a regular
557 object, then mark it as undefined so that the generic linker will
558 force the correct value. */
559 if (provide
f5385ebf
AM
560 && h->def_dynamic
561 && !h->def_regular)
45d6a902
AM
562 h->root.type = bfd_link_hash_undefined;
563
564 /* If this symbol is not being provided by the linker script, and it is
565 currently defined by a dynamic object, but not by a regular object,
566 then clear out any version information because the symbol will not be
567 associated with the dynamic object any more. */
568 if (!provide
f5385ebf
AM
569 && h->def_dynamic
570 && !h->def_regular)
45d6a902
AM
571 h->verinfo.verdef = NULL;
572
f5385ebf 573 h->def_regular = 1;
45d6a902 574
eb8476a6 575 if (hidden)
fe21a8fc 576 {
91d6fa6a 577 bed = get_elf_backend_data (output_bfd);
b8297068
AM
578 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
579 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
fe21a8fc
L
580 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
581 }
582
6fa3860b
PB
583 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
584 and executables. */
585 if (!info->relocatable
586 && h->dynindx != -1
587 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
588 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
589 h->forced_local = 1;
590
f5385ebf
AM
591 if ((h->def_dynamic
592 || h->ref_dynamic
67687978
PB
593 || info->shared
594 || (info->executable && elf_hash_table (info)->is_relocatable_executable))
45d6a902
AM
595 && h->dynindx == -1)
596 {
c152c796 597 if (! bfd_elf_link_record_dynamic_symbol (info, h))
45d6a902
AM
598 return FALSE;
599
600 /* If this is a weak defined symbol, and we know a corresponding
601 real symbol from the same dynamic object, make sure the real
602 symbol is also made into a dynamic symbol. */
f6e332e6
AM
603 if (h->u.weakdef != NULL
604 && h->u.weakdef->dynindx == -1)
45d6a902 605 {
f6e332e6 606 if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
45d6a902
AM
607 return FALSE;
608 }
609 }
610
611 return TRUE;
612}
42751cf3 613
8c58d23b
AM
614/* Record a new local dynamic symbol. Returns 0 on failure, 1 on
615 success, and 2 on a failure caused by attempting to record a symbol
616 in a discarded section, eg. a discarded link-once section symbol. */
617
618int
c152c796
AM
619bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
620 bfd *input_bfd,
621 long input_indx)
8c58d23b
AM
622{
623 bfd_size_type amt;
624 struct elf_link_local_dynamic_entry *entry;
625 struct elf_link_hash_table *eht;
626 struct elf_strtab_hash *dynstr;
627 unsigned long dynstr_index;
628 char *name;
629 Elf_External_Sym_Shndx eshndx;
630 char esym[sizeof (Elf64_External_Sym)];
631
0eddce27 632 if (! is_elf_hash_table (info->hash))
8c58d23b
AM
633 return 0;
634
635 /* See if the entry exists already. */
636 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
637 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
638 return 1;
639
640 amt = sizeof (*entry);
a50b1753 641 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
8c58d23b
AM
642 if (entry == NULL)
643 return 0;
644
645 /* Go find the symbol, so that we can find it's name. */
646 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
268b6b39 647 1, input_indx, &entry->isym, esym, &eshndx))
8c58d23b
AM
648 {
649 bfd_release (input_bfd, entry);
650 return 0;
651 }
652
653 if (entry->isym.st_shndx != SHN_UNDEF
4fbb74a6 654 && entry->isym.st_shndx < SHN_LORESERVE)
8c58d23b
AM
655 {
656 asection *s;
657
658 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
659 if (s == NULL || bfd_is_abs_section (s->output_section))
660 {
661 /* We can still bfd_release here as nothing has done another
662 bfd_alloc. We can't do this later in this function. */
663 bfd_release (input_bfd, entry);
664 return 2;
665 }
666 }
667
668 name = (bfd_elf_string_from_elf_section
669 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
670 entry->isym.st_name));
671
672 dynstr = elf_hash_table (info)->dynstr;
673 if (dynstr == NULL)
674 {
675 /* Create a strtab to hold the dynamic symbol names. */
676 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
677 if (dynstr == NULL)
678 return 0;
679 }
680
b34976b6 681 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
8c58d23b
AM
682 if (dynstr_index == (unsigned long) -1)
683 return 0;
684 entry->isym.st_name = dynstr_index;
685
686 eht = elf_hash_table (info);
687
688 entry->next = eht->dynlocal;
689 eht->dynlocal = entry;
690 entry->input_bfd = input_bfd;
691 entry->input_indx = input_indx;
692 eht->dynsymcount++;
693
694 /* Whatever binding the symbol had before, it's now local. */
695 entry->isym.st_info
696 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
697
698 /* The dynindx will be set at the end of size_dynamic_sections. */
699
700 return 1;
701}
702
30b30c21 703/* Return the dynindex of a local dynamic symbol. */
42751cf3 704
30b30c21 705long
268b6b39
AM
706_bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
707 bfd *input_bfd,
708 long input_indx)
30b30c21
RH
709{
710 struct elf_link_local_dynamic_entry *e;
711
712 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
713 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
714 return e->dynindx;
715 return -1;
716}
717
718/* This function is used to renumber the dynamic symbols, if some of
719 them are removed because they are marked as local. This is called
720 via elf_link_hash_traverse. */
721
b34976b6 722static bfd_boolean
268b6b39
AM
723elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
724 void *data)
42751cf3 725{
a50b1753 726 size_t *count = (size_t *) data;
30b30c21 727
6fa3860b
PB
728 if (h->forced_local)
729 return TRUE;
730
731 if (h->dynindx != -1)
732 h->dynindx = ++(*count);
733
734 return TRUE;
735}
736
737
738/* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
739 STB_LOCAL binding. */
740
741static bfd_boolean
742elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
743 void *data)
744{
a50b1753 745 size_t *count = (size_t *) data;
6fa3860b 746
6fa3860b
PB
747 if (!h->forced_local)
748 return TRUE;
749
42751cf3 750 if (h->dynindx != -1)
30b30c21
RH
751 h->dynindx = ++(*count);
752
b34976b6 753 return TRUE;
42751cf3 754}
30b30c21 755
aee6f5b4
AO
756/* Return true if the dynamic symbol for a given section should be
757 omitted when creating a shared library. */
758bfd_boolean
759_bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
760 struct bfd_link_info *info,
761 asection *p)
762{
74541ad4
AM
763 struct elf_link_hash_table *htab;
764
aee6f5b4
AO
765 switch (elf_section_data (p)->this_hdr.sh_type)
766 {
767 case SHT_PROGBITS:
768 case SHT_NOBITS:
769 /* If sh_type is yet undecided, assume it could be
770 SHT_PROGBITS/SHT_NOBITS. */
771 case SHT_NULL:
74541ad4
AM
772 htab = elf_hash_table (info);
773 if (p == htab->tls_sec)
774 return FALSE;
775
776 if (htab->text_index_section != NULL)
777 return p != htab->text_index_section && p != htab->data_index_section;
778
aee6f5b4
AO
779 if (strcmp (p->name, ".got") == 0
780 || strcmp (p->name, ".got.plt") == 0
781 || strcmp (p->name, ".plt") == 0)
782 {
783 asection *ip;
aee6f5b4 784
74541ad4 785 if (htab->dynobj != NULL
3d4d4302 786 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
aee6f5b4
AO
787 && ip->output_section == p)
788 return TRUE;
789 }
790 return FALSE;
791
792 /* There shouldn't be section relative relocations
793 against any other section. */
794 default:
795 return TRUE;
796 }
797}
798
062e2358 799/* Assign dynsym indices. In a shared library we generate a section
6fa3860b
PB
800 symbol for each output section, which come first. Next come symbols
801 which have been forced to local binding. Then all of the back-end
802 allocated local dynamic syms, followed by the rest of the global
803 symbols. */
30b30c21 804
554220db
AM
805static unsigned long
806_bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
807 struct bfd_link_info *info,
808 unsigned long *section_sym_count)
30b30c21
RH
809{
810 unsigned long dynsymcount = 0;
811
67687978 812 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
30b30c21 813 {
aee6f5b4 814 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
30b30c21
RH
815 asection *p;
816 for (p = output_bfd->sections; p ; p = p->next)
8c37241b 817 if ((p->flags & SEC_EXCLUDE) == 0
aee6f5b4
AO
818 && (p->flags & SEC_ALLOC) != 0
819 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
820 elf_section_data (p)->dynindx = ++dynsymcount;
74541ad4
AM
821 else
822 elf_section_data (p)->dynindx = 0;
30b30c21 823 }
554220db 824 *section_sym_count = dynsymcount;
30b30c21 825
6fa3860b
PB
826 elf_link_hash_traverse (elf_hash_table (info),
827 elf_link_renumber_local_hash_table_dynsyms,
828 &dynsymcount);
829
30b30c21
RH
830 if (elf_hash_table (info)->dynlocal)
831 {
832 struct elf_link_local_dynamic_entry *p;
833 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
834 p->dynindx = ++dynsymcount;
835 }
836
837 elf_link_hash_traverse (elf_hash_table (info),
838 elf_link_renumber_hash_table_dynsyms,
839 &dynsymcount);
840
841 /* There is an unused NULL entry at the head of the table which
842 we must account for in our count. Unless there weren't any
843 symbols, which means we'll have no table at all. */
844 if (dynsymcount != 0)
845 ++dynsymcount;
846
ccabcbe5
AM
847 elf_hash_table (info)->dynsymcount = dynsymcount;
848 return dynsymcount;
30b30c21 849}
252b5132 850
54ac0771
L
851/* Merge st_other field. */
852
853static void
854elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
cd3416da
AM
855 const Elf_Internal_Sym *isym,
856 bfd_boolean definition, bfd_boolean dynamic)
54ac0771
L
857{
858 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
859
860 /* If st_other has a processor-specific meaning, specific
cd3416da 861 code might be needed here. */
54ac0771
L
862 if (bed->elf_backend_merge_symbol_attribute)
863 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
864 dynamic);
865
cd3416da 866 if (!dynamic)
54ac0771 867 {
cd3416da
AM
868 unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
869 unsigned hvis = ELF_ST_VISIBILITY (h->other);
54ac0771 870
cd3416da
AM
871 /* Keep the most constraining visibility. Leave the remainder
872 of the st_other field to elf_backend_merge_symbol_attribute. */
873 if (symvis - 1 < hvis - 1)
874 h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
54ac0771 875 }
6cabe1ea
AM
876 else if (definition && ELF_ST_VISIBILITY (isym->st_other) != STV_DEFAULT)
877 h->protected_def = 1;
54ac0771
L
878}
879
4f3fedcf
AM
880/* This function is called when we want to merge a new symbol with an
881 existing symbol. It handles the various cases which arise when we
882 find a definition in a dynamic object, or when there is already a
883 definition in a dynamic object. The new symbol is described by
884 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
885 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
886 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
887 of an old common symbol. We set OVERRIDE if the old symbol is
888 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
889 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
890 to change. By OK to change, we mean that we shouldn't warn if the
891 type or size does change. */
45d6a902 892
8a56bd02 893static bfd_boolean
268b6b39
AM
894_bfd_elf_merge_symbol (bfd *abfd,
895 struct bfd_link_info *info,
896 const char *name,
897 Elf_Internal_Sym *sym,
898 asection **psec,
899 bfd_vma *pvalue,
4f3fedcf
AM
900 struct elf_link_hash_entry **sym_hash,
901 bfd **poldbfd,
37a9e49a 902 bfd_boolean *pold_weak,
af44c138 903 unsigned int *pold_alignment,
268b6b39
AM
904 bfd_boolean *skip,
905 bfd_boolean *override,
906 bfd_boolean *type_change_ok,
0f8a2703 907 bfd_boolean *size_change_ok)
252b5132 908{
7479dfd4 909 asection *sec, *oldsec;
45d6a902 910 struct elf_link_hash_entry *h;
90c984fc 911 struct elf_link_hash_entry *hi;
45d6a902
AM
912 struct elf_link_hash_entry *flip;
913 int bind;
914 bfd *oldbfd;
915 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
0a36a439 916 bfd_boolean newweak, oldweak, newfunc, oldfunc;
a4d8e49b 917 const struct elf_backend_data *bed;
45d6a902
AM
918
919 *skip = FALSE;
920 *override = FALSE;
921
922 sec = *psec;
923 bind = ELF_ST_BIND (sym->st_info);
924
925 if (! bfd_is_und_section (sec))
926 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
927 else
928 h = ((struct elf_link_hash_entry *)
929 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
930 if (h == NULL)
931 return FALSE;
932 *sym_hash = h;
252b5132 933
88ba32a0
L
934 bed = get_elf_backend_data (abfd);
935
90c984fc
L
936 /* For merging, we only care about real symbols. But we need to make
937 sure that indirect symbol dynamic flags are updated. */
938 hi = h;
45d6a902
AM
939 while (h->root.type == bfd_link_hash_indirect
940 || h->root.type == bfd_link_hash_warning)
941 h = (struct elf_link_hash_entry *) h->root.u.i.link;
942
934bce08
AM
943 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
944 existing symbol. */
945
946 oldbfd = NULL;
947 oldsec = NULL;
948 switch (h->root.type)
949 {
950 default:
951 break;
952
953 case bfd_link_hash_undefined:
954 case bfd_link_hash_undefweak:
955 oldbfd = h->root.u.undef.abfd;
956 break;
957
958 case bfd_link_hash_defined:
959 case bfd_link_hash_defweak:
960 oldbfd = h->root.u.def.section->owner;
961 oldsec = h->root.u.def.section;
962 break;
963
964 case bfd_link_hash_common:
965 oldbfd = h->root.u.c.p->section->owner;
966 oldsec = h->root.u.c.p->section;
967 if (pold_alignment)
968 *pold_alignment = h->root.u.c.p->alignment_power;
969 break;
970 }
971 if (poldbfd && *poldbfd == NULL)
972 *poldbfd = oldbfd;
973
974 /* Differentiate strong and weak symbols. */
975 newweak = bind == STB_WEAK;
976 oldweak = (h->root.type == bfd_link_hash_defweak
977 || h->root.type == bfd_link_hash_undefweak);
978 if (pold_weak)
979 *pold_weak = oldweak;
980
981 /* This code is for coping with dynamic objects, and is only useful
982 if we are doing an ELF link. */
983 if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
984 return TRUE;
985
40b36307 986 /* We have to check it for every instance since the first few may be
ee659f1f 987 references and not all compilers emit symbol type for undefined
40b36307
L
988 symbols. */
989 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
990
ee659f1f
AM
991 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
992 respectively, is from a dynamic object. */
993
994 newdyn = (abfd->flags & DYNAMIC) != 0;
995
996 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
997 syms and defined syms in dynamic libraries respectively.
998 ref_dynamic on the other hand can be set for a symbol defined in
999 a dynamic library, and def_dynamic may not be set; When the
1000 definition in a dynamic lib is overridden by a definition in the
1001 executable use of the symbol in the dynamic lib becomes a
1002 reference to the executable symbol. */
1003 if (newdyn)
1004 {
1005 if (bfd_is_und_section (sec))
1006 {
1007 if (bind != STB_WEAK)
1008 {
1009 h->ref_dynamic_nonweak = 1;
1010 hi->ref_dynamic_nonweak = 1;
1011 }
1012 }
1013 else
1014 {
1015 h->dynamic_def = 1;
1016 hi->dynamic_def = 1;
1017 }
1018 }
1019
45d6a902
AM
1020 /* If we just created the symbol, mark it as being an ELF symbol.
1021 Other than that, there is nothing to do--there is no merge issue
1022 with a newly defined symbol--so we just return. */
1023
1024 if (h->root.type == bfd_link_hash_new)
252b5132 1025 {
f5385ebf 1026 h->non_elf = 0;
45d6a902
AM
1027 return TRUE;
1028 }
252b5132 1029
45d6a902
AM
1030 /* In cases involving weak versioned symbols, we may wind up trying
1031 to merge a symbol with itself. Catch that here, to avoid the
1032 confusion that results if we try to override a symbol with
1033 itself. The additional tests catch cases like
1034 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1035 dynamic object, which we do want to handle here. */
1036 if (abfd == oldbfd
895fa45f 1037 && (newweak || oldweak)
45d6a902 1038 && ((abfd->flags & DYNAMIC) == 0
f5385ebf 1039 || !h->def_regular))
45d6a902
AM
1040 return TRUE;
1041
707bba77 1042 olddyn = FALSE;
45d6a902
AM
1043 if (oldbfd != NULL)
1044 olddyn = (oldbfd->flags & DYNAMIC) != 0;
707bba77 1045 else if (oldsec != NULL)
45d6a902 1046 {
707bba77 1047 /* This handles the special SHN_MIPS_{TEXT,DATA} section
45d6a902 1048 indices used by MIPS ELF. */
707bba77 1049 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
45d6a902 1050 }
252b5132 1051
45d6a902
AM
1052 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1053 respectively, appear to be a definition rather than reference. */
1054
707bba77 1055 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
45d6a902 1056
707bba77
AM
1057 olddef = (h->root.type != bfd_link_hash_undefined
1058 && h->root.type != bfd_link_hash_undefweak
1059 && h->root.type != bfd_link_hash_common);
45d6a902 1060
0a36a439
L
1061 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1062 respectively, appear to be a function. */
1063
1064 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1065 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1066
1067 oldfunc = (h->type != STT_NOTYPE
1068 && bed->is_function_type (h->type));
1069
580a2b6e
L
1070 /* When we try to create a default indirect symbol from the dynamic
1071 definition with the default version, we skip it if its type and
40101021 1072 the type of existing regular definition mismatch. */
580a2b6e 1073 if (pold_alignment == NULL
580a2b6e
L
1074 && newdyn
1075 && newdef
1076 && !olddyn
4584ec12
L
1077 && (((olddef || h->root.type == bfd_link_hash_common)
1078 && ELF_ST_TYPE (sym->st_info) != h->type
1079 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1080 && h->type != STT_NOTYPE
1081 && !(newfunc && oldfunc))
1082 || (olddef
1083 && ((h->type == STT_GNU_IFUNC)
1084 != (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)))))
580a2b6e
L
1085 {
1086 *skip = TRUE;
1087 return TRUE;
1088 }
1089
4c34aff8
AM
1090 /* Check TLS symbols. We don't check undefined symbols introduced
1091 by "ld -u" which have no type (and oldbfd NULL), and we don't
1092 check symbols from plugins because they also have no type. */
1093 if (oldbfd != NULL
1094 && (oldbfd->flags & BFD_PLUGIN) == 0
1095 && (abfd->flags & BFD_PLUGIN) == 0
1096 && ELF_ST_TYPE (sym->st_info) != h->type
1097 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
7479dfd4
L
1098 {
1099 bfd *ntbfd, *tbfd;
1100 bfd_boolean ntdef, tdef;
1101 asection *ntsec, *tsec;
1102
1103 if (h->type == STT_TLS)
1104 {
3b36f7e6 1105 ntbfd = abfd;
7479dfd4
L
1106 ntsec = sec;
1107 ntdef = newdef;
1108 tbfd = oldbfd;
1109 tsec = oldsec;
1110 tdef = olddef;
1111 }
1112 else
1113 {
1114 ntbfd = oldbfd;
1115 ntsec = oldsec;
1116 ntdef = olddef;
1117 tbfd = abfd;
1118 tsec = sec;
1119 tdef = newdef;
1120 }
1121
1122 if (tdef && ntdef)
1123 (*_bfd_error_handler)
191c0c42
AM
1124 (_("%s: TLS definition in %B section %A "
1125 "mismatches non-TLS definition in %B section %A"),
7479dfd4
L
1126 tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1127 else if (!tdef && !ntdef)
1128 (*_bfd_error_handler)
191c0c42
AM
1129 (_("%s: TLS reference in %B "
1130 "mismatches non-TLS reference in %B"),
7479dfd4
L
1131 tbfd, ntbfd, h->root.root.string);
1132 else if (tdef)
1133 (*_bfd_error_handler)
191c0c42
AM
1134 (_("%s: TLS definition in %B section %A "
1135 "mismatches non-TLS reference in %B"),
7479dfd4
L
1136 tbfd, tsec, ntbfd, h->root.root.string);
1137 else
1138 (*_bfd_error_handler)
191c0c42
AM
1139 (_("%s: TLS reference in %B "
1140 "mismatches non-TLS definition in %B section %A"),
7479dfd4
L
1141 tbfd, ntbfd, ntsec, h->root.root.string);
1142
1143 bfd_set_error (bfd_error_bad_value);
1144 return FALSE;
1145 }
1146
45d6a902
AM
1147 /* If the old symbol has non-default visibility, we ignore the new
1148 definition from a dynamic object. */
1149 if (newdyn
9c7a29a3 1150 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902
AM
1151 && !bfd_is_und_section (sec))
1152 {
1153 *skip = TRUE;
1154 /* Make sure this symbol is dynamic. */
f5385ebf 1155 h->ref_dynamic = 1;
90c984fc 1156 hi->ref_dynamic = 1;
45d6a902
AM
1157 /* A protected symbol has external availability. Make sure it is
1158 recorded as dynamic.
1159
1160 FIXME: Should we check type and size for protected symbol? */
1161 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
c152c796 1162 return bfd_elf_link_record_dynamic_symbol (info, h);
45d6a902
AM
1163 else
1164 return TRUE;
1165 }
1166 else if (!newdyn
9c7a29a3 1167 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
f5385ebf 1168 && h->def_dynamic)
45d6a902
AM
1169 {
1170 /* If the new symbol with non-default visibility comes from a
1171 relocatable file and the old definition comes from a dynamic
1172 object, we remove the old definition. */
6c9b78e6 1173 if (hi->root.type == bfd_link_hash_indirect)
d2dee3b2
L
1174 {
1175 /* Handle the case where the old dynamic definition is
1176 default versioned. We need to copy the symbol info from
1177 the symbol with default version to the normal one if it
1178 was referenced before. */
1179 if (h->ref_regular)
1180 {
6c9b78e6 1181 hi->root.type = h->root.type;
d2dee3b2 1182 h->root.type = bfd_link_hash_indirect;
6c9b78e6 1183 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
aed81c4e 1184
6c9b78e6 1185 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
aed81c4e 1186 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
d2dee3b2 1187 {
aed81c4e
MR
1188 /* If the new symbol is hidden or internal, completely undo
1189 any dynamic link state. */
1190 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1191 h->forced_local = 0;
1192 h->ref_dynamic = 0;
d2dee3b2
L
1193 }
1194 else
aed81c4e
MR
1195 h->ref_dynamic = 1;
1196
1197 h->def_dynamic = 0;
aed81c4e
MR
1198 /* FIXME: Should we check type and size for protected symbol? */
1199 h->size = 0;
1200 h->type = 0;
1201
6c9b78e6 1202 h = hi;
d2dee3b2
L
1203 }
1204 else
6c9b78e6 1205 h = hi;
d2dee3b2 1206 }
1de1a317 1207
f5eda473
AM
1208 /* If the old symbol was undefined before, then it will still be
1209 on the undefs list. If the new symbol is undefined or
1210 common, we can't make it bfd_link_hash_new here, because new
1211 undefined or common symbols will be added to the undefs list
1212 by _bfd_generic_link_add_one_symbol. Symbols may not be
1213 added twice to the undefs list. Also, if the new symbol is
1214 undefweak then we don't want to lose the strong undef. */
1215 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1de1a317 1216 {
1de1a317 1217 h->root.type = bfd_link_hash_undefined;
1de1a317
L
1218 h->root.u.undef.abfd = abfd;
1219 }
1220 else
1221 {
1222 h->root.type = bfd_link_hash_new;
1223 h->root.u.undef.abfd = NULL;
1224 }
1225
f5eda473 1226 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
252b5132 1227 {
f5eda473
AM
1228 /* If the new symbol is hidden or internal, completely undo
1229 any dynamic link state. */
1230 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1231 h->forced_local = 0;
1232 h->ref_dynamic = 0;
45d6a902 1233 }
f5eda473
AM
1234 else
1235 h->ref_dynamic = 1;
1236 h->def_dynamic = 0;
45d6a902
AM
1237 /* FIXME: Should we check type and size for protected symbol? */
1238 h->size = 0;
1239 h->type = 0;
1240 return TRUE;
1241 }
14a793b2 1242
15b43f48
AM
1243 /* If a new weak symbol definition comes from a regular file and the
1244 old symbol comes from a dynamic library, we treat the new one as
1245 strong. Similarly, an old weak symbol definition from a regular
1246 file is treated as strong when the new symbol comes from a dynamic
1247 library. Further, an old weak symbol from a dynamic library is
1248 treated as strong if the new symbol is from a dynamic library.
1249 This reflects the way glibc's ld.so works.
1250
1251 Do this before setting *type_change_ok or *size_change_ok so that
1252 we warn properly when dynamic library symbols are overridden. */
1253
1254 if (newdef && !newdyn && olddyn)
0f8a2703 1255 newweak = FALSE;
15b43f48 1256 if (olddef && newdyn)
0f8a2703
AM
1257 oldweak = FALSE;
1258
d334575b 1259 /* Allow changes between different types of function symbol. */
0a36a439 1260 if (newfunc && oldfunc)
fcb93ecf
PB
1261 *type_change_ok = TRUE;
1262
79349b09
AM
1263 /* It's OK to change the type if either the existing symbol or the
1264 new symbol is weak. A type change is also OK if the old symbol
1265 is undefined and the new symbol is defined. */
252b5132 1266
79349b09
AM
1267 if (oldweak
1268 || newweak
1269 || (newdef
1270 && h->root.type == bfd_link_hash_undefined))
1271 *type_change_ok = TRUE;
1272
1273 /* It's OK to change the size if either the existing symbol or the
1274 new symbol is weak, or if the old symbol is undefined. */
1275
1276 if (*type_change_ok
1277 || h->root.type == bfd_link_hash_undefined)
1278 *size_change_ok = TRUE;
45d6a902 1279
45d6a902
AM
1280 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1281 symbol, respectively, appears to be a common symbol in a dynamic
1282 object. If a symbol appears in an uninitialized section, and is
1283 not weak, and is not a function, then it may be a common symbol
1284 which was resolved when the dynamic object was created. We want
1285 to treat such symbols specially, because they raise special
1286 considerations when setting the symbol size: if the symbol
1287 appears as a common symbol in a regular object, and the size in
1288 the regular object is larger, we must make sure that we use the
1289 larger size. This problematic case can always be avoided in C,
1290 but it must be handled correctly when using Fortran shared
1291 libraries.
1292
1293 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1294 likewise for OLDDYNCOMMON and OLDDEF.
1295
1296 Note that this test is just a heuristic, and that it is quite
1297 possible to have an uninitialized symbol in a shared object which
1298 is really a definition, rather than a common symbol. This could
1299 lead to some minor confusion when the symbol really is a common
1300 symbol in some regular object. However, I think it will be
1301 harmless. */
1302
1303 if (newdyn
1304 && newdef
79349b09 1305 && !newweak
45d6a902
AM
1306 && (sec->flags & SEC_ALLOC) != 0
1307 && (sec->flags & SEC_LOAD) == 0
1308 && sym->st_size > 0
0a36a439 1309 && !newfunc)
45d6a902
AM
1310 newdyncommon = TRUE;
1311 else
1312 newdyncommon = FALSE;
1313
1314 if (olddyn
1315 && olddef
1316 && h->root.type == bfd_link_hash_defined
f5385ebf 1317 && h->def_dynamic
45d6a902
AM
1318 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1319 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1320 && h->size > 0
0a36a439 1321 && !oldfunc)
45d6a902
AM
1322 olddyncommon = TRUE;
1323 else
1324 olddyncommon = FALSE;
1325
a4d8e49b
L
1326 /* We now know everything about the old and new symbols. We ask the
1327 backend to check if we can merge them. */
5d13b3b3
AM
1328 if (bed->merge_symbol != NULL)
1329 {
1330 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1331 return FALSE;
1332 sec = *psec;
1333 }
a4d8e49b 1334
45d6a902
AM
1335 /* If both the old and the new symbols look like common symbols in a
1336 dynamic object, set the size of the symbol to the larger of the
1337 two. */
1338
1339 if (olddyncommon
1340 && newdyncommon
1341 && sym->st_size != h->size)
1342 {
1343 /* Since we think we have two common symbols, issue a multiple
1344 common warning if desired. Note that we only warn if the
1345 size is different. If the size is the same, we simply let
1346 the old symbol override the new one as normally happens with
1347 symbols defined in dynamic objects. */
1348
1349 if (! ((*info->callbacks->multiple_common)
24f58f47 1350 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
45d6a902 1351 return FALSE;
252b5132 1352
45d6a902
AM
1353 if (sym->st_size > h->size)
1354 h->size = sym->st_size;
252b5132 1355
45d6a902 1356 *size_change_ok = TRUE;
252b5132
RH
1357 }
1358
45d6a902
AM
1359 /* If we are looking at a dynamic object, and we have found a
1360 definition, we need to see if the symbol was already defined by
1361 some other object. If so, we want to use the existing
1362 definition, and we do not want to report a multiple symbol
1363 definition error; we do this by clobbering *PSEC to be
1364 bfd_und_section_ptr.
1365
1366 We treat a common symbol as a definition if the symbol in the
1367 shared library is a function, since common symbols always
1368 represent variables; this can cause confusion in principle, but
1369 any such confusion would seem to indicate an erroneous program or
1370 shared library. We also permit a common symbol in a regular
79349b09 1371 object to override a weak symbol in a shared object. */
45d6a902
AM
1372
1373 if (newdyn
1374 && newdef
77cfaee6 1375 && (olddef
45d6a902 1376 || (h->root.type == bfd_link_hash_common
0a36a439 1377 && (newweak || newfunc))))
45d6a902
AM
1378 {
1379 *override = TRUE;
1380 newdef = FALSE;
1381 newdyncommon = FALSE;
252b5132 1382
45d6a902
AM
1383 *psec = sec = bfd_und_section_ptr;
1384 *size_change_ok = TRUE;
252b5132 1385
45d6a902
AM
1386 /* If we get here when the old symbol is a common symbol, then
1387 we are explicitly letting it override a weak symbol or
1388 function in a dynamic object, and we don't want to warn about
1389 a type change. If the old symbol is a defined symbol, a type
1390 change warning may still be appropriate. */
252b5132 1391
45d6a902
AM
1392 if (h->root.type == bfd_link_hash_common)
1393 *type_change_ok = TRUE;
1394 }
1395
1396 /* Handle the special case of an old common symbol merging with a
1397 new symbol which looks like a common symbol in a shared object.
1398 We change *PSEC and *PVALUE to make the new symbol look like a
91134c82
L
1399 common symbol, and let _bfd_generic_link_add_one_symbol do the
1400 right thing. */
45d6a902
AM
1401
1402 if (newdyncommon
1403 && h->root.type == bfd_link_hash_common)
1404 {
1405 *override = TRUE;
1406 newdef = FALSE;
1407 newdyncommon = FALSE;
1408 *pvalue = sym->st_size;
a4d8e49b 1409 *psec = sec = bed->common_section (oldsec);
45d6a902
AM
1410 *size_change_ok = TRUE;
1411 }
1412
c5e2cead 1413 /* Skip weak definitions of symbols that are already defined. */
f41d945b 1414 if (newdef && olddef && newweak)
54ac0771 1415 {
35ed3f94 1416 /* Don't skip new non-IR weak syms. */
3a5dbfb2
AM
1417 if (!(oldbfd != NULL
1418 && (oldbfd->flags & BFD_PLUGIN) != 0
35ed3f94 1419 && (abfd->flags & BFD_PLUGIN) == 0))
57fa7b8c
AM
1420 {
1421 newdef = FALSE;
1422 *skip = TRUE;
1423 }
54ac0771
L
1424
1425 /* Merge st_other. If the symbol already has a dynamic index,
1426 but visibility says it should not be visible, turn it into a
1427 local symbol. */
1428 elf_merge_st_other (abfd, h, sym, newdef, newdyn);
1429 if (h->dynindx != -1)
1430 switch (ELF_ST_VISIBILITY (h->other))
1431 {
1432 case STV_INTERNAL:
1433 case STV_HIDDEN:
1434 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1435 break;
1436 }
1437 }
c5e2cead 1438
45d6a902
AM
1439 /* If the old symbol is from a dynamic object, and the new symbol is
1440 a definition which is not from a dynamic object, then the new
1441 symbol overrides the old symbol. Symbols from regular files
1442 always take precedence over symbols from dynamic objects, even if
1443 they are defined after the dynamic object in the link.
1444
1445 As above, we again permit a common symbol in a regular object to
1446 override a definition in a shared object if the shared object
0f8a2703 1447 symbol is a function or is weak. */
45d6a902
AM
1448
1449 flip = NULL;
77cfaee6 1450 if (!newdyn
45d6a902
AM
1451 && (newdef
1452 || (bfd_is_com_section (sec)
0a36a439 1453 && (oldweak || oldfunc)))
45d6a902
AM
1454 && olddyn
1455 && olddef
f5385ebf 1456 && h->def_dynamic)
45d6a902
AM
1457 {
1458 /* Change the hash table entry to undefined, and let
1459 _bfd_generic_link_add_one_symbol do the right thing with the
1460 new definition. */
1461
1462 h->root.type = bfd_link_hash_undefined;
1463 h->root.u.undef.abfd = h->root.u.def.section->owner;
1464 *size_change_ok = TRUE;
1465
1466 olddef = FALSE;
1467 olddyncommon = FALSE;
1468
1469 /* We again permit a type change when a common symbol may be
1470 overriding a function. */
1471
1472 if (bfd_is_com_section (sec))
0a36a439
L
1473 {
1474 if (oldfunc)
1475 {
1476 /* If a common symbol overrides a function, make sure
1477 that it isn't defined dynamically nor has type
1478 function. */
1479 h->def_dynamic = 0;
1480 h->type = STT_NOTYPE;
1481 }
1482 *type_change_ok = TRUE;
1483 }
45d6a902 1484
6c9b78e6
AM
1485 if (hi->root.type == bfd_link_hash_indirect)
1486 flip = hi;
45d6a902
AM
1487 else
1488 /* This union may have been set to be non-NULL when this symbol
1489 was seen in a dynamic object. We must force the union to be
1490 NULL, so that it is correct for a regular symbol. */
1491 h->verinfo.vertree = NULL;
1492 }
1493
1494 /* Handle the special case of a new common symbol merging with an
1495 old symbol that looks like it might be a common symbol defined in
1496 a shared object. Note that we have already handled the case in
1497 which a new common symbol should simply override the definition
1498 in the shared library. */
1499
1500 if (! newdyn
1501 && bfd_is_com_section (sec)
1502 && olddyncommon)
1503 {
1504 /* It would be best if we could set the hash table entry to a
1505 common symbol, but we don't know what to use for the section
1506 or the alignment. */
1507 if (! ((*info->callbacks->multiple_common)
24f58f47 1508 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
45d6a902
AM
1509 return FALSE;
1510
4cc11e76 1511 /* If the presumed common symbol in the dynamic object is
45d6a902
AM
1512 larger, pretend that the new symbol has its size. */
1513
1514 if (h->size > *pvalue)
1515 *pvalue = h->size;
1516
af44c138
L
1517 /* We need to remember the alignment required by the symbol
1518 in the dynamic object. */
1519 BFD_ASSERT (pold_alignment);
1520 *pold_alignment = h->root.u.def.section->alignment_power;
45d6a902
AM
1521
1522 olddef = FALSE;
1523 olddyncommon = FALSE;
1524
1525 h->root.type = bfd_link_hash_undefined;
1526 h->root.u.undef.abfd = h->root.u.def.section->owner;
1527
1528 *size_change_ok = TRUE;
1529 *type_change_ok = TRUE;
1530
6c9b78e6
AM
1531 if (hi->root.type == bfd_link_hash_indirect)
1532 flip = hi;
45d6a902
AM
1533 else
1534 h->verinfo.vertree = NULL;
1535 }
1536
1537 if (flip != NULL)
1538 {
1539 /* Handle the case where we had a versioned symbol in a dynamic
1540 library and now find a definition in a normal object. In this
1541 case, we make the versioned symbol point to the normal one. */
45d6a902 1542 flip->root.type = h->root.type;
00cbee0a 1543 flip->root.u.undef.abfd = h->root.u.undef.abfd;
45d6a902
AM
1544 h->root.type = bfd_link_hash_indirect;
1545 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
fcfa13d2 1546 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
f5385ebf 1547 if (h->def_dynamic)
45d6a902 1548 {
f5385ebf
AM
1549 h->def_dynamic = 0;
1550 flip->ref_dynamic = 1;
45d6a902
AM
1551 }
1552 }
1553
45d6a902
AM
1554 return TRUE;
1555}
1556
1557/* This function is called to create an indirect symbol from the
1558 default for the symbol with the default version if needed. The
4f3fedcf 1559 symbol is described by H, NAME, SYM, SEC, and VALUE. We
0f8a2703 1560 set DYNSYM if the new indirect symbol is dynamic. */
45d6a902 1561
28caa186 1562static bfd_boolean
268b6b39
AM
1563_bfd_elf_add_default_symbol (bfd *abfd,
1564 struct bfd_link_info *info,
1565 struct elf_link_hash_entry *h,
1566 const char *name,
1567 Elf_Internal_Sym *sym,
4f3fedcf
AM
1568 asection *sec,
1569 bfd_vma value,
1570 bfd **poldbfd,
e3c9d234 1571 bfd_boolean *dynsym)
45d6a902
AM
1572{
1573 bfd_boolean type_change_ok;
1574 bfd_boolean size_change_ok;
1575 bfd_boolean skip;
1576 char *shortname;
1577 struct elf_link_hash_entry *hi;
1578 struct bfd_link_hash_entry *bh;
9c5bfbb7 1579 const struct elf_backend_data *bed;
45d6a902
AM
1580 bfd_boolean collect;
1581 bfd_boolean dynamic;
e3c9d234 1582 bfd_boolean override;
45d6a902
AM
1583 char *p;
1584 size_t len, shortlen;
ffd65175 1585 asection *tmp_sec;
45d6a902
AM
1586
1587 /* If this symbol has a version, and it is the default version, we
1588 create an indirect symbol from the default name to the fully
1589 decorated name. This will cause external references which do not
1590 specify a version to be bound to this version of the symbol. */
1591 p = strchr (name, ELF_VER_CHR);
1592 if (p == NULL || p[1] != ELF_VER_CHR)
1593 return TRUE;
1594
45d6a902
AM
1595 bed = get_elf_backend_data (abfd);
1596 collect = bed->collect;
1597 dynamic = (abfd->flags & DYNAMIC) != 0;
1598
1599 shortlen = p - name;
a50b1753 1600 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
45d6a902
AM
1601 if (shortname == NULL)
1602 return FALSE;
1603 memcpy (shortname, name, shortlen);
1604 shortname[shortlen] = '\0';
1605
1606 /* We are going to create a new symbol. Merge it with any existing
1607 symbol with this name. For the purposes of the merge, act as
1608 though we were defining the symbol we just defined, although we
1609 actually going to define an indirect symbol. */
1610 type_change_ok = FALSE;
1611 size_change_ok = FALSE;
ffd65175
AM
1612 tmp_sec = sec;
1613 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
4f3fedcf 1614 &hi, poldbfd, NULL, NULL, &skip, &override,
af44c138 1615 &type_change_ok, &size_change_ok))
45d6a902
AM
1616 return FALSE;
1617
1618 if (skip)
1619 goto nondefault;
1620
1621 if (! override)
1622 {
1623 bh = &hi->root;
1624 if (! (_bfd_generic_link_add_one_symbol
1625 (info, abfd, shortname, BSF_INDIRECT, bfd_ind_section_ptr,
268b6b39 1626 0, name, FALSE, collect, &bh)))
45d6a902
AM
1627 return FALSE;
1628 hi = (struct elf_link_hash_entry *) bh;
1629 }
1630 else
1631 {
1632 /* In this case the symbol named SHORTNAME is overriding the
1633 indirect symbol we want to add. We were planning on making
1634 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1635 is the name without a version. NAME is the fully versioned
1636 name, and it is the default version.
1637
1638 Overriding means that we already saw a definition for the
1639 symbol SHORTNAME in a regular object, and it is overriding
1640 the symbol defined in the dynamic object.
1641
1642 When this happens, we actually want to change NAME, the
1643 symbol we just added, to refer to SHORTNAME. This will cause
1644 references to NAME in the shared object to become references
1645 to SHORTNAME in the regular object. This is what we expect
1646 when we override a function in a shared object: that the
1647 references in the shared object will be mapped to the
1648 definition in the regular object. */
1649
1650 while (hi->root.type == bfd_link_hash_indirect
1651 || hi->root.type == bfd_link_hash_warning)
1652 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1653
1654 h->root.type = bfd_link_hash_indirect;
1655 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
f5385ebf 1656 if (h->def_dynamic)
45d6a902 1657 {
f5385ebf
AM
1658 h->def_dynamic = 0;
1659 hi->ref_dynamic = 1;
1660 if (hi->ref_regular
1661 || hi->def_regular)
45d6a902 1662 {
c152c796 1663 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
45d6a902
AM
1664 return FALSE;
1665 }
1666 }
1667
1668 /* Now set HI to H, so that the following code will set the
1669 other fields correctly. */
1670 hi = h;
1671 }
1672
fab4a87f
L
1673 /* Check if HI is a warning symbol. */
1674 if (hi->root.type == bfd_link_hash_warning)
1675 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1676
45d6a902
AM
1677 /* If there is a duplicate definition somewhere, then HI may not
1678 point to an indirect symbol. We will have reported an error to
1679 the user in that case. */
1680
1681 if (hi->root.type == bfd_link_hash_indirect)
1682 {
1683 struct elf_link_hash_entry *ht;
1684
45d6a902 1685 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
fcfa13d2 1686 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
45d6a902 1687
68c88cd4
AM
1688 /* A reference to the SHORTNAME symbol from a dynamic library
1689 will be satisfied by the versioned symbol at runtime. In
1690 effect, we have a reference to the versioned symbol. */
1691 ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1692 hi->dynamic_def |= ht->dynamic_def;
1693
45d6a902
AM
1694 /* See if the new flags lead us to realize that the symbol must
1695 be dynamic. */
1696 if (! *dynsym)
1697 {
1698 if (! dynamic)
1699 {
ca4a656b 1700 if (! info->executable
90c984fc 1701 || hi->def_dynamic
f5385ebf 1702 || hi->ref_dynamic)
45d6a902
AM
1703 *dynsym = TRUE;
1704 }
1705 else
1706 {
f5385ebf 1707 if (hi->ref_regular)
45d6a902
AM
1708 *dynsym = TRUE;
1709 }
1710 }
1711 }
1712
1713 /* We also need to define an indirection from the nondefault version
1714 of the symbol. */
1715
1716nondefault:
1717 len = strlen (name);
a50b1753 1718 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
45d6a902
AM
1719 if (shortname == NULL)
1720 return FALSE;
1721 memcpy (shortname, name, shortlen);
1722 memcpy (shortname + shortlen, p + 1, len - shortlen);
1723
1724 /* Once again, merge with any existing symbol. */
1725 type_change_ok = FALSE;
1726 size_change_ok = FALSE;
ffd65175
AM
1727 tmp_sec = sec;
1728 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
115c6d5c 1729 &hi, poldbfd, NULL, NULL, &skip, &override,
af44c138 1730 &type_change_ok, &size_change_ok))
45d6a902
AM
1731 return FALSE;
1732
1733 if (skip)
1734 return TRUE;
1735
1736 if (override)
1737 {
1738 /* Here SHORTNAME is a versioned name, so we don't expect to see
1739 the type of override we do in the case above unless it is
4cc11e76 1740 overridden by a versioned definition. */
45d6a902
AM
1741 if (hi->root.type != bfd_link_hash_defined
1742 && hi->root.type != bfd_link_hash_defweak)
1743 (*_bfd_error_handler)
d003868e
AM
1744 (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
1745 abfd, shortname);
45d6a902
AM
1746 }
1747 else
1748 {
1749 bh = &hi->root;
1750 if (! (_bfd_generic_link_add_one_symbol
1751 (info, abfd, shortname, BSF_INDIRECT,
268b6b39 1752 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
45d6a902
AM
1753 return FALSE;
1754 hi = (struct elf_link_hash_entry *) bh;
1755
1756 /* If there is a duplicate definition somewhere, then HI may not
1757 point to an indirect symbol. We will have reported an error
1758 to the user in that case. */
1759
1760 if (hi->root.type == bfd_link_hash_indirect)
1761 {
fcfa13d2 1762 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
68c88cd4
AM
1763 h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1764 hi->dynamic_def |= h->dynamic_def;
45d6a902
AM
1765
1766 /* See if the new flags lead us to realize that the symbol
1767 must be dynamic. */
1768 if (! *dynsym)
1769 {
1770 if (! dynamic)
1771 {
ca4a656b 1772 if (! info->executable
f5385ebf 1773 || hi->ref_dynamic)
45d6a902
AM
1774 *dynsym = TRUE;
1775 }
1776 else
1777 {
f5385ebf 1778 if (hi->ref_regular)
45d6a902
AM
1779 *dynsym = TRUE;
1780 }
1781 }
1782 }
1783 }
1784
1785 return TRUE;
1786}
1787\f
1788/* This routine is used to export all defined symbols into the dynamic
1789 symbol table. It is called via elf_link_hash_traverse. */
1790
28caa186 1791static bfd_boolean
268b6b39 1792_bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 1793{
a50b1753 1794 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902
AM
1795
1796 /* Ignore indirect symbols. These are added by the versioning code. */
1797 if (h->root.type == bfd_link_hash_indirect)
1798 return TRUE;
1799
7686d77d
AM
1800 /* Ignore this if we won't export it. */
1801 if (!eif->info->export_dynamic && !h->dynamic)
1802 return TRUE;
45d6a902
AM
1803
1804 if (h->dynindx == -1
fd91d419
L
1805 && (h->def_regular || h->ref_regular)
1806 && ! bfd_hide_sym_by_version (eif->info->version_info,
1807 h->root.root.string))
45d6a902 1808 {
fd91d419 1809 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902 1810 {
fd91d419
L
1811 eif->failed = TRUE;
1812 return FALSE;
45d6a902
AM
1813 }
1814 }
1815
1816 return TRUE;
1817}
1818\f
1819/* Look through the symbols which are defined in other shared
1820 libraries and referenced here. Update the list of version
1821 dependencies. This will be put into the .gnu.version_r section.
1822 This function is called via elf_link_hash_traverse. */
1823
28caa186 1824static bfd_boolean
268b6b39
AM
1825_bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
1826 void *data)
45d6a902 1827{
a50b1753 1828 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
45d6a902
AM
1829 Elf_Internal_Verneed *t;
1830 Elf_Internal_Vernaux *a;
1831 bfd_size_type amt;
1832
45d6a902
AM
1833 /* We only care about symbols defined in shared objects with version
1834 information. */
f5385ebf
AM
1835 if (!h->def_dynamic
1836 || h->def_regular
45d6a902 1837 || h->dynindx == -1
7b20f099
AM
1838 || h->verinfo.verdef == NULL
1839 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
1840 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
45d6a902
AM
1841 return TRUE;
1842
1843 /* See if we already know about this version. */
28caa186
AM
1844 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
1845 t != NULL;
1846 t = t->vn_nextref)
45d6a902
AM
1847 {
1848 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
1849 continue;
1850
1851 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1852 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
1853 return TRUE;
1854
1855 break;
1856 }
1857
1858 /* This is a new version. Add it to tree we are building. */
1859
1860 if (t == NULL)
1861 {
1862 amt = sizeof *t;
a50b1753 1863 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
45d6a902
AM
1864 if (t == NULL)
1865 {
1866 rinfo->failed = TRUE;
1867 return FALSE;
1868 }
1869
1870 t->vn_bfd = h->verinfo.verdef->vd_bfd;
28caa186
AM
1871 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
1872 elf_tdata (rinfo->info->output_bfd)->verref = t;
45d6a902
AM
1873 }
1874
1875 amt = sizeof *a;
a50b1753 1876 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
14b1c01e
AM
1877 if (a == NULL)
1878 {
1879 rinfo->failed = TRUE;
1880 return FALSE;
1881 }
45d6a902
AM
1882
1883 /* Note that we are copying a string pointer here, and testing it
1884 above. If bfd_elf_string_from_elf_section is ever changed to
1885 discard the string data when low in memory, this will have to be
1886 fixed. */
1887 a->vna_nodename = h->verinfo.verdef->vd_nodename;
1888
1889 a->vna_flags = h->verinfo.verdef->vd_flags;
1890 a->vna_nextptr = t->vn_auxptr;
1891
1892 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
1893 ++rinfo->vers;
1894
1895 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
1896
1897 t->vn_auxptr = a;
1898
1899 return TRUE;
1900}
1901
1902/* Figure out appropriate versions for all the symbols. We may not
1903 have the version number script until we have read all of the input
1904 files, so until that point we don't know which symbols should be
1905 local. This function is called via elf_link_hash_traverse. */
1906
28caa186 1907static bfd_boolean
268b6b39 1908_bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
45d6a902 1909{
28caa186 1910 struct elf_info_failed *sinfo;
45d6a902 1911 struct bfd_link_info *info;
9c5bfbb7 1912 const struct elf_backend_data *bed;
45d6a902
AM
1913 struct elf_info_failed eif;
1914 char *p;
1915 bfd_size_type amt;
1916
a50b1753 1917 sinfo = (struct elf_info_failed *) data;
45d6a902
AM
1918 info = sinfo->info;
1919
45d6a902
AM
1920 /* Fix the symbol flags. */
1921 eif.failed = FALSE;
1922 eif.info = info;
1923 if (! _bfd_elf_fix_symbol_flags (h, &eif))
1924 {
1925 if (eif.failed)
1926 sinfo->failed = TRUE;
1927 return FALSE;
1928 }
1929
1930 /* We only need version numbers for symbols defined in regular
1931 objects. */
f5385ebf 1932 if (!h->def_regular)
45d6a902
AM
1933 return TRUE;
1934
28caa186 1935 bed = get_elf_backend_data (info->output_bfd);
45d6a902
AM
1936 p = strchr (h->root.root.string, ELF_VER_CHR);
1937 if (p != NULL && h->verinfo.vertree == NULL)
1938 {
1939 struct bfd_elf_version_tree *t;
1940 bfd_boolean hidden;
1941
1942 hidden = TRUE;
1943
1944 /* There are two consecutive ELF_VER_CHR characters if this is
1945 not a hidden symbol. */
1946 ++p;
1947 if (*p == ELF_VER_CHR)
1948 {
1949 hidden = FALSE;
1950 ++p;
1951 }
1952
1953 /* If there is no version string, we can just return out. */
1954 if (*p == '\0')
1955 {
1956 if (hidden)
f5385ebf 1957 h->hidden = 1;
45d6a902
AM
1958 return TRUE;
1959 }
1960
1961 /* Look for the version. If we find it, it is no longer weak. */
fd91d419 1962 for (t = sinfo->info->version_info; t != NULL; t = t->next)
45d6a902
AM
1963 {
1964 if (strcmp (t->name, p) == 0)
1965 {
1966 size_t len;
1967 char *alc;
1968 struct bfd_elf_version_expr *d;
1969
1970 len = p - h->root.root.string;
a50b1753 1971 alc = (char *) bfd_malloc (len);
45d6a902 1972 if (alc == NULL)
14b1c01e
AM
1973 {
1974 sinfo->failed = TRUE;
1975 return FALSE;
1976 }
45d6a902
AM
1977 memcpy (alc, h->root.root.string, len - 1);
1978 alc[len - 1] = '\0';
1979 if (alc[len - 2] == ELF_VER_CHR)
1980 alc[len - 2] = '\0';
1981
1982 h->verinfo.vertree = t;
1983 t->used = TRUE;
1984 d = NULL;
1985
108ba305
JJ
1986 if (t->globals.list != NULL)
1987 d = (*t->match) (&t->globals, NULL, alc);
45d6a902
AM
1988
1989 /* See if there is anything to force this symbol to
1990 local scope. */
108ba305 1991 if (d == NULL && t->locals.list != NULL)
45d6a902 1992 {
108ba305
JJ
1993 d = (*t->match) (&t->locals, NULL, alc);
1994 if (d != NULL
1995 && h->dynindx != -1
108ba305
JJ
1996 && ! info->export_dynamic)
1997 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
1998 }
1999
2000 free (alc);
2001 break;
2002 }
2003 }
2004
2005 /* If we are building an application, we need to create a
2006 version node for this version. */
36af4a4e 2007 if (t == NULL && info->executable)
45d6a902
AM
2008 {
2009 struct bfd_elf_version_tree **pp;
2010 int version_index;
2011
2012 /* If we aren't going to export this symbol, we don't need
2013 to worry about it. */
2014 if (h->dynindx == -1)
2015 return TRUE;
2016
2017 amt = sizeof *t;
a50b1753 2018 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd, amt);
45d6a902
AM
2019 if (t == NULL)
2020 {
2021 sinfo->failed = TRUE;
2022 return FALSE;
2023 }
2024
45d6a902 2025 t->name = p;
45d6a902
AM
2026 t->name_indx = (unsigned int) -1;
2027 t->used = TRUE;
2028
2029 version_index = 1;
2030 /* Don't count anonymous version tag. */
fd91d419
L
2031 if (sinfo->info->version_info != NULL
2032 && sinfo->info->version_info->vernum == 0)
45d6a902 2033 version_index = 0;
fd91d419
L
2034 for (pp = &sinfo->info->version_info;
2035 *pp != NULL;
2036 pp = &(*pp)->next)
45d6a902
AM
2037 ++version_index;
2038 t->vernum = version_index;
2039
2040 *pp = t;
2041
2042 h->verinfo.vertree = t;
2043 }
2044 else if (t == NULL)
2045 {
2046 /* We could not find the version for a symbol when
2047 generating a shared archive. Return an error. */
2048 (*_bfd_error_handler)
c55fe096 2049 (_("%B: version node not found for symbol %s"),
28caa186 2050 info->output_bfd, h->root.root.string);
45d6a902
AM
2051 bfd_set_error (bfd_error_bad_value);
2052 sinfo->failed = TRUE;
2053 return FALSE;
2054 }
2055
2056 if (hidden)
f5385ebf 2057 h->hidden = 1;
45d6a902
AM
2058 }
2059
2060 /* If we don't have a version for this symbol, see if we can find
2061 something. */
fd91d419 2062 if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL)
45d6a902 2063 {
1e8fa21e 2064 bfd_boolean hide;
ae5a3597 2065
fd91d419
L
2066 h->verinfo.vertree
2067 = bfd_find_version_for_sym (sinfo->info->version_info,
2068 h->root.root.string, &hide);
1e8fa21e
AM
2069 if (h->verinfo.vertree != NULL && hide)
2070 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
2071 }
2072
2073 return TRUE;
2074}
2075\f
45d6a902
AM
2076/* Read and swap the relocs from the section indicated by SHDR. This
2077 may be either a REL or a RELA section. The relocations are
2078 translated into RELA relocations and stored in INTERNAL_RELOCS,
2079 which should have already been allocated to contain enough space.
2080 The EXTERNAL_RELOCS are a buffer where the external form of the
2081 relocations should be stored.
2082
2083 Returns FALSE if something goes wrong. */
2084
2085static bfd_boolean
268b6b39 2086elf_link_read_relocs_from_section (bfd *abfd,
243ef1e0 2087 asection *sec,
268b6b39
AM
2088 Elf_Internal_Shdr *shdr,
2089 void *external_relocs,
2090 Elf_Internal_Rela *internal_relocs)
45d6a902 2091{
9c5bfbb7 2092 const struct elf_backend_data *bed;
268b6b39 2093 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
45d6a902
AM
2094 const bfd_byte *erela;
2095 const bfd_byte *erelaend;
2096 Elf_Internal_Rela *irela;
243ef1e0
L
2097 Elf_Internal_Shdr *symtab_hdr;
2098 size_t nsyms;
45d6a902 2099
45d6a902
AM
2100 /* Position ourselves at the start of the section. */
2101 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2102 return FALSE;
2103
2104 /* Read the relocations. */
2105 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2106 return FALSE;
2107
243ef1e0 2108 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
ce98a316 2109 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
243ef1e0 2110
45d6a902
AM
2111 bed = get_elf_backend_data (abfd);
2112
2113 /* Convert the external relocations to the internal format. */
2114 if (shdr->sh_entsize == bed->s->sizeof_rel)
2115 swap_in = bed->s->swap_reloc_in;
2116 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2117 swap_in = bed->s->swap_reloca_in;
2118 else
2119 {
2120 bfd_set_error (bfd_error_wrong_format);
2121 return FALSE;
2122 }
2123
a50b1753 2124 erela = (const bfd_byte *) external_relocs;
51992aec 2125 erelaend = erela + shdr->sh_size;
45d6a902
AM
2126 irela = internal_relocs;
2127 while (erela < erelaend)
2128 {
243ef1e0
L
2129 bfd_vma r_symndx;
2130
45d6a902 2131 (*swap_in) (abfd, erela, irela);
243ef1e0
L
2132 r_symndx = ELF32_R_SYM (irela->r_info);
2133 if (bed->s->arch_size == 64)
2134 r_symndx >>= 24;
ce98a316
NC
2135 if (nsyms > 0)
2136 {
2137 if ((size_t) r_symndx >= nsyms)
2138 {
2139 (*_bfd_error_handler)
2140 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2141 " for offset 0x%lx in section `%A'"),
2142 abfd, sec,
2143 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2144 bfd_set_error (bfd_error_bad_value);
2145 return FALSE;
2146 }
2147 }
cf35638d 2148 else if (r_symndx != STN_UNDEF)
243ef1e0
L
2149 {
2150 (*_bfd_error_handler)
ce98a316
NC
2151 (_("%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A'"
2152 " when the object file has no symbol table"),
d003868e
AM
2153 abfd, sec,
2154 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
243ef1e0
L
2155 bfd_set_error (bfd_error_bad_value);
2156 return FALSE;
2157 }
45d6a902
AM
2158 irela += bed->s->int_rels_per_ext_rel;
2159 erela += shdr->sh_entsize;
2160 }
2161
2162 return TRUE;
2163}
2164
2165/* Read and swap the relocs for a section O. They may have been
2166 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2167 not NULL, they are used as buffers to read into. They are known to
2168 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2169 the return value is allocated using either malloc or bfd_alloc,
2170 according to the KEEP_MEMORY argument. If O has two relocation
2171 sections (both REL and RELA relocations), then the REL_HDR
2172 relocations will appear first in INTERNAL_RELOCS, followed by the
d4730f92 2173 RELA_HDR relocations. */
45d6a902
AM
2174
2175Elf_Internal_Rela *
268b6b39
AM
2176_bfd_elf_link_read_relocs (bfd *abfd,
2177 asection *o,
2178 void *external_relocs,
2179 Elf_Internal_Rela *internal_relocs,
2180 bfd_boolean keep_memory)
45d6a902 2181{
268b6b39 2182 void *alloc1 = NULL;
45d6a902 2183 Elf_Internal_Rela *alloc2 = NULL;
9c5bfbb7 2184 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92
BS
2185 struct bfd_elf_section_data *esdo = elf_section_data (o);
2186 Elf_Internal_Rela *internal_rela_relocs;
45d6a902 2187
d4730f92
BS
2188 if (esdo->relocs != NULL)
2189 return esdo->relocs;
45d6a902
AM
2190
2191 if (o->reloc_count == 0)
2192 return NULL;
2193
45d6a902
AM
2194 if (internal_relocs == NULL)
2195 {
2196 bfd_size_type size;
2197
2198 size = o->reloc_count;
2199 size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2200 if (keep_memory)
a50b1753 2201 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
45d6a902 2202 else
a50b1753 2203 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
45d6a902
AM
2204 if (internal_relocs == NULL)
2205 goto error_return;
2206 }
2207
2208 if (external_relocs == NULL)
2209 {
d4730f92
BS
2210 bfd_size_type size = 0;
2211
2212 if (esdo->rel.hdr)
2213 size += esdo->rel.hdr->sh_size;
2214 if (esdo->rela.hdr)
2215 size += esdo->rela.hdr->sh_size;
45d6a902 2216
268b6b39 2217 alloc1 = bfd_malloc (size);
45d6a902
AM
2218 if (alloc1 == NULL)
2219 goto error_return;
2220 external_relocs = alloc1;
2221 }
2222
d4730f92
BS
2223 internal_rela_relocs = internal_relocs;
2224 if (esdo->rel.hdr)
2225 {
2226 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2227 external_relocs,
2228 internal_relocs))
2229 goto error_return;
2230 external_relocs = (((bfd_byte *) external_relocs)
2231 + esdo->rel.hdr->sh_size);
2232 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2233 * bed->s->int_rels_per_ext_rel);
2234 }
2235
2236 if (esdo->rela.hdr
2237 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2238 external_relocs,
2239 internal_rela_relocs)))
45d6a902
AM
2240 goto error_return;
2241
2242 /* Cache the results for next time, if we can. */
2243 if (keep_memory)
d4730f92 2244 esdo->relocs = internal_relocs;
45d6a902
AM
2245
2246 if (alloc1 != NULL)
2247 free (alloc1);
2248
2249 /* Don't free alloc2, since if it was allocated we are passing it
2250 back (under the name of internal_relocs). */
2251
2252 return internal_relocs;
2253
2254 error_return:
2255 if (alloc1 != NULL)
2256 free (alloc1);
2257 if (alloc2 != NULL)
4dd07732
AM
2258 {
2259 if (keep_memory)
2260 bfd_release (abfd, alloc2);
2261 else
2262 free (alloc2);
2263 }
45d6a902
AM
2264 return NULL;
2265}
2266
2267/* Compute the size of, and allocate space for, REL_HDR which is the
2268 section header for a section containing relocations for O. */
2269
28caa186 2270static bfd_boolean
268b6b39 2271_bfd_elf_link_size_reloc_section (bfd *abfd,
d4730f92 2272 struct bfd_elf_section_reloc_data *reldata)
45d6a902 2273{
d4730f92 2274 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
45d6a902
AM
2275
2276 /* That allows us to calculate the size of the section. */
d4730f92 2277 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
45d6a902
AM
2278
2279 /* The contents field must last into write_object_contents, so we
2280 allocate it with bfd_alloc rather than malloc. Also since we
2281 cannot be sure that the contents will actually be filled in,
2282 we zero the allocated space. */
a50b1753 2283 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
45d6a902
AM
2284 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2285 return FALSE;
2286
d4730f92 2287 if (reldata->hashes == NULL && reldata->count)
45d6a902
AM
2288 {
2289 struct elf_link_hash_entry **p;
2290
a50b1753 2291 p = (struct elf_link_hash_entry **)
d4730f92 2292 bfd_zmalloc (reldata->count * sizeof (struct elf_link_hash_entry *));
45d6a902
AM
2293 if (p == NULL)
2294 return FALSE;
2295
d4730f92 2296 reldata->hashes = p;
45d6a902
AM
2297 }
2298
2299 return TRUE;
2300}
2301
2302/* Copy the relocations indicated by the INTERNAL_RELOCS (which
2303 originated from the section given by INPUT_REL_HDR) to the
2304 OUTPUT_BFD. */
2305
2306bfd_boolean
268b6b39
AM
2307_bfd_elf_link_output_relocs (bfd *output_bfd,
2308 asection *input_section,
2309 Elf_Internal_Shdr *input_rel_hdr,
eac338cf
PB
2310 Elf_Internal_Rela *internal_relocs,
2311 struct elf_link_hash_entry **rel_hash
2312 ATTRIBUTE_UNUSED)
45d6a902
AM
2313{
2314 Elf_Internal_Rela *irela;
2315 Elf_Internal_Rela *irelaend;
2316 bfd_byte *erel;
d4730f92 2317 struct bfd_elf_section_reloc_data *output_reldata;
45d6a902 2318 asection *output_section;
9c5bfbb7 2319 const struct elf_backend_data *bed;
268b6b39 2320 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
d4730f92 2321 struct bfd_elf_section_data *esdo;
45d6a902
AM
2322
2323 output_section = input_section->output_section;
45d6a902 2324
d4730f92
BS
2325 bed = get_elf_backend_data (output_bfd);
2326 esdo = elf_section_data (output_section);
2327 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2328 {
d4730f92
BS
2329 output_reldata = &esdo->rel;
2330 swap_out = bed->s->swap_reloc_out;
45d6a902 2331 }
d4730f92
BS
2332 else if (esdo->rela.hdr
2333 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2334 {
d4730f92
BS
2335 output_reldata = &esdo->rela;
2336 swap_out = bed->s->swap_reloca_out;
45d6a902
AM
2337 }
2338 else
2339 {
2340 (*_bfd_error_handler)
d003868e
AM
2341 (_("%B: relocation size mismatch in %B section %A"),
2342 output_bfd, input_section->owner, input_section);
297d8443 2343 bfd_set_error (bfd_error_wrong_format);
45d6a902
AM
2344 return FALSE;
2345 }
2346
d4730f92
BS
2347 erel = output_reldata->hdr->contents;
2348 erel += output_reldata->count * input_rel_hdr->sh_entsize;
45d6a902
AM
2349 irela = internal_relocs;
2350 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2351 * bed->s->int_rels_per_ext_rel);
2352 while (irela < irelaend)
2353 {
2354 (*swap_out) (output_bfd, irela, erel);
2355 irela += bed->s->int_rels_per_ext_rel;
2356 erel += input_rel_hdr->sh_entsize;
2357 }
2358
2359 /* Bump the counter, so that we know where to add the next set of
2360 relocations. */
d4730f92 2361 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
45d6a902
AM
2362
2363 return TRUE;
2364}
2365\f
508c3946
L
2366/* Make weak undefined symbols in PIE dynamic. */
2367
2368bfd_boolean
2369_bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2370 struct elf_link_hash_entry *h)
2371{
2372 if (info->pie
2373 && h->dynindx == -1
2374 && h->root.type == bfd_link_hash_undefweak)
2375 return bfd_elf_link_record_dynamic_symbol (info, h);
2376
2377 return TRUE;
2378}
2379
45d6a902
AM
2380/* Fix up the flags for a symbol. This handles various cases which
2381 can only be fixed after all the input files are seen. This is
2382 currently called by both adjust_dynamic_symbol and
2383 assign_sym_version, which is unnecessary but perhaps more robust in
2384 the face of future changes. */
2385
28caa186 2386static bfd_boolean
268b6b39
AM
2387_bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2388 struct elf_info_failed *eif)
45d6a902 2389{
33774f08 2390 const struct elf_backend_data *bed;
508c3946 2391
45d6a902
AM
2392 /* If this symbol was mentioned in a non-ELF file, try to set
2393 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2394 permit a non-ELF file to correctly refer to a symbol defined in
2395 an ELF dynamic object. */
f5385ebf 2396 if (h->non_elf)
45d6a902
AM
2397 {
2398 while (h->root.type == bfd_link_hash_indirect)
2399 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2400
2401 if (h->root.type != bfd_link_hash_defined
2402 && h->root.type != bfd_link_hash_defweak)
f5385ebf
AM
2403 {
2404 h->ref_regular = 1;
2405 h->ref_regular_nonweak = 1;
2406 }
45d6a902
AM
2407 else
2408 {
2409 if (h->root.u.def.section->owner != NULL
2410 && (bfd_get_flavour (h->root.u.def.section->owner)
2411 == bfd_target_elf_flavour))
f5385ebf
AM
2412 {
2413 h->ref_regular = 1;
2414 h->ref_regular_nonweak = 1;
2415 }
45d6a902 2416 else
f5385ebf 2417 h->def_regular = 1;
45d6a902
AM
2418 }
2419
2420 if (h->dynindx == -1
f5385ebf
AM
2421 && (h->def_dynamic
2422 || h->ref_dynamic))
45d6a902 2423 {
c152c796 2424 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902
AM
2425 {
2426 eif->failed = TRUE;
2427 return FALSE;
2428 }
2429 }
2430 }
2431 else
2432 {
f5385ebf 2433 /* Unfortunately, NON_ELF is only correct if the symbol
45d6a902
AM
2434 was first seen in a non-ELF file. Fortunately, if the symbol
2435 was first seen in an ELF file, we're probably OK unless the
2436 symbol was defined in a non-ELF file. Catch that case here.
2437 FIXME: We're still in trouble if the symbol was first seen in
2438 a dynamic object, and then later in a non-ELF regular object. */
2439 if ((h->root.type == bfd_link_hash_defined
2440 || h->root.type == bfd_link_hash_defweak)
f5385ebf 2441 && !h->def_regular
45d6a902
AM
2442 && (h->root.u.def.section->owner != NULL
2443 ? (bfd_get_flavour (h->root.u.def.section->owner)
2444 != bfd_target_elf_flavour)
2445 : (bfd_is_abs_section (h->root.u.def.section)
f5385ebf
AM
2446 && !h->def_dynamic)))
2447 h->def_regular = 1;
45d6a902
AM
2448 }
2449
508c3946 2450 /* Backend specific symbol fixup. */
33774f08
AM
2451 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2452 if (bed->elf_backend_fixup_symbol
2453 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2454 return FALSE;
508c3946 2455
45d6a902
AM
2456 /* If this is a final link, and the symbol was defined as a common
2457 symbol in a regular object file, and there was no definition in
2458 any dynamic object, then the linker will have allocated space for
f5385ebf 2459 the symbol in a common section but the DEF_REGULAR
45d6a902
AM
2460 flag will not have been set. */
2461 if (h->root.type == bfd_link_hash_defined
f5385ebf
AM
2462 && !h->def_regular
2463 && h->ref_regular
2464 && !h->def_dynamic
96f29d96 2465 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
f5385ebf 2466 h->def_regular = 1;
45d6a902
AM
2467
2468 /* If -Bsymbolic was used (which means to bind references to global
2469 symbols to the definition within the shared object), and this
2470 symbol was defined in a regular object, then it actually doesn't
9c7a29a3
AM
2471 need a PLT entry. Likewise, if the symbol has non-default
2472 visibility. If the symbol has hidden or internal visibility, we
c1be741f 2473 will force it local. */
f5385ebf 2474 if (h->needs_plt
45d6a902 2475 && eif->info->shared
0eddce27 2476 && is_elf_hash_table (eif->info->hash)
55255dae 2477 && (SYMBOLIC_BIND (eif->info, h)
c1be741f 2478 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
f5385ebf 2479 && h->def_regular)
45d6a902 2480 {
45d6a902
AM
2481 bfd_boolean force_local;
2482
45d6a902
AM
2483 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2484 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2485 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2486 }
2487
2488 /* If a weak undefined symbol has non-default visibility, we also
2489 hide it from the dynamic linker. */
9c7a29a3 2490 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902 2491 && h->root.type == bfd_link_hash_undefweak)
33774f08 2492 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
45d6a902
AM
2493
2494 /* If this is a weak defined symbol in a dynamic object, and we know
2495 the real definition in the dynamic object, copy interesting flags
2496 over to the real definition. */
f6e332e6 2497 if (h->u.weakdef != NULL)
45d6a902 2498 {
45d6a902
AM
2499 /* If the real definition is defined by a regular object file,
2500 don't do anything special. See the longer description in
2501 _bfd_elf_adjust_dynamic_symbol, below. */
4e6b54a6 2502 if (h->u.weakdef->def_regular)
f6e332e6 2503 h->u.weakdef = NULL;
45d6a902 2504 else
a26587ba 2505 {
4e6b54a6
AM
2506 struct elf_link_hash_entry *weakdef = h->u.weakdef;
2507
2508 while (h->root.type == bfd_link_hash_indirect)
2509 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2510
2511 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2512 || h->root.type == bfd_link_hash_defweak);
2513 BFD_ASSERT (weakdef->def_dynamic);
a26587ba
RS
2514 BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2515 || weakdef->root.type == bfd_link_hash_defweak);
2516 (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h);
2517 }
45d6a902
AM
2518 }
2519
2520 return TRUE;
2521}
2522
2523/* Make the backend pick a good value for a dynamic symbol. This is
2524 called via elf_link_hash_traverse, and also calls itself
2525 recursively. */
2526
28caa186 2527static bfd_boolean
268b6b39 2528_bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 2529{
a50b1753 2530 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902 2531 bfd *dynobj;
9c5bfbb7 2532 const struct elf_backend_data *bed;
45d6a902 2533
0eddce27 2534 if (! is_elf_hash_table (eif->info->hash))
45d6a902
AM
2535 return FALSE;
2536
45d6a902
AM
2537 /* Ignore indirect symbols. These are added by the versioning code. */
2538 if (h->root.type == bfd_link_hash_indirect)
2539 return TRUE;
2540
2541 /* Fix the symbol flags. */
2542 if (! _bfd_elf_fix_symbol_flags (h, eif))
2543 return FALSE;
2544
2545 /* If this symbol does not require a PLT entry, and it is not
2546 defined by a dynamic object, or is not referenced by a regular
2547 object, ignore it. We do have to handle a weak defined symbol,
2548 even if no regular object refers to it, if we decided to add it
2549 to the dynamic symbol table. FIXME: Do we normally need to worry
2550 about symbols which are defined by one dynamic object and
2551 referenced by another one? */
f5385ebf 2552 if (!h->needs_plt
91e21fb7 2553 && h->type != STT_GNU_IFUNC
f5385ebf
AM
2554 && (h->def_regular
2555 || !h->def_dynamic
2556 || (!h->ref_regular
f6e332e6 2557 && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
45d6a902 2558 {
a6aa5195 2559 h->plt = elf_hash_table (eif->info)->init_plt_offset;
45d6a902
AM
2560 return TRUE;
2561 }
2562
2563 /* If we've already adjusted this symbol, don't do it again. This
2564 can happen via a recursive call. */
f5385ebf 2565 if (h->dynamic_adjusted)
45d6a902
AM
2566 return TRUE;
2567
2568 /* Don't look at this symbol again. Note that we must set this
2569 after checking the above conditions, because we may look at a
2570 symbol once, decide not to do anything, and then get called
2571 recursively later after REF_REGULAR is set below. */
f5385ebf 2572 h->dynamic_adjusted = 1;
45d6a902
AM
2573
2574 /* If this is a weak definition, and we know a real definition, and
2575 the real symbol is not itself defined by a regular object file,
2576 then get a good value for the real definition. We handle the
2577 real symbol first, for the convenience of the backend routine.
2578
2579 Note that there is a confusing case here. If the real definition
2580 is defined by a regular object file, we don't get the real symbol
2581 from the dynamic object, but we do get the weak symbol. If the
2582 processor backend uses a COPY reloc, then if some routine in the
2583 dynamic object changes the real symbol, we will not see that
2584 change in the corresponding weak symbol. This is the way other
2585 ELF linkers work as well, and seems to be a result of the shared
2586 library model.
2587
2588 I will clarify this issue. Most SVR4 shared libraries define the
2589 variable _timezone and define timezone as a weak synonym. The
2590 tzset call changes _timezone. If you write
2591 extern int timezone;
2592 int _timezone = 5;
2593 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2594 you might expect that, since timezone is a synonym for _timezone,
2595 the same number will print both times. However, if the processor
2596 backend uses a COPY reloc, then actually timezone will be copied
2597 into your process image, and, since you define _timezone
2598 yourself, _timezone will not. Thus timezone and _timezone will
2599 wind up at different memory locations. The tzset call will set
2600 _timezone, leaving timezone unchanged. */
2601
f6e332e6 2602 if (h->u.weakdef != NULL)
45d6a902 2603 {
ec24dc88
AM
2604 /* If we get to this point, there is an implicit reference to
2605 H->U.WEAKDEF by a regular object file via the weak symbol H. */
f6e332e6 2606 h->u.weakdef->ref_regular = 1;
45d6a902 2607
ec24dc88
AM
2608 /* Ensure that the backend adjust_dynamic_symbol function sees
2609 H->U.WEAKDEF before H by recursively calling ourselves. */
f6e332e6 2610 if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
45d6a902
AM
2611 return FALSE;
2612 }
2613
2614 /* If a symbol has no type and no size and does not require a PLT
2615 entry, then we are probably about to do the wrong thing here: we
2616 are probably going to create a COPY reloc for an empty object.
2617 This case can arise when a shared object is built with assembly
2618 code, and the assembly code fails to set the symbol type. */
2619 if (h->size == 0
2620 && h->type == STT_NOTYPE
f5385ebf 2621 && !h->needs_plt)
45d6a902
AM
2622 (*_bfd_error_handler)
2623 (_("warning: type and size of dynamic symbol `%s' are not defined"),
2624 h->root.root.string);
2625
2626 dynobj = elf_hash_table (eif->info)->dynobj;
2627 bed = get_elf_backend_data (dynobj);
e7c33416 2628
45d6a902
AM
2629 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2630 {
2631 eif->failed = TRUE;
2632 return FALSE;
2633 }
2634
2635 return TRUE;
2636}
2637
027297b7
L
2638/* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
2639 DYNBSS. */
2640
2641bfd_boolean
6cabe1ea
AM
2642_bfd_elf_adjust_dynamic_copy (struct bfd_link_info *info,
2643 struct elf_link_hash_entry *h,
027297b7
L
2644 asection *dynbss)
2645{
91ac5911 2646 unsigned int power_of_two;
027297b7
L
2647 bfd_vma mask;
2648 asection *sec = h->root.u.def.section;
2649
2650 /* The section aligment of definition is the maximum alignment
91ac5911
L
2651 requirement of symbols defined in the section. Since we don't
2652 know the symbol alignment requirement, we start with the
2653 maximum alignment and check low bits of the symbol address
2654 for the minimum alignment. */
2655 power_of_two = bfd_get_section_alignment (sec->owner, sec);
2656 mask = ((bfd_vma) 1 << power_of_two) - 1;
2657 while ((h->root.u.def.value & mask) != 0)
2658 {
2659 mask >>= 1;
2660 --power_of_two;
2661 }
027297b7 2662
91ac5911
L
2663 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
2664 dynbss))
027297b7
L
2665 {
2666 /* Adjust the section alignment if needed. */
2667 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
91ac5911 2668 power_of_two))
027297b7
L
2669 return FALSE;
2670 }
2671
91ac5911 2672 /* We make sure that the symbol will be aligned properly. */
027297b7
L
2673 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
2674
2675 /* Define the symbol as being at this point in DYNBSS. */
2676 h->root.u.def.section = dynbss;
2677 h->root.u.def.value = dynbss->size;
2678
2679 /* Increment the size of DYNBSS to make room for the symbol. */
2680 dynbss->size += h->size;
2681
6cabe1ea
AM
2682 if (h->protected_def)
2683 {
2684 info->callbacks->einfo
2685 (_("%P: copy reloc against protected `%T' is invalid\n"),
2686 h->root.root.string);
2687 return FALSE;
2688 }
2689
027297b7
L
2690 return TRUE;
2691}
2692
45d6a902
AM
2693/* Adjust all external symbols pointing into SEC_MERGE sections
2694 to reflect the object merging within the sections. */
2695
28caa186 2696static bfd_boolean
268b6b39 2697_bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
45d6a902
AM
2698{
2699 asection *sec;
2700
45d6a902
AM
2701 if ((h->root.type == bfd_link_hash_defined
2702 || h->root.type == bfd_link_hash_defweak)
2703 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
dbaa2011 2704 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
45d6a902 2705 {
a50b1753 2706 bfd *output_bfd = (bfd *) data;
45d6a902
AM
2707
2708 h->root.u.def.value =
2709 _bfd_merged_section_offset (output_bfd,
2710 &h->root.u.def.section,
2711 elf_section_data (sec)->sec_info,
753731ee 2712 h->root.u.def.value);
45d6a902
AM
2713 }
2714
2715 return TRUE;
2716}
986a241f
RH
2717
2718/* Returns false if the symbol referred to by H should be considered
2719 to resolve local to the current module, and true if it should be
2720 considered to bind dynamically. */
2721
2722bfd_boolean
268b6b39
AM
2723_bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
2724 struct bfd_link_info *info,
89a2ee5a 2725 bfd_boolean not_local_protected)
986a241f
RH
2726{
2727 bfd_boolean binding_stays_local_p;
fcb93ecf
PB
2728 const struct elf_backend_data *bed;
2729 struct elf_link_hash_table *hash_table;
986a241f
RH
2730
2731 if (h == NULL)
2732 return FALSE;
2733
2734 while (h->root.type == bfd_link_hash_indirect
2735 || h->root.type == bfd_link_hash_warning)
2736 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2737
2738 /* If it was forced local, then clearly it's not dynamic. */
2739 if (h->dynindx == -1)
2740 return FALSE;
f5385ebf 2741 if (h->forced_local)
986a241f
RH
2742 return FALSE;
2743
2744 /* Identify the cases where name binding rules say that a
2745 visible symbol resolves locally. */
55255dae 2746 binding_stays_local_p = info->executable || SYMBOLIC_BIND (info, h);
986a241f
RH
2747
2748 switch (ELF_ST_VISIBILITY (h->other))
2749 {
2750 case STV_INTERNAL:
2751 case STV_HIDDEN:
2752 return FALSE;
2753
2754 case STV_PROTECTED:
fcb93ecf
PB
2755 hash_table = elf_hash_table (info);
2756 if (!is_elf_hash_table (hash_table))
2757 return FALSE;
2758
2759 bed = get_elf_backend_data (hash_table->dynobj);
2760
986a241f
RH
2761 /* Proper resolution for function pointer equality may require
2762 that these symbols perhaps be resolved dynamically, even though
2763 we should be resolving them to the current module. */
89a2ee5a 2764 if (!not_local_protected || !bed->is_function_type (h->type))
986a241f
RH
2765 binding_stays_local_p = TRUE;
2766 break;
2767
2768 default:
986a241f
RH
2769 break;
2770 }
2771
aa37626c 2772 /* If it isn't defined locally, then clearly it's dynamic. */
89a2ee5a 2773 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
aa37626c
L
2774 return TRUE;
2775
986a241f
RH
2776 /* Otherwise, the symbol is dynamic if binding rules don't tell
2777 us that it remains local. */
2778 return !binding_stays_local_p;
2779}
f6c52c13
AM
2780
2781/* Return true if the symbol referred to by H should be considered
2782 to resolve local to the current module, and false otherwise. Differs
2783 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2e76e85a 2784 undefined symbols. The two functions are virtually identical except
89a2ee5a
AM
2785 for the place where forced_local and dynindx == -1 are tested. If
2786 either of those tests are true, _bfd_elf_dynamic_symbol_p will say
2787 the symbol is local, while _bfd_elf_symbol_refs_local_p will say
2788 the symbol is local only for defined symbols.
2789 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
2790 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
2791 treatment of undefined weak symbols. For those that do not make
2792 undefined weak symbols dynamic, both functions may return false. */
f6c52c13
AM
2793
2794bfd_boolean
268b6b39
AM
2795_bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
2796 struct bfd_link_info *info,
2797 bfd_boolean local_protected)
f6c52c13 2798{
fcb93ecf
PB
2799 const struct elf_backend_data *bed;
2800 struct elf_link_hash_table *hash_table;
2801
f6c52c13
AM
2802 /* If it's a local sym, of course we resolve locally. */
2803 if (h == NULL)
2804 return TRUE;
2805
d95edcac
L
2806 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
2807 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
2808 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
2809 return TRUE;
2810
7e2294f9
AO
2811 /* Common symbols that become definitions don't get the DEF_REGULAR
2812 flag set, so test it first, and don't bail out. */
2813 if (ELF_COMMON_DEF_P (h))
2814 /* Do nothing. */;
f6c52c13 2815 /* If we don't have a definition in a regular file, then we can't
49ff44d6
L
2816 resolve locally. The sym is either undefined or dynamic. */
2817 else if (!h->def_regular)
f6c52c13
AM
2818 return FALSE;
2819
2820 /* Forced local symbols resolve locally. */
f5385ebf 2821 if (h->forced_local)
f6c52c13
AM
2822 return TRUE;
2823
2824 /* As do non-dynamic symbols. */
2825 if (h->dynindx == -1)
2826 return TRUE;
2827
2828 /* At this point, we know the symbol is defined and dynamic. In an
2829 executable it must resolve locally, likewise when building symbolic
2830 shared libraries. */
55255dae 2831 if (info->executable || SYMBOLIC_BIND (info, h))
f6c52c13
AM
2832 return TRUE;
2833
2834 /* Now deal with defined dynamic symbols in shared libraries. Ones
2835 with default visibility might not resolve locally. */
2836 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
2837 return FALSE;
2838
fcb93ecf
PB
2839 hash_table = elf_hash_table (info);
2840 if (!is_elf_hash_table (hash_table))
2841 return TRUE;
2842
2843 bed = get_elf_backend_data (hash_table->dynobj);
2844
1c16dfa5 2845 /* STV_PROTECTED non-function symbols are local. */
fcb93ecf 2846 if (!bed->is_function_type (h->type))
1c16dfa5
L
2847 return TRUE;
2848
f6c52c13 2849 /* Function pointer equality tests may require that STV_PROTECTED
2676a7d9
AM
2850 symbols be treated as dynamic symbols. If the address of a
2851 function not defined in an executable is set to that function's
2852 plt entry in the executable, then the address of the function in
2853 a shared library must also be the plt entry in the executable. */
f6c52c13
AM
2854 return local_protected;
2855}
e1918d23
AM
2856
2857/* Caches some TLS segment info, and ensures that the TLS segment vma is
2858 aligned. Returns the first TLS output section. */
2859
2860struct bfd_section *
2861_bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
2862{
2863 struct bfd_section *sec, *tls;
2864 unsigned int align = 0;
2865
2866 for (sec = obfd->sections; sec != NULL; sec = sec->next)
2867 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
2868 break;
2869 tls = sec;
2870
2871 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
2872 if (sec->alignment_power > align)
2873 align = sec->alignment_power;
2874
2875 elf_hash_table (info)->tls_sec = tls;
2876
2877 /* Ensure the alignment of the first section is the largest alignment,
2878 so that the tls segment starts aligned. */
2879 if (tls != NULL)
2880 tls->alignment_power = align;
2881
2882 return tls;
2883}
0ad989f9
L
2884
2885/* Return TRUE iff this is a non-common, definition of a non-function symbol. */
2886static bfd_boolean
2887is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
2888 Elf_Internal_Sym *sym)
2889{
a4d8e49b
L
2890 const struct elf_backend_data *bed;
2891
0ad989f9
L
2892 /* Local symbols do not count, but target specific ones might. */
2893 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
2894 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
2895 return FALSE;
2896
fcb93ecf 2897 bed = get_elf_backend_data (abfd);
0ad989f9 2898 /* Function symbols do not count. */
fcb93ecf 2899 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
0ad989f9
L
2900 return FALSE;
2901
2902 /* If the section is undefined, then so is the symbol. */
2903 if (sym->st_shndx == SHN_UNDEF)
2904 return FALSE;
2905
2906 /* If the symbol is defined in the common section, then
2907 it is a common definition and so does not count. */
a4d8e49b 2908 if (bed->common_definition (sym))
0ad989f9
L
2909 return FALSE;
2910
2911 /* If the symbol is in a target specific section then we
2912 must rely upon the backend to tell us what it is. */
2913 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
2914 /* FIXME - this function is not coded yet:
2915
2916 return _bfd_is_global_symbol_definition (abfd, sym);
2917
2918 Instead for now assume that the definition is not global,
2919 Even if this is wrong, at least the linker will behave
2920 in the same way that it used to do. */
2921 return FALSE;
2922
2923 return TRUE;
2924}
2925
2926/* Search the symbol table of the archive element of the archive ABFD
2927 whose archive map contains a mention of SYMDEF, and determine if
2928 the symbol is defined in this element. */
2929static bfd_boolean
2930elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
2931{
2932 Elf_Internal_Shdr * hdr;
2933 bfd_size_type symcount;
2934 bfd_size_type extsymcount;
2935 bfd_size_type extsymoff;
2936 Elf_Internal_Sym *isymbuf;
2937 Elf_Internal_Sym *isym;
2938 Elf_Internal_Sym *isymend;
2939 bfd_boolean result;
2940
2941 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
2942 if (abfd == NULL)
2943 return FALSE;
2944
2945 if (! bfd_check_format (abfd, bfd_object))
2946 return FALSE;
2947
0ad989f9
L
2948 /* Select the appropriate symbol table. */
2949 if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
2950 hdr = &elf_tdata (abfd)->symtab_hdr;
2951 else
2952 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2953
2954 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
2955
2956 /* The sh_info field of the symtab header tells us where the
2957 external symbols start. We don't care about the local symbols. */
2958 if (elf_bad_symtab (abfd))
2959 {
2960 extsymcount = symcount;
2961 extsymoff = 0;
2962 }
2963 else
2964 {
2965 extsymcount = symcount - hdr->sh_info;
2966 extsymoff = hdr->sh_info;
2967 }
2968
2969 if (extsymcount == 0)
2970 return FALSE;
2971
2972 /* Read in the symbol table. */
2973 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
2974 NULL, NULL, NULL);
2975 if (isymbuf == NULL)
2976 return FALSE;
2977
2978 /* Scan the symbol table looking for SYMDEF. */
2979 result = FALSE;
2980 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
2981 {
2982 const char *name;
2983
2984 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
2985 isym->st_name);
2986 if (name == NULL)
2987 break;
2988
2989 if (strcmp (name, symdef->name) == 0)
2990 {
2991 result = is_global_data_symbol_definition (abfd, isym);
2992 break;
2993 }
2994 }
2995
2996 free (isymbuf);
2997
2998 return result;
2999}
3000\f
5a580b3a
AM
3001/* Add an entry to the .dynamic table. */
3002
3003bfd_boolean
3004_bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3005 bfd_vma tag,
3006 bfd_vma val)
3007{
3008 struct elf_link_hash_table *hash_table;
3009 const struct elf_backend_data *bed;
3010 asection *s;
3011 bfd_size_type newsize;
3012 bfd_byte *newcontents;
3013 Elf_Internal_Dyn dyn;
3014
3015 hash_table = elf_hash_table (info);
3016 if (! is_elf_hash_table (hash_table))
3017 return FALSE;
3018
3019 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3020 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
5a580b3a
AM
3021 BFD_ASSERT (s != NULL);
3022
eea6121a 3023 newsize = s->size + bed->s->sizeof_dyn;
a50b1753 3024 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
5a580b3a
AM
3025 if (newcontents == NULL)
3026 return FALSE;
3027
3028 dyn.d_tag = tag;
3029 dyn.d_un.d_val = val;
eea6121a 3030 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
5a580b3a 3031
eea6121a 3032 s->size = newsize;
5a580b3a
AM
3033 s->contents = newcontents;
3034
3035 return TRUE;
3036}
3037
3038/* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3039 otherwise just check whether one already exists. Returns -1 on error,
3040 1 if a DT_NEEDED tag already exists, and 0 on success. */
3041
4ad4eba5 3042static int
7e9f0867
AM
3043elf_add_dt_needed_tag (bfd *abfd,
3044 struct bfd_link_info *info,
4ad4eba5
AM
3045 const char *soname,
3046 bfd_boolean do_it)
5a580b3a
AM
3047{
3048 struct elf_link_hash_table *hash_table;
5a580b3a
AM
3049 bfd_size_type strindex;
3050
7e9f0867
AM
3051 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3052 return -1;
3053
5a580b3a 3054 hash_table = elf_hash_table (info);
5a580b3a
AM
3055 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3056 if (strindex == (bfd_size_type) -1)
3057 return -1;
3058
02be4619 3059 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
5a580b3a
AM
3060 {
3061 asection *sdyn;
3062 const struct elf_backend_data *bed;
3063 bfd_byte *extdyn;
3064
3065 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3066 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
7e9f0867
AM
3067 if (sdyn != NULL)
3068 for (extdyn = sdyn->contents;
3069 extdyn < sdyn->contents + sdyn->size;
3070 extdyn += bed->s->sizeof_dyn)
3071 {
3072 Elf_Internal_Dyn dyn;
5a580b3a 3073
7e9f0867
AM
3074 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3075 if (dyn.d_tag == DT_NEEDED
3076 && dyn.d_un.d_val == strindex)
3077 {
3078 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3079 return 1;
3080 }
3081 }
5a580b3a
AM
3082 }
3083
3084 if (do_it)
3085 {
7e9f0867
AM
3086 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3087 return -1;
3088
5a580b3a
AM
3089 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3090 return -1;
3091 }
3092 else
3093 /* We were just checking for existence of the tag. */
3094 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3095
3096 return 0;
3097}
3098
010e5ae2
AM
3099static bfd_boolean
3100on_needed_list (const char *soname, struct bfd_link_needed_list *needed)
3101{
3102 for (; needed != NULL; needed = needed->next)
1240be6b
AM
3103 if ((elf_dyn_lib_class (needed->by) & DYN_AS_NEEDED) == 0
3104 && strcmp (soname, needed->name) == 0)
010e5ae2
AM
3105 return TRUE;
3106
3107 return FALSE;
3108}
3109
14160578 3110/* Sort symbol by value, section, and size. */
4ad4eba5
AM
3111static int
3112elf_sort_symbol (const void *arg1, const void *arg2)
5a580b3a
AM
3113{
3114 const struct elf_link_hash_entry *h1;
3115 const struct elf_link_hash_entry *h2;
10b7e05b 3116 bfd_signed_vma vdiff;
5a580b3a
AM
3117
3118 h1 = *(const struct elf_link_hash_entry **) arg1;
3119 h2 = *(const struct elf_link_hash_entry **) arg2;
10b7e05b
NC
3120 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3121 if (vdiff != 0)
3122 return vdiff > 0 ? 1 : -1;
3123 else
3124 {
3125 long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3126 if (sdiff != 0)
3127 return sdiff > 0 ? 1 : -1;
3128 }
14160578
AM
3129 vdiff = h1->size - h2->size;
3130 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
5a580b3a 3131}
4ad4eba5 3132
5a580b3a
AM
3133/* This function is used to adjust offsets into .dynstr for
3134 dynamic symbols. This is called via elf_link_hash_traverse. */
3135
3136static bfd_boolean
3137elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3138{
a50b1753 3139 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
5a580b3a 3140
5a580b3a
AM
3141 if (h->dynindx != -1)
3142 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3143 return TRUE;
3144}
3145
3146/* Assign string offsets in .dynstr, update all structures referencing
3147 them. */
3148
4ad4eba5
AM
3149static bfd_boolean
3150elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
5a580b3a
AM
3151{
3152 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3153 struct elf_link_local_dynamic_entry *entry;
3154 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3155 bfd *dynobj = hash_table->dynobj;
3156 asection *sdyn;
3157 bfd_size_type size;
3158 const struct elf_backend_data *bed;
3159 bfd_byte *extdyn;
3160
3161 _bfd_elf_strtab_finalize (dynstr);
3162 size = _bfd_elf_strtab_size (dynstr);
3163
3164 bed = get_elf_backend_data (dynobj);
3d4d4302 3165 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
5a580b3a
AM
3166 BFD_ASSERT (sdyn != NULL);
3167
3168 /* Update all .dynamic entries referencing .dynstr strings. */
3169 for (extdyn = sdyn->contents;
eea6121a 3170 extdyn < sdyn->contents + sdyn->size;
5a580b3a
AM
3171 extdyn += bed->s->sizeof_dyn)
3172 {
3173 Elf_Internal_Dyn dyn;
3174
3175 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3176 switch (dyn.d_tag)
3177 {
3178 case DT_STRSZ:
3179 dyn.d_un.d_val = size;
3180 break;
3181 case DT_NEEDED:
3182 case DT_SONAME:
3183 case DT_RPATH:
3184 case DT_RUNPATH:
3185 case DT_FILTER:
3186 case DT_AUXILIARY:
7ee314fa
AM
3187 case DT_AUDIT:
3188 case DT_DEPAUDIT:
5a580b3a
AM
3189 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3190 break;
3191 default:
3192 continue;
3193 }
3194 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3195 }
3196
3197 /* Now update local dynamic symbols. */
3198 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3199 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3200 entry->isym.st_name);
3201
3202 /* And the rest of dynamic symbols. */
3203 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3204
3205 /* Adjust version definitions. */
3206 if (elf_tdata (output_bfd)->cverdefs)
3207 {
3208 asection *s;
3209 bfd_byte *p;
3210 bfd_size_type i;
3211 Elf_Internal_Verdef def;
3212 Elf_Internal_Verdaux defaux;
3213
3d4d4302 3214 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
3215 p = s->contents;
3216 do
3217 {
3218 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3219 &def);
3220 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
3221 if (def.vd_aux != sizeof (Elf_External_Verdef))
3222 continue;
5a580b3a
AM
3223 for (i = 0; i < def.vd_cnt; ++i)
3224 {
3225 _bfd_elf_swap_verdaux_in (output_bfd,
3226 (Elf_External_Verdaux *) p, &defaux);
3227 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3228 defaux.vda_name);
3229 _bfd_elf_swap_verdaux_out (output_bfd,
3230 &defaux, (Elf_External_Verdaux *) p);
3231 p += sizeof (Elf_External_Verdaux);
3232 }
3233 }
3234 while (def.vd_next);
3235 }
3236
3237 /* Adjust version references. */
3238 if (elf_tdata (output_bfd)->verref)
3239 {
3240 asection *s;
3241 bfd_byte *p;
3242 bfd_size_type i;
3243 Elf_Internal_Verneed need;
3244 Elf_Internal_Vernaux needaux;
3245
3d4d4302 3246 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
3247 p = s->contents;
3248 do
3249 {
3250 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3251 &need);
3252 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3253 _bfd_elf_swap_verneed_out (output_bfd, &need,
3254 (Elf_External_Verneed *) p);
3255 p += sizeof (Elf_External_Verneed);
3256 for (i = 0; i < need.vn_cnt; ++i)
3257 {
3258 _bfd_elf_swap_vernaux_in (output_bfd,
3259 (Elf_External_Vernaux *) p, &needaux);
3260 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3261 needaux.vna_name);
3262 _bfd_elf_swap_vernaux_out (output_bfd,
3263 &needaux,
3264 (Elf_External_Vernaux *) p);
3265 p += sizeof (Elf_External_Vernaux);
3266 }
3267 }
3268 while (need.vn_next);
3269 }
3270
3271 return TRUE;
3272}
3273\f
13285a1b
AM
3274/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3275 The default is to only match when the INPUT and OUTPUT are exactly
3276 the same target. */
3277
3278bfd_boolean
3279_bfd_elf_default_relocs_compatible (const bfd_target *input,
3280 const bfd_target *output)
3281{
3282 return input == output;
3283}
3284
3285/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3286 This version is used when different targets for the same architecture
3287 are virtually identical. */
3288
3289bfd_boolean
3290_bfd_elf_relocs_compatible (const bfd_target *input,
3291 const bfd_target *output)
3292{
3293 const struct elf_backend_data *obed, *ibed;
3294
3295 if (input == output)
3296 return TRUE;
3297
3298 ibed = xvec_get_elf_backend_data (input);
3299 obed = xvec_get_elf_backend_data (output);
3300
3301 if (ibed->arch != obed->arch)
3302 return FALSE;
3303
3304 /* If both backends are using this function, deem them compatible. */
3305 return ibed->relocs_compatible == obed->relocs_compatible;
3306}
3307
e5034e59
AM
3308/* Make a special call to the linker "notice" function to tell it that
3309 we are about to handle an as-needed lib, or have finished
3310 processing the lib. */
3311
3312bfd_boolean
3313_bfd_elf_notice_as_needed (bfd *ibfd,
3314 struct bfd_link_info *info,
3315 enum notice_asneeded_action act)
3316{
46135103 3317 return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
e5034e59
AM
3318}
3319
4ad4eba5
AM
3320/* Add symbols from an ELF object file to the linker hash table. */
3321
3322static bfd_boolean
3323elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3324{
a0c402a5 3325 Elf_Internal_Ehdr *ehdr;
4ad4eba5
AM
3326 Elf_Internal_Shdr *hdr;
3327 bfd_size_type symcount;
3328 bfd_size_type extsymcount;
3329 bfd_size_type extsymoff;
3330 struct elf_link_hash_entry **sym_hash;
3331 bfd_boolean dynamic;
3332 Elf_External_Versym *extversym = NULL;
3333 Elf_External_Versym *ever;
3334 struct elf_link_hash_entry *weaks;
3335 struct elf_link_hash_entry **nondeflt_vers = NULL;
3336 bfd_size_type nondeflt_vers_cnt = 0;
3337 Elf_Internal_Sym *isymbuf = NULL;
3338 Elf_Internal_Sym *isym;
3339 Elf_Internal_Sym *isymend;
3340 const struct elf_backend_data *bed;
3341 bfd_boolean add_needed;
66eb6687 3342 struct elf_link_hash_table *htab;
4ad4eba5 3343 bfd_size_type amt;
66eb6687 3344 void *alloc_mark = NULL;
4f87808c
AM
3345 struct bfd_hash_entry **old_table = NULL;
3346 unsigned int old_size = 0;
3347 unsigned int old_count = 0;
66eb6687 3348 void *old_tab = NULL;
66eb6687
AM
3349 void *old_ent;
3350 struct bfd_link_hash_entry *old_undefs = NULL;
3351 struct bfd_link_hash_entry *old_undefs_tail = NULL;
3352 long old_dynsymcount = 0;
a4542f1b 3353 bfd_size_type old_dynstr_size = 0;
66eb6687 3354 size_t tabsize = 0;
db6a5d5f 3355 asection *s;
29a9f53e 3356 bfd_boolean just_syms;
4ad4eba5 3357
66eb6687 3358 htab = elf_hash_table (info);
4ad4eba5 3359 bed = get_elf_backend_data (abfd);
4ad4eba5
AM
3360
3361 if ((abfd->flags & DYNAMIC) == 0)
3362 dynamic = FALSE;
3363 else
3364 {
3365 dynamic = TRUE;
3366
3367 /* You can't use -r against a dynamic object. Also, there's no
3368 hope of using a dynamic object which does not exactly match
3369 the format of the output file. */
3370 if (info->relocatable
66eb6687 3371 || !is_elf_hash_table (htab)
f13a99db 3372 || info->output_bfd->xvec != abfd->xvec)
4ad4eba5 3373 {
9a0789ec
NC
3374 if (info->relocatable)
3375 bfd_set_error (bfd_error_invalid_operation);
3376 else
3377 bfd_set_error (bfd_error_wrong_format);
4ad4eba5
AM
3378 goto error_return;
3379 }
3380 }
3381
a0c402a5
L
3382 ehdr = elf_elfheader (abfd);
3383 if (info->warn_alternate_em
3384 && bed->elf_machine_code != ehdr->e_machine
3385 && ((bed->elf_machine_alt1 != 0
3386 && ehdr->e_machine == bed->elf_machine_alt1)
3387 || (bed->elf_machine_alt2 != 0
3388 && ehdr->e_machine == bed->elf_machine_alt2)))
3389 info->callbacks->einfo
3390 (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"),
3391 ehdr->e_machine, abfd, bed->elf_machine_code);
3392
4ad4eba5
AM
3393 /* As a GNU extension, any input sections which are named
3394 .gnu.warning.SYMBOL are treated as warning symbols for the given
3395 symbol. This differs from .gnu.warning sections, which generate
3396 warnings when they are included in an output file. */
dd98f8d2 3397 /* PR 12761: Also generate this warning when building shared libraries. */
db6a5d5f 3398 for (s = abfd->sections; s != NULL; s = s->next)
4ad4eba5 3399 {
db6a5d5f 3400 const char *name;
4ad4eba5 3401
db6a5d5f
AM
3402 name = bfd_get_section_name (abfd, s);
3403 if (CONST_STRNEQ (name, ".gnu.warning."))
4ad4eba5 3404 {
db6a5d5f
AM
3405 char *msg;
3406 bfd_size_type sz;
3407
3408 name += sizeof ".gnu.warning." - 1;
3409
3410 /* If this is a shared object, then look up the symbol
3411 in the hash table. If it is there, and it is already
3412 been defined, then we will not be using the entry
3413 from this shared object, so we don't need to warn.
3414 FIXME: If we see the definition in a regular object
3415 later on, we will warn, but we shouldn't. The only
3416 fix is to keep track of what warnings we are supposed
3417 to emit, and then handle them all at the end of the
3418 link. */
3419 if (dynamic)
4ad4eba5 3420 {
db6a5d5f
AM
3421 struct elf_link_hash_entry *h;
3422
3423 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3424
3425 /* FIXME: What about bfd_link_hash_common? */
3426 if (h != NULL
3427 && (h->root.type == bfd_link_hash_defined
3428 || h->root.type == bfd_link_hash_defweak))
3429 continue;
3430 }
4ad4eba5 3431
db6a5d5f
AM
3432 sz = s->size;
3433 msg = (char *) bfd_alloc (abfd, sz + 1);
3434 if (msg == NULL)
3435 goto error_return;
4ad4eba5 3436
db6a5d5f
AM
3437 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3438 goto error_return;
4ad4eba5 3439
db6a5d5f 3440 msg[sz] = '\0';
4ad4eba5 3441
db6a5d5f
AM
3442 if (! (_bfd_generic_link_add_one_symbol
3443 (info, abfd, name, BSF_WARNING, s, 0, msg,
3444 FALSE, bed->collect, NULL)))
3445 goto error_return;
4ad4eba5 3446
db6a5d5f
AM
3447 if (!info->relocatable && info->executable)
3448 {
3449 /* Clobber the section size so that the warning does
3450 not get copied into the output file. */
3451 s->size = 0;
11d2f718 3452
db6a5d5f
AM
3453 /* Also set SEC_EXCLUDE, so that symbols defined in
3454 the warning section don't get copied to the output. */
3455 s->flags |= SEC_EXCLUDE;
4ad4eba5
AM
3456 }
3457 }
3458 }
3459
29a9f53e
L
3460 just_syms = ((s = abfd->sections) != NULL
3461 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
3462
4ad4eba5
AM
3463 add_needed = TRUE;
3464 if (! dynamic)
3465 {
3466 /* If we are creating a shared library, create all the dynamic
3467 sections immediately. We need to attach them to something,
3468 so we attach them to this BFD, provided it is the right
29a9f53e
L
3469 format and is not from ld --just-symbols. FIXME: If there
3470 are no input BFD's of the same format as the output, we can't
3471 make a shared library. */
3472 if (!just_syms
3473 && info->shared
66eb6687 3474 && is_elf_hash_table (htab)
f13a99db 3475 && info->output_bfd->xvec == abfd->xvec
66eb6687 3476 && !htab->dynamic_sections_created)
4ad4eba5
AM
3477 {
3478 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3479 goto error_return;
3480 }
3481 }
66eb6687 3482 else if (!is_elf_hash_table (htab))
4ad4eba5
AM
3483 goto error_return;
3484 else
3485 {
4ad4eba5 3486 const char *soname = NULL;
7ee314fa 3487 char *audit = NULL;
4ad4eba5
AM
3488 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3489 int ret;
3490
3491 /* ld --just-symbols and dynamic objects don't mix very well.
92fd189d 3492 ld shouldn't allow it. */
29a9f53e 3493 if (just_syms)
92fd189d 3494 abort ();
4ad4eba5
AM
3495
3496 /* If this dynamic lib was specified on the command line with
3497 --as-needed in effect, then we don't want to add a DT_NEEDED
3498 tag unless the lib is actually used. Similary for libs brought
e56f61be
L
3499 in by another lib's DT_NEEDED. When --no-add-needed is used
3500 on a dynamic lib, we don't want to add a DT_NEEDED entry for
3501 any dynamic library in DT_NEEDED tags in the dynamic lib at
3502 all. */
3503 add_needed = (elf_dyn_lib_class (abfd)
3504 & (DYN_AS_NEEDED | DYN_DT_NEEDED
3505 | DYN_NO_NEEDED)) == 0;
4ad4eba5
AM
3506
3507 s = bfd_get_section_by_name (abfd, ".dynamic");
3508 if (s != NULL)
3509 {
3510 bfd_byte *dynbuf;
3511 bfd_byte *extdyn;
cb33740c 3512 unsigned int elfsec;
4ad4eba5
AM
3513 unsigned long shlink;
3514
eea6121a 3515 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
f8703194
L
3516 {
3517error_free_dyn:
3518 free (dynbuf);
3519 goto error_return;
3520 }
4ad4eba5
AM
3521
3522 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 3523 if (elfsec == SHN_BAD)
4ad4eba5
AM
3524 goto error_free_dyn;
3525 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3526
3527 for (extdyn = dynbuf;
eea6121a 3528 extdyn < dynbuf + s->size;
4ad4eba5
AM
3529 extdyn += bed->s->sizeof_dyn)
3530 {
3531 Elf_Internal_Dyn dyn;
3532
3533 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3534 if (dyn.d_tag == DT_SONAME)
3535 {
3536 unsigned int tagv = dyn.d_un.d_val;
3537 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3538 if (soname == NULL)
3539 goto error_free_dyn;
3540 }
3541 if (dyn.d_tag == DT_NEEDED)
3542 {
3543 struct bfd_link_needed_list *n, **pn;
3544 char *fnm, *anm;
3545 unsigned int tagv = dyn.d_un.d_val;
3546
3547 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3548 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3549 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3550 if (n == NULL || fnm == NULL)
3551 goto error_free_dyn;
3552 amt = strlen (fnm) + 1;
a50b1753 3553 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3554 if (anm == NULL)
3555 goto error_free_dyn;
3556 memcpy (anm, fnm, amt);
3557 n->name = anm;
3558 n->by = abfd;
3559 n->next = NULL;
66eb6687 3560 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
3561 ;
3562 *pn = n;
3563 }
3564 if (dyn.d_tag == DT_RUNPATH)
3565 {
3566 struct bfd_link_needed_list *n, **pn;
3567 char *fnm, *anm;
3568 unsigned int tagv = dyn.d_un.d_val;
3569
3570 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3571 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3572 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3573 if (n == NULL || fnm == NULL)
3574 goto error_free_dyn;
3575 amt = strlen (fnm) + 1;
a50b1753 3576 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3577 if (anm == NULL)
3578 goto error_free_dyn;
3579 memcpy (anm, fnm, amt);
3580 n->name = anm;
3581 n->by = abfd;
3582 n->next = NULL;
3583 for (pn = & runpath;
3584 *pn != NULL;
3585 pn = &(*pn)->next)
3586 ;
3587 *pn = n;
3588 }
3589 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
3590 if (!runpath && dyn.d_tag == DT_RPATH)
3591 {
3592 struct bfd_link_needed_list *n, **pn;
3593 char *fnm, *anm;
3594 unsigned int tagv = dyn.d_un.d_val;
3595
3596 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3597 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3598 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3599 if (n == NULL || fnm == NULL)
3600 goto error_free_dyn;
3601 amt = strlen (fnm) + 1;
a50b1753 3602 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5 3603 if (anm == NULL)
f8703194 3604 goto error_free_dyn;
4ad4eba5
AM
3605 memcpy (anm, fnm, amt);
3606 n->name = anm;
3607 n->by = abfd;
3608 n->next = NULL;
3609 for (pn = & rpath;
3610 *pn != NULL;
3611 pn = &(*pn)->next)
3612 ;
3613 *pn = n;
3614 }
7ee314fa
AM
3615 if (dyn.d_tag == DT_AUDIT)
3616 {
3617 unsigned int tagv = dyn.d_un.d_val;
3618 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3619 }
4ad4eba5
AM
3620 }
3621
3622 free (dynbuf);
3623 }
3624
3625 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
3626 frees all more recently bfd_alloc'd blocks as well. */
3627 if (runpath)
3628 rpath = runpath;
3629
3630 if (rpath)
3631 {
3632 struct bfd_link_needed_list **pn;
66eb6687 3633 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
3634 ;
3635 *pn = rpath;
3636 }
3637
3638 /* We do not want to include any of the sections in a dynamic
3639 object in the output file. We hack by simply clobbering the
3640 list of sections in the BFD. This could be handled more
3641 cleanly by, say, a new section flag; the existing
3642 SEC_NEVER_LOAD flag is not the one we want, because that one
3643 still implies that the section takes up space in the output
3644 file. */
3645 bfd_section_list_clear (abfd);
3646
4ad4eba5
AM
3647 /* Find the name to use in a DT_NEEDED entry that refers to this
3648 object. If the object has a DT_SONAME entry, we use it.
3649 Otherwise, if the generic linker stuck something in
3650 elf_dt_name, we use that. Otherwise, we just use the file
3651 name. */
3652 if (soname == NULL || *soname == '\0')
3653 {
3654 soname = elf_dt_name (abfd);
3655 if (soname == NULL || *soname == '\0')
3656 soname = bfd_get_filename (abfd);
3657 }
3658
3659 /* Save the SONAME because sometimes the linker emulation code
3660 will need to know it. */
3661 elf_dt_name (abfd) = soname;
3662
7e9f0867 3663 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
3664 if (ret < 0)
3665 goto error_return;
3666
3667 /* If we have already included this dynamic object in the
3668 link, just ignore it. There is no reason to include a
3669 particular dynamic object more than once. */
3670 if (ret > 0)
3671 return TRUE;
7ee314fa
AM
3672
3673 /* Save the DT_AUDIT entry for the linker emulation code. */
68ffbac6 3674 elf_dt_audit (abfd) = audit;
4ad4eba5
AM
3675 }
3676
3677 /* If this is a dynamic object, we always link against the .dynsym
3678 symbol table, not the .symtab symbol table. The dynamic linker
3679 will only see the .dynsym symbol table, so there is no reason to
3680 look at .symtab for a dynamic object. */
3681
3682 if (! dynamic || elf_dynsymtab (abfd) == 0)
3683 hdr = &elf_tdata (abfd)->symtab_hdr;
3684 else
3685 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3686
3687 symcount = hdr->sh_size / bed->s->sizeof_sym;
3688
3689 /* The sh_info field of the symtab header tells us where the
3690 external symbols start. We don't care about the local symbols at
3691 this point. */
3692 if (elf_bad_symtab (abfd))
3693 {
3694 extsymcount = symcount;
3695 extsymoff = 0;
3696 }
3697 else
3698 {
3699 extsymcount = symcount - hdr->sh_info;
3700 extsymoff = hdr->sh_info;
3701 }
3702
f45794cb 3703 sym_hash = elf_sym_hashes (abfd);
012b2306 3704 if (extsymcount != 0)
4ad4eba5
AM
3705 {
3706 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3707 NULL, NULL, NULL);
3708 if (isymbuf == NULL)
3709 goto error_return;
3710
4ad4eba5 3711 if (sym_hash == NULL)
012b2306
AM
3712 {
3713 /* We store a pointer to the hash table entry for each
3714 external symbol. */
3715 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
3716 sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
3717 if (sym_hash == NULL)
3718 goto error_free_sym;
3719 elf_sym_hashes (abfd) = sym_hash;
3720 }
4ad4eba5
AM
3721 }
3722
3723 if (dynamic)
3724 {
3725 /* Read in any version definitions. */
fc0e6df6
PB
3726 if (!_bfd_elf_slurp_version_tables (abfd,
3727 info->default_imported_symver))
4ad4eba5
AM
3728 goto error_free_sym;
3729
3730 /* Read in the symbol versions, but don't bother to convert them
3731 to internal format. */
3732 if (elf_dynversym (abfd) != 0)
3733 {
3734 Elf_Internal_Shdr *versymhdr;
3735
3736 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
a50b1753 3737 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
4ad4eba5
AM
3738 if (extversym == NULL)
3739 goto error_free_sym;
3740 amt = versymhdr->sh_size;
3741 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
3742 || bfd_bread (extversym, amt, abfd) != amt)
3743 goto error_free_vers;
3744 }
3745 }
3746
66eb6687
AM
3747 /* If we are loading an as-needed shared lib, save the symbol table
3748 state before we start adding symbols. If the lib turns out
3749 to be unneeded, restore the state. */
3750 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
3751 {
3752 unsigned int i;
3753 size_t entsize;
3754
3755 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
3756 {
3757 struct bfd_hash_entry *p;
2de92251 3758 struct elf_link_hash_entry *h;
66eb6687
AM
3759
3760 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
2de92251
AM
3761 {
3762 h = (struct elf_link_hash_entry *) p;
3763 entsize += htab->root.table.entsize;
3764 if (h->root.type == bfd_link_hash_warning)
3765 entsize += htab->root.table.entsize;
3766 }
66eb6687
AM
3767 }
3768
3769 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
f45794cb 3770 old_tab = bfd_malloc (tabsize + entsize);
66eb6687
AM
3771 if (old_tab == NULL)
3772 goto error_free_vers;
3773
3774 /* Remember the current objalloc pointer, so that all mem for
3775 symbols added can later be reclaimed. */
3776 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
3777 if (alloc_mark == NULL)
3778 goto error_free_vers;
3779
5061a885
AM
3780 /* Make a special call to the linker "notice" function to
3781 tell it that we are about to handle an as-needed lib. */
e5034e59 3782 if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
9af2a943 3783 goto error_free_vers;
5061a885 3784
f45794cb
AM
3785 /* Clone the symbol table. Remember some pointers into the
3786 symbol table, and dynamic symbol count. */
3787 old_ent = (char *) old_tab + tabsize;
66eb6687 3788 memcpy (old_tab, htab->root.table.table, tabsize);
66eb6687
AM
3789 old_undefs = htab->root.undefs;
3790 old_undefs_tail = htab->root.undefs_tail;
4f87808c
AM
3791 old_table = htab->root.table.table;
3792 old_size = htab->root.table.size;
3793 old_count = htab->root.table.count;
66eb6687 3794 old_dynsymcount = htab->dynsymcount;
a4542f1b 3795 old_dynstr_size = _bfd_elf_strtab_size (htab->dynstr);
66eb6687
AM
3796
3797 for (i = 0; i < htab->root.table.size; i++)
3798 {
3799 struct bfd_hash_entry *p;
2de92251 3800 struct elf_link_hash_entry *h;
66eb6687
AM
3801
3802 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3803 {
3804 memcpy (old_ent, p, htab->root.table.entsize);
3805 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
3806 h = (struct elf_link_hash_entry *) p;
3807 if (h->root.type == bfd_link_hash_warning)
3808 {
3809 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
3810 old_ent = (char *) old_ent + htab->root.table.entsize;
3811 }
66eb6687
AM
3812 }
3813 }
3814 }
4ad4eba5 3815
66eb6687 3816 weaks = NULL;
4ad4eba5
AM
3817 ever = extversym != NULL ? extversym + extsymoff : NULL;
3818 for (isym = isymbuf, isymend = isymbuf + extsymcount;
3819 isym < isymend;
3820 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
3821 {
3822 int bind;
3823 bfd_vma value;
af44c138 3824 asection *sec, *new_sec;
4ad4eba5
AM
3825 flagword flags;
3826 const char *name;
3827 struct elf_link_hash_entry *h;
90c984fc 3828 struct elf_link_hash_entry *hi;
4ad4eba5
AM
3829 bfd_boolean definition;
3830 bfd_boolean size_change_ok;
3831 bfd_boolean type_change_ok;
3832 bfd_boolean new_weakdef;
37a9e49a
L
3833 bfd_boolean new_weak;
3834 bfd_boolean old_weak;
4ad4eba5 3835 bfd_boolean override;
a4d8e49b 3836 bfd_boolean common;
4ad4eba5
AM
3837 unsigned int old_alignment;
3838 bfd *old_bfd;
3839
3840 override = FALSE;
3841
3842 flags = BSF_NO_FLAGS;
3843 sec = NULL;
3844 value = isym->st_value;
a4d8e49b 3845 common = bed->common_definition (isym);
4ad4eba5
AM
3846
3847 bind = ELF_ST_BIND (isym->st_info);
3e7a7d11 3848 switch (bind)
4ad4eba5 3849 {
3e7a7d11 3850 case STB_LOCAL:
4ad4eba5
AM
3851 /* This should be impossible, since ELF requires that all
3852 global symbols follow all local symbols, and that sh_info
3853 point to the first global symbol. Unfortunately, Irix 5
3854 screws this up. */
3855 continue;
3e7a7d11
NC
3856
3857 case STB_GLOBAL:
a4d8e49b 3858 if (isym->st_shndx != SHN_UNDEF && !common)
4ad4eba5 3859 flags = BSF_GLOBAL;
3e7a7d11
NC
3860 break;
3861
3862 case STB_WEAK:
3863 flags = BSF_WEAK;
3864 break;
3865
3866 case STB_GNU_UNIQUE:
3867 flags = BSF_GNU_UNIQUE;
3868 break;
3869
3870 default:
4ad4eba5 3871 /* Leave it up to the processor backend. */
3e7a7d11 3872 break;
4ad4eba5
AM
3873 }
3874
3875 if (isym->st_shndx == SHN_UNDEF)
3876 sec = bfd_und_section_ptr;
cb33740c
AM
3877 else if (isym->st_shndx == SHN_ABS)
3878 sec = bfd_abs_section_ptr;
3879 else if (isym->st_shndx == SHN_COMMON)
3880 {
3881 sec = bfd_com_section_ptr;
3882 /* What ELF calls the size we call the value. What ELF
3883 calls the value we call the alignment. */
3884 value = isym->st_size;
3885 }
3886 else
4ad4eba5
AM
3887 {
3888 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
3889 if (sec == NULL)
3890 sec = bfd_abs_section_ptr;
dbaa2011 3891 else if (discarded_section (sec))
529fcb95 3892 {
e5d08002
L
3893 /* Symbols from discarded section are undefined. We keep
3894 its visibility. */
529fcb95
PB
3895 sec = bfd_und_section_ptr;
3896 isym->st_shndx = SHN_UNDEF;
3897 }
4ad4eba5
AM
3898 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
3899 value -= sec->vma;
3900 }
4ad4eba5
AM
3901
3902 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3903 isym->st_name);
3904 if (name == NULL)
3905 goto error_free_vers;
3906
3907 if (isym->st_shndx == SHN_COMMON
02d00247
AM
3908 && (abfd->flags & BFD_PLUGIN) != 0)
3909 {
3910 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
3911
3912 if (xc == NULL)
3913 {
3914 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
3915 | SEC_EXCLUDE);
3916 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
3917 if (xc == NULL)
3918 goto error_free_vers;
3919 }
3920 sec = xc;
3921 }
3922 else if (isym->st_shndx == SHN_COMMON
3923 && ELF_ST_TYPE (isym->st_info) == STT_TLS
3924 && !info->relocatable)
4ad4eba5
AM
3925 {
3926 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
3927
3928 if (tcomm == NULL)
3929 {
02d00247
AM
3930 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
3931 | SEC_LINKER_CREATED);
3932 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3496cb2a 3933 if (tcomm == NULL)
4ad4eba5
AM
3934 goto error_free_vers;
3935 }
3936 sec = tcomm;
3937 }
66eb6687 3938 else if (bed->elf_add_symbol_hook)
4ad4eba5 3939 {
66eb6687
AM
3940 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
3941 &sec, &value))
4ad4eba5
AM
3942 goto error_free_vers;
3943
3944 /* The hook function sets the name to NULL if this symbol
3945 should be skipped for some reason. */
3946 if (name == NULL)
3947 continue;
3948 }
3949
3950 /* Sanity check that all possibilities were handled. */
3951 if (sec == NULL)
3952 {
3953 bfd_set_error (bfd_error_bad_value);
3954 goto error_free_vers;
3955 }
3956
191c0c42
AM
3957 /* Silently discard TLS symbols from --just-syms. There's
3958 no way to combine a static TLS block with a new TLS block
3959 for this executable. */
3960 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
3961 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3962 continue;
3963
4ad4eba5
AM
3964 if (bfd_is_und_section (sec)
3965 || bfd_is_com_section (sec))
3966 definition = FALSE;
3967 else
3968 definition = TRUE;
3969
3970 size_change_ok = FALSE;
66eb6687 3971 type_change_ok = bed->type_change_ok;
37a9e49a 3972 old_weak = FALSE;
4ad4eba5
AM
3973 old_alignment = 0;
3974 old_bfd = NULL;
af44c138 3975 new_sec = sec;
4ad4eba5 3976
66eb6687 3977 if (is_elf_hash_table (htab))
4ad4eba5
AM
3978 {
3979 Elf_Internal_Versym iver;
3980 unsigned int vernum = 0;
3981 bfd_boolean skip;
3982
fc0e6df6 3983 if (ever == NULL)
4ad4eba5 3984 {
fc0e6df6
PB
3985 if (info->default_imported_symver)
3986 /* Use the default symbol version created earlier. */
3987 iver.vs_vers = elf_tdata (abfd)->cverdefs;
3988 else
3989 iver.vs_vers = 0;
3990 }
3991 else
3992 _bfd_elf_swap_versym_in (abfd, ever, &iver);
3993
3994 vernum = iver.vs_vers & VERSYM_VERSION;
3995
3996 /* If this is a hidden symbol, or if it is not version
3997 1, we append the version name to the symbol name.
cc86ff91
EB
3998 However, we do not modify a non-hidden absolute symbol
3999 if it is not a function, because it might be the version
4000 symbol itself. FIXME: What if it isn't? */
fc0e6df6 4001 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
fcb93ecf
PB
4002 || (vernum > 1
4003 && (!bfd_is_abs_section (sec)
4004 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
fc0e6df6
PB
4005 {
4006 const char *verstr;
4007 size_t namelen, verlen, newlen;
4008 char *newname, *p;
4009
4010 if (isym->st_shndx != SHN_UNDEF)
4ad4eba5 4011 {
fc0e6df6
PB
4012 if (vernum > elf_tdata (abfd)->cverdefs)
4013 verstr = NULL;
4014 else if (vernum > 1)
4015 verstr =
4016 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4017 else
4018 verstr = "";
4ad4eba5 4019
fc0e6df6 4020 if (verstr == NULL)
4ad4eba5 4021 {
fc0e6df6
PB
4022 (*_bfd_error_handler)
4023 (_("%B: %s: invalid version %u (max %d)"),
4024 abfd, name, vernum,
4025 elf_tdata (abfd)->cverdefs);
4026 bfd_set_error (bfd_error_bad_value);
4027 goto error_free_vers;
4ad4eba5 4028 }
fc0e6df6
PB
4029 }
4030 else
4031 {
4032 /* We cannot simply test for the number of
4033 entries in the VERNEED section since the
4034 numbers for the needed versions do not start
4035 at 0. */
4036 Elf_Internal_Verneed *t;
4037
4038 verstr = NULL;
4039 for (t = elf_tdata (abfd)->verref;
4040 t != NULL;
4041 t = t->vn_nextref)
4ad4eba5 4042 {
fc0e6df6 4043 Elf_Internal_Vernaux *a;
4ad4eba5 4044
fc0e6df6
PB
4045 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4046 {
4047 if (a->vna_other == vernum)
4ad4eba5 4048 {
fc0e6df6
PB
4049 verstr = a->vna_nodename;
4050 break;
4ad4eba5 4051 }
4ad4eba5 4052 }
fc0e6df6
PB
4053 if (a != NULL)
4054 break;
4055 }
4056 if (verstr == NULL)
4057 {
4058 (*_bfd_error_handler)
4059 (_("%B: %s: invalid needed version %d"),
4060 abfd, name, vernum);
4061 bfd_set_error (bfd_error_bad_value);
4062 goto error_free_vers;
4ad4eba5 4063 }
4ad4eba5 4064 }
fc0e6df6
PB
4065
4066 namelen = strlen (name);
4067 verlen = strlen (verstr);
4068 newlen = namelen + verlen + 2;
4069 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4070 && isym->st_shndx != SHN_UNDEF)
4071 ++newlen;
4072
a50b1753 4073 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
fc0e6df6
PB
4074 if (newname == NULL)
4075 goto error_free_vers;
4076 memcpy (newname, name, namelen);
4077 p = newname + namelen;
4078 *p++ = ELF_VER_CHR;
4079 /* If this is a defined non-hidden version symbol,
4080 we add another @ to the name. This indicates the
4081 default version of the symbol. */
4082 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4083 && isym->st_shndx != SHN_UNDEF)
4084 *p++ = ELF_VER_CHR;
4085 memcpy (p, verstr, verlen + 1);
4086
4087 name = newname;
4ad4eba5
AM
4088 }
4089
cd3416da
AM
4090 /* If this symbol has default visibility and the user has
4091 requested we not re-export it, then mark it as hidden. */
4092 if (definition
4093 && !dynamic
4094 && (abfd->no_export
4095 || (abfd->my_archive && abfd->my_archive->no_export))
4096 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4097 isym->st_other = (STV_HIDDEN
4098 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4099
4f3fedcf
AM
4100 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4101 sym_hash, &old_bfd, &old_weak,
4102 &old_alignment, &skip, &override,
4ad4eba5
AM
4103 &type_change_ok, &size_change_ok))
4104 goto error_free_vers;
4105
4106 if (skip)
4107 continue;
4108
4109 if (override)
4110 definition = FALSE;
4111
4112 h = *sym_hash;
4113 while (h->root.type == bfd_link_hash_indirect
4114 || h->root.type == bfd_link_hash_warning)
4115 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4116
4ad4eba5 4117 if (elf_tdata (abfd)->verdef != NULL
4ad4eba5
AM
4118 && vernum > 1
4119 && definition)
4120 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4121 }
4122
4123 if (! (_bfd_generic_link_add_one_symbol
66eb6687 4124 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4ad4eba5
AM
4125 (struct bfd_link_hash_entry **) sym_hash)))
4126 goto error_free_vers;
4127
4128 h = *sym_hash;
90c984fc
L
4129 /* We need to make sure that indirect symbol dynamic flags are
4130 updated. */
4131 hi = h;
4ad4eba5
AM
4132 while (h->root.type == bfd_link_hash_indirect
4133 || h->root.type == bfd_link_hash_warning)
4134 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3e7a7d11 4135
4ad4eba5
AM
4136 *sym_hash = h;
4137
37a9e49a 4138 new_weak = (flags & BSF_WEAK) != 0;
4ad4eba5
AM
4139 new_weakdef = FALSE;
4140 if (dynamic
4141 && definition
37a9e49a 4142 && new_weak
fcb93ecf 4143 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
66eb6687 4144 && is_elf_hash_table (htab)
f6e332e6 4145 && h->u.weakdef == NULL)
4ad4eba5
AM
4146 {
4147 /* Keep a list of all weak defined non function symbols from
4148 a dynamic object, using the weakdef field. Later in this
4149 function we will set the weakdef field to the correct
4150 value. We only put non-function symbols from dynamic
4151 objects on this list, because that happens to be the only
4152 time we need to know the normal symbol corresponding to a
4153 weak symbol, and the information is time consuming to
4154 figure out. If the weakdef field is not already NULL,
4155 then this symbol was already defined by some previous
4156 dynamic object, and we will be using that previous
4157 definition anyhow. */
4158
f6e332e6 4159 h->u.weakdef = weaks;
4ad4eba5
AM
4160 weaks = h;
4161 new_weakdef = TRUE;
4162 }
4163
4164 /* Set the alignment of a common symbol. */
a4d8e49b 4165 if ((common || bfd_is_com_section (sec))
4ad4eba5
AM
4166 && h->root.type == bfd_link_hash_common)
4167 {
4168 unsigned int align;
4169
a4d8e49b 4170 if (common)
af44c138
L
4171 align = bfd_log2 (isym->st_value);
4172 else
4173 {
4174 /* The new symbol is a common symbol in a shared object.
4175 We need to get the alignment from the section. */
4176 align = new_sec->alignment_power;
4177 }
595213d4 4178 if (align > old_alignment)
4ad4eba5
AM
4179 h->root.u.c.p->alignment_power = align;
4180 else
4181 h->root.u.c.p->alignment_power = old_alignment;
4182 }
4183
66eb6687 4184 if (is_elf_hash_table (htab))
4ad4eba5 4185 {
4f3fedcf
AM
4186 /* Set a flag in the hash table entry indicating the type of
4187 reference or definition we just found. A dynamic symbol
4188 is one which is referenced or defined by both a regular
4189 object and a shared object. */
4190 bfd_boolean dynsym = FALSE;
4191
4192 /* Plugin symbols aren't normal. Don't set def_regular or
4193 ref_regular for them, or make them dynamic. */
4194 if ((abfd->flags & BFD_PLUGIN) != 0)
4195 ;
4196 else if (! dynamic)
4197 {
4198 if (! definition)
4199 {
4200 h->ref_regular = 1;
4201 if (bind != STB_WEAK)
4202 h->ref_regular_nonweak = 1;
4203 }
4204 else
4205 {
4206 h->def_regular = 1;
4207 if (h->def_dynamic)
4208 {
4209 h->def_dynamic = 0;
4210 h->ref_dynamic = 1;
4211 }
4212 }
4213
4214 /* If the indirect symbol has been forced local, don't
4215 make the real symbol dynamic. */
4216 if ((h == hi || !hi->forced_local)
4217 && (! info->executable
4218 || h->def_dynamic
4219 || h->ref_dynamic))
4220 dynsym = TRUE;
4221 }
4222 else
4223 {
4224 if (! definition)
4225 {
4226 h->ref_dynamic = 1;
4227 hi->ref_dynamic = 1;
4228 }
4229 else
4230 {
4231 h->def_dynamic = 1;
4232 hi->def_dynamic = 1;
4233 }
4234
4235 /* If the indirect symbol has been forced local, don't
4236 make the real symbol dynamic. */
4237 if ((h == hi || !hi->forced_local)
4238 && (h->def_regular
4239 || h->ref_regular
4240 || (h->u.weakdef != NULL
4241 && ! new_weakdef
4242 && h->u.weakdef->dynindx != -1)))
4243 dynsym = TRUE;
4244 }
4245
4246 /* Check to see if we need to add an indirect symbol for
4247 the default name. */
4248 if (definition
4249 || (!override && h->root.type == bfd_link_hash_common))
4250 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4251 sec, value, &old_bfd, &dynsym))
4252 goto error_free_vers;
4ad4eba5
AM
4253
4254 /* Check the alignment when a common symbol is involved. This
4255 can change when a common symbol is overridden by a normal
4256 definition or a common symbol is ignored due to the old
4257 normal definition. We need to make sure the maximum
4258 alignment is maintained. */
a4d8e49b 4259 if ((old_alignment || common)
4ad4eba5
AM
4260 && h->root.type != bfd_link_hash_common)
4261 {
4262 unsigned int common_align;
4263 unsigned int normal_align;
4264 unsigned int symbol_align;
4265 bfd *normal_bfd;
4266 bfd *common_bfd;
4267
3a81e825
AM
4268 BFD_ASSERT (h->root.type == bfd_link_hash_defined
4269 || h->root.type == bfd_link_hash_defweak);
4270
4ad4eba5
AM
4271 symbol_align = ffs (h->root.u.def.value) - 1;
4272 if (h->root.u.def.section->owner != NULL
4273 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
4274 {
4275 normal_align = h->root.u.def.section->alignment_power;
4276 if (normal_align > symbol_align)
4277 normal_align = symbol_align;
4278 }
4279 else
4280 normal_align = symbol_align;
4281
4282 if (old_alignment)
4283 {
4284 common_align = old_alignment;
4285 common_bfd = old_bfd;
4286 normal_bfd = abfd;
4287 }
4288 else
4289 {
4290 common_align = bfd_log2 (isym->st_value);
4291 common_bfd = abfd;
4292 normal_bfd = old_bfd;
4293 }
4294
4295 if (normal_align < common_align)
d07676f8
NC
4296 {
4297 /* PR binutils/2735 */
4298 if (normal_bfd == NULL)
4299 (*_bfd_error_handler)
4f3fedcf
AM
4300 (_("Warning: alignment %u of common symbol `%s' in %B is"
4301 " greater than the alignment (%u) of its section %A"),
d07676f8
NC
4302 common_bfd, h->root.u.def.section,
4303 1 << common_align, name, 1 << normal_align);
4304 else
4305 (*_bfd_error_handler)
4306 (_("Warning: alignment %u of symbol `%s' in %B"
4307 " is smaller than %u in %B"),
4308 normal_bfd, common_bfd,
4309 1 << normal_align, name, 1 << common_align);
4310 }
4ad4eba5
AM
4311 }
4312
83ad0046 4313 /* Remember the symbol size if it isn't undefined. */
3a81e825
AM
4314 if (isym->st_size != 0
4315 && isym->st_shndx != SHN_UNDEF
4ad4eba5
AM
4316 && (definition || h->size == 0))
4317 {
83ad0046
L
4318 if (h->size != 0
4319 && h->size != isym->st_size
4320 && ! size_change_ok)
4ad4eba5 4321 (*_bfd_error_handler)
d003868e
AM
4322 (_("Warning: size of symbol `%s' changed"
4323 " from %lu in %B to %lu in %B"),
4324 old_bfd, abfd,
4ad4eba5 4325 name, (unsigned long) h->size,
d003868e 4326 (unsigned long) isym->st_size);
4ad4eba5
AM
4327
4328 h->size = isym->st_size;
4329 }
4330
4331 /* If this is a common symbol, then we always want H->SIZE
4332 to be the size of the common symbol. The code just above
4333 won't fix the size if a common symbol becomes larger. We
4334 don't warn about a size change here, because that is
4f3fedcf 4335 covered by --warn-common. Allow changes between different
fcb93ecf 4336 function types. */
4ad4eba5
AM
4337 if (h->root.type == bfd_link_hash_common)
4338 h->size = h->root.u.c.size;
4339
4340 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
37a9e49a
L
4341 && ((definition && !new_weak)
4342 || (old_weak && h->root.type == bfd_link_hash_common)
4343 || h->type == STT_NOTYPE))
4ad4eba5 4344 {
2955ec4c
L
4345 unsigned int type = ELF_ST_TYPE (isym->st_info);
4346
4347 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4348 symbol. */
4349 if (type == STT_GNU_IFUNC
4350 && (abfd->flags & DYNAMIC) != 0)
4351 type = STT_FUNC;
4ad4eba5 4352
2955ec4c
L
4353 if (h->type != type)
4354 {
4355 if (h->type != STT_NOTYPE && ! type_change_ok)
4356 (*_bfd_error_handler)
4357 (_("Warning: type of symbol `%s' changed"
4358 " from %d to %d in %B"),
4359 abfd, name, h->type, type);
4360
4361 h->type = type;
4362 }
4ad4eba5
AM
4363 }
4364
54ac0771
L
4365 /* Merge st_other field. */
4366 elf_merge_st_other (abfd, h, isym, definition, dynamic);
4ad4eba5 4367
c3df8c14 4368 /* We don't want to make debug symbol dynamic. */
b2064611 4369 if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable)
c3df8c14
AM
4370 dynsym = FALSE;
4371
4f3fedcf
AM
4372 /* Nor should we make plugin symbols dynamic. */
4373 if ((abfd->flags & BFD_PLUGIN) != 0)
4374 dynsym = FALSE;
4375
35fc36a8 4376 if (definition)
35399224
L
4377 {
4378 h->target_internal = isym->st_target_internal;
4379 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4380 }
35fc36a8 4381
4ad4eba5
AM
4382 if (definition && !dynamic)
4383 {
4384 char *p = strchr (name, ELF_VER_CHR);
4385 if (p != NULL && p[1] != ELF_VER_CHR)
4386 {
4387 /* Queue non-default versions so that .symver x, x@FOO
4388 aliases can be checked. */
66eb6687 4389 if (!nondeflt_vers)
4ad4eba5 4390 {
66eb6687
AM
4391 amt = ((isymend - isym + 1)
4392 * sizeof (struct elf_link_hash_entry *));
a50b1753
NC
4393 nondeflt_vers =
4394 (struct elf_link_hash_entry **) bfd_malloc (amt);
14b1c01e
AM
4395 if (!nondeflt_vers)
4396 goto error_free_vers;
4ad4eba5 4397 }
66eb6687 4398 nondeflt_vers[nondeflt_vers_cnt++] = h;
4ad4eba5
AM
4399 }
4400 }
4401
4402 if (dynsym && h->dynindx == -1)
4403 {
c152c796 4404 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4ad4eba5 4405 goto error_free_vers;
f6e332e6 4406 if (h->u.weakdef != NULL
4ad4eba5 4407 && ! new_weakdef
f6e332e6 4408 && h->u.weakdef->dynindx == -1)
4ad4eba5 4409 {
66eb6687 4410 if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4ad4eba5
AM
4411 goto error_free_vers;
4412 }
4413 }
4414 else if (dynsym && h->dynindx != -1)
4415 /* If the symbol already has a dynamic index, but
4416 visibility says it should not be visible, turn it into
4417 a local symbol. */
4418 switch (ELF_ST_VISIBILITY (h->other))
4419 {
4420 case STV_INTERNAL:
4421 case STV_HIDDEN:
4422 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4423 dynsym = FALSE;
4424 break;
4425 }
4426
3d5bef4c 4427 /* Don't add DT_NEEDED for references from the dummy bfd. */
4ad4eba5
AM
4428 if (!add_needed
4429 && definition
010e5ae2 4430 && ((dynsym
ffa9430d 4431 && h->ref_regular_nonweak
4f3fedcf
AM
4432 && (old_bfd == NULL
4433 || (old_bfd->flags & BFD_PLUGIN) == 0))
ffa9430d 4434 || (h->ref_dynamic_nonweak
010e5ae2
AM
4435 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
4436 && !on_needed_list (elf_dt_name (abfd), htab->needed))))
4ad4eba5
AM
4437 {
4438 int ret;
4439 const char *soname = elf_dt_name (abfd);
4440
16e4ecc0
AM
4441 info->callbacks->minfo ("%!", soname, old_bfd,
4442 h->root.root.string);
4443
4ad4eba5
AM
4444 /* A symbol from a library loaded via DT_NEEDED of some
4445 other library is referenced by a regular object.
e56f61be 4446 Add a DT_NEEDED entry for it. Issue an error if
b918acf9
NC
4447 --no-add-needed is used and the reference was not
4448 a weak one. */
4f3fedcf 4449 if (old_bfd != NULL
b918acf9 4450 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
e56f61be
L
4451 {
4452 (*_bfd_error_handler)
3cbc5de0 4453 (_("%B: undefined reference to symbol '%s'"),
4f3fedcf 4454 old_bfd, name);
ff5ac77b 4455 bfd_set_error (bfd_error_missing_dso);
e56f61be
L
4456 goto error_free_vers;
4457 }
4458
a50b1753
NC
4459 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
4460 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
a5db907e 4461
4ad4eba5 4462 add_needed = TRUE;
7e9f0867 4463 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
4464 if (ret < 0)
4465 goto error_free_vers;
4466
4467 BFD_ASSERT (ret == 0);
4468 }
4469 }
4470 }
4471
66eb6687
AM
4472 if (extversym != NULL)
4473 {
4474 free (extversym);
4475 extversym = NULL;
4476 }
4477
4478 if (isymbuf != NULL)
4479 {
4480 free (isymbuf);
4481 isymbuf = NULL;
4482 }
4483
4484 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4485 {
4486 unsigned int i;
4487
4488 /* Restore the symbol table. */
f45794cb
AM
4489 old_ent = (char *) old_tab + tabsize;
4490 memset (elf_sym_hashes (abfd), 0,
4491 extsymcount * sizeof (struct elf_link_hash_entry *));
4f87808c
AM
4492 htab->root.table.table = old_table;
4493 htab->root.table.size = old_size;
4494 htab->root.table.count = old_count;
66eb6687 4495 memcpy (htab->root.table.table, old_tab, tabsize);
66eb6687
AM
4496 htab->root.undefs = old_undefs;
4497 htab->root.undefs_tail = old_undefs_tail;
d45f8bda 4498 _bfd_elf_strtab_restore_size (htab->dynstr, old_dynstr_size);
66eb6687
AM
4499 for (i = 0; i < htab->root.table.size; i++)
4500 {
4501 struct bfd_hash_entry *p;
4502 struct elf_link_hash_entry *h;
3e0882af
L
4503 bfd_size_type size;
4504 unsigned int alignment_power;
66eb6687
AM
4505
4506 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4507 {
4508 h = (struct elf_link_hash_entry *) p;
2de92251
AM
4509 if (h->root.type == bfd_link_hash_warning)
4510 h = (struct elf_link_hash_entry *) h->root.u.i.link;
a4542f1b
AM
4511 if (h->dynindx >= old_dynsymcount
4512 && h->dynstr_index < old_dynstr_size)
66eb6687 4513 _bfd_elf_strtab_delref (htab->dynstr, h->dynstr_index);
2de92251 4514
3e0882af
L
4515 /* Preserve the maximum alignment and size for common
4516 symbols even if this dynamic lib isn't on DT_NEEDED
a4542f1b 4517 since it can still be loaded at run time by another
3e0882af
L
4518 dynamic lib. */
4519 if (h->root.type == bfd_link_hash_common)
4520 {
4521 size = h->root.u.c.size;
4522 alignment_power = h->root.u.c.p->alignment_power;
4523 }
4524 else
4525 {
4526 size = 0;
4527 alignment_power = 0;
4528 }
66eb6687
AM
4529 memcpy (p, old_ent, htab->root.table.entsize);
4530 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
4531 h = (struct elf_link_hash_entry *) p;
4532 if (h->root.type == bfd_link_hash_warning)
4533 {
4534 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4535 old_ent = (char *) old_ent + htab->root.table.entsize;
a4542f1b 4536 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2de92251 4537 }
a4542f1b 4538 if (h->root.type == bfd_link_hash_common)
3e0882af
L
4539 {
4540 if (size > h->root.u.c.size)
4541 h->root.u.c.size = size;
4542 if (alignment_power > h->root.u.c.p->alignment_power)
4543 h->root.u.c.p->alignment_power = alignment_power;
4544 }
66eb6687
AM
4545 }
4546 }
4547
5061a885
AM
4548 /* Make a special call to the linker "notice" function to
4549 tell it that symbols added for crefs may need to be removed. */
e5034e59 4550 if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
9af2a943 4551 goto error_free_vers;
5061a885 4552
66eb6687
AM
4553 free (old_tab);
4554 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4555 alloc_mark);
4556 if (nondeflt_vers != NULL)
4557 free (nondeflt_vers);
4558 return TRUE;
4559 }
2de92251 4560
66eb6687
AM
4561 if (old_tab != NULL)
4562 {
e5034e59 4563 if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
9af2a943 4564 goto error_free_vers;
66eb6687
AM
4565 free (old_tab);
4566 old_tab = NULL;
4567 }
4568
4ad4eba5
AM
4569 /* Now that all the symbols from this input file are created, handle
4570 .symver foo, foo@BAR such that any relocs against foo become foo@BAR. */
4571 if (nondeflt_vers != NULL)
4572 {
4573 bfd_size_type cnt, symidx;
4574
4575 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
4576 {
4577 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
4578 char *shortname, *p;
4579
4580 p = strchr (h->root.root.string, ELF_VER_CHR);
4581 if (p == NULL
4582 || (h->root.type != bfd_link_hash_defined
4583 && h->root.type != bfd_link_hash_defweak))
4584 continue;
4585
4586 amt = p - h->root.root.string;
a50b1753 4587 shortname = (char *) bfd_malloc (amt + 1);
14b1c01e
AM
4588 if (!shortname)
4589 goto error_free_vers;
4ad4eba5
AM
4590 memcpy (shortname, h->root.root.string, amt);
4591 shortname[amt] = '\0';
4592
4593 hi = (struct elf_link_hash_entry *)
66eb6687 4594 bfd_link_hash_lookup (&htab->root, shortname,
4ad4eba5
AM
4595 FALSE, FALSE, FALSE);
4596 if (hi != NULL
4597 && hi->root.type == h->root.type
4598 && hi->root.u.def.value == h->root.u.def.value
4599 && hi->root.u.def.section == h->root.u.def.section)
4600 {
4601 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
4602 hi->root.type = bfd_link_hash_indirect;
4603 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
fcfa13d2 4604 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4ad4eba5
AM
4605 sym_hash = elf_sym_hashes (abfd);
4606 if (sym_hash)
4607 for (symidx = 0; symidx < extsymcount; ++symidx)
4608 if (sym_hash[symidx] == hi)
4609 {
4610 sym_hash[symidx] = h;
4611 break;
4612 }
4613 }
4614 free (shortname);
4615 }
4616 free (nondeflt_vers);
4617 nondeflt_vers = NULL;
4618 }
4619
4ad4eba5
AM
4620 /* Now set the weakdefs field correctly for all the weak defined
4621 symbols we found. The only way to do this is to search all the
4622 symbols. Since we only need the information for non functions in
4623 dynamic objects, that's the only time we actually put anything on
4624 the list WEAKS. We need this information so that if a regular
4625 object refers to a symbol defined weakly in a dynamic object, the
4626 real symbol in the dynamic object is also put in the dynamic
4627 symbols; we also must arrange for both symbols to point to the
4628 same memory location. We could handle the general case of symbol
4629 aliasing, but a general symbol alias can only be generated in
4630 assembler code, handling it correctly would be very time
4631 consuming, and other ELF linkers don't handle general aliasing
4632 either. */
4633 if (weaks != NULL)
4634 {
4635 struct elf_link_hash_entry **hpp;
4636 struct elf_link_hash_entry **hppend;
4637 struct elf_link_hash_entry **sorted_sym_hash;
4638 struct elf_link_hash_entry *h;
4639 size_t sym_count;
4640
4641 /* Since we have to search the whole symbol list for each weak
4642 defined symbol, search time for N weak defined symbols will be
4643 O(N^2). Binary search will cut it down to O(NlogN). */
4644 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
a50b1753 4645 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4ad4eba5
AM
4646 if (sorted_sym_hash == NULL)
4647 goto error_return;
4648 sym_hash = sorted_sym_hash;
4649 hpp = elf_sym_hashes (abfd);
4650 hppend = hpp + extsymcount;
4651 sym_count = 0;
4652 for (; hpp < hppend; hpp++)
4653 {
4654 h = *hpp;
4655 if (h != NULL
4656 && h->root.type == bfd_link_hash_defined
fcb93ecf 4657 && !bed->is_function_type (h->type))
4ad4eba5
AM
4658 {
4659 *sym_hash = h;
4660 sym_hash++;
4661 sym_count++;
4662 }
4663 }
4664
4665 qsort (sorted_sym_hash, sym_count,
4666 sizeof (struct elf_link_hash_entry *),
4667 elf_sort_symbol);
4668
4669 while (weaks != NULL)
4670 {
4671 struct elf_link_hash_entry *hlook;
4672 asection *slook;
4673 bfd_vma vlook;
ed54588d 4674 size_t i, j, idx = 0;
4ad4eba5
AM
4675
4676 hlook = weaks;
f6e332e6
AM
4677 weaks = hlook->u.weakdef;
4678 hlook->u.weakdef = NULL;
4ad4eba5
AM
4679
4680 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
4681 || hlook->root.type == bfd_link_hash_defweak
4682 || hlook->root.type == bfd_link_hash_common
4683 || hlook->root.type == bfd_link_hash_indirect);
4684 slook = hlook->root.u.def.section;
4685 vlook = hlook->root.u.def.value;
4686
4ad4eba5
AM
4687 i = 0;
4688 j = sym_count;
14160578 4689 while (i != j)
4ad4eba5
AM
4690 {
4691 bfd_signed_vma vdiff;
4692 idx = (i + j) / 2;
14160578 4693 h = sorted_sym_hash[idx];
4ad4eba5
AM
4694 vdiff = vlook - h->root.u.def.value;
4695 if (vdiff < 0)
4696 j = idx;
4697 else if (vdiff > 0)
4698 i = idx + 1;
4699 else
4700 {
a9b881be 4701 long sdiff = slook->id - h->root.u.def.section->id;
4ad4eba5
AM
4702 if (sdiff < 0)
4703 j = idx;
4704 else if (sdiff > 0)
4705 i = idx + 1;
4706 else
14160578 4707 break;
4ad4eba5
AM
4708 }
4709 }
4710
4711 /* We didn't find a value/section match. */
14160578 4712 if (i == j)
4ad4eba5
AM
4713 continue;
4714
14160578
AM
4715 /* With multiple aliases, or when the weak symbol is already
4716 strongly defined, we have multiple matching symbols and
4717 the binary search above may land on any of them. Step
4718 one past the matching symbol(s). */
4719 while (++idx != j)
4720 {
4721 h = sorted_sym_hash[idx];
4722 if (h->root.u.def.section != slook
4723 || h->root.u.def.value != vlook)
4724 break;
4725 }
4726
4727 /* Now look back over the aliases. Since we sorted by size
4728 as well as value and section, we'll choose the one with
4729 the largest size. */
4730 while (idx-- != i)
4ad4eba5 4731 {
14160578 4732 h = sorted_sym_hash[idx];
4ad4eba5
AM
4733
4734 /* Stop if value or section doesn't match. */
14160578
AM
4735 if (h->root.u.def.section != slook
4736 || h->root.u.def.value != vlook)
4ad4eba5
AM
4737 break;
4738 else if (h != hlook)
4739 {
f6e332e6 4740 hlook->u.weakdef = h;
4ad4eba5
AM
4741
4742 /* If the weak definition is in the list of dynamic
4743 symbols, make sure the real definition is put
4744 there as well. */
4745 if (hlook->dynindx != -1 && h->dynindx == -1)
4746 {
c152c796 4747 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4dd07732
AM
4748 {
4749 err_free_sym_hash:
4750 free (sorted_sym_hash);
4751 goto error_return;
4752 }
4ad4eba5
AM
4753 }
4754
4755 /* If the real definition is in the list of dynamic
4756 symbols, make sure the weak definition is put
4757 there as well. If we don't do this, then the
4758 dynamic loader might not merge the entries for the
4759 real definition and the weak definition. */
4760 if (h->dynindx != -1 && hlook->dynindx == -1)
4761 {
c152c796 4762 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4dd07732 4763 goto err_free_sym_hash;
4ad4eba5
AM
4764 }
4765 break;
4766 }
4767 }
4768 }
4769
4770 free (sorted_sym_hash);
4771 }
4772
33177bb1
AM
4773 if (bed->check_directives
4774 && !(*bed->check_directives) (abfd, info))
4775 return FALSE;
85fbca6a 4776
4ad4eba5
AM
4777 /* If this object is the same format as the output object, and it is
4778 not a shared library, then let the backend look through the
4779 relocs.
4780
4781 This is required to build global offset table entries and to
4782 arrange for dynamic relocs. It is not required for the
4783 particular common case of linking non PIC code, even when linking
4784 against shared libraries, but unfortunately there is no way of
4785 knowing whether an object file has been compiled PIC or not.
4786 Looking through the relocs is not particularly time consuming.
4787 The problem is that we must either (1) keep the relocs in memory,
4788 which causes the linker to require additional runtime memory or
4789 (2) read the relocs twice from the input file, which wastes time.
4790 This would be a good case for using mmap.
4791
4792 I have no idea how to handle linking PIC code into a file of a
4793 different format. It probably can't be done. */
4ad4eba5 4794 if (! dynamic
66eb6687 4795 && is_elf_hash_table (htab)
13285a1b 4796 && bed->check_relocs != NULL
39334f3a 4797 && elf_object_id (abfd) == elf_hash_table_id (htab)
f13a99db 4798 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
4ad4eba5
AM
4799 {
4800 asection *o;
4801
4802 for (o = abfd->sections; o != NULL; o = o->next)
4803 {
4804 Elf_Internal_Rela *internal_relocs;
4805 bfd_boolean ok;
4806
4807 if ((o->flags & SEC_RELOC) == 0
4808 || o->reloc_count == 0
4809 || ((info->strip == strip_all || info->strip == strip_debugger)
4810 && (o->flags & SEC_DEBUGGING) != 0)
4811 || bfd_is_abs_section (o->output_section))
4812 continue;
4813
4814 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
4815 info->keep_memory);
4816 if (internal_relocs == NULL)
4817 goto error_return;
4818
66eb6687 4819 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
4ad4eba5
AM
4820
4821 if (elf_section_data (o)->relocs != internal_relocs)
4822 free (internal_relocs);
4823
4824 if (! ok)
4825 goto error_return;
4826 }
4827 }
4828
4829 /* If this is a non-traditional link, try to optimize the handling
4830 of the .stab/.stabstr sections. */
4831 if (! dynamic
4832 && ! info->traditional_format
66eb6687 4833 && is_elf_hash_table (htab)
4ad4eba5
AM
4834 && (info->strip != strip_all && info->strip != strip_debugger))
4835 {
4836 asection *stabstr;
4837
4838 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
4839 if (stabstr != NULL)
4840 {
4841 bfd_size_type string_offset = 0;
4842 asection *stab;
4843
4844 for (stab = abfd->sections; stab; stab = stab->next)
0112cd26 4845 if (CONST_STRNEQ (stab->name, ".stab")
4ad4eba5
AM
4846 && (!stab->name[5] ||
4847 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
4848 && (stab->flags & SEC_MERGE) == 0
4849 && !bfd_is_abs_section (stab->output_section))
4850 {
4851 struct bfd_elf_section_data *secdata;
4852
4853 secdata = elf_section_data (stab);
66eb6687
AM
4854 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
4855 stabstr, &secdata->sec_info,
4ad4eba5
AM
4856 &string_offset))
4857 goto error_return;
4858 if (secdata->sec_info)
dbaa2011 4859 stab->sec_info_type = SEC_INFO_TYPE_STABS;
4ad4eba5
AM
4860 }
4861 }
4862 }
4863
66eb6687 4864 if (is_elf_hash_table (htab) && add_needed)
4ad4eba5
AM
4865 {
4866 /* Add this bfd to the loaded list. */
4867 struct elf_link_loaded_list *n;
4868
a50b1753
NC
4869 n = (struct elf_link_loaded_list *)
4870 bfd_alloc (abfd, sizeof (struct elf_link_loaded_list));
4ad4eba5
AM
4871 if (n == NULL)
4872 goto error_return;
4873 n->abfd = abfd;
66eb6687
AM
4874 n->next = htab->loaded;
4875 htab->loaded = n;
4ad4eba5
AM
4876 }
4877
4878 return TRUE;
4879
4880 error_free_vers:
66eb6687
AM
4881 if (old_tab != NULL)
4882 free (old_tab);
4ad4eba5
AM
4883 if (nondeflt_vers != NULL)
4884 free (nondeflt_vers);
4885 if (extversym != NULL)
4886 free (extversym);
4887 error_free_sym:
4888 if (isymbuf != NULL)
4889 free (isymbuf);
4890 error_return:
4891 return FALSE;
4892}
4893
8387904d
AM
4894/* Return the linker hash table entry of a symbol that might be
4895 satisfied by an archive symbol. Return -1 on error. */
4896
4897struct elf_link_hash_entry *
4898_bfd_elf_archive_symbol_lookup (bfd *abfd,
4899 struct bfd_link_info *info,
4900 const char *name)
4901{
4902 struct elf_link_hash_entry *h;
4903 char *p, *copy;
4904 size_t len, first;
4905
2a41f396 4906 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
8387904d
AM
4907 if (h != NULL)
4908 return h;
4909
4910 /* If this is a default version (the name contains @@), look up the
4911 symbol again with only one `@' as well as without the version.
4912 The effect is that references to the symbol with and without the
4913 version will be matched by the default symbol in the archive. */
4914
4915 p = strchr (name, ELF_VER_CHR);
4916 if (p == NULL || p[1] != ELF_VER_CHR)
4917 return h;
4918
4919 /* First check with only one `@'. */
4920 len = strlen (name);
a50b1753 4921 copy = (char *) bfd_alloc (abfd, len);
8387904d
AM
4922 if (copy == NULL)
4923 return (struct elf_link_hash_entry *) 0 - 1;
4924
4925 first = p - name + 1;
4926 memcpy (copy, name, first);
4927 memcpy (copy + first, name + first + 1, len - first);
4928
2a41f396 4929 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
8387904d
AM
4930 if (h == NULL)
4931 {
4932 /* We also need to check references to the symbol without the
4933 version. */
4934 copy[first - 1] = '\0';
4935 h = elf_link_hash_lookup (elf_hash_table (info), copy,
2a41f396 4936 FALSE, FALSE, TRUE);
8387904d
AM
4937 }
4938
4939 bfd_release (abfd, copy);
4940 return h;
4941}
4942
0ad989f9 4943/* Add symbols from an ELF archive file to the linker hash table. We
13e570f8
AM
4944 don't use _bfd_generic_link_add_archive_symbols because we need to
4945 handle versioned symbols.
0ad989f9
L
4946
4947 Fortunately, ELF archive handling is simpler than that done by
4948 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
4949 oddities. In ELF, if we find a symbol in the archive map, and the
4950 symbol is currently undefined, we know that we must pull in that
4951 object file.
4952
4953 Unfortunately, we do have to make multiple passes over the symbol
4954 table until nothing further is resolved. */
4955
4ad4eba5
AM
4956static bfd_boolean
4957elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
0ad989f9
L
4958{
4959 symindex c;
13e570f8 4960 unsigned char *included = NULL;
0ad989f9
L
4961 carsym *symdefs;
4962 bfd_boolean loop;
4963 bfd_size_type amt;
8387904d
AM
4964 const struct elf_backend_data *bed;
4965 struct elf_link_hash_entry * (*archive_symbol_lookup)
4966 (bfd *, struct bfd_link_info *, const char *);
0ad989f9
L
4967
4968 if (! bfd_has_map (abfd))
4969 {
4970 /* An empty archive is a special case. */
4971 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
4972 return TRUE;
4973 bfd_set_error (bfd_error_no_armap);
4974 return FALSE;
4975 }
4976
4977 /* Keep track of all symbols we know to be already defined, and all
4978 files we know to be already included. This is to speed up the
4979 second and subsequent passes. */
4980 c = bfd_ardata (abfd)->symdef_count;
4981 if (c == 0)
4982 return TRUE;
4983 amt = c;
13e570f8
AM
4984 amt *= sizeof (*included);
4985 included = (unsigned char *) bfd_zmalloc (amt);
4986 if (included == NULL)
4987 return FALSE;
0ad989f9
L
4988
4989 symdefs = bfd_ardata (abfd)->symdefs;
8387904d
AM
4990 bed = get_elf_backend_data (abfd);
4991 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
0ad989f9
L
4992
4993 do
4994 {
4995 file_ptr last;
4996 symindex i;
4997 carsym *symdef;
4998 carsym *symdefend;
4999
5000 loop = FALSE;
5001 last = -1;
5002
5003 symdef = symdefs;
5004 symdefend = symdef + c;
5005 for (i = 0; symdef < symdefend; symdef++, i++)
5006 {
5007 struct elf_link_hash_entry *h;
5008 bfd *element;
5009 struct bfd_link_hash_entry *undefs_tail;
5010 symindex mark;
5011
13e570f8 5012 if (included[i])
0ad989f9
L
5013 continue;
5014 if (symdef->file_offset == last)
5015 {
5016 included[i] = TRUE;
5017 continue;
5018 }
5019
8387904d
AM
5020 h = archive_symbol_lookup (abfd, info, symdef->name);
5021 if (h == (struct elf_link_hash_entry *) 0 - 1)
5022 goto error_return;
0ad989f9
L
5023
5024 if (h == NULL)
5025 continue;
5026
5027 if (h->root.type == bfd_link_hash_common)
5028 {
5029 /* We currently have a common symbol. The archive map contains
5030 a reference to this symbol, so we may want to include it. We
5031 only want to include it however, if this archive element
5032 contains a definition of the symbol, not just another common
5033 declaration of it.
5034
5035 Unfortunately some archivers (including GNU ar) will put
5036 declarations of common symbols into their archive maps, as
5037 well as real definitions, so we cannot just go by the archive
5038 map alone. Instead we must read in the element's symbol
5039 table and check that to see what kind of symbol definition
5040 this is. */
5041 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5042 continue;
5043 }
5044 else if (h->root.type != bfd_link_hash_undefined)
5045 {
5046 if (h->root.type != bfd_link_hash_undefweak)
13e570f8
AM
5047 /* Symbol must be defined. Don't check it again. */
5048 included[i] = TRUE;
0ad989f9
L
5049 continue;
5050 }
5051
5052 /* We need to include this archive member. */
5053 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5054 if (element == NULL)
5055 goto error_return;
5056
5057 if (! bfd_check_format (element, bfd_object))
5058 goto error_return;
5059
0ad989f9
L
5060 undefs_tail = info->hash->undefs_tail;
5061
0e144ba7
AM
5062 if (!(*info->callbacks
5063 ->add_archive_element) (info, element, symdef->name, &element))
0ad989f9 5064 goto error_return;
0e144ba7 5065 if (!bfd_link_add_symbols (element, info))
0ad989f9
L
5066 goto error_return;
5067
5068 /* If there are any new undefined symbols, we need to make
5069 another pass through the archive in order to see whether
5070 they can be defined. FIXME: This isn't perfect, because
5071 common symbols wind up on undefs_tail and because an
5072 undefined symbol which is defined later on in this pass
5073 does not require another pass. This isn't a bug, but it
5074 does make the code less efficient than it could be. */
5075 if (undefs_tail != info->hash->undefs_tail)
5076 loop = TRUE;
5077
5078 /* Look backward to mark all symbols from this object file
5079 which we have already seen in this pass. */
5080 mark = i;
5081 do
5082 {
5083 included[mark] = TRUE;
5084 if (mark == 0)
5085 break;
5086 --mark;
5087 }
5088 while (symdefs[mark].file_offset == symdef->file_offset);
5089
5090 /* We mark subsequent symbols from this object file as we go
5091 on through the loop. */
5092 last = symdef->file_offset;
5093 }
5094 }
5095 while (loop);
5096
0ad989f9
L
5097 free (included);
5098
5099 return TRUE;
5100
5101 error_return:
0ad989f9
L
5102 if (included != NULL)
5103 free (included);
5104 return FALSE;
5105}
4ad4eba5
AM
5106
5107/* Given an ELF BFD, add symbols to the global hash table as
5108 appropriate. */
5109
5110bfd_boolean
5111bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5112{
5113 switch (bfd_get_format (abfd))
5114 {
5115 case bfd_object:
5116 return elf_link_add_object_symbols (abfd, info);
5117 case bfd_archive:
5118 return elf_link_add_archive_symbols (abfd, info);
5119 default:
5120 bfd_set_error (bfd_error_wrong_format);
5121 return FALSE;
5122 }
5123}
5a580b3a 5124\f
14b1c01e
AM
5125struct hash_codes_info
5126{
5127 unsigned long *hashcodes;
5128 bfd_boolean error;
5129};
a0c8462f 5130
5a580b3a
AM
5131/* This function will be called though elf_link_hash_traverse to store
5132 all hash value of the exported symbols in an array. */
5133
5134static bfd_boolean
5135elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5136{
a50b1753 5137 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5a580b3a
AM
5138 const char *name;
5139 char *p;
5140 unsigned long ha;
5141 char *alc = NULL;
5142
5a580b3a
AM
5143 /* Ignore indirect symbols. These are added by the versioning code. */
5144 if (h->dynindx == -1)
5145 return TRUE;
5146
5147 name = h->root.root.string;
5148 p = strchr (name, ELF_VER_CHR);
5149 if (p != NULL)
5150 {
a50b1753 5151 alc = (char *) bfd_malloc (p - name + 1);
14b1c01e
AM
5152 if (alc == NULL)
5153 {
5154 inf->error = TRUE;
5155 return FALSE;
5156 }
5a580b3a
AM
5157 memcpy (alc, name, p - name);
5158 alc[p - name] = '\0';
5159 name = alc;
5160 }
5161
5162 /* Compute the hash value. */
5163 ha = bfd_elf_hash (name);
5164
5165 /* Store the found hash value in the array given as the argument. */
14b1c01e 5166 *(inf->hashcodes)++ = ha;
5a580b3a
AM
5167
5168 /* And store it in the struct so that we can put it in the hash table
5169 later. */
f6e332e6 5170 h->u.elf_hash_value = ha;
5a580b3a
AM
5171
5172 if (alc != NULL)
5173 free (alc);
5174
5175 return TRUE;
5176}
5177
fdc90cb4
JJ
5178struct collect_gnu_hash_codes
5179{
5180 bfd *output_bfd;
5181 const struct elf_backend_data *bed;
5182 unsigned long int nsyms;
5183 unsigned long int maskbits;
5184 unsigned long int *hashcodes;
5185 unsigned long int *hashval;
5186 unsigned long int *indx;
5187 unsigned long int *counts;
5188 bfd_vma *bitmask;
5189 bfd_byte *contents;
5190 long int min_dynindx;
5191 unsigned long int bucketcount;
5192 unsigned long int symindx;
5193 long int local_indx;
5194 long int shift1, shift2;
5195 unsigned long int mask;
14b1c01e 5196 bfd_boolean error;
fdc90cb4
JJ
5197};
5198
5199/* This function will be called though elf_link_hash_traverse to store
5200 all hash value of the exported symbols in an array. */
5201
5202static bfd_boolean
5203elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5204{
a50b1753 5205 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4
JJ
5206 const char *name;
5207 char *p;
5208 unsigned long ha;
5209 char *alc = NULL;
5210
fdc90cb4
JJ
5211 /* Ignore indirect symbols. These are added by the versioning code. */
5212 if (h->dynindx == -1)
5213 return TRUE;
5214
5215 /* Ignore also local symbols and undefined symbols. */
5216 if (! (*s->bed->elf_hash_symbol) (h))
5217 return TRUE;
5218
5219 name = h->root.root.string;
5220 p = strchr (name, ELF_VER_CHR);
5221 if (p != NULL)
5222 {
a50b1753 5223 alc = (char *) bfd_malloc (p - name + 1);
14b1c01e
AM
5224 if (alc == NULL)
5225 {
5226 s->error = TRUE;
5227 return FALSE;
5228 }
fdc90cb4
JJ
5229 memcpy (alc, name, p - name);
5230 alc[p - name] = '\0';
5231 name = alc;
5232 }
5233
5234 /* Compute the hash value. */
5235 ha = bfd_elf_gnu_hash (name);
5236
5237 /* Store the found hash value in the array for compute_bucket_count,
5238 and also for .dynsym reordering purposes. */
5239 s->hashcodes[s->nsyms] = ha;
5240 s->hashval[h->dynindx] = ha;
5241 ++s->nsyms;
5242 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5243 s->min_dynindx = h->dynindx;
5244
5245 if (alc != NULL)
5246 free (alc);
5247
5248 return TRUE;
5249}
5250
5251/* This function will be called though elf_link_hash_traverse to do
5252 final dynaminc symbol renumbering. */
5253
5254static bfd_boolean
5255elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5256{
a50b1753 5257 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4
JJ
5258 unsigned long int bucket;
5259 unsigned long int val;
5260
fdc90cb4
JJ
5261 /* Ignore indirect symbols. */
5262 if (h->dynindx == -1)
5263 return TRUE;
5264
5265 /* Ignore also local symbols and undefined symbols. */
5266 if (! (*s->bed->elf_hash_symbol) (h))
5267 {
5268 if (h->dynindx >= s->min_dynindx)
5269 h->dynindx = s->local_indx++;
5270 return TRUE;
5271 }
5272
5273 bucket = s->hashval[h->dynindx] % s->bucketcount;
5274 val = (s->hashval[h->dynindx] >> s->shift1)
5275 & ((s->maskbits >> s->shift1) - 1);
5276 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5277 s->bitmask[val]
5278 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5279 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5280 if (s->counts[bucket] == 1)
5281 /* Last element terminates the chain. */
5282 val |= 1;
5283 bfd_put_32 (s->output_bfd, val,
5284 s->contents + (s->indx[bucket] - s->symindx) * 4);
5285 --s->counts[bucket];
5286 h->dynindx = s->indx[bucket]++;
5287 return TRUE;
5288}
5289
5290/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5291
5292bfd_boolean
5293_bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5294{
5295 return !(h->forced_local
5296 || h->root.type == bfd_link_hash_undefined
5297 || h->root.type == bfd_link_hash_undefweak
5298 || ((h->root.type == bfd_link_hash_defined
5299 || h->root.type == bfd_link_hash_defweak)
5300 && h->root.u.def.section->output_section == NULL));
5301}
5302
5a580b3a
AM
5303/* Array used to determine the number of hash table buckets to use
5304 based on the number of symbols there are. If there are fewer than
5305 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5306 fewer than 37 we use 17 buckets, and so forth. We never use more
5307 than 32771 buckets. */
5308
5309static const size_t elf_buckets[] =
5310{
5311 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5312 16411, 32771, 0
5313};
5314
5315/* Compute bucket count for hashing table. We do not use a static set
5316 of possible tables sizes anymore. Instead we determine for all
5317 possible reasonable sizes of the table the outcome (i.e., the
5318 number of collisions etc) and choose the best solution. The
5319 weighting functions are not too simple to allow the table to grow
5320 without bounds. Instead one of the weighting factors is the size.
5321 Therefore the result is always a good payoff between few collisions
5322 (= short chain lengths) and table size. */
5323static size_t
b20dd2ce 5324compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
d40f3da9
AM
5325 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5326 unsigned long int nsyms,
5327 int gnu_hash)
5a580b3a 5328{
5a580b3a 5329 size_t best_size = 0;
5a580b3a 5330 unsigned long int i;
5a580b3a 5331
5a580b3a
AM
5332 /* We have a problem here. The following code to optimize the table
5333 size requires an integer type with more the 32 bits. If
5334 BFD_HOST_U_64_BIT is set we know about such a type. */
5335#ifdef BFD_HOST_U_64_BIT
5336 if (info->optimize)
5337 {
5a580b3a
AM
5338 size_t minsize;
5339 size_t maxsize;
5340 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5a580b3a 5341 bfd *dynobj = elf_hash_table (info)->dynobj;
d40f3da9 5342 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5a580b3a 5343 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
fdc90cb4 5344 unsigned long int *counts;
d40f3da9 5345 bfd_size_type amt;
0883b6e0 5346 unsigned int no_improvement_count = 0;
5a580b3a
AM
5347
5348 /* Possible optimization parameters: if we have NSYMS symbols we say
5349 that the hashing table must at least have NSYMS/4 and at most
5350 2*NSYMS buckets. */
5351 minsize = nsyms / 4;
5352 if (minsize == 0)
5353 minsize = 1;
5354 best_size = maxsize = nsyms * 2;
fdc90cb4
JJ
5355 if (gnu_hash)
5356 {
5357 if (minsize < 2)
5358 minsize = 2;
5359 if ((best_size & 31) == 0)
5360 ++best_size;
5361 }
5a580b3a
AM
5362
5363 /* Create array where we count the collisions in. We must use bfd_malloc
5364 since the size could be large. */
5365 amt = maxsize;
5366 amt *= sizeof (unsigned long int);
a50b1753 5367 counts = (unsigned long int *) bfd_malloc (amt);
5a580b3a 5368 if (counts == NULL)
fdc90cb4 5369 return 0;
5a580b3a
AM
5370
5371 /* Compute the "optimal" size for the hash table. The criteria is a
5372 minimal chain length. The minor criteria is (of course) the size
5373 of the table. */
5374 for (i = minsize; i < maxsize; ++i)
5375 {
5376 /* Walk through the array of hashcodes and count the collisions. */
5377 BFD_HOST_U_64_BIT max;
5378 unsigned long int j;
5379 unsigned long int fact;
5380
fdc90cb4
JJ
5381 if (gnu_hash && (i & 31) == 0)
5382 continue;
5383
5a580b3a
AM
5384 memset (counts, '\0', i * sizeof (unsigned long int));
5385
5386 /* Determine how often each hash bucket is used. */
5387 for (j = 0; j < nsyms; ++j)
5388 ++counts[hashcodes[j] % i];
5389
5390 /* For the weight function we need some information about the
5391 pagesize on the target. This is information need not be 100%
5392 accurate. Since this information is not available (so far) we
5393 define it here to a reasonable default value. If it is crucial
5394 to have a better value some day simply define this value. */
5395# ifndef BFD_TARGET_PAGESIZE
5396# define BFD_TARGET_PAGESIZE (4096)
5397# endif
5398
fdc90cb4
JJ
5399 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5400 and the chains. */
5401 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5a580b3a
AM
5402
5403# if 1
5404 /* Variant 1: optimize for short chains. We add the squares
5405 of all the chain lengths (which favors many small chain
5406 over a few long chains). */
5407 for (j = 0; j < i; ++j)
5408 max += counts[j] * counts[j];
5409
5410 /* This adds penalties for the overall size of the table. */
fdc90cb4 5411 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
5412 max *= fact * fact;
5413# else
5414 /* Variant 2: Optimize a lot more for small table. Here we
5415 also add squares of the size but we also add penalties for
5416 empty slots (the +1 term). */
5417 for (j = 0; j < i; ++j)
5418 max += (1 + counts[j]) * (1 + counts[j]);
5419
5420 /* The overall size of the table is considered, but not as
5421 strong as in variant 1, where it is squared. */
fdc90cb4 5422 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
5423 max *= fact;
5424# endif
5425
5426 /* Compare with current best results. */
5427 if (max < best_chlen)
5428 {
5429 best_chlen = max;
5430 best_size = i;
0883b6e0 5431 no_improvement_count = 0;
5a580b3a 5432 }
0883b6e0
NC
5433 /* PR 11843: Avoid futile long searches for the best bucket size
5434 when there are a large number of symbols. */
5435 else if (++no_improvement_count == 100)
5436 break;
5a580b3a
AM
5437 }
5438
5439 free (counts);
5440 }
5441 else
5442#endif /* defined (BFD_HOST_U_64_BIT) */
5443 {
5444 /* This is the fallback solution if no 64bit type is available or if we
5445 are not supposed to spend much time on optimizations. We select the
5446 bucket count using a fixed set of numbers. */
5447 for (i = 0; elf_buckets[i] != 0; i++)
5448 {
5449 best_size = elf_buckets[i];
fdc90cb4 5450 if (nsyms < elf_buckets[i + 1])
5a580b3a
AM
5451 break;
5452 }
fdc90cb4
JJ
5453 if (gnu_hash && best_size < 2)
5454 best_size = 2;
5a580b3a
AM
5455 }
5456
5a580b3a
AM
5457 return best_size;
5458}
5459
d0bf826b
AM
5460/* Size any SHT_GROUP section for ld -r. */
5461
5462bfd_boolean
5463_bfd_elf_size_group_sections (struct bfd_link_info *info)
5464{
5465 bfd *ibfd;
5466
c72f2fb2 5467 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
d0bf826b
AM
5468 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
5469 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
5470 return FALSE;
5471 return TRUE;
5472}
5473
04c3a755
NS
5474/* Set a default stack segment size. The value in INFO wins. If it
5475 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
5476 undefined it is initialized. */
5477
5478bfd_boolean
5479bfd_elf_stack_segment_size (bfd *output_bfd,
5480 struct bfd_link_info *info,
5481 const char *legacy_symbol,
5482 bfd_vma default_size)
5483{
5484 struct elf_link_hash_entry *h = NULL;
5485
5486 /* Look for legacy symbol. */
5487 if (legacy_symbol)
5488 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
5489 FALSE, FALSE, FALSE);
5490 if (h && (h->root.type == bfd_link_hash_defined
5491 || h->root.type == bfd_link_hash_defweak)
5492 && h->def_regular
5493 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
5494 {
5495 /* The symbol has no type if specified on the command line. */
5496 h->type = STT_OBJECT;
5497 if (info->stacksize)
5498 (*_bfd_error_handler) (_("%B: stack size specified and %s set"),
5499 output_bfd, legacy_symbol);
5500 else if (h->root.u.def.section != bfd_abs_section_ptr)
5501 (*_bfd_error_handler) (_("%B: %s not absolute"),
5502 output_bfd, legacy_symbol);
5503 else
5504 info->stacksize = h->root.u.def.value;
5505 }
5506
5507 if (!info->stacksize)
5508 /* If the user didn't set a size, or explicitly inhibit the
5509 size, set it now. */
5510 info->stacksize = default_size;
5511
5512 /* Provide the legacy symbol, if it is referenced. */
5513 if (h && (h->root.type == bfd_link_hash_undefined
5514 || h->root.type == bfd_link_hash_undefweak))
5515 {
5516 struct bfd_link_hash_entry *bh = NULL;
5517
5518 if (!(_bfd_generic_link_add_one_symbol
5519 (info, output_bfd, legacy_symbol,
5520 BSF_GLOBAL, bfd_abs_section_ptr,
5521 info->stacksize >= 0 ? info->stacksize : 0,
5522 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
5523 return FALSE;
5524
5525 h = (struct elf_link_hash_entry *) bh;
5526 h->def_regular = 1;
5527 h->type = STT_OBJECT;
5528 }
5529
5530 return TRUE;
5531}
5532
5a580b3a
AM
5533/* Set up the sizes and contents of the ELF dynamic sections. This is
5534 called by the ELF linker emulation before_allocation routine. We
5535 must set the sizes of the sections before the linker sets the
5536 addresses of the various sections. */
5537
5538bfd_boolean
5539bfd_elf_size_dynamic_sections (bfd *output_bfd,
5540 const char *soname,
5541 const char *rpath,
5542 const char *filter_shlib,
7ee314fa
AM
5543 const char *audit,
5544 const char *depaudit,
5a580b3a
AM
5545 const char * const *auxiliary_filters,
5546 struct bfd_link_info *info,
fd91d419 5547 asection **sinterpptr)
5a580b3a
AM
5548{
5549 bfd_size_type soname_indx;
5550 bfd *dynobj;
5551 const struct elf_backend_data *bed;
28caa186 5552 struct elf_info_failed asvinfo;
5a580b3a
AM
5553
5554 *sinterpptr = NULL;
5555
5556 soname_indx = (bfd_size_type) -1;
5557
5558 if (!is_elf_hash_table (info->hash))
5559 return TRUE;
5560
6bfdb61b 5561 bed = get_elf_backend_data (output_bfd);
04c3a755
NS
5562
5563 /* Any syms created from now on start with -1 in
5564 got.refcount/offset and plt.refcount/offset. */
5565 elf_hash_table (info)->init_got_refcount
5566 = elf_hash_table (info)->init_got_offset;
5567 elf_hash_table (info)->init_plt_refcount
5568 = elf_hash_table (info)->init_plt_offset;
5569
5570 if (info->relocatable
5571 && !_bfd_elf_size_group_sections (info))
5572 return FALSE;
5573
5574 /* The backend may have to create some sections regardless of whether
5575 we're dynamic or not. */
5576 if (bed->elf_backend_always_size_sections
5577 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
5578 return FALSE;
5579
5580 /* Determine any GNU_STACK segment requirements, after the backend
5581 has had a chance to set a default segment size. */
5a580b3a 5582 if (info->execstack)
12bd6957 5583 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
5a580b3a 5584 else if (info->noexecstack)
12bd6957 5585 elf_stack_flags (output_bfd) = PF_R | PF_W;
5a580b3a
AM
5586 else
5587 {
5588 bfd *inputobj;
5589 asection *notesec = NULL;
5590 int exec = 0;
5591
5592 for (inputobj = info->input_bfds;
5593 inputobj;
c72f2fb2 5594 inputobj = inputobj->link.next)
5a580b3a
AM
5595 {
5596 asection *s;
5597
a92c088a
L
5598 if (inputobj->flags
5599 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
5a580b3a
AM
5600 continue;
5601 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
5602 if (s)
5603 {
5604 if (s->flags & SEC_CODE)
5605 exec = PF_X;
5606 notesec = s;
5607 }
6bfdb61b 5608 else if (bed->default_execstack)
5a580b3a
AM
5609 exec = PF_X;
5610 }
04c3a755 5611 if (notesec || info->stacksize > 0)
12bd6957 5612 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
04c3a755
NS
5613 if (notesec && exec && info->relocatable
5614 && notesec->output_section != bfd_abs_section_ptr)
5615 notesec->output_section->flags |= SEC_CODE;
5a580b3a
AM
5616 }
5617
5a580b3a
AM
5618 dynobj = elf_hash_table (info)->dynobj;
5619
9a2a56cc 5620 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a
AM
5621 {
5622 struct elf_info_failed eif;
5623 struct elf_link_hash_entry *h;
5624 asection *dynstr;
5625 struct bfd_elf_version_tree *t;
5626 struct bfd_elf_version_expr *d;
046183de 5627 asection *s;
5a580b3a
AM
5628 bfd_boolean all_defined;
5629
3d4d4302 5630 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
5a580b3a
AM
5631 BFD_ASSERT (*sinterpptr != NULL || !info->executable);
5632
5633 if (soname != NULL)
5634 {
5635 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5636 soname, TRUE);
5637 if (soname_indx == (bfd_size_type) -1
5638 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
5639 return FALSE;
5640 }
5641
5642 if (info->symbolic)
5643 {
5644 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
5645 return FALSE;
5646 info->flags |= DF_SYMBOLIC;
5647 }
5648
5649 if (rpath != NULL)
5650 {
5651 bfd_size_type indx;
b1b00fcc 5652 bfd_vma tag;
5a580b3a
AM
5653
5654 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
5655 TRUE);
b1b00fcc 5656 if (indx == (bfd_size_type) -1)
5a580b3a
AM
5657 return FALSE;
5658
b1b00fcc
MF
5659 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
5660 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
5661 return FALSE;
5a580b3a
AM
5662 }
5663
5664 if (filter_shlib != NULL)
5665 {
5666 bfd_size_type indx;
5667
5668 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5669 filter_shlib, TRUE);
5670 if (indx == (bfd_size_type) -1
5671 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
5672 return FALSE;
5673 }
5674
5675 if (auxiliary_filters != NULL)
5676 {
5677 const char * const *p;
5678
5679 for (p = auxiliary_filters; *p != NULL; p++)
5680 {
5681 bfd_size_type indx;
5682
5683 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5684 *p, TRUE);
5685 if (indx == (bfd_size_type) -1
5686 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
5687 return FALSE;
5688 }
5689 }
5690
7ee314fa
AM
5691 if (audit != NULL)
5692 {
5693 bfd_size_type indx;
5694
5695 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
5696 TRUE);
5697 if (indx == (bfd_size_type) -1
5698 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
5699 return FALSE;
5700 }
5701
5702 if (depaudit != NULL)
5703 {
5704 bfd_size_type indx;
5705
5706 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
5707 TRUE);
5708 if (indx == (bfd_size_type) -1
5709 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
5710 return FALSE;
5711 }
5712
5a580b3a 5713 eif.info = info;
5a580b3a
AM
5714 eif.failed = FALSE;
5715
5716 /* If we are supposed to export all symbols into the dynamic symbol
5717 table (this is not the normal case), then do so. */
55255dae
L
5718 if (info->export_dynamic
5719 || (info->executable && info->dynamic))
5a580b3a
AM
5720 {
5721 elf_link_hash_traverse (elf_hash_table (info),
5722 _bfd_elf_export_symbol,
5723 &eif);
5724 if (eif.failed)
5725 return FALSE;
5726 }
5727
5728 /* Make all global versions with definition. */
fd91d419 5729 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 5730 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 5731 if (!d->symver && d->literal)
5a580b3a
AM
5732 {
5733 const char *verstr, *name;
5734 size_t namelen, verlen, newlen;
93252b1c 5735 char *newname, *p, leading_char;
5a580b3a
AM
5736 struct elf_link_hash_entry *newh;
5737
93252b1c 5738 leading_char = bfd_get_symbol_leading_char (output_bfd);
ae5a3597 5739 name = d->pattern;
93252b1c 5740 namelen = strlen (name) + (leading_char != '\0');
5a580b3a
AM
5741 verstr = t->name;
5742 verlen = strlen (verstr);
5743 newlen = namelen + verlen + 3;
5744
a50b1753 5745 newname = (char *) bfd_malloc (newlen);
5a580b3a
AM
5746 if (newname == NULL)
5747 return FALSE;
93252b1c
MF
5748 newname[0] = leading_char;
5749 memcpy (newname + (leading_char != '\0'), name, namelen);
5a580b3a
AM
5750
5751 /* Check the hidden versioned definition. */
5752 p = newname + namelen;
5753 *p++ = ELF_VER_CHR;
5754 memcpy (p, verstr, verlen + 1);
5755 newh = elf_link_hash_lookup (elf_hash_table (info),
5756 newname, FALSE, FALSE,
5757 FALSE);
5758 if (newh == NULL
5759 || (newh->root.type != bfd_link_hash_defined
5760 && newh->root.type != bfd_link_hash_defweak))
5761 {
5762 /* Check the default versioned definition. */
5763 *p++ = ELF_VER_CHR;
5764 memcpy (p, verstr, verlen + 1);
5765 newh = elf_link_hash_lookup (elf_hash_table (info),
5766 newname, FALSE, FALSE,
5767 FALSE);
5768 }
5769 free (newname);
5770
5771 /* Mark this version if there is a definition and it is
5772 not defined in a shared object. */
5773 if (newh != NULL
f5385ebf 5774 && !newh->def_dynamic
5a580b3a
AM
5775 && (newh->root.type == bfd_link_hash_defined
5776 || newh->root.type == bfd_link_hash_defweak))
5777 d->symver = 1;
5778 }
5779
5780 /* Attach all the symbols to their version information. */
5a580b3a 5781 asvinfo.info = info;
5a580b3a
AM
5782 asvinfo.failed = FALSE;
5783
5784 elf_link_hash_traverse (elf_hash_table (info),
5785 _bfd_elf_link_assign_sym_version,
5786 &asvinfo);
5787 if (asvinfo.failed)
5788 return FALSE;
5789
5790 if (!info->allow_undefined_version)
5791 {
5792 /* Check if all global versions have a definition. */
5793 all_defined = TRUE;
fd91d419 5794 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 5795 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 5796 if (d->literal && !d->symver && !d->script)
5a580b3a
AM
5797 {
5798 (*_bfd_error_handler)
5799 (_("%s: undefined version: %s"),
5800 d->pattern, t->name);
5801 all_defined = FALSE;
5802 }
5803
5804 if (!all_defined)
5805 {
5806 bfd_set_error (bfd_error_bad_value);
5807 return FALSE;
5808 }
5809 }
5810
5811 /* Find all symbols which were defined in a dynamic object and make
5812 the backend pick a reasonable value for them. */
5813 elf_link_hash_traverse (elf_hash_table (info),
5814 _bfd_elf_adjust_dynamic_symbol,
5815 &eif);
5816 if (eif.failed)
5817 return FALSE;
5818
5819 /* Add some entries to the .dynamic section. We fill in some of the
ee75fd95 5820 values later, in bfd_elf_final_link, but we must add the entries
5a580b3a
AM
5821 now so that we know the final size of the .dynamic section. */
5822
5823 /* If there are initialization and/or finalization functions to
5824 call then add the corresponding DT_INIT/DT_FINI entries. */
5825 h = (info->init_function
5826 ? elf_link_hash_lookup (elf_hash_table (info),
5827 info->init_function, FALSE,
5828 FALSE, FALSE)
5829 : NULL);
5830 if (h != NULL
f5385ebf
AM
5831 && (h->ref_regular
5832 || h->def_regular))
5a580b3a
AM
5833 {
5834 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
5835 return FALSE;
5836 }
5837 h = (info->fini_function
5838 ? elf_link_hash_lookup (elf_hash_table (info),
5839 info->fini_function, FALSE,
5840 FALSE, FALSE)
5841 : NULL);
5842 if (h != NULL
f5385ebf
AM
5843 && (h->ref_regular
5844 || h->def_regular))
5a580b3a
AM
5845 {
5846 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
5847 return FALSE;
5848 }
5849
046183de
AM
5850 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
5851 if (s != NULL && s->linker_has_input)
5a580b3a
AM
5852 {
5853 /* DT_PREINIT_ARRAY is not allowed in shared library. */
5854 if (! info->executable)
5855 {
5856 bfd *sub;
5857 asection *o;
5858
5859 for (sub = info->input_bfds; sub != NULL;
c72f2fb2 5860 sub = sub->link.next)
3fcd97f1
JJ
5861 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
5862 for (o = sub->sections; o != NULL; o = o->next)
5863 if (elf_section_data (o)->this_hdr.sh_type
5864 == SHT_PREINIT_ARRAY)
5865 {
5866 (*_bfd_error_handler)
5867 (_("%B: .preinit_array section is not allowed in DSO"),
5868 sub);
5869 break;
5870 }
5a580b3a
AM
5871
5872 bfd_set_error (bfd_error_nonrepresentable_section);
5873 return FALSE;
5874 }
5875
5876 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
5877 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
5878 return FALSE;
5879 }
046183de
AM
5880 s = bfd_get_section_by_name (output_bfd, ".init_array");
5881 if (s != NULL && s->linker_has_input)
5a580b3a
AM
5882 {
5883 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
5884 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
5885 return FALSE;
5886 }
046183de
AM
5887 s = bfd_get_section_by_name (output_bfd, ".fini_array");
5888 if (s != NULL && s->linker_has_input)
5a580b3a
AM
5889 {
5890 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
5891 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
5892 return FALSE;
5893 }
5894
3d4d4302 5895 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
5896 /* If .dynstr is excluded from the link, we don't want any of
5897 these tags. Strictly, we should be checking each section
5898 individually; This quick check covers for the case where
5899 someone does a /DISCARD/ : { *(*) }. */
5900 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
5901 {
5902 bfd_size_type strsize;
5903
5904 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
fdc90cb4
JJ
5905 if ((info->emit_hash
5906 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
5907 || (info->emit_gnu_hash
5908 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
5a580b3a
AM
5909 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
5910 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
5911 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
5912 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
5913 bed->s->sizeof_sym))
5914 return FALSE;
5915 }
5916 }
5917
5918 /* The backend must work out the sizes of all the other dynamic
5919 sections. */
9a2a56cc
AM
5920 if (dynobj != NULL
5921 && bed->elf_backend_size_dynamic_sections != NULL
5a580b3a
AM
5922 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
5923 return FALSE;
5924
9a2a56cc
AM
5925 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
5926 return FALSE;
5927
5928 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a 5929 {
554220db 5930 unsigned long section_sym_count;
fd91d419 5931 struct bfd_elf_version_tree *verdefs;
5a580b3a 5932 asection *s;
5a580b3a
AM
5933
5934 /* Set up the version definition section. */
3d4d4302 5935 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
5936 BFD_ASSERT (s != NULL);
5937
5938 /* We may have created additional version definitions if we are
5939 just linking a regular application. */
fd91d419 5940 verdefs = info->version_info;
5a580b3a
AM
5941
5942 /* Skip anonymous version tag. */
5943 if (verdefs != NULL && verdefs->vernum == 0)
5944 verdefs = verdefs->next;
5945
3e3b46e5 5946 if (verdefs == NULL && !info->create_default_symver)
8423293d 5947 s->flags |= SEC_EXCLUDE;
5a580b3a
AM
5948 else
5949 {
5950 unsigned int cdefs;
5951 bfd_size_type size;
5952 struct bfd_elf_version_tree *t;
5953 bfd_byte *p;
5954 Elf_Internal_Verdef def;
5955 Elf_Internal_Verdaux defaux;
3e3b46e5
PB
5956 struct bfd_link_hash_entry *bh;
5957 struct elf_link_hash_entry *h;
5958 const char *name;
5a580b3a
AM
5959
5960 cdefs = 0;
5961 size = 0;
5962
5963 /* Make space for the base version. */
5964 size += sizeof (Elf_External_Verdef);
5965 size += sizeof (Elf_External_Verdaux);
5966 ++cdefs;
5967
3e3b46e5
PB
5968 /* Make space for the default version. */
5969 if (info->create_default_symver)
5970 {
5971 size += sizeof (Elf_External_Verdef);
5972 ++cdefs;
5973 }
5974
5a580b3a
AM
5975 for (t = verdefs; t != NULL; t = t->next)
5976 {
5977 struct bfd_elf_version_deps *n;
5978
a6cc6b3b
RO
5979 /* Don't emit base version twice. */
5980 if (t->vernum == 0)
5981 continue;
5982
5a580b3a
AM
5983 size += sizeof (Elf_External_Verdef);
5984 size += sizeof (Elf_External_Verdaux);
5985 ++cdefs;
5986
5987 for (n = t->deps; n != NULL; n = n->next)
5988 size += sizeof (Elf_External_Verdaux);
5989 }
5990
eea6121a 5991 s->size = size;
a50b1753 5992 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
eea6121a 5993 if (s->contents == NULL && s->size != 0)
5a580b3a
AM
5994 return FALSE;
5995
5996 /* Fill in the version definition section. */
5997
5998 p = s->contents;
5999
6000 def.vd_version = VER_DEF_CURRENT;
6001 def.vd_flags = VER_FLG_BASE;
6002 def.vd_ndx = 1;
6003 def.vd_cnt = 1;
3e3b46e5
PB
6004 if (info->create_default_symver)
6005 {
6006 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6007 def.vd_next = sizeof (Elf_External_Verdef);
6008 }
6009 else
6010 {
6011 def.vd_aux = sizeof (Elf_External_Verdef);
6012 def.vd_next = (sizeof (Elf_External_Verdef)
6013 + sizeof (Elf_External_Verdaux));
6014 }
5a580b3a
AM
6015
6016 if (soname_indx != (bfd_size_type) -1)
6017 {
6018 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6019 soname_indx);
6020 def.vd_hash = bfd_elf_hash (soname);
6021 defaux.vda_name = soname_indx;
3e3b46e5 6022 name = soname;
5a580b3a
AM
6023 }
6024 else
6025 {
5a580b3a
AM
6026 bfd_size_type indx;
6027
06084812 6028 name = lbasename (output_bfd->filename);
5a580b3a
AM
6029 def.vd_hash = bfd_elf_hash (name);
6030 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6031 name, FALSE);
6032 if (indx == (bfd_size_type) -1)
6033 return FALSE;
6034 defaux.vda_name = indx;
6035 }
6036 defaux.vda_next = 0;
6037
6038 _bfd_elf_swap_verdef_out (output_bfd, &def,
6039 (Elf_External_Verdef *) p);
6040 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
6041 if (info->create_default_symver)
6042 {
6043 /* Add a symbol representing this version. */
6044 bh = NULL;
6045 if (! (_bfd_generic_link_add_one_symbol
6046 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6047 0, NULL, FALSE,
6048 get_elf_backend_data (dynobj)->collect, &bh)))
6049 return FALSE;
6050 h = (struct elf_link_hash_entry *) bh;
6051 h->non_elf = 0;
6052 h->def_regular = 1;
6053 h->type = STT_OBJECT;
6054 h->verinfo.vertree = NULL;
6055
6056 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6057 return FALSE;
6058
6059 /* Create a duplicate of the base version with the same
6060 aux block, but different flags. */
6061 def.vd_flags = 0;
6062 def.vd_ndx = 2;
6063 def.vd_aux = sizeof (Elf_External_Verdef);
6064 if (verdefs)
6065 def.vd_next = (sizeof (Elf_External_Verdef)
6066 + sizeof (Elf_External_Verdaux));
6067 else
6068 def.vd_next = 0;
6069 _bfd_elf_swap_verdef_out (output_bfd, &def,
6070 (Elf_External_Verdef *) p);
6071 p += sizeof (Elf_External_Verdef);
6072 }
5a580b3a
AM
6073 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6074 (Elf_External_Verdaux *) p);
6075 p += sizeof (Elf_External_Verdaux);
6076
6077 for (t = verdefs; t != NULL; t = t->next)
6078 {
6079 unsigned int cdeps;
6080 struct bfd_elf_version_deps *n;
5a580b3a 6081
a6cc6b3b
RO
6082 /* Don't emit the base version twice. */
6083 if (t->vernum == 0)
6084 continue;
6085
5a580b3a
AM
6086 cdeps = 0;
6087 for (n = t->deps; n != NULL; n = n->next)
6088 ++cdeps;
6089
6090 /* Add a symbol representing this version. */
6091 bh = NULL;
6092 if (! (_bfd_generic_link_add_one_symbol
6093 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6094 0, NULL, FALSE,
6095 get_elf_backend_data (dynobj)->collect, &bh)))
6096 return FALSE;
6097 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6098 h->non_elf = 0;
6099 h->def_regular = 1;
5a580b3a
AM
6100 h->type = STT_OBJECT;
6101 h->verinfo.vertree = t;
6102
c152c796 6103 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5a580b3a
AM
6104 return FALSE;
6105
6106 def.vd_version = VER_DEF_CURRENT;
6107 def.vd_flags = 0;
6108 if (t->globals.list == NULL
6109 && t->locals.list == NULL
6110 && ! t->used)
6111 def.vd_flags |= VER_FLG_WEAK;
3e3b46e5 6112 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
5a580b3a
AM
6113 def.vd_cnt = cdeps + 1;
6114 def.vd_hash = bfd_elf_hash (t->name);
6115 def.vd_aux = sizeof (Elf_External_Verdef);
6116 def.vd_next = 0;
a6cc6b3b
RO
6117
6118 /* If a basever node is next, it *must* be the last node in
6119 the chain, otherwise Verdef construction breaks. */
6120 if (t->next != NULL && t->next->vernum == 0)
6121 BFD_ASSERT (t->next->next == NULL);
6122
6123 if (t->next != NULL && t->next->vernum != 0)
5a580b3a
AM
6124 def.vd_next = (sizeof (Elf_External_Verdef)
6125 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6126
6127 _bfd_elf_swap_verdef_out (output_bfd, &def,
6128 (Elf_External_Verdef *) p);
6129 p += sizeof (Elf_External_Verdef);
6130
6131 defaux.vda_name = h->dynstr_index;
6132 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6133 h->dynstr_index);
6134 defaux.vda_next = 0;
6135 if (t->deps != NULL)
6136 defaux.vda_next = sizeof (Elf_External_Verdaux);
6137 t->name_indx = defaux.vda_name;
6138
6139 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6140 (Elf_External_Verdaux *) p);
6141 p += sizeof (Elf_External_Verdaux);
6142
6143 for (n = t->deps; n != NULL; n = n->next)
6144 {
6145 if (n->version_needed == NULL)
6146 {
6147 /* This can happen if there was an error in the
6148 version script. */
6149 defaux.vda_name = 0;
6150 }
6151 else
6152 {
6153 defaux.vda_name = n->version_needed->name_indx;
6154 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6155 defaux.vda_name);
6156 }
6157 if (n->next == NULL)
6158 defaux.vda_next = 0;
6159 else
6160 defaux.vda_next = sizeof (Elf_External_Verdaux);
6161
6162 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6163 (Elf_External_Verdaux *) p);
6164 p += sizeof (Elf_External_Verdaux);
6165 }
6166 }
6167
6168 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6169 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs))
6170 return FALSE;
6171
6172 elf_tdata (output_bfd)->cverdefs = cdefs;
6173 }
6174
6175 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6176 {
6177 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6178 return FALSE;
6179 }
6180 else if (info->flags & DF_BIND_NOW)
6181 {
6182 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6183 return FALSE;
6184 }
6185
6186 if (info->flags_1)
6187 {
6188 if (info->executable)
6189 info->flags_1 &= ~ (DF_1_INITFIRST
6190 | DF_1_NODELETE
6191 | DF_1_NOOPEN);
6192 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6193 return FALSE;
6194 }
6195
6196 /* Work out the size of the version reference section. */
6197
3d4d4302 6198 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
6199 BFD_ASSERT (s != NULL);
6200 {
6201 struct elf_find_verdep_info sinfo;
6202
5a580b3a
AM
6203 sinfo.info = info;
6204 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6205 if (sinfo.vers == 0)
6206 sinfo.vers = 1;
6207 sinfo.failed = FALSE;
6208
6209 elf_link_hash_traverse (elf_hash_table (info),
6210 _bfd_elf_link_find_version_dependencies,
6211 &sinfo);
14b1c01e
AM
6212 if (sinfo.failed)
6213 return FALSE;
5a580b3a
AM
6214
6215 if (elf_tdata (output_bfd)->verref == NULL)
8423293d 6216 s->flags |= SEC_EXCLUDE;
5a580b3a
AM
6217 else
6218 {
6219 Elf_Internal_Verneed *t;
6220 unsigned int size;
6221 unsigned int crefs;
6222 bfd_byte *p;
6223
a6cc6b3b 6224 /* Build the version dependency section. */
5a580b3a
AM
6225 size = 0;
6226 crefs = 0;
6227 for (t = elf_tdata (output_bfd)->verref;
6228 t != NULL;
6229 t = t->vn_nextref)
6230 {
6231 Elf_Internal_Vernaux *a;
6232
6233 size += sizeof (Elf_External_Verneed);
6234 ++crefs;
6235 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6236 size += sizeof (Elf_External_Vernaux);
6237 }
6238
eea6121a 6239 s->size = size;
a50b1753 6240 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
5a580b3a
AM
6241 if (s->contents == NULL)
6242 return FALSE;
6243
6244 p = s->contents;
6245 for (t = elf_tdata (output_bfd)->verref;
6246 t != NULL;
6247 t = t->vn_nextref)
6248 {
6249 unsigned int caux;
6250 Elf_Internal_Vernaux *a;
6251 bfd_size_type indx;
6252
6253 caux = 0;
6254 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6255 ++caux;
6256
6257 t->vn_version = VER_NEED_CURRENT;
6258 t->vn_cnt = caux;
6259 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6260 elf_dt_name (t->vn_bfd) != NULL
6261 ? elf_dt_name (t->vn_bfd)
06084812 6262 : lbasename (t->vn_bfd->filename),
5a580b3a
AM
6263 FALSE);
6264 if (indx == (bfd_size_type) -1)
6265 return FALSE;
6266 t->vn_file = indx;
6267 t->vn_aux = sizeof (Elf_External_Verneed);
6268 if (t->vn_nextref == NULL)
6269 t->vn_next = 0;
6270 else
6271 t->vn_next = (sizeof (Elf_External_Verneed)
6272 + caux * sizeof (Elf_External_Vernaux));
6273
6274 _bfd_elf_swap_verneed_out (output_bfd, t,
6275 (Elf_External_Verneed *) p);
6276 p += sizeof (Elf_External_Verneed);
6277
6278 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6279 {
6280 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6281 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6282 a->vna_nodename, FALSE);
6283 if (indx == (bfd_size_type) -1)
6284 return FALSE;
6285 a->vna_name = indx;
6286 if (a->vna_nextptr == NULL)
6287 a->vna_next = 0;
6288 else
6289 a->vna_next = sizeof (Elf_External_Vernaux);
6290
6291 _bfd_elf_swap_vernaux_out (output_bfd, a,
6292 (Elf_External_Vernaux *) p);
6293 p += sizeof (Elf_External_Vernaux);
6294 }
6295 }
6296
6297 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6298 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6299 return FALSE;
6300
6301 elf_tdata (output_bfd)->cverrefs = crefs;
6302 }
6303 }
6304
8423293d
AM
6305 if ((elf_tdata (output_bfd)->cverrefs == 0
6306 && elf_tdata (output_bfd)->cverdefs == 0)
6307 || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6308 &section_sym_count) == 0)
6309 {
3d4d4302 6310 s = bfd_get_linker_section (dynobj, ".gnu.version");
8423293d
AM
6311 s->flags |= SEC_EXCLUDE;
6312 }
6313 }
6314 return TRUE;
6315}
6316
74541ad4
AM
6317/* Find the first non-excluded output section. We'll use its
6318 section symbol for some emitted relocs. */
6319void
6320_bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6321{
6322 asection *s;
6323
6324 for (s = output_bfd->sections; s != NULL; s = s->next)
6325 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
6326 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6327 {
6328 elf_hash_table (info)->text_index_section = s;
6329 break;
6330 }
6331}
6332
6333/* Find two non-excluded output sections, one for code, one for data.
6334 We'll use their section symbols for some emitted relocs. */
6335void
6336_bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
6337{
6338 asection *s;
6339
266b05cf
DJ
6340 /* Data first, since setting text_index_section changes
6341 _bfd_elf_link_omit_section_dynsym. */
74541ad4 6342 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf 6343 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
74541ad4
AM
6344 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6345 {
266b05cf 6346 elf_hash_table (info)->data_index_section = s;
74541ad4
AM
6347 break;
6348 }
6349
6350 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf
DJ
6351 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
6352 == (SEC_ALLOC | SEC_READONLY))
74541ad4
AM
6353 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6354 {
266b05cf 6355 elf_hash_table (info)->text_index_section = s;
74541ad4
AM
6356 break;
6357 }
6358
6359 if (elf_hash_table (info)->text_index_section == NULL)
6360 elf_hash_table (info)->text_index_section
6361 = elf_hash_table (info)->data_index_section;
6362}
6363
8423293d
AM
6364bfd_boolean
6365bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6366{
74541ad4
AM
6367 const struct elf_backend_data *bed;
6368
8423293d
AM
6369 if (!is_elf_hash_table (info->hash))
6370 return TRUE;
6371
74541ad4
AM
6372 bed = get_elf_backend_data (output_bfd);
6373 (*bed->elf_backend_init_index_section) (output_bfd, info);
6374
8423293d
AM
6375 if (elf_hash_table (info)->dynamic_sections_created)
6376 {
6377 bfd *dynobj;
8423293d
AM
6378 asection *s;
6379 bfd_size_type dynsymcount;
6380 unsigned long section_sym_count;
8423293d
AM
6381 unsigned int dtagcount;
6382
6383 dynobj = elf_hash_table (info)->dynobj;
6384
5a580b3a
AM
6385 /* Assign dynsym indicies. In a shared library we generate a
6386 section symbol for each output section, which come first.
6387 Next come all of the back-end allocated local dynamic syms,
6388 followed by the rest of the global symbols. */
6389
554220db
AM
6390 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6391 &section_sym_count);
5a580b3a
AM
6392
6393 /* Work out the size of the symbol version section. */
3d4d4302 6394 s = bfd_get_linker_section (dynobj, ".gnu.version");
5a580b3a 6395 BFD_ASSERT (s != NULL);
8423293d
AM
6396 if (dynsymcount != 0
6397 && (s->flags & SEC_EXCLUDE) == 0)
5a580b3a 6398 {
eea6121a 6399 s->size = dynsymcount * sizeof (Elf_External_Versym);
a50b1753 6400 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
5a580b3a
AM
6401 if (s->contents == NULL)
6402 return FALSE;
6403
6404 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6405 return FALSE;
6406 }
6407
6408 /* Set the size of the .dynsym and .hash sections. We counted
6409 the number of dynamic symbols in elf_link_add_object_symbols.
6410 We will build the contents of .dynsym and .hash when we build
6411 the final symbol table, because until then we do not know the
6412 correct value to give the symbols. We built the .dynstr
6413 section as we went along in elf_link_add_object_symbols. */
3d4d4302 6414 s = bfd_get_linker_section (dynobj, ".dynsym");
5a580b3a 6415 BFD_ASSERT (s != NULL);
eea6121a 6416 s->size = dynsymcount * bed->s->sizeof_sym;
5a580b3a
AM
6417
6418 if (dynsymcount != 0)
6419 {
a50b1753 6420 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
554220db
AM
6421 if (s->contents == NULL)
6422 return FALSE;
5a580b3a 6423
554220db
AM
6424 /* The first entry in .dynsym is a dummy symbol.
6425 Clear all the section syms, in case we don't output them all. */
6426 ++section_sym_count;
6427 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
5a580b3a
AM
6428 }
6429
fdc90cb4
JJ
6430 elf_hash_table (info)->bucketcount = 0;
6431
5a580b3a
AM
6432 /* Compute the size of the hashing table. As a side effect this
6433 computes the hash values for all the names we export. */
fdc90cb4
JJ
6434 if (info->emit_hash)
6435 {
6436 unsigned long int *hashcodes;
14b1c01e 6437 struct hash_codes_info hashinf;
fdc90cb4
JJ
6438 bfd_size_type amt;
6439 unsigned long int nsyms;
6440 size_t bucketcount;
6441 size_t hash_entry_size;
6442
6443 /* Compute the hash values for all exported symbols. At the same
6444 time store the values in an array so that we could use them for
6445 optimizations. */
6446 amt = dynsymcount * sizeof (unsigned long int);
a50b1753 6447 hashcodes = (unsigned long int *) bfd_malloc (amt);
fdc90cb4
JJ
6448 if (hashcodes == NULL)
6449 return FALSE;
14b1c01e
AM
6450 hashinf.hashcodes = hashcodes;
6451 hashinf.error = FALSE;
5a580b3a 6452
fdc90cb4
JJ
6453 /* Put all hash values in HASHCODES. */
6454 elf_link_hash_traverse (elf_hash_table (info),
14b1c01e
AM
6455 elf_collect_hash_codes, &hashinf);
6456 if (hashinf.error)
4dd07732
AM
6457 {
6458 free (hashcodes);
6459 return FALSE;
6460 }
5a580b3a 6461
14b1c01e 6462 nsyms = hashinf.hashcodes - hashcodes;
fdc90cb4
JJ
6463 bucketcount
6464 = compute_bucket_count (info, hashcodes, nsyms, 0);
6465 free (hashcodes);
6466
6467 if (bucketcount == 0)
6468 return FALSE;
5a580b3a 6469
fdc90cb4
JJ
6470 elf_hash_table (info)->bucketcount = bucketcount;
6471
3d4d4302 6472 s = bfd_get_linker_section (dynobj, ".hash");
fdc90cb4
JJ
6473 BFD_ASSERT (s != NULL);
6474 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6475 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
a50b1753 6476 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6477 if (s->contents == NULL)
6478 return FALSE;
6479
6480 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6481 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6482 s->contents + hash_entry_size);
6483 }
6484
6485 if (info->emit_gnu_hash)
6486 {
6487 size_t i, cnt;
6488 unsigned char *contents;
6489 struct collect_gnu_hash_codes cinfo;
6490 bfd_size_type amt;
6491 size_t bucketcount;
6492
6493 memset (&cinfo, 0, sizeof (cinfo));
6494
6495 /* Compute the hash values for all exported symbols. At the same
6496 time store the values in an array so that we could use them for
6497 optimizations. */
6498 amt = dynsymcount * 2 * sizeof (unsigned long int);
a50b1753 6499 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
fdc90cb4
JJ
6500 if (cinfo.hashcodes == NULL)
6501 return FALSE;
6502
6503 cinfo.hashval = cinfo.hashcodes + dynsymcount;
6504 cinfo.min_dynindx = -1;
6505 cinfo.output_bfd = output_bfd;
6506 cinfo.bed = bed;
6507
6508 /* Put all hash values in HASHCODES. */
6509 elf_link_hash_traverse (elf_hash_table (info),
6510 elf_collect_gnu_hash_codes, &cinfo);
14b1c01e 6511 if (cinfo.error)
4dd07732
AM
6512 {
6513 free (cinfo.hashcodes);
6514 return FALSE;
6515 }
fdc90cb4
JJ
6516
6517 bucketcount
6518 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6519
6520 if (bucketcount == 0)
6521 {
6522 free (cinfo.hashcodes);
6523 return FALSE;
6524 }
6525
3d4d4302 6526 s = bfd_get_linker_section (dynobj, ".gnu.hash");
fdc90cb4
JJ
6527 BFD_ASSERT (s != NULL);
6528
6529 if (cinfo.nsyms == 0)
6530 {
6531 /* Empty .gnu.hash section is special. */
6532 BFD_ASSERT (cinfo.min_dynindx == -1);
6533 free (cinfo.hashcodes);
6534 s->size = 5 * 4 + bed->s->arch_size / 8;
a50b1753 6535 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6536 if (contents == NULL)
6537 return FALSE;
6538 s->contents = contents;
6539 /* 1 empty bucket. */
6540 bfd_put_32 (output_bfd, 1, contents);
6541 /* SYMIDX above the special symbol 0. */
6542 bfd_put_32 (output_bfd, 1, contents + 4);
6543 /* Just one word for bitmask. */
6544 bfd_put_32 (output_bfd, 1, contents + 8);
6545 /* Only hash fn bloom filter. */
6546 bfd_put_32 (output_bfd, 0, contents + 12);
6547 /* No hashes are valid - empty bitmask. */
6548 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
6549 /* No hashes in the only bucket. */
6550 bfd_put_32 (output_bfd, 0,
6551 contents + 16 + bed->s->arch_size / 8);
6552 }
6553 else
6554 {
9e6619e2 6555 unsigned long int maskwords, maskbitslog2, x;
0b33793d 6556 BFD_ASSERT (cinfo.min_dynindx != -1);
fdc90cb4 6557
9e6619e2
AM
6558 x = cinfo.nsyms;
6559 maskbitslog2 = 1;
6560 while ((x >>= 1) != 0)
6561 ++maskbitslog2;
fdc90cb4
JJ
6562 if (maskbitslog2 < 3)
6563 maskbitslog2 = 5;
6564 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
6565 maskbitslog2 = maskbitslog2 + 3;
6566 else
6567 maskbitslog2 = maskbitslog2 + 2;
6568 if (bed->s->arch_size == 64)
6569 {
6570 if (maskbitslog2 == 5)
6571 maskbitslog2 = 6;
6572 cinfo.shift1 = 6;
6573 }
6574 else
6575 cinfo.shift1 = 5;
6576 cinfo.mask = (1 << cinfo.shift1) - 1;
2ccdbfcc 6577 cinfo.shift2 = maskbitslog2;
fdc90cb4
JJ
6578 cinfo.maskbits = 1 << maskbitslog2;
6579 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6580 amt = bucketcount * sizeof (unsigned long int) * 2;
6581 amt += maskwords * sizeof (bfd_vma);
a50b1753 6582 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
fdc90cb4
JJ
6583 if (cinfo.bitmask == NULL)
6584 {
6585 free (cinfo.hashcodes);
6586 return FALSE;
6587 }
6588
a50b1753 6589 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
fdc90cb4
JJ
6590 cinfo.indx = cinfo.counts + bucketcount;
6591 cinfo.symindx = dynsymcount - cinfo.nsyms;
6592 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
6593
6594 /* Determine how often each hash bucket is used. */
6595 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
6596 for (i = 0; i < cinfo.nsyms; ++i)
6597 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
6598
6599 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
6600 if (cinfo.counts[i] != 0)
6601 {
6602 cinfo.indx[i] = cnt;
6603 cnt += cinfo.counts[i];
6604 }
6605 BFD_ASSERT (cnt == dynsymcount);
6606 cinfo.bucketcount = bucketcount;
6607 cinfo.local_indx = cinfo.min_dynindx;
6608
6609 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
6610 s->size += cinfo.maskbits / 8;
a50b1753 6611 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6612 if (contents == NULL)
6613 {
6614 free (cinfo.bitmask);
6615 free (cinfo.hashcodes);
6616 return FALSE;
6617 }
6618
6619 s->contents = contents;
6620 bfd_put_32 (output_bfd, bucketcount, contents);
6621 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
6622 bfd_put_32 (output_bfd, maskwords, contents + 8);
6623 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
6624 contents += 16 + cinfo.maskbits / 8;
6625
6626 for (i = 0; i < bucketcount; ++i)
6627 {
6628 if (cinfo.counts[i] == 0)
6629 bfd_put_32 (output_bfd, 0, contents);
6630 else
6631 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
6632 contents += 4;
6633 }
6634
6635 cinfo.contents = contents;
6636
6637 /* Renumber dynamic symbols, populate .gnu.hash section. */
6638 elf_link_hash_traverse (elf_hash_table (info),
6639 elf_renumber_gnu_hash_syms, &cinfo);
6640
6641 contents = s->contents + 16;
6642 for (i = 0; i < maskwords; ++i)
6643 {
6644 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
6645 contents);
6646 contents += bed->s->arch_size / 8;
6647 }
6648
6649 free (cinfo.bitmask);
6650 free (cinfo.hashcodes);
6651 }
6652 }
5a580b3a 6653
3d4d4302 6654 s = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
6655 BFD_ASSERT (s != NULL);
6656
4ad4eba5 6657 elf_finalize_dynstr (output_bfd, info);
5a580b3a 6658
eea6121a 6659 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5a580b3a
AM
6660
6661 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
6662 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
6663 return FALSE;
6664 }
6665
6666 return TRUE;
6667}
4d269e42 6668\f
4d269e42
AM
6669/* Make sure sec_info_type is cleared if sec_info is cleared too. */
6670
6671static void
6672merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
6673 asection *sec)
6674{
dbaa2011
AM
6675 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
6676 sec->sec_info_type = SEC_INFO_TYPE_NONE;
4d269e42
AM
6677}
6678
6679/* Finish SHF_MERGE section merging. */
6680
6681bfd_boolean
6682_bfd_elf_merge_sections (bfd *abfd, struct bfd_link_info *info)
6683{
6684 bfd *ibfd;
6685 asection *sec;
6686
6687 if (!is_elf_hash_table (info->hash))
6688 return FALSE;
6689
c72f2fb2 6690 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
4d269e42
AM
6691 if ((ibfd->flags & DYNAMIC) == 0)
6692 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6693 if ((sec->flags & SEC_MERGE) != 0
6694 && !bfd_is_abs_section (sec->output_section))
6695 {
6696 struct bfd_elf_section_data *secdata;
6697
6698 secdata = elf_section_data (sec);
6699 if (! _bfd_add_merge_section (abfd,
6700 &elf_hash_table (info)->merge_info,
6701 sec, &secdata->sec_info))
6702 return FALSE;
6703 else if (secdata->sec_info)
dbaa2011 6704 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
4d269e42
AM
6705 }
6706
6707 if (elf_hash_table (info)->merge_info != NULL)
6708 _bfd_merge_sections (abfd, info, elf_hash_table (info)->merge_info,
6709 merge_sections_remove_hook);
6710 return TRUE;
6711}
6712
6713/* Create an entry in an ELF linker hash table. */
6714
6715struct bfd_hash_entry *
6716_bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
6717 struct bfd_hash_table *table,
6718 const char *string)
6719{
6720 /* Allocate the structure if it has not already been allocated by a
6721 subclass. */
6722 if (entry == NULL)
6723 {
a50b1753
NC
6724 entry = (struct bfd_hash_entry *)
6725 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
4d269e42
AM
6726 if (entry == NULL)
6727 return entry;
6728 }
6729
6730 /* Call the allocation method of the superclass. */
6731 entry = _bfd_link_hash_newfunc (entry, table, string);
6732 if (entry != NULL)
6733 {
6734 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
6735 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
6736
6737 /* Set local fields. */
6738 ret->indx = -1;
6739 ret->dynindx = -1;
6740 ret->got = htab->init_got_refcount;
6741 ret->plt = htab->init_plt_refcount;
6742 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
6743 - offsetof (struct elf_link_hash_entry, size)));
6744 /* Assume that we have been called by a non-ELF symbol reader.
6745 This flag is then reset by the code which reads an ELF input
6746 file. This ensures that a symbol created by a non-ELF symbol
6747 reader will have the flag set correctly. */
6748 ret->non_elf = 1;
6749 }
6750
6751 return entry;
6752}
6753
6754/* Copy data from an indirect symbol to its direct symbol, hiding the
6755 old indirect symbol. Also used for copying flags to a weakdef. */
6756
6757void
6758_bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
6759 struct elf_link_hash_entry *dir,
6760 struct elf_link_hash_entry *ind)
6761{
6762 struct elf_link_hash_table *htab;
6763
6764 /* Copy down any references that we may have already seen to the
6765 symbol which just became indirect. */
6766
6767 dir->ref_dynamic |= ind->ref_dynamic;
6768 dir->ref_regular |= ind->ref_regular;
6769 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
6770 dir->non_got_ref |= ind->non_got_ref;
6771 dir->needs_plt |= ind->needs_plt;
6772 dir->pointer_equality_needed |= ind->pointer_equality_needed;
6773
6774 if (ind->root.type != bfd_link_hash_indirect)
6775 return;
6776
6777 /* Copy over the global and procedure linkage table refcount entries.
6778 These may have been already set up by a check_relocs routine. */
6779 htab = elf_hash_table (info);
6780 if (ind->got.refcount > htab->init_got_refcount.refcount)
6781 {
6782 if (dir->got.refcount < 0)
6783 dir->got.refcount = 0;
6784 dir->got.refcount += ind->got.refcount;
6785 ind->got.refcount = htab->init_got_refcount.refcount;
6786 }
6787
6788 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
6789 {
6790 if (dir->plt.refcount < 0)
6791 dir->plt.refcount = 0;
6792 dir->plt.refcount += ind->plt.refcount;
6793 ind->plt.refcount = htab->init_plt_refcount.refcount;
6794 }
6795
6796 if (ind->dynindx != -1)
6797 {
6798 if (dir->dynindx != -1)
6799 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
6800 dir->dynindx = ind->dynindx;
6801 dir->dynstr_index = ind->dynstr_index;
6802 ind->dynindx = -1;
6803 ind->dynstr_index = 0;
6804 }
6805}
6806
6807void
6808_bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
6809 struct elf_link_hash_entry *h,
6810 bfd_boolean force_local)
6811{
3aa14d16
L
6812 /* STT_GNU_IFUNC symbol must go through PLT. */
6813 if (h->type != STT_GNU_IFUNC)
6814 {
6815 h->plt = elf_hash_table (info)->init_plt_offset;
6816 h->needs_plt = 0;
6817 }
4d269e42
AM
6818 if (force_local)
6819 {
6820 h->forced_local = 1;
6821 if (h->dynindx != -1)
6822 {
6823 h->dynindx = -1;
6824 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
6825 h->dynstr_index);
6826 }
6827 }
6828}
6829
7bf52ea2
AM
6830/* Initialize an ELF linker hash table. *TABLE has been zeroed by our
6831 caller. */
4d269e42
AM
6832
6833bfd_boolean
6834_bfd_elf_link_hash_table_init
6835 (struct elf_link_hash_table *table,
6836 bfd *abfd,
6837 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
6838 struct bfd_hash_table *,
6839 const char *),
4dfe6ac6
NC
6840 unsigned int entsize,
6841 enum elf_target_id target_id)
4d269e42
AM
6842{
6843 bfd_boolean ret;
6844 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
6845
4d269e42
AM
6846 table->init_got_refcount.refcount = can_refcount - 1;
6847 table->init_plt_refcount.refcount = can_refcount - 1;
6848 table->init_got_offset.offset = -(bfd_vma) 1;
6849 table->init_plt_offset.offset = -(bfd_vma) 1;
6850 /* The first dynamic symbol is a dummy. */
6851 table->dynsymcount = 1;
6852
6853 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
4dfe6ac6 6854
4d269e42 6855 table->root.type = bfd_link_elf_hash_table;
4dfe6ac6 6856 table->hash_table_id = target_id;
4d269e42
AM
6857
6858 return ret;
6859}
6860
6861/* Create an ELF linker hash table. */
6862
6863struct bfd_link_hash_table *
6864_bfd_elf_link_hash_table_create (bfd *abfd)
6865{
6866 struct elf_link_hash_table *ret;
6867 bfd_size_type amt = sizeof (struct elf_link_hash_table);
6868
7bf52ea2 6869 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
4d269e42
AM
6870 if (ret == NULL)
6871 return NULL;
6872
6873 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
4dfe6ac6
NC
6874 sizeof (struct elf_link_hash_entry),
6875 GENERIC_ELF_DATA))
4d269e42
AM
6876 {
6877 free (ret);
6878 return NULL;
6879 }
d495ab0d 6880 ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
4d269e42
AM
6881
6882 return &ret->root;
6883}
6884
9f7c3e5e
AM
6885/* Destroy an ELF linker hash table. */
6886
6887void
d495ab0d 6888_bfd_elf_link_hash_table_free (bfd *obfd)
9f7c3e5e 6889{
d495ab0d
AM
6890 struct elf_link_hash_table *htab;
6891
6892 htab = (struct elf_link_hash_table *) obfd->link.hash;
9f7c3e5e
AM
6893 if (htab->dynstr != NULL)
6894 _bfd_elf_strtab_free (htab->dynstr);
6895 _bfd_merge_sections_free (htab->merge_info);
d495ab0d 6896 _bfd_generic_link_hash_table_free (obfd);
9f7c3e5e
AM
6897}
6898
4d269e42
AM
6899/* This is a hook for the ELF emulation code in the generic linker to
6900 tell the backend linker what file name to use for the DT_NEEDED
6901 entry for a dynamic object. */
6902
6903void
6904bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
6905{
6906 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6907 && bfd_get_format (abfd) == bfd_object)
6908 elf_dt_name (abfd) = name;
6909}
6910
6911int
6912bfd_elf_get_dyn_lib_class (bfd *abfd)
6913{
6914 int lib_class;
6915 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6916 && bfd_get_format (abfd) == bfd_object)
6917 lib_class = elf_dyn_lib_class (abfd);
6918 else
6919 lib_class = 0;
6920 return lib_class;
6921}
6922
6923void
6924bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
6925{
6926 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6927 && bfd_get_format (abfd) == bfd_object)
6928 elf_dyn_lib_class (abfd) = lib_class;
6929}
6930
6931/* Get the list of DT_NEEDED entries for a link. This is a hook for
6932 the linker ELF emulation code. */
6933
6934struct bfd_link_needed_list *
6935bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
6936 struct bfd_link_info *info)
6937{
6938 if (! is_elf_hash_table (info->hash))
6939 return NULL;
6940 return elf_hash_table (info)->needed;
6941}
6942
6943/* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
6944 hook for the linker ELF emulation code. */
6945
6946struct bfd_link_needed_list *
6947bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
6948 struct bfd_link_info *info)
6949{
6950 if (! is_elf_hash_table (info->hash))
6951 return NULL;
6952 return elf_hash_table (info)->runpath;
6953}
6954
6955/* Get the name actually used for a dynamic object for a link. This
6956 is the SONAME entry if there is one. Otherwise, it is the string
6957 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
6958
6959const char *
6960bfd_elf_get_dt_soname (bfd *abfd)
6961{
6962 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6963 && bfd_get_format (abfd) == bfd_object)
6964 return elf_dt_name (abfd);
6965 return NULL;
6966}
6967
6968/* Get the list of DT_NEEDED entries from a BFD. This is a hook for
6969 the ELF linker emulation code. */
6970
6971bfd_boolean
6972bfd_elf_get_bfd_needed_list (bfd *abfd,
6973 struct bfd_link_needed_list **pneeded)
6974{
6975 asection *s;
6976 bfd_byte *dynbuf = NULL;
cb33740c 6977 unsigned int elfsec;
4d269e42
AM
6978 unsigned long shlink;
6979 bfd_byte *extdyn, *extdynend;
6980 size_t extdynsize;
6981 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
6982
6983 *pneeded = NULL;
6984
6985 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
6986 || bfd_get_format (abfd) != bfd_object)
6987 return TRUE;
6988
6989 s = bfd_get_section_by_name (abfd, ".dynamic");
6990 if (s == NULL || s->size == 0)
6991 return TRUE;
6992
6993 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
6994 goto error_return;
6995
6996 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 6997 if (elfsec == SHN_BAD)
4d269e42
AM
6998 goto error_return;
6999
7000 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
c152c796 7001
4d269e42
AM
7002 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7003 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7004
7005 extdyn = dynbuf;
7006 extdynend = extdyn + s->size;
7007 for (; extdyn < extdynend; extdyn += extdynsize)
7008 {
7009 Elf_Internal_Dyn dyn;
7010
7011 (*swap_dyn_in) (abfd, extdyn, &dyn);
7012
7013 if (dyn.d_tag == DT_NULL)
7014 break;
7015
7016 if (dyn.d_tag == DT_NEEDED)
7017 {
7018 const char *string;
7019 struct bfd_link_needed_list *l;
7020 unsigned int tagv = dyn.d_un.d_val;
7021 bfd_size_type amt;
7022
7023 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7024 if (string == NULL)
7025 goto error_return;
7026
7027 amt = sizeof *l;
a50b1753 7028 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4d269e42
AM
7029 if (l == NULL)
7030 goto error_return;
7031
7032 l->by = abfd;
7033 l->name = string;
7034 l->next = *pneeded;
7035 *pneeded = l;
7036 }
7037 }
7038
7039 free (dynbuf);
7040
7041 return TRUE;
7042
7043 error_return:
7044 if (dynbuf != NULL)
7045 free (dynbuf);
7046 return FALSE;
7047}
7048
7049struct elf_symbuf_symbol
7050{
7051 unsigned long st_name; /* Symbol name, index in string tbl */
7052 unsigned char st_info; /* Type and binding attributes */
7053 unsigned char st_other; /* Visibilty, and target specific */
7054};
7055
7056struct elf_symbuf_head
7057{
7058 struct elf_symbuf_symbol *ssym;
7059 bfd_size_type count;
7060 unsigned int st_shndx;
7061};
7062
7063struct elf_symbol
7064{
7065 union
7066 {
7067 Elf_Internal_Sym *isym;
7068 struct elf_symbuf_symbol *ssym;
7069 } u;
7070 const char *name;
7071};
7072
7073/* Sort references to symbols by ascending section number. */
7074
7075static int
7076elf_sort_elf_symbol (const void *arg1, const void *arg2)
7077{
7078 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7079 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7080
7081 return s1->st_shndx - s2->st_shndx;
7082}
7083
7084static int
7085elf_sym_name_compare (const void *arg1, const void *arg2)
7086{
7087 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7088 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7089 return strcmp (s1->name, s2->name);
7090}
7091
7092static struct elf_symbuf_head *
7093elf_create_symbuf (bfd_size_type symcount, Elf_Internal_Sym *isymbuf)
7094{
14b1c01e 7095 Elf_Internal_Sym **ind, **indbufend, **indbuf;
4d269e42
AM
7096 struct elf_symbuf_symbol *ssym;
7097 struct elf_symbuf_head *ssymbuf, *ssymhead;
3ae181ee 7098 bfd_size_type i, shndx_count, total_size;
4d269e42 7099
a50b1753 7100 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
4d269e42
AM
7101 if (indbuf == NULL)
7102 return NULL;
7103
7104 for (ind = indbuf, i = 0; i < symcount; i++)
7105 if (isymbuf[i].st_shndx != SHN_UNDEF)
7106 *ind++ = &isymbuf[i];
7107 indbufend = ind;
7108
7109 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7110 elf_sort_elf_symbol);
7111
7112 shndx_count = 0;
7113 if (indbufend > indbuf)
7114 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7115 if (ind[0]->st_shndx != ind[1]->st_shndx)
7116 shndx_count++;
7117
3ae181ee
L
7118 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7119 + (indbufend - indbuf) * sizeof (*ssym));
a50b1753 7120 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
4d269e42
AM
7121 if (ssymbuf == NULL)
7122 {
7123 free (indbuf);
7124 return NULL;
7125 }
7126
3ae181ee 7127 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
4d269e42
AM
7128 ssymbuf->ssym = NULL;
7129 ssymbuf->count = shndx_count;
7130 ssymbuf->st_shndx = 0;
7131 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7132 {
7133 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7134 {
7135 ssymhead++;
7136 ssymhead->ssym = ssym;
7137 ssymhead->count = 0;
7138 ssymhead->st_shndx = (*ind)->st_shndx;
7139 }
7140 ssym->st_name = (*ind)->st_name;
7141 ssym->st_info = (*ind)->st_info;
7142 ssym->st_other = (*ind)->st_other;
7143 ssymhead->count++;
7144 }
3ae181ee
L
7145 BFD_ASSERT ((bfd_size_type) (ssymhead - ssymbuf) == shndx_count
7146 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7147 == total_size));
4d269e42
AM
7148
7149 free (indbuf);
7150 return ssymbuf;
7151}
7152
7153/* Check if 2 sections define the same set of local and global
7154 symbols. */
7155
8f317e31 7156static bfd_boolean
4d269e42
AM
7157bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7158 struct bfd_link_info *info)
7159{
7160 bfd *bfd1, *bfd2;
7161 const struct elf_backend_data *bed1, *bed2;
7162 Elf_Internal_Shdr *hdr1, *hdr2;
7163 bfd_size_type symcount1, symcount2;
7164 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7165 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7166 Elf_Internal_Sym *isym, *isymend;
7167 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
7168 bfd_size_type count1, count2, i;
cb33740c 7169 unsigned int shndx1, shndx2;
4d269e42
AM
7170 bfd_boolean result;
7171
7172 bfd1 = sec1->owner;
7173 bfd2 = sec2->owner;
7174
4d269e42
AM
7175 /* Both sections have to be in ELF. */
7176 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7177 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7178 return FALSE;
7179
7180 if (elf_section_type (sec1) != elf_section_type (sec2))
7181 return FALSE;
7182
4d269e42
AM
7183 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7184 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
cb33740c 7185 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
4d269e42
AM
7186 return FALSE;
7187
7188 bed1 = get_elf_backend_data (bfd1);
7189 bed2 = get_elf_backend_data (bfd2);
7190 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7191 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7192 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7193 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7194
7195 if (symcount1 == 0 || symcount2 == 0)
7196 return FALSE;
7197
7198 result = FALSE;
7199 isymbuf1 = NULL;
7200 isymbuf2 = NULL;
a50b1753
NC
7201 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7202 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
4d269e42
AM
7203
7204 if (ssymbuf1 == NULL)
7205 {
7206 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7207 NULL, NULL, NULL);
7208 if (isymbuf1 == NULL)
7209 goto done;
7210
7211 if (!info->reduce_memory_overheads)
7212 elf_tdata (bfd1)->symbuf = ssymbuf1
7213 = elf_create_symbuf (symcount1, isymbuf1);
7214 }
7215
7216 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7217 {
7218 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7219 NULL, NULL, NULL);
7220 if (isymbuf2 == NULL)
7221 goto done;
7222
7223 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7224 elf_tdata (bfd2)->symbuf = ssymbuf2
7225 = elf_create_symbuf (symcount2, isymbuf2);
7226 }
7227
7228 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7229 {
7230 /* Optimized faster version. */
7231 bfd_size_type lo, hi, mid;
7232 struct elf_symbol *symp;
7233 struct elf_symbuf_symbol *ssym, *ssymend;
7234
7235 lo = 0;
7236 hi = ssymbuf1->count;
7237 ssymbuf1++;
7238 count1 = 0;
7239 while (lo < hi)
7240 {
7241 mid = (lo + hi) / 2;
cb33740c 7242 if (shndx1 < ssymbuf1[mid].st_shndx)
4d269e42 7243 hi = mid;
cb33740c 7244 else if (shndx1 > ssymbuf1[mid].st_shndx)
4d269e42
AM
7245 lo = mid + 1;
7246 else
7247 {
7248 count1 = ssymbuf1[mid].count;
7249 ssymbuf1 += mid;
7250 break;
7251 }
7252 }
7253
7254 lo = 0;
7255 hi = ssymbuf2->count;
7256 ssymbuf2++;
7257 count2 = 0;
7258 while (lo < hi)
7259 {
7260 mid = (lo + hi) / 2;
cb33740c 7261 if (shndx2 < ssymbuf2[mid].st_shndx)
4d269e42 7262 hi = mid;
cb33740c 7263 else if (shndx2 > ssymbuf2[mid].st_shndx)
4d269e42
AM
7264 lo = mid + 1;
7265 else
7266 {
7267 count2 = ssymbuf2[mid].count;
7268 ssymbuf2 += mid;
7269 break;
7270 }
7271 }
7272
7273 if (count1 == 0 || count2 == 0 || count1 != count2)
7274 goto done;
7275
a50b1753
NC
7276 symtable1 = (struct elf_symbol *)
7277 bfd_malloc (count1 * sizeof (struct elf_symbol));
7278 symtable2 = (struct elf_symbol *)
7279 bfd_malloc (count2 * sizeof (struct elf_symbol));
4d269e42
AM
7280 if (symtable1 == NULL || symtable2 == NULL)
7281 goto done;
7282
7283 symp = symtable1;
7284 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7285 ssym < ssymend; ssym++, symp++)
7286 {
7287 symp->u.ssym = ssym;
7288 symp->name = bfd_elf_string_from_elf_section (bfd1,
7289 hdr1->sh_link,
7290 ssym->st_name);
7291 }
7292
7293 symp = symtable2;
7294 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
7295 ssym < ssymend; ssym++, symp++)
7296 {
7297 symp->u.ssym = ssym;
7298 symp->name = bfd_elf_string_from_elf_section (bfd2,
7299 hdr2->sh_link,
7300 ssym->st_name);
7301 }
7302
7303 /* Sort symbol by name. */
7304 qsort (symtable1, count1, sizeof (struct elf_symbol),
7305 elf_sym_name_compare);
7306 qsort (symtable2, count1, sizeof (struct elf_symbol),
7307 elf_sym_name_compare);
7308
7309 for (i = 0; i < count1; i++)
7310 /* Two symbols must have the same binding, type and name. */
7311 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
7312 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
7313 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7314 goto done;
7315
7316 result = TRUE;
7317 goto done;
7318 }
7319
a50b1753
NC
7320 symtable1 = (struct elf_symbol *)
7321 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
7322 symtable2 = (struct elf_symbol *)
7323 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
4d269e42
AM
7324 if (symtable1 == NULL || symtable2 == NULL)
7325 goto done;
7326
7327 /* Count definitions in the section. */
7328 count1 = 0;
7329 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
cb33740c 7330 if (isym->st_shndx == shndx1)
4d269e42
AM
7331 symtable1[count1++].u.isym = isym;
7332
7333 count2 = 0;
7334 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
cb33740c 7335 if (isym->st_shndx == shndx2)
4d269e42
AM
7336 symtable2[count2++].u.isym = isym;
7337
7338 if (count1 == 0 || count2 == 0 || count1 != count2)
7339 goto done;
7340
7341 for (i = 0; i < count1; i++)
7342 symtable1[i].name
7343 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
7344 symtable1[i].u.isym->st_name);
7345
7346 for (i = 0; i < count2; i++)
7347 symtable2[i].name
7348 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
7349 symtable2[i].u.isym->st_name);
7350
7351 /* Sort symbol by name. */
7352 qsort (symtable1, count1, sizeof (struct elf_symbol),
7353 elf_sym_name_compare);
7354 qsort (symtable2, count1, sizeof (struct elf_symbol),
7355 elf_sym_name_compare);
7356
7357 for (i = 0; i < count1; i++)
7358 /* Two symbols must have the same binding, type and name. */
7359 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
7360 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
7361 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7362 goto done;
7363
7364 result = TRUE;
7365
7366done:
7367 if (symtable1)
7368 free (symtable1);
7369 if (symtable2)
7370 free (symtable2);
7371 if (isymbuf1)
7372 free (isymbuf1);
7373 if (isymbuf2)
7374 free (isymbuf2);
7375
7376 return result;
7377}
7378
7379/* Return TRUE if 2 section types are compatible. */
7380
7381bfd_boolean
7382_bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
7383 bfd *bbfd, const asection *bsec)
7384{
7385 if (asec == NULL
7386 || bsec == NULL
7387 || abfd->xvec->flavour != bfd_target_elf_flavour
7388 || bbfd->xvec->flavour != bfd_target_elf_flavour)
7389 return TRUE;
7390
7391 return elf_section_type (asec) == elf_section_type (bsec);
7392}
7393\f
c152c796
AM
7394/* Final phase of ELF linker. */
7395
7396/* A structure we use to avoid passing large numbers of arguments. */
7397
7398struct elf_final_link_info
7399{
7400 /* General link information. */
7401 struct bfd_link_info *info;
7402 /* Output BFD. */
7403 bfd *output_bfd;
7404 /* Symbol string table. */
7405 struct bfd_strtab_hash *symstrtab;
7406 /* .dynsym section. */
7407 asection *dynsym_sec;
7408 /* .hash section. */
7409 asection *hash_sec;
7410 /* symbol version section (.gnu.version). */
7411 asection *symver_sec;
7412 /* Buffer large enough to hold contents of any section. */
7413 bfd_byte *contents;
7414 /* Buffer large enough to hold external relocs of any section. */
7415 void *external_relocs;
7416 /* Buffer large enough to hold internal relocs of any section. */
7417 Elf_Internal_Rela *internal_relocs;
7418 /* Buffer large enough to hold external local symbols of any input
7419 BFD. */
7420 bfd_byte *external_syms;
7421 /* And a buffer for symbol section indices. */
7422 Elf_External_Sym_Shndx *locsym_shndx;
7423 /* Buffer large enough to hold internal local symbols of any input
7424 BFD. */
7425 Elf_Internal_Sym *internal_syms;
7426 /* Array large enough to hold a symbol index for each local symbol
7427 of any input BFD. */
7428 long *indices;
7429 /* Array large enough to hold a section pointer for each local
7430 symbol of any input BFD. */
7431 asection **sections;
7432 /* Buffer to hold swapped out symbols. */
7433 bfd_byte *symbuf;
7434 /* And one for symbol section indices. */
7435 Elf_External_Sym_Shndx *symshndxbuf;
7436 /* Number of swapped out symbols in buffer. */
7437 size_t symbuf_count;
7438 /* Number of symbols which fit in symbuf. */
7439 size_t symbuf_size;
7440 /* And same for symshndxbuf. */
7441 size_t shndxbuf_size;
ffbc01cc
AM
7442 /* Number of STT_FILE syms seen. */
7443 size_t filesym_count;
c152c796
AM
7444};
7445
7446/* This struct is used to pass information to elf_link_output_extsym. */
7447
7448struct elf_outext_info
7449{
7450 bfd_boolean failed;
7451 bfd_boolean localsyms;
ffbc01cc
AM
7452 bfd_boolean need_second_pass;
7453 bfd_boolean second_pass;
34a79995 7454 bfd_boolean file_sym_done;
8b127cbc 7455 struct elf_final_link_info *flinfo;
c152c796
AM
7456};
7457
d9352518
DB
7458
7459/* Support for evaluating a complex relocation.
7460
7461 Complex relocations are generalized, self-describing relocations. The
7462 implementation of them consists of two parts: complex symbols, and the
a0c8462f 7463 relocations themselves.
d9352518
DB
7464
7465 The relocations are use a reserved elf-wide relocation type code (R_RELC
7466 external / BFD_RELOC_RELC internal) and an encoding of relocation field
7467 information (start bit, end bit, word width, etc) into the addend. This
7468 information is extracted from CGEN-generated operand tables within gas.
7469
7470 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
7471 internal) representing prefix-notation expressions, including but not
7472 limited to those sorts of expressions normally encoded as addends in the
7473 addend field. The symbol mangling format is:
7474
7475 <node> := <literal>
7476 | <unary-operator> ':' <node>
7477 | <binary-operator> ':' <node> ':' <node>
7478 ;
7479
7480 <literal> := 's' <digits=N> ':' <N character symbol name>
7481 | 'S' <digits=N> ':' <N character section name>
7482 | '#' <hexdigits>
7483 ;
7484
7485 <binary-operator> := as in C
7486 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
7487
7488static void
a0c8462f
AM
7489set_symbol_value (bfd *bfd_with_globals,
7490 Elf_Internal_Sym *isymbuf,
7491 size_t locsymcount,
7492 size_t symidx,
7493 bfd_vma val)
d9352518 7494{
8977835c
AM
7495 struct elf_link_hash_entry **sym_hashes;
7496 struct elf_link_hash_entry *h;
7497 size_t extsymoff = locsymcount;
d9352518 7498
8977835c 7499 if (symidx < locsymcount)
d9352518 7500 {
8977835c
AM
7501 Elf_Internal_Sym *sym;
7502
7503 sym = isymbuf + symidx;
7504 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
7505 {
7506 /* It is a local symbol: move it to the
7507 "absolute" section and give it a value. */
7508 sym->st_shndx = SHN_ABS;
7509 sym->st_value = val;
7510 return;
7511 }
7512 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
7513 extsymoff = 0;
d9352518 7514 }
8977835c
AM
7515
7516 /* It is a global symbol: set its link type
7517 to "defined" and give it a value. */
7518
7519 sym_hashes = elf_sym_hashes (bfd_with_globals);
7520 h = sym_hashes [symidx - extsymoff];
7521 while (h->root.type == bfd_link_hash_indirect
7522 || h->root.type == bfd_link_hash_warning)
7523 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7524 h->root.type = bfd_link_hash_defined;
7525 h->root.u.def.value = val;
7526 h->root.u.def.section = bfd_abs_section_ptr;
d9352518
DB
7527}
7528
a0c8462f
AM
7529static bfd_boolean
7530resolve_symbol (const char *name,
7531 bfd *input_bfd,
8b127cbc 7532 struct elf_final_link_info *flinfo,
a0c8462f
AM
7533 bfd_vma *result,
7534 Elf_Internal_Sym *isymbuf,
7535 size_t locsymcount)
d9352518 7536{
a0c8462f
AM
7537 Elf_Internal_Sym *sym;
7538 struct bfd_link_hash_entry *global_entry;
7539 const char *candidate = NULL;
7540 Elf_Internal_Shdr *symtab_hdr;
7541 size_t i;
7542
d9352518
DB
7543 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
7544
7545 for (i = 0; i < locsymcount; ++ i)
7546 {
8977835c 7547 sym = isymbuf + i;
d9352518
DB
7548
7549 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
7550 continue;
7551
7552 candidate = bfd_elf_string_from_elf_section (input_bfd,
7553 symtab_hdr->sh_link,
7554 sym->st_name);
7555#ifdef DEBUG
0f02bbd9
AM
7556 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
7557 name, candidate, (unsigned long) sym->st_value);
d9352518
DB
7558#endif
7559 if (candidate && strcmp (candidate, name) == 0)
7560 {
8b127cbc 7561 asection *sec = flinfo->sections [i];
d9352518 7562
0f02bbd9
AM
7563 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
7564 *result += sec->output_offset + sec->output_section->vma;
d9352518 7565#ifdef DEBUG
0f02bbd9
AM
7566 printf ("Found symbol with value %8.8lx\n",
7567 (unsigned long) *result);
d9352518
DB
7568#endif
7569 return TRUE;
7570 }
7571 }
7572
7573 /* Hmm, haven't found it yet. perhaps it is a global. */
8b127cbc 7574 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
a0c8462f 7575 FALSE, FALSE, TRUE);
d9352518
DB
7576 if (!global_entry)
7577 return FALSE;
a0c8462f 7578
d9352518
DB
7579 if (global_entry->type == bfd_link_hash_defined
7580 || global_entry->type == bfd_link_hash_defweak)
7581 {
a0c8462f
AM
7582 *result = (global_entry->u.def.value
7583 + global_entry->u.def.section->output_section->vma
7584 + global_entry->u.def.section->output_offset);
d9352518 7585#ifdef DEBUG
0f02bbd9
AM
7586 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
7587 global_entry->root.string, (unsigned long) *result);
d9352518
DB
7588#endif
7589 return TRUE;
a0c8462f 7590 }
d9352518 7591
d9352518
DB
7592 return FALSE;
7593}
7594
7595static bfd_boolean
a0c8462f
AM
7596resolve_section (const char *name,
7597 asection *sections,
7598 bfd_vma *result)
d9352518 7599{
a0c8462f
AM
7600 asection *curr;
7601 unsigned int len;
d9352518 7602
a0c8462f 7603 for (curr = sections; curr; curr = curr->next)
d9352518
DB
7604 if (strcmp (curr->name, name) == 0)
7605 {
7606 *result = curr->vma;
7607 return TRUE;
7608 }
7609
7610 /* Hmm. still haven't found it. try pseudo-section names. */
a0c8462f 7611 for (curr = sections; curr; curr = curr->next)
d9352518
DB
7612 {
7613 len = strlen (curr->name);
a0c8462f 7614 if (len > strlen (name))
d9352518
DB
7615 continue;
7616
7617 if (strncmp (curr->name, name, len) == 0)
7618 {
7619 if (strncmp (".end", name + len, 4) == 0)
7620 {
7621 *result = curr->vma + curr->size;
7622 return TRUE;
7623 }
7624
7625 /* Insert more pseudo-section names here, if you like. */
7626 }
7627 }
a0c8462f 7628
d9352518
DB
7629 return FALSE;
7630}
7631
7632static void
a0c8462f 7633undefined_reference (const char *reftype, const char *name)
d9352518 7634{
a0c8462f
AM
7635 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
7636 reftype, name);
d9352518
DB
7637}
7638
7639static bfd_boolean
a0c8462f
AM
7640eval_symbol (bfd_vma *result,
7641 const char **symp,
7642 bfd *input_bfd,
8b127cbc 7643 struct elf_final_link_info *flinfo,
a0c8462f
AM
7644 bfd_vma dot,
7645 Elf_Internal_Sym *isymbuf,
7646 size_t locsymcount,
7647 int signed_p)
d9352518 7648{
4b93929b
NC
7649 size_t len;
7650 size_t symlen;
a0c8462f
AM
7651 bfd_vma a;
7652 bfd_vma b;
4b93929b 7653 char symbuf[4096];
0f02bbd9 7654 const char *sym = *symp;
a0c8462f
AM
7655 const char *symend;
7656 bfd_boolean symbol_is_section = FALSE;
d9352518
DB
7657
7658 len = strlen (sym);
7659 symend = sym + len;
7660
4b93929b 7661 if (len < 1 || len > sizeof (symbuf))
d9352518
DB
7662 {
7663 bfd_set_error (bfd_error_invalid_operation);
7664 return FALSE;
7665 }
a0c8462f 7666
d9352518
DB
7667 switch (* sym)
7668 {
7669 case '.':
0f02bbd9
AM
7670 *result = dot;
7671 *symp = sym + 1;
d9352518
DB
7672 return TRUE;
7673
7674 case '#':
0f02bbd9
AM
7675 ++sym;
7676 *result = strtoul (sym, (char **) symp, 16);
d9352518
DB
7677 return TRUE;
7678
7679 case 'S':
7680 symbol_is_section = TRUE;
a0c8462f 7681 case 's':
0f02bbd9
AM
7682 ++sym;
7683 symlen = strtol (sym, (char **) symp, 10);
7684 sym = *symp + 1; /* Skip the trailing ':'. */
d9352518 7685
4b93929b 7686 if (symend < sym || symlen + 1 > sizeof (symbuf))
d9352518
DB
7687 {
7688 bfd_set_error (bfd_error_invalid_operation);
7689 return FALSE;
7690 }
7691
7692 memcpy (symbuf, sym, symlen);
a0c8462f 7693 symbuf[symlen] = '\0';
0f02bbd9 7694 *symp = sym + symlen;
a0c8462f
AM
7695
7696 /* Is it always possible, with complex symbols, that gas "mis-guessed"
d9352518
DB
7697 the symbol as a section, or vice-versa. so we're pretty liberal in our
7698 interpretation here; section means "try section first", not "must be a
7699 section", and likewise with symbol. */
7700
a0c8462f 7701 if (symbol_is_section)
d9352518 7702 {
8b127cbc
AM
7703 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result)
7704 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 7705 isymbuf, locsymcount))
d9352518
DB
7706 {
7707 undefined_reference ("section", symbuf);
7708 return FALSE;
7709 }
a0c8462f
AM
7710 }
7711 else
d9352518 7712 {
8b127cbc 7713 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 7714 isymbuf, locsymcount)
8b127cbc 7715 && !resolve_section (symbuf, flinfo->output_bfd->sections,
8977835c 7716 result))
d9352518
DB
7717 {
7718 undefined_reference ("symbol", symbuf);
7719 return FALSE;
7720 }
7721 }
7722
7723 return TRUE;
a0c8462f 7724
d9352518
DB
7725 /* All that remains are operators. */
7726
7727#define UNARY_OP(op) \
7728 if (strncmp (sym, #op, strlen (#op)) == 0) \
7729 { \
7730 sym += strlen (#op); \
a0c8462f
AM
7731 if (*sym == ':') \
7732 ++sym; \
0f02bbd9 7733 *symp = sym; \
8b127cbc 7734 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 7735 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
7736 return FALSE; \
7737 if (signed_p) \
0f02bbd9 7738 *result = op ((bfd_signed_vma) a); \
a0c8462f
AM
7739 else \
7740 *result = op a; \
d9352518
DB
7741 return TRUE; \
7742 }
7743
7744#define BINARY_OP(op) \
7745 if (strncmp (sym, #op, strlen (#op)) == 0) \
7746 { \
7747 sym += strlen (#op); \
a0c8462f
AM
7748 if (*sym == ':') \
7749 ++sym; \
0f02bbd9 7750 *symp = sym; \
8b127cbc 7751 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 7752 isymbuf, locsymcount, signed_p)) \
a0c8462f 7753 return FALSE; \
0f02bbd9 7754 ++*symp; \
8b127cbc 7755 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
0f02bbd9 7756 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
7757 return FALSE; \
7758 if (signed_p) \
0f02bbd9 7759 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
a0c8462f
AM
7760 else \
7761 *result = a op b; \
d9352518
DB
7762 return TRUE; \
7763 }
7764
7765 default:
7766 UNARY_OP (0-);
7767 BINARY_OP (<<);
7768 BINARY_OP (>>);
7769 BINARY_OP (==);
7770 BINARY_OP (!=);
7771 BINARY_OP (<=);
7772 BINARY_OP (>=);
7773 BINARY_OP (&&);
7774 BINARY_OP (||);
7775 UNARY_OP (~);
7776 UNARY_OP (!);
7777 BINARY_OP (*);
7778 BINARY_OP (/);
7779 BINARY_OP (%);
7780 BINARY_OP (^);
7781 BINARY_OP (|);
7782 BINARY_OP (&);
7783 BINARY_OP (+);
7784 BINARY_OP (-);
7785 BINARY_OP (<);
7786 BINARY_OP (>);
7787#undef UNARY_OP
7788#undef BINARY_OP
7789 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
7790 bfd_set_error (bfd_error_invalid_operation);
7791 return FALSE;
7792 }
7793}
7794
d9352518 7795static void
a0c8462f
AM
7796put_value (bfd_vma size,
7797 unsigned long chunksz,
7798 bfd *input_bfd,
7799 bfd_vma x,
7800 bfd_byte *location)
d9352518
DB
7801{
7802 location += (size - chunksz);
7803
a0c8462f 7804 for (; size; size -= chunksz, location -= chunksz, x >>= (chunksz * 8))
d9352518
DB
7805 {
7806 switch (chunksz)
7807 {
7808 default:
7809 case 0:
7810 abort ();
7811 case 1:
7812 bfd_put_8 (input_bfd, x, location);
7813 break;
7814 case 2:
7815 bfd_put_16 (input_bfd, x, location);
7816 break;
7817 case 4:
7818 bfd_put_32 (input_bfd, x, location);
7819 break;
7820 case 8:
7821#ifdef BFD64
7822 bfd_put_64 (input_bfd, x, location);
7823#else
7824 abort ();
7825#endif
7826 break;
7827 }
7828 }
7829}
7830
a0c8462f
AM
7831static bfd_vma
7832get_value (bfd_vma size,
7833 unsigned long chunksz,
7834 bfd *input_bfd,
7835 bfd_byte *location)
d9352518 7836{
9b239e0e 7837 int shift;
d9352518
DB
7838 bfd_vma x = 0;
7839
9b239e0e
NC
7840 /* Sanity checks. */
7841 BFD_ASSERT (chunksz <= sizeof (x)
7842 && size >= chunksz
7843 && chunksz != 0
7844 && (size % chunksz) == 0
7845 && input_bfd != NULL
7846 && location != NULL);
7847
7848 if (chunksz == sizeof (x))
7849 {
7850 BFD_ASSERT (size == chunksz);
7851
7852 /* Make sure that we do not perform an undefined shift operation.
7853 We know that size == chunksz so there will only be one iteration
7854 of the loop below. */
7855 shift = 0;
7856 }
7857 else
7858 shift = 8 * chunksz;
7859
a0c8462f 7860 for (; size; size -= chunksz, location += chunksz)
d9352518
DB
7861 {
7862 switch (chunksz)
7863 {
d9352518 7864 case 1:
9b239e0e 7865 x = (x << shift) | bfd_get_8 (input_bfd, location);
d9352518
DB
7866 break;
7867 case 2:
9b239e0e 7868 x = (x << shift) | bfd_get_16 (input_bfd, location);
d9352518
DB
7869 break;
7870 case 4:
9b239e0e 7871 x = (x << shift) | bfd_get_32 (input_bfd, location);
d9352518 7872 break;
d9352518 7873#ifdef BFD64
9b239e0e
NC
7874 case 8:
7875 x = (x << shift) | bfd_get_64 (input_bfd, location);
d9352518 7876 break;
9b239e0e
NC
7877#endif
7878 default:
7879 abort ();
d9352518
DB
7880 }
7881 }
7882 return x;
7883}
7884
a0c8462f
AM
7885static void
7886decode_complex_addend (unsigned long *start, /* in bits */
7887 unsigned long *oplen, /* in bits */
7888 unsigned long *len, /* in bits */
7889 unsigned long *wordsz, /* in bytes */
7890 unsigned long *chunksz, /* in bytes */
7891 unsigned long *lsb0_p,
7892 unsigned long *signed_p,
7893 unsigned long *trunc_p,
7894 unsigned long encoded)
d9352518
DB
7895{
7896 * start = encoded & 0x3F;
7897 * len = (encoded >> 6) & 0x3F;
7898 * oplen = (encoded >> 12) & 0x3F;
7899 * wordsz = (encoded >> 18) & 0xF;
7900 * chunksz = (encoded >> 22) & 0xF;
7901 * lsb0_p = (encoded >> 27) & 1;
7902 * signed_p = (encoded >> 28) & 1;
7903 * trunc_p = (encoded >> 29) & 1;
7904}
7905
cdfeee4f 7906bfd_reloc_status_type
0f02bbd9 7907bfd_elf_perform_complex_relocation (bfd *input_bfd,
cdfeee4f 7908 asection *input_section ATTRIBUTE_UNUSED,
0f02bbd9
AM
7909 bfd_byte *contents,
7910 Elf_Internal_Rela *rel,
7911 bfd_vma relocation)
d9352518 7912{
0f02bbd9
AM
7913 bfd_vma shift, x, mask;
7914 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
cdfeee4f 7915 bfd_reloc_status_type r;
d9352518
DB
7916
7917 /* Perform this reloc, since it is complex.
7918 (this is not to say that it necessarily refers to a complex
7919 symbol; merely that it is a self-describing CGEN based reloc.
7920 i.e. the addend has the complete reloc information (bit start, end,
a0c8462f 7921 word size, etc) encoded within it.). */
d9352518 7922
a0c8462f
AM
7923 decode_complex_addend (&start, &oplen, &len, &wordsz,
7924 &chunksz, &lsb0_p, &signed_p,
7925 &trunc_p, rel->r_addend);
d9352518
DB
7926
7927 mask = (((1L << (len - 1)) - 1) << 1) | 1;
7928
7929 if (lsb0_p)
7930 shift = (start + 1) - len;
7931 else
7932 shift = (8 * wordsz) - (start + len);
7933
5dabe785 7934 /* FIXME: octets_per_byte. */
a0c8462f 7935 x = get_value (wordsz, chunksz, input_bfd, contents + rel->r_offset);
d9352518
DB
7936
7937#ifdef DEBUG
7938 printf ("Doing complex reloc: "
7939 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
7940 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
7941 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
7942 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
9ccb8af9
AM
7943 oplen, (unsigned long) x, (unsigned long) mask,
7944 (unsigned long) relocation);
d9352518
DB
7945#endif
7946
cdfeee4f 7947 r = bfd_reloc_ok;
d9352518 7948 if (! trunc_p)
cdfeee4f
AM
7949 /* Now do an overflow check. */
7950 r = bfd_check_overflow ((signed_p
7951 ? complain_overflow_signed
7952 : complain_overflow_unsigned),
7953 len, 0, (8 * wordsz),
7954 relocation);
a0c8462f 7955
d9352518
DB
7956 /* Do the deed. */
7957 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
7958
7959#ifdef DEBUG
7960 printf (" relocation: %8.8lx\n"
7961 " shifted mask: %8.8lx\n"
7962 " shifted/masked reloc: %8.8lx\n"
7963 " result: %8.8lx\n",
9ccb8af9
AM
7964 (unsigned long) relocation, (unsigned long) (mask << shift),
7965 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
d9352518 7966#endif
5dabe785 7967 /* FIXME: octets_per_byte. */
d9352518 7968 put_value (wordsz, chunksz, input_bfd, x, contents + rel->r_offset);
cdfeee4f 7969 return r;
d9352518
DB
7970}
7971
53df40a4
AM
7972/* qsort comparison functions sorting external relocs by r_offset. */
7973
7974static int
7975cmp_ext32l_r_offset (const void *p, const void *q)
7976{
7977 union aligned32
7978 {
7979 uint32_t v;
7980 unsigned char c[4];
7981 };
7982 const union aligned32 *a
7983 = (const union aligned32 *) ((const Elf32_External_Rel *) p)->r_offset;
7984 const union aligned32 *b
7985 = (const union aligned32 *) ((const Elf32_External_Rel *) q)->r_offset;
7986
7987 uint32_t aval = ( (uint32_t) a->c[0]
7988 | (uint32_t) a->c[1] << 8
7989 | (uint32_t) a->c[2] << 16
7990 | (uint32_t) a->c[3] << 24);
7991 uint32_t bval = ( (uint32_t) b->c[0]
7992 | (uint32_t) b->c[1] << 8
7993 | (uint32_t) b->c[2] << 16
7994 | (uint32_t) b->c[3] << 24);
7995 if (aval < bval)
7996 return -1;
7997 else if (aval > bval)
7998 return 1;
7999 return 0;
8000}
8001
8002static int
8003cmp_ext32b_r_offset (const void *p, const void *q)
8004{
8005 union aligned32
8006 {
8007 uint32_t v;
8008 unsigned char c[4];
8009 };
8010 const union aligned32 *a
8011 = (const union aligned32 *) ((const Elf32_External_Rel *) p)->r_offset;
8012 const union aligned32 *b
8013 = (const union aligned32 *) ((const Elf32_External_Rel *) q)->r_offset;
8014
8015 uint32_t aval = ( (uint32_t) a->c[0] << 24
8016 | (uint32_t) a->c[1] << 16
8017 | (uint32_t) a->c[2] << 8
8018 | (uint32_t) a->c[3]);
8019 uint32_t bval = ( (uint32_t) b->c[0] << 24
8020 | (uint32_t) b->c[1] << 16
8021 | (uint32_t) b->c[2] << 8
8022 | (uint32_t) b->c[3]);
8023 if (aval < bval)
8024 return -1;
8025 else if (aval > bval)
8026 return 1;
8027 return 0;
8028}
8029
8030#ifdef BFD_HOST_64_BIT
8031static int
8032cmp_ext64l_r_offset (const void *p, const void *q)
8033{
8034 union aligned64
8035 {
8036 uint64_t v;
8037 unsigned char c[8];
8038 };
8039 const union aligned64 *a
8040 = (const union aligned64 *) ((const Elf64_External_Rel *) p)->r_offset;
8041 const union aligned64 *b
8042 = (const union aligned64 *) ((const Elf64_External_Rel *) q)->r_offset;
8043
8044 uint64_t aval = ( (uint64_t) a->c[0]
8045 | (uint64_t) a->c[1] << 8
8046 | (uint64_t) a->c[2] << 16
8047 | (uint64_t) a->c[3] << 24
8048 | (uint64_t) a->c[4] << 32
8049 | (uint64_t) a->c[5] << 40
8050 | (uint64_t) a->c[6] << 48
8051 | (uint64_t) a->c[7] << 56);
8052 uint64_t bval = ( (uint64_t) b->c[0]
8053 | (uint64_t) b->c[1] << 8
8054 | (uint64_t) b->c[2] << 16
8055 | (uint64_t) b->c[3] << 24
8056 | (uint64_t) b->c[4] << 32
8057 | (uint64_t) b->c[5] << 40
8058 | (uint64_t) b->c[6] << 48
8059 | (uint64_t) b->c[7] << 56);
8060 if (aval < bval)
8061 return -1;
8062 else if (aval > bval)
8063 return 1;
8064 return 0;
8065}
8066
8067static int
8068cmp_ext64b_r_offset (const void *p, const void *q)
8069{
8070 union aligned64
8071 {
8072 uint64_t v;
8073 unsigned char c[8];
8074 };
8075 const union aligned64 *a
8076 = (const union aligned64 *) ((const Elf64_External_Rel *) p)->r_offset;
8077 const union aligned64 *b
8078 = (const union aligned64 *) ((const Elf64_External_Rel *) q)->r_offset;
8079
8080 uint64_t aval = ( (uint64_t) a->c[0] << 56
8081 | (uint64_t) a->c[1] << 48
8082 | (uint64_t) a->c[2] << 40
8083 | (uint64_t) a->c[3] << 32
8084 | (uint64_t) a->c[4] << 24
8085 | (uint64_t) a->c[5] << 16
8086 | (uint64_t) a->c[6] << 8
8087 | (uint64_t) a->c[7]);
8088 uint64_t bval = ( (uint64_t) b->c[0] << 56
8089 | (uint64_t) b->c[1] << 48
8090 | (uint64_t) b->c[2] << 40
8091 | (uint64_t) b->c[3] << 32
8092 | (uint64_t) b->c[4] << 24
8093 | (uint64_t) b->c[5] << 16
8094 | (uint64_t) b->c[6] << 8
8095 | (uint64_t) b->c[7]);
8096 if (aval < bval)
8097 return -1;
8098 else if (aval > bval)
8099 return 1;
8100 return 0;
8101}
8102#endif
8103
c152c796
AM
8104/* When performing a relocatable link, the input relocations are
8105 preserved. But, if they reference global symbols, the indices
d4730f92
BS
8106 referenced must be updated. Update all the relocations found in
8107 RELDATA. */
c152c796
AM
8108
8109static void
8110elf_link_adjust_relocs (bfd *abfd,
28dbcedc
AM
8111 struct bfd_elf_section_reloc_data *reldata,
8112 bfd_boolean sort)
c152c796
AM
8113{
8114 unsigned int i;
8115 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8116 bfd_byte *erela;
8117 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8118 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8119 bfd_vma r_type_mask;
8120 int r_sym_shift;
d4730f92
BS
8121 unsigned int count = reldata->count;
8122 struct elf_link_hash_entry **rel_hash = reldata->hashes;
c152c796 8123
d4730f92 8124 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
c152c796
AM
8125 {
8126 swap_in = bed->s->swap_reloc_in;
8127 swap_out = bed->s->swap_reloc_out;
8128 }
d4730f92 8129 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
c152c796
AM
8130 {
8131 swap_in = bed->s->swap_reloca_in;
8132 swap_out = bed->s->swap_reloca_out;
8133 }
8134 else
8135 abort ();
8136
8137 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
8138 abort ();
8139
8140 if (bed->s->arch_size == 32)
8141 {
8142 r_type_mask = 0xff;
8143 r_sym_shift = 8;
8144 }
8145 else
8146 {
8147 r_type_mask = 0xffffffff;
8148 r_sym_shift = 32;
8149 }
8150
d4730f92
BS
8151 erela = reldata->hdr->contents;
8152 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
c152c796
AM
8153 {
8154 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8155 unsigned int j;
8156
8157 if (*rel_hash == NULL)
8158 continue;
8159
8160 BFD_ASSERT ((*rel_hash)->indx >= 0);
8161
8162 (*swap_in) (abfd, erela, irela);
8163 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8164 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8165 | (irela[j].r_info & r_type_mask));
8166 (*swap_out) (abfd, irela, erela);
8167 }
53df40a4 8168
28dbcedc 8169 if (sort)
53df40a4 8170 {
28dbcedc
AM
8171 int (*compare) (const void *, const void *);
8172
8173 if (bed->s->arch_size == 32)
8174 {
8175 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
8176 compare = cmp_ext32l_r_offset;
8177 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
8178 compare = cmp_ext32b_r_offset;
8179 else
8180 abort ();
8181 }
53df40a4 8182 else
28dbcedc 8183 {
53df40a4 8184#ifdef BFD_HOST_64_BIT
28dbcedc
AM
8185 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
8186 compare = cmp_ext64l_r_offset;
8187 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
8188 compare = cmp_ext64b_r_offset;
8189 else
53df40a4 8190#endif
28dbcedc
AM
8191 abort ();
8192 }
8193 qsort (reldata->hdr->contents, count, reldata->hdr->sh_entsize, compare);
8194 free (reldata->hashes);
8195 reldata->hashes = NULL;
53df40a4 8196 }
c152c796
AM
8197}
8198
8199struct elf_link_sort_rela
8200{
8201 union {
8202 bfd_vma offset;
8203 bfd_vma sym_mask;
8204 } u;
8205 enum elf_reloc_type_class type;
8206 /* We use this as an array of size int_rels_per_ext_rel. */
8207 Elf_Internal_Rela rela[1];
8208};
8209
8210static int
8211elf_link_sort_cmp1 (const void *A, const void *B)
8212{
a50b1753
NC
8213 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8214 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796
AM
8215 int relativea, relativeb;
8216
8217 relativea = a->type == reloc_class_relative;
8218 relativeb = b->type == reloc_class_relative;
8219
8220 if (relativea < relativeb)
8221 return 1;
8222 if (relativea > relativeb)
8223 return -1;
8224 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8225 return -1;
8226 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8227 return 1;
8228 if (a->rela->r_offset < b->rela->r_offset)
8229 return -1;
8230 if (a->rela->r_offset > b->rela->r_offset)
8231 return 1;
8232 return 0;
8233}
8234
8235static int
8236elf_link_sort_cmp2 (const void *A, const void *B)
8237{
a50b1753
NC
8238 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8239 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796 8240
7e612e98 8241 if (a->type < b->type)
c152c796 8242 return -1;
7e612e98 8243 if (a->type > b->type)
c152c796 8244 return 1;
7e612e98 8245 if (a->u.offset < b->u.offset)
c152c796 8246 return -1;
7e612e98 8247 if (a->u.offset > b->u.offset)
c152c796
AM
8248 return 1;
8249 if (a->rela->r_offset < b->rela->r_offset)
8250 return -1;
8251 if (a->rela->r_offset > b->rela->r_offset)
8252 return 1;
8253 return 0;
8254}
8255
8256static size_t
8257elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
8258{
3410fea8 8259 asection *dynamic_relocs;
fc66a176
L
8260 asection *rela_dyn;
8261 asection *rel_dyn;
c152c796
AM
8262 bfd_size_type count, size;
8263 size_t i, ret, sort_elt, ext_size;
8264 bfd_byte *sort, *s_non_relative, *p;
8265 struct elf_link_sort_rela *sq;
8266 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8267 int i2e = bed->s->int_rels_per_ext_rel;
8268 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8269 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8270 struct bfd_link_order *lo;
8271 bfd_vma r_sym_mask;
3410fea8 8272 bfd_boolean use_rela;
c152c796 8273
3410fea8
NC
8274 /* Find a dynamic reloc section. */
8275 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
8276 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
8277 if (rela_dyn != NULL && rela_dyn->size > 0
8278 && rel_dyn != NULL && rel_dyn->size > 0)
c152c796 8279 {
3410fea8
NC
8280 bfd_boolean use_rela_initialised = FALSE;
8281
8282 /* This is just here to stop gcc from complaining.
8283 It's initialization checking code is not perfect. */
8284 use_rela = TRUE;
8285
8286 /* Both sections are present. Examine the sizes
8287 of the indirect sections to help us choose. */
8288 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8289 if (lo->type == bfd_indirect_link_order)
8290 {
8291 asection *o = lo->u.indirect.section;
8292
8293 if ((o->size % bed->s->sizeof_rela) == 0)
8294 {
8295 if ((o->size % bed->s->sizeof_rel) == 0)
8296 /* Section size is divisible by both rel and rela sizes.
8297 It is of no help to us. */
8298 ;
8299 else
8300 {
8301 /* Section size is only divisible by rela. */
8302 if (use_rela_initialised && (use_rela == FALSE))
8303 {
8304 _bfd_error_handler
8305 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8306 bfd_set_error (bfd_error_invalid_operation);
8307 return 0;
8308 }
8309 else
8310 {
8311 use_rela = TRUE;
8312 use_rela_initialised = TRUE;
8313 }
8314 }
8315 }
8316 else if ((o->size % bed->s->sizeof_rel) == 0)
8317 {
8318 /* Section size is only divisible by rel. */
8319 if (use_rela_initialised && (use_rela == TRUE))
8320 {
8321 _bfd_error_handler
8322 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8323 bfd_set_error (bfd_error_invalid_operation);
8324 return 0;
8325 }
8326 else
8327 {
8328 use_rela = FALSE;
8329 use_rela_initialised = TRUE;
8330 }
8331 }
8332 else
8333 {
8334 /* The section size is not divisible by either - something is wrong. */
8335 _bfd_error_handler
8336 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8337 bfd_set_error (bfd_error_invalid_operation);
8338 return 0;
8339 }
8340 }
8341
8342 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8343 if (lo->type == bfd_indirect_link_order)
8344 {
8345 asection *o = lo->u.indirect.section;
8346
8347 if ((o->size % bed->s->sizeof_rela) == 0)
8348 {
8349 if ((o->size % bed->s->sizeof_rel) == 0)
8350 /* Section size is divisible by both rel and rela sizes.
8351 It is of no help to us. */
8352 ;
8353 else
8354 {
8355 /* Section size is only divisible by rela. */
8356 if (use_rela_initialised && (use_rela == FALSE))
8357 {
8358 _bfd_error_handler
8359 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8360 bfd_set_error (bfd_error_invalid_operation);
8361 return 0;
8362 }
8363 else
8364 {
8365 use_rela = TRUE;
8366 use_rela_initialised = TRUE;
8367 }
8368 }
8369 }
8370 else if ((o->size % bed->s->sizeof_rel) == 0)
8371 {
8372 /* Section size is only divisible by rel. */
8373 if (use_rela_initialised && (use_rela == TRUE))
8374 {
8375 _bfd_error_handler
8376 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8377 bfd_set_error (bfd_error_invalid_operation);
8378 return 0;
8379 }
8380 else
8381 {
8382 use_rela = FALSE;
8383 use_rela_initialised = TRUE;
8384 }
8385 }
8386 else
8387 {
8388 /* The section size is not divisible by either - something is wrong. */
8389 _bfd_error_handler
8390 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8391 bfd_set_error (bfd_error_invalid_operation);
8392 return 0;
8393 }
8394 }
8395
8396 if (! use_rela_initialised)
8397 /* Make a guess. */
8398 use_rela = TRUE;
c152c796 8399 }
fc66a176
L
8400 else if (rela_dyn != NULL && rela_dyn->size > 0)
8401 use_rela = TRUE;
8402 else if (rel_dyn != NULL && rel_dyn->size > 0)
3410fea8 8403 use_rela = FALSE;
c152c796 8404 else
fc66a176 8405 return 0;
3410fea8
NC
8406
8407 if (use_rela)
c152c796 8408 {
3410fea8 8409 dynamic_relocs = rela_dyn;
c152c796
AM
8410 ext_size = bed->s->sizeof_rela;
8411 swap_in = bed->s->swap_reloca_in;
8412 swap_out = bed->s->swap_reloca_out;
8413 }
3410fea8
NC
8414 else
8415 {
8416 dynamic_relocs = rel_dyn;
8417 ext_size = bed->s->sizeof_rel;
8418 swap_in = bed->s->swap_reloc_in;
8419 swap_out = bed->s->swap_reloc_out;
8420 }
c152c796
AM
8421
8422 size = 0;
3410fea8 8423 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796 8424 if (lo->type == bfd_indirect_link_order)
3410fea8 8425 size += lo->u.indirect.section->size;
c152c796 8426
3410fea8 8427 if (size != dynamic_relocs->size)
c152c796
AM
8428 return 0;
8429
8430 sort_elt = (sizeof (struct elf_link_sort_rela)
8431 + (i2e - 1) * sizeof (Elf_Internal_Rela));
3410fea8
NC
8432
8433 count = dynamic_relocs->size / ext_size;
5e486aa1
NC
8434 if (count == 0)
8435 return 0;
a50b1753 8436 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
3410fea8 8437
c152c796
AM
8438 if (sort == NULL)
8439 {
8440 (*info->callbacks->warning)
8441 (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
8442 return 0;
8443 }
8444
8445 if (bed->s->arch_size == 32)
8446 r_sym_mask = ~(bfd_vma) 0xff;
8447 else
8448 r_sym_mask = ~(bfd_vma) 0xffffffff;
8449
3410fea8 8450 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
8451 if (lo->type == bfd_indirect_link_order)
8452 {
8453 bfd_byte *erel, *erelend;
8454 asection *o = lo->u.indirect.section;
8455
1da212d6
AM
8456 if (o->contents == NULL && o->size != 0)
8457 {
8458 /* This is a reloc section that is being handled as a normal
8459 section. See bfd_section_from_shdr. We can't combine
8460 relocs in this case. */
8461 free (sort);
8462 return 0;
8463 }
c152c796 8464 erel = o->contents;
eea6121a 8465 erelend = o->contents + o->size;
5dabe785 8466 /* FIXME: octets_per_byte. */
c152c796 8467 p = sort + o->output_offset / ext_size * sort_elt;
3410fea8 8468
c152c796
AM
8469 while (erel < erelend)
8470 {
8471 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3410fea8 8472
c152c796 8473 (*swap_in) (abfd, erel, s->rela);
7e612e98 8474 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
c152c796
AM
8475 s->u.sym_mask = r_sym_mask;
8476 p += sort_elt;
8477 erel += ext_size;
8478 }
8479 }
8480
8481 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
8482
8483 for (i = 0, p = sort; i < count; i++, p += sort_elt)
8484 {
8485 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8486 if (s->type != reloc_class_relative)
8487 break;
8488 }
8489 ret = i;
8490 s_non_relative = p;
8491
8492 sq = (struct elf_link_sort_rela *) s_non_relative;
8493 for (; i < count; i++, p += sort_elt)
8494 {
8495 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
8496 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
8497 sq = sp;
8498 sp->u.offset = sq->rela->r_offset;
8499 }
8500
8501 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
8502
3410fea8 8503 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
8504 if (lo->type == bfd_indirect_link_order)
8505 {
8506 bfd_byte *erel, *erelend;
8507 asection *o = lo->u.indirect.section;
8508
8509 erel = o->contents;
eea6121a 8510 erelend = o->contents + o->size;
5dabe785 8511 /* FIXME: octets_per_byte. */
c152c796
AM
8512 p = sort + o->output_offset / ext_size * sort_elt;
8513 while (erel < erelend)
8514 {
8515 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8516 (*swap_out) (abfd, s->rela, erel);
8517 p += sort_elt;
8518 erel += ext_size;
8519 }
8520 }
8521
8522 free (sort);
3410fea8 8523 *psec = dynamic_relocs;
c152c796
AM
8524 return ret;
8525}
8526
8527/* Flush the output symbols to the file. */
8528
8529static bfd_boolean
8b127cbc 8530elf_link_flush_output_syms (struct elf_final_link_info *flinfo,
c152c796
AM
8531 const struct elf_backend_data *bed)
8532{
8b127cbc 8533 if (flinfo->symbuf_count > 0)
c152c796
AM
8534 {
8535 Elf_Internal_Shdr *hdr;
8536 file_ptr pos;
8537 bfd_size_type amt;
8538
8b127cbc 8539 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
c152c796 8540 pos = hdr->sh_offset + hdr->sh_size;
8b127cbc
AM
8541 amt = flinfo->symbuf_count * bed->s->sizeof_sym;
8542 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) != 0
8543 || bfd_bwrite (flinfo->symbuf, amt, flinfo->output_bfd) != amt)
c152c796
AM
8544 return FALSE;
8545
8546 hdr->sh_size += amt;
8b127cbc 8547 flinfo->symbuf_count = 0;
c152c796
AM
8548 }
8549
8550 return TRUE;
8551}
8552
8553/* Add a symbol to the output symbol table. */
8554
6e0b88f1 8555static int
8b127cbc 8556elf_link_output_sym (struct elf_final_link_info *flinfo,
c152c796
AM
8557 const char *name,
8558 Elf_Internal_Sym *elfsym,
8559 asection *input_sec,
8560 struct elf_link_hash_entry *h)
8561{
8562 bfd_byte *dest;
8563 Elf_External_Sym_Shndx *destshndx;
6e0b88f1 8564 int (*output_symbol_hook)
c152c796
AM
8565 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
8566 struct elf_link_hash_entry *);
8567 const struct elf_backend_data *bed;
8568
8b127cbc 8569 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796
AM
8570 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
8571 if (output_symbol_hook != NULL)
8572 {
8b127cbc 8573 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
6e0b88f1
AM
8574 if (ret != 1)
8575 return ret;
c152c796
AM
8576 }
8577
8578 if (name == NULL || *name == '\0')
8579 elfsym->st_name = 0;
8580 else if (input_sec->flags & SEC_EXCLUDE)
8581 elfsym->st_name = 0;
8582 else
8583 {
8b127cbc 8584 elfsym->st_name = (unsigned long) _bfd_stringtab_add (flinfo->symstrtab,
c152c796
AM
8585 name, TRUE, FALSE);
8586 if (elfsym->st_name == (unsigned long) -1)
6e0b88f1 8587 return 0;
c152c796
AM
8588 }
8589
8b127cbc 8590 if (flinfo->symbuf_count >= flinfo->symbuf_size)
c152c796 8591 {
8b127cbc 8592 if (! elf_link_flush_output_syms (flinfo, bed))
6e0b88f1 8593 return 0;
c152c796
AM
8594 }
8595
8b127cbc
AM
8596 dest = flinfo->symbuf + flinfo->symbuf_count * bed->s->sizeof_sym;
8597 destshndx = flinfo->symshndxbuf;
c152c796
AM
8598 if (destshndx != NULL)
8599 {
8b127cbc 8600 if (bfd_get_symcount (flinfo->output_bfd) >= flinfo->shndxbuf_size)
c152c796
AM
8601 {
8602 bfd_size_type amt;
8603
8b127cbc 8604 amt = flinfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx);
a50b1753
NC
8605 destshndx = (Elf_External_Sym_Shndx *) bfd_realloc (destshndx,
8606 amt * 2);
c152c796 8607 if (destshndx == NULL)
6e0b88f1 8608 return 0;
8b127cbc 8609 flinfo->symshndxbuf = destshndx;
c152c796 8610 memset ((char *) destshndx + amt, 0, amt);
8b127cbc 8611 flinfo->shndxbuf_size *= 2;
c152c796 8612 }
8b127cbc 8613 destshndx += bfd_get_symcount (flinfo->output_bfd);
c152c796
AM
8614 }
8615
8b127cbc
AM
8616 bed->s->swap_symbol_out (flinfo->output_bfd, elfsym, dest, destshndx);
8617 flinfo->symbuf_count += 1;
8618 bfd_get_symcount (flinfo->output_bfd) += 1;
c152c796 8619
6e0b88f1 8620 return 1;
c152c796
AM
8621}
8622
c0d5a53d
L
8623/* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
8624
8625static bfd_boolean
8626check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
8627{
4fbb74a6
AM
8628 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
8629 && sym->st_shndx < SHN_LORESERVE)
c0d5a53d
L
8630 {
8631 /* The gABI doesn't support dynamic symbols in output sections
a0c8462f 8632 beyond 64k. */
c0d5a53d
L
8633 (*_bfd_error_handler)
8634 (_("%B: Too many sections: %d (>= %d)"),
4fbb74a6 8635 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
c0d5a53d
L
8636 bfd_set_error (bfd_error_nonrepresentable_section);
8637 return FALSE;
8638 }
8639 return TRUE;
8640}
8641
c152c796
AM
8642/* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
8643 allowing an unsatisfied unversioned symbol in the DSO to match a
8644 versioned symbol that would normally require an explicit version.
8645 We also handle the case that a DSO references a hidden symbol
8646 which may be satisfied by a versioned symbol in another DSO. */
8647
8648static bfd_boolean
8649elf_link_check_versioned_symbol (struct bfd_link_info *info,
8650 const struct elf_backend_data *bed,
8651 struct elf_link_hash_entry *h)
8652{
8653 bfd *abfd;
8654 struct elf_link_loaded_list *loaded;
8655
8656 if (!is_elf_hash_table (info->hash))
8657 return FALSE;
8658
90c984fc
L
8659 /* Check indirect symbol. */
8660 while (h->root.type == bfd_link_hash_indirect)
8661 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8662
c152c796
AM
8663 switch (h->root.type)
8664 {
8665 default:
8666 abfd = NULL;
8667 break;
8668
8669 case bfd_link_hash_undefined:
8670 case bfd_link_hash_undefweak:
8671 abfd = h->root.u.undef.abfd;
8672 if ((abfd->flags & DYNAMIC) == 0
e56f61be 8673 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
c152c796
AM
8674 return FALSE;
8675 break;
8676
8677 case bfd_link_hash_defined:
8678 case bfd_link_hash_defweak:
8679 abfd = h->root.u.def.section->owner;
8680 break;
8681
8682 case bfd_link_hash_common:
8683 abfd = h->root.u.c.p->section->owner;
8684 break;
8685 }
8686 BFD_ASSERT (abfd != NULL);
8687
8688 for (loaded = elf_hash_table (info)->loaded;
8689 loaded != NULL;
8690 loaded = loaded->next)
8691 {
8692 bfd *input;
8693 Elf_Internal_Shdr *hdr;
8694 bfd_size_type symcount;
8695 bfd_size_type extsymcount;
8696 bfd_size_type extsymoff;
8697 Elf_Internal_Shdr *versymhdr;
8698 Elf_Internal_Sym *isym;
8699 Elf_Internal_Sym *isymend;
8700 Elf_Internal_Sym *isymbuf;
8701 Elf_External_Versym *ever;
8702 Elf_External_Versym *extversym;
8703
8704 input = loaded->abfd;
8705
8706 /* We check each DSO for a possible hidden versioned definition. */
8707 if (input == abfd
8708 || (input->flags & DYNAMIC) == 0
8709 || elf_dynversym (input) == 0)
8710 continue;
8711
8712 hdr = &elf_tdata (input)->dynsymtab_hdr;
8713
8714 symcount = hdr->sh_size / bed->s->sizeof_sym;
8715 if (elf_bad_symtab (input))
8716 {
8717 extsymcount = symcount;
8718 extsymoff = 0;
8719 }
8720 else
8721 {
8722 extsymcount = symcount - hdr->sh_info;
8723 extsymoff = hdr->sh_info;
8724 }
8725
8726 if (extsymcount == 0)
8727 continue;
8728
8729 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
8730 NULL, NULL, NULL);
8731 if (isymbuf == NULL)
8732 return FALSE;
8733
8734 /* Read in any version definitions. */
8735 versymhdr = &elf_tdata (input)->dynversym_hdr;
a50b1753 8736 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
c152c796
AM
8737 if (extversym == NULL)
8738 goto error_ret;
8739
8740 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
8741 || (bfd_bread (extversym, versymhdr->sh_size, input)
8742 != versymhdr->sh_size))
8743 {
8744 free (extversym);
8745 error_ret:
8746 free (isymbuf);
8747 return FALSE;
8748 }
8749
8750 ever = extversym + extsymoff;
8751 isymend = isymbuf + extsymcount;
8752 for (isym = isymbuf; isym < isymend; isym++, ever++)
8753 {
8754 const char *name;
8755 Elf_Internal_Versym iver;
8756 unsigned short version_index;
8757
8758 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
8759 || isym->st_shndx == SHN_UNDEF)
8760 continue;
8761
8762 name = bfd_elf_string_from_elf_section (input,
8763 hdr->sh_link,
8764 isym->st_name);
8765 if (strcmp (name, h->root.root.string) != 0)
8766 continue;
8767
8768 _bfd_elf_swap_versym_in (input, ever, &iver);
8769
d023c380
L
8770 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
8771 && !(h->def_regular
8772 && h->forced_local))
c152c796
AM
8773 {
8774 /* If we have a non-hidden versioned sym, then it should
d023c380
L
8775 have provided a definition for the undefined sym unless
8776 it is defined in a non-shared object and forced local.
8777 */
c152c796
AM
8778 abort ();
8779 }
8780
8781 version_index = iver.vs_vers & VERSYM_VERSION;
8782 if (version_index == 1 || version_index == 2)
8783 {
8784 /* This is the base or first version. We can use it. */
8785 free (extversym);
8786 free (isymbuf);
8787 return TRUE;
8788 }
8789 }
8790
8791 free (extversym);
8792 free (isymbuf);
8793 }
8794
8795 return FALSE;
8796}
8797
8798/* Add an external symbol to the symbol table. This is called from
8799 the hash table traversal routine. When generating a shared object,
8800 we go through the symbol table twice. The first time we output
8801 anything that might have been forced to local scope in a version
8802 script. The second time we output the symbols that are still
8803 global symbols. */
8804
8805static bfd_boolean
7686d77d 8806elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
c152c796 8807{
7686d77d 8808 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
a50b1753 8809 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8b127cbc 8810 struct elf_final_link_info *flinfo = eoinfo->flinfo;
c152c796
AM
8811 bfd_boolean strip;
8812 Elf_Internal_Sym sym;
8813 asection *input_sec;
8814 const struct elf_backend_data *bed;
6e0b88f1
AM
8815 long indx;
8816 int ret;
c152c796
AM
8817
8818 if (h->root.type == bfd_link_hash_warning)
8819 {
8820 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8821 if (h->root.type == bfd_link_hash_new)
8822 return TRUE;
8823 }
8824
8825 /* Decide whether to output this symbol in this pass. */
8826 if (eoinfo->localsyms)
8827 {
f5385ebf 8828 if (!h->forced_local)
c152c796 8829 return TRUE;
ffbc01cc
AM
8830 if (eoinfo->second_pass
8831 && !((h->root.type == bfd_link_hash_defined
8832 || h->root.type == bfd_link_hash_defweak)
8833 && h->root.u.def.section->output_section != NULL))
8834 return TRUE;
34a79995
JB
8835
8836 if (!eoinfo->file_sym_done
8837 && (eoinfo->second_pass ? eoinfo->flinfo->filesym_count == 1
8838 : eoinfo->flinfo->filesym_count > 1))
8839 {
8840 /* Output a FILE symbol so that following locals are not associated
8841 with the wrong input file. */
8842 memset (&sym, 0, sizeof (sym));
8843 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8844 sym.st_shndx = SHN_ABS;
8845 if (!elf_link_output_sym (eoinfo->flinfo, NULL, &sym,
8846 bfd_und_section_ptr, NULL))
8847 return FALSE;
8848
8849 eoinfo->file_sym_done = TRUE;
8850 }
c152c796
AM
8851 }
8852 else
8853 {
f5385ebf 8854 if (h->forced_local)
c152c796
AM
8855 return TRUE;
8856 }
8857
8b127cbc 8858 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 8859
12ac1cf5 8860 if (h->root.type == bfd_link_hash_undefined)
c152c796 8861 {
12ac1cf5
NC
8862 /* If we have an undefined symbol reference here then it must have
8863 come from a shared library that is being linked in. (Undefined
98da7939
L
8864 references in regular files have already been handled unless
8865 they are in unreferenced sections which are removed by garbage
8866 collection). */
12ac1cf5
NC
8867 bfd_boolean ignore_undef = FALSE;
8868
8869 /* Some symbols may be special in that the fact that they're
8870 undefined can be safely ignored - let backend determine that. */
8871 if (bed->elf_backend_ignore_undef_symbol)
8872 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
8873
8874 /* If we are reporting errors for this situation then do so now. */
89a2ee5a 8875 if (!ignore_undef
12ac1cf5 8876 && h->ref_dynamic
8b127cbc
AM
8877 && (!h->ref_regular || flinfo->info->gc_sections)
8878 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
8879 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
8880 {
8881 if (!(flinfo->info->callbacks->undefined_symbol
8882 (flinfo->info, h->root.root.string,
8883 h->ref_regular ? NULL : h->root.u.undef.abfd,
8884 NULL, 0,
8885 (flinfo->info->unresolved_syms_in_shared_libs
8886 == RM_GENERATE_ERROR))))
12ac1cf5 8887 {
17d078c5 8888 bfd_set_error (bfd_error_bad_value);
12ac1cf5
NC
8889 eoinfo->failed = TRUE;
8890 return FALSE;
8891 }
c152c796
AM
8892 }
8893 }
8894
8895 /* We should also warn if a forced local symbol is referenced from
8896 shared libraries. */
8b127cbc
AM
8897 if (!flinfo->info->relocatable
8898 && flinfo->info->executable
f5385ebf
AM
8899 && h->forced_local
8900 && h->ref_dynamic
371a5866 8901 && h->def_regular
f5385ebf 8902 && !h->dynamic_def
ee659f1f 8903 && h->ref_dynamic_nonweak
8b127cbc 8904 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
c152c796 8905 {
17d078c5
AM
8906 bfd *def_bfd;
8907 const char *msg;
90c984fc
L
8908 struct elf_link_hash_entry *hi = h;
8909
8910 /* Check indirect symbol. */
8911 while (hi->root.type == bfd_link_hash_indirect)
8912 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
17d078c5
AM
8913
8914 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
8915 msg = _("%B: internal symbol `%s' in %B is referenced by DSO");
8916 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
8917 msg = _("%B: hidden symbol `%s' in %B is referenced by DSO");
8918 else
8919 msg = _("%B: local symbol `%s' in %B is referenced by DSO");
8b127cbc 8920 def_bfd = flinfo->output_bfd;
90c984fc
L
8921 if (hi->root.u.def.section != bfd_abs_section_ptr)
8922 def_bfd = hi->root.u.def.section->owner;
8b127cbc 8923 (*_bfd_error_handler) (msg, flinfo->output_bfd, def_bfd,
17d078c5
AM
8924 h->root.root.string);
8925 bfd_set_error (bfd_error_bad_value);
c152c796
AM
8926 eoinfo->failed = TRUE;
8927 return FALSE;
8928 }
8929
8930 /* We don't want to output symbols that have never been mentioned by
8931 a regular file, or that we have been told to strip. However, if
8932 h->indx is set to -2, the symbol is used by a reloc and we must
8933 output it. */
8934 if (h->indx == -2)
8935 strip = FALSE;
f5385ebf 8936 else if ((h->def_dynamic
77cfaee6
AM
8937 || h->ref_dynamic
8938 || h->root.type == bfd_link_hash_new)
f5385ebf
AM
8939 && !h->def_regular
8940 && !h->ref_regular)
c152c796 8941 strip = TRUE;
8b127cbc 8942 else if (flinfo->info->strip == strip_all)
c152c796 8943 strip = TRUE;
8b127cbc
AM
8944 else if (flinfo->info->strip == strip_some
8945 && bfd_hash_lookup (flinfo->info->keep_hash,
c152c796
AM
8946 h->root.root.string, FALSE, FALSE) == NULL)
8947 strip = TRUE;
d56d55e7
AM
8948 else if ((h->root.type == bfd_link_hash_defined
8949 || h->root.type == bfd_link_hash_defweak)
8b127cbc 8950 && ((flinfo->info->strip_discarded
dbaa2011 8951 && discarded_section (h->root.u.def.section))
d56d55e7
AM
8952 || (h->root.u.def.section->owner != NULL
8953 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
c152c796 8954 strip = TRUE;
9e2278f5
AM
8955 else if ((h->root.type == bfd_link_hash_undefined
8956 || h->root.type == bfd_link_hash_undefweak)
8957 && h->root.u.undef.abfd != NULL
8958 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
8959 strip = TRUE;
c152c796
AM
8960 else
8961 strip = FALSE;
8962
8963 /* If we're stripping it, and it's not a dynamic symbol, there's
57ca8ac7
L
8964 nothing else to do unless it is a forced local symbol or a
8965 STT_GNU_IFUNC symbol. */
c152c796
AM
8966 if (strip
8967 && h->dynindx == -1
57ca8ac7 8968 && h->type != STT_GNU_IFUNC
f5385ebf 8969 && !h->forced_local)
c152c796
AM
8970 return TRUE;
8971
8972 sym.st_value = 0;
8973 sym.st_size = h->size;
8974 sym.st_other = h->other;
f5385ebf 8975 if (h->forced_local)
935bd1e0
L
8976 {
8977 sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
8978 /* Turn off visibility on local symbol. */
8979 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
8980 }
02acbe22
L
8981 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
8982 else if (h->unique_global && h->def_regular)
3e7a7d11 8983 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type);
c152c796
AM
8984 else if (h->root.type == bfd_link_hash_undefweak
8985 || h->root.type == bfd_link_hash_defweak)
8986 sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
8987 else
8988 sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
35fc36a8 8989 sym.st_target_internal = h->target_internal;
c152c796
AM
8990
8991 switch (h->root.type)
8992 {
8993 default:
8994 case bfd_link_hash_new:
8995 case bfd_link_hash_warning:
8996 abort ();
8997 return FALSE;
8998
8999 case bfd_link_hash_undefined:
9000 case bfd_link_hash_undefweak:
9001 input_sec = bfd_und_section_ptr;
9002 sym.st_shndx = SHN_UNDEF;
9003 break;
9004
9005 case bfd_link_hash_defined:
9006 case bfd_link_hash_defweak:
9007 {
9008 input_sec = h->root.u.def.section;
9009 if (input_sec->output_section != NULL)
9010 {
ffbc01cc
AM
9011 if (eoinfo->localsyms && flinfo->filesym_count == 1)
9012 {
9013 bfd_boolean second_pass_sym
9014 = (input_sec->owner == flinfo->output_bfd
9015 || input_sec->owner == NULL
9016 || (input_sec->flags & SEC_LINKER_CREATED) != 0
9017 || (input_sec->owner->flags & BFD_LINKER_CREATED) != 0);
9018
9019 eoinfo->need_second_pass |= second_pass_sym;
9020 if (eoinfo->second_pass != second_pass_sym)
9021 return TRUE;
9022 }
9023
c152c796 9024 sym.st_shndx =
8b127cbc 9025 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
c152c796
AM
9026 input_sec->output_section);
9027 if (sym.st_shndx == SHN_BAD)
9028 {
9029 (*_bfd_error_handler)
d003868e 9030 (_("%B: could not find output section %A for input section %A"),
8b127cbc 9031 flinfo->output_bfd, input_sec->output_section, input_sec);
17d078c5 9032 bfd_set_error (bfd_error_nonrepresentable_section);
c152c796
AM
9033 eoinfo->failed = TRUE;
9034 return FALSE;
9035 }
9036
9037 /* ELF symbols in relocatable files are section relative,
9038 but in nonrelocatable files they are virtual
9039 addresses. */
9040 sym.st_value = h->root.u.def.value + input_sec->output_offset;
8b127cbc 9041 if (!flinfo->info->relocatable)
c152c796
AM
9042 {
9043 sym.st_value += input_sec->output_section->vma;
9044 if (h->type == STT_TLS)
9045 {
8b127cbc 9046 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
430a16a5
NC
9047 if (tls_sec != NULL)
9048 sym.st_value -= tls_sec->vma;
9049 else
9050 {
9051 /* The TLS section may have been garbage collected. */
8b127cbc 9052 BFD_ASSERT (flinfo->info->gc_sections
430a16a5
NC
9053 && !input_sec->gc_mark);
9054 }
c152c796
AM
9055 }
9056 }
9057 }
9058 else
9059 {
9060 BFD_ASSERT (input_sec->owner == NULL
9061 || (input_sec->owner->flags & DYNAMIC) != 0);
9062 sym.st_shndx = SHN_UNDEF;
9063 input_sec = bfd_und_section_ptr;
9064 }
9065 }
9066 break;
9067
9068 case bfd_link_hash_common:
9069 input_sec = h->root.u.c.p->section;
a4d8e49b 9070 sym.st_shndx = bed->common_section_index (input_sec);
c152c796
AM
9071 sym.st_value = 1 << h->root.u.c.p->alignment_power;
9072 break;
9073
9074 case bfd_link_hash_indirect:
9075 /* These symbols are created by symbol versioning. They point
9076 to the decorated version of the name. For example, if the
9077 symbol foo@@GNU_1.2 is the default, which should be used when
9078 foo is used with no version, then we add an indirect symbol
9079 foo which points to foo@@GNU_1.2. We ignore these symbols,
9080 since the indirected symbol is already in the hash table. */
9081 return TRUE;
9082 }
9083
9084 /* Give the processor backend a chance to tweak the symbol value,
9085 and also to finish up anything that needs to be done for this
9086 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
3aa14d16 9087 forced local syms when non-shared is due to a historical quirk.
5f35ea9c 9088 STT_GNU_IFUNC symbol must go through PLT. */
3aa14d16 9089 if ((h->type == STT_GNU_IFUNC
5f35ea9c 9090 && h->def_regular
8b127cbc 9091 && !flinfo->info->relocatable)
3aa14d16
L
9092 || ((h->dynindx != -1
9093 || h->forced_local)
8b127cbc 9094 && ((flinfo->info->shared
3aa14d16
L
9095 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
9096 || h->root.type != bfd_link_hash_undefweak))
9097 || !h->forced_local)
8b127cbc 9098 && elf_hash_table (flinfo->info)->dynamic_sections_created))
c152c796
AM
9099 {
9100 if (! ((*bed->elf_backend_finish_dynamic_symbol)
8b127cbc 9101 (flinfo->output_bfd, flinfo->info, h, &sym)))
c152c796
AM
9102 {
9103 eoinfo->failed = TRUE;
9104 return FALSE;
9105 }
9106 }
9107
9108 /* If we are marking the symbol as undefined, and there are no
9109 non-weak references to this symbol from a regular object, then
9110 mark the symbol as weak undefined; if there are non-weak
9111 references, mark the symbol as strong. We can't do this earlier,
9112 because it might not be marked as undefined until the
9113 finish_dynamic_symbol routine gets through with it. */
9114 if (sym.st_shndx == SHN_UNDEF
f5385ebf 9115 && h->ref_regular
c152c796
AM
9116 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
9117 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
9118 {
9119 int bindtype;
2955ec4c
L
9120 unsigned int type = ELF_ST_TYPE (sym.st_info);
9121
9122 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
9123 if (type == STT_GNU_IFUNC)
9124 type = STT_FUNC;
c152c796 9125
f5385ebf 9126 if (h->ref_regular_nonweak)
c152c796
AM
9127 bindtype = STB_GLOBAL;
9128 else
9129 bindtype = STB_WEAK;
2955ec4c 9130 sym.st_info = ELF_ST_INFO (bindtype, type);
c152c796
AM
9131 }
9132
bda987c2
CD
9133 /* If this is a symbol defined in a dynamic library, don't use the
9134 symbol size from the dynamic library. Relinking an executable
9135 against a new library may introduce gratuitous changes in the
9136 executable's symbols if we keep the size. */
9137 if (sym.st_shndx == SHN_UNDEF
9138 && !h->def_regular
9139 && h->def_dynamic)
9140 sym.st_size = 0;
9141
c152c796
AM
9142 /* If a non-weak symbol with non-default visibility is not defined
9143 locally, it is a fatal error. */
8b127cbc 9144 if (!flinfo->info->relocatable
c152c796
AM
9145 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
9146 && ELF_ST_BIND (sym.st_info) != STB_WEAK
9147 && h->root.type == bfd_link_hash_undefined
f5385ebf 9148 && !h->def_regular)
c152c796 9149 {
17d078c5
AM
9150 const char *msg;
9151
9152 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
9153 msg = _("%B: protected symbol `%s' isn't defined");
9154 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
9155 msg = _("%B: internal symbol `%s' isn't defined");
9156 else
9157 msg = _("%B: hidden symbol `%s' isn't defined");
8b127cbc 9158 (*_bfd_error_handler) (msg, flinfo->output_bfd, h->root.root.string);
17d078c5 9159 bfd_set_error (bfd_error_bad_value);
c152c796
AM
9160 eoinfo->failed = TRUE;
9161 return FALSE;
9162 }
9163
9164 /* If this symbol should be put in the .dynsym section, then put it
9165 there now. We already know the symbol index. We also fill in
9166 the entry in the .hash section. */
8b127cbc 9167 if (flinfo->dynsym_sec != NULL
202e2356 9168 && h->dynindx != -1
8b127cbc 9169 && elf_hash_table (flinfo->info)->dynamic_sections_created)
c152c796 9170 {
c152c796
AM
9171 bfd_byte *esym;
9172
90c984fc
L
9173 /* Since there is no version information in the dynamic string,
9174 if there is no version info in symbol version section, we will
9175 have a run-time problem. */
9176 if (h->verinfo.verdef == NULL)
9177 {
9178 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
9179
9180 if (p && p [1] != '\0')
9181 {
9182 (*_bfd_error_handler)
9183 (_("%B: No symbol version section for versioned symbol `%s'"),
9184 flinfo->output_bfd, h->root.root.string);
9185 eoinfo->failed = TRUE;
9186 return FALSE;
9187 }
9188 }
9189
c152c796 9190 sym.st_name = h->dynstr_index;
8b127cbc
AM
9191 esym = flinfo->dynsym_sec->contents + h->dynindx * bed->s->sizeof_sym;
9192 if (!check_dynsym (flinfo->output_bfd, &sym))
c0d5a53d
L
9193 {
9194 eoinfo->failed = TRUE;
9195 return FALSE;
9196 }
8b127cbc 9197 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
c152c796 9198
8b127cbc 9199 if (flinfo->hash_sec != NULL)
fdc90cb4
JJ
9200 {
9201 size_t hash_entry_size;
9202 bfd_byte *bucketpos;
9203 bfd_vma chain;
41198d0c
L
9204 size_t bucketcount;
9205 size_t bucket;
9206
8b127cbc 9207 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
41198d0c 9208 bucket = h->u.elf_hash_value % bucketcount;
fdc90cb4
JJ
9209
9210 hash_entry_size
8b127cbc
AM
9211 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
9212 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4 9213 + (bucket + 2) * hash_entry_size);
8b127cbc
AM
9214 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
9215 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
9216 bucketpos);
9217 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
9218 ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4
JJ
9219 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
9220 }
c152c796 9221
8b127cbc 9222 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
c152c796
AM
9223 {
9224 Elf_Internal_Versym iversym;
9225 Elf_External_Versym *eversym;
9226
f5385ebf 9227 if (!h->def_regular)
c152c796 9228 {
7b20f099
AM
9229 if (h->verinfo.verdef == NULL
9230 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
9231 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
c152c796
AM
9232 iversym.vs_vers = 0;
9233 else
9234 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
9235 }
9236 else
9237 {
9238 if (h->verinfo.vertree == NULL)
9239 iversym.vs_vers = 1;
9240 else
9241 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
8b127cbc 9242 if (flinfo->info->create_default_symver)
3e3b46e5 9243 iversym.vs_vers++;
c152c796
AM
9244 }
9245
f5385ebf 9246 if (h->hidden)
c152c796
AM
9247 iversym.vs_vers |= VERSYM_HIDDEN;
9248
8b127cbc 9249 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
c152c796 9250 eversym += h->dynindx;
8b127cbc 9251 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
c152c796
AM
9252 }
9253 }
9254
9255 /* If we're stripping it, then it was just a dynamic symbol, and
9256 there's nothing else to do. */
9257 if (strip || (input_sec->flags & SEC_EXCLUDE) != 0)
9258 return TRUE;
9259
8b127cbc
AM
9260 indx = bfd_get_symcount (flinfo->output_bfd);
9261 ret = elf_link_output_sym (flinfo, h->root.root.string, &sym, input_sec, h);
6e0b88f1 9262 if (ret == 0)
c152c796
AM
9263 {
9264 eoinfo->failed = TRUE;
9265 return FALSE;
9266 }
6e0b88f1
AM
9267 else if (ret == 1)
9268 h->indx = indx;
9269 else if (h->indx == -2)
9270 abort();
c152c796
AM
9271
9272 return TRUE;
9273}
9274
cdd3575c
AM
9275/* Return TRUE if special handling is done for relocs in SEC against
9276 symbols defined in discarded sections. */
9277
c152c796
AM
9278static bfd_boolean
9279elf_section_ignore_discarded_relocs (asection *sec)
9280{
9281 const struct elf_backend_data *bed;
9282
cdd3575c
AM
9283 switch (sec->sec_info_type)
9284 {
dbaa2011
AM
9285 case SEC_INFO_TYPE_STABS:
9286 case SEC_INFO_TYPE_EH_FRAME:
cdd3575c
AM
9287 return TRUE;
9288 default:
9289 break;
9290 }
c152c796
AM
9291
9292 bed = get_elf_backend_data (sec->owner);
9293 if (bed->elf_backend_ignore_discarded_relocs != NULL
9294 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
9295 return TRUE;
9296
9297 return FALSE;
9298}
9299
9e66c942
AM
9300/* Return a mask saying how ld should treat relocations in SEC against
9301 symbols defined in discarded sections. If this function returns
9302 COMPLAIN set, ld will issue a warning message. If this function
9303 returns PRETEND set, and the discarded section was link-once and the
9304 same size as the kept link-once section, ld will pretend that the
9305 symbol was actually defined in the kept section. Otherwise ld will
9306 zero the reloc (at least that is the intent, but some cooperation by
9307 the target dependent code is needed, particularly for REL targets). */
9308
8a696751
AM
9309unsigned int
9310_bfd_elf_default_action_discarded (asection *sec)
cdd3575c 9311{
9e66c942 9312 if (sec->flags & SEC_DEBUGGING)
69d54b1b 9313 return PRETEND;
cdd3575c
AM
9314
9315 if (strcmp (".eh_frame", sec->name) == 0)
9e66c942 9316 return 0;
cdd3575c
AM
9317
9318 if (strcmp (".gcc_except_table", sec->name) == 0)
9e66c942 9319 return 0;
cdd3575c 9320
9e66c942 9321 return COMPLAIN | PRETEND;
cdd3575c
AM
9322}
9323
3d7f7666
L
9324/* Find a match between a section and a member of a section group. */
9325
9326static asection *
c0f00686
L
9327match_group_member (asection *sec, asection *group,
9328 struct bfd_link_info *info)
3d7f7666
L
9329{
9330 asection *first = elf_next_in_group (group);
9331 asection *s = first;
9332
9333 while (s != NULL)
9334 {
c0f00686 9335 if (bfd_elf_match_symbols_in_sections (s, sec, info))
3d7f7666
L
9336 return s;
9337
83180ade 9338 s = elf_next_in_group (s);
3d7f7666
L
9339 if (s == first)
9340 break;
9341 }
9342
9343 return NULL;
9344}
9345
01b3c8ab 9346/* Check if the kept section of a discarded section SEC can be used
c2370991
AM
9347 to replace it. Return the replacement if it is OK. Otherwise return
9348 NULL. */
01b3c8ab
L
9349
9350asection *
c0f00686 9351_bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
01b3c8ab
L
9352{
9353 asection *kept;
9354
9355 kept = sec->kept_section;
9356 if (kept != NULL)
9357 {
c2370991 9358 if ((kept->flags & SEC_GROUP) != 0)
c0f00686 9359 kept = match_group_member (sec, kept, info);
1dd2625f
BW
9360 if (kept != NULL
9361 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
9362 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
01b3c8ab 9363 kept = NULL;
c2370991 9364 sec->kept_section = kept;
01b3c8ab
L
9365 }
9366 return kept;
9367}
9368
c152c796
AM
9369/* Link an input file into the linker output file. This function
9370 handles all the sections and relocations of the input file at once.
9371 This is so that we only have to read the local symbols once, and
9372 don't have to keep them in memory. */
9373
9374static bfd_boolean
8b127cbc 9375elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
c152c796 9376{
ece5ef60 9377 int (*relocate_section)
c152c796
AM
9378 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
9379 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
9380 bfd *output_bfd;
9381 Elf_Internal_Shdr *symtab_hdr;
9382 size_t locsymcount;
9383 size_t extsymoff;
9384 Elf_Internal_Sym *isymbuf;
9385 Elf_Internal_Sym *isym;
9386 Elf_Internal_Sym *isymend;
9387 long *pindex;
9388 asection **ppsection;
9389 asection *o;
9390 const struct elf_backend_data *bed;
c152c796 9391 struct elf_link_hash_entry **sym_hashes;
310fd250
L
9392 bfd_size_type address_size;
9393 bfd_vma r_type_mask;
9394 int r_sym_shift;
ffbc01cc 9395 bfd_boolean have_file_sym = FALSE;
c152c796 9396
8b127cbc 9397 output_bfd = flinfo->output_bfd;
c152c796
AM
9398 bed = get_elf_backend_data (output_bfd);
9399 relocate_section = bed->elf_backend_relocate_section;
9400
9401 /* If this is a dynamic object, we don't want to do anything here:
9402 we don't want the local symbols, and we don't want the section
9403 contents. */
9404 if ((input_bfd->flags & DYNAMIC) != 0)
9405 return TRUE;
9406
c152c796
AM
9407 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9408 if (elf_bad_symtab (input_bfd))
9409 {
9410 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
9411 extsymoff = 0;
9412 }
9413 else
9414 {
9415 locsymcount = symtab_hdr->sh_info;
9416 extsymoff = symtab_hdr->sh_info;
9417 }
9418
9419 /* Read the local symbols. */
9420 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
9421 if (isymbuf == NULL && locsymcount != 0)
9422 {
9423 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
8b127cbc
AM
9424 flinfo->internal_syms,
9425 flinfo->external_syms,
9426 flinfo->locsym_shndx);
c152c796
AM
9427 if (isymbuf == NULL)
9428 return FALSE;
9429 }
9430
9431 /* Find local symbol sections and adjust values of symbols in
9432 SEC_MERGE sections. Write out those local symbols we know are
9433 going into the output file. */
9434 isymend = isymbuf + locsymcount;
8b127cbc 9435 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
c152c796
AM
9436 isym < isymend;
9437 isym++, pindex++, ppsection++)
9438 {
9439 asection *isec;
9440 const char *name;
9441 Elf_Internal_Sym osym;
6e0b88f1
AM
9442 long indx;
9443 int ret;
c152c796
AM
9444
9445 *pindex = -1;
9446
9447 if (elf_bad_symtab (input_bfd))
9448 {
9449 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
9450 {
9451 *ppsection = NULL;
9452 continue;
9453 }
9454 }
9455
9456 if (isym->st_shndx == SHN_UNDEF)
9457 isec = bfd_und_section_ptr;
c152c796
AM
9458 else if (isym->st_shndx == SHN_ABS)
9459 isec = bfd_abs_section_ptr;
9460 else if (isym->st_shndx == SHN_COMMON)
9461 isec = bfd_com_section_ptr;
9462 else
9463 {
cb33740c
AM
9464 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
9465 if (isec == NULL)
9466 {
9467 /* Don't attempt to output symbols with st_shnx in the
9468 reserved range other than SHN_ABS and SHN_COMMON. */
9469 *ppsection = NULL;
9470 continue;
9471 }
dbaa2011 9472 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
cb33740c
AM
9473 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
9474 isym->st_value =
9475 _bfd_merged_section_offset (output_bfd, &isec,
9476 elf_section_data (isec)->sec_info,
9477 isym->st_value);
c152c796
AM
9478 }
9479
9480 *ppsection = isec;
9481
9482 /* Don't output the first, undefined, symbol. */
8b127cbc 9483 if (ppsection == flinfo->sections)
c152c796
AM
9484 continue;
9485
9486 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
9487 {
9488 /* We never output section symbols. Instead, we use the
9489 section symbol of the corresponding section in the output
9490 file. */
9491 continue;
9492 }
9493
9494 /* If we are stripping all symbols, we don't want to output this
9495 one. */
8b127cbc 9496 if (flinfo->info->strip == strip_all)
c152c796
AM
9497 continue;
9498
9499 /* If we are discarding all local symbols, we don't want to
9500 output this one. If we are generating a relocatable output
9501 file, then some of the local symbols may be required by
9502 relocs; we output them below as we discover that they are
9503 needed. */
8b127cbc 9504 if (flinfo->info->discard == discard_all)
c152c796
AM
9505 continue;
9506
9507 /* If this symbol is defined in a section which we are
f02571c5
AM
9508 discarding, we don't need to keep it. */
9509 if (isym->st_shndx != SHN_UNDEF
4fbb74a6
AM
9510 && isym->st_shndx < SHN_LORESERVE
9511 && bfd_section_removed_from_list (output_bfd,
9512 isec->output_section))
e75a280b
L
9513 continue;
9514
c152c796
AM
9515 /* Get the name of the symbol. */
9516 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
9517 isym->st_name);
9518 if (name == NULL)
9519 return FALSE;
9520
9521 /* See if we are discarding symbols with this name. */
8b127cbc
AM
9522 if ((flinfo->info->strip == strip_some
9523 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
c152c796 9524 == NULL))
8b127cbc
AM
9525 || (((flinfo->info->discard == discard_sec_merge
9526 && (isec->flags & SEC_MERGE) && !flinfo->info->relocatable)
9527 || flinfo->info->discard == discard_l)
c152c796
AM
9528 && bfd_is_local_label_name (input_bfd, name)))
9529 continue;
9530
ffbc01cc
AM
9531 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
9532 {
9533 have_file_sym = TRUE;
9534 flinfo->filesym_count += 1;
9535 }
9536 if (!have_file_sym)
9537 {
9538 /* In the absence of debug info, bfd_find_nearest_line uses
9539 FILE symbols to determine the source file for local
9540 function symbols. Provide a FILE symbol here if input
9541 files lack such, so that their symbols won't be
9542 associated with a previous input file. It's not the
9543 source file, but the best we can do. */
9544 have_file_sym = TRUE;
9545 flinfo->filesym_count += 1;
9546 memset (&osym, 0, sizeof (osym));
9547 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9548 osym.st_shndx = SHN_ABS;
9549 if (!elf_link_output_sym (flinfo, input_bfd->filename, &osym,
9550 bfd_abs_section_ptr, NULL))
9551 return FALSE;
9552 }
9553
c152c796
AM
9554 osym = *isym;
9555
9556 /* Adjust the section index for the output file. */
9557 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9558 isec->output_section);
9559 if (osym.st_shndx == SHN_BAD)
9560 return FALSE;
9561
c152c796
AM
9562 /* ELF symbols in relocatable files are section relative, but
9563 in executable files they are virtual addresses. Note that
9564 this code assumes that all ELF sections have an associated
9565 BFD section with a reasonable value for output_offset; below
9566 we assume that they also have a reasonable value for
9567 output_section. Any special sections must be set up to meet
9568 these requirements. */
9569 osym.st_value += isec->output_offset;
8b127cbc 9570 if (!flinfo->info->relocatable)
c152c796
AM
9571 {
9572 osym.st_value += isec->output_section->vma;
9573 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
9574 {
9575 /* STT_TLS symbols are relative to PT_TLS segment base. */
8b127cbc
AM
9576 BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
9577 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
c152c796
AM
9578 }
9579 }
9580
6e0b88f1 9581 indx = bfd_get_symcount (output_bfd);
8b127cbc 9582 ret = elf_link_output_sym (flinfo, name, &osym, isec, NULL);
6e0b88f1 9583 if (ret == 0)
c152c796 9584 return FALSE;
6e0b88f1
AM
9585 else if (ret == 1)
9586 *pindex = indx;
c152c796
AM
9587 }
9588
310fd250
L
9589 if (bed->s->arch_size == 32)
9590 {
9591 r_type_mask = 0xff;
9592 r_sym_shift = 8;
9593 address_size = 4;
9594 }
9595 else
9596 {
9597 r_type_mask = 0xffffffff;
9598 r_sym_shift = 32;
9599 address_size = 8;
9600 }
9601
c152c796
AM
9602 /* Relocate the contents of each section. */
9603 sym_hashes = elf_sym_hashes (input_bfd);
9604 for (o = input_bfd->sections; o != NULL; o = o->next)
9605 {
9606 bfd_byte *contents;
9607
9608 if (! o->linker_mark)
9609 {
9610 /* This section was omitted from the link. */
9611 continue;
9612 }
9613
8b127cbc 9614 if (flinfo->info->relocatable
bcacc0f5
AM
9615 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
9616 {
9617 /* Deal with the group signature symbol. */
9618 struct bfd_elf_section_data *sec_data = elf_section_data (o);
9619 unsigned long symndx = sec_data->this_hdr.sh_info;
9620 asection *osec = o->output_section;
9621
9622 if (symndx >= locsymcount
9623 || (elf_bad_symtab (input_bfd)
8b127cbc 9624 && flinfo->sections[symndx] == NULL))
bcacc0f5
AM
9625 {
9626 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
9627 while (h->root.type == bfd_link_hash_indirect
9628 || h->root.type == bfd_link_hash_warning)
9629 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9630 /* Arrange for symbol to be output. */
9631 h->indx = -2;
9632 elf_section_data (osec)->this_hdr.sh_info = -2;
9633 }
9634 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
9635 {
9636 /* We'll use the output section target_index. */
8b127cbc 9637 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5
AM
9638 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
9639 }
9640 else
9641 {
8b127cbc 9642 if (flinfo->indices[symndx] == -1)
bcacc0f5
AM
9643 {
9644 /* Otherwise output the local symbol now. */
9645 Elf_Internal_Sym sym = isymbuf[symndx];
8b127cbc 9646 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5 9647 const char *name;
6e0b88f1
AM
9648 long indx;
9649 int ret;
bcacc0f5
AM
9650
9651 name = bfd_elf_string_from_elf_section (input_bfd,
9652 symtab_hdr->sh_link,
9653 sym.st_name);
9654 if (name == NULL)
9655 return FALSE;
9656
9657 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9658 sec);
9659 if (sym.st_shndx == SHN_BAD)
9660 return FALSE;
9661
9662 sym.st_value += o->output_offset;
9663
6e0b88f1 9664 indx = bfd_get_symcount (output_bfd);
8b127cbc 9665 ret = elf_link_output_sym (flinfo, name, &sym, o, NULL);
6e0b88f1 9666 if (ret == 0)
bcacc0f5 9667 return FALSE;
6e0b88f1 9668 else if (ret == 1)
8b127cbc 9669 flinfo->indices[symndx] = indx;
6e0b88f1
AM
9670 else
9671 abort ();
bcacc0f5
AM
9672 }
9673 elf_section_data (osec)->this_hdr.sh_info
8b127cbc 9674 = flinfo->indices[symndx];
bcacc0f5
AM
9675 }
9676 }
9677
c152c796 9678 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 9679 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
c152c796
AM
9680 continue;
9681
9682 if ((o->flags & SEC_LINKER_CREATED) != 0)
9683 {
9684 /* Section was created by _bfd_elf_link_create_dynamic_sections
9685 or somesuch. */
9686 continue;
9687 }
9688
9689 /* Get the contents of the section. They have been cached by a
9690 relaxation routine. Note that o is a section in an input
9691 file, so the contents field will not have been set by any of
9692 the routines which work on output files. */
9693 if (elf_section_data (o)->this_hdr.contents != NULL)
53291d1f
AM
9694 {
9695 contents = elf_section_data (o)->this_hdr.contents;
9696 if (bed->caches_rawsize
9697 && o->rawsize != 0
9698 && o->rawsize < o->size)
9699 {
9700 memcpy (flinfo->contents, contents, o->rawsize);
9701 contents = flinfo->contents;
9702 }
9703 }
c152c796
AM
9704 else
9705 {
8b127cbc 9706 contents = flinfo->contents;
4a114e3e 9707 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
c152c796
AM
9708 return FALSE;
9709 }
9710
9711 if ((o->flags & SEC_RELOC) != 0)
9712 {
9713 Elf_Internal_Rela *internal_relocs;
0f02bbd9 9714 Elf_Internal_Rela *rel, *relend;
0f02bbd9 9715 int action_discarded;
ece5ef60 9716 int ret;
c152c796
AM
9717
9718 /* Get the swapped relocs. */
9719 internal_relocs
8b127cbc
AM
9720 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
9721 flinfo->internal_relocs, FALSE);
c152c796
AM
9722 if (internal_relocs == NULL
9723 && o->reloc_count > 0)
9724 return FALSE;
9725
310fd250
L
9726 /* We need to reverse-copy input .ctors/.dtors sections if
9727 they are placed in .init_array/.finit_array for output. */
9728 if (o->size > address_size
9729 && ((strncmp (o->name, ".ctors", 6) == 0
9730 && strcmp (o->output_section->name,
9731 ".init_array") == 0)
9732 || (strncmp (o->name, ".dtors", 6) == 0
9733 && strcmp (o->output_section->name,
9734 ".fini_array") == 0))
9735 && (o->name[6] == 0 || o->name[6] == '.'))
c152c796 9736 {
310fd250
L
9737 if (o->size != o->reloc_count * address_size)
9738 {
9739 (*_bfd_error_handler)
9740 (_("error: %B: size of section %A is not "
9741 "multiple of address size"),
9742 input_bfd, o);
9743 bfd_set_error (bfd_error_on_input);
9744 return FALSE;
9745 }
9746 o->flags |= SEC_ELF_REVERSE_COPY;
c152c796
AM
9747 }
9748
0f02bbd9 9749 action_discarded = -1;
c152c796 9750 if (!elf_section_ignore_discarded_relocs (o))
0f02bbd9
AM
9751 action_discarded = (*bed->action_discarded) (o);
9752
9753 /* Run through the relocs evaluating complex reloc symbols and
9754 looking for relocs against symbols from discarded sections
9755 or section symbols from removed link-once sections.
9756 Complain about relocs against discarded sections. Zero
9757 relocs against removed link-once sections. */
9758
9759 rel = internal_relocs;
9760 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
9761 for ( ; rel < relend; rel++)
c152c796 9762 {
0f02bbd9
AM
9763 unsigned long r_symndx = rel->r_info >> r_sym_shift;
9764 unsigned int s_type;
9765 asection **ps, *sec;
9766 struct elf_link_hash_entry *h = NULL;
9767 const char *sym_name;
c152c796 9768
0f02bbd9
AM
9769 if (r_symndx == STN_UNDEF)
9770 continue;
c152c796 9771
0f02bbd9
AM
9772 if (r_symndx >= locsymcount
9773 || (elf_bad_symtab (input_bfd)
8b127cbc 9774 && flinfo->sections[r_symndx] == NULL))
0f02bbd9
AM
9775 {
9776 h = sym_hashes[r_symndx - extsymoff];
ee75fd95 9777
0f02bbd9
AM
9778 /* Badly formatted input files can contain relocs that
9779 reference non-existant symbols. Check here so that
9780 we do not seg fault. */
9781 if (h == NULL)
c152c796 9782 {
0f02bbd9 9783 char buffer [32];
dce669a1 9784
0f02bbd9
AM
9785 sprintf_vma (buffer, rel->r_info);
9786 (*_bfd_error_handler)
9787 (_("error: %B contains a reloc (0x%s) for section %A "
9788 "that references a non-existent global symbol"),
9789 input_bfd, o, buffer);
9790 bfd_set_error (bfd_error_bad_value);
9791 return FALSE;
9792 }
3b36f7e6 9793
0f02bbd9
AM
9794 while (h->root.type == bfd_link_hash_indirect
9795 || h->root.type == bfd_link_hash_warning)
9796 h = (struct elf_link_hash_entry *) h->root.u.i.link;
c152c796 9797
0f02bbd9 9798 s_type = h->type;
cdd3575c 9799
0f02bbd9
AM
9800 ps = NULL;
9801 if (h->root.type == bfd_link_hash_defined
9802 || h->root.type == bfd_link_hash_defweak)
9803 ps = &h->root.u.def.section;
9804
9805 sym_name = h->root.root.string;
9806 }
9807 else
9808 {
9809 Elf_Internal_Sym *sym = isymbuf + r_symndx;
9810
9811 s_type = ELF_ST_TYPE (sym->st_info);
8b127cbc 9812 ps = &flinfo->sections[r_symndx];
0f02bbd9
AM
9813 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
9814 sym, *ps);
9815 }
c152c796 9816
c301e700 9817 if ((s_type == STT_RELC || s_type == STT_SRELC)
8b127cbc 9818 && !flinfo->info->relocatable)
0f02bbd9
AM
9819 {
9820 bfd_vma val;
9821 bfd_vma dot = (rel->r_offset
9822 + o->output_offset + o->output_section->vma);
9823#ifdef DEBUG
9824 printf ("Encountered a complex symbol!");
9825 printf (" (input_bfd %s, section %s, reloc %ld\n",
9ccb8af9
AM
9826 input_bfd->filename, o->name,
9827 (long) (rel - internal_relocs));
0f02bbd9
AM
9828 printf (" symbol: idx %8.8lx, name %s\n",
9829 r_symndx, sym_name);
9830 printf (" reloc : info %8.8lx, addr %8.8lx\n",
9831 (unsigned long) rel->r_info,
9832 (unsigned long) rel->r_offset);
9833#endif
8b127cbc 9834 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
0f02bbd9
AM
9835 isymbuf, locsymcount, s_type == STT_SRELC))
9836 return FALSE;
9837
9838 /* Symbol evaluated OK. Update to absolute value. */
9839 set_symbol_value (input_bfd, isymbuf, locsymcount,
9840 r_symndx, val);
9841 continue;
9842 }
9843
9844 if (action_discarded != -1 && ps != NULL)
9845 {
cdd3575c
AM
9846 /* Complain if the definition comes from a
9847 discarded section. */
dbaa2011 9848 if ((sec = *ps) != NULL && discarded_section (sec))
cdd3575c 9849 {
cf35638d 9850 BFD_ASSERT (r_symndx != STN_UNDEF);
0f02bbd9 9851 if (action_discarded & COMPLAIN)
8b127cbc 9852 (*flinfo->info->callbacks->einfo)
e1fffbe6 9853 (_("%X`%s' referenced in section `%A' of %B: "
58ac56d0 9854 "defined in discarded section `%A' of %B\n"),
e1fffbe6 9855 sym_name, o, input_bfd, sec, sec->owner);
cdd3575c 9856
87e5235d 9857 /* Try to do the best we can to support buggy old
e0ae6d6f 9858 versions of gcc. Pretend that the symbol is
87e5235d
AM
9859 really defined in the kept linkonce section.
9860 FIXME: This is quite broken. Modifying the
9861 symbol here means we will be changing all later
e0ae6d6f 9862 uses of the symbol, not just in this section. */
0f02bbd9 9863 if (action_discarded & PRETEND)
87e5235d 9864 {
01b3c8ab
L
9865 asection *kept;
9866
c0f00686 9867 kept = _bfd_elf_check_kept_section (sec,
8b127cbc 9868 flinfo->info);
01b3c8ab 9869 if (kept != NULL)
87e5235d
AM
9870 {
9871 *ps = kept;
9872 continue;
9873 }
9874 }
c152c796
AM
9875 }
9876 }
9877 }
9878
9879 /* Relocate the section by invoking a back end routine.
9880
9881 The back end routine is responsible for adjusting the
9882 section contents as necessary, and (if using Rela relocs
9883 and generating a relocatable output file) adjusting the
9884 reloc addend as necessary.
9885
9886 The back end routine does not have to worry about setting
9887 the reloc address or the reloc symbol index.
9888
9889 The back end routine is given a pointer to the swapped in
9890 internal symbols, and can access the hash table entries
9891 for the external symbols via elf_sym_hashes (input_bfd).
9892
9893 When generating relocatable output, the back end routine
9894 must handle STB_LOCAL/STT_SECTION symbols specially. The
9895 output symbol is going to be a section symbol
9896 corresponding to the output section, which will require
9897 the addend to be adjusted. */
9898
8b127cbc 9899 ret = (*relocate_section) (output_bfd, flinfo->info,
c152c796
AM
9900 input_bfd, o, contents,
9901 internal_relocs,
9902 isymbuf,
8b127cbc 9903 flinfo->sections);
ece5ef60 9904 if (!ret)
c152c796
AM
9905 return FALSE;
9906
ece5ef60 9907 if (ret == 2
8b127cbc
AM
9908 || flinfo->info->relocatable
9909 || flinfo->info->emitrelocations)
c152c796
AM
9910 {
9911 Elf_Internal_Rela *irela;
d4730f92 9912 Elf_Internal_Rela *irelaend, *irelamid;
c152c796
AM
9913 bfd_vma last_offset;
9914 struct elf_link_hash_entry **rel_hash;
d4730f92
BS
9915 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
9916 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
c152c796 9917 unsigned int next_erel;
c152c796 9918 bfd_boolean rela_normal;
d4730f92 9919 struct bfd_elf_section_data *esdi, *esdo;
c152c796 9920
d4730f92
BS
9921 esdi = elf_section_data (o);
9922 esdo = elf_section_data (o->output_section);
9923 rela_normal = FALSE;
c152c796
AM
9924
9925 /* Adjust the reloc addresses and symbol indices. */
9926
9927 irela = internal_relocs;
9928 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
d4730f92
BS
9929 rel_hash = esdo->rel.hashes + esdo->rel.count;
9930 /* We start processing the REL relocs, if any. When we reach
9931 IRELAMID in the loop, we switch to the RELA relocs. */
9932 irelamid = irela;
9933 if (esdi->rel.hdr != NULL)
9934 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
9935 * bed->s->int_rels_per_ext_rel);
eac338cf 9936 rel_hash_list = rel_hash;
d4730f92 9937 rela_hash_list = NULL;
c152c796 9938 last_offset = o->output_offset;
8b127cbc 9939 if (!flinfo->info->relocatable)
c152c796
AM
9940 last_offset += o->output_section->vma;
9941 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
9942 {
9943 unsigned long r_symndx;
9944 asection *sec;
9945 Elf_Internal_Sym sym;
9946
9947 if (next_erel == bed->s->int_rels_per_ext_rel)
9948 {
9949 rel_hash++;
9950 next_erel = 0;
9951 }
9952
d4730f92
BS
9953 if (irela == irelamid)
9954 {
9955 rel_hash = esdo->rela.hashes + esdo->rela.count;
9956 rela_hash_list = rel_hash;
9957 rela_normal = bed->rela_normal;
9958 }
9959
c152c796 9960 irela->r_offset = _bfd_elf_section_offset (output_bfd,
8b127cbc 9961 flinfo->info, o,
c152c796
AM
9962 irela->r_offset);
9963 if (irela->r_offset >= (bfd_vma) -2)
9964 {
9965 /* This is a reloc for a deleted entry or somesuch.
9966 Turn it into an R_*_NONE reloc, at the same
9967 offset as the last reloc. elf_eh_frame.c and
e460dd0d 9968 bfd_elf_discard_info rely on reloc offsets
c152c796
AM
9969 being ordered. */
9970 irela->r_offset = last_offset;
9971 irela->r_info = 0;
9972 irela->r_addend = 0;
9973 continue;
9974 }
9975
9976 irela->r_offset += o->output_offset;
9977
9978 /* Relocs in an executable have to be virtual addresses. */
8b127cbc 9979 if (!flinfo->info->relocatable)
c152c796
AM
9980 irela->r_offset += o->output_section->vma;
9981
9982 last_offset = irela->r_offset;
9983
9984 r_symndx = irela->r_info >> r_sym_shift;
9985 if (r_symndx == STN_UNDEF)
9986 continue;
9987
9988 if (r_symndx >= locsymcount
9989 || (elf_bad_symtab (input_bfd)
8b127cbc 9990 && flinfo->sections[r_symndx] == NULL))
c152c796
AM
9991 {
9992 struct elf_link_hash_entry *rh;
9993 unsigned long indx;
9994
9995 /* This is a reloc against a global symbol. We
9996 have not yet output all the local symbols, so
9997 we do not know the symbol index of any global
9998 symbol. We set the rel_hash entry for this
9999 reloc to point to the global hash table entry
10000 for this symbol. The symbol index is then
ee75fd95 10001 set at the end of bfd_elf_final_link. */
c152c796
AM
10002 indx = r_symndx - extsymoff;
10003 rh = elf_sym_hashes (input_bfd)[indx];
10004 while (rh->root.type == bfd_link_hash_indirect
10005 || rh->root.type == bfd_link_hash_warning)
10006 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
10007
10008 /* Setting the index to -2 tells
10009 elf_link_output_extsym that this symbol is
10010 used by a reloc. */
10011 BFD_ASSERT (rh->indx < 0);
10012 rh->indx = -2;
10013
10014 *rel_hash = rh;
10015
10016 continue;
10017 }
10018
10019 /* This is a reloc against a local symbol. */
10020
10021 *rel_hash = NULL;
10022 sym = isymbuf[r_symndx];
8b127cbc 10023 sec = flinfo->sections[r_symndx];
c152c796
AM
10024 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
10025 {
10026 /* I suppose the backend ought to fill in the
10027 section of any STT_SECTION symbol against a
6a8d1586 10028 processor specific section. */
cf35638d 10029 r_symndx = STN_UNDEF;
6a8d1586
AM
10030 if (bfd_is_abs_section (sec))
10031 ;
c152c796
AM
10032 else if (sec == NULL || sec->owner == NULL)
10033 {
10034 bfd_set_error (bfd_error_bad_value);
10035 return FALSE;
10036 }
10037 else
10038 {
6a8d1586
AM
10039 asection *osec = sec->output_section;
10040
10041 /* If we have discarded a section, the output
10042 section will be the absolute section. In
ab96bf03
AM
10043 case of discarded SEC_MERGE sections, use
10044 the kept section. relocate_section should
10045 have already handled discarded linkonce
10046 sections. */
6a8d1586
AM
10047 if (bfd_is_abs_section (osec)
10048 && sec->kept_section != NULL
10049 && sec->kept_section->output_section != NULL)
10050 {
10051 osec = sec->kept_section->output_section;
10052 irela->r_addend -= osec->vma;
10053 }
10054
10055 if (!bfd_is_abs_section (osec))
10056 {
10057 r_symndx = osec->target_index;
cf35638d 10058 if (r_symndx == STN_UNDEF)
74541ad4 10059 {
051d833a
AM
10060 irela->r_addend += osec->vma;
10061 osec = _bfd_nearby_section (output_bfd, osec,
10062 osec->vma);
10063 irela->r_addend -= osec->vma;
10064 r_symndx = osec->target_index;
74541ad4 10065 }
6a8d1586 10066 }
c152c796
AM
10067 }
10068
10069 /* Adjust the addend according to where the
10070 section winds up in the output section. */
10071 if (rela_normal)
10072 irela->r_addend += sec->output_offset;
10073 }
10074 else
10075 {
8b127cbc 10076 if (flinfo->indices[r_symndx] == -1)
c152c796
AM
10077 {
10078 unsigned long shlink;
10079 const char *name;
10080 asection *osec;
6e0b88f1 10081 long indx;
c152c796 10082
8b127cbc 10083 if (flinfo->info->strip == strip_all)
c152c796
AM
10084 {
10085 /* You can't do ld -r -s. */
10086 bfd_set_error (bfd_error_invalid_operation);
10087 return FALSE;
10088 }
10089
10090 /* This symbol was skipped earlier, but
10091 since it is needed by a reloc, we
10092 must output it now. */
10093 shlink = symtab_hdr->sh_link;
10094 name = (bfd_elf_string_from_elf_section
10095 (input_bfd, shlink, sym.st_name));
10096 if (name == NULL)
10097 return FALSE;
10098
10099 osec = sec->output_section;
10100 sym.st_shndx =
10101 _bfd_elf_section_from_bfd_section (output_bfd,
10102 osec);
10103 if (sym.st_shndx == SHN_BAD)
10104 return FALSE;
10105
10106 sym.st_value += sec->output_offset;
8b127cbc 10107 if (!flinfo->info->relocatable)
c152c796
AM
10108 {
10109 sym.st_value += osec->vma;
10110 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
10111 {
10112 /* STT_TLS symbols are relative to PT_TLS
10113 segment base. */
8b127cbc 10114 BFD_ASSERT (elf_hash_table (flinfo->info)
c152c796 10115 ->tls_sec != NULL);
8b127cbc 10116 sym.st_value -= (elf_hash_table (flinfo->info)
c152c796
AM
10117 ->tls_sec->vma);
10118 }
10119 }
10120
6e0b88f1 10121 indx = bfd_get_symcount (output_bfd);
8b127cbc 10122 ret = elf_link_output_sym (flinfo, name, &sym, sec,
6e0b88f1
AM
10123 NULL);
10124 if (ret == 0)
c152c796 10125 return FALSE;
6e0b88f1 10126 else if (ret == 1)
8b127cbc 10127 flinfo->indices[r_symndx] = indx;
6e0b88f1
AM
10128 else
10129 abort ();
c152c796
AM
10130 }
10131
8b127cbc 10132 r_symndx = flinfo->indices[r_symndx];
c152c796
AM
10133 }
10134
10135 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
10136 | (irela->r_info & r_type_mask));
10137 }
10138
10139 /* Swap out the relocs. */
d4730f92
BS
10140 input_rel_hdr = esdi->rel.hdr;
10141 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
c152c796 10142 {
d4730f92
BS
10143 if (!bed->elf_backend_emit_relocs (output_bfd, o,
10144 input_rel_hdr,
10145 internal_relocs,
10146 rel_hash_list))
10147 return FALSE;
c152c796
AM
10148 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
10149 * bed->s->int_rels_per_ext_rel);
eac338cf 10150 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
d4730f92
BS
10151 }
10152
10153 input_rela_hdr = esdi->rela.hdr;
10154 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
10155 {
eac338cf 10156 if (!bed->elf_backend_emit_relocs (output_bfd, o,
d4730f92 10157 input_rela_hdr,
eac338cf 10158 internal_relocs,
d4730f92 10159 rela_hash_list))
c152c796
AM
10160 return FALSE;
10161 }
10162 }
10163 }
10164
10165 /* Write out the modified section contents. */
10166 if (bed->elf_backend_write_section
8b127cbc 10167 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
c7b8f16e 10168 contents))
c152c796
AM
10169 {
10170 /* Section written out. */
10171 }
10172 else switch (o->sec_info_type)
10173 {
dbaa2011 10174 case SEC_INFO_TYPE_STABS:
c152c796
AM
10175 if (! (_bfd_write_section_stabs
10176 (output_bfd,
8b127cbc 10177 &elf_hash_table (flinfo->info)->stab_info,
c152c796
AM
10178 o, &elf_section_data (o)->sec_info, contents)))
10179 return FALSE;
10180 break;
dbaa2011 10181 case SEC_INFO_TYPE_MERGE:
c152c796
AM
10182 if (! _bfd_write_merged_section (output_bfd, o,
10183 elf_section_data (o)->sec_info))
10184 return FALSE;
10185 break;
dbaa2011 10186 case SEC_INFO_TYPE_EH_FRAME:
c152c796 10187 {
8b127cbc 10188 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
c152c796
AM
10189 o, contents))
10190 return FALSE;
10191 }
10192 break;
10193 default:
10194 {
5dabe785 10195 /* FIXME: octets_per_byte. */
310fd250
L
10196 if (! (o->flags & SEC_EXCLUDE))
10197 {
10198 file_ptr offset = (file_ptr) o->output_offset;
10199 bfd_size_type todo = o->size;
10200 if ((o->flags & SEC_ELF_REVERSE_COPY))
10201 {
10202 /* Reverse-copy input section to output. */
10203 do
10204 {
10205 todo -= address_size;
10206 if (! bfd_set_section_contents (output_bfd,
10207 o->output_section,
10208 contents + todo,
10209 offset,
10210 address_size))
10211 return FALSE;
10212 if (todo == 0)
10213 break;
10214 offset += address_size;
10215 }
10216 while (1);
10217 }
10218 else if (! bfd_set_section_contents (output_bfd,
10219 o->output_section,
10220 contents,
10221 offset, todo))
10222 return FALSE;
10223 }
c152c796
AM
10224 }
10225 break;
10226 }
10227 }
10228
10229 return TRUE;
10230}
10231
10232/* Generate a reloc when linking an ELF file. This is a reloc
3a800eb9 10233 requested by the linker, and does not come from any input file. This
c152c796
AM
10234 is used to build constructor and destructor tables when linking
10235 with -Ur. */
10236
10237static bfd_boolean
10238elf_reloc_link_order (bfd *output_bfd,
10239 struct bfd_link_info *info,
10240 asection *output_section,
10241 struct bfd_link_order *link_order)
10242{
10243 reloc_howto_type *howto;
10244 long indx;
10245 bfd_vma offset;
10246 bfd_vma addend;
d4730f92 10247 struct bfd_elf_section_reloc_data *reldata;
c152c796
AM
10248 struct elf_link_hash_entry **rel_hash_ptr;
10249 Elf_Internal_Shdr *rel_hdr;
10250 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10251 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
10252 bfd_byte *erel;
10253 unsigned int i;
d4730f92 10254 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
c152c796
AM
10255
10256 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
10257 if (howto == NULL)
10258 {
10259 bfd_set_error (bfd_error_bad_value);
10260 return FALSE;
10261 }
10262
10263 addend = link_order->u.reloc.p->addend;
10264
d4730f92
BS
10265 if (esdo->rel.hdr)
10266 reldata = &esdo->rel;
10267 else if (esdo->rela.hdr)
10268 reldata = &esdo->rela;
10269 else
10270 {
10271 reldata = NULL;
10272 BFD_ASSERT (0);
10273 }
10274
c152c796 10275 /* Figure out the symbol index. */
d4730f92 10276 rel_hash_ptr = reldata->hashes + reldata->count;
c152c796
AM
10277 if (link_order->type == bfd_section_reloc_link_order)
10278 {
10279 indx = link_order->u.reloc.p->u.section->target_index;
10280 BFD_ASSERT (indx != 0);
10281 *rel_hash_ptr = NULL;
10282 }
10283 else
10284 {
10285 struct elf_link_hash_entry *h;
10286
10287 /* Treat a reloc against a defined symbol as though it were
10288 actually against the section. */
10289 h = ((struct elf_link_hash_entry *)
10290 bfd_wrapped_link_hash_lookup (output_bfd, info,
10291 link_order->u.reloc.p->u.name,
10292 FALSE, FALSE, TRUE));
10293 if (h != NULL
10294 && (h->root.type == bfd_link_hash_defined
10295 || h->root.type == bfd_link_hash_defweak))
10296 {
10297 asection *section;
10298
10299 section = h->root.u.def.section;
10300 indx = section->output_section->target_index;
10301 *rel_hash_ptr = NULL;
10302 /* It seems that we ought to add the symbol value to the
10303 addend here, but in practice it has already been added
10304 because it was passed to constructor_callback. */
10305 addend += section->output_section->vma + section->output_offset;
10306 }
10307 else if (h != NULL)
10308 {
10309 /* Setting the index to -2 tells elf_link_output_extsym that
10310 this symbol is used by a reloc. */
10311 h->indx = -2;
10312 *rel_hash_ptr = h;
10313 indx = 0;
10314 }
10315 else
10316 {
10317 if (! ((*info->callbacks->unattached_reloc)
10318 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0)))
10319 return FALSE;
10320 indx = 0;
10321 }
10322 }
10323
10324 /* If this is an inplace reloc, we must write the addend into the
10325 object file. */
10326 if (howto->partial_inplace && addend != 0)
10327 {
10328 bfd_size_type size;
10329 bfd_reloc_status_type rstat;
10330 bfd_byte *buf;
10331 bfd_boolean ok;
10332 const char *sym_name;
10333
a50b1753
NC
10334 size = (bfd_size_type) bfd_get_reloc_size (howto);
10335 buf = (bfd_byte *) bfd_zmalloc (size);
c152c796
AM
10336 if (buf == NULL)
10337 return FALSE;
10338 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
10339 switch (rstat)
10340 {
10341 case bfd_reloc_ok:
10342 break;
10343
10344 default:
10345 case bfd_reloc_outofrange:
10346 abort ();
10347
10348 case bfd_reloc_overflow:
10349 if (link_order->type == bfd_section_reloc_link_order)
10350 sym_name = bfd_section_name (output_bfd,
10351 link_order->u.reloc.p->u.section);
10352 else
10353 sym_name = link_order->u.reloc.p->u.name;
10354 if (! ((*info->callbacks->reloc_overflow)
dfeffb9f
L
10355 (info, NULL, sym_name, howto->name, addend, NULL,
10356 NULL, (bfd_vma) 0)))
c152c796
AM
10357 {
10358 free (buf);
10359 return FALSE;
10360 }
10361 break;
10362 }
10363 ok = bfd_set_section_contents (output_bfd, output_section, buf,
10364 link_order->offset, size);
10365 free (buf);
10366 if (! ok)
10367 return FALSE;
10368 }
10369
10370 /* The address of a reloc is relative to the section in a
10371 relocatable file, and is a virtual address in an executable
10372 file. */
10373 offset = link_order->offset;
10374 if (! info->relocatable)
10375 offset += output_section->vma;
10376
10377 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
10378 {
10379 irel[i].r_offset = offset;
10380 irel[i].r_info = 0;
10381 irel[i].r_addend = 0;
10382 }
10383 if (bed->s->arch_size == 32)
10384 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
10385 else
10386 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
10387
d4730f92 10388 rel_hdr = reldata->hdr;
c152c796
AM
10389 erel = rel_hdr->contents;
10390 if (rel_hdr->sh_type == SHT_REL)
10391 {
d4730f92 10392 erel += reldata->count * bed->s->sizeof_rel;
c152c796
AM
10393 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
10394 }
10395 else
10396 {
10397 irel[0].r_addend = addend;
d4730f92 10398 erel += reldata->count * bed->s->sizeof_rela;
c152c796
AM
10399 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
10400 }
10401
d4730f92 10402 ++reldata->count;
c152c796
AM
10403
10404 return TRUE;
10405}
10406
0b52efa6
PB
10407
10408/* Get the output vma of the section pointed to by the sh_link field. */
10409
10410static bfd_vma
10411elf_get_linked_section_vma (struct bfd_link_order *p)
10412{
10413 Elf_Internal_Shdr **elf_shdrp;
10414 asection *s;
10415 int elfsec;
10416
10417 s = p->u.indirect.section;
10418 elf_shdrp = elf_elfsections (s->owner);
10419 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
10420 elfsec = elf_shdrp[elfsec]->sh_link;
185d09ad
L
10421 /* PR 290:
10422 The Intel C compiler generates SHT_IA_64_UNWIND with
e04bcc6d 10423 SHF_LINK_ORDER. But it doesn't set the sh_link or
185d09ad
L
10424 sh_info fields. Hence we could get the situation
10425 where elfsec is 0. */
10426 if (elfsec == 0)
10427 {
10428 const struct elf_backend_data *bed
10429 = get_elf_backend_data (s->owner);
10430 if (bed->link_order_error_handler)
d003868e
AM
10431 bed->link_order_error_handler
10432 (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
185d09ad
L
10433 return 0;
10434 }
10435 else
10436 {
10437 s = elf_shdrp[elfsec]->bfd_section;
10438 return s->output_section->vma + s->output_offset;
10439 }
0b52efa6
PB
10440}
10441
10442
10443/* Compare two sections based on the locations of the sections they are
10444 linked to. Used by elf_fixup_link_order. */
10445
10446static int
10447compare_link_order (const void * a, const void * b)
10448{
10449 bfd_vma apos;
10450 bfd_vma bpos;
10451
10452 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
10453 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
10454 if (apos < bpos)
10455 return -1;
10456 return apos > bpos;
10457}
10458
10459
10460/* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
10461 order as their linked sections. Returns false if this could not be done
10462 because an output section includes both ordered and unordered
10463 sections. Ideally we'd do this in the linker proper. */
10464
10465static bfd_boolean
10466elf_fixup_link_order (bfd *abfd, asection *o)
10467{
10468 int seen_linkorder;
10469 int seen_other;
10470 int n;
10471 struct bfd_link_order *p;
10472 bfd *sub;
10473 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
b761a207 10474 unsigned elfsec;
0b52efa6 10475 struct bfd_link_order **sections;
d33cdfe3 10476 asection *s, *other_sec, *linkorder_sec;
0b52efa6 10477 bfd_vma offset;
3b36f7e6 10478
d33cdfe3
L
10479 other_sec = NULL;
10480 linkorder_sec = NULL;
0b52efa6
PB
10481 seen_other = 0;
10482 seen_linkorder = 0;
8423293d 10483 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6 10484 {
d33cdfe3 10485 if (p->type == bfd_indirect_link_order)
0b52efa6
PB
10486 {
10487 s = p->u.indirect.section;
d33cdfe3
L
10488 sub = s->owner;
10489 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10490 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
b761a207
BE
10491 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
10492 && elfsec < elf_numsections (sub)
4fbb74a6
AM
10493 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
10494 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
d33cdfe3
L
10495 {
10496 seen_linkorder++;
10497 linkorder_sec = s;
10498 }
0b52efa6 10499 else
d33cdfe3
L
10500 {
10501 seen_other++;
10502 other_sec = s;
10503 }
0b52efa6
PB
10504 }
10505 else
10506 seen_other++;
d33cdfe3
L
10507
10508 if (seen_other && seen_linkorder)
10509 {
10510 if (other_sec && linkorder_sec)
10511 (*_bfd_error_handler) (_("%A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections"),
10512 o, linkorder_sec,
10513 linkorder_sec->owner, other_sec,
10514 other_sec->owner);
10515 else
10516 (*_bfd_error_handler) (_("%A has both ordered and unordered sections"),
10517 o);
10518 bfd_set_error (bfd_error_bad_value);
10519 return FALSE;
10520 }
0b52efa6
PB
10521 }
10522
10523 if (!seen_linkorder)
10524 return TRUE;
10525
0b52efa6 10526 sections = (struct bfd_link_order **)
14b1c01e
AM
10527 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
10528 if (sections == NULL)
10529 return FALSE;
0b52efa6 10530 seen_linkorder = 0;
3b36f7e6 10531
8423293d 10532 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6
PB
10533 {
10534 sections[seen_linkorder++] = p;
10535 }
10536 /* Sort the input sections in the order of their linked section. */
10537 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
10538 compare_link_order);
10539
10540 /* Change the offsets of the sections. */
10541 offset = 0;
10542 for (n = 0; n < seen_linkorder; n++)
10543 {
10544 s = sections[n]->u.indirect.section;
461686a3 10545 offset &= ~(bfd_vma) 0 << s->alignment_power;
0b52efa6
PB
10546 s->output_offset = offset;
10547 sections[n]->offset = offset;
5dabe785 10548 /* FIXME: octets_per_byte. */
0b52efa6
PB
10549 offset += sections[n]->size;
10550 }
10551
4dd07732 10552 free (sections);
0b52efa6
PB
10553 return TRUE;
10554}
10555
9f7c3e5e
AM
10556static void
10557elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
10558{
10559 asection *o;
10560
10561 if (flinfo->symstrtab != NULL)
10562 _bfd_stringtab_free (flinfo->symstrtab);
10563 if (flinfo->contents != NULL)
10564 free (flinfo->contents);
10565 if (flinfo->external_relocs != NULL)
10566 free (flinfo->external_relocs);
10567 if (flinfo->internal_relocs != NULL)
10568 free (flinfo->internal_relocs);
10569 if (flinfo->external_syms != NULL)
10570 free (flinfo->external_syms);
10571 if (flinfo->locsym_shndx != NULL)
10572 free (flinfo->locsym_shndx);
10573 if (flinfo->internal_syms != NULL)
10574 free (flinfo->internal_syms);
10575 if (flinfo->indices != NULL)
10576 free (flinfo->indices);
10577 if (flinfo->sections != NULL)
10578 free (flinfo->sections);
10579 if (flinfo->symbuf != NULL)
10580 free (flinfo->symbuf);
10581 if (flinfo->symshndxbuf != NULL)
10582 free (flinfo->symshndxbuf);
10583 for (o = obfd->sections; o != NULL; o = o->next)
10584 {
10585 struct bfd_elf_section_data *esdo = elf_section_data (o);
10586 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
10587 free (esdo->rel.hashes);
10588 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
10589 free (esdo->rela.hashes);
10590 }
10591}
0b52efa6 10592
c152c796
AM
10593/* Do the final step of an ELF link. */
10594
10595bfd_boolean
10596bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
10597{
10598 bfd_boolean dynamic;
10599 bfd_boolean emit_relocs;
10600 bfd *dynobj;
8b127cbc 10601 struct elf_final_link_info flinfo;
91d6fa6a
NC
10602 asection *o;
10603 struct bfd_link_order *p;
10604 bfd *sub;
c152c796
AM
10605 bfd_size_type max_contents_size;
10606 bfd_size_type max_external_reloc_size;
10607 bfd_size_type max_internal_reloc_count;
10608 bfd_size_type max_sym_count;
10609 bfd_size_type max_sym_shndx_count;
10610 file_ptr off;
10611 Elf_Internal_Sym elfsym;
10612 unsigned int i;
10613 Elf_Internal_Shdr *symtab_hdr;
10614 Elf_Internal_Shdr *symtab_shndx_hdr;
10615 Elf_Internal_Shdr *symstrtab_hdr;
10616 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10617 struct elf_outext_info eoinfo;
10618 bfd_boolean merged;
10619 size_t relativecount = 0;
10620 asection *reldyn = 0;
10621 bfd_size_type amt;
104d59d1
JM
10622 asection *attr_section = NULL;
10623 bfd_vma attr_size = 0;
10624 const char *std_attrs_section;
c152c796
AM
10625
10626 if (! is_elf_hash_table (info->hash))
10627 return FALSE;
10628
10629 if (info->shared)
10630 abfd->flags |= DYNAMIC;
10631
10632 dynamic = elf_hash_table (info)->dynamic_sections_created;
10633 dynobj = elf_hash_table (info)->dynobj;
10634
10635 emit_relocs = (info->relocatable
a4676736 10636 || info->emitrelocations);
c152c796 10637
8b127cbc
AM
10638 flinfo.info = info;
10639 flinfo.output_bfd = abfd;
10640 flinfo.symstrtab = _bfd_elf_stringtab_init ();
10641 if (flinfo.symstrtab == NULL)
c152c796
AM
10642 return FALSE;
10643
10644 if (! dynamic)
10645 {
8b127cbc
AM
10646 flinfo.dynsym_sec = NULL;
10647 flinfo.hash_sec = NULL;
10648 flinfo.symver_sec = NULL;
c152c796
AM
10649 }
10650 else
10651 {
3d4d4302
AM
10652 flinfo.dynsym_sec = bfd_get_linker_section (dynobj, ".dynsym");
10653 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
202e2356 10654 /* Note that dynsym_sec can be NULL (on VMS). */
3d4d4302 10655 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
c152c796
AM
10656 /* Note that it is OK if symver_sec is NULL. */
10657 }
10658
8b127cbc
AM
10659 flinfo.contents = NULL;
10660 flinfo.external_relocs = NULL;
10661 flinfo.internal_relocs = NULL;
10662 flinfo.external_syms = NULL;
10663 flinfo.locsym_shndx = NULL;
10664 flinfo.internal_syms = NULL;
10665 flinfo.indices = NULL;
10666 flinfo.sections = NULL;
10667 flinfo.symbuf = NULL;
10668 flinfo.symshndxbuf = NULL;
10669 flinfo.symbuf_count = 0;
10670 flinfo.shndxbuf_size = 0;
ffbc01cc 10671 flinfo.filesym_count = 0;
c152c796 10672
104d59d1
JM
10673 /* The object attributes have been merged. Remove the input
10674 sections from the link, and set the contents of the output
10675 secton. */
10676 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
10677 for (o = abfd->sections; o != NULL; o = o->next)
10678 {
10679 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
10680 || strcmp (o->name, ".gnu.attributes") == 0)
10681 {
10682 for (p = o->map_head.link_order; p != NULL; p = p->next)
10683 {
10684 asection *input_section;
10685
10686 if (p->type != bfd_indirect_link_order)
10687 continue;
10688 input_section = p->u.indirect.section;
10689 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10690 elf_link_input_bfd ignores this section. */
10691 input_section->flags &= ~SEC_HAS_CONTENTS;
10692 }
a0c8462f 10693
104d59d1
JM
10694 attr_size = bfd_elf_obj_attr_size (abfd);
10695 if (attr_size)
10696 {
10697 bfd_set_section_size (abfd, o, attr_size);
10698 attr_section = o;
10699 /* Skip this section later on. */
10700 o->map_head.link_order = NULL;
10701 }
10702 else
10703 o->flags |= SEC_EXCLUDE;
10704 }
10705 }
10706
c152c796
AM
10707 /* Count up the number of relocations we will output for each output
10708 section, so that we know the sizes of the reloc sections. We
10709 also figure out some maximum sizes. */
10710 max_contents_size = 0;
10711 max_external_reloc_size = 0;
10712 max_internal_reloc_count = 0;
10713 max_sym_count = 0;
10714 max_sym_shndx_count = 0;
10715 merged = FALSE;
10716 for (o = abfd->sections; o != NULL; o = o->next)
10717 {
10718 struct bfd_elf_section_data *esdo = elf_section_data (o);
10719 o->reloc_count = 0;
10720
8423293d 10721 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
10722 {
10723 unsigned int reloc_count = 0;
10724 struct bfd_elf_section_data *esdi = NULL;
c152c796
AM
10725
10726 if (p->type == bfd_section_reloc_link_order
10727 || p->type == bfd_symbol_reloc_link_order)
10728 reloc_count = 1;
10729 else if (p->type == bfd_indirect_link_order)
10730 {
10731 asection *sec;
10732
10733 sec = p->u.indirect.section;
10734 esdi = elf_section_data (sec);
10735
10736 /* Mark all sections which are to be included in the
10737 link. This will normally be every section. We need
10738 to do this so that we can identify any sections which
10739 the linker has decided to not include. */
10740 sec->linker_mark = TRUE;
10741
10742 if (sec->flags & SEC_MERGE)
10743 merged = TRUE;
10744
aed64b35
L
10745 if (esdo->this_hdr.sh_type == SHT_REL
10746 || esdo->this_hdr.sh_type == SHT_RELA)
10747 /* Some backends use reloc_count in relocation sections
10748 to count particular types of relocs. Of course,
10749 reloc sections themselves can't have relocations. */
10750 reloc_count = 0;
10751 else if (info->relocatable || info->emitrelocations)
c152c796
AM
10752 reloc_count = sec->reloc_count;
10753 else if (bed->elf_backend_count_relocs)
58217f29 10754 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
c152c796 10755
eea6121a
AM
10756 if (sec->rawsize > max_contents_size)
10757 max_contents_size = sec->rawsize;
10758 if (sec->size > max_contents_size)
10759 max_contents_size = sec->size;
c152c796
AM
10760
10761 /* We are interested in just local symbols, not all
10762 symbols. */
10763 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
10764 && (sec->owner->flags & DYNAMIC) == 0)
10765 {
10766 size_t sym_count;
10767
10768 if (elf_bad_symtab (sec->owner))
10769 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
10770 / bed->s->sizeof_sym);
10771 else
10772 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
10773
10774 if (sym_count > max_sym_count)
10775 max_sym_count = sym_count;
10776
10777 if (sym_count > max_sym_shndx_count
10778 && elf_symtab_shndx (sec->owner) != 0)
10779 max_sym_shndx_count = sym_count;
10780
10781 if ((sec->flags & SEC_RELOC) != 0)
10782 {
d4730f92 10783 size_t ext_size = 0;
c152c796 10784
d4730f92
BS
10785 if (esdi->rel.hdr != NULL)
10786 ext_size = esdi->rel.hdr->sh_size;
10787 if (esdi->rela.hdr != NULL)
10788 ext_size += esdi->rela.hdr->sh_size;
7326c758 10789
c152c796
AM
10790 if (ext_size > max_external_reloc_size)
10791 max_external_reloc_size = ext_size;
10792 if (sec->reloc_count > max_internal_reloc_count)
10793 max_internal_reloc_count = sec->reloc_count;
10794 }
10795 }
10796 }
10797
10798 if (reloc_count == 0)
10799 continue;
10800
10801 o->reloc_count += reloc_count;
10802
d4730f92
BS
10803 if (p->type == bfd_indirect_link_order
10804 && (info->relocatable || info->emitrelocations))
c152c796 10805 {
d4730f92
BS
10806 if (esdi->rel.hdr)
10807 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
10808 if (esdi->rela.hdr)
10809 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
10810 }
10811 else
10812 {
10813 if (o->use_rela_p)
10814 esdo->rela.count += reloc_count;
2c2b4ed4 10815 else
d4730f92 10816 esdo->rel.count += reloc_count;
c152c796 10817 }
c152c796
AM
10818 }
10819
10820 if (o->reloc_count > 0)
10821 o->flags |= SEC_RELOC;
10822 else
10823 {
10824 /* Explicitly clear the SEC_RELOC flag. The linker tends to
10825 set it (this is probably a bug) and if it is set
10826 assign_section_numbers will create a reloc section. */
10827 o->flags &=~ SEC_RELOC;
10828 }
10829
10830 /* If the SEC_ALLOC flag is not set, force the section VMA to
10831 zero. This is done in elf_fake_sections as well, but forcing
10832 the VMA to 0 here will ensure that relocs against these
10833 sections are handled correctly. */
10834 if ((o->flags & SEC_ALLOC) == 0
10835 && ! o->user_set_vma)
10836 o->vma = 0;
10837 }
10838
10839 if (! info->relocatable && merged)
10840 elf_link_hash_traverse (elf_hash_table (info),
10841 _bfd_elf_link_sec_merge_syms, abfd);
10842
10843 /* Figure out the file positions for everything but the symbol table
10844 and the relocs. We set symcount to force assign_section_numbers
10845 to create a symbol table. */
10846 bfd_get_symcount (abfd) = info->strip == strip_all ? 0 : 1;
10847 BFD_ASSERT (! abfd->output_has_begun);
10848 if (! _bfd_elf_compute_section_file_positions (abfd, info))
10849 goto error_return;
10850
ee75fd95 10851 /* Set sizes, and assign file positions for reloc sections. */
c152c796
AM
10852 for (o = abfd->sections; o != NULL; o = o->next)
10853 {
d4730f92 10854 struct bfd_elf_section_data *esdo = elf_section_data (o);
c152c796
AM
10855 if ((o->flags & SEC_RELOC) != 0)
10856 {
d4730f92
BS
10857 if (esdo->rel.hdr
10858 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
c152c796
AM
10859 goto error_return;
10860
d4730f92
BS
10861 if (esdo->rela.hdr
10862 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
c152c796
AM
10863 goto error_return;
10864 }
10865
10866 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
10867 to count upwards while actually outputting the relocations. */
d4730f92
BS
10868 esdo->rel.count = 0;
10869 esdo->rela.count = 0;
c152c796
AM
10870 }
10871
c152c796 10872 /* We have now assigned file positions for all the sections except
a485e98e
AM
10873 .symtab, .strtab, and non-loaded reloc sections. We start the
10874 .symtab section at the current file position, and write directly
10875 to it. We build the .strtab section in memory. */
c152c796
AM
10876 bfd_get_symcount (abfd) = 0;
10877 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
10878 /* sh_name is set in prep_headers. */
10879 symtab_hdr->sh_type = SHT_SYMTAB;
10880 /* sh_flags, sh_addr and sh_size all start off zero. */
10881 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
10882 /* sh_link is set in assign_section_numbers. */
10883 /* sh_info is set below. */
10884 /* sh_offset is set just below. */
72de5009 10885 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
c152c796 10886
12bd6957 10887 off = elf_next_file_pos (abfd);
c152c796
AM
10888 off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
10889
12bd6957 10890 /* Note that at this point elf_next_file_pos (abfd) is
c152c796
AM
10891 incorrect. We do not yet know the size of the .symtab section.
10892 We correct next_file_pos below, after we do know the size. */
10893
10894 /* Allocate a buffer to hold swapped out symbols. This is to avoid
10895 continuously seeking to the right position in the file. */
10896 if (! info->keep_memory || max_sym_count < 20)
8b127cbc 10897 flinfo.symbuf_size = 20;
c152c796 10898 else
8b127cbc
AM
10899 flinfo.symbuf_size = max_sym_count;
10900 amt = flinfo.symbuf_size;
c152c796 10901 amt *= bed->s->sizeof_sym;
8b127cbc
AM
10902 flinfo.symbuf = (bfd_byte *) bfd_malloc (amt);
10903 if (flinfo.symbuf == NULL)
c152c796 10904 goto error_return;
4fbb74a6 10905 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
c152c796
AM
10906 {
10907 /* Wild guess at number of output symbols. realloc'd as needed. */
10908 amt = 2 * max_sym_count + elf_numsections (abfd) + 1000;
8b127cbc 10909 flinfo.shndxbuf_size = amt;
c152c796 10910 amt *= sizeof (Elf_External_Sym_Shndx);
8b127cbc
AM
10911 flinfo.symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
10912 if (flinfo.symshndxbuf == NULL)
c152c796
AM
10913 goto error_return;
10914 }
10915
10916 /* Start writing out the symbol table. The first symbol is always a
10917 dummy symbol. */
10918 if (info->strip != strip_all
10919 || emit_relocs)
10920 {
10921 elfsym.st_value = 0;
10922 elfsym.st_size = 0;
10923 elfsym.st_info = 0;
10924 elfsym.st_other = 0;
10925 elfsym.st_shndx = SHN_UNDEF;
35fc36a8 10926 elfsym.st_target_internal = 0;
8b127cbc 10927 if (elf_link_output_sym (&flinfo, NULL, &elfsym, bfd_und_section_ptr,
6e0b88f1 10928 NULL) != 1)
c152c796
AM
10929 goto error_return;
10930 }
10931
c152c796
AM
10932 /* Output a symbol for each section. We output these even if we are
10933 discarding local symbols, since they are used for relocs. These
10934 symbols have no names. We store the index of each one in the
10935 index field of the section, so that we can find it again when
10936 outputting relocs. */
10937 if (info->strip != strip_all
10938 || emit_relocs)
10939 {
10940 elfsym.st_size = 0;
10941 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
10942 elfsym.st_other = 0;
f0b5bb34 10943 elfsym.st_value = 0;
35fc36a8 10944 elfsym.st_target_internal = 0;
c152c796
AM
10945 for (i = 1; i < elf_numsections (abfd); i++)
10946 {
10947 o = bfd_section_from_elf_index (abfd, i);
10948 if (o != NULL)
f0b5bb34
AM
10949 {
10950 o->target_index = bfd_get_symcount (abfd);
10951 elfsym.st_shndx = i;
10952 if (!info->relocatable)
10953 elfsym.st_value = o->vma;
8b127cbc 10954 if (elf_link_output_sym (&flinfo, NULL, &elfsym, o, NULL) != 1)
f0b5bb34
AM
10955 goto error_return;
10956 }
c152c796
AM
10957 }
10958 }
10959
10960 /* Allocate some memory to hold information read in from the input
10961 files. */
10962 if (max_contents_size != 0)
10963 {
8b127cbc
AM
10964 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
10965 if (flinfo.contents == NULL)
c152c796
AM
10966 goto error_return;
10967 }
10968
10969 if (max_external_reloc_size != 0)
10970 {
8b127cbc
AM
10971 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
10972 if (flinfo.external_relocs == NULL)
c152c796
AM
10973 goto error_return;
10974 }
10975
10976 if (max_internal_reloc_count != 0)
10977 {
10978 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
10979 amt *= sizeof (Elf_Internal_Rela);
8b127cbc
AM
10980 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
10981 if (flinfo.internal_relocs == NULL)
c152c796
AM
10982 goto error_return;
10983 }
10984
10985 if (max_sym_count != 0)
10986 {
10987 amt = max_sym_count * bed->s->sizeof_sym;
8b127cbc
AM
10988 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
10989 if (flinfo.external_syms == NULL)
c152c796
AM
10990 goto error_return;
10991
10992 amt = max_sym_count * sizeof (Elf_Internal_Sym);
8b127cbc
AM
10993 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
10994 if (flinfo.internal_syms == NULL)
c152c796
AM
10995 goto error_return;
10996
10997 amt = max_sym_count * sizeof (long);
8b127cbc
AM
10998 flinfo.indices = (long int *) bfd_malloc (amt);
10999 if (flinfo.indices == NULL)
c152c796
AM
11000 goto error_return;
11001
11002 amt = max_sym_count * sizeof (asection *);
8b127cbc
AM
11003 flinfo.sections = (asection **) bfd_malloc (amt);
11004 if (flinfo.sections == NULL)
c152c796
AM
11005 goto error_return;
11006 }
11007
11008 if (max_sym_shndx_count != 0)
11009 {
11010 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
8b127cbc
AM
11011 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
11012 if (flinfo.locsym_shndx == NULL)
c152c796
AM
11013 goto error_return;
11014 }
11015
11016 if (elf_hash_table (info)->tls_sec)
11017 {
11018 bfd_vma base, end = 0;
11019 asection *sec;
11020
11021 for (sec = elf_hash_table (info)->tls_sec;
11022 sec && (sec->flags & SEC_THREAD_LOCAL);
11023 sec = sec->next)
11024 {
3a800eb9 11025 bfd_size_type size = sec->size;
c152c796 11026
3a800eb9
AM
11027 if (size == 0
11028 && (sec->flags & SEC_HAS_CONTENTS) == 0)
c152c796 11029 {
91d6fa6a
NC
11030 struct bfd_link_order *ord = sec->map_tail.link_order;
11031
11032 if (ord != NULL)
11033 size = ord->offset + ord->size;
c152c796
AM
11034 }
11035 end = sec->vma + size;
11036 }
11037 base = elf_hash_table (info)->tls_sec->vma;
7dc98aea
RO
11038 /* Only align end of TLS section if static TLS doesn't have special
11039 alignment requirements. */
11040 if (bed->static_tls_alignment == 1)
11041 end = align_power (end,
11042 elf_hash_table (info)->tls_sec->alignment_power);
c152c796
AM
11043 elf_hash_table (info)->tls_size = end - base;
11044 }
11045
0b52efa6
PB
11046 /* Reorder SHF_LINK_ORDER sections. */
11047 for (o = abfd->sections; o != NULL; o = o->next)
11048 {
11049 if (!elf_fixup_link_order (abfd, o))
11050 return FALSE;
11051 }
11052
c152c796
AM
11053 /* Since ELF permits relocations to be against local symbols, we
11054 must have the local symbols available when we do the relocations.
11055 Since we would rather only read the local symbols once, and we
11056 would rather not keep them in memory, we handle all the
11057 relocations for a single input file at the same time.
11058
11059 Unfortunately, there is no way to know the total number of local
11060 symbols until we have seen all of them, and the local symbol
11061 indices precede the global symbol indices. This means that when
11062 we are generating relocatable output, and we see a reloc against
11063 a global symbol, we can not know the symbol index until we have
11064 finished examining all the local symbols to see which ones we are
11065 going to output. To deal with this, we keep the relocations in
11066 memory, and don't output them until the end of the link. This is
11067 an unfortunate waste of memory, but I don't see a good way around
11068 it. Fortunately, it only happens when performing a relocatable
11069 link, which is not the common case. FIXME: If keep_memory is set
11070 we could write the relocs out and then read them again; I don't
11071 know how bad the memory loss will be. */
11072
c72f2fb2 11073 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
11074 sub->output_has_begun = FALSE;
11075 for (o = abfd->sections; o != NULL; o = o->next)
11076 {
8423293d 11077 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
11078 {
11079 if (p->type == bfd_indirect_link_order
11080 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
11081 == bfd_target_elf_flavour)
11082 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
11083 {
11084 if (! sub->output_has_begun)
11085 {
8b127cbc 11086 if (! elf_link_input_bfd (&flinfo, sub))
c152c796
AM
11087 goto error_return;
11088 sub->output_has_begun = TRUE;
11089 }
11090 }
11091 else if (p->type == bfd_section_reloc_link_order
11092 || p->type == bfd_symbol_reloc_link_order)
11093 {
11094 if (! elf_reloc_link_order (abfd, info, o, p))
11095 goto error_return;
11096 }
11097 else
11098 {
11099 if (! _bfd_default_link_order (abfd, info, o, p))
351f65ca
L
11100 {
11101 if (p->type == bfd_indirect_link_order
11102 && (bfd_get_flavour (sub)
11103 == bfd_target_elf_flavour)
11104 && (elf_elfheader (sub)->e_ident[EI_CLASS]
11105 != bed->s->elfclass))
11106 {
11107 const char *iclass, *oclass;
11108
11109 if (bed->s->elfclass == ELFCLASS64)
11110 {
11111 iclass = "ELFCLASS32";
11112 oclass = "ELFCLASS64";
11113 }
11114 else
11115 {
11116 iclass = "ELFCLASS64";
11117 oclass = "ELFCLASS32";
11118 }
11119
11120 bfd_set_error (bfd_error_wrong_format);
11121 (*_bfd_error_handler)
11122 (_("%B: file class %s incompatible with %s"),
11123 sub, iclass, oclass);
11124 }
11125
11126 goto error_return;
11127 }
c152c796
AM
11128 }
11129 }
11130 }
11131
c0f00686
L
11132 /* Free symbol buffer if needed. */
11133 if (!info->reduce_memory_overheads)
11134 {
c72f2fb2 11135 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3fcd97f1
JJ
11136 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
11137 && elf_tdata (sub)->symbuf)
c0f00686
L
11138 {
11139 free (elf_tdata (sub)->symbuf);
11140 elf_tdata (sub)->symbuf = NULL;
11141 }
11142 }
11143
c152c796
AM
11144 /* Output any global symbols that got converted to local in a
11145 version script or due to symbol visibility. We do this in a
11146 separate step since ELF requires all local symbols to appear
11147 prior to any global symbols. FIXME: We should only do this if
11148 some global symbols were, in fact, converted to become local.
11149 FIXME: Will this work correctly with the Irix 5 linker? */
11150 eoinfo.failed = FALSE;
8b127cbc 11151 eoinfo.flinfo = &flinfo;
c152c796 11152 eoinfo.localsyms = TRUE;
ffbc01cc
AM
11153 eoinfo.need_second_pass = FALSE;
11154 eoinfo.second_pass = FALSE;
34a79995 11155 eoinfo.file_sym_done = FALSE;
7686d77d 11156 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
11157 if (eoinfo.failed)
11158 return FALSE;
11159
ffbc01cc
AM
11160 if (eoinfo.need_second_pass)
11161 {
11162 eoinfo.second_pass = TRUE;
11163 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
11164 if (eoinfo.failed)
11165 return FALSE;
11166 }
11167
4e617b1e
PB
11168 /* If backend needs to output some local symbols not present in the hash
11169 table, do it now. */
11170 if (bed->elf_backend_output_arch_local_syms)
11171 {
6e0b88f1 11172 typedef int (*out_sym_func)
4e617b1e
PB
11173 (void *, const char *, Elf_Internal_Sym *, asection *,
11174 struct elf_link_hash_entry *);
11175
11176 if (! ((*bed->elf_backend_output_arch_local_syms)
8b127cbc 11177 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
4e617b1e
PB
11178 return FALSE;
11179 }
11180
c152c796
AM
11181 /* That wrote out all the local symbols. Finish up the symbol table
11182 with the global symbols. Even if we want to strip everything we
11183 can, we still need to deal with those global symbols that got
11184 converted to local in a version script. */
11185
11186 /* The sh_info field records the index of the first non local symbol. */
11187 symtab_hdr->sh_info = bfd_get_symcount (abfd);
11188
11189 if (dynamic
8b127cbc
AM
11190 && flinfo.dynsym_sec != NULL
11191 && flinfo.dynsym_sec->output_section != bfd_abs_section_ptr)
c152c796
AM
11192 {
11193 Elf_Internal_Sym sym;
8b127cbc 11194 bfd_byte *dynsym = flinfo.dynsym_sec->contents;
c152c796
AM
11195 long last_local = 0;
11196
11197 /* Write out the section symbols for the output sections. */
67687978 11198 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
c152c796
AM
11199 {
11200 asection *s;
11201
11202 sym.st_size = 0;
11203 sym.st_name = 0;
11204 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11205 sym.st_other = 0;
35fc36a8 11206 sym.st_target_internal = 0;
c152c796
AM
11207
11208 for (s = abfd->sections; s != NULL; s = s->next)
11209 {
11210 int indx;
11211 bfd_byte *dest;
11212 long dynindx;
11213
c152c796 11214 dynindx = elf_section_data (s)->dynindx;
8c37241b
JJ
11215 if (dynindx <= 0)
11216 continue;
11217 indx = elf_section_data (s)->this_idx;
c152c796
AM
11218 BFD_ASSERT (indx > 0);
11219 sym.st_shndx = indx;
c0d5a53d
L
11220 if (! check_dynsym (abfd, &sym))
11221 return FALSE;
c152c796
AM
11222 sym.st_value = s->vma;
11223 dest = dynsym + dynindx * bed->s->sizeof_sym;
8c37241b
JJ
11224 if (last_local < dynindx)
11225 last_local = dynindx;
c152c796
AM
11226 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11227 }
c152c796
AM
11228 }
11229
11230 /* Write out the local dynsyms. */
11231 if (elf_hash_table (info)->dynlocal)
11232 {
11233 struct elf_link_local_dynamic_entry *e;
11234 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
11235 {
11236 asection *s;
11237 bfd_byte *dest;
11238
935bd1e0 11239 /* Copy the internal symbol and turn off visibility.
c152c796
AM
11240 Note that we saved a word of storage and overwrote
11241 the original st_name with the dynstr_index. */
11242 sym = e->isym;
935bd1e0 11243 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
c152c796 11244
cb33740c
AM
11245 s = bfd_section_from_elf_index (e->input_bfd,
11246 e->isym.st_shndx);
11247 if (s != NULL)
c152c796 11248 {
c152c796
AM
11249 sym.st_shndx =
11250 elf_section_data (s->output_section)->this_idx;
c0d5a53d
L
11251 if (! check_dynsym (abfd, &sym))
11252 return FALSE;
c152c796
AM
11253 sym.st_value = (s->output_section->vma
11254 + s->output_offset
11255 + e->isym.st_value);
11256 }
11257
11258 if (last_local < e->dynindx)
11259 last_local = e->dynindx;
11260
11261 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
11262 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11263 }
11264 }
11265
8b127cbc 11266 elf_section_data (flinfo.dynsym_sec->output_section)->this_hdr.sh_info =
c152c796
AM
11267 last_local + 1;
11268 }
11269
11270 /* We get the global symbols from the hash table. */
11271 eoinfo.failed = FALSE;
11272 eoinfo.localsyms = FALSE;
8b127cbc 11273 eoinfo.flinfo = &flinfo;
7686d77d 11274 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
11275 if (eoinfo.failed)
11276 return FALSE;
11277
11278 /* If backend needs to output some symbols not present in the hash
11279 table, do it now. */
11280 if (bed->elf_backend_output_arch_syms)
11281 {
6e0b88f1 11282 typedef int (*out_sym_func)
c152c796
AM
11283 (void *, const char *, Elf_Internal_Sym *, asection *,
11284 struct elf_link_hash_entry *);
11285
11286 if (! ((*bed->elf_backend_output_arch_syms)
8b127cbc 11287 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
c152c796
AM
11288 return FALSE;
11289 }
11290
11291 /* Flush all symbols to the file. */
8b127cbc 11292 if (! elf_link_flush_output_syms (&flinfo, bed))
c152c796
AM
11293 return FALSE;
11294
11295 /* Now we know the size of the symtab section. */
11296 off += symtab_hdr->sh_size;
11297
11298 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
11299 if (symtab_shndx_hdr->sh_name != 0)
11300 {
11301 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
11302 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
11303 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
11304 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
11305 symtab_shndx_hdr->sh_size = amt;
11306
11307 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
11308 off, TRUE);
11309
11310 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
8b127cbc 11311 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
c152c796
AM
11312 return FALSE;
11313 }
11314
11315
11316 /* Finish up and write out the symbol string table (.strtab)
11317 section. */
11318 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
11319 /* sh_name was set in prep_headers. */
11320 symstrtab_hdr->sh_type = SHT_STRTAB;
11321 symstrtab_hdr->sh_flags = 0;
11322 symstrtab_hdr->sh_addr = 0;
8b127cbc 11323 symstrtab_hdr->sh_size = _bfd_stringtab_size (flinfo.symstrtab);
c152c796
AM
11324 symstrtab_hdr->sh_entsize = 0;
11325 symstrtab_hdr->sh_link = 0;
11326 symstrtab_hdr->sh_info = 0;
11327 /* sh_offset is set just below. */
11328 symstrtab_hdr->sh_addralign = 1;
11329
11330 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr, off, TRUE);
12bd6957 11331 elf_next_file_pos (abfd) = off;
c152c796
AM
11332
11333 if (bfd_get_symcount (abfd) > 0)
11334 {
11335 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
8b127cbc 11336 || ! _bfd_stringtab_emit (abfd, flinfo.symstrtab))
c152c796
AM
11337 return FALSE;
11338 }
11339
11340 /* Adjust the relocs to have the correct symbol indices. */
11341 for (o = abfd->sections; o != NULL; o = o->next)
11342 {
d4730f92 11343 struct bfd_elf_section_data *esdo = elf_section_data (o);
28dbcedc 11344 bfd_boolean sort;
c152c796
AM
11345 if ((o->flags & SEC_RELOC) == 0)
11346 continue;
11347
28dbcedc 11348 sort = bed->sort_relocs_p == NULL || (*bed->sort_relocs_p) (o);
d4730f92 11349 if (esdo->rel.hdr != NULL)
28dbcedc 11350 elf_link_adjust_relocs (abfd, &esdo->rel, sort);
d4730f92 11351 if (esdo->rela.hdr != NULL)
28dbcedc 11352 elf_link_adjust_relocs (abfd, &esdo->rela, sort);
c152c796
AM
11353
11354 /* Set the reloc_count field to 0 to prevent write_relocs from
11355 trying to swap the relocs out itself. */
11356 o->reloc_count = 0;
11357 }
11358
11359 if (dynamic && info->combreloc && dynobj != NULL)
11360 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
11361
11362 /* If we are linking against a dynamic object, or generating a
11363 shared library, finish up the dynamic linking information. */
11364 if (dynamic)
11365 {
11366 bfd_byte *dyncon, *dynconend;
11367
11368 /* Fix up .dynamic entries. */
3d4d4302 11369 o = bfd_get_linker_section (dynobj, ".dynamic");
c152c796
AM
11370 BFD_ASSERT (o != NULL);
11371
11372 dyncon = o->contents;
eea6121a 11373 dynconend = o->contents + o->size;
c152c796
AM
11374 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11375 {
11376 Elf_Internal_Dyn dyn;
11377 const char *name;
11378 unsigned int type;
11379
11380 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11381
11382 switch (dyn.d_tag)
11383 {
11384 default:
11385 continue;
11386 case DT_NULL:
11387 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
11388 {
11389 switch (elf_section_data (reldyn)->this_hdr.sh_type)
11390 {
11391 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
11392 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
11393 default: continue;
11394 }
11395 dyn.d_un.d_val = relativecount;
11396 relativecount = 0;
11397 break;
11398 }
11399 continue;
11400
11401 case DT_INIT:
11402 name = info->init_function;
11403 goto get_sym;
11404 case DT_FINI:
11405 name = info->fini_function;
11406 get_sym:
11407 {
11408 struct elf_link_hash_entry *h;
11409
11410 h = elf_link_hash_lookup (elf_hash_table (info), name,
11411 FALSE, FALSE, TRUE);
11412 if (h != NULL
11413 && (h->root.type == bfd_link_hash_defined
11414 || h->root.type == bfd_link_hash_defweak))
11415 {
bef26483 11416 dyn.d_un.d_ptr = h->root.u.def.value;
c152c796
AM
11417 o = h->root.u.def.section;
11418 if (o->output_section != NULL)
bef26483 11419 dyn.d_un.d_ptr += (o->output_section->vma
c152c796
AM
11420 + o->output_offset);
11421 else
11422 {
11423 /* The symbol is imported from another shared
11424 library and does not apply to this one. */
bef26483 11425 dyn.d_un.d_ptr = 0;
c152c796
AM
11426 }
11427 break;
11428 }
11429 }
11430 continue;
11431
11432 case DT_PREINIT_ARRAYSZ:
11433 name = ".preinit_array";
11434 goto get_size;
11435 case DT_INIT_ARRAYSZ:
11436 name = ".init_array";
11437 goto get_size;
11438 case DT_FINI_ARRAYSZ:
11439 name = ".fini_array";
11440 get_size:
11441 o = bfd_get_section_by_name (abfd, name);
11442 if (o == NULL)
11443 {
11444 (*_bfd_error_handler)
d003868e 11445 (_("%B: could not find output section %s"), abfd, name);
c152c796
AM
11446 goto error_return;
11447 }
eea6121a 11448 if (o->size == 0)
c152c796
AM
11449 (*_bfd_error_handler)
11450 (_("warning: %s section has zero size"), name);
eea6121a 11451 dyn.d_un.d_val = o->size;
c152c796
AM
11452 break;
11453
11454 case DT_PREINIT_ARRAY:
11455 name = ".preinit_array";
11456 goto get_vma;
11457 case DT_INIT_ARRAY:
11458 name = ".init_array";
11459 goto get_vma;
11460 case DT_FINI_ARRAY:
11461 name = ".fini_array";
11462 goto get_vma;
11463
11464 case DT_HASH:
11465 name = ".hash";
11466 goto get_vma;
fdc90cb4
JJ
11467 case DT_GNU_HASH:
11468 name = ".gnu.hash";
11469 goto get_vma;
c152c796
AM
11470 case DT_STRTAB:
11471 name = ".dynstr";
11472 goto get_vma;
11473 case DT_SYMTAB:
11474 name = ".dynsym";
11475 goto get_vma;
11476 case DT_VERDEF:
11477 name = ".gnu.version_d";
11478 goto get_vma;
11479 case DT_VERNEED:
11480 name = ".gnu.version_r";
11481 goto get_vma;
11482 case DT_VERSYM:
11483 name = ".gnu.version";
11484 get_vma:
11485 o = bfd_get_section_by_name (abfd, name);
11486 if (o == NULL)
11487 {
11488 (*_bfd_error_handler)
d003868e 11489 (_("%B: could not find output section %s"), abfd, name);
c152c796
AM
11490 goto error_return;
11491 }
894891db
NC
11492 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
11493 {
11494 (*_bfd_error_handler)
11495 (_("warning: section '%s' is being made into a note"), name);
11496 bfd_set_error (bfd_error_nonrepresentable_section);
11497 goto error_return;
11498 }
c152c796
AM
11499 dyn.d_un.d_ptr = o->vma;
11500 break;
11501
11502 case DT_REL:
11503 case DT_RELA:
11504 case DT_RELSZ:
11505 case DT_RELASZ:
11506 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
11507 type = SHT_REL;
11508 else
11509 type = SHT_RELA;
11510 dyn.d_un.d_val = 0;
bef26483 11511 dyn.d_un.d_ptr = 0;
c152c796
AM
11512 for (i = 1; i < elf_numsections (abfd); i++)
11513 {
11514 Elf_Internal_Shdr *hdr;
11515
11516 hdr = elf_elfsections (abfd)[i];
11517 if (hdr->sh_type == type
11518 && (hdr->sh_flags & SHF_ALLOC) != 0)
11519 {
11520 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
11521 dyn.d_un.d_val += hdr->sh_size;
11522 else
11523 {
bef26483
AM
11524 if (dyn.d_un.d_ptr == 0
11525 || hdr->sh_addr < dyn.d_un.d_ptr)
11526 dyn.d_un.d_ptr = hdr->sh_addr;
c152c796
AM
11527 }
11528 }
11529 }
11530 break;
11531 }
11532 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
11533 }
11534 }
11535
11536 /* If we have created any dynamic sections, then output them. */
11537 if (dynobj != NULL)
11538 {
11539 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
11540 goto error_return;
11541
943284cc 11542 /* Check for DT_TEXTREL (late, in case the backend removes it). */
be7b303d
AM
11543 if (((info->warn_shared_textrel && info->shared)
11544 || info->error_textrel)
3d4d4302 11545 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
943284cc
DJ
11546 {
11547 bfd_byte *dyncon, *dynconend;
11548
943284cc
DJ
11549 dyncon = o->contents;
11550 dynconend = o->contents + o->size;
11551 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11552 {
11553 Elf_Internal_Dyn dyn;
11554
11555 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11556
11557 if (dyn.d_tag == DT_TEXTREL)
11558 {
c192a133
AM
11559 if (info->error_textrel)
11560 info->callbacks->einfo
11561 (_("%P%X: read-only segment has dynamic relocations.\n"));
11562 else
11563 info->callbacks->einfo
11564 (_("%P: warning: creating a DT_TEXTREL in a shared object.\n"));
943284cc
DJ
11565 break;
11566 }
11567 }
11568 }
11569
c152c796
AM
11570 for (o = dynobj->sections; o != NULL; o = o->next)
11571 {
11572 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 11573 || o->size == 0
c152c796
AM
11574 || o->output_section == bfd_abs_section_ptr)
11575 continue;
11576 if ((o->flags & SEC_LINKER_CREATED) == 0)
11577 {
11578 /* At this point, we are only interested in sections
11579 created by _bfd_elf_link_create_dynamic_sections. */
11580 continue;
11581 }
3722b82f
AM
11582 if (elf_hash_table (info)->stab_info.stabstr == o)
11583 continue;
eea6121a
AM
11584 if (elf_hash_table (info)->eh_info.hdr_sec == o)
11585 continue;
3d4d4302 11586 if (strcmp (o->name, ".dynstr") != 0)
c152c796 11587 {
5dabe785 11588 /* FIXME: octets_per_byte. */
c152c796
AM
11589 if (! bfd_set_section_contents (abfd, o->output_section,
11590 o->contents,
11591 (file_ptr) o->output_offset,
eea6121a 11592 o->size))
c152c796
AM
11593 goto error_return;
11594 }
11595 else
11596 {
11597 /* The contents of the .dynstr section are actually in a
11598 stringtab. */
11599 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
11600 if (bfd_seek (abfd, off, SEEK_SET) != 0
11601 || ! _bfd_elf_strtab_emit (abfd,
11602 elf_hash_table (info)->dynstr))
11603 goto error_return;
11604 }
11605 }
11606 }
11607
11608 if (info->relocatable)
11609 {
11610 bfd_boolean failed = FALSE;
11611
11612 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
11613 if (failed)
11614 goto error_return;
11615 }
11616
11617 /* If we have optimized stabs strings, output them. */
3722b82f 11618 if (elf_hash_table (info)->stab_info.stabstr != NULL)
c152c796
AM
11619 {
11620 if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
11621 goto error_return;
11622 }
11623
9f7c3e5e
AM
11624 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
11625 goto error_return;
c152c796 11626
9f7c3e5e 11627 elf_final_link_free (abfd, &flinfo);
c152c796 11628
12bd6957 11629 elf_linker (abfd) = TRUE;
c152c796 11630
104d59d1
JM
11631 if (attr_section)
11632 {
a50b1753 11633 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
104d59d1 11634 if (contents == NULL)
d0f16d5e 11635 return FALSE; /* Bail out and fail. */
104d59d1
JM
11636 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
11637 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
11638 free (contents);
11639 }
11640
c152c796
AM
11641 return TRUE;
11642
11643 error_return:
9f7c3e5e 11644 elf_final_link_free (abfd, &flinfo);
c152c796
AM
11645 return FALSE;
11646}
11647\f
5241d853
RS
11648/* Initialize COOKIE for input bfd ABFD. */
11649
11650static bfd_boolean
11651init_reloc_cookie (struct elf_reloc_cookie *cookie,
11652 struct bfd_link_info *info, bfd *abfd)
11653{
11654 Elf_Internal_Shdr *symtab_hdr;
11655 const struct elf_backend_data *bed;
11656
11657 bed = get_elf_backend_data (abfd);
11658 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11659
11660 cookie->abfd = abfd;
11661 cookie->sym_hashes = elf_sym_hashes (abfd);
11662 cookie->bad_symtab = elf_bad_symtab (abfd);
11663 if (cookie->bad_symtab)
11664 {
11665 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
11666 cookie->extsymoff = 0;
11667 }
11668 else
11669 {
11670 cookie->locsymcount = symtab_hdr->sh_info;
11671 cookie->extsymoff = symtab_hdr->sh_info;
11672 }
11673
11674 if (bed->s->arch_size == 32)
11675 cookie->r_sym_shift = 8;
11676 else
11677 cookie->r_sym_shift = 32;
11678
11679 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
11680 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
11681 {
11682 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
11683 cookie->locsymcount, 0,
11684 NULL, NULL, NULL);
11685 if (cookie->locsyms == NULL)
11686 {
11687 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
11688 return FALSE;
11689 }
11690 if (info->keep_memory)
11691 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
11692 }
11693 return TRUE;
11694}
11695
11696/* Free the memory allocated by init_reloc_cookie, if appropriate. */
11697
11698static void
11699fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
11700{
11701 Elf_Internal_Shdr *symtab_hdr;
11702
11703 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11704 if (cookie->locsyms != NULL
11705 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
11706 free (cookie->locsyms);
11707}
11708
11709/* Initialize the relocation information in COOKIE for input section SEC
11710 of input bfd ABFD. */
11711
11712static bfd_boolean
11713init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11714 struct bfd_link_info *info, bfd *abfd,
11715 asection *sec)
11716{
11717 const struct elf_backend_data *bed;
11718
11719 if (sec->reloc_count == 0)
11720 {
11721 cookie->rels = NULL;
11722 cookie->relend = NULL;
11723 }
11724 else
11725 {
11726 bed = get_elf_backend_data (abfd);
11727
11728 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
11729 info->keep_memory);
11730 if (cookie->rels == NULL)
11731 return FALSE;
11732 cookie->rel = cookie->rels;
11733 cookie->relend = (cookie->rels
11734 + sec->reloc_count * bed->s->int_rels_per_ext_rel);
11735 }
11736 cookie->rel = cookie->rels;
11737 return TRUE;
11738}
11739
11740/* Free the memory allocated by init_reloc_cookie_rels,
11741 if appropriate. */
11742
11743static void
11744fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11745 asection *sec)
11746{
11747 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
11748 free (cookie->rels);
11749}
11750
11751/* Initialize the whole of COOKIE for input section SEC. */
11752
11753static bfd_boolean
11754init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11755 struct bfd_link_info *info,
11756 asection *sec)
11757{
11758 if (!init_reloc_cookie (cookie, info, sec->owner))
11759 goto error1;
11760 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
11761 goto error2;
11762 return TRUE;
11763
11764 error2:
11765 fini_reloc_cookie (cookie, sec->owner);
11766 error1:
11767 return FALSE;
11768}
11769
11770/* Free the memory allocated by init_reloc_cookie_for_section,
11771 if appropriate. */
11772
11773static void
11774fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11775 asection *sec)
11776{
11777 fini_reloc_cookie_rels (cookie, sec);
11778 fini_reloc_cookie (cookie, sec->owner);
11779}
11780\f
c152c796
AM
11781/* Garbage collect unused sections. */
11782
07adf181
AM
11783/* Default gc_mark_hook. */
11784
11785asection *
11786_bfd_elf_gc_mark_hook (asection *sec,
11787 struct bfd_link_info *info ATTRIBUTE_UNUSED,
11788 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
11789 struct elf_link_hash_entry *h,
11790 Elf_Internal_Sym *sym)
11791{
bde6f3eb
L
11792 const char *sec_name;
11793
07adf181
AM
11794 if (h != NULL)
11795 {
11796 switch (h->root.type)
11797 {
11798 case bfd_link_hash_defined:
11799 case bfd_link_hash_defweak:
11800 return h->root.u.def.section;
11801
11802 case bfd_link_hash_common:
11803 return h->root.u.c.p->section;
11804
bde6f3eb
L
11805 case bfd_link_hash_undefined:
11806 case bfd_link_hash_undefweak:
11807 /* To work around a glibc bug, keep all XXX input sections
11808 when there is an as yet undefined reference to __start_XXX
11809 or __stop_XXX symbols. The linker will later define such
11810 symbols for orphan input sections that have a name
11811 representable as a C identifier. */
11812 if (strncmp (h->root.root.string, "__start_", 8) == 0)
11813 sec_name = h->root.root.string + 8;
11814 else if (strncmp (h->root.root.string, "__stop_", 7) == 0)
11815 sec_name = h->root.root.string + 7;
11816 else
11817 sec_name = NULL;
11818
11819 if (sec_name && *sec_name != '\0')
11820 {
11821 bfd *i;
68ffbac6 11822
c72f2fb2 11823 for (i = info->input_bfds; i; i = i->link.next)
bde6f3eb
L
11824 {
11825 sec = bfd_get_section_by_name (i, sec_name);
11826 if (sec)
11827 sec->flags |= SEC_KEEP;
11828 }
11829 }
11830 break;
11831
07adf181
AM
11832 default:
11833 break;
11834 }
11835 }
11836 else
11837 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
11838
11839 return NULL;
11840}
11841
5241d853
RS
11842/* COOKIE->rel describes a relocation against section SEC, which is
11843 a section we've decided to keep. Return the section that contains
11844 the relocation symbol, or NULL if no section contains it. */
11845
11846asection *
11847_bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
11848 elf_gc_mark_hook_fn gc_mark_hook,
11849 struct elf_reloc_cookie *cookie)
11850{
11851 unsigned long r_symndx;
11852 struct elf_link_hash_entry *h;
11853
11854 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
cf35638d 11855 if (r_symndx == STN_UNDEF)
5241d853
RS
11856 return NULL;
11857
11858 if (r_symndx >= cookie->locsymcount
11859 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
11860 {
11861 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
11862 while (h->root.type == bfd_link_hash_indirect
11863 || h->root.type == bfd_link_hash_warning)
11864 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1d5316ab 11865 h->mark = 1;
4e6b54a6
AM
11866 /* If this symbol is weak and there is a non-weak definition, we
11867 keep the non-weak definition because many backends put
11868 dynamic reloc info on the non-weak definition for code
11869 handling copy relocs. */
11870 if (h->u.weakdef != NULL)
11871 h->u.weakdef->mark = 1;
5241d853
RS
11872 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
11873 }
11874
11875 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
11876 &cookie->locsyms[r_symndx]);
11877}
11878
11879/* COOKIE->rel describes a relocation against section SEC, which is
11880 a section we've decided to keep. Mark the section that contains
9d0a14d3 11881 the relocation symbol. */
5241d853
RS
11882
11883bfd_boolean
11884_bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
11885 asection *sec,
11886 elf_gc_mark_hook_fn gc_mark_hook,
9d0a14d3 11887 struct elf_reloc_cookie *cookie)
5241d853
RS
11888{
11889 asection *rsec;
11890
11891 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
11892 if (rsec && !rsec->gc_mark)
11893 {
a66eed7a
AM
11894 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
11895 || (rsec->owner->flags & DYNAMIC) != 0)
5241d853 11896 rsec->gc_mark = 1;
5241d853
RS
11897 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
11898 return FALSE;
11899 }
11900 return TRUE;
11901}
11902
07adf181
AM
11903/* The mark phase of garbage collection. For a given section, mark
11904 it and any sections in this section's group, and all the sections
11905 which define symbols to which it refers. */
11906
ccfa59ea
AM
11907bfd_boolean
11908_bfd_elf_gc_mark (struct bfd_link_info *info,
11909 asection *sec,
6a5bb875 11910 elf_gc_mark_hook_fn gc_mark_hook)
c152c796
AM
11911{
11912 bfd_boolean ret;
9d0a14d3 11913 asection *group_sec, *eh_frame;
c152c796
AM
11914
11915 sec->gc_mark = 1;
11916
11917 /* Mark all the sections in the group. */
11918 group_sec = elf_section_data (sec)->next_in_group;
11919 if (group_sec && !group_sec->gc_mark)
ccfa59ea 11920 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
c152c796
AM
11921 return FALSE;
11922
11923 /* Look through the section relocs. */
11924 ret = TRUE;
9d0a14d3
RS
11925 eh_frame = elf_eh_frame_section (sec->owner);
11926 if ((sec->flags & SEC_RELOC) != 0
11927 && sec->reloc_count > 0
11928 && sec != eh_frame)
c152c796 11929 {
5241d853 11930 struct elf_reloc_cookie cookie;
c152c796 11931
5241d853
RS
11932 if (!init_reloc_cookie_for_section (&cookie, info, sec))
11933 ret = FALSE;
c152c796 11934 else
c152c796 11935 {
5241d853 11936 for (; cookie.rel < cookie.relend; cookie.rel++)
9d0a14d3 11937 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
5241d853
RS
11938 {
11939 ret = FALSE;
11940 break;
11941 }
11942 fini_reloc_cookie_for_section (&cookie, sec);
c152c796
AM
11943 }
11944 }
9d0a14d3
RS
11945
11946 if (ret && eh_frame && elf_fde_list (sec))
11947 {
11948 struct elf_reloc_cookie cookie;
11949
11950 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
11951 ret = FALSE;
11952 else
11953 {
11954 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
11955 gc_mark_hook, &cookie))
11956 ret = FALSE;
11957 fini_reloc_cookie_for_section (&cookie, eh_frame);
11958 }
11959 }
11960
c152c796
AM
11961 return ret;
11962}
11963
7f6ab9f8
AM
11964/* Keep debug and special sections. */
11965
11966bfd_boolean
11967_bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
11968 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
11969{
11970 bfd *ibfd;
11971
c72f2fb2 11972 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7f6ab9f8
AM
11973 {
11974 asection *isec;
11975 bfd_boolean some_kept;
b40bf0a2 11976 bfd_boolean debug_frag_seen;
7f6ab9f8
AM
11977
11978 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
11979 continue;
11980
b40bf0a2
NC
11981 /* Ensure all linker created sections are kept,
11982 see if any other section is already marked,
11983 and note if we have any fragmented debug sections. */
11984 debug_frag_seen = some_kept = FALSE;
7f6ab9f8
AM
11985 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11986 {
11987 if ((isec->flags & SEC_LINKER_CREATED) != 0)
11988 isec->gc_mark = 1;
11989 else if (isec->gc_mark)
11990 some_kept = TRUE;
b40bf0a2
NC
11991
11992 if (debug_frag_seen == FALSE
11993 && (isec->flags & SEC_DEBUGGING)
11994 && CONST_STRNEQ (isec->name, ".debug_line."))
11995 debug_frag_seen = TRUE;
7f6ab9f8
AM
11996 }
11997
11998 /* If no section in this file will be kept, then we can
b40bf0a2 11999 toss out the debug and special sections. */
7f6ab9f8
AM
12000 if (!some_kept)
12001 continue;
12002
12003 /* Keep debug and special sections like .comment when they are
c227efa6 12004 not part of a group, or when we have single-member groups. */
7f6ab9f8 12005 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
c227efa6
AM
12006 if ((elf_next_in_group (isec) == NULL
12007 || elf_next_in_group (isec) == isec)
7f6ab9f8
AM
12008 && ((isec->flags & SEC_DEBUGGING) != 0
12009 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0))
12010 isec->gc_mark = 1;
b40bf0a2
NC
12011
12012 if (! debug_frag_seen)
12013 continue;
12014
12015 /* Look for CODE sections which are going to be discarded,
12016 and find and discard any fragmented debug sections which
12017 are associated with that code section. */
12018 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
12019 if ((isec->flags & SEC_CODE) != 0
12020 && isec->gc_mark == 0)
12021 {
12022 unsigned int ilen;
12023 asection *dsec;
12024
12025 ilen = strlen (isec->name);
12026
12027 /* Association is determined by the name of the debug section
12028 containing the name of the code section as a suffix. For
12029 example .debug_line.text.foo is a debug section associated
12030 with .text.foo. */
12031 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
12032 {
12033 unsigned int dlen;
12034
12035 if (dsec->gc_mark == 0
12036 || (dsec->flags & SEC_DEBUGGING) == 0)
12037 continue;
12038
12039 dlen = strlen (dsec->name);
12040
12041 if (dlen > ilen
12042 && strncmp (dsec->name + (dlen - ilen),
12043 isec->name, ilen) == 0)
12044 {
12045 dsec->gc_mark = 0;
12046 break;
12047 }
12048 }
12049 }
7f6ab9f8
AM
12050 }
12051 return TRUE;
12052}
12053
c152c796
AM
12054/* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
12055
c17d87de
NC
12056struct elf_gc_sweep_symbol_info
12057{
ccabcbe5
AM
12058 struct bfd_link_info *info;
12059 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
12060 bfd_boolean);
12061};
12062
c152c796 12063static bfd_boolean
ccabcbe5 12064elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
c152c796 12065{
1d5316ab
AM
12066 if (!h->mark
12067 && (((h->root.type == bfd_link_hash_defined
12068 || h->root.type == bfd_link_hash_defweak)
6673f753
AM
12069 && !(h->def_regular
12070 && h->root.u.def.section->gc_mark))
1d5316ab
AM
12071 || h->root.type == bfd_link_hash_undefined
12072 || h->root.type == bfd_link_hash_undefweak))
12073 {
12074 struct elf_gc_sweep_symbol_info *inf;
12075
12076 inf = (struct elf_gc_sweep_symbol_info *) data;
ccabcbe5 12077 (*inf->hide_symbol) (inf->info, h, TRUE);
1d5316ab
AM
12078 h->def_regular = 0;
12079 h->ref_regular = 0;
12080 h->ref_regular_nonweak = 0;
ccabcbe5 12081 }
c152c796
AM
12082
12083 return TRUE;
12084}
12085
12086/* The sweep phase of garbage collection. Remove all garbage sections. */
12087
12088typedef bfd_boolean (*gc_sweep_hook_fn)
12089 (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
12090
12091static bfd_boolean
ccabcbe5 12092elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
c152c796
AM
12093{
12094 bfd *sub;
ccabcbe5
AM
12095 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12096 gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
12097 unsigned long section_sym_count;
12098 struct elf_gc_sweep_symbol_info sweep_info;
c152c796 12099
c72f2fb2 12100 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
12101 {
12102 asection *o;
12103
12104 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
12105 continue;
12106
12107 for (o = sub->sections; o != NULL; o = o->next)
12108 {
a33dafc3
L
12109 /* When any section in a section group is kept, we keep all
12110 sections in the section group. If the first member of
12111 the section group is excluded, we will also exclude the
12112 group section. */
12113 if (o->flags & SEC_GROUP)
12114 {
12115 asection *first = elf_next_in_group (o);
12116 o->gc_mark = first->gc_mark;
12117 }
c152c796
AM
12118
12119 if (o->gc_mark)
12120 continue;
12121
12122 /* Skip sweeping sections already excluded. */
12123 if (o->flags & SEC_EXCLUDE)
12124 continue;
12125
12126 /* Since this is early in the link process, it is simple
12127 to remove a section from the output. */
12128 o->flags |= SEC_EXCLUDE;
12129
c55fe096 12130 if (info->print_gc_sections && o->size != 0)
c17d87de
NC
12131 _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name);
12132
c152c796
AM
12133 /* But we also have to update some of the relocation
12134 info we collected before. */
12135 if (gc_sweep_hook
e8aaee2a 12136 && (o->flags & SEC_RELOC) != 0
9850436d
AM
12137 && o->reloc_count != 0
12138 && !((info->strip == strip_all || info->strip == strip_debugger)
12139 && (o->flags & SEC_DEBUGGING) != 0)
e8aaee2a 12140 && !bfd_is_abs_section (o->output_section))
c152c796
AM
12141 {
12142 Elf_Internal_Rela *internal_relocs;
12143 bfd_boolean r;
12144
12145 internal_relocs
12146 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
12147 info->keep_memory);
12148 if (internal_relocs == NULL)
12149 return FALSE;
12150
12151 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
12152
12153 if (elf_section_data (o)->relocs != internal_relocs)
12154 free (internal_relocs);
12155
12156 if (!r)
12157 return FALSE;
12158 }
12159 }
12160 }
12161
12162 /* Remove the symbols that were in the swept sections from the dynamic
12163 symbol table. GCFIXME: Anyone know how to get them out of the
12164 static symbol table as well? */
ccabcbe5
AM
12165 sweep_info.info = info;
12166 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
12167 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
12168 &sweep_info);
c152c796 12169
ccabcbe5 12170 _bfd_elf_link_renumber_dynsyms (abfd, info, &section_sym_count);
c152c796
AM
12171 return TRUE;
12172}
12173
12174/* Propagate collected vtable information. This is called through
12175 elf_link_hash_traverse. */
12176
12177static bfd_boolean
12178elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
12179{
c152c796 12180 /* Those that are not vtables. */
f6e332e6 12181 if (h->vtable == NULL || h->vtable->parent == NULL)
c152c796
AM
12182 return TRUE;
12183
12184 /* Those vtables that do not have parents, we cannot merge. */
f6e332e6 12185 if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
c152c796
AM
12186 return TRUE;
12187
12188 /* If we've already been done, exit. */
f6e332e6 12189 if (h->vtable->used && h->vtable->used[-1])
c152c796
AM
12190 return TRUE;
12191
12192 /* Make sure the parent's table is up to date. */
f6e332e6 12193 elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
c152c796 12194
f6e332e6 12195 if (h->vtable->used == NULL)
c152c796
AM
12196 {
12197 /* None of this table's entries were referenced. Re-use the
12198 parent's table. */
f6e332e6
AM
12199 h->vtable->used = h->vtable->parent->vtable->used;
12200 h->vtable->size = h->vtable->parent->vtable->size;
c152c796
AM
12201 }
12202 else
12203 {
12204 size_t n;
12205 bfd_boolean *cu, *pu;
12206
12207 /* Or the parent's entries into ours. */
f6e332e6 12208 cu = h->vtable->used;
c152c796 12209 cu[-1] = TRUE;
f6e332e6 12210 pu = h->vtable->parent->vtable->used;
c152c796
AM
12211 if (pu != NULL)
12212 {
12213 const struct elf_backend_data *bed;
12214 unsigned int log_file_align;
12215
12216 bed = get_elf_backend_data (h->root.u.def.section->owner);
12217 log_file_align = bed->s->log_file_align;
f6e332e6 12218 n = h->vtable->parent->vtable->size >> log_file_align;
c152c796
AM
12219 while (n--)
12220 {
12221 if (*pu)
12222 *cu = TRUE;
12223 pu++;
12224 cu++;
12225 }
12226 }
12227 }
12228
12229 return TRUE;
12230}
12231
12232static bfd_boolean
12233elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
12234{
12235 asection *sec;
12236 bfd_vma hstart, hend;
12237 Elf_Internal_Rela *relstart, *relend, *rel;
12238 const struct elf_backend_data *bed;
12239 unsigned int log_file_align;
12240
c152c796
AM
12241 /* Take care of both those symbols that do not describe vtables as
12242 well as those that are not loaded. */
f6e332e6 12243 if (h->vtable == NULL || h->vtable->parent == NULL)
c152c796
AM
12244 return TRUE;
12245
12246 BFD_ASSERT (h->root.type == bfd_link_hash_defined
12247 || h->root.type == bfd_link_hash_defweak);
12248
12249 sec = h->root.u.def.section;
12250 hstart = h->root.u.def.value;
12251 hend = hstart + h->size;
12252
12253 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
12254 if (!relstart)
12255 return *(bfd_boolean *) okp = FALSE;
12256 bed = get_elf_backend_data (sec->owner);
12257 log_file_align = bed->s->log_file_align;
12258
12259 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
12260
12261 for (rel = relstart; rel < relend; ++rel)
12262 if (rel->r_offset >= hstart && rel->r_offset < hend)
12263 {
12264 /* If the entry is in use, do nothing. */
f6e332e6
AM
12265 if (h->vtable->used
12266 && (rel->r_offset - hstart) < h->vtable->size)
c152c796
AM
12267 {
12268 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
f6e332e6 12269 if (h->vtable->used[entry])
c152c796
AM
12270 continue;
12271 }
12272 /* Otherwise, kill it. */
12273 rel->r_offset = rel->r_info = rel->r_addend = 0;
12274 }
12275
12276 return TRUE;
12277}
12278
87538722
AM
12279/* Mark sections containing dynamically referenced symbols. When
12280 building shared libraries, we must assume that any visible symbol is
12281 referenced. */
715df9b8 12282
64d03ab5
AM
12283bfd_boolean
12284bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
715df9b8 12285{
87538722 12286 struct bfd_link_info *info = (struct bfd_link_info *) inf;
d6f6f455 12287 struct bfd_elf_dynamic_list *d = info->dynamic_list;
87538722 12288
715df9b8
EB
12289 if ((h->root.type == bfd_link_hash_defined
12290 || h->root.type == bfd_link_hash_defweak)
87538722 12291 && (h->ref_dynamic
b407645f 12292 || (h->def_regular
87538722 12293 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
fd91d419 12294 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
b407645f
AM
12295 && (!info->executable
12296 || info->export_dynamic
12297 || (h->dynamic
12298 && d != NULL
12299 && (*d->match) (&d->head, NULL, h->root.root.string)))
54e8959c
L
12300 && (strchr (h->root.root.string, ELF_VER_CHR) != NULL
12301 || !bfd_hide_sym_by_version (info->version_info,
12302 h->root.root.string)))))
715df9b8
EB
12303 h->root.u.def.section->flags |= SEC_KEEP;
12304
12305 return TRUE;
12306}
3b36f7e6 12307
74f0fb50
AM
12308/* Keep all sections containing symbols undefined on the command-line,
12309 and the section containing the entry symbol. */
12310
12311void
12312_bfd_elf_gc_keep (struct bfd_link_info *info)
12313{
12314 struct bfd_sym_chain *sym;
12315
12316 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
12317 {
12318 struct elf_link_hash_entry *h;
12319
12320 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
12321 FALSE, FALSE, FALSE);
12322
12323 if (h != NULL
12324 && (h->root.type == bfd_link_hash_defined
12325 || h->root.type == bfd_link_hash_defweak)
12326 && !bfd_is_abs_section (h->root.u.def.section))
12327 h->root.u.def.section->flags |= SEC_KEEP;
12328 }
12329}
12330
c152c796
AM
12331/* Do mark and sweep of unused sections. */
12332
12333bfd_boolean
12334bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
12335{
12336 bfd_boolean ok = TRUE;
12337 bfd *sub;
6a5bb875 12338 elf_gc_mark_hook_fn gc_mark_hook;
64d03ab5 12339 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
da44f4e5 12340 struct elf_link_hash_table *htab;
c152c796 12341
64d03ab5 12342 if (!bed->can_gc_sections
715df9b8 12343 || !is_elf_hash_table (info->hash))
c152c796
AM
12344 {
12345 (*_bfd_error_handler)(_("Warning: gc-sections option ignored"));
12346 return TRUE;
12347 }
12348
74f0fb50 12349 bed->gc_keep (info);
da44f4e5 12350 htab = elf_hash_table (info);
74f0fb50 12351
9d0a14d3
RS
12352 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
12353 at the .eh_frame section if we can mark the FDEs individually. */
c72f2fb2 12354 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
9d0a14d3
RS
12355 {
12356 asection *sec;
12357 struct elf_reloc_cookie cookie;
12358
12359 sec = bfd_get_section_by_name (sub, ".eh_frame");
9a2a56cc 12360 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
9d0a14d3
RS
12361 {
12362 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
9a2a56cc
AM
12363 if (elf_section_data (sec)->sec_info
12364 && (sec->flags & SEC_LINKER_CREATED) == 0)
9d0a14d3
RS
12365 elf_eh_frame_section (sub) = sec;
12366 fini_reloc_cookie_for_section (&cookie, sec);
9a2a56cc 12367 sec = bfd_get_next_section_by_name (sec);
9d0a14d3
RS
12368 }
12369 }
9d0a14d3 12370
c152c796 12371 /* Apply transitive closure to the vtable entry usage info. */
da44f4e5 12372 elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
c152c796
AM
12373 if (!ok)
12374 return FALSE;
12375
12376 /* Kill the vtable relocations that were not used. */
da44f4e5 12377 elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
c152c796
AM
12378 if (!ok)
12379 return FALSE;
12380
715df9b8 12381 /* Mark dynamically referenced symbols. */
da44f4e5
AM
12382 if (htab->dynamic_sections_created)
12383 elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
c152c796 12384
715df9b8 12385 /* Grovel through relocs to find out who stays ... */
64d03ab5 12386 gc_mark_hook = bed->gc_mark_hook;
c72f2fb2 12387 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
12388 {
12389 asection *o;
12390
12391 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
12392 continue;
12393
7f6ab9f8
AM
12394 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
12395 Also treat note sections as a root, if the section is not part
12396 of a group. */
c152c796 12397 for (o = sub->sections; o != NULL; o = o->next)
7f6ab9f8
AM
12398 if (!o->gc_mark
12399 && (o->flags & SEC_EXCLUDE) == 0
24007750 12400 && ((o->flags & SEC_KEEP) != 0
7f6ab9f8
AM
12401 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
12402 && elf_next_in_group (o) == NULL )))
12403 {
12404 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
12405 return FALSE;
12406 }
c152c796
AM
12407 }
12408
6a5bb875 12409 /* Allow the backend to mark additional target specific sections. */
7f6ab9f8 12410 bed->gc_mark_extra_sections (info, gc_mark_hook);
6a5bb875 12411
c152c796 12412 /* ... and mark SEC_EXCLUDE for those that go. */
ccabcbe5 12413 return elf_gc_sweep (abfd, info);
c152c796
AM
12414}
12415\f
12416/* Called from check_relocs to record the existence of a VTINHERIT reloc. */
12417
12418bfd_boolean
12419bfd_elf_gc_record_vtinherit (bfd *abfd,
12420 asection *sec,
12421 struct elf_link_hash_entry *h,
12422 bfd_vma offset)
12423{
12424 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
12425 struct elf_link_hash_entry **search, *child;
12426 bfd_size_type extsymcount;
12427 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12428
12429 /* The sh_info field of the symtab header tells us where the
12430 external symbols start. We don't care about the local symbols at
12431 this point. */
12432 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
12433 if (!elf_bad_symtab (abfd))
12434 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
12435
12436 sym_hashes = elf_sym_hashes (abfd);
12437 sym_hashes_end = sym_hashes + extsymcount;
12438
12439 /* Hunt down the child symbol, which is in this section at the same
12440 offset as the relocation. */
12441 for (search = sym_hashes; search != sym_hashes_end; ++search)
12442 {
12443 if ((child = *search) != NULL
12444 && (child->root.type == bfd_link_hash_defined
12445 || child->root.type == bfd_link_hash_defweak)
12446 && child->root.u.def.section == sec
12447 && child->root.u.def.value == offset)
12448 goto win;
12449 }
12450
d003868e
AM
12451 (*_bfd_error_handler) ("%B: %A+%lu: No symbol found for INHERIT",
12452 abfd, sec, (unsigned long) offset);
c152c796
AM
12453 bfd_set_error (bfd_error_invalid_operation);
12454 return FALSE;
12455
12456 win:
f6e332e6
AM
12457 if (!child->vtable)
12458 {
a50b1753
NC
12459 child->vtable = (struct elf_link_virtual_table_entry *)
12460 bfd_zalloc (abfd, sizeof (*child->vtable));
f6e332e6
AM
12461 if (!child->vtable)
12462 return FALSE;
12463 }
c152c796
AM
12464 if (!h)
12465 {
12466 /* This *should* only be the absolute section. It could potentially
12467 be that someone has defined a non-global vtable though, which
12468 would be bad. It isn't worth paging in the local symbols to be
12469 sure though; that case should simply be handled by the assembler. */
12470
f6e332e6 12471 child->vtable->parent = (struct elf_link_hash_entry *) -1;
c152c796
AM
12472 }
12473 else
f6e332e6 12474 child->vtable->parent = h;
c152c796
AM
12475
12476 return TRUE;
12477}
12478
12479/* Called from check_relocs to record the existence of a VTENTRY reloc. */
12480
12481bfd_boolean
12482bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
12483 asection *sec ATTRIBUTE_UNUSED,
12484 struct elf_link_hash_entry *h,
12485 bfd_vma addend)
12486{
12487 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12488 unsigned int log_file_align = bed->s->log_file_align;
12489
f6e332e6
AM
12490 if (!h->vtable)
12491 {
a50b1753
NC
12492 h->vtable = (struct elf_link_virtual_table_entry *)
12493 bfd_zalloc (abfd, sizeof (*h->vtable));
f6e332e6
AM
12494 if (!h->vtable)
12495 return FALSE;
12496 }
12497
12498 if (addend >= h->vtable->size)
c152c796
AM
12499 {
12500 size_t size, bytes, file_align;
f6e332e6 12501 bfd_boolean *ptr = h->vtable->used;
c152c796
AM
12502
12503 /* While the symbol is undefined, we have to be prepared to handle
12504 a zero size. */
12505 file_align = 1 << log_file_align;
12506 if (h->root.type == bfd_link_hash_undefined)
12507 size = addend + file_align;
12508 else
12509 {
12510 size = h->size;
12511 if (addend >= size)
12512 {
12513 /* Oops! We've got a reference past the defined end of
12514 the table. This is probably a bug -- shall we warn? */
12515 size = addend + file_align;
12516 }
12517 }
12518 size = (size + file_align - 1) & -file_align;
12519
12520 /* Allocate one extra entry for use as a "done" flag for the
12521 consolidation pass. */
12522 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
12523
12524 if (ptr)
12525 {
a50b1753 12526 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
c152c796
AM
12527
12528 if (ptr != NULL)
12529 {
12530 size_t oldbytes;
12531
f6e332e6 12532 oldbytes = (((h->vtable->size >> log_file_align) + 1)
c152c796
AM
12533 * sizeof (bfd_boolean));
12534 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
12535 }
12536 }
12537 else
a50b1753 12538 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
c152c796
AM
12539
12540 if (ptr == NULL)
12541 return FALSE;
12542
12543 /* And arrange for that done flag to be at index -1. */
f6e332e6
AM
12544 h->vtable->used = ptr + 1;
12545 h->vtable->size = size;
c152c796
AM
12546 }
12547
f6e332e6 12548 h->vtable->used[addend >> log_file_align] = TRUE;
c152c796
AM
12549
12550 return TRUE;
12551}
12552
ae17ab41
CM
12553/* Map an ELF section header flag to its corresponding string. */
12554typedef struct
12555{
12556 char *flag_name;
12557 flagword flag_value;
12558} elf_flags_to_name_table;
12559
12560static elf_flags_to_name_table elf_flags_to_names [] =
12561{
12562 { "SHF_WRITE", SHF_WRITE },
12563 { "SHF_ALLOC", SHF_ALLOC },
12564 { "SHF_EXECINSTR", SHF_EXECINSTR },
12565 { "SHF_MERGE", SHF_MERGE },
12566 { "SHF_STRINGS", SHF_STRINGS },
12567 { "SHF_INFO_LINK", SHF_INFO_LINK},
12568 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
12569 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
12570 { "SHF_GROUP", SHF_GROUP },
12571 { "SHF_TLS", SHF_TLS },
12572 { "SHF_MASKOS", SHF_MASKOS },
12573 { "SHF_EXCLUDE", SHF_EXCLUDE },
12574};
12575
b9c361e0
JL
12576/* Returns TRUE if the section is to be included, otherwise FALSE. */
12577bfd_boolean
ae17ab41 12578bfd_elf_lookup_section_flags (struct bfd_link_info *info,
8b127cbc 12579 struct flag_info *flaginfo,
b9c361e0 12580 asection *section)
ae17ab41 12581{
8b127cbc 12582 const bfd_vma sh_flags = elf_section_flags (section);
ae17ab41 12583
8b127cbc 12584 if (!flaginfo->flags_initialized)
ae17ab41 12585 {
8b127cbc
AM
12586 bfd *obfd = info->output_bfd;
12587 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12588 struct flag_info_list *tf = flaginfo->flag_list;
b9c361e0
JL
12589 int with_hex = 0;
12590 int without_hex = 0;
12591
8b127cbc 12592 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
ae17ab41 12593 {
b9c361e0 12594 unsigned i;
8b127cbc 12595 flagword (*lookup) (char *);
ae17ab41 12596
8b127cbc
AM
12597 lookup = bed->elf_backend_lookup_section_flags_hook;
12598 if (lookup != NULL)
ae17ab41 12599 {
8b127cbc 12600 flagword hexval = (*lookup) ((char *) tf->name);
b9c361e0
JL
12601
12602 if (hexval != 0)
12603 {
12604 if (tf->with == with_flags)
12605 with_hex |= hexval;
12606 else if (tf->with == without_flags)
12607 without_hex |= hexval;
12608 tf->valid = TRUE;
12609 continue;
12610 }
ae17ab41 12611 }
8b127cbc 12612 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
ae17ab41 12613 {
8b127cbc 12614 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
b9c361e0
JL
12615 {
12616 if (tf->with == with_flags)
12617 with_hex |= elf_flags_to_names[i].flag_value;
12618 else if (tf->with == without_flags)
12619 without_hex |= elf_flags_to_names[i].flag_value;
12620 tf->valid = TRUE;
12621 break;
12622 }
12623 }
8b127cbc 12624 if (!tf->valid)
b9c361e0 12625 {
68ffbac6 12626 info->callbacks->einfo
8b127cbc 12627 (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
b9c361e0 12628 return FALSE;
ae17ab41
CM
12629 }
12630 }
8b127cbc
AM
12631 flaginfo->flags_initialized = TRUE;
12632 flaginfo->only_with_flags |= with_hex;
12633 flaginfo->not_with_flags |= without_hex;
ae17ab41 12634 }
ae17ab41 12635
8b127cbc 12636 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
b9c361e0
JL
12637 return FALSE;
12638
8b127cbc 12639 if ((flaginfo->not_with_flags & sh_flags) != 0)
b9c361e0
JL
12640 return FALSE;
12641
12642 return TRUE;
ae17ab41
CM
12643}
12644
c152c796
AM
12645struct alloc_got_off_arg {
12646 bfd_vma gotoff;
10455f89 12647 struct bfd_link_info *info;
c152c796
AM
12648};
12649
12650/* We need a special top-level link routine to convert got reference counts
12651 to real got offsets. */
12652
12653static bfd_boolean
12654elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
12655{
a50b1753 12656 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
10455f89
HPN
12657 bfd *obfd = gofarg->info->output_bfd;
12658 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
c152c796 12659
c152c796
AM
12660 if (h->got.refcount > 0)
12661 {
12662 h->got.offset = gofarg->gotoff;
10455f89 12663 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
c152c796
AM
12664 }
12665 else
12666 h->got.offset = (bfd_vma) -1;
12667
12668 return TRUE;
12669}
12670
12671/* And an accompanying bit to work out final got entry offsets once
12672 we're done. Should be called from final_link. */
12673
12674bfd_boolean
12675bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
12676 struct bfd_link_info *info)
12677{
12678 bfd *i;
12679 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12680 bfd_vma gotoff;
c152c796
AM
12681 struct alloc_got_off_arg gofarg;
12682
10455f89
HPN
12683 BFD_ASSERT (abfd == info->output_bfd);
12684
c152c796
AM
12685 if (! is_elf_hash_table (info->hash))
12686 return FALSE;
12687
12688 /* The GOT offset is relative to the .got section, but the GOT header is
12689 put into the .got.plt section, if the backend uses it. */
12690 if (bed->want_got_plt)
12691 gotoff = 0;
12692 else
12693 gotoff = bed->got_header_size;
12694
12695 /* Do the local .got entries first. */
c72f2fb2 12696 for (i = info->input_bfds; i; i = i->link.next)
c152c796
AM
12697 {
12698 bfd_signed_vma *local_got;
12699 bfd_size_type j, locsymcount;
12700 Elf_Internal_Shdr *symtab_hdr;
12701
12702 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
12703 continue;
12704
12705 local_got = elf_local_got_refcounts (i);
12706 if (!local_got)
12707 continue;
12708
12709 symtab_hdr = &elf_tdata (i)->symtab_hdr;
12710 if (elf_bad_symtab (i))
12711 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12712 else
12713 locsymcount = symtab_hdr->sh_info;
12714
12715 for (j = 0; j < locsymcount; ++j)
12716 {
12717 if (local_got[j] > 0)
12718 {
12719 local_got[j] = gotoff;
10455f89 12720 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
c152c796
AM
12721 }
12722 else
12723 local_got[j] = (bfd_vma) -1;
12724 }
12725 }
12726
12727 /* Then the global .got entries. .plt refcounts are handled by
12728 adjust_dynamic_symbol */
12729 gofarg.gotoff = gotoff;
10455f89 12730 gofarg.info = info;
c152c796
AM
12731 elf_link_hash_traverse (elf_hash_table (info),
12732 elf_gc_allocate_got_offsets,
12733 &gofarg);
12734 return TRUE;
12735}
12736
12737/* Many folk need no more in the way of final link than this, once
12738 got entry reference counting is enabled. */
12739
12740bfd_boolean
12741bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
12742{
12743 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
12744 return FALSE;
12745
12746 /* Invoke the regular ELF backend linker to do all the work. */
12747 return bfd_elf_final_link (abfd, info);
12748}
12749
12750bfd_boolean
12751bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
12752{
a50b1753 12753 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
c152c796
AM
12754
12755 if (rcookie->bad_symtab)
12756 rcookie->rel = rcookie->rels;
12757
12758 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
12759 {
12760 unsigned long r_symndx;
12761
12762 if (! rcookie->bad_symtab)
12763 if (rcookie->rel->r_offset > offset)
12764 return FALSE;
12765 if (rcookie->rel->r_offset != offset)
12766 continue;
12767
12768 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
2c2fa401 12769 if (r_symndx == STN_UNDEF)
c152c796
AM
12770 return TRUE;
12771
12772 if (r_symndx >= rcookie->locsymcount
12773 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12774 {
12775 struct elf_link_hash_entry *h;
12776
12777 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
12778
12779 while (h->root.type == bfd_link_hash_indirect
12780 || h->root.type == bfd_link_hash_warning)
12781 h = (struct elf_link_hash_entry *) h->root.u.i.link;
12782
12783 if ((h->root.type == bfd_link_hash_defined
12784 || h->root.type == bfd_link_hash_defweak)
5b69e357
AM
12785 && (h->root.u.def.section->owner != rcookie->abfd
12786 || h->root.u.def.section->kept_section != NULL
12787 || discarded_section (h->root.u.def.section)))
c152c796 12788 return TRUE;
c152c796
AM
12789 }
12790 else
12791 {
12792 /* It's not a relocation against a global symbol,
12793 but it could be a relocation against a local
12794 symbol for a discarded section. */
12795 asection *isec;
12796 Elf_Internal_Sym *isym;
12797
12798 /* Need to: get the symbol; get the section. */
12799 isym = &rcookie->locsyms[r_symndx];
cb33740c 12800 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
5b69e357
AM
12801 if (isec != NULL
12802 && (isec->kept_section != NULL
12803 || discarded_section (isec)))
cb33740c 12804 return TRUE;
c152c796
AM
12805 }
12806 return FALSE;
12807 }
12808 return FALSE;
12809}
12810
12811/* Discard unneeded references to discarded sections.
75938853
AM
12812 Returns -1 on error, 1 if any section's size was changed, 0 if
12813 nothing changed. This function assumes that the relocations are in
12814 sorted order, which is true for all known assemblers. */
c152c796 12815
75938853 12816int
c152c796
AM
12817bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
12818{
12819 struct elf_reloc_cookie cookie;
18cd5bce 12820 asection *o;
c152c796 12821 bfd *abfd;
75938853 12822 int changed = 0;
c152c796
AM
12823
12824 if (info->traditional_format
12825 || !is_elf_hash_table (info->hash))
75938853 12826 return 0;
c152c796 12827
18cd5bce
AM
12828 o = bfd_get_section_by_name (output_bfd, ".stab");
12829 if (o != NULL)
c152c796 12830 {
18cd5bce 12831 asection *i;
c152c796 12832
18cd5bce 12833 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
8da3dbc5 12834 {
18cd5bce
AM
12835 if (i->size == 0
12836 || i->reloc_count == 0
12837 || i->sec_info_type != SEC_INFO_TYPE_STABS)
12838 continue;
c152c796 12839
18cd5bce
AM
12840 abfd = i->owner;
12841 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12842 continue;
c152c796 12843
18cd5bce 12844 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 12845 return -1;
c152c796 12846
18cd5bce
AM
12847 if (_bfd_discard_section_stabs (abfd, i,
12848 elf_section_data (i)->sec_info,
5241d853
RS
12849 bfd_elf_reloc_symbol_deleted_p,
12850 &cookie))
75938853 12851 changed = 1;
18cd5bce
AM
12852
12853 fini_reloc_cookie_for_section (&cookie, i);
c152c796 12854 }
18cd5bce
AM
12855 }
12856
5b69e357 12857 o = bfd_get_section_by_name (output_bfd, ".eh_frame");
18cd5bce
AM
12858 if (o != NULL)
12859 {
12860 asection *i;
c152c796 12861
18cd5bce 12862 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
c152c796 12863 {
18cd5bce
AM
12864 if (i->size == 0)
12865 continue;
12866
12867 abfd = i->owner;
12868 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12869 continue;
12870
12871 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 12872 return -1;
18cd5bce
AM
12873
12874 _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
12875 if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
c152c796
AM
12876 bfd_elf_reloc_symbol_deleted_p,
12877 &cookie))
75938853 12878 changed = 1;
18cd5bce
AM
12879
12880 fini_reloc_cookie_for_section (&cookie, i);
c152c796 12881 }
18cd5bce 12882 }
c152c796 12883
18cd5bce
AM
12884 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
12885 {
12886 const struct elf_backend_data *bed;
c152c796 12887
18cd5bce
AM
12888 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12889 continue;
12890
12891 bed = get_elf_backend_data (abfd);
12892
12893 if (bed->elf_backend_discard_info != NULL)
12894 {
12895 if (!init_reloc_cookie (&cookie, info, abfd))
75938853 12896 return -1;
18cd5bce
AM
12897
12898 if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
75938853 12899 changed = 1;
18cd5bce
AM
12900
12901 fini_reloc_cookie (&cookie, abfd);
12902 }
c152c796
AM
12903 }
12904
12905 if (info->eh_frame_hdr
12906 && !info->relocatable
12907 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
75938853 12908 changed = 1;
c152c796 12909
75938853 12910 return changed;
c152c796 12911}
082b7297 12912
43e1669b 12913bfd_boolean
0c511000 12914_bfd_elf_section_already_linked (bfd *abfd,
c77ec726 12915 asection *sec,
c0f00686 12916 struct bfd_link_info *info)
082b7297
L
12917{
12918 flagword flags;
c77ec726 12919 const char *name, *key;
082b7297
L
12920 struct bfd_section_already_linked *l;
12921 struct bfd_section_already_linked_hash_entry *already_linked_list;
0c511000 12922
c77ec726
AM
12923 if (sec->output_section == bfd_abs_section_ptr)
12924 return FALSE;
0c511000 12925
c77ec726 12926 flags = sec->flags;
0c511000 12927
c77ec726
AM
12928 /* Return if it isn't a linkonce section. A comdat group section
12929 also has SEC_LINK_ONCE set. */
12930 if ((flags & SEC_LINK_ONCE) == 0)
12931 return FALSE;
0c511000 12932
c77ec726
AM
12933 /* Don't put group member sections on our list of already linked
12934 sections. They are handled as a group via their group section. */
12935 if (elf_sec_group (sec) != NULL)
12936 return FALSE;
0c511000 12937
c77ec726
AM
12938 /* For a SHT_GROUP section, use the group signature as the key. */
12939 name = sec->name;
12940 if ((flags & SEC_GROUP) != 0
12941 && elf_next_in_group (sec) != NULL
12942 && elf_group_name (elf_next_in_group (sec)) != NULL)
12943 key = elf_group_name (elf_next_in_group (sec));
12944 else
12945 {
12946 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
0c511000 12947 if (CONST_STRNEQ (name, ".gnu.linkonce.")
c77ec726
AM
12948 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
12949 key++;
0c511000 12950 else
c77ec726
AM
12951 /* Must be a user linkonce section that doesn't follow gcc's
12952 naming convention. In this case we won't be matching
12953 single member groups. */
12954 key = name;
0c511000 12955 }
6d2cd210 12956
c77ec726 12957 already_linked_list = bfd_section_already_linked_table_lookup (key);
082b7297
L
12958
12959 for (l = already_linked_list->entry; l != NULL; l = l->next)
12960 {
c2370991 12961 /* We may have 2 different types of sections on the list: group
c77ec726
AM
12962 sections with a signature of <key> (<key> is some string),
12963 and linkonce sections named .gnu.linkonce.<type>.<key>.
12964 Match like sections. LTO plugin sections are an exception.
12965 They are always named .gnu.linkonce.t.<key> and match either
12966 type of section. */
12967 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
12968 && ((flags & SEC_GROUP) != 0
12969 || strcmp (name, l->sec->name) == 0))
12970 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
082b7297
L
12971 {
12972 /* The section has already been linked. See if we should
6d2cd210 12973 issue a warning. */
c77ec726
AM
12974 if (!_bfd_handle_already_linked (sec, l, info))
12975 return FALSE;
082b7297 12976
c77ec726 12977 if (flags & SEC_GROUP)
3d7f7666 12978 {
c77ec726
AM
12979 asection *first = elf_next_in_group (sec);
12980 asection *s = first;
3d7f7666 12981
c77ec726 12982 while (s != NULL)
3d7f7666 12983 {
c77ec726
AM
12984 s->output_section = bfd_abs_section_ptr;
12985 /* Record which group discards it. */
12986 s->kept_section = l->sec;
12987 s = elf_next_in_group (s);
12988 /* These lists are circular. */
12989 if (s == first)
12990 break;
3d7f7666
L
12991 }
12992 }
082b7297 12993
43e1669b 12994 return TRUE;
082b7297
L
12995 }
12996 }
12997
c77ec726
AM
12998 /* A single member comdat group section may be discarded by a
12999 linkonce section and vice versa. */
13000 if ((flags & SEC_GROUP) != 0)
3d7f7666 13001 {
c77ec726 13002 asection *first = elf_next_in_group (sec);
c2370991 13003
c77ec726
AM
13004 if (first != NULL && elf_next_in_group (first) == first)
13005 /* Check this single member group against linkonce sections. */
13006 for (l = already_linked_list->entry; l != NULL; l = l->next)
13007 if ((l->sec->flags & SEC_GROUP) == 0
13008 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
13009 {
13010 first->output_section = bfd_abs_section_ptr;
13011 first->kept_section = l->sec;
13012 sec->output_section = bfd_abs_section_ptr;
13013 break;
13014 }
13015 }
13016 else
13017 /* Check this linkonce section against single member groups. */
13018 for (l = already_linked_list->entry; l != NULL; l = l->next)
13019 if (l->sec->flags & SEC_GROUP)
6d2cd210 13020 {
c77ec726 13021 asection *first = elf_next_in_group (l->sec);
6d2cd210 13022
c77ec726
AM
13023 if (first != NULL
13024 && elf_next_in_group (first) == first
13025 && bfd_elf_match_symbols_in_sections (first, sec, info))
13026 {
13027 sec->output_section = bfd_abs_section_ptr;
13028 sec->kept_section = first;
13029 break;
13030 }
6d2cd210 13031 }
0c511000 13032
c77ec726
AM
13033 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
13034 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
13035 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
13036 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
13037 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
13038 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
13039 `.gnu.linkonce.t.F' section from a different bfd not requiring any
13040 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
13041 The reverse order cannot happen as there is never a bfd with only the
13042 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
13043 matter as here were are looking only for cross-bfd sections. */
13044
13045 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
13046 for (l = already_linked_list->entry; l != NULL; l = l->next)
13047 if ((l->sec->flags & SEC_GROUP) == 0
13048 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
13049 {
13050 if (abfd != l->sec->owner)
13051 sec->output_section = bfd_abs_section_ptr;
13052 break;
13053 }
80c29487 13054
082b7297 13055 /* This is the first section with this name. Record it. */
c77ec726 13056 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
bb6198d2 13057 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
c77ec726 13058 return sec->output_section == bfd_abs_section_ptr;
082b7297 13059}
81e1b023 13060
a4d8e49b
L
13061bfd_boolean
13062_bfd_elf_common_definition (Elf_Internal_Sym *sym)
13063{
13064 return sym->st_shndx == SHN_COMMON;
13065}
13066
13067unsigned int
13068_bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
13069{
13070 return SHN_COMMON;
13071}
13072
13073asection *
13074_bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
13075{
13076 return bfd_com_section_ptr;
13077}
10455f89
HPN
13078
13079bfd_vma
13080_bfd_elf_default_got_elt_size (bfd *abfd,
13081 struct bfd_link_info *info ATTRIBUTE_UNUSED,
13082 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
13083 bfd *ibfd ATTRIBUTE_UNUSED,
13084 unsigned long symndx ATTRIBUTE_UNUSED)
13085{
13086 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13087 return bed->s->arch_size / 8;
13088}
83bac4b0
NC
13089
13090/* Routines to support the creation of dynamic relocs. */
13091
83bac4b0
NC
13092/* Returns the name of the dynamic reloc section associated with SEC. */
13093
13094static const char *
13095get_dynamic_reloc_section_name (bfd * abfd,
13096 asection * sec,
13097 bfd_boolean is_rela)
13098{
ddcf1fcf
BS
13099 char *name;
13100 const char *old_name = bfd_get_section_name (NULL, sec);
13101 const char *prefix = is_rela ? ".rela" : ".rel";
83bac4b0 13102
ddcf1fcf 13103 if (old_name == NULL)
83bac4b0
NC
13104 return NULL;
13105
ddcf1fcf 13106 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
68ffbac6 13107 sprintf (name, "%s%s", prefix, old_name);
83bac4b0
NC
13108
13109 return name;
13110}
13111
13112/* Returns the dynamic reloc section associated with SEC.
13113 If necessary compute the name of the dynamic reloc section based
13114 on SEC's name (looked up in ABFD's string table) and the setting
13115 of IS_RELA. */
13116
13117asection *
13118_bfd_elf_get_dynamic_reloc_section (bfd * abfd,
13119 asection * sec,
13120 bfd_boolean is_rela)
13121{
13122 asection * reloc_sec = elf_section_data (sec)->sreloc;
13123
13124 if (reloc_sec == NULL)
13125 {
13126 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
13127
13128 if (name != NULL)
13129 {
3d4d4302 13130 reloc_sec = bfd_get_linker_section (abfd, name);
83bac4b0
NC
13131
13132 if (reloc_sec != NULL)
13133 elf_section_data (sec)->sreloc = reloc_sec;
13134 }
13135 }
13136
13137 return reloc_sec;
13138}
13139
13140/* Returns the dynamic reloc section associated with SEC. If the
13141 section does not exist it is created and attached to the DYNOBJ
13142 bfd and stored in the SRELOC field of SEC's elf_section_data
13143 structure.
f8076f98 13144
83bac4b0
NC
13145 ALIGNMENT is the alignment for the newly created section and
13146 IS_RELA defines whether the name should be .rela.<SEC's name>
13147 or .rel.<SEC's name>. The section name is looked up in the
13148 string table associated with ABFD. */
13149
13150asection *
13151_bfd_elf_make_dynamic_reloc_section (asection * sec,
13152 bfd * dynobj,
13153 unsigned int alignment,
13154 bfd * abfd,
13155 bfd_boolean is_rela)
13156{
13157 asection * reloc_sec = elf_section_data (sec)->sreloc;
13158
13159 if (reloc_sec == NULL)
13160 {
13161 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
13162
13163 if (name == NULL)
13164 return NULL;
13165
3d4d4302 13166 reloc_sec = bfd_get_linker_section (dynobj, name);
83bac4b0
NC
13167
13168 if (reloc_sec == NULL)
13169 {
3d4d4302
AM
13170 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
13171 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
83bac4b0
NC
13172 if ((sec->flags & SEC_ALLOC) != 0)
13173 flags |= SEC_ALLOC | SEC_LOAD;
13174
3d4d4302 13175 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
83bac4b0
NC
13176 if (reloc_sec != NULL)
13177 {
8877b5e5
AM
13178 /* _bfd_elf_get_sec_type_attr chooses a section type by
13179 name. Override as it may be wrong, eg. for a user
13180 section named "auto" we'll get ".relauto" which is
13181 seen to be a .rela section. */
13182 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
83bac4b0
NC
13183 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
13184 reloc_sec = NULL;
13185 }
13186 }
13187
13188 elf_section_data (sec)->sreloc = reloc_sec;
13189 }
13190
13191 return reloc_sec;
13192}
1338dd10 13193
bffebb6b
AM
13194/* Copy the ELF symbol type and other attributes for a linker script
13195 assignment from HSRC to HDEST. Generally this should be treated as
13196 if we found a strong non-dynamic definition for HDEST (except that
13197 ld ignores multiple definition errors). */
1338dd10 13198void
bffebb6b
AM
13199_bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
13200 struct bfd_link_hash_entry *hdest,
13201 struct bfd_link_hash_entry *hsrc)
1338dd10 13202{
bffebb6b
AM
13203 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
13204 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
13205 Elf_Internal_Sym isym;
1338dd10
PB
13206
13207 ehdest->type = ehsrc->type;
35fc36a8 13208 ehdest->target_internal = ehsrc->target_internal;
bffebb6b
AM
13209
13210 isym.st_other = ehsrc->other;
13211 elf_merge_st_other (abfd, ehdest, &isym, TRUE, FALSE);
1338dd10 13212}
351f65ca
L
13213
13214/* Append a RELA relocation REL to section S in BFD. */
13215
13216void
13217elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13218{
13219 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13220 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
13221 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
13222 bed->s->swap_reloca_out (abfd, rel, loc);
13223}
13224
13225/* Append a REL relocation REL to section S in BFD. */
13226
13227void
13228elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13229{
13230 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13231 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
13232 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
59d6ffb2 13233 bed->s->swap_reloc_out (abfd, rel, loc);
351f65ca 13234}
This page took 2.006839 seconds and 4 git commands to generate.