gdb/
[deliverable/binutils-gdb.git] / bfd / elflink.c
CommitLineData
252b5132 1/* ELF linking support for BFD.
64d03ab5 2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
dbaa2011 3 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
9dbe8890 4 Free Software Foundation, Inc.
252b5132 5
8fdd7217 6 This file is part of BFD, the Binary File Descriptor library.
252b5132 7
8fdd7217
NC
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
cd123cb7 10 the Free Software Foundation; either version 3 of the License, or
8fdd7217 11 (at your option) any later version.
252b5132 12
8fdd7217
NC
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
252b5132 17
8fdd7217
NC
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
cd123cb7
NC
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
252b5132 22
252b5132 23#include "sysdep.h"
3db64b00 24#include "bfd.h"
252b5132
RH
25#include "bfdlink.h"
26#include "libbfd.h"
27#define ARCH_SIZE 0
28#include "elf-bfd.h"
4ad4eba5 29#include "safe-ctype.h"
ccf2f652 30#include "libiberty.h"
66eb6687 31#include "objalloc.h"
252b5132 32
28caa186
AM
33/* This struct is used to pass information to routines called via
34 elf_link_hash_traverse which must return failure. */
35
36struct elf_info_failed
37{
38 struct bfd_link_info *info;
28caa186
AM
39 bfd_boolean failed;
40};
41
42/* This structure is used to pass information to
43 _bfd_elf_link_find_version_dependencies. */
44
45struct elf_find_verdep_info
46{
47 /* General link information. */
48 struct bfd_link_info *info;
49 /* The number of dependencies. */
50 unsigned int vers;
51 /* Whether we had a failure. */
52 bfd_boolean failed;
53};
54
55static bfd_boolean _bfd_elf_fix_symbol_flags
56 (struct elf_link_hash_entry *, struct elf_info_failed *);
57
d98685ac
AM
58/* Define a symbol in a dynamic linkage section. */
59
60struct elf_link_hash_entry *
61_bfd_elf_define_linkage_sym (bfd *abfd,
62 struct bfd_link_info *info,
63 asection *sec,
64 const char *name)
65{
66 struct elf_link_hash_entry *h;
67 struct bfd_link_hash_entry *bh;
ccabcbe5 68 const struct elf_backend_data *bed;
d98685ac
AM
69
70 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
71 if (h != NULL)
72 {
73 /* Zap symbol defined in an as-needed lib that wasn't linked.
74 This is a symptom of a larger problem: Absolute symbols
75 defined in shared libraries can't be overridden, because we
76 lose the link to the bfd which is via the symbol section. */
77 h->root.type = bfd_link_hash_new;
78 }
79
80 bh = &h->root;
81 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
82 sec, 0, NULL, FALSE,
83 get_elf_backend_data (abfd)->collect,
84 &bh))
85 return NULL;
86 h = (struct elf_link_hash_entry *) bh;
87 h->def_regular = 1;
e28df02b 88 h->non_elf = 0;
d98685ac
AM
89 h->type = STT_OBJECT;
90 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
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);
fe21a8fc
L
578 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
579 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
580 }
581
6fa3860b
PB
582 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
583 and executables. */
584 if (!info->relocatable
585 && h->dynindx != -1
586 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
587 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
588 h->forced_local = 1;
589
f5385ebf
AM
590 if ((h->def_dynamic
591 || h->ref_dynamic
67687978
PB
592 || info->shared
593 || (info->executable && elf_hash_table (info)->is_relocatable_executable))
45d6a902
AM
594 && h->dynindx == -1)
595 {
c152c796 596 if (! bfd_elf_link_record_dynamic_symbol (info, h))
45d6a902
AM
597 return FALSE;
598
599 /* If this is a weak defined symbol, and we know a corresponding
600 real symbol from the same dynamic object, make sure the real
601 symbol is also made into a dynamic symbol. */
f6e332e6
AM
602 if (h->u.weakdef != NULL
603 && h->u.weakdef->dynindx == -1)
45d6a902 604 {
f6e332e6 605 if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
45d6a902
AM
606 return FALSE;
607 }
608 }
609
610 return TRUE;
611}
42751cf3 612
8c58d23b
AM
613/* Record a new local dynamic symbol. Returns 0 on failure, 1 on
614 success, and 2 on a failure caused by attempting to record a symbol
615 in a discarded section, eg. a discarded link-once section symbol. */
616
617int
c152c796
AM
618bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
619 bfd *input_bfd,
620 long input_indx)
8c58d23b
AM
621{
622 bfd_size_type amt;
623 struct elf_link_local_dynamic_entry *entry;
624 struct elf_link_hash_table *eht;
625 struct elf_strtab_hash *dynstr;
626 unsigned long dynstr_index;
627 char *name;
628 Elf_External_Sym_Shndx eshndx;
629 char esym[sizeof (Elf64_External_Sym)];
630
0eddce27 631 if (! is_elf_hash_table (info->hash))
8c58d23b
AM
632 return 0;
633
634 /* See if the entry exists already. */
635 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
636 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
637 return 1;
638
639 amt = sizeof (*entry);
a50b1753 640 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
8c58d23b
AM
641 if (entry == NULL)
642 return 0;
643
644 /* Go find the symbol, so that we can find it's name. */
645 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
268b6b39 646 1, input_indx, &entry->isym, esym, &eshndx))
8c58d23b
AM
647 {
648 bfd_release (input_bfd, entry);
649 return 0;
650 }
651
652 if (entry->isym.st_shndx != SHN_UNDEF
4fbb74a6 653 && entry->isym.st_shndx < SHN_LORESERVE)
8c58d23b
AM
654 {
655 asection *s;
656
657 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
658 if (s == NULL || bfd_is_abs_section (s->output_section))
659 {
660 /* We can still bfd_release here as nothing has done another
661 bfd_alloc. We can't do this later in this function. */
662 bfd_release (input_bfd, entry);
663 return 2;
664 }
665 }
666
667 name = (bfd_elf_string_from_elf_section
668 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
669 entry->isym.st_name));
670
671 dynstr = elf_hash_table (info)->dynstr;
672 if (dynstr == NULL)
673 {
674 /* Create a strtab to hold the dynamic symbol names. */
675 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
676 if (dynstr == NULL)
677 return 0;
678 }
679
b34976b6 680 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
8c58d23b
AM
681 if (dynstr_index == (unsigned long) -1)
682 return 0;
683 entry->isym.st_name = dynstr_index;
684
685 eht = elf_hash_table (info);
686
687 entry->next = eht->dynlocal;
688 eht->dynlocal = entry;
689 entry->input_bfd = input_bfd;
690 entry->input_indx = input_indx;
691 eht->dynsymcount++;
692
693 /* Whatever binding the symbol had before, it's now local. */
694 entry->isym.st_info
695 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
696
697 /* The dynindx will be set at the end of size_dynamic_sections. */
698
699 return 1;
700}
701
30b30c21 702/* Return the dynindex of a local dynamic symbol. */
42751cf3 703
30b30c21 704long
268b6b39
AM
705_bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
706 bfd *input_bfd,
707 long input_indx)
30b30c21
RH
708{
709 struct elf_link_local_dynamic_entry *e;
710
711 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
712 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
713 return e->dynindx;
714 return -1;
715}
716
717/* This function is used to renumber the dynamic symbols, if some of
718 them are removed because they are marked as local. This is called
719 via elf_link_hash_traverse. */
720
b34976b6 721static bfd_boolean
268b6b39
AM
722elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
723 void *data)
42751cf3 724{
a50b1753 725 size_t *count = (size_t *) data;
30b30c21 726
6fa3860b
PB
727 if (h->forced_local)
728 return TRUE;
729
730 if (h->dynindx != -1)
731 h->dynindx = ++(*count);
732
733 return TRUE;
734}
735
736
737/* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
738 STB_LOCAL binding. */
739
740static bfd_boolean
741elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
742 void *data)
743{
a50b1753 744 size_t *count = (size_t *) data;
6fa3860b 745
6fa3860b
PB
746 if (!h->forced_local)
747 return TRUE;
748
42751cf3 749 if (h->dynindx != -1)
30b30c21
RH
750 h->dynindx = ++(*count);
751
b34976b6 752 return TRUE;
42751cf3 753}
30b30c21 754
aee6f5b4
AO
755/* Return true if the dynamic symbol for a given section should be
756 omitted when creating a shared library. */
757bfd_boolean
758_bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
759 struct bfd_link_info *info,
760 asection *p)
761{
74541ad4
AM
762 struct elf_link_hash_table *htab;
763
aee6f5b4
AO
764 switch (elf_section_data (p)->this_hdr.sh_type)
765 {
766 case SHT_PROGBITS:
767 case SHT_NOBITS:
768 /* If sh_type is yet undecided, assume it could be
769 SHT_PROGBITS/SHT_NOBITS. */
770 case SHT_NULL:
74541ad4
AM
771 htab = elf_hash_table (info);
772 if (p == htab->tls_sec)
773 return FALSE;
774
775 if (htab->text_index_section != NULL)
776 return p != htab->text_index_section && p != htab->data_index_section;
777
aee6f5b4
AO
778 if (strcmp (p->name, ".got") == 0
779 || strcmp (p->name, ".got.plt") == 0
780 || strcmp (p->name, ".plt") == 0)
781 {
782 asection *ip;
aee6f5b4 783
74541ad4 784 if (htab->dynobj != NULL
3d4d4302 785 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
aee6f5b4
AO
786 && ip->output_section == p)
787 return TRUE;
788 }
789 return FALSE;
790
791 /* There shouldn't be section relative relocations
792 against any other section. */
793 default:
794 return TRUE;
795 }
796}
797
062e2358 798/* Assign dynsym indices. In a shared library we generate a section
6fa3860b
PB
799 symbol for each output section, which come first. Next come symbols
800 which have been forced to local binding. Then all of the back-end
801 allocated local dynamic syms, followed by the rest of the global
802 symbols. */
30b30c21 803
554220db
AM
804static unsigned long
805_bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
806 struct bfd_link_info *info,
807 unsigned long *section_sym_count)
30b30c21
RH
808{
809 unsigned long dynsymcount = 0;
810
67687978 811 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
30b30c21 812 {
aee6f5b4 813 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
30b30c21
RH
814 asection *p;
815 for (p = output_bfd->sections; p ; p = p->next)
8c37241b 816 if ((p->flags & SEC_EXCLUDE) == 0
aee6f5b4
AO
817 && (p->flags & SEC_ALLOC) != 0
818 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
819 elf_section_data (p)->dynindx = ++dynsymcount;
74541ad4
AM
820 else
821 elf_section_data (p)->dynindx = 0;
30b30c21 822 }
554220db 823 *section_sym_count = dynsymcount;
30b30c21 824
6fa3860b
PB
825 elf_link_hash_traverse (elf_hash_table (info),
826 elf_link_renumber_local_hash_table_dynsyms,
827 &dynsymcount);
828
30b30c21
RH
829 if (elf_hash_table (info)->dynlocal)
830 {
831 struct elf_link_local_dynamic_entry *p;
832 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
833 p->dynindx = ++dynsymcount;
834 }
835
836 elf_link_hash_traverse (elf_hash_table (info),
837 elf_link_renumber_hash_table_dynsyms,
838 &dynsymcount);
839
840 /* There is an unused NULL entry at the head of the table which
841 we must account for in our count. Unless there weren't any
842 symbols, which means we'll have no table at all. */
843 if (dynsymcount != 0)
844 ++dynsymcount;
845
ccabcbe5
AM
846 elf_hash_table (info)->dynsymcount = dynsymcount;
847 return dynsymcount;
30b30c21 848}
252b5132 849
54ac0771
L
850/* Merge st_other field. */
851
852static void
853elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
854 Elf_Internal_Sym *isym, bfd_boolean definition,
855 bfd_boolean dynamic)
856{
857 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
858
859 /* If st_other has a processor-specific meaning, specific
860 code might be needed here. We never merge the visibility
861 attribute with the one from a dynamic object. */
862 if (bed->elf_backend_merge_symbol_attribute)
863 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
864 dynamic);
865
866 /* If this symbol has default visibility and the user has requested
867 we not re-export it, then mark it as hidden. */
868 if (definition
869 && !dynamic
870 && (abfd->no_export
871 || (abfd->my_archive && abfd->my_archive->no_export))
872 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
873 isym->st_other = (STV_HIDDEN
874 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
875
876 if (!dynamic && ELF_ST_VISIBILITY (isym->st_other) != 0)
877 {
878 unsigned char hvis, symvis, other, nvis;
879
880 /* Only merge the visibility. Leave the remainder of the
881 st_other field to elf_backend_merge_symbol_attribute. */
882 other = h->other & ~ELF_ST_VISIBILITY (-1);
883
884 /* Combine visibilities, using the most constraining one. */
885 hvis = ELF_ST_VISIBILITY (h->other);
886 symvis = ELF_ST_VISIBILITY (isym->st_other);
887 if (! hvis)
888 nvis = symvis;
889 else if (! symvis)
890 nvis = hvis;
891 else
892 nvis = hvis < symvis ? hvis : symvis;
893
894 h->other = other | nvis;
895 }
896}
897
90c984fc
L
898/* Mark if a symbol has a definition in a dynamic object or is
899 weak in all dynamic objects. */
900
901static void
902_bfd_elf_mark_dynamic_def_weak (struct elf_link_hash_entry *h,
903 asection *sec, int bind)
904{
905 if (!h->dynamic_def)
906 {
907 if (!bfd_is_und_section (sec))
908 h->dynamic_def = 1;
909 else
910 {
911 /* Check if this symbol is weak in all dynamic objects. If it
912 is the first time we see it in a dynamic object, we mark
913 if it is weak. Otherwise, we clear it. */
914 if (!h->ref_dynamic)
915 {
916 if (bind == STB_WEAK)
917 h->dynamic_weak = 1;
918 }
919 else if (bind != STB_WEAK)
920 h->dynamic_weak = 0;
921 }
922 }
923}
924
45d6a902
AM
925/* This function is called when we want to define a new symbol. It
926 handles the various cases which arise when we find a definition in
927 a dynamic object, or when there is already a definition in a
928 dynamic object. The new symbol is described by NAME, SYM, PSEC,
929 and PVALUE. We set SYM_HASH to the hash table entry. We set
930 OVERRIDE if the old symbol is overriding a new definition. We set
931 TYPE_CHANGE_OK if it is OK for the type to change. We set
932 SIZE_CHANGE_OK if it is OK for the size to change. By OK to
933 change, we mean that we shouldn't warn if the type or size does
af44c138
L
934 change. We set POLD_ALIGNMENT if an old common symbol in a dynamic
935 object is overridden by a regular object. */
45d6a902
AM
936
937bfd_boolean
268b6b39
AM
938_bfd_elf_merge_symbol (bfd *abfd,
939 struct bfd_link_info *info,
940 const char *name,
941 Elf_Internal_Sym *sym,
942 asection **psec,
943 bfd_vma *pvalue,
37a9e49a 944 bfd_boolean *pold_weak,
af44c138 945 unsigned int *pold_alignment,
268b6b39
AM
946 struct elf_link_hash_entry **sym_hash,
947 bfd_boolean *skip,
948 bfd_boolean *override,
949 bfd_boolean *type_change_ok,
0f8a2703 950 bfd_boolean *size_change_ok)
252b5132 951{
7479dfd4 952 asection *sec, *oldsec;
45d6a902 953 struct elf_link_hash_entry *h;
90c984fc 954 struct elf_link_hash_entry *hi;
45d6a902
AM
955 struct elf_link_hash_entry *flip;
956 int bind;
957 bfd *oldbfd;
958 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
0a36a439 959 bfd_boolean newweak, oldweak, newfunc, oldfunc;
a4d8e49b 960 const struct elf_backend_data *bed;
45d6a902
AM
961
962 *skip = FALSE;
963 *override = FALSE;
964
965 sec = *psec;
966 bind = ELF_ST_BIND (sym->st_info);
967
cd7be95b
KH
968 /* Silently discard TLS symbols from --just-syms. There's no way to
969 combine a static TLS block with a new TLS block for this executable. */
970 if (ELF_ST_TYPE (sym->st_info) == STT_TLS
dbaa2011 971 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
cd7be95b
KH
972 {
973 *skip = TRUE;
974 return TRUE;
975 }
976
45d6a902
AM
977 if (! bfd_is_und_section (sec))
978 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
979 else
980 h = ((struct elf_link_hash_entry *)
981 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
982 if (h == NULL)
983 return FALSE;
984 *sym_hash = h;
252b5132 985
88ba32a0
L
986 bed = get_elf_backend_data (abfd);
987
45d6a902
AM
988 /* This code is for coping with dynamic objects, and is only useful
989 if we are doing an ELF link. */
88ba32a0 990 if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
45d6a902 991 return TRUE;
252b5132 992
90c984fc
L
993 /* For merging, we only care about real symbols. But we need to make
994 sure that indirect symbol dynamic flags are updated. */
995 hi = h;
45d6a902
AM
996 while (h->root.type == bfd_link_hash_indirect
997 || h->root.type == bfd_link_hash_warning)
998 h = (struct elf_link_hash_entry *) h->root.u.i.link;
999
40b36307
L
1000 /* We have to check it for every instance since the first few may be
1001 refereences and not all compilers emit symbol type for undefined
1002 symbols. */
1003 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
1004
45d6a902
AM
1005 /* If we just created the symbol, mark it as being an ELF symbol.
1006 Other than that, there is nothing to do--there is no merge issue
1007 with a newly defined symbol--so we just return. */
1008
1009 if (h->root.type == bfd_link_hash_new)
252b5132 1010 {
f5385ebf 1011 h->non_elf = 0;
45d6a902
AM
1012 return TRUE;
1013 }
252b5132 1014
7479dfd4
L
1015 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
1016 existing symbol. */
252b5132 1017
45d6a902
AM
1018 switch (h->root.type)
1019 {
1020 default:
1021 oldbfd = NULL;
7479dfd4 1022 oldsec = NULL;
45d6a902 1023 break;
252b5132 1024
45d6a902
AM
1025 case bfd_link_hash_undefined:
1026 case bfd_link_hash_undefweak:
1027 oldbfd = h->root.u.undef.abfd;
7479dfd4 1028 oldsec = NULL;
45d6a902
AM
1029 break;
1030
1031 case bfd_link_hash_defined:
1032 case bfd_link_hash_defweak:
1033 oldbfd = h->root.u.def.section->owner;
7479dfd4 1034 oldsec = h->root.u.def.section;
45d6a902
AM
1035 break;
1036
1037 case bfd_link_hash_common:
1038 oldbfd = h->root.u.c.p->section->owner;
7479dfd4 1039 oldsec = h->root.u.c.p->section;
45d6a902
AM
1040 break;
1041 }
1042
895fa45f
MGD
1043 /* Differentiate strong and weak symbols. */
1044 newweak = bind == STB_WEAK;
1045 oldweak = (h->root.type == bfd_link_hash_defweak
1046 || h->root.type == bfd_link_hash_undefweak);
37a9e49a
L
1047 if (pold_weak)
1048 *pold_weak = oldweak;
895fa45f 1049
45d6a902
AM
1050 /* In cases involving weak versioned symbols, we may wind up trying
1051 to merge a symbol with itself. Catch that here, to avoid the
1052 confusion that results if we try to override a symbol with
1053 itself. The additional tests catch cases like
1054 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1055 dynamic object, which we do want to handle here. */
1056 if (abfd == oldbfd
895fa45f 1057 && (newweak || oldweak)
45d6a902 1058 && ((abfd->flags & DYNAMIC) == 0
f5385ebf 1059 || !h->def_regular))
45d6a902
AM
1060 return TRUE;
1061
1062 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
1063 respectively, is from a dynamic object. */
1064
707bba77 1065 newdyn = (abfd->flags & DYNAMIC) != 0;
45d6a902 1066
707bba77 1067 olddyn = FALSE;
45d6a902
AM
1068 if (oldbfd != NULL)
1069 olddyn = (oldbfd->flags & DYNAMIC) != 0;
707bba77 1070 else if (oldsec != NULL)
45d6a902 1071 {
707bba77 1072 /* This handles the special SHN_MIPS_{TEXT,DATA} section
45d6a902 1073 indices used by MIPS ELF. */
707bba77 1074 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
45d6a902 1075 }
252b5132 1076
45d6a902
AM
1077 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1078 respectively, appear to be a definition rather than reference. */
1079
707bba77 1080 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
45d6a902 1081
707bba77
AM
1082 olddef = (h->root.type != bfd_link_hash_undefined
1083 && h->root.type != bfd_link_hash_undefweak
1084 && h->root.type != bfd_link_hash_common);
45d6a902 1085
0a36a439
L
1086 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1087 respectively, appear to be a function. */
1088
1089 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1090 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1091
1092 oldfunc = (h->type != STT_NOTYPE
1093 && bed->is_function_type (h->type));
1094
580a2b6e
L
1095 /* When we try to create a default indirect symbol from the dynamic
1096 definition with the default version, we skip it if its type and
1097 the type of existing regular definition mismatch. We only do it
1098 if the existing regular definition won't be dynamic. */
1099 if (pold_alignment == NULL
1100 && !info->shared
1101 && !info->export_dynamic
1102 && !h->ref_dynamic
1103 && newdyn
1104 && newdef
1105 && !olddyn
1106 && (olddef || h->root.type == bfd_link_hash_common)
1107 && ELF_ST_TYPE (sym->st_info) != h->type
1108 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
fcb93ecf 1109 && h->type != STT_NOTYPE
0a36a439 1110 && !(newfunc && oldfunc))
580a2b6e
L
1111 {
1112 *skip = TRUE;
1113 return TRUE;
1114 }
1115
3a5dbfb2
AM
1116 /* Plugin symbol type isn't currently set. Stop bogus errors. */
1117 if (oldbfd != NULL && (oldbfd->flags & BFD_PLUGIN) != 0)
1118 *type_change_ok = TRUE;
1119
68f49ba3
L
1120 /* Check TLS symbol. We don't check undefined symbol introduced by
1121 "ld -u". */
3a5dbfb2
AM
1122 else if (oldbfd != NULL
1123 && ELF_ST_TYPE (sym->st_info) != h->type
1124 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
7479dfd4
L
1125 {
1126 bfd *ntbfd, *tbfd;
1127 bfd_boolean ntdef, tdef;
1128 asection *ntsec, *tsec;
1129
1130 if (h->type == STT_TLS)
1131 {
3b36f7e6 1132 ntbfd = abfd;
7479dfd4
L
1133 ntsec = sec;
1134 ntdef = newdef;
1135 tbfd = oldbfd;
1136 tsec = oldsec;
1137 tdef = olddef;
1138 }
1139 else
1140 {
1141 ntbfd = oldbfd;
1142 ntsec = oldsec;
1143 ntdef = olddef;
1144 tbfd = abfd;
1145 tsec = sec;
1146 tdef = newdef;
1147 }
1148
1149 if (tdef && ntdef)
1150 (*_bfd_error_handler)
fc3e1e3c 1151 (_("%s: TLS definition in %B section %A mismatches non-TLS definition in %B section %A"),
7479dfd4
L
1152 tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1153 else if (!tdef && !ntdef)
1154 (*_bfd_error_handler)
fc3e1e3c 1155 (_("%s: TLS reference in %B mismatches non-TLS reference in %B"),
7479dfd4
L
1156 tbfd, ntbfd, h->root.root.string);
1157 else if (tdef)
1158 (*_bfd_error_handler)
fc3e1e3c 1159 (_("%s: TLS definition in %B section %A mismatches non-TLS reference in %B"),
7479dfd4
L
1160 tbfd, tsec, ntbfd, h->root.root.string);
1161 else
1162 (*_bfd_error_handler)
fc3e1e3c 1163 (_("%s: TLS reference in %B mismatches non-TLS definition in %B section %A"),
7479dfd4
L
1164 tbfd, ntbfd, ntsec, h->root.root.string);
1165
1166 bfd_set_error (bfd_error_bad_value);
1167 return FALSE;
1168 }
1169
4cc11e76 1170 /* We need to remember if a symbol has a definition in a dynamic
45d6a902
AM
1171 object or is weak in all dynamic objects. Internal and hidden
1172 visibility will make it unavailable to dynamic objects. */
90c984fc 1173 if (newdyn)
45d6a902 1174 {
90c984fc
L
1175 _bfd_elf_mark_dynamic_def_weak (h, sec, bind);
1176 if (h != hi)
1177 _bfd_elf_mark_dynamic_def_weak (hi, sec, bind);
45d6a902 1178 }
252b5132 1179
45d6a902
AM
1180 /* If the old symbol has non-default visibility, we ignore the new
1181 definition from a dynamic object. */
1182 if (newdyn
9c7a29a3 1183 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902
AM
1184 && !bfd_is_und_section (sec))
1185 {
1186 *skip = TRUE;
1187 /* Make sure this symbol is dynamic. */
f5385ebf 1188 h->ref_dynamic = 1;
90c984fc 1189 hi->ref_dynamic = 1;
45d6a902
AM
1190 /* A protected symbol has external availability. Make sure it is
1191 recorded as dynamic.
1192
1193 FIXME: Should we check type and size for protected symbol? */
1194 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
c152c796 1195 return bfd_elf_link_record_dynamic_symbol (info, h);
45d6a902
AM
1196 else
1197 return TRUE;
1198 }
1199 else if (!newdyn
9c7a29a3 1200 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
f5385ebf 1201 && h->def_dynamic)
45d6a902
AM
1202 {
1203 /* If the new symbol with non-default visibility comes from a
1204 relocatable file and the old definition comes from a dynamic
1205 object, we remove the old definition. */
1206 if ((*sym_hash)->root.type == bfd_link_hash_indirect)
d2dee3b2
L
1207 {
1208 /* Handle the case where the old dynamic definition is
1209 default versioned. We need to copy the symbol info from
1210 the symbol with default version to the normal one if it
1211 was referenced before. */
1212 if (h->ref_regular)
1213 {
d2dee3b2 1214 struct elf_link_hash_entry *vh = *sym_hash;
91d6fa6a 1215
d2dee3b2
L
1216 vh->root.type = h->root.type;
1217 h->root.type = bfd_link_hash_indirect;
1218 (*bed->elf_backend_copy_indirect_symbol) (info, vh, h);
aed81c4e
MR
1219
1220 h->root.u.i.link = (struct bfd_link_hash_entry *) vh;
1221 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
d2dee3b2 1222 {
aed81c4e
MR
1223 /* If the new symbol is hidden or internal, completely undo
1224 any dynamic link state. */
1225 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1226 h->forced_local = 0;
1227 h->ref_dynamic = 0;
d2dee3b2
L
1228 }
1229 else
aed81c4e
MR
1230 h->ref_dynamic = 1;
1231
1232 h->def_dynamic = 0;
1233 h->dynamic_def = 0;
1234 /* FIXME: Should we check type and size for protected symbol? */
1235 h->size = 0;
1236 h->type = 0;
1237
d2dee3b2
L
1238 h = vh;
1239 }
1240 else
1241 h = *sym_hash;
1242 }
1de1a317 1243
f5eda473
AM
1244 /* If the old symbol was undefined before, then it will still be
1245 on the undefs list. If the new symbol is undefined or
1246 common, we can't make it bfd_link_hash_new here, because new
1247 undefined or common symbols will be added to the undefs list
1248 by _bfd_generic_link_add_one_symbol. Symbols may not be
1249 added twice to the undefs list. Also, if the new symbol is
1250 undefweak then we don't want to lose the strong undef. */
1251 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1de1a317 1252 {
1de1a317 1253 h->root.type = bfd_link_hash_undefined;
1de1a317
L
1254 h->root.u.undef.abfd = abfd;
1255 }
1256 else
1257 {
1258 h->root.type = bfd_link_hash_new;
1259 h->root.u.undef.abfd = NULL;
1260 }
1261
f5eda473 1262 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
252b5132 1263 {
f5eda473
AM
1264 /* If the new symbol is hidden or internal, completely undo
1265 any dynamic link state. */
1266 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1267 h->forced_local = 0;
1268 h->ref_dynamic = 0;
45d6a902 1269 }
f5eda473
AM
1270 else
1271 h->ref_dynamic = 1;
1272 h->def_dynamic = 0;
1273 h->dynamic_def = 0;
45d6a902
AM
1274 /* FIXME: Should we check type and size for protected symbol? */
1275 h->size = 0;
1276 h->type = 0;
1277 return TRUE;
1278 }
14a793b2 1279
3e7a7d11
NC
1280 if (bind == STB_GNU_UNIQUE)
1281 h->unique_global = 1;
1282
15b43f48
AM
1283 /* If a new weak symbol definition comes from a regular file and the
1284 old symbol comes from a dynamic library, we treat the new one as
1285 strong. Similarly, an old weak symbol definition from a regular
1286 file is treated as strong when the new symbol comes from a dynamic
1287 library. Further, an old weak symbol from a dynamic library is
1288 treated as strong if the new symbol is from a dynamic library.
1289 This reflects the way glibc's ld.so works.
1290
1291 Do this before setting *type_change_ok or *size_change_ok so that
1292 we warn properly when dynamic library symbols are overridden. */
1293
1294 if (newdef && !newdyn && olddyn)
0f8a2703 1295 newweak = FALSE;
15b43f48 1296 if (olddef && newdyn)
0f8a2703
AM
1297 oldweak = FALSE;
1298
d334575b 1299 /* Allow changes between different types of function symbol. */
0a36a439 1300 if (newfunc && oldfunc)
fcb93ecf
PB
1301 *type_change_ok = TRUE;
1302
79349b09
AM
1303 /* It's OK to change the type if either the existing symbol or the
1304 new symbol is weak. A type change is also OK if the old symbol
1305 is undefined and the new symbol is defined. */
252b5132 1306
79349b09
AM
1307 if (oldweak
1308 || newweak
1309 || (newdef
1310 && h->root.type == bfd_link_hash_undefined))
1311 *type_change_ok = TRUE;
1312
1313 /* It's OK to change the size if either the existing symbol or the
1314 new symbol is weak, or if the old symbol is undefined. */
1315
1316 if (*type_change_ok
1317 || h->root.type == bfd_link_hash_undefined)
1318 *size_change_ok = TRUE;
45d6a902 1319
45d6a902
AM
1320 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1321 symbol, respectively, appears to be a common symbol in a dynamic
1322 object. If a symbol appears in an uninitialized section, and is
1323 not weak, and is not a function, then it may be a common symbol
1324 which was resolved when the dynamic object was created. We want
1325 to treat such symbols specially, because they raise special
1326 considerations when setting the symbol size: if the symbol
1327 appears as a common symbol in a regular object, and the size in
1328 the regular object is larger, we must make sure that we use the
1329 larger size. This problematic case can always be avoided in C,
1330 but it must be handled correctly when using Fortran shared
1331 libraries.
1332
1333 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1334 likewise for OLDDYNCOMMON and OLDDEF.
1335
1336 Note that this test is just a heuristic, and that it is quite
1337 possible to have an uninitialized symbol in a shared object which
1338 is really a definition, rather than a common symbol. This could
1339 lead to some minor confusion when the symbol really is a common
1340 symbol in some regular object. However, I think it will be
1341 harmless. */
1342
1343 if (newdyn
1344 && newdef
79349b09 1345 && !newweak
45d6a902
AM
1346 && (sec->flags & SEC_ALLOC) != 0
1347 && (sec->flags & SEC_LOAD) == 0
1348 && sym->st_size > 0
0a36a439 1349 && !newfunc)
45d6a902
AM
1350 newdyncommon = TRUE;
1351 else
1352 newdyncommon = FALSE;
1353
1354 if (olddyn
1355 && olddef
1356 && h->root.type == bfd_link_hash_defined
f5385ebf 1357 && h->def_dynamic
45d6a902
AM
1358 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1359 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1360 && h->size > 0
0a36a439 1361 && !oldfunc)
45d6a902
AM
1362 olddyncommon = TRUE;
1363 else
1364 olddyncommon = FALSE;
1365
a4d8e49b
L
1366 /* We now know everything about the old and new symbols. We ask the
1367 backend to check if we can merge them. */
a4d8e49b
L
1368 if (bed->merge_symbol
1369 && !bed->merge_symbol (info, sym_hash, h, sym, psec, pvalue,
1370 pold_alignment, skip, override,
1371 type_change_ok, size_change_ok,
1372 &newdyn, &newdef, &newdyncommon, &newweak,
1373 abfd, &sec,
1374 &olddyn, &olddef, &olddyncommon, &oldweak,
1375 oldbfd, &oldsec))
1376 return FALSE;
1377
45d6a902
AM
1378 /* If both the old and the new symbols look like common symbols in a
1379 dynamic object, set the size of the symbol to the larger of the
1380 two. */
1381
1382 if (olddyncommon
1383 && newdyncommon
1384 && sym->st_size != h->size)
1385 {
1386 /* Since we think we have two common symbols, issue a multiple
1387 common warning if desired. Note that we only warn if the
1388 size is different. If the size is the same, we simply let
1389 the old symbol override the new one as normally happens with
1390 symbols defined in dynamic objects. */
1391
1392 if (! ((*info->callbacks->multiple_common)
24f58f47 1393 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
45d6a902 1394 return FALSE;
252b5132 1395
45d6a902
AM
1396 if (sym->st_size > h->size)
1397 h->size = sym->st_size;
252b5132 1398
45d6a902 1399 *size_change_ok = TRUE;
252b5132
RH
1400 }
1401
45d6a902
AM
1402 /* If we are looking at a dynamic object, and we have found a
1403 definition, we need to see if the symbol was already defined by
1404 some other object. If so, we want to use the existing
1405 definition, and we do not want to report a multiple symbol
1406 definition error; we do this by clobbering *PSEC to be
1407 bfd_und_section_ptr.
1408
1409 We treat a common symbol as a definition if the symbol in the
1410 shared library is a function, since common symbols always
1411 represent variables; this can cause confusion in principle, but
1412 any such confusion would seem to indicate an erroneous program or
1413 shared library. We also permit a common symbol in a regular
79349b09 1414 object to override a weak symbol in a shared object. */
45d6a902
AM
1415
1416 if (newdyn
1417 && newdef
77cfaee6 1418 && (olddef
45d6a902 1419 || (h->root.type == bfd_link_hash_common
0a36a439 1420 && (newweak || newfunc))))
45d6a902
AM
1421 {
1422 *override = TRUE;
1423 newdef = FALSE;
1424 newdyncommon = FALSE;
252b5132 1425
45d6a902
AM
1426 *psec = sec = bfd_und_section_ptr;
1427 *size_change_ok = TRUE;
252b5132 1428
45d6a902
AM
1429 /* If we get here when the old symbol is a common symbol, then
1430 we are explicitly letting it override a weak symbol or
1431 function in a dynamic object, and we don't want to warn about
1432 a type change. If the old symbol is a defined symbol, a type
1433 change warning may still be appropriate. */
252b5132 1434
45d6a902
AM
1435 if (h->root.type == bfd_link_hash_common)
1436 *type_change_ok = TRUE;
1437 }
1438
1439 /* Handle the special case of an old common symbol merging with a
1440 new symbol which looks like a common symbol in a shared object.
1441 We change *PSEC and *PVALUE to make the new symbol look like a
91134c82
L
1442 common symbol, and let _bfd_generic_link_add_one_symbol do the
1443 right thing. */
45d6a902
AM
1444
1445 if (newdyncommon
1446 && h->root.type == bfd_link_hash_common)
1447 {
1448 *override = TRUE;
1449 newdef = FALSE;
1450 newdyncommon = FALSE;
1451 *pvalue = sym->st_size;
a4d8e49b 1452 *psec = sec = bed->common_section (oldsec);
45d6a902
AM
1453 *size_change_ok = TRUE;
1454 }
1455
c5e2cead 1456 /* Skip weak definitions of symbols that are already defined. */
f41d945b 1457 if (newdef && olddef && newweak)
54ac0771 1458 {
35ed3f94 1459 /* Don't skip new non-IR weak syms. */
3a5dbfb2
AM
1460 if (!(oldbfd != NULL
1461 && (oldbfd->flags & BFD_PLUGIN) != 0
35ed3f94
AM
1462 && (abfd->flags & BFD_PLUGIN) == 0))
1463 *skip = TRUE;
54ac0771
L
1464
1465 /* Merge st_other. If the symbol already has a dynamic index,
1466 but visibility says it should not be visible, turn it into a
1467 local symbol. */
1468 elf_merge_st_other (abfd, h, sym, newdef, newdyn);
1469 if (h->dynindx != -1)
1470 switch (ELF_ST_VISIBILITY (h->other))
1471 {
1472 case STV_INTERNAL:
1473 case STV_HIDDEN:
1474 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1475 break;
1476 }
1477 }
c5e2cead 1478
45d6a902
AM
1479 /* If the old symbol is from a dynamic object, and the new symbol is
1480 a definition which is not from a dynamic object, then the new
1481 symbol overrides the old symbol. Symbols from regular files
1482 always take precedence over symbols from dynamic objects, even if
1483 they are defined after the dynamic object in the link.
1484
1485 As above, we again permit a common symbol in a regular object to
1486 override a definition in a shared object if the shared object
0f8a2703 1487 symbol is a function or is weak. */
45d6a902
AM
1488
1489 flip = NULL;
77cfaee6 1490 if (!newdyn
45d6a902
AM
1491 && (newdef
1492 || (bfd_is_com_section (sec)
0a36a439 1493 && (oldweak || oldfunc)))
45d6a902
AM
1494 && olddyn
1495 && olddef
f5385ebf 1496 && h->def_dynamic)
45d6a902
AM
1497 {
1498 /* Change the hash table entry to undefined, and let
1499 _bfd_generic_link_add_one_symbol do the right thing with the
1500 new definition. */
1501
1502 h->root.type = bfd_link_hash_undefined;
1503 h->root.u.undef.abfd = h->root.u.def.section->owner;
1504 *size_change_ok = TRUE;
1505
1506 olddef = FALSE;
1507 olddyncommon = FALSE;
1508
1509 /* We again permit a type change when a common symbol may be
1510 overriding a function. */
1511
1512 if (bfd_is_com_section (sec))
0a36a439
L
1513 {
1514 if (oldfunc)
1515 {
1516 /* If a common symbol overrides a function, make sure
1517 that it isn't defined dynamically nor has type
1518 function. */
1519 h->def_dynamic = 0;
1520 h->type = STT_NOTYPE;
1521 }
1522 *type_change_ok = TRUE;
1523 }
45d6a902
AM
1524
1525 if ((*sym_hash)->root.type == bfd_link_hash_indirect)
1526 flip = *sym_hash;
1527 else
1528 /* This union may have been set to be non-NULL when this symbol
1529 was seen in a dynamic object. We must force the union to be
1530 NULL, so that it is correct for a regular symbol. */
1531 h->verinfo.vertree = NULL;
1532 }
1533
1534 /* Handle the special case of a new common symbol merging with an
1535 old symbol that looks like it might be a common symbol defined in
1536 a shared object. Note that we have already handled the case in
1537 which a new common symbol should simply override the definition
1538 in the shared library. */
1539
1540 if (! newdyn
1541 && bfd_is_com_section (sec)
1542 && olddyncommon)
1543 {
1544 /* It would be best if we could set the hash table entry to a
1545 common symbol, but we don't know what to use for the section
1546 or the alignment. */
1547 if (! ((*info->callbacks->multiple_common)
24f58f47 1548 (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
45d6a902
AM
1549 return FALSE;
1550
4cc11e76 1551 /* If the presumed common symbol in the dynamic object is
45d6a902
AM
1552 larger, pretend that the new symbol has its size. */
1553
1554 if (h->size > *pvalue)
1555 *pvalue = h->size;
1556
af44c138
L
1557 /* We need to remember the alignment required by the symbol
1558 in the dynamic object. */
1559 BFD_ASSERT (pold_alignment);
1560 *pold_alignment = h->root.u.def.section->alignment_power;
45d6a902
AM
1561
1562 olddef = FALSE;
1563 olddyncommon = FALSE;
1564
1565 h->root.type = bfd_link_hash_undefined;
1566 h->root.u.undef.abfd = h->root.u.def.section->owner;
1567
1568 *size_change_ok = TRUE;
1569 *type_change_ok = TRUE;
1570
1571 if ((*sym_hash)->root.type == bfd_link_hash_indirect)
1572 flip = *sym_hash;
1573 else
1574 h->verinfo.vertree = NULL;
1575 }
1576
1577 if (flip != NULL)
1578 {
1579 /* Handle the case where we had a versioned symbol in a dynamic
1580 library and now find a definition in a normal object. In this
1581 case, we make the versioned symbol point to the normal one. */
45d6a902 1582 flip->root.type = h->root.type;
00cbee0a 1583 flip->root.u.undef.abfd = h->root.u.undef.abfd;
45d6a902
AM
1584 h->root.type = bfd_link_hash_indirect;
1585 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
fcfa13d2 1586 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
f5385ebf 1587 if (h->def_dynamic)
45d6a902 1588 {
f5385ebf
AM
1589 h->def_dynamic = 0;
1590 flip->ref_dynamic = 1;
45d6a902
AM
1591 }
1592 }
1593
45d6a902
AM
1594 return TRUE;
1595}
1596
1597/* This function is called to create an indirect symbol from the
1598 default for the symbol with the default version if needed. The
1599 symbol is described by H, NAME, SYM, PSEC, VALUE, and OVERRIDE. We
0f8a2703 1600 set DYNSYM if the new indirect symbol is dynamic. */
45d6a902 1601
28caa186 1602static bfd_boolean
268b6b39
AM
1603_bfd_elf_add_default_symbol (bfd *abfd,
1604 struct bfd_link_info *info,
1605 struct elf_link_hash_entry *h,
1606 const char *name,
1607 Elf_Internal_Sym *sym,
1608 asection **psec,
1609 bfd_vma *value,
1610 bfd_boolean *dynsym,
0f8a2703 1611 bfd_boolean override)
45d6a902
AM
1612{
1613 bfd_boolean type_change_ok;
1614 bfd_boolean size_change_ok;
1615 bfd_boolean skip;
1616 char *shortname;
1617 struct elf_link_hash_entry *hi;
1618 struct bfd_link_hash_entry *bh;
9c5bfbb7 1619 const struct elf_backend_data *bed;
45d6a902
AM
1620 bfd_boolean collect;
1621 bfd_boolean dynamic;
1622 char *p;
1623 size_t len, shortlen;
1624 asection *sec;
1625
1626 /* If this symbol has a version, and it is the default version, we
1627 create an indirect symbol from the default name to the fully
1628 decorated name. This will cause external references which do not
1629 specify a version to be bound to this version of the symbol. */
1630 p = strchr (name, ELF_VER_CHR);
1631 if (p == NULL || p[1] != ELF_VER_CHR)
1632 return TRUE;
1633
1634 if (override)
1635 {
4cc11e76 1636 /* We are overridden by an old definition. We need to check if we
45d6a902
AM
1637 need to create the indirect symbol from the default name. */
1638 hi = elf_link_hash_lookup (elf_hash_table (info), name, TRUE,
1639 FALSE, FALSE);
1640 BFD_ASSERT (hi != NULL);
1641 if (hi == h)
1642 return TRUE;
1643 while (hi->root.type == bfd_link_hash_indirect
1644 || hi->root.type == bfd_link_hash_warning)
1645 {
1646 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1647 if (hi == h)
1648 return TRUE;
1649 }
1650 }
1651
1652 bed = get_elf_backend_data (abfd);
1653 collect = bed->collect;
1654 dynamic = (abfd->flags & DYNAMIC) != 0;
1655
1656 shortlen = p - name;
a50b1753 1657 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
45d6a902
AM
1658 if (shortname == NULL)
1659 return FALSE;
1660 memcpy (shortname, name, shortlen);
1661 shortname[shortlen] = '\0';
1662
1663 /* We are going to create a new symbol. Merge it with any existing
1664 symbol with this name. For the purposes of the merge, act as
1665 though we were defining the symbol we just defined, although we
1666 actually going to define an indirect symbol. */
1667 type_change_ok = FALSE;
1668 size_change_ok = FALSE;
1669 sec = *psec;
1670 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &sec, value,
37a9e49a 1671 NULL, NULL, &hi, &skip, &override,
af44c138 1672 &type_change_ok, &size_change_ok))
45d6a902
AM
1673 return FALSE;
1674
1675 if (skip)
1676 goto nondefault;
1677
1678 if (! override)
1679 {
1680 bh = &hi->root;
1681 if (! (_bfd_generic_link_add_one_symbol
1682 (info, abfd, shortname, BSF_INDIRECT, bfd_ind_section_ptr,
268b6b39 1683 0, name, FALSE, collect, &bh)))
45d6a902
AM
1684 return FALSE;
1685 hi = (struct elf_link_hash_entry *) bh;
1686 }
1687 else
1688 {
1689 /* In this case the symbol named SHORTNAME is overriding the
1690 indirect symbol we want to add. We were planning on making
1691 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1692 is the name without a version. NAME is the fully versioned
1693 name, and it is the default version.
1694
1695 Overriding means that we already saw a definition for the
1696 symbol SHORTNAME in a regular object, and it is overriding
1697 the symbol defined in the dynamic object.
1698
1699 When this happens, we actually want to change NAME, the
1700 symbol we just added, to refer to SHORTNAME. This will cause
1701 references to NAME in the shared object to become references
1702 to SHORTNAME in the regular object. This is what we expect
1703 when we override a function in a shared object: that the
1704 references in the shared object will be mapped to the
1705 definition in the regular object. */
1706
1707 while (hi->root.type == bfd_link_hash_indirect
1708 || hi->root.type == bfd_link_hash_warning)
1709 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1710
1711 h->root.type = bfd_link_hash_indirect;
1712 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
f5385ebf 1713 if (h->def_dynamic)
45d6a902 1714 {
f5385ebf
AM
1715 h->def_dynamic = 0;
1716 hi->ref_dynamic = 1;
1717 if (hi->ref_regular
1718 || hi->def_regular)
45d6a902 1719 {
c152c796 1720 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
45d6a902
AM
1721 return FALSE;
1722 }
1723 }
1724
1725 /* Now set HI to H, so that the following code will set the
1726 other fields correctly. */
1727 hi = h;
1728 }
1729
fab4a87f
L
1730 /* Check if HI is a warning symbol. */
1731 if (hi->root.type == bfd_link_hash_warning)
1732 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1733
45d6a902
AM
1734 /* If there is a duplicate definition somewhere, then HI may not
1735 point to an indirect symbol. We will have reported an error to
1736 the user in that case. */
1737
1738 if (hi->root.type == bfd_link_hash_indirect)
1739 {
1740 struct elf_link_hash_entry *ht;
1741
45d6a902 1742 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
fcfa13d2 1743 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
45d6a902
AM
1744
1745 /* See if the new flags lead us to realize that the symbol must
1746 be dynamic. */
1747 if (! *dynsym)
1748 {
1749 if (! dynamic)
1750 {
ca4a656b 1751 if (! info->executable
90c984fc 1752 || hi->def_dynamic
f5385ebf 1753 || hi->ref_dynamic)
45d6a902
AM
1754 *dynsym = TRUE;
1755 }
1756 else
1757 {
f5385ebf 1758 if (hi->ref_regular)
45d6a902
AM
1759 *dynsym = TRUE;
1760 }
1761 }
1762 }
1763
1764 /* We also need to define an indirection from the nondefault version
1765 of the symbol. */
1766
1767nondefault:
1768 len = strlen (name);
a50b1753 1769 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
45d6a902
AM
1770 if (shortname == NULL)
1771 return FALSE;
1772 memcpy (shortname, name, shortlen);
1773 memcpy (shortname + shortlen, p + 1, len - shortlen);
1774
1775 /* Once again, merge with any existing symbol. */
1776 type_change_ok = FALSE;
1777 size_change_ok = FALSE;
1778 sec = *psec;
1779 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &sec, value,
37a9e49a 1780 NULL, NULL, &hi, &skip, &override,
af44c138 1781 &type_change_ok, &size_change_ok))
45d6a902
AM
1782 return FALSE;
1783
1784 if (skip)
1785 return TRUE;
1786
1787 if (override)
1788 {
1789 /* Here SHORTNAME is a versioned name, so we don't expect to see
1790 the type of override we do in the case above unless it is
4cc11e76 1791 overridden by a versioned definition. */
45d6a902
AM
1792 if (hi->root.type != bfd_link_hash_defined
1793 && hi->root.type != bfd_link_hash_defweak)
1794 (*_bfd_error_handler)
d003868e
AM
1795 (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
1796 abfd, shortname);
45d6a902
AM
1797 }
1798 else
1799 {
1800 bh = &hi->root;
1801 if (! (_bfd_generic_link_add_one_symbol
1802 (info, abfd, shortname, BSF_INDIRECT,
268b6b39 1803 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
45d6a902
AM
1804 return FALSE;
1805 hi = (struct elf_link_hash_entry *) bh;
1806
1807 /* If there is a duplicate definition somewhere, then HI may not
1808 point to an indirect symbol. We will have reported an error
1809 to the user in that case. */
1810
1811 if (hi->root.type == bfd_link_hash_indirect)
1812 {
fcfa13d2 1813 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
45d6a902
AM
1814
1815 /* See if the new flags lead us to realize that the symbol
1816 must be dynamic. */
1817 if (! *dynsym)
1818 {
1819 if (! dynamic)
1820 {
ca4a656b 1821 if (! info->executable
f5385ebf 1822 || hi->ref_dynamic)
45d6a902
AM
1823 *dynsym = TRUE;
1824 }
1825 else
1826 {
f5385ebf 1827 if (hi->ref_regular)
45d6a902
AM
1828 *dynsym = TRUE;
1829 }
1830 }
1831 }
1832 }
1833
1834 return TRUE;
1835}
1836\f
1837/* This routine is used to export all defined symbols into the dynamic
1838 symbol table. It is called via elf_link_hash_traverse. */
1839
28caa186 1840static bfd_boolean
268b6b39 1841_bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 1842{
a50b1753 1843 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902
AM
1844
1845 /* Ignore indirect symbols. These are added by the versioning code. */
1846 if (h->root.type == bfd_link_hash_indirect)
1847 return TRUE;
1848
7686d77d
AM
1849 /* Ignore this if we won't export it. */
1850 if (!eif->info->export_dynamic && !h->dynamic)
1851 return TRUE;
45d6a902
AM
1852
1853 if (h->dynindx == -1
fd91d419
L
1854 && (h->def_regular || h->ref_regular)
1855 && ! bfd_hide_sym_by_version (eif->info->version_info,
1856 h->root.root.string))
45d6a902 1857 {
fd91d419 1858 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902 1859 {
fd91d419
L
1860 eif->failed = TRUE;
1861 return FALSE;
45d6a902
AM
1862 }
1863 }
1864
1865 return TRUE;
1866}
1867\f
1868/* Look through the symbols which are defined in other shared
1869 libraries and referenced here. Update the list of version
1870 dependencies. This will be put into the .gnu.version_r section.
1871 This function is called via elf_link_hash_traverse. */
1872
28caa186 1873static bfd_boolean
268b6b39
AM
1874_bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
1875 void *data)
45d6a902 1876{
a50b1753 1877 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
45d6a902
AM
1878 Elf_Internal_Verneed *t;
1879 Elf_Internal_Vernaux *a;
1880 bfd_size_type amt;
1881
45d6a902
AM
1882 /* We only care about symbols defined in shared objects with version
1883 information. */
f5385ebf
AM
1884 if (!h->def_dynamic
1885 || h->def_regular
45d6a902
AM
1886 || h->dynindx == -1
1887 || h->verinfo.verdef == NULL)
1888 return TRUE;
1889
1890 /* See if we already know about this version. */
28caa186
AM
1891 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
1892 t != NULL;
1893 t = t->vn_nextref)
45d6a902
AM
1894 {
1895 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
1896 continue;
1897
1898 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1899 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
1900 return TRUE;
1901
1902 break;
1903 }
1904
1905 /* This is a new version. Add it to tree we are building. */
1906
1907 if (t == NULL)
1908 {
1909 amt = sizeof *t;
a50b1753 1910 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
45d6a902
AM
1911 if (t == NULL)
1912 {
1913 rinfo->failed = TRUE;
1914 return FALSE;
1915 }
1916
1917 t->vn_bfd = h->verinfo.verdef->vd_bfd;
28caa186
AM
1918 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
1919 elf_tdata (rinfo->info->output_bfd)->verref = t;
45d6a902
AM
1920 }
1921
1922 amt = sizeof *a;
a50b1753 1923 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
14b1c01e
AM
1924 if (a == NULL)
1925 {
1926 rinfo->failed = TRUE;
1927 return FALSE;
1928 }
45d6a902
AM
1929
1930 /* Note that we are copying a string pointer here, and testing it
1931 above. If bfd_elf_string_from_elf_section is ever changed to
1932 discard the string data when low in memory, this will have to be
1933 fixed. */
1934 a->vna_nodename = h->verinfo.verdef->vd_nodename;
1935
1936 a->vna_flags = h->verinfo.verdef->vd_flags;
1937 a->vna_nextptr = t->vn_auxptr;
1938
1939 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
1940 ++rinfo->vers;
1941
1942 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
1943
1944 t->vn_auxptr = a;
1945
1946 return TRUE;
1947}
1948
1949/* Figure out appropriate versions for all the symbols. We may not
1950 have the version number script until we have read all of the input
1951 files, so until that point we don't know which symbols should be
1952 local. This function is called via elf_link_hash_traverse. */
1953
28caa186 1954static bfd_boolean
268b6b39 1955_bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
45d6a902 1956{
28caa186 1957 struct elf_info_failed *sinfo;
45d6a902 1958 struct bfd_link_info *info;
9c5bfbb7 1959 const struct elf_backend_data *bed;
45d6a902
AM
1960 struct elf_info_failed eif;
1961 char *p;
1962 bfd_size_type amt;
1963
a50b1753 1964 sinfo = (struct elf_info_failed *) data;
45d6a902
AM
1965 info = sinfo->info;
1966
45d6a902
AM
1967 /* Fix the symbol flags. */
1968 eif.failed = FALSE;
1969 eif.info = info;
1970 if (! _bfd_elf_fix_symbol_flags (h, &eif))
1971 {
1972 if (eif.failed)
1973 sinfo->failed = TRUE;
1974 return FALSE;
1975 }
1976
1977 /* We only need version numbers for symbols defined in regular
1978 objects. */
f5385ebf 1979 if (!h->def_regular)
45d6a902
AM
1980 return TRUE;
1981
28caa186 1982 bed = get_elf_backend_data (info->output_bfd);
45d6a902
AM
1983 p = strchr (h->root.root.string, ELF_VER_CHR);
1984 if (p != NULL && h->verinfo.vertree == NULL)
1985 {
1986 struct bfd_elf_version_tree *t;
1987 bfd_boolean hidden;
1988
1989 hidden = TRUE;
1990
1991 /* There are two consecutive ELF_VER_CHR characters if this is
1992 not a hidden symbol. */
1993 ++p;
1994 if (*p == ELF_VER_CHR)
1995 {
1996 hidden = FALSE;
1997 ++p;
1998 }
1999
2000 /* If there is no version string, we can just return out. */
2001 if (*p == '\0')
2002 {
2003 if (hidden)
f5385ebf 2004 h->hidden = 1;
45d6a902
AM
2005 return TRUE;
2006 }
2007
2008 /* Look for the version. If we find it, it is no longer weak. */
fd91d419 2009 for (t = sinfo->info->version_info; t != NULL; t = t->next)
45d6a902
AM
2010 {
2011 if (strcmp (t->name, p) == 0)
2012 {
2013 size_t len;
2014 char *alc;
2015 struct bfd_elf_version_expr *d;
2016
2017 len = p - h->root.root.string;
a50b1753 2018 alc = (char *) bfd_malloc (len);
45d6a902 2019 if (alc == NULL)
14b1c01e
AM
2020 {
2021 sinfo->failed = TRUE;
2022 return FALSE;
2023 }
45d6a902
AM
2024 memcpy (alc, h->root.root.string, len - 1);
2025 alc[len - 1] = '\0';
2026 if (alc[len - 2] == ELF_VER_CHR)
2027 alc[len - 2] = '\0';
2028
2029 h->verinfo.vertree = t;
2030 t->used = TRUE;
2031 d = NULL;
2032
108ba305
JJ
2033 if (t->globals.list != NULL)
2034 d = (*t->match) (&t->globals, NULL, alc);
45d6a902
AM
2035
2036 /* See if there is anything to force this symbol to
2037 local scope. */
108ba305 2038 if (d == NULL && t->locals.list != NULL)
45d6a902 2039 {
108ba305
JJ
2040 d = (*t->match) (&t->locals, NULL, alc);
2041 if (d != NULL
2042 && h->dynindx != -1
108ba305
JJ
2043 && ! info->export_dynamic)
2044 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
2045 }
2046
2047 free (alc);
2048 break;
2049 }
2050 }
2051
2052 /* If we are building an application, we need to create a
2053 version node for this version. */
36af4a4e 2054 if (t == NULL && info->executable)
45d6a902
AM
2055 {
2056 struct bfd_elf_version_tree **pp;
2057 int version_index;
2058
2059 /* If we aren't going to export this symbol, we don't need
2060 to worry about it. */
2061 if (h->dynindx == -1)
2062 return TRUE;
2063
2064 amt = sizeof *t;
a50b1753 2065 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd, amt);
45d6a902
AM
2066 if (t == NULL)
2067 {
2068 sinfo->failed = TRUE;
2069 return FALSE;
2070 }
2071
45d6a902 2072 t->name = p;
45d6a902
AM
2073 t->name_indx = (unsigned int) -1;
2074 t->used = TRUE;
2075
2076 version_index = 1;
2077 /* Don't count anonymous version tag. */
fd91d419
L
2078 if (sinfo->info->version_info != NULL
2079 && sinfo->info->version_info->vernum == 0)
45d6a902 2080 version_index = 0;
fd91d419
L
2081 for (pp = &sinfo->info->version_info;
2082 *pp != NULL;
2083 pp = &(*pp)->next)
45d6a902
AM
2084 ++version_index;
2085 t->vernum = version_index;
2086
2087 *pp = t;
2088
2089 h->verinfo.vertree = t;
2090 }
2091 else if (t == NULL)
2092 {
2093 /* We could not find the version for a symbol when
2094 generating a shared archive. Return an error. */
2095 (*_bfd_error_handler)
c55fe096 2096 (_("%B: version node not found for symbol %s"),
28caa186 2097 info->output_bfd, h->root.root.string);
45d6a902
AM
2098 bfd_set_error (bfd_error_bad_value);
2099 sinfo->failed = TRUE;
2100 return FALSE;
2101 }
2102
2103 if (hidden)
f5385ebf 2104 h->hidden = 1;
45d6a902
AM
2105 }
2106
2107 /* If we don't have a version for this symbol, see if we can find
2108 something. */
fd91d419 2109 if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL)
45d6a902 2110 {
1e8fa21e 2111 bfd_boolean hide;
ae5a3597 2112
fd91d419
L
2113 h->verinfo.vertree
2114 = bfd_find_version_for_sym (sinfo->info->version_info,
2115 h->root.root.string, &hide);
1e8fa21e
AM
2116 if (h->verinfo.vertree != NULL && hide)
2117 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
2118 }
2119
2120 return TRUE;
2121}
2122\f
45d6a902
AM
2123/* Read and swap the relocs from the section indicated by SHDR. This
2124 may be either a REL or a RELA section. The relocations are
2125 translated into RELA relocations and stored in INTERNAL_RELOCS,
2126 which should have already been allocated to contain enough space.
2127 The EXTERNAL_RELOCS are a buffer where the external form of the
2128 relocations should be stored.
2129
2130 Returns FALSE if something goes wrong. */
2131
2132static bfd_boolean
268b6b39 2133elf_link_read_relocs_from_section (bfd *abfd,
243ef1e0 2134 asection *sec,
268b6b39
AM
2135 Elf_Internal_Shdr *shdr,
2136 void *external_relocs,
2137 Elf_Internal_Rela *internal_relocs)
45d6a902 2138{
9c5bfbb7 2139 const struct elf_backend_data *bed;
268b6b39 2140 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
45d6a902
AM
2141 const bfd_byte *erela;
2142 const bfd_byte *erelaend;
2143 Elf_Internal_Rela *irela;
243ef1e0
L
2144 Elf_Internal_Shdr *symtab_hdr;
2145 size_t nsyms;
45d6a902 2146
45d6a902
AM
2147 /* Position ourselves at the start of the section. */
2148 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2149 return FALSE;
2150
2151 /* Read the relocations. */
2152 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2153 return FALSE;
2154
243ef1e0 2155 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
ce98a316 2156 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
243ef1e0 2157
45d6a902
AM
2158 bed = get_elf_backend_data (abfd);
2159
2160 /* Convert the external relocations to the internal format. */
2161 if (shdr->sh_entsize == bed->s->sizeof_rel)
2162 swap_in = bed->s->swap_reloc_in;
2163 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2164 swap_in = bed->s->swap_reloca_in;
2165 else
2166 {
2167 bfd_set_error (bfd_error_wrong_format);
2168 return FALSE;
2169 }
2170
a50b1753 2171 erela = (const bfd_byte *) external_relocs;
51992aec 2172 erelaend = erela + shdr->sh_size;
45d6a902
AM
2173 irela = internal_relocs;
2174 while (erela < erelaend)
2175 {
243ef1e0
L
2176 bfd_vma r_symndx;
2177
45d6a902 2178 (*swap_in) (abfd, erela, irela);
243ef1e0
L
2179 r_symndx = ELF32_R_SYM (irela->r_info);
2180 if (bed->s->arch_size == 64)
2181 r_symndx >>= 24;
ce98a316
NC
2182 if (nsyms > 0)
2183 {
2184 if ((size_t) r_symndx >= nsyms)
2185 {
2186 (*_bfd_error_handler)
2187 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2188 " for offset 0x%lx in section `%A'"),
2189 abfd, sec,
2190 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2191 bfd_set_error (bfd_error_bad_value);
2192 return FALSE;
2193 }
2194 }
cf35638d 2195 else if (r_symndx != STN_UNDEF)
243ef1e0
L
2196 {
2197 (*_bfd_error_handler)
ce98a316
NC
2198 (_("%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A'"
2199 " when the object file has no symbol table"),
d003868e
AM
2200 abfd, sec,
2201 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
243ef1e0
L
2202 bfd_set_error (bfd_error_bad_value);
2203 return FALSE;
2204 }
45d6a902
AM
2205 irela += bed->s->int_rels_per_ext_rel;
2206 erela += shdr->sh_entsize;
2207 }
2208
2209 return TRUE;
2210}
2211
2212/* Read and swap the relocs for a section O. They may have been
2213 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2214 not NULL, they are used as buffers to read into. They are known to
2215 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2216 the return value is allocated using either malloc or bfd_alloc,
2217 according to the KEEP_MEMORY argument. If O has two relocation
2218 sections (both REL and RELA relocations), then the REL_HDR
2219 relocations will appear first in INTERNAL_RELOCS, followed by the
d4730f92 2220 RELA_HDR relocations. */
45d6a902
AM
2221
2222Elf_Internal_Rela *
268b6b39
AM
2223_bfd_elf_link_read_relocs (bfd *abfd,
2224 asection *o,
2225 void *external_relocs,
2226 Elf_Internal_Rela *internal_relocs,
2227 bfd_boolean keep_memory)
45d6a902 2228{
268b6b39 2229 void *alloc1 = NULL;
45d6a902 2230 Elf_Internal_Rela *alloc2 = NULL;
9c5bfbb7 2231 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92
BS
2232 struct bfd_elf_section_data *esdo = elf_section_data (o);
2233 Elf_Internal_Rela *internal_rela_relocs;
45d6a902 2234
d4730f92
BS
2235 if (esdo->relocs != NULL)
2236 return esdo->relocs;
45d6a902
AM
2237
2238 if (o->reloc_count == 0)
2239 return NULL;
2240
45d6a902
AM
2241 if (internal_relocs == NULL)
2242 {
2243 bfd_size_type size;
2244
2245 size = o->reloc_count;
2246 size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2247 if (keep_memory)
a50b1753 2248 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
45d6a902 2249 else
a50b1753 2250 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
45d6a902
AM
2251 if (internal_relocs == NULL)
2252 goto error_return;
2253 }
2254
2255 if (external_relocs == NULL)
2256 {
d4730f92
BS
2257 bfd_size_type size = 0;
2258
2259 if (esdo->rel.hdr)
2260 size += esdo->rel.hdr->sh_size;
2261 if (esdo->rela.hdr)
2262 size += esdo->rela.hdr->sh_size;
45d6a902 2263
268b6b39 2264 alloc1 = bfd_malloc (size);
45d6a902
AM
2265 if (alloc1 == NULL)
2266 goto error_return;
2267 external_relocs = alloc1;
2268 }
2269
d4730f92
BS
2270 internal_rela_relocs = internal_relocs;
2271 if (esdo->rel.hdr)
2272 {
2273 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2274 external_relocs,
2275 internal_relocs))
2276 goto error_return;
2277 external_relocs = (((bfd_byte *) external_relocs)
2278 + esdo->rel.hdr->sh_size);
2279 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2280 * bed->s->int_rels_per_ext_rel);
2281 }
2282
2283 if (esdo->rela.hdr
2284 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2285 external_relocs,
2286 internal_rela_relocs)))
45d6a902
AM
2287 goto error_return;
2288
2289 /* Cache the results for next time, if we can. */
2290 if (keep_memory)
d4730f92 2291 esdo->relocs = internal_relocs;
45d6a902
AM
2292
2293 if (alloc1 != NULL)
2294 free (alloc1);
2295
2296 /* Don't free alloc2, since if it was allocated we are passing it
2297 back (under the name of internal_relocs). */
2298
2299 return internal_relocs;
2300
2301 error_return:
2302 if (alloc1 != NULL)
2303 free (alloc1);
2304 if (alloc2 != NULL)
4dd07732
AM
2305 {
2306 if (keep_memory)
2307 bfd_release (abfd, alloc2);
2308 else
2309 free (alloc2);
2310 }
45d6a902
AM
2311 return NULL;
2312}
2313
2314/* Compute the size of, and allocate space for, REL_HDR which is the
2315 section header for a section containing relocations for O. */
2316
28caa186 2317static bfd_boolean
268b6b39 2318_bfd_elf_link_size_reloc_section (bfd *abfd,
d4730f92 2319 struct bfd_elf_section_reloc_data *reldata)
45d6a902 2320{
d4730f92 2321 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
45d6a902
AM
2322
2323 /* That allows us to calculate the size of the section. */
d4730f92 2324 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
45d6a902
AM
2325
2326 /* The contents field must last into write_object_contents, so we
2327 allocate it with bfd_alloc rather than malloc. Also since we
2328 cannot be sure that the contents will actually be filled in,
2329 we zero the allocated space. */
a50b1753 2330 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
45d6a902
AM
2331 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2332 return FALSE;
2333
d4730f92 2334 if (reldata->hashes == NULL && reldata->count)
45d6a902
AM
2335 {
2336 struct elf_link_hash_entry **p;
2337
a50b1753 2338 p = (struct elf_link_hash_entry **)
d4730f92 2339 bfd_zmalloc (reldata->count * sizeof (struct elf_link_hash_entry *));
45d6a902
AM
2340 if (p == NULL)
2341 return FALSE;
2342
d4730f92 2343 reldata->hashes = p;
45d6a902
AM
2344 }
2345
2346 return TRUE;
2347}
2348
2349/* Copy the relocations indicated by the INTERNAL_RELOCS (which
2350 originated from the section given by INPUT_REL_HDR) to the
2351 OUTPUT_BFD. */
2352
2353bfd_boolean
268b6b39
AM
2354_bfd_elf_link_output_relocs (bfd *output_bfd,
2355 asection *input_section,
2356 Elf_Internal_Shdr *input_rel_hdr,
eac338cf
PB
2357 Elf_Internal_Rela *internal_relocs,
2358 struct elf_link_hash_entry **rel_hash
2359 ATTRIBUTE_UNUSED)
45d6a902
AM
2360{
2361 Elf_Internal_Rela *irela;
2362 Elf_Internal_Rela *irelaend;
2363 bfd_byte *erel;
d4730f92 2364 struct bfd_elf_section_reloc_data *output_reldata;
45d6a902 2365 asection *output_section;
9c5bfbb7 2366 const struct elf_backend_data *bed;
268b6b39 2367 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
d4730f92 2368 struct bfd_elf_section_data *esdo;
45d6a902
AM
2369
2370 output_section = input_section->output_section;
45d6a902 2371
d4730f92
BS
2372 bed = get_elf_backend_data (output_bfd);
2373 esdo = elf_section_data (output_section);
2374 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2375 {
d4730f92
BS
2376 output_reldata = &esdo->rel;
2377 swap_out = bed->s->swap_reloc_out;
45d6a902 2378 }
d4730f92
BS
2379 else if (esdo->rela.hdr
2380 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2381 {
d4730f92
BS
2382 output_reldata = &esdo->rela;
2383 swap_out = bed->s->swap_reloca_out;
45d6a902
AM
2384 }
2385 else
2386 {
2387 (*_bfd_error_handler)
d003868e
AM
2388 (_("%B: relocation size mismatch in %B section %A"),
2389 output_bfd, input_section->owner, input_section);
297d8443 2390 bfd_set_error (bfd_error_wrong_format);
45d6a902
AM
2391 return FALSE;
2392 }
2393
d4730f92
BS
2394 erel = output_reldata->hdr->contents;
2395 erel += output_reldata->count * input_rel_hdr->sh_entsize;
45d6a902
AM
2396 irela = internal_relocs;
2397 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2398 * bed->s->int_rels_per_ext_rel);
2399 while (irela < irelaend)
2400 {
2401 (*swap_out) (output_bfd, irela, erel);
2402 irela += bed->s->int_rels_per_ext_rel;
2403 erel += input_rel_hdr->sh_entsize;
2404 }
2405
2406 /* Bump the counter, so that we know where to add the next set of
2407 relocations. */
d4730f92 2408 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
45d6a902
AM
2409
2410 return TRUE;
2411}
2412\f
508c3946
L
2413/* Make weak undefined symbols in PIE dynamic. */
2414
2415bfd_boolean
2416_bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2417 struct elf_link_hash_entry *h)
2418{
2419 if (info->pie
2420 && h->dynindx == -1
2421 && h->root.type == bfd_link_hash_undefweak)
2422 return bfd_elf_link_record_dynamic_symbol (info, h);
2423
2424 return TRUE;
2425}
2426
45d6a902
AM
2427/* Fix up the flags for a symbol. This handles various cases which
2428 can only be fixed after all the input files are seen. This is
2429 currently called by both adjust_dynamic_symbol and
2430 assign_sym_version, which is unnecessary but perhaps more robust in
2431 the face of future changes. */
2432
28caa186 2433static bfd_boolean
268b6b39
AM
2434_bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2435 struct elf_info_failed *eif)
45d6a902 2436{
33774f08 2437 const struct elf_backend_data *bed;
508c3946 2438
45d6a902
AM
2439 /* If this symbol was mentioned in a non-ELF file, try to set
2440 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2441 permit a non-ELF file to correctly refer to a symbol defined in
2442 an ELF dynamic object. */
f5385ebf 2443 if (h->non_elf)
45d6a902
AM
2444 {
2445 while (h->root.type == bfd_link_hash_indirect)
2446 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2447
2448 if (h->root.type != bfd_link_hash_defined
2449 && h->root.type != bfd_link_hash_defweak)
f5385ebf
AM
2450 {
2451 h->ref_regular = 1;
2452 h->ref_regular_nonweak = 1;
2453 }
45d6a902
AM
2454 else
2455 {
2456 if (h->root.u.def.section->owner != NULL
2457 && (bfd_get_flavour (h->root.u.def.section->owner)
2458 == bfd_target_elf_flavour))
f5385ebf
AM
2459 {
2460 h->ref_regular = 1;
2461 h->ref_regular_nonweak = 1;
2462 }
45d6a902 2463 else
f5385ebf 2464 h->def_regular = 1;
45d6a902
AM
2465 }
2466
2467 if (h->dynindx == -1
f5385ebf
AM
2468 && (h->def_dynamic
2469 || h->ref_dynamic))
45d6a902 2470 {
c152c796 2471 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902
AM
2472 {
2473 eif->failed = TRUE;
2474 return FALSE;
2475 }
2476 }
2477 }
2478 else
2479 {
f5385ebf 2480 /* Unfortunately, NON_ELF is only correct if the symbol
45d6a902
AM
2481 was first seen in a non-ELF file. Fortunately, if the symbol
2482 was first seen in an ELF file, we're probably OK unless the
2483 symbol was defined in a non-ELF file. Catch that case here.
2484 FIXME: We're still in trouble if the symbol was first seen in
2485 a dynamic object, and then later in a non-ELF regular object. */
2486 if ((h->root.type == bfd_link_hash_defined
2487 || h->root.type == bfd_link_hash_defweak)
f5385ebf 2488 && !h->def_regular
45d6a902
AM
2489 && (h->root.u.def.section->owner != NULL
2490 ? (bfd_get_flavour (h->root.u.def.section->owner)
2491 != bfd_target_elf_flavour)
2492 : (bfd_is_abs_section (h->root.u.def.section)
f5385ebf
AM
2493 && !h->def_dynamic)))
2494 h->def_regular = 1;
45d6a902
AM
2495 }
2496
508c3946 2497 /* Backend specific symbol fixup. */
33774f08
AM
2498 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2499 if (bed->elf_backend_fixup_symbol
2500 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2501 return FALSE;
508c3946 2502
45d6a902
AM
2503 /* If this is a final link, and the symbol was defined as a common
2504 symbol in a regular object file, and there was no definition in
2505 any dynamic object, then the linker will have allocated space for
f5385ebf 2506 the symbol in a common section but the DEF_REGULAR
45d6a902
AM
2507 flag will not have been set. */
2508 if (h->root.type == bfd_link_hash_defined
f5385ebf
AM
2509 && !h->def_regular
2510 && h->ref_regular
2511 && !h->def_dynamic
45d6a902 2512 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
f5385ebf 2513 h->def_regular = 1;
45d6a902
AM
2514
2515 /* If -Bsymbolic was used (which means to bind references to global
2516 symbols to the definition within the shared object), and this
2517 symbol was defined in a regular object, then it actually doesn't
9c7a29a3
AM
2518 need a PLT entry. Likewise, if the symbol has non-default
2519 visibility. If the symbol has hidden or internal visibility, we
c1be741f 2520 will force it local. */
f5385ebf 2521 if (h->needs_plt
45d6a902 2522 && eif->info->shared
0eddce27 2523 && is_elf_hash_table (eif->info->hash)
55255dae 2524 && (SYMBOLIC_BIND (eif->info, h)
c1be741f 2525 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
f5385ebf 2526 && h->def_regular)
45d6a902 2527 {
45d6a902
AM
2528 bfd_boolean force_local;
2529
45d6a902
AM
2530 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2531 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2532 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2533 }
2534
2535 /* If a weak undefined symbol has non-default visibility, we also
2536 hide it from the dynamic linker. */
9c7a29a3 2537 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902 2538 && h->root.type == bfd_link_hash_undefweak)
33774f08 2539 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
45d6a902
AM
2540
2541 /* If this is a weak defined symbol in a dynamic object, and we know
2542 the real definition in the dynamic object, copy interesting flags
2543 over to the real definition. */
f6e332e6 2544 if (h->u.weakdef != NULL)
45d6a902 2545 {
45d6a902
AM
2546 /* If the real definition is defined by a regular object file,
2547 don't do anything special. See the longer description in
2548 _bfd_elf_adjust_dynamic_symbol, below. */
4e6b54a6 2549 if (h->u.weakdef->def_regular)
f6e332e6 2550 h->u.weakdef = NULL;
45d6a902 2551 else
a26587ba 2552 {
4e6b54a6
AM
2553 struct elf_link_hash_entry *weakdef = h->u.weakdef;
2554
2555 while (h->root.type == bfd_link_hash_indirect)
2556 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2557
2558 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2559 || h->root.type == bfd_link_hash_defweak);
2560 BFD_ASSERT (weakdef->def_dynamic);
a26587ba
RS
2561 BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2562 || weakdef->root.type == bfd_link_hash_defweak);
2563 (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h);
2564 }
45d6a902
AM
2565 }
2566
2567 return TRUE;
2568}
2569
2570/* Make the backend pick a good value for a dynamic symbol. This is
2571 called via elf_link_hash_traverse, and also calls itself
2572 recursively. */
2573
28caa186 2574static bfd_boolean
268b6b39 2575_bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 2576{
a50b1753 2577 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902 2578 bfd *dynobj;
9c5bfbb7 2579 const struct elf_backend_data *bed;
45d6a902 2580
0eddce27 2581 if (! is_elf_hash_table (eif->info->hash))
45d6a902
AM
2582 return FALSE;
2583
45d6a902
AM
2584 /* Ignore indirect symbols. These are added by the versioning code. */
2585 if (h->root.type == bfd_link_hash_indirect)
2586 return TRUE;
2587
2588 /* Fix the symbol flags. */
2589 if (! _bfd_elf_fix_symbol_flags (h, eif))
2590 return FALSE;
2591
2592 /* If this symbol does not require a PLT entry, and it is not
2593 defined by a dynamic object, or is not referenced by a regular
2594 object, ignore it. We do have to handle a weak defined symbol,
2595 even if no regular object refers to it, if we decided to add it
2596 to the dynamic symbol table. FIXME: Do we normally need to worry
2597 about symbols which are defined by one dynamic object and
2598 referenced by another one? */
f5385ebf 2599 if (!h->needs_plt
91e21fb7 2600 && h->type != STT_GNU_IFUNC
f5385ebf
AM
2601 && (h->def_regular
2602 || !h->def_dynamic
2603 || (!h->ref_regular
f6e332e6 2604 && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
45d6a902 2605 {
a6aa5195 2606 h->plt = elf_hash_table (eif->info)->init_plt_offset;
45d6a902
AM
2607 return TRUE;
2608 }
2609
2610 /* If we've already adjusted this symbol, don't do it again. This
2611 can happen via a recursive call. */
f5385ebf 2612 if (h->dynamic_adjusted)
45d6a902
AM
2613 return TRUE;
2614
2615 /* Don't look at this symbol again. Note that we must set this
2616 after checking the above conditions, because we may look at a
2617 symbol once, decide not to do anything, and then get called
2618 recursively later after REF_REGULAR is set below. */
f5385ebf 2619 h->dynamic_adjusted = 1;
45d6a902
AM
2620
2621 /* If this is a weak definition, and we know a real definition, and
2622 the real symbol is not itself defined by a regular object file,
2623 then get a good value for the real definition. We handle the
2624 real symbol first, for the convenience of the backend routine.
2625
2626 Note that there is a confusing case here. If the real definition
2627 is defined by a regular object file, we don't get the real symbol
2628 from the dynamic object, but we do get the weak symbol. If the
2629 processor backend uses a COPY reloc, then if some routine in the
2630 dynamic object changes the real symbol, we will not see that
2631 change in the corresponding weak symbol. This is the way other
2632 ELF linkers work as well, and seems to be a result of the shared
2633 library model.
2634
2635 I will clarify this issue. Most SVR4 shared libraries define the
2636 variable _timezone and define timezone as a weak synonym. The
2637 tzset call changes _timezone. If you write
2638 extern int timezone;
2639 int _timezone = 5;
2640 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2641 you might expect that, since timezone is a synonym for _timezone,
2642 the same number will print both times. However, if the processor
2643 backend uses a COPY reloc, then actually timezone will be copied
2644 into your process image, and, since you define _timezone
2645 yourself, _timezone will not. Thus timezone and _timezone will
2646 wind up at different memory locations. The tzset call will set
2647 _timezone, leaving timezone unchanged. */
2648
f6e332e6 2649 if (h->u.weakdef != NULL)
45d6a902 2650 {
ec24dc88
AM
2651 /* If we get to this point, there is an implicit reference to
2652 H->U.WEAKDEF by a regular object file via the weak symbol H. */
f6e332e6 2653 h->u.weakdef->ref_regular = 1;
45d6a902 2654
ec24dc88
AM
2655 /* Ensure that the backend adjust_dynamic_symbol function sees
2656 H->U.WEAKDEF before H by recursively calling ourselves. */
f6e332e6 2657 if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
45d6a902
AM
2658 return FALSE;
2659 }
2660
2661 /* If a symbol has no type and no size and does not require a PLT
2662 entry, then we are probably about to do the wrong thing here: we
2663 are probably going to create a COPY reloc for an empty object.
2664 This case can arise when a shared object is built with assembly
2665 code, and the assembly code fails to set the symbol type. */
2666 if (h->size == 0
2667 && h->type == STT_NOTYPE
f5385ebf 2668 && !h->needs_plt)
45d6a902
AM
2669 (*_bfd_error_handler)
2670 (_("warning: type and size of dynamic symbol `%s' are not defined"),
2671 h->root.root.string);
2672
2673 dynobj = elf_hash_table (eif->info)->dynobj;
2674 bed = get_elf_backend_data (dynobj);
e7c33416 2675
45d6a902
AM
2676 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2677 {
2678 eif->failed = TRUE;
2679 return FALSE;
2680 }
2681
2682 return TRUE;
2683}
2684
027297b7
L
2685/* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
2686 DYNBSS. */
2687
2688bfd_boolean
2689_bfd_elf_adjust_dynamic_copy (struct elf_link_hash_entry *h,
2690 asection *dynbss)
2691{
91ac5911 2692 unsigned int power_of_two;
027297b7
L
2693 bfd_vma mask;
2694 asection *sec = h->root.u.def.section;
2695
2696 /* The section aligment of definition is the maximum alignment
91ac5911
L
2697 requirement of symbols defined in the section. Since we don't
2698 know the symbol alignment requirement, we start with the
2699 maximum alignment and check low bits of the symbol address
2700 for the minimum alignment. */
2701 power_of_two = bfd_get_section_alignment (sec->owner, sec);
2702 mask = ((bfd_vma) 1 << power_of_two) - 1;
2703 while ((h->root.u.def.value & mask) != 0)
2704 {
2705 mask >>= 1;
2706 --power_of_two;
2707 }
027297b7 2708
91ac5911
L
2709 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
2710 dynbss))
027297b7
L
2711 {
2712 /* Adjust the section alignment if needed. */
2713 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
91ac5911 2714 power_of_two))
027297b7
L
2715 return FALSE;
2716 }
2717
91ac5911 2718 /* We make sure that the symbol will be aligned properly. */
027297b7
L
2719 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
2720
2721 /* Define the symbol as being at this point in DYNBSS. */
2722 h->root.u.def.section = dynbss;
2723 h->root.u.def.value = dynbss->size;
2724
2725 /* Increment the size of DYNBSS to make room for the symbol. */
2726 dynbss->size += h->size;
2727
2728 return TRUE;
2729}
2730
45d6a902
AM
2731/* Adjust all external symbols pointing into SEC_MERGE sections
2732 to reflect the object merging within the sections. */
2733
28caa186 2734static bfd_boolean
268b6b39 2735_bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
45d6a902
AM
2736{
2737 asection *sec;
2738
45d6a902
AM
2739 if ((h->root.type == bfd_link_hash_defined
2740 || h->root.type == bfd_link_hash_defweak)
2741 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
dbaa2011 2742 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
45d6a902 2743 {
a50b1753 2744 bfd *output_bfd = (bfd *) data;
45d6a902
AM
2745
2746 h->root.u.def.value =
2747 _bfd_merged_section_offset (output_bfd,
2748 &h->root.u.def.section,
2749 elf_section_data (sec)->sec_info,
753731ee 2750 h->root.u.def.value);
45d6a902
AM
2751 }
2752
2753 return TRUE;
2754}
986a241f
RH
2755
2756/* Returns false if the symbol referred to by H should be considered
2757 to resolve local to the current module, and true if it should be
2758 considered to bind dynamically. */
2759
2760bfd_boolean
268b6b39
AM
2761_bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
2762 struct bfd_link_info *info,
89a2ee5a 2763 bfd_boolean not_local_protected)
986a241f
RH
2764{
2765 bfd_boolean binding_stays_local_p;
fcb93ecf
PB
2766 const struct elf_backend_data *bed;
2767 struct elf_link_hash_table *hash_table;
986a241f
RH
2768
2769 if (h == NULL)
2770 return FALSE;
2771
2772 while (h->root.type == bfd_link_hash_indirect
2773 || h->root.type == bfd_link_hash_warning)
2774 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2775
2776 /* If it was forced local, then clearly it's not dynamic. */
2777 if (h->dynindx == -1)
2778 return FALSE;
f5385ebf 2779 if (h->forced_local)
986a241f
RH
2780 return FALSE;
2781
2782 /* Identify the cases where name binding rules say that a
2783 visible symbol resolves locally. */
55255dae 2784 binding_stays_local_p = info->executable || SYMBOLIC_BIND (info, h);
986a241f
RH
2785
2786 switch (ELF_ST_VISIBILITY (h->other))
2787 {
2788 case STV_INTERNAL:
2789 case STV_HIDDEN:
2790 return FALSE;
2791
2792 case STV_PROTECTED:
fcb93ecf
PB
2793 hash_table = elf_hash_table (info);
2794 if (!is_elf_hash_table (hash_table))
2795 return FALSE;
2796
2797 bed = get_elf_backend_data (hash_table->dynobj);
2798
986a241f
RH
2799 /* Proper resolution for function pointer equality may require
2800 that these symbols perhaps be resolved dynamically, even though
2801 we should be resolving them to the current module. */
89a2ee5a 2802 if (!not_local_protected || !bed->is_function_type (h->type))
986a241f
RH
2803 binding_stays_local_p = TRUE;
2804 break;
2805
2806 default:
986a241f
RH
2807 break;
2808 }
2809
aa37626c 2810 /* If it isn't defined locally, then clearly it's dynamic. */
89a2ee5a 2811 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
aa37626c
L
2812 return TRUE;
2813
986a241f
RH
2814 /* Otherwise, the symbol is dynamic if binding rules don't tell
2815 us that it remains local. */
2816 return !binding_stays_local_p;
2817}
f6c52c13
AM
2818
2819/* Return true if the symbol referred to by H should be considered
2820 to resolve local to the current module, and false otherwise. Differs
2821 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2e76e85a 2822 undefined symbols. The two functions are virtually identical except
89a2ee5a
AM
2823 for the place where forced_local and dynindx == -1 are tested. If
2824 either of those tests are true, _bfd_elf_dynamic_symbol_p will say
2825 the symbol is local, while _bfd_elf_symbol_refs_local_p will say
2826 the symbol is local only for defined symbols.
2827 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
2828 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
2829 treatment of undefined weak symbols. For those that do not make
2830 undefined weak symbols dynamic, both functions may return false. */
f6c52c13
AM
2831
2832bfd_boolean
268b6b39
AM
2833_bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
2834 struct bfd_link_info *info,
2835 bfd_boolean local_protected)
f6c52c13 2836{
fcb93ecf
PB
2837 const struct elf_backend_data *bed;
2838 struct elf_link_hash_table *hash_table;
2839
f6c52c13
AM
2840 /* If it's a local sym, of course we resolve locally. */
2841 if (h == NULL)
2842 return TRUE;
2843
d95edcac
L
2844 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
2845 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
2846 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
2847 return TRUE;
2848
7e2294f9
AO
2849 /* Common symbols that become definitions don't get the DEF_REGULAR
2850 flag set, so test it first, and don't bail out. */
2851 if (ELF_COMMON_DEF_P (h))
2852 /* Do nothing. */;
f6c52c13 2853 /* If we don't have a definition in a regular file, then we can't
49ff44d6
L
2854 resolve locally. The sym is either undefined or dynamic. */
2855 else if (!h->def_regular)
f6c52c13
AM
2856 return FALSE;
2857
2858 /* Forced local symbols resolve locally. */
f5385ebf 2859 if (h->forced_local)
f6c52c13
AM
2860 return TRUE;
2861
2862 /* As do non-dynamic symbols. */
2863 if (h->dynindx == -1)
2864 return TRUE;
2865
2866 /* At this point, we know the symbol is defined and dynamic. In an
2867 executable it must resolve locally, likewise when building symbolic
2868 shared libraries. */
55255dae 2869 if (info->executable || SYMBOLIC_BIND (info, h))
f6c52c13
AM
2870 return TRUE;
2871
2872 /* Now deal with defined dynamic symbols in shared libraries. Ones
2873 with default visibility might not resolve locally. */
2874 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
2875 return FALSE;
2876
fcb93ecf
PB
2877 hash_table = elf_hash_table (info);
2878 if (!is_elf_hash_table (hash_table))
2879 return TRUE;
2880
2881 bed = get_elf_backend_data (hash_table->dynobj);
2882
1c16dfa5 2883 /* STV_PROTECTED non-function symbols are local. */
fcb93ecf 2884 if (!bed->is_function_type (h->type))
1c16dfa5
L
2885 return TRUE;
2886
f6c52c13 2887 /* Function pointer equality tests may require that STV_PROTECTED
2676a7d9
AM
2888 symbols be treated as dynamic symbols. If the address of a
2889 function not defined in an executable is set to that function's
2890 plt entry in the executable, then the address of the function in
2891 a shared library must also be the plt entry in the executable. */
f6c52c13
AM
2892 return local_protected;
2893}
e1918d23
AM
2894
2895/* Caches some TLS segment info, and ensures that the TLS segment vma is
2896 aligned. Returns the first TLS output section. */
2897
2898struct bfd_section *
2899_bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
2900{
2901 struct bfd_section *sec, *tls;
2902 unsigned int align = 0;
2903
2904 for (sec = obfd->sections; sec != NULL; sec = sec->next)
2905 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
2906 break;
2907 tls = sec;
2908
2909 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
2910 if (sec->alignment_power > align)
2911 align = sec->alignment_power;
2912
2913 elf_hash_table (info)->tls_sec = tls;
2914
2915 /* Ensure the alignment of the first section is the largest alignment,
2916 so that the tls segment starts aligned. */
2917 if (tls != NULL)
2918 tls->alignment_power = align;
2919
2920 return tls;
2921}
0ad989f9
L
2922
2923/* Return TRUE iff this is a non-common, definition of a non-function symbol. */
2924static bfd_boolean
2925is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
2926 Elf_Internal_Sym *sym)
2927{
a4d8e49b
L
2928 const struct elf_backend_data *bed;
2929
0ad989f9
L
2930 /* Local symbols do not count, but target specific ones might. */
2931 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
2932 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
2933 return FALSE;
2934
fcb93ecf 2935 bed = get_elf_backend_data (abfd);
0ad989f9 2936 /* Function symbols do not count. */
fcb93ecf 2937 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
0ad989f9
L
2938 return FALSE;
2939
2940 /* If the section is undefined, then so is the symbol. */
2941 if (sym->st_shndx == SHN_UNDEF)
2942 return FALSE;
2943
2944 /* If the symbol is defined in the common section, then
2945 it is a common definition and so does not count. */
a4d8e49b 2946 if (bed->common_definition (sym))
0ad989f9
L
2947 return FALSE;
2948
2949 /* If the symbol is in a target specific section then we
2950 must rely upon the backend to tell us what it is. */
2951 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
2952 /* FIXME - this function is not coded yet:
2953
2954 return _bfd_is_global_symbol_definition (abfd, sym);
2955
2956 Instead for now assume that the definition is not global,
2957 Even if this is wrong, at least the linker will behave
2958 in the same way that it used to do. */
2959 return FALSE;
2960
2961 return TRUE;
2962}
2963
2964/* Search the symbol table of the archive element of the archive ABFD
2965 whose archive map contains a mention of SYMDEF, and determine if
2966 the symbol is defined in this element. */
2967static bfd_boolean
2968elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
2969{
2970 Elf_Internal_Shdr * hdr;
2971 bfd_size_type symcount;
2972 bfd_size_type extsymcount;
2973 bfd_size_type extsymoff;
2974 Elf_Internal_Sym *isymbuf;
2975 Elf_Internal_Sym *isym;
2976 Elf_Internal_Sym *isymend;
2977 bfd_boolean result;
2978
2979 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
2980 if (abfd == NULL)
2981 return FALSE;
2982
2983 if (! bfd_check_format (abfd, bfd_object))
2984 return FALSE;
2985
2986 /* If we have already included the element containing this symbol in the
2987 link then we do not need to include it again. Just claim that any symbol
2988 it contains is not a definition, so that our caller will not decide to
2989 (re)include this element. */
2990 if (abfd->archive_pass)
2991 return FALSE;
2992
2993 /* Select the appropriate symbol table. */
2994 if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
2995 hdr = &elf_tdata (abfd)->symtab_hdr;
2996 else
2997 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2998
2999 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3000
3001 /* The sh_info field of the symtab header tells us where the
3002 external symbols start. We don't care about the local symbols. */
3003 if (elf_bad_symtab (abfd))
3004 {
3005 extsymcount = symcount;
3006 extsymoff = 0;
3007 }
3008 else
3009 {
3010 extsymcount = symcount - hdr->sh_info;
3011 extsymoff = hdr->sh_info;
3012 }
3013
3014 if (extsymcount == 0)
3015 return FALSE;
3016
3017 /* Read in the symbol table. */
3018 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3019 NULL, NULL, NULL);
3020 if (isymbuf == NULL)
3021 return FALSE;
3022
3023 /* Scan the symbol table looking for SYMDEF. */
3024 result = FALSE;
3025 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
3026 {
3027 const char *name;
3028
3029 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3030 isym->st_name);
3031 if (name == NULL)
3032 break;
3033
3034 if (strcmp (name, symdef->name) == 0)
3035 {
3036 result = is_global_data_symbol_definition (abfd, isym);
3037 break;
3038 }
3039 }
3040
3041 free (isymbuf);
3042
3043 return result;
3044}
3045\f
5a580b3a
AM
3046/* Add an entry to the .dynamic table. */
3047
3048bfd_boolean
3049_bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3050 bfd_vma tag,
3051 bfd_vma val)
3052{
3053 struct elf_link_hash_table *hash_table;
3054 const struct elf_backend_data *bed;
3055 asection *s;
3056 bfd_size_type newsize;
3057 bfd_byte *newcontents;
3058 Elf_Internal_Dyn dyn;
3059
3060 hash_table = elf_hash_table (info);
3061 if (! is_elf_hash_table (hash_table))
3062 return FALSE;
3063
3064 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3065 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
5a580b3a
AM
3066 BFD_ASSERT (s != NULL);
3067
eea6121a 3068 newsize = s->size + bed->s->sizeof_dyn;
a50b1753 3069 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
5a580b3a
AM
3070 if (newcontents == NULL)
3071 return FALSE;
3072
3073 dyn.d_tag = tag;
3074 dyn.d_un.d_val = val;
eea6121a 3075 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
5a580b3a 3076
eea6121a 3077 s->size = newsize;
5a580b3a
AM
3078 s->contents = newcontents;
3079
3080 return TRUE;
3081}
3082
3083/* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3084 otherwise just check whether one already exists. Returns -1 on error,
3085 1 if a DT_NEEDED tag already exists, and 0 on success. */
3086
4ad4eba5 3087static int
7e9f0867
AM
3088elf_add_dt_needed_tag (bfd *abfd,
3089 struct bfd_link_info *info,
4ad4eba5
AM
3090 const char *soname,
3091 bfd_boolean do_it)
5a580b3a
AM
3092{
3093 struct elf_link_hash_table *hash_table;
3094 bfd_size_type oldsize;
3095 bfd_size_type strindex;
3096
7e9f0867
AM
3097 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3098 return -1;
3099
5a580b3a
AM
3100 hash_table = elf_hash_table (info);
3101 oldsize = _bfd_elf_strtab_size (hash_table->dynstr);
3102 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3103 if (strindex == (bfd_size_type) -1)
3104 return -1;
3105
3106 if (oldsize == _bfd_elf_strtab_size (hash_table->dynstr))
3107 {
3108 asection *sdyn;
3109 const struct elf_backend_data *bed;
3110 bfd_byte *extdyn;
3111
3112 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3113 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
7e9f0867
AM
3114 if (sdyn != NULL)
3115 for (extdyn = sdyn->contents;
3116 extdyn < sdyn->contents + sdyn->size;
3117 extdyn += bed->s->sizeof_dyn)
3118 {
3119 Elf_Internal_Dyn dyn;
5a580b3a 3120
7e9f0867
AM
3121 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3122 if (dyn.d_tag == DT_NEEDED
3123 && dyn.d_un.d_val == strindex)
3124 {
3125 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3126 return 1;
3127 }
3128 }
5a580b3a
AM
3129 }
3130
3131 if (do_it)
3132 {
7e9f0867
AM
3133 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3134 return -1;
3135
5a580b3a
AM
3136 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3137 return -1;
3138 }
3139 else
3140 /* We were just checking for existence of the tag. */
3141 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3142
3143 return 0;
3144}
3145
010e5ae2
AM
3146static bfd_boolean
3147on_needed_list (const char *soname, struct bfd_link_needed_list *needed)
3148{
3149 for (; needed != NULL; needed = needed->next)
3150 if (strcmp (soname, needed->name) == 0)
3151 return TRUE;
3152
3153 return FALSE;
3154}
3155
14160578 3156/* Sort symbol by value, section, and size. */
4ad4eba5
AM
3157static int
3158elf_sort_symbol (const void *arg1, const void *arg2)
5a580b3a
AM
3159{
3160 const struct elf_link_hash_entry *h1;
3161 const struct elf_link_hash_entry *h2;
10b7e05b 3162 bfd_signed_vma vdiff;
5a580b3a
AM
3163
3164 h1 = *(const struct elf_link_hash_entry **) arg1;
3165 h2 = *(const struct elf_link_hash_entry **) arg2;
10b7e05b
NC
3166 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3167 if (vdiff != 0)
3168 return vdiff > 0 ? 1 : -1;
3169 else
3170 {
3171 long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3172 if (sdiff != 0)
3173 return sdiff > 0 ? 1 : -1;
3174 }
14160578
AM
3175 vdiff = h1->size - h2->size;
3176 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
5a580b3a 3177}
4ad4eba5 3178
5a580b3a
AM
3179/* This function is used to adjust offsets into .dynstr for
3180 dynamic symbols. This is called via elf_link_hash_traverse. */
3181
3182static bfd_boolean
3183elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3184{
a50b1753 3185 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
5a580b3a 3186
5a580b3a
AM
3187 if (h->dynindx != -1)
3188 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3189 return TRUE;
3190}
3191
3192/* Assign string offsets in .dynstr, update all structures referencing
3193 them. */
3194
4ad4eba5
AM
3195static bfd_boolean
3196elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
5a580b3a
AM
3197{
3198 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3199 struct elf_link_local_dynamic_entry *entry;
3200 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3201 bfd *dynobj = hash_table->dynobj;
3202 asection *sdyn;
3203 bfd_size_type size;
3204 const struct elf_backend_data *bed;
3205 bfd_byte *extdyn;
3206
3207 _bfd_elf_strtab_finalize (dynstr);
3208 size = _bfd_elf_strtab_size (dynstr);
3209
3210 bed = get_elf_backend_data (dynobj);
3d4d4302 3211 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
5a580b3a
AM
3212 BFD_ASSERT (sdyn != NULL);
3213
3214 /* Update all .dynamic entries referencing .dynstr strings. */
3215 for (extdyn = sdyn->contents;
eea6121a 3216 extdyn < sdyn->contents + sdyn->size;
5a580b3a
AM
3217 extdyn += bed->s->sizeof_dyn)
3218 {
3219 Elf_Internal_Dyn dyn;
3220
3221 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3222 switch (dyn.d_tag)
3223 {
3224 case DT_STRSZ:
3225 dyn.d_un.d_val = size;
3226 break;
3227 case DT_NEEDED:
3228 case DT_SONAME:
3229 case DT_RPATH:
3230 case DT_RUNPATH:
3231 case DT_FILTER:
3232 case DT_AUXILIARY:
7ee314fa
AM
3233 case DT_AUDIT:
3234 case DT_DEPAUDIT:
5a580b3a
AM
3235 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3236 break;
3237 default:
3238 continue;
3239 }
3240 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3241 }
3242
3243 /* Now update local dynamic symbols. */
3244 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3245 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3246 entry->isym.st_name);
3247
3248 /* And the rest of dynamic symbols. */
3249 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3250
3251 /* Adjust version definitions. */
3252 if (elf_tdata (output_bfd)->cverdefs)
3253 {
3254 asection *s;
3255 bfd_byte *p;
3256 bfd_size_type i;
3257 Elf_Internal_Verdef def;
3258 Elf_Internal_Verdaux defaux;
3259
3d4d4302 3260 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
3261 p = s->contents;
3262 do
3263 {
3264 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3265 &def);
3266 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
3267 if (def.vd_aux != sizeof (Elf_External_Verdef))
3268 continue;
5a580b3a
AM
3269 for (i = 0; i < def.vd_cnt; ++i)
3270 {
3271 _bfd_elf_swap_verdaux_in (output_bfd,
3272 (Elf_External_Verdaux *) p, &defaux);
3273 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3274 defaux.vda_name);
3275 _bfd_elf_swap_verdaux_out (output_bfd,
3276 &defaux, (Elf_External_Verdaux *) p);
3277 p += sizeof (Elf_External_Verdaux);
3278 }
3279 }
3280 while (def.vd_next);
3281 }
3282
3283 /* Adjust version references. */
3284 if (elf_tdata (output_bfd)->verref)
3285 {
3286 asection *s;
3287 bfd_byte *p;
3288 bfd_size_type i;
3289 Elf_Internal_Verneed need;
3290 Elf_Internal_Vernaux needaux;
3291
3d4d4302 3292 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
3293 p = s->contents;
3294 do
3295 {
3296 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3297 &need);
3298 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3299 _bfd_elf_swap_verneed_out (output_bfd, &need,
3300 (Elf_External_Verneed *) p);
3301 p += sizeof (Elf_External_Verneed);
3302 for (i = 0; i < need.vn_cnt; ++i)
3303 {
3304 _bfd_elf_swap_vernaux_in (output_bfd,
3305 (Elf_External_Vernaux *) p, &needaux);
3306 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3307 needaux.vna_name);
3308 _bfd_elf_swap_vernaux_out (output_bfd,
3309 &needaux,
3310 (Elf_External_Vernaux *) p);
3311 p += sizeof (Elf_External_Vernaux);
3312 }
3313 }
3314 while (need.vn_next);
3315 }
3316
3317 return TRUE;
3318}
3319\f
13285a1b
AM
3320/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3321 The default is to only match when the INPUT and OUTPUT are exactly
3322 the same target. */
3323
3324bfd_boolean
3325_bfd_elf_default_relocs_compatible (const bfd_target *input,
3326 const bfd_target *output)
3327{
3328 return input == output;
3329}
3330
3331/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3332 This version is used when different targets for the same architecture
3333 are virtually identical. */
3334
3335bfd_boolean
3336_bfd_elf_relocs_compatible (const bfd_target *input,
3337 const bfd_target *output)
3338{
3339 const struct elf_backend_data *obed, *ibed;
3340
3341 if (input == output)
3342 return TRUE;
3343
3344 ibed = xvec_get_elf_backend_data (input);
3345 obed = xvec_get_elf_backend_data (output);
3346
3347 if (ibed->arch != obed->arch)
3348 return FALSE;
3349
3350 /* If both backends are using this function, deem them compatible. */
3351 return ibed->relocs_compatible == obed->relocs_compatible;
3352}
3353
4ad4eba5
AM
3354/* Add symbols from an ELF object file to the linker hash table. */
3355
3356static bfd_boolean
3357elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3358{
a0c402a5 3359 Elf_Internal_Ehdr *ehdr;
4ad4eba5
AM
3360 Elf_Internal_Shdr *hdr;
3361 bfd_size_type symcount;
3362 bfd_size_type extsymcount;
3363 bfd_size_type extsymoff;
3364 struct elf_link_hash_entry **sym_hash;
3365 bfd_boolean dynamic;
3366 Elf_External_Versym *extversym = NULL;
3367 Elf_External_Versym *ever;
3368 struct elf_link_hash_entry *weaks;
3369 struct elf_link_hash_entry **nondeflt_vers = NULL;
3370 bfd_size_type nondeflt_vers_cnt = 0;
3371 Elf_Internal_Sym *isymbuf = NULL;
3372 Elf_Internal_Sym *isym;
3373 Elf_Internal_Sym *isymend;
3374 const struct elf_backend_data *bed;
3375 bfd_boolean add_needed;
66eb6687 3376 struct elf_link_hash_table *htab;
4ad4eba5 3377 bfd_size_type amt;
66eb6687 3378 void *alloc_mark = NULL;
4f87808c
AM
3379 struct bfd_hash_entry **old_table = NULL;
3380 unsigned int old_size = 0;
3381 unsigned int old_count = 0;
66eb6687
AM
3382 void *old_tab = NULL;
3383 void *old_hash;
3384 void *old_ent;
3385 struct bfd_link_hash_entry *old_undefs = NULL;
3386 struct bfd_link_hash_entry *old_undefs_tail = NULL;
3387 long old_dynsymcount = 0;
3388 size_t tabsize = 0;
3389 size_t hashsize = 0;
4ad4eba5 3390
66eb6687 3391 htab = elf_hash_table (info);
4ad4eba5 3392 bed = get_elf_backend_data (abfd);
4ad4eba5
AM
3393
3394 if ((abfd->flags & DYNAMIC) == 0)
3395 dynamic = FALSE;
3396 else
3397 {
3398 dynamic = TRUE;
3399
3400 /* You can't use -r against a dynamic object. Also, there's no
3401 hope of using a dynamic object which does not exactly match
3402 the format of the output file. */
3403 if (info->relocatable
66eb6687 3404 || !is_elf_hash_table (htab)
f13a99db 3405 || info->output_bfd->xvec != abfd->xvec)
4ad4eba5 3406 {
9a0789ec
NC
3407 if (info->relocatable)
3408 bfd_set_error (bfd_error_invalid_operation);
3409 else
3410 bfd_set_error (bfd_error_wrong_format);
4ad4eba5
AM
3411 goto error_return;
3412 }
3413 }
3414
a0c402a5
L
3415 ehdr = elf_elfheader (abfd);
3416 if (info->warn_alternate_em
3417 && bed->elf_machine_code != ehdr->e_machine
3418 && ((bed->elf_machine_alt1 != 0
3419 && ehdr->e_machine == bed->elf_machine_alt1)
3420 || (bed->elf_machine_alt2 != 0
3421 && ehdr->e_machine == bed->elf_machine_alt2)))
3422 info->callbacks->einfo
3423 (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"),
3424 ehdr->e_machine, abfd, bed->elf_machine_code);
3425
4ad4eba5
AM
3426 /* As a GNU extension, any input sections which are named
3427 .gnu.warning.SYMBOL are treated as warning symbols for the given
3428 symbol. This differs from .gnu.warning sections, which generate
3429 warnings when they are included in an output file. */
dd98f8d2
NC
3430 /* PR 12761: Also generate this warning when building shared libraries. */
3431 if (info->executable || info->shared)
4ad4eba5
AM
3432 {
3433 asection *s;
3434
3435 for (s = abfd->sections; s != NULL; s = s->next)
3436 {
3437 const char *name;
3438
3439 name = bfd_get_section_name (abfd, s);
0112cd26 3440 if (CONST_STRNEQ (name, ".gnu.warning."))
4ad4eba5
AM
3441 {
3442 char *msg;
3443 bfd_size_type sz;
4ad4eba5
AM
3444
3445 name += sizeof ".gnu.warning." - 1;
3446
3447 /* If this is a shared object, then look up the symbol
3448 in the hash table. If it is there, and it is already
3449 been defined, then we will not be using the entry
3450 from this shared object, so we don't need to warn.
3451 FIXME: If we see the definition in a regular object
3452 later on, we will warn, but we shouldn't. The only
3453 fix is to keep track of what warnings we are supposed
3454 to emit, and then handle them all at the end of the
3455 link. */
3456 if (dynamic)
3457 {
3458 struct elf_link_hash_entry *h;
3459
66eb6687 3460 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
4ad4eba5
AM
3461
3462 /* FIXME: What about bfd_link_hash_common? */
3463 if (h != NULL
3464 && (h->root.type == bfd_link_hash_defined
3465 || h->root.type == bfd_link_hash_defweak))
3466 {
3467 /* We don't want to issue this warning. Clobber
3468 the section size so that the warning does not
3469 get copied into the output file. */
eea6121a 3470 s->size = 0;
4ad4eba5
AM
3471 continue;
3472 }
3473 }
3474
eea6121a 3475 sz = s->size;
a50b1753 3476 msg = (char *) bfd_alloc (abfd, sz + 1);
4ad4eba5
AM
3477 if (msg == NULL)
3478 goto error_return;
3479
370a0e1b 3480 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
4ad4eba5
AM
3481 goto error_return;
3482
370a0e1b 3483 msg[sz] = '\0';
4ad4eba5
AM
3484
3485 if (! (_bfd_generic_link_add_one_symbol
3486 (info, abfd, name, BSF_WARNING, s, 0, msg,
66eb6687 3487 FALSE, bed->collect, NULL)))
4ad4eba5
AM
3488 goto error_return;
3489
3490 if (! info->relocatable)
3491 {
3492 /* Clobber the section size so that the warning does
3493 not get copied into the output file. */
eea6121a 3494 s->size = 0;
11d2f718
AM
3495
3496 /* Also set SEC_EXCLUDE, so that symbols defined in
3497 the warning section don't get copied to the output. */
3498 s->flags |= SEC_EXCLUDE;
4ad4eba5
AM
3499 }
3500 }
3501 }
3502 }
3503
3504 add_needed = TRUE;
3505 if (! dynamic)
3506 {
3507 /* If we are creating a shared library, create all the dynamic
3508 sections immediately. We need to attach them to something,
3509 so we attach them to this BFD, provided it is the right
3510 format. FIXME: If there are no input BFD's of the same
3511 format as the output, we can't make a shared library. */
3512 if (info->shared
66eb6687 3513 && is_elf_hash_table (htab)
f13a99db 3514 && info->output_bfd->xvec == abfd->xvec
66eb6687 3515 && !htab->dynamic_sections_created)
4ad4eba5
AM
3516 {
3517 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3518 goto error_return;
3519 }
3520 }
66eb6687 3521 else if (!is_elf_hash_table (htab))
4ad4eba5
AM
3522 goto error_return;
3523 else
3524 {
3525 asection *s;
3526 const char *soname = NULL;
7ee314fa 3527 char *audit = NULL;
4ad4eba5
AM
3528 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3529 int ret;
3530
3531 /* ld --just-symbols and dynamic objects don't mix very well.
92fd189d 3532 ld shouldn't allow it. */
4ad4eba5 3533 if ((s = abfd->sections) != NULL
dbaa2011 3534 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
92fd189d 3535 abort ();
4ad4eba5
AM
3536
3537 /* If this dynamic lib was specified on the command line with
3538 --as-needed in effect, then we don't want to add a DT_NEEDED
3539 tag unless the lib is actually used. Similary for libs brought
e56f61be
L
3540 in by another lib's DT_NEEDED. When --no-add-needed is used
3541 on a dynamic lib, we don't want to add a DT_NEEDED entry for
3542 any dynamic library in DT_NEEDED tags in the dynamic lib at
3543 all. */
3544 add_needed = (elf_dyn_lib_class (abfd)
3545 & (DYN_AS_NEEDED | DYN_DT_NEEDED
3546 | DYN_NO_NEEDED)) == 0;
4ad4eba5
AM
3547
3548 s = bfd_get_section_by_name (abfd, ".dynamic");
3549 if (s != NULL)
3550 {
3551 bfd_byte *dynbuf;
3552 bfd_byte *extdyn;
cb33740c 3553 unsigned int elfsec;
4ad4eba5
AM
3554 unsigned long shlink;
3555
eea6121a 3556 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
f8703194
L
3557 {
3558error_free_dyn:
3559 free (dynbuf);
3560 goto error_return;
3561 }
4ad4eba5
AM
3562
3563 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 3564 if (elfsec == SHN_BAD)
4ad4eba5
AM
3565 goto error_free_dyn;
3566 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3567
3568 for (extdyn = dynbuf;
eea6121a 3569 extdyn < dynbuf + s->size;
4ad4eba5
AM
3570 extdyn += bed->s->sizeof_dyn)
3571 {
3572 Elf_Internal_Dyn dyn;
3573
3574 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3575 if (dyn.d_tag == DT_SONAME)
3576 {
3577 unsigned int tagv = dyn.d_un.d_val;
3578 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3579 if (soname == NULL)
3580 goto error_free_dyn;
3581 }
3582 if (dyn.d_tag == DT_NEEDED)
3583 {
3584 struct bfd_link_needed_list *n, **pn;
3585 char *fnm, *anm;
3586 unsigned int tagv = dyn.d_un.d_val;
3587
3588 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3589 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3590 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3591 if (n == NULL || fnm == NULL)
3592 goto error_free_dyn;
3593 amt = strlen (fnm) + 1;
a50b1753 3594 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3595 if (anm == NULL)
3596 goto error_free_dyn;
3597 memcpy (anm, fnm, amt);
3598 n->name = anm;
3599 n->by = abfd;
3600 n->next = NULL;
66eb6687 3601 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
3602 ;
3603 *pn = n;
3604 }
3605 if (dyn.d_tag == DT_RUNPATH)
3606 {
3607 struct bfd_link_needed_list *n, **pn;
3608 char *fnm, *anm;
3609 unsigned int tagv = dyn.d_un.d_val;
3610
3611 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3612 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3613 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3614 if (n == NULL || fnm == NULL)
3615 goto error_free_dyn;
3616 amt = strlen (fnm) + 1;
a50b1753 3617 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3618 if (anm == NULL)
3619 goto error_free_dyn;
3620 memcpy (anm, fnm, amt);
3621 n->name = anm;
3622 n->by = abfd;
3623 n->next = NULL;
3624 for (pn = & runpath;
3625 *pn != NULL;
3626 pn = &(*pn)->next)
3627 ;
3628 *pn = n;
3629 }
3630 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
3631 if (!runpath && dyn.d_tag == DT_RPATH)
3632 {
3633 struct bfd_link_needed_list *n, **pn;
3634 char *fnm, *anm;
3635 unsigned int tagv = dyn.d_un.d_val;
3636
3637 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3638 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3639 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3640 if (n == NULL || fnm == NULL)
3641 goto error_free_dyn;
3642 amt = strlen (fnm) + 1;
a50b1753 3643 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5 3644 if (anm == NULL)
f8703194 3645 goto error_free_dyn;
4ad4eba5
AM
3646 memcpy (anm, fnm, amt);
3647 n->name = anm;
3648 n->by = abfd;
3649 n->next = NULL;
3650 for (pn = & rpath;
3651 *pn != NULL;
3652 pn = &(*pn)->next)
3653 ;
3654 *pn = n;
3655 }
7ee314fa
AM
3656 if (dyn.d_tag == DT_AUDIT)
3657 {
3658 unsigned int tagv = dyn.d_un.d_val;
3659 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3660 }
4ad4eba5
AM
3661 }
3662
3663 free (dynbuf);
3664 }
3665
3666 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
3667 frees all more recently bfd_alloc'd blocks as well. */
3668 if (runpath)
3669 rpath = runpath;
3670
3671 if (rpath)
3672 {
3673 struct bfd_link_needed_list **pn;
66eb6687 3674 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
3675 ;
3676 *pn = rpath;
3677 }
3678
3679 /* We do not want to include any of the sections in a dynamic
3680 object in the output file. We hack by simply clobbering the
3681 list of sections in the BFD. This could be handled more
3682 cleanly by, say, a new section flag; the existing
3683 SEC_NEVER_LOAD flag is not the one we want, because that one
3684 still implies that the section takes up space in the output
3685 file. */
3686 bfd_section_list_clear (abfd);
3687
4ad4eba5
AM
3688 /* Find the name to use in a DT_NEEDED entry that refers to this
3689 object. If the object has a DT_SONAME entry, we use it.
3690 Otherwise, if the generic linker stuck something in
3691 elf_dt_name, we use that. Otherwise, we just use the file
3692 name. */
3693 if (soname == NULL || *soname == '\0')
3694 {
3695 soname = elf_dt_name (abfd);
3696 if (soname == NULL || *soname == '\0')
3697 soname = bfd_get_filename (abfd);
3698 }
3699
3700 /* Save the SONAME because sometimes the linker emulation code
3701 will need to know it. */
3702 elf_dt_name (abfd) = soname;
3703
7e9f0867 3704 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
3705 if (ret < 0)
3706 goto error_return;
3707
3708 /* If we have already included this dynamic object in the
3709 link, just ignore it. There is no reason to include a
3710 particular dynamic object more than once. */
3711 if (ret > 0)
3712 return TRUE;
7ee314fa
AM
3713
3714 /* Save the DT_AUDIT entry for the linker emulation code. */
3715 elf_dt_audit (abfd) = audit;
4ad4eba5
AM
3716 }
3717
3718 /* If this is a dynamic object, we always link against the .dynsym
3719 symbol table, not the .symtab symbol table. The dynamic linker
3720 will only see the .dynsym symbol table, so there is no reason to
3721 look at .symtab for a dynamic object. */
3722
3723 if (! dynamic || elf_dynsymtab (abfd) == 0)
3724 hdr = &elf_tdata (abfd)->symtab_hdr;
3725 else
3726 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3727
3728 symcount = hdr->sh_size / bed->s->sizeof_sym;
3729
3730 /* The sh_info field of the symtab header tells us where the
3731 external symbols start. We don't care about the local symbols at
3732 this point. */
3733 if (elf_bad_symtab (abfd))
3734 {
3735 extsymcount = symcount;
3736 extsymoff = 0;
3737 }
3738 else
3739 {
3740 extsymcount = symcount - hdr->sh_info;
3741 extsymoff = hdr->sh_info;
3742 }
3743
3744 sym_hash = NULL;
3745 if (extsymcount != 0)
3746 {
3747 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3748 NULL, NULL, NULL);
3749 if (isymbuf == NULL)
3750 goto error_return;
3751
3752 /* We store a pointer to the hash table entry for each external
3753 symbol. */
3754 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
a50b1753 3755 sym_hash = (struct elf_link_hash_entry **) bfd_alloc (abfd, amt);
4ad4eba5
AM
3756 if (sym_hash == NULL)
3757 goto error_free_sym;
3758 elf_sym_hashes (abfd) = sym_hash;
3759 }
3760
3761 if (dynamic)
3762 {
3763 /* Read in any version definitions. */
fc0e6df6
PB
3764 if (!_bfd_elf_slurp_version_tables (abfd,
3765 info->default_imported_symver))
4ad4eba5
AM
3766 goto error_free_sym;
3767
3768 /* Read in the symbol versions, but don't bother to convert them
3769 to internal format. */
3770 if (elf_dynversym (abfd) != 0)
3771 {
3772 Elf_Internal_Shdr *versymhdr;
3773
3774 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
a50b1753 3775 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
4ad4eba5
AM
3776 if (extversym == NULL)
3777 goto error_free_sym;
3778 amt = versymhdr->sh_size;
3779 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
3780 || bfd_bread (extversym, amt, abfd) != amt)
3781 goto error_free_vers;
3782 }
3783 }
3784
66eb6687
AM
3785 /* If we are loading an as-needed shared lib, save the symbol table
3786 state before we start adding symbols. If the lib turns out
3787 to be unneeded, restore the state. */
3788 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
3789 {
3790 unsigned int i;
3791 size_t entsize;
3792
3793 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
3794 {
3795 struct bfd_hash_entry *p;
2de92251 3796 struct elf_link_hash_entry *h;
66eb6687
AM
3797
3798 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
2de92251
AM
3799 {
3800 h = (struct elf_link_hash_entry *) p;
3801 entsize += htab->root.table.entsize;
3802 if (h->root.type == bfd_link_hash_warning)
3803 entsize += htab->root.table.entsize;
3804 }
66eb6687
AM
3805 }
3806
3807 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
3808 hashsize = extsymcount * sizeof (struct elf_link_hash_entry *);
3809 old_tab = bfd_malloc (tabsize + entsize + hashsize);
3810 if (old_tab == NULL)
3811 goto error_free_vers;
3812
3813 /* Remember the current objalloc pointer, so that all mem for
3814 symbols added can later be reclaimed. */
3815 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
3816 if (alloc_mark == NULL)
3817 goto error_free_vers;
3818
5061a885
AM
3819 /* Make a special call to the linker "notice" function to
3820 tell it that we are about to handle an as-needed lib. */
3821 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
16d96b5b 3822 notice_as_needed, 0, NULL))
9af2a943 3823 goto error_free_vers;
5061a885 3824
66eb6687
AM
3825 /* Clone the symbol table and sym hashes. Remember some
3826 pointers into the symbol table, and dynamic symbol count. */
3827 old_hash = (char *) old_tab + tabsize;
3828 old_ent = (char *) old_hash + hashsize;
3829 memcpy (old_tab, htab->root.table.table, tabsize);
3830 memcpy (old_hash, sym_hash, hashsize);
3831 old_undefs = htab->root.undefs;
3832 old_undefs_tail = htab->root.undefs_tail;
4f87808c
AM
3833 old_table = htab->root.table.table;
3834 old_size = htab->root.table.size;
3835 old_count = htab->root.table.count;
66eb6687
AM
3836 old_dynsymcount = htab->dynsymcount;
3837
3838 for (i = 0; i < htab->root.table.size; i++)
3839 {
3840 struct bfd_hash_entry *p;
2de92251 3841 struct elf_link_hash_entry *h;
66eb6687
AM
3842
3843 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3844 {
3845 memcpy (old_ent, p, htab->root.table.entsize);
3846 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
3847 h = (struct elf_link_hash_entry *) p;
3848 if (h->root.type == bfd_link_hash_warning)
3849 {
3850 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
3851 old_ent = (char *) old_ent + htab->root.table.entsize;
3852 }
66eb6687
AM
3853 }
3854 }
3855 }
4ad4eba5 3856
66eb6687 3857 weaks = NULL;
4ad4eba5
AM
3858 ever = extversym != NULL ? extversym + extsymoff : NULL;
3859 for (isym = isymbuf, isymend = isymbuf + extsymcount;
3860 isym < isymend;
3861 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
3862 {
3863 int bind;
3864 bfd_vma value;
af44c138 3865 asection *sec, *new_sec;
4ad4eba5
AM
3866 flagword flags;
3867 const char *name;
3868 struct elf_link_hash_entry *h;
90c984fc 3869 struct elf_link_hash_entry *hi;
4ad4eba5
AM
3870 bfd_boolean definition;
3871 bfd_boolean size_change_ok;
3872 bfd_boolean type_change_ok;
3873 bfd_boolean new_weakdef;
37a9e49a
L
3874 bfd_boolean new_weak;
3875 bfd_boolean old_weak;
4ad4eba5 3876 bfd_boolean override;
a4d8e49b 3877 bfd_boolean common;
4ad4eba5
AM
3878 unsigned int old_alignment;
3879 bfd *old_bfd;
3cbc5de0 3880 bfd * undef_bfd = NULL;
4ad4eba5
AM
3881
3882 override = FALSE;
3883
3884 flags = BSF_NO_FLAGS;
3885 sec = NULL;
3886 value = isym->st_value;
3887 *sym_hash = NULL;
a4d8e49b 3888 common = bed->common_definition (isym);
4ad4eba5
AM
3889
3890 bind = ELF_ST_BIND (isym->st_info);
3e7a7d11 3891 switch (bind)
4ad4eba5 3892 {
3e7a7d11 3893 case STB_LOCAL:
4ad4eba5
AM
3894 /* This should be impossible, since ELF requires that all
3895 global symbols follow all local symbols, and that sh_info
3896 point to the first global symbol. Unfortunately, Irix 5
3897 screws this up. */
3898 continue;
3e7a7d11
NC
3899
3900 case STB_GLOBAL:
a4d8e49b 3901 if (isym->st_shndx != SHN_UNDEF && !common)
4ad4eba5 3902 flags = BSF_GLOBAL;
3e7a7d11
NC
3903 break;
3904
3905 case STB_WEAK:
3906 flags = BSF_WEAK;
3907 break;
3908
3909 case STB_GNU_UNIQUE:
3910 flags = BSF_GNU_UNIQUE;
3911 break;
3912
3913 default:
4ad4eba5 3914 /* Leave it up to the processor backend. */
3e7a7d11 3915 break;
4ad4eba5
AM
3916 }
3917
3918 if (isym->st_shndx == SHN_UNDEF)
3919 sec = bfd_und_section_ptr;
cb33740c
AM
3920 else if (isym->st_shndx == SHN_ABS)
3921 sec = bfd_abs_section_ptr;
3922 else if (isym->st_shndx == SHN_COMMON)
3923 {
3924 sec = bfd_com_section_ptr;
3925 /* What ELF calls the size we call the value. What ELF
3926 calls the value we call the alignment. */
3927 value = isym->st_size;
3928 }
3929 else
4ad4eba5
AM
3930 {
3931 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
3932 if (sec == NULL)
3933 sec = bfd_abs_section_ptr;
dbaa2011 3934 else if (discarded_section (sec))
529fcb95 3935 {
e5d08002
L
3936 /* Symbols from discarded section are undefined. We keep
3937 its visibility. */
529fcb95
PB
3938 sec = bfd_und_section_ptr;
3939 isym->st_shndx = SHN_UNDEF;
3940 }
4ad4eba5
AM
3941 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
3942 value -= sec->vma;
3943 }
4ad4eba5
AM
3944
3945 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3946 isym->st_name);
3947 if (name == NULL)
3948 goto error_free_vers;
3949
3950 if (isym->st_shndx == SHN_COMMON
02d00247
AM
3951 && (abfd->flags & BFD_PLUGIN) != 0)
3952 {
3953 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
3954
3955 if (xc == NULL)
3956 {
3957 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
3958 | SEC_EXCLUDE);
3959 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
3960 if (xc == NULL)
3961 goto error_free_vers;
3962 }
3963 sec = xc;
3964 }
3965 else if (isym->st_shndx == SHN_COMMON
3966 && ELF_ST_TYPE (isym->st_info) == STT_TLS
3967 && !info->relocatable)
4ad4eba5
AM
3968 {
3969 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
3970
3971 if (tcomm == NULL)
3972 {
02d00247
AM
3973 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
3974 | SEC_LINKER_CREATED);
3975 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3496cb2a 3976 if (tcomm == NULL)
4ad4eba5
AM
3977 goto error_free_vers;
3978 }
3979 sec = tcomm;
3980 }
66eb6687 3981 else if (bed->elf_add_symbol_hook)
4ad4eba5 3982 {
66eb6687
AM
3983 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
3984 &sec, &value))
4ad4eba5
AM
3985 goto error_free_vers;
3986
3987 /* The hook function sets the name to NULL if this symbol
3988 should be skipped for some reason. */
3989 if (name == NULL)
3990 continue;
3991 }
3992
3993 /* Sanity check that all possibilities were handled. */
3994 if (sec == NULL)
3995 {
3996 bfd_set_error (bfd_error_bad_value);
3997 goto error_free_vers;
3998 }
3999
4000 if (bfd_is_und_section (sec)
4001 || bfd_is_com_section (sec))
4002 definition = FALSE;
4003 else
4004 definition = TRUE;
4005
4006 size_change_ok = FALSE;
66eb6687 4007 type_change_ok = bed->type_change_ok;
37a9e49a 4008 old_weak = FALSE;
4ad4eba5
AM
4009 old_alignment = 0;
4010 old_bfd = NULL;
af44c138 4011 new_sec = sec;
4ad4eba5 4012
66eb6687 4013 if (is_elf_hash_table (htab))
4ad4eba5
AM
4014 {
4015 Elf_Internal_Versym iver;
4016 unsigned int vernum = 0;
4017 bfd_boolean skip;
4018
b918acf9
NC
4019 /* If this is a definition of a symbol which was previously
4020 referenced in a non-weak manner then make a note of the bfd
4021 that contained the reference. This is used if we need to
4022 refer to the source of the reference later on. */
4023 if (! bfd_is_und_section (sec))
4024 {
4025 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
4026
4027 if (h != NULL
4028 && h->root.type == bfd_link_hash_undefined
4029 && h->root.u.undef.abfd)
4030 undef_bfd = h->root.u.undef.abfd;
4031 }
4032
fc0e6df6 4033 if (ever == NULL)
4ad4eba5 4034 {
fc0e6df6
PB
4035 if (info->default_imported_symver)
4036 /* Use the default symbol version created earlier. */
4037 iver.vs_vers = elf_tdata (abfd)->cverdefs;
4038 else
4039 iver.vs_vers = 0;
4040 }
4041 else
4042 _bfd_elf_swap_versym_in (abfd, ever, &iver);
4043
4044 vernum = iver.vs_vers & VERSYM_VERSION;
4045
4046 /* If this is a hidden symbol, or if it is not version
4047 1, we append the version name to the symbol name.
cc86ff91
EB
4048 However, we do not modify a non-hidden absolute symbol
4049 if it is not a function, because it might be the version
4050 symbol itself. FIXME: What if it isn't? */
fc0e6df6 4051 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
fcb93ecf
PB
4052 || (vernum > 1
4053 && (!bfd_is_abs_section (sec)
4054 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
fc0e6df6
PB
4055 {
4056 const char *verstr;
4057 size_t namelen, verlen, newlen;
4058 char *newname, *p;
4059
4060 if (isym->st_shndx != SHN_UNDEF)
4ad4eba5 4061 {
fc0e6df6
PB
4062 if (vernum > elf_tdata (abfd)->cverdefs)
4063 verstr = NULL;
4064 else if (vernum > 1)
4065 verstr =
4066 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4067 else
4068 verstr = "";
4ad4eba5 4069
fc0e6df6 4070 if (verstr == NULL)
4ad4eba5 4071 {
fc0e6df6
PB
4072 (*_bfd_error_handler)
4073 (_("%B: %s: invalid version %u (max %d)"),
4074 abfd, name, vernum,
4075 elf_tdata (abfd)->cverdefs);
4076 bfd_set_error (bfd_error_bad_value);
4077 goto error_free_vers;
4ad4eba5 4078 }
fc0e6df6
PB
4079 }
4080 else
4081 {
4082 /* We cannot simply test for the number of
4083 entries in the VERNEED section since the
4084 numbers for the needed versions do not start
4085 at 0. */
4086 Elf_Internal_Verneed *t;
4087
4088 verstr = NULL;
4089 for (t = elf_tdata (abfd)->verref;
4090 t != NULL;
4091 t = t->vn_nextref)
4ad4eba5 4092 {
fc0e6df6 4093 Elf_Internal_Vernaux *a;
4ad4eba5 4094
fc0e6df6
PB
4095 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4096 {
4097 if (a->vna_other == vernum)
4ad4eba5 4098 {
fc0e6df6
PB
4099 verstr = a->vna_nodename;
4100 break;
4ad4eba5 4101 }
4ad4eba5 4102 }
fc0e6df6
PB
4103 if (a != NULL)
4104 break;
4105 }
4106 if (verstr == NULL)
4107 {
4108 (*_bfd_error_handler)
4109 (_("%B: %s: invalid needed version %d"),
4110 abfd, name, vernum);
4111 bfd_set_error (bfd_error_bad_value);
4112 goto error_free_vers;
4ad4eba5 4113 }
4ad4eba5 4114 }
fc0e6df6
PB
4115
4116 namelen = strlen (name);
4117 verlen = strlen (verstr);
4118 newlen = namelen + verlen + 2;
4119 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4120 && isym->st_shndx != SHN_UNDEF)
4121 ++newlen;
4122
a50b1753 4123 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
fc0e6df6
PB
4124 if (newname == NULL)
4125 goto error_free_vers;
4126 memcpy (newname, name, namelen);
4127 p = newname + namelen;
4128 *p++ = ELF_VER_CHR;
4129 /* If this is a defined non-hidden version symbol,
4130 we add another @ to the name. This indicates the
4131 default version of the symbol. */
4132 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4133 && isym->st_shndx != SHN_UNDEF)
4134 *p++ = ELF_VER_CHR;
4135 memcpy (p, verstr, verlen + 1);
4136
4137 name = newname;
4ad4eba5
AM
4138 }
4139
b918acf9
NC
4140 /* If necessary, make a second attempt to locate the bfd
4141 containing an unresolved, non-weak reference to the
4142 current symbol. */
4143 if (! bfd_is_und_section (sec) && undef_bfd == NULL)
3cbc5de0
NC
4144 {
4145 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
4146
4147 if (h != NULL
b918acf9 4148 && h->root.type == bfd_link_hash_undefined
3cbc5de0
NC
4149 && h->root.u.undef.abfd)
4150 undef_bfd = h->root.u.undef.abfd;
4151 }
4152
af44c138 4153 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec,
37a9e49a 4154 &value, &old_weak, &old_alignment,
4ad4eba5
AM
4155 sym_hash, &skip, &override,
4156 &type_change_ok, &size_change_ok))
4157 goto error_free_vers;
4158
4159 if (skip)
4160 continue;
4161
4162 if (override)
4163 definition = FALSE;
4164
4165 h = *sym_hash;
4166 while (h->root.type == bfd_link_hash_indirect
4167 || h->root.type == bfd_link_hash_warning)
4168 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4169
4170 /* Remember the old alignment if this is a common symbol, so
4171 that we don't reduce the alignment later on. We can't
4172 check later, because _bfd_generic_link_add_one_symbol
4173 will set a default for the alignment which we want to
4174 override. We also remember the old bfd where the existing
4175 definition comes from. */
4176 switch (h->root.type)
4177 {
4178 default:
4179 break;
4180
4181 case bfd_link_hash_defined:
4182 case bfd_link_hash_defweak:
4183 old_bfd = h->root.u.def.section->owner;
4184 break;
4185
4186 case bfd_link_hash_common:
4187 old_bfd = h->root.u.c.p->section->owner;
4188 old_alignment = h->root.u.c.p->alignment_power;
4189 break;
4190 }
4191
4192 if (elf_tdata (abfd)->verdef != NULL
4193 && ! override
4194 && vernum > 1
4195 && definition)
4196 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4197 }
4198
4199 if (! (_bfd_generic_link_add_one_symbol
66eb6687 4200 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4ad4eba5
AM
4201 (struct bfd_link_hash_entry **) sym_hash)))
4202 goto error_free_vers;
4203
4204 h = *sym_hash;
90c984fc
L
4205 /* We need to make sure that indirect symbol dynamic flags are
4206 updated. */
4207 hi = h;
4ad4eba5
AM
4208 while (h->root.type == bfd_link_hash_indirect
4209 || h->root.type == bfd_link_hash_warning)
4210 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3e7a7d11 4211
4ad4eba5 4212 *sym_hash = h;
d64284fe
L
4213 if (is_elf_hash_table (htab))
4214 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4ad4eba5 4215
37a9e49a 4216 new_weak = (flags & BSF_WEAK) != 0;
4ad4eba5
AM
4217 new_weakdef = FALSE;
4218 if (dynamic
4219 && definition
37a9e49a 4220 && new_weak
fcb93ecf 4221 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
66eb6687 4222 && is_elf_hash_table (htab)
f6e332e6 4223 && h->u.weakdef == NULL)
4ad4eba5
AM
4224 {
4225 /* Keep a list of all weak defined non function symbols from
4226 a dynamic object, using the weakdef field. Later in this
4227 function we will set the weakdef field to the correct
4228 value. We only put non-function symbols from dynamic
4229 objects on this list, because that happens to be the only
4230 time we need to know the normal symbol corresponding to a
4231 weak symbol, and the information is time consuming to
4232 figure out. If the weakdef field is not already NULL,
4233 then this symbol was already defined by some previous
4234 dynamic object, and we will be using that previous
4235 definition anyhow. */
4236
f6e332e6 4237 h->u.weakdef = weaks;
4ad4eba5
AM
4238 weaks = h;
4239 new_weakdef = TRUE;
4240 }
4241
4242 /* Set the alignment of a common symbol. */
a4d8e49b 4243 if ((common || bfd_is_com_section (sec))
4ad4eba5
AM
4244 && h->root.type == bfd_link_hash_common)
4245 {
4246 unsigned int align;
4247
a4d8e49b 4248 if (common)
af44c138
L
4249 align = bfd_log2 (isym->st_value);
4250 else
4251 {
4252 /* The new symbol is a common symbol in a shared object.
4253 We need to get the alignment from the section. */
4254 align = new_sec->alignment_power;
4255 }
595213d4 4256 if (align > old_alignment)
4ad4eba5
AM
4257 h->root.u.c.p->alignment_power = align;
4258 else
4259 h->root.u.c.p->alignment_power = old_alignment;
4260 }
4261
66eb6687 4262 if (is_elf_hash_table (htab))
4ad4eba5 4263 {
4ad4eba5 4264 bfd_boolean dynsym;
4ad4eba5
AM
4265
4266 /* Check the alignment when a common symbol is involved. This
4267 can change when a common symbol is overridden by a normal
4268 definition or a common symbol is ignored due to the old
4269 normal definition. We need to make sure the maximum
4270 alignment is maintained. */
a4d8e49b 4271 if ((old_alignment || common)
4ad4eba5
AM
4272 && h->root.type != bfd_link_hash_common)
4273 {
4274 unsigned int common_align;
4275 unsigned int normal_align;
4276 unsigned int symbol_align;
4277 bfd *normal_bfd;
4278 bfd *common_bfd;
4279
4280 symbol_align = ffs (h->root.u.def.value) - 1;
4281 if (h->root.u.def.section->owner != NULL
4282 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
4283 {
4284 normal_align = h->root.u.def.section->alignment_power;
4285 if (normal_align > symbol_align)
4286 normal_align = symbol_align;
4287 }
4288 else
4289 normal_align = symbol_align;
4290
4291 if (old_alignment)
4292 {
4293 common_align = old_alignment;
4294 common_bfd = old_bfd;
4295 normal_bfd = abfd;
4296 }
4297 else
4298 {
4299 common_align = bfd_log2 (isym->st_value);
4300 common_bfd = abfd;
4301 normal_bfd = old_bfd;
4302 }
4303
4304 if (normal_align < common_align)
d07676f8
NC
4305 {
4306 /* PR binutils/2735 */
4307 if (normal_bfd == NULL)
4308 (*_bfd_error_handler)
4309 (_("Warning: alignment %u of common symbol `%s' in %B"
4310 " is greater than the alignment (%u) of its section %A"),
4311 common_bfd, h->root.u.def.section,
4312 1 << common_align, name, 1 << normal_align);
4313 else
4314 (*_bfd_error_handler)
4315 (_("Warning: alignment %u of symbol `%s' in %B"
4316 " is smaller than %u in %B"),
4317 normal_bfd, common_bfd,
4318 1 << normal_align, name, 1 << common_align);
4319 }
4ad4eba5
AM
4320 }
4321
83ad0046
L
4322 /* Remember the symbol size if it isn't undefined. */
4323 if ((isym->st_size != 0 && isym->st_shndx != SHN_UNDEF)
4ad4eba5
AM
4324 && (definition || h->size == 0))
4325 {
83ad0046
L
4326 if (h->size != 0
4327 && h->size != isym->st_size
4328 && ! size_change_ok)
4ad4eba5 4329 (*_bfd_error_handler)
d003868e
AM
4330 (_("Warning: size of symbol `%s' changed"
4331 " from %lu in %B to %lu in %B"),
4332 old_bfd, abfd,
4ad4eba5 4333 name, (unsigned long) h->size,
d003868e 4334 (unsigned long) isym->st_size);
4ad4eba5
AM
4335
4336 h->size = isym->st_size;
4337 }
4338
4339 /* If this is a common symbol, then we always want H->SIZE
4340 to be the size of the common symbol. The code just above
4341 won't fix the size if a common symbol becomes larger. We
4342 don't warn about a size change here, because that is
fcb93ecf
PB
4343 covered by --warn-common. Allow changed between different
4344 function types. */
4ad4eba5
AM
4345 if (h->root.type == bfd_link_hash_common)
4346 h->size = h->root.u.c.size;
4347
4348 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
37a9e49a
L
4349 && ((definition && !new_weak)
4350 || (old_weak && h->root.type == bfd_link_hash_common)
4351 || h->type == STT_NOTYPE))
4ad4eba5 4352 {
2955ec4c
L
4353 unsigned int type = ELF_ST_TYPE (isym->st_info);
4354
4355 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4356 symbol. */
4357 if (type == STT_GNU_IFUNC
4358 && (abfd->flags & DYNAMIC) != 0)
4359 type = STT_FUNC;
4ad4eba5 4360
2955ec4c
L
4361 if (h->type != type)
4362 {
4363 if (h->type != STT_NOTYPE && ! type_change_ok)
4364 (*_bfd_error_handler)
4365 (_("Warning: type of symbol `%s' changed"
4366 " from %d to %d in %B"),
4367 abfd, name, h->type, type);
4368
4369 h->type = type;
4370 }
4ad4eba5
AM
4371 }
4372
54ac0771
L
4373 /* Merge st_other field. */
4374 elf_merge_st_other (abfd, h, isym, definition, dynamic);
4ad4eba5
AM
4375
4376 /* Set a flag in the hash table entry indicating the type of
4377 reference or definition we just found. Keep a count of
4378 the number of dynamic symbols we find. A dynamic symbol
4379 is one which is referenced or defined by both a regular
4380 object and a shared object. */
4ad4eba5
AM
4381 dynsym = FALSE;
4382 if (! dynamic)
4383 {
4384 if (! definition)
4385 {
f5385ebf 4386 h->ref_regular = 1;
4ad4eba5 4387 if (bind != STB_WEAK)
f5385ebf 4388 h->ref_regular_nonweak = 1;
4ad4eba5
AM
4389 }
4390 else
d8880531
L
4391 {
4392 h->def_regular = 1;
4393 if (h->def_dynamic)
4394 {
4395 h->def_dynamic = 0;
4396 h->ref_dynamic = 1;
d8880531
L
4397 }
4398 }
90c984fc
L
4399
4400 /* If the indirect symbol has been forced local, don't
4401 make the real symbol dynamic. */
4402 if ((h == hi || !hi->forced_local)
4403 && (! info->executable
4404 || h->def_dynamic
4405 || h->ref_dynamic))
4ad4eba5
AM
4406 dynsym = TRUE;
4407 }
4408 else
4409 {
4410 if (! definition)
90c984fc
L
4411 {
4412 h->ref_dynamic = 1;
4413 hi->ref_dynamic = 1;
4414 }
4ad4eba5 4415 else
54e8959c
L
4416 {
4417 h->def_dynamic = 1;
4418 h->dynamic_def = 1;
90c984fc
L
4419 hi->def_dynamic = 1;
4420 hi->dynamic_def = 1;
54e8959c 4421 }
90c984fc
L
4422
4423 /* If the indirect symbol has been forced local, don't
4424 make the real symbol dynamic. */
4425 if ((h == hi || !hi->forced_local)
4426 && (h->def_regular
4427 || h->ref_regular
4428 || (h->u.weakdef != NULL
4429 && ! new_weakdef
4430 && h->u.weakdef->dynindx != -1)))
4ad4eba5
AM
4431 dynsym = TRUE;
4432 }
4433
c3df8c14 4434 /* We don't want to make debug symbol dynamic. */
b2064611 4435 if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable)
c3df8c14
AM
4436 dynsym = FALSE;
4437
4438 /* Nor should we make plugin symbols dynamic. */
4439 if ((abfd->flags & BFD_PLUGIN) != 0)
4440 dynsym = FALSE;
92b7c7b6 4441
35fc36a8
RS
4442 if (definition)
4443 h->target_internal = isym->st_target_internal;
4444
4ad4eba5
AM
4445 /* Check to see if we need to add an indirect symbol for
4446 the default name. */
4447 if (definition || h->root.type == bfd_link_hash_common)
4448 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4449 &sec, &value, &dynsym,
4450 override))
4451 goto error_free_vers;
4452
4453 if (definition && !dynamic)
4454 {
4455 char *p = strchr (name, ELF_VER_CHR);
4456 if (p != NULL && p[1] != ELF_VER_CHR)
4457 {
4458 /* Queue non-default versions so that .symver x, x@FOO
4459 aliases can be checked. */
66eb6687 4460 if (!nondeflt_vers)
4ad4eba5 4461 {
66eb6687
AM
4462 amt = ((isymend - isym + 1)
4463 * sizeof (struct elf_link_hash_entry *));
a50b1753
NC
4464 nondeflt_vers =
4465 (struct elf_link_hash_entry **) bfd_malloc (amt);
14b1c01e
AM
4466 if (!nondeflt_vers)
4467 goto error_free_vers;
4ad4eba5 4468 }
66eb6687 4469 nondeflt_vers[nondeflt_vers_cnt++] = h;
4ad4eba5
AM
4470 }
4471 }
4472
4473 if (dynsym && h->dynindx == -1)
4474 {
c152c796 4475 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4ad4eba5 4476 goto error_free_vers;
f6e332e6 4477 if (h->u.weakdef != NULL
4ad4eba5 4478 && ! new_weakdef
f6e332e6 4479 && h->u.weakdef->dynindx == -1)
4ad4eba5 4480 {
66eb6687 4481 if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4ad4eba5
AM
4482 goto error_free_vers;
4483 }
4484 }
4485 else if (dynsym && h->dynindx != -1)
4486 /* If the symbol already has a dynamic index, but
4487 visibility says it should not be visible, turn it into
4488 a local symbol. */
4489 switch (ELF_ST_VISIBILITY (h->other))
4490 {
4491 case STV_INTERNAL:
4492 case STV_HIDDEN:
4493 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4494 dynsym = FALSE;
4495 break;
4496 }
4497
4498 if (!add_needed
4499 && definition
010e5ae2
AM
4500 && ((dynsym
4501 && h->ref_regular)
4502 || (h->ref_dynamic
4503 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
4504 && !on_needed_list (elf_dt_name (abfd), htab->needed))))
4ad4eba5
AM
4505 {
4506 int ret;
4507 const char *soname = elf_dt_name (abfd);
4508
4509 /* A symbol from a library loaded via DT_NEEDED of some
4510 other library is referenced by a regular object.
e56f61be 4511 Add a DT_NEEDED entry for it. Issue an error if
b918acf9
NC
4512 --no-add-needed is used and the reference was not
4513 a weak one. */
4514 if (undef_bfd != NULL
4515 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
e56f61be
L
4516 {
4517 (*_bfd_error_handler)
3cbc5de0 4518 (_("%B: undefined reference to symbol '%s'"),
b918acf9 4519 undef_bfd, name);
3cbc5de0
NC
4520 (*_bfd_error_handler)
4521 (_("note: '%s' is defined in DSO %B so try adding it to the linker command line"),
d003868e 4522 abfd, name);
3cbc5de0 4523 bfd_set_error (bfd_error_invalid_operation);
e56f61be
L
4524 goto error_free_vers;
4525 }
4526
a50b1753
NC
4527 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
4528 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
a5db907e 4529
4ad4eba5 4530 add_needed = TRUE;
7e9f0867 4531 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
4532 if (ret < 0)
4533 goto error_free_vers;
4534
4535 BFD_ASSERT (ret == 0);
4536 }
4537 }
4538 }
4539
66eb6687
AM
4540 if (extversym != NULL)
4541 {
4542 free (extversym);
4543 extversym = NULL;
4544 }
4545
4546 if (isymbuf != NULL)
4547 {
4548 free (isymbuf);
4549 isymbuf = NULL;
4550 }
4551
4552 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4553 {
4554 unsigned int i;
4555
4556 /* Restore the symbol table. */
97fed1c9
JJ
4557 if (bed->as_needed_cleanup)
4558 (*bed->as_needed_cleanup) (abfd, info);
66eb6687
AM
4559 old_hash = (char *) old_tab + tabsize;
4560 old_ent = (char *) old_hash + hashsize;
4561 sym_hash = elf_sym_hashes (abfd);
4f87808c
AM
4562 htab->root.table.table = old_table;
4563 htab->root.table.size = old_size;
4564 htab->root.table.count = old_count;
66eb6687
AM
4565 memcpy (htab->root.table.table, old_tab, tabsize);
4566 memcpy (sym_hash, old_hash, hashsize);
4567 htab->root.undefs = old_undefs;
4568 htab->root.undefs_tail = old_undefs_tail;
4569 for (i = 0; i < htab->root.table.size; i++)
4570 {
4571 struct bfd_hash_entry *p;
4572 struct elf_link_hash_entry *h;
3e0882af
L
4573 bfd_size_type size;
4574 unsigned int alignment_power;
66eb6687
AM
4575
4576 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4577 {
4578 h = (struct elf_link_hash_entry *) p;
2de92251
AM
4579 if (h->root.type == bfd_link_hash_warning)
4580 h = (struct elf_link_hash_entry *) h->root.u.i.link;
66eb6687
AM
4581 if (h->dynindx >= old_dynsymcount)
4582 _bfd_elf_strtab_delref (htab->dynstr, h->dynstr_index);
2de92251 4583
3e0882af
L
4584 /* Preserve the maximum alignment and size for common
4585 symbols even if this dynamic lib isn't on DT_NEEDED
4586 since it can still be loaded at the run-time by another
4587 dynamic lib. */
4588 if (h->root.type == bfd_link_hash_common)
4589 {
4590 size = h->root.u.c.size;
4591 alignment_power = h->root.u.c.p->alignment_power;
4592 }
4593 else
4594 {
4595 size = 0;
4596 alignment_power = 0;
4597 }
66eb6687
AM
4598 memcpy (p, old_ent, htab->root.table.entsize);
4599 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
4600 h = (struct elf_link_hash_entry *) p;
4601 if (h->root.type == bfd_link_hash_warning)
4602 {
4603 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4604 old_ent = (char *) old_ent + htab->root.table.entsize;
4605 }
3e0882af
L
4606 else if (h->root.type == bfd_link_hash_common)
4607 {
4608 if (size > h->root.u.c.size)
4609 h->root.u.c.size = size;
4610 if (alignment_power > h->root.u.c.p->alignment_power)
4611 h->root.u.c.p->alignment_power = alignment_power;
4612 }
66eb6687
AM
4613 }
4614 }
4615
5061a885
AM
4616 /* Make a special call to the linker "notice" function to
4617 tell it that symbols added for crefs may need to be removed. */
4618 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
16d96b5b 4619 notice_not_needed, 0, NULL))
9af2a943 4620 goto error_free_vers;
5061a885 4621
66eb6687
AM
4622 free (old_tab);
4623 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4624 alloc_mark);
4625 if (nondeflt_vers != NULL)
4626 free (nondeflt_vers);
4627 return TRUE;
4628 }
2de92251 4629
66eb6687
AM
4630 if (old_tab != NULL)
4631 {
5061a885 4632 if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
16d96b5b 4633 notice_needed, 0, NULL))
9af2a943 4634 goto error_free_vers;
66eb6687
AM
4635 free (old_tab);
4636 old_tab = NULL;
4637 }
4638
4ad4eba5
AM
4639 /* Now that all the symbols from this input file are created, handle
4640 .symver foo, foo@BAR such that any relocs against foo become foo@BAR. */
4641 if (nondeflt_vers != NULL)
4642 {
4643 bfd_size_type cnt, symidx;
4644
4645 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
4646 {
4647 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
4648 char *shortname, *p;
4649
4650 p = strchr (h->root.root.string, ELF_VER_CHR);
4651 if (p == NULL
4652 || (h->root.type != bfd_link_hash_defined
4653 && h->root.type != bfd_link_hash_defweak))
4654 continue;
4655
4656 amt = p - h->root.root.string;
a50b1753 4657 shortname = (char *) bfd_malloc (amt + 1);
14b1c01e
AM
4658 if (!shortname)
4659 goto error_free_vers;
4ad4eba5
AM
4660 memcpy (shortname, h->root.root.string, amt);
4661 shortname[amt] = '\0';
4662
4663 hi = (struct elf_link_hash_entry *)
66eb6687 4664 bfd_link_hash_lookup (&htab->root, shortname,
4ad4eba5
AM
4665 FALSE, FALSE, FALSE);
4666 if (hi != NULL
4667 && hi->root.type == h->root.type
4668 && hi->root.u.def.value == h->root.u.def.value
4669 && hi->root.u.def.section == h->root.u.def.section)
4670 {
4671 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
4672 hi->root.type = bfd_link_hash_indirect;
4673 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
fcfa13d2 4674 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4ad4eba5
AM
4675 sym_hash = elf_sym_hashes (abfd);
4676 if (sym_hash)
4677 for (symidx = 0; symidx < extsymcount; ++symidx)
4678 if (sym_hash[symidx] == hi)
4679 {
4680 sym_hash[symidx] = h;
4681 break;
4682 }
4683 }
4684 free (shortname);
4685 }
4686 free (nondeflt_vers);
4687 nondeflt_vers = NULL;
4688 }
4689
4ad4eba5
AM
4690 /* Now set the weakdefs field correctly for all the weak defined
4691 symbols we found. The only way to do this is to search all the
4692 symbols. Since we only need the information for non functions in
4693 dynamic objects, that's the only time we actually put anything on
4694 the list WEAKS. We need this information so that if a regular
4695 object refers to a symbol defined weakly in a dynamic object, the
4696 real symbol in the dynamic object is also put in the dynamic
4697 symbols; we also must arrange for both symbols to point to the
4698 same memory location. We could handle the general case of symbol
4699 aliasing, but a general symbol alias can only be generated in
4700 assembler code, handling it correctly would be very time
4701 consuming, and other ELF linkers don't handle general aliasing
4702 either. */
4703 if (weaks != NULL)
4704 {
4705 struct elf_link_hash_entry **hpp;
4706 struct elf_link_hash_entry **hppend;
4707 struct elf_link_hash_entry **sorted_sym_hash;
4708 struct elf_link_hash_entry *h;
4709 size_t sym_count;
4710
4711 /* Since we have to search the whole symbol list for each weak
4712 defined symbol, search time for N weak defined symbols will be
4713 O(N^2). Binary search will cut it down to O(NlogN). */
4714 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
a50b1753 4715 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4ad4eba5
AM
4716 if (sorted_sym_hash == NULL)
4717 goto error_return;
4718 sym_hash = sorted_sym_hash;
4719 hpp = elf_sym_hashes (abfd);
4720 hppend = hpp + extsymcount;
4721 sym_count = 0;
4722 for (; hpp < hppend; hpp++)
4723 {
4724 h = *hpp;
4725 if (h != NULL
4726 && h->root.type == bfd_link_hash_defined
fcb93ecf 4727 && !bed->is_function_type (h->type))
4ad4eba5
AM
4728 {
4729 *sym_hash = h;
4730 sym_hash++;
4731 sym_count++;
4732 }
4733 }
4734
4735 qsort (sorted_sym_hash, sym_count,
4736 sizeof (struct elf_link_hash_entry *),
4737 elf_sort_symbol);
4738
4739 while (weaks != NULL)
4740 {
4741 struct elf_link_hash_entry *hlook;
4742 asection *slook;
4743 bfd_vma vlook;
4ad4eba5
AM
4744 size_t i, j, idx;
4745
4746 hlook = weaks;
f6e332e6
AM
4747 weaks = hlook->u.weakdef;
4748 hlook->u.weakdef = NULL;
4ad4eba5
AM
4749
4750 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
4751 || hlook->root.type == bfd_link_hash_defweak
4752 || hlook->root.type == bfd_link_hash_common
4753 || hlook->root.type == bfd_link_hash_indirect);
4754 slook = hlook->root.u.def.section;
4755 vlook = hlook->root.u.def.value;
4756
4ad4eba5
AM
4757 i = 0;
4758 j = sym_count;
14160578 4759 while (i != j)
4ad4eba5
AM
4760 {
4761 bfd_signed_vma vdiff;
4762 idx = (i + j) / 2;
14160578 4763 h = sorted_sym_hash[idx];
4ad4eba5
AM
4764 vdiff = vlook - h->root.u.def.value;
4765 if (vdiff < 0)
4766 j = idx;
4767 else if (vdiff > 0)
4768 i = idx + 1;
4769 else
4770 {
a9b881be 4771 long sdiff = slook->id - h->root.u.def.section->id;
4ad4eba5
AM
4772 if (sdiff < 0)
4773 j = idx;
4774 else if (sdiff > 0)
4775 i = idx + 1;
4776 else
14160578 4777 break;
4ad4eba5
AM
4778 }
4779 }
4780
4781 /* We didn't find a value/section match. */
14160578 4782 if (i == j)
4ad4eba5
AM
4783 continue;
4784
14160578
AM
4785 /* With multiple aliases, or when the weak symbol is already
4786 strongly defined, we have multiple matching symbols and
4787 the binary search above may land on any of them. Step
4788 one past the matching symbol(s). */
4789 while (++idx != j)
4790 {
4791 h = sorted_sym_hash[idx];
4792 if (h->root.u.def.section != slook
4793 || h->root.u.def.value != vlook)
4794 break;
4795 }
4796
4797 /* Now look back over the aliases. Since we sorted by size
4798 as well as value and section, we'll choose the one with
4799 the largest size. */
4800 while (idx-- != i)
4ad4eba5 4801 {
14160578 4802 h = sorted_sym_hash[idx];
4ad4eba5
AM
4803
4804 /* Stop if value or section doesn't match. */
14160578
AM
4805 if (h->root.u.def.section != slook
4806 || h->root.u.def.value != vlook)
4ad4eba5
AM
4807 break;
4808 else if (h != hlook)
4809 {
f6e332e6 4810 hlook->u.weakdef = h;
4ad4eba5
AM
4811
4812 /* If the weak definition is in the list of dynamic
4813 symbols, make sure the real definition is put
4814 there as well. */
4815 if (hlook->dynindx != -1 && h->dynindx == -1)
4816 {
c152c796 4817 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4dd07732
AM
4818 {
4819 err_free_sym_hash:
4820 free (sorted_sym_hash);
4821 goto error_return;
4822 }
4ad4eba5
AM
4823 }
4824
4825 /* If the real definition is in the list of dynamic
4826 symbols, make sure the weak definition is put
4827 there as well. If we don't do this, then the
4828 dynamic loader might not merge the entries for the
4829 real definition and the weak definition. */
4830 if (h->dynindx != -1 && hlook->dynindx == -1)
4831 {
c152c796 4832 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4dd07732 4833 goto err_free_sym_hash;
4ad4eba5
AM
4834 }
4835 break;
4836 }
4837 }
4838 }
4839
4840 free (sorted_sym_hash);
4841 }
4842
33177bb1
AM
4843 if (bed->check_directives
4844 && !(*bed->check_directives) (abfd, info))
4845 return FALSE;
85fbca6a 4846
4ad4eba5
AM
4847 /* If this object is the same format as the output object, and it is
4848 not a shared library, then let the backend look through the
4849 relocs.
4850
4851 This is required to build global offset table entries and to
4852 arrange for dynamic relocs. It is not required for the
4853 particular common case of linking non PIC code, even when linking
4854 against shared libraries, but unfortunately there is no way of
4855 knowing whether an object file has been compiled PIC or not.
4856 Looking through the relocs is not particularly time consuming.
4857 The problem is that we must either (1) keep the relocs in memory,
4858 which causes the linker to require additional runtime memory or
4859 (2) read the relocs twice from the input file, which wastes time.
4860 This would be a good case for using mmap.
4861
4862 I have no idea how to handle linking PIC code into a file of a
4863 different format. It probably can't be done. */
4ad4eba5 4864 if (! dynamic
66eb6687 4865 && is_elf_hash_table (htab)
13285a1b 4866 && bed->check_relocs != NULL
39334f3a 4867 && elf_object_id (abfd) == elf_hash_table_id (htab)
f13a99db 4868 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
4ad4eba5
AM
4869 {
4870 asection *o;
4871
4872 for (o = abfd->sections; o != NULL; o = o->next)
4873 {
4874 Elf_Internal_Rela *internal_relocs;
4875 bfd_boolean ok;
4876
4877 if ((o->flags & SEC_RELOC) == 0
4878 || o->reloc_count == 0
4879 || ((info->strip == strip_all || info->strip == strip_debugger)
4880 && (o->flags & SEC_DEBUGGING) != 0)
4881 || bfd_is_abs_section (o->output_section))
4882 continue;
4883
4884 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
4885 info->keep_memory);
4886 if (internal_relocs == NULL)
4887 goto error_return;
4888
66eb6687 4889 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
4ad4eba5
AM
4890
4891 if (elf_section_data (o)->relocs != internal_relocs)
4892 free (internal_relocs);
4893
4894 if (! ok)
4895 goto error_return;
4896 }
4897 }
4898
4899 /* If this is a non-traditional link, try to optimize the handling
4900 of the .stab/.stabstr sections. */
4901 if (! dynamic
4902 && ! info->traditional_format
66eb6687 4903 && is_elf_hash_table (htab)
4ad4eba5
AM
4904 && (info->strip != strip_all && info->strip != strip_debugger))
4905 {
4906 asection *stabstr;
4907
4908 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
4909 if (stabstr != NULL)
4910 {
4911 bfd_size_type string_offset = 0;
4912 asection *stab;
4913
4914 for (stab = abfd->sections; stab; stab = stab->next)
0112cd26 4915 if (CONST_STRNEQ (stab->name, ".stab")
4ad4eba5
AM
4916 && (!stab->name[5] ||
4917 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
4918 && (stab->flags & SEC_MERGE) == 0
4919 && !bfd_is_abs_section (stab->output_section))
4920 {
4921 struct bfd_elf_section_data *secdata;
4922
4923 secdata = elf_section_data (stab);
66eb6687
AM
4924 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
4925 stabstr, &secdata->sec_info,
4ad4eba5
AM
4926 &string_offset))
4927 goto error_return;
4928 if (secdata->sec_info)
dbaa2011 4929 stab->sec_info_type = SEC_INFO_TYPE_STABS;
4ad4eba5
AM
4930 }
4931 }
4932 }
4933
66eb6687 4934 if (is_elf_hash_table (htab) && add_needed)
4ad4eba5
AM
4935 {
4936 /* Add this bfd to the loaded list. */
4937 struct elf_link_loaded_list *n;
4938
a50b1753
NC
4939 n = (struct elf_link_loaded_list *)
4940 bfd_alloc (abfd, sizeof (struct elf_link_loaded_list));
4ad4eba5
AM
4941 if (n == NULL)
4942 goto error_return;
4943 n->abfd = abfd;
66eb6687
AM
4944 n->next = htab->loaded;
4945 htab->loaded = n;
4ad4eba5
AM
4946 }
4947
4948 return TRUE;
4949
4950 error_free_vers:
66eb6687
AM
4951 if (old_tab != NULL)
4952 free (old_tab);
4ad4eba5
AM
4953 if (nondeflt_vers != NULL)
4954 free (nondeflt_vers);
4955 if (extversym != NULL)
4956 free (extversym);
4957 error_free_sym:
4958 if (isymbuf != NULL)
4959 free (isymbuf);
4960 error_return:
4961 return FALSE;
4962}
4963
8387904d
AM
4964/* Return the linker hash table entry of a symbol that might be
4965 satisfied by an archive symbol. Return -1 on error. */
4966
4967struct elf_link_hash_entry *
4968_bfd_elf_archive_symbol_lookup (bfd *abfd,
4969 struct bfd_link_info *info,
4970 const char *name)
4971{
4972 struct elf_link_hash_entry *h;
4973 char *p, *copy;
4974 size_t len, first;
4975
2a41f396 4976 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
8387904d
AM
4977 if (h != NULL)
4978 return h;
4979
4980 /* If this is a default version (the name contains @@), look up the
4981 symbol again with only one `@' as well as without the version.
4982 The effect is that references to the symbol with and without the
4983 version will be matched by the default symbol in the archive. */
4984
4985 p = strchr (name, ELF_VER_CHR);
4986 if (p == NULL || p[1] != ELF_VER_CHR)
4987 return h;
4988
4989 /* First check with only one `@'. */
4990 len = strlen (name);
a50b1753 4991 copy = (char *) bfd_alloc (abfd, len);
8387904d
AM
4992 if (copy == NULL)
4993 return (struct elf_link_hash_entry *) 0 - 1;
4994
4995 first = p - name + 1;
4996 memcpy (copy, name, first);
4997 memcpy (copy + first, name + first + 1, len - first);
4998
2a41f396 4999 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
8387904d
AM
5000 if (h == NULL)
5001 {
5002 /* We also need to check references to the symbol without the
5003 version. */
5004 copy[first - 1] = '\0';
5005 h = elf_link_hash_lookup (elf_hash_table (info), copy,
2a41f396 5006 FALSE, FALSE, TRUE);
8387904d
AM
5007 }
5008
5009 bfd_release (abfd, copy);
5010 return h;
5011}
5012
0ad989f9
L
5013/* Add symbols from an ELF archive file to the linker hash table. We
5014 don't use _bfd_generic_link_add_archive_symbols because of a
5015 problem which arises on UnixWare. The UnixWare libc.so is an
5016 archive which includes an entry libc.so.1 which defines a bunch of
5017 symbols. The libc.so archive also includes a number of other
5018 object files, which also define symbols, some of which are the same
5019 as those defined in libc.so.1. Correct linking requires that we
5020 consider each object file in turn, and include it if it defines any
5021 symbols we need. _bfd_generic_link_add_archive_symbols does not do
5022 this; it looks through the list of undefined symbols, and includes
5023 any object file which defines them. When this algorithm is used on
5024 UnixWare, it winds up pulling in libc.so.1 early and defining a
5025 bunch of symbols. This means that some of the other objects in the
5026 archive are not included in the link, which is incorrect since they
5027 precede libc.so.1 in the archive.
5028
5029 Fortunately, ELF archive handling is simpler than that done by
5030 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
5031 oddities. In ELF, if we find a symbol in the archive map, and the
5032 symbol is currently undefined, we know that we must pull in that
5033 object file.
5034
5035 Unfortunately, we do have to make multiple passes over the symbol
5036 table until nothing further is resolved. */
5037
4ad4eba5
AM
5038static bfd_boolean
5039elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
0ad989f9
L
5040{
5041 symindex c;
5042 bfd_boolean *defined = NULL;
5043 bfd_boolean *included = NULL;
5044 carsym *symdefs;
5045 bfd_boolean loop;
5046 bfd_size_type amt;
8387904d
AM
5047 const struct elf_backend_data *bed;
5048 struct elf_link_hash_entry * (*archive_symbol_lookup)
5049 (bfd *, struct bfd_link_info *, const char *);
0ad989f9
L
5050
5051 if (! bfd_has_map (abfd))
5052 {
5053 /* An empty archive is a special case. */
5054 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
5055 return TRUE;
5056 bfd_set_error (bfd_error_no_armap);
5057 return FALSE;
5058 }
5059
5060 /* Keep track of all symbols we know to be already defined, and all
5061 files we know to be already included. This is to speed up the
5062 second and subsequent passes. */
5063 c = bfd_ardata (abfd)->symdef_count;
5064 if (c == 0)
5065 return TRUE;
5066 amt = c;
5067 amt *= sizeof (bfd_boolean);
a50b1753
NC
5068 defined = (bfd_boolean *) bfd_zmalloc (amt);
5069 included = (bfd_boolean *) bfd_zmalloc (amt);
0ad989f9
L
5070 if (defined == NULL || included == NULL)
5071 goto error_return;
5072
5073 symdefs = bfd_ardata (abfd)->symdefs;
8387904d
AM
5074 bed = get_elf_backend_data (abfd);
5075 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
0ad989f9
L
5076
5077 do
5078 {
5079 file_ptr last;
5080 symindex i;
5081 carsym *symdef;
5082 carsym *symdefend;
5083
5084 loop = FALSE;
5085 last = -1;
5086
5087 symdef = symdefs;
5088 symdefend = symdef + c;
5089 for (i = 0; symdef < symdefend; symdef++, i++)
5090 {
5091 struct elf_link_hash_entry *h;
5092 bfd *element;
5093 struct bfd_link_hash_entry *undefs_tail;
5094 symindex mark;
5095
5096 if (defined[i] || included[i])
5097 continue;
5098 if (symdef->file_offset == last)
5099 {
5100 included[i] = TRUE;
5101 continue;
5102 }
5103
8387904d
AM
5104 h = archive_symbol_lookup (abfd, info, symdef->name);
5105 if (h == (struct elf_link_hash_entry *) 0 - 1)
5106 goto error_return;
0ad989f9
L
5107
5108 if (h == NULL)
5109 continue;
5110
5111 if (h->root.type == bfd_link_hash_common)
5112 {
5113 /* We currently have a common symbol. The archive map contains
5114 a reference to this symbol, so we may want to include it. We
5115 only want to include it however, if this archive element
5116 contains a definition of the symbol, not just another common
5117 declaration of it.
5118
5119 Unfortunately some archivers (including GNU ar) will put
5120 declarations of common symbols into their archive maps, as
5121 well as real definitions, so we cannot just go by the archive
5122 map alone. Instead we must read in the element's symbol
5123 table and check that to see what kind of symbol definition
5124 this is. */
5125 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5126 continue;
5127 }
5128 else if (h->root.type != bfd_link_hash_undefined)
5129 {
5130 if (h->root.type != bfd_link_hash_undefweak)
5131 defined[i] = TRUE;
5132 continue;
5133 }
5134
5135 /* We need to include this archive member. */
5136 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5137 if (element == NULL)
5138 goto error_return;
5139
5140 if (! bfd_check_format (element, bfd_object))
5141 goto error_return;
5142
5143 /* Doublecheck that we have not included this object
5144 already--it should be impossible, but there may be
5145 something wrong with the archive. */
5146 if (element->archive_pass != 0)
5147 {
5148 bfd_set_error (bfd_error_bad_value);
5149 goto error_return;
5150 }
5151 element->archive_pass = 1;
5152
5153 undefs_tail = info->hash->undefs_tail;
5154
0e144ba7
AM
5155 if (!(*info->callbacks
5156 ->add_archive_element) (info, element, symdef->name, &element))
0ad989f9 5157 goto error_return;
0e144ba7 5158 if (!bfd_link_add_symbols (element, info))
0ad989f9
L
5159 goto error_return;
5160
5161 /* If there are any new undefined symbols, we need to make
5162 another pass through the archive in order to see whether
5163 they can be defined. FIXME: This isn't perfect, because
5164 common symbols wind up on undefs_tail and because an
5165 undefined symbol which is defined later on in this pass
5166 does not require another pass. This isn't a bug, but it
5167 does make the code less efficient than it could be. */
5168 if (undefs_tail != info->hash->undefs_tail)
5169 loop = TRUE;
5170
5171 /* Look backward to mark all symbols from this object file
5172 which we have already seen in this pass. */
5173 mark = i;
5174 do
5175 {
5176 included[mark] = TRUE;
5177 if (mark == 0)
5178 break;
5179 --mark;
5180 }
5181 while (symdefs[mark].file_offset == symdef->file_offset);
5182
5183 /* We mark subsequent symbols from this object file as we go
5184 on through the loop. */
5185 last = symdef->file_offset;
5186 }
5187 }
5188 while (loop);
5189
5190 free (defined);
5191 free (included);
5192
5193 return TRUE;
5194
5195 error_return:
5196 if (defined != NULL)
5197 free (defined);
5198 if (included != NULL)
5199 free (included);
5200 return FALSE;
5201}
4ad4eba5
AM
5202
5203/* Given an ELF BFD, add symbols to the global hash table as
5204 appropriate. */
5205
5206bfd_boolean
5207bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5208{
5209 switch (bfd_get_format (abfd))
5210 {
5211 case bfd_object:
5212 return elf_link_add_object_symbols (abfd, info);
5213 case bfd_archive:
5214 return elf_link_add_archive_symbols (abfd, info);
5215 default:
5216 bfd_set_error (bfd_error_wrong_format);
5217 return FALSE;
5218 }
5219}
5a580b3a 5220\f
14b1c01e
AM
5221struct hash_codes_info
5222{
5223 unsigned long *hashcodes;
5224 bfd_boolean error;
5225};
a0c8462f 5226
5a580b3a
AM
5227/* This function will be called though elf_link_hash_traverse to store
5228 all hash value of the exported symbols in an array. */
5229
5230static bfd_boolean
5231elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5232{
a50b1753 5233 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5a580b3a
AM
5234 const char *name;
5235 char *p;
5236 unsigned long ha;
5237 char *alc = NULL;
5238
5a580b3a
AM
5239 /* Ignore indirect symbols. These are added by the versioning code. */
5240 if (h->dynindx == -1)
5241 return TRUE;
5242
5243 name = h->root.root.string;
5244 p = strchr (name, ELF_VER_CHR);
5245 if (p != NULL)
5246 {
a50b1753 5247 alc = (char *) bfd_malloc (p - name + 1);
14b1c01e
AM
5248 if (alc == NULL)
5249 {
5250 inf->error = TRUE;
5251 return FALSE;
5252 }
5a580b3a
AM
5253 memcpy (alc, name, p - name);
5254 alc[p - name] = '\0';
5255 name = alc;
5256 }
5257
5258 /* Compute the hash value. */
5259 ha = bfd_elf_hash (name);
5260
5261 /* Store the found hash value in the array given as the argument. */
14b1c01e 5262 *(inf->hashcodes)++ = ha;
5a580b3a
AM
5263
5264 /* And store it in the struct so that we can put it in the hash table
5265 later. */
f6e332e6 5266 h->u.elf_hash_value = ha;
5a580b3a
AM
5267
5268 if (alc != NULL)
5269 free (alc);
5270
5271 return TRUE;
5272}
5273
fdc90cb4
JJ
5274struct collect_gnu_hash_codes
5275{
5276 bfd *output_bfd;
5277 const struct elf_backend_data *bed;
5278 unsigned long int nsyms;
5279 unsigned long int maskbits;
5280 unsigned long int *hashcodes;
5281 unsigned long int *hashval;
5282 unsigned long int *indx;
5283 unsigned long int *counts;
5284 bfd_vma *bitmask;
5285 bfd_byte *contents;
5286 long int min_dynindx;
5287 unsigned long int bucketcount;
5288 unsigned long int symindx;
5289 long int local_indx;
5290 long int shift1, shift2;
5291 unsigned long int mask;
14b1c01e 5292 bfd_boolean error;
fdc90cb4
JJ
5293};
5294
5295/* This function will be called though elf_link_hash_traverse to store
5296 all hash value of the exported symbols in an array. */
5297
5298static bfd_boolean
5299elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5300{
a50b1753 5301 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4
JJ
5302 const char *name;
5303 char *p;
5304 unsigned long ha;
5305 char *alc = NULL;
5306
fdc90cb4
JJ
5307 /* Ignore indirect symbols. These are added by the versioning code. */
5308 if (h->dynindx == -1)
5309 return TRUE;
5310
5311 /* Ignore also local symbols and undefined symbols. */
5312 if (! (*s->bed->elf_hash_symbol) (h))
5313 return TRUE;
5314
5315 name = h->root.root.string;
5316 p = strchr (name, ELF_VER_CHR);
5317 if (p != NULL)
5318 {
a50b1753 5319 alc = (char *) bfd_malloc (p - name + 1);
14b1c01e
AM
5320 if (alc == NULL)
5321 {
5322 s->error = TRUE;
5323 return FALSE;
5324 }
fdc90cb4
JJ
5325 memcpy (alc, name, p - name);
5326 alc[p - name] = '\0';
5327 name = alc;
5328 }
5329
5330 /* Compute the hash value. */
5331 ha = bfd_elf_gnu_hash (name);
5332
5333 /* Store the found hash value in the array for compute_bucket_count,
5334 and also for .dynsym reordering purposes. */
5335 s->hashcodes[s->nsyms] = ha;
5336 s->hashval[h->dynindx] = ha;
5337 ++s->nsyms;
5338 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5339 s->min_dynindx = h->dynindx;
5340
5341 if (alc != NULL)
5342 free (alc);
5343
5344 return TRUE;
5345}
5346
5347/* This function will be called though elf_link_hash_traverse to do
5348 final dynaminc symbol renumbering. */
5349
5350static bfd_boolean
5351elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5352{
a50b1753 5353 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4
JJ
5354 unsigned long int bucket;
5355 unsigned long int val;
5356
fdc90cb4
JJ
5357 /* Ignore indirect symbols. */
5358 if (h->dynindx == -1)
5359 return TRUE;
5360
5361 /* Ignore also local symbols and undefined symbols. */
5362 if (! (*s->bed->elf_hash_symbol) (h))
5363 {
5364 if (h->dynindx >= s->min_dynindx)
5365 h->dynindx = s->local_indx++;
5366 return TRUE;
5367 }
5368
5369 bucket = s->hashval[h->dynindx] % s->bucketcount;
5370 val = (s->hashval[h->dynindx] >> s->shift1)
5371 & ((s->maskbits >> s->shift1) - 1);
5372 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5373 s->bitmask[val]
5374 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5375 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5376 if (s->counts[bucket] == 1)
5377 /* Last element terminates the chain. */
5378 val |= 1;
5379 bfd_put_32 (s->output_bfd, val,
5380 s->contents + (s->indx[bucket] - s->symindx) * 4);
5381 --s->counts[bucket];
5382 h->dynindx = s->indx[bucket]++;
5383 return TRUE;
5384}
5385
5386/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5387
5388bfd_boolean
5389_bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5390{
5391 return !(h->forced_local
5392 || h->root.type == bfd_link_hash_undefined
5393 || h->root.type == bfd_link_hash_undefweak
5394 || ((h->root.type == bfd_link_hash_defined
5395 || h->root.type == bfd_link_hash_defweak)
5396 && h->root.u.def.section->output_section == NULL));
5397}
5398
5a580b3a
AM
5399/* Array used to determine the number of hash table buckets to use
5400 based on the number of symbols there are. If there are fewer than
5401 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5402 fewer than 37 we use 17 buckets, and so forth. We never use more
5403 than 32771 buckets. */
5404
5405static const size_t elf_buckets[] =
5406{
5407 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5408 16411, 32771, 0
5409};
5410
5411/* Compute bucket count for hashing table. We do not use a static set
5412 of possible tables sizes anymore. Instead we determine for all
5413 possible reasonable sizes of the table the outcome (i.e., the
5414 number of collisions etc) and choose the best solution. The
5415 weighting functions are not too simple to allow the table to grow
5416 without bounds. Instead one of the weighting factors is the size.
5417 Therefore the result is always a good payoff between few collisions
5418 (= short chain lengths) and table size. */
5419static size_t
b20dd2ce 5420compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
d40f3da9
AM
5421 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5422 unsigned long int nsyms,
5423 int gnu_hash)
5a580b3a 5424{
5a580b3a 5425 size_t best_size = 0;
5a580b3a 5426 unsigned long int i;
5a580b3a 5427
5a580b3a
AM
5428 /* We have a problem here. The following code to optimize the table
5429 size requires an integer type with more the 32 bits. If
5430 BFD_HOST_U_64_BIT is set we know about such a type. */
5431#ifdef BFD_HOST_U_64_BIT
5432 if (info->optimize)
5433 {
5a580b3a
AM
5434 size_t minsize;
5435 size_t maxsize;
5436 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5a580b3a 5437 bfd *dynobj = elf_hash_table (info)->dynobj;
d40f3da9 5438 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5a580b3a 5439 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
fdc90cb4 5440 unsigned long int *counts;
d40f3da9 5441 bfd_size_type amt;
0883b6e0 5442 unsigned int no_improvement_count = 0;
5a580b3a
AM
5443
5444 /* Possible optimization parameters: if we have NSYMS symbols we say
5445 that the hashing table must at least have NSYMS/4 and at most
5446 2*NSYMS buckets. */
5447 minsize = nsyms / 4;
5448 if (minsize == 0)
5449 minsize = 1;
5450 best_size = maxsize = nsyms * 2;
fdc90cb4
JJ
5451 if (gnu_hash)
5452 {
5453 if (minsize < 2)
5454 minsize = 2;
5455 if ((best_size & 31) == 0)
5456 ++best_size;
5457 }
5a580b3a
AM
5458
5459 /* Create array where we count the collisions in. We must use bfd_malloc
5460 since the size could be large. */
5461 amt = maxsize;
5462 amt *= sizeof (unsigned long int);
a50b1753 5463 counts = (unsigned long int *) bfd_malloc (amt);
5a580b3a 5464 if (counts == NULL)
fdc90cb4 5465 return 0;
5a580b3a
AM
5466
5467 /* Compute the "optimal" size for the hash table. The criteria is a
5468 minimal chain length. The minor criteria is (of course) the size
5469 of the table. */
5470 for (i = minsize; i < maxsize; ++i)
5471 {
5472 /* Walk through the array of hashcodes and count the collisions. */
5473 BFD_HOST_U_64_BIT max;
5474 unsigned long int j;
5475 unsigned long int fact;
5476
fdc90cb4
JJ
5477 if (gnu_hash && (i & 31) == 0)
5478 continue;
5479
5a580b3a
AM
5480 memset (counts, '\0', i * sizeof (unsigned long int));
5481
5482 /* Determine how often each hash bucket is used. */
5483 for (j = 0; j < nsyms; ++j)
5484 ++counts[hashcodes[j] % i];
5485
5486 /* For the weight function we need some information about the
5487 pagesize on the target. This is information need not be 100%
5488 accurate. Since this information is not available (so far) we
5489 define it here to a reasonable default value. If it is crucial
5490 to have a better value some day simply define this value. */
5491# ifndef BFD_TARGET_PAGESIZE
5492# define BFD_TARGET_PAGESIZE (4096)
5493# endif
5494
fdc90cb4
JJ
5495 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5496 and the chains. */
5497 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5a580b3a
AM
5498
5499# if 1
5500 /* Variant 1: optimize for short chains. We add the squares
5501 of all the chain lengths (which favors many small chain
5502 over a few long chains). */
5503 for (j = 0; j < i; ++j)
5504 max += counts[j] * counts[j];
5505
5506 /* This adds penalties for the overall size of the table. */
fdc90cb4 5507 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
5508 max *= fact * fact;
5509# else
5510 /* Variant 2: Optimize a lot more for small table. Here we
5511 also add squares of the size but we also add penalties for
5512 empty slots (the +1 term). */
5513 for (j = 0; j < i; ++j)
5514 max += (1 + counts[j]) * (1 + counts[j]);
5515
5516 /* The overall size of the table is considered, but not as
5517 strong as in variant 1, where it is squared. */
fdc90cb4 5518 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
5519 max *= fact;
5520# endif
5521
5522 /* Compare with current best results. */
5523 if (max < best_chlen)
5524 {
5525 best_chlen = max;
5526 best_size = i;
0883b6e0 5527 no_improvement_count = 0;
5a580b3a 5528 }
0883b6e0
NC
5529 /* PR 11843: Avoid futile long searches for the best bucket size
5530 when there are a large number of symbols. */
5531 else if (++no_improvement_count == 100)
5532 break;
5a580b3a
AM
5533 }
5534
5535 free (counts);
5536 }
5537 else
5538#endif /* defined (BFD_HOST_U_64_BIT) */
5539 {
5540 /* This is the fallback solution if no 64bit type is available or if we
5541 are not supposed to spend much time on optimizations. We select the
5542 bucket count using a fixed set of numbers. */
5543 for (i = 0; elf_buckets[i] != 0; i++)
5544 {
5545 best_size = elf_buckets[i];
fdc90cb4 5546 if (nsyms < elf_buckets[i + 1])
5a580b3a
AM
5547 break;
5548 }
fdc90cb4
JJ
5549 if (gnu_hash && best_size < 2)
5550 best_size = 2;
5a580b3a
AM
5551 }
5552
5a580b3a
AM
5553 return best_size;
5554}
5555
d0bf826b
AM
5556/* Size any SHT_GROUP section for ld -r. */
5557
5558bfd_boolean
5559_bfd_elf_size_group_sections (struct bfd_link_info *info)
5560{
5561 bfd *ibfd;
5562
5563 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
5564 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
5565 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
5566 return FALSE;
5567 return TRUE;
5568}
5569
5a580b3a
AM
5570/* Set up the sizes and contents of the ELF dynamic sections. This is
5571 called by the ELF linker emulation before_allocation routine. We
5572 must set the sizes of the sections before the linker sets the
5573 addresses of the various sections. */
5574
5575bfd_boolean
5576bfd_elf_size_dynamic_sections (bfd *output_bfd,
5577 const char *soname,
5578 const char *rpath,
5579 const char *filter_shlib,
7ee314fa
AM
5580 const char *audit,
5581 const char *depaudit,
5a580b3a
AM
5582 const char * const *auxiliary_filters,
5583 struct bfd_link_info *info,
fd91d419 5584 asection **sinterpptr)
5a580b3a
AM
5585{
5586 bfd_size_type soname_indx;
5587 bfd *dynobj;
5588 const struct elf_backend_data *bed;
28caa186 5589 struct elf_info_failed asvinfo;
5a580b3a
AM
5590
5591 *sinterpptr = NULL;
5592
5593 soname_indx = (bfd_size_type) -1;
5594
5595 if (!is_elf_hash_table (info->hash))
5596 return TRUE;
5597
6bfdb61b 5598 bed = get_elf_backend_data (output_bfd);
5a580b3a
AM
5599 if (info->execstack)
5600 elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X;
5601 else if (info->noexecstack)
5602 elf_tdata (output_bfd)->stack_flags = PF_R | PF_W;
5603 else
5604 {
5605 bfd *inputobj;
5606 asection *notesec = NULL;
5607 int exec = 0;
5608
5609 for (inputobj = info->input_bfds;
5610 inputobj;
5611 inputobj = inputobj->link_next)
5612 {
5613 asection *s;
5614
a92c088a
L
5615 if (inputobj->flags
5616 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
5a580b3a
AM
5617 continue;
5618 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
5619 if (s)
5620 {
5621 if (s->flags & SEC_CODE)
5622 exec = PF_X;
5623 notesec = s;
5624 }
6bfdb61b 5625 else if (bed->default_execstack)
5a580b3a
AM
5626 exec = PF_X;
5627 }
5628 if (notesec)
5629 {
5630 elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | exec;
5631 if (exec && info->relocatable
5632 && notesec->output_section != bfd_abs_section_ptr)
5633 notesec->output_section->flags |= SEC_CODE;
5634 }
5635 }
5636
5637 /* Any syms created from now on start with -1 in
5638 got.refcount/offset and plt.refcount/offset. */
a6aa5195
AM
5639 elf_hash_table (info)->init_got_refcount
5640 = elf_hash_table (info)->init_got_offset;
5641 elf_hash_table (info)->init_plt_refcount
5642 = elf_hash_table (info)->init_plt_offset;
5a580b3a 5643
d0bf826b
AM
5644 if (info->relocatable
5645 && !_bfd_elf_size_group_sections (info))
5646 return FALSE;
5647
5a580b3a
AM
5648 /* The backend may have to create some sections regardless of whether
5649 we're dynamic or not. */
5a580b3a
AM
5650 if (bed->elf_backend_always_size_sections
5651 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
5652 return FALSE;
5653
5654 dynobj = elf_hash_table (info)->dynobj;
5655
9a2a56cc 5656 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a
AM
5657 {
5658 struct elf_info_failed eif;
5659 struct elf_link_hash_entry *h;
5660 asection *dynstr;
5661 struct bfd_elf_version_tree *t;
5662 struct bfd_elf_version_expr *d;
046183de 5663 asection *s;
5a580b3a
AM
5664 bfd_boolean all_defined;
5665
3d4d4302 5666 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
5a580b3a
AM
5667 BFD_ASSERT (*sinterpptr != NULL || !info->executable);
5668
5669 if (soname != NULL)
5670 {
5671 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5672 soname, TRUE);
5673 if (soname_indx == (bfd_size_type) -1
5674 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
5675 return FALSE;
5676 }
5677
5678 if (info->symbolic)
5679 {
5680 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
5681 return FALSE;
5682 info->flags |= DF_SYMBOLIC;
5683 }
5684
5685 if (rpath != NULL)
5686 {
5687 bfd_size_type indx;
5688
5689 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
5690 TRUE);
5691 if (indx == (bfd_size_type) -1
5692 || !_bfd_elf_add_dynamic_entry (info, DT_RPATH, indx))
5693 return FALSE;
5694
5695 if (info->new_dtags)
5696 {
5697 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr, indx);
5698 if (!_bfd_elf_add_dynamic_entry (info, DT_RUNPATH, indx))
5699 return FALSE;
5700 }
5701 }
5702
5703 if (filter_shlib != NULL)
5704 {
5705 bfd_size_type indx;
5706
5707 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5708 filter_shlib, TRUE);
5709 if (indx == (bfd_size_type) -1
5710 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
5711 return FALSE;
5712 }
5713
5714 if (auxiliary_filters != NULL)
5715 {
5716 const char * const *p;
5717
5718 for (p = auxiliary_filters; *p != NULL; p++)
5719 {
5720 bfd_size_type indx;
5721
5722 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5723 *p, TRUE);
5724 if (indx == (bfd_size_type) -1
5725 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
5726 return FALSE;
5727 }
5728 }
5729
7ee314fa
AM
5730 if (audit != NULL)
5731 {
5732 bfd_size_type indx;
5733
5734 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
5735 TRUE);
5736 if (indx == (bfd_size_type) -1
5737 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
5738 return FALSE;
5739 }
5740
5741 if (depaudit != NULL)
5742 {
5743 bfd_size_type indx;
5744
5745 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
5746 TRUE);
5747 if (indx == (bfd_size_type) -1
5748 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
5749 return FALSE;
5750 }
5751
5a580b3a 5752 eif.info = info;
5a580b3a
AM
5753 eif.failed = FALSE;
5754
5755 /* If we are supposed to export all symbols into the dynamic symbol
5756 table (this is not the normal case), then do so. */
55255dae
L
5757 if (info->export_dynamic
5758 || (info->executable && info->dynamic))
5a580b3a
AM
5759 {
5760 elf_link_hash_traverse (elf_hash_table (info),
5761 _bfd_elf_export_symbol,
5762 &eif);
5763 if (eif.failed)
5764 return FALSE;
5765 }
5766
5767 /* Make all global versions with definition. */
fd91d419 5768 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 5769 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 5770 if (!d->symver && d->literal)
5a580b3a
AM
5771 {
5772 const char *verstr, *name;
5773 size_t namelen, verlen, newlen;
93252b1c 5774 char *newname, *p, leading_char;
5a580b3a
AM
5775 struct elf_link_hash_entry *newh;
5776
93252b1c 5777 leading_char = bfd_get_symbol_leading_char (output_bfd);
ae5a3597 5778 name = d->pattern;
93252b1c 5779 namelen = strlen (name) + (leading_char != '\0');
5a580b3a
AM
5780 verstr = t->name;
5781 verlen = strlen (verstr);
5782 newlen = namelen + verlen + 3;
5783
a50b1753 5784 newname = (char *) bfd_malloc (newlen);
5a580b3a
AM
5785 if (newname == NULL)
5786 return FALSE;
93252b1c
MF
5787 newname[0] = leading_char;
5788 memcpy (newname + (leading_char != '\0'), name, namelen);
5a580b3a
AM
5789
5790 /* Check the hidden versioned definition. */
5791 p = newname + namelen;
5792 *p++ = ELF_VER_CHR;
5793 memcpy (p, verstr, verlen + 1);
5794 newh = elf_link_hash_lookup (elf_hash_table (info),
5795 newname, FALSE, FALSE,
5796 FALSE);
5797 if (newh == NULL
5798 || (newh->root.type != bfd_link_hash_defined
5799 && newh->root.type != bfd_link_hash_defweak))
5800 {
5801 /* Check the default versioned definition. */
5802 *p++ = ELF_VER_CHR;
5803 memcpy (p, verstr, verlen + 1);
5804 newh = elf_link_hash_lookup (elf_hash_table (info),
5805 newname, FALSE, FALSE,
5806 FALSE);
5807 }
5808 free (newname);
5809
5810 /* Mark this version if there is a definition and it is
5811 not defined in a shared object. */
5812 if (newh != NULL
f5385ebf 5813 && !newh->def_dynamic
5a580b3a
AM
5814 && (newh->root.type == bfd_link_hash_defined
5815 || newh->root.type == bfd_link_hash_defweak))
5816 d->symver = 1;
5817 }
5818
5819 /* Attach all the symbols to their version information. */
5a580b3a 5820 asvinfo.info = info;
5a580b3a
AM
5821 asvinfo.failed = FALSE;
5822
5823 elf_link_hash_traverse (elf_hash_table (info),
5824 _bfd_elf_link_assign_sym_version,
5825 &asvinfo);
5826 if (asvinfo.failed)
5827 return FALSE;
5828
5829 if (!info->allow_undefined_version)
5830 {
5831 /* Check if all global versions have a definition. */
5832 all_defined = TRUE;
fd91d419 5833 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 5834 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 5835 if (d->literal && !d->symver && !d->script)
5a580b3a
AM
5836 {
5837 (*_bfd_error_handler)
5838 (_("%s: undefined version: %s"),
5839 d->pattern, t->name);
5840 all_defined = FALSE;
5841 }
5842
5843 if (!all_defined)
5844 {
5845 bfd_set_error (bfd_error_bad_value);
5846 return FALSE;
5847 }
5848 }
5849
5850 /* Find all symbols which were defined in a dynamic object and make
5851 the backend pick a reasonable value for them. */
5852 elf_link_hash_traverse (elf_hash_table (info),
5853 _bfd_elf_adjust_dynamic_symbol,
5854 &eif);
5855 if (eif.failed)
5856 return FALSE;
5857
5858 /* Add some entries to the .dynamic section. We fill in some of the
ee75fd95 5859 values later, in bfd_elf_final_link, but we must add the entries
5a580b3a
AM
5860 now so that we know the final size of the .dynamic section. */
5861
5862 /* If there are initialization and/or finalization functions to
5863 call then add the corresponding DT_INIT/DT_FINI entries. */
5864 h = (info->init_function
5865 ? elf_link_hash_lookup (elf_hash_table (info),
5866 info->init_function, FALSE,
5867 FALSE, FALSE)
5868 : NULL);
5869 if (h != NULL
f5385ebf
AM
5870 && (h->ref_regular
5871 || h->def_regular))
5a580b3a
AM
5872 {
5873 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
5874 return FALSE;
5875 }
5876 h = (info->fini_function
5877 ? elf_link_hash_lookup (elf_hash_table (info),
5878 info->fini_function, FALSE,
5879 FALSE, FALSE)
5880 : NULL);
5881 if (h != NULL
f5385ebf
AM
5882 && (h->ref_regular
5883 || h->def_regular))
5a580b3a
AM
5884 {
5885 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
5886 return FALSE;
5887 }
5888
046183de
AM
5889 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
5890 if (s != NULL && s->linker_has_input)
5a580b3a
AM
5891 {
5892 /* DT_PREINIT_ARRAY is not allowed in shared library. */
5893 if (! info->executable)
5894 {
5895 bfd *sub;
5896 asection *o;
5897
5898 for (sub = info->input_bfds; sub != NULL;
5899 sub = sub->link_next)
3fcd97f1
JJ
5900 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
5901 for (o = sub->sections; o != NULL; o = o->next)
5902 if (elf_section_data (o)->this_hdr.sh_type
5903 == SHT_PREINIT_ARRAY)
5904 {
5905 (*_bfd_error_handler)
5906 (_("%B: .preinit_array section is not allowed in DSO"),
5907 sub);
5908 break;
5909 }
5a580b3a
AM
5910
5911 bfd_set_error (bfd_error_nonrepresentable_section);
5912 return FALSE;
5913 }
5914
5915 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
5916 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
5917 return FALSE;
5918 }
046183de
AM
5919 s = bfd_get_section_by_name (output_bfd, ".init_array");
5920 if (s != NULL && s->linker_has_input)
5a580b3a
AM
5921 {
5922 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
5923 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
5924 return FALSE;
5925 }
046183de
AM
5926 s = bfd_get_section_by_name (output_bfd, ".fini_array");
5927 if (s != NULL && s->linker_has_input)
5a580b3a
AM
5928 {
5929 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
5930 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
5931 return FALSE;
5932 }
5933
3d4d4302 5934 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
5935 /* If .dynstr is excluded from the link, we don't want any of
5936 these tags. Strictly, we should be checking each section
5937 individually; This quick check covers for the case where
5938 someone does a /DISCARD/ : { *(*) }. */
5939 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
5940 {
5941 bfd_size_type strsize;
5942
5943 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
fdc90cb4
JJ
5944 if ((info->emit_hash
5945 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
5946 || (info->emit_gnu_hash
5947 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
5a580b3a
AM
5948 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
5949 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
5950 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
5951 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
5952 bed->s->sizeof_sym))
5953 return FALSE;
5954 }
5955 }
5956
5957 /* The backend must work out the sizes of all the other dynamic
5958 sections. */
9a2a56cc
AM
5959 if (dynobj != NULL
5960 && bed->elf_backend_size_dynamic_sections != NULL
5a580b3a
AM
5961 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
5962 return FALSE;
5963
9a2a56cc
AM
5964 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
5965 return FALSE;
5966
5967 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a 5968 {
554220db 5969 unsigned long section_sym_count;
fd91d419 5970 struct bfd_elf_version_tree *verdefs;
5a580b3a 5971 asection *s;
5a580b3a
AM
5972
5973 /* Set up the version definition section. */
3d4d4302 5974 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
5975 BFD_ASSERT (s != NULL);
5976
5977 /* We may have created additional version definitions if we are
5978 just linking a regular application. */
fd91d419 5979 verdefs = info->version_info;
5a580b3a
AM
5980
5981 /* Skip anonymous version tag. */
5982 if (verdefs != NULL && verdefs->vernum == 0)
5983 verdefs = verdefs->next;
5984
3e3b46e5 5985 if (verdefs == NULL && !info->create_default_symver)
8423293d 5986 s->flags |= SEC_EXCLUDE;
5a580b3a
AM
5987 else
5988 {
5989 unsigned int cdefs;
5990 bfd_size_type size;
5991 struct bfd_elf_version_tree *t;
5992 bfd_byte *p;
5993 Elf_Internal_Verdef def;
5994 Elf_Internal_Verdaux defaux;
3e3b46e5
PB
5995 struct bfd_link_hash_entry *bh;
5996 struct elf_link_hash_entry *h;
5997 const char *name;
5a580b3a
AM
5998
5999 cdefs = 0;
6000 size = 0;
6001
6002 /* Make space for the base version. */
6003 size += sizeof (Elf_External_Verdef);
6004 size += sizeof (Elf_External_Verdaux);
6005 ++cdefs;
6006
3e3b46e5
PB
6007 /* Make space for the default version. */
6008 if (info->create_default_symver)
6009 {
6010 size += sizeof (Elf_External_Verdef);
6011 ++cdefs;
6012 }
6013
5a580b3a
AM
6014 for (t = verdefs; t != NULL; t = t->next)
6015 {
6016 struct bfd_elf_version_deps *n;
6017
a6cc6b3b
RO
6018 /* Don't emit base version twice. */
6019 if (t->vernum == 0)
6020 continue;
6021
5a580b3a
AM
6022 size += sizeof (Elf_External_Verdef);
6023 size += sizeof (Elf_External_Verdaux);
6024 ++cdefs;
6025
6026 for (n = t->deps; n != NULL; n = n->next)
6027 size += sizeof (Elf_External_Verdaux);
6028 }
6029
eea6121a 6030 s->size = size;
a50b1753 6031 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
eea6121a 6032 if (s->contents == NULL && s->size != 0)
5a580b3a
AM
6033 return FALSE;
6034
6035 /* Fill in the version definition section. */
6036
6037 p = s->contents;
6038
6039 def.vd_version = VER_DEF_CURRENT;
6040 def.vd_flags = VER_FLG_BASE;
6041 def.vd_ndx = 1;
6042 def.vd_cnt = 1;
3e3b46e5
PB
6043 if (info->create_default_symver)
6044 {
6045 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6046 def.vd_next = sizeof (Elf_External_Verdef);
6047 }
6048 else
6049 {
6050 def.vd_aux = sizeof (Elf_External_Verdef);
6051 def.vd_next = (sizeof (Elf_External_Verdef)
6052 + sizeof (Elf_External_Verdaux));
6053 }
5a580b3a
AM
6054
6055 if (soname_indx != (bfd_size_type) -1)
6056 {
6057 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6058 soname_indx);
6059 def.vd_hash = bfd_elf_hash (soname);
6060 defaux.vda_name = soname_indx;
3e3b46e5 6061 name = soname;
5a580b3a
AM
6062 }
6063 else
6064 {
5a580b3a
AM
6065 bfd_size_type indx;
6066
06084812 6067 name = lbasename (output_bfd->filename);
5a580b3a
AM
6068 def.vd_hash = bfd_elf_hash (name);
6069 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6070 name, FALSE);
6071 if (indx == (bfd_size_type) -1)
6072 return FALSE;
6073 defaux.vda_name = indx;
6074 }
6075 defaux.vda_next = 0;
6076
6077 _bfd_elf_swap_verdef_out (output_bfd, &def,
6078 (Elf_External_Verdef *) p);
6079 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
6080 if (info->create_default_symver)
6081 {
6082 /* Add a symbol representing this version. */
6083 bh = NULL;
6084 if (! (_bfd_generic_link_add_one_symbol
6085 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6086 0, NULL, FALSE,
6087 get_elf_backend_data (dynobj)->collect, &bh)))
6088 return FALSE;
6089 h = (struct elf_link_hash_entry *) bh;
6090 h->non_elf = 0;
6091 h->def_regular = 1;
6092 h->type = STT_OBJECT;
6093 h->verinfo.vertree = NULL;
6094
6095 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6096 return FALSE;
6097
6098 /* Create a duplicate of the base version with the same
6099 aux block, but different flags. */
6100 def.vd_flags = 0;
6101 def.vd_ndx = 2;
6102 def.vd_aux = sizeof (Elf_External_Verdef);
6103 if (verdefs)
6104 def.vd_next = (sizeof (Elf_External_Verdef)
6105 + sizeof (Elf_External_Verdaux));
6106 else
6107 def.vd_next = 0;
6108 _bfd_elf_swap_verdef_out (output_bfd, &def,
6109 (Elf_External_Verdef *) p);
6110 p += sizeof (Elf_External_Verdef);
6111 }
5a580b3a
AM
6112 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6113 (Elf_External_Verdaux *) p);
6114 p += sizeof (Elf_External_Verdaux);
6115
6116 for (t = verdefs; t != NULL; t = t->next)
6117 {
6118 unsigned int cdeps;
6119 struct bfd_elf_version_deps *n;
5a580b3a 6120
a6cc6b3b
RO
6121 /* Don't emit the base version twice. */
6122 if (t->vernum == 0)
6123 continue;
6124
5a580b3a
AM
6125 cdeps = 0;
6126 for (n = t->deps; n != NULL; n = n->next)
6127 ++cdeps;
6128
6129 /* Add a symbol representing this version. */
6130 bh = NULL;
6131 if (! (_bfd_generic_link_add_one_symbol
6132 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6133 0, NULL, FALSE,
6134 get_elf_backend_data (dynobj)->collect, &bh)))
6135 return FALSE;
6136 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6137 h->non_elf = 0;
6138 h->def_regular = 1;
5a580b3a
AM
6139 h->type = STT_OBJECT;
6140 h->verinfo.vertree = t;
6141
c152c796 6142 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5a580b3a
AM
6143 return FALSE;
6144
6145 def.vd_version = VER_DEF_CURRENT;
6146 def.vd_flags = 0;
6147 if (t->globals.list == NULL
6148 && t->locals.list == NULL
6149 && ! t->used)
6150 def.vd_flags |= VER_FLG_WEAK;
3e3b46e5 6151 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
5a580b3a
AM
6152 def.vd_cnt = cdeps + 1;
6153 def.vd_hash = bfd_elf_hash (t->name);
6154 def.vd_aux = sizeof (Elf_External_Verdef);
6155 def.vd_next = 0;
a6cc6b3b
RO
6156
6157 /* If a basever node is next, it *must* be the last node in
6158 the chain, otherwise Verdef construction breaks. */
6159 if (t->next != NULL && t->next->vernum == 0)
6160 BFD_ASSERT (t->next->next == NULL);
6161
6162 if (t->next != NULL && t->next->vernum != 0)
5a580b3a
AM
6163 def.vd_next = (sizeof (Elf_External_Verdef)
6164 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6165
6166 _bfd_elf_swap_verdef_out (output_bfd, &def,
6167 (Elf_External_Verdef *) p);
6168 p += sizeof (Elf_External_Verdef);
6169
6170 defaux.vda_name = h->dynstr_index;
6171 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6172 h->dynstr_index);
6173 defaux.vda_next = 0;
6174 if (t->deps != NULL)
6175 defaux.vda_next = sizeof (Elf_External_Verdaux);
6176 t->name_indx = defaux.vda_name;
6177
6178 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6179 (Elf_External_Verdaux *) p);
6180 p += sizeof (Elf_External_Verdaux);
6181
6182 for (n = t->deps; n != NULL; n = n->next)
6183 {
6184 if (n->version_needed == NULL)
6185 {
6186 /* This can happen if there was an error in the
6187 version script. */
6188 defaux.vda_name = 0;
6189 }
6190 else
6191 {
6192 defaux.vda_name = n->version_needed->name_indx;
6193 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6194 defaux.vda_name);
6195 }
6196 if (n->next == NULL)
6197 defaux.vda_next = 0;
6198 else
6199 defaux.vda_next = sizeof (Elf_External_Verdaux);
6200
6201 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6202 (Elf_External_Verdaux *) p);
6203 p += sizeof (Elf_External_Verdaux);
6204 }
6205 }
6206
6207 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6208 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs))
6209 return FALSE;
6210
6211 elf_tdata (output_bfd)->cverdefs = cdefs;
6212 }
6213
6214 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6215 {
6216 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6217 return FALSE;
6218 }
6219 else if (info->flags & DF_BIND_NOW)
6220 {
6221 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6222 return FALSE;
6223 }
6224
6225 if (info->flags_1)
6226 {
6227 if (info->executable)
6228 info->flags_1 &= ~ (DF_1_INITFIRST
6229 | DF_1_NODELETE
6230 | DF_1_NOOPEN);
6231 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6232 return FALSE;
6233 }
6234
6235 /* Work out the size of the version reference section. */
6236
3d4d4302 6237 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
6238 BFD_ASSERT (s != NULL);
6239 {
6240 struct elf_find_verdep_info sinfo;
6241
5a580b3a
AM
6242 sinfo.info = info;
6243 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6244 if (sinfo.vers == 0)
6245 sinfo.vers = 1;
6246 sinfo.failed = FALSE;
6247
6248 elf_link_hash_traverse (elf_hash_table (info),
6249 _bfd_elf_link_find_version_dependencies,
6250 &sinfo);
14b1c01e
AM
6251 if (sinfo.failed)
6252 return FALSE;
5a580b3a
AM
6253
6254 if (elf_tdata (output_bfd)->verref == NULL)
8423293d 6255 s->flags |= SEC_EXCLUDE;
5a580b3a
AM
6256 else
6257 {
6258 Elf_Internal_Verneed *t;
6259 unsigned int size;
6260 unsigned int crefs;
6261 bfd_byte *p;
6262
a6cc6b3b 6263 /* Build the version dependency section. */
5a580b3a
AM
6264 size = 0;
6265 crefs = 0;
6266 for (t = elf_tdata (output_bfd)->verref;
6267 t != NULL;
6268 t = t->vn_nextref)
6269 {
6270 Elf_Internal_Vernaux *a;
6271
6272 size += sizeof (Elf_External_Verneed);
6273 ++crefs;
6274 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6275 size += sizeof (Elf_External_Vernaux);
6276 }
6277
eea6121a 6278 s->size = size;
a50b1753 6279 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
5a580b3a
AM
6280 if (s->contents == NULL)
6281 return FALSE;
6282
6283 p = s->contents;
6284 for (t = elf_tdata (output_bfd)->verref;
6285 t != NULL;
6286 t = t->vn_nextref)
6287 {
6288 unsigned int caux;
6289 Elf_Internal_Vernaux *a;
6290 bfd_size_type indx;
6291
6292 caux = 0;
6293 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6294 ++caux;
6295
6296 t->vn_version = VER_NEED_CURRENT;
6297 t->vn_cnt = caux;
6298 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6299 elf_dt_name (t->vn_bfd) != NULL
6300 ? elf_dt_name (t->vn_bfd)
06084812 6301 : lbasename (t->vn_bfd->filename),
5a580b3a
AM
6302 FALSE);
6303 if (indx == (bfd_size_type) -1)
6304 return FALSE;
6305 t->vn_file = indx;
6306 t->vn_aux = sizeof (Elf_External_Verneed);
6307 if (t->vn_nextref == NULL)
6308 t->vn_next = 0;
6309 else
6310 t->vn_next = (sizeof (Elf_External_Verneed)
6311 + caux * sizeof (Elf_External_Vernaux));
6312
6313 _bfd_elf_swap_verneed_out (output_bfd, t,
6314 (Elf_External_Verneed *) p);
6315 p += sizeof (Elf_External_Verneed);
6316
6317 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6318 {
6319 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6320 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6321 a->vna_nodename, FALSE);
6322 if (indx == (bfd_size_type) -1)
6323 return FALSE;
6324 a->vna_name = indx;
6325 if (a->vna_nextptr == NULL)
6326 a->vna_next = 0;
6327 else
6328 a->vna_next = sizeof (Elf_External_Vernaux);
6329
6330 _bfd_elf_swap_vernaux_out (output_bfd, a,
6331 (Elf_External_Vernaux *) p);
6332 p += sizeof (Elf_External_Vernaux);
6333 }
6334 }
6335
6336 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6337 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6338 return FALSE;
6339
6340 elf_tdata (output_bfd)->cverrefs = crefs;
6341 }
6342 }
6343
8423293d
AM
6344 if ((elf_tdata (output_bfd)->cverrefs == 0
6345 && elf_tdata (output_bfd)->cverdefs == 0)
6346 || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6347 &section_sym_count) == 0)
6348 {
3d4d4302 6349 s = bfd_get_linker_section (dynobj, ".gnu.version");
8423293d
AM
6350 s->flags |= SEC_EXCLUDE;
6351 }
6352 }
6353 return TRUE;
6354}
6355
74541ad4
AM
6356/* Find the first non-excluded output section. We'll use its
6357 section symbol for some emitted relocs. */
6358void
6359_bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6360{
6361 asection *s;
6362
6363 for (s = output_bfd->sections; s != NULL; s = s->next)
6364 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
6365 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6366 {
6367 elf_hash_table (info)->text_index_section = s;
6368 break;
6369 }
6370}
6371
6372/* Find two non-excluded output sections, one for code, one for data.
6373 We'll use their section symbols for some emitted relocs. */
6374void
6375_bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
6376{
6377 asection *s;
6378
266b05cf
DJ
6379 /* Data first, since setting text_index_section changes
6380 _bfd_elf_link_omit_section_dynsym. */
74541ad4 6381 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf 6382 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
74541ad4
AM
6383 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6384 {
266b05cf 6385 elf_hash_table (info)->data_index_section = s;
74541ad4
AM
6386 break;
6387 }
6388
6389 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf
DJ
6390 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
6391 == (SEC_ALLOC | SEC_READONLY))
74541ad4
AM
6392 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6393 {
266b05cf 6394 elf_hash_table (info)->text_index_section = s;
74541ad4
AM
6395 break;
6396 }
6397
6398 if (elf_hash_table (info)->text_index_section == NULL)
6399 elf_hash_table (info)->text_index_section
6400 = elf_hash_table (info)->data_index_section;
6401}
6402
8423293d
AM
6403bfd_boolean
6404bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6405{
74541ad4
AM
6406 const struct elf_backend_data *bed;
6407
8423293d
AM
6408 if (!is_elf_hash_table (info->hash))
6409 return TRUE;
6410
74541ad4
AM
6411 bed = get_elf_backend_data (output_bfd);
6412 (*bed->elf_backend_init_index_section) (output_bfd, info);
6413
8423293d
AM
6414 if (elf_hash_table (info)->dynamic_sections_created)
6415 {
6416 bfd *dynobj;
8423293d
AM
6417 asection *s;
6418 bfd_size_type dynsymcount;
6419 unsigned long section_sym_count;
8423293d
AM
6420 unsigned int dtagcount;
6421
6422 dynobj = elf_hash_table (info)->dynobj;
6423
5a580b3a
AM
6424 /* Assign dynsym indicies. In a shared library we generate a
6425 section symbol for each output section, which come first.
6426 Next come all of the back-end allocated local dynamic syms,
6427 followed by the rest of the global symbols. */
6428
554220db
AM
6429 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6430 &section_sym_count);
5a580b3a
AM
6431
6432 /* Work out the size of the symbol version section. */
3d4d4302 6433 s = bfd_get_linker_section (dynobj, ".gnu.version");
5a580b3a 6434 BFD_ASSERT (s != NULL);
8423293d
AM
6435 if (dynsymcount != 0
6436 && (s->flags & SEC_EXCLUDE) == 0)
5a580b3a 6437 {
eea6121a 6438 s->size = dynsymcount * sizeof (Elf_External_Versym);
a50b1753 6439 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
5a580b3a
AM
6440 if (s->contents == NULL)
6441 return FALSE;
6442
6443 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6444 return FALSE;
6445 }
6446
6447 /* Set the size of the .dynsym and .hash sections. We counted
6448 the number of dynamic symbols in elf_link_add_object_symbols.
6449 We will build the contents of .dynsym and .hash when we build
6450 the final symbol table, because until then we do not know the
6451 correct value to give the symbols. We built the .dynstr
6452 section as we went along in elf_link_add_object_symbols. */
3d4d4302 6453 s = bfd_get_linker_section (dynobj, ".dynsym");
5a580b3a 6454 BFD_ASSERT (s != NULL);
eea6121a 6455 s->size = dynsymcount * bed->s->sizeof_sym;
5a580b3a
AM
6456
6457 if (dynsymcount != 0)
6458 {
a50b1753 6459 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
554220db
AM
6460 if (s->contents == NULL)
6461 return FALSE;
5a580b3a 6462
554220db
AM
6463 /* The first entry in .dynsym is a dummy symbol.
6464 Clear all the section syms, in case we don't output them all. */
6465 ++section_sym_count;
6466 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
5a580b3a
AM
6467 }
6468
fdc90cb4
JJ
6469 elf_hash_table (info)->bucketcount = 0;
6470
5a580b3a
AM
6471 /* Compute the size of the hashing table. As a side effect this
6472 computes the hash values for all the names we export. */
fdc90cb4
JJ
6473 if (info->emit_hash)
6474 {
6475 unsigned long int *hashcodes;
14b1c01e 6476 struct hash_codes_info hashinf;
fdc90cb4
JJ
6477 bfd_size_type amt;
6478 unsigned long int nsyms;
6479 size_t bucketcount;
6480 size_t hash_entry_size;
6481
6482 /* Compute the hash values for all exported symbols. At the same
6483 time store the values in an array so that we could use them for
6484 optimizations. */
6485 amt = dynsymcount * sizeof (unsigned long int);
a50b1753 6486 hashcodes = (unsigned long int *) bfd_malloc (amt);
fdc90cb4
JJ
6487 if (hashcodes == NULL)
6488 return FALSE;
14b1c01e
AM
6489 hashinf.hashcodes = hashcodes;
6490 hashinf.error = FALSE;
5a580b3a 6491
fdc90cb4
JJ
6492 /* Put all hash values in HASHCODES. */
6493 elf_link_hash_traverse (elf_hash_table (info),
14b1c01e
AM
6494 elf_collect_hash_codes, &hashinf);
6495 if (hashinf.error)
4dd07732
AM
6496 {
6497 free (hashcodes);
6498 return FALSE;
6499 }
5a580b3a 6500
14b1c01e 6501 nsyms = hashinf.hashcodes - hashcodes;
fdc90cb4
JJ
6502 bucketcount
6503 = compute_bucket_count (info, hashcodes, nsyms, 0);
6504 free (hashcodes);
6505
6506 if (bucketcount == 0)
6507 return FALSE;
5a580b3a 6508
fdc90cb4
JJ
6509 elf_hash_table (info)->bucketcount = bucketcount;
6510
3d4d4302 6511 s = bfd_get_linker_section (dynobj, ".hash");
fdc90cb4
JJ
6512 BFD_ASSERT (s != NULL);
6513 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6514 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
a50b1753 6515 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6516 if (s->contents == NULL)
6517 return FALSE;
6518
6519 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6520 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6521 s->contents + hash_entry_size);
6522 }
6523
6524 if (info->emit_gnu_hash)
6525 {
6526 size_t i, cnt;
6527 unsigned char *contents;
6528 struct collect_gnu_hash_codes cinfo;
6529 bfd_size_type amt;
6530 size_t bucketcount;
6531
6532 memset (&cinfo, 0, sizeof (cinfo));
6533
6534 /* Compute the hash values for all exported symbols. At the same
6535 time store the values in an array so that we could use them for
6536 optimizations. */
6537 amt = dynsymcount * 2 * sizeof (unsigned long int);
a50b1753 6538 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
fdc90cb4
JJ
6539 if (cinfo.hashcodes == NULL)
6540 return FALSE;
6541
6542 cinfo.hashval = cinfo.hashcodes + dynsymcount;
6543 cinfo.min_dynindx = -1;
6544 cinfo.output_bfd = output_bfd;
6545 cinfo.bed = bed;
6546
6547 /* Put all hash values in HASHCODES. */
6548 elf_link_hash_traverse (elf_hash_table (info),
6549 elf_collect_gnu_hash_codes, &cinfo);
14b1c01e 6550 if (cinfo.error)
4dd07732
AM
6551 {
6552 free (cinfo.hashcodes);
6553 return FALSE;
6554 }
fdc90cb4
JJ
6555
6556 bucketcount
6557 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6558
6559 if (bucketcount == 0)
6560 {
6561 free (cinfo.hashcodes);
6562 return FALSE;
6563 }
6564
3d4d4302 6565 s = bfd_get_linker_section (dynobj, ".gnu.hash");
fdc90cb4
JJ
6566 BFD_ASSERT (s != NULL);
6567
6568 if (cinfo.nsyms == 0)
6569 {
6570 /* Empty .gnu.hash section is special. */
6571 BFD_ASSERT (cinfo.min_dynindx == -1);
6572 free (cinfo.hashcodes);
6573 s->size = 5 * 4 + bed->s->arch_size / 8;
a50b1753 6574 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6575 if (contents == NULL)
6576 return FALSE;
6577 s->contents = contents;
6578 /* 1 empty bucket. */
6579 bfd_put_32 (output_bfd, 1, contents);
6580 /* SYMIDX above the special symbol 0. */
6581 bfd_put_32 (output_bfd, 1, contents + 4);
6582 /* Just one word for bitmask. */
6583 bfd_put_32 (output_bfd, 1, contents + 8);
6584 /* Only hash fn bloom filter. */
6585 bfd_put_32 (output_bfd, 0, contents + 12);
6586 /* No hashes are valid - empty bitmask. */
6587 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
6588 /* No hashes in the only bucket. */
6589 bfd_put_32 (output_bfd, 0,
6590 contents + 16 + bed->s->arch_size / 8);
6591 }
6592 else
6593 {
9e6619e2 6594 unsigned long int maskwords, maskbitslog2, x;
0b33793d 6595 BFD_ASSERT (cinfo.min_dynindx != -1);
fdc90cb4 6596
9e6619e2
AM
6597 x = cinfo.nsyms;
6598 maskbitslog2 = 1;
6599 while ((x >>= 1) != 0)
6600 ++maskbitslog2;
fdc90cb4
JJ
6601 if (maskbitslog2 < 3)
6602 maskbitslog2 = 5;
6603 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
6604 maskbitslog2 = maskbitslog2 + 3;
6605 else
6606 maskbitslog2 = maskbitslog2 + 2;
6607 if (bed->s->arch_size == 64)
6608 {
6609 if (maskbitslog2 == 5)
6610 maskbitslog2 = 6;
6611 cinfo.shift1 = 6;
6612 }
6613 else
6614 cinfo.shift1 = 5;
6615 cinfo.mask = (1 << cinfo.shift1) - 1;
2ccdbfcc 6616 cinfo.shift2 = maskbitslog2;
fdc90cb4
JJ
6617 cinfo.maskbits = 1 << maskbitslog2;
6618 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6619 amt = bucketcount * sizeof (unsigned long int) * 2;
6620 amt += maskwords * sizeof (bfd_vma);
a50b1753 6621 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
fdc90cb4
JJ
6622 if (cinfo.bitmask == NULL)
6623 {
6624 free (cinfo.hashcodes);
6625 return FALSE;
6626 }
6627
a50b1753 6628 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
fdc90cb4
JJ
6629 cinfo.indx = cinfo.counts + bucketcount;
6630 cinfo.symindx = dynsymcount - cinfo.nsyms;
6631 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
6632
6633 /* Determine how often each hash bucket is used. */
6634 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
6635 for (i = 0; i < cinfo.nsyms; ++i)
6636 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
6637
6638 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
6639 if (cinfo.counts[i] != 0)
6640 {
6641 cinfo.indx[i] = cnt;
6642 cnt += cinfo.counts[i];
6643 }
6644 BFD_ASSERT (cnt == dynsymcount);
6645 cinfo.bucketcount = bucketcount;
6646 cinfo.local_indx = cinfo.min_dynindx;
6647
6648 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
6649 s->size += cinfo.maskbits / 8;
a50b1753 6650 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6651 if (contents == NULL)
6652 {
6653 free (cinfo.bitmask);
6654 free (cinfo.hashcodes);
6655 return FALSE;
6656 }
6657
6658 s->contents = contents;
6659 bfd_put_32 (output_bfd, bucketcount, contents);
6660 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
6661 bfd_put_32 (output_bfd, maskwords, contents + 8);
6662 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
6663 contents += 16 + cinfo.maskbits / 8;
6664
6665 for (i = 0; i < bucketcount; ++i)
6666 {
6667 if (cinfo.counts[i] == 0)
6668 bfd_put_32 (output_bfd, 0, contents);
6669 else
6670 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
6671 contents += 4;
6672 }
6673
6674 cinfo.contents = contents;
6675
6676 /* Renumber dynamic symbols, populate .gnu.hash section. */
6677 elf_link_hash_traverse (elf_hash_table (info),
6678 elf_renumber_gnu_hash_syms, &cinfo);
6679
6680 contents = s->contents + 16;
6681 for (i = 0; i < maskwords; ++i)
6682 {
6683 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
6684 contents);
6685 contents += bed->s->arch_size / 8;
6686 }
6687
6688 free (cinfo.bitmask);
6689 free (cinfo.hashcodes);
6690 }
6691 }
5a580b3a 6692
3d4d4302 6693 s = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
6694 BFD_ASSERT (s != NULL);
6695
4ad4eba5 6696 elf_finalize_dynstr (output_bfd, info);
5a580b3a 6697
eea6121a 6698 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5a580b3a
AM
6699
6700 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
6701 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
6702 return FALSE;
6703 }
6704
6705 return TRUE;
6706}
4d269e42 6707\f
4d269e42
AM
6708/* Make sure sec_info_type is cleared if sec_info is cleared too. */
6709
6710static void
6711merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
6712 asection *sec)
6713{
dbaa2011
AM
6714 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
6715 sec->sec_info_type = SEC_INFO_TYPE_NONE;
4d269e42
AM
6716}
6717
6718/* Finish SHF_MERGE section merging. */
6719
6720bfd_boolean
6721_bfd_elf_merge_sections (bfd *abfd, struct bfd_link_info *info)
6722{
6723 bfd *ibfd;
6724 asection *sec;
6725
6726 if (!is_elf_hash_table (info->hash))
6727 return FALSE;
6728
6729 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
6730 if ((ibfd->flags & DYNAMIC) == 0)
6731 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6732 if ((sec->flags & SEC_MERGE) != 0
6733 && !bfd_is_abs_section (sec->output_section))
6734 {
6735 struct bfd_elf_section_data *secdata;
6736
6737 secdata = elf_section_data (sec);
6738 if (! _bfd_add_merge_section (abfd,
6739 &elf_hash_table (info)->merge_info,
6740 sec, &secdata->sec_info))
6741 return FALSE;
6742 else if (secdata->sec_info)
dbaa2011 6743 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
4d269e42
AM
6744 }
6745
6746 if (elf_hash_table (info)->merge_info != NULL)
6747 _bfd_merge_sections (abfd, info, elf_hash_table (info)->merge_info,
6748 merge_sections_remove_hook);
6749 return TRUE;
6750}
6751
6752/* Create an entry in an ELF linker hash table. */
6753
6754struct bfd_hash_entry *
6755_bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
6756 struct bfd_hash_table *table,
6757 const char *string)
6758{
6759 /* Allocate the structure if it has not already been allocated by a
6760 subclass. */
6761 if (entry == NULL)
6762 {
a50b1753
NC
6763 entry = (struct bfd_hash_entry *)
6764 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
4d269e42
AM
6765 if (entry == NULL)
6766 return entry;
6767 }
6768
6769 /* Call the allocation method of the superclass. */
6770 entry = _bfd_link_hash_newfunc (entry, table, string);
6771 if (entry != NULL)
6772 {
6773 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
6774 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
6775
6776 /* Set local fields. */
6777 ret->indx = -1;
6778 ret->dynindx = -1;
6779 ret->got = htab->init_got_refcount;
6780 ret->plt = htab->init_plt_refcount;
6781 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
6782 - offsetof (struct elf_link_hash_entry, size)));
6783 /* Assume that we have been called by a non-ELF symbol reader.
6784 This flag is then reset by the code which reads an ELF input
6785 file. This ensures that a symbol created by a non-ELF symbol
6786 reader will have the flag set correctly. */
6787 ret->non_elf = 1;
6788 }
6789
6790 return entry;
6791}
6792
6793/* Copy data from an indirect symbol to its direct symbol, hiding the
6794 old indirect symbol. Also used for copying flags to a weakdef. */
6795
6796void
6797_bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
6798 struct elf_link_hash_entry *dir,
6799 struct elf_link_hash_entry *ind)
6800{
6801 struct elf_link_hash_table *htab;
6802
6803 /* Copy down any references that we may have already seen to the
6804 symbol which just became indirect. */
6805
6806 dir->ref_dynamic |= ind->ref_dynamic;
6807 dir->ref_regular |= ind->ref_regular;
6808 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
6809 dir->non_got_ref |= ind->non_got_ref;
6810 dir->needs_plt |= ind->needs_plt;
6811 dir->pointer_equality_needed |= ind->pointer_equality_needed;
6812
6813 if (ind->root.type != bfd_link_hash_indirect)
6814 return;
6815
6816 /* Copy over the global and procedure linkage table refcount entries.
6817 These may have been already set up by a check_relocs routine. */
6818 htab = elf_hash_table (info);
6819 if (ind->got.refcount > htab->init_got_refcount.refcount)
6820 {
6821 if (dir->got.refcount < 0)
6822 dir->got.refcount = 0;
6823 dir->got.refcount += ind->got.refcount;
6824 ind->got.refcount = htab->init_got_refcount.refcount;
6825 }
6826
6827 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
6828 {
6829 if (dir->plt.refcount < 0)
6830 dir->plt.refcount = 0;
6831 dir->plt.refcount += ind->plt.refcount;
6832 ind->plt.refcount = htab->init_plt_refcount.refcount;
6833 }
6834
6835 if (ind->dynindx != -1)
6836 {
6837 if (dir->dynindx != -1)
6838 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
6839 dir->dynindx = ind->dynindx;
6840 dir->dynstr_index = ind->dynstr_index;
6841 ind->dynindx = -1;
6842 ind->dynstr_index = 0;
6843 }
6844}
6845
6846void
6847_bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
6848 struct elf_link_hash_entry *h,
6849 bfd_boolean force_local)
6850{
3aa14d16
L
6851 /* STT_GNU_IFUNC symbol must go through PLT. */
6852 if (h->type != STT_GNU_IFUNC)
6853 {
6854 h->plt = elf_hash_table (info)->init_plt_offset;
6855 h->needs_plt = 0;
6856 }
4d269e42
AM
6857 if (force_local)
6858 {
6859 h->forced_local = 1;
6860 if (h->dynindx != -1)
6861 {
6862 h->dynindx = -1;
6863 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
6864 h->dynstr_index);
6865 }
6866 }
6867}
6868
6869/* Initialize an ELF linker hash table. */
6870
6871bfd_boolean
6872_bfd_elf_link_hash_table_init
6873 (struct elf_link_hash_table *table,
6874 bfd *abfd,
6875 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
6876 struct bfd_hash_table *,
6877 const char *),
4dfe6ac6
NC
6878 unsigned int entsize,
6879 enum elf_target_id target_id)
4d269e42
AM
6880{
6881 bfd_boolean ret;
6882 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
6883
6884 memset (table, 0, sizeof * table);
6885 table->init_got_refcount.refcount = can_refcount - 1;
6886 table->init_plt_refcount.refcount = can_refcount - 1;
6887 table->init_got_offset.offset = -(bfd_vma) 1;
6888 table->init_plt_offset.offset = -(bfd_vma) 1;
6889 /* The first dynamic symbol is a dummy. */
6890 table->dynsymcount = 1;
6891
6892 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
4dfe6ac6 6893
4d269e42 6894 table->root.type = bfd_link_elf_hash_table;
4dfe6ac6 6895 table->hash_table_id = target_id;
4d269e42
AM
6896
6897 return ret;
6898}
6899
6900/* Create an ELF linker hash table. */
6901
6902struct bfd_link_hash_table *
6903_bfd_elf_link_hash_table_create (bfd *abfd)
6904{
6905 struct elf_link_hash_table *ret;
6906 bfd_size_type amt = sizeof (struct elf_link_hash_table);
6907
a50b1753 6908 ret = (struct elf_link_hash_table *) bfd_malloc (amt);
4d269e42
AM
6909 if (ret == NULL)
6910 return NULL;
6911
6912 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
4dfe6ac6
NC
6913 sizeof (struct elf_link_hash_entry),
6914 GENERIC_ELF_DATA))
4d269e42
AM
6915 {
6916 free (ret);
6917 return NULL;
6918 }
6919
6920 return &ret->root;
6921}
6922
6923/* This is a hook for the ELF emulation code in the generic linker to
6924 tell the backend linker what file name to use for the DT_NEEDED
6925 entry for a dynamic object. */
6926
6927void
6928bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
6929{
6930 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6931 && bfd_get_format (abfd) == bfd_object)
6932 elf_dt_name (abfd) = name;
6933}
6934
6935int
6936bfd_elf_get_dyn_lib_class (bfd *abfd)
6937{
6938 int lib_class;
6939 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6940 && bfd_get_format (abfd) == bfd_object)
6941 lib_class = elf_dyn_lib_class (abfd);
6942 else
6943 lib_class = 0;
6944 return lib_class;
6945}
6946
6947void
6948bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
6949{
6950 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6951 && bfd_get_format (abfd) == bfd_object)
6952 elf_dyn_lib_class (abfd) = lib_class;
6953}
6954
6955/* Get the list of DT_NEEDED entries for a link. This is a hook for
6956 the linker ELF emulation code. */
6957
6958struct bfd_link_needed_list *
6959bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
6960 struct bfd_link_info *info)
6961{
6962 if (! is_elf_hash_table (info->hash))
6963 return NULL;
6964 return elf_hash_table (info)->needed;
6965}
6966
6967/* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
6968 hook for the linker ELF emulation code. */
6969
6970struct bfd_link_needed_list *
6971bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
6972 struct bfd_link_info *info)
6973{
6974 if (! is_elf_hash_table (info->hash))
6975 return NULL;
6976 return elf_hash_table (info)->runpath;
6977}
6978
6979/* Get the name actually used for a dynamic object for a link. This
6980 is the SONAME entry if there is one. Otherwise, it is the string
6981 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
6982
6983const char *
6984bfd_elf_get_dt_soname (bfd *abfd)
6985{
6986 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6987 && bfd_get_format (abfd) == bfd_object)
6988 return elf_dt_name (abfd);
6989 return NULL;
6990}
6991
6992/* Get the list of DT_NEEDED entries from a BFD. This is a hook for
6993 the ELF linker emulation code. */
6994
6995bfd_boolean
6996bfd_elf_get_bfd_needed_list (bfd *abfd,
6997 struct bfd_link_needed_list **pneeded)
6998{
6999 asection *s;
7000 bfd_byte *dynbuf = NULL;
cb33740c 7001 unsigned int elfsec;
4d269e42
AM
7002 unsigned long shlink;
7003 bfd_byte *extdyn, *extdynend;
7004 size_t extdynsize;
7005 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
7006
7007 *pneeded = NULL;
7008
7009 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
7010 || bfd_get_format (abfd) != bfd_object)
7011 return TRUE;
7012
7013 s = bfd_get_section_by_name (abfd, ".dynamic");
7014 if (s == NULL || s->size == 0)
7015 return TRUE;
7016
7017 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
7018 goto error_return;
7019
7020 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 7021 if (elfsec == SHN_BAD)
4d269e42
AM
7022 goto error_return;
7023
7024 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
c152c796 7025
4d269e42
AM
7026 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7027 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7028
7029 extdyn = dynbuf;
7030 extdynend = extdyn + s->size;
7031 for (; extdyn < extdynend; extdyn += extdynsize)
7032 {
7033 Elf_Internal_Dyn dyn;
7034
7035 (*swap_dyn_in) (abfd, extdyn, &dyn);
7036
7037 if (dyn.d_tag == DT_NULL)
7038 break;
7039
7040 if (dyn.d_tag == DT_NEEDED)
7041 {
7042 const char *string;
7043 struct bfd_link_needed_list *l;
7044 unsigned int tagv = dyn.d_un.d_val;
7045 bfd_size_type amt;
7046
7047 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7048 if (string == NULL)
7049 goto error_return;
7050
7051 amt = sizeof *l;
a50b1753 7052 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4d269e42
AM
7053 if (l == NULL)
7054 goto error_return;
7055
7056 l->by = abfd;
7057 l->name = string;
7058 l->next = *pneeded;
7059 *pneeded = l;
7060 }
7061 }
7062
7063 free (dynbuf);
7064
7065 return TRUE;
7066
7067 error_return:
7068 if (dynbuf != NULL)
7069 free (dynbuf);
7070 return FALSE;
7071}
7072
7073struct elf_symbuf_symbol
7074{
7075 unsigned long st_name; /* Symbol name, index in string tbl */
7076 unsigned char st_info; /* Type and binding attributes */
7077 unsigned char st_other; /* Visibilty, and target specific */
7078};
7079
7080struct elf_symbuf_head
7081{
7082 struct elf_symbuf_symbol *ssym;
7083 bfd_size_type count;
7084 unsigned int st_shndx;
7085};
7086
7087struct elf_symbol
7088{
7089 union
7090 {
7091 Elf_Internal_Sym *isym;
7092 struct elf_symbuf_symbol *ssym;
7093 } u;
7094 const char *name;
7095};
7096
7097/* Sort references to symbols by ascending section number. */
7098
7099static int
7100elf_sort_elf_symbol (const void *arg1, const void *arg2)
7101{
7102 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7103 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7104
7105 return s1->st_shndx - s2->st_shndx;
7106}
7107
7108static int
7109elf_sym_name_compare (const void *arg1, const void *arg2)
7110{
7111 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7112 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7113 return strcmp (s1->name, s2->name);
7114}
7115
7116static struct elf_symbuf_head *
7117elf_create_symbuf (bfd_size_type symcount, Elf_Internal_Sym *isymbuf)
7118{
14b1c01e 7119 Elf_Internal_Sym **ind, **indbufend, **indbuf;
4d269e42
AM
7120 struct elf_symbuf_symbol *ssym;
7121 struct elf_symbuf_head *ssymbuf, *ssymhead;
3ae181ee 7122 bfd_size_type i, shndx_count, total_size;
4d269e42 7123
a50b1753 7124 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
4d269e42
AM
7125 if (indbuf == NULL)
7126 return NULL;
7127
7128 for (ind = indbuf, i = 0; i < symcount; i++)
7129 if (isymbuf[i].st_shndx != SHN_UNDEF)
7130 *ind++ = &isymbuf[i];
7131 indbufend = ind;
7132
7133 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7134 elf_sort_elf_symbol);
7135
7136 shndx_count = 0;
7137 if (indbufend > indbuf)
7138 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7139 if (ind[0]->st_shndx != ind[1]->st_shndx)
7140 shndx_count++;
7141
3ae181ee
L
7142 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7143 + (indbufend - indbuf) * sizeof (*ssym));
a50b1753 7144 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
4d269e42
AM
7145 if (ssymbuf == NULL)
7146 {
7147 free (indbuf);
7148 return NULL;
7149 }
7150
3ae181ee 7151 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
4d269e42
AM
7152 ssymbuf->ssym = NULL;
7153 ssymbuf->count = shndx_count;
7154 ssymbuf->st_shndx = 0;
7155 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7156 {
7157 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7158 {
7159 ssymhead++;
7160 ssymhead->ssym = ssym;
7161 ssymhead->count = 0;
7162 ssymhead->st_shndx = (*ind)->st_shndx;
7163 }
7164 ssym->st_name = (*ind)->st_name;
7165 ssym->st_info = (*ind)->st_info;
7166 ssym->st_other = (*ind)->st_other;
7167 ssymhead->count++;
7168 }
3ae181ee
L
7169 BFD_ASSERT ((bfd_size_type) (ssymhead - ssymbuf) == shndx_count
7170 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7171 == total_size));
4d269e42
AM
7172
7173 free (indbuf);
7174 return ssymbuf;
7175}
7176
7177/* Check if 2 sections define the same set of local and global
7178 symbols. */
7179
8f317e31 7180static bfd_boolean
4d269e42
AM
7181bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7182 struct bfd_link_info *info)
7183{
7184 bfd *bfd1, *bfd2;
7185 const struct elf_backend_data *bed1, *bed2;
7186 Elf_Internal_Shdr *hdr1, *hdr2;
7187 bfd_size_type symcount1, symcount2;
7188 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7189 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7190 Elf_Internal_Sym *isym, *isymend;
7191 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
7192 bfd_size_type count1, count2, i;
cb33740c 7193 unsigned int shndx1, shndx2;
4d269e42
AM
7194 bfd_boolean result;
7195
7196 bfd1 = sec1->owner;
7197 bfd2 = sec2->owner;
7198
4d269e42
AM
7199 /* Both sections have to be in ELF. */
7200 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7201 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7202 return FALSE;
7203
7204 if (elf_section_type (sec1) != elf_section_type (sec2))
7205 return FALSE;
7206
4d269e42
AM
7207 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7208 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
cb33740c 7209 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
4d269e42
AM
7210 return FALSE;
7211
7212 bed1 = get_elf_backend_data (bfd1);
7213 bed2 = get_elf_backend_data (bfd2);
7214 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7215 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7216 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7217 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7218
7219 if (symcount1 == 0 || symcount2 == 0)
7220 return FALSE;
7221
7222 result = FALSE;
7223 isymbuf1 = NULL;
7224 isymbuf2 = NULL;
a50b1753
NC
7225 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7226 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
4d269e42
AM
7227
7228 if (ssymbuf1 == NULL)
7229 {
7230 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7231 NULL, NULL, NULL);
7232 if (isymbuf1 == NULL)
7233 goto done;
7234
7235 if (!info->reduce_memory_overheads)
7236 elf_tdata (bfd1)->symbuf = ssymbuf1
7237 = elf_create_symbuf (symcount1, isymbuf1);
7238 }
7239
7240 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7241 {
7242 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7243 NULL, NULL, NULL);
7244 if (isymbuf2 == NULL)
7245 goto done;
7246
7247 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7248 elf_tdata (bfd2)->symbuf = ssymbuf2
7249 = elf_create_symbuf (symcount2, isymbuf2);
7250 }
7251
7252 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7253 {
7254 /* Optimized faster version. */
7255 bfd_size_type lo, hi, mid;
7256 struct elf_symbol *symp;
7257 struct elf_symbuf_symbol *ssym, *ssymend;
7258
7259 lo = 0;
7260 hi = ssymbuf1->count;
7261 ssymbuf1++;
7262 count1 = 0;
7263 while (lo < hi)
7264 {
7265 mid = (lo + hi) / 2;
cb33740c 7266 if (shndx1 < ssymbuf1[mid].st_shndx)
4d269e42 7267 hi = mid;
cb33740c 7268 else if (shndx1 > ssymbuf1[mid].st_shndx)
4d269e42
AM
7269 lo = mid + 1;
7270 else
7271 {
7272 count1 = ssymbuf1[mid].count;
7273 ssymbuf1 += mid;
7274 break;
7275 }
7276 }
7277
7278 lo = 0;
7279 hi = ssymbuf2->count;
7280 ssymbuf2++;
7281 count2 = 0;
7282 while (lo < hi)
7283 {
7284 mid = (lo + hi) / 2;
cb33740c 7285 if (shndx2 < ssymbuf2[mid].st_shndx)
4d269e42 7286 hi = mid;
cb33740c 7287 else if (shndx2 > ssymbuf2[mid].st_shndx)
4d269e42
AM
7288 lo = mid + 1;
7289 else
7290 {
7291 count2 = ssymbuf2[mid].count;
7292 ssymbuf2 += mid;
7293 break;
7294 }
7295 }
7296
7297 if (count1 == 0 || count2 == 0 || count1 != count2)
7298 goto done;
7299
a50b1753
NC
7300 symtable1 = (struct elf_symbol *)
7301 bfd_malloc (count1 * sizeof (struct elf_symbol));
7302 symtable2 = (struct elf_symbol *)
7303 bfd_malloc (count2 * sizeof (struct elf_symbol));
4d269e42
AM
7304 if (symtable1 == NULL || symtable2 == NULL)
7305 goto done;
7306
7307 symp = symtable1;
7308 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7309 ssym < ssymend; ssym++, symp++)
7310 {
7311 symp->u.ssym = ssym;
7312 symp->name = bfd_elf_string_from_elf_section (bfd1,
7313 hdr1->sh_link,
7314 ssym->st_name);
7315 }
7316
7317 symp = symtable2;
7318 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
7319 ssym < ssymend; ssym++, symp++)
7320 {
7321 symp->u.ssym = ssym;
7322 symp->name = bfd_elf_string_from_elf_section (bfd2,
7323 hdr2->sh_link,
7324 ssym->st_name);
7325 }
7326
7327 /* Sort symbol by name. */
7328 qsort (symtable1, count1, sizeof (struct elf_symbol),
7329 elf_sym_name_compare);
7330 qsort (symtable2, count1, sizeof (struct elf_symbol),
7331 elf_sym_name_compare);
7332
7333 for (i = 0; i < count1; i++)
7334 /* Two symbols must have the same binding, type and name. */
7335 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
7336 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
7337 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7338 goto done;
7339
7340 result = TRUE;
7341 goto done;
7342 }
7343
a50b1753
NC
7344 symtable1 = (struct elf_symbol *)
7345 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
7346 symtable2 = (struct elf_symbol *)
7347 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
4d269e42
AM
7348 if (symtable1 == NULL || symtable2 == NULL)
7349 goto done;
7350
7351 /* Count definitions in the section. */
7352 count1 = 0;
7353 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
cb33740c 7354 if (isym->st_shndx == shndx1)
4d269e42
AM
7355 symtable1[count1++].u.isym = isym;
7356
7357 count2 = 0;
7358 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
cb33740c 7359 if (isym->st_shndx == shndx2)
4d269e42
AM
7360 symtable2[count2++].u.isym = isym;
7361
7362 if (count1 == 0 || count2 == 0 || count1 != count2)
7363 goto done;
7364
7365 for (i = 0; i < count1; i++)
7366 symtable1[i].name
7367 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
7368 symtable1[i].u.isym->st_name);
7369
7370 for (i = 0; i < count2; i++)
7371 symtable2[i].name
7372 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
7373 symtable2[i].u.isym->st_name);
7374
7375 /* Sort symbol by name. */
7376 qsort (symtable1, count1, sizeof (struct elf_symbol),
7377 elf_sym_name_compare);
7378 qsort (symtable2, count1, sizeof (struct elf_symbol),
7379 elf_sym_name_compare);
7380
7381 for (i = 0; i < count1; i++)
7382 /* Two symbols must have the same binding, type and name. */
7383 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
7384 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
7385 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7386 goto done;
7387
7388 result = TRUE;
7389
7390done:
7391 if (symtable1)
7392 free (symtable1);
7393 if (symtable2)
7394 free (symtable2);
7395 if (isymbuf1)
7396 free (isymbuf1);
7397 if (isymbuf2)
7398 free (isymbuf2);
7399
7400 return result;
7401}
7402
7403/* Return TRUE if 2 section types are compatible. */
7404
7405bfd_boolean
7406_bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
7407 bfd *bbfd, const asection *bsec)
7408{
7409 if (asec == NULL
7410 || bsec == NULL
7411 || abfd->xvec->flavour != bfd_target_elf_flavour
7412 || bbfd->xvec->flavour != bfd_target_elf_flavour)
7413 return TRUE;
7414
7415 return elf_section_type (asec) == elf_section_type (bsec);
7416}
7417\f
c152c796
AM
7418/* Final phase of ELF linker. */
7419
7420/* A structure we use to avoid passing large numbers of arguments. */
7421
7422struct elf_final_link_info
7423{
7424 /* General link information. */
7425 struct bfd_link_info *info;
7426 /* Output BFD. */
7427 bfd *output_bfd;
7428 /* Symbol string table. */
7429 struct bfd_strtab_hash *symstrtab;
7430 /* .dynsym section. */
7431 asection *dynsym_sec;
7432 /* .hash section. */
7433 asection *hash_sec;
7434 /* symbol version section (.gnu.version). */
7435 asection *symver_sec;
7436 /* Buffer large enough to hold contents of any section. */
7437 bfd_byte *contents;
7438 /* Buffer large enough to hold external relocs of any section. */
7439 void *external_relocs;
7440 /* Buffer large enough to hold internal relocs of any section. */
7441 Elf_Internal_Rela *internal_relocs;
7442 /* Buffer large enough to hold external local symbols of any input
7443 BFD. */
7444 bfd_byte *external_syms;
7445 /* And a buffer for symbol section indices. */
7446 Elf_External_Sym_Shndx *locsym_shndx;
7447 /* Buffer large enough to hold internal local symbols of any input
7448 BFD. */
7449 Elf_Internal_Sym *internal_syms;
7450 /* Array large enough to hold a symbol index for each local symbol
7451 of any input BFD. */
7452 long *indices;
7453 /* Array large enough to hold a section pointer for each local
7454 symbol of any input BFD. */
7455 asection **sections;
7456 /* Buffer to hold swapped out symbols. */
7457 bfd_byte *symbuf;
7458 /* And one for symbol section indices. */
7459 Elf_External_Sym_Shndx *symshndxbuf;
7460 /* Number of swapped out symbols in buffer. */
7461 size_t symbuf_count;
7462 /* Number of symbols which fit in symbuf. */
7463 size_t symbuf_size;
7464 /* And same for symshndxbuf. */
7465 size_t shndxbuf_size;
ffbc01cc
AM
7466 /* Number of STT_FILE syms seen. */
7467 size_t filesym_count;
c152c796
AM
7468};
7469
7470/* This struct is used to pass information to elf_link_output_extsym. */
7471
7472struct elf_outext_info
7473{
7474 bfd_boolean failed;
7475 bfd_boolean localsyms;
ffbc01cc
AM
7476 bfd_boolean need_second_pass;
7477 bfd_boolean second_pass;
8b127cbc 7478 struct elf_final_link_info *flinfo;
c152c796
AM
7479};
7480
d9352518
DB
7481
7482/* Support for evaluating a complex relocation.
7483
7484 Complex relocations are generalized, self-describing relocations. The
7485 implementation of them consists of two parts: complex symbols, and the
a0c8462f 7486 relocations themselves.
d9352518
DB
7487
7488 The relocations are use a reserved elf-wide relocation type code (R_RELC
7489 external / BFD_RELOC_RELC internal) and an encoding of relocation field
7490 information (start bit, end bit, word width, etc) into the addend. This
7491 information is extracted from CGEN-generated operand tables within gas.
7492
7493 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
7494 internal) representing prefix-notation expressions, including but not
7495 limited to those sorts of expressions normally encoded as addends in the
7496 addend field. The symbol mangling format is:
7497
7498 <node> := <literal>
7499 | <unary-operator> ':' <node>
7500 | <binary-operator> ':' <node> ':' <node>
7501 ;
7502
7503 <literal> := 's' <digits=N> ':' <N character symbol name>
7504 | 'S' <digits=N> ':' <N character section name>
7505 | '#' <hexdigits>
7506 ;
7507
7508 <binary-operator> := as in C
7509 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
7510
7511static void
a0c8462f
AM
7512set_symbol_value (bfd *bfd_with_globals,
7513 Elf_Internal_Sym *isymbuf,
7514 size_t locsymcount,
7515 size_t symidx,
7516 bfd_vma val)
d9352518 7517{
8977835c
AM
7518 struct elf_link_hash_entry **sym_hashes;
7519 struct elf_link_hash_entry *h;
7520 size_t extsymoff = locsymcount;
d9352518 7521
8977835c 7522 if (symidx < locsymcount)
d9352518 7523 {
8977835c
AM
7524 Elf_Internal_Sym *sym;
7525
7526 sym = isymbuf + symidx;
7527 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
7528 {
7529 /* It is a local symbol: move it to the
7530 "absolute" section and give it a value. */
7531 sym->st_shndx = SHN_ABS;
7532 sym->st_value = val;
7533 return;
7534 }
7535 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
7536 extsymoff = 0;
d9352518 7537 }
8977835c
AM
7538
7539 /* It is a global symbol: set its link type
7540 to "defined" and give it a value. */
7541
7542 sym_hashes = elf_sym_hashes (bfd_with_globals);
7543 h = sym_hashes [symidx - extsymoff];
7544 while (h->root.type == bfd_link_hash_indirect
7545 || h->root.type == bfd_link_hash_warning)
7546 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7547 h->root.type = bfd_link_hash_defined;
7548 h->root.u.def.value = val;
7549 h->root.u.def.section = bfd_abs_section_ptr;
d9352518
DB
7550}
7551
a0c8462f
AM
7552static bfd_boolean
7553resolve_symbol (const char *name,
7554 bfd *input_bfd,
8b127cbc 7555 struct elf_final_link_info *flinfo,
a0c8462f
AM
7556 bfd_vma *result,
7557 Elf_Internal_Sym *isymbuf,
7558 size_t locsymcount)
d9352518 7559{
a0c8462f
AM
7560 Elf_Internal_Sym *sym;
7561 struct bfd_link_hash_entry *global_entry;
7562 const char *candidate = NULL;
7563 Elf_Internal_Shdr *symtab_hdr;
7564 size_t i;
7565
d9352518
DB
7566 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
7567
7568 for (i = 0; i < locsymcount; ++ i)
7569 {
8977835c 7570 sym = isymbuf + i;
d9352518
DB
7571
7572 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
7573 continue;
7574
7575 candidate = bfd_elf_string_from_elf_section (input_bfd,
7576 symtab_hdr->sh_link,
7577 sym->st_name);
7578#ifdef DEBUG
0f02bbd9
AM
7579 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
7580 name, candidate, (unsigned long) sym->st_value);
d9352518
DB
7581#endif
7582 if (candidate && strcmp (candidate, name) == 0)
7583 {
8b127cbc 7584 asection *sec = flinfo->sections [i];
d9352518 7585
0f02bbd9
AM
7586 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
7587 *result += sec->output_offset + sec->output_section->vma;
d9352518 7588#ifdef DEBUG
0f02bbd9
AM
7589 printf ("Found symbol with value %8.8lx\n",
7590 (unsigned long) *result);
d9352518
DB
7591#endif
7592 return TRUE;
7593 }
7594 }
7595
7596 /* Hmm, haven't found it yet. perhaps it is a global. */
8b127cbc 7597 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
a0c8462f 7598 FALSE, FALSE, TRUE);
d9352518
DB
7599 if (!global_entry)
7600 return FALSE;
a0c8462f 7601
d9352518
DB
7602 if (global_entry->type == bfd_link_hash_defined
7603 || global_entry->type == bfd_link_hash_defweak)
7604 {
a0c8462f
AM
7605 *result = (global_entry->u.def.value
7606 + global_entry->u.def.section->output_section->vma
7607 + global_entry->u.def.section->output_offset);
d9352518 7608#ifdef DEBUG
0f02bbd9
AM
7609 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
7610 global_entry->root.string, (unsigned long) *result);
d9352518
DB
7611#endif
7612 return TRUE;
a0c8462f 7613 }
d9352518 7614
d9352518
DB
7615 return FALSE;
7616}
7617
7618static bfd_boolean
a0c8462f
AM
7619resolve_section (const char *name,
7620 asection *sections,
7621 bfd_vma *result)
d9352518 7622{
a0c8462f
AM
7623 asection *curr;
7624 unsigned int len;
d9352518 7625
a0c8462f 7626 for (curr = sections; curr; curr = curr->next)
d9352518
DB
7627 if (strcmp (curr->name, name) == 0)
7628 {
7629 *result = curr->vma;
7630 return TRUE;
7631 }
7632
7633 /* Hmm. still haven't found it. try pseudo-section names. */
a0c8462f 7634 for (curr = sections; curr; curr = curr->next)
d9352518
DB
7635 {
7636 len = strlen (curr->name);
a0c8462f 7637 if (len > strlen (name))
d9352518
DB
7638 continue;
7639
7640 if (strncmp (curr->name, name, len) == 0)
7641 {
7642 if (strncmp (".end", name + len, 4) == 0)
7643 {
7644 *result = curr->vma + curr->size;
7645 return TRUE;
7646 }
7647
7648 /* Insert more pseudo-section names here, if you like. */
7649 }
7650 }
a0c8462f 7651
d9352518
DB
7652 return FALSE;
7653}
7654
7655static void
a0c8462f 7656undefined_reference (const char *reftype, const char *name)
d9352518 7657{
a0c8462f
AM
7658 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
7659 reftype, name);
d9352518
DB
7660}
7661
7662static bfd_boolean
a0c8462f
AM
7663eval_symbol (bfd_vma *result,
7664 const char **symp,
7665 bfd *input_bfd,
8b127cbc 7666 struct elf_final_link_info *flinfo,
a0c8462f
AM
7667 bfd_vma dot,
7668 Elf_Internal_Sym *isymbuf,
7669 size_t locsymcount,
7670 int signed_p)
d9352518 7671{
4b93929b
NC
7672 size_t len;
7673 size_t symlen;
a0c8462f
AM
7674 bfd_vma a;
7675 bfd_vma b;
4b93929b 7676 char symbuf[4096];
0f02bbd9 7677 const char *sym = *symp;
a0c8462f
AM
7678 const char *symend;
7679 bfd_boolean symbol_is_section = FALSE;
d9352518
DB
7680
7681 len = strlen (sym);
7682 symend = sym + len;
7683
4b93929b 7684 if (len < 1 || len > sizeof (symbuf))
d9352518
DB
7685 {
7686 bfd_set_error (bfd_error_invalid_operation);
7687 return FALSE;
7688 }
a0c8462f 7689
d9352518
DB
7690 switch (* sym)
7691 {
7692 case '.':
0f02bbd9
AM
7693 *result = dot;
7694 *symp = sym + 1;
d9352518
DB
7695 return TRUE;
7696
7697 case '#':
0f02bbd9
AM
7698 ++sym;
7699 *result = strtoul (sym, (char **) symp, 16);
d9352518
DB
7700 return TRUE;
7701
7702 case 'S':
7703 symbol_is_section = TRUE;
a0c8462f 7704 case 's':
0f02bbd9
AM
7705 ++sym;
7706 symlen = strtol (sym, (char **) symp, 10);
7707 sym = *symp + 1; /* Skip the trailing ':'. */
d9352518 7708
4b93929b 7709 if (symend < sym || symlen + 1 > sizeof (symbuf))
d9352518
DB
7710 {
7711 bfd_set_error (bfd_error_invalid_operation);
7712 return FALSE;
7713 }
7714
7715 memcpy (symbuf, sym, symlen);
a0c8462f 7716 symbuf[symlen] = '\0';
0f02bbd9 7717 *symp = sym + symlen;
a0c8462f
AM
7718
7719 /* Is it always possible, with complex symbols, that gas "mis-guessed"
d9352518
DB
7720 the symbol as a section, or vice-versa. so we're pretty liberal in our
7721 interpretation here; section means "try section first", not "must be a
7722 section", and likewise with symbol. */
7723
a0c8462f 7724 if (symbol_is_section)
d9352518 7725 {
8b127cbc
AM
7726 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result)
7727 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 7728 isymbuf, locsymcount))
d9352518
DB
7729 {
7730 undefined_reference ("section", symbuf);
7731 return FALSE;
7732 }
a0c8462f
AM
7733 }
7734 else
d9352518 7735 {
8b127cbc 7736 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 7737 isymbuf, locsymcount)
8b127cbc 7738 && !resolve_section (symbuf, flinfo->output_bfd->sections,
8977835c 7739 result))
d9352518
DB
7740 {
7741 undefined_reference ("symbol", symbuf);
7742 return FALSE;
7743 }
7744 }
7745
7746 return TRUE;
a0c8462f 7747
d9352518
DB
7748 /* All that remains are operators. */
7749
7750#define UNARY_OP(op) \
7751 if (strncmp (sym, #op, strlen (#op)) == 0) \
7752 { \
7753 sym += strlen (#op); \
a0c8462f
AM
7754 if (*sym == ':') \
7755 ++sym; \
0f02bbd9 7756 *symp = sym; \
8b127cbc 7757 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 7758 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
7759 return FALSE; \
7760 if (signed_p) \
0f02bbd9 7761 *result = op ((bfd_signed_vma) a); \
a0c8462f
AM
7762 else \
7763 *result = op a; \
d9352518
DB
7764 return TRUE; \
7765 }
7766
7767#define BINARY_OP(op) \
7768 if (strncmp (sym, #op, strlen (#op)) == 0) \
7769 { \
7770 sym += strlen (#op); \
a0c8462f
AM
7771 if (*sym == ':') \
7772 ++sym; \
0f02bbd9 7773 *symp = sym; \
8b127cbc 7774 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 7775 isymbuf, locsymcount, signed_p)) \
a0c8462f 7776 return FALSE; \
0f02bbd9 7777 ++*symp; \
8b127cbc 7778 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
0f02bbd9 7779 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
7780 return FALSE; \
7781 if (signed_p) \
0f02bbd9 7782 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
a0c8462f
AM
7783 else \
7784 *result = a op b; \
d9352518
DB
7785 return TRUE; \
7786 }
7787
7788 default:
7789 UNARY_OP (0-);
7790 BINARY_OP (<<);
7791 BINARY_OP (>>);
7792 BINARY_OP (==);
7793 BINARY_OP (!=);
7794 BINARY_OP (<=);
7795 BINARY_OP (>=);
7796 BINARY_OP (&&);
7797 BINARY_OP (||);
7798 UNARY_OP (~);
7799 UNARY_OP (!);
7800 BINARY_OP (*);
7801 BINARY_OP (/);
7802 BINARY_OP (%);
7803 BINARY_OP (^);
7804 BINARY_OP (|);
7805 BINARY_OP (&);
7806 BINARY_OP (+);
7807 BINARY_OP (-);
7808 BINARY_OP (<);
7809 BINARY_OP (>);
7810#undef UNARY_OP
7811#undef BINARY_OP
7812 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
7813 bfd_set_error (bfd_error_invalid_operation);
7814 return FALSE;
7815 }
7816}
7817
d9352518 7818static void
a0c8462f
AM
7819put_value (bfd_vma size,
7820 unsigned long chunksz,
7821 bfd *input_bfd,
7822 bfd_vma x,
7823 bfd_byte *location)
d9352518
DB
7824{
7825 location += (size - chunksz);
7826
a0c8462f 7827 for (; size; size -= chunksz, location -= chunksz, x >>= (chunksz * 8))
d9352518
DB
7828 {
7829 switch (chunksz)
7830 {
7831 default:
7832 case 0:
7833 abort ();
7834 case 1:
7835 bfd_put_8 (input_bfd, x, location);
7836 break;
7837 case 2:
7838 bfd_put_16 (input_bfd, x, location);
7839 break;
7840 case 4:
7841 bfd_put_32 (input_bfd, x, location);
7842 break;
7843 case 8:
7844#ifdef BFD64
7845 bfd_put_64 (input_bfd, x, location);
7846#else
7847 abort ();
7848#endif
7849 break;
7850 }
7851 }
7852}
7853
a0c8462f
AM
7854static bfd_vma
7855get_value (bfd_vma size,
7856 unsigned long chunksz,
7857 bfd *input_bfd,
7858 bfd_byte *location)
d9352518
DB
7859{
7860 bfd_vma x = 0;
7861
a0c8462f 7862 for (; size; size -= chunksz, location += chunksz)
d9352518
DB
7863 {
7864 switch (chunksz)
7865 {
7866 default:
7867 case 0:
7868 abort ();
7869 case 1:
7870 x = (x << (8 * chunksz)) | bfd_get_8 (input_bfd, location);
7871 break;
7872 case 2:
7873 x = (x << (8 * chunksz)) | bfd_get_16 (input_bfd, location);
7874 break;
7875 case 4:
7876 x = (x << (8 * chunksz)) | bfd_get_32 (input_bfd, location);
7877 break;
7878 case 8:
7879#ifdef BFD64
7880 x = (x << (8 * chunksz)) | bfd_get_64 (input_bfd, location);
7881#else
7882 abort ();
7883#endif
7884 break;
7885 }
7886 }
7887 return x;
7888}
7889
a0c8462f
AM
7890static void
7891decode_complex_addend (unsigned long *start, /* in bits */
7892 unsigned long *oplen, /* in bits */
7893 unsigned long *len, /* in bits */
7894 unsigned long *wordsz, /* in bytes */
7895 unsigned long *chunksz, /* in bytes */
7896 unsigned long *lsb0_p,
7897 unsigned long *signed_p,
7898 unsigned long *trunc_p,
7899 unsigned long encoded)
d9352518
DB
7900{
7901 * start = encoded & 0x3F;
7902 * len = (encoded >> 6) & 0x3F;
7903 * oplen = (encoded >> 12) & 0x3F;
7904 * wordsz = (encoded >> 18) & 0xF;
7905 * chunksz = (encoded >> 22) & 0xF;
7906 * lsb0_p = (encoded >> 27) & 1;
7907 * signed_p = (encoded >> 28) & 1;
7908 * trunc_p = (encoded >> 29) & 1;
7909}
7910
cdfeee4f 7911bfd_reloc_status_type
0f02bbd9 7912bfd_elf_perform_complex_relocation (bfd *input_bfd,
cdfeee4f 7913 asection *input_section ATTRIBUTE_UNUSED,
0f02bbd9
AM
7914 bfd_byte *contents,
7915 Elf_Internal_Rela *rel,
7916 bfd_vma relocation)
d9352518 7917{
0f02bbd9
AM
7918 bfd_vma shift, x, mask;
7919 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
cdfeee4f 7920 bfd_reloc_status_type r;
d9352518
DB
7921
7922 /* Perform this reloc, since it is complex.
7923 (this is not to say that it necessarily refers to a complex
7924 symbol; merely that it is a self-describing CGEN based reloc.
7925 i.e. the addend has the complete reloc information (bit start, end,
a0c8462f 7926 word size, etc) encoded within it.). */
d9352518 7927
a0c8462f
AM
7928 decode_complex_addend (&start, &oplen, &len, &wordsz,
7929 &chunksz, &lsb0_p, &signed_p,
7930 &trunc_p, rel->r_addend);
d9352518
DB
7931
7932 mask = (((1L << (len - 1)) - 1) << 1) | 1;
7933
7934 if (lsb0_p)
7935 shift = (start + 1) - len;
7936 else
7937 shift = (8 * wordsz) - (start + len);
7938
5dabe785 7939 /* FIXME: octets_per_byte. */
a0c8462f 7940 x = get_value (wordsz, chunksz, input_bfd, contents + rel->r_offset);
d9352518
DB
7941
7942#ifdef DEBUG
7943 printf ("Doing complex reloc: "
7944 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
7945 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
7946 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
7947 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
9ccb8af9
AM
7948 oplen, (unsigned long) x, (unsigned long) mask,
7949 (unsigned long) relocation);
d9352518
DB
7950#endif
7951
cdfeee4f 7952 r = bfd_reloc_ok;
d9352518 7953 if (! trunc_p)
cdfeee4f
AM
7954 /* Now do an overflow check. */
7955 r = bfd_check_overflow ((signed_p
7956 ? complain_overflow_signed
7957 : complain_overflow_unsigned),
7958 len, 0, (8 * wordsz),
7959 relocation);
a0c8462f 7960
d9352518
DB
7961 /* Do the deed. */
7962 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
7963
7964#ifdef DEBUG
7965 printf (" relocation: %8.8lx\n"
7966 " shifted mask: %8.8lx\n"
7967 " shifted/masked reloc: %8.8lx\n"
7968 " result: %8.8lx\n",
9ccb8af9
AM
7969 (unsigned long) relocation, (unsigned long) (mask << shift),
7970 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
d9352518 7971#endif
5dabe785 7972 /* FIXME: octets_per_byte. */
d9352518 7973 put_value (wordsz, chunksz, input_bfd, x, contents + rel->r_offset);
cdfeee4f 7974 return r;
d9352518
DB
7975}
7976
c152c796
AM
7977/* When performing a relocatable link, the input relocations are
7978 preserved. But, if they reference global symbols, the indices
d4730f92
BS
7979 referenced must be updated. Update all the relocations found in
7980 RELDATA. */
c152c796
AM
7981
7982static void
7983elf_link_adjust_relocs (bfd *abfd,
d4730f92 7984 struct bfd_elf_section_reloc_data *reldata)
c152c796
AM
7985{
7986 unsigned int i;
7987 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7988 bfd_byte *erela;
7989 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
7990 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
7991 bfd_vma r_type_mask;
7992 int r_sym_shift;
d4730f92
BS
7993 unsigned int count = reldata->count;
7994 struct elf_link_hash_entry **rel_hash = reldata->hashes;
c152c796 7995
d4730f92 7996 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
c152c796
AM
7997 {
7998 swap_in = bed->s->swap_reloc_in;
7999 swap_out = bed->s->swap_reloc_out;
8000 }
d4730f92 8001 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
c152c796
AM
8002 {
8003 swap_in = bed->s->swap_reloca_in;
8004 swap_out = bed->s->swap_reloca_out;
8005 }
8006 else
8007 abort ();
8008
8009 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
8010 abort ();
8011
8012 if (bed->s->arch_size == 32)
8013 {
8014 r_type_mask = 0xff;
8015 r_sym_shift = 8;
8016 }
8017 else
8018 {
8019 r_type_mask = 0xffffffff;
8020 r_sym_shift = 32;
8021 }
8022
d4730f92
BS
8023 erela = reldata->hdr->contents;
8024 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
c152c796
AM
8025 {
8026 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8027 unsigned int j;
8028
8029 if (*rel_hash == NULL)
8030 continue;
8031
8032 BFD_ASSERT ((*rel_hash)->indx >= 0);
8033
8034 (*swap_in) (abfd, erela, irela);
8035 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8036 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8037 | (irela[j].r_info & r_type_mask));
8038 (*swap_out) (abfd, irela, erela);
8039 }
8040}
8041
8042struct elf_link_sort_rela
8043{
8044 union {
8045 bfd_vma offset;
8046 bfd_vma sym_mask;
8047 } u;
8048 enum elf_reloc_type_class type;
8049 /* We use this as an array of size int_rels_per_ext_rel. */
8050 Elf_Internal_Rela rela[1];
8051};
8052
8053static int
8054elf_link_sort_cmp1 (const void *A, const void *B)
8055{
a50b1753
NC
8056 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8057 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796
AM
8058 int relativea, relativeb;
8059
8060 relativea = a->type == reloc_class_relative;
8061 relativeb = b->type == reloc_class_relative;
8062
8063 if (relativea < relativeb)
8064 return 1;
8065 if (relativea > relativeb)
8066 return -1;
8067 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8068 return -1;
8069 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8070 return 1;
8071 if (a->rela->r_offset < b->rela->r_offset)
8072 return -1;
8073 if (a->rela->r_offset > b->rela->r_offset)
8074 return 1;
8075 return 0;
8076}
8077
8078static int
8079elf_link_sort_cmp2 (const void *A, const void *B)
8080{
a50b1753
NC
8081 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8082 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796
AM
8083 int copya, copyb;
8084
8085 if (a->u.offset < b->u.offset)
8086 return -1;
8087 if (a->u.offset > b->u.offset)
8088 return 1;
8089 copya = (a->type == reloc_class_copy) * 2 + (a->type == reloc_class_plt);
8090 copyb = (b->type == reloc_class_copy) * 2 + (b->type == reloc_class_plt);
8091 if (copya < copyb)
8092 return -1;
8093 if (copya > copyb)
8094 return 1;
8095 if (a->rela->r_offset < b->rela->r_offset)
8096 return -1;
8097 if (a->rela->r_offset > b->rela->r_offset)
8098 return 1;
8099 return 0;
8100}
8101
8102static size_t
8103elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
8104{
3410fea8 8105 asection *dynamic_relocs;
fc66a176
L
8106 asection *rela_dyn;
8107 asection *rel_dyn;
c152c796
AM
8108 bfd_size_type count, size;
8109 size_t i, ret, sort_elt, ext_size;
8110 bfd_byte *sort, *s_non_relative, *p;
8111 struct elf_link_sort_rela *sq;
8112 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8113 int i2e = bed->s->int_rels_per_ext_rel;
8114 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8115 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8116 struct bfd_link_order *lo;
8117 bfd_vma r_sym_mask;
3410fea8 8118 bfd_boolean use_rela;
c152c796 8119
3410fea8
NC
8120 /* Find a dynamic reloc section. */
8121 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
8122 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
8123 if (rela_dyn != NULL && rela_dyn->size > 0
8124 && rel_dyn != NULL && rel_dyn->size > 0)
c152c796 8125 {
3410fea8
NC
8126 bfd_boolean use_rela_initialised = FALSE;
8127
8128 /* This is just here to stop gcc from complaining.
8129 It's initialization checking code is not perfect. */
8130 use_rela = TRUE;
8131
8132 /* Both sections are present. Examine the sizes
8133 of the indirect sections to help us choose. */
8134 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8135 if (lo->type == bfd_indirect_link_order)
8136 {
8137 asection *o = lo->u.indirect.section;
8138
8139 if ((o->size % bed->s->sizeof_rela) == 0)
8140 {
8141 if ((o->size % bed->s->sizeof_rel) == 0)
8142 /* Section size is divisible by both rel and rela sizes.
8143 It is of no help to us. */
8144 ;
8145 else
8146 {
8147 /* Section size is only divisible by rela. */
8148 if (use_rela_initialised && (use_rela == FALSE))
8149 {
8150 _bfd_error_handler
8151 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8152 bfd_set_error (bfd_error_invalid_operation);
8153 return 0;
8154 }
8155 else
8156 {
8157 use_rela = TRUE;
8158 use_rela_initialised = TRUE;
8159 }
8160 }
8161 }
8162 else if ((o->size % bed->s->sizeof_rel) == 0)
8163 {
8164 /* Section size is only divisible by rel. */
8165 if (use_rela_initialised && (use_rela == TRUE))
8166 {
8167 _bfd_error_handler
8168 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8169 bfd_set_error (bfd_error_invalid_operation);
8170 return 0;
8171 }
8172 else
8173 {
8174 use_rela = FALSE;
8175 use_rela_initialised = TRUE;
8176 }
8177 }
8178 else
8179 {
8180 /* The section size is not divisible by either - something is wrong. */
8181 _bfd_error_handler
8182 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8183 bfd_set_error (bfd_error_invalid_operation);
8184 return 0;
8185 }
8186 }
8187
8188 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8189 if (lo->type == bfd_indirect_link_order)
8190 {
8191 asection *o = lo->u.indirect.section;
8192
8193 if ((o->size % bed->s->sizeof_rela) == 0)
8194 {
8195 if ((o->size % bed->s->sizeof_rel) == 0)
8196 /* Section size is divisible by both rel and rela sizes.
8197 It is of no help to us. */
8198 ;
8199 else
8200 {
8201 /* Section size is only divisible by rela. */
8202 if (use_rela_initialised && (use_rela == FALSE))
8203 {
8204 _bfd_error_handler
8205 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8206 bfd_set_error (bfd_error_invalid_operation);
8207 return 0;
8208 }
8209 else
8210 {
8211 use_rela = TRUE;
8212 use_rela_initialised = TRUE;
8213 }
8214 }
8215 }
8216 else if ((o->size % bed->s->sizeof_rel) == 0)
8217 {
8218 /* Section size is only divisible by rel. */
8219 if (use_rela_initialised && (use_rela == TRUE))
8220 {
8221 _bfd_error_handler
8222 (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8223 bfd_set_error (bfd_error_invalid_operation);
8224 return 0;
8225 }
8226 else
8227 {
8228 use_rela = FALSE;
8229 use_rela_initialised = TRUE;
8230 }
8231 }
8232 else
8233 {
8234 /* The section size is not divisible by either - something is wrong. */
8235 _bfd_error_handler
8236 (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8237 bfd_set_error (bfd_error_invalid_operation);
8238 return 0;
8239 }
8240 }
8241
8242 if (! use_rela_initialised)
8243 /* Make a guess. */
8244 use_rela = TRUE;
c152c796 8245 }
fc66a176
L
8246 else if (rela_dyn != NULL && rela_dyn->size > 0)
8247 use_rela = TRUE;
8248 else if (rel_dyn != NULL && rel_dyn->size > 0)
3410fea8 8249 use_rela = FALSE;
c152c796 8250 else
fc66a176 8251 return 0;
3410fea8
NC
8252
8253 if (use_rela)
c152c796 8254 {
3410fea8 8255 dynamic_relocs = rela_dyn;
c152c796
AM
8256 ext_size = bed->s->sizeof_rela;
8257 swap_in = bed->s->swap_reloca_in;
8258 swap_out = bed->s->swap_reloca_out;
8259 }
3410fea8
NC
8260 else
8261 {
8262 dynamic_relocs = rel_dyn;
8263 ext_size = bed->s->sizeof_rel;
8264 swap_in = bed->s->swap_reloc_in;
8265 swap_out = bed->s->swap_reloc_out;
8266 }
c152c796
AM
8267
8268 size = 0;
3410fea8 8269 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796 8270 if (lo->type == bfd_indirect_link_order)
3410fea8 8271 size += lo->u.indirect.section->size;
c152c796 8272
3410fea8 8273 if (size != dynamic_relocs->size)
c152c796
AM
8274 return 0;
8275
8276 sort_elt = (sizeof (struct elf_link_sort_rela)
8277 + (i2e - 1) * sizeof (Elf_Internal_Rela));
3410fea8
NC
8278
8279 count = dynamic_relocs->size / ext_size;
5e486aa1
NC
8280 if (count == 0)
8281 return 0;
a50b1753 8282 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
3410fea8 8283
c152c796
AM
8284 if (sort == NULL)
8285 {
8286 (*info->callbacks->warning)
8287 (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
8288 return 0;
8289 }
8290
8291 if (bed->s->arch_size == 32)
8292 r_sym_mask = ~(bfd_vma) 0xff;
8293 else
8294 r_sym_mask = ~(bfd_vma) 0xffffffff;
8295
3410fea8 8296 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
8297 if (lo->type == bfd_indirect_link_order)
8298 {
8299 bfd_byte *erel, *erelend;
8300 asection *o = lo->u.indirect.section;
8301
1da212d6
AM
8302 if (o->contents == NULL && o->size != 0)
8303 {
8304 /* This is a reloc section that is being handled as a normal
8305 section. See bfd_section_from_shdr. We can't combine
8306 relocs in this case. */
8307 free (sort);
8308 return 0;
8309 }
c152c796 8310 erel = o->contents;
eea6121a 8311 erelend = o->contents + o->size;
5dabe785 8312 /* FIXME: octets_per_byte. */
c152c796 8313 p = sort + o->output_offset / ext_size * sort_elt;
3410fea8 8314
c152c796
AM
8315 while (erel < erelend)
8316 {
8317 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3410fea8 8318
c152c796
AM
8319 (*swap_in) (abfd, erel, s->rela);
8320 s->type = (*bed->elf_backend_reloc_type_class) (s->rela);
8321 s->u.sym_mask = r_sym_mask;
8322 p += sort_elt;
8323 erel += ext_size;
8324 }
8325 }
8326
8327 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
8328
8329 for (i = 0, p = sort; i < count; i++, p += sort_elt)
8330 {
8331 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8332 if (s->type != reloc_class_relative)
8333 break;
8334 }
8335 ret = i;
8336 s_non_relative = p;
8337
8338 sq = (struct elf_link_sort_rela *) s_non_relative;
8339 for (; i < count; i++, p += sort_elt)
8340 {
8341 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
8342 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
8343 sq = sp;
8344 sp->u.offset = sq->rela->r_offset;
8345 }
8346
8347 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
8348
3410fea8 8349 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
8350 if (lo->type == bfd_indirect_link_order)
8351 {
8352 bfd_byte *erel, *erelend;
8353 asection *o = lo->u.indirect.section;
8354
8355 erel = o->contents;
eea6121a 8356 erelend = o->contents + o->size;
5dabe785 8357 /* FIXME: octets_per_byte. */
c152c796
AM
8358 p = sort + o->output_offset / ext_size * sort_elt;
8359 while (erel < erelend)
8360 {
8361 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8362 (*swap_out) (abfd, s->rela, erel);
8363 p += sort_elt;
8364 erel += ext_size;
8365 }
8366 }
8367
8368 free (sort);
3410fea8 8369 *psec = dynamic_relocs;
c152c796
AM
8370 return ret;
8371}
8372
8373/* Flush the output symbols to the file. */
8374
8375static bfd_boolean
8b127cbc 8376elf_link_flush_output_syms (struct elf_final_link_info *flinfo,
c152c796
AM
8377 const struct elf_backend_data *bed)
8378{
8b127cbc 8379 if (flinfo->symbuf_count > 0)
c152c796
AM
8380 {
8381 Elf_Internal_Shdr *hdr;
8382 file_ptr pos;
8383 bfd_size_type amt;
8384
8b127cbc 8385 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
c152c796 8386 pos = hdr->sh_offset + hdr->sh_size;
8b127cbc
AM
8387 amt = flinfo->symbuf_count * bed->s->sizeof_sym;
8388 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) != 0
8389 || bfd_bwrite (flinfo->symbuf, amt, flinfo->output_bfd) != amt)
c152c796
AM
8390 return FALSE;
8391
8392 hdr->sh_size += amt;
8b127cbc 8393 flinfo->symbuf_count = 0;
c152c796
AM
8394 }
8395
8396 return TRUE;
8397}
8398
8399/* Add a symbol to the output symbol table. */
8400
6e0b88f1 8401static int
8b127cbc 8402elf_link_output_sym (struct elf_final_link_info *flinfo,
c152c796
AM
8403 const char *name,
8404 Elf_Internal_Sym *elfsym,
8405 asection *input_sec,
8406 struct elf_link_hash_entry *h)
8407{
8408 bfd_byte *dest;
8409 Elf_External_Sym_Shndx *destshndx;
6e0b88f1 8410 int (*output_symbol_hook)
c152c796
AM
8411 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
8412 struct elf_link_hash_entry *);
8413 const struct elf_backend_data *bed;
8414
8b127cbc 8415 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796
AM
8416 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
8417 if (output_symbol_hook != NULL)
8418 {
8b127cbc 8419 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
6e0b88f1
AM
8420 if (ret != 1)
8421 return ret;
c152c796
AM
8422 }
8423
8424 if (name == NULL || *name == '\0')
8425 elfsym->st_name = 0;
8426 else if (input_sec->flags & SEC_EXCLUDE)
8427 elfsym->st_name = 0;
8428 else
8429 {
8b127cbc 8430 elfsym->st_name = (unsigned long) _bfd_stringtab_add (flinfo->symstrtab,
c152c796
AM
8431 name, TRUE, FALSE);
8432 if (elfsym->st_name == (unsigned long) -1)
6e0b88f1 8433 return 0;
c152c796
AM
8434 }
8435
8b127cbc 8436 if (flinfo->symbuf_count >= flinfo->symbuf_size)
c152c796 8437 {
8b127cbc 8438 if (! elf_link_flush_output_syms (flinfo, bed))
6e0b88f1 8439 return 0;
c152c796
AM
8440 }
8441
8b127cbc
AM
8442 dest = flinfo->symbuf + flinfo->symbuf_count * bed->s->sizeof_sym;
8443 destshndx = flinfo->symshndxbuf;
c152c796
AM
8444 if (destshndx != NULL)
8445 {
8b127cbc 8446 if (bfd_get_symcount (flinfo->output_bfd) >= flinfo->shndxbuf_size)
c152c796
AM
8447 {
8448 bfd_size_type amt;
8449
8b127cbc 8450 amt = flinfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx);
a50b1753
NC
8451 destshndx = (Elf_External_Sym_Shndx *) bfd_realloc (destshndx,
8452 amt * 2);
c152c796 8453 if (destshndx == NULL)
6e0b88f1 8454 return 0;
8b127cbc 8455 flinfo->symshndxbuf = destshndx;
c152c796 8456 memset ((char *) destshndx + amt, 0, amt);
8b127cbc 8457 flinfo->shndxbuf_size *= 2;
c152c796 8458 }
8b127cbc 8459 destshndx += bfd_get_symcount (flinfo->output_bfd);
c152c796
AM
8460 }
8461
8b127cbc
AM
8462 bed->s->swap_symbol_out (flinfo->output_bfd, elfsym, dest, destshndx);
8463 flinfo->symbuf_count += 1;
8464 bfd_get_symcount (flinfo->output_bfd) += 1;
c152c796 8465
6e0b88f1 8466 return 1;
c152c796
AM
8467}
8468
c0d5a53d
L
8469/* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
8470
8471static bfd_boolean
8472check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
8473{
4fbb74a6
AM
8474 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
8475 && sym->st_shndx < SHN_LORESERVE)
c0d5a53d
L
8476 {
8477 /* The gABI doesn't support dynamic symbols in output sections
a0c8462f 8478 beyond 64k. */
c0d5a53d
L
8479 (*_bfd_error_handler)
8480 (_("%B: Too many sections: %d (>= %d)"),
4fbb74a6 8481 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
c0d5a53d
L
8482 bfd_set_error (bfd_error_nonrepresentable_section);
8483 return FALSE;
8484 }
8485 return TRUE;
8486}
8487
c152c796
AM
8488/* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
8489 allowing an unsatisfied unversioned symbol in the DSO to match a
8490 versioned symbol that would normally require an explicit version.
8491 We also handle the case that a DSO references a hidden symbol
8492 which may be satisfied by a versioned symbol in another DSO. */
8493
8494static bfd_boolean
8495elf_link_check_versioned_symbol (struct bfd_link_info *info,
8496 const struct elf_backend_data *bed,
8497 struct elf_link_hash_entry *h)
8498{
8499 bfd *abfd;
8500 struct elf_link_loaded_list *loaded;
8501
8502 if (!is_elf_hash_table (info->hash))
8503 return FALSE;
8504
90c984fc
L
8505 /* Check indirect symbol. */
8506 while (h->root.type == bfd_link_hash_indirect)
8507 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8508
c152c796
AM
8509 switch (h->root.type)
8510 {
8511 default:
8512 abfd = NULL;
8513 break;
8514
8515 case bfd_link_hash_undefined:
8516 case bfd_link_hash_undefweak:
8517 abfd = h->root.u.undef.abfd;
8518 if ((abfd->flags & DYNAMIC) == 0
e56f61be 8519 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
c152c796
AM
8520 return FALSE;
8521 break;
8522
8523 case bfd_link_hash_defined:
8524 case bfd_link_hash_defweak:
8525 abfd = h->root.u.def.section->owner;
8526 break;
8527
8528 case bfd_link_hash_common:
8529 abfd = h->root.u.c.p->section->owner;
8530 break;
8531 }
8532 BFD_ASSERT (abfd != NULL);
8533
8534 for (loaded = elf_hash_table (info)->loaded;
8535 loaded != NULL;
8536 loaded = loaded->next)
8537 {
8538 bfd *input;
8539 Elf_Internal_Shdr *hdr;
8540 bfd_size_type symcount;
8541 bfd_size_type extsymcount;
8542 bfd_size_type extsymoff;
8543 Elf_Internal_Shdr *versymhdr;
8544 Elf_Internal_Sym *isym;
8545 Elf_Internal_Sym *isymend;
8546 Elf_Internal_Sym *isymbuf;
8547 Elf_External_Versym *ever;
8548 Elf_External_Versym *extversym;
8549
8550 input = loaded->abfd;
8551
8552 /* We check each DSO for a possible hidden versioned definition. */
8553 if (input == abfd
8554 || (input->flags & DYNAMIC) == 0
8555 || elf_dynversym (input) == 0)
8556 continue;
8557
8558 hdr = &elf_tdata (input)->dynsymtab_hdr;
8559
8560 symcount = hdr->sh_size / bed->s->sizeof_sym;
8561 if (elf_bad_symtab (input))
8562 {
8563 extsymcount = symcount;
8564 extsymoff = 0;
8565 }
8566 else
8567 {
8568 extsymcount = symcount - hdr->sh_info;
8569 extsymoff = hdr->sh_info;
8570 }
8571
8572 if (extsymcount == 0)
8573 continue;
8574
8575 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
8576 NULL, NULL, NULL);
8577 if (isymbuf == NULL)
8578 return FALSE;
8579
8580 /* Read in any version definitions. */
8581 versymhdr = &elf_tdata (input)->dynversym_hdr;
a50b1753 8582 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
c152c796
AM
8583 if (extversym == NULL)
8584 goto error_ret;
8585
8586 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
8587 || (bfd_bread (extversym, versymhdr->sh_size, input)
8588 != versymhdr->sh_size))
8589 {
8590 free (extversym);
8591 error_ret:
8592 free (isymbuf);
8593 return FALSE;
8594 }
8595
8596 ever = extversym + extsymoff;
8597 isymend = isymbuf + extsymcount;
8598 for (isym = isymbuf; isym < isymend; isym++, ever++)
8599 {
8600 const char *name;
8601 Elf_Internal_Versym iver;
8602 unsigned short version_index;
8603
8604 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
8605 || isym->st_shndx == SHN_UNDEF)
8606 continue;
8607
8608 name = bfd_elf_string_from_elf_section (input,
8609 hdr->sh_link,
8610 isym->st_name);
8611 if (strcmp (name, h->root.root.string) != 0)
8612 continue;
8613
8614 _bfd_elf_swap_versym_in (input, ever, &iver);
8615
d023c380
L
8616 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
8617 && !(h->def_regular
8618 && h->forced_local))
c152c796
AM
8619 {
8620 /* If we have a non-hidden versioned sym, then it should
d023c380
L
8621 have provided a definition for the undefined sym unless
8622 it is defined in a non-shared object and forced local.
8623 */
c152c796
AM
8624 abort ();
8625 }
8626
8627 version_index = iver.vs_vers & VERSYM_VERSION;
8628 if (version_index == 1 || version_index == 2)
8629 {
8630 /* This is the base or first version. We can use it. */
8631 free (extversym);
8632 free (isymbuf);
8633 return TRUE;
8634 }
8635 }
8636
8637 free (extversym);
8638 free (isymbuf);
8639 }
8640
8641 return FALSE;
8642}
8643
8644/* Add an external symbol to the symbol table. This is called from
8645 the hash table traversal routine. When generating a shared object,
8646 we go through the symbol table twice. The first time we output
8647 anything that might have been forced to local scope in a version
8648 script. The second time we output the symbols that are still
8649 global symbols. */
8650
8651static bfd_boolean
7686d77d 8652elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
c152c796 8653{
7686d77d 8654 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
a50b1753 8655 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8b127cbc 8656 struct elf_final_link_info *flinfo = eoinfo->flinfo;
c152c796
AM
8657 bfd_boolean strip;
8658 Elf_Internal_Sym sym;
8659 asection *input_sec;
8660 const struct elf_backend_data *bed;
6e0b88f1
AM
8661 long indx;
8662 int ret;
c152c796
AM
8663
8664 if (h->root.type == bfd_link_hash_warning)
8665 {
8666 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8667 if (h->root.type == bfd_link_hash_new)
8668 return TRUE;
8669 }
8670
8671 /* Decide whether to output this symbol in this pass. */
8672 if (eoinfo->localsyms)
8673 {
f5385ebf 8674 if (!h->forced_local)
c152c796 8675 return TRUE;
ffbc01cc
AM
8676 if (eoinfo->second_pass
8677 && !((h->root.type == bfd_link_hash_defined
8678 || h->root.type == bfd_link_hash_defweak)
8679 && h->root.u.def.section->output_section != NULL))
8680 return TRUE;
c152c796
AM
8681 }
8682 else
8683 {
f5385ebf 8684 if (h->forced_local)
c152c796
AM
8685 return TRUE;
8686 }
8687
8b127cbc 8688 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 8689
12ac1cf5 8690 if (h->root.type == bfd_link_hash_undefined)
c152c796 8691 {
12ac1cf5
NC
8692 /* If we have an undefined symbol reference here then it must have
8693 come from a shared library that is being linked in. (Undefined
98da7939
L
8694 references in regular files have already been handled unless
8695 they are in unreferenced sections which are removed by garbage
8696 collection). */
12ac1cf5
NC
8697 bfd_boolean ignore_undef = FALSE;
8698
8699 /* Some symbols may be special in that the fact that they're
8700 undefined can be safely ignored - let backend determine that. */
8701 if (bed->elf_backend_ignore_undef_symbol)
8702 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
8703
8704 /* If we are reporting errors for this situation then do so now. */
89a2ee5a 8705 if (!ignore_undef
12ac1cf5 8706 && h->ref_dynamic
8b127cbc
AM
8707 && (!h->ref_regular || flinfo->info->gc_sections)
8708 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
8709 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
8710 {
8711 if (!(flinfo->info->callbacks->undefined_symbol
8712 (flinfo->info, h->root.root.string,
8713 h->ref_regular ? NULL : h->root.u.undef.abfd,
8714 NULL, 0,
8715 (flinfo->info->unresolved_syms_in_shared_libs
8716 == RM_GENERATE_ERROR))))
12ac1cf5 8717 {
17d078c5 8718 bfd_set_error (bfd_error_bad_value);
12ac1cf5
NC
8719 eoinfo->failed = TRUE;
8720 return FALSE;
8721 }
c152c796
AM
8722 }
8723 }
8724
8725 /* We should also warn if a forced local symbol is referenced from
8726 shared libraries. */
8b127cbc
AM
8727 if (!flinfo->info->relocatable
8728 && flinfo->info->executable
f5385ebf
AM
8729 && h->forced_local
8730 && h->ref_dynamic
371a5866 8731 && h->def_regular
f5385ebf
AM
8732 && !h->dynamic_def
8733 && !h->dynamic_weak
8b127cbc 8734 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
c152c796 8735 {
17d078c5
AM
8736 bfd *def_bfd;
8737 const char *msg;
90c984fc
L
8738 struct elf_link_hash_entry *hi = h;
8739
8740 /* Check indirect symbol. */
8741 while (hi->root.type == bfd_link_hash_indirect)
8742 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
17d078c5
AM
8743
8744 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
8745 msg = _("%B: internal symbol `%s' in %B is referenced by DSO");
8746 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
8747 msg = _("%B: hidden symbol `%s' in %B is referenced by DSO");
8748 else
8749 msg = _("%B: local symbol `%s' in %B is referenced by DSO");
8b127cbc 8750 def_bfd = flinfo->output_bfd;
90c984fc
L
8751 if (hi->root.u.def.section != bfd_abs_section_ptr)
8752 def_bfd = hi->root.u.def.section->owner;
8b127cbc 8753 (*_bfd_error_handler) (msg, flinfo->output_bfd, def_bfd,
17d078c5
AM
8754 h->root.root.string);
8755 bfd_set_error (bfd_error_bad_value);
c152c796
AM
8756 eoinfo->failed = TRUE;
8757 return FALSE;
8758 }
8759
8760 /* We don't want to output symbols that have never been mentioned by
8761 a regular file, or that we have been told to strip. However, if
8762 h->indx is set to -2, the symbol is used by a reloc and we must
8763 output it. */
8764 if (h->indx == -2)
8765 strip = FALSE;
f5385ebf 8766 else if ((h->def_dynamic
77cfaee6
AM
8767 || h->ref_dynamic
8768 || h->root.type == bfd_link_hash_new)
f5385ebf
AM
8769 && !h->def_regular
8770 && !h->ref_regular)
c152c796 8771 strip = TRUE;
8b127cbc 8772 else if (flinfo->info->strip == strip_all)
c152c796 8773 strip = TRUE;
8b127cbc
AM
8774 else if (flinfo->info->strip == strip_some
8775 && bfd_hash_lookup (flinfo->info->keep_hash,
c152c796
AM
8776 h->root.root.string, FALSE, FALSE) == NULL)
8777 strip = TRUE;
d56d55e7
AM
8778 else if ((h->root.type == bfd_link_hash_defined
8779 || h->root.type == bfd_link_hash_defweak)
8b127cbc 8780 && ((flinfo->info->strip_discarded
dbaa2011 8781 && discarded_section (h->root.u.def.section))
d56d55e7
AM
8782 || (h->root.u.def.section->owner != NULL
8783 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
c152c796 8784 strip = TRUE;
9e2278f5
AM
8785 else if ((h->root.type == bfd_link_hash_undefined
8786 || h->root.type == bfd_link_hash_undefweak)
8787 && h->root.u.undef.abfd != NULL
8788 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
8789 strip = TRUE;
c152c796
AM
8790 else
8791 strip = FALSE;
8792
8793 /* If we're stripping it, and it's not a dynamic symbol, there's
57ca8ac7
L
8794 nothing else to do unless it is a forced local symbol or a
8795 STT_GNU_IFUNC symbol. */
c152c796
AM
8796 if (strip
8797 && h->dynindx == -1
57ca8ac7 8798 && h->type != STT_GNU_IFUNC
f5385ebf 8799 && !h->forced_local)
c152c796
AM
8800 return TRUE;
8801
8802 sym.st_value = 0;
8803 sym.st_size = h->size;
8804 sym.st_other = h->other;
f5385ebf 8805 if (h->forced_local)
935bd1e0
L
8806 {
8807 sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
8808 /* Turn off visibility on local symbol. */
8809 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
8810 }
3e7a7d11
NC
8811 else if (h->unique_global)
8812 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type);
c152c796
AM
8813 else if (h->root.type == bfd_link_hash_undefweak
8814 || h->root.type == bfd_link_hash_defweak)
8815 sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
8816 else
8817 sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
35fc36a8 8818 sym.st_target_internal = h->target_internal;
c152c796
AM
8819
8820 switch (h->root.type)
8821 {
8822 default:
8823 case bfd_link_hash_new:
8824 case bfd_link_hash_warning:
8825 abort ();
8826 return FALSE;
8827
8828 case bfd_link_hash_undefined:
8829 case bfd_link_hash_undefweak:
8830 input_sec = bfd_und_section_ptr;
8831 sym.st_shndx = SHN_UNDEF;
8832 break;
8833
8834 case bfd_link_hash_defined:
8835 case bfd_link_hash_defweak:
8836 {
8837 input_sec = h->root.u.def.section;
8838 if (input_sec->output_section != NULL)
8839 {
ffbc01cc
AM
8840 if (eoinfo->localsyms && flinfo->filesym_count == 1)
8841 {
8842 bfd_boolean second_pass_sym
8843 = (input_sec->owner == flinfo->output_bfd
8844 || input_sec->owner == NULL
8845 || (input_sec->flags & SEC_LINKER_CREATED) != 0
8846 || (input_sec->owner->flags & BFD_LINKER_CREATED) != 0);
8847
8848 eoinfo->need_second_pass |= second_pass_sym;
8849 if (eoinfo->second_pass != second_pass_sym)
8850 return TRUE;
8851 }
8852
c152c796 8853 sym.st_shndx =
8b127cbc 8854 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
c152c796
AM
8855 input_sec->output_section);
8856 if (sym.st_shndx == SHN_BAD)
8857 {
8858 (*_bfd_error_handler)
d003868e 8859 (_("%B: could not find output section %A for input section %A"),
8b127cbc 8860 flinfo->output_bfd, input_sec->output_section, input_sec);
17d078c5 8861 bfd_set_error (bfd_error_nonrepresentable_section);
c152c796
AM
8862 eoinfo->failed = TRUE;
8863 return FALSE;
8864 }
8865
8866 /* ELF symbols in relocatable files are section relative,
8867 but in nonrelocatable files they are virtual
8868 addresses. */
8869 sym.st_value = h->root.u.def.value + input_sec->output_offset;
8b127cbc 8870 if (!flinfo->info->relocatable)
c152c796
AM
8871 {
8872 sym.st_value += input_sec->output_section->vma;
8873 if (h->type == STT_TLS)
8874 {
8b127cbc 8875 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
430a16a5
NC
8876 if (tls_sec != NULL)
8877 sym.st_value -= tls_sec->vma;
8878 else
8879 {
8880 /* The TLS section may have been garbage collected. */
8b127cbc 8881 BFD_ASSERT (flinfo->info->gc_sections
430a16a5
NC
8882 && !input_sec->gc_mark);
8883 }
c152c796
AM
8884 }
8885 }
8886 }
8887 else
8888 {
8889 BFD_ASSERT (input_sec->owner == NULL
8890 || (input_sec->owner->flags & DYNAMIC) != 0);
8891 sym.st_shndx = SHN_UNDEF;
8892 input_sec = bfd_und_section_ptr;
8893 }
8894 }
8895 break;
8896
8897 case bfd_link_hash_common:
8898 input_sec = h->root.u.c.p->section;
a4d8e49b 8899 sym.st_shndx = bed->common_section_index (input_sec);
c152c796
AM
8900 sym.st_value = 1 << h->root.u.c.p->alignment_power;
8901 break;
8902
8903 case bfd_link_hash_indirect:
8904 /* These symbols are created by symbol versioning. They point
8905 to the decorated version of the name. For example, if the
8906 symbol foo@@GNU_1.2 is the default, which should be used when
8907 foo is used with no version, then we add an indirect symbol
8908 foo which points to foo@@GNU_1.2. We ignore these symbols,
8909 since the indirected symbol is already in the hash table. */
8910 return TRUE;
8911 }
8912
8913 /* Give the processor backend a chance to tweak the symbol value,
8914 and also to finish up anything that needs to be done for this
8915 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
3aa14d16 8916 forced local syms when non-shared is due to a historical quirk.
5f35ea9c 8917 STT_GNU_IFUNC symbol must go through PLT. */
3aa14d16 8918 if ((h->type == STT_GNU_IFUNC
5f35ea9c 8919 && h->def_regular
8b127cbc 8920 && !flinfo->info->relocatable)
3aa14d16
L
8921 || ((h->dynindx != -1
8922 || h->forced_local)
8b127cbc 8923 && ((flinfo->info->shared
3aa14d16
L
8924 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8925 || h->root.type != bfd_link_hash_undefweak))
8926 || !h->forced_local)
8b127cbc 8927 && elf_hash_table (flinfo->info)->dynamic_sections_created))
c152c796
AM
8928 {
8929 if (! ((*bed->elf_backend_finish_dynamic_symbol)
8b127cbc 8930 (flinfo->output_bfd, flinfo->info, h, &sym)))
c152c796
AM
8931 {
8932 eoinfo->failed = TRUE;
8933 return FALSE;
8934 }
8935 }
8936
8937 /* If we are marking the symbol as undefined, and there are no
8938 non-weak references to this symbol from a regular object, then
8939 mark the symbol as weak undefined; if there are non-weak
8940 references, mark the symbol as strong. We can't do this earlier,
8941 because it might not be marked as undefined until the
8942 finish_dynamic_symbol routine gets through with it. */
8943 if (sym.st_shndx == SHN_UNDEF
f5385ebf 8944 && h->ref_regular
c152c796
AM
8945 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
8946 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
8947 {
8948 int bindtype;
2955ec4c
L
8949 unsigned int type = ELF_ST_TYPE (sym.st_info);
8950
8951 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
8952 if (type == STT_GNU_IFUNC)
8953 type = STT_FUNC;
c152c796 8954
f5385ebf 8955 if (h->ref_regular_nonweak)
c152c796
AM
8956 bindtype = STB_GLOBAL;
8957 else
8958 bindtype = STB_WEAK;
2955ec4c 8959 sym.st_info = ELF_ST_INFO (bindtype, type);
c152c796
AM
8960 }
8961
bda987c2
CD
8962 /* If this is a symbol defined in a dynamic library, don't use the
8963 symbol size from the dynamic library. Relinking an executable
8964 against a new library may introduce gratuitous changes in the
8965 executable's symbols if we keep the size. */
8966 if (sym.st_shndx == SHN_UNDEF
8967 && !h->def_regular
8968 && h->def_dynamic)
8969 sym.st_size = 0;
8970
c152c796
AM
8971 /* If a non-weak symbol with non-default visibility is not defined
8972 locally, it is a fatal error. */
8b127cbc 8973 if (!flinfo->info->relocatable
c152c796
AM
8974 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
8975 && ELF_ST_BIND (sym.st_info) != STB_WEAK
8976 && h->root.type == bfd_link_hash_undefined
f5385ebf 8977 && !h->def_regular)
c152c796 8978 {
17d078c5
AM
8979 const char *msg;
8980
8981 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
8982 msg = _("%B: protected symbol `%s' isn't defined");
8983 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
8984 msg = _("%B: internal symbol `%s' isn't defined");
8985 else
8986 msg = _("%B: hidden symbol `%s' isn't defined");
8b127cbc 8987 (*_bfd_error_handler) (msg, flinfo->output_bfd, h->root.root.string);
17d078c5 8988 bfd_set_error (bfd_error_bad_value);
c152c796
AM
8989 eoinfo->failed = TRUE;
8990 return FALSE;
8991 }
8992
8993 /* If this symbol should be put in the .dynsym section, then put it
8994 there now. We already know the symbol index. We also fill in
8995 the entry in the .hash section. */
8b127cbc 8996 if (flinfo->dynsym_sec != NULL
202e2356 8997 && h->dynindx != -1
8b127cbc 8998 && elf_hash_table (flinfo->info)->dynamic_sections_created)
c152c796 8999 {
c152c796
AM
9000 bfd_byte *esym;
9001
90c984fc
L
9002 /* Since there is no version information in the dynamic string,
9003 if there is no version info in symbol version section, we will
9004 have a run-time problem. */
9005 if (h->verinfo.verdef == NULL)
9006 {
9007 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
9008
9009 if (p && p [1] != '\0')
9010 {
9011 (*_bfd_error_handler)
9012 (_("%B: No symbol version section for versioned symbol `%s'"),
9013 flinfo->output_bfd, h->root.root.string);
9014 eoinfo->failed = TRUE;
9015 return FALSE;
9016 }
9017 }
9018
c152c796 9019 sym.st_name = h->dynstr_index;
8b127cbc
AM
9020 esym = flinfo->dynsym_sec->contents + h->dynindx * bed->s->sizeof_sym;
9021 if (!check_dynsym (flinfo->output_bfd, &sym))
c0d5a53d
L
9022 {
9023 eoinfo->failed = TRUE;
9024 return FALSE;
9025 }
8b127cbc 9026 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
c152c796 9027
8b127cbc 9028 if (flinfo->hash_sec != NULL)
fdc90cb4
JJ
9029 {
9030 size_t hash_entry_size;
9031 bfd_byte *bucketpos;
9032 bfd_vma chain;
41198d0c
L
9033 size_t bucketcount;
9034 size_t bucket;
9035
8b127cbc 9036 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
41198d0c 9037 bucket = h->u.elf_hash_value % bucketcount;
fdc90cb4
JJ
9038
9039 hash_entry_size
8b127cbc
AM
9040 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
9041 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4 9042 + (bucket + 2) * hash_entry_size);
8b127cbc
AM
9043 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
9044 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
9045 bucketpos);
9046 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
9047 ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4
JJ
9048 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
9049 }
c152c796 9050
8b127cbc 9051 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
c152c796
AM
9052 {
9053 Elf_Internal_Versym iversym;
9054 Elf_External_Versym *eversym;
9055
f5385ebf 9056 if (!h->def_regular)
c152c796
AM
9057 {
9058 if (h->verinfo.verdef == NULL)
9059 iversym.vs_vers = 0;
9060 else
9061 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
9062 }
9063 else
9064 {
9065 if (h->verinfo.vertree == NULL)
9066 iversym.vs_vers = 1;
9067 else
9068 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
8b127cbc 9069 if (flinfo->info->create_default_symver)
3e3b46e5 9070 iversym.vs_vers++;
c152c796
AM
9071 }
9072
f5385ebf 9073 if (h->hidden)
c152c796
AM
9074 iversym.vs_vers |= VERSYM_HIDDEN;
9075
8b127cbc 9076 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
c152c796 9077 eversym += h->dynindx;
8b127cbc 9078 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
c152c796
AM
9079 }
9080 }
9081
9082 /* If we're stripping it, then it was just a dynamic symbol, and
9083 there's nothing else to do. */
9084 if (strip || (input_sec->flags & SEC_EXCLUDE) != 0)
9085 return TRUE;
9086
8b127cbc
AM
9087 indx = bfd_get_symcount (flinfo->output_bfd);
9088 ret = elf_link_output_sym (flinfo, h->root.root.string, &sym, input_sec, h);
6e0b88f1 9089 if (ret == 0)
c152c796
AM
9090 {
9091 eoinfo->failed = TRUE;
9092 return FALSE;
9093 }
6e0b88f1
AM
9094 else if (ret == 1)
9095 h->indx = indx;
9096 else if (h->indx == -2)
9097 abort();
c152c796
AM
9098
9099 return TRUE;
9100}
9101
cdd3575c
AM
9102/* Return TRUE if special handling is done for relocs in SEC against
9103 symbols defined in discarded sections. */
9104
c152c796
AM
9105static bfd_boolean
9106elf_section_ignore_discarded_relocs (asection *sec)
9107{
9108 const struct elf_backend_data *bed;
9109
cdd3575c
AM
9110 switch (sec->sec_info_type)
9111 {
dbaa2011
AM
9112 case SEC_INFO_TYPE_STABS:
9113 case SEC_INFO_TYPE_EH_FRAME:
cdd3575c
AM
9114 return TRUE;
9115 default:
9116 break;
9117 }
c152c796
AM
9118
9119 bed = get_elf_backend_data (sec->owner);
9120 if (bed->elf_backend_ignore_discarded_relocs != NULL
9121 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
9122 return TRUE;
9123
9124 return FALSE;
9125}
9126
9e66c942
AM
9127/* Return a mask saying how ld should treat relocations in SEC against
9128 symbols defined in discarded sections. If this function returns
9129 COMPLAIN set, ld will issue a warning message. If this function
9130 returns PRETEND set, and the discarded section was link-once and the
9131 same size as the kept link-once section, ld will pretend that the
9132 symbol was actually defined in the kept section. Otherwise ld will
9133 zero the reloc (at least that is the intent, but some cooperation by
9134 the target dependent code is needed, particularly for REL targets). */
9135
8a696751
AM
9136unsigned int
9137_bfd_elf_default_action_discarded (asection *sec)
cdd3575c 9138{
9e66c942 9139 if (sec->flags & SEC_DEBUGGING)
69d54b1b 9140 return PRETEND;
cdd3575c
AM
9141
9142 if (strcmp (".eh_frame", sec->name) == 0)
9e66c942 9143 return 0;
cdd3575c
AM
9144
9145 if (strcmp (".gcc_except_table", sec->name) == 0)
9e66c942 9146 return 0;
cdd3575c 9147
9e66c942 9148 return COMPLAIN | PRETEND;
cdd3575c
AM
9149}
9150
3d7f7666
L
9151/* Find a match between a section and a member of a section group. */
9152
9153static asection *
c0f00686
L
9154match_group_member (asection *sec, asection *group,
9155 struct bfd_link_info *info)
3d7f7666
L
9156{
9157 asection *first = elf_next_in_group (group);
9158 asection *s = first;
9159
9160 while (s != NULL)
9161 {
c0f00686 9162 if (bfd_elf_match_symbols_in_sections (s, sec, info))
3d7f7666
L
9163 return s;
9164
83180ade 9165 s = elf_next_in_group (s);
3d7f7666
L
9166 if (s == first)
9167 break;
9168 }
9169
9170 return NULL;
9171}
9172
01b3c8ab 9173/* Check if the kept section of a discarded section SEC can be used
c2370991
AM
9174 to replace it. Return the replacement if it is OK. Otherwise return
9175 NULL. */
01b3c8ab
L
9176
9177asection *
c0f00686 9178_bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
01b3c8ab
L
9179{
9180 asection *kept;
9181
9182 kept = sec->kept_section;
9183 if (kept != NULL)
9184 {
c2370991 9185 if ((kept->flags & SEC_GROUP) != 0)
c0f00686 9186 kept = match_group_member (sec, kept, info);
1dd2625f
BW
9187 if (kept != NULL
9188 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
9189 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
01b3c8ab 9190 kept = NULL;
c2370991 9191 sec->kept_section = kept;
01b3c8ab
L
9192 }
9193 return kept;
9194}
9195
c152c796
AM
9196/* Link an input file into the linker output file. This function
9197 handles all the sections and relocations of the input file at once.
9198 This is so that we only have to read the local symbols once, and
9199 don't have to keep them in memory. */
9200
9201static bfd_boolean
8b127cbc 9202elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
c152c796 9203{
ece5ef60 9204 int (*relocate_section)
c152c796
AM
9205 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
9206 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
9207 bfd *output_bfd;
9208 Elf_Internal_Shdr *symtab_hdr;
9209 size_t locsymcount;
9210 size_t extsymoff;
9211 Elf_Internal_Sym *isymbuf;
9212 Elf_Internal_Sym *isym;
9213 Elf_Internal_Sym *isymend;
9214 long *pindex;
9215 asection **ppsection;
9216 asection *o;
9217 const struct elf_backend_data *bed;
c152c796 9218 struct elf_link_hash_entry **sym_hashes;
310fd250
L
9219 bfd_size_type address_size;
9220 bfd_vma r_type_mask;
9221 int r_sym_shift;
ffbc01cc 9222 bfd_boolean have_file_sym = FALSE;
c152c796 9223
8b127cbc 9224 output_bfd = flinfo->output_bfd;
c152c796
AM
9225 bed = get_elf_backend_data (output_bfd);
9226 relocate_section = bed->elf_backend_relocate_section;
9227
9228 /* If this is a dynamic object, we don't want to do anything here:
9229 we don't want the local symbols, and we don't want the section
9230 contents. */
9231 if ((input_bfd->flags & DYNAMIC) != 0)
9232 return TRUE;
9233
c152c796
AM
9234 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9235 if (elf_bad_symtab (input_bfd))
9236 {
9237 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
9238 extsymoff = 0;
9239 }
9240 else
9241 {
9242 locsymcount = symtab_hdr->sh_info;
9243 extsymoff = symtab_hdr->sh_info;
9244 }
9245
9246 /* Read the local symbols. */
9247 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
9248 if (isymbuf == NULL && locsymcount != 0)
9249 {
9250 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
8b127cbc
AM
9251 flinfo->internal_syms,
9252 flinfo->external_syms,
9253 flinfo->locsym_shndx);
c152c796
AM
9254 if (isymbuf == NULL)
9255 return FALSE;
9256 }
9257
9258 /* Find local symbol sections and adjust values of symbols in
9259 SEC_MERGE sections. Write out those local symbols we know are
9260 going into the output file. */
9261 isymend = isymbuf + locsymcount;
8b127cbc 9262 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
c152c796
AM
9263 isym < isymend;
9264 isym++, pindex++, ppsection++)
9265 {
9266 asection *isec;
9267 const char *name;
9268 Elf_Internal_Sym osym;
6e0b88f1
AM
9269 long indx;
9270 int ret;
c152c796
AM
9271
9272 *pindex = -1;
9273
9274 if (elf_bad_symtab (input_bfd))
9275 {
9276 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
9277 {
9278 *ppsection = NULL;
9279 continue;
9280 }
9281 }
9282
9283 if (isym->st_shndx == SHN_UNDEF)
9284 isec = bfd_und_section_ptr;
c152c796
AM
9285 else if (isym->st_shndx == SHN_ABS)
9286 isec = bfd_abs_section_ptr;
9287 else if (isym->st_shndx == SHN_COMMON)
9288 isec = bfd_com_section_ptr;
9289 else
9290 {
cb33740c
AM
9291 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
9292 if (isec == NULL)
9293 {
9294 /* Don't attempt to output symbols with st_shnx in the
9295 reserved range other than SHN_ABS and SHN_COMMON. */
9296 *ppsection = NULL;
9297 continue;
9298 }
dbaa2011 9299 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
cb33740c
AM
9300 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
9301 isym->st_value =
9302 _bfd_merged_section_offset (output_bfd, &isec,
9303 elf_section_data (isec)->sec_info,
9304 isym->st_value);
c152c796
AM
9305 }
9306
9307 *ppsection = isec;
9308
9309 /* Don't output the first, undefined, symbol. */
8b127cbc 9310 if (ppsection == flinfo->sections)
c152c796
AM
9311 continue;
9312
9313 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
9314 {
9315 /* We never output section symbols. Instead, we use the
9316 section symbol of the corresponding section in the output
9317 file. */
9318 continue;
9319 }
9320
9321 /* If we are stripping all symbols, we don't want to output this
9322 one. */
8b127cbc 9323 if (flinfo->info->strip == strip_all)
c152c796
AM
9324 continue;
9325
9326 /* If we are discarding all local symbols, we don't want to
9327 output this one. If we are generating a relocatable output
9328 file, then some of the local symbols may be required by
9329 relocs; we output them below as we discover that they are
9330 needed. */
8b127cbc 9331 if (flinfo->info->discard == discard_all)
c152c796
AM
9332 continue;
9333
9334 /* If this symbol is defined in a section which we are
f02571c5
AM
9335 discarding, we don't need to keep it. */
9336 if (isym->st_shndx != SHN_UNDEF
4fbb74a6
AM
9337 && isym->st_shndx < SHN_LORESERVE
9338 && bfd_section_removed_from_list (output_bfd,
9339 isec->output_section))
e75a280b
L
9340 continue;
9341
c152c796
AM
9342 /* Get the name of the symbol. */
9343 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
9344 isym->st_name);
9345 if (name == NULL)
9346 return FALSE;
9347
9348 /* See if we are discarding symbols with this name. */
8b127cbc
AM
9349 if ((flinfo->info->strip == strip_some
9350 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
c152c796 9351 == NULL))
8b127cbc
AM
9352 || (((flinfo->info->discard == discard_sec_merge
9353 && (isec->flags & SEC_MERGE) && !flinfo->info->relocatable)
9354 || flinfo->info->discard == discard_l)
c152c796
AM
9355 && bfd_is_local_label_name (input_bfd, name)))
9356 continue;
9357
ffbc01cc
AM
9358 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
9359 {
9360 have_file_sym = TRUE;
9361 flinfo->filesym_count += 1;
9362 }
9363 if (!have_file_sym)
9364 {
9365 /* In the absence of debug info, bfd_find_nearest_line uses
9366 FILE symbols to determine the source file for local
9367 function symbols. Provide a FILE symbol here if input
9368 files lack such, so that their symbols won't be
9369 associated with a previous input file. It's not the
9370 source file, but the best we can do. */
9371 have_file_sym = TRUE;
9372 flinfo->filesym_count += 1;
9373 memset (&osym, 0, sizeof (osym));
9374 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9375 osym.st_shndx = SHN_ABS;
9376 if (!elf_link_output_sym (flinfo, input_bfd->filename, &osym,
9377 bfd_abs_section_ptr, NULL))
9378 return FALSE;
9379 }
9380
c152c796
AM
9381 osym = *isym;
9382
9383 /* Adjust the section index for the output file. */
9384 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9385 isec->output_section);
9386 if (osym.st_shndx == SHN_BAD)
9387 return FALSE;
9388
c152c796
AM
9389 /* ELF symbols in relocatable files are section relative, but
9390 in executable files they are virtual addresses. Note that
9391 this code assumes that all ELF sections have an associated
9392 BFD section with a reasonable value for output_offset; below
9393 we assume that they also have a reasonable value for
9394 output_section. Any special sections must be set up to meet
9395 these requirements. */
9396 osym.st_value += isec->output_offset;
8b127cbc 9397 if (!flinfo->info->relocatable)
c152c796
AM
9398 {
9399 osym.st_value += isec->output_section->vma;
9400 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
9401 {
9402 /* STT_TLS symbols are relative to PT_TLS segment base. */
8b127cbc
AM
9403 BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
9404 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
c152c796
AM
9405 }
9406 }
9407
6e0b88f1 9408 indx = bfd_get_symcount (output_bfd);
8b127cbc 9409 ret = elf_link_output_sym (flinfo, name, &osym, isec, NULL);
6e0b88f1 9410 if (ret == 0)
c152c796 9411 return FALSE;
6e0b88f1
AM
9412 else if (ret == 1)
9413 *pindex = indx;
c152c796
AM
9414 }
9415
310fd250
L
9416 if (bed->s->arch_size == 32)
9417 {
9418 r_type_mask = 0xff;
9419 r_sym_shift = 8;
9420 address_size = 4;
9421 }
9422 else
9423 {
9424 r_type_mask = 0xffffffff;
9425 r_sym_shift = 32;
9426 address_size = 8;
9427 }
9428
c152c796
AM
9429 /* Relocate the contents of each section. */
9430 sym_hashes = elf_sym_hashes (input_bfd);
9431 for (o = input_bfd->sections; o != NULL; o = o->next)
9432 {
9433 bfd_byte *contents;
9434
9435 if (! o->linker_mark)
9436 {
9437 /* This section was omitted from the link. */
9438 continue;
9439 }
9440
8b127cbc 9441 if (flinfo->info->relocatable
bcacc0f5
AM
9442 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
9443 {
9444 /* Deal with the group signature symbol. */
9445 struct bfd_elf_section_data *sec_data = elf_section_data (o);
9446 unsigned long symndx = sec_data->this_hdr.sh_info;
9447 asection *osec = o->output_section;
9448
9449 if (symndx >= locsymcount
9450 || (elf_bad_symtab (input_bfd)
8b127cbc 9451 && flinfo->sections[symndx] == NULL))
bcacc0f5
AM
9452 {
9453 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
9454 while (h->root.type == bfd_link_hash_indirect
9455 || h->root.type == bfd_link_hash_warning)
9456 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9457 /* Arrange for symbol to be output. */
9458 h->indx = -2;
9459 elf_section_data (osec)->this_hdr.sh_info = -2;
9460 }
9461 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
9462 {
9463 /* We'll use the output section target_index. */
8b127cbc 9464 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5
AM
9465 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
9466 }
9467 else
9468 {
8b127cbc 9469 if (flinfo->indices[symndx] == -1)
bcacc0f5
AM
9470 {
9471 /* Otherwise output the local symbol now. */
9472 Elf_Internal_Sym sym = isymbuf[symndx];
8b127cbc 9473 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5 9474 const char *name;
6e0b88f1
AM
9475 long indx;
9476 int ret;
bcacc0f5
AM
9477
9478 name = bfd_elf_string_from_elf_section (input_bfd,
9479 symtab_hdr->sh_link,
9480 sym.st_name);
9481 if (name == NULL)
9482 return FALSE;
9483
9484 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9485 sec);
9486 if (sym.st_shndx == SHN_BAD)
9487 return FALSE;
9488
9489 sym.st_value += o->output_offset;
9490
6e0b88f1 9491 indx = bfd_get_symcount (output_bfd);
8b127cbc 9492 ret = elf_link_output_sym (flinfo, name, &sym, o, NULL);
6e0b88f1 9493 if (ret == 0)
bcacc0f5 9494 return FALSE;
6e0b88f1 9495 else if (ret == 1)
8b127cbc 9496 flinfo->indices[symndx] = indx;
6e0b88f1
AM
9497 else
9498 abort ();
bcacc0f5
AM
9499 }
9500 elf_section_data (osec)->this_hdr.sh_info
8b127cbc 9501 = flinfo->indices[symndx];
bcacc0f5
AM
9502 }
9503 }
9504
c152c796 9505 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 9506 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
c152c796
AM
9507 continue;
9508
9509 if ((o->flags & SEC_LINKER_CREATED) != 0)
9510 {
9511 /* Section was created by _bfd_elf_link_create_dynamic_sections
9512 or somesuch. */
9513 continue;
9514 }
9515
9516 /* Get the contents of the section. They have been cached by a
9517 relaxation routine. Note that o is a section in an input
9518 file, so the contents field will not have been set by any of
9519 the routines which work on output files. */
9520 if (elf_section_data (o)->this_hdr.contents != NULL)
9521 contents = elf_section_data (o)->this_hdr.contents;
9522 else
9523 {
8b127cbc 9524 contents = flinfo->contents;
4a114e3e 9525 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
c152c796
AM
9526 return FALSE;
9527 }
9528
9529 if ((o->flags & SEC_RELOC) != 0)
9530 {
9531 Elf_Internal_Rela *internal_relocs;
0f02bbd9 9532 Elf_Internal_Rela *rel, *relend;
0f02bbd9 9533 int action_discarded;
ece5ef60 9534 int ret;
c152c796
AM
9535
9536 /* Get the swapped relocs. */
9537 internal_relocs
8b127cbc
AM
9538 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
9539 flinfo->internal_relocs, FALSE);
c152c796
AM
9540 if (internal_relocs == NULL
9541 && o->reloc_count > 0)
9542 return FALSE;
9543
310fd250
L
9544 /* We need to reverse-copy input .ctors/.dtors sections if
9545 they are placed in .init_array/.finit_array for output. */
9546 if (o->size > address_size
9547 && ((strncmp (o->name, ".ctors", 6) == 0
9548 && strcmp (o->output_section->name,
9549 ".init_array") == 0)
9550 || (strncmp (o->name, ".dtors", 6) == 0
9551 && strcmp (o->output_section->name,
9552 ".fini_array") == 0))
9553 && (o->name[6] == 0 || o->name[6] == '.'))
c152c796 9554 {
310fd250
L
9555 if (o->size != o->reloc_count * address_size)
9556 {
9557 (*_bfd_error_handler)
9558 (_("error: %B: size of section %A is not "
9559 "multiple of address size"),
9560 input_bfd, o);
9561 bfd_set_error (bfd_error_on_input);
9562 return FALSE;
9563 }
9564 o->flags |= SEC_ELF_REVERSE_COPY;
c152c796
AM
9565 }
9566
0f02bbd9 9567 action_discarded = -1;
c152c796 9568 if (!elf_section_ignore_discarded_relocs (o))
0f02bbd9
AM
9569 action_discarded = (*bed->action_discarded) (o);
9570
9571 /* Run through the relocs evaluating complex reloc symbols and
9572 looking for relocs against symbols from discarded sections
9573 or section symbols from removed link-once sections.
9574 Complain about relocs against discarded sections. Zero
9575 relocs against removed link-once sections. */
9576
9577 rel = internal_relocs;
9578 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
9579 for ( ; rel < relend; rel++)
c152c796 9580 {
0f02bbd9
AM
9581 unsigned long r_symndx = rel->r_info >> r_sym_shift;
9582 unsigned int s_type;
9583 asection **ps, *sec;
9584 struct elf_link_hash_entry *h = NULL;
9585 const char *sym_name;
c152c796 9586
0f02bbd9
AM
9587 if (r_symndx == STN_UNDEF)
9588 continue;
c152c796 9589
0f02bbd9
AM
9590 if (r_symndx >= locsymcount
9591 || (elf_bad_symtab (input_bfd)
8b127cbc 9592 && flinfo->sections[r_symndx] == NULL))
0f02bbd9
AM
9593 {
9594 h = sym_hashes[r_symndx - extsymoff];
ee75fd95 9595
0f02bbd9
AM
9596 /* Badly formatted input files can contain relocs that
9597 reference non-existant symbols. Check here so that
9598 we do not seg fault. */
9599 if (h == NULL)
c152c796 9600 {
0f02bbd9 9601 char buffer [32];
dce669a1 9602
0f02bbd9
AM
9603 sprintf_vma (buffer, rel->r_info);
9604 (*_bfd_error_handler)
9605 (_("error: %B contains a reloc (0x%s) for section %A "
9606 "that references a non-existent global symbol"),
9607 input_bfd, o, buffer);
9608 bfd_set_error (bfd_error_bad_value);
9609 return FALSE;
9610 }
3b36f7e6 9611
0f02bbd9
AM
9612 while (h->root.type == bfd_link_hash_indirect
9613 || h->root.type == bfd_link_hash_warning)
9614 h = (struct elf_link_hash_entry *) h->root.u.i.link;
c152c796 9615
0f02bbd9 9616 s_type = h->type;
cdd3575c 9617
0f02bbd9
AM
9618 ps = NULL;
9619 if (h->root.type == bfd_link_hash_defined
9620 || h->root.type == bfd_link_hash_defweak)
9621 ps = &h->root.u.def.section;
9622
9623 sym_name = h->root.root.string;
9624 }
9625 else
9626 {
9627 Elf_Internal_Sym *sym = isymbuf + r_symndx;
9628
9629 s_type = ELF_ST_TYPE (sym->st_info);
8b127cbc 9630 ps = &flinfo->sections[r_symndx];
0f02bbd9
AM
9631 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
9632 sym, *ps);
9633 }
c152c796 9634
c301e700 9635 if ((s_type == STT_RELC || s_type == STT_SRELC)
8b127cbc 9636 && !flinfo->info->relocatable)
0f02bbd9
AM
9637 {
9638 bfd_vma val;
9639 bfd_vma dot = (rel->r_offset
9640 + o->output_offset + o->output_section->vma);
9641#ifdef DEBUG
9642 printf ("Encountered a complex symbol!");
9643 printf (" (input_bfd %s, section %s, reloc %ld\n",
9ccb8af9
AM
9644 input_bfd->filename, o->name,
9645 (long) (rel - internal_relocs));
0f02bbd9
AM
9646 printf (" symbol: idx %8.8lx, name %s\n",
9647 r_symndx, sym_name);
9648 printf (" reloc : info %8.8lx, addr %8.8lx\n",
9649 (unsigned long) rel->r_info,
9650 (unsigned long) rel->r_offset);
9651#endif
8b127cbc 9652 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
0f02bbd9
AM
9653 isymbuf, locsymcount, s_type == STT_SRELC))
9654 return FALSE;
9655
9656 /* Symbol evaluated OK. Update to absolute value. */
9657 set_symbol_value (input_bfd, isymbuf, locsymcount,
9658 r_symndx, val);
9659 continue;
9660 }
9661
9662 if (action_discarded != -1 && ps != NULL)
9663 {
cdd3575c
AM
9664 /* Complain if the definition comes from a
9665 discarded section. */
dbaa2011 9666 if ((sec = *ps) != NULL && discarded_section (sec))
cdd3575c 9667 {
cf35638d 9668 BFD_ASSERT (r_symndx != STN_UNDEF);
0f02bbd9 9669 if (action_discarded & COMPLAIN)
8b127cbc 9670 (*flinfo->info->callbacks->einfo)
e1fffbe6 9671 (_("%X`%s' referenced in section `%A' of %B: "
58ac56d0 9672 "defined in discarded section `%A' of %B\n"),
e1fffbe6 9673 sym_name, o, input_bfd, sec, sec->owner);
cdd3575c 9674
87e5235d 9675 /* Try to do the best we can to support buggy old
e0ae6d6f 9676 versions of gcc. Pretend that the symbol is
87e5235d
AM
9677 really defined in the kept linkonce section.
9678 FIXME: This is quite broken. Modifying the
9679 symbol here means we will be changing all later
e0ae6d6f 9680 uses of the symbol, not just in this section. */
0f02bbd9 9681 if (action_discarded & PRETEND)
87e5235d 9682 {
01b3c8ab
L
9683 asection *kept;
9684
c0f00686 9685 kept = _bfd_elf_check_kept_section (sec,
8b127cbc 9686 flinfo->info);
01b3c8ab 9687 if (kept != NULL)
87e5235d
AM
9688 {
9689 *ps = kept;
9690 continue;
9691 }
9692 }
c152c796
AM
9693 }
9694 }
9695 }
9696
9697 /* Relocate the section by invoking a back end routine.
9698
9699 The back end routine is responsible for adjusting the
9700 section contents as necessary, and (if using Rela relocs
9701 and generating a relocatable output file) adjusting the
9702 reloc addend as necessary.
9703
9704 The back end routine does not have to worry about setting
9705 the reloc address or the reloc symbol index.
9706
9707 The back end routine is given a pointer to the swapped in
9708 internal symbols, and can access the hash table entries
9709 for the external symbols via elf_sym_hashes (input_bfd).
9710
9711 When generating relocatable output, the back end routine
9712 must handle STB_LOCAL/STT_SECTION symbols specially. The
9713 output symbol is going to be a section symbol
9714 corresponding to the output section, which will require
9715 the addend to be adjusted. */
9716
8b127cbc 9717 ret = (*relocate_section) (output_bfd, flinfo->info,
c152c796
AM
9718 input_bfd, o, contents,
9719 internal_relocs,
9720 isymbuf,
8b127cbc 9721 flinfo->sections);
ece5ef60 9722 if (!ret)
c152c796
AM
9723 return FALSE;
9724
ece5ef60 9725 if (ret == 2
8b127cbc
AM
9726 || flinfo->info->relocatable
9727 || flinfo->info->emitrelocations)
c152c796
AM
9728 {
9729 Elf_Internal_Rela *irela;
d4730f92 9730 Elf_Internal_Rela *irelaend, *irelamid;
c152c796
AM
9731 bfd_vma last_offset;
9732 struct elf_link_hash_entry **rel_hash;
d4730f92
BS
9733 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
9734 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
c152c796 9735 unsigned int next_erel;
c152c796 9736 bfd_boolean rela_normal;
d4730f92 9737 struct bfd_elf_section_data *esdi, *esdo;
c152c796 9738
d4730f92
BS
9739 esdi = elf_section_data (o);
9740 esdo = elf_section_data (o->output_section);
9741 rela_normal = FALSE;
c152c796
AM
9742
9743 /* Adjust the reloc addresses and symbol indices. */
9744
9745 irela = internal_relocs;
9746 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
d4730f92
BS
9747 rel_hash = esdo->rel.hashes + esdo->rel.count;
9748 /* We start processing the REL relocs, if any. When we reach
9749 IRELAMID in the loop, we switch to the RELA relocs. */
9750 irelamid = irela;
9751 if (esdi->rel.hdr != NULL)
9752 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
9753 * bed->s->int_rels_per_ext_rel);
eac338cf 9754 rel_hash_list = rel_hash;
d4730f92 9755 rela_hash_list = NULL;
c152c796 9756 last_offset = o->output_offset;
8b127cbc 9757 if (!flinfo->info->relocatable)
c152c796
AM
9758 last_offset += o->output_section->vma;
9759 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
9760 {
9761 unsigned long r_symndx;
9762 asection *sec;
9763 Elf_Internal_Sym sym;
9764
9765 if (next_erel == bed->s->int_rels_per_ext_rel)
9766 {
9767 rel_hash++;
9768 next_erel = 0;
9769 }
9770
d4730f92
BS
9771 if (irela == irelamid)
9772 {
9773 rel_hash = esdo->rela.hashes + esdo->rela.count;
9774 rela_hash_list = rel_hash;
9775 rela_normal = bed->rela_normal;
9776 }
9777
c152c796 9778 irela->r_offset = _bfd_elf_section_offset (output_bfd,
8b127cbc 9779 flinfo->info, o,
c152c796
AM
9780 irela->r_offset);
9781 if (irela->r_offset >= (bfd_vma) -2)
9782 {
9783 /* This is a reloc for a deleted entry or somesuch.
9784 Turn it into an R_*_NONE reloc, at the same
9785 offset as the last reloc. elf_eh_frame.c and
e460dd0d 9786 bfd_elf_discard_info rely on reloc offsets
c152c796
AM
9787 being ordered. */
9788 irela->r_offset = last_offset;
9789 irela->r_info = 0;
9790 irela->r_addend = 0;
9791 continue;
9792 }
9793
9794 irela->r_offset += o->output_offset;
9795
9796 /* Relocs in an executable have to be virtual addresses. */
8b127cbc 9797 if (!flinfo->info->relocatable)
c152c796
AM
9798 irela->r_offset += o->output_section->vma;
9799
9800 last_offset = irela->r_offset;
9801
9802 r_symndx = irela->r_info >> r_sym_shift;
9803 if (r_symndx == STN_UNDEF)
9804 continue;
9805
9806 if (r_symndx >= locsymcount
9807 || (elf_bad_symtab (input_bfd)
8b127cbc 9808 && flinfo->sections[r_symndx] == NULL))
c152c796
AM
9809 {
9810 struct elf_link_hash_entry *rh;
9811 unsigned long indx;
9812
9813 /* This is a reloc against a global symbol. We
9814 have not yet output all the local symbols, so
9815 we do not know the symbol index of any global
9816 symbol. We set the rel_hash entry for this
9817 reloc to point to the global hash table entry
9818 for this symbol. The symbol index is then
ee75fd95 9819 set at the end of bfd_elf_final_link. */
c152c796
AM
9820 indx = r_symndx - extsymoff;
9821 rh = elf_sym_hashes (input_bfd)[indx];
9822 while (rh->root.type == bfd_link_hash_indirect
9823 || rh->root.type == bfd_link_hash_warning)
9824 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
9825
9826 /* Setting the index to -2 tells
9827 elf_link_output_extsym that this symbol is
9828 used by a reloc. */
9829 BFD_ASSERT (rh->indx < 0);
9830 rh->indx = -2;
9831
9832 *rel_hash = rh;
9833
9834 continue;
9835 }
9836
9837 /* This is a reloc against a local symbol. */
9838
9839 *rel_hash = NULL;
9840 sym = isymbuf[r_symndx];
8b127cbc 9841 sec = flinfo->sections[r_symndx];
c152c796
AM
9842 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
9843 {
9844 /* I suppose the backend ought to fill in the
9845 section of any STT_SECTION symbol against a
6a8d1586 9846 processor specific section. */
cf35638d 9847 r_symndx = STN_UNDEF;
6a8d1586
AM
9848 if (bfd_is_abs_section (sec))
9849 ;
c152c796
AM
9850 else if (sec == NULL || sec->owner == NULL)
9851 {
9852 bfd_set_error (bfd_error_bad_value);
9853 return FALSE;
9854 }
9855 else
9856 {
6a8d1586
AM
9857 asection *osec = sec->output_section;
9858
9859 /* If we have discarded a section, the output
9860 section will be the absolute section. In
ab96bf03
AM
9861 case of discarded SEC_MERGE sections, use
9862 the kept section. relocate_section should
9863 have already handled discarded linkonce
9864 sections. */
6a8d1586
AM
9865 if (bfd_is_abs_section (osec)
9866 && sec->kept_section != NULL
9867 && sec->kept_section->output_section != NULL)
9868 {
9869 osec = sec->kept_section->output_section;
9870 irela->r_addend -= osec->vma;
9871 }
9872
9873 if (!bfd_is_abs_section (osec))
9874 {
9875 r_symndx = osec->target_index;
cf35638d 9876 if (r_symndx == STN_UNDEF)
74541ad4 9877 {
051d833a
AM
9878 irela->r_addend += osec->vma;
9879 osec = _bfd_nearby_section (output_bfd, osec,
9880 osec->vma);
9881 irela->r_addend -= osec->vma;
9882 r_symndx = osec->target_index;
74541ad4 9883 }
6a8d1586 9884 }
c152c796
AM
9885 }
9886
9887 /* Adjust the addend according to where the
9888 section winds up in the output section. */
9889 if (rela_normal)
9890 irela->r_addend += sec->output_offset;
9891 }
9892 else
9893 {
8b127cbc 9894 if (flinfo->indices[r_symndx] == -1)
c152c796
AM
9895 {
9896 unsigned long shlink;
9897 const char *name;
9898 asection *osec;
6e0b88f1 9899 long indx;
c152c796 9900
8b127cbc 9901 if (flinfo->info->strip == strip_all)
c152c796
AM
9902 {
9903 /* You can't do ld -r -s. */
9904 bfd_set_error (bfd_error_invalid_operation);
9905 return FALSE;
9906 }
9907
9908 /* This symbol was skipped earlier, but
9909 since it is needed by a reloc, we
9910 must output it now. */
9911 shlink = symtab_hdr->sh_link;
9912 name = (bfd_elf_string_from_elf_section
9913 (input_bfd, shlink, sym.st_name));
9914 if (name == NULL)
9915 return FALSE;
9916
9917 osec = sec->output_section;
9918 sym.st_shndx =
9919 _bfd_elf_section_from_bfd_section (output_bfd,
9920 osec);
9921 if (sym.st_shndx == SHN_BAD)
9922 return FALSE;
9923
9924 sym.st_value += sec->output_offset;
8b127cbc 9925 if (!flinfo->info->relocatable)
c152c796
AM
9926 {
9927 sym.st_value += osec->vma;
9928 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
9929 {
9930 /* STT_TLS symbols are relative to PT_TLS
9931 segment base. */
8b127cbc 9932 BFD_ASSERT (elf_hash_table (flinfo->info)
c152c796 9933 ->tls_sec != NULL);
8b127cbc 9934 sym.st_value -= (elf_hash_table (flinfo->info)
c152c796
AM
9935 ->tls_sec->vma);
9936 }
9937 }
9938
6e0b88f1 9939 indx = bfd_get_symcount (output_bfd);
8b127cbc 9940 ret = elf_link_output_sym (flinfo, name, &sym, sec,
6e0b88f1
AM
9941 NULL);
9942 if (ret == 0)
c152c796 9943 return FALSE;
6e0b88f1 9944 else if (ret == 1)
8b127cbc 9945 flinfo->indices[r_symndx] = indx;
6e0b88f1
AM
9946 else
9947 abort ();
c152c796
AM
9948 }
9949
8b127cbc 9950 r_symndx = flinfo->indices[r_symndx];
c152c796
AM
9951 }
9952
9953 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
9954 | (irela->r_info & r_type_mask));
9955 }
9956
9957 /* Swap out the relocs. */
d4730f92
BS
9958 input_rel_hdr = esdi->rel.hdr;
9959 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
c152c796 9960 {
d4730f92
BS
9961 if (!bed->elf_backend_emit_relocs (output_bfd, o,
9962 input_rel_hdr,
9963 internal_relocs,
9964 rel_hash_list))
9965 return FALSE;
c152c796
AM
9966 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
9967 * bed->s->int_rels_per_ext_rel);
eac338cf 9968 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
d4730f92
BS
9969 }
9970
9971 input_rela_hdr = esdi->rela.hdr;
9972 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
9973 {
eac338cf 9974 if (!bed->elf_backend_emit_relocs (output_bfd, o,
d4730f92 9975 input_rela_hdr,
eac338cf 9976 internal_relocs,
d4730f92 9977 rela_hash_list))
c152c796
AM
9978 return FALSE;
9979 }
9980 }
9981 }
9982
9983 /* Write out the modified section contents. */
9984 if (bed->elf_backend_write_section
8b127cbc 9985 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
c7b8f16e 9986 contents))
c152c796
AM
9987 {
9988 /* Section written out. */
9989 }
9990 else switch (o->sec_info_type)
9991 {
dbaa2011 9992 case SEC_INFO_TYPE_STABS:
c152c796
AM
9993 if (! (_bfd_write_section_stabs
9994 (output_bfd,
8b127cbc 9995 &elf_hash_table (flinfo->info)->stab_info,
c152c796
AM
9996 o, &elf_section_data (o)->sec_info, contents)))
9997 return FALSE;
9998 break;
dbaa2011 9999 case SEC_INFO_TYPE_MERGE:
c152c796
AM
10000 if (! _bfd_write_merged_section (output_bfd, o,
10001 elf_section_data (o)->sec_info))
10002 return FALSE;
10003 break;
dbaa2011 10004 case SEC_INFO_TYPE_EH_FRAME:
c152c796 10005 {
8b127cbc 10006 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
c152c796
AM
10007 o, contents))
10008 return FALSE;
10009 }
10010 break;
10011 default:
10012 {
5dabe785 10013 /* FIXME: octets_per_byte. */
310fd250
L
10014 if (! (o->flags & SEC_EXCLUDE))
10015 {
10016 file_ptr offset = (file_ptr) o->output_offset;
10017 bfd_size_type todo = o->size;
10018 if ((o->flags & SEC_ELF_REVERSE_COPY))
10019 {
10020 /* Reverse-copy input section to output. */
10021 do
10022 {
10023 todo -= address_size;
10024 if (! bfd_set_section_contents (output_bfd,
10025 o->output_section,
10026 contents + todo,
10027 offset,
10028 address_size))
10029 return FALSE;
10030 if (todo == 0)
10031 break;
10032 offset += address_size;
10033 }
10034 while (1);
10035 }
10036 else if (! bfd_set_section_contents (output_bfd,
10037 o->output_section,
10038 contents,
10039 offset, todo))
10040 return FALSE;
10041 }
c152c796
AM
10042 }
10043 break;
10044 }
10045 }
10046
10047 return TRUE;
10048}
10049
10050/* Generate a reloc when linking an ELF file. This is a reloc
3a800eb9 10051 requested by the linker, and does not come from any input file. This
c152c796
AM
10052 is used to build constructor and destructor tables when linking
10053 with -Ur. */
10054
10055static bfd_boolean
10056elf_reloc_link_order (bfd *output_bfd,
10057 struct bfd_link_info *info,
10058 asection *output_section,
10059 struct bfd_link_order *link_order)
10060{
10061 reloc_howto_type *howto;
10062 long indx;
10063 bfd_vma offset;
10064 bfd_vma addend;
d4730f92 10065 struct bfd_elf_section_reloc_data *reldata;
c152c796
AM
10066 struct elf_link_hash_entry **rel_hash_ptr;
10067 Elf_Internal_Shdr *rel_hdr;
10068 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10069 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
10070 bfd_byte *erel;
10071 unsigned int i;
d4730f92 10072 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
c152c796
AM
10073
10074 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
10075 if (howto == NULL)
10076 {
10077 bfd_set_error (bfd_error_bad_value);
10078 return FALSE;
10079 }
10080
10081 addend = link_order->u.reloc.p->addend;
10082
d4730f92
BS
10083 if (esdo->rel.hdr)
10084 reldata = &esdo->rel;
10085 else if (esdo->rela.hdr)
10086 reldata = &esdo->rela;
10087 else
10088 {
10089 reldata = NULL;
10090 BFD_ASSERT (0);
10091 }
10092
c152c796 10093 /* Figure out the symbol index. */
d4730f92 10094 rel_hash_ptr = reldata->hashes + reldata->count;
c152c796
AM
10095 if (link_order->type == bfd_section_reloc_link_order)
10096 {
10097 indx = link_order->u.reloc.p->u.section->target_index;
10098 BFD_ASSERT (indx != 0);
10099 *rel_hash_ptr = NULL;
10100 }
10101 else
10102 {
10103 struct elf_link_hash_entry *h;
10104
10105 /* Treat a reloc against a defined symbol as though it were
10106 actually against the section. */
10107 h = ((struct elf_link_hash_entry *)
10108 bfd_wrapped_link_hash_lookup (output_bfd, info,
10109 link_order->u.reloc.p->u.name,
10110 FALSE, FALSE, TRUE));
10111 if (h != NULL
10112 && (h->root.type == bfd_link_hash_defined
10113 || h->root.type == bfd_link_hash_defweak))
10114 {
10115 asection *section;
10116
10117 section = h->root.u.def.section;
10118 indx = section->output_section->target_index;
10119 *rel_hash_ptr = NULL;
10120 /* It seems that we ought to add the symbol value to the
10121 addend here, but in practice it has already been added
10122 because it was passed to constructor_callback. */
10123 addend += section->output_section->vma + section->output_offset;
10124 }
10125 else if (h != NULL)
10126 {
10127 /* Setting the index to -2 tells elf_link_output_extsym that
10128 this symbol is used by a reloc. */
10129 h->indx = -2;
10130 *rel_hash_ptr = h;
10131 indx = 0;
10132 }
10133 else
10134 {
10135 if (! ((*info->callbacks->unattached_reloc)
10136 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0)))
10137 return FALSE;
10138 indx = 0;
10139 }
10140 }
10141
10142 /* If this is an inplace reloc, we must write the addend into the
10143 object file. */
10144 if (howto->partial_inplace && addend != 0)
10145 {
10146 bfd_size_type size;
10147 bfd_reloc_status_type rstat;
10148 bfd_byte *buf;
10149 bfd_boolean ok;
10150 const char *sym_name;
10151
a50b1753
NC
10152 size = (bfd_size_type) bfd_get_reloc_size (howto);
10153 buf = (bfd_byte *) bfd_zmalloc (size);
c152c796
AM
10154 if (buf == NULL)
10155 return FALSE;
10156 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
10157 switch (rstat)
10158 {
10159 case bfd_reloc_ok:
10160 break;
10161
10162 default:
10163 case bfd_reloc_outofrange:
10164 abort ();
10165
10166 case bfd_reloc_overflow:
10167 if (link_order->type == bfd_section_reloc_link_order)
10168 sym_name = bfd_section_name (output_bfd,
10169 link_order->u.reloc.p->u.section);
10170 else
10171 sym_name = link_order->u.reloc.p->u.name;
10172 if (! ((*info->callbacks->reloc_overflow)
dfeffb9f
L
10173 (info, NULL, sym_name, howto->name, addend, NULL,
10174 NULL, (bfd_vma) 0)))
c152c796
AM
10175 {
10176 free (buf);
10177 return FALSE;
10178 }
10179 break;
10180 }
10181 ok = bfd_set_section_contents (output_bfd, output_section, buf,
10182 link_order->offset, size);
10183 free (buf);
10184 if (! ok)
10185 return FALSE;
10186 }
10187
10188 /* The address of a reloc is relative to the section in a
10189 relocatable file, and is a virtual address in an executable
10190 file. */
10191 offset = link_order->offset;
10192 if (! info->relocatable)
10193 offset += output_section->vma;
10194
10195 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
10196 {
10197 irel[i].r_offset = offset;
10198 irel[i].r_info = 0;
10199 irel[i].r_addend = 0;
10200 }
10201 if (bed->s->arch_size == 32)
10202 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
10203 else
10204 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
10205
d4730f92 10206 rel_hdr = reldata->hdr;
c152c796
AM
10207 erel = rel_hdr->contents;
10208 if (rel_hdr->sh_type == SHT_REL)
10209 {
d4730f92 10210 erel += reldata->count * bed->s->sizeof_rel;
c152c796
AM
10211 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
10212 }
10213 else
10214 {
10215 irel[0].r_addend = addend;
d4730f92 10216 erel += reldata->count * bed->s->sizeof_rela;
c152c796
AM
10217 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
10218 }
10219
d4730f92 10220 ++reldata->count;
c152c796
AM
10221
10222 return TRUE;
10223}
10224
0b52efa6
PB
10225
10226/* Get the output vma of the section pointed to by the sh_link field. */
10227
10228static bfd_vma
10229elf_get_linked_section_vma (struct bfd_link_order *p)
10230{
10231 Elf_Internal_Shdr **elf_shdrp;
10232 asection *s;
10233 int elfsec;
10234
10235 s = p->u.indirect.section;
10236 elf_shdrp = elf_elfsections (s->owner);
10237 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
10238 elfsec = elf_shdrp[elfsec]->sh_link;
185d09ad
L
10239 /* PR 290:
10240 The Intel C compiler generates SHT_IA_64_UNWIND with
e04bcc6d 10241 SHF_LINK_ORDER. But it doesn't set the sh_link or
185d09ad
L
10242 sh_info fields. Hence we could get the situation
10243 where elfsec is 0. */
10244 if (elfsec == 0)
10245 {
10246 const struct elf_backend_data *bed
10247 = get_elf_backend_data (s->owner);
10248 if (bed->link_order_error_handler)
d003868e
AM
10249 bed->link_order_error_handler
10250 (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
185d09ad
L
10251 return 0;
10252 }
10253 else
10254 {
10255 s = elf_shdrp[elfsec]->bfd_section;
10256 return s->output_section->vma + s->output_offset;
10257 }
0b52efa6
PB
10258}
10259
10260
10261/* Compare two sections based on the locations of the sections they are
10262 linked to. Used by elf_fixup_link_order. */
10263
10264static int
10265compare_link_order (const void * a, const void * b)
10266{
10267 bfd_vma apos;
10268 bfd_vma bpos;
10269
10270 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
10271 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
10272 if (apos < bpos)
10273 return -1;
10274 return apos > bpos;
10275}
10276
10277
10278/* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
10279 order as their linked sections. Returns false if this could not be done
10280 because an output section includes both ordered and unordered
10281 sections. Ideally we'd do this in the linker proper. */
10282
10283static bfd_boolean
10284elf_fixup_link_order (bfd *abfd, asection *o)
10285{
10286 int seen_linkorder;
10287 int seen_other;
10288 int n;
10289 struct bfd_link_order *p;
10290 bfd *sub;
10291 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
b761a207 10292 unsigned elfsec;
0b52efa6 10293 struct bfd_link_order **sections;
d33cdfe3 10294 asection *s, *other_sec, *linkorder_sec;
0b52efa6 10295 bfd_vma offset;
3b36f7e6 10296
d33cdfe3
L
10297 other_sec = NULL;
10298 linkorder_sec = NULL;
0b52efa6
PB
10299 seen_other = 0;
10300 seen_linkorder = 0;
8423293d 10301 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6 10302 {
d33cdfe3 10303 if (p->type == bfd_indirect_link_order)
0b52efa6
PB
10304 {
10305 s = p->u.indirect.section;
d33cdfe3
L
10306 sub = s->owner;
10307 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10308 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
b761a207
BE
10309 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
10310 && elfsec < elf_numsections (sub)
4fbb74a6
AM
10311 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
10312 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
d33cdfe3
L
10313 {
10314 seen_linkorder++;
10315 linkorder_sec = s;
10316 }
0b52efa6 10317 else
d33cdfe3
L
10318 {
10319 seen_other++;
10320 other_sec = s;
10321 }
0b52efa6
PB
10322 }
10323 else
10324 seen_other++;
d33cdfe3
L
10325
10326 if (seen_other && seen_linkorder)
10327 {
10328 if (other_sec && linkorder_sec)
10329 (*_bfd_error_handler) (_("%A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections"),
10330 o, linkorder_sec,
10331 linkorder_sec->owner, other_sec,
10332 other_sec->owner);
10333 else
10334 (*_bfd_error_handler) (_("%A has both ordered and unordered sections"),
10335 o);
10336 bfd_set_error (bfd_error_bad_value);
10337 return FALSE;
10338 }
0b52efa6
PB
10339 }
10340
10341 if (!seen_linkorder)
10342 return TRUE;
10343
0b52efa6 10344 sections = (struct bfd_link_order **)
14b1c01e
AM
10345 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
10346 if (sections == NULL)
10347 return FALSE;
0b52efa6 10348 seen_linkorder = 0;
3b36f7e6 10349
8423293d 10350 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6
PB
10351 {
10352 sections[seen_linkorder++] = p;
10353 }
10354 /* Sort the input sections in the order of their linked section. */
10355 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
10356 compare_link_order);
10357
10358 /* Change the offsets of the sections. */
10359 offset = 0;
10360 for (n = 0; n < seen_linkorder; n++)
10361 {
10362 s = sections[n]->u.indirect.section;
461686a3 10363 offset &= ~(bfd_vma) 0 << s->alignment_power;
0b52efa6
PB
10364 s->output_offset = offset;
10365 sections[n]->offset = offset;
5dabe785 10366 /* FIXME: octets_per_byte. */
0b52efa6
PB
10367 offset += sections[n]->size;
10368 }
10369
4dd07732 10370 free (sections);
0b52efa6
PB
10371 return TRUE;
10372}
10373
10374
c152c796
AM
10375/* Do the final step of an ELF link. */
10376
10377bfd_boolean
10378bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
10379{
10380 bfd_boolean dynamic;
10381 bfd_boolean emit_relocs;
10382 bfd *dynobj;
8b127cbc 10383 struct elf_final_link_info flinfo;
91d6fa6a
NC
10384 asection *o;
10385 struct bfd_link_order *p;
10386 bfd *sub;
c152c796
AM
10387 bfd_size_type max_contents_size;
10388 bfd_size_type max_external_reloc_size;
10389 bfd_size_type max_internal_reloc_count;
10390 bfd_size_type max_sym_count;
10391 bfd_size_type max_sym_shndx_count;
10392 file_ptr off;
10393 Elf_Internal_Sym elfsym;
10394 unsigned int i;
10395 Elf_Internal_Shdr *symtab_hdr;
10396 Elf_Internal_Shdr *symtab_shndx_hdr;
10397 Elf_Internal_Shdr *symstrtab_hdr;
10398 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10399 struct elf_outext_info eoinfo;
10400 bfd_boolean merged;
10401 size_t relativecount = 0;
10402 asection *reldyn = 0;
10403 bfd_size_type amt;
104d59d1
JM
10404 asection *attr_section = NULL;
10405 bfd_vma attr_size = 0;
10406 const char *std_attrs_section;
c152c796
AM
10407
10408 if (! is_elf_hash_table (info->hash))
10409 return FALSE;
10410
10411 if (info->shared)
10412 abfd->flags |= DYNAMIC;
10413
10414 dynamic = elf_hash_table (info)->dynamic_sections_created;
10415 dynobj = elf_hash_table (info)->dynobj;
10416
10417 emit_relocs = (info->relocatable
a4676736 10418 || info->emitrelocations);
c152c796 10419
8b127cbc
AM
10420 flinfo.info = info;
10421 flinfo.output_bfd = abfd;
10422 flinfo.symstrtab = _bfd_elf_stringtab_init ();
10423 if (flinfo.symstrtab == NULL)
c152c796
AM
10424 return FALSE;
10425
10426 if (! dynamic)
10427 {
8b127cbc
AM
10428 flinfo.dynsym_sec = NULL;
10429 flinfo.hash_sec = NULL;
10430 flinfo.symver_sec = NULL;
c152c796
AM
10431 }
10432 else
10433 {
3d4d4302
AM
10434 flinfo.dynsym_sec = bfd_get_linker_section (dynobj, ".dynsym");
10435 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
202e2356 10436 /* Note that dynsym_sec can be NULL (on VMS). */
3d4d4302 10437 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
c152c796
AM
10438 /* Note that it is OK if symver_sec is NULL. */
10439 }
10440
8b127cbc
AM
10441 flinfo.contents = NULL;
10442 flinfo.external_relocs = NULL;
10443 flinfo.internal_relocs = NULL;
10444 flinfo.external_syms = NULL;
10445 flinfo.locsym_shndx = NULL;
10446 flinfo.internal_syms = NULL;
10447 flinfo.indices = NULL;
10448 flinfo.sections = NULL;
10449 flinfo.symbuf = NULL;
10450 flinfo.symshndxbuf = NULL;
10451 flinfo.symbuf_count = 0;
10452 flinfo.shndxbuf_size = 0;
ffbc01cc 10453 flinfo.filesym_count = 0;
c152c796 10454
104d59d1
JM
10455 /* The object attributes have been merged. Remove the input
10456 sections from the link, and set the contents of the output
10457 secton. */
10458 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
10459 for (o = abfd->sections; o != NULL; o = o->next)
10460 {
10461 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
10462 || strcmp (o->name, ".gnu.attributes") == 0)
10463 {
10464 for (p = o->map_head.link_order; p != NULL; p = p->next)
10465 {
10466 asection *input_section;
10467
10468 if (p->type != bfd_indirect_link_order)
10469 continue;
10470 input_section = p->u.indirect.section;
10471 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10472 elf_link_input_bfd ignores this section. */
10473 input_section->flags &= ~SEC_HAS_CONTENTS;
10474 }
a0c8462f 10475
104d59d1
JM
10476 attr_size = bfd_elf_obj_attr_size (abfd);
10477 if (attr_size)
10478 {
10479 bfd_set_section_size (abfd, o, attr_size);
10480 attr_section = o;
10481 /* Skip this section later on. */
10482 o->map_head.link_order = NULL;
10483 }
10484 else
10485 o->flags |= SEC_EXCLUDE;
10486 }
10487 }
10488
c152c796
AM
10489 /* Count up the number of relocations we will output for each output
10490 section, so that we know the sizes of the reloc sections. We
10491 also figure out some maximum sizes. */
10492 max_contents_size = 0;
10493 max_external_reloc_size = 0;
10494 max_internal_reloc_count = 0;
10495 max_sym_count = 0;
10496 max_sym_shndx_count = 0;
10497 merged = FALSE;
10498 for (o = abfd->sections; o != NULL; o = o->next)
10499 {
10500 struct bfd_elf_section_data *esdo = elf_section_data (o);
10501 o->reloc_count = 0;
10502
8423293d 10503 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
10504 {
10505 unsigned int reloc_count = 0;
10506 struct bfd_elf_section_data *esdi = NULL;
c152c796
AM
10507
10508 if (p->type == bfd_section_reloc_link_order
10509 || p->type == bfd_symbol_reloc_link_order)
10510 reloc_count = 1;
10511 else if (p->type == bfd_indirect_link_order)
10512 {
10513 asection *sec;
10514
10515 sec = p->u.indirect.section;
10516 esdi = elf_section_data (sec);
10517
10518 /* Mark all sections which are to be included in the
10519 link. This will normally be every section. We need
10520 to do this so that we can identify any sections which
10521 the linker has decided to not include. */
10522 sec->linker_mark = TRUE;
10523
10524 if (sec->flags & SEC_MERGE)
10525 merged = TRUE;
10526
aed64b35
L
10527 if (esdo->this_hdr.sh_type == SHT_REL
10528 || esdo->this_hdr.sh_type == SHT_RELA)
10529 /* Some backends use reloc_count in relocation sections
10530 to count particular types of relocs. Of course,
10531 reloc sections themselves can't have relocations. */
10532 reloc_count = 0;
10533 else if (info->relocatable || info->emitrelocations)
c152c796
AM
10534 reloc_count = sec->reloc_count;
10535 else if (bed->elf_backend_count_relocs)
58217f29 10536 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
c152c796 10537
eea6121a
AM
10538 if (sec->rawsize > max_contents_size)
10539 max_contents_size = sec->rawsize;
10540 if (sec->size > max_contents_size)
10541 max_contents_size = sec->size;
c152c796
AM
10542
10543 /* We are interested in just local symbols, not all
10544 symbols. */
10545 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
10546 && (sec->owner->flags & DYNAMIC) == 0)
10547 {
10548 size_t sym_count;
10549
10550 if (elf_bad_symtab (sec->owner))
10551 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
10552 / bed->s->sizeof_sym);
10553 else
10554 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
10555
10556 if (sym_count > max_sym_count)
10557 max_sym_count = sym_count;
10558
10559 if (sym_count > max_sym_shndx_count
10560 && elf_symtab_shndx (sec->owner) != 0)
10561 max_sym_shndx_count = sym_count;
10562
10563 if ((sec->flags & SEC_RELOC) != 0)
10564 {
d4730f92 10565 size_t ext_size = 0;
c152c796 10566
d4730f92
BS
10567 if (esdi->rel.hdr != NULL)
10568 ext_size = esdi->rel.hdr->sh_size;
10569 if (esdi->rela.hdr != NULL)
10570 ext_size += esdi->rela.hdr->sh_size;
7326c758 10571
c152c796
AM
10572 if (ext_size > max_external_reloc_size)
10573 max_external_reloc_size = ext_size;
10574 if (sec->reloc_count > max_internal_reloc_count)
10575 max_internal_reloc_count = sec->reloc_count;
10576 }
10577 }
10578 }
10579
10580 if (reloc_count == 0)
10581 continue;
10582
10583 o->reloc_count += reloc_count;
10584
d4730f92
BS
10585 if (p->type == bfd_indirect_link_order
10586 && (info->relocatable || info->emitrelocations))
c152c796 10587 {
d4730f92
BS
10588 if (esdi->rel.hdr)
10589 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
10590 if (esdi->rela.hdr)
10591 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
10592 }
10593 else
10594 {
10595 if (o->use_rela_p)
10596 esdo->rela.count += reloc_count;
2c2b4ed4 10597 else
d4730f92 10598 esdo->rel.count += reloc_count;
c152c796 10599 }
c152c796
AM
10600 }
10601
10602 if (o->reloc_count > 0)
10603 o->flags |= SEC_RELOC;
10604 else
10605 {
10606 /* Explicitly clear the SEC_RELOC flag. The linker tends to
10607 set it (this is probably a bug) and if it is set
10608 assign_section_numbers will create a reloc section. */
10609 o->flags &=~ SEC_RELOC;
10610 }
10611
10612 /* If the SEC_ALLOC flag is not set, force the section VMA to
10613 zero. This is done in elf_fake_sections as well, but forcing
10614 the VMA to 0 here will ensure that relocs against these
10615 sections are handled correctly. */
10616 if ((o->flags & SEC_ALLOC) == 0
10617 && ! o->user_set_vma)
10618 o->vma = 0;
10619 }
10620
10621 if (! info->relocatable && merged)
10622 elf_link_hash_traverse (elf_hash_table (info),
10623 _bfd_elf_link_sec_merge_syms, abfd);
10624
10625 /* Figure out the file positions for everything but the symbol table
10626 and the relocs. We set symcount to force assign_section_numbers
10627 to create a symbol table. */
10628 bfd_get_symcount (abfd) = info->strip == strip_all ? 0 : 1;
10629 BFD_ASSERT (! abfd->output_has_begun);
10630 if (! _bfd_elf_compute_section_file_positions (abfd, info))
10631 goto error_return;
10632
ee75fd95 10633 /* Set sizes, and assign file positions for reloc sections. */
c152c796
AM
10634 for (o = abfd->sections; o != NULL; o = o->next)
10635 {
d4730f92 10636 struct bfd_elf_section_data *esdo = elf_section_data (o);
c152c796
AM
10637 if ((o->flags & SEC_RELOC) != 0)
10638 {
d4730f92
BS
10639 if (esdo->rel.hdr
10640 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
c152c796
AM
10641 goto error_return;
10642
d4730f92
BS
10643 if (esdo->rela.hdr
10644 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
c152c796
AM
10645 goto error_return;
10646 }
10647
10648 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
10649 to count upwards while actually outputting the relocations. */
d4730f92
BS
10650 esdo->rel.count = 0;
10651 esdo->rela.count = 0;
c152c796
AM
10652 }
10653
10654 _bfd_elf_assign_file_positions_for_relocs (abfd);
10655
10656 /* We have now assigned file positions for all the sections except
10657 .symtab and .strtab. We start the .symtab section at the current
10658 file position, and write directly to it. We build the .strtab
10659 section in memory. */
10660 bfd_get_symcount (abfd) = 0;
10661 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
10662 /* sh_name is set in prep_headers. */
10663 symtab_hdr->sh_type = SHT_SYMTAB;
10664 /* sh_flags, sh_addr and sh_size all start off zero. */
10665 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
10666 /* sh_link is set in assign_section_numbers. */
10667 /* sh_info is set below. */
10668 /* sh_offset is set just below. */
72de5009 10669 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
c152c796
AM
10670
10671 off = elf_tdata (abfd)->next_file_pos;
10672 off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
10673
10674 /* Note that at this point elf_tdata (abfd)->next_file_pos is
10675 incorrect. We do not yet know the size of the .symtab section.
10676 We correct next_file_pos below, after we do know the size. */
10677
10678 /* Allocate a buffer to hold swapped out symbols. This is to avoid
10679 continuously seeking to the right position in the file. */
10680 if (! info->keep_memory || max_sym_count < 20)
8b127cbc 10681 flinfo.symbuf_size = 20;
c152c796 10682 else
8b127cbc
AM
10683 flinfo.symbuf_size = max_sym_count;
10684 amt = flinfo.symbuf_size;
c152c796 10685 amt *= bed->s->sizeof_sym;
8b127cbc
AM
10686 flinfo.symbuf = (bfd_byte *) bfd_malloc (amt);
10687 if (flinfo.symbuf == NULL)
c152c796 10688 goto error_return;
4fbb74a6 10689 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
c152c796
AM
10690 {
10691 /* Wild guess at number of output symbols. realloc'd as needed. */
10692 amt = 2 * max_sym_count + elf_numsections (abfd) + 1000;
8b127cbc 10693 flinfo.shndxbuf_size = amt;
c152c796 10694 amt *= sizeof (Elf_External_Sym_Shndx);
8b127cbc
AM
10695 flinfo.symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
10696 if (flinfo.symshndxbuf == NULL)
c152c796
AM
10697 goto error_return;
10698 }
10699
10700 /* Start writing out the symbol table. The first symbol is always a
10701 dummy symbol. */
10702 if (info->strip != strip_all
10703 || emit_relocs)
10704 {
10705 elfsym.st_value = 0;
10706 elfsym.st_size = 0;
10707 elfsym.st_info = 0;
10708 elfsym.st_other = 0;
10709 elfsym.st_shndx = SHN_UNDEF;
35fc36a8 10710 elfsym.st_target_internal = 0;
8b127cbc 10711 if (elf_link_output_sym (&flinfo, NULL, &elfsym, bfd_und_section_ptr,
6e0b88f1 10712 NULL) != 1)
c152c796
AM
10713 goto error_return;
10714 }
10715
c152c796
AM
10716 /* Output a symbol for each section. We output these even if we are
10717 discarding local symbols, since they are used for relocs. These
10718 symbols have no names. We store the index of each one in the
10719 index field of the section, so that we can find it again when
10720 outputting relocs. */
10721 if (info->strip != strip_all
10722 || emit_relocs)
10723 {
10724 elfsym.st_size = 0;
10725 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
10726 elfsym.st_other = 0;
f0b5bb34 10727 elfsym.st_value = 0;
35fc36a8 10728 elfsym.st_target_internal = 0;
c152c796
AM
10729 for (i = 1; i < elf_numsections (abfd); i++)
10730 {
10731 o = bfd_section_from_elf_index (abfd, i);
10732 if (o != NULL)
f0b5bb34
AM
10733 {
10734 o->target_index = bfd_get_symcount (abfd);
10735 elfsym.st_shndx = i;
10736 if (!info->relocatable)
10737 elfsym.st_value = o->vma;
8b127cbc 10738 if (elf_link_output_sym (&flinfo, NULL, &elfsym, o, NULL) != 1)
f0b5bb34
AM
10739 goto error_return;
10740 }
c152c796
AM
10741 }
10742 }
10743
10744 /* Allocate some memory to hold information read in from the input
10745 files. */
10746 if (max_contents_size != 0)
10747 {
8b127cbc
AM
10748 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
10749 if (flinfo.contents == NULL)
c152c796
AM
10750 goto error_return;
10751 }
10752
10753 if (max_external_reloc_size != 0)
10754 {
8b127cbc
AM
10755 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
10756 if (flinfo.external_relocs == NULL)
c152c796
AM
10757 goto error_return;
10758 }
10759
10760 if (max_internal_reloc_count != 0)
10761 {
10762 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
10763 amt *= sizeof (Elf_Internal_Rela);
8b127cbc
AM
10764 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
10765 if (flinfo.internal_relocs == NULL)
c152c796
AM
10766 goto error_return;
10767 }
10768
10769 if (max_sym_count != 0)
10770 {
10771 amt = max_sym_count * bed->s->sizeof_sym;
8b127cbc
AM
10772 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
10773 if (flinfo.external_syms == NULL)
c152c796
AM
10774 goto error_return;
10775
10776 amt = max_sym_count * sizeof (Elf_Internal_Sym);
8b127cbc
AM
10777 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
10778 if (flinfo.internal_syms == NULL)
c152c796
AM
10779 goto error_return;
10780
10781 amt = max_sym_count * sizeof (long);
8b127cbc
AM
10782 flinfo.indices = (long int *) bfd_malloc (amt);
10783 if (flinfo.indices == NULL)
c152c796
AM
10784 goto error_return;
10785
10786 amt = max_sym_count * sizeof (asection *);
8b127cbc
AM
10787 flinfo.sections = (asection **) bfd_malloc (amt);
10788 if (flinfo.sections == NULL)
c152c796
AM
10789 goto error_return;
10790 }
10791
10792 if (max_sym_shndx_count != 0)
10793 {
10794 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
8b127cbc
AM
10795 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
10796 if (flinfo.locsym_shndx == NULL)
c152c796
AM
10797 goto error_return;
10798 }
10799
10800 if (elf_hash_table (info)->tls_sec)
10801 {
10802 bfd_vma base, end = 0;
10803 asection *sec;
10804
10805 for (sec = elf_hash_table (info)->tls_sec;
10806 sec && (sec->flags & SEC_THREAD_LOCAL);
10807 sec = sec->next)
10808 {
3a800eb9 10809 bfd_size_type size = sec->size;
c152c796 10810
3a800eb9
AM
10811 if (size == 0
10812 && (sec->flags & SEC_HAS_CONTENTS) == 0)
c152c796 10813 {
91d6fa6a
NC
10814 struct bfd_link_order *ord = sec->map_tail.link_order;
10815
10816 if (ord != NULL)
10817 size = ord->offset + ord->size;
c152c796
AM
10818 }
10819 end = sec->vma + size;
10820 }
10821 base = elf_hash_table (info)->tls_sec->vma;
7dc98aea
RO
10822 /* Only align end of TLS section if static TLS doesn't have special
10823 alignment requirements. */
10824 if (bed->static_tls_alignment == 1)
10825 end = align_power (end,
10826 elf_hash_table (info)->tls_sec->alignment_power);
c152c796
AM
10827 elf_hash_table (info)->tls_size = end - base;
10828 }
10829
0b52efa6
PB
10830 /* Reorder SHF_LINK_ORDER sections. */
10831 for (o = abfd->sections; o != NULL; o = o->next)
10832 {
10833 if (!elf_fixup_link_order (abfd, o))
10834 return FALSE;
10835 }
10836
c152c796
AM
10837 /* Since ELF permits relocations to be against local symbols, we
10838 must have the local symbols available when we do the relocations.
10839 Since we would rather only read the local symbols once, and we
10840 would rather not keep them in memory, we handle all the
10841 relocations for a single input file at the same time.
10842
10843 Unfortunately, there is no way to know the total number of local
10844 symbols until we have seen all of them, and the local symbol
10845 indices precede the global symbol indices. This means that when
10846 we are generating relocatable output, and we see a reloc against
10847 a global symbol, we can not know the symbol index until we have
10848 finished examining all the local symbols to see which ones we are
10849 going to output. To deal with this, we keep the relocations in
10850 memory, and don't output them until the end of the link. This is
10851 an unfortunate waste of memory, but I don't see a good way around
10852 it. Fortunately, it only happens when performing a relocatable
10853 link, which is not the common case. FIXME: If keep_memory is set
10854 we could write the relocs out and then read them again; I don't
10855 know how bad the memory loss will be. */
10856
10857 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
10858 sub->output_has_begun = FALSE;
10859 for (o = abfd->sections; o != NULL; o = o->next)
10860 {
8423293d 10861 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
10862 {
10863 if (p->type == bfd_indirect_link_order
10864 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
10865 == bfd_target_elf_flavour)
10866 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
10867 {
10868 if (! sub->output_has_begun)
10869 {
8b127cbc 10870 if (! elf_link_input_bfd (&flinfo, sub))
c152c796
AM
10871 goto error_return;
10872 sub->output_has_begun = TRUE;
10873 }
10874 }
10875 else if (p->type == bfd_section_reloc_link_order
10876 || p->type == bfd_symbol_reloc_link_order)
10877 {
10878 if (! elf_reloc_link_order (abfd, info, o, p))
10879 goto error_return;
10880 }
10881 else
10882 {
10883 if (! _bfd_default_link_order (abfd, info, o, p))
351f65ca
L
10884 {
10885 if (p->type == bfd_indirect_link_order
10886 && (bfd_get_flavour (sub)
10887 == bfd_target_elf_flavour)
10888 && (elf_elfheader (sub)->e_ident[EI_CLASS]
10889 != bed->s->elfclass))
10890 {
10891 const char *iclass, *oclass;
10892
10893 if (bed->s->elfclass == ELFCLASS64)
10894 {
10895 iclass = "ELFCLASS32";
10896 oclass = "ELFCLASS64";
10897 }
10898 else
10899 {
10900 iclass = "ELFCLASS64";
10901 oclass = "ELFCLASS32";
10902 }
10903
10904 bfd_set_error (bfd_error_wrong_format);
10905 (*_bfd_error_handler)
10906 (_("%B: file class %s incompatible with %s"),
10907 sub, iclass, oclass);
10908 }
10909
10910 goto error_return;
10911 }
c152c796
AM
10912 }
10913 }
10914 }
10915
c0f00686
L
10916 /* Free symbol buffer if needed. */
10917 if (!info->reduce_memory_overheads)
10918 {
10919 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
3fcd97f1
JJ
10920 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10921 && elf_tdata (sub)->symbuf)
c0f00686
L
10922 {
10923 free (elf_tdata (sub)->symbuf);
10924 elf_tdata (sub)->symbuf = NULL;
10925 }
10926 }
10927
ffbc01cc
AM
10928 /* Output a FILE symbol so that following locals are not associated
10929 with the wrong input file. */
10930 memset (&elfsym, 0, sizeof (elfsym));
10931 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
10932 elfsym.st_shndx = SHN_ABS;
10933
10934 if (flinfo.filesym_count > 1
10935 && !elf_link_output_sym (&flinfo, NULL, &elfsym,
10936 bfd_und_section_ptr, NULL))
10937 return FALSE;
10938
c152c796
AM
10939 /* Output any global symbols that got converted to local in a
10940 version script or due to symbol visibility. We do this in a
10941 separate step since ELF requires all local symbols to appear
10942 prior to any global symbols. FIXME: We should only do this if
10943 some global symbols were, in fact, converted to become local.
10944 FIXME: Will this work correctly with the Irix 5 linker? */
10945 eoinfo.failed = FALSE;
8b127cbc 10946 eoinfo.flinfo = &flinfo;
c152c796 10947 eoinfo.localsyms = TRUE;
ffbc01cc
AM
10948 eoinfo.need_second_pass = FALSE;
10949 eoinfo.second_pass = FALSE;
7686d77d 10950 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
10951 if (eoinfo.failed)
10952 return FALSE;
10953
ffbc01cc
AM
10954 if (flinfo.filesym_count == 1
10955 && !elf_link_output_sym (&flinfo, NULL, &elfsym,
10956 bfd_und_section_ptr, NULL))
10957 return FALSE;
10958
10959 if (eoinfo.need_second_pass)
10960 {
10961 eoinfo.second_pass = TRUE;
10962 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
10963 if (eoinfo.failed)
10964 return FALSE;
10965 }
10966
4e617b1e
PB
10967 /* If backend needs to output some local symbols not present in the hash
10968 table, do it now. */
10969 if (bed->elf_backend_output_arch_local_syms)
10970 {
6e0b88f1 10971 typedef int (*out_sym_func)
4e617b1e
PB
10972 (void *, const char *, Elf_Internal_Sym *, asection *,
10973 struct elf_link_hash_entry *);
10974
10975 if (! ((*bed->elf_backend_output_arch_local_syms)
8b127cbc 10976 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
4e617b1e
PB
10977 return FALSE;
10978 }
10979
c152c796
AM
10980 /* That wrote out all the local symbols. Finish up the symbol table
10981 with the global symbols. Even if we want to strip everything we
10982 can, we still need to deal with those global symbols that got
10983 converted to local in a version script. */
10984
10985 /* The sh_info field records the index of the first non local symbol. */
10986 symtab_hdr->sh_info = bfd_get_symcount (abfd);
10987
10988 if (dynamic
8b127cbc
AM
10989 && flinfo.dynsym_sec != NULL
10990 && flinfo.dynsym_sec->output_section != bfd_abs_section_ptr)
c152c796
AM
10991 {
10992 Elf_Internal_Sym sym;
8b127cbc 10993 bfd_byte *dynsym = flinfo.dynsym_sec->contents;
c152c796
AM
10994 long last_local = 0;
10995
10996 /* Write out the section symbols for the output sections. */
67687978 10997 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
c152c796
AM
10998 {
10999 asection *s;
11000
11001 sym.st_size = 0;
11002 sym.st_name = 0;
11003 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11004 sym.st_other = 0;
35fc36a8 11005 sym.st_target_internal = 0;
c152c796
AM
11006
11007 for (s = abfd->sections; s != NULL; s = s->next)
11008 {
11009 int indx;
11010 bfd_byte *dest;
11011 long dynindx;
11012
c152c796 11013 dynindx = elf_section_data (s)->dynindx;
8c37241b
JJ
11014 if (dynindx <= 0)
11015 continue;
11016 indx = elf_section_data (s)->this_idx;
c152c796
AM
11017 BFD_ASSERT (indx > 0);
11018 sym.st_shndx = indx;
c0d5a53d
L
11019 if (! check_dynsym (abfd, &sym))
11020 return FALSE;
c152c796
AM
11021 sym.st_value = s->vma;
11022 dest = dynsym + dynindx * bed->s->sizeof_sym;
8c37241b
JJ
11023 if (last_local < dynindx)
11024 last_local = dynindx;
c152c796
AM
11025 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11026 }
c152c796
AM
11027 }
11028
11029 /* Write out the local dynsyms. */
11030 if (elf_hash_table (info)->dynlocal)
11031 {
11032 struct elf_link_local_dynamic_entry *e;
11033 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
11034 {
11035 asection *s;
11036 bfd_byte *dest;
11037
935bd1e0 11038 /* Copy the internal symbol and turn off visibility.
c152c796
AM
11039 Note that we saved a word of storage and overwrote
11040 the original st_name with the dynstr_index. */
11041 sym = e->isym;
935bd1e0 11042 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
c152c796 11043
cb33740c
AM
11044 s = bfd_section_from_elf_index (e->input_bfd,
11045 e->isym.st_shndx);
11046 if (s != NULL)
c152c796 11047 {
c152c796
AM
11048 sym.st_shndx =
11049 elf_section_data (s->output_section)->this_idx;
c0d5a53d
L
11050 if (! check_dynsym (abfd, &sym))
11051 return FALSE;
c152c796
AM
11052 sym.st_value = (s->output_section->vma
11053 + s->output_offset
11054 + e->isym.st_value);
11055 }
11056
11057 if (last_local < e->dynindx)
11058 last_local = e->dynindx;
11059
11060 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
11061 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11062 }
11063 }
11064
8b127cbc 11065 elf_section_data (flinfo.dynsym_sec->output_section)->this_hdr.sh_info =
c152c796
AM
11066 last_local + 1;
11067 }
11068
11069 /* We get the global symbols from the hash table. */
11070 eoinfo.failed = FALSE;
11071 eoinfo.localsyms = FALSE;
8b127cbc 11072 eoinfo.flinfo = &flinfo;
7686d77d 11073 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
11074 if (eoinfo.failed)
11075 return FALSE;
11076
11077 /* If backend needs to output some symbols not present in the hash
11078 table, do it now. */
11079 if (bed->elf_backend_output_arch_syms)
11080 {
6e0b88f1 11081 typedef int (*out_sym_func)
c152c796
AM
11082 (void *, const char *, Elf_Internal_Sym *, asection *,
11083 struct elf_link_hash_entry *);
11084
11085 if (! ((*bed->elf_backend_output_arch_syms)
8b127cbc 11086 (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
c152c796
AM
11087 return FALSE;
11088 }
11089
11090 /* Flush all symbols to the file. */
8b127cbc 11091 if (! elf_link_flush_output_syms (&flinfo, bed))
c152c796
AM
11092 return FALSE;
11093
11094 /* Now we know the size of the symtab section. */
11095 off += symtab_hdr->sh_size;
11096
11097 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
11098 if (symtab_shndx_hdr->sh_name != 0)
11099 {
11100 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
11101 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
11102 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
11103 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
11104 symtab_shndx_hdr->sh_size = amt;
11105
11106 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
11107 off, TRUE);
11108
11109 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
8b127cbc 11110 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
c152c796
AM
11111 return FALSE;
11112 }
11113
11114
11115 /* Finish up and write out the symbol string table (.strtab)
11116 section. */
11117 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
11118 /* sh_name was set in prep_headers. */
11119 symstrtab_hdr->sh_type = SHT_STRTAB;
11120 symstrtab_hdr->sh_flags = 0;
11121 symstrtab_hdr->sh_addr = 0;
8b127cbc 11122 symstrtab_hdr->sh_size = _bfd_stringtab_size (flinfo.symstrtab);
c152c796
AM
11123 symstrtab_hdr->sh_entsize = 0;
11124 symstrtab_hdr->sh_link = 0;
11125 symstrtab_hdr->sh_info = 0;
11126 /* sh_offset is set just below. */
11127 symstrtab_hdr->sh_addralign = 1;
11128
11129 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr, off, TRUE);
11130 elf_tdata (abfd)->next_file_pos = off;
11131
11132 if (bfd_get_symcount (abfd) > 0)
11133 {
11134 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
8b127cbc 11135 || ! _bfd_stringtab_emit (abfd, flinfo.symstrtab))
c152c796
AM
11136 return FALSE;
11137 }
11138
11139 /* Adjust the relocs to have the correct symbol indices. */
11140 for (o = abfd->sections; o != NULL; o = o->next)
11141 {
d4730f92 11142 struct bfd_elf_section_data *esdo = elf_section_data (o);
c152c796
AM
11143 if ((o->flags & SEC_RELOC) == 0)
11144 continue;
11145
d4730f92
BS
11146 if (esdo->rel.hdr != NULL)
11147 elf_link_adjust_relocs (abfd, &esdo->rel);
11148 if (esdo->rela.hdr != NULL)
11149 elf_link_adjust_relocs (abfd, &esdo->rela);
c152c796
AM
11150
11151 /* Set the reloc_count field to 0 to prevent write_relocs from
11152 trying to swap the relocs out itself. */
11153 o->reloc_count = 0;
11154 }
11155
11156 if (dynamic && info->combreloc && dynobj != NULL)
11157 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
11158
11159 /* If we are linking against a dynamic object, or generating a
11160 shared library, finish up the dynamic linking information. */
11161 if (dynamic)
11162 {
11163 bfd_byte *dyncon, *dynconend;
11164
11165 /* Fix up .dynamic entries. */
3d4d4302 11166 o = bfd_get_linker_section (dynobj, ".dynamic");
c152c796
AM
11167 BFD_ASSERT (o != NULL);
11168
11169 dyncon = o->contents;
eea6121a 11170 dynconend = o->contents + o->size;
c152c796
AM
11171 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11172 {
11173 Elf_Internal_Dyn dyn;
11174 const char *name;
11175 unsigned int type;
11176
11177 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11178
11179 switch (dyn.d_tag)
11180 {
11181 default:
11182 continue;
11183 case DT_NULL:
11184 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
11185 {
11186 switch (elf_section_data (reldyn)->this_hdr.sh_type)
11187 {
11188 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
11189 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
11190 default: continue;
11191 }
11192 dyn.d_un.d_val = relativecount;
11193 relativecount = 0;
11194 break;
11195 }
11196 continue;
11197
11198 case DT_INIT:
11199 name = info->init_function;
11200 goto get_sym;
11201 case DT_FINI:
11202 name = info->fini_function;
11203 get_sym:
11204 {
11205 struct elf_link_hash_entry *h;
11206
11207 h = elf_link_hash_lookup (elf_hash_table (info), name,
11208 FALSE, FALSE, TRUE);
11209 if (h != NULL
11210 && (h->root.type == bfd_link_hash_defined
11211 || h->root.type == bfd_link_hash_defweak))
11212 {
bef26483 11213 dyn.d_un.d_ptr = h->root.u.def.value;
c152c796
AM
11214 o = h->root.u.def.section;
11215 if (o->output_section != NULL)
bef26483 11216 dyn.d_un.d_ptr += (o->output_section->vma
c152c796
AM
11217 + o->output_offset);
11218 else
11219 {
11220 /* The symbol is imported from another shared
11221 library and does not apply to this one. */
bef26483 11222 dyn.d_un.d_ptr = 0;
c152c796
AM
11223 }
11224 break;
11225 }
11226 }
11227 continue;
11228
11229 case DT_PREINIT_ARRAYSZ:
11230 name = ".preinit_array";
11231 goto get_size;
11232 case DT_INIT_ARRAYSZ:
11233 name = ".init_array";
11234 goto get_size;
11235 case DT_FINI_ARRAYSZ:
11236 name = ".fini_array";
11237 get_size:
11238 o = bfd_get_section_by_name (abfd, name);
11239 if (o == NULL)
11240 {
11241 (*_bfd_error_handler)
d003868e 11242 (_("%B: could not find output section %s"), abfd, name);
c152c796
AM
11243 goto error_return;
11244 }
eea6121a 11245 if (o->size == 0)
c152c796
AM
11246 (*_bfd_error_handler)
11247 (_("warning: %s section has zero size"), name);
eea6121a 11248 dyn.d_un.d_val = o->size;
c152c796
AM
11249 break;
11250
11251 case DT_PREINIT_ARRAY:
11252 name = ".preinit_array";
11253 goto get_vma;
11254 case DT_INIT_ARRAY:
11255 name = ".init_array";
11256 goto get_vma;
11257 case DT_FINI_ARRAY:
11258 name = ".fini_array";
11259 goto get_vma;
11260
11261 case DT_HASH:
11262 name = ".hash";
11263 goto get_vma;
fdc90cb4
JJ
11264 case DT_GNU_HASH:
11265 name = ".gnu.hash";
11266 goto get_vma;
c152c796
AM
11267 case DT_STRTAB:
11268 name = ".dynstr";
11269 goto get_vma;
11270 case DT_SYMTAB:
11271 name = ".dynsym";
11272 goto get_vma;
11273 case DT_VERDEF:
11274 name = ".gnu.version_d";
11275 goto get_vma;
11276 case DT_VERNEED:
11277 name = ".gnu.version_r";
11278 goto get_vma;
11279 case DT_VERSYM:
11280 name = ".gnu.version";
11281 get_vma:
11282 o = bfd_get_section_by_name (abfd, name);
11283 if (o == NULL)
11284 {
11285 (*_bfd_error_handler)
d003868e 11286 (_("%B: could not find output section %s"), abfd, name);
c152c796
AM
11287 goto error_return;
11288 }
894891db
NC
11289 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
11290 {
11291 (*_bfd_error_handler)
11292 (_("warning: section '%s' is being made into a note"), name);
11293 bfd_set_error (bfd_error_nonrepresentable_section);
11294 goto error_return;
11295 }
c152c796
AM
11296 dyn.d_un.d_ptr = o->vma;
11297 break;
11298
11299 case DT_REL:
11300 case DT_RELA:
11301 case DT_RELSZ:
11302 case DT_RELASZ:
11303 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
11304 type = SHT_REL;
11305 else
11306 type = SHT_RELA;
11307 dyn.d_un.d_val = 0;
bef26483 11308 dyn.d_un.d_ptr = 0;
c152c796
AM
11309 for (i = 1; i < elf_numsections (abfd); i++)
11310 {
11311 Elf_Internal_Shdr *hdr;
11312
11313 hdr = elf_elfsections (abfd)[i];
11314 if (hdr->sh_type == type
11315 && (hdr->sh_flags & SHF_ALLOC) != 0)
11316 {
11317 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
11318 dyn.d_un.d_val += hdr->sh_size;
11319 else
11320 {
bef26483
AM
11321 if (dyn.d_un.d_ptr == 0
11322 || hdr->sh_addr < dyn.d_un.d_ptr)
11323 dyn.d_un.d_ptr = hdr->sh_addr;
c152c796
AM
11324 }
11325 }
11326 }
11327 break;
11328 }
11329 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
11330 }
11331 }
11332
11333 /* If we have created any dynamic sections, then output them. */
11334 if (dynobj != NULL)
11335 {
11336 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
11337 goto error_return;
11338
943284cc 11339 /* Check for DT_TEXTREL (late, in case the backend removes it). */
be7b303d
AM
11340 if (((info->warn_shared_textrel && info->shared)
11341 || info->error_textrel)
3d4d4302 11342 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
943284cc
DJ
11343 {
11344 bfd_byte *dyncon, *dynconend;
11345
943284cc
DJ
11346 dyncon = o->contents;
11347 dynconend = o->contents + o->size;
11348 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11349 {
11350 Elf_Internal_Dyn dyn;
11351
11352 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11353
11354 if (dyn.d_tag == DT_TEXTREL)
11355 {
c192a133
AM
11356 if (info->error_textrel)
11357 info->callbacks->einfo
11358 (_("%P%X: read-only segment has dynamic relocations.\n"));
11359 else
11360 info->callbacks->einfo
11361 (_("%P: warning: creating a DT_TEXTREL in a shared object.\n"));
943284cc
DJ
11362 break;
11363 }
11364 }
11365 }
11366
c152c796
AM
11367 for (o = dynobj->sections; o != NULL; o = o->next)
11368 {
11369 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 11370 || o->size == 0
c152c796
AM
11371 || o->output_section == bfd_abs_section_ptr)
11372 continue;
11373 if ((o->flags & SEC_LINKER_CREATED) == 0)
11374 {
11375 /* At this point, we are only interested in sections
11376 created by _bfd_elf_link_create_dynamic_sections. */
11377 continue;
11378 }
3722b82f
AM
11379 if (elf_hash_table (info)->stab_info.stabstr == o)
11380 continue;
eea6121a
AM
11381 if (elf_hash_table (info)->eh_info.hdr_sec == o)
11382 continue;
3d4d4302 11383 if (strcmp (o->name, ".dynstr") != 0)
c152c796 11384 {
5dabe785 11385 /* FIXME: octets_per_byte. */
c152c796
AM
11386 if (! bfd_set_section_contents (abfd, o->output_section,
11387 o->contents,
11388 (file_ptr) o->output_offset,
eea6121a 11389 o->size))
c152c796
AM
11390 goto error_return;
11391 }
11392 else
11393 {
11394 /* The contents of the .dynstr section are actually in a
11395 stringtab. */
11396 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
11397 if (bfd_seek (abfd, off, SEEK_SET) != 0
11398 || ! _bfd_elf_strtab_emit (abfd,
11399 elf_hash_table (info)->dynstr))
11400 goto error_return;
11401 }
11402 }
11403 }
11404
11405 if (info->relocatable)
11406 {
11407 bfd_boolean failed = FALSE;
11408
11409 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
11410 if (failed)
11411 goto error_return;
11412 }
11413
11414 /* If we have optimized stabs strings, output them. */
3722b82f 11415 if (elf_hash_table (info)->stab_info.stabstr != NULL)
c152c796
AM
11416 {
11417 if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
11418 goto error_return;
11419 }
11420
11421 if (info->eh_frame_hdr)
11422 {
11423 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
11424 goto error_return;
11425 }
11426
8b127cbc
AM
11427 if (flinfo.symstrtab != NULL)
11428 _bfd_stringtab_free (flinfo.symstrtab);
11429 if (flinfo.contents != NULL)
11430 free (flinfo.contents);
11431 if (flinfo.external_relocs != NULL)
11432 free (flinfo.external_relocs);
11433 if (flinfo.internal_relocs != NULL)
11434 free (flinfo.internal_relocs);
11435 if (flinfo.external_syms != NULL)
11436 free (flinfo.external_syms);
11437 if (flinfo.locsym_shndx != NULL)
11438 free (flinfo.locsym_shndx);
11439 if (flinfo.internal_syms != NULL)
11440 free (flinfo.internal_syms);
11441 if (flinfo.indices != NULL)
11442 free (flinfo.indices);
11443 if (flinfo.sections != NULL)
11444 free (flinfo.sections);
11445 if (flinfo.symbuf != NULL)
11446 free (flinfo.symbuf);
11447 if (flinfo.symshndxbuf != NULL)
11448 free (flinfo.symshndxbuf);
c152c796
AM
11449 for (o = abfd->sections; o != NULL; o = o->next)
11450 {
d4730f92
BS
11451 struct bfd_elf_section_data *esdo = elf_section_data (o);
11452 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
11453 free (esdo->rel.hashes);
11454 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
11455 free (esdo->rela.hashes);
c152c796
AM
11456 }
11457
11458 elf_tdata (abfd)->linker = TRUE;
11459
104d59d1
JM
11460 if (attr_section)
11461 {
a50b1753 11462 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
104d59d1 11463 if (contents == NULL)
d0f16d5e 11464 return FALSE; /* Bail out and fail. */
104d59d1
JM
11465 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
11466 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
11467 free (contents);
11468 }
11469
c152c796
AM
11470 return TRUE;
11471
11472 error_return:
8b127cbc
AM
11473 if (flinfo.symstrtab != NULL)
11474 _bfd_stringtab_free (flinfo.symstrtab);
11475 if (flinfo.contents != NULL)
11476 free (flinfo.contents);
11477 if (flinfo.external_relocs != NULL)
11478 free (flinfo.external_relocs);
11479 if (flinfo.internal_relocs != NULL)
11480 free (flinfo.internal_relocs);
11481 if (flinfo.external_syms != NULL)
11482 free (flinfo.external_syms);
11483 if (flinfo.locsym_shndx != NULL)
11484 free (flinfo.locsym_shndx);
11485 if (flinfo.internal_syms != NULL)
11486 free (flinfo.internal_syms);
11487 if (flinfo.indices != NULL)
11488 free (flinfo.indices);
11489 if (flinfo.sections != NULL)
11490 free (flinfo.sections);
11491 if (flinfo.symbuf != NULL)
11492 free (flinfo.symbuf);
11493 if (flinfo.symshndxbuf != NULL)
11494 free (flinfo.symshndxbuf);
c152c796
AM
11495 for (o = abfd->sections; o != NULL; o = o->next)
11496 {
d4730f92
BS
11497 struct bfd_elf_section_data *esdo = elf_section_data (o);
11498 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
11499 free (esdo->rel.hashes);
11500 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
11501 free (esdo->rela.hashes);
c152c796
AM
11502 }
11503
11504 return FALSE;
11505}
11506\f
5241d853
RS
11507/* Initialize COOKIE for input bfd ABFD. */
11508
11509static bfd_boolean
11510init_reloc_cookie (struct elf_reloc_cookie *cookie,
11511 struct bfd_link_info *info, bfd *abfd)
11512{
11513 Elf_Internal_Shdr *symtab_hdr;
11514 const struct elf_backend_data *bed;
11515
11516 bed = get_elf_backend_data (abfd);
11517 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11518
11519 cookie->abfd = abfd;
11520 cookie->sym_hashes = elf_sym_hashes (abfd);
11521 cookie->bad_symtab = elf_bad_symtab (abfd);
11522 if (cookie->bad_symtab)
11523 {
11524 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
11525 cookie->extsymoff = 0;
11526 }
11527 else
11528 {
11529 cookie->locsymcount = symtab_hdr->sh_info;
11530 cookie->extsymoff = symtab_hdr->sh_info;
11531 }
11532
11533 if (bed->s->arch_size == 32)
11534 cookie->r_sym_shift = 8;
11535 else
11536 cookie->r_sym_shift = 32;
11537
11538 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
11539 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
11540 {
11541 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
11542 cookie->locsymcount, 0,
11543 NULL, NULL, NULL);
11544 if (cookie->locsyms == NULL)
11545 {
11546 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
11547 return FALSE;
11548 }
11549 if (info->keep_memory)
11550 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
11551 }
11552 return TRUE;
11553}
11554
11555/* Free the memory allocated by init_reloc_cookie, if appropriate. */
11556
11557static void
11558fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
11559{
11560 Elf_Internal_Shdr *symtab_hdr;
11561
11562 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11563 if (cookie->locsyms != NULL
11564 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
11565 free (cookie->locsyms);
11566}
11567
11568/* Initialize the relocation information in COOKIE for input section SEC
11569 of input bfd ABFD. */
11570
11571static bfd_boolean
11572init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11573 struct bfd_link_info *info, bfd *abfd,
11574 asection *sec)
11575{
11576 const struct elf_backend_data *bed;
11577
11578 if (sec->reloc_count == 0)
11579 {
11580 cookie->rels = NULL;
11581 cookie->relend = NULL;
11582 }
11583 else
11584 {
11585 bed = get_elf_backend_data (abfd);
11586
11587 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
11588 info->keep_memory);
11589 if (cookie->rels == NULL)
11590 return FALSE;
11591 cookie->rel = cookie->rels;
11592 cookie->relend = (cookie->rels
11593 + sec->reloc_count * bed->s->int_rels_per_ext_rel);
11594 }
11595 cookie->rel = cookie->rels;
11596 return TRUE;
11597}
11598
11599/* Free the memory allocated by init_reloc_cookie_rels,
11600 if appropriate. */
11601
11602static void
11603fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11604 asection *sec)
11605{
11606 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
11607 free (cookie->rels);
11608}
11609
11610/* Initialize the whole of COOKIE for input section SEC. */
11611
11612static bfd_boolean
11613init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11614 struct bfd_link_info *info,
11615 asection *sec)
11616{
11617 if (!init_reloc_cookie (cookie, info, sec->owner))
11618 goto error1;
11619 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
11620 goto error2;
11621 return TRUE;
11622
11623 error2:
11624 fini_reloc_cookie (cookie, sec->owner);
11625 error1:
11626 return FALSE;
11627}
11628
11629/* Free the memory allocated by init_reloc_cookie_for_section,
11630 if appropriate. */
11631
11632static void
11633fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11634 asection *sec)
11635{
11636 fini_reloc_cookie_rels (cookie, sec);
11637 fini_reloc_cookie (cookie, sec->owner);
11638}
11639\f
c152c796
AM
11640/* Garbage collect unused sections. */
11641
07adf181
AM
11642/* Default gc_mark_hook. */
11643
11644asection *
11645_bfd_elf_gc_mark_hook (asection *sec,
11646 struct bfd_link_info *info ATTRIBUTE_UNUSED,
11647 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
11648 struct elf_link_hash_entry *h,
11649 Elf_Internal_Sym *sym)
11650{
bde6f3eb
L
11651 const char *sec_name;
11652
07adf181
AM
11653 if (h != NULL)
11654 {
11655 switch (h->root.type)
11656 {
11657 case bfd_link_hash_defined:
11658 case bfd_link_hash_defweak:
11659 return h->root.u.def.section;
11660
11661 case bfd_link_hash_common:
11662 return h->root.u.c.p->section;
11663
bde6f3eb
L
11664 case bfd_link_hash_undefined:
11665 case bfd_link_hash_undefweak:
11666 /* To work around a glibc bug, keep all XXX input sections
11667 when there is an as yet undefined reference to __start_XXX
11668 or __stop_XXX symbols. The linker will later define such
11669 symbols for orphan input sections that have a name
11670 representable as a C identifier. */
11671 if (strncmp (h->root.root.string, "__start_", 8) == 0)
11672 sec_name = h->root.root.string + 8;
11673 else if (strncmp (h->root.root.string, "__stop_", 7) == 0)
11674 sec_name = h->root.root.string + 7;
11675 else
11676 sec_name = NULL;
11677
11678 if (sec_name && *sec_name != '\0')
11679 {
11680 bfd *i;
11681
11682 for (i = info->input_bfds; i; i = i->link_next)
11683 {
11684 sec = bfd_get_section_by_name (i, sec_name);
11685 if (sec)
11686 sec->flags |= SEC_KEEP;
11687 }
11688 }
11689 break;
11690
07adf181
AM
11691 default:
11692 break;
11693 }
11694 }
11695 else
11696 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
11697
11698 return NULL;
11699}
11700
5241d853
RS
11701/* COOKIE->rel describes a relocation against section SEC, which is
11702 a section we've decided to keep. Return the section that contains
11703 the relocation symbol, or NULL if no section contains it. */
11704
11705asection *
11706_bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
11707 elf_gc_mark_hook_fn gc_mark_hook,
11708 struct elf_reloc_cookie *cookie)
11709{
11710 unsigned long r_symndx;
11711 struct elf_link_hash_entry *h;
11712
11713 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
cf35638d 11714 if (r_symndx == STN_UNDEF)
5241d853
RS
11715 return NULL;
11716
11717 if (r_symndx >= cookie->locsymcount
11718 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
11719 {
11720 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
11721 while (h->root.type == bfd_link_hash_indirect
11722 || h->root.type == bfd_link_hash_warning)
11723 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1d5316ab 11724 h->mark = 1;
4e6b54a6
AM
11725 /* If this symbol is weak and there is a non-weak definition, we
11726 keep the non-weak definition because many backends put
11727 dynamic reloc info on the non-weak definition for code
11728 handling copy relocs. */
11729 if (h->u.weakdef != NULL)
11730 h->u.weakdef->mark = 1;
5241d853
RS
11731 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
11732 }
11733
11734 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
11735 &cookie->locsyms[r_symndx]);
11736}
11737
11738/* COOKIE->rel describes a relocation against section SEC, which is
11739 a section we've decided to keep. Mark the section that contains
9d0a14d3 11740 the relocation symbol. */
5241d853
RS
11741
11742bfd_boolean
11743_bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
11744 asection *sec,
11745 elf_gc_mark_hook_fn gc_mark_hook,
9d0a14d3 11746 struct elf_reloc_cookie *cookie)
5241d853
RS
11747{
11748 asection *rsec;
11749
11750 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
11751 if (rsec && !rsec->gc_mark)
11752 {
a66eed7a
AM
11753 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
11754 || (rsec->owner->flags & DYNAMIC) != 0)
5241d853 11755 rsec->gc_mark = 1;
5241d853
RS
11756 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
11757 return FALSE;
11758 }
11759 return TRUE;
11760}
11761
07adf181
AM
11762/* The mark phase of garbage collection. For a given section, mark
11763 it and any sections in this section's group, and all the sections
11764 which define symbols to which it refers. */
11765
ccfa59ea
AM
11766bfd_boolean
11767_bfd_elf_gc_mark (struct bfd_link_info *info,
11768 asection *sec,
6a5bb875 11769 elf_gc_mark_hook_fn gc_mark_hook)
c152c796
AM
11770{
11771 bfd_boolean ret;
9d0a14d3 11772 asection *group_sec, *eh_frame;
c152c796
AM
11773
11774 sec->gc_mark = 1;
11775
11776 /* Mark all the sections in the group. */
11777 group_sec = elf_section_data (sec)->next_in_group;
11778 if (group_sec && !group_sec->gc_mark)
ccfa59ea 11779 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
c152c796
AM
11780 return FALSE;
11781
11782 /* Look through the section relocs. */
11783 ret = TRUE;
9d0a14d3
RS
11784 eh_frame = elf_eh_frame_section (sec->owner);
11785 if ((sec->flags & SEC_RELOC) != 0
11786 && sec->reloc_count > 0
11787 && sec != eh_frame)
c152c796 11788 {
5241d853 11789 struct elf_reloc_cookie cookie;
c152c796 11790
5241d853
RS
11791 if (!init_reloc_cookie_for_section (&cookie, info, sec))
11792 ret = FALSE;
c152c796 11793 else
c152c796 11794 {
5241d853 11795 for (; cookie.rel < cookie.relend; cookie.rel++)
9d0a14d3 11796 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
5241d853
RS
11797 {
11798 ret = FALSE;
11799 break;
11800 }
11801 fini_reloc_cookie_for_section (&cookie, sec);
c152c796
AM
11802 }
11803 }
9d0a14d3
RS
11804
11805 if (ret && eh_frame && elf_fde_list (sec))
11806 {
11807 struct elf_reloc_cookie cookie;
11808
11809 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
11810 ret = FALSE;
11811 else
11812 {
11813 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
11814 gc_mark_hook, &cookie))
11815 ret = FALSE;
11816 fini_reloc_cookie_for_section (&cookie, eh_frame);
11817 }
11818 }
11819
c152c796
AM
11820 return ret;
11821}
11822
7f6ab9f8
AM
11823/* Keep debug and special sections. */
11824
11825bfd_boolean
11826_bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
11827 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
11828{
11829 bfd *ibfd;
11830
11831 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
11832 {
11833 asection *isec;
11834 bfd_boolean some_kept;
11835
11836 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
11837 continue;
11838
11839 /* Ensure all linker created sections are kept, and see whether
11840 any other section is already marked. */
11841 some_kept = FALSE;
11842 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11843 {
11844 if ((isec->flags & SEC_LINKER_CREATED) != 0)
11845 isec->gc_mark = 1;
11846 else if (isec->gc_mark)
11847 some_kept = TRUE;
11848 }
11849
11850 /* If no section in this file will be kept, then we can
11851 toss out debug sections. */
11852 if (!some_kept)
11853 continue;
11854
11855 /* Keep debug and special sections like .comment when they are
c227efa6 11856 not part of a group, or when we have single-member groups. */
7f6ab9f8 11857 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
c227efa6
AM
11858 if ((elf_next_in_group (isec) == NULL
11859 || elf_next_in_group (isec) == isec)
7f6ab9f8
AM
11860 && ((isec->flags & SEC_DEBUGGING) != 0
11861 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0))
11862 isec->gc_mark = 1;
11863 }
11864 return TRUE;
11865}
11866
c152c796
AM
11867/* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
11868
c17d87de
NC
11869struct elf_gc_sweep_symbol_info
11870{
ccabcbe5
AM
11871 struct bfd_link_info *info;
11872 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
11873 bfd_boolean);
11874};
11875
c152c796 11876static bfd_boolean
ccabcbe5 11877elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
c152c796 11878{
1d5316ab
AM
11879 if (!h->mark
11880 && (((h->root.type == bfd_link_hash_defined
11881 || h->root.type == bfd_link_hash_defweak)
6673f753
AM
11882 && !(h->def_regular
11883 && h->root.u.def.section->gc_mark))
1d5316ab
AM
11884 || h->root.type == bfd_link_hash_undefined
11885 || h->root.type == bfd_link_hash_undefweak))
11886 {
11887 struct elf_gc_sweep_symbol_info *inf;
11888
11889 inf = (struct elf_gc_sweep_symbol_info *) data;
ccabcbe5 11890 (*inf->hide_symbol) (inf->info, h, TRUE);
1d5316ab
AM
11891 h->def_regular = 0;
11892 h->ref_regular = 0;
11893 h->ref_regular_nonweak = 0;
ccabcbe5 11894 }
c152c796
AM
11895
11896 return TRUE;
11897}
11898
11899/* The sweep phase of garbage collection. Remove all garbage sections. */
11900
11901typedef bfd_boolean (*gc_sweep_hook_fn)
11902 (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
11903
11904static bfd_boolean
ccabcbe5 11905elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
c152c796
AM
11906{
11907 bfd *sub;
ccabcbe5
AM
11908 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11909 gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
11910 unsigned long section_sym_count;
11911 struct elf_gc_sweep_symbol_info sweep_info;
c152c796
AM
11912
11913 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
11914 {
11915 asection *o;
11916
11917 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
11918 continue;
11919
11920 for (o = sub->sections; o != NULL; o = o->next)
11921 {
a33dafc3
L
11922 /* When any section in a section group is kept, we keep all
11923 sections in the section group. If the first member of
11924 the section group is excluded, we will also exclude the
11925 group section. */
11926 if (o->flags & SEC_GROUP)
11927 {
11928 asection *first = elf_next_in_group (o);
11929 o->gc_mark = first->gc_mark;
11930 }
c152c796
AM
11931
11932 if (o->gc_mark)
11933 continue;
11934
11935 /* Skip sweeping sections already excluded. */
11936 if (o->flags & SEC_EXCLUDE)
11937 continue;
11938
11939 /* Since this is early in the link process, it is simple
11940 to remove a section from the output. */
11941 o->flags |= SEC_EXCLUDE;
11942
c55fe096 11943 if (info->print_gc_sections && o->size != 0)
c17d87de
NC
11944 _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name);
11945
c152c796
AM
11946 /* But we also have to update some of the relocation
11947 info we collected before. */
11948 if (gc_sweep_hook
e8aaee2a
AM
11949 && (o->flags & SEC_RELOC) != 0
11950 && o->reloc_count > 0
11951 && !bfd_is_abs_section (o->output_section))
c152c796
AM
11952 {
11953 Elf_Internal_Rela *internal_relocs;
11954 bfd_boolean r;
11955
11956 internal_relocs
11957 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
11958 info->keep_memory);
11959 if (internal_relocs == NULL)
11960 return FALSE;
11961
11962 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
11963
11964 if (elf_section_data (o)->relocs != internal_relocs)
11965 free (internal_relocs);
11966
11967 if (!r)
11968 return FALSE;
11969 }
11970 }
11971 }
11972
11973 /* Remove the symbols that were in the swept sections from the dynamic
11974 symbol table. GCFIXME: Anyone know how to get them out of the
11975 static symbol table as well? */
ccabcbe5
AM
11976 sweep_info.info = info;
11977 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
11978 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
11979 &sweep_info);
c152c796 11980
ccabcbe5 11981 _bfd_elf_link_renumber_dynsyms (abfd, info, &section_sym_count);
c152c796
AM
11982 return TRUE;
11983}
11984
11985/* Propagate collected vtable information. This is called through
11986 elf_link_hash_traverse. */
11987
11988static bfd_boolean
11989elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
11990{
c152c796 11991 /* Those that are not vtables. */
f6e332e6 11992 if (h->vtable == NULL || h->vtable->parent == NULL)
c152c796
AM
11993 return TRUE;
11994
11995 /* Those vtables that do not have parents, we cannot merge. */
f6e332e6 11996 if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
c152c796
AM
11997 return TRUE;
11998
11999 /* If we've already been done, exit. */
f6e332e6 12000 if (h->vtable->used && h->vtable->used[-1])
c152c796
AM
12001 return TRUE;
12002
12003 /* Make sure the parent's table is up to date. */
f6e332e6 12004 elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
c152c796 12005
f6e332e6 12006 if (h->vtable->used == NULL)
c152c796
AM
12007 {
12008 /* None of this table's entries were referenced. Re-use the
12009 parent's table. */
f6e332e6
AM
12010 h->vtable->used = h->vtable->parent->vtable->used;
12011 h->vtable->size = h->vtable->parent->vtable->size;
c152c796
AM
12012 }
12013 else
12014 {
12015 size_t n;
12016 bfd_boolean *cu, *pu;
12017
12018 /* Or the parent's entries into ours. */
f6e332e6 12019 cu = h->vtable->used;
c152c796 12020 cu[-1] = TRUE;
f6e332e6 12021 pu = h->vtable->parent->vtable->used;
c152c796
AM
12022 if (pu != NULL)
12023 {
12024 const struct elf_backend_data *bed;
12025 unsigned int log_file_align;
12026
12027 bed = get_elf_backend_data (h->root.u.def.section->owner);
12028 log_file_align = bed->s->log_file_align;
f6e332e6 12029 n = h->vtable->parent->vtable->size >> log_file_align;
c152c796
AM
12030 while (n--)
12031 {
12032 if (*pu)
12033 *cu = TRUE;
12034 pu++;
12035 cu++;
12036 }
12037 }
12038 }
12039
12040 return TRUE;
12041}
12042
12043static bfd_boolean
12044elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
12045{
12046 asection *sec;
12047 bfd_vma hstart, hend;
12048 Elf_Internal_Rela *relstart, *relend, *rel;
12049 const struct elf_backend_data *bed;
12050 unsigned int log_file_align;
12051
c152c796
AM
12052 /* Take care of both those symbols that do not describe vtables as
12053 well as those that are not loaded. */
f6e332e6 12054 if (h->vtable == NULL || h->vtable->parent == NULL)
c152c796
AM
12055 return TRUE;
12056
12057 BFD_ASSERT (h->root.type == bfd_link_hash_defined
12058 || h->root.type == bfd_link_hash_defweak);
12059
12060 sec = h->root.u.def.section;
12061 hstart = h->root.u.def.value;
12062 hend = hstart + h->size;
12063
12064 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
12065 if (!relstart)
12066 return *(bfd_boolean *) okp = FALSE;
12067 bed = get_elf_backend_data (sec->owner);
12068 log_file_align = bed->s->log_file_align;
12069
12070 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
12071
12072 for (rel = relstart; rel < relend; ++rel)
12073 if (rel->r_offset >= hstart && rel->r_offset < hend)
12074 {
12075 /* If the entry is in use, do nothing. */
f6e332e6
AM
12076 if (h->vtable->used
12077 && (rel->r_offset - hstart) < h->vtable->size)
c152c796
AM
12078 {
12079 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
f6e332e6 12080 if (h->vtable->used[entry])
c152c796
AM
12081 continue;
12082 }
12083 /* Otherwise, kill it. */
12084 rel->r_offset = rel->r_info = rel->r_addend = 0;
12085 }
12086
12087 return TRUE;
12088}
12089
87538722
AM
12090/* Mark sections containing dynamically referenced symbols. When
12091 building shared libraries, we must assume that any visible symbol is
12092 referenced. */
715df9b8 12093
64d03ab5
AM
12094bfd_boolean
12095bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
715df9b8 12096{
87538722
AM
12097 struct bfd_link_info *info = (struct bfd_link_info *) inf;
12098
715df9b8
EB
12099 if ((h->root.type == bfd_link_hash_defined
12100 || h->root.type == bfd_link_hash_defweak)
87538722 12101 && (h->ref_dynamic
409ff343 12102 || ((!info->executable || info->export_dynamic)
87538722
AM
12103 && h->def_regular
12104 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
fd91d419 12105 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
54e8959c
L
12106 && (strchr (h->root.root.string, ELF_VER_CHR) != NULL
12107 || !bfd_hide_sym_by_version (info->version_info,
12108 h->root.root.string)))))
715df9b8
EB
12109 h->root.u.def.section->flags |= SEC_KEEP;
12110
12111 return TRUE;
12112}
3b36f7e6 12113
74f0fb50
AM
12114/* Keep all sections containing symbols undefined on the command-line,
12115 and the section containing the entry symbol. */
12116
12117void
12118_bfd_elf_gc_keep (struct bfd_link_info *info)
12119{
12120 struct bfd_sym_chain *sym;
12121
12122 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
12123 {
12124 struct elf_link_hash_entry *h;
12125
12126 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
12127 FALSE, FALSE, FALSE);
12128
12129 if (h != NULL
12130 && (h->root.type == bfd_link_hash_defined
12131 || h->root.type == bfd_link_hash_defweak)
12132 && !bfd_is_abs_section (h->root.u.def.section))
12133 h->root.u.def.section->flags |= SEC_KEEP;
12134 }
12135}
12136
c152c796
AM
12137/* Do mark and sweep of unused sections. */
12138
12139bfd_boolean
12140bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
12141{
12142 bfd_boolean ok = TRUE;
12143 bfd *sub;
6a5bb875 12144 elf_gc_mark_hook_fn gc_mark_hook;
64d03ab5 12145 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
c152c796 12146
64d03ab5 12147 if (!bed->can_gc_sections
715df9b8 12148 || !is_elf_hash_table (info->hash))
c152c796
AM
12149 {
12150 (*_bfd_error_handler)(_("Warning: gc-sections option ignored"));
12151 return TRUE;
12152 }
12153
74f0fb50
AM
12154 bed->gc_keep (info);
12155
9d0a14d3
RS
12156 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
12157 at the .eh_frame section if we can mark the FDEs individually. */
12158 _bfd_elf_begin_eh_frame_parsing (info);
12159 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
12160 {
12161 asection *sec;
12162 struct elf_reloc_cookie cookie;
12163
12164 sec = bfd_get_section_by_name (sub, ".eh_frame");
9a2a56cc 12165 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
9d0a14d3
RS
12166 {
12167 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
9a2a56cc
AM
12168 if (elf_section_data (sec)->sec_info
12169 && (sec->flags & SEC_LINKER_CREATED) == 0)
9d0a14d3
RS
12170 elf_eh_frame_section (sub) = sec;
12171 fini_reloc_cookie_for_section (&cookie, sec);
9a2a56cc 12172 sec = bfd_get_next_section_by_name (sec);
9d0a14d3
RS
12173 }
12174 }
12175 _bfd_elf_end_eh_frame_parsing (info);
12176
c152c796
AM
12177 /* Apply transitive closure to the vtable entry usage info. */
12178 elf_link_hash_traverse (elf_hash_table (info),
12179 elf_gc_propagate_vtable_entries_used,
12180 &ok);
12181 if (!ok)
12182 return FALSE;
12183
12184 /* Kill the vtable relocations that were not used. */
12185 elf_link_hash_traverse (elf_hash_table (info),
12186 elf_gc_smash_unused_vtentry_relocs,
12187 &ok);
12188 if (!ok)
12189 return FALSE;
12190
715df9b8
EB
12191 /* Mark dynamically referenced symbols. */
12192 if (elf_hash_table (info)->dynamic_sections_created)
12193 elf_link_hash_traverse (elf_hash_table (info),
64d03ab5 12194 bed->gc_mark_dynamic_ref,
87538722 12195 info);
c152c796 12196
715df9b8 12197 /* Grovel through relocs to find out who stays ... */
64d03ab5 12198 gc_mark_hook = bed->gc_mark_hook;
c152c796
AM
12199 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
12200 {
12201 asection *o;
12202
12203 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
12204 continue;
12205
7f6ab9f8
AM
12206 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
12207 Also treat note sections as a root, if the section is not part
12208 of a group. */
c152c796 12209 for (o = sub->sections; o != NULL; o = o->next)
7f6ab9f8
AM
12210 if (!o->gc_mark
12211 && (o->flags & SEC_EXCLUDE) == 0
24007750 12212 && ((o->flags & SEC_KEEP) != 0
7f6ab9f8
AM
12213 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
12214 && elf_next_in_group (o) == NULL )))
12215 {
12216 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
12217 return FALSE;
12218 }
c152c796
AM
12219 }
12220
6a5bb875 12221 /* Allow the backend to mark additional target specific sections. */
7f6ab9f8 12222 bed->gc_mark_extra_sections (info, gc_mark_hook);
6a5bb875 12223
c152c796 12224 /* ... and mark SEC_EXCLUDE for those that go. */
ccabcbe5 12225 return elf_gc_sweep (abfd, info);
c152c796
AM
12226}
12227\f
12228/* Called from check_relocs to record the existence of a VTINHERIT reloc. */
12229
12230bfd_boolean
12231bfd_elf_gc_record_vtinherit (bfd *abfd,
12232 asection *sec,
12233 struct elf_link_hash_entry *h,
12234 bfd_vma offset)
12235{
12236 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
12237 struct elf_link_hash_entry **search, *child;
12238 bfd_size_type extsymcount;
12239 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12240
12241 /* The sh_info field of the symtab header tells us where the
12242 external symbols start. We don't care about the local symbols at
12243 this point. */
12244 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
12245 if (!elf_bad_symtab (abfd))
12246 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
12247
12248 sym_hashes = elf_sym_hashes (abfd);
12249 sym_hashes_end = sym_hashes + extsymcount;
12250
12251 /* Hunt down the child symbol, which is in this section at the same
12252 offset as the relocation. */
12253 for (search = sym_hashes; search != sym_hashes_end; ++search)
12254 {
12255 if ((child = *search) != NULL
12256 && (child->root.type == bfd_link_hash_defined
12257 || child->root.type == bfd_link_hash_defweak)
12258 && child->root.u.def.section == sec
12259 && child->root.u.def.value == offset)
12260 goto win;
12261 }
12262
d003868e
AM
12263 (*_bfd_error_handler) ("%B: %A+%lu: No symbol found for INHERIT",
12264 abfd, sec, (unsigned long) offset);
c152c796
AM
12265 bfd_set_error (bfd_error_invalid_operation);
12266 return FALSE;
12267
12268 win:
f6e332e6
AM
12269 if (!child->vtable)
12270 {
a50b1753
NC
12271 child->vtable = (struct elf_link_virtual_table_entry *)
12272 bfd_zalloc (abfd, sizeof (*child->vtable));
f6e332e6
AM
12273 if (!child->vtable)
12274 return FALSE;
12275 }
c152c796
AM
12276 if (!h)
12277 {
12278 /* This *should* only be the absolute section. It could potentially
12279 be that someone has defined a non-global vtable though, which
12280 would be bad. It isn't worth paging in the local symbols to be
12281 sure though; that case should simply be handled by the assembler. */
12282
f6e332e6 12283 child->vtable->parent = (struct elf_link_hash_entry *) -1;
c152c796
AM
12284 }
12285 else
f6e332e6 12286 child->vtable->parent = h;
c152c796
AM
12287
12288 return TRUE;
12289}
12290
12291/* Called from check_relocs to record the existence of a VTENTRY reloc. */
12292
12293bfd_boolean
12294bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
12295 asection *sec ATTRIBUTE_UNUSED,
12296 struct elf_link_hash_entry *h,
12297 bfd_vma addend)
12298{
12299 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12300 unsigned int log_file_align = bed->s->log_file_align;
12301
f6e332e6
AM
12302 if (!h->vtable)
12303 {
a50b1753
NC
12304 h->vtable = (struct elf_link_virtual_table_entry *)
12305 bfd_zalloc (abfd, sizeof (*h->vtable));
f6e332e6
AM
12306 if (!h->vtable)
12307 return FALSE;
12308 }
12309
12310 if (addend >= h->vtable->size)
c152c796
AM
12311 {
12312 size_t size, bytes, file_align;
f6e332e6 12313 bfd_boolean *ptr = h->vtable->used;
c152c796
AM
12314
12315 /* While the symbol is undefined, we have to be prepared to handle
12316 a zero size. */
12317 file_align = 1 << log_file_align;
12318 if (h->root.type == bfd_link_hash_undefined)
12319 size = addend + file_align;
12320 else
12321 {
12322 size = h->size;
12323 if (addend >= size)
12324 {
12325 /* Oops! We've got a reference past the defined end of
12326 the table. This is probably a bug -- shall we warn? */
12327 size = addend + file_align;
12328 }
12329 }
12330 size = (size + file_align - 1) & -file_align;
12331
12332 /* Allocate one extra entry for use as a "done" flag for the
12333 consolidation pass. */
12334 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
12335
12336 if (ptr)
12337 {
a50b1753 12338 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
c152c796
AM
12339
12340 if (ptr != NULL)
12341 {
12342 size_t oldbytes;
12343
f6e332e6 12344 oldbytes = (((h->vtable->size >> log_file_align) + 1)
c152c796
AM
12345 * sizeof (bfd_boolean));
12346 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
12347 }
12348 }
12349 else
a50b1753 12350 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
c152c796
AM
12351
12352 if (ptr == NULL)
12353 return FALSE;
12354
12355 /* And arrange for that done flag to be at index -1. */
f6e332e6
AM
12356 h->vtable->used = ptr + 1;
12357 h->vtable->size = size;
c152c796
AM
12358 }
12359
f6e332e6 12360 h->vtable->used[addend >> log_file_align] = TRUE;
c152c796
AM
12361
12362 return TRUE;
12363}
12364
ae17ab41
CM
12365/* Map an ELF section header flag to its corresponding string. */
12366typedef struct
12367{
12368 char *flag_name;
12369 flagword flag_value;
12370} elf_flags_to_name_table;
12371
12372static elf_flags_to_name_table elf_flags_to_names [] =
12373{
12374 { "SHF_WRITE", SHF_WRITE },
12375 { "SHF_ALLOC", SHF_ALLOC },
12376 { "SHF_EXECINSTR", SHF_EXECINSTR },
12377 { "SHF_MERGE", SHF_MERGE },
12378 { "SHF_STRINGS", SHF_STRINGS },
12379 { "SHF_INFO_LINK", SHF_INFO_LINK},
12380 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
12381 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
12382 { "SHF_GROUP", SHF_GROUP },
12383 { "SHF_TLS", SHF_TLS },
12384 { "SHF_MASKOS", SHF_MASKOS },
12385 { "SHF_EXCLUDE", SHF_EXCLUDE },
12386};
12387
b9c361e0
JL
12388/* Returns TRUE if the section is to be included, otherwise FALSE. */
12389bfd_boolean
ae17ab41 12390bfd_elf_lookup_section_flags (struct bfd_link_info *info,
8b127cbc 12391 struct flag_info *flaginfo,
b9c361e0 12392 asection *section)
ae17ab41 12393{
8b127cbc 12394 const bfd_vma sh_flags = elf_section_flags (section);
ae17ab41 12395
8b127cbc 12396 if (!flaginfo->flags_initialized)
ae17ab41 12397 {
8b127cbc
AM
12398 bfd *obfd = info->output_bfd;
12399 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12400 struct flag_info_list *tf = flaginfo->flag_list;
b9c361e0
JL
12401 int with_hex = 0;
12402 int without_hex = 0;
12403
8b127cbc 12404 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
ae17ab41 12405 {
b9c361e0 12406 unsigned i;
8b127cbc 12407 flagword (*lookup) (char *);
ae17ab41 12408
8b127cbc
AM
12409 lookup = bed->elf_backend_lookup_section_flags_hook;
12410 if (lookup != NULL)
ae17ab41 12411 {
8b127cbc 12412 flagword hexval = (*lookup) ((char *) tf->name);
b9c361e0
JL
12413
12414 if (hexval != 0)
12415 {
12416 if (tf->with == with_flags)
12417 with_hex |= hexval;
12418 else if (tf->with == without_flags)
12419 without_hex |= hexval;
12420 tf->valid = TRUE;
12421 continue;
12422 }
ae17ab41 12423 }
8b127cbc 12424 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
ae17ab41 12425 {
8b127cbc 12426 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
b9c361e0
JL
12427 {
12428 if (tf->with == with_flags)
12429 with_hex |= elf_flags_to_names[i].flag_value;
12430 else if (tf->with == without_flags)
12431 without_hex |= elf_flags_to_names[i].flag_value;
12432 tf->valid = TRUE;
12433 break;
12434 }
12435 }
8b127cbc 12436 if (!tf->valid)
b9c361e0
JL
12437 {
12438 info->callbacks->einfo
8b127cbc 12439 (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
b9c361e0 12440 return FALSE;
ae17ab41
CM
12441 }
12442 }
8b127cbc
AM
12443 flaginfo->flags_initialized = TRUE;
12444 flaginfo->only_with_flags |= with_hex;
12445 flaginfo->not_with_flags |= without_hex;
ae17ab41 12446 }
ae17ab41 12447
8b127cbc 12448 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
b9c361e0
JL
12449 return FALSE;
12450
8b127cbc 12451 if ((flaginfo->not_with_flags & sh_flags) != 0)
b9c361e0
JL
12452 return FALSE;
12453
12454 return TRUE;
ae17ab41
CM
12455}
12456
c152c796
AM
12457struct alloc_got_off_arg {
12458 bfd_vma gotoff;
10455f89 12459 struct bfd_link_info *info;
c152c796
AM
12460};
12461
12462/* We need a special top-level link routine to convert got reference counts
12463 to real got offsets. */
12464
12465static bfd_boolean
12466elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
12467{
a50b1753 12468 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
10455f89
HPN
12469 bfd *obfd = gofarg->info->output_bfd;
12470 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
c152c796 12471
c152c796
AM
12472 if (h->got.refcount > 0)
12473 {
12474 h->got.offset = gofarg->gotoff;
10455f89 12475 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
c152c796
AM
12476 }
12477 else
12478 h->got.offset = (bfd_vma) -1;
12479
12480 return TRUE;
12481}
12482
12483/* And an accompanying bit to work out final got entry offsets once
12484 we're done. Should be called from final_link. */
12485
12486bfd_boolean
12487bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
12488 struct bfd_link_info *info)
12489{
12490 bfd *i;
12491 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12492 bfd_vma gotoff;
c152c796
AM
12493 struct alloc_got_off_arg gofarg;
12494
10455f89
HPN
12495 BFD_ASSERT (abfd == info->output_bfd);
12496
c152c796
AM
12497 if (! is_elf_hash_table (info->hash))
12498 return FALSE;
12499
12500 /* The GOT offset is relative to the .got section, but the GOT header is
12501 put into the .got.plt section, if the backend uses it. */
12502 if (bed->want_got_plt)
12503 gotoff = 0;
12504 else
12505 gotoff = bed->got_header_size;
12506
12507 /* Do the local .got entries first. */
12508 for (i = info->input_bfds; i; i = i->link_next)
12509 {
12510 bfd_signed_vma *local_got;
12511 bfd_size_type j, locsymcount;
12512 Elf_Internal_Shdr *symtab_hdr;
12513
12514 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
12515 continue;
12516
12517 local_got = elf_local_got_refcounts (i);
12518 if (!local_got)
12519 continue;
12520
12521 symtab_hdr = &elf_tdata (i)->symtab_hdr;
12522 if (elf_bad_symtab (i))
12523 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12524 else
12525 locsymcount = symtab_hdr->sh_info;
12526
12527 for (j = 0; j < locsymcount; ++j)
12528 {
12529 if (local_got[j] > 0)
12530 {
12531 local_got[j] = gotoff;
10455f89 12532 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
c152c796
AM
12533 }
12534 else
12535 local_got[j] = (bfd_vma) -1;
12536 }
12537 }
12538
12539 /* Then the global .got entries. .plt refcounts are handled by
12540 adjust_dynamic_symbol */
12541 gofarg.gotoff = gotoff;
10455f89 12542 gofarg.info = info;
c152c796
AM
12543 elf_link_hash_traverse (elf_hash_table (info),
12544 elf_gc_allocate_got_offsets,
12545 &gofarg);
12546 return TRUE;
12547}
12548
12549/* Many folk need no more in the way of final link than this, once
12550 got entry reference counting is enabled. */
12551
12552bfd_boolean
12553bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
12554{
12555 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
12556 return FALSE;
12557
12558 /* Invoke the regular ELF backend linker to do all the work. */
12559 return bfd_elf_final_link (abfd, info);
12560}
12561
12562bfd_boolean
12563bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
12564{
a50b1753 12565 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
c152c796
AM
12566
12567 if (rcookie->bad_symtab)
12568 rcookie->rel = rcookie->rels;
12569
12570 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
12571 {
12572 unsigned long r_symndx;
12573
12574 if (! rcookie->bad_symtab)
12575 if (rcookie->rel->r_offset > offset)
12576 return FALSE;
12577 if (rcookie->rel->r_offset != offset)
12578 continue;
12579
12580 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
2c2fa401 12581 if (r_symndx == STN_UNDEF)
c152c796
AM
12582 return TRUE;
12583
12584 if (r_symndx >= rcookie->locsymcount
12585 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12586 {
12587 struct elf_link_hash_entry *h;
12588
12589 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
12590
12591 while (h->root.type == bfd_link_hash_indirect
12592 || h->root.type == bfd_link_hash_warning)
12593 h = (struct elf_link_hash_entry *) h->root.u.i.link;
12594
12595 if ((h->root.type == bfd_link_hash_defined
12596 || h->root.type == bfd_link_hash_defweak)
dbaa2011 12597 && discarded_section (h->root.u.def.section))
c152c796
AM
12598 return TRUE;
12599 else
12600 return FALSE;
12601 }
12602 else
12603 {
12604 /* It's not a relocation against a global symbol,
12605 but it could be a relocation against a local
12606 symbol for a discarded section. */
12607 asection *isec;
12608 Elf_Internal_Sym *isym;
12609
12610 /* Need to: get the symbol; get the section. */
12611 isym = &rcookie->locsyms[r_symndx];
cb33740c 12612 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
dbaa2011 12613 if (isec != NULL && discarded_section (isec))
cb33740c 12614 return TRUE;
c152c796
AM
12615 }
12616 return FALSE;
12617 }
12618 return FALSE;
12619}
12620
12621/* Discard unneeded references to discarded sections.
12622 Returns TRUE if any section's size was changed. */
12623/* This function assumes that the relocations are in sorted order,
12624 which is true for all known assemblers. */
12625
12626bfd_boolean
12627bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
12628{
12629 struct elf_reloc_cookie cookie;
12630 asection *stab, *eh;
c152c796
AM
12631 const struct elf_backend_data *bed;
12632 bfd *abfd;
c152c796
AM
12633 bfd_boolean ret = FALSE;
12634
12635 if (info->traditional_format
12636 || !is_elf_hash_table (info->hash))
12637 return FALSE;
12638
ca92cecb 12639 _bfd_elf_begin_eh_frame_parsing (info);
c152c796
AM
12640 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
12641 {
12642 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12643 continue;
12644
12645 bed = get_elf_backend_data (abfd);
12646
8da3dbc5
AM
12647 eh = NULL;
12648 if (!info->relocatable)
12649 {
12650 eh = bfd_get_section_by_name (abfd, ".eh_frame");
7e01508c
AM
12651 while (eh != NULL
12652 && (eh->size == 0
12653 || bfd_is_abs_section (eh->output_section)))
12654 eh = bfd_get_next_section_by_name (eh);
8da3dbc5 12655 }
c152c796
AM
12656
12657 stab = bfd_get_section_by_name (abfd, ".stab");
12658 if (stab != NULL
eea6121a 12659 && (stab->size == 0
c152c796 12660 || bfd_is_abs_section (stab->output_section)
dbaa2011 12661 || stab->sec_info_type != SEC_INFO_TYPE_STABS))
c152c796
AM
12662 stab = NULL;
12663
12664 if (stab == NULL
12665 && eh == NULL
12666 && bed->elf_backend_discard_info == NULL)
12667 continue;
12668
5241d853
RS
12669 if (!init_reloc_cookie (&cookie, info, abfd))
12670 return FALSE;
c152c796 12671
5241d853
RS
12672 if (stab != NULL
12673 && stab->reloc_count > 0
12674 && init_reloc_cookie_rels (&cookie, info, abfd, stab))
c152c796 12675 {
5241d853
RS
12676 if (_bfd_discard_section_stabs (abfd, stab,
12677 elf_section_data (stab)->sec_info,
12678 bfd_elf_reloc_symbol_deleted_p,
12679 &cookie))
12680 ret = TRUE;
12681 fini_reloc_cookie_rels (&cookie, stab);
c152c796
AM
12682 }
12683
90061c33
AM
12684 while (eh != NULL
12685 && init_reloc_cookie_rels (&cookie, info, abfd, eh))
c152c796 12686 {
ca92cecb 12687 _bfd_elf_parse_eh_frame (abfd, info, eh, &cookie);
c152c796
AM
12688 if (_bfd_elf_discard_section_eh_frame (abfd, info, eh,
12689 bfd_elf_reloc_symbol_deleted_p,
12690 &cookie))
12691 ret = TRUE;
5241d853 12692 fini_reloc_cookie_rels (&cookie, eh);
90061c33 12693 eh = bfd_get_next_section_by_name (eh);
c152c796
AM
12694 }
12695
12696 if (bed->elf_backend_discard_info != NULL
12697 && (*bed->elf_backend_discard_info) (abfd, &cookie, info))
12698 ret = TRUE;
12699
5241d853 12700 fini_reloc_cookie (&cookie, abfd);
c152c796 12701 }
ca92cecb 12702 _bfd_elf_end_eh_frame_parsing (info);
c152c796
AM
12703
12704 if (info->eh_frame_hdr
12705 && !info->relocatable
12706 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
12707 ret = TRUE;
12708
12709 return ret;
12710}
082b7297 12711
43e1669b 12712bfd_boolean
0c511000 12713_bfd_elf_section_already_linked (bfd *abfd,
c77ec726 12714 asection *sec,
c0f00686 12715 struct bfd_link_info *info)
082b7297
L
12716{
12717 flagword flags;
c77ec726 12718 const char *name, *key;
082b7297
L
12719 struct bfd_section_already_linked *l;
12720 struct bfd_section_already_linked_hash_entry *already_linked_list;
0c511000 12721
c77ec726
AM
12722 if (sec->output_section == bfd_abs_section_ptr)
12723 return FALSE;
0c511000 12724
c77ec726 12725 flags = sec->flags;
0c511000 12726
c77ec726
AM
12727 /* Return if it isn't a linkonce section. A comdat group section
12728 also has SEC_LINK_ONCE set. */
12729 if ((flags & SEC_LINK_ONCE) == 0)
12730 return FALSE;
0c511000 12731
c77ec726
AM
12732 /* Don't put group member sections on our list of already linked
12733 sections. They are handled as a group via their group section. */
12734 if (elf_sec_group (sec) != NULL)
12735 return FALSE;
0c511000 12736
c77ec726
AM
12737 /* For a SHT_GROUP section, use the group signature as the key. */
12738 name = sec->name;
12739 if ((flags & SEC_GROUP) != 0
12740 && elf_next_in_group (sec) != NULL
12741 && elf_group_name (elf_next_in_group (sec)) != NULL)
12742 key = elf_group_name (elf_next_in_group (sec));
12743 else
12744 {
12745 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
0c511000 12746 if (CONST_STRNEQ (name, ".gnu.linkonce.")
c77ec726
AM
12747 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
12748 key++;
0c511000 12749 else
c77ec726
AM
12750 /* Must be a user linkonce section that doesn't follow gcc's
12751 naming convention. In this case we won't be matching
12752 single member groups. */
12753 key = name;
0c511000 12754 }
6d2cd210 12755
c77ec726 12756 already_linked_list = bfd_section_already_linked_table_lookup (key);
082b7297
L
12757
12758 for (l = already_linked_list->entry; l != NULL; l = l->next)
12759 {
c2370991 12760 /* We may have 2 different types of sections on the list: group
c77ec726
AM
12761 sections with a signature of <key> (<key> is some string),
12762 and linkonce sections named .gnu.linkonce.<type>.<key>.
12763 Match like sections. LTO plugin sections are an exception.
12764 They are always named .gnu.linkonce.t.<key> and match either
12765 type of section. */
12766 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
12767 && ((flags & SEC_GROUP) != 0
12768 || strcmp (name, l->sec->name) == 0))
12769 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
082b7297
L
12770 {
12771 /* The section has already been linked. See if we should
6d2cd210 12772 issue a warning. */
c77ec726
AM
12773 if (!_bfd_handle_already_linked (sec, l, info))
12774 return FALSE;
082b7297 12775
c77ec726 12776 if (flags & SEC_GROUP)
3d7f7666 12777 {
c77ec726
AM
12778 asection *first = elf_next_in_group (sec);
12779 asection *s = first;
3d7f7666 12780
c77ec726 12781 while (s != NULL)
3d7f7666 12782 {
c77ec726
AM
12783 s->output_section = bfd_abs_section_ptr;
12784 /* Record which group discards it. */
12785 s->kept_section = l->sec;
12786 s = elf_next_in_group (s);
12787 /* These lists are circular. */
12788 if (s == first)
12789 break;
3d7f7666
L
12790 }
12791 }
082b7297 12792
43e1669b 12793 return TRUE;
082b7297
L
12794 }
12795 }
12796
c77ec726
AM
12797 /* A single member comdat group section may be discarded by a
12798 linkonce section and vice versa. */
12799 if ((flags & SEC_GROUP) != 0)
3d7f7666 12800 {
c77ec726 12801 asection *first = elf_next_in_group (sec);
c2370991 12802
c77ec726
AM
12803 if (first != NULL && elf_next_in_group (first) == first)
12804 /* Check this single member group against linkonce sections. */
12805 for (l = already_linked_list->entry; l != NULL; l = l->next)
12806 if ((l->sec->flags & SEC_GROUP) == 0
12807 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
12808 {
12809 first->output_section = bfd_abs_section_ptr;
12810 first->kept_section = l->sec;
12811 sec->output_section = bfd_abs_section_ptr;
12812 break;
12813 }
12814 }
12815 else
12816 /* Check this linkonce section against single member groups. */
12817 for (l = already_linked_list->entry; l != NULL; l = l->next)
12818 if (l->sec->flags & SEC_GROUP)
6d2cd210 12819 {
c77ec726 12820 asection *first = elf_next_in_group (l->sec);
6d2cd210 12821
c77ec726
AM
12822 if (first != NULL
12823 && elf_next_in_group (first) == first
12824 && bfd_elf_match_symbols_in_sections (first, sec, info))
12825 {
12826 sec->output_section = bfd_abs_section_ptr;
12827 sec->kept_section = first;
12828 break;
12829 }
6d2cd210 12830 }
0c511000 12831
c77ec726
AM
12832 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
12833 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
12834 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
12835 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
12836 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
12837 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
12838 `.gnu.linkonce.t.F' section from a different bfd not requiring any
12839 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
12840 The reverse order cannot happen as there is never a bfd with only the
12841 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
12842 matter as here were are looking only for cross-bfd sections. */
12843
12844 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
12845 for (l = already_linked_list->entry; l != NULL; l = l->next)
12846 if ((l->sec->flags & SEC_GROUP) == 0
12847 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
12848 {
12849 if (abfd != l->sec->owner)
12850 sec->output_section = bfd_abs_section_ptr;
12851 break;
12852 }
80c29487 12853
082b7297 12854 /* This is the first section with this name. Record it. */
c77ec726 12855 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
bb6198d2 12856 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
c77ec726 12857 return sec->output_section == bfd_abs_section_ptr;
082b7297 12858}
81e1b023 12859
a4d8e49b
L
12860bfd_boolean
12861_bfd_elf_common_definition (Elf_Internal_Sym *sym)
12862{
12863 return sym->st_shndx == SHN_COMMON;
12864}
12865
12866unsigned int
12867_bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
12868{
12869 return SHN_COMMON;
12870}
12871
12872asection *
12873_bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
12874{
12875 return bfd_com_section_ptr;
12876}
10455f89
HPN
12877
12878bfd_vma
12879_bfd_elf_default_got_elt_size (bfd *abfd,
12880 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12881 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
12882 bfd *ibfd ATTRIBUTE_UNUSED,
12883 unsigned long symndx ATTRIBUTE_UNUSED)
12884{
12885 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12886 return bed->s->arch_size / 8;
12887}
83bac4b0
NC
12888
12889/* Routines to support the creation of dynamic relocs. */
12890
83bac4b0
NC
12891/* Returns the name of the dynamic reloc section associated with SEC. */
12892
12893static const char *
12894get_dynamic_reloc_section_name (bfd * abfd,
12895 asection * sec,
12896 bfd_boolean is_rela)
12897{
ddcf1fcf
BS
12898 char *name;
12899 const char *old_name = bfd_get_section_name (NULL, sec);
12900 const char *prefix = is_rela ? ".rela" : ".rel";
83bac4b0 12901
ddcf1fcf 12902 if (old_name == NULL)
83bac4b0
NC
12903 return NULL;
12904
ddcf1fcf
BS
12905 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
12906 sprintf (name, "%s%s", prefix, old_name);
83bac4b0
NC
12907
12908 return name;
12909}
12910
12911/* Returns the dynamic reloc section associated with SEC.
12912 If necessary compute the name of the dynamic reloc section based
12913 on SEC's name (looked up in ABFD's string table) and the setting
12914 of IS_RELA. */
12915
12916asection *
12917_bfd_elf_get_dynamic_reloc_section (bfd * abfd,
12918 asection * sec,
12919 bfd_boolean is_rela)
12920{
12921 asection * reloc_sec = elf_section_data (sec)->sreloc;
12922
12923 if (reloc_sec == NULL)
12924 {
12925 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12926
12927 if (name != NULL)
12928 {
3d4d4302 12929 reloc_sec = bfd_get_linker_section (abfd, name);
83bac4b0
NC
12930
12931 if (reloc_sec != NULL)
12932 elf_section_data (sec)->sreloc = reloc_sec;
12933 }
12934 }
12935
12936 return reloc_sec;
12937}
12938
12939/* Returns the dynamic reloc section associated with SEC. If the
12940 section does not exist it is created and attached to the DYNOBJ
12941 bfd and stored in the SRELOC field of SEC's elf_section_data
12942 structure.
f8076f98 12943
83bac4b0
NC
12944 ALIGNMENT is the alignment for the newly created section and
12945 IS_RELA defines whether the name should be .rela.<SEC's name>
12946 or .rel.<SEC's name>. The section name is looked up in the
12947 string table associated with ABFD. */
12948
12949asection *
12950_bfd_elf_make_dynamic_reloc_section (asection * sec,
12951 bfd * dynobj,
12952 unsigned int alignment,
12953 bfd * abfd,
12954 bfd_boolean is_rela)
12955{
12956 asection * reloc_sec = elf_section_data (sec)->sreloc;
12957
12958 if (reloc_sec == NULL)
12959 {
12960 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12961
12962 if (name == NULL)
12963 return NULL;
12964
3d4d4302 12965 reloc_sec = bfd_get_linker_section (dynobj, name);
83bac4b0
NC
12966
12967 if (reloc_sec == NULL)
12968 {
3d4d4302
AM
12969 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
12970 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
83bac4b0
NC
12971 if ((sec->flags & SEC_ALLOC) != 0)
12972 flags |= SEC_ALLOC | SEC_LOAD;
12973
3d4d4302 12974 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
83bac4b0
NC
12975 if (reloc_sec != NULL)
12976 {
12977 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
12978 reloc_sec = NULL;
12979 }
12980 }
12981
12982 elf_section_data (sec)->sreloc = reloc_sec;
12983 }
12984
12985 return reloc_sec;
12986}
1338dd10
PB
12987
12988/* Copy the ELF symbol type associated with a linker hash entry. */
12989void
12990_bfd_elf_copy_link_hash_symbol_type (bfd *abfd ATTRIBUTE_UNUSED,
12991 struct bfd_link_hash_entry * hdest,
12992 struct bfd_link_hash_entry * hsrc)
12993{
12994 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *)hdest;
12995 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *)hsrc;
12996
12997 ehdest->type = ehsrc->type;
35fc36a8 12998 ehdest->target_internal = ehsrc->target_internal;
1338dd10 12999}
351f65ca
L
13000
13001/* Append a RELA relocation REL to section S in BFD. */
13002
13003void
13004elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13005{
13006 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13007 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
13008 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
13009 bed->s->swap_reloca_out (abfd, rel, loc);
13010}
13011
13012/* Append a REL relocation REL to section S in BFD. */
13013
13014void
13015elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13016{
13017 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13018 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
13019 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
13020 bed->s->swap_reloca_out (abfd, rel, loc);
13021}
This page took 1.876667 seconds and 4 git commands to generate.