Remove syntactic sugar
[deliverable/binutils-gdb.git] / bfd / elflink.c
CommitLineData
252b5132 1/* ELF linking support for BFD.
6f2750fe 2 Copyright (C) 1995-2016 Free Software Foundation, Inc.
252b5132 3
8fdd7217 4 This file is part of BFD, the Binary File Descriptor library.
252b5132 5
8fdd7217
NC
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
cd123cb7 8 the Free Software Foundation; either version 3 of the License, or
8fdd7217 9 (at your option) any later version.
252b5132 10
8fdd7217
NC
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
252b5132 15
8fdd7217
NC
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
cd123cb7
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
252b5132 20
252b5132 21#include "sysdep.h"
3db64b00 22#include "bfd.h"
53df40a4 23#include "bfd_stdint.h"
252b5132
RH
24#include "bfdlink.h"
25#include "libbfd.h"
26#define ARCH_SIZE 0
27#include "elf-bfd.h"
4ad4eba5 28#include "safe-ctype.h"
ccf2f652 29#include "libiberty.h"
66eb6687 30#include "objalloc.h"
08ce1d72 31#if BFD_SUPPORTS_PLUGINS
7d0b9ebc 32#include "plugin-api.h"
7dc3990e
L
33#include "plugin.h"
34#endif
252b5132 35
28caa186
AM
36/* This struct is used to pass information to routines called via
37 elf_link_hash_traverse which must return failure. */
38
39struct elf_info_failed
40{
41 struct bfd_link_info *info;
28caa186
AM
42 bfd_boolean failed;
43};
44
45/* This structure is used to pass information to
46 _bfd_elf_link_find_version_dependencies. */
47
48struct elf_find_verdep_info
49{
50 /* General link information. */
51 struct bfd_link_info *info;
52 /* The number of dependencies. */
53 unsigned int vers;
54 /* Whether we had a failure. */
55 bfd_boolean failed;
56};
57
58static bfd_boolean _bfd_elf_fix_symbol_flags
59 (struct elf_link_hash_entry *, struct elf_info_failed *);
60
2f0c68f2
CM
61asection *
62_bfd_elf_section_for_symbol (struct elf_reloc_cookie *cookie,
63 unsigned long r_symndx,
64 bfd_boolean discard)
65{
66 if (r_symndx >= cookie->locsymcount
67 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
68 {
69 struct elf_link_hash_entry *h;
70
71 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
72
73 while (h->root.type == bfd_link_hash_indirect
74 || h->root.type == bfd_link_hash_warning)
75 h = (struct elf_link_hash_entry *) h->root.u.i.link;
76
77 if ((h->root.type == bfd_link_hash_defined
78 || h->root.type == bfd_link_hash_defweak)
79 && discarded_section (h->root.u.def.section))
80 return h->root.u.def.section;
81 else
82 return NULL;
83 }
84 else
85 {
86 /* It's not a relocation against a global symbol,
87 but it could be a relocation against a local
88 symbol for a discarded section. */
89 asection *isec;
90 Elf_Internal_Sym *isym;
91
92 /* Need to: get the symbol; get the section. */
93 isym = &cookie->locsyms[r_symndx];
94 isec = bfd_section_from_elf_index (cookie->abfd, isym->st_shndx);
95 if (isec != NULL
96 && discard ? discarded_section (isec) : 1)
97 return isec;
98 }
99 return NULL;
100}
101
d98685ac
AM
102/* Define a symbol in a dynamic linkage section. */
103
104struct elf_link_hash_entry *
105_bfd_elf_define_linkage_sym (bfd *abfd,
106 struct bfd_link_info *info,
107 asection *sec,
108 const char *name)
109{
110 struct elf_link_hash_entry *h;
111 struct bfd_link_hash_entry *bh;
ccabcbe5 112 const struct elf_backend_data *bed;
d98685ac
AM
113
114 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
115 if (h != NULL)
116 {
117 /* Zap symbol defined in an as-needed lib that wasn't linked.
118 This is a symptom of a larger problem: Absolute symbols
119 defined in shared libraries can't be overridden, because we
120 lose the link to the bfd which is via the symbol section. */
121 h->root.type = bfd_link_hash_new;
122 }
123
124 bh = &h->root;
cf18fda4 125 bed = get_elf_backend_data (abfd);
d98685ac 126 if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
cf18fda4 127 sec, 0, NULL, FALSE, bed->collect,
d98685ac
AM
128 &bh))
129 return NULL;
130 h = (struct elf_link_hash_entry *) bh;
131 h->def_regular = 1;
e28df02b 132 h->non_elf = 0;
12b2843a 133 h->root.linker_def = 1;
d98685ac 134 h->type = STT_OBJECT;
00b7642b
AM
135 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
136 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
d98685ac 137
ccabcbe5 138 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
d98685ac
AM
139 return h;
140}
141
b34976b6 142bfd_boolean
268b6b39 143_bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
252b5132
RH
144{
145 flagword flags;
aad5d350 146 asection *s;
252b5132 147 struct elf_link_hash_entry *h;
9c5bfbb7 148 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6de2ae4a 149 struct elf_link_hash_table *htab = elf_hash_table (info);
252b5132
RH
150
151 /* This function may be called more than once. */
3d4d4302
AM
152 s = bfd_get_linker_section (abfd, ".got");
153 if (s != NULL)
b34976b6 154 return TRUE;
252b5132 155
e5a52504 156 flags = bed->dynamic_sec_flags;
252b5132 157
14b2f831
AM
158 s = bfd_make_section_anyway_with_flags (abfd,
159 (bed->rela_plts_and_copies_p
160 ? ".rela.got" : ".rel.got"),
161 (bed->dynamic_sec_flags
162 | SEC_READONLY));
6de2ae4a
L
163 if (s == NULL
164 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
165 return FALSE;
166 htab->srelgot = s;
252b5132 167
14b2f831 168 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
64e77c6d
L
169 if (s == NULL
170 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
171 return FALSE;
172 htab->sgot = s;
173
252b5132
RH
174 if (bed->want_got_plt)
175 {
14b2f831 176 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
252b5132 177 if (s == NULL
6de2ae4a
L
178 || !bfd_set_section_alignment (abfd, s,
179 bed->s->log_file_align))
b34976b6 180 return FALSE;
6de2ae4a 181 htab->sgotplt = s;
252b5132
RH
182 }
183
64e77c6d
L
184 /* The first bit of the global offset table is the header. */
185 s->size += bed->got_header_size;
186
2517a57f
AM
187 if (bed->want_got_sym)
188 {
189 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
190 (or .got.plt) section. We don't do this in the linker script
191 because we don't want to define the symbol if we are not creating
192 a global offset table. */
6de2ae4a
L
193 h = _bfd_elf_define_linkage_sym (abfd, info, s,
194 "_GLOBAL_OFFSET_TABLE_");
2517a57f 195 elf_hash_table (info)->hgot = h;
d98685ac
AM
196 if (h == NULL)
197 return FALSE;
2517a57f 198 }
252b5132 199
b34976b6 200 return TRUE;
252b5132
RH
201}
202\f
7e9f0867
AM
203/* Create a strtab to hold the dynamic symbol names. */
204static bfd_boolean
205_bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
206{
207 struct elf_link_hash_table *hash_table;
208
209 hash_table = elf_hash_table (info);
210 if (hash_table->dynobj == NULL)
6cd255ca
L
211 {
212 /* We may not set dynobj, an input file holding linker created
213 dynamic sections to abfd, which may be a dynamic object with
214 its own dynamic sections. We need to find a normal input file
215 to hold linker created sections if possible. */
216 if ((abfd->flags & (DYNAMIC | BFD_PLUGIN)) != 0)
217 {
218 bfd *ibfd;
219 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
6645479e
L
220 if ((ibfd->flags
221 & (DYNAMIC | BFD_LINKER_CREATED | BFD_PLUGIN)) == 0)
6cd255ca
L
222 {
223 abfd = ibfd;
224 break;
225 }
226 }
227 hash_table->dynobj = abfd;
228 }
7e9f0867
AM
229
230 if (hash_table->dynstr == NULL)
231 {
232 hash_table->dynstr = _bfd_elf_strtab_init ();
233 if (hash_table->dynstr == NULL)
234 return FALSE;
235 }
236 return TRUE;
237}
238
45d6a902
AM
239/* Create some sections which will be filled in with dynamic linking
240 information. ABFD is an input file which requires dynamic sections
241 to be created. The dynamic sections take up virtual memory space
242 when the final executable is run, so we need to create them before
243 addresses are assigned to the output sections. We work out the
244 actual contents and size of these sections later. */
252b5132 245
b34976b6 246bfd_boolean
268b6b39 247_bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
252b5132 248{
45d6a902 249 flagword flags;
91d6fa6a 250 asection *s;
9c5bfbb7 251 const struct elf_backend_data *bed;
9637f6ef 252 struct elf_link_hash_entry *h;
252b5132 253
0eddce27 254 if (! is_elf_hash_table (info->hash))
45d6a902
AM
255 return FALSE;
256
257 if (elf_hash_table (info)->dynamic_sections_created)
258 return TRUE;
259
7e9f0867
AM
260 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
261 return FALSE;
45d6a902 262
7e9f0867 263 abfd = elf_hash_table (info)->dynobj;
e5a52504
MM
264 bed = get_elf_backend_data (abfd);
265
266 flags = bed->dynamic_sec_flags;
45d6a902
AM
267
268 /* A dynamically linked executable has a .interp section, but a
269 shared library does not. */
9b8b325a 270 if (bfd_link_executable (info) && !info->nointerp)
252b5132 271 {
14b2f831
AM
272 s = bfd_make_section_anyway_with_flags (abfd, ".interp",
273 flags | SEC_READONLY);
3496cb2a 274 if (s == NULL)
45d6a902
AM
275 return FALSE;
276 }
bb0deeff 277
45d6a902
AM
278 /* Create sections to hold version informations. These are removed
279 if they are not needed. */
14b2f831
AM
280 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
281 flags | SEC_READONLY);
45d6a902 282 if (s == NULL
45d6a902
AM
283 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
284 return FALSE;
285
14b2f831
AM
286 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
287 flags | SEC_READONLY);
45d6a902 288 if (s == NULL
45d6a902
AM
289 || ! bfd_set_section_alignment (abfd, s, 1))
290 return FALSE;
291
14b2f831
AM
292 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
293 flags | SEC_READONLY);
45d6a902 294 if (s == NULL
45d6a902
AM
295 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
296 return FALSE;
297
14b2f831
AM
298 s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
299 flags | SEC_READONLY);
45d6a902 300 if (s == NULL
45d6a902
AM
301 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
302 return FALSE;
cae1fbbb 303 elf_hash_table (info)->dynsym = s;
45d6a902 304
14b2f831
AM
305 s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
306 flags | SEC_READONLY);
3496cb2a 307 if (s == NULL)
45d6a902
AM
308 return FALSE;
309
14b2f831 310 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
45d6a902 311 if (s == NULL
45d6a902
AM
312 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
313 return FALSE;
314
315 /* The special symbol _DYNAMIC is always set to the start of the
77cfaee6
AM
316 .dynamic section. We could set _DYNAMIC in a linker script, but we
317 only want to define it if we are, in fact, creating a .dynamic
318 section. We don't want to define it if there is no .dynamic
319 section, since on some ELF platforms the start up code examines it
320 to decide how to initialize the process. */
9637f6ef
L
321 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
322 elf_hash_table (info)->hdynamic = h;
323 if (h == NULL)
45d6a902
AM
324 return FALSE;
325
fdc90cb4
JJ
326 if (info->emit_hash)
327 {
14b2f831
AM
328 s = bfd_make_section_anyway_with_flags (abfd, ".hash",
329 flags | SEC_READONLY);
fdc90cb4
JJ
330 if (s == NULL
331 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
332 return FALSE;
333 elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
334 }
335
336 if (info->emit_gnu_hash)
337 {
14b2f831
AM
338 s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
339 flags | SEC_READONLY);
fdc90cb4
JJ
340 if (s == NULL
341 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
342 return FALSE;
343 /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
344 4 32-bit words followed by variable count of 64-bit words, then
345 variable count of 32-bit words. */
346 if (bed->s->arch_size == 64)
347 elf_section_data (s)->this_hdr.sh_entsize = 0;
348 else
349 elf_section_data (s)->this_hdr.sh_entsize = 4;
350 }
45d6a902
AM
351
352 /* Let the backend create the rest of the sections. This lets the
353 backend set the right flags. The backend will normally create
354 the .got and .plt sections. */
894891db
NC
355 if (bed->elf_backend_create_dynamic_sections == NULL
356 || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
45d6a902
AM
357 return FALSE;
358
359 elf_hash_table (info)->dynamic_sections_created = TRUE;
360
361 return TRUE;
362}
363
364/* Create dynamic sections when linking against a dynamic object. */
365
366bfd_boolean
268b6b39 367_bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
45d6a902
AM
368{
369 flagword flags, pltflags;
7325306f 370 struct elf_link_hash_entry *h;
45d6a902 371 asection *s;
9c5bfbb7 372 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6de2ae4a 373 struct elf_link_hash_table *htab = elf_hash_table (info);
45d6a902 374
252b5132
RH
375 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
376 .rel[a].bss sections. */
e5a52504 377 flags = bed->dynamic_sec_flags;
252b5132
RH
378
379 pltflags = flags;
252b5132 380 if (bed->plt_not_loaded)
6df4d94c
MM
381 /* We do not clear SEC_ALLOC here because we still want the OS to
382 allocate space for the section; it's just that there's nothing
383 to read in from the object file. */
5d1634d7 384 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
6df4d94c
MM
385 else
386 pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
252b5132
RH
387 if (bed->plt_readonly)
388 pltflags |= SEC_READONLY;
389
14b2f831 390 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
252b5132 391 if (s == NULL
252b5132 392 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
b34976b6 393 return FALSE;
6de2ae4a 394 htab->splt = s;
252b5132 395
d98685ac
AM
396 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
397 .plt section. */
7325306f
RS
398 if (bed->want_plt_sym)
399 {
400 h = _bfd_elf_define_linkage_sym (abfd, info, s,
401 "_PROCEDURE_LINKAGE_TABLE_");
402 elf_hash_table (info)->hplt = h;
403 if (h == NULL)
404 return FALSE;
405 }
252b5132 406
14b2f831
AM
407 s = bfd_make_section_anyway_with_flags (abfd,
408 (bed->rela_plts_and_copies_p
409 ? ".rela.plt" : ".rel.plt"),
410 flags | SEC_READONLY);
252b5132 411 if (s == NULL
45d6a902 412 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
b34976b6 413 return FALSE;
6de2ae4a 414 htab->srelplt = s;
252b5132
RH
415
416 if (! _bfd_elf_create_got_section (abfd, info))
b34976b6 417 return FALSE;
252b5132 418
3018b441
RH
419 if (bed->want_dynbss)
420 {
421 /* The .dynbss section is a place to put symbols which are defined
422 by dynamic objects, are referenced by regular objects, and are
423 not functions. We must allocate space for them in the process
424 image and use a R_*_COPY reloc to tell the dynamic linker to
425 initialize them at run time. The linker script puts the .dynbss
426 section into the .bss section of the final image. */
14b2f831
AM
427 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
428 (SEC_ALLOC | SEC_LINKER_CREATED));
3496cb2a 429 if (s == NULL)
b34976b6 430 return FALSE;
252b5132 431
3018b441 432 /* The .rel[a].bss section holds copy relocs. This section is not
77cfaee6
AM
433 normally needed. We need to create it here, though, so that the
434 linker will map it to an output section. We can't just create it
435 only if we need it, because we will not know whether we need it
436 until we have seen all the input files, and the first time the
437 main linker code calls BFD after examining all the input files
438 (size_dynamic_sections) the input sections have already been
439 mapped to the output sections. If the section turns out not to
440 be needed, we can discard it later. We will never need this
441 section when generating a shared object, since they do not use
442 copy relocs. */
0e1862bb 443 if (! bfd_link_pic (info))
3018b441 444 {
14b2f831
AM
445 s = bfd_make_section_anyway_with_flags (abfd,
446 (bed->rela_plts_and_copies_p
447 ? ".rela.bss" : ".rel.bss"),
448 flags | SEC_READONLY);
3018b441 449 if (s == NULL
45d6a902 450 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
b34976b6 451 return FALSE;
3018b441 452 }
252b5132
RH
453 }
454
b34976b6 455 return TRUE;
252b5132
RH
456}
457\f
252b5132
RH
458/* Record a new dynamic symbol. We record the dynamic symbols as we
459 read the input files, since we need to have a list of all of them
460 before we can determine the final sizes of the output sections.
461 Note that we may actually call this function even though we are not
462 going to output any dynamic symbols; in some cases we know that a
463 symbol should be in the dynamic symbol table, but only if there is
464 one. */
465
b34976b6 466bfd_boolean
c152c796
AM
467bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
468 struct elf_link_hash_entry *h)
252b5132
RH
469{
470 if (h->dynindx == -1)
471 {
2b0f7ef9 472 struct elf_strtab_hash *dynstr;
68b6ddd0 473 char *p;
252b5132 474 const char *name;
ef53be89 475 size_t indx;
252b5132 476
7a13edea
NC
477 /* XXX: The ABI draft says the linker must turn hidden and
478 internal symbols into STB_LOCAL symbols when producing the
479 DSO. However, if ld.so honors st_other in the dynamic table,
480 this would not be necessary. */
481 switch (ELF_ST_VISIBILITY (h->other))
482 {
483 case STV_INTERNAL:
484 case STV_HIDDEN:
9d6eee78
L
485 if (h->root.type != bfd_link_hash_undefined
486 && h->root.type != bfd_link_hash_undefweak)
38048eb9 487 {
f5385ebf 488 h->forced_local = 1;
67687978
PB
489 if (!elf_hash_table (info)->is_relocatable_executable)
490 return TRUE;
7a13edea 491 }
0444bdd4 492
7a13edea
NC
493 default:
494 break;
495 }
496
252b5132
RH
497 h->dynindx = elf_hash_table (info)->dynsymcount;
498 ++elf_hash_table (info)->dynsymcount;
499
500 dynstr = elf_hash_table (info)->dynstr;
501 if (dynstr == NULL)
502 {
503 /* Create a strtab to hold the dynamic symbol names. */
2b0f7ef9 504 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
252b5132 505 if (dynstr == NULL)
b34976b6 506 return FALSE;
252b5132
RH
507 }
508
509 /* We don't put any version information in the dynamic string
aad5d350 510 table. */
252b5132
RH
511 name = h->root.root.string;
512 p = strchr (name, ELF_VER_CHR);
68b6ddd0
AM
513 if (p != NULL)
514 /* We know that the p points into writable memory. In fact,
515 there are only a few symbols that have read-only names, being
516 those like _GLOBAL_OFFSET_TABLE_ that are created specially
517 by the backends. Most symbols will have names pointing into
518 an ELF string table read from a file, or to objalloc memory. */
519 *p = 0;
520
521 indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
522
523 if (p != NULL)
524 *p = ELF_VER_CHR;
252b5132 525
ef53be89 526 if (indx == (size_t) -1)
b34976b6 527 return FALSE;
252b5132
RH
528 h->dynstr_index = indx;
529 }
530
b34976b6 531 return TRUE;
252b5132 532}
45d6a902 533\f
55255dae
L
534/* Mark a symbol dynamic. */
535
28caa186 536static void
55255dae 537bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
40b36307
L
538 struct elf_link_hash_entry *h,
539 Elf_Internal_Sym *sym)
55255dae 540{
40b36307 541 struct bfd_elf_dynamic_list *d = info->dynamic_list;
55255dae 542
40b36307 543 /* It may be called more than once on the same H. */
0e1862bb 544 if(h->dynamic || bfd_link_relocatable (info))
55255dae
L
545 return;
546
40b36307
L
547 if ((info->dynamic_data
548 && (h->type == STT_OBJECT
b8871f35 549 || h->type == STT_COMMON
40b36307 550 || (sym != NULL
b8871f35
L
551 && (ELF_ST_TYPE (sym->st_info) == STT_OBJECT
552 || ELF_ST_TYPE (sym->st_info) == STT_COMMON))))
a0c8462f 553 || (d != NULL
40b36307
L
554 && h->root.type == bfd_link_hash_new
555 && (*d->match) (&d->head, NULL, h->root.root.string)))
55255dae
L
556 h->dynamic = 1;
557}
558
45d6a902
AM
559/* Record an assignment to a symbol made by a linker script. We need
560 this in case some dynamic object refers to this symbol. */
561
562bfd_boolean
fe21a8fc
L
563bfd_elf_record_link_assignment (bfd *output_bfd,
564 struct bfd_link_info *info,
268b6b39 565 const char *name,
fe21a8fc
L
566 bfd_boolean provide,
567 bfd_boolean hidden)
45d6a902 568{
00cbee0a 569 struct elf_link_hash_entry *h, *hv;
4ea42fb7 570 struct elf_link_hash_table *htab;
00cbee0a 571 const struct elf_backend_data *bed;
45d6a902 572
0eddce27 573 if (!is_elf_hash_table (info->hash))
45d6a902
AM
574 return TRUE;
575
4ea42fb7
AM
576 htab = elf_hash_table (info);
577 h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
45d6a902 578 if (h == NULL)
4ea42fb7 579 return provide;
45d6a902 580
0f550b3d
L
581 if (h->versioned == unknown)
582 {
583 /* Set versioned if symbol version is unknown. */
584 char *version = strrchr (name, ELF_VER_CHR);
585 if (version)
586 {
587 if (version > name && version[-1] != ELF_VER_CHR)
588 h->versioned = versioned_hidden;
589 else
590 h->versioned = versioned;
591 }
592 }
593
00cbee0a 594 switch (h->root.type)
77cfaee6 595 {
00cbee0a
L
596 case bfd_link_hash_defined:
597 case bfd_link_hash_defweak:
598 case bfd_link_hash_common:
599 break;
600 case bfd_link_hash_undefweak:
601 case bfd_link_hash_undefined:
602 /* Since we're defining the symbol, don't let it seem to have not
603 been defined. record_dynamic_symbol and size_dynamic_sections
604 may depend on this. */
4ea42fb7 605 h->root.type = bfd_link_hash_new;
77cfaee6
AM
606 if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
607 bfd_link_repair_undef_list (&htab->root);
00cbee0a
L
608 break;
609 case bfd_link_hash_new:
40b36307 610 bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
55255dae 611 h->non_elf = 0;
00cbee0a
L
612 break;
613 case bfd_link_hash_indirect:
614 /* We had a versioned symbol in a dynamic library. We make the
a0c8462f 615 the versioned symbol point to this one. */
00cbee0a
L
616 bed = get_elf_backend_data (output_bfd);
617 hv = h;
618 while (hv->root.type == bfd_link_hash_indirect
619 || hv->root.type == bfd_link_hash_warning)
620 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
621 /* We don't need to update h->root.u since linker will set them
622 later. */
623 h->root.type = bfd_link_hash_undefined;
624 hv->root.type = bfd_link_hash_indirect;
625 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
626 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
627 break;
628 case bfd_link_hash_warning:
629 abort ();
630 break;
55255dae 631 }
45d6a902
AM
632
633 /* If this symbol is being provided by the linker script, and it is
634 currently defined by a dynamic object, but not by a regular
635 object, then mark it as undefined so that the generic linker will
636 force the correct value. */
637 if (provide
f5385ebf
AM
638 && h->def_dynamic
639 && !h->def_regular)
45d6a902
AM
640 h->root.type = bfd_link_hash_undefined;
641
642 /* If this symbol is not being provided by the linker script, and it is
643 currently defined by a dynamic object, but not by a regular object,
644 then clear out any version information because the symbol will not be
645 associated with the dynamic object any more. */
646 if (!provide
f5385ebf
AM
647 && h->def_dynamic
648 && !h->def_regular)
45d6a902
AM
649 h->verinfo.verdef = NULL;
650
f5385ebf 651 h->def_regular = 1;
45d6a902 652
eb8476a6 653 if (hidden)
fe21a8fc 654 {
91d6fa6a 655 bed = get_elf_backend_data (output_bfd);
b8297068
AM
656 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
657 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
fe21a8fc
L
658 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
659 }
660
6fa3860b
PB
661 /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
662 and executables. */
0e1862bb 663 if (!bfd_link_relocatable (info)
6fa3860b
PB
664 && h->dynindx != -1
665 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
666 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
667 h->forced_local = 1;
668
f5385ebf
AM
669 if ((h->def_dynamic
670 || h->ref_dynamic
6b3b0ab8
L
671 || bfd_link_dll (info)
672 || elf_hash_table (info)->is_relocatable_executable)
45d6a902
AM
673 && h->dynindx == -1)
674 {
c152c796 675 if (! bfd_elf_link_record_dynamic_symbol (info, h))
45d6a902
AM
676 return FALSE;
677
678 /* If this is a weak defined symbol, and we know a corresponding
679 real symbol from the same dynamic object, make sure the real
680 symbol is also made into a dynamic symbol. */
f6e332e6
AM
681 if (h->u.weakdef != NULL
682 && h->u.weakdef->dynindx == -1)
45d6a902 683 {
f6e332e6 684 if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
45d6a902
AM
685 return FALSE;
686 }
687 }
688
689 return TRUE;
690}
42751cf3 691
8c58d23b
AM
692/* Record a new local dynamic symbol. Returns 0 on failure, 1 on
693 success, and 2 on a failure caused by attempting to record a symbol
694 in a discarded section, eg. a discarded link-once section symbol. */
695
696int
c152c796
AM
697bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
698 bfd *input_bfd,
699 long input_indx)
8c58d23b
AM
700{
701 bfd_size_type amt;
702 struct elf_link_local_dynamic_entry *entry;
703 struct elf_link_hash_table *eht;
704 struct elf_strtab_hash *dynstr;
ef53be89 705 size_t dynstr_index;
8c58d23b
AM
706 char *name;
707 Elf_External_Sym_Shndx eshndx;
708 char esym[sizeof (Elf64_External_Sym)];
709
0eddce27 710 if (! is_elf_hash_table (info->hash))
8c58d23b
AM
711 return 0;
712
713 /* See if the entry exists already. */
714 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
715 if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
716 return 1;
717
718 amt = sizeof (*entry);
a50b1753 719 entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
8c58d23b
AM
720 if (entry == NULL)
721 return 0;
722
723 /* Go find the symbol, so that we can find it's name. */
724 if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
268b6b39 725 1, input_indx, &entry->isym, esym, &eshndx))
8c58d23b
AM
726 {
727 bfd_release (input_bfd, entry);
728 return 0;
729 }
730
731 if (entry->isym.st_shndx != SHN_UNDEF
4fbb74a6 732 && entry->isym.st_shndx < SHN_LORESERVE)
8c58d23b
AM
733 {
734 asection *s;
735
736 s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
737 if (s == NULL || bfd_is_abs_section (s->output_section))
738 {
739 /* We can still bfd_release here as nothing has done another
740 bfd_alloc. We can't do this later in this function. */
741 bfd_release (input_bfd, entry);
742 return 2;
743 }
744 }
745
746 name = (bfd_elf_string_from_elf_section
747 (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
748 entry->isym.st_name));
749
750 dynstr = elf_hash_table (info)->dynstr;
751 if (dynstr == NULL)
752 {
753 /* Create a strtab to hold the dynamic symbol names. */
754 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
755 if (dynstr == NULL)
756 return 0;
757 }
758
b34976b6 759 dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
ef53be89 760 if (dynstr_index == (size_t) -1)
8c58d23b
AM
761 return 0;
762 entry->isym.st_name = dynstr_index;
763
764 eht = elf_hash_table (info);
765
766 entry->next = eht->dynlocal;
767 eht->dynlocal = entry;
768 entry->input_bfd = input_bfd;
769 entry->input_indx = input_indx;
770 eht->dynsymcount++;
771
772 /* Whatever binding the symbol had before, it's now local. */
773 entry->isym.st_info
774 = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
775
776 /* The dynindx will be set at the end of size_dynamic_sections. */
777
778 return 1;
779}
780
30b30c21 781/* Return the dynindex of a local dynamic symbol. */
42751cf3 782
30b30c21 783long
268b6b39
AM
784_bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
785 bfd *input_bfd,
786 long input_indx)
30b30c21
RH
787{
788 struct elf_link_local_dynamic_entry *e;
789
790 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
791 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
792 return e->dynindx;
793 return -1;
794}
795
796/* This function is used to renumber the dynamic symbols, if some of
797 them are removed because they are marked as local. This is called
798 via elf_link_hash_traverse. */
799
b34976b6 800static bfd_boolean
268b6b39
AM
801elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
802 void *data)
42751cf3 803{
a50b1753 804 size_t *count = (size_t *) data;
30b30c21 805
6fa3860b
PB
806 if (h->forced_local)
807 return TRUE;
808
809 if (h->dynindx != -1)
810 h->dynindx = ++(*count);
811
812 return TRUE;
813}
814
815
816/* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
817 STB_LOCAL binding. */
818
819static bfd_boolean
820elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
821 void *data)
822{
a50b1753 823 size_t *count = (size_t *) data;
6fa3860b 824
6fa3860b
PB
825 if (!h->forced_local)
826 return TRUE;
827
42751cf3 828 if (h->dynindx != -1)
30b30c21
RH
829 h->dynindx = ++(*count);
830
b34976b6 831 return TRUE;
42751cf3 832}
30b30c21 833
aee6f5b4
AO
834/* Return true if the dynamic symbol for a given section should be
835 omitted when creating a shared library. */
836bfd_boolean
837_bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
838 struct bfd_link_info *info,
839 asection *p)
840{
74541ad4 841 struct elf_link_hash_table *htab;
ca55926c 842 asection *ip;
74541ad4 843
aee6f5b4
AO
844 switch (elf_section_data (p)->this_hdr.sh_type)
845 {
846 case SHT_PROGBITS:
847 case SHT_NOBITS:
848 /* If sh_type is yet undecided, assume it could be
849 SHT_PROGBITS/SHT_NOBITS. */
850 case SHT_NULL:
74541ad4
AM
851 htab = elf_hash_table (info);
852 if (p == htab->tls_sec)
853 return FALSE;
854
855 if (htab->text_index_section != NULL)
856 return p != htab->text_index_section && p != htab->data_index_section;
857
ca55926c 858 return (htab->dynobj != NULL
3d4d4302 859 && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
ca55926c 860 && ip->output_section == p);
aee6f5b4
AO
861
862 /* There shouldn't be section relative relocations
863 against any other section. */
864 default:
865 return TRUE;
866 }
867}
868
062e2358 869/* Assign dynsym indices. In a shared library we generate a section
6fa3860b
PB
870 symbol for each output section, which come first. Next come symbols
871 which have been forced to local binding. Then all of the back-end
872 allocated local dynamic syms, followed by the rest of the global
873 symbols. */
30b30c21 874
554220db
AM
875static unsigned long
876_bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
877 struct bfd_link_info *info,
878 unsigned long *section_sym_count)
30b30c21
RH
879{
880 unsigned long dynsymcount = 0;
881
0e1862bb
L
882 if (bfd_link_pic (info)
883 || elf_hash_table (info)->is_relocatable_executable)
30b30c21 884 {
aee6f5b4 885 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
30b30c21
RH
886 asection *p;
887 for (p = output_bfd->sections; p ; p = p->next)
8c37241b 888 if ((p->flags & SEC_EXCLUDE) == 0
aee6f5b4
AO
889 && (p->flags & SEC_ALLOC) != 0
890 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
891 elf_section_data (p)->dynindx = ++dynsymcount;
74541ad4
AM
892 else
893 elf_section_data (p)->dynindx = 0;
30b30c21 894 }
554220db 895 *section_sym_count = dynsymcount;
30b30c21 896
6fa3860b
PB
897 elf_link_hash_traverse (elf_hash_table (info),
898 elf_link_renumber_local_hash_table_dynsyms,
899 &dynsymcount);
900
30b30c21
RH
901 if (elf_hash_table (info)->dynlocal)
902 {
903 struct elf_link_local_dynamic_entry *p;
904 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
905 p->dynindx = ++dynsymcount;
906 }
90ac2420 907 elf_hash_table (info)->local_dynsymcount = dynsymcount;
30b30c21
RH
908
909 elf_link_hash_traverse (elf_hash_table (info),
910 elf_link_renumber_hash_table_dynsyms,
911 &dynsymcount);
912
d5486c43
L
913 /* There is an unused NULL entry at the head of the table which we
914 must account for in our count even if the table is empty since it
915 is intended for the mandatory DT_SYMTAB tag (.dynsym section) in
916 .dynamic section. */
917 dynsymcount++;
30b30c21 918
ccabcbe5
AM
919 elf_hash_table (info)->dynsymcount = dynsymcount;
920 return dynsymcount;
30b30c21 921}
252b5132 922
54ac0771
L
923/* Merge st_other field. */
924
925static void
926elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
b8417128 927 const Elf_Internal_Sym *isym, asection *sec,
cd3416da 928 bfd_boolean definition, bfd_boolean dynamic)
54ac0771
L
929{
930 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
931
932 /* If st_other has a processor-specific meaning, specific
cd3416da 933 code might be needed here. */
54ac0771
L
934 if (bed->elf_backend_merge_symbol_attribute)
935 (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
936 dynamic);
937
cd3416da 938 if (!dynamic)
54ac0771 939 {
cd3416da
AM
940 unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
941 unsigned hvis = ELF_ST_VISIBILITY (h->other);
54ac0771 942
cd3416da
AM
943 /* Keep the most constraining visibility. Leave the remainder
944 of the st_other field to elf_backend_merge_symbol_attribute. */
945 if (symvis - 1 < hvis - 1)
946 h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
54ac0771 947 }
b8417128
AM
948 else if (definition
949 && ELF_ST_VISIBILITY (isym->st_other) != STV_DEFAULT
950 && (sec->flags & SEC_READONLY) == 0)
6cabe1ea 951 h->protected_def = 1;
54ac0771
L
952}
953
4f3fedcf
AM
954/* This function is called when we want to merge a new symbol with an
955 existing symbol. It handles the various cases which arise when we
956 find a definition in a dynamic object, or when there is already a
957 definition in a dynamic object. The new symbol is described by
958 NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table
959 entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK
960 if the old symbol was weak. We set POLD_ALIGNMENT to the alignment
961 of an old common symbol. We set OVERRIDE if the old symbol is
962 overriding a new definition. We set TYPE_CHANGE_OK if it is OK for
963 the type to change. We set SIZE_CHANGE_OK if it is OK for the size
964 to change. By OK to change, we mean that we shouldn't warn if the
965 type or size does change. */
45d6a902 966
8a56bd02 967static bfd_boolean
268b6b39
AM
968_bfd_elf_merge_symbol (bfd *abfd,
969 struct bfd_link_info *info,
970 const char *name,
971 Elf_Internal_Sym *sym,
972 asection **psec,
973 bfd_vma *pvalue,
4f3fedcf
AM
974 struct elf_link_hash_entry **sym_hash,
975 bfd **poldbfd,
37a9e49a 976 bfd_boolean *pold_weak,
af44c138 977 unsigned int *pold_alignment,
268b6b39
AM
978 bfd_boolean *skip,
979 bfd_boolean *override,
980 bfd_boolean *type_change_ok,
6e33951e
L
981 bfd_boolean *size_change_ok,
982 bfd_boolean *matched)
252b5132 983{
7479dfd4 984 asection *sec, *oldsec;
45d6a902 985 struct elf_link_hash_entry *h;
90c984fc 986 struct elf_link_hash_entry *hi;
45d6a902
AM
987 struct elf_link_hash_entry *flip;
988 int bind;
989 bfd *oldbfd;
990 bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
0a36a439 991 bfd_boolean newweak, oldweak, newfunc, oldfunc;
a4d8e49b 992 const struct elf_backend_data *bed;
6e33951e 993 char *new_version;
45d6a902
AM
994
995 *skip = FALSE;
996 *override = FALSE;
997
998 sec = *psec;
999 bind = ELF_ST_BIND (sym->st_info);
1000
1001 if (! bfd_is_und_section (sec))
1002 h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
1003 else
1004 h = ((struct elf_link_hash_entry *)
1005 bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
1006 if (h == NULL)
1007 return FALSE;
1008 *sym_hash = h;
252b5132 1009
88ba32a0
L
1010 bed = get_elf_backend_data (abfd);
1011
6e33951e 1012 /* NEW_VERSION is the symbol version of the new symbol. */
422f1182 1013 if (h->versioned != unversioned)
6e33951e 1014 {
422f1182
L
1015 /* Symbol version is unknown or versioned. */
1016 new_version = strrchr (name, ELF_VER_CHR);
1017 if (new_version)
1018 {
1019 if (h->versioned == unknown)
1020 {
1021 if (new_version > name && new_version[-1] != ELF_VER_CHR)
1022 h->versioned = versioned_hidden;
1023 else
1024 h->versioned = versioned;
1025 }
1026 new_version += 1;
1027 if (new_version[0] == '\0')
1028 new_version = NULL;
1029 }
1030 else
1031 h->versioned = unversioned;
6e33951e 1032 }
422f1182
L
1033 else
1034 new_version = NULL;
6e33951e 1035
90c984fc
L
1036 /* For merging, we only care about real symbols. But we need to make
1037 sure that indirect symbol dynamic flags are updated. */
1038 hi = h;
45d6a902
AM
1039 while (h->root.type == bfd_link_hash_indirect
1040 || h->root.type == bfd_link_hash_warning)
1041 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1042
6e33951e
L
1043 if (!*matched)
1044 {
1045 if (hi == h || h->root.type == bfd_link_hash_new)
1046 *matched = TRUE;
1047 else
1048 {
ae7683d2 1049 /* OLD_HIDDEN is true if the existing symbol is only visible
6e33951e 1050 to the symbol with the same symbol version. NEW_HIDDEN is
ae7683d2 1051 true if the new symbol is only visible to the symbol with
6e33951e 1052 the same symbol version. */
422f1182
L
1053 bfd_boolean old_hidden = h->versioned == versioned_hidden;
1054 bfd_boolean new_hidden = hi->versioned == versioned_hidden;
6e33951e
L
1055 if (!old_hidden && !new_hidden)
1056 /* The new symbol matches the existing symbol if both
1057 aren't hidden. */
1058 *matched = TRUE;
1059 else
1060 {
1061 /* OLD_VERSION is the symbol version of the existing
1062 symbol. */
422f1182
L
1063 char *old_version;
1064
1065 if (h->versioned >= versioned)
1066 old_version = strrchr (h->root.root.string,
1067 ELF_VER_CHR) + 1;
1068 else
1069 old_version = NULL;
6e33951e
L
1070
1071 /* The new symbol matches the existing symbol if they
1072 have the same symbol version. */
1073 *matched = (old_version == new_version
1074 || (old_version != NULL
1075 && new_version != NULL
1076 && strcmp (old_version, new_version) == 0));
1077 }
1078 }
1079 }
1080
934bce08
AM
1081 /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
1082 existing symbol. */
1083
1084 oldbfd = NULL;
1085 oldsec = NULL;
1086 switch (h->root.type)
1087 {
1088 default:
1089 break;
1090
1091 case bfd_link_hash_undefined:
1092 case bfd_link_hash_undefweak:
1093 oldbfd = h->root.u.undef.abfd;
1094 break;
1095
1096 case bfd_link_hash_defined:
1097 case bfd_link_hash_defweak:
1098 oldbfd = h->root.u.def.section->owner;
1099 oldsec = h->root.u.def.section;
1100 break;
1101
1102 case bfd_link_hash_common:
1103 oldbfd = h->root.u.c.p->section->owner;
1104 oldsec = h->root.u.c.p->section;
1105 if (pold_alignment)
1106 *pold_alignment = h->root.u.c.p->alignment_power;
1107 break;
1108 }
1109 if (poldbfd && *poldbfd == NULL)
1110 *poldbfd = oldbfd;
1111
1112 /* Differentiate strong and weak symbols. */
1113 newweak = bind == STB_WEAK;
1114 oldweak = (h->root.type == bfd_link_hash_defweak
1115 || h->root.type == bfd_link_hash_undefweak);
1116 if (pold_weak)
1117 *pold_weak = oldweak;
1118
1119 /* This code is for coping with dynamic objects, and is only useful
1120 if we are doing an ELF link. */
1121 if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
1122 return TRUE;
1123
40b36307 1124 /* We have to check it for every instance since the first few may be
ee659f1f 1125 references and not all compilers emit symbol type for undefined
40b36307
L
1126 symbols. */
1127 bfd_elf_link_mark_dynamic_symbol (info, h, sym);
1128
ee659f1f
AM
1129 /* NEWDYN and OLDDYN indicate whether the new or old symbol,
1130 respectively, is from a dynamic object. */
1131
1132 newdyn = (abfd->flags & DYNAMIC) != 0;
1133
1134 /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
1135 syms and defined syms in dynamic libraries respectively.
1136 ref_dynamic on the other hand can be set for a symbol defined in
1137 a dynamic library, and def_dynamic may not be set; When the
1138 definition in a dynamic lib is overridden by a definition in the
1139 executable use of the symbol in the dynamic lib becomes a
1140 reference to the executable symbol. */
1141 if (newdyn)
1142 {
1143 if (bfd_is_und_section (sec))
1144 {
1145 if (bind != STB_WEAK)
1146 {
1147 h->ref_dynamic_nonweak = 1;
1148 hi->ref_dynamic_nonweak = 1;
1149 }
1150 }
1151 else
1152 {
6e33951e
L
1153 /* Update the existing symbol only if they match. */
1154 if (*matched)
1155 h->dynamic_def = 1;
ee659f1f
AM
1156 hi->dynamic_def = 1;
1157 }
1158 }
1159
45d6a902
AM
1160 /* If we just created the symbol, mark it as being an ELF symbol.
1161 Other than that, there is nothing to do--there is no merge issue
1162 with a newly defined symbol--so we just return. */
1163
1164 if (h->root.type == bfd_link_hash_new)
252b5132 1165 {
f5385ebf 1166 h->non_elf = 0;
45d6a902
AM
1167 return TRUE;
1168 }
252b5132 1169
45d6a902
AM
1170 /* In cases involving weak versioned symbols, we may wind up trying
1171 to merge a symbol with itself. Catch that here, to avoid the
1172 confusion that results if we try to override a symbol with
1173 itself. The additional tests catch cases like
1174 _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1175 dynamic object, which we do want to handle here. */
1176 if (abfd == oldbfd
895fa45f 1177 && (newweak || oldweak)
45d6a902 1178 && ((abfd->flags & DYNAMIC) == 0
f5385ebf 1179 || !h->def_regular))
45d6a902
AM
1180 return TRUE;
1181
707bba77 1182 olddyn = FALSE;
45d6a902
AM
1183 if (oldbfd != NULL)
1184 olddyn = (oldbfd->flags & DYNAMIC) != 0;
707bba77 1185 else if (oldsec != NULL)
45d6a902 1186 {
707bba77 1187 /* This handles the special SHN_MIPS_{TEXT,DATA} section
45d6a902 1188 indices used by MIPS ELF. */
707bba77 1189 olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
45d6a902 1190 }
252b5132 1191
45d6a902
AM
1192 /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1193 respectively, appear to be a definition rather than reference. */
1194
707bba77 1195 newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
45d6a902 1196
707bba77
AM
1197 olddef = (h->root.type != bfd_link_hash_undefined
1198 && h->root.type != bfd_link_hash_undefweak
202ac193 1199 && h->root.type != bfd_link_hash_common);
45d6a902 1200
0a36a439
L
1201 /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1202 respectively, appear to be a function. */
1203
1204 newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1205 && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1206
1207 oldfunc = (h->type != STT_NOTYPE
1208 && bed->is_function_type (h->type));
1209
5b677558
AM
1210 /* If creating a default indirect symbol ("foo" or "foo@") from a
1211 dynamic versioned definition ("foo@@") skip doing so if there is
1212 an existing regular definition with a different type. We don't
1213 want, for example, a "time" variable in the executable overriding
1214 a "time" function in a shared library. */
580a2b6e 1215 if (pold_alignment == NULL
580a2b6e
L
1216 && newdyn
1217 && newdef
1218 && !olddyn
5b677558
AM
1219 && (olddef || h->root.type == bfd_link_hash_common)
1220 && ELF_ST_TYPE (sym->st_info) != h->type
1221 && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1222 && h->type != STT_NOTYPE
1223 && !(newfunc && oldfunc))
580a2b6e
L
1224 {
1225 *skip = TRUE;
1226 return TRUE;
1227 }
1228
4c34aff8
AM
1229 /* Check TLS symbols. We don't check undefined symbols introduced
1230 by "ld -u" which have no type (and oldbfd NULL), and we don't
1231 check symbols from plugins because they also have no type. */
1232 if (oldbfd != NULL
1233 && (oldbfd->flags & BFD_PLUGIN) == 0
1234 && (abfd->flags & BFD_PLUGIN) == 0
1235 && ELF_ST_TYPE (sym->st_info) != h->type
1236 && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
7479dfd4
L
1237 {
1238 bfd *ntbfd, *tbfd;
1239 bfd_boolean ntdef, tdef;
1240 asection *ntsec, *tsec;
1241
1242 if (h->type == STT_TLS)
1243 {
3b36f7e6 1244 ntbfd = abfd;
7479dfd4
L
1245 ntsec = sec;
1246 ntdef = newdef;
1247 tbfd = oldbfd;
1248 tsec = oldsec;
1249 tdef = olddef;
1250 }
1251 else
1252 {
1253 ntbfd = oldbfd;
1254 ntsec = oldsec;
1255 ntdef = olddef;
1256 tbfd = abfd;
1257 tsec = sec;
1258 tdef = newdef;
1259 }
1260
1261 if (tdef && ntdef)
4eca0228 1262 _bfd_error_handler
191c0c42
AM
1263 (_("%s: TLS definition in %B section %A "
1264 "mismatches non-TLS definition in %B section %A"),
7479dfd4
L
1265 tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1266 else if (!tdef && !ntdef)
4eca0228 1267 _bfd_error_handler
191c0c42
AM
1268 (_("%s: TLS reference in %B "
1269 "mismatches non-TLS reference in %B"),
7479dfd4
L
1270 tbfd, ntbfd, h->root.root.string);
1271 else if (tdef)
4eca0228 1272 _bfd_error_handler
191c0c42
AM
1273 (_("%s: TLS definition in %B section %A "
1274 "mismatches non-TLS reference in %B"),
7479dfd4
L
1275 tbfd, tsec, ntbfd, h->root.root.string);
1276 else
4eca0228 1277 _bfd_error_handler
191c0c42
AM
1278 (_("%s: TLS reference in %B "
1279 "mismatches non-TLS definition in %B section %A"),
7479dfd4
L
1280 tbfd, ntbfd, ntsec, h->root.root.string);
1281
1282 bfd_set_error (bfd_error_bad_value);
1283 return FALSE;
1284 }
1285
45d6a902
AM
1286 /* If the old symbol has non-default visibility, we ignore the new
1287 definition from a dynamic object. */
1288 if (newdyn
9c7a29a3 1289 && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902
AM
1290 && !bfd_is_und_section (sec))
1291 {
1292 *skip = TRUE;
1293 /* Make sure this symbol is dynamic. */
f5385ebf 1294 h->ref_dynamic = 1;
90c984fc 1295 hi->ref_dynamic = 1;
45d6a902
AM
1296 /* A protected symbol has external availability. Make sure it is
1297 recorded as dynamic.
1298
1299 FIXME: Should we check type and size for protected symbol? */
1300 if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
c152c796 1301 return bfd_elf_link_record_dynamic_symbol (info, h);
45d6a902
AM
1302 else
1303 return TRUE;
1304 }
1305 else if (!newdyn
9c7a29a3 1306 && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
f5385ebf 1307 && h->def_dynamic)
45d6a902
AM
1308 {
1309 /* If the new symbol with non-default visibility comes from a
1310 relocatable file and the old definition comes from a dynamic
1311 object, we remove the old definition. */
6c9b78e6 1312 if (hi->root.type == bfd_link_hash_indirect)
d2dee3b2
L
1313 {
1314 /* Handle the case where the old dynamic definition is
1315 default versioned. We need to copy the symbol info from
1316 the symbol with default version to the normal one if it
1317 was referenced before. */
1318 if (h->ref_regular)
1319 {
6c9b78e6 1320 hi->root.type = h->root.type;
d2dee3b2 1321 h->root.type = bfd_link_hash_indirect;
6c9b78e6 1322 (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
aed81c4e 1323
6c9b78e6 1324 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
aed81c4e 1325 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
d2dee3b2 1326 {
aed81c4e
MR
1327 /* If the new symbol is hidden or internal, completely undo
1328 any dynamic link state. */
1329 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1330 h->forced_local = 0;
1331 h->ref_dynamic = 0;
d2dee3b2
L
1332 }
1333 else
aed81c4e
MR
1334 h->ref_dynamic = 1;
1335
1336 h->def_dynamic = 0;
aed81c4e
MR
1337 /* FIXME: Should we check type and size for protected symbol? */
1338 h->size = 0;
1339 h->type = 0;
1340
6c9b78e6 1341 h = hi;
d2dee3b2
L
1342 }
1343 else
6c9b78e6 1344 h = hi;
d2dee3b2 1345 }
1de1a317 1346
f5eda473
AM
1347 /* If the old symbol was undefined before, then it will still be
1348 on the undefs list. If the new symbol is undefined or
1349 common, we can't make it bfd_link_hash_new here, because new
1350 undefined or common symbols will be added to the undefs list
1351 by _bfd_generic_link_add_one_symbol. Symbols may not be
1352 added twice to the undefs list. Also, if the new symbol is
1353 undefweak then we don't want to lose the strong undef. */
1354 if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1de1a317 1355 {
1de1a317 1356 h->root.type = bfd_link_hash_undefined;
1de1a317
L
1357 h->root.u.undef.abfd = abfd;
1358 }
1359 else
1360 {
1361 h->root.type = bfd_link_hash_new;
1362 h->root.u.undef.abfd = NULL;
1363 }
1364
f5eda473 1365 if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
252b5132 1366 {
f5eda473
AM
1367 /* If the new symbol is hidden or internal, completely undo
1368 any dynamic link state. */
1369 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1370 h->forced_local = 0;
1371 h->ref_dynamic = 0;
45d6a902 1372 }
f5eda473
AM
1373 else
1374 h->ref_dynamic = 1;
1375 h->def_dynamic = 0;
45d6a902
AM
1376 /* FIXME: Should we check type and size for protected symbol? */
1377 h->size = 0;
1378 h->type = 0;
1379 return TRUE;
1380 }
14a793b2 1381
15b43f48
AM
1382 /* If a new weak symbol definition comes from a regular file and the
1383 old symbol comes from a dynamic library, we treat the new one as
1384 strong. Similarly, an old weak symbol definition from a regular
1385 file is treated as strong when the new symbol comes from a dynamic
1386 library. Further, an old weak symbol from a dynamic library is
1387 treated as strong if the new symbol is from a dynamic library.
1388 This reflects the way glibc's ld.so works.
1389
1390 Do this before setting *type_change_ok or *size_change_ok so that
1391 we warn properly when dynamic library symbols are overridden. */
1392
1393 if (newdef && !newdyn && olddyn)
0f8a2703 1394 newweak = FALSE;
15b43f48 1395 if (olddef && newdyn)
0f8a2703
AM
1396 oldweak = FALSE;
1397
d334575b 1398 /* Allow changes between different types of function symbol. */
0a36a439 1399 if (newfunc && oldfunc)
fcb93ecf
PB
1400 *type_change_ok = TRUE;
1401
79349b09
AM
1402 /* It's OK to change the type if either the existing symbol or the
1403 new symbol is weak. A type change is also OK if the old symbol
1404 is undefined and the new symbol is defined. */
252b5132 1405
79349b09
AM
1406 if (oldweak
1407 || newweak
1408 || (newdef
1409 && h->root.type == bfd_link_hash_undefined))
1410 *type_change_ok = TRUE;
1411
1412 /* It's OK to change the size if either the existing symbol or the
1413 new symbol is weak, or if the old symbol is undefined. */
1414
1415 if (*type_change_ok
1416 || h->root.type == bfd_link_hash_undefined)
1417 *size_change_ok = TRUE;
45d6a902 1418
45d6a902
AM
1419 /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1420 symbol, respectively, appears to be a common symbol in a dynamic
1421 object. If a symbol appears in an uninitialized section, and is
1422 not weak, and is not a function, then it may be a common symbol
1423 which was resolved when the dynamic object was created. We want
1424 to treat such symbols specially, because they raise special
1425 considerations when setting the symbol size: if the symbol
1426 appears as a common symbol in a regular object, and the size in
1427 the regular object is larger, we must make sure that we use the
1428 larger size. This problematic case can always be avoided in C,
1429 but it must be handled correctly when using Fortran shared
1430 libraries.
1431
1432 Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1433 likewise for OLDDYNCOMMON and OLDDEF.
1434
1435 Note that this test is just a heuristic, and that it is quite
1436 possible to have an uninitialized symbol in a shared object which
1437 is really a definition, rather than a common symbol. This could
1438 lead to some minor confusion when the symbol really is a common
1439 symbol in some regular object. However, I think it will be
1440 harmless. */
1441
1442 if (newdyn
1443 && newdef
79349b09 1444 && !newweak
45d6a902
AM
1445 && (sec->flags & SEC_ALLOC) != 0
1446 && (sec->flags & SEC_LOAD) == 0
1447 && sym->st_size > 0
0a36a439 1448 && !newfunc)
45d6a902
AM
1449 newdyncommon = TRUE;
1450 else
1451 newdyncommon = FALSE;
1452
1453 if (olddyn
1454 && olddef
1455 && h->root.type == bfd_link_hash_defined
f5385ebf 1456 && h->def_dynamic
45d6a902
AM
1457 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1458 && (h->root.u.def.section->flags & SEC_LOAD) == 0
1459 && h->size > 0
0a36a439 1460 && !oldfunc)
45d6a902
AM
1461 olddyncommon = TRUE;
1462 else
1463 olddyncommon = FALSE;
1464
a4d8e49b
L
1465 /* We now know everything about the old and new symbols. We ask the
1466 backend to check if we can merge them. */
5d13b3b3
AM
1467 if (bed->merge_symbol != NULL)
1468 {
1469 if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1470 return FALSE;
1471 sec = *psec;
1472 }
a4d8e49b 1473
45d6a902
AM
1474 /* If both the old and the new symbols look like common symbols in a
1475 dynamic object, set the size of the symbol to the larger of the
1476 two. */
1477
1478 if (olddyncommon
1479 && newdyncommon
1480 && sym->st_size != h->size)
1481 {
1482 /* Since we think we have two common symbols, issue a multiple
1483 common warning if desired. Note that we only warn if the
1484 size is different. If the size is the same, we simply let
1485 the old symbol override the new one as normally happens with
1486 symbols defined in dynamic objects. */
1487
1a72702b
AM
1488 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1489 bfd_link_hash_common, sym->st_size);
45d6a902
AM
1490 if (sym->st_size > h->size)
1491 h->size = sym->st_size;
252b5132 1492
45d6a902 1493 *size_change_ok = TRUE;
252b5132
RH
1494 }
1495
45d6a902
AM
1496 /* If we are looking at a dynamic object, and we have found a
1497 definition, we need to see if the symbol was already defined by
1498 some other object. If so, we want to use the existing
1499 definition, and we do not want to report a multiple symbol
1500 definition error; we do this by clobbering *PSEC to be
1501 bfd_und_section_ptr.
1502
1503 We treat a common symbol as a definition if the symbol in the
1504 shared library is a function, since common symbols always
1505 represent variables; this can cause confusion in principle, but
1506 any such confusion would seem to indicate an erroneous program or
1507 shared library. We also permit a common symbol in a regular
202ac193
L
1508 object to override a weak symbol in a shared object. A common
1509 symbol in executable also overrides a symbol in a shared object. */
45d6a902
AM
1510
1511 if (newdyn
1512 && newdef
77cfaee6 1513 && (olddef
45d6a902 1514 || (h->root.type == bfd_link_hash_common
202ac193
L
1515 && (newweak
1516 || newfunc
1517 || (!olddyn && bfd_link_executable (info))))))
45d6a902
AM
1518 {
1519 *override = TRUE;
1520 newdef = FALSE;
1521 newdyncommon = FALSE;
252b5132 1522
45d6a902
AM
1523 *psec = sec = bfd_und_section_ptr;
1524 *size_change_ok = TRUE;
252b5132 1525
45d6a902
AM
1526 /* If we get here when the old symbol is a common symbol, then
1527 we are explicitly letting it override a weak symbol or
1528 function in a dynamic object, and we don't want to warn about
1529 a type change. If the old symbol is a defined symbol, a type
1530 change warning may still be appropriate. */
252b5132 1531
45d6a902
AM
1532 if (h->root.type == bfd_link_hash_common)
1533 *type_change_ok = TRUE;
1534 }
1535
1536 /* Handle the special case of an old common symbol merging with a
1537 new symbol which looks like a common symbol in a shared object.
1538 We change *PSEC and *PVALUE to make the new symbol look like a
91134c82
L
1539 common symbol, and let _bfd_generic_link_add_one_symbol do the
1540 right thing. */
45d6a902
AM
1541
1542 if (newdyncommon
1543 && h->root.type == bfd_link_hash_common)
1544 {
1545 *override = TRUE;
1546 newdef = FALSE;
1547 newdyncommon = FALSE;
1548 *pvalue = sym->st_size;
a4d8e49b 1549 *psec = sec = bed->common_section (oldsec);
45d6a902
AM
1550 *size_change_ok = TRUE;
1551 }
1552
c5e2cead 1553 /* Skip weak definitions of symbols that are already defined. */
f41d945b 1554 if (newdef && olddef && newweak)
54ac0771 1555 {
35ed3f94 1556 /* Don't skip new non-IR weak syms. */
3a5dbfb2
AM
1557 if (!(oldbfd != NULL
1558 && (oldbfd->flags & BFD_PLUGIN) != 0
35ed3f94 1559 && (abfd->flags & BFD_PLUGIN) == 0))
57fa7b8c
AM
1560 {
1561 newdef = FALSE;
1562 *skip = TRUE;
1563 }
54ac0771
L
1564
1565 /* Merge st_other. If the symbol already has a dynamic index,
1566 but visibility says it should not be visible, turn it into a
1567 local symbol. */
b8417128 1568 elf_merge_st_other (abfd, h, sym, sec, newdef, newdyn);
54ac0771
L
1569 if (h->dynindx != -1)
1570 switch (ELF_ST_VISIBILITY (h->other))
1571 {
1572 case STV_INTERNAL:
1573 case STV_HIDDEN:
1574 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1575 break;
1576 }
1577 }
c5e2cead 1578
45d6a902
AM
1579 /* If the old symbol is from a dynamic object, and the new symbol is
1580 a definition which is not from a dynamic object, then the new
1581 symbol overrides the old symbol. Symbols from regular files
1582 always take precedence over symbols from dynamic objects, even if
1583 they are defined after the dynamic object in the link.
1584
1585 As above, we again permit a common symbol in a regular object to
1586 override a definition in a shared object if the shared object
0f8a2703 1587 symbol is a function or is weak. */
45d6a902
AM
1588
1589 flip = NULL;
77cfaee6 1590 if (!newdyn
45d6a902
AM
1591 && (newdef
1592 || (bfd_is_com_section (sec)
0a36a439 1593 && (oldweak || oldfunc)))
45d6a902
AM
1594 && olddyn
1595 && olddef
f5385ebf 1596 && h->def_dynamic)
45d6a902
AM
1597 {
1598 /* Change the hash table entry to undefined, and let
1599 _bfd_generic_link_add_one_symbol do the right thing with the
1600 new definition. */
1601
1602 h->root.type = bfd_link_hash_undefined;
1603 h->root.u.undef.abfd = h->root.u.def.section->owner;
1604 *size_change_ok = TRUE;
1605
1606 olddef = FALSE;
1607 olddyncommon = FALSE;
1608
1609 /* We again permit a type change when a common symbol may be
1610 overriding a function. */
1611
1612 if (bfd_is_com_section (sec))
0a36a439
L
1613 {
1614 if (oldfunc)
1615 {
1616 /* If a common symbol overrides a function, make sure
1617 that it isn't defined dynamically nor has type
1618 function. */
1619 h->def_dynamic = 0;
1620 h->type = STT_NOTYPE;
1621 }
1622 *type_change_ok = TRUE;
1623 }
45d6a902 1624
6c9b78e6
AM
1625 if (hi->root.type == bfd_link_hash_indirect)
1626 flip = hi;
45d6a902
AM
1627 else
1628 /* This union may have been set to be non-NULL when this symbol
1629 was seen in a dynamic object. We must force the union to be
1630 NULL, so that it is correct for a regular symbol. */
1631 h->verinfo.vertree = NULL;
1632 }
1633
1634 /* Handle the special case of a new common symbol merging with an
1635 old symbol that looks like it might be a common symbol defined in
1636 a shared object. Note that we have already handled the case in
1637 which a new common symbol should simply override the definition
1638 in the shared library. */
1639
1640 if (! newdyn
1641 && bfd_is_com_section (sec)
1642 && olddyncommon)
1643 {
1644 /* It would be best if we could set the hash table entry to a
1645 common symbol, but we don't know what to use for the section
1646 or the alignment. */
1a72702b
AM
1647 (*info->callbacks->multiple_common) (info, &h->root, abfd,
1648 bfd_link_hash_common, sym->st_size);
45d6a902 1649
4cc11e76 1650 /* If the presumed common symbol in the dynamic object is
45d6a902
AM
1651 larger, pretend that the new symbol has its size. */
1652
1653 if (h->size > *pvalue)
1654 *pvalue = h->size;
1655
af44c138
L
1656 /* We need to remember the alignment required by the symbol
1657 in the dynamic object. */
1658 BFD_ASSERT (pold_alignment);
1659 *pold_alignment = h->root.u.def.section->alignment_power;
45d6a902
AM
1660
1661 olddef = FALSE;
1662 olddyncommon = FALSE;
1663
1664 h->root.type = bfd_link_hash_undefined;
1665 h->root.u.undef.abfd = h->root.u.def.section->owner;
1666
1667 *size_change_ok = TRUE;
1668 *type_change_ok = TRUE;
1669
6c9b78e6
AM
1670 if (hi->root.type == bfd_link_hash_indirect)
1671 flip = hi;
45d6a902
AM
1672 else
1673 h->verinfo.vertree = NULL;
1674 }
1675
1676 if (flip != NULL)
1677 {
1678 /* Handle the case where we had a versioned symbol in a dynamic
1679 library and now find a definition in a normal object. In this
1680 case, we make the versioned symbol point to the normal one. */
45d6a902 1681 flip->root.type = h->root.type;
00cbee0a 1682 flip->root.u.undef.abfd = h->root.u.undef.abfd;
45d6a902
AM
1683 h->root.type = bfd_link_hash_indirect;
1684 h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
fcfa13d2 1685 (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
f5385ebf 1686 if (h->def_dynamic)
45d6a902 1687 {
f5385ebf
AM
1688 h->def_dynamic = 0;
1689 flip->ref_dynamic = 1;
45d6a902
AM
1690 }
1691 }
1692
45d6a902
AM
1693 return TRUE;
1694}
1695
1696/* This function is called to create an indirect symbol from the
1697 default for the symbol with the default version if needed. The
4f3fedcf 1698 symbol is described by H, NAME, SYM, SEC, and VALUE. We
0f8a2703 1699 set DYNSYM if the new indirect symbol is dynamic. */
45d6a902 1700
28caa186 1701static bfd_boolean
268b6b39
AM
1702_bfd_elf_add_default_symbol (bfd *abfd,
1703 struct bfd_link_info *info,
1704 struct elf_link_hash_entry *h,
1705 const char *name,
1706 Elf_Internal_Sym *sym,
4f3fedcf
AM
1707 asection *sec,
1708 bfd_vma value,
1709 bfd **poldbfd,
e3c9d234 1710 bfd_boolean *dynsym)
45d6a902
AM
1711{
1712 bfd_boolean type_change_ok;
1713 bfd_boolean size_change_ok;
1714 bfd_boolean skip;
1715 char *shortname;
1716 struct elf_link_hash_entry *hi;
1717 struct bfd_link_hash_entry *bh;
9c5bfbb7 1718 const struct elf_backend_data *bed;
45d6a902
AM
1719 bfd_boolean collect;
1720 bfd_boolean dynamic;
e3c9d234 1721 bfd_boolean override;
45d6a902
AM
1722 char *p;
1723 size_t len, shortlen;
ffd65175 1724 asection *tmp_sec;
6e33951e 1725 bfd_boolean matched;
45d6a902 1726
422f1182
L
1727 if (h->versioned == unversioned || h->versioned == versioned_hidden)
1728 return TRUE;
1729
45d6a902
AM
1730 /* If this symbol has a version, and it is the default version, we
1731 create an indirect symbol from the default name to the fully
1732 decorated name. This will cause external references which do not
1733 specify a version to be bound to this version of the symbol. */
1734 p = strchr (name, ELF_VER_CHR);
422f1182
L
1735 if (h->versioned == unknown)
1736 {
1737 if (p == NULL)
1738 {
1739 h->versioned = unversioned;
1740 return TRUE;
1741 }
1742 else
1743 {
1744 if (p[1] != ELF_VER_CHR)
1745 {
1746 h->versioned = versioned_hidden;
1747 return TRUE;
1748 }
1749 else
1750 h->versioned = versioned;
1751 }
1752 }
4373f8af
L
1753 else
1754 {
1755 /* PR ld/19073: We may see an unversioned definition after the
1756 default version. */
1757 if (p == NULL)
1758 return TRUE;
1759 }
45d6a902 1760
45d6a902
AM
1761 bed = get_elf_backend_data (abfd);
1762 collect = bed->collect;
1763 dynamic = (abfd->flags & DYNAMIC) != 0;
1764
1765 shortlen = p - name;
a50b1753 1766 shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
45d6a902
AM
1767 if (shortname == NULL)
1768 return FALSE;
1769 memcpy (shortname, name, shortlen);
1770 shortname[shortlen] = '\0';
1771
1772 /* We are going to create a new symbol. Merge it with any existing
1773 symbol with this name. For the purposes of the merge, act as
1774 though we were defining the symbol we just defined, although we
1775 actually going to define an indirect symbol. */
1776 type_change_ok = FALSE;
1777 size_change_ok = FALSE;
6e33951e 1778 matched = TRUE;
ffd65175
AM
1779 tmp_sec = sec;
1780 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
4f3fedcf 1781 &hi, poldbfd, NULL, NULL, &skip, &override,
6e33951e 1782 &type_change_ok, &size_change_ok, &matched))
45d6a902
AM
1783 return FALSE;
1784
1785 if (skip)
1786 goto nondefault;
1787
5b677558
AM
1788 if (hi->def_regular)
1789 {
1790 /* If the undecorated symbol will have a version added by a
1791 script different to H, then don't indirect to/from the
1792 undecorated symbol. This isn't ideal because we may not yet
1793 have seen symbol versions, if given by a script on the
1794 command line rather than via --version-script. */
1795 if (hi->verinfo.vertree == NULL && info->version_info != NULL)
1796 {
1797 bfd_boolean hide;
1798
1799 hi->verinfo.vertree
1800 = bfd_find_version_for_sym (info->version_info,
1801 hi->root.root.string, &hide);
1802 if (hi->verinfo.vertree != NULL && hide)
1803 {
1804 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
1805 goto nondefault;
1806 }
1807 }
1808 if (hi->verinfo.vertree != NULL
1809 && strcmp (p + 1 + (p[1] == '@'), hi->verinfo.vertree->name) != 0)
1810 goto nondefault;
1811 }
1812
45d6a902
AM
1813 if (! override)
1814 {
c6e8a9a8 1815 /* Add the default symbol if not performing a relocatable link. */
0e1862bb 1816 if (! bfd_link_relocatable (info))
c6e8a9a8
L
1817 {
1818 bh = &hi->root;
1819 if (! (_bfd_generic_link_add_one_symbol
1820 (info, abfd, shortname, BSF_INDIRECT,
1821 bfd_ind_section_ptr,
1822 0, name, FALSE, collect, &bh)))
1823 return FALSE;
1824 hi = (struct elf_link_hash_entry *) bh;
1825 }
45d6a902
AM
1826 }
1827 else
1828 {
1829 /* In this case the symbol named SHORTNAME is overriding the
1830 indirect symbol we want to add. We were planning on making
1831 SHORTNAME an indirect symbol referring to NAME. SHORTNAME
1832 is the name without a version. NAME is the fully versioned
1833 name, and it is the default version.
1834
1835 Overriding means that we already saw a definition for the
1836 symbol SHORTNAME in a regular object, and it is overriding
1837 the symbol defined in the dynamic object.
1838
1839 When this happens, we actually want to change NAME, the
1840 symbol we just added, to refer to SHORTNAME. This will cause
1841 references to NAME in the shared object to become references
1842 to SHORTNAME in the regular object. This is what we expect
1843 when we override a function in a shared object: that the
1844 references in the shared object will be mapped to the
1845 definition in the regular object. */
1846
1847 while (hi->root.type == bfd_link_hash_indirect
1848 || hi->root.type == bfd_link_hash_warning)
1849 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1850
1851 h->root.type = bfd_link_hash_indirect;
1852 h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
f5385ebf 1853 if (h->def_dynamic)
45d6a902 1854 {
f5385ebf
AM
1855 h->def_dynamic = 0;
1856 hi->ref_dynamic = 1;
1857 if (hi->ref_regular
1858 || hi->def_regular)
45d6a902 1859 {
c152c796 1860 if (! bfd_elf_link_record_dynamic_symbol (info, hi))
45d6a902
AM
1861 return FALSE;
1862 }
1863 }
1864
1865 /* Now set HI to H, so that the following code will set the
1866 other fields correctly. */
1867 hi = h;
1868 }
1869
fab4a87f
L
1870 /* Check if HI is a warning symbol. */
1871 if (hi->root.type == bfd_link_hash_warning)
1872 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1873
45d6a902
AM
1874 /* If there is a duplicate definition somewhere, then HI may not
1875 point to an indirect symbol. We will have reported an error to
1876 the user in that case. */
1877
1878 if (hi->root.type == bfd_link_hash_indirect)
1879 {
1880 struct elf_link_hash_entry *ht;
1881
45d6a902 1882 ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
fcfa13d2 1883 (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
45d6a902 1884
68c88cd4
AM
1885 /* A reference to the SHORTNAME symbol from a dynamic library
1886 will be satisfied by the versioned symbol at runtime. In
1887 effect, we have a reference to the versioned symbol. */
1888 ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1889 hi->dynamic_def |= ht->dynamic_def;
1890
45d6a902
AM
1891 /* See if the new flags lead us to realize that the symbol must
1892 be dynamic. */
1893 if (! *dynsym)
1894 {
1895 if (! dynamic)
1896 {
0e1862bb 1897 if (! bfd_link_executable (info)
90c984fc 1898 || hi->def_dynamic
f5385ebf 1899 || hi->ref_dynamic)
45d6a902
AM
1900 *dynsym = TRUE;
1901 }
1902 else
1903 {
f5385ebf 1904 if (hi->ref_regular)
45d6a902
AM
1905 *dynsym = TRUE;
1906 }
1907 }
1908 }
1909
1910 /* We also need to define an indirection from the nondefault version
1911 of the symbol. */
1912
1913nondefault:
1914 len = strlen (name);
a50b1753 1915 shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
45d6a902
AM
1916 if (shortname == NULL)
1917 return FALSE;
1918 memcpy (shortname, name, shortlen);
1919 memcpy (shortname + shortlen, p + 1, len - shortlen);
1920
1921 /* Once again, merge with any existing symbol. */
1922 type_change_ok = FALSE;
1923 size_change_ok = FALSE;
ffd65175
AM
1924 tmp_sec = sec;
1925 if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
115c6d5c 1926 &hi, poldbfd, NULL, NULL, &skip, &override,
6e33951e 1927 &type_change_ok, &size_change_ok, &matched))
45d6a902
AM
1928 return FALSE;
1929
1930 if (skip)
1931 return TRUE;
1932
1933 if (override)
1934 {
1935 /* Here SHORTNAME is a versioned name, so we don't expect to see
1936 the type of override we do in the case above unless it is
4cc11e76 1937 overridden by a versioned definition. */
45d6a902
AM
1938 if (hi->root.type != bfd_link_hash_defined
1939 && hi->root.type != bfd_link_hash_defweak)
4eca0228 1940 _bfd_error_handler
d003868e
AM
1941 (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
1942 abfd, shortname);
45d6a902
AM
1943 }
1944 else
1945 {
1946 bh = &hi->root;
1947 if (! (_bfd_generic_link_add_one_symbol
1948 (info, abfd, shortname, BSF_INDIRECT,
268b6b39 1949 bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
45d6a902
AM
1950 return FALSE;
1951 hi = (struct elf_link_hash_entry *) bh;
1952
1953 /* If there is a duplicate definition somewhere, then HI may not
1954 point to an indirect symbol. We will have reported an error
1955 to the user in that case. */
1956
1957 if (hi->root.type == bfd_link_hash_indirect)
1958 {
fcfa13d2 1959 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
68c88cd4
AM
1960 h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1961 hi->dynamic_def |= h->dynamic_def;
45d6a902
AM
1962
1963 /* See if the new flags lead us to realize that the symbol
1964 must be dynamic. */
1965 if (! *dynsym)
1966 {
1967 if (! dynamic)
1968 {
0e1862bb 1969 if (! bfd_link_executable (info)
f5385ebf 1970 || hi->ref_dynamic)
45d6a902
AM
1971 *dynsym = TRUE;
1972 }
1973 else
1974 {
f5385ebf 1975 if (hi->ref_regular)
45d6a902
AM
1976 *dynsym = TRUE;
1977 }
1978 }
1979 }
1980 }
1981
1982 return TRUE;
1983}
1984\f
1985/* This routine is used to export all defined symbols into the dynamic
1986 symbol table. It is called via elf_link_hash_traverse. */
1987
28caa186 1988static bfd_boolean
268b6b39 1989_bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 1990{
a50b1753 1991 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902
AM
1992
1993 /* Ignore indirect symbols. These are added by the versioning code. */
1994 if (h->root.type == bfd_link_hash_indirect)
1995 return TRUE;
1996
7686d77d
AM
1997 /* Ignore this if we won't export it. */
1998 if (!eif->info->export_dynamic && !h->dynamic)
1999 return TRUE;
45d6a902
AM
2000
2001 if (h->dynindx == -1
fd91d419
L
2002 && (h->def_regular || h->ref_regular)
2003 && ! bfd_hide_sym_by_version (eif->info->version_info,
2004 h->root.root.string))
45d6a902 2005 {
fd91d419 2006 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902 2007 {
fd91d419
L
2008 eif->failed = TRUE;
2009 return FALSE;
45d6a902
AM
2010 }
2011 }
2012
2013 return TRUE;
2014}
2015\f
2016/* Look through the symbols which are defined in other shared
2017 libraries and referenced here. Update the list of version
2018 dependencies. This will be put into the .gnu.version_r section.
2019 This function is called via elf_link_hash_traverse. */
2020
28caa186 2021static bfd_boolean
268b6b39
AM
2022_bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
2023 void *data)
45d6a902 2024{
a50b1753 2025 struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
45d6a902
AM
2026 Elf_Internal_Verneed *t;
2027 Elf_Internal_Vernaux *a;
2028 bfd_size_type amt;
2029
45d6a902
AM
2030 /* We only care about symbols defined in shared objects with version
2031 information. */
f5385ebf
AM
2032 if (!h->def_dynamic
2033 || h->def_regular
45d6a902 2034 || h->dynindx == -1
7b20f099
AM
2035 || h->verinfo.verdef == NULL
2036 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
2037 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
45d6a902
AM
2038 return TRUE;
2039
2040 /* See if we already know about this version. */
28caa186
AM
2041 for (t = elf_tdata (rinfo->info->output_bfd)->verref;
2042 t != NULL;
2043 t = t->vn_nextref)
45d6a902
AM
2044 {
2045 if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
2046 continue;
2047
2048 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2049 if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
2050 return TRUE;
2051
2052 break;
2053 }
2054
2055 /* This is a new version. Add it to tree we are building. */
2056
2057 if (t == NULL)
2058 {
2059 amt = sizeof *t;
a50b1753 2060 t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
45d6a902
AM
2061 if (t == NULL)
2062 {
2063 rinfo->failed = TRUE;
2064 return FALSE;
2065 }
2066
2067 t->vn_bfd = h->verinfo.verdef->vd_bfd;
28caa186
AM
2068 t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
2069 elf_tdata (rinfo->info->output_bfd)->verref = t;
45d6a902
AM
2070 }
2071
2072 amt = sizeof *a;
a50b1753 2073 a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
14b1c01e
AM
2074 if (a == NULL)
2075 {
2076 rinfo->failed = TRUE;
2077 return FALSE;
2078 }
45d6a902
AM
2079
2080 /* Note that we are copying a string pointer here, and testing it
2081 above. If bfd_elf_string_from_elf_section is ever changed to
2082 discard the string data when low in memory, this will have to be
2083 fixed. */
2084 a->vna_nodename = h->verinfo.verdef->vd_nodename;
2085
2086 a->vna_flags = h->verinfo.verdef->vd_flags;
2087 a->vna_nextptr = t->vn_auxptr;
2088
2089 h->verinfo.verdef->vd_exp_refno = rinfo->vers;
2090 ++rinfo->vers;
2091
2092 a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
2093
2094 t->vn_auxptr = a;
2095
2096 return TRUE;
2097}
2098
2099/* Figure out appropriate versions for all the symbols. We may not
2100 have the version number script until we have read all of the input
2101 files, so until that point we don't know which symbols should be
2102 local. This function is called via elf_link_hash_traverse. */
2103
28caa186 2104static bfd_boolean
268b6b39 2105_bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
45d6a902 2106{
28caa186 2107 struct elf_info_failed *sinfo;
45d6a902 2108 struct bfd_link_info *info;
9c5bfbb7 2109 const struct elf_backend_data *bed;
45d6a902
AM
2110 struct elf_info_failed eif;
2111 char *p;
45d6a902 2112
a50b1753 2113 sinfo = (struct elf_info_failed *) data;
45d6a902
AM
2114 info = sinfo->info;
2115
45d6a902
AM
2116 /* Fix the symbol flags. */
2117 eif.failed = FALSE;
2118 eif.info = info;
2119 if (! _bfd_elf_fix_symbol_flags (h, &eif))
2120 {
2121 if (eif.failed)
2122 sinfo->failed = TRUE;
2123 return FALSE;
2124 }
2125
2126 /* We only need version numbers for symbols defined in regular
2127 objects. */
f5385ebf 2128 if (!h->def_regular)
45d6a902
AM
2129 return TRUE;
2130
28caa186 2131 bed = get_elf_backend_data (info->output_bfd);
45d6a902
AM
2132 p = strchr (h->root.root.string, ELF_VER_CHR);
2133 if (p != NULL && h->verinfo.vertree == NULL)
2134 {
2135 struct bfd_elf_version_tree *t;
45d6a902 2136
45d6a902
AM
2137 ++p;
2138 if (*p == ELF_VER_CHR)
6e33951e 2139 ++p;
45d6a902
AM
2140
2141 /* If there is no version string, we can just return out. */
2142 if (*p == '\0')
6e33951e 2143 return TRUE;
45d6a902
AM
2144
2145 /* Look for the version. If we find it, it is no longer weak. */
fd91d419 2146 for (t = sinfo->info->version_info; t != NULL; t = t->next)
45d6a902
AM
2147 {
2148 if (strcmp (t->name, p) == 0)
2149 {
2150 size_t len;
2151 char *alc;
2152 struct bfd_elf_version_expr *d;
2153
2154 len = p - h->root.root.string;
a50b1753 2155 alc = (char *) bfd_malloc (len);
45d6a902 2156 if (alc == NULL)
14b1c01e
AM
2157 {
2158 sinfo->failed = TRUE;
2159 return FALSE;
2160 }
45d6a902
AM
2161 memcpy (alc, h->root.root.string, len - 1);
2162 alc[len - 1] = '\0';
2163 if (alc[len - 2] == ELF_VER_CHR)
2164 alc[len - 2] = '\0';
2165
2166 h->verinfo.vertree = t;
2167 t->used = TRUE;
2168 d = NULL;
2169
108ba305
JJ
2170 if (t->globals.list != NULL)
2171 d = (*t->match) (&t->globals, NULL, alc);
45d6a902
AM
2172
2173 /* See if there is anything to force this symbol to
2174 local scope. */
108ba305 2175 if (d == NULL && t->locals.list != NULL)
45d6a902 2176 {
108ba305
JJ
2177 d = (*t->match) (&t->locals, NULL, alc);
2178 if (d != NULL
2179 && h->dynindx != -1
108ba305
JJ
2180 && ! info->export_dynamic)
2181 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
2182 }
2183
2184 free (alc);
2185 break;
2186 }
2187 }
2188
2189 /* If we are building an application, we need to create a
2190 version node for this version. */
0e1862bb 2191 if (t == NULL && bfd_link_executable (info))
45d6a902
AM
2192 {
2193 struct bfd_elf_version_tree **pp;
2194 int version_index;
2195
2196 /* If we aren't going to export this symbol, we don't need
2197 to worry about it. */
2198 if (h->dynindx == -1)
2199 return TRUE;
2200
ef53be89
AM
2201 t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd,
2202 sizeof *t);
45d6a902
AM
2203 if (t == NULL)
2204 {
2205 sinfo->failed = TRUE;
2206 return FALSE;
2207 }
2208
45d6a902 2209 t->name = p;
45d6a902
AM
2210 t->name_indx = (unsigned int) -1;
2211 t->used = TRUE;
2212
2213 version_index = 1;
2214 /* Don't count anonymous version tag. */
fd91d419
L
2215 if (sinfo->info->version_info != NULL
2216 && sinfo->info->version_info->vernum == 0)
45d6a902 2217 version_index = 0;
fd91d419
L
2218 for (pp = &sinfo->info->version_info;
2219 *pp != NULL;
2220 pp = &(*pp)->next)
45d6a902
AM
2221 ++version_index;
2222 t->vernum = version_index;
2223
2224 *pp = t;
2225
2226 h->verinfo.vertree = t;
2227 }
2228 else if (t == NULL)
2229 {
2230 /* We could not find the version for a symbol when
2231 generating a shared archive. Return an error. */
4eca0228 2232 _bfd_error_handler
c55fe096 2233 (_("%B: version node not found for symbol %s"),
28caa186 2234 info->output_bfd, h->root.root.string);
45d6a902
AM
2235 bfd_set_error (bfd_error_bad_value);
2236 sinfo->failed = TRUE;
2237 return FALSE;
2238 }
45d6a902
AM
2239 }
2240
2241 /* If we don't have a version for this symbol, see if we can find
2242 something. */
fd91d419 2243 if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL)
45d6a902 2244 {
1e8fa21e 2245 bfd_boolean hide;
ae5a3597 2246
fd91d419
L
2247 h->verinfo.vertree
2248 = bfd_find_version_for_sym (sinfo->info->version_info,
2249 h->root.root.string, &hide);
1e8fa21e
AM
2250 if (h->verinfo.vertree != NULL && hide)
2251 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
45d6a902
AM
2252 }
2253
2254 return TRUE;
2255}
2256\f
45d6a902
AM
2257/* Read and swap the relocs from the section indicated by SHDR. This
2258 may be either a REL or a RELA section. The relocations are
2259 translated into RELA relocations and stored in INTERNAL_RELOCS,
2260 which should have already been allocated to contain enough space.
2261 The EXTERNAL_RELOCS are a buffer where the external form of the
2262 relocations should be stored.
2263
2264 Returns FALSE if something goes wrong. */
2265
2266static bfd_boolean
268b6b39 2267elf_link_read_relocs_from_section (bfd *abfd,
243ef1e0 2268 asection *sec,
268b6b39
AM
2269 Elf_Internal_Shdr *shdr,
2270 void *external_relocs,
2271 Elf_Internal_Rela *internal_relocs)
45d6a902 2272{
9c5bfbb7 2273 const struct elf_backend_data *bed;
268b6b39 2274 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
45d6a902
AM
2275 const bfd_byte *erela;
2276 const bfd_byte *erelaend;
2277 Elf_Internal_Rela *irela;
243ef1e0
L
2278 Elf_Internal_Shdr *symtab_hdr;
2279 size_t nsyms;
45d6a902 2280
45d6a902
AM
2281 /* Position ourselves at the start of the section. */
2282 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2283 return FALSE;
2284
2285 /* Read the relocations. */
2286 if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2287 return FALSE;
2288
243ef1e0 2289 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
ce98a316 2290 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
243ef1e0 2291
45d6a902
AM
2292 bed = get_elf_backend_data (abfd);
2293
2294 /* Convert the external relocations to the internal format. */
2295 if (shdr->sh_entsize == bed->s->sizeof_rel)
2296 swap_in = bed->s->swap_reloc_in;
2297 else if (shdr->sh_entsize == bed->s->sizeof_rela)
2298 swap_in = bed->s->swap_reloca_in;
2299 else
2300 {
2301 bfd_set_error (bfd_error_wrong_format);
2302 return FALSE;
2303 }
2304
a50b1753 2305 erela = (const bfd_byte *) external_relocs;
51992aec 2306 erelaend = erela + shdr->sh_size;
45d6a902
AM
2307 irela = internal_relocs;
2308 while (erela < erelaend)
2309 {
243ef1e0
L
2310 bfd_vma r_symndx;
2311
45d6a902 2312 (*swap_in) (abfd, erela, irela);
243ef1e0
L
2313 r_symndx = ELF32_R_SYM (irela->r_info);
2314 if (bed->s->arch_size == 64)
2315 r_symndx >>= 24;
ce98a316
NC
2316 if (nsyms > 0)
2317 {
2318 if ((size_t) r_symndx >= nsyms)
2319 {
4eca0228 2320 _bfd_error_handler
ce98a316
NC
2321 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2322 " for offset 0x%lx in section `%A'"),
2323 abfd, sec,
2324 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2325 bfd_set_error (bfd_error_bad_value);
2326 return FALSE;
2327 }
2328 }
cf35638d 2329 else if (r_symndx != STN_UNDEF)
243ef1e0 2330 {
4eca0228 2331 _bfd_error_handler
ce98a316
NC
2332 (_("%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A'"
2333 " when the object file has no symbol table"),
d003868e
AM
2334 abfd, sec,
2335 (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
243ef1e0
L
2336 bfd_set_error (bfd_error_bad_value);
2337 return FALSE;
2338 }
45d6a902
AM
2339 irela += bed->s->int_rels_per_ext_rel;
2340 erela += shdr->sh_entsize;
2341 }
2342
2343 return TRUE;
2344}
2345
2346/* Read and swap the relocs for a section O. They may have been
2347 cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2348 not NULL, they are used as buffers to read into. They are known to
2349 be large enough. If the INTERNAL_RELOCS relocs argument is NULL,
2350 the return value is allocated using either malloc or bfd_alloc,
2351 according to the KEEP_MEMORY argument. If O has two relocation
2352 sections (both REL and RELA relocations), then the REL_HDR
2353 relocations will appear first in INTERNAL_RELOCS, followed by the
d4730f92 2354 RELA_HDR relocations. */
45d6a902
AM
2355
2356Elf_Internal_Rela *
268b6b39
AM
2357_bfd_elf_link_read_relocs (bfd *abfd,
2358 asection *o,
2359 void *external_relocs,
2360 Elf_Internal_Rela *internal_relocs,
2361 bfd_boolean keep_memory)
45d6a902 2362{
268b6b39 2363 void *alloc1 = NULL;
45d6a902 2364 Elf_Internal_Rela *alloc2 = NULL;
9c5bfbb7 2365 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
d4730f92
BS
2366 struct bfd_elf_section_data *esdo = elf_section_data (o);
2367 Elf_Internal_Rela *internal_rela_relocs;
45d6a902 2368
d4730f92
BS
2369 if (esdo->relocs != NULL)
2370 return esdo->relocs;
45d6a902
AM
2371
2372 if (o->reloc_count == 0)
2373 return NULL;
2374
45d6a902
AM
2375 if (internal_relocs == NULL)
2376 {
2377 bfd_size_type size;
2378
2379 size = o->reloc_count;
2380 size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2381 if (keep_memory)
a50b1753 2382 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
45d6a902 2383 else
a50b1753 2384 internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
45d6a902
AM
2385 if (internal_relocs == NULL)
2386 goto error_return;
2387 }
2388
2389 if (external_relocs == NULL)
2390 {
d4730f92
BS
2391 bfd_size_type size = 0;
2392
2393 if (esdo->rel.hdr)
2394 size += esdo->rel.hdr->sh_size;
2395 if (esdo->rela.hdr)
2396 size += esdo->rela.hdr->sh_size;
45d6a902 2397
268b6b39 2398 alloc1 = bfd_malloc (size);
45d6a902
AM
2399 if (alloc1 == NULL)
2400 goto error_return;
2401 external_relocs = alloc1;
2402 }
2403
d4730f92
BS
2404 internal_rela_relocs = internal_relocs;
2405 if (esdo->rel.hdr)
2406 {
2407 if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2408 external_relocs,
2409 internal_relocs))
2410 goto error_return;
2411 external_relocs = (((bfd_byte *) external_relocs)
2412 + esdo->rel.hdr->sh_size);
2413 internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2414 * bed->s->int_rels_per_ext_rel);
2415 }
2416
2417 if (esdo->rela.hdr
2418 && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2419 external_relocs,
2420 internal_rela_relocs)))
45d6a902
AM
2421 goto error_return;
2422
2423 /* Cache the results for next time, if we can. */
2424 if (keep_memory)
d4730f92 2425 esdo->relocs = internal_relocs;
45d6a902
AM
2426
2427 if (alloc1 != NULL)
2428 free (alloc1);
2429
2430 /* Don't free alloc2, since if it was allocated we are passing it
2431 back (under the name of internal_relocs). */
2432
2433 return internal_relocs;
2434
2435 error_return:
2436 if (alloc1 != NULL)
2437 free (alloc1);
2438 if (alloc2 != NULL)
4dd07732
AM
2439 {
2440 if (keep_memory)
2441 bfd_release (abfd, alloc2);
2442 else
2443 free (alloc2);
2444 }
45d6a902
AM
2445 return NULL;
2446}
2447
2448/* Compute the size of, and allocate space for, REL_HDR which is the
2449 section header for a section containing relocations for O. */
2450
28caa186 2451static bfd_boolean
9eaff861
AO
2452_bfd_elf_link_size_reloc_section (bfd *abfd,
2453 struct bfd_elf_section_reloc_data *reldata)
45d6a902 2454{
9eaff861 2455 Elf_Internal_Shdr *rel_hdr = reldata->hdr;
45d6a902
AM
2456
2457 /* That allows us to calculate the size of the section. */
9eaff861 2458 rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
45d6a902
AM
2459
2460 /* The contents field must last into write_object_contents, so we
2461 allocate it with bfd_alloc rather than malloc. Also since we
2462 cannot be sure that the contents will actually be filled in,
2463 we zero the allocated space. */
a50b1753 2464 rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
45d6a902
AM
2465 if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2466 return FALSE;
2467
d4730f92 2468 if (reldata->hashes == NULL && reldata->count)
45d6a902
AM
2469 {
2470 struct elf_link_hash_entry **p;
2471
ca4be51c
AM
2472 p = ((struct elf_link_hash_entry **)
2473 bfd_zmalloc (reldata->count * sizeof (*p)));
45d6a902
AM
2474 if (p == NULL)
2475 return FALSE;
2476
d4730f92 2477 reldata->hashes = p;
45d6a902
AM
2478 }
2479
2480 return TRUE;
2481}
2482
2483/* Copy the relocations indicated by the INTERNAL_RELOCS (which
2484 originated from the section given by INPUT_REL_HDR) to the
2485 OUTPUT_BFD. */
2486
2487bfd_boolean
268b6b39
AM
2488_bfd_elf_link_output_relocs (bfd *output_bfd,
2489 asection *input_section,
2490 Elf_Internal_Shdr *input_rel_hdr,
eac338cf
PB
2491 Elf_Internal_Rela *internal_relocs,
2492 struct elf_link_hash_entry **rel_hash
2493 ATTRIBUTE_UNUSED)
45d6a902
AM
2494{
2495 Elf_Internal_Rela *irela;
2496 Elf_Internal_Rela *irelaend;
2497 bfd_byte *erel;
d4730f92 2498 struct bfd_elf_section_reloc_data *output_reldata;
45d6a902 2499 asection *output_section;
9c5bfbb7 2500 const struct elf_backend_data *bed;
268b6b39 2501 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
d4730f92 2502 struct bfd_elf_section_data *esdo;
45d6a902
AM
2503
2504 output_section = input_section->output_section;
45d6a902 2505
d4730f92
BS
2506 bed = get_elf_backend_data (output_bfd);
2507 esdo = elf_section_data (output_section);
2508 if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2509 {
d4730f92
BS
2510 output_reldata = &esdo->rel;
2511 swap_out = bed->s->swap_reloc_out;
45d6a902 2512 }
d4730f92
BS
2513 else if (esdo->rela.hdr
2514 && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
45d6a902 2515 {
d4730f92
BS
2516 output_reldata = &esdo->rela;
2517 swap_out = bed->s->swap_reloca_out;
45d6a902
AM
2518 }
2519 else
2520 {
4eca0228 2521 _bfd_error_handler
d003868e
AM
2522 (_("%B: relocation size mismatch in %B section %A"),
2523 output_bfd, input_section->owner, input_section);
297d8443 2524 bfd_set_error (bfd_error_wrong_format);
45d6a902
AM
2525 return FALSE;
2526 }
2527
d4730f92
BS
2528 erel = output_reldata->hdr->contents;
2529 erel += output_reldata->count * input_rel_hdr->sh_entsize;
45d6a902
AM
2530 irela = internal_relocs;
2531 irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2532 * bed->s->int_rels_per_ext_rel);
2533 while (irela < irelaend)
2534 {
2535 (*swap_out) (output_bfd, irela, erel);
2536 irela += bed->s->int_rels_per_ext_rel;
2537 erel += input_rel_hdr->sh_entsize;
2538 }
2539
2540 /* Bump the counter, so that we know where to add the next set of
2541 relocations. */
d4730f92 2542 output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
45d6a902
AM
2543
2544 return TRUE;
2545}
2546\f
508c3946
L
2547/* Make weak undefined symbols in PIE dynamic. */
2548
2549bfd_boolean
2550_bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2551 struct elf_link_hash_entry *h)
2552{
0e1862bb 2553 if (bfd_link_pie (info)
508c3946
L
2554 && h->dynindx == -1
2555 && h->root.type == bfd_link_hash_undefweak)
2556 return bfd_elf_link_record_dynamic_symbol (info, h);
2557
2558 return TRUE;
2559}
2560
45d6a902
AM
2561/* Fix up the flags for a symbol. This handles various cases which
2562 can only be fixed after all the input files are seen. This is
2563 currently called by both adjust_dynamic_symbol and
2564 assign_sym_version, which is unnecessary but perhaps more robust in
2565 the face of future changes. */
2566
28caa186 2567static bfd_boolean
268b6b39
AM
2568_bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2569 struct elf_info_failed *eif)
45d6a902 2570{
33774f08 2571 const struct elf_backend_data *bed;
508c3946 2572
45d6a902
AM
2573 /* If this symbol was mentioned in a non-ELF file, try to set
2574 DEF_REGULAR and REF_REGULAR correctly. This is the only way to
2575 permit a non-ELF file to correctly refer to a symbol defined in
2576 an ELF dynamic object. */
f5385ebf 2577 if (h->non_elf)
45d6a902
AM
2578 {
2579 while (h->root.type == bfd_link_hash_indirect)
2580 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2581
2582 if (h->root.type != bfd_link_hash_defined
2583 && h->root.type != bfd_link_hash_defweak)
f5385ebf
AM
2584 {
2585 h->ref_regular = 1;
2586 h->ref_regular_nonweak = 1;
2587 }
45d6a902
AM
2588 else
2589 {
2590 if (h->root.u.def.section->owner != NULL
2591 && (bfd_get_flavour (h->root.u.def.section->owner)
2592 == bfd_target_elf_flavour))
f5385ebf
AM
2593 {
2594 h->ref_regular = 1;
2595 h->ref_regular_nonweak = 1;
2596 }
45d6a902 2597 else
f5385ebf 2598 h->def_regular = 1;
45d6a902
AM
2599 }
2600
2601 if (h->dynindx == -1
f5385ebf
AM
2602 && (h->def_dynamic
2603 || h->ref_dynamic))
45d6a902 2604 {
c152c796 2605 if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
45d6a902
AM
2606 {
2607 eif->failed = TRUE;
2608 return FALSE;
2609 }
2610 }
2611 }
2612 else
2613 {
f5385ebf 2614 /* Unfortunately, NON_ELF is only correct if the symbol
45d6a902
AM
2615 was first seen in a non-ELF file. Fortunately, if the symbol
2616 was first seen in an ELF file, we're probably OK unless the
2617 symbol was defined in a non-ELF file. Catch that case here.
2618 FIXME: We're still in trouble if the symbol was first seen in
2619 a dynamic object, and then later in a non-ELF regular object. */
2620 if ((h->root.type == bfd_link_hash_defined
2621 || h->root.type == bfd_link_hash_defweak)
f5385ebf 2622 && !h->def_regular
45d6a902
AM
2623 && (h->root.u.def.section->owner != NULL
2624 ? (bfd_get_flavour (h->root.u.def.section->owner)
2625 != bfd_target_elf_flavour)
2626 : (bfd_is_abs_section (h->root.u.def.section)
f5385ebf
AM
2627 && !h->def_dynamic)))
2628 h->def_regular = 1;
45d6a902
AM
2629 }
2630
508c3946 2631 /* Backend specific symbol fixup. */
33774f08
AM
2632 bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2633 if (bed->elf_backend_fixup_symbol
2634 && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2635 return FALSE;
508c3946 2636
45d6a902
AM
2637 /* If this is a final link, and the symbol was defined as a common
2638 symbol in a regular object file, and there was no definition in
2639 any dynamic object, then the linker will have allocated space for
f5385ebf 2640 the symbol in a common section but the DEF_REGULAR
45d6a902
AM
2641 flag will not have been set. */
2642 if (h->root.type == bfd_link_hash_defined
f5385ebf
AM
2643 && !h->def_regular
2644 && h->ref_regular
2645 && !h->def_dynamic
96f29d96 2646 && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
f5385ebf 2647 h->def_regular = 1;
45d6a902
AM
2648
2649 /* If -Bsymbolic was used (which means to bind references to global
2650 symbols to the definition within the shared object), and this
2651 symbol was defined in a regular object, then it actually doesn't
9c7a29a3
AM
2652 need a PLT entry. Likewise, if the symbol has non-default
2653 visibility. If the symbol has hidden or internal visibility, we
c1be741f 2654 will force it local. */
f5385ebf 2655 if (h->needs_plt
0e1862bb 2656 && bfd_link_pic (eif->info)
0eddce27 2657 && is_elf_hash_table (eif->info->hash)
55255dae 2658 && (SYMBOLIC_BIND (eif->info, h)
c1be741f 2659 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
f5385ebf 2660 && h->def_regular)
45d6a902 2661 {
45d6a902
AM
2662 bfd_boolean force_local;
2663
45d6a902
AM
2664 force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2665 || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2666 (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2667 }
2668
2669 /* If a weak undefined symbol has non-default visibility, we also
2670 hide it from the dynamic linker. */
9c7a29a3 2671 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
45d6a902 2672 && h->root.type == bfd_link_hash_undefweak)
33774f08 2673 (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
45d6a902
AM
2674
2675 /* If this is a weak defined symbol in a dynamic object, and we know
2676 the real definition in the dynamic object, copy interesting flags
2677 over to the real definition. */
f6e332e6 2678 if (h->u.weakdef != NULL)
45d6a902 2679 {
45d6a902
AM
2680 /* If the real definition is defined by a regular object file,
2681 don't do anything special. See the longer description in
2682 _bfd_elf_adjust_dynamic_symbol, below. */
4e6b54a6 2683 if (h->u.weakdef->def_regular)
f6e332e6 2684 h->u.weakdef = NULL;
45d6a902 2685 else
a26587ba 2686 {
4e6b54a6
AM
2687 struct elf_link_hash_entry *weakdef = h->u.weakdef;
2688
2689 while (h->root.type == bfd_link_hash_indirect)
2690 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2691
2692 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2693 || h->root.type == bfd_link_hash_defweak);
2694 BFD_ASSERT (weakdef->def_dynamic);
a26587ba
RS
2695 BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2696 || weakdef->root.type == bfd_link_hash_defweak);
2697 (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h);
2698 }
45d6a902
AM
2699 }
2700
2701 return TRUE;
2702}
2703
2704/* Make the backend pick a good value for a dynamic symbol. This is
2705 called via elf_link_hash_traverse, and also calls itself
2706 recursively. */
2707
28caa186 2708static bfd_boolean
268b6b39 2709_bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
45d6a902 2710{
a50b1753 2711 struct elf_info_failed *eif = (struct elf_info_failed *) data;
45d6a902 2712 bfd *dynobj;
9c5bfbb7 2713 const struct elf_backend_data *bed;
45d6a902 2714
0eddce27 2715 if (! is_elf_hash_table (eif->info->hash))
45d6a902
AM
2716 return FALSE;
2717
45d6a902
AM
2718 /* Ignore indirect symbols. These are added by the versioning code. */
2719 if (h->root.type == bfd_link_hash_indirect)
2720 return TRUE;
2721
2722 /* Fix the symbol flags. */
2723 if (! _bfd_elf_fix_symbol_flags (h, eif))
2724 return FALSE;
2725
2726 /* If this symbol does not require a PLT entry, and it is not
2727 defined by a dynamic object, or is not referenced by a regular
2728 object, ignore it. We do have to handle a weak defined symbol,
2729 even if no regular object refers to it, if we decided to add it
2730 to the dynamic symbol table. FIXME: Do we normally need to worry
2731 about symbols which are defined by one dynamic object and
2732 referenced by another one? */
f5385ebf 2733 if (!h->needs_plt
91e21fb7 2734 && h->type != STT_GNU_IFUNC
f5385ebf
AM
2735 && (h->def_regular
2736 || !h->def_dynamic
2737 || (!h->ref_regular
f6e332e6 2738 && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
45d6a902 2739 {
a6aa5195 2740 h->plt = elf_hash_table (eif->info)->init_plt_offset;
45d6a902
AM
2741 return TRUE;
2742 }
2743
2744 /* If we've already adjusted this symbol, don't do it again. This
2745 can happen via a recursive call. */
f5385ebf 2746 if (h->dynamic_adjusted)
45d6a902
AM
2747 return TRUE;
2748
2749 /* Don't look at this symbol again. Note that we must set this
2750 after checking the above conditions, because we may look at a
2751 symbol once, decide not to do anything, and then get called
2752 recursively later after REF_REGULAR is set below. */
f5385ebf 2753 h->dynamic_adjusted = 1;
45d6a902
AM
2754
2755 /* If this is a weak definition, and we know a real definition, and
2756 the real symbol is not itself defined by a regular object file,
2757 then get a good value for the real definition. We handle the
2758 real symbol first, for the convenience of the backend routine.
2759
2760 Note that there is a confusing case here. If the real definition
2761 is defined by a regular object file, we don't get the real symbol
2762 from the dynamic object, but we do get the weak symbol. If the
2763 processor backend uses a COPY reloc, then if some routine in the
2764 dynamic object changes the real symbol, we will not see that
2765 change in the corresponding weak symbol. This is the way other
2766 ELF linkers work as well, and seems to be a result of the shared
2767 library model.
2768
2769 I will clarify this issue. Most SVR4 shared libraries define the
2770 variable _timezone and define timezone as a weak synonym. The
2771 tzset call changes _timezone. If you write
2772 extern int timezone;
2773 int _timezone = 5;
2774 int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2775 you might expect that, since timezone is a synonym for _timezone,
2776 the same number will print both times. However, if the processor
2777 backend uses a COPY reloc, then actually timezone will be copied
2778 into your process image, and, since you define _timezone
2779 yourself, _timezone will not. Thus timezone and _timezone will
2780 wind up at different memory locations. The tzset call will set
2781 _timezone, leaving timezone unchanged. */
2782
f6e332e6 2783 if (h->u.weakdef != NULL)
45d6a902 2784 {
ec24dc88
AM
2785 /* If we get to this point, there is an implicit reference to
2786 H->U.WEAKDEF by a regular object file via the weak symbol H. */
f6e332e6 2787 h->u.weakdef->ref_regular = 1;
45d6a902 2788
ec24dc88
AM
2789 /* Ensure that the backend adjust_dynamic_symbol function sees
2790 H->U.WEAKDEF before H by recursively calling ourselves. */
f6e332e6 2791 if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
45d6a902
AM
2792 return FALSE;
2793 }
2794
2795 /* If a symbol has no type and no size and does not require a PLT
2796 entry, then we are probably about to do the wrong thing here: we
2797 are probably going to create a COPY reloc for an empty object.
2798 This case can arise when a shared object is built with assembly
2799 code, and the assembly code fails to set the symbol type. */
2800 if (h->size == 0
2801 && h->type == STT_NOTYPE
f5385ebf 2802 && !h->needs_plt)
4eca0228 2803 _bfd_error_handler
45d6a902
AM
2804 (_("warning: type and size of dynamic symbol `%s' are not defined"),
2805 h->root.root.string);
2806
2807 dynobj = elf_hash_table (eif->info)->dynobj;
2808 bed = get_elf_backend_data (dynobj);
e7c33416 2809
45d6a902
AM
2810 if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2811 {
2812 eif->failed = TRUE;
2813 return FALSE;
2814 }
2815
2816 return TRUE;
2817}
2818
027297b7
L
2819/* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
2820 DYNBSS. */
2821
2822bfd_boolean
6cabe1ea
AM
2823_bfd_elf_adjust_dynamic_copy (struct bfd_link_info *info,
2824 struct elf_link_hash_entry *h,
027297b7
L
2825 asection *dynbss)
2826{
91ac5911 2827 unsigned int power_of_two;
027297b7
L
2828 bfd_vma mask;
2829 asection *sec = h->root.u.def.section;
2830
2831 /* The section aligment of definition is the maximum alignment
91ac5911
L
2832 requirement of symbols defined in the section. Since we don't
2833 know the symbol alignment requirement, we start with the
2834 maximum alignment and check low bits of the symbol address
2835 for the minimum alignment. */
2836 power_of_two = bfd_get_section_alignment (sec->owner, sec);
2837 mask = ((bfd_vma) 1 << power_of_two) - 1;
2838 while ((h->root.u.def.value & mask) != 0)
2839 {
2840 mask >>= 1;
2841 --power_of_two;
2842 }
027297b7 2843
91ac5911
L
2844 if (power_of_two > bfd_get_section_alignment (dynbss->owner,
2845 dynbss))
027297b7
L
2846 {
2847 /* Adjust the section alignment if needed. */
2848 if (! bfd_set_section_alignment (dynbss->owner, dynbss,
91ac5911 2849 power_of_two))
027297b7
L
2850 return FALSE;
2851 }
2852
91ac5911 2853 /* We make sure that the symbol will be aligned properly. */
027297b7
L
2854 dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
2855
2856 /* Define the symbol as being at this point in DYNBSS. */
2857 h->root.u.def.section = dynbss;
2858 h->root.u.def.value = dynbss->size;
2859
2860 /* Increment the size of DYNBSS to make room for the symbol. */
2861 dynbss->size += h->size;
2862
f7483970
L
2863 /* No error if extern_protected_data is true. */
2864 if (h->protected_def
889c2a67
L
2865 && (!info->extern_protected_data
2866 || (info->extern_protected_data < 0
2867 && !get_elf_backend_data (dynbss->owner)->extern_protected_data)))
d07a1b05
AM
2868 info->callbacks->einfo
2869 (_("%P: copy reloc against protected `%T' is dangerous\n"),
2870 h->root.root.string);
6cabe1ea 2871
027297b7
L
2872 return TRUE;
2873}
2874
45d6a902
AM
2875/* Adjust all external symbols pointing into SEC_MERGE sections
2876 to reflect the object merging within the sections. */
2877
28caa186 2878static bfd_boolean
268b6b39 2879_bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
45d6a902
AM
2880{
2881 asection *sec;
2882
45d6a902
AM
2883 if ((h->root.type == bfd_link_hash_defined
2884 || h->root.type == bfd_link_hash_defweak)
2885 && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
dbaa2011 2886 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
45d6a902 2887 {
a50b1753 2888 bfd *output_bfd = (bfd *) data;
45d6a902
AM
2889
2890 h->root.u.def.value =
2891 _bfd_merged_section_offset (output_bfd,
2892 &h->root.u.def.section,
2893 elf_section_data (sec)->sec_info,
753731ee 2894 h->root.u.def.value);
45d6a902
AM
2895 }
2896
2897 return TRUE;
2898}
986a241f
RH
2899
2900/* Returns false if the symbol referred to by H should be considered
2901 to resolve local to the current module, and true if it should be
2902 considered to bind dynamically. */
2903
2904bfd_boolean
268b6b39
AM
2905_bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
2906 struct bfd_link_info *info,
89a2ee5a 2907 bfd_boolean not_local_protected)
986a241f
RH
2908{
2909 bfd_boolean binding_stays_local_p;
fcb93ecf
PB
2910 const struct elf_backend_data *bed;
2911 struct elf_link_hash_table *hash_table;
986a241f
RH
2912
2913 if (h == NULL)
2914 return FALSE;
2915
2916 while (h->root.type == bfd_link_hash_indirect
2917 || h->root.type == bfd_link_hash_warning)
2918 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2919
2920 /* If it was forced local, then clearly it's not dynamic. */
2921 if (h->dynindx == -1)
2922 return FALSE;
f5385ebf 2923 if (h->forced_local)
986a241f
RH
2924 return FALSE;
2925
2926 /* Identify the cases where name binding rules say that a
2927 visible symbol resolves locally. */
0e1862bb
L
2928 binding_stays_local_p = (bfd_link_executable (info)
2929 || SYMBOLIC_BIND (info, h));
986a241f
RH
2930
2931 switch (ELF_ST_VISIBILITY (h->other))
2932 {
2933 case STV_INTERNAL:
2934 case STV_HIDDEN:
2935 return FALSE;
2936
2937 case STV_PROTECTED:
fcb93ecf
PB
2938 hash_table = elf_hash_table (info);
2939 if (!is_elf_hash_table (hash_table))
2940 return FALSE;
2941
2942 bed = get_elf_backend_data (hash_table->dynobj);
2943
986a241f
RH
2944 /* Proper resolution for function pointer equality may require
2945 that these symbols perhaps be resolved dynamically, even though
2946 we should be resolving them to the current module. */
89a2ee5a 2947 if (!not_local_protected || !bed->is_function_type (h->type))
986a241f
RH
2948 binding_stays_local_p = TRUE;
2949 break;
2950
2951 default:
986a241f
RH
2952 break;
2953 }
2954
aa37626c 2955 /* If it isn't defined locally, then clearly it's dynamic. */
89a2ee5a 2956 if (!h->def_regular && !ELF_COMMON_DEF_P (h))
aa37626c
L
2957 return TRUE;
2958
986a241f
RH
2959 /* Otherwise, the symbol is dynamic if binding rules don't tell
2960 us that it remains local. */
2961 return !binding_stays_local_p;
2962}
f6c52c13
AM
2963
2964/* Return true if the symbol referred to by H should be considered
2965 to resolve local to the current module, and false otherwise. Differs
2966 from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2e76e85a 2967 undefined symbols. The two functions are virtually identical except
89a2ee5a
AM
2968 for the place where forced_local and dynindx == -1 are tested. If
2969 either of those tests are true, _bfd_elf_dynamic_symbol_p will say
2970 the symbol is local, while _bfd_elf_symbol_refs_local_p will say
2971 the symbol is local only for defined symbols.
2972 It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
2973 !_bfd_elf_symbol_refs_local_p, except that targets differ in their
2974 treatment of undefined weak symbols. For those that do not make
2975 undefined weak symbols dynamic, both functions may return false. */
f6c52c13
AM
2976
2977bfd_boolean
268b6b39
AM
2978_bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
2979 struct bfd_link_info *info,
2980 bfd_boolean local_protected)
f6c52c13 2981{
fcb93ecf
PB
2982 const struct elf_backend_data *bed;
2983 struct elf_link_hash_table *hash_table;
2984
f6c52c13
AM
2985 /* If it's a local sym, of course we resolve locally. */
2986 if (h == NULL)
2987 return TRUE;
2988
d95edcac
L
2989 /* STV_HIDDEN or STV_INTERNAL ones must be local. */
2990 if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
2991 || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
2992 return TRUE;
2993
7e2294f9
AO
2994 /* Common symbols that become definitions don't get the DEF_REGULAR
2995 flag set, so test it first, and don't bail out. */
2996 if (ELF_COMMON_DEF_P (h))
2997 /* Do nothing. */;
f6c52c13 2998 /* If we don't have a definition in a regular file, then we can't
49ff44d6
L
2999 resolve locally. The sym is either undefined or dynamic. */
3000 else if (!h->def_regular)
f6c52c13
AM
3001 return FALSE;
3002
3003 /* Forced local symbols resolve locally. */
f5385ebf 3004 if (h->forced_local)
f6c52c13
AM
3005 return TRUE;
3006
3007 /* As do non-dynamic symbols. */
3008 if (h->dynindx == -1)
3009 return TRUE;
3010
3011 /* At this point, we know the symbol is defined and dynamic. In an
3012 executable it must resolve locally, likewise when building symbolic
3013 shared libraries. */
0e1862bb 3014 if (bfd_link_executable (info) || SYMBOLIC_BIND (info, h))
f6c52c13
AM
3015 return TRUE;
3016
3017 /* Now deal with defined dynamic symbols in shared libraries. Ones
3018 with default visibility might not resolve locally. */
3019 if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
3020 return FALSE;
3021
fcb93ecf
PB
3022 hash_table = elf_hash_table (info);
3023 if (!is_elf_hash_table (hash_table))
3024 return TRUE;
3025
3026 bed = get_elf_backend_data (hash_table->dynobj);
3027
f7483970
L
3028 /* If extern_protected_data is false, STV_PROTECTED non-function
3029 symbols are local. */
889c2a67
L
3030 if ((!info->extern_protected_data
3031 || (info->extern_protected_data < 0
3032 && !bed->extern_protected_data))
3033 && !bed->is_function_type (h->type))
1c16dfa5
L
3034 return TRUE;
3035
f6c52c13 3036 /* Function pointer equality tests may require that STV_PROTECTED
2676a7d9
AM
3037 symbols be treated as dynamic symbols. If the address of a
3038 function not defined in an executable is set to that function's
3039 plt entry in the executable, then the address of the function in
3040 a shared library must also be the plt entry in the executable. */
f6c52c13
AM
3041 return local_protected;
3042}
e1918d23
AM
3043
3044/* Caches some TLS segment info, and ensures that the TLS segment vma is
3045 aligned. Returns the first TLS output section. */
3046
3047struct bfd_section *
3048_bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
3049{
3050 struct bfd_section *sec, *tls;
3051 unsigned int align = 0;
3052
3053 for (sec = obfd->sections; sec != NULL; sec = sec->next)
3054 if ((sec->flags & SEC_THREAD_LOCAL) != 0)
3055 break;
3056 tls = sec;
3057
3058 for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
3059 if (sec->alignment_power > align)
3060 align = sec->alignment_power;
3061
3062 elf_hash_table (info)->tls_sec = tls;
3063
3064 /* Ensure the alignment of the first section is the largest alignment,
3065 so that the tls segment starts aligned. */
3066 if (tls != NULL)
3067 tls->alignment_power = align;
3068
3069 return tls;
3070}
0ad989f9
L
3071
3072/* Return TRUE iff this is a non-common, definition of a non-function symbol. */
3073static bfd_boolean
3074is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
3075 Elf_Internal_Sym *sym)
3076{
a4d8e49b
L
3077 const struct elf_backend_data *bed;
3078
0ad989f9
L
3079 /* Local symbols do not count, but target specific ones might. */
3080 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
3081 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
3082 return FALSE;
3083
fcb93ecf 3084 bed = get_elf_backend_data (abfd);
0ad989f9 3085 /* Function symbols do not count. */
fcb93ecf 3086 if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
0ad989f9
L
3087 return FALSE;
3088
3089 /* If the section is undefined, then so is the symbol. */
3090 if (sym->st_shndx == SHN_UNDEF)
3091 return FALSE;
3092
3093 /* If the symbol is defined in the common section, then
3094 it is a common definition and so does not count. */
a4d8e49b 3095 if (bed->common_definition (sym))
0ad989f9
L
3096 return FALSE;
3097
3098 /* If the symbol is in a target specific section then we
3099 must rely upon the backend to tell us what it is. */
3100 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
3101 /* FIXME - this function is not coded yet:
3102
3103 return _bfd_is_global_symbol_definition (abfd, sym);
3104
3105 Instead for now assume that the definition is not global,
3106 Even if this is wrong, at least the linker will behave
3107 in the same way that it used to do. */
3108 return FALSE;
3109
3110 return TRUE;
3111}
3112
3113/* Search the symbol table of the archive element of the archive ABFD
3114 whose archive map contains a mention of SYMDEF, and determine if
3115 the symbol is defined in this element. */
3116static bfd_boolean
3117elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
3118{
3119 Elf_Internal_Shdr * hdr;
ef53be89
AM
3120 size_t symcount;
3121 size_t extsymcount;
3122 size_t extsymoff;
0ad989f9
L
3123 Elf_Internal_Sym *isymbuf;
3124 Elf_Internal_Sym *isym;
3125 Elf_Internal_Sym *isymend;
3126 bfd_boolean result;
3127
3128 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
3129 if (abfd == NULL)
3130 return FALSE;
3131
3132 if (! bfd_check_format (abfd, bfd_object))
3133 return FALSE;
3134
7dc3990e
L
3135 /* Select the appropriate symbol table. If we don't know if the
3136 object file is an IR object, give linker LTO plugin a chance to
3137 get the correct symbol table. */
3138 if (abfd->plugin_format == bfd_plugin_yes
08ce1d72 3139#if BFD_SUPPORTS_PLUGINS
7dc3990e
L
3140 || (abfd->plugin_format == bfd_plugin_unknown
3141 && bfd_link_plugin_object_p (abfd))
3142#endif
3143 )
3144 {
3145 /* Use the IR symbol table if the object has been claimed by
3146 plugin. */
3147 abfd = abfd->plugin_dummy_bfd;
3148 hdr = &elf_tdata (abfd)->symtab_hdr;
3149 }
3150 else if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
0ad989f9
L
3151 hdr = &elf_tdata (abfd)->symtab_hdr;
3152 else
3153 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3154
3155 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
3156
3157 /* The sh_info field of the symtab header tells us where the
3158 external symbols start. We don't care about the local symbols. */
3159 if (elf_bad_symtab (abfd))
3160 {
3161 extsymcount = symcount;
3162 extsymoff = 0;
3163 }
3164 else
3165 {
3166 extsymcount = symcount - hdr->sh_info;
3167 extsymoff = hdr->sh_info;
3168 }
3169
3170 if (extsymcount == 0)
3171 return FALSE;
3172
3173 /* Read in the symbol table. */
3174 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3175 NULL, NULL, NULL);
3176 if (isymbuf == NULL)
3177 return FALSE;
3178
3179 /* Scan the symbol table looking for SYMDEF. */
3180 result = FALSE;
3181 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
3182 {
3183 const char *name;
3184
3185 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3186 isym->st_name);
3187 if (name == NULL)
3188 break;
3189
3190 if (strcmp (name, symdef->name) == 0)
3191 {
3192 result = is_global_data_symbol_definition (abfd, isym);
3193 break;
3194 }
3195 }
3196
3197 free (isymbuf);
3198
3199 return result;
3200}
3201\f
5a580b3a
AM
3202/* Add an entry to the .dynamic table. */
3203
3204bfd_boolean
3205_bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
3206 bfd_vma tag,
3207 bfd_vma val)
3208{
3209 struct elf_link_hash_table *hash_table;
3210 const struct elf_backend_data *bed;
3211 asection *s;
3212 bfd_size_type newsize;
3213 bfd_byte *newcontents;
3214 Elf_Internal_Dyn dyn;
3215
3216 hash_table = elf_hash_table (info);
3217 if (! is_elf_hash_table (hash_table))
3218 return FALSE;
3219
3220 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3221 s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
5a580b3a
AM
3222 BFD_ASSERT (s != NULL);
3223
eea6121a 3224 newsize = s->size + bed->s->sizeof_dyn;
a50b1753 3225 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
5a580b3a
AM
3226 if (newcontents == NULL)
3227 return FALSE;
3228
3229 dyn.d_tag = tag;
3230 dyn.d_un.d_val = val;
eea6121a 3231 bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
5a580b3a 3232
eea6121a 3233 s->size = newsize;
5a580b3a
AM
3234 s->contents = newcontents;
3235
3236 return TRUE;
3237}
3238
3239/* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3240 otherwise just check whether one already exists. Returns -1 on error,
3241 1 if a DT_NEEDED tag already exists, and 0 on success. */
3242
4ad4eba5 3243static int
7e9f0867
AM
3244elf_add_dt_needed_tag (bfd *abfd,
3245 struct bfd_link_info *info,
4ad4eba5
AM
3246 const char *soname,
3247 bfd_boolean do_it)
5a580b3a
AM
3248{
3249 struct elf_link_hash_table *hash_table;
ef53be89 3250 size_t strindex;
5a580b3a 3251
7e9f0867
AM
3252 if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3253 return -1;
3254
5a580b3a 3255 hash_table = elf_hash_table (info);
5a580b3a 3256 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
ef53be89 3257 if (strindex == (size_t) -1)
5a580b3a
AM
3258 return -1;
3259
02be4619 3260 if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
5a580b3a
AM
3261 {
3262 asection *sdyn;
3263 const struct elf_backend_data *bed;
3264 bfd_byte *extdyn;
3265
3266 bed = get_elf_backend_data (hash_table->dynobj);
3d4d4302 3267 sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
7e9f0867
AM
3268 if (sdyn != NULL)
3269 for (extdyn = sdyn->contents;
3270 extdyn < sdyn->contents + sdyn->size;
3271 extdyn += bed->s->sizeof_dyn)
3272 {
3273 Elf_Internal_Dyn dyn;
5a580b3a 3274
7e9f0867
AM
3275 bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3276 if (dyn.d_tag == DT_NEEDED
3277 && dyn.d_un.d_val == strindex)
3278 {
3279 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3280 return 1;
3281 }
3282 }
5a580b3a
AM
3283 }
3284
3285 if (do_it)
3286 {
7e9f0867
AM
3287 if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3288 return -1;
3289
5a580b3a
AM
3290 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3291 return -1;
3292 }
3293 else
3294 /* We were just checking for existence of the tag. */
3295 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3296
3297 return 0;
3298}
3299
7b15fa7a
AM
3300/* Return true if SONAME is on the needed list between NEEDED and STOP
3301 (or the end of list if STOP is NULL), and needed by a library that
3302 will be loaded. */
3303
010e5ae2 3304static bfd_boolean
7b15fa7a
AM
3305on_needed_list (const char *soname,
3306 struct bfd_link_needed_list *needed,
3307 struct bfd_link_needed_list *stop)
010e5ae2 3308{
7b15fa7a
AM
3309 struct bfd_link_needed_list *look;
3310 for (look = needed; look != stop; look = look->next)
3311 if (strcmp (soname, look->name) == 0
3312 && ((elf_dyn_lib_class (look->by) & DYN_AS_NEEDED) == 0
3313 /* If needed by a library that itself is not directly
3314 needed, recursively check whether that library is
3315 indirectly needed. Since we add DT_NEEDED entries to
3316 the end of the list, library dependencies appear after
3317 the library. Therefore search prior to the current
3318 LOOK, preventing possible infinite recursion. */
3319 || on_needed_list (elf_dt_name (look->by), needed, look)))
010e5ae2
AM
3320 return TRUE;
3321
3322 return FALSE;
3323}
3324
14160578 3325/* Sort symbol by value, section, and size. */
4ad4eba5
AM
3326static int
3327elf_sort_symbol (const void *arg1, const void *arg2)
5a580b3a
AM
3328{
3329 const struct elf_link_hash_entry *h1;
3330 const struct elf_link_hash_entry *h2;
10b7e05b 3331 bfd_signed_vma vdiff;
5a580b3a
AM
3332
3333 h1 = *(const struct elf_link_hash_entry **) arg1;
3334 h2 = *(const struct elf_link_hash_entry **) arg2;
10b7e05b
NC
3335 vdiff = h1->root.u.def.value - h2->root.u.def.value;
3336 if (vdiff != 0)
3337 return vdiff > 0 ? 1 : -1;
3338 else
3339 {
d3435ae8 3340 int sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
10b7e05b
NC
3341 if (sdiff != 0)
3342 return sdiff > 0 ? 1 : -1;
3343 }
14160578
AM
3344 vdiff = h1->size - h2->size;
3345 return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
5a580b3a 3346}
4ad4eba5 3347
5a580b3a
AM
3348/* This function is used to adjust offsets into .dynstr for
3349 dynamic symbols. This is called via elf_link_hash_traverse. */
3350
3351static bfd_boolean
3352elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3353{
a50b1753 3354 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
5a580b3a 3355
5a580b3a
AM
3356 if (h->dynindx != -1)
3357 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3358 return TRUE;
3359}
3360
3361/* Assign string offsets in .dynstr, update all structures referencing
3362 them. */
3363
4ad4eba5
AM
3364static bfd_boolean
3365elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
5a580b3a
AM
3366{
3367 struct elf_link_hash_table *hash_table = elf_hash_table (info);
3368 struct elf_link_local_dynamic_entry *entry;
3369 struct elf_strtab_hash *dynstr = hash_table->dynstr;
3370 bfd *dynobj = hash_table->dynobj;
3371 asection *sdyn;
3372 bfd_size_type size;
3373 const struct elf_backend_data *bed;
3374 bfd_byte *extdyn;
3375
3376 _bfd_elf_strtab_finalize (dynstr);
3377 size = _bfd_elf_strtab_size (dynstr);
3378
3379 bed = get_elf_backend_data (dynobj);
3d4d4302 3380 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
5a580b3a
AM
3381 BFD_ASSERT (sdyn != NULL);
3382
3383 /* Update all .dynamic entries referencing .dynstr strings. */
3384 for (extdyn = sdyn->contents;
eea6121a 3385 extdyn < sdyn->contents + sdyn->size;
5a580b3a
AM
3386 extdyn += bed->s->sizeof_dyn)
3387 {
3388 Elf_Internal_Dyn dyn;
3389
3390 bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3391 switch (dyn.d_tag)
3392 {
3393 case DT_STRSZ:
3394 dyn.d_un.d_val = size;
3395 break;
3396 case DT_NEEDED:
3397 case DT_SONAME:
3398 case DT_RPATH:
3399 case DT_RUNPATH:
3400 case DT_FILTER:
3401 case DT_AUXILIARY:
7ee314fa
AM
3402 case DT_AUDIT:
3403 case DT_DEPAUDIT:
5a580b3a
AM
3404 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3405 break;
3406 default:
3407 continue;
3408 }
3409 bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3410 }
3411
3412 /* Now update local dynamic symbols. */
3413 for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3414 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3415 entry->isym.st_name);
3416
3417 /* And the rest of dynamic symbols. */
3418 elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3419
3420 /* Adjust version definitions. */
3421 if (elf_tdata (output_bfd)->cverdefs)
3422 {
3423 asection *s;
3424 bfd_byte *p;
ef53be89 3425 size_t i;
5a580b3a
AM
3426 Elf_Internal_Verdef def;
3427 Elf_Internal_Verdaux defaux;
3428
3d4d4302 3429 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
3430 p = s->contents;
3431 do
3432 {
3433 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3434 &def);
3435 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
3436 if (def.vd_aux != sizeof (Elf_External_Verdef))
3437 continue;
5a580b3a
AM
3438 for (i = 0; i < def.vd_cnt; ++i)
3439 {
3440 _bfd_elf_swap_verdaux_in (output_bfd,
3441 (Elf_External_Verdaux *) p, &defaux);
3442 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3443 defaux.vda_name);
3444 _bfd_elf_swap_verdaux_out (output_bfd,
3445 &defaux, (Elf_External_Verdaux *) p);
3446 p += sizeof (Elf_External_Verdaux);
3447 }
3448 }
3449 while (def.vd_next);
3450 }
3451
3452 /* Adjust version references. */
3453 if (elf_tdata (output_bfd)->verref)
3454 {
3455 asection *s;
3456 bfd_byte *p;
ef53be89 3457 size_t i;
5a580b3a
AM
3458 Elf_Internal_Verneed need;
3459 Elf_Internal_Vernaux needaux;
3460
3d4d4302 3461 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
3462 p = s->contents;
3463 do
3464 {
3465 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3466 &need);
3467 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3468 _bfd_elf_swap_verneed_out (output_bfd, &need,
3469 (Elf_External_Verneed *) p);
3470 p += sizeof (Elf_External_Verneed);
3471 for (i = 0; i < need.vn_cnt; ++i)
3472 {
3473 _bfd_elf_swap_vernaux_in (output_bfd,
3474 (Elf_External_Vernaux *) p, &needaux);
3475 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3476 needaux.vna_name);
3477 _bfd_elf_swap_vernaux_out (output_bfd,
3478 &needaux,
3479 (Elf_External_Vernaux *) p);
3480 p += sizeof (Elf_External_Vernaux);
3481 }
3482 }
3483 while (need.vn_next);
3484 }
3485
3486 return TRUE;
3487}
3488\f
13285a1b
AM
3489/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3490 The default is to only match when the INPUT and OUTPUT are exactly
3491 the same target. */
3492
3493bfd_boolean
3494_bfd_elf_default_relocs_compatible (const bfd_target *input,
3495 const bfd_target *output)
3496{
3497 return input == output;
3498}
3499
3500/* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3501 This version is used when different targets for the same architecture
3502 are virtually identical. */
3503
3504bfd_boolean
3505_bfd_elf_relocs_compatible (const bfd_target *input,
3506 const bfd_target *output)
3507{
3508 const struct elf_backend_data *obed, *ibed;
3509
3510 if (input == output)
3511 return TRUE;
3512
3513 ibed = xvec_get_elf_backend_data (input);
3514 obed = xvec_get_elf_backend_data (output);
3515
3516 if (ibed->arch != obed->arch)
3517 return FALSE;
3518
3519 /* If both backends are using this function, deem them compatible. */
3520 return ibed->relocs_compatible == obed->relocs_compatible;
3521}
3522
e5034e59
AM
3523/* Make a special call to the linker "notice" function to tell it that
3524 we are about to handle an as-needed lib, or have finished
1b786873 3525 processing the lib. */
e5034e59
AM
3526
3527bfd_boolean
3528_bfd_elf_notice_as_needed (bfd *ibfd,
3529 struct bfd_link_info *info,
3530 enum notice_asneeded_action act)
3531{
46135103 3532 return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
e5034e59
AM
3533}
3534
d9689752
L
3535/* Check relocations an ELF object file. */
3536
3537bfd_boolean
3538_bfd_elf_link_check_relocs (bfd *abfd, struct bfd_link_info *info)
3539{
3540 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3541 struct elf_link_hash_table *htab = elf_hash_table (info);
3542
3543 /* If this object is the same format as the output object, and it is
3544 not a shared library, then let the backend look through the
3545 relocs.
3546
3547 This is required to build global offset table entries and to
3548 arrange for dynamic relocs. It is not required for the
3549 particular common case of linking non PIC code, even when linking
3550 against shared libraries, but unfortunately there is no way of
3551 knowing whether an object file has been compiled PIC or not.
3552 Looking through the relocs is not particularly time consuming.
3553 The problem is that we must either (1) keep the relocs in memory,
3554 which causes the linker to require additional runtime memory or
3555 (2) read the relocs twice from the input file, which wastes time.
3556 This would be a good case for using mmap.
3557
3558 I have no idea how to handle linking PIC code into a file of a
3559 different format. It probably can't be done. */
3560 if ((abfd->flags & DYNAMIC) == 0
3561 && is_elf_hash_table (htab)
3562 && bed->check_relocs != NULL
3563 && elf_object_id (abfd) == elf_hash_table_id (htab)
3564 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
3565 {
3566 asection *o;
3567
3568 for (o = abfd->sections; o != NULL; o = o->next)
3569 {
3570 Elf_Internal_Rela *internal_relocs;
3571 bfd_boolean ok;
3572
5ce03cea 3573 /* Don't check relocations in excluded sections. */
d9689752 3574 if ((o->flags & SEC_RELOC) == 0
5ce03cea 3575 || (o->flags & SEC_EXCLUDE) != 0
d9689752
L
3576 || o->reloc_count == 0
3577 || ((info->strip == strip_all || info->strip == strip_debugger)
3578 && (o->flags & SEC_DEBUGGING) != 0)
3579 || bfd_is_abs_section (o->output_section))
3580 continue;
3581
3582 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
3583 info->keep_memory);
3584 if (internal_relocs == NULL)
3585 return FALSE;
3586
3587 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
3588
3589 if (elf_section_data (o)->relocs != internal_relocs)
3590 free (internal_relocs);
3591
3592 if (! ok)
3593 return FALSE;
3594 }
3595 }
3596
3597 return TRUE;
3598}
3599
4ad4eba5
AM
3600/* Add symbols from an ELF object file to the linker hash table. */
3601
3602static bfd_boolean
3603elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3604{
a0c402a5 3605 Elf_Internal_Ehdr *ehdr;
4ad4eba5 3606 Elf_Internal_Shdr *hdr;
ef53be89
AM
3607 size_t symcount;
3608 size_t extsymcount;
3609 size_t extsymoff;
4ad4eba5
AM
3610 struct elf_link_hash_entry **sym_hash;
3611 bfd_boolean dynamic;
3612 Elf_External_Versym *extversym = NULL;
3613 Elf_External_Versym *ever;
3614 struct elf_link_hash_entry *weaks;
3615 struct elf_link_hash_entry **nondeflt_vers = NULL;
ef53be89 3616 size_t nondeflt_vers_cnt = 0;
4ad4eba5
AM
3617 Elf_Internal_Sym *isymbuf = NULL;
3618 Elf_Internal_Sym *isym;
3619 Elf_Internal_Sym *isymend;
3620 const struct elf_backend_data *bed;
3621 bfd_boolean add_needed;
66eb6687 3622 struct elf_link_hash_table *htab;
4ad4eba5 3623 bfd_size_type amt;
66eb6687 3624 void *alloc_mark = NULL;
4f87808c
AM
3625 struct bfd_hash_entry **old_table = NULL;
3626 unsigned int old_size = 0;
3627 unsigned int old_count = 0;
66eb6687 3628 void *old_tab = NULL;
66eb6687
AM
3629 void *old_ent;
3630 struct bfd_link_hash_entry *old_undefs = NULL;
3631 struct bfd_link_hash_entry *old_undefs_tail = NULL;
5b677558 3632 void *old_strtab = NULL;
66eb6687 3633 size_t tabsize = 0;
db6a5d5f 3634 asection *s;
29a9f53e 3635 bfd_boolean just_syms;
4ad4eba5 3636
66eb6687 3637 htab = elf_hash_table (info);
4ad4eba5 3638 bed = get_elf_backend_data (abfd);
4ad4eba5
AM
3639
3640 if ((abfd->flags & DYNAMIC) == 0)
3641 dynamic = FALSE;
3642 else
3643 {
3644 dynamic = TRUE;
3645
3646 /* You can't use -r against a dynamic object. Also, there's no
3647 hope of using a dynamic object which does not exactly match
3648 the format of the output file. */
0e1862bb 3649 if (bfd_link_relocatable (info)
66eb6687 3650 || !is_elf_hash_table (htab)
f13a99db 3651 || info->output_bfd->xvec != abfd->xvec)
4ad4eba5 3652 {
0e1862bb 3653 if (bfd_link_relocatable (info))
9a0789ec
NC
3654 bfd_set_error (bfd_error_invalid_operation);
3655 else
3656 bfd_set_error (bfd_error_wrong_format);
4ad4eba5
AM
3657 goto error_return;
3658 }
3659 }
3660
a0c402a5
L
3661 ehdr = elf_elfheader (abfd);
3662 if (info->warn_alternate_em
3663 && bed->elf_machine_code != ehdr->e_machine
3664 && ((bed->elf_machine_alt1 != 0
3665 && ehdr->e_machine == bed->elf_machine_alt1)
3666 || (bed->elf_machine_alt2 != 0
3667 && ehdr->e_machine == bed->elf_machine_alt2)))
3668 info->callbacks->einfo
3669 (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"),
3670 ehdr->e_machine, abfd, bed->elf_machine_code);
3671
4ad4eba5
AM
3672 /* As a GNU extension, any input sections which are named
3673 .gnu.warning.SYMBOL are treated as warning symbols for the given
3674 symbol. This differs from .gnu.warning sections, which generate
3675 warnings when they are included in an output file. */
dd98f8d2 3676 /* PR 12761: Also generate this warning when building shared libraries. */
db6a5d5f 3677 for (s = abfd->sections; s != NULL; s = s->next)
4ad4eba5 3678 {
db6a5d5f 3679 const char *name;
4ad4eba5 3680
db6a5d5f
AM
3681 name = bfd_get_section_name (abfd, s);
3682 if (CONST_STRNEQ (name, ".gnu.warning."))
4ad4eba5 3683 {
db6a5d5f
AM
3684 char *msg;
3685 bfd_size_type sz;
3686
3687 name += sizeof ".gnu.warning." - 1;
3688
3689 /* If this is a shared object, then look up the symbol
3690 in the hash table. If it is there, and it is already
3691 been defined, then we will not be using the entry
3692 from this shared object, so we don't need to warn.
3693 FIXME: If we see the definition in a regular object
3694 later on, we will warn, but we shouldn't. The only
3695 fix is to keep track of what warnings we are supposed
3696 to emit, and then handle them all at the end of the
3697 link. */
3698 if (dynamic)
4ad4eba5 3699 {
db6a5d5f
AM
3700 struct elf_link_hash_entry *h;
3701
3702 h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3703
3704 /* FIXME: What about bfd_link_hash_common? */
3705 if (h != NULL
3706 && (h->root.type == bfd_link_hash_defined
3707 || h->root.type == bfd_link_hash_defweak))
3708 continue;
3709 }
4ad4eba5 3710
db6a5d5f
AM
3711 sz = s->size;
3712 msg = (char *) bfd_alloc (abfd, sz + 1);
3713 if (msg == NULL)
3714 goto error_return;
4ad4eba5 3715
db6a5d5f
AM
3716 if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3717 goto error_return;
4ad4eba5 3718
db6a5d5f 3719 msg[sz] = '\0';
4ad4eba5 3720
db6a5d5f
AM
3721 if (! (_bfd_generic_link_add_one_symbol
3722 (info, abfd, name, BSF_WARNING, s, 0, msg,
3723 FALSE, bed->collect, NULL)))
3724 goto error_return;
4ad4eba5 3725
0e1862bb 3726 if (bfd_link_executable (info))
db6a5d5f
AM
3727 {
3728 /* Clobber the section size so that the warning does
3729 not get copied into the output file. */
3730 s->size = 0;
11d2f718 3731
db6a5d5f
AM
3732 /* Also set SEC_EXCLUDE, so that symbols defined in
3733 the warning section don't get copied to the output. */
3734 s->flags |= SEC_EXCLUDE;
4ad4eba5
AM
3735 }
3736 }
3737 }
3738
29a9f53e
L
3739 just_syms = ((s = abfd->sections) != NULL
3740 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
3741
4ad4eba5
AM
3742 add_needed = TRUE;
3743 if (! dynamic)
3744 {
3745 /* If we are creating a shared library, create all the dynamic
3746 sections immediately. We need to attach them to something,
3747 so we attach them to this BFD, provided it is the right
bf89386a
L
3748 format and is not from ld --just-symbols. Always create the
3749 dynamic sections for -E/--dynamic-list. FIXME: If there
29a9f53e
L
3750 are no input BFD's of the same format as the output, we can't
3751 make a shared library. */
3752 if (!just_syms
bf89386a 3753 && (bfd_link_pic (info)
9c1d7a08
L
3754 || (!bfd_link_relocatable (info)
3755 && (info->export_dynamic || info->dynamic)))
66eb6687 3756 && is_elf_hash_table (htab)
f13a99db 3757 && info->output_bfd->xvec == abfd->xvec
66eb6687 3758 && !htab->dynamic_sections_created)
4ad4eba5
AM
3759 {
3760 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3761 goto error_return;
3762 }
3763 }
66eb6687 3764 else if (!is_elf_hash_table (htab))
4ad4eba5
AM
3765 goto error_return;
3766 else
3767 {
4ad4eba5 3768 const char *soname = NULL;
7ee314fa 3769 char *audit = NULL;
4ad4eba5
AM
3770 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3771 int ret;
3772
3773 /* ld --just-symbols and dynamic objects don't mix very well.
92fd189d 3774 ld shouldn't allow it. */
29a9f53e 3775 if (just_syms)
92fd189d 3776 abort ();
4ad4eba5
AM
3777
3778 /* If this dynamic lib was specified on the command line with
3779 --as-needed in effect, then we don't want to add a DT_NEEDED
3780 tag unless the lib is actually used. Similary for libs brought
e56f61be
L
3781 in by another lib's DT_NEEDED. When --no-add-needed is used
3782 on a dynamic lib, we don't want to add a DT_NEEDED entry for
3783 any dynamic library in DT_NEEDED tags in the dynamic lib at
3784 all. */
3785 add_needed = (elf_dyn_lib_class (abfd)
3786 & (DYN_AS_NEEDED | DYN_DT_NEEDED
3787 | DYN_NO_NEEDED)) == 0;
4ad4eba5
AM
3788
3789 s = bfd_get_section_by_name (abfd, ".dynamic");
3790 if (s != NULL)
3791 {
3792 bfd_byte *dynbuf;
3793 bfd_byte *extdyn;
cb33740c 3794 unsigned int elfsec;
4ad4eba5
AM
3795 unsigned long shlink;
3796
eea6121a 3797 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
f8703194
L
3798 {
3799error_free_dyn:
3800 free (dynbuf);
3801 goto error_return;
3802 }
4ad4eba5
AM
3803
3804 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 3805 if (elfsec == SHN_BAD)
4ad4eba5
AM
3806 goto error_free_dyn;
3807 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3808
3809 for (extdyn = dynbuf;
eea6121a 3810 extdyn < dynbuf + s->size;
4ad4eba5
AM
3811 extdyn += bed->s->sizeof_dyn)
3812 {
3813 Elf_Internal_Dyn dyn;
3814
3815 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3816 if (dyn.d_tag == DT_SONAME)
3817 {
3818 unsigned int tagv = dyn.d_un.d_val;
3819 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3820 if (soname == NULL)
3821 goto error_free_dyn;
3822 }
3823 if (dyn.d_tag == DT_NEEDED)
3824 {
3825 struct bfd_link_needed_list *n, **pn;
3826 char *fnm, *anm;
3827 unsigned int tagv = dyn.d_un.d_val;
3828
3829 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3830 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3831 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3832 if (n == NULL || fnm == NULL)
3833 goto error_free_dyn;
3834 amt = strlen (fnm) + 1;
a50b1753 3835 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3836 if (anm == NULL)
3837 goto error_free_dyn;
3838 memcpy (anm, fnm, amt);
3839 n->name = anm;
3840 n->by = abfd;
3841 n->next = NULL;
66eb6687 3842 for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
3843 ;
3844 *pn = n;
3845 }
3846 if (dyn.d_tag == DT_RUNPATH)
3847 {
3848 struct bfd_link_needed_list *n, **pn;
3849 char *fnm, *anm;
3850 unsigned int tagv = dyn.d_un.d_val;
3851
3852 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3853 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3854 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3855 if (n == NULL || fnm == NULL)
3856 goto error_free_dyn;
3857 amt = strlen (fnm) + 1;
a50b1753 3858 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3859 if (anm == NULL)
3860 goto error_free_dyn;
3861 memcpy (anm, fnm, amt);
3862 n->name = anm;
3863 n->by = abfd;
3864 n->next = NULL;
3865 for (pn = & runpath;
3866 *pn != NULL;
3867 pn = &(*pn)->next)
3868 ;
3869 *pn = n;
3870 }
3871 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
3872 if (!runpath && dyn.d_tag == DT_RPATH)
3873 {
3874 struct bfd_link_needed_list *n, **pn;
3875 char *fnm, *anm;
3876 unsigned int tagv = dyn.d_un.d_val;
3877
3878 amt = sizeof (struct bfd_link_needed_list);
a50b1753 3879 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4ad4eba5
AM
3880 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3881 if (n == NULL || fnm == NULL)
3882 goto error_free_dyn;
3883 amt = strlen (fnm) + 1;
a50b1753 3884 anm = (char *) bfd_alloc (abfd, amt);
4ad4eba5 3885 if (anm == NULL)
f8703194 3886 goto error_free_dyn;
4ad4eba5
AM
3887 memcpy (anm, fnm, amt);
3888 n->name = anm;
3889 n->by = abfd;
3890 n->next = NULL;
3891 for (pn = & rpath;
3892 *pn != NULL;
3893 pn = &(*pn)->next)
3894 ;
3895 *pn = n;
3896 }
7ee314fa
AM
3897 if (dyn.d_tag == DT_AUDIT)
3898 {
3899 unsigned int tagv = dyn.d_un.d_val;
3900 audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3901 }
4ad4eba5
AM
3902 }
3903
3904 free (dynbuf);
3905 }
3906
3907 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
3908 frees all more recently bfd_alloc'd blocks as well. */
3909 if (runpath)
3910 rpath = runpath;
3911
3912 if (rpath)
3913 {
3914 struct bfd_link_needed_list **pn;
66eb6687 3915 for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
4ad4eba5
AM
3916 ;
3917 *pn = rpath;
3918 }
3919
3920 /* We do not want to include any of the sections in a dynamic
3921 object in the output file. We hack by simply clobbering the
3922 list of sections in the BFD. This could be handled more
3923 cleanly by, say, a new section flag; the existing
3924 SEC_NEVER_LOAD flag is not the one we want, because that one
3925 still implies that the section takes up space in the output
3926 file. */
3927 bfd_section_list_clear (abfd);
3928
4ad4eba5
AM
3929 /* Find the name to use in a DT_NEEDED entry that refers to this
3930 object. If the object has a DT_SONAME entry, we use it.
3931 Otherwise, if the generic linker stuck something in
3932 elf_dt_name, we use that. Otherwise, we just use the file
3933 name. */
3934 if (soname == NULL || *soname == '\0')
3935 {
3936 soname = elf_dt_name (abfd);
3937 if (soname == NULL || *soname == '\0')
3938 soname = bfd_get_filename (abfd);
3939 }
3940
3941 /* Save the SONAME because sometimes the linker emulation code
3942 will need to know it. */
3943 elf_dt_name (abfd) = soname;
3944
7e9f0867 3945 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
3946 if (ret < 0)
3947 goto error_return;
3948
3949 /* If we have already included this dynamic object in the
3950 link, just ignore it. There is no reason to include a
3951 particular dynamic object more than once. */
3952 if (ret > 0)
3953 return TRUE;
7ee314fa
AM
3954
3955 /* Save the DT_AUDIT entry for the linker emulation code. */
68ffbac6 3956 elf_dt_audit (abfd) = audit;
4ad4eba5
AM
3957 }
3958
3959 /* If this is a dynamic object, we always link against the .dynsym
3960 symbol table, not the .symtab symbol table. The dynamic linker
3961 will only see the .dynsym symbol table, so there is no reason to
3962 look at .symtab for a dynamic object. */
3963
3964 if (! dynamic || elf_dynsymtab (abfd) == 0)
3965 hdr = &elf_tdata (abfd)->symtab_hdr;
3966 else
3967 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3968
3969 symcount = hdr->sh_size / bed->s->sizeof_sym;
3970
3971 /* The sh_info field of the symtab header tells us where the
3972 external symbols start. We don't care about the local symbols at
3973 this point. */
3974 if (elf_bad_symtab (abfd))
3975 {
3976 extsymcount = symcount;
3977 extsymoff = 0;
3978 }
3979 else
3980 {
3981 extsymcount = symcount - hdr->sh_info;
3982 extsymoff = hdr->sh_info;
3983 }
3984
f45794cb 3985 sym_hash = elf_sym_hashes (abfd);
012b2306 3986 if (extsymcount != 0)
4ad4eba5
AM
3987 {
3988 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3989 NULL, NULL, NULL);
3990 if (isymbuf == NULL)
3991 goto error_return;
3992
4ad4eba5 3993 if (sym_hash == NULL)
012b2306
AM
3994 {
3995 /* We store a pointer to the hash table entry for each
3996 external symbol. */
ef53be89
AM
3997 amt = extsymcount;
3998 amt *= sizeof (struct elf_link_hash_entry *);
012b2306
AM
3999 sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
4000 if (sym_hash == NULL)
4001 goto error_free_sym;
4002 elf_sym_hashes (abfd) = sym_hash;
4003 }
4ad4eba5
AM
4004 }
4005
4006 if (dynamic)
4007 {
4008 /* Read in any version definitions. */
fc0e6df6
PB
4009 if (!_bfd_elf_slurp_version_tables (abfd,
4010 info->default_imported_symver))
4ad4eba5
AM
4011 goto error_free_sym;
4012
4013 /* Read in the symbol versions, but don't bother to convert them
4014 to internal format. */
4015 if (elf_dynversym (abfd) != 0)
4016 {
4017 Elf_Internal_Shdr *versymhdr;
4018
4019 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
a50b1753 4020 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
4ad4eba5
AM
4021 if (extversym == NULL)
4022 goto error_free_sym;
4023 amt = versymhdr->sh_size;
4024 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
4025 || bfd_bread (extversym, amt, abfd) != amt)
4026 goto error_free_vers;
4027 }
4028 }
4029
66eb6687
AM
4030 /* If we are loading an as-needed shared lib, save the symbol table
4031 state before we start adding symbols. If the lib turns out
4032 to be unneeded, restore the state. */
4033 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4034 {
4035 unsigned int i;
4036 size_t entsize;
4037
4038 for (entsize = 0, i = 0; i < htab->root.table.size; i++)
4039 {
4040 struct bfd_hash_entry *p;
2de92251 4041 struct elf_link_hash_entry *h;
66eb6687
AM
4042
4043 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
2de92251
AM
4044 {
4045 h = (struct elf_link_hash_entry *) p;
4046 entsize += htab->root.table.entsize;
4047 if (h->root.type == bfd_link_hash_warning)
4048 entsize += htab->root.table.entsize;
4049 }
66eb6687
AM
4050 }
4051
4052 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
f45794cb 4053 old_tab = bfd_malloc (tabsize + entsize);
66eb6687
AM
4054 if (old_tab == NULL)
4055 goto error_free_vers;
4056
4057 /* Remember the current objalloc pointer, so that all mem for
4058 symbols added can later be reclaimed. */
4059 alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
4060 if (alloc_mark == NULL)
4061 goto error_free_vers;
4062
5061a885
AM
4063 /* Make a special call to the linker "notice" function to
4064 tell it that we are about to handle an as-needed lib. */
e5034e59 4065 if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
9af2a943 4066 goto error_free_vers;
5061a885 4067
f45794cb
AM
4068 /* Clone the symbol table. Remember some pointers into the
4069 symbol table, and dynamic symbol count. */
4070 old_ent = (char *) old_tab + tabsize;
66eb6687 4071 memcpy (old_tab, htab->root.table.table, tabsize);
66eb6687
AM
4072 old_undefs = htab->root.undefs;
4073 old_undefs_tail = htab->root.undefs_tail;
4f87808c
AM
4074 old_table = htab->root.table.table;
4075 old_size = htab->root.table.size;
4076 old_count = htab->root.table.count;
5b677558
AM
4077 old_strtab = _bfd_elf_strtab_save (htab->dynstr);
4078 if (old_strtab == NULL)
4079 goto error_free_vers;
66eb6687
AM
4080
4081 for (i = 0; i < htab->root.table.size; i++)
4082 {
4083 struct bfd_hash_entry *p;
2de92251 4084 struct elf_link_hash_entry *h;
66eb6687
AM
4085
4086 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4087 {
4088 memcpy (old_ent, p, htab->root.table.entsize);
4089 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
4090 h = (struct elf_link_hash_entry *) p;
4091 if (h->root.type == bfd_link_hash_warning)
4092 {
4093 memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
4094 old_ent = (char *) old_ent + htab->root.table.entsize;
4095 }
66eb6687
AM
4096 }
4097 }
4098 }
4ad4eba5 4099
66eb6687 4100 weaks = NULL;
4ad4eba5
AM
4101 ever = extversym != NULL ? extversym + extsymoff : NULL;
4102 for (isym = isymbuf, isymend = isymbuf + extsymcount;
4103 isym < isymend;
4104 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
4105 {
4106 int bind;
4107 bfd_vma value;
af44c138 4108 asection *sec, *new_sec;
4ad4eba5
AM
4109 flagword flags;
4110 const char *name;
4111 struct elf_link_hash_entry *h;
90c984fc 4112 struct elf_link_hash_entry *hi;
4ad4eba5
AM
4113 bfd_boolean definition;
4114 bfd_boolean size_change_ok;
4115 bfd_boolean type_change_ok;
4116 bfd_boolean new_weakdef;
37a9e49a
L
4117 bfd_boolean new_weak;
4118 bfd_boolean old_weak;
4ad4eba5 4119 bfd_boolean override;
a4d8e49b 4120 bfd_boolean common;
97196564 4121 bfd_boolean discarded;
4ad4eba5
AM
4122 unsigned int old_alignment;
4123 bfd *old_bfd;
6e33951e 4124 bfd_boolean matched;
4ad4eba5
AM
4125
4126 override = FALSE;
4127
4128 flags = BSF_NO_FLAGS;
4129 sec = NULL;
4130 value = isym->st_value;
a4d8e49b 4131 common = bed->common_definition (isym);
97196564 4132 discarded = FALSE;
4ad4eba5
AM
4133
4134 bind = ELF_ST_BIND (isym->st_info);
3e7a7d11 4135 switch (bind)
4ad4eba5 4136 {
3e7a7d11 4137 case STB_LOCAL:
4ad4eba5
AM
4138 /* This should be impossible, since ELF requires that all
4139 global symbols follow all local symbols, and that sh_info
4140 point to the first global symbol. Unfortunately, Irix 5
4141 screws this up. */
4142 continue;
3e7a7d11
NC
4143
4144 case STB_GLOBAL:
a4d8e49b 4145 if (isym->st_shndx != SHN_UNDEF && !common)
4ad4eba5 4146 flags = BSF_GLOBAL;
3e7a7d11
NC
4147 break;
4148
4149 case STB_WEAK:
4150 flags = BSF_WEAK;
4151 break;
4152
4153 case STB_GNU_UNIQUE:
4154 flags = BSF_GNU_UNIQUE;
4155 break;
4156
4157 default:
4ad4eba5 4158 /* Leave it up to the processor backend. */
3e7a7d11 4159 break;
4ad4eba5
AM
4160 }
4161
4162 if (isym->st_shndx == SHN_UNDEF)
4163 sec = bfd_und_section_ptr;
cb33740c
AM
4164 else if (isym->st_shndx == SHN_ABS)
4165 sec = bfd_abs_section_ptr;
4166 else if (isym->st_shndx == SHN_COMMON)
4167 {
4168 sec = bfd_com_section_ptr;
4169 /* What ELF calls the size we call the value. What ELF
4170 calls the value we call the alignment. */
4171 value = isym->st_size;
4172 }
4173 else
4ad4eba5
AM
4174 {
4175 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4176 if (sec == NULL)
4177 sec = bfd_abs_section_ptr;
dbaa2011 4178 else if (discarded_section (sec))
529fcb95 4179 {
e5d08002
L
4180 /* Symbols from discarded section are undefined. We keep
4181 its visibility. */
529fcb95 4182 sec = bfd_und_section_ptr;
97196564 4183 discarded = TRUE;
529fcb95
PB
4184 isym->st_shndx = SHN_UNDEF;
4185 }
4ad4eba5
AM
4186 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
4187 value -= sec->vma;
4188 }
4ad4eba5
AM
4189
4190 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4191 isym->st_name);
4192 if (name == NULL)
4193 goto error_free_vers;
4194
4195 if (isym->st_shndx == SHN_COMMON
02d00247
AM
4196 && (abfd->flags & BFD_PLUGIN) != 0)
4197 {
4198 asection *xc = bfd_get_section_by_name (abfd, "COMMON");
4199
4200 if (xc == NULL)
4201 {
4202 flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
4203 | SEC_EXCLUDE);
4204 xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
4205 if (xc == NULL)
4206 goto error_free_vers;
4207 }
4208 sec = xc;
4209 }
4210 else if (isym->st_shndx == SHN_COMMON
4211 && ELF_ST_TYPE (isym->st_info) == STT_TLS
0e1862bb 4212 && !bfd_link_relocatable (info))
4ad4eba5
AM
4213 {
4214 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
4215
4216 if (tcomm == NULL)
4217 {
02d00247
AM
4218 flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
4219 | SEC_LINKER_CREATED);
4220 tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3496cb2a 4221 if (tcomm == NULL)
4ad4eba5
AM
4222 goto error_free_vers;
4223 }
4224 sec = tcomm;
4225 }
66eb6687 4226 else if (bed->elf_add_symbol_hook)
4ad4eba5 4227 {
66eb6687
AM
4228 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
4229 &sec, &value))
4ad4eba5
AM
4230 goto error_free_vers;
4231
4232 /* The hook function sets the name to NULL if this symbol
4233 should be skipped for some reason. */
4234 if (name == NULL)
4235 continue;
4236 }
4237
4238 /* Sanity check that all possibilities were handled. */
4239 if (sec == NULL)
4240 {
4241 bfd_set_error (bfd_error_bad_value);
4242 goto error_free_vers;
4243 }
4244
191c0c42
AM
4245 /* Silently discard TLS symbols from --just-syms. There's
4246 no way to combine a static TLS block with a new TLS block
4247 for this executable. */
4248 if (ELF_ST_TYPE (isym->st_info) == STT_TLS
4249 && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4250 continue;
4251
4ad4eba5
AM
4252 if (bfd_is_und_section (sec)
4253 || bfd_is_com_section (sec))
4254 definition = FALSE;
4255 else
4256 definition = TRUE;
4257
4258 size_change_ok = FALSE;
66eb6687 4259 type_change_ok = bed->type_change_ok;
37a9e49a 4260 old_weak = FALSE;
6e33951e 4261 matched = FALSE;
4ad4eba5
AM
4262 old_alignment = 0;
4263 old_bfd = NULL;
af44c138 4264 new_sec = sec;
4ad4eba5 4265
66eb6687 4266 if (is_elf_hash_table (htab))
4ad4eba5
AM
4267 {
4268 Elf_Internal_Versym iver;
4269 unsigned int vernum = 0;
4270 bfd_boolean skip;
4271
fc0e6df6 4272 if (ever == NULL)
4ad4eba5 4273 {
fc0e6df6
PB
4274 if (info->default_imported_symver)
4275 /* Use the default symbol version created earlier. */
4276 iver.vs_vers = elf_tdata (abfd)->cverdefs;
4277 else
4278 iver.vs_vers = 0;
4279 }
4280 else
4281 _bfd_elf_swap_versym_in (abfd, ever, &iver);
4282
4283 vernum = iver.vs_vers & VERSYM_VERSION;
4284
4285 /* If this is a hidden symbol, or if it is not version
4286 1, we append the version name to the symbol name.
cc86ff91
EB
4287 However, we do not modify a non-hidden absolute symbol
4288 if it is not a function, because it might be the version
4289 symbol itself. FIXME: What if it isn't? */
fc0e6df6 4290 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
fcb93ecf
PB
4291 || (vernum > 1
4292 && (!bfd_is_abs_section (sec)
4293 || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
fc0e6df6
PB
4294 {
4295 const char *verstr;
4296 size_t namelen, verlen, newlen;
4297 char *newname, *p;
4298
4299 if (isym->st_shndx != SHN_UNDEF)
4ad4eba5 4300 {
fc0e6df6
PB
4301 if (vernum > elf_tdata (abfd)->cverdefs)
4302 verstr = NULL;
4303 else if (vernum > 1)
4304 verstr =
4305 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4306 else
4307 verstr = "";
4ad4eba5 4308
fc0e6df6 4309 if (verstr == NULL)
4ad4eba5 4310 {
4eca0228 4311 _bfd_error_handler
fc0e6df6
PB
4312 (_("%B: %s: invalid version %u (max %d)"),
4313 abfd, name, vernum,
4314 elf_tdata (abfd)->cverdefs);
4315 bfd_set_error (bfd_error_bad_value);
4316 goto error_free_vers;
4ad4eba5 4317 }
fc0e6df6
PB
4318 }
4319 else
4320 {
4321 /* We cannot simply test for the number of
4322 entries in the VERNEED section since the
4323 numbers for the needed versions do not start
4324 at 0. */
4325 Elf_Internal_Verneed *t;
4326
4327 verstr = NULL;
4328 for (t = elf_tdata (abfd)->verref;
4329 t != NULL;
4330 t = t->vn_nextref)
4ad4eba5 4331 {
fc0e6df6 4332 Elf_Internal_Vernaux *a;
4ad4eba5 4333
fc0e6df6
PB
4334 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4335 {
4336 if (a->vna_other == vernum)
4ad4eba5 4337 {
fc0e6df6
PB
4338 verstr = a->vna_nodename;
4339 break;
4ad4eba5 4340 }
4ad4eba5 4341 }
fc0e6df6
PB
4342 if (a != NULL)
4343 break;
4344 }
4345 if (verstr == NULL)
4346 {
4eca0228 4347 _bfd_error_handler
fc0e6df6
PB
4348 (_("%B: %s: invalid needed version %d"),
4349 abfd, name, vernum);
4350 bfd_set_error (bfd_error_bad_value);
4351 goto error_free_vers;
4ad4eba5 4352 }
4ad4eba5 4353 }
fc0e6df6
PB
4354
4355 namelen = strlen (name);
4356 verlen = strlen (verstr);
4357 newlen = namelen + verlen + 2;
4358 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4359 && isym->st_shndx != SHN_UNDEF)
4360 ++newlen;
4361
a50b1753 4362 newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
fc0e6df6
PB
4363 if (newname == NULL)
4364 goto error_free_vers;
4365 memcpy (newname, name, namelen);
4366 p = newname + namelen;
4367 *p++ = ELF_VER_CHR;
4368 /* If this is a defined non-hidden version symbol,
4369 we add another @ to the name. This indicates the
4370 default version of the symbol. */
4371 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4372 && isym->st_shndx != SHN_UNDEF)
4373 *p++ = ELF_VER_CHR;
4374 memcpy (p, verstr, verlen + 1);
4375
4376 name = newname;
4ad4eba5
AM
4377 }
4378
cd3416da
AM
4379 /* If this symbol has default visibility and the user has
4380 requested we not re-export it, then mark it as hidden. */
a0d49154 4381 if (!bfd_is_und_section (sec)
cd3416da 4382 && !dynamic
ce875075 4383 && abfd->no_export
cd3416da
AM
4384 && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4385 isym->st_other = (STV_HIDDEN
4386 | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4387
4f3fedcf
AM
4388 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4389 sym_hash, &old_bfd, &old_weak,
4390 &old_alignment, &skip, &override,
6e33951e
L
4391 &type_change_ok, &size_change_ok,
4392 &matched))
4ad4eba5
AM
4393 goto error_free_vers;
4394
4395 if (skip)
4396 continue;
4397
6e33951e
L
4398 /* Override a definition only if the new symbol matches the
4399 existing one. */
4400 if (override && matched)
4ad4eba5
AM
4401 definition = FALSE;
4402
4403 h = *sym_hash;
4404 while (h->root.type == bfd_link_hash_indirect
4405 || h->root.type == bfd_link_hash_warning)
4406 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4407
4ad4eba5 4408 if (elf_tdata (abfd)->verdef != NULL
4ad4eba5
AM
4409 && vernum > 1
4410 && definition)
4411 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4412 }
4413
4414 if (! (_bfd_generic_link_add_one_symbol
66eb6687 4415 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4ad4eba5
AM
4416 (struct bfd_link_hash_entry **) sym_hash)))
4417 goto error_free_vers;
4418
a43942db
MR
4419 if ((flags & BSF_GNU_UNIQUE)
4420 && (abfd->flags & DYNAMIC) == 0
4421 && bfd_get_flavour (info->output_bfd) == bfd_target_elf_flavour)
4422 elf_tdata (info->output_bfd)->has_gnu_symbols |= elf_gnu_symbol_unique;
4423
4ad4eba5 4424 h = *sym_hash;
90c984fc
L
4425 /* We need to make sure that indirect symbol dynamic flags are
4426 updated. */
4427 hi = h;
4ad4eba5
AM
4428 while (h->root.type == bfd_link_hash_indirect
4429 || h->root.type == bfd_link_hash_warning)
4430 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3e7a7d11 4431
97196564
L
4432 /* Setting the index to -3 tells elf_link_output_extsym that
4433 this symbol is defined in a discarded section. */
4434 if (discarded)
4435 h->indx = -3;
4436
4ad4eba5
AM
4437 *sym_hash = h;
4438
37a9e49a 4439 new_weak = (flags & BSF_WEAK) != 0;
4ad4eba5
AM
4440 new_weakdef = FALSE;
4441 if (dynamic
4442 && definition
37a9e49a 4443 && new_weak
fcb93ecf 4444 && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
66eb6687 4445 && is_elf_hash_table (htab)
f6e332e6 4446 && h->u.weakdef == NULL)
4ad4eba5
AM
4447 {
4448 /* Keep a list of all weak defined non function symbols from
4449 a dynamic object, using the weakdef field. Later in this
4450 function we will set the weakdef field to the correct
4451 value. We only put non-function symbols from dynamic
4452 objects on this list, because that happens to be the only
4453 time we need to know the normal symbol corresponding to a
4454 weak symbol, and the information is time consuming to
4455 figure out. If the weakdef field is not already NULL,
4456 then this symbol was already defined by some previous
4457 dynamic object, and we will be using that previous
4458 definition anyhow. */
4459
f6e332e6 4460 h->u.weakdef = weaks;
4ad4eba5
AM
4461 weaks = h;
4462 new_weakdef = TRUE;
4463 }
4464
4465 /* Set the alignment of a common symbol. */
a4d8e49b 4466 if ((common || bfd_is_com_section (sec))
4ad4eba5
AM
4467 && h->root.type == bfd_link_hash_common)
4468 {
4469 unsigned int align;
4470
a4d8e49b 4471 if (common)
af44c138
L
4472 align = bfd_log2 (isym->st_value);
4473 else
4474 {
4475 /* The new symbol is a common symbol in a shared object.
4476 We need to get the alignment from the section. */
4477 align = new_sec->alignment_power;
4478 }
595213d4 4479 if (align > old_alignment)
4ad4eba5
AM
4480 h->root.u.c.p->alignment_power = align;
4481 else
4482 h->root.u.c.p->alignment_power = old_alignment;
4483 }
4484
66eb6687 4485 if (is_elf_hash_table (htab))
4ad4eba5 4486 {
4f3fedcf
AM
4487 /* Set a flag in the hash table entry indicating the type of
4488 reference or definition we just found. A dynamic symbol
4489 is one which is referenced or defined by both a regular
4490 object and a shared object. */
4491 bfd_boolean dynsym = FALSE;
4492
4493 /* Plugin symbols aren't normal. Don't set def_regular or
4494 ref_regular for them, or make them dynamic. */
4495 if ((abfd->flags & BFD_PLUGIN) != 0)
4496 ;
4497 else if (! dynamic)
4498 {
4499 if (! definition)
4500 {
4501 h->ref_regular = 1;
4502 if (bind != STB_WEAK)
4503 h->ref_regular_nonweak = 1;
4504 }
4505 else
4506 {
4507 h->def_regular = 1;
4508 if (h->def_dynamic)
4509 {
4510 h->def_dynamic = 0;
4511 h->ref_dynamic = 1;
4512 }
4513 }
4514
4515 /* If the indirect symbol has been forced local, don't
4516 make the real symbol dynamic. */
4517 if ((h == hi || !hi->forced_local)
0e1862bb 4518 && (bfd_link_dll (info)
4f3fedcf
AM
4519 || h->def_dynamic
4520 || h->ref_dynamic))
4521 dynsym = TRUE;
4522 }
4523 else
4524 {
4525 if (! definition)
4526 {
4527 h->ref_dynamic = 1;
4528 hi->ref_dynamic = 1;
4529 }
4530 else
4531 {
4532 h->def_dynamic = 1;
4533 hi->def_dynamic = 1;
4534 }
4535
4536 /* If the indirect symbol has been forced local, don't
4537 make the real symbol dynamic. */
4538 if ((h == hi || !hi->forced_local)
4539 && (h->def_regular
4540 || h->ref_regular
4541 || (h->u.weakdef != NULL
4542 && ! new_weakdef
4543 && h->u.weakdef->dynindx != -1)))
4544 dynsym = TRUE;
4545 }
4546
4547 /* Check to see if we need to add an indirect symbol for
4548 the default name. */
4549 if (definition
4550 || (!override && h->root.type == bfd_link_hash_common))
4551 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4552 sec, value, &old_bfd, &dynsym))
4553 goto error_free_vers;
4ad4eba5
AM
4554
4555 /* Check the alignment when a common symbol is involved. This
4556 can change when a common symbol is overridden by a normal
4557 definition or a common symbol is ignored due to the old
4558 normal definition. We need to make sure the maximum
4559 alignment is maintained. */
a4d8e49b 4560 if ((old_alignment || common)
4ad4eba5
AM
4561 && h->root.type != bfd_link_hash_common)
4562 {
4563 unsigned int common_align;
4564 unsigned int normal_align;
4565 unsigned int symbol_align;
4566 bfd *normal_bfd;
4567 bfd *common_bfd;
4568
3a81e825
AM
4569 BFD_ASSERT (h->root.type == bfd_link_hash_defined
4570 || h->root.type == bfd_link_hash_defweak);
4571
4ad4eba5
AM
4572 symbol_align = ffs (h->root.u.def.value) - 1;
4573 if (h->root.u.def.section->owner != NULL
0616a280
AM
4574 && (h->root.u.def.section->owner->flags
4575 & (DYNAMIC | BFD_PLUGIN)) == 0)
4ad4eba5
AM
4576 {
4577 normal_align = h->root.u.def.section->alignment_power;
4578 if (normal_align > symbol_align)
4579 normal_align = symbol_align;
4580 }
4581 else
4582 normal_align = symbol_align;
4583
4584 if (old_alignment)
4585 {
4586 common_align = old_alignment;
4587 common_bfd = old_bfd;
4588 normal_bfd = abfd;
4589 }
4590 else
4591 {
4592 common_align = bfd_log2 (isym->st_value);
4593 common_bfd = abfd;
4594 normal_bfd = old_bfd;
4595 }
4596
4597 if (normal_align < common_align)
d07676f8
NC
4598 {
4599 /* PR binutils/2735 */
4600 if (normal_bfd == NULL)
4eca0228 4601 _bfd_error_handler
4f3fedcf
AM
4602 (_("Warning: alignment %u of common symbol `%s' in %B is"
4603 " greater than the alignment (%u) of its section %A"),
d07676f8
NC
4604 common_bfd, h->root.u.def.section,
4605 1 << common_align, name, 1 << normal_align);
4606 else
4eca0228 4607 _bfd_error_handler
d07676f8
NC
4608 (_("Warning: alignment %u of symbol `%s' in %B"
4609 " is smaller than %u in %B"),
4610 normal_bfd, common_bfd,
4611 1 << normal_align, name, 1 << common_align);
4612 }
4ad4eba5
AM
4613 }
4614
83ad0046 4615 /* Remember the symbol size if it isn't undefined. */
3a81e825
AM
4616 if (isym->st_size != 0
4617 && isym->st_shndx != SHN_UNDEF
4ad4eba5
AM
4618 && (definition || h->size == 0))
4619 {
83ad0046
L
4620 if (h->size != 0
4621 && h->size != isym->st_size
4622 && ! size_change_ok)
4eca0228 4623 _bfd_error_handler
d003868e
AM
4624 (_("Warning: size of symbol `%s' changed"
4625 " from %lu in %B to %lu in %B"),
4626 old_bfd, abfd,
4ad4eba5 4627 name, (unsigned long) h->size,
d003868e 4628 (unsigned long) isym->st_size);
4ad4eba5
AM
4629
4630 h->size = isym->st_size;
4631 }
4632
4633 /* If this is a common symbol, then we always want H->SIZE
4634 to be the size of the common symbol. The code just above
4635 won't fix the size if a common symbol becomes larger. We
4636 don't warn about a size change here, because that is
4f3fedcf 4637 covered by --warn-common. Allow changes between different
fcb93ecf 4638 function types. */
4ad4eba5
AM
4639 if (h->root.type == bfd_link_hash_common)
4640 h->size = h->root.u.c.size;
4641
4642 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
37a9e49a
L
4643 && ((definition && !new_weak)
4644 || (old_weak && h->root.type == bfd_link_hash_common)
4645 || h->type == STT_NOTYPE))
4ad4eba5 4646 {
2955ec4c
L
4647 unsigned int type = ELF_ST_TYPE (isym->st_info);
4648
4649 /* Turn an IFUNC symbol from a DSO into a normal FUNC
4650 symbol. */
4651 if (type == STT_GNU_IFUNC
4652 && (abfd->flags & DYNAMIC) != 0)
4653 type = STT_FUNC;
4ad4eba5 4654
2955ec4c
L
4655 if (h->type != type)
4656 {
4657 if (h->type != STT_NOTYPE && ! type_change_ok)
4eca0228 4658 _bfd_error_handler
2955ec4c
L
4659 (_("Warning: type of symbol `%s' changed"
4660 " from %d to %d in %B"),
4661 abfd, name, h->type, type);
4662
4663 h->type = type;
4664 }
4ad4eba5
AM
4665 }
4666
54ac0771 4667 /* Merge st_other field. */
b8417128 4668 elf_merge_st_other (abfd, h, isym, sec, definition, dynamic);
4ad4eba5 4669
c3df8c14 4670 /* We don't want to make debug symbol dynamic. */
0e1862bb
L
4671 if (definition
4672 && (sec->flags & SEC_DEBUGGING)
4673 && !bfd_link_relocatable (info))
c3df8c14
AM
4674 dynsym = FALSE;
4675
4f3fedcf
AM
4676 /* Nor should we make plugin symbols dynamic. */
4677 if ((abfd->flags & BFD_PLUGIN) != 0)
4678 dynsym = FALSE;
4679
35fc36a8 4680 if (definition)
35399224
L
4681 {
4682 h->target_internal = isym->st_target_internal;
4683 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4684 }
35fc36a8 4685
4ad4eba5
AM
4686 if (definition && !dynamic)
4687 {
4688 char *p = strchr (name, ELF_VER_CHR);
4689 if (p != NULL && p[1] != ELF_VER_CHR)
4690 {
4691 /* Queue non-default versions so that .symver x, x@FOO
4692 aliases can be checked. */
66eb6687 4693 if (!nondeflt_vers)
4ad4eba5 4694 {
66eb6687
AM
4695 amt = ((isymend - isym + 1)
4696 * sizeof (struct elf_link_hash_entry *));
ca4be51c
AM
4697 nondeflt_vers
4698 = (struct elf_link_hash_entry **) bfd_malloc (amt);
14b1c01e
AM
4699 if (!nondeflt_vers)
4700 goto error_free_vers;
4ad4eba5 4701 }
66eb6687 4702 nondeflt_vers[nondeflt_vers_cnt++] = h;
4ad4eba5
AM
4703 }
4704 }
4705
4706 if (dynsym && h->dynindx == -1)
4707 {
c152c796 4708 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4ad4eba5 4709 goto error_free_vers;
f6e332e6 4710 if (h->u.weakdef != NULL
4ad4eba5 4711 && ! new_weakdef
f6e332e6 4712 && h->u.weakdef->dynindx == -1)
4ad4eba5 4713 {
66eb6687 4714 if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4ad4eba5
AM
4715 goto error_free_vers;
4716 }
4717 }
1f599d0e 4718 else if (h->dynindx != -1)
4ad4eba5
AM
4719 /* If the symbol already has a dynamic index, but
4720 visibility says it should not be visible, turn it into
4721 a local symbol. */
4722 switch (ELF_ST_VISIBILITY (h->other))
4723 {
4724 case STV_INTERNAL:
4725 case STV_HIDDEN:
4726 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4727 dynsym = FALSE;
4728 break;
4729 }
4730
aef28989
L
4731 /* Don't add DT_NEEDED for references from the dummy bfd nor
4732 for unmatched symbol. */
4ad4eba5 4733 if (!add_needed
aef28989 4734 && matched
4ad4eba5 4735 && definition
010e5ae2 4736 && ((dynsym
ffa9430d 4737 && h->ref_regular_nonweak
4f3fedcf
AM
4738 && (old_bfd == NULL
4739 || (old_bfd->flags & BFD_PLUGIN) == 0))
ffa9430d 4740 || (h->ref_dynamic_nonweak
010e5ae2 4741 && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
7b15fa7a
AM
4742 && !on_needed_list (elf_dt_name (abfd),
4743 htab->needed, NULL))))
4ad4eba5
AM
4744 {
4745 int ret;
4746 const char *soname = elf_dt_name (abfd);
4747
16e4ecc0
AM
4748 info->callbacks->minfo ("%!", soname, old_bfd,
4749 h->root.root.string);
4750
4ad4eba5
AM
4751 /* A symbol from a library loaded via DT_NEEDED of some
4752 other library is referenced by a regular object.
e56f61be 4753 Add a DT_NEEDED entry for it. Issue an error if
b918acf9
NC
4754 --no-add-needed is used and the reference was not
4755 a weak one. */
4f3fedcf 4756 if (old_bfd != NULL
b918acf9 4757 && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
e56f61be 4758 {
4eca0228 4759 _bfd_error_handler
3cbc5de0 4760 (_("%B: undefined reference to symbol '%s'"),
4f3fedcf 4761 old_bfd, name);
ff5ac77b 4762 bfd_set_error (bfd_error_missing_dso);
e56f61be
L
4763 goto error_free_vers;
4764 }
4765
a50b1753 4766 elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
ca4be51c 4767 (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
a5db907e 4768
4ad4eba5 4769 add_needed = TRUE;
7e9f0867 4770 ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4ad4eba5
AM
4771 if (ret < 0)
4772 goto error_free_vers;
4773
4774 BFD_ASSERT (ret == 0);
4775 }
4776 }
4777 }
4778
66eb6687
AM
4779 if (extversym != NULL)
4780 {
4781 free (extversym);
4782 extversym = NULL;
4783 }
4784
4785 if (isymbuf != NULL)
4786 {
4787 free (isymbuf);
4788 isymbuf = NULL;
4789 }
4790
4791 if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4792 {
4793 unsigned int i;
4794
4795 /* Restore the symbol table. */
f45794cb
AM
4796 old_ent = (char *) old_tab + tabsize;
4797 memset (elf_sym_hashes (abfd), 0,
4798 extsymcount * sizeof (struct elf_link_hash_entry *));
4f87808c
AM
4799 htab->root.table.table = old_table;
4800 htab->root.table.size = old_size;
4801 htab->root.table.count = old_count;
66eb6687 4802 memcpy (htab->root.table.table, old_tab, tabsize);
66eb6687
AM
4803 htab->root.undefs = old_undefs;
4804 htab->root.undefs_tail = old_undefs_tail;
5b677558
AM
4805 _bfd_elf_strtab_restore (htab->dynstr, old_strtab);
4806 free (old_strtab);
4807 old_strtab = NULL;
66eb6687
AM
4808 for (i = 0; i < htab->root.table.size; i++)
4809 {
4810 struct bfd_hash_entry *p;
4811 struct elf_link_hash_entry *h;
3e0882af
L
4812 bfd_size_type size;
4813 unsigned int alignment_power;
66eb6687
AM
4814
4815 for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4816 {
4817 h = (struct elf_link_hash_entry *) p;
2de92251
AM
4818 if (h->root.type == bfd_link_hash_warning)
4819 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2de92251 4820
3e0882af
L
4821 /* Preserve the maximum alignment and size for common
4822 symbols even if this dynamic lib isn't on DT_NEEDED
a4542f1b 4823 since it can still be loaded at run time by another
3e0882af
L
4824 dynamic lib. */
4825 if (h->root.type == bfd_link_hash_common)
4826 {
4827 size = h->root.u.c.size;
4828 alignment_power = h->root.u.c.p->alignment_power;
4829 }
4830 else
4831 {
4832 size = 0;
4833 alignment_power = 0;
4834 }
66eb6687
AM
4835 memcpy (p, old_ent, htab->root.table.entsize);
4836 old_ent = (char *) old_ent + htab->root.table.entsize;
2de92251
AM
4837 h = (struct elf_link_hash_entry *) p;
4838 if (h->root.type == bfd_link_hash_warning)
4839 {
4840 memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4841 old_ent = (char *) old_ent + htab->root.table.entsize;
a4542f1b 4842 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2de92251 4843 }
a4542f1b 4844 if (h->root.type == bfd_link_hash_common)
3e0882af
L
4845 {
4846 if (size > h->root.u.c.size)
4847 h->root.u.c.size = size;
4848 if (alignment_power > h->root.u.c.p->alignment_power)
4849 h->root.u.c.p->alignment_power = alignment_power;
4850 }
66eb6687
AM
4851 }
4852 }
4853
5061a885
AM
4854 /* Make a special call to the linker "notice" function to
4855 tell it that symbols added for crefs may need to be removed. */
e5034e59 4856 if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
9af2a943 4857 goto error_free_vers;
5061a885 4858
66eb6687
AM
4859 free (old_tab);
4860 objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4861 alloc_mark);
4862 if (nondeflt_vers != NULL)
4863 free (nondeflt_vers);
4864 return TRUE;
4865 }
2de92251 4866
66eb6687
AM
4867 if (old_tab != NULL)
4868 {
e5034e59 4869 if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
9af2a943 4870 goto error_free_vers;
66eb6687
AM
4871 free (old_tab);
4872 old_tab = NULL;
4873 }
4874
c6e8a9a8
L
4875 /* Now that all the symbols from this input file are created, if
4876 not performing a relocatable link, handle .symver foo, foo@BAR
4877 such that any relocs against foo become foo@BAR. */
0e1862bb 4878 if (!bfd_link_relocatable (info) && nondeflt_vers != NULL)
4ad4eba5 4879 {
ef53be89 4880 size_t cnt, symidx;
4ad4eba5
AM
4881
4882 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
4883 {
4884 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
4885 char *shortname, *p;
4886
4887 p = strchr (h->root.root.string, ELF_VER_CHR);
4888 if (p == NULL
4889 || (h->root.type != bfd_link_hash_defined
4890 && h->root.type != bfd_link_hash_defweak))
4891 continue;
4892
4893 amt = p - h->root.root.string;
a50b1753 4894 shortname = (char *) bfd_malloc (amt + 1);
14b1c01e
AM
4895 if (!shortname)
4896 goto error_free_vers;
4ad4eba5
AM
4897 memcpy (shortname, h->root.root.string, amt);
4898 shortname[amt] = '\0';
4899
4900 hi = (struct elf_link_hash_entry *)
66eb6687 4901 bfd_link_hash_lookup (&htab->root, shortname,
4ad4eba5
AM
4902 FALSE, FALSE, FALSE);
4903 if (hi != NULL
4904 && hi->root.type == h->root.type
4905 && hi->root.u.def.value == h->root.u.def.value
4906 && hi->root.u.def.section == h->root.u.def.section)
4907 {
4908 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
4909 hi->root.type = bfd_link_hash_indirect;
4910 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
fcfa13d2 4911 (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4ad4eba5
AM
4912 sym_hash = elf_sym_hashes (abfd);
4913 if (sym_hash)
4914 for (symidx = 0; symidx < extsymcount; ++symidx)
4915 if (sym_hash[symidx] == hi)
4916 {
4917 sym_hash[symidx] = h;
4918 break;
4919 }
4920 }
4921 free (shortname);
4922 }
4923 free (nondeflt_vers);
4924 nondeflt_vers = NULL;
4925 }
4926
4ad4eba5
AM
4927 /* Now set the weakdefs field correctly for all the weak defined
4928 symbols we found. The only way to do this is to search all the
4929 symbols. Since we only need the information for non functions in
4930 dynamic objects, that's the only time we actually put anything on
4931 the list WEAKS. We need this information so that if a regular
4932 object refers to a symbol defined weakly in a dynamic object, the
4933 real symbol in the dynamic object is also put in the dynamic
4934 symbols; we also must arrange for both symbols to point to the
4935 same memory location. We could handle the general case of symbol
4936 aliasing, but a general symbol alias can only be generated in
4937 assembler code, handling it correctly would be very time
4938 consuming, and other ELF linkers don't handle general aliasing
4939 either. */
4940 if (weaks != NULL)
4941 {
4942 struct elf_link_hash_entry **hpp;
4943 struct elf_link_hash_entry **hppend;
4944 struct elf_link_hash_entry **sorted_sym_hash;
4945 struct elf_link_hash_entry *h;
4946 size_t sym_count;
4947
4948 /* Since we have to search the whole symbol list for each weak
4949 defined symbol, search time for N weak defined symbols will be
4950 O(N^2). Binary search will cut it down to O(NlogN). */
ef53be89
AM
4951 amt = extsymcount;
4952 amt *= sizeof (struct elf_link_hash_entry *);
a50b1753 4953 sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4ad4eba5
AM
4954 if (sorted_sym_hash == NULL)
4955 goto error_return;
4956 sym_hash = sorted_sym_hash;
4957 hpp = elf_sym_hashes (abfd);
4958 hppend = hpp + extsymcount;
4959 sym_count = 0;
4960 for (; hpp < hppend; hpp++)
4961 {
4962 h = *hpp;
4963 if (h != NULL
4964 && h->root.type == bfd_link_hash_defined
fcb93ecf 4965 && !bed->is_function_type (h->type))
4ad4eba5
AM
4966 {
4967 *sym_hash = h;
4968 sym_hash++;
4969 sym_count++;
4970 }
4971 }
4972
4973 qsort (sorted_sym_hash, sym_count,
4974 sizeof (struct elf_link_hash_entry *),
4975 elf_sort_symbol);
4976
4977 while (weaks != NULL)
4978 {
4979 struct elf_link_hash_entry *hlook;
4980 asection *slook;
4981 bfd_vma vlook;
ed54588d 4982 size_t i, j, idx = 0;
4ad4eba5
AM
4983
4984 hlook = weaks;
f6e332e6
AM
4985 weaks = hlook->u.weakdef;
4986 hlook->u.weakdef = NULL;
4ad4eba5
AM
4987
4988 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
4989 || hlook->root.type == bfd_link_hash_defweak
4990 || hlook->root.type == bfd_link_hash_common
4991 || hlook->root.type == bfd_link_hash_indirect);
4992 slook = hlook->root.u.def.section;
4993 vlook = hlook->root.u.def.value;
4994
4ad4eba5
AM
4995 i = 0;
4996 j = sym_count;
14160578 4997 while (i != j)
4ad4eba5
AM
4998 {
4999 bfd_signed_vma vdiff;
5000 idx = (i + j) / 2;
14160578 5001 h = sorted_sym_hash[idx];
4ad4eba5
AM
5002 vdiff = vlook - h->root.u.def.value;
5003 if (vdiff < 0)
5004 j = idx;
5005 else if (vdiff > 0)
5006 i = idx + 1;
5007 else
5008 {
d3435ae8 5009 int sdiff = slook->id - h->root.u.def.section->id;
4ad4eba5
AM
5010 if (sdiff < 0)
5011 j = idx;
5012 else if (sdiff > 0)
5013 i = idx + 1;
5014 else
14160578 5015 break;
4ad4eba5
AM
5016 }
5017 }
5018
5019 /* We didn't find a value/section match. */
14160578 5020 if (i == j)
4ad4eba5
AM
5021 continue;
5022
14160578
AM
5023 /* With multiple aliases, or when the weak symbol is already
5024 strongly defined, we have multiple matching symbols and
5025 the binary search above may land on any of them. Step
5026 one past the matching symbol(s). */
5027 while (++idx != j)
5028 {
5029 h = sorted_sym_hash[idx];
5030 if (h->root.u.def.section != slook
5031 || h->root.u.def.value != vlook)
5032 break;
5033 }
5034
5035 /* Now look back over the aliases. Since we sorted by size
5036 as well as value and section, we'll choose the one with
5037 the largest size. */
5038 while (idx-- != i)
4ad4eba5 5039 {
14160578 5040 h = sorted_sym_hash[idx];
4ad4eba5
AM
5041
5042 /* Stop if value or section doesn't match. */
14160578
AM
5043 if (h->root.u.def.section != slook
5044 || h->root.u.def.value != vlook)
4ad4eba5
AM
5045 break;
5046 else if (h != hlook)
5047 {
f6e332e6 5048 hlook->u.weakdef = h;
4ad4eba5
AM
5049
5050 /* If the weak definition is in the list of dynamic
5051 symbols, make sure the real definition is put
5052 there as well. */
5053 if (hlook->dynindx != -1 && h->dynindx == -1)
5054 {
c152c796 5055 if (! bfd_elf_link_record_dynamic_symbol (info, h))
4dd07732
AM
5056 {
5057 err_free_sym_hash:
5058 free (sorted_sym_hash);
5059 goto error_return;
5060 }
4ad4eba5
AM
5061 }
5062
5063 /* If the real definition is in the list of dynamic
5064 symbols, make sure the weak definition is put
5065 there as well. If we don't do this, then the
5066 dynamic loader might not merge the entries for the
5067 real definition and the weak definition. */
5068 if (h->dynindx != -1 && hlook->dynindx == -1)
5069 {
c152c796 5070 if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4dd07732 5071 goto err_free_sym_hash;
4ad4eba5
AM
5072 }
5073 break;
5074 }
5075 }
5076 }
5077
5078 free (sorted_sym_hash);
5079 }
5080
33177bb1
AM
5081 if (bed->check_directives
5082 && !(*bed->check_directives) (abfd, info))
5083 return FALSE;
85fbca6a 5084
d9689752
L
5085 if (!info->check_relocs_after_open_input
5086 && !_bfd_elf_link_check_relocs (abfd, info))
5087 return FALSE;
4ad4eba5
AM
5088
5089 /* If this is a non-traditional link, try to optimize the handling
5090 of the .stab/.stabstr sections. */
5091 if (! dynamic
5092 && ! info->traditional_format
66eb6687 5093 && is_elf_hash_table (htab)
4ad4eba5
AM
5094 && (info->strip != strip_all && info->strip != strip_debugger))
5095 {
5096 asection *stabstr;
5097
5098 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
5099 if (stabstr != NULL)
5100 {
5101 bfd_size_type string_offset = 0;
5102 asection *stab;
5103
5104 for (stab = abfd->sections; stab; stab = stab->next)
0112cd26 5105 if (CONST_STRNEQ (stab->name, ".stab")
4ad4eba5
AM
5106 && (!stab->name[5] ||
5107 (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
5108 && (stab->flags & SEC_MERGE) == 0
5109 && !bfd_is_abs_section (stab->output_section))
5110 {
5111 struct bfd_elf_section_data *secdata;
5112
5113 secdata = elf_section_data (stab);
66eb6687
AM
5114 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
5115 stabstr, &secdata->sec_info,
4ad4eba5
AM
5116 &string_offset))
5117 goto error_return;
5118 if (secdata->sec_info)
dbaa2011 5119 stab->sec_info_type = SEC_INFO_TYPE_STABS;
4ad4eba5
AM
5120 }
5121 }
5122 }
5123
66eb6687 5124 if (is_elf_hash_table (htab) && add_needed)
4ad4eba5
AM
5125 {
5126 /* Add this bfd to the loaded list. */
5127 struct elf_link_loaded_list *n;
5128
ca4be51c 5129 n = (struct elf_link_loaded_list *) bfd_alloc (abfd, sizeof (*n));
4ad4eba5
AM
5130 if (n == NULL)
5131 goto error_return;
5132 n->abfd = abfd;
66eb6687
AM
5133 n->next = htab->loaded;
5134 htab->loaded = n;
4ad4eba5
AM
5135 }
5136
5137 return TRUE;
5138
5139 error_free_vers:
66eb6687
AM
5140 if (old_tab != NULL)
5141 free (old_tab);
5b677558
AM
5142 if (old_strtab != NULL)
5143 free (old_strtab);
4ad4eba5
AM
5144 if (nondeflt_vers != NULL)
5145 free (nondeflt_vers);
5146 if (extversym != NULL)
5147 free (extversym);
5148 error_free_sym:
5149 if (isymbuf != NULL)
5150 free (isymbuf);
5151 error_return:
5152 return FALSE;
5153}
5154
8387904d
AM
5155/* Return the linker hash table entry of a symbol that might be
5156 satisfied by an archive symbol. Return -1 on error. */
5157
5158struct elf_link_hash_entry *
5159_bfd_elf_archive_symbol_lookup (bfd *abfd,
5160 struct bfd_link_info *info,
5161 const char *name)
5162{
5163 struct elf_link_hash_entry *h;
5164 char *p, *copy;
5165 size_t len, first;
5166
2a41f396 5167 h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
8387904d
AM
5168 if (h != NULL)
5169 return h;
5170
5171 /* If this is a default version (the name contains @@), look up the
5172 symbol again with only one `@' as well as without the version.
5173 The effect is that references to the symbol with and without the
5174 version will be matched by the default symbol in the archive. */
5175
5176 p = strchr (name, ELF_VER_CHR);
5177 if (p == NULL || p[1] != ELF_VER_CHR)
5178 return h;
5179
5180 /* First check with only one `@'. */
5181 len = strlen (name);
a50b1753 5182 copy = (char *) bfd_alloc (abfd, len);
8387904d
AM
5183 if (copy == NULL)
5184 return (struct elf_link_hash_entry *) 0 - 1;
5185
5186 first = p - name + 1;
5187 memcpy (copy, name, first);
5188 memcpy (copy + first, name + first + 1, len - first);
5189
2a41f396 5190 h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
8387904d
AM
5191 if (h == NULL)
5192 {
5193 /* We also need to check references to the symbol without the
5194 version. */
5195 copy[first - 1] = '\0';
5196 h = elf_link_hash_lookup (elf_hash_table (info), copy,
2a41f396 5197 FALSE, FALSE, TRUE);
8387904d
AM
5198 }
5199
5200 bfd_release (abfd, copy);
5201 return h;
5202}
5203
0ad989f9 5204/* Add symbols from an ELF archive file to the linker hash table. We
13e570f8
AM
5205 don't use _bfd_generic_link_add_archive_symbols because we need to
5206 handle versioned symbols.
0ad989f9
L
5207
5208 Fortunately, ELF archive handling is simpler than that done by
5209 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
5210 oddities. In ELF, if we find a symbol in the archive map, and the
5211 symbol is currently undefined, we know that we must pull in that
5212 object file.
5213
5214 Unfortunately, we do have to make multiple passes over the symbol
5215 table until nothing further is resolved. */
5216
4ad4eba5
AM
5217static bfd_boolean
5218elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
0ad989f9
L
5219{
5220 symindex c;
13e570f8 5221 unsigned char *included = NULL;
0ad989f9
L
5222 carsym *symdefs;
5223 bfd_boolean loop;
5224 bfd_size_type amt;
8387904d
AM
5225 const struct elf_backend_data *bed;
5226 struct elf_link_hash_entry * (*archive_symbol_lookup)
5227 (bfd *, struct bfd_link_info *, const char *);
0ad989f9
L
5228
5229 if (! bfd_has_map (abfd))
5230 {
5231 /* An empty archive is a special case. */
5232 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
5233 return TRUE;
5234 bfd_set_error (bfd_error_no_armap);
5235 return FALSE;
5236 }
5237
5238 /* Keep track of all symbols we know to be already defined, and all
5239 files we know to be already included. This is to speed up the
5240 second and subsequent passes. */
5241 c = bfd_ardata (abfd)->symdef_count;
5242 if (c == 0)
5243 return TRUE;
5244 amt = c;
13e570f8
AM
5245 amt *= sizeof (*included);
5246 included = (unsigned char *) bfd_zmalloc (amt);
5247 if (included == NULL)
5248 return FALSE;
0ad989f9
L
5249
5250 symdefs = bfd_ardata (abfd)->symdefs;
8387904d
AM
5251 bed = get_elf_backend_data (abfd);
5252 archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
0ad989f9
L
5253
5254 do
5255 {
5256 file_ptr last;
5257 symindex i;
5258 carsym *symdef;
5259 carsym *symdefend;
5260
5261 loop = FALSE;
5262 last = -1;
5263
5264 symdef = symdefs;
5265 symdefend = symdef + c;
5266 for (i = 0; symdef < symdefend; symdef++, i++)
5267 {
5268 struct elf_link_hash_entry *h;
5269 bfd *element;
5270 struct bfd_link_hash_entry *undefs_tail;
5271 symindex mark;
5272
13e570f8 5273 if (included[i])
0ad989f9
L
5274 continue;
5275 if (symdef->file_offset == last)
5276 {
5277 included[i] = TRUE;
5278 continue;
5279 }
5280
8387904d
AM
5281 h = archive_symbol_lookup (abfd, info, symdef->name);
5282 if (h == (struct elf_link_hash_entry *) 0 - 1)
5283 goto error_return;
0ad989f9
L
5284
5285 if (h == NULL)
5286 continue;
5287
5288 if (h->root.type == bfd_link_hash_common)
5289 {
5290 /* We currently have a common symbol. The archive map contains
5291 a reference to this symbol, so we may want to include it. We
5292 only want to include it however, if this archive element
5293 contains a definition of the symbol, not just another common
5294 declaration of it.
5295
5296 Unfortunately some archivers (including GNU ar) will put
5297 declarations of common symbols into their archive maps, as
5298 well as real definitions, so we cannot just go by the archive
5299 map alone. Instead we must read in the element's symbol
5300 table and check that to see what kind of symbol definition
5301 this is. */
5302 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5303 continue;
5304 }
5305 else if (h->root.type != bfd_link_hash_undefined)
5306 {
5307 if (h->root.type != bfd_link_hash_undefweak)
13e570f8
AM
5308 /* Symbol must be defined. Don't check it again. */
5309 included[i] = TRUE;
0ad989f9
L
5310 continue;
5311 }
5312
5313 /* We need to include this archive member. */
5314 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5315 if (element == NULL)
5316 goto error_return;
5317
5318 if (! bfd_check_format (element, bfd_object))
5319 goto error_return;
5320
0ad989f9
L
5321 undefs_tail = info->hash->undefs_tail;
5322
0e144ba7
AM
5323 if (!(*info->callbacks
5324 ->add_archive_element) (info, element, symdef->name, &element))
b95a0a31 5325 continue;
0e144ba7 5326 if (!bfd_link_add_symbols (element, info))
0ad989f9
L
5327 goto error_return;
5328
5329 /* If there are any new undefined symbols, we need to make
5330 another pass through the archive in order to see whether
5331 they can be defined. FIXME: This isn't perfect, because
5332 common symbols wind up on undefs_tail and because an
5333 undefined symbol which is defined later on in this pass
5334 does not require another pass. This isn't a bug, but it
5335 does make the code less efficient than it could be. */
5336 if (undefs_tail != info->hash->undefs_tail)
5337 loop = TRUE;
5338
5339 /* Look backward to mark all symbols from this object file
5340 which we have already seen in this pass. */
5341 mark = i;
5342 do
5343 {
5344 included[mark] = TRUE;
5345 if (mark == 0)
5346 break;
5347 --mark;
5348 }
5349 while (symdefs[mark].file_offset == symdef->file_offset);
5350
5351 /* We mark subsequent symbols from this object file as we go
5352 on through the loop. */
5353 last = symdef->file_offset;
5354 }
5355 }
5356 while (loop);
5357
0ad989f9
L
5358 free (included);
5359
5360 return TRUE;
5361
5362 error_return:
0ad989f9
L
5363 if (included != NULL)
5364 free (included);
5365 return FALSE;
5366}
4ad4eba5
AM
5367
5368/* Given an ELF BFD, add symbols to the global hash table as
5369 appropriate. */
5370
5371bfd_boolean
5372bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5373{
5374 switch (bfd_get_format (abfd))
5375 {
5376 case bfd_object:
5377 return elf_link_add_object_symbols (abfd, info);
5378 case bfd_archive:
5379 return elf_link_add_archive_symbols (abfd, info);
5380 default:
5381 bfd_set_error (bfd_error_wrong_format);
5382 return FALSE;
5383 }
5384}
5a580b3a 5385\f
14b1c01e
AM
5386struct hash_codes_info
5387{
5388 unsigned long *hashcodes;
5389 bfd_boolean error;
5390};
a0c8462f 5391
5a580b3a
AM
5392/* This function will be called though elf_link_hash_traverse to store
5393 all hash value of the exported symbols in an array. */
5394
5395static bfd_boolean
5396elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5397{
a50b1753 5398 struct hash_codes_info *inf = (struct hash_codes_info *) data;
5a580b3a 5399 const char *name;
5a580b3a
AM
5400 unsigned long ha;
5401 char *alc = NULL;
5402
5a580b3a
AM
5403 /* Ignore indirect symbols. These are added by the versioning code. */
5404 if (h->dynindx == -1)
5405 return TRUE;
5406
5407 name = h->root.root.string;
422f1182 5408 if (h->versioned >= versioned)
5a580b3a 5409 {
422f1182
L
5410 char *p = strchr (name, ELF_VER_CHR);
5411 if (p != NULL)
14b1c01e 5412 {
422f1182
L
5413 alc = (char *) bfd_malloc (p - name + 1);
5414 if (alc == NULL)
5415 {
5416 inf->error = TRUE;
5417 return FALSE;
5418 }
5419 memcpy (alc, name, p - name);
5420 alc[p - name] = '\0';
5421 name = alc;
14b1c01e 5422 }
5a580b3a
AM
5423 }
5424
5425 /* Compute the hash value. */
5426 ha = bfd_elf_hash (name);
5427
5428 /* Store the found hash value in the array given as the argument. */
14b1c01e 5429 *(inf->hashcodes)++ = ha;
5a580b3a
AM
5430
5431 /* And store it in the struct so that we can put it in the hash table
5432 later. */
f6e332e6 5433 h->u.elf_hash_value = ha;
5a580b3a
AM
5434
5435 if (alc != NULL)
5436 free (alc);
5437
5438 return TRUE;
5439}
5440
fdc90cb4
JJ
5441struct collect_gnu_hash_codes
5442{
5443 bfd *output_bfd;
5444 const struct elf_backend_data *bed;
5445 unsigned long int nsyms;
5446 unsigned long int maskbits;
5447 unsigned long int *hashcodes;
5448 unsigned long int *hashval;
5449 unsigned long int *indx;
5450 unsigned long int *counts;
5451 bfd_vma *bitmask;
5452 bfd_byte *contents;
5453 long int min_dynindx;
5454 unsigned long int bucketcount;
5455 unsigned long int symindx;
5456 long int local_indx;
5457 long int shift1, shift2;
5458 unsigned long int mask;
14b1c01e 5459 bfd_boolean error;
fdc90cb4
JJ
5460};
5461
5462/* This function will be called though elf_link_hash_traverse to store
5463 all hash value of the exported symbols in an array. */
5464
5465static bfd_boolean
5466elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5467{
a50b1753 5468 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4 5469 const char *name;
fdc90cb4
JJ
5470 unsigned long ha;
5471 char *alc = NULL;
5472
fdc90cb4
JJ
5473 /* Ignore indirect symbols. These are added by the versioning code. */
5474 if (h->dynindx == -1)
5475 return TRUE;
5476
5477 /* Ignore also local symbols and undefined symbols. */
5478 if (! (*s->bed->elf_hash_symbol) (h))
5479 return TRUE;
5480
5481 name = h->root.root.string;
422f1182 5482 if (h->versioned >= versioned)
fdc90cb4 5483 {
422f1182
L
5484 char *p = strchr (name, ELF_VER_CHR);
5485 if (p != NULL)
14b1c01e 5486 {
422f1182
L
5487 alc = (char *) bfd_malloc (p - name + 1);
5488 if (alc == NULL)
5489 {
5490 s->error = TRUE;
5491 return FALSE;
5492 }
5493 memcpy (alc, name, p - name);
5494 alc[p - name] = '\0';
5495 name = alc;
14b1c01e 5496 }
fdc90cb4
JJ
5497 }
5498
5499 /* Compute the hash value. */
5500 ha = bfd_elf_gnu_hash (name);
5501
5502 /* Store the found hash value in the array for compute_bucket_count,
5503 and also for .dynsym reordering purposes. */
5504 s->hashcodes[s->nsyms] = ha;
5505 s->hashval[h->dynindx] = ha;
5506 ++s->nsyms;
5507 if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5508 s->min_dynindx = h->dynindx;
5509
5510 if (alc != NULL)
5511 free (alc);
5512
5513 return TRUE;
5514}
5515
5516/* This function will be called though elf_link_hash_traverse to do
5517 final dynaminc symbol renumbering. */
5518
5519static bfd_boolean
5520elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5521{
a50b1753 5522 struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
fdc90cb4
JJ
5523 unsigned long int bucket;
5524 unsigned long int val;
5525
fdc90cb4
JJ
5526 /* Ignore indirect symbols. */
5527 if (h->dynindx == -1)
5528 return TRUE;
5529
5530 /* Ignore also local symbols and undefined symbols. */
5531 if (! (*s->bed->elf_hash_symbol) (h))
5532 {
5533 if (h->dynindx >= s->min_dynindx)
5534 h->dynindx = s->local_indx++;
5535 return TRUE;
5536 }
5537
5538 bucket = s->hashval[h->dynindx] % s->bucketcount;
5539 val = (s->hashval[h->dynindx] >> s->shift1)
5540 & ((s->maskbits >> s->shift1) - 1);
5541 s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5542 s->bitmask[val]
5543 |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5544 val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5545 if (s->counts[bucket] == 1)
5546 /* Last element terminates the chain. */
5547 val |= 1;
5548 bfd_put_32 (s->output_bfd, val,
5549 s->contents + (s->indx[bucket] - s->symindx) * 4);
5550 --s->counts[bucket];
5551 h->dynindx = s->indx[bucket]++;
5552 return TRUE;
5553}
5554
5555/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5556
5557bfd_boolean
5558_bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5559{
5560 return !(h->forced_local
5561 || h->root.type == bfd_link_hash_undefined
5562 || h->root.type == bfd_link_hash_undefweak
5563 || ((h->root.type == bfd_link_hash_defined
5564 || h->root.type == bfd_link_hash_defweak)
5565 && h->root.u.def.section->output_section == NULL));
5566}
5567
5a580b3a
AM
5568/* Array used to determine the number of hash table buckets to use
5569 based on the number of symbols there are. If there are fewer than
5570 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5571 fewer than 37 we use 17 buckets, and so forth. We never use more
5572 than 32771 buckets. */
5573
5574static const size_t elf_buckets[] =
5575{
5576 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5577 16411, 32771, 0
5578};
5579
5580/* Compute bucket count for hashing table. We do not use a static set
5581 of possible tables sizes anymore. Instead we determine for all
5582 possible reasonable sizes of the table the outcome (i.e., the
5583 number of collisions etc) and choose the best solution. The
5584 weighting functions are not too simple to allow the table to grow
5585 without bounds. Instead one of the weighting factors is the size.
5586 Therefore the result is always a good payoff between few collisions
5587 (= short chain lengths) and table size. */
5588static size_t
b20dd2ce 5589compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
d40f3da9
AM
5590 unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5591 unsigned long int nsyms,
5592 int gnu_hash)
5a580b3a 5593{
5a580b3a 5594 size_t best_size = 0;
5a580b3a 5595 unsigned long int i;
5a580b3a 5596
5a580b3a
AM
5597 /* We have a problem here. The following code to optimize the table
5598 size requires an integer type with more the 32 bits. If
5599 BFD_HOST_U_64_BIT is set we know about such a type. */
5600#ifdef BFD_HOST_U_64_BIT
5601 if (info->optimize)
5602 {
5a580b3a
AM
5603 size_t minsize;
5604 size_t maxsize;
5605 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5a580b3a 5606 bfd *dynobj = elf_hash_table (info)->dynobj;
d40f3da9 5607 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5a580b3a 5608 const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
fdc90cb4 5609 unsigned long int *counts;
d40f3da9 5610 bfd_size_type amt;
0883b6e0 5611 unsigned int no_improvement_count = 0;
5a580b3a
AM
5612
5613 /* Possible optimization parameters: if we have NSYMS symbols we say
5614 that the hashing table must at least have NSYMS/4 and at most
5615 2*NSYMS buckets. */
5616 minsize = nsyms / 4;
5617 if (minsize == 0)
5618 minsize = 1;
5619 best_size = maxsize = nsyms * 2;
fdc90cb4
JJ
5620 if (gnu_hash)
5621 {
5622 if (minsize < 2)
5623 minsize = 2;
5624 if ((best_size & 31) == 0)
5625 ++best_size;
5626 }
5a580b3a
AM
5627
5628 /* Create array where we count the collisions in. We must use bfd_malloc
5629 since the size could be large. */
5630 amt = maxsize;
5631 amt *= sizeof (unsigned long int);
a50b1753 5632 counts = (unsigned long int *) bfd_malloc (amt);
5a580b3a 5633 if (counts == NULL)
fdc90cb4 5634 return 0;
5a580b3a
AM
5635
5636 /* Compute the "optimal" size for the hash table. The criteria is a
5637 minimal chain length. The minor criteria is (of course) the size
5638 of the table. */
5639 for (i = minsize; i < maxsize; ++i)
5640 {
5641 /* Walk through the array of hashcodes and count the collisions. */
5642 BFD_HOST_U_64_BIT max;
5643 unsigned long int j;
5644 unsigned long int fact;
5645
fdc90cb4
JJ
5646 if (gnu_hash && (i & 31) == 0)
5647 continue;
5648
5a580b3a
AM
5649 memset (counts, '\0', i * sizeof (unsigned long int));
5650
5651 /* Determine how often each hash bucket is used. */
5652 for (j = 0; j < nsyms; ++j)
5653 ++counts[hashcodes[j] % i];
5654
5655 /* For the weight function we need some information about the
5656 pagesize on the target. This is information need not be 100%
5657 accurate. Since this information is not available (so far) we
5658 define it here to a reasonable default value. If it is crucial
5659 to have a better value some day simply define this value. */
5660# ifndef BFD_TARGET_PAGESIZE
5661# define BFD_TARGET_PAGESIZE (4096)
5662# endif
5663
fdc90cb4
JJ
5664 /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5665 and the chains. */
5666 max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5a580b3a
AM
5667
5668# if 1
5669 /* Variant 1: optimize for short chains. We add the squares
5670 of all the chain lengths (which favors many small chain
5671 over a few long chains). */
5672 for (j = 0; j < i; ++j)
5673 max += counts[j] * counts[j];
5674
5675 /* This adds penalties for the overall size of the table. */
fdc90cb4 5676 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
5677 max *= fact * fact;
5678# else
5679 /* Variant 2: Optimize a lot more for small table. Here we
5680 also add squares of the size but we also add penalties for
5681 empty slots (the +1 term). */
5682 for (j = 0; j < i; ++j)
5683 max += (1 + counts[j]) * (1 + counts[j]);
5684
5685 /* The overall size of the table is considered, but not as
5686 strong as in variant 1, where it is squared. */
fdc90cb4 5687 fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5a580b3a
AM
5688 max *= fact;
5689# endif
5690
5691 /* Compare with current best results. */
5692 if (max < best_chlen)
5693 {
5694 best_chlen = max;
5695 best_size = i;
ca4be51c 5696 no_improvement_count = 0;
5a580b3a 5697 }
0883b6e0
NC
5698 /* PR 11843: Avoid futile long searches for the best bucket size
5699 when there are a large number of symbols. */
5700 else if (++no_improvement_count == 100)
5701 break;
5a580b3a
AM
5702 }
5703
5704 free (counts);
5705 }
5706 else
5707#endif /* defined (BFD_HOST_U_64_BIT) */
5708 {
5709 /* This is the fallback solution if no 64bit type is available or if we
5710 are not supposed to spend much time on optimizations. We select the
5711 bucket count using a fixed set of numbers. */
5712 for (i = 0; elf_buckets[i] != 0; i++)
5713 {
5714 best_size = elf_buckets[i];
fdc90cb4 5715 if (nsyms < elf_buckets[i + 1])
5a580b3a
AM
5716 break;
5717 }
fdc90cb4
JJ
5718 if (gnu_hash && best_size < 2)
5719 best_size = 2;
5a580b3a
AM
5720 }
5721
5a580b3a
AM
5722 return best_size;
5723}
5724
d0bf826b
AM
5725/* Size any SHT_GROUP section for ld -r. */
5726
5727bfd_boolean
5728_bfd_elf_size_group_sections (struct bfd_link_info *info)
5729{
5730 bfd *ibfd;
5731
c72f2fb2 5732 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
d0bf826b
AM
5733 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
5734 && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
5735 return FALSE;
5736 return TRUE;
5737}
5738
04c3a755
NS
5739/* Set a default stack segment size. The value in INFO wins. If it
5740 is unset, LEGACY_SYMBOL's value is used, and if that symbol is
5741 undefined it is initialized. */
5742
5743bfd_boolean
5744bfd_elf_stack_segment_size (bfd *output_bfd,
5745 struct bfd_link_info *info,
5746 const char *legacy_symbol,
5747 bfd_vma default_size)
5748{
5749 struct elf_link_hash_entry *h = NULL;
5750
5751 /* Look for legacy symbol. */
5752 if (legacy_symbol)
5753 h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
5754 FALSE, FALSE, FALSE);
5755 if (h && (h->root.type == bfd_link_hash_defined
5756 || h->root.type == bfd_link_hash_defweak)
5757 && h->def_regular
5758 && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
5759 {
5760 /* The symbol has no type if specified on the command line. */
5761 h->type = STT_OBJECT;
5762 if (info->stacksize)
4eca0228
AM
5763 _bfd_error_handler (_("%B: stack size specified and %s set"),
5764 output_bfd, legacy_symbol);
04c3a755 5765 else if (h->root.u.def.section != bfd_abs_section_ptr)
4eca0228
AM
5766 _bfd_error_handler (_("%B: %s not absolute"),
5767 output_bfd, legacy_symbol);
04c3a755
NS
5768 else
5769 info->stacksize = h->root.u.def.value;
5770 }
5771
5772 if (!info->stacksize)
5773 /* If the user didn't set a size, or explicitly inhibit the
5774 size, set it now. */
5775 info->stacksize = default_size;
5776
5777 /* Provide the legacy symbol, if it is referenced. */
5778 if (h && (h->root.type == bfd_link_hash_undefined
5779 || h->root.type == bfd_link_hash_undefweak))
5780 {
5781 struct bfd_link_hash_entry *bh = NULL;
5782
5783 if (!(_bfd_generic_link_add_one_symbol
5784 (info, output_bfd, legacy_symbol,
5785 BSF_GLOBAL, bfd_abs_section_ptr,
5786 info->stacksize >= 0 ? info->stacksize : 0,
5787 NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
5788 return FALSE;
5789
5790 h = (struct elf_link_hash_entry *) bh;
5791 h->def_regular = 1;
5792 h->type = STT_OBJECT;
5793 }
5794
5795 return TRUE;
5796}
5797
5a580b3a
AM
5798/* Set up the sizes and contents of the ELF dynamic sections. This is
5799 called by the ELF linker emulation before_allocation routine. We
5800 must set the sizes of the sections before the linker sets the
5801 addresses of the various sections. */
5802
5803bfd_boolean
5804bfd_elf_size_dynamic_sections (bfd *output_bfd,
5805 const char *soname,
5806 const char *rpath,
5807 const char *filter_shlib,
7ee314fa
AM
5808 const char *audit,
5809 const char *depaudit,
5a580b3a
AM
5810 const char * const *auxiliary_filters,
5811 struct bfd_link_info *info,
fd91d419 5812 asection **sinterpptr)
5a580b3a 5813{
ef53be89 5814 size_t soname_indx;
5a580b3a
AM
5815 bfd *dynobj;
5816 const struct elf_backend_data *bed;
28caa186 5817 struct elf_info_failed asvinfo;
5a580b3a
AM
5818
5819 *sinterpptr = NULL;
5820
ef53be89 5821 soname_indx = (size_t) -1;
5a580b3a
AM
5822
5823 if (!is_elf_hash_table (info->hash))
5824 return TRUE;
5825
6bfdb61b 5826 bed = get_elf_backend_data (output_bfd);
04c3a755
NS
5827
5828 /* Any syms created from now on start with -1 in
5829 got.refcount/offset and plt.refcount/offset. */
5830 elf_hash_table (info)->init_got_refcount
5831 = elf_hash_table (info)->init_got_offset;
5832 elf_hash_table (info)->init_plt_refcount
5833 = elf_hash_table (info)->init_plt_offset;
5834
0e1862bb 5835 if (bfd_link_relocatable (info)
04c3a755
NS
5836 && !_bfd_elf_size_group_sections (info))
5837 return FALSE;
5838
5839 /* The backend may have to create some sections regardless of whether
5840 we're dynamic or not. */
5841 if (bed->elf_backend_always_size_sections
5842 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
5843 return FALSE;
5844
5845 /* Determine any GNU_STACK segment requirements, after the backend
5846 has had a chance to set a default segment size. */
5a580b3a 5847 if (info->execstack)
12bd6957 5848 elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
5a580b3a 5849 else if (info->noexecstack)
12bd6957 5850 elf_stack_flags (output_bfd) = PF_R | PF_W;
5a580b3a
AM
5851 else
5852 {
5853 bfd *inputobj;
5854 asection *notesec = NULL;
5855 int exec = 0;
5856
5857 for (inputobj = info->input_bfds;
5858 inputobj;
c72f2fb2 5859 inputobj = inputobj->link.next)
5a580b3a
AM
5860 {
5861 asection *s;
5862
a92c088a
L
5863 if (inputobj->flags
5864 & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
5a580b3a
AM
5865 continue;
5866 s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
5867 if (s)
5868 {
5869 if (s->flags & SEC_CODE)
5870 exec = PF_X;
5871 notesec = s;
5872 }
6bfdb61b 5873 else if (bed->default_execstack)
5a580b3a
AM
5874 exec = PF_X;
5875 }
04c3a755 5876 if (notesec || info->stacksize > 0)
12bd6957 5877 elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
0e1862bb 5878 if (notesec && exec && bfd_link_relocatable (info)
04c3a755
NS
5879 && notesec->output_section != bfd_abs_section_ptr)
5880 notesec->output_section->flags |= SEC_CODE;
5a580b3a
AM
5881 }
5882
5a580b3a
AM
5883 dynobj = elf_hash_table (info)->dynobj;
5884
9a2a56cc 5885 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a
AM
5886 {
5887 struct elf_info_failed eif;
5888 struct elf_link_hash_entry *h;
5889 asection *dynstr;
5890 struct bfd_elf_version_tree *t;
5891 struct bfd_elf_version_expr *d;
046183de 5892 asection *s;
5a580b3a
AM
5893 bfd_boolean all_defined;
5894
3d4d4302 5895 *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
9b8b325a 5896 BFD_ASSERT (*sinterpptr != NULL || !bfd_link_executable (info) || info->nointerp);
5a580b3a
AM
5897
5898 if (soname != NULL)
5899 {
5900 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5901 soname, TRUE);
ef53be89 5902 if (soname_indx == (size_t) -1
5a580b3a
AM
5903 || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
5904 return FALSE;
5905 }
5906
5907 if (info->symbolic)
5908 {
5909 if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
5910 return FALSE;
5911 info->flags |= DF_SYMBOLIC;
5912 }
5913
5914 if (rpath != NULL)
5915 {
ef53be89 5916 size_t indx;
b1b00fcc 5917 bfd_vma tag;
5a580b3a
AM
5918
5919 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
5920 TRUE);
ef53be89 5921 if (indx == (size_t) -1)
5a580b3a
AM
5922 return FALSE;
5923
b1b00fcc
MF
5924 tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
5925 if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
5926 return FALSE;
5a580b3a
AM
5927 }
5928
5929 if (filter_shlib != NULL)
5930 {
ef53be89 5931 size_t indx;
5a580b3a
AM
5932
5933 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5934 filter_shlib, TRUE);
ef53be89 5935 if (indx == (size_t) -1
5a580b3a
AM
5936 || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
5937 return FALSE;
5938 }
5939
5940 if (auxiliary_filters != NULL)
5941 {
5942 const char * const *p;
5943
5944 for (p = auxiliary_filters; *p != NULL; p++)
5945 {
ef53be89 5946 size_t indx;
5a580b3a
AM
5947
5948 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5949 *p, TRUE);
ef53be89 5950 if (indx == (size_t) -1
5a580b3a
AM
5951 || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
5952 return FALSE;
5953 }
5954 }
5955
7ee314fa
AM
5956 if (audit != NULL)
5957 {
ef53be89 5958 size_t indx;
7ee314fa
AM
5959
5960 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
5961 TRUE);
ef53be89 5962 if (indx == (size_t) -1
7ee314fa
AM
5963 || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
5964 return FALSE;
5965 }
5966
5967 if (depaudit != NULL)
5968 {
ef53be89 5969 size_t indx;
7ee314fa
AM
5970
5971 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
5972 TRUE);
ef53be89 5973 if (indx == (size_t) -1
7ee314fa
AM
5974 || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
5975 return FALSE;
5976 }
5977
5a580b3a 5978 eif.info = info;
5a580b3a
AM
5979 eif.failed = FALSE;
5980
5981 /* If we are supposed to export all symbols into the dynamic symbol
5982 table (this is not the normal case), then do so. */
55255dae 5983 if (info->export_dynamic
0e1862bb 5984 || (bfd_link_executable (info) && info->dynamic))
5a580b3a
AM
5985 {
5986 elf_link_hash_traverse (elf_hash_table (info),
5987 _bfd_elf_export_symbol,
5988 &eif);
5989 if (eif.failed)
5990 return FALSE;
5991 }
5992
5993 /* Make all global versions with definition. */
fd91d419 5994 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 5995 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 5996 if (!d->symver && d->literal)
5a580b3a
AM
5997 {
5998 const char *verstr, *name;
5999 size_t namelen, verlen, newlen;
93252b1c 6000 char *newname, *p, leading_char;
5a580b3a
AM
6001 struct elf_link_hash_entry *newh;
6002
93252b1c 6003 leading_char = bfd_get_symbol_leading_char (output_bfd);
ae5a3597 6004 name = d->pattern;
93252b1c 6005 namelen = strlen (name) + (leading_char != '\0');
5a580b3a
AM
6006 verstr = t->name;
6007 verlen = strlen (verstr);
6008 newlen = namelen + verlen + 3;
6009
a50b1753 6010 newname = (char *) bfd_malloc (newlen);
5a580b3a
AM
6011 if (newname == NULL)
6012 return FALSE;
93252b1c
MF
6013 newname[0] = leading_char;
6014 memcpy (newname + (leading_char != '\0'), name, namelen);
5a580b3a
AM
6015
6016 /* Check the hidden versioned definition. */
6017 p = newname + namelen;
6018 *p++ = ELF_VER_CHR;
6019 memcpy (p, verstr, verlen + 1);
6020 newh = elf_link_hash_lookup (elf_hash_table (info),
6021 newname, FALSE, FALSE,
6022 FALSE);
6023 if (newh == NULL
6024 || (newh->root.type != bfd_link_hash_defined
6025 && newh->root.type != bfd_link_hash_defweak))
6026 {
6027 /* Check the default versioned definition. */
6028 *p++ = ELF_VER_CHR;
6029 memcpy (p, verstr, verlen + 1);
6030 newh = elf_link_hash_lookup (elf_hash_table (info),
6031 newname, FALSE, FALSE,
6032 FALSE);
6033 }
6034 free (newname);
6035
6036 /* Mark this version if there is a definition and it is
6037 not defined in a shared object. */
6038 if (newh != NULL
f5385ebf 6039 && !newh->def_dynamic
5a580b3a
AM
6040 && (newh->root.type == bfd_link_hash_defined
6041 || newh->root.type == bfd_link_hash_defweak))
6042 d->symver = 1;
6043 }
6044
6045 /* Attach all the symbols to their version information. */
5a580b3a 6046 asvinfo.info = info;
5a580b3a
AM
6047 asvinfo.failed = FALSE;
6048
6049 elf_link_hash_traverse (elf_hash_table (info),
6050 _bfd_elf_link_assign_sym_version,
6051 &asvinfo);
6052 if (asvinfo.failed)
6053 return FALSE;
6054
6055 if (!info->allow_undefined_version)
6056 {
6057 /* Check if all global versions have a definition. */
6058 all_defined = TRUE;
fd91d419 6059 for (t = info->version_info; t != NULL; t = t->next)
5a580b3a 6060 for (d = t->globals.list; d != NULL; d = d->next)
ae5a3597 6061 if (d->literal && !d->symver && !d->script)
5a580b3a 6062 {
4eca0228 6063 _bfd_error_handler
5a580b3a
AM
6064 (_("%s: undefined version: %s"),
6065 d->pattern, t->name);
6066 all_defined = FALSE;
6067 }
6068
6069 if (!all_defined)
6070 {
6071 bfd_set_error (bfd_error_bad_value);
6072 return FALSE;
6073 }
6074 }
6075
6076 /* Find all symbols which were defined in a dynamic object and make
6077 the backend pick a reasonable value for them. */
6078 elf_link_hash_traverse (elf_hash_table (info),
6079 _bfd_elf_adjust_dynamic_symbol,
6080 &eif);
6081 if (eif.failed)
6082 return FALSE;
6083
6084 /* Add some entries to the .dynamic section. We fill in some of the
ee75fd95 6085 values later, in bfd_elf_final_link, but we must add the entries
5a580b3a
AM
6086 now so that we know the final size of the .dynamic section. */
6087
6088 /* If there are initialization and/or finalization functions to
6089 call then add the corresponding DT_INIT/DT_FINI entries. */
6090 h = (info->init_function
6091 ? elf_link_hash_lookup (elf_hash_table (info),
6092 info->init_function, FALSE,
6093 FALSE, FALSE)
6094 : NULL);
6095 if (h != NULL
f5385ebf
AM
6096 && (h->ref_regular
6097 || h->def_regular))
5a580b3a
AM
6098 {
6099 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
6100 return FALSE;
6101 }
6102 h = (info->fini_function
6103 ? elf_link_hash_lookup (elf_hash_table (info),
6104 info->fini_function, FALSE,
6105 FALSE, FALSE)
6106 : NULL);
6107 if (h != NULL
f5385ebf
AM
6108 && (h->ref_regular
6109 || h->def_regular))
5a580b3a
AM
6110 {
6111 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
6112 return FALSE;
6113 }
6114
046183de
AM
6115 s = bfd_get_section_by_name (output_bfd, ".preinit_array");
6116 if (s != NULL && s->linker_has_input)
5a580b3a
AM
6117 {
6118 /* DT_PREINIT_ARRAY is not allowed in shared library. */
0e1862bb 6119 if (! bfd_link_executable (info))
5a580b3a
AM
6120 {
6121 bfd *sub;
6122 asection *o;
6123
6124 for (sub = info->input_bfds; sub != NULL;
c72f2fb2 6125 sub = sub->link.next)
3fcd97f1
JJ
6126 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
6127 for (o = sub->sections; o != NULL; o = o->next)
6128 if (elf_section_data (o)->this_hdr.sh_type
6129 == SHT_PREINIT_ARRAY)
6130 {
4eca0228 6131 _bfd_error_handler
3fcd97f1
JJ
6132 (_("%B: .preinit_array section is not allowed in DSO"),
6133 sub);
6134 break;
6135 }
5a580b3a
AM
6136
6137 bfd_set_error (bfd_error_nonrepresentable_section);
6138 return FALSE;
6139 }
6140
6141 if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
6142 || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
6143 return FALSE;
6144 }
046183de
AM
6145 s = bfd_get_section_by_name (output_bfd, ".init_array");
6146 if (s != NULL && s->linker_has_input)
5a580b3a
AM
6147 {
6148 if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
6149 || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
6150 return FALSE;
6151 }
046183de
AM
6152 s = bfd_get_section_by_name (output_bfd, ".fini_array");
6153 if (s != NULL && s->linker_has_input)
5a580b3a
AM
6154 {
6155 if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
6156 || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
6157 return FALSE;
6158 }
6159
3d4d4302 6160 dynstr = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
6161 /* If .dynstr is excluded from the link, we don't want any of
6162 these tags. Strictly, we should be checking each section
6163 individually; This quick check covers for the case where
6164 someone does a /DISCARD/ : { *(*) }. */
6165 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
6166 {
6167 bfd_size_type strsize;
6168
6169 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
fdc90cb4
JJ
6170 if ((info->emit_hash
6171 && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
6172 || (info->emit_gnu_hash
6173 && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
5a580b3a
AM
6174 || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
6175 || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
6176 || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
6177 || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
6178 bed->s->sizeof_sym))
6179 return FALSE;
6180 }
6181 }
6182
de231f20
CM
6183 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
6184 return FALSE;
6185
5a580b3a
AM
6186 /* The backend must work out the sizes of all the other dynamic
6187 sections. */
9a2a56cc
AM
6188 if (dynobj != NULL
6189 && bed->elf_backend_size_dynamic_sections != NULL
5a580b3a
AM
6190 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
6191 return FALSE;
6192
9a2a56cc 6193 if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5a580b3a 6194 {
554220db 6195 unsigned long section_sym_count;
fd91d419 6196 struct bfd_elf_version_tree *verdefs;
5a580b3a 6197 asection *s;
5a580b3a
AM
6198
6199 /* Set up the version definition section. */
3d4d4302 6200 s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5a580b3a
AM
6201 BFD_ASSERT (s != NULL);
6202
6203 /* We may have created additional version definitions if we are
6204 just linking a regular application. */
fd91d419 6205 verdefs = info->version_info;
5a580b3a
AM
6206
6207 /* Skip anonymous version tag. */
6208 if (verdefs != NULL && verdefs->vernum == 0)
6209 verdefs = verdefs->next;
6210
3e3b46e5 6211 if (verdefs == NULL && !info->create_default_symver)
8423293d 6212 s->flags |= SEC_EXCLUDE;
5a580b3a
AM
6213 else
6214 {
6215 unsigned int cdefs;
6216 bfd_size_type size;
6217 struct bfd_elf_version_tree *t;
6218 bfd_byte *p;
6219 Elf_Internal_Verdef def;
6220 Elf_Internal_Verdaux defaux;
3e3b46e5
PB
6221 struct bfd_link_hash_entry *bh;
6222 struct elf_link_hash_entry *h;
6223 const char *name;
5a580b3a
AM
6224
6225 cdefs = 0;
6226 size = 0;
6227
6228 /* Make space for the base version. */
6229 size += sizeof (Elf_External_Verdef);
6230 size += sizeof (Elf_External_Verdaux);
6231 ++cdefs;
6232
3e3b46e5
PB
6233 /* Make space for the default version. */
6234 if (info->create_default_symver)
6235 {
6236 size += sizeof (Elf_External_Verdef);
6237 ++cdefs;
6238 }
6239
5a580b3a
AM
6240 for (t = verdefs; t != NULL; t = t->next)
6241 {
6242 struct bfd_elf_version_deps *n;
6243
a6cc6b3b
RO
6244 /* Don't emit base version twice. */
6245 if (t->vernum == 0)
6246 continue;
6247
5a580b3a
AM
6248 size += sizeof (Elf_External_Verdef);
6249 size += sizeof (Elf_External_Verdaux);
6250 ++cdefs;
6251
6252 for (n = t->deps; n != NULL; n = n->next)
6253 size += sizeof (Elf_External_Verdaux);
6254 }
6255
eea6121a 6256 s->size = size;
a50b1753 6257 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
eea6121a 6258 if (s->contents == NULL && s->size != 0)
5a580b3a
AM
6259 return FALSE;
6260
6261 /* Fill in the version definition section. */
6262
6263 p = s->contents;
6264
6265 def.vd_version = VER_DEF_CURRENT;
6266 def.vd_flags = VER_FLG_BASE;
6267 def.vd_ndx = 1;
6268 def.vd_cnt = 1;
3e3b46e5
PB
6269 if (info->create_default_symver)
6270 {
6271 def.vd_aux = 2 * sizeof (Elf_External_Verdef);
6272 def.vd_next = sizeof (Elf_External_Verdef);
6273 }
6274 else
6275 {
6276 def.vd_aux = sizeof (Elf_External_Verdef);
6277 def.vd_next = (sizeof (Elf_External_Verdef)
6278 + sizeof (Elf_External_Verdaux));
6279 }
5a580b3a 6280
ef53be89 6281 if (soname_indx != (size_t) -1)
5a580b3a
AM
6282 {
6283 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6284 soname_indx);
6285 def.vd_hash = bfd_elf_hash (soname);
6286 defaux.vda_name = soname_indx;
3e3b46e5 6287 name = soname;
5a580b3a
AM
6288 }
6289 else
6290 {
ef53be89 6291 size_t indx;
5a580b3a 6292
06084812 6293 name = lbasename (output_bfd->filename);
5a580b3a
AM
6294 def.vd_hash = bfd_elf_hash (name);
6295 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6296 name, FALSE);
ef53be89 6297 if (indx == (size_t) -1)
5a580b3a
AM
6298 return FALSE;
6299 defaux.vda_name = indx;
6300 }
6301 defaux.vda_next = 0;
6302
6303 _bfd_elf_swap_verdef_out (output_bfd, &def,
6304 (Elf_External_Verdef *) p);
6305 p += sizeof (Elf_External_Verdef);
3e3b46e5
PB
6306 if (info->create_default_symver)
6307 {
6308 /* Add a symbol representing this version. */
6309 bh = NULL;
6310 if (! (_bfd_generic_link_add_one_symbol
6311 (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6312 0, NULL, FALSE,
6313 get_elf_backend_data (dynobj)->collect, &bh)))
6314 return FALSE;
6315 h = (struct elf_link_hash_entry *) bh;
6316 h->non_elf = 0;
6317 h->def_regular = 1;
6318 h->type = STT_OBJECT;
6319 h->verinfo.vertree = NULL;
6320
6321 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6322 return FALSE;
6323
6324 /* Create a duplicate of the base version with the same
6325 aux block, but different flags. */
6326 def.vd_flags = 0;
6327 def.vd_ndx = 2;
6328 def.vd_aux = sizeof (Elf_External_Verdef);
6329 if (verdefs)
6330 def.vd_next = (sizeof (Elf_External_Verdef)
6331 + sizeof (Elf_External_Verdaux));
6332 else
6333 def.vd_next = 0;
6334 _bfd_elf_swap_verdef_out (output_bfd, &def,
6335 (Elf_External_Verdef *) p);
6336 p += sizeof (Elf_External_Verdef);
6337 }
5a580b3a
AM
6338 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6339 (Elf_External_Verdaux *) p);
6340 p += sizeof (Elf_External_Verdaux);
6341
6342 for (t = verdefs; t != NULL; t = t->next)
6343 {
6344 unsigned int cdeps;
6345 struct bfd_elf_version_deps *n;
5a580b3a 6346
a6cc6b3b
RO
6347 /* Don't emit the base version twice. */
6348 if (t->vernum == 0)
6349 continue;
6350
5a580b3a
AM
6351 cdeps = 0;
6352 for (n = t->deps; n != NULL; n = n->next)
6353 ++cdeps;
6354
6355 /* Add a symbol representing this version. */
6356 bh = NULL;
6357 if (! (_bfd_generic_link_add_one_symbol
6358 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6359 0, NULL, FALSE,
6360 get_elf_backend_data (dynobj)->collect, &bh)))
6361 return FALSE;
6362 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6363 h->non_elf = 0;
6364 h->def_regular = 1;
5a580b3a
AM
6365 h->type = STT_OBJECT;
6366 h->verinfo.vertree = t;
6367
c152c796 6368 if (! bfd_elf_link_record_dynamic_symbol (info, h))
5a580b3a
AM
6369 return FALSE;
6370
6371 def.vd_version = VER_DEF_CURRENT;
6372 def.vd_flags = 0;
6373 if (t->globals.list == NULL
6374 && t->locals.list == NULL
6375 && ! t->used)
6376 def.vd_flags |= VER_FLG_WEAK;
3e3b46e5 6377 def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
5a580b3a
AM
6378 def.vd_cnt = cdeps + 1;
6379 def.vd_hash = bfd_elf_hash (t->name);
6380 def.vd_aux = sizeof (Elf_External_Verdef);
6381 def.vd_next = 0;
a6cc6b3b
RO
6382
6383 /* If a basever node is next, it *must* be the last node in
6384 the chain, otherwise Verdef construction breaks. */
6385 if (t->next != NULL && t->next->vernum == 0)
6386 BFD_ASSERT (t->next->next == NULL);
6387
6388 if (t->next != NULL && t->next->vernum != 0)
5a580b3a
AM
6389 def.vd_next = (sizeof (Elf_External_Verdef)
6390 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6391
6392 _bfd_elf_swap_verdef_out (output_bfd, &def,
6393 (Elf_External_Verdef *) p);
6394 p += sizeof (Elf_External_Verdef);
6395
6396 defaux.vda_name = h->dynstr_index;
6397 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6398 h->dynstr_index);
6399 defaux.vda_next = 0;
6400 if (t->deps != NULL)
6401 defaux.vda_next = sizeof (Elf_External_Verdaux);
6402 t->name_indx = defaux.vda_name;
6403
6404 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6405 (Elf_External_Verdaux *) p);
6406 p += sizeof (Elf_External_Verdaux);
6407
6408 for (n = t->deps; n != NULL; n = n->next)
6409 {
6410 if (n->version_needed == NULL)
6411 {
6412 /* This can happen if there was an error in the
6413 version script. */
6414 defaux.vda_name = 0;
6415 }
6416 else
6417 {
6418 defaux.vda_name = n->version_needed->name_indx;
6419 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6420 defaux.vda_name);
6421 }
6422 if (n->next == NULL)
6423 defaux.vda_next = 0;
6424 else
6425 defaux.vda_next = sizeof (Elf_External_Verdaux);
6426
6427 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6428 (Elf_External_Verdaux *) p);
6429 p += sizeof (Elf_External_Verdaux);
6430 }
6431 }
6432
6433 if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6434 || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs))
6435 return FALSE;
6436
6437 elf_tdata (output_bfd)->cverdefs = cdefs;
6438 }
6439
6440 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6441 {
6442 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6443 return FALSE;
6444 }
6445 else if (info->flags & DF_BIND_NOW)
6446 {
6447 if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6448 return FALSE;
6449 }
6450
6451 if (info->flags_1)
6452 {
0e1862bb 6453 if (bfd_link_executable (info))
5a580b3a
AM
6454 info->flags_1 &= ~ (DF_1_INITFIRST
6455 | DF_1_NODELETE
6456 | DF_1_NOOPEN);
6457 if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6458 return FALSE;
6459 }
6460
6461 /* Work out the size of the version reference section. */
6462
3d4d4302 6463 s = bfd_get_linker_section (dynobj, ".gnu.version_r");
5a580b3a
AM
6464 BFD_ASSERT (s != NULL);
6465 {
6466 struct elf_find_verdep_info sinfo;
6467
5a580b3a
AM
6468 sinfo.info = info;
6469 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6470 if (sinfo.vers == 0)
6471 sinfo.vers = 1;
6472 sinfo.failed = FALSE;
6473
6474 elf_link_hash_traverse (elf_hash_table (info),
6475 _bfd_elf_link_find_version_dependencies,
6476 &sinfo);
14b1c01e
AM
6477 if (sinfo.failed)
6478 return FALSE;
5a580b3a
AM
6479
6480 if (elf_tdata (output_bfd)->verref == NULL)
8423293d 6481 s->flags |= SEC_EXCLUDE;
5a580b3a
AM
6482 else
6483 {
6484 Elf_Internal_Verneed *t;
6485 unsigned int size;
6486 unsigned int crefs;
6487 bfd_byte *p;
6488
a6cc6b3b 6489 /* Build the version dependency section. */
5a580b3a
AM
6490 size = 0;
6491 crefs = 0;
6492 for (t = elf_tdata (output_bfd)->verref;
6493 t != NULL;
6494 t = t->vn_nextref)
6495 {
6496 Elf_Internal_Vernaux *a;
6497
6498 size += sizeof (Elf_External_Verneed);
6499 ++crefs;
6500 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6501 size += sizeof (Elf_External_Vernaux);
6502 }
6503
eea6121a 6504 s->size = size;
a50b1753 6505 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
5a580b3a
AM
6506 if (s->contents == NULL)
6507 return FALSE;
6508
6509 p = s->contents;
6510 for (t = elf_tdata (output_bfd)->verref;
6511 t != NULL;
6512 t = t->vn_nextref)
6513 {
6514 unsigned int caux;
6515 Elf_Internal_Vernaux *a;
ef53be89 6516 size_t indx;
5a580b3a
AM
6517
6518 caux = 0;
6519 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6520 ++caux;
6521
6522 t->vn_version = VER_NEED_CURRENT;
6523 t->vn_cnt = caux;
6524 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6525 elf_dt_name (t->vn_bfd) != NULL
6526 ? elf_dt_name (t->vn_bfd)
06084812 6527 : lbasename (t->vn_bfd->filename),
5a580b3a 6528 FALSE);
ef53be89 6529 if (indx == (size_t) -1)
5a580b3a
AM
6530 return FALSE;
6531 t->vn_file = indx;
6532 t->vn_aux = sizeof (Elf_External_Verneed);
6533 if (t->vn_nextref == NULL)
6534 t->vn_next = 0;
6535 else
6536 t->vn_next = (sizeof (Elf_External_Verneed)
6537 + caux * sizeof (Elf_External_Vernaux));
6538
6539 _bfd_elf_swap_verneed_out (output_bfd, t,
6540 (Elf_External_Verneed *) p);
6541 p += sizeof (Elf_External_Verneed);
6542
6543 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6544 {
6545 a->vna_hash = bfd_elf_hash (a->vna_nodename);
6546 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6547 a->vna_nodename, FALSE);
ef53be89 6548 if (indx == (size_t) -1)
5a580b3a
AM
6549 return FALSE;
6550 a->vna_name = indx;
6551 if (a->vna_nextptr == NULL)
6552 a->vna_next = 0;
6553 else
6554 a->vna_next = sizeof (Elf_External_Vernaux);
6555
6556 _bfd_elf_swap_vernaux_out (output_bfd, a,
6557 (Elf_External_Vernaux *) p);
6558 p += sizeof (Elf_External_Vernaux);
6559 }
6560 }
6561
6562 if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6563 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6564 return FALSE;
6565
6566 elf_tdata (output_bfd)->cverrefs = crefs;
6567 }
6568 }
6569
8423293d
AM
6570 if ((elf_tdata (output_bfd)->cverrefs == 0
6571 && elf_tdata (output_bfd)->cverdefs == 0)
6572 || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6573 &section_sym_count) == 0)
6574 {
3d4d4302 6575 s = bfd_get_linker_section (dynobj, ".gnu.version");
8423293d
AM
6576 s->flags |= SEC_EXCLUDE;
6577 }
6578 }
6579 return TRUE;
6580}
6581
74541ad4
AM
6582/* Find the first non-excluded output section. We'll use its
6583 section symbol for some emitted relocs. */
6584void
6585_bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6586{
6587 asection *s;
6588
6589 for (s = output_bfd->sections; s != NULL; s = s->next)
6590 if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
6591 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6592 {
6593 elf_hash_table (info)->text_index_section = s;
6594 break;
6595 }
6596}
6597
6598/* Find two non-excluded output sections, one for code, one for data.
6599 We'll use their section symbols for some emitted relocs. */
6600void
6601_bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
6602{
6603 asection *s;
6604
266b05cf
DJ
6605 /* Data first, since setting text_index_section changes
6606 _bfd_elf_link_omit_section_dynsym. */
74541ad4 6607 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf 6608 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
74541ad4
AM
6609 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6610 {
266b05cf 6611 elf_hash_table (info)->data_index_section = s;
74541ad4
AM
6612 break;
6613 }
6614
6615 for (s = output_bfd->sections; s != NULL; s = s->next)
266b05cf
DJ
6616 if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
6617 == (SEC_ALLOC | SEC_READONLY))
74541ad4
AM
6618 && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6619 {
266b05cf 6620 elf_hash_table (info)->text_index_section = s;
74541ad4
AM
6621 break;
6622 }
6623
6624 if (elf_hash_table (info)->text_index_section == NULL)
6625 elf_hash_table (info)->text_index_section
6626 = elf_hash_table (info)->data_index_section;
6627}
6628
8423293d
AM
6629bfd_boolean
6630bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6631{
74541ad4
AM
6632 const struct elf_backend_data *bed;
6633
8423293d
AM
6634 if (!is_elf_hash_table (info->hash))
6635 return TRUE;
6636
74541ad4
AM
6637 bed = get_elf_backend_data (output_bfd);
6638 (*bed->elf_backend_init_index_section) (output_bfd, info);
6639
8423293d
AM
6640 if (elf_hash_table (info)->dynamic_sections_created)
6641 {
6642 bfd *dynobj;
8423293d
AM
6643 asection *s;
6644 bfd_size_type dynsymcount;
6645 unsigned long section_sym_count;
8423293d
AM
6646 unsigned int dtagcount;
6647
6648 dynobj = elf_hash_table (info)->dynobj;
6649
5a580b3a
AM
6650 /* Assign dynsym indicies. In a shared library we generate a
6651 section symbol for each output section, which come first.
6652 Next come all of the back-end allocated local dynamic syms,
6653 followed by the rest of the global symbols. */
6654
554220db
AM
6655 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6656 &section_sym_count);
5a580b3a
AM
6657
6658 /* Work out the size of the symbol version section. */
3d4d4302 6659 s = bfd_get_linker_section (dynobj, ".gnu.version");
5a580b3a 6660 BFD_ASSERT (s != NULL);
d5486c43 6661 if ((s->flags & SEC_EXCLUDE) == 0)
5a580b3a 6662 {
eea6121a 6663 s->size = dynsymcount * sizeof (Elf_External_Versym);
a50b1753 6664 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
5a580b3a
AM
6665 if (s->contents == NULL)
6666 return FALSE;
6667
6668 if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6669 return FALSE;
6670 }
6671
6672 /* Set the size of the .dynsym and .hash sections. We counted
6673 the number of dynamic symbols in elf_link_add_object_symbols.
6674 We will build the contents of .dynsym and .hash when we build
6675 the final symbol table, because until then we do not know the
6676 correct value to give the symbols. We built the .dynstr
6677 section as we went along in elf_link_add_object_symbols. */
cae1fbbb 6678 s = elf_hash_table (info)->dynsym;
5a580b3a 6679 BFD_ASSERT (s != NULL);
eea6121a 6680 s->size = dynsymcount * bed->s->sizeof_sym;
5a580b3a 6681
d5486c43
L
6682 s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6683 if (s->contents == NULL)
6684 return FALSE;
5a580b3a 6685
d5486c43
L
6686 /* The first entry in .dynsym is a dummy symbol. Clear all the
6687 section syms, in case we don't output them all. */
6688 ++section_sym_count;
6689 memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
5a580b3a 6690
fdc90cb4
JJ
6691 elf_hash_table (info)->bucketcount = 0;
6692
5a580b3a
AM
6693 /* Compute the size of the hashing table. As a side effect this
6694 computes the hash values for all the names we export. */
fdc90cb4
JJ
6695 if (info->emit_hash)
6696 {
6697 unsigned long int *hashcodes;
14b1c01e 6698 struct hash_codes_info hashinf;
fdc90cb4
JJ
6699 bfd_size_type amt;
6700 unsigned long int nsyms;
6701 size_t bucketcount;
6702 size_t hash_entry_size;
6703
6704 /* Compute the hash values for all exported symbols. At the same
6705 time store the values in an array so that we could use them for
6706 optimizations. */
6707 amt = dynsymcount * sizeof (unsigned long int);
a50b1753 6708 hashcodes = (unsigned long int *) bfd_malloc (amt);
fdc90cb4
JJ
6709 if (hashcodes == NULL)
6710 return FALSE;
14b1c01e
AM
6711 hashinf.hashcodes = hashcodes;
6712 hashinf.error = FALSE;
5a580b3a 6713
fdc90cb4
JJ
6714 /* Put all hash values in HASHCODES. */
6715 elf_link_hash_traverse (elf_hash_table (info),
14b1c01e
AM
6716 elf_collect_hash_codes, &hashinf);
6717 if (hashinf.error)
4dd07732
AM
6718 {
6719 free (hashcodes);
6720 return FALSE;
6721 }
5a580b3a 6722
14b1c01e 6723 nsyms = hashinf.hashcodes - hashcodes;
fdc90cb4
JJ
6724 bucketcount
6725 = compute_bucket_count (info, hashcodes, nsyms, 0);
6726 free (hashcodes);
6727
6728 if (bucketcount == 0)
6729 return FALSE;
5a580b3a 6730
fdc90cb4
JJ
6731 elf_hash_table (info)->bucketcount = bucketcount;
6732
3d4d4302 6733 s = bfd_get_linker_section (dynobj, ".hash");
fdc90cb4
JJ
6734 BFD_ASSERT (s != NULL);
6735 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6736 s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
a50b1753 6737 s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6738 if (s->contents == NULL)
6739 return FALSE;
6740
6741 bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6742 bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6743 s->contents + hash_entry_size);
6744 }
6745
6746 if (info->emit_gnu_hash)
6747 {
6748 size_t i, cnt;
6749 unsigned char *contents;
6750 struct collect_gnu_hash_codes cinfo;
6751 bfd_size_type amt;
6752 size_t bucketcount;
6753
6754 memset (&cinfo, 0, sizeof (cinfo));
6755
6756 /* Compute the hash values for all exported symbols. At the same
6757 time store the values in an array so that we could use them for
6758 optimizations. */
6759 amt = dynsymcount * 2 * sizeof (unsigned long int);
a50b1753 6760 cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
fdc90cb4
JJ
6761 if (cinfo.hashcodes == NULL)
6762 return FALSE;
6763
6764 cinfo.hashval = cinfo.hashcodes + dynsymcount;
6765 cinfo.min_dynindx = -1;
6766 cinfo.output_bfd = output_bfd;
6767 cinfo.bed = bed;
6768
6769 /* Put all hash values in HASHCODES. */
6770 elf_link_hash_traverse (elf_hash_table (info),
6771 elf_collect_gnu_hash_codes, &cinfo);
14b1c01e 6772 if (cinfo.error)
4dd07732
AM
6773 {
6774 free (cinfo.hashcodes);
6775 return FALSE;
6776 }
fdc90cb4
JJ
6777
6778 bucketcount
6779 = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6780
6781 if (bucketcount == 0)
6782 {
6783 free (cinfo.hashcodes);
6784 return FALSE;
6785 }
6786
3d4d4302 6787 s = bfd_get_linker_section (dynobj, ".gnu.hash");
fdc90cb4
JJ
6788 BFD_ASSERT (s != NULL);
6789
6790 if (cinfo.nsyms == 0)
6791 {
6792 /* Empty .gnu.hash section is special. */
6793 BFD_ASSERT (cinfo.min_dynindx == -1);
6794 free (cinfo.hashcodes);
6795 s->size = 5 * 4 + bed->s->arch_size / 8;
a50b1753 6796 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6797 if (contents == NULL)
6798 return FALSE;
6799 s->contents = contents;
6800 /* 1 empty bucket. */
6801 bfd_put_32 (output_bfd, 1, contents);
6802 /* SYMIDX above the special symbol 0. */
6803 bfd_put_32 (output_bfd, 1, contents + 4);
6804 /* Just one word for bitmask. */
6805 bfd_put_32 (output_bfd, 1, contents + 8);
6806 /* Only hash fn bloom filter. */
6807 bfd_put_32 (output_bfd, 0, contents + 12);
6808 /* No hashes are valid - empty bitmask. */
6809 bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
6810 /* No hashes in the only bucket. */
6811 bfd_put_32 (output_bfd, 0,
6812 contents + 16 + bed->s->arch_size / 8);
6813 }
6814 else
6815 {
9e6619e2 6816 unsigned long int maskwords, maskbitslog2, x;
0b33793d 6817 BFD_ASSERT (cinfo.min_dynindx != -1);
fdc90cb4 6818
9e6619e2
AM
6819 x = cinfo.nsyms;
6820 maskbitslog2 = 1;
6821 while ((x >>= 1) != 0)
6822 ++maskbitslog2;
fdc90cb4
JJ
6823 if (maskbitslog2 < 3)
6824 maskbitslog2 = 5;
6825 else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
6826 maskbitslog2 = maskbitslog2 + 3;
6827 else
6828 maskbitslog2 = maskbitslog2 + 2;
6829 if (bed->s->arch_size == 64)
6830 {
6831 if (maskbitslog2 == 5)
6832 maskbitslog2 = 6;
6833 cinfo.shift1 = 6;
6834 }
6835 else
6836 cinfo.shift1 = 5;
6837 cinfo.mask = (1 << cinfo.shift1) - 1;
2ccdbfcc 6838 cinfo.shift2 = maskbitslog2;
fdc90cb4
JJ
6839 cinfo.maskbits = 1 << maskbitslog2;
6840 maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6841 amt = bucketcount * sizeof (unsigned long int) * 2;
6842 amt += maskwords * sizeof (bfd_vma);
a50b1753 6843 cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
fdc90cb4
JJ
6844 if (cinfo.bitmask == NULL)
6845 {
6846 free (cinfo.hashcodes);
6847 return FALSE;
6848 }
6849
a50b1753 6850 cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
fdc90cb4
JJ
6851 cinfo.indx = cinfo.counts + bucketcount;
6852 cinfo.symindx = dynsymcount - cinfo.nsyms;
6853 memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
6854
6855 /* Determine how often each hash bucket is used. */
6856 memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
6857 for (i = 0; i < cinfo.nsyms; ++i)
6858 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
6859
6860 for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
6861 if (cinfo.counts[i] != 0)
6862 {
6863 cinfo.indx[i] = cnt;
6864 cnt += cinfo.counts[i];
6865 }
6866 BFD_ASSERT (cnt == dynsymcount);
6867 cinfo.bucketcount = bucketcount;
6868 cinfo.local_indx = cinfo.min_dynindx;
6869
6870 s->size = (4 + bucketcount + cinfo.nsyms) * 4;
6871 s->size += cinfo.maskbits / 8;
a50b1753 6872 contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
fdc90cb4
JJ
6873 if (contents == NULL)
6874 {
6875 free (cinfo.bitmask);
6876 free (cinfo.hashcodes);
6877 return FALSE;
6878 }
6879
6880 s->contents = contents;
6881 bfd_put_32 (output_bfd, bucketcount, contents);
6882 bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
6883 bfd_put_32 (output_bfd, maskwords, contents + 8);
6884 bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
6885 contents += 16 + cinfo.maskbits / 8;
6886
6887 for (i = 0; i < bucketcount; ++i)
6888 {
6889 if (cinfo.counts[i] == 0)
6890 bfd_put_32 (output_bfd, 0, contents);
6891 else
6892 bfd_put_32 (output_bfd, cinfo.indx[i], contents);
6893 contents += 4;
6894 }
6895
6896 cinfo.contents = contents;
6897
6898 /* Renumber dynamic symbols, populate .gnu.hash section. */
6899 elf_link_hash_traverse (elf_hash_table (info),
6900 elf_renumber_gnu_hash_syms, &cinfo);
6901
6902 contents = s->contents + 16;
6903 for (i = 0; i < maskwords; ++i)
6904 {
6905 bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
6906 contents);
6907 contents += bed->s->arch_size / 8;
6908 }
6909
6910 free (cinfo.bitmask);
6911 free (cinfo.hashcodes);
6912 }
6913 }
5a580b3a 6914
3d4d4302 6915 s = bfd_get_linker_section (dynobj, ".dynstr");
5a580b3a
AM
6916 BFD_ASSERT (s != NULL);
6917
4ad4eba5 6918 elf_finalize_dynstr (output_bfd, info);
5a580b3a 6919
eea6121a 6920 s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5a580b3a
AM
6921
6922 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
6923 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
6924 return FALSE;
6925 }
6926
6927 return TRUE;
6928}
4d269e42 6929\f
4d269e42
AM
6930/* Make sure sec_info_type is cleared if sec_info is cleared too. */
6931
6932static void
6933merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
6934 asection *sec)
6935{
dbaa2011
AM
6936 BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
6937 sec->sec_info_type = SEC_INFO_TYPE_NONE;
4d269e42
AM
6938}
6939
6940/* Finish SHF_MERGE section merging. */
6941
6942bfd_boolean
630993ec 6943_bfd_elf_merge_sections (bfd *obfd, struct bfd_link_info *info)
4d269e42
AM
6944{
6945 bfd *ibfd;
6946 asection *sec;
6947
6948 if (!is_elf_hash_table (info->hash))
6949 return FALSE;
6950
c72f2fb2 6951 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
630993ec
AM
6952 if ((ibfd->flags & DYNAMIC) == 0
6953 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour
017e6bce
AM
6954 && (elf_elfheader (ibfd)->e_ident[EI_CLASS]
6955 == get_elf_backend_data (obfd)->s->elfclass))
4d269e42
AM
6956 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6957 if ((sec->flags & SEC_MERGE) != 0
6958 && !bfd_is_abs_section (sec->output_section))
6959 {
6960 struct bfd_elf_section_data *secdata;
6961
6962 secdata = elf_section_data (sec);
630993ec 6963 if (! _bfd_add_merge_section (obfd,
4d269e42
AM
6964 &elf_hash_table (info)->merge_info,
6965 sec, &secdata->sec_info))
6966 return FALSE;
6967 else if (secdata->sec_info)
dbaa2011 6968 sec->sec_info_type = SEC_INFO_TYPE_MERGE;
4d269e42
AM
6969 }
6970
6971 if (elf_hash_table (info)->merge_info != NULL)
630993ec 6972 _bfd_merge_sections (obfd, info, elf_hash_table (info)->merge_info,
4d269e42
AM
6973 merge_sections_remove_hook);
6974 return TRUE;
6975}
6976
6977/* Create an entry in an ELF linker hash table. */
6978
6979struct bfd_hash_entry *
6980_bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
6981 struct bfd_hash_table *table,
6982 const char *string)
6983{
6984 /* Allocate the structure if it has not already been allocated by a
6985 subclass. */
6986 if (entry == NULL)
6987 {
a50b1753 6988 entry = (struct bfd_hash_entry *)
ca4be51c 6989 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
4d269e42
AM
6990 if (entry == NULL)
6991 return entry;
6992 }
6993
6994 /* Call the allocation method of the superclass. */
6995 entry = _bfd_link_hash_newfunc (entry, table, string);
6996 if (entry != NULL)
6997 {
6998 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
6999 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
7000
7001 /* Set local fields. */
7002 ret->indx = -1;
7003 ret->dynindx = -1;
7004 ret->got = htab->init_got_refcount;
7005 ret->plt = htab->init_plt_refcount;
7006 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
7007 - offsetof (struct elf_link_hash_entry, size)));
7008 /* Assume that we have been called by a non-ELF symbol reader.
7009 This flag is then reset by the code which reads an ELF input
7010 file. This ensures that a symbol created by a non-ELF symbol
7011 reader will have the flag set correctly. */
7012 ret->non_elf = 1;
7013 }
7014
7015 return entry;
7016}
7017
7018/* Copy data from an indirect symbol to its direct symbol, hiding the
7019 old indirect symbol. Also used for copying flags to a weakdef. */
7020
7021void
7022_bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
7023 struct elf_link_hash_entry *dir,
7024 struct elf_link_hash_entry *ind)
7025{
7026 struct elf_link_hash_table *htab;
7027
7028 /* Copy down any references that we may have already seen to the
6e33951e
L
7029 symbol which just became indirect if DIR isn't a hidden versioned
7030 symbol. */
4d269e42 7031
422f1182 7032 if (dir->versioned != versioned_hidden)
6e33951e
L
7033 {
7034 dir->ref_dynamic |= ind->ref_dynamic;
7035 dir->ref_regular |= ind->ref_regular;
7036 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
7037 dir->non_got_ref |= ind->non_got_ref;
7038 dir->needs_plt |= ind->needs_plt;
7039 dir->pointer_equality_needed |= ind->pointer_equality_needed;
7040 }
4d269e42
AM
7041
7042 if (ind->root.type != bfd_link_hash_indirect)
7043 return;
7044
7045 /* Copy over the global and procedure linkage table refcount entries.
7046 These may have been already set up by a check_relocs routine. */
7047 htab = elf_hash_table (info);
7048 if (ind->got.refcount > htab->init_got_refcount.refcount)
7049 {
7050 if (dir->got.refcount < 0)
7051 dir->got.refcount = 0;
7052 dir->got.refcount += ind->got.refcount;
7053 ind->got.refcount = htab->init_got_refcount.refcount;
7054 }
7055
7056 if (ind->plt.refcount > htab->init_plt_refcount.refcount)
7057 {
7058 if (dir->plt.refcount < 0)
7059 dir->plt.refcount = 0;
7060 dir->plt.refcount += ind->plt.refcount;
7061 ind->plt.refcount = htab->init_plt_refcount.refcount;
7062 }
7063
7064 if (ind->dynindx != -1)
7065 {
7066 if (dir->dynindx != -1)
7067 _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
7068 dir->dynindx = ind->dynindx;
7069 dir->dynstr_index = ind->dynstr_index;
7070 ind->dynindx = -1;
7071 ind->dynstr_index = 0;
7072 }
7073}
7074
7075void
7076_bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
7077 struct elf_link_hash_entry *h,
7078 bfd_boolean force_local)
7079{
3aa14d16
L
7080 /* STT_GNU_IFUNC symbol must go through PLT. */
7081 if (h->type != STT_GNU_IFUNC)
7082 {
7083 h->plt = elf_hash_table (info)->init_plt_offset;
7084 h->needs_plt = 0;
7085 }
4d269e42
AM
7086 if (force_local)
7087 {
7088 h->forced_local = 1;
7089 if (h->dynindx != -1)
7090 {
7091 h->dynindx = -1;
7092 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
7093 h->dynstr_index);
7094 }
7095 }
7096}
7097
7bf52ea2
AM
7098/* Initialize an ELF linker hash table. *TABLE has been zeroed by our
7099 caller. */
4d269e42
AM
7100
7101bfd_boolean
7102_bfd_elf_link_hash_table_init
7103 (struct elf_link_hash_table *table,
7104 bfd *abfd,
7105 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
7106 struct bfd_hash_table *,
7107 const char *),
4dfe6ac6
NC
7108 unsigned int entsize,
7109 enum elf_target_id target_id)
4d269e42
AM
7110{
7111 bfd_boolean ret;
7112 int can_refcount = get_elf_backend_data (abfd)->can_refcount;
7113
4d269e42
AM
7114 table->init_got_refcount.refcount = can_refcount - 1;
7115 table->init_plt_refcount.refcount = can_refcount - 1;
7116 table->init_got_offset.offset = -(bfd_vma) 1;
7117 table->init_plt_offset.offset = -(bfd_vma) 1;
7118 /* The first dynamic symbol is a dummy. */
7119 table->dynsymcount = 1;
7120
7121 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
4dfe6ac6 7122
4d269e42 7123 table->root.type = bfd_link_elf_hash_table;
4dfe6ac6 7124 table->hash_table_id = target_id;
4d269e42
AM
7125
7126 return ret;
7127}
7128
7129/* Create an ELF linker hash table. */
7130
7131struct bfd_link_hash_table *
7132_bfd_elf_link_hash_table_create (bfd *abfd)
7133{
7134 struct elf_link_hash_table *ret;
7135 bfd_size_type amt = sizeof (struct elf_link_hash_table);
7136
7bf52ea2 7137 ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
4d269e42
AM
7138 if (ret == NULL)
7139 return NULL;
7140
7141 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
4dfe6ac6
NC
7142 sizeof (struct elf_link_hash_entry),
7143 GENERIC_ELF_DATA))
4d269e42
AM
7144 {
7145 free (ret);
7146 return NULL;
7147 }
d495ab0d 7148 ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
4d269e42
AM
7149
7150 return &ret->root;
7151}
7152
9f7c3e5e
AM
7153/* Destroy an ELF linker hash table. */
7154
7155void
d495ab0d 7156_bfd_elf_link_hash_table_free (bfd *obfd)
9f7c3e5e 7157{
d495ab0d
AM
7158 struct elf_link_hash_table *htab;
7159
7160 htab = (struct elf_link_hash_table *) obfd->link.hash;
9f7c3e5e
AM
7161 if (htab->dynstr != NULL)
7162 _bfd_elf_strtab_free (htab->dynstr);
7163 _bfd_merge_sections_free (htab->merge_info);
d495ab0d 7164 _bfd_generic_link_hash_table_free (obfd);
9f7c3e5e
AM
7165}
7166
4d269e42
AM
7167/* This is a hook for the ELF emulation code in the generic linker to
7168 tell the backend linker what file name to use for the DT_NEEDED
7169 entry for a dynamic object. */
7170
7171void
7172bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
7173{
7174 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7175 && bfd_get_format (abfd) == bfd_object)
7176 elf_dt_name (abfd) = name;
7177}
7178
7179int
7180bfd_elf_get_dyn_lib_class (bfd *abfd)
7181{
7182 int lib_class;
7183 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7184 && bfd_get_format (abfd) == bfd_object)
7185 lib_class = elf_dyn_lib_class (abfd);
7186 else
7187 lib_class = 0;
7188 return lib_class;
7189}
7190
7191void
7192bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
7193{
7194 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7195 && bfd_get_format (abfd) == bfd_object)
7196 elf_dyn_lib_class (abfd) = lib_class;
7197}
7198
7199/* Get the list of DT_NEEDED entries for a link. This is a hook for
7200 the linker ELF emulation code. */
7201
7202struct bfd_link_needed_list *
7203bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
7204 struct bfd_link_info *info)
7205{
7206 if (! is_elf_hash_table (info->hash))
7207 return NULL;
7208 return elf_hash_table (info)->needed;
7209}
7210
7211/* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
7212 hook for the linker ELF emulation code. */
7213
7214struct bfd_link_needed_list *
7215bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
7216 struct bfd_link_info *info)
7217{
7218 if (! is_elf_hash_table (info->hash))
7219 return NULL;
7220 return elf_hash_table (info)->runpath;
7221}
7222
7223/* Get the name actually used for a dynamic object for a link. This
7224 is the SONAME entry if there is one. Otherwise, it is the string
7225 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
7226
7227const char *
7228bfd_elf_get_dt_soname (bfd *abfd)
7229{
7230 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
7231 && bfd_get_format (abfd) == bfd_object)
7232 return elf_dt_name (abfd);
7233 return NULL;
7234}
7235
7236/* Get the list of DT_NEEDED entries from a BFD. This is a hook for
7237 the ELF linker emulation code. */
7238
7239bfd_boolean
7240bfd_elf_get_bfd_needed_list (bfd *abfd,
7241 struct bfd_link_needed_list **pneeded)
7242{
7243 asection *s;
7244 bfd_byte *dynbuf = NULL;
cb33740c 7245 unsigned int elfsec;
4d269e42
AM
7246 unsigned long shlink;
7247 bfd_byte *extdyn, *extdynend;
7248 size_t extdynsize;
7249 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
7250
7251 *pneeded = NULL;
7252
7253 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
7254 || bfd_get_format (abfd) != bfd_object)
7255 return TRUE;
7256
7257 s = bfd_get_section_by_name (abfd, ".dynamic");
7258 if (s == NULL || s->size == 0)
7259 return TRUE;
7260
7261 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
7262 goto error_return;
7263
7264 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
cb33740c 7265 if (elfsec == SHN_BAD)
4d269e42
AM
7266 goto error_return;
7267
7268 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
c152c796 7269
4d269e42
AM
7270 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
7271 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
7272
7273 extdyn = dynbuf;
7274 extdynend = extdyn + s->size;
7275 for (; extdyn < extdynend; extdyn += extdynsize)
7276 {
7277 Elf_Internal_Dyn dyn;
7278
7279 (*swap_dyn_in) (abfd, extdyn, &dyn);
7280
7281 if (dyn.d_tag == DT_NULL)
7282 break;
7283
7284 if (dyn.d_tag == DT_NEEDED)
7285 {
7286 const char *string;
7287 struct bfd_link_needed_list *l;
7288 unsigned int tagv = dyn.d_un.d_val;
7289 bfd_size_type amt;
7290
7291 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7292 if (string == NULL)
7293 goto error_return;
7294
7295 amt = sizeof *l;
a50b1753 7296 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
4d269e42
AM
7297 if (l == NULL)
7298 goto error_return;
7299
7300 l->by = abfd;
7301 l->name = string;
7302 l->next = *pneeded;
7303 *pneeded = l;
7304 }
7305 }
7306
7307 free (dynbuf);
7308
7309 return TRUE;
7310
7311 error_return:
7312 if (dynbuf != NULL)
7313 free (dynbuf);
7314 return FALSE;
7315}
7316
7317struct elf_symbuf_symbol
7318{
7319 unsigned long st_name; /* Symbol name, index in string tbl */
7320 unsigned char st_info; /* Type and binding attributes */
7321 unsigned char st_other; /* Visibilty, and target specific */
7322};
7323
7324struct elf_symbuf_head
7325{
7326 struct elf_symbuf_symbol *ssym;
ef53be89 7327 size_t count;
4d269e42
AM
7328 unsigned int st_shndx;
7329};
7330
7331struct elf_symbol
7332{
7333 union
7334 {
7335 Elf_Internal_Sym *isym;
7336 struct elf_symbuf_symbol *ssym;
7337 } u;
7338 const char *name;
7339};
7340
7341/* Sort references to symbols by ascending section number. */
7342
7343static int
7344elf_sort_elf_symbol (const void *arg1, const void *arg2)
7345{
7346 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7347 const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7348
7349 return s1->st_shndx - s2->st_shndx;
7350}
7351
7352static int
7353elf_sym_name_compare (const void *arg1, const void *arg2)
7354{
7355 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7356 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7357 return strcmp (s1->name, s2->name);
7358}
7359
7360static struct elf_symbuf_head *
ef53be89 7361elf_create_symbuf (size_t symcount, Elf_Internal_Sym *isymbuf)
4d269e42 7362{
14b1c01e 7363 Elf_Internal_Sym **ind, **indbufend, **indbuf;
4d269e42
AM
7364 struct elf_symbuf_symbol *ssym;
7365 struct elf_symbuf_head *ssymbuf, *ssymhead;
ef53be89 7366 size_t i, shndx_count, total_size;
4d269e42 7367
a50b1753 7368 indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
4d269e42
AM
7369 if (indbuf == NULL)
7370 return NULL;
7371
7372 for (ind = indbuf, i = 0; i < symcount; i++)
7373 if (isymbuf[i].st_shndx != SHN_UNDEF)
7374 *ind++ = &isymbuf[i];
7375 indbufend = ind;
7376
7377 qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7378 elf_sort_elf_symbol);
7379
7380 shndx_count = 0;
7381 if (indbufend > indbuf)
7382 for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7383 if (ind[0]->st_shndx != ind[1]->st_shndx)
7384 shndx_count++;
7385
3ae181ee
L
7386 total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7387 + (indbufend - indbuf) * sizeof (*ssym));
a50b1753 7388 ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
4d269e42
AM
7389 if (ssymbuf == NULL)
7390 {
7391 free (indbuf);
7392 return NULL;
7393 }
7394
3ae181ee 7395 ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
4d269e42
AM
7396 ssymbuf->ssym = NULL;
7397 ssymbuf->count = shndx_count;
7398 ssymbuf->st_shndx = 0;
7399 for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7400 {
7401 if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7402 {
7403 ssymhead++;
7404 ssymhead->ssym = ssym;
7405 ssymhead->count = 0;
7406 ssymhead->st_shndx = (*ind)->st_shndx;
7407 }
7408 ssym->st_name = (*ind)->st_name;
7409 ssym->st_info = (*ind)->st_info;
7410 ssym->st_other = (*ind)->st_other;
7411 ssymhead->count++;
7412 }
ef53be89 7413 BFD_ASSERT ((size_t) (ssymhead - ssymbuf) == shndx_count
3ae181ee
L
7414 && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7415 == total_size));
4d269e42
AM
7416
7417 free (indbuf);
7418 return ssymbuf;
7419}
7420
7421/* Check if 2 sections define the same set of local and global
7422 symbols. */
7423
8f317e31 7424static bfd_boolean
4d269e42
AM
7425bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7426 struct bfd_link_info *info)
7427{
7428 bfd *bfd1, *bfd2;
7429 const struct elf_backend_data *bed1, *bed2;
7430 Elf_Internal_Shdr *hdr1, *hdr2;
ef53be89 7431 size_t symcount1, symcount2;
4d269e42
AM
7432 Elf_Internal_Sym *isymbuf1, *isymbuf2;
7433 struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7434 Elf_Internal_Sym *isym, *isymend;
7435 struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
ef53be89 7436 size_t count1, count2, i;
cb33740c 7437 unsigned int shndx1, shndx2;
4d269e42
AM
7438 bfd_boolean result;
7439
7440 bfd1 = sec1->owner;
7441 bfd2 = sec2->owner;
7442
4d269e42
AM
7443 /* Both sections have to be in ELF. */
7444 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7445 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7446 return FALSE;
7447
7448 if (elf_section_type (sec1) != elf_section_type (sec2))
7449 return FALSE;
7450
4d269e42
AM
7451 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7452 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
cb33740c 7453 if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
4d269e42
AM
7454 return FALSE;
7455
7456 bed1 = get_elf_backend_data (bfd1);
7457 bed2 = get_elf_backend_data (bfd2);
7458 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7459 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7460 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7461 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7462
7463 if (symcount1 == 0 || symcount2 == 0)
7464 return FALSE;
7465
7466 result = FALSE;
7467 isymbuf1 = NULL;
7468 isymbuf2 = NULL;
a50b1753
NC
7469 ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7470 ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
4d269e42
AM
7471
7472 if (ssymbuf1 == NULL)
7473 {
7474 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7475 NULL, NULL, NULL);
7476 if (isymbuf1 == NULL)
7477 goto done;
7478
7479 if (!info->reduce_memory_overheads)
7480 elf_tdata (bfd1)->symbuf = ssymbuf1
7481 = elf_create_symbuf (symcount1, isymbuf1);
7482 }
7483
7484 if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7485 {
7486 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7487 NULL, NULL, NULL);
7488 if (isymbuf2 == NULL)
7489 goto done;
7490
7491 if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7492 elf_tdata (bfd2)->symbuf = ssymbuf2
7493 = elf_create_symbuf (symcount2, isymbuf2);
7494 }
7495
7496 if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7497 {
7498 /* Optimized faster version. */
ef53be89 7499 size_t lo, hi, mid;
4d269e42
AM
7500 struct elf_symbol *symp;
7501 struct elf_symbuf_symbol *ssym, *ssymend;
7502
7503 lo = 0;
7504 hi = ssymbuf1->count;
7505 ssymbuf1++;
7506 count1 = 0;
7507 while (lo < hi)
7508 {
7509 mid = (lo + hi) / 2;
cb33740c 7510 if (shndx1 < ssymbuf1[mid].st_shndx)
4d269e42 7511 hi = mid;
cb33740c 7512 else if (shndx1 > ssymbuf1[mid].st_shndx)
4d269e42
AM
7513 lo = mid + 1;
7514 else
7515 {
7516 count1 = ssymbuf1[mid].count;
7517 ssymbuf1 += mid;
7518 break;
7519 }
7520 }
7521
7522 lo = 0;
7523 hi = ssymbuf2->count;
7524 ssymbuf2++;
7525 count2 = 0;
7526 while (lo < hi)
7527 {
7528 mid = (lo + hi) / 2;
cb33740c 7529 if (shndx2 < ssymbuf2[mid].st_shndx)
4d269e42 7530 hi = mid;
cb33740c 7531 else if (shndx2 > ssymbuf2[mid].st_shndx)
4d269e42
AM
7532 lo = mid + 1;
7533 else
7534 {
7535 count2 = ssymbuf2[mid].count;
7536 ssymbuf2 += mid;
7537 break;
7538 }
7539 }
7540
7541 if (count1 == 0 || count2 == 0 || count1 != count2)
7542 goto done;
7543
ca4be51c
AM
7544 symtable1
7545 = (struct elf_symbol *) bfd_malloc (count1 * sizeof (*symtable1));
7546 symtable2
7547 = (struct elf_symbol *) bfd_malloc (count2 * sizeof (*symtable2));
4d269e42
AM
7548 if (symtable1 == NULL || symtable2 == NULL)
7549 goto done;
7550
7551 symp = symtable1;
7552 for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7553 ssym < ssymend; ssym++, symp++)
7554 {
7555 symp->u.ssym = ssym;
7556 symp->name = bfd_elf_string_from_elf_section (bfd1,
7557 hdr1->sh_link,
7558 ssym->st_name);
7559 }
7560
7561 symp = symtable2;
7562 for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
7563 ssym < ssymend; ssym++, symp++)
7564 {
7565 symp->u.ssym = ssym;
7566 symp->name = bfd_elf_string_from_elf_section (bfd2,
7567 hdr2->sh_link,
7568 ssym->st_name);
7569 }
7570
7571 /* Sort symbol by name. */
7572 qsort (symtable1, count1, sizeof (struct elf_symbol),
7573 elf_sym_name_compare);
7574 qsort (symtable2, count1, sizeof (struct elf_symbol),
7575 elf_sym_name_compare);
7576
7577 for (i = 0; i < count1; i++)
7578 /* Two symbols must have the same binding, type and name. */
7579 if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
7580 || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
7581 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7582 goto done;
7583
7584 result = TRUE;
7585 goto done;
7586 }
7587
a50b1753
NC
7588 symtable1 = (struct elf_symbol *)
7589 bfd_malloc (symcount1 * sizeof (struct elf_symbol));
7590 symtable2 = (struct elf_symbol *)
7591 bfd_malloc (symcount2 * sizeof (struct elf_symbol));
4d269e42
AM
7592 if (symtable1 == NULL || symtable2 == NULL)
7593 goto done;
7594
7595 /* Count definitions in the section. */
7596 count1 = 0;
7597 for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
cb33740c 7598 if (isym->st_shndx == shndx1)
4d269e42
AM
7599 symtable1[count1++].u.isym = isym;
7600
7601 count2 = 0;
7602 for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
cb33740c 7603 if (isym->st_shndx == shndx2)
4d269e42
AM
7604 symtable2[count2++].u.isym = isym;
7605
7606 if (count1 == 0 || count2 == 0 || count1 != count2)
7607 goto done;
7608
7609 for (i = 0; i < count1; i++)
7610 symtable1[i].name
7611 = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
7612 symtable1[i].u.isym->st_name);
7613
7614 for (i = 0; i < count2; i++)
7615 symtable2[i].name
7616 = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
7617 symtable2[i].u.isym->st_name);
7618
7619 /* Sort symbol by name. */
7620 qsort (symtable1, count1, sizeof (struct elf_symbol),
7621 elf_sym_name_compare);
7622 qsort (symtable2, count1, sizeof (struct elf_symbol),
7623 elf_sym_name_compare);
7624
7625 for (i = 0; i < count1; i++)
7626 /* Two symbols must have the same binding, type and name. */
7627 if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
7628 || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
7629 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7630 goto done;
7631
7632 result = TRUE;
7633
7634done:
7635 if (symtable1)
7636 free (symtable1);
7637 if (symtable2)
7638 free (symtable2);
7639 if (isymbuf1)
7640 free (isymbuf1);
7641 if (isymbuf2)
7642 free (isymbuf2);
7643
7644 return result;
7645}
7646
7647/* Return TRUE if 2 section types are compatible. */
7648
7649bfd_boolean
7650_bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
7651 bfd *bbfd, const asection *bsec)
7652{
7653 if (asec == NULL
7654 || bsec == NULL
7655 || abfd->xvec->flavour != bfd_target_elf_flavour
7656 || bbfd->xvec->flavour != bfd_target_elf_flavour)
7657 return TRUE;
7658
7659 return elf_section_type (asec) == elf_section_type (bsec);
7660}
7661\f
c152c796
AM
7662/* Final phase of ELF linker. */
7663
7664/* A structure we use to avoid passing large numbers of arguments. */
7665
7666struct elf_final_link_info
7667{
7668 /* General link information. */
7669 struct bfd_link_info *info;
7670 /* Output BFD. */
7671 bfd *output_bfd;
7672 /* Symbol string table. */
ef10c3ac 7673 struct elf_strtab_hash *symstrtab;
c152c796
AM
7674 /* .hash section. */
7675 asection *hash_sec;
7676 /* symbol version section (.gnu.version). */
7677 asection *symver_sec;
7678 /* Buffer large enough to hold contents of any section. */
7679 bfd_byte *contents;
7680 /* Buffer large enough to hold external relocs of any section. */
7681 void *external_relocs;
7682 /* Buffer large enough to hold internal relocs of any section. */
7683 Elf_Internal_Rela *internal_relocs;
7684 /* Buffer large enough to hold external local symbols of any input
7685 BFD. */
7686 bfd_byte *external_syms;
7687 /* And a buffer for symbol section indices. */
7688 Elf_External_Sym_Shndx *locsym_shndx;
7689 /* Buffer large enough to hold internal local symbols of any input
7690 BFD. */
7691 Elf_Internal_Sym *internal_syms;
7692 /* Array large enough to hold a symbol index for each local symbol
7693 of any input BFD. */
7694 long *indices;
7695 /* Array large enough to hold a section pointer for each local
7696 symbol of any input BFD. */
7697 asection **sections;
ef10c3ac 7698 /* Buffer for SHT_SYMTAB_SHNDX section. */
c152c796 7699 Elf_External_Sym_Shndx *symshndxbuf;
ffbc01cc
AM
7700 /* Number of STT_FILE syms seen. */
7701 size_t filesym_count;
c152c796
AM
7702};
7703
7704/* This struct is used to pass information to elf_link_output_extsym. */
7705
7706struct elf_outext_info
7707{
7708 bfd_boolean failed;
7709 bfd_boolean localsyms;
34a79995 7710 bfd_boolean file_sym_done;
8b127cbc 7711 struct elf_final_link_info *flinfo;
c152c796
AM
7712};
7713
d9352518
DB
7714
7715/* Support for evaluating a complex relocation.
7716
7717 Complex relocations are generalized, self-describing relocations. The
7718 implementation of them consists of two parts: complex symbols, and the
a0c8462f 7719 relocations themselves.
d9352518
DB
7720
7721 The relocations are use a reserved elf-wide relocation type code (R_RELC
7722 external / BFD_RELOC_RELC internal) and an encoding of relocation field
7723 information (start bit, end bit, word width, etc) into the addend. This
7724 information is extracted from CGEN-generated operand tables within gas.
7725
7726 Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
7727 internal) representing prefix-notation expressions, including but not
7728 limited to those sorts of expressions normally encoded as addends in the
7729 addend field. The symbol mangling format is:
7730
7731 <node> := <literal>
7732 | <unary-operator> ':' <node>
7733 | <binary-operator> ':' <node> ':' <node>
7734 ;
7735
7736 <literal> := 's' <digits=N> ':' <N character symbol name>
7737 | 'S' <digits=N> ':' <N character section name>
7738 | '#' <hexdigits>
7739 ;
7740
7741 <binary-operator> := as in C
7742 <unary-operator> := as in C, plus "0-" for unambiguous negation. */
7743
7744static void
a0c8462f
AM
7745set_symbol_value (bfd *bfd_with_globals,
7746 Elf_Internal_Sym *isymbuf,
7747 size_t locsymcount,
7748 size_t symidx,
7749 bfd_vma val)
d9352518 7750{
8977835c
AM
7751 struct elf_link_hash_entry **sym_hashes;
7752 struct elf_link_hash_entry *h;
7753 size_t extsymoff = locsymcount;
d9352518 7754
8977835c 7755 if (symidx < locsymcount)
d9352518 7756 {
8977835c
AM
7757 Elf_Internal_Sym *sym;
7758
7759 sym = isymbuf + symidx;
7760 if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
7761 {
7762 /* It is a local symbol: move it to the
7763 "absolute" section and give it a value. */
7764 sym->st_shndx = SHN_ABS;
7765 sym->st_value = val;
7766 return;
7767 }
7768 BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
7769 extsymoff = 0;
d9352518 7770 }
8977835c
AM
7771
7772 /* It is a global symbol: set its link type
7773 to "defined" and give it a value. */
7774
7775 sym_hashes = elf_sym_hashes (bfd_with_globals);
7776 h = sym_hashes [symidx - extsymoff];
7777 while (h->root.type == bfd_link_hash_indirect
7778 || h->root.type == bfd_link_hash_warning)
7779 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7780 h->root.type = bfd_link_hash_defined;
7781 h->root.u.def.value = val;
7782 h->root.u.def.section = bfd_abs_section_ptr;
d9352518
DB
7783}
7784
a0c8462f
AM
7785static bfd_boolean
7786resolve_symbol (const char *name,
7787 bfd *input_bfd,
8b127cbc 7788 struct elf_final_link_info *flinfo,
a0c8462f
AM
7789 bfd_vma *result,
7790 Elf_Internal_Sym *isymbuf,
7791 size_t locsymcount)
d9352518 7792{
a0c8462f
AM
7793 Elf_Internal_Sym *sym;
7794 struct bfd_link_hash_entry *global_entry;
7795 const char *candidate = NULL;
7796 Elf_Internal_Shdr *symtab_hdr;
7797 size_t i;
7798
d9352518
DB
7799 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
7800
7801 for (i = 0; i < locsymcount; ++ i)
7802 {
8977835c 7803 sym = isymbuf + i;
d9352518
DB
7804
7805 if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
7806 continue;
7807
7808 candidate = bfd_elf_string_from_elf_section (input_bfd,
7809 symtab_hdr->sh_link,
7810 sym->st_name);
7811#ifdef DEBUG
0f02bbd9
AM
7812 printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
7813 name, candidate, (unsigned long) sym->st_value);
d9352518
DB
7814#endif
7815 if (candidate && strcmp (candidate, name) == 0)
7816 {
8b127cbc 7817 asection *sec = flinfo->sections [i];
d9352518 7818
0f02bbd9
AM
7819 *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
7820 *result += sec->output_offset + sec->output_section->vma;
d9352518 7821#ifdef DEBUG
0f02bbd9
AM
7822 printf ("Found symbol with value %8.8lx\n",
7823 (unsigned long) *result);
d9352518
DB
7824#endif
7825 return TRUE;
7826 }
7827 }
7828
7829 /* Hmm, haven't found it yet. perhaps it is a global. */
8b127cbc 7830 global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
a0c8462f 7831 FALSE, FALSE, TRUE);
d9352518
DB
7832 if (!global_entry)
7833 return FALSE;
a0c8462f 7834
d9352518
DB
7835 if (global_entry->type == bfd_link_hash_defined
7836 || global_entry->type == bfd_link_hash_defweak)
7837 {
a0c8462f
AM
7838 *result = (global_entry->u.def.value
7839 + global_entry->u.def.section->output_section->vma
7840 + global_entry->u.def.section->output_offset);
d9352518 7841#ifdef DEBUG
0f02bbd9
AM
7842 printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
7843 global_entry->root.string, (unsigned long) *result);
d9352518
DB
7844#endif
7845 return TRUE;
a0c8462f 7846 }
d9352518 7847
d9352518
DB
7848 return FALSE;
7849}
7850
37b01f6a
DG
7851/* Looks up NAME in SECTIONS. If found sets RESULT to NAME's address (in
7852 bytes) and returns TRUE, otherwise returns FALSE. Accepts pseudo-section
7853 names like "foo.end" which is the end address of section "foo". */
7854
d9352518 7855static bfd_boolean
a0c8462f
AM
7856resolve_section (const char *name,
7857 asection *sections,
37b01f6a
DG
7858 bfd_vma *result,
7859 bfd * abfd)
d9352518 7860{
a0c8462f
AM
7861 asection *curr;
7862 unsigned int len;
d9352518 7863
a0c8462f 7864 for (curr = sections; curr; curr = curr->next)
d9352518
DB
7865 if (strcmp (curr->name, name) == 0)
7866 {
7867 *result = curr->vma;
7868 return TRUE;
7869 }
7870
7871 /* Hmm. still haven't found it. try pseudo-section names. */
37b01f6a 7872 /* FIXME: This could be coded more efficiently... */
a0c8462f 7873 for (curr = sections; curr; curr = curr->next)
d9352518
DB
7874 {
7875 len = strlen (curr->name);
a0c8462f 7876 if (len > strlen (name))
d9352518
DB
7877 continue;
7878
7879 if (strncmp (curr->name, name, len) == 0)
7880 {
7881 if (strncmp (".end", name + len, 4) == 0)
7882 {
37b01f6a 7883 *result = curr->vma + curr->size / bfd_octets_per_byte (abfd);
d9352518
DB
7884 return TRUE;
7885 }
7886
7887 /* Insert more pseudo-section names here, if you like. */
7888 }
7889 }
a0c8462f 7890
d9352518
DB
7891 return FALSE;
7892}
7893
7894static void
a0c8462f 7895undefined_reference (const char *reftype, const char *name)
d9352518 7896{
a0c8462f
AM
7897 _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
7898 reftype, name);
d9352518
DB
7899}
7900
7901static bfd_boolean
a0c8462f
AM
7902eval_symbol (bfd_vma *result,
7903 const char **symp,
7904 bfd *input_bfd,
8b127cbc 7905 struct elf_final_link_info *flinfo,
a0c8462f
AM
7906 bfd_vma dot,
7907 Elf_Internal_Sym *isymbuf,
7908 size_t locsymcount,
7909 int signed_p)
d9352518 7910{
4b93929b
NC
7911 size_t len;
7912 size_t symlen;
a0c8462f
AM
7913 bfd_vma a;
7914 bfd_vma b;
4b93929b 7915 char symbuf[4096];
0f02bbd9 7916 const char *sym = *symp;
a0c8462f
AM
7917 const char *symend;
7918 bfd_boolean symbol_is_section = FALSE;
d9352518
DB
7919
7920 len = strlen (sym);
7921 symend = sym + len;
7922
4b93929b 7923 if (len < 1 || len > sizeof (symbuf))
d9352518
DB
7924 {
7925 bfd_set_error (bfd_error_invalid_operation);
7926 return FALSE;
7927 }
a0c8462f 7928
d9352518
DB
7929 switch (* sym)
7930 {
7931 case '.':
0f02bbd9
AM
7932 *result = dot;
7933 *symp = sym + 1;
d9352518
DB
7934 return TRUE;
7935
7936 case '#':
0f02bbd9
AM
7937 ++sym;
7938 *result = strtoul (sym, (char **) symp, 16);
d9352518
DB
7939 return TRUE;
7940
7941 case 'S':
7942 symbol_is_section = TRUE;
a0c8462f 7943 case 's':
0f02bbd9
AM
7944 ++sym;
7945 symlen = strtol (sym, (char **) symp, 10);
7946 sym = *symp + 1; /* Skip the trailing ':'. */
d9352518 7947
4b93929b 7948 if (symend < sym || symlen + 1 > sizeof (symbuf))
d9352518
DB
7949 {
7950 bfd_set_error (bfd_error_invalid_operation);
7951 return FALSE;
7952 }
7953
7954 memcpy (symbuf, sym, symlen);
a0c8462f 7955 symbuf[symlen] = '\0';
0f02bbd9 7956 *symp = sym + symlen;
a0c8462f
AM
7957
7958 /* Is it always possible, with complex symbols, that gas "mis-guessed"
d9352518
DB
7959 the symbol as a section, or vice-versa. so we're pretty liberal in our
7960 interpretation here; section means "try section first", not "must be a
7961 section", and likewise with symbol. */
7962
a0c8462f 7963 if (symbol_is_section)
d9352518 7964 {
37b01f6a 7965 if (!resolve_section (symbuf, flinfo->output_bfd->sections, result, input_bfd)
8b127cbc 7966 && !resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 7967 isymbuf, locsymcount))
d9352518
DB
7968 {
7969 undefined_reference ("section", symbuf);
7970 return FALSE;
7971 }
a0c8462f
AM
7972 }
7973 else
d9352518 7974 {
8b127cbc 7975 if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
8977835c 7976 isymbuf, locsymcount)
8b127cbc 7977 && !resolve_section (symbuf, flinfo->output_bfd->sections,
37b01f6a 7978 result, input_bfd))
d9352518
DB
7979 {
7980 undefined_reference ("symbol", symbuf);
7981 return FALSE;
7982 }
7983 }
7984
7985 return TRUE;
a0c8462f 7986
d9352518
DB
7987 /* All that remains are operators. */
7988
7989#define UNARY_OP(op) \
7990 if (strncmp (sym, #op, strlen (#op)) == 0) \
7991 { \
7992 sym += strlen (#op); \
a0c8462f
AM
7993 if (*sym == ':') \
7994 ++sym; \
0f02bbd9 7995 *symp = sym; \
8b127cbc 7996 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 7997 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
7998 return FALSE; \
7999 if (signed_p) \
0f02bbd9 8000 *result = op ((bfd_signed_vma) a); \
a0c8462f
AM
8001 else \
8002 *result = op a; \
d9352518
DB
8003 return TRUE; \
8004 }
8005
8006#define BINARY_OP(op) \
8007 if (strncmp (sym, #op, strlen (#op)) == 0) \
8008 { \
8009 sym += strlen (#op); \
a0c8462f
AM
8010 if (*sym == ':') \
8011 ++sym; \
0f02bbd9 8012 *symp = sym; \
8b127cbc 8013 if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \
0f02bbd9 8014 isymbuf, locsymcount, signed_p)) \
a0c8462f 8015 return FALSE; \
0f02bbd9 8016 ++*symp; \
8b127cbc 8017 if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \
0f02bbd9 8018 isymbuf, locsymcount, signed_p)) \
a0c8462f
AM
8019 return FALSE; \
8020 if (signed_p) \
0f02bbd9 8021 *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
a0c8462f
AM
8022 else \
8023 *result = a op b; \
d9352518
DB
8024 return TRUE; \
8025 }
8026
8027 default:
8028 UNARY_OP (0-);
8029 BINARY_OP (<<);
8030 BINARY_OP (>>);
8031 BINARY_OP (==);
8032 BINARY_OP (!=);
8033 BINARY_OP (<=);
8034 BINARY_OP (>=);
8035 BINARY_OP (&&);
8036 BINARY_OP (||);
8037 UNARY_OP (~);
8038 UNARY_OP (!);
8039 BINARY_OP (*);
8040 BINARY_OP (/);
8041 BINARY_OP (%);
8042 BINARY_OP (^);
8043 BINARY_OP (|);
8044 BINARY_OP (&);
8045 BINARY_OP (+);
8046 BINARY_OP (-);
8047 BINARY_OP (<);
8048 BINARY_OP (>);
8049#undef UNARY_OP
8050#undef BINARY_OP
8051 _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
8052 bfd_set_error (bfd_error_invalid_operation);
8053 return FALSE;
8054 }
8055}
8056
d9352518 8057static void
a0c8462f
AM
8058put_value (bfd_vma size,
8059 unsigned long chunksz,
8060 bfd *input_bfd,
8061 bfd_vma x,
8062 bfd_byte *location)
d9352518
DB
8063{
8064 location += (size - chunksz);
8065
41cd1ad1 8066 for (; size; size -= chunksz, location -= chunksz)
d9352518
DB
8067 {
8068 switch (chunksz)
8069 {
d9352518
DB
8070 case 1:
8071 bfd_put_8 (input_bfd, x, location);
41cd1ad1 8072 x >>= 8;
d9352518
DB
8073 break;
8074 case 2:
8075 bfd_put_16 (input_bfd, x, location);
41cd1ad1 8076 x >>= 16;
d9352518
DB
8077 break;
8078 case 4:
8079 bfd_put_32 (input_bfd, x, location);
65164438
NC
8080 /* Computed this way because x >>= 32 is undefined if x is a 32-bit value. */
8081 x >>= 16;
8082 x >>= 16;
d9352518 8083 break;
d9352518 8084#ifdef BFD64
41cd1ad1 8085 case 8:
d9352518 8086 bfd_put_64 (input_bfd, x, location);
41cd1ad1
NC
8087 /* Computed this way because x >>= 64 is undefined if x is a 64-bit value. */
8088 x >>= 32;
8089 x >>= 32;
8090 break;
d9352518 8091#endif
41cd1ad1
NC
8092 default:
8093 abort ();
d9352518
DB
8094 break;
8095 }
8096 }
8097}
8098
a0c8462f
AM
8099static bfd_vma
8100get_value (bfd_vma size,
8101 unsigned long chunksz,
8102 bfd *input_bfd,
8103 bfd_byte *location)
d9352518 8104{
9b239e0e 8105 int shift;
d9352518
DB
8106 bfd_vma x = 0;
8107
9b239e0e
NC
8108 /* Sanity checks. */
8109 BFD_ASSERT (chunksz <= sizeof (x)
8110 && size >= chunksz
8111 && chunksz != 0
8112 && (size % chunksz) == 0
8113 && input_bfd != NULL
8114 && location != NULL);
8115
8116 if (chunksz == sizeof (x))
8117 {
8118 BFD_ASSERT (size == chunksz);
8119
8120 /* Make sure that we do not perform an undefined shift operation.
8121 We know that size == chunksz so there will only be one iteration
8122 of the loop below. */
8123 shift = 0;
8124 }
8125 else
8126 shift = 8 * chunksz;
8127
a0c8462f 8128 for (; size; size -= chunksz, location += chunksz)
d9352518
DB
8129 {
8130 switch (chunksz)
8131 {
d9352518 8132 case 1:
9b239e0e 8133 x = (x << shift) | bfd_get_8 (input_bfd, location);
d9352518
DB
8134 break;
8135 case 2:
9b239e0e 8136 x = (x << shift) | bfd_get_16 (input_bfd, location);
d9352518
DB
8137 break;
8138 case 4:
9b239e0e 8139 x = (x << shift) | bfd_get_32 (input_bfd, location);
d9352518 8140 break;
d9352518 8141#ifdef BFD64
9b239e0e
NC
8142 case 8:
8143 x = (x << shift) | bfd_get_64 (input_bfd, location);
d9352518 8144 break;
9b239e0e
NC
8145#endif
8146 default:
8147 abort ();
d9352518
DB
8148 }
8149 }
8150 return x;
8151}
8152
a0c8462f
AM
8153static void
8154decode_complex_addend (unsigned long *start, /* in bits */
8155 unsigned long *oplen, /* in bits */
8156 unsigned long *len, /* in bits */
8157 unsigned long *wordsz, /* in bytes */
8158 unsigned long *chunksz, /* in bytes */
8159 unsigned long *lsb0_p,
8160 unsigned long *signed_p,
8161 unsigned long *trunc_p,
8162 unsigned long encoded)
d9352518
DB
8163{
8164 * start = encoded & 0x3F;
8165 * len = (encoded >> 6) & 0x3F;
8166 * oplen = (encoded >> 12) & 0x3F;
8167 * wordsz = (encoded >> 18) & 0xF;
8168 * chunksz = (encoded >> 22) & 0xF;
8169 * lsb0_p = (encoded >> 27) & 1;
8170 * signed_p = (encoded >> 28) & 1;
8171 * trunc_p = (encoded >> 29) & 1;
8172}
8173
cdfeee4f 8174bfd_reloc_status_type
0f02bbd9 8175bfd_elf_perform_complex_relocation (bfd *input_bfd,
cdfeee4f 8176 asection *input_section ATTRIBUTE_UNUSED,
0f02bbd9
AM
8177 bfd_byte *contents,
8178 Elf_Internal_Rela *rel,
8179 bfd_vma relocation)
d9352518 8180{
0f02bbd9
AM
8181 bfd_vma shift, x, mask;
8182 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
cdfeee4f 8183 bfd_reloc_status_type r;
d9352518
DB
8184
8185 /* Perform this reloc, since it is complex.
8186 (this is not to say that it necessarily refers to a complex
8187 symbol; merely that it is a self-describing CGEN based reloc.
8188 i.e. the addend has the complete reloc information (bit start, end,
a0c8462f 8189 word size, etc) encoded within it.). */
d9352518 8190
a0c8462f
AM
8191 decode_complex_addend (&start, &oplen, &len, &wordsz,
8192 &chunksz, &lsb0_p, &signed_p,
8193 &trunc_p, rel->r_addend);
d9352518
DB
8194
8195 mask = (((1L << (len - 1)) - 1) << 1) | 1;
8196
8197 if (lsb0_p)
8198 shift = (start + 1) - len;
8199 else
8200 shift = (8 * wordsz) - (start + len);
8201
37b01f6a
DG
8202 x = get_value (wordsz, chunksz, input_bfd,
8203 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
d9352518
DB
8204
8205#ifdef DEBUG
8206 printf ("Doing complex reloc: "
8207 "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
8208 "chunksz %ld, start %ld, len %ld, oplen %ld\n"
8209 " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
8210 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
9ccb8af9
AM
8211 oplen, (unsigned long) x, (unsigned long) mask,
8212 (unsigned long) relocation);
d9352518
DB
8213#endif
8214
cdfeee4f 8215 r = bfd_reloc_ok;
d9352518 8216 if (! trunc_p)
cdfeee4f
AM
8217 /* Now do an overflow check. */
8218 r = bfd_check_overflow ((signed_p
8219 ? complain_overflow_signed
8220 : complain_overflow_unsigned),
8221 len, 0, (8 * wordsz),
8222 relocation);
a0c8462f 8223
d9352518
DB
8224 /* Do the deed. */
8225 x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
8226
8227#ifdef DEBUG
8228 printf (" relocation: %8.8lx\n"
8229 " shifted mask: %8.8lx\n"
8230 " shifted/masked reloc: %8.8lx\n"
8231 " result: %8.8lx\n",
9ccb8af9
AM
8232 (unsigned long) relocation, (unsigned long) (mask << shift),
8233 (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
d9352518 8234#endif
37b01f6a
DG
8235 put_value (wordsz, chunksz, input_bfd, x,
8236 contents + rel->r_offset * bfd_octets_per_byte (input_bfd));
cdfeee4f 8237 return r;
d9352518
DB
8238}
8239
0e287786
AM
8240/* Functions to read r_offset from external (target order) reloc
8241 entry. Faster than bfd_getl32 et al, because we let the compiler
8242 know the value is aligned. */
53df40a4 8243
0e287786
AM
8244static bfd_vma
8245ext32l_r_offset (const void *p)
53df40a4
AM
8246{
8247 union aligned32
8248 {
8249 uint32_t v;
8250 unsigned char c[4];
8251 };
8252 const union aligned32 *a
0e287786 8253 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
53df40a4
AM
8254
8255 uint32_t aval = ( (uint32_t) a->c[0]
8256 | (uint32_t) a->c[1] << 8
8257 | (uint32_t) a->c[2] << 16
8258 | (uint32_t) a->c[3] << 24);
0e287786 8259 return aval;
53df40a4
AM
8260}
8261
0e287786
AM
8262static bfd_vma
8263ext32b_r_offset (const void *p)
53df40a4
AM
8264{
8265 union aligned32
8266 {
8267 uint32_t v;
8268 unsigned char c[4];
8269 };
8270 const union aligned32 *a
0e287786 8271 = (const union aligned32 *) &((const Elf32_External_Rel *) p)->r_offset;
53df40a4
AM
8272
8273 uint32_t aval = ( (uint32_t) a->c[0] << 24
8274 | (uint32_t) a->c[1] << 16
8275 | (uint32_t) a->c[2] << 8
8276 | (uint32_t) a->c[3]);
0e287786 8277 return aval;
53df40a4
AM
8278}
8279
8280#ifdef BFD_HOST_64_BIT
0e287786
AM
8281static bfd_vma
8282ext64l_r_offset (const void *p)
53df40a4
AM
8283{
8284 union aligned64
8285 {
8286 uint64_t v;
8287 unsigned char c[8];
8288 };
8289 const union aligned64 *a
0e287786 8290 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
53df40a4
AM
8291
8292 uint64_t aval = ( (uint64_t) a->c[0]
8293 | (uint64_t) a->c[1] << 8
8294 | (uint64_t) a->c[2] << 16
8295 | (uint64_t) a->c[3] << 24
8296 | (uint64_t) a->c[4] << 32
8297 | (uint64_t) a->c[5] << 40
8298 | (uint64_t) a->c[6] << 48
8299 | (uint64_t) a->c[7] << 56);
0e287786 8300 return aval;
53df40a4
AM
8301}
8302
0e287786
AM
8303static bfd_vma
8304ext64b_r_offset (const void *p)
53df40a4
AM
8305{
8306 union aligned64
8307 {
8308 uint64_t v;
8309 unsigned char c[8];
8310 };
8311 const union aligned64 *a
0e287786 8312 = (const union aligned64 *) &((const Elf64_External_Rel *) p)->r_offset;
53df40a4
AM
8313
8314 uint64_t aval = ( (uint64_t) a->c[0] << 56
8315 | (uint64_t) a->c[1] << 48
8316 | (uint64_t) a->c[2] << 40
8317 | (uint64_t) a->c[3] << 32
8318 | (uint64_t) a->c[4] << 24
8319 | (uint64_t) a->c[5] << 16
8320 | (uint64_t) a->c[6] << 8
8321 | (uint64_t) a->c[7]);
0e287786 8322 return aval;
53df40a4
AM
8323}
8324#endif
8325
c152c796
AM
8326/* When performing a relocatable link, the input relocations are
8327 preserved. But, if they reference global symbols, the indices
d4730f92
BS
8328 referenced must be updated. Update all the relocations found in
8329 RELDATA. */
c152c796 8330
bca6d0e3 8331static bfd_boolean
c152c796 8332elf_link_adjust_relocs (bfd *abfd,
9eaff861 8333 asection *sec,
28dbcedc
AM
8334 struct bfd_elf_section_reloc_data *reldata,
8335 bfd_boolean sort)
c152c796
AM
8336{
8337 unsigned int i;
8338 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8339 bfd_byte *erela;
8340 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8341 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8342 bfd_vma r_type_mask;
8343 int r_sym_shift;
d4730f92
BS
8344 unsigned int count = reldata->count;
8345 struct elf_link_hash_entry **rel_hash = reldata->hashes;
c152c796 8346
d4730f92 8347 if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
c152c796
AM
8348 {
8349 swap_in = bed->s->swap_reloc_in;
8350 swap_out = bed->s->swap_reloc_out;
8351 }
d4730f92 8352 else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
c152c796
AM
8353 {
8354 swap_in = bed->s->swap_reloca_in;
8355 swap_out = bed->s->swap_reloca_out;
8356 }
8357 else
8358 abort ();
8359
8360 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
8361 abort ();
8362
8363 if (bed->s->arch_size == 32)
8364 {
8365 r_type_mask = 0xff;
8366 r_sym_shift = 8;
8367 }
8368 else
8369 {
8370 r_type_mask = 0xffffffff;
8371 r_sym_shift = 32;
8372 }
8373
d4730f92
BS
8374 erela = reldata->hdr->contents;
8375 for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
c152c796
AM
8376 {
8377 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8378 unsigned int j;
8379
8380 if (*rel_hash == NULL)
8381 continue;
8382
8383 BFD_ASSERT ((*rel_hash)->indx >= 0);
8384
8385 (*swap_in) (abfd, erela, irela);
8386 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8387 irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8388 | (irela[j].r_info & r_type_mask));
8389 (*swap_out) (abfd, irela, erela);
8390 }
53df40a4 8391
9eaff861
AO
8392 if (bed->elf_backend_update_relocs)
8393 (*bed->elf_backend_update_relocs) (sec, reldata);
8394
0e287786 8395 if (sort && count != 0)
53df40a4 8396 {
0e287786
AM
8397 bfd_vma (*ext_r_off) (const void *);
8398 bfd_vma r_off;
8399 size_t elt_size;
8400 bfd_byte *base, *end, *p, *loc;
bca6d0e3 8401 bfd_byte *buf = NULL;
28dbcedc
AM
8402
8403 if (bed->s->arch_size == 32)
8404 {
8405 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
0e287786 8406 ext_r_off = ext32l_r_offset;
28dbcedc 8407 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
0e287786 8408 ext_r_off = ext32b_r_offset;
28dbcedc
AM
8409 else
8410 abort ();
8411 }
53df40a4 8412 else
28dbcedc 8413 {
53df40a4 8414#ifdef BFD_HOST_64_BIT
28dbcedc 8415 if (abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
0e287786 8416 ext_r_off = ext64l_r_offset;
28dbcedc 8417 else if (abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
0e287786 8418 ext_r_off = ext64b_r_offset;
28dbcedc 8419 else
53df40a4 8420#endif
28dbcedc
AM
8421 abort ();
8422 }
0e287786 8423
bca6d0e3
AM
8424 /* Must use a stable sort here. A modified insertion sort,
8425 since the relocs are mostly sorted already. */
0e287786
AM
8426 elt_size = reldata->hdr->sh_entsize;
8427 base = reldata->hdr->contents;
8428 end = base + count * elt_size;
bca6d0e3 8429 if (elt_size > sizeof (Elf64_External_Rela))
0e287786
AM
8430 abort ();
8431
8432 /* Ensure the first element is lowest. This acts as a sentinel,
8433 speeding the main loop below. */
8434 r_off = (*ext_r_off) (base);
8435 for (p = loc = base; (p += elt_size) < end; )
8436 {
8437 bfd_vma r_off2 = (*ext_r_off) (p);
8438 if (r_off > r_off2)
8439 {
8440 r_off = r_off2;
8441 loc = p;
8442 }
8443 }
8444 if (loc != base)
8445 {
8446 /* Don't just swap *base and *loc as that changes the order
8447 of the original base[0] and base[1] if they happen to
8448 have the same r_offset. */
bca6d0e3
AM
8449 bfd_byte onebuf[sizeof (Elf64_External_Rela)];
8450 memcpy (onebuf, loc, elt_size);
0e287786 8451 memmove (base + elt_size, base, loc - base);
bca6d0e3 8452 memcpy (base, onebuf, elt_size);
0e287786
AM
8453 }
8454
b29b8669 8455 for (p = base + elt_size; (p += elt_size) < end; )
0e287786
AM
8456 {
8457 /* base to p is sorted, *p is next to insert. */
8458 r_off = (*ext_r_off) (p);
8459 /* Search the sorted region for location to insert. */
8460 loc = p - elt_size;
8461 while (r_off < (*ext_r_off) (loc))
8462 loc -= elt_size;
8463 loc += elt_size;
8464 if (loc != p)
8465 {
bca6d0e3
AM
8466 /* Chances are there is a run of relocs to insert here,
8467 from one of more input files. Files are not always
8468 linked in order due to the way elf_link_input_bfd is
8469 called. See pr17666. */
8470 size_t sortlen = p - loc;
8471 bfd_vma r_off2 = (*ext_r_off) (loc);
8472 size_t runlen = elt_size;
8473 size_t buf_size = 96 * 1024;
8474 while (p + runlen < end
8475 && (sortlen <= buf_size
8476 || runlen + elt_size <= buf_size)
8477 && r_off2 > (*ext_r_off) (p + runlen))
8478 runlen += elt_size;
8479 if (buf == NULL)
8480 {
8481 buf = bfd_malloc (buf_size);
8482 if (buf == NULL)
8483 return FALSE;
8484 }
8485 if (runlen < sortlen)
8486 {
8487 memcpy (buf, p, runlen);
8488 memmove (loc + runlen, loc, sortlen);
8489 memcpy (loc, buf, runlen);
8490 }
8491 else
8492 {
8493 memcpy (buf, loc, sortlen);
8494 memmove (loc, p, runlen);
8495 memcpy (loc + runlen, buf, sortlen);
8496 }
b29b8669 8497 p += runlen - elt_size;
0e287786
AM
8498 }
8499 }
8500 /* Hashes are no longer valid. */
28dbcedc
AM
8501 free (reldata->hashes);
8502 reldata->hashes = NULL;
bca6d0e3 8503 free (buf);
53df40a4 8504 }
bca6d0e3 8505 return TRUE;
c152c796
AM
8506}
8507
8508struct elf_link_sort_rela
8509{
8510 union {
8511 bfd_vma offset;
8512 bfd_vma sym_mask;
8513 } u;
8514 enum elf_reloc_type_class type;
8515 /* We use this as an array of size int_rels_per_ext_rel. */
8516 Elf_Internal_Rela rela[1];
8517};
8518
8519static int
8520elf_link_sort_cmp1 (const void *A, const void *B)
8521{
a50b1753
NC
8522 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8523 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796
AM
8524 int relativea, relativeb;
8525
8526 relativea = a->type == reloc_class_relative;
8527 relativeb = b->type == reloc_class_relative;
8528
8529 if (relativea < relativeb)
8530 return 1;
8531 if (relativea > relativeb)
8532 return -1;
8533 if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8534 return -1;
8535 if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8536 return 1;
8537 if (a->rela->r_offset < b->rela->r_offset)
8538 return -1;
8539 if (a->rela->r_offset > b->rela->r_offset)
8540 return 1;
8541 return 0;
8542}
8543
8544static int
8545elf_link_sort_cmp2 (const void *A, const void *B)
8546{
a50b1753
NC
8547 const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8548 const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
c152c796 8549
7e612e98 8550 if (a->type < b->type)
c152c796 8551 return -1;
7e612e98 8552 if (a->type > b->type)
c152c796 8553 return 1;
7e612e98 8554 if (a->u.offset < b->u.offset)
c152c796 8555 return -1;
7e612e98 8556 if (a->u.offset > b->u.offset)
c152c796
AM
8557 return 1;
8558 if (a->rela->r_offset < b->rela->r_offset)
8559 return -1;
8560 if (a->rela->r_offset > b->rela->r_offset)
8561 return 1;
8562 return 0;
8563}
8564
8565static size_t
8566elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
8567{
3410fea8 8568 asection *dynamic_relocs;
fc66a176
L
8569 asection *rela_dyn;
8570 asection *rel_dyn;
c152c796
AM
8571 bfd_size_type count, size;
8572 size_t i, ret, sort_elt, ext_size;
8573 bfd_byte *sort, *s_non_relative, *p;
8574 struct elf_link_sort_rela *sq;
8575 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8576 int i2e = bed->s->int_rels_per_ext_rel;
c8e44c6d 8577 unsigned int opb = bfd_octets_per_byte (abfd);
c152c796
AM
8578 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8579 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8580 struct bfd_link_order *lo;
8581 bfd_vma r_sym_mask;
3410fea8 8582 bfd_boolean use_rela;
c152c796 8583
3410fea8
NC
8584 /* Find a dynamic reloc section. */
8585 rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
8586 rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn");
8587 if (rela_dyn != NULL && rela_dyn->size > 0
8588 && rel_dyn != NULL && rel_dyn->size > 0)
c152c796 8589 {
3410fea8
NC
8590 bfd_boolean use_rela_initialised = FALSE;
8591
8592 /* This is just here to stop gcc from complaining.
c8e44c6d 8593 Its initialization checking code is not perfect. */
3410fea8
NC
8594 use_rela = TRUE;
8595
8596 /* Both sections are present. Examine the sizes
8597 of the indirect sections to help us choose. */
8598 for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8599 if (lo->type == bfd_indirect_link_order)
8600 {
8601 asection *o = lo->u.indirect.section;
8602
8603 if ((o->size % bed->s->sizeof_rela) == 0)
8604 {
8605 if ((o->size % bed->s->sizeof_rel) == 0)
8606 /* Section size is divisible by both rel and rela sizes.
8607 It is of no help to us. */
8608 ;
8609 else
8610 {
8611 /* Section size is only divisible by rela. */
8612 if (use_rela_initialised && (use_rela == FALSE))
8613 {
c8e44c6d
AM
8614 _bfd_error_handler (_("%B: Unable to sort relocs - "
8615 "they are in more than one size"),
8616 abfd);
3410fea8
NC
8617 bfd_set_error (bfd_error_invalid_operation);
8618 return 0;
8619 }
8620 else
8621 {
8622 use_rela = TRUE;
8623 use_rela_initialised = TRUE;
8624 }
8625 }
8626 }
8627 else if ((o->size % bed->s->sizeof_rel) == 0)
8628 {
8629 /* Section size is only divisible by rel. */
8630 if (use_rela_initialised && (use_rela == TRUE))
8631 {
c8e44c6d
AM
8632 _bfd_error_handler (_("%B: Unable to sort relocs - "
8633 "they are in more than one size"),
8634 abfd);
3410fea8
NC
8635 bfd_set_error (bfd_error_invalid_operation);
8636 return 0;
8637 }
8638 else
8639 {
8640 use_rela = FALSE;
8641 use_rela_initialised = TRUE;
8642 }
8643 }
8644 else
8645 {
c8e44c6d
AM
8646 /* The section size is not divisible by either -
8647 something is wrong. */
8648 _bfd_error_handler (_("%B: Unable to sort relocs - "
8649 "they are of an unknown size"), abfd);
3410fea8
NC
8650 bfd_set_error (bfd_error_invalid_operation);
8651 return 0;
8652 }
8653 }
8654
8655 for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8656 if (lo->type == bfd_indirect_link_order)
8657 {
8658 asection *o = lo->u.indirect.section;
8659
8660 if ((o->size % bed->s->sizeof_rela) == 0)
8661 {
8662 if ((o->size % bed->s->sizeof_rel) == 0)
8663 /* Section size is divisible by both rel and rela sizes.
8664 It is of no help to us. */
8665 ;
8666 else
8667 {
8668 /* Section size is only divisible by rela. */
8669 if (use_rela_initialised && (use_rela == FALSE))
8670 {
c8e44c6d
AM
8671 _bfd_error_handler (_("%B: Unable to sort relocs - "
8672 "they are in more than one size"),
8673 abfd);
3410fea8
NC
8674 bfd_set_error (bfd_error_invalid_operation);
8675 return 0;
8676 }
8677 else
8678 {
8679 use_rela = TRUE;
8680 use_rela_initialised = TRUE;
8681 }
8682 }
8683 }
8684 else if ((o->size % bed->s->sizeof_rel) == 0)
8685 {
8686 /* Section size is only divisible by rel. */
8687 if (use_rela_initialised && (use_rela == TRUE))
8688 {
c8e44c6d
AM
8689 _bfd_error_handler (_("%B: Unable to sort relocs - "
8690 "they are in more than one size"),
8691 abfd);
3410fea8
NC
8692 bfd_set_error (bfd_error_invalid_operation);
8693 return 0;
8694 }
8695 else
8696 {
8697 use_rela = FALSE;
8698 use_rela_initialised = TRUE;
8699 }
8700 }
8701 else
8702 {
c8e44c6d
AM
8703 /* The section size is not divisible by either -
8704 something is wrong. */
8705 _bfd_error_handler (_("%B: Unable to sort relocs - "
8706 "they are of an unknown size"), abfd);
3410fea8
NC
8707 bfd_set_error (bfd_error_invalid_operation);
8708 return 0;
8709 }
8710 }
8711
8712 if (! use_rela_initialised)
8713 /* Make a guess. */
8714 use_rela = TRUE;
c152c796 8715 }
fc66a176
L
8716 else if (rela_dyn != NULL && rela_dyn->size > 0)
8717 use_rela = TRUE;
8718 else if (rel_dyn != NULL && rel_dyn->size > 0)
3410fea8 8719 use_rela = FALSE;
c152c796 8720 else
fc66a176 8721 return 0;
3410fea8
NC
8722
8723 if (use_rela)
c152c796 8724 {
3410fea8 8725 dynamic_relocs = rela_dyn;
c152c796
AM
8726 ext_size = bed->s->sizeof_rela;
8727 swap_in = bed->s->swap_reloca_in;
8728 swap_out = bed->s->swap_reloca_out;
8729 }
3410fea8
NC
8730 else
8731 {
8732 dynamic_relocs = rel_dyn;
8733 ext_size = bed->s->sizeof_rel;
8734 swap_in = bed->s->swap_reloc_in;
8735 swap_out = bed->s->swap_reloc_out;
8736 }
c152c796
AM
8737
8738 size = 0;
3410fea8 8739 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796 8740 if (lo->type == bfd_indirect_link_order)
3410fea8 8741 size += lo->u.indirect.section->size;
c152c796 8742
3410fea8 8743 if (size != dynamic_relocs->size)
c152c796
AM
8744 return 0;
8745
8746 sort_elt = (sizeof (struct elf_link_sort_rela)
8747 + (i2e - 1) * sizeof (Elf_Internal_Rela));
3410fea8
NC
8748
8749 count = dynamic_relocs->size / ext_size;
5e486aa1
NC
8750 if (count == 0)
8751 return 0;
a50b1753 8752 sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
3410fea8 8753
c152c796
AM
8754 if (sort == NULL)
8755 {
8756 (*info->callbacks->warning)
8757 (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
8758 return 0;
8759 }
8760
8761 if (bed->s->arch_size == 32)
8762 r_sym_mask = ~(bfd_vma) 0xff;
8763 else
8764 r_sym_mask = ~(bfd_vma) 0xffffffff;
8765
3410fea8 8766 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
8767 if (lo->type == bfd_indirect_link_order)
8768 {
8769 bfd_byte *erel, *erelend;
8770 asection *o = lo->u.indirect.section;
8771
1da212d6
AM
8772 if (o->contents == NULL && o->size != 0)
8773 {
8774 /* This is a reloc section that is being handled as a normal
8775 section. See bfd_section_from_shdr. We can't combine
8776 relocs in this case. */
8777 free (sort);
8778 return 0;
8779 }
c152c796 8780 erel = o->contents;
eea6121a 8781 erelend = o->contents + o->size;
c8e44c6d 8782 p = sort + o->output_offset * opb / ext_size * sort_elt;
3410fea8 8783
c152c796
AM
8784 while (erel < erelend)
8785 {
8786 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3410fea8 8787
c152c796 8788 (*swap_in) (abfd, erel, s->rela);
7e612e98 8789 s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
c152c796
AM
8790 s->u.sym_mask = r_sym_mask;
8791 p += sort_elt;
8792 erel += ext_size;
8793 }
8794 }
8795
8796 qsort (sort, count, sort_elt, elf_link_sort_cmp1);
8797
8798 for (i = 0, p = sort; i < count; i++, p += sort_elt)
8799 {
8800 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8801 if (s->type != reloc_class_relative)
8802 break;
8803 }
8804 ret = i;
8805 s_non_relative = p;
8806
8807 sq = (struct elf_link_sort_rela *) s_non_relative;
8808 for (; i < count; i++, p += sort_elt)
8809 {
8810 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
8811 if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
8812 sq = sp;
8813 sp->u.offset = sq->rela->r_offset;
8814 }
8815
8816 qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
8817
c8e44c6d
AM
8818 struct elf_link_hash_table *htab = elf_hash_table (info);
8819 if (htab->srelplt && htab->srelplt->output_section == dynamic_relocs)
8820 {
8821 /* We have plt relocs in .rela.dyn. */
8822 sq = (struct elf_link_sort_rela *) sort;
8823 for (i = 0; i < count; i++)
8824 if (sq[count - i - 1].type != reloc_class_plt)
8825 break;
8826 if (i != 0 && htab->srelplt->size == i * ext_size)
8827 {
8828 struct bfd_link_order **plo;
8829 /* Put srelplt link_order last. This is so the output_offset
8830 set in the next loop is correct for DT_JMPREL. */
8831 for (plo = &dynamic_relocs->map_head.link_order; *plo != NULL; )
8832 if ((*plo)->type == bfd_indirect_link_order
8833 && (*plo)->u.indirect.section == htab->srelplt)
8834 {
8835 lo = *plo;
8836 *plo = lo->next;
8837 }
8838 else
8839 plo = &(*plo)->next;
8840 *plo = lo;
8841 lo->next = NULL;
8842 dynamic_relocs->map_tail.link_order = lo;
8843 }
8844 }
8845
8846 p = sort;
3410fea8 8847 for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
c152c796
AM
8848 if (lo->type == bfd_indirect_link_order)
8849 {
8850 bfd_byte *erel, *erelend;
8851 asection *o = lo->u.indirect.section;
8852
8853 erel = o->contents;
eea6121a 8854 erelend = o->contents + o->size;
c8e44c6d 8855 o->output_offset = (p - sort) / sort_elt * ext_size / opb;
c152c796
AM
8856 while (erel < erelend)
8857 {
8858 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8859 (*swap_out) (abfd, s->rela, erel);
8860 p += sort_elt;
8861 erel += ext_size;
8862 }
8863 }
8864
8865 free (sort);
3410fea8 8866 *psec = dynamic_relocs;
c152c796
AM
8867 return ret;
8868}
8869
ef10c3ac 8870/* Add a symbol to the output symbol string table. */
c152c796 8871
6e0b88f1 8872static int
ef10c3ac
L
8873elf_link_output_symstrtab (struct elf_final_link_info *flinfo,
8874 const char *name,
8875 Elf_Internal_Sym *elfsym,
8876 asection *input_sec,
8877 struct elf_link_hash_entry *h)
c152c796 8878{
6e0b88f1 8879 int (*output_symbol_hook)
c152c796
AM
8880 (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
8881 struct elf_link_hash_entry *);
ef10c3ac 8882 struct elf_link_hash_table *hash_table;
c152c796 8883 const struct elf_backend_data *bed;
ef10c3ac 8884 bfd_size_type strtabsize;
c152c796 8885
8539e4e8
AM
8886 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
8887
8b127cbc 8888 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796
AM
8889 output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
8890 if (output_symbol_hook != NULL)
8891 {
8b127cbc 8892 int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
6e0b88f1
AM
8893 if (ret != 1)
8894 return ret;
c152c796
AM
8895 }
8896
ef10c3ac
L
8897 if (name == NULL
8898 || *name == '\0'
8899 || (input_sec->flags & SEC_EXCLUDE))
8900 elfsym->st_name = (unsigned long) -1;
c152c796
AM
8901 else
8902 {
ef10c3ac
L
8903 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8904 to get the final offset for st_name. */
8905 elfsym->st_name
8906 = (unsigned long) _bfd_elf_strtab_add (flinfo->symstrtab,
8907 name, FALSE);
c152c796 8908 if (elfsym->st_name == (unsigned long) -1)
6e0b88f1 8909 return 0;
c152c796
AM
8910 }
8911
ef10c3ac
L
8912 hash_table = elf_hash_table (flinfo->info);
8913 strtabsize = hash_table->strtabsize;
8914 if (strtabsize <= hash_table->strtabcount)
c152c796 8915 {
ef10c3ac
L
8916 strtabsize += strtabsize;
8917 hash_table->strtabsize = strtabsize;
8918 strtabsize *= sizeof (*hash_table->strtab);
8919 hash_table->strtab
8920 = (struct elf_sym_strtab *) bfd_realloc (hash_table->strtab,
8921 strtabsize);
8922 if (hash_table->strtab == NULL)
6e0b88f1 8923 return 0;
c152c796 8924 }
ef10c3ac
L
8925 hash_table->strtab[hash_table->strtabcount].sym = *elfsym;
8926 hash_table->strtab[hash_table->strtabcount].dest_index
8927 = hash_table->strtabcount;
8928 hash_table->strtab[hash_table->strtabcount].destshndx_index
8929 = flinfo->symshndxbuf ? bfd_get_symcount (flinfo->output_bfd) : 0;
8930
8931 bfd_get_symcount (flinfo->output_bfd) += 1;
8932 hash_table->strtabcount += 1;
8933
8934 return 1;
8935}
8936
8937/* Swap symbols out to the symbol table and flush the output symbols to
8938 the file. */
8939
8940static bfd_boolean
8941elf_link_swap_symbols_out (struct elf_final_link_info *flinfo)
8942{
8943 struct elf_link_hash_table *hash_table = elf_hash_table (flinfo->info);
ef53be89
AM
8944 bfd_size_type amt;
8945 size_t i;
ef10c3ac
L
8946 const struct elf_backend_data *bed;
8947 bfd_byte *symbuf;
8948 Elf_Internal_Shdr *hdr;
8949 file_ptr pos;
8950 bfd_boolean ret;
8951
8952 if (!hash_table->strtabcount)
8953 return TRUE;
8954
8955 BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
8956
8957 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 8958
ef10c3ac
L
8959 amt = bed->s->sizeof_sym * hash_table->strtabcount;
8960 symbuf = (bfd_byte *) bfd_malloc (amt);
8961 if (symbuf == NULL)
8962 return FALSE;
1b786873 8963
ef10c3ac 8964 if (flinfo->symshndxbuf)
c152c796 8965 {
ef53be89
AM
8966 amt = sizeof (Elf_External_Sym_Shndx);
8967 amt *= bfd_get_symcount (flinfo->output_bfd);
ef10c3ac
L
8968 flinfo->symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
8969 if (flinfo->symshndxbuf == NULL)
c152c796 8970 {
ef10c3ac
L
8971 free (symbuf);
8972 return FALSE;
c152c796 8973 }
c152c796
AM
8974 }
8975
ef10c3ac
L
8976 for (i = 0; i < hash_table->strtabcount; i++)
8977 {
8978 struct elf_sym_strtab *elfsym = &hash_table->strtab[i];
8979 if (elfsym->sym.st_name == (unsigned long) -1)
8980 elfsym->sym.st_name = 0;
8981 else
8982 elfsym->sym.st_name
8983 = (unsigned long) _bfd_elf_strtab_offset (flinfo->symstrtab,
8984 elfsym->sym.st_name);
8985 bed->s->swap_symbol_out (flinfo->output_bfd, &elfsym->sym,
8986 ((bfd_byte *) symbuf
8987 + (elfsym->dest_index
8988 * bed->s->sizeof_sym)),
8989 (flinfo->symshndxbuf
8990 + elfsym->destshndx_index));
8991 }
8992
8993 hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
8994 pos = hdr->sh_offset + hdr->sh_size;
8995 amt = hash_table->strtabcount * bed->s->sizeof_sym;
8996 if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) == 0
8997 && bfd_bwrite (symbuf, amt, flinfo->output_bfd) == amt)
8998 {
8999 hdr->sh_size += amt;
9000 ret = TRUE;
9001 }
9002 else
9003 ret = FALSE;
c152c796 9004
ef10c3ac
L
9005 free (symbuf);
9006
9007 free (hash_table->strtab);
9008 hash_table->strtab = NULL;
9009
9010 return ret;
c152c796
AM
9011}
9012
c0d5a53d
L
9013/* Return TRUE if the dynamic symbol SYM in ABFD is supported. */
9014
9015static bfd_boolean
9016check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
9017{
4fbb74a6
AM
9018 if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
9019 && sym->st_shndx < SHN_LORESERVE)
c0d5a53d
L
9020 {
9021 /* The gABI doesn't support dynamic symbols in output sections
a0c8462f 9022 beyond 64k. */
4eca0228 9023 _bfd_error_handler
c0d5a53d 9024 (_("%B: Too many sections: %d (>= %d)"),
4fbb74a6 9025 abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
c0d5a53d
L
9026 bfd_set_error (bfd_error_nonrepresentable_section);
9027 return FALSE;
9028 }
9029 return TRUE;
9030}
9031
c152c796
AM
9032/* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
9033 allowing an unsatisfied unversioned symbol in the DSO to match a
9034 versioned symbol that would normally require an explicit version.
9035 We also handle the case that a DSO references a hidden symbol
9036 which may be satisfied by a versioned symbol in another DSO. */
9037
9038static bfd_boolean
9039elf_link_check_versioned_symbol (struct bfd_link_info *info,
9040 const struct elf_backend_data *bed,
9041 struct elf_link_hash_entry *h)
9042{
9043 bfd *abfd;
9044 struct elf_link_loaded_list *loaded;
9045
9046 if (!is_elf_hash_table (info->hash))
9047 return FALSE;
9048
90c984fc
L
9049 /* Check indirect symbol. */
9050 while (h->root.type == bfd_link_hash_indirect)
9051 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9052
c152c796
AM
9053 switch (h->root.type)
9054 {
9055 default:
9056 abfd = NULL;
9057 break;
9058
9059 case bfd_link_hash_undefined:
9060 case bfd_link_hash_undefweak:
9061 abfd = h->root.u.undef.abfd;
f4ab0e2d
L
9062 if (abfd == NULL
9063 || (abfd->flags & DYNAMIC) == 0
e56f61be 9064 || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
c152c796
AM
9065 return FALSE;
9066 break;
9067
9068 case bfd_link_hash_defined:
9069 case bfd_link_hash_defweak:
9070 abfd = h->root.u.def.section->owner;
9071 break;
9072
9073 case bfd_link_hash_common:
9074 abfd = h->root.u.c.p->section->owner;
9075 break;
9076 }
9077 BFD_ASSERT (abfd != NULL);
9078
9079 for (loaded = elf_hash_table (info)->loaded;
9080 loaded != NULL;
9081 loaded = loaded->next)
9082 {
9083 bfd *input;
9084 Elf_Internal_Shdr *hdr;
ef53be89
AM
9085 size_t symcount;
9086 size_t extsymcount;
9087 size_t extsymoff;
c152c796
AM
9088 Elf_Internal_Shdr *versymhdr;
9089 Elf_Internal_Sym *isym;
9090 Elf_Internal_Sym *isymend;
9091 Elf_Internal_Sym *isymbuf;
9092 Elf_External_Versym *ever;
9093 Elf_External_Versym *extversym;
9094
9095 input = loaded->abfd;
9096
9097 /* We check each DSO for a possible hidden versioned definition. */
9098 if (input == abfd
9099 || (input->flags & DYNAMIC) == 0
9100 || elf_dynversym (input) == 0)
9101 continue;
9102
9103 hdr = &elf_tdata (input)->dynsymtab_hdr;
9104
9105 symcount = hdr->sh_size / bed->s->sizeof_sym;
9106 if (elf_bad_symtab (input))
9107 {
9108 extsymcount = symcount;
9109 extsymoff = 0;
9110 }
9111 else
9112 {
9113 extsymcount = symcount - hdr->sh_info;
9114 extsymoff = hdr->sh_info;
9115 }
9116
9117 if (extsymcount == 0)
9118 continue;
9119
9120 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
9121 NULL, NULL, NULL);
9122 if (isymbuf == NULL)
9123 return FALSE;
9124
9125 /* Read in any version definitions. */
9126 versymhdr = &elf_tdata (input)->dynversym_hdr;
a50b1753 9127 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
c152c796
AM
9128 if (extversym == NULL)
9129 goto error_ret;
9130
9131 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
9132 || (bfd_bread (extversym, versymhdr->sh_size, input)
9133 != versymhdr->sh_size))
9134 {
9135 free (extversym);
9136 error_ret:
9137 free (isymbuf);
9138 return FALSE;
9139 }
9140
9141 ever = extversym + extsymoff;
9142 isymend = isymbuf + extsymcount;
9143 for (isym = isymbuf; isym < isymend; isym++, ever++)
9144 {
9145 const char *name;
9146 Elf_Internal_Versym iver;
9147 unsigned short version_index;
9148
9149 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
9150 || isym->st_shndx == SHN_UNDEF)
9151 continue;
9152
9153 name = bfd_elf_string_from_elf_section (input,
9154 hdr->sh_link,
9155 isym->st_name);
9156 if (strcmp (name, h->root.root.string) != 0)
9157 continue;
9158
9159 _bfd_elf_swap_versym_in (input, ever, &iver);
9160
d023c380
L
9161 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
9162 && !(h->def_regular
9163 && h->forced_local))
c152c796
AM
9164 {
9165 /* If we have a non-hidden versioned sym, then it should
d023c380
L
9166 have provided a definition for the undefined sym unless
9167 it is defined in a non-shared object and forced local.
9168 */
c152c796
AM
9169 abort ();
9170 }
9171
9172 version_index = iver.vs_vers & VERSYM_VERSION;
9173 if (version_index == 1 || version_index == 2)
9174 {
9175 /* This is the base or first version. We can use it. */
9176 free (extversym);
9177 free (isymbuf);
9178 return TRUE;
9179 }
9180 }
9181
9182 free (extversym);
9183 free (isymbuf);
9184 }
9185
9186 return FALSE;
9187}
9188
b8871f35
L
9189/* Convert ELF common symbol TYPE. */
9190
9191static int
9192elf_link_convert_common_type (struct bfd_link_info *info, int type)
9193{
9194 /* Commom symbol can only appear in relocatable link. */
9195 if (!bfd_link_relocatable (info))
9196 abort ();
9197 switch (info->elf_stt_common)
9198 {
9199 case unchanged:
9200 break;
9201 case elf_stt_common:
9202 type = STT_COMMON;
9203 break;
9204 case no_elf_stt_common:
9205 type = STT_OBJECT;
9206 break;
9207 }
9208 return type;
9209}
9210
c152c796
AM
9211/* Add an external symbol to the symbol table. This is called from
9212 the hash table traversal routine. When generating a shared object,
9213 we go through the symbol table twice. The first time we output
9214 anything that might have been forced to local scope in a version
9215 script. The second time we output the symbols that are still
9216 global symbols. */
9217
9218static bfd_boolean
7686d77d 9219elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
c152c796 9220{
7686d77d 9221 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
a50b1753 9222 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8b127cbc 9223 struct elf_final_link_info *flinfo = eoinfo->flinfo;
c152c796
AM
9224 bfd_boolean strip;
9225 Elf_Internal_Sym sym;
9226 asection *input_sec;
9227 const struct elf_backend_data *bed;
6e0b88f1
AM
9228 long indx;
9229 int ret;
b8871f35 9230 unsigned int type;
6e33951e
L
9231 /* A symbol is bound locally if it is forced local or it is locally
9232 defined, hidden versioned, not referenced by shared library and
9233 not exported when linking executable. */
9234 bfd_boolean local_bind = (h->forced_local
0e1862bb 9235 || (bfd_link_executable (flinfo->info)
6e33951e
L
9236 && !flinfo->info->export_dynamic
9237 && !h->dynamic
9238 && !h->ref_dynamic
9239 && h->def_regular
422f1182 9240 && h->versioned == versioned_hidden));
c152c796
AM
9241
9242 if (h->root.type == bfd_link_hash_warning)
9243 {
9244 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9245 if (h->root.type == bfd_link_hash_new)
9246 return TRUE;
9247 }
9248
9249 /* Decide whether to output this symbol in this pass. */
9250 if (eoinfo->localsyms)
9251 {
6e33951e 9252 if (!local_bind)
c152c796
AM
9253 return TRUE;
9254 }
9255 else
9256 {
6e33951e 9257 if (local_bind)
c152c796
AM
9258 return TRUE;
9259 }
9260
8b127cbc 9261 bed = get_elf_backend_data (flinfo->output_bfd);
c152c796 9262
12ac1cf5 9263 if (h->root.type == bfd_link_hash_undefined)
c152c796 9264 {
12ac1cf5
NC
9265 /* If we have an undefined symbol reference here then it must have
9266 come from a shared library that is being linked in. (Undefined
98da7939
L
9267 references in regular files have already been handled unless
9268 they are in unreferenced sections which are removed by garbage
9269 collection). */
12ac1cf5
NC
9270 bfd_boolean ignore_undef = FALSE;
9271
9272 /* Some symbols may be special in that the fact that they're
9273 undefined can be safely ignored - let backend determine that. */
9274 if (bed->elf_backend_ignore_undef_symbol)
9275 ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
9276
9277 /* If we are reporting errors for this situation then do so now. */
89a2ee5a 9278 if (!ignore_undef
12ac1cf5 9279 && h->ref_dynamic
8b127cbc
AM
9280 && (!h->ref_regular || flinfo->info->gc_sections)
9281 && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
9282 && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
1a72702b
AM
9283 (*flinfo->info->callbacks->undefined_symbol)
9284 (flinfo->info, h->root.root.string,
9285 h->ref_regular ? NULL : h->root.u.undef.abfd,
9286 NULL, 0,
9287 flinfo->info->unresolved_syms_in_shared_libs == RM_GENERATE_ERROR);
97196564
L
9288
9289 /* Strip a global symbol defined in a discarded section. */
9290 if (h->indx == -3)
9291 return TRUE;
c152c796
AM
9292 }
9293
9294 /* We should also warn if a forced local symbol is referenced from
9295 shared libraries. */
0e1862bb 9296 if (bfd_link_executable (flinfo->info)
f5385ebf
AM
9297 && h->forced_local
9298 && h->ref_dynamic
371a5866 9299 && h->def_regular
f5385ebf 9300 && !h->dynamic_def
ee659f1f 9301 && h->ref_dynamic_nonweak
8b127cbc 9302 && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
c152c796 9303 {
17d078c5
AM
9304 bfd *def_bfd;
9305 const char *msg;
90c984fc
L
9306 struct elf_link_hash_entry *hi = h;
9307
9308 /* Check indirect symbol. */
9309 while (hi->root.type == bfd_link_hash_indirect)
9310 hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
17d078c5
AM
9311
9312 if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
9313 msg = _("%B: internal symbol `%s' in %B is referenced by DSO");
9314 else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
9315 msg = _("%B: hidden symbol `%s' in %B is referenced by DSO");
9316 else
9317 msg = _("%B: local symbol `%s' in %B is referenced by DSO");
8b127cbc 9318 def_bfd = flinfo->output_bfd;
90c984fc
L
9319 if (hi->root.u.def.section != bfd_abs_section_ptr)
9320 def_bfd = hi->root.u.def.section->owner;
4eca0228
AM
9321 _bfd_error_handler (msg, flinfo->output_bfd, def_bfd,
9322 h->root.root.string);
17d078c5 9323 bfd_set_error (bfd_error_bad_value);
c152c796
AM
9324 eoinfo->failed = TRUE;
9325 return FALSE;
9326 }
9327
9328 /* We don't want to output symbols that have never been mentioned by
9329 a regular file, or that we have been told to strip. However, if
9330 h->indx is set to -2, the symbol is used by a reloc and we must
9331 output it. */
d983c8c5 9332 strip = FALSE;
c152c796 9333 if (h->indx == -2)
d983c8c5 9334 ;
f5385ebf 9335 else if ((h->def_dynamic
77cfaee6
AM
9336 || h->ref_dynamic
9337 || h->root.type == bfd_link_hash_new)
f5385ebf
AM
9338 && !h->def_regular
9339 && !h->ref_regular)
c152c796 9340 strip = TRUE;
8b127cbc 9341 else if (flinfo->info->strip == strip_all)
c152c796 9342 strip = TRUE;
8b127cbc
AM
9343 else if (flinfo->info->strip == strip_some
9344 && bfd_hash_lookup (flinfo->info->keep_hash,
c152c796
AM
9345 h->root.root.string, FALSE, FALSE) == NULL)
9346 strip = TRUE;
d56d55e7
AM
9347 else if ((h->root.type == bfd_link_hash_defined
9348 || h->root.type == bfd_link_hash_defweak)
8b127cbc 9349 && ((flinfo->info->strip_discarded
dbaa2011 9350 && discarded_section (h->root.u.def.section))
ca4be51c
AM
9351 || ((h->root.u.def.section->flags & SEC_LINKER_CREATED) == 0
9352 && h->root.u.def.section->owner != NULL
d56d55e7 9353 && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
c152c796 9354 strip = TRUE;
9e2278f5
AM
9355 else if ((h->root.type == bfd_link_hash_undefined
9356 || h->root.type == bfd_link_hash_undefweak)
9357 && h->root.u.undef.abfd != NULL
9358 && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
9359 strip = TRUE;
c152c796 9360
b8871f35
L
9361 type = h->type;
9362
c152c796 9363 /* If we're stripping it, and it's not a dynamic symbol, there's
d983c8c5
AM
9364 nothing else to do. However, if it is a forced local symbol or
9365 an ifunc symbol we need to give the backend finish_dynamic_symbol
9366 function a chance to make it dynamic. */
c152c796
AM
9367 if (strip
9368 && h->dynindx == -1
b8871f35 9369 && type != STT_GNU_IFUNC
f5385ebf 9370 && !h->forced_local)
c152c796
AM
9371 return TRUE;
9372
9373 sym.st_value = 0;
9374 sym.st_size = h->size;
9375 sym.st_other = h->other;
c152c796
AM
9376 switch (h->root.type)
9377 {
9378 default:
9379 case bfd_link_hash_new:
9380 case bfd_link_hash_warning:
9381 abort ();
9382 return FALSE;
9383
9384 case bfd_link_hash_undefined:
9385 case bfd_link_hash_undefweak:
9386 input_sec = bfd_und_section_ptr;
9387 sym.st_shndx = SHN_UNDEF;
9388 break;
9389
9390 case bfd_link_hash_defined:
9391 case bfd_link_hash_defweak:
9392 {
9393 input_sec = h->root.u.def.section;
9394 if (input_sec->output_section != NULL)
9395 {
9396 sym.st_shndx =
8b127cbc 9397 _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
c152c796
AM
9398 input_sec->output_section);
9399 if (sym.st_shndx == SHN_BAD)
9400 {
4eca0228 9401 _bfd_error_handler
d003868e 9402 (_("%B: could not find output section %A for input section %A"),
8b127cbc 9403 flinfo->output_bfd, input_sec->output_section, input_sec);
17d078c5 9404 bfd_set_error (bfd_error_nonrepresentable_section);
c152c796
AM
9405 eoinfo->failed = TRUE;
9406 return FALSE;
9407 }
9408
9409 /* ELF symbols in relocatable files are section relative,
9410 but in nonrelocatable files they are virtual
9411 addresses. */
9412 sym.st_value = h->root.u.def.value + input_sec->output_offset;
0e1862bb 9413 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
9414 {
9415 sym.st_value += input_sec->output_section->vma;
9416 if (h->type == STT_TLS)
9417 {
8b127cbc 9418 asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
430a16a5
NC
9419 if (tls_sec != NULL)
9420 sym.st_value -= tls_sec->vma;
c152c796
AM
9421 }
9422 }
9423 }
9424 else
9425 {
9426 BFD_ASSERT (input_sec->owner == NULL
9427 || (input_sec->owner->flags & DYNAMIC) != 0);
9428 sym.st_shndx = SHN_UNDEF;
9429 input_sec = bfd_und_section_ptr;
9430 }
9431 }
9432 break;
9433
9434 case bfd_link_hash_common:
9435 input_sec = h->root.u.c.p->section;
a4d8e49b 9436 sym.st_shndx = bed->common_section_index (input_sec);
c152c796
AM
9437 sym.st_value = 1 << h->root.u.c.p->alignment_power;
9438 break;
9439
9440 case bfd_link_hash_indirect:
9441 /* These symbols are created by symbol versioning. They point
9442 to the decorated version of the name. For example, if the
9443 symbol foo@@GNU_1.2 is the default, which should be used when
9444 foo is used with no version, then we add an indirect symbol
9445 foo which points to foo@@GNU_1.2. We ignore these symbols,
9446 since the indirected symbol is already in the hash table. */
9447 return TRUE;
9448 }
9449
b8871f35
L
9450 if (type == STT_COMMON || type == STT_OBJECT)
9451 switch (h->root.type)
9452 {
9453 case bfd_link_hash_common:
9454 type = elf_link_convert_common_type (flinfo->info, type);
9455 break;
9456 case bfd_link_hash_defined:
9457 case bfd_link_hash_defweak:
9458 if (bed->common_definition (&sym))
9459 type = elf_link_convert_common_type (flinfo->info, type);
9460 else
9461 type = STT_OBJECT;
9462 break;
9463 case bfd_link_hash_undefined:
9464 case bfd_link_hash_undefweak:
9465 break;
9466 default:
9467 abort ();
9468 }
9469
9470 if (local_bind)
9471 {
9472 sym.st_info = ELF_ST_INFO (STB_LOCAL, type);
9473 /* Turn off visibility on local symbol. */
9474 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
9475 }
9476 /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */
9477 else if (h->unique_global && h->def_regular)
9478 sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, type);
9479 else if (h->root.type == bfd_link_hash_undefweak
9480 || h->root.type == bfd_link_hash_defweak)
9481 sym.st_info = ELF_ST_INFO (STB_WEAK, type);
9482 else
9483 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
9484 sym.st_target_internal = h->target_internal;
9485
c152c796
AM
9486 /* Give the processor backend a chance to tweak the symbol value,
9487 and also to finish up anything that needs to be done for this
9488 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
3aa14d16 9489 forced local syms when non-shared is due to a historical quirk.
5f35ea9c 9490 STT_GNU_IFUNC symbol must go through PLT. */
3aa14d16 9491 if ((h->type == STT_GNU_IFUNC
5f35ea9c 9492 && h->def_regular
0e1862bb 9493 && !bfd_link_relocatable (flinfo->info))
3aa14d16
L
9494 || ((h->dynindx != -1
9495 || h->forced_local)
0e1862bb 9496 && ((bfd_link_pic (flinfo->info)
3aa14d16
L
9497 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
9498 || h->root.type != bfd_link_hash_undefweak))
9499 || !h->forced_local)
8b127cbc 9500 && elf_hash_table (flinfo->info)->dynamic_sections_created))
c152c796
AM
9501 {
9502 if (! ((*bed->elf_backend_finish_dynamic_symbol)
8b127cbc 9503 (flinfo->output_bfd, flinfo->info, h, &sym)))
c152c796
AM
9504 {
9505 eoinfo->failed = TRUE;
9506 return FALSE;
9507 }
9508 }
9509
9510 /* If we are marking the symbol as undefined, and there are no
9511 non-weak references to this symbol from a regular object, then
9512 mark the symbol as weak undefined; if there are non-weak
9513 references, mark the symbol as strong. We can't do this earlier,
9514 because it might not be marked as undefined until the
9515 finish_dynamic_symbol routine gets through with it. */
9516 if (sym.st_shndx == SHN_UNDEF
f5385ebf 9517 && h->ref_regular
c152c796
AM
9518 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
9519 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
9520 {
9521 int bindtype;
b8871f35 9522 type = ELF_ST_TYPE (sym.st_info);
2955ec4c
L
9523
9524 /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
9525 if (type == STT_GNU_IFUNC)
9526 type = STT_FUNC;
c152c796 9527
f5385ebf 9528 if (h->ref_regular_nonweak)
c152c796
AM
9529 bindtype = STB_GLOBAL;
9530 else
9531 bindtype = STB_WEAK;
2955ec4c 9532 sym.st_info = ELF_ST_INFO (bindtype, type);
c152c796
AM
9533 }
9534
bda987c2
CD
9535 /* If this is a symbol defined in a dynamic library, don't use the
9536 symbol size from the dynamic library. Relinking an executable
9537 against a new library may introduce gratuitous changes in the
9538 executable's symbols if we keep the size. */
9539 if (sym.st_shndx == SHN_UNDEF
9540 && !h->def_regular
9541 && h->def_dynamic)
9542 sym.st_size = 0;
9543
c152c796
AM
9544 /* If a non-weak symbol with non-default visibility is not defined
9545 locally, it is a fatal error. */
0e1862bb 9546 if (!bfd_link_relocatable (flinfo->info)
c152c796
AM
9547 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
9548 && ELF_ST_BIND (sym.st_info) != STB_WEAK
9549 && h->root.type == bfd_link_hash_undefined
f5385ebf 9550 && !h->def_regular)
c152c796 9551 {
17d078c5
AM
9552 const char *msg;
9553
9554 if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
9555 msg = _("%B: protected symbol `%s' isn't defined");
9556 else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
9557 msg = _("%B: internal symbol `%s' isn't defined");
9558 else
9559 msg = _("%B: hidden symbol `%s' isn't defined");
4eca0228 9560 _bfd_error_handler (msg, flinfo->output_bfd, h->root.root.string);
17d078c5 9561 bfd_set_error (bfd_error_bad_value);
c152c796
AM
9562 eoinfo->failed = TRUE;
9563 return FALSE;
9564 }
9565
9566 /* If this symbol should be put in the .dynsym section, then put it
9567 there now. We already know the symbol index. We also fill in
9568 the entry in the .hash section. */
cae1fbbb 9569 if (elf_hash_table (flinfo->info)->dynsym != NULL
202e2356 9570 && h->dynindx != -1
8b127cbc 9571 && elf_hash_table (flinfo->info)->dynamic_sections_created)
c152c796 9572 {
c152c796
AM
9573 bfd_byte *esym;
9574
90c984fc
L
9575 /* Since there is no version information in the dynamic string,
9576 if there is no version info in symbol version section, we will
1659f720 9577 have a run-time problem if not linking executable, referenced
6e33951e
L
9578 by shared library, not locally defined, or not bound locally.
9579 */
1659f720 9580 if (h->verinfo.verdef == NULL
6e33951e 9581 && !local_bind
0e1862bb 9582 && (!bfd_link_executable (flinfo->info)
1659f720
L
9583 || h->ref_dynamic
9584 || !h->def_regular))
90c984fc
L
9585 {
9586 char *p = strrchr (h->root.root.string, ELF_VER_CHR);
9587
9588 if (p && p [1] != '\0')
9589 {
4eca0228 9590 _bfd_error_handler
90c984fc
L
9591 (_("%B: No symbol version section for versioned symbol `%s'"),
9592 flinfo->output_bfd, h->root.root.string);
9593 eoinfo->failed = TRUE;
9594 return FALSE;
9595 }
9596 }
9597
c152c796 9598 sym.st_name = h->dynstr_index;
cae1fbbb
L
9599 esym = (elf_hash_table (flinfo->info)->dynsym->contents
9600 + h->dynindx * bed->s->sizeof_sym);
8b127cbc 9601 if (!check_dynsym (flinfo->output_bfd, &sym))
c0d5a53d
L
9602 {
9603 eoinfo->failed = TRUE;
9604 return FALSE;
9605 }
8b127cbc 9606 bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
c152c796 9607
8b127cbc 9608 if (flinfo->hash_sec != NULL)
fdc90cb4
JJ
9609 {
9610 size_t hash_entry_size;
9611 bfd_byte *bucketpos;
9612 bfd_vma chain;
41198d0c
L
9613 size_t bucketcount;
9614 size_t bucket;
9615
8b127cbc 9616 bucketcount = elf_hash_table (flinfo->info)->bucketcount;
41198d0c 9617 bucket = h->u.elf_hash_value % bucketcount;
fdc90cb4
JJ
9618
9619 hash_entry_size
8b127cbc
AM
9620 = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
9621 bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4 9622 + (bucket + 2) * hash_entry_size);
8b127cbc
AM
9623 chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
9624 bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
9625 bucketpos);
9626 bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
9627 ((bfd_byte *) flinfo->hash_sec->contents
fdc90cb4
JJ
9628 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
9629 }
c152c796 9630
8b127cbc 9631 if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
c152c796
AM
9632 {
9633 Elf_Internal_Versym iversym;
9634 Elf_External_Versym *eversym;
9635
f5385ebf 9636 if (!h->def_regular)
c152c796 9637 {
7b20f099
AM
9638 if (h->verinfo.verdef == NULL
9639 || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
9640 & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
c152c796
AM
9641 iversym.vs_vers = 0;
9642 else
9643 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
9644 }
9645 else
9646 {
9647 if (h->verinfo.vertree == NULL)
9648 iversym.vs_vers = 1;
9649 else
9650 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
8b127cbc 9651 if (flinfo->info->create_default_symver)
3e3b46e5 9652 iversym.vs_vers++;
c152c796
AM
9653 }
9654
422f1182 9655 /* Turn on VERSYM_HIDDEN only if the hidden versioned symbol is
6e33951e 9656 defined locally. */
422f1182 9657 if (h->versioned == versioned_hidden && h->def_regular)
c152c796
AM
9658 iversym.vs_vers |= VERSYM_HIDDEN;
9659
8b127cbc 9660 eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
c152c796 9661 eversym += h->dynindx;
8b127cbc 9662 _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
c152c796
AM
9663 }
9664 }
9665
d983c8c5
AM
9666 /* If the symbol is undefined, and we didn't output it to .dynsym,
9667 strip it from .symtab too. Obviously we can't do this for
9668 relocatable output or when needed for --emit-relocs. */
9669 else if (input_sec == bfd_und_section_ptr
9670 && h->indx != -2
0e1862bb 9671 && !bfd_link_relocatable (flinfo->info))
d983c8c5
AM
9672 return TRUE;
9673 /* Also strip others that we couldn't earlier due to dynamic symbol
9674 processing. */
9675 if (strip)
9676 return TRUE;
9677 if ((input_sec->flags & SEC_EXCLUDE) != 0)
c152c796
AM
9678 return TRUE;
9679
2ec55de3
AM
9680 /* Output a FILE symbol so that following locals are not associated
9681 with the wrong input file. We need one for forced local symbols
9682 if we've seen more than one FILE symbol or when we have exactly
9683 one FILE symbol but global symbols are present in a file other
9684 than the one with the FILE symbol. We also need one if linker
9685 defined symbols are present. In practice these conditions are
9686 always met, so just emit the FILE symbol unconditionally. */
9687 if (eoinfo->localsyms
9688 && !eoinfo->file_sym_done
9689 && eoinfo->flinfo->filesym_count != 0)
9690 {
9691 Elf_Internal_Sym fsym;
9692
9693 memset (&fsym, 0, sizeof (fsym));
9694 fsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9695 fsym.st_shndx = SHN_ABS;
ef10c3ac
L
9696 if (!elf_link_output_symstrtab (eoinfo->flinfo, NULL, &fsym,
9697 bfd_und_section_ptr, NULL))
2ec55de3
AM
9698 return FALSE;
9699
9700 eoinfo->file_sym_done = TRUE;
9701 }
9702
8b127cbc 9703 indx = bfd_get_symcount (flinfo->output_bfd);
ef10c3ac
L
9704 ret = elf_link_output_symstrtab (flinfo, h->root.root.string, &sym,
9705 input_sec, h);
6e0b88f1 9706 if (ret == 0)
c152c796
AM
9707 {
9708 eoinfo->failed = TRUE;
9709 return FALSE;
9710 }
6e0b88f1
AM
9711 else if (ret == 1)
9712 h->indx = indx;
9713 else if (h->indx == -2)
9714 abort();
c152c796
AM
9715
9716 return TRUE;
9717}
9718
cdd3575c
AM
9719/* Return TRUE if special handling is done for relocs in SEC against
9720 symbols defined in discarded sections. */
9721
c152c796
AM
9722static bfd_boolean
9723elf_section_ignore_discarded_relocs (asection *sec)
9724{
9725 const struct elf_backend_data *bed;
9726
cdd3575c
AM
9727 switch (sec->sec_info_type)
9728 {
dbaa2011
AM
9729 case SEC_INFO_TYPE_STABS:
9730 case SEC_INFO_TYPE_EH_FRAME:
2f0c68f2 9731 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
cdd3575c
AM
9732 return TRUE;
9733 default:
9734 break;
9735 }
c152c796
AM
9736
9737 bed = get_elf_backend_data (sec->owner);
9738 if (bed->elf_backend_ignore_discarded_relocs != NULL
9739 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
9740 return TRUE;
9741
9742 return FALSE;
9743}
9744
9e66c942
AM
9745/* Return a mask saying how ld should treat relocations in SEC against
9746 symbols defined in discarded sections. If this function returns
9747 COMPLAIN set, ld will issue a warning message. If this function
9748 returns PRETEND set, and the discarded section was link-once and the
9749 same size as the kept link-once section, ld will pretend that the
9750 symbol was actually defined in the kept section. Otherwise ld will
9751 zero the reloc (at least that is the intent, but some cooperation by
9752 the target dependent code is needed, particularly for REL targets). */
9753
8a696751
AM
9754unsigned int
9755_bfd_elf_default_action_discarded (asection *sec)
cdd3575c 9756{
9e66c942 9757 if (sec->flags & SEC_DEBUGGING)
69d54b1b 9758 return PRETEND;
cdd3575c
AM
9759
9760 if (strcmp (".eh_frame", sec->name) == 0)
9e66c942 9761 return 0;
cdd3575c
AM
9762
9763 if (strcmp (".gcc_except_table", sec->name) == 0)
9e66c942 9764 return 0;
cdd3575c 9765
9e66c942 9766 return COMPLAIN | PRETEND;
cdd3575c
AM
9767}
9768
3d7f7666
L
9769/* Find a match between a section and a member of a section group. */
9770
9771static asection *
c0f00686
L
9772match_group_member (asection *sec, asection *group,
9773 struct bfd_link_info *info)
3d7f7666
L
9774{
9775 asection *first = elf_next_in_group (group);
9776 asection *s = first;
9777
9778 while (s != NULL)
9779 {
c0f00686 9780 if (bfd_elf_match_symbols_in_sections (s, sec, info))
3d7f7666
L
9781 return s;
9782
83180ade 9783 s = elf_next_in_group (s);
3d7f7666
L
9784 if (s == first)
9785 break;
9786 }
9787
9788 return NULL;
9789}
9790
01b3c8ab 9791/* Check if the kept section of a discarded section SEC can be used
c2370991
AM
9792 to replace it. Return the replacement if it is OK. Otherwise return
9793 NULL. */
01b3c8ab
L
9794
9795asection *
c0f00686 9796_bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
01b3c8ab
L
9797{
9798 asection *kept;
9799
9800 kept = sec->kept_section;
9801 if (kept != NULL)
9802 {
c2370991 9803 if ((kept->flags & SEC_GROUP) != 0)
c0f00686 9804 kept = match_group_member (sec, kept, info);
1dd2625f
BW
9805 if (kept != NULL
9806 && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
9807 != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
01b3c8ab 9808 kept = NULL;
c2370991 9809 sec->kept_section = kept;
01b3c8ab
L
9810 }
9811 return kept;
9812}
9813
c152c796
AM
9814/* Link an input file into the linker output file. This function
9815 handles all the sections and relocations of the input file at once.
9816 This is so that we only have to read the local symbols once, and
9817 don't have to keep them in memory. */
9818
9819static bfd_boolean
8b127cbc 9820elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
c152c796 9821{
ece5ef60 9822 int (*relocate_section)
c152c796
AM
9823 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
9824 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
9825 bfd *output_bfd;
9826 Elf_Internal_Shdr *symtab_hdr;
9827 size_t locsymcount;
9828 size_t extsymoff;
9829 Elf_Internal_Sym *isymbuf;
9830 Elf_Internal_Sym *isym;
9831 Elf_Internal_Sym *isymend;
9832 long *pindex;
9833 asection **ppsection;
9834 asection *o;
9835 const struct elf_backend_data *bed;
c152c796 9836 struct elf_link_hash_entry **sym_hashes;
310fd250
L
9837 bfd_size_type address_size;
9838 bfd_vma r_type_mask;
9839 int r_sym_shift;
ffbc01cc 9840 bfd_boolean have_file_sym = FALSE;
c152c796 9841
8b127cbc 9842 output_bfd = flinfo->output_bfd;
c152c796
AM
9843 bed = get_elf_backend_data (output_bfd);
9844 relocate_section = bed->elf_backend_relocate_section;
9845
9846 /* If this is a dynamic object, we don't want to do anything here:
9847 we don't want the local symbols, and we don't want the section
9848 contents. */
9849 if ((input_bfd->flags & DYNAMIC) != 0)
9850 return TRUE;
9851
c152c796
AM
9852 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9853 if (elf_bad_symtab (input_bfd))
9854 {
9855 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
9856 extsymoff = 0;
9857 }
9858 else
9859 {
9860 locsymcount = symtab_hdr->sh_info;
9861 extsymoff = symtab_hdr->sh_info;
9862 }
9863
9864 /* Read the local symbols. */
9865 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
9866 if (isymbuf == NULL && locsymcount != 0)
9867 {
9868 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
8b127cbc
AM
9869 flinfo->internal_syms,
9870 flinfo->external_syms,
9871 flinfo->locsym_shndx);
c152c796
AM
9872 if (isymbuf == NULL)
9873 return FALSE;
9874 }
9875
9876 /* Find local symbol sections and adjust values of symbols in
9877 SEC_MERGE sections. Write out those local symbols we know are
9878 going into the output file. */
9879 isymend = isymbuf + locsymcount;
8b127cbc 9880 for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
c152c796
AM
9881 isym < isymend;
9882 isym++, pindex++, ppsection++)
9883 {
9884 asection *isec;
9885 const char *name;
9886 Elf_Internal_Sym osym;
6e0b88f1
AM
9887 long indx;
9888 int ret;
c152c796
AM
9889
9890 *pindex = -1;
9891
9892 if (elf_bad_symtab (input_bfd))
9893 {
9894 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
9895 {
9896 *ppsection = NULL;
9897 continue;
9898 }
9899 }
9900
9901 if (isym->st_shndx == SHN_UNDEF)
9902 isec = bfd_und_section_ptr;
c152c796
AM
9903 else if (isym->st_shndx == SHN_ABS)
9904 isec = bfd_abs_section_ptr;
9905 else if (isym->st_shndx == SHN_COMMON)
9906 isec = bfd_com_section_ptr;
9907 else
9908 {
cb33740c
AM
9909 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
9910 if (isec == NULL)
9911 {
9912 /* Don't attempt to output symbols with st_shnx in the
9913 reserved range other than SHN_ABS and SHN_COMMON. */
9914 *ppsection = NULL;
9915 continue;
9916 }
dbaa2011 9917 else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
cb33740c
AM
9918 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
9919 isym->st_value =
9920 _bfd_merged_section_offset (output_bfd, &isec,
9921 elf_section_data (isec)->sec_info,
9922 isym->st_value);
c152c796
AM
9923 }
9924
9925 *ppsection = isec;
9926
d983c8c5
AM
9927 /* Don't output the first, undefined, symbol. In fact, don't
9928 output any undefined local symbol. */
9929 if (isec == bfd_und_section_ptr)
c152c796
AM
9930 continue;
9931
9932 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
9933 {
9934 /* We never output section symbols. Instead, we use the
9935 section symbol of the corresponding section in the output
9936 file. */
9937 continue;
9938 }
9939
9940 /* If we are stripping all symbols, we don't want to output this
9941 one. */
8b127cbc 9942 if (flinfo->info->strip == strip_all)
c152c796
AM
9943 continue;
9944
9945 /* If we are discarding all local symbols, we don't want to
9946 output this one. If we are generating a relocatable output
9947 file, then some of the local symbols may be required by
9948 relocs; we output them below as we discover that they are
9949 needed. */
8b127cbc 9950 if (flinfo->info->discard == discard_all)
c152c796
AM
9951 continue;
9952
9953 /* If this symbol is defined in a section which we are
f02571c5
AM
9954 discarding, we don't need to keep it. */
9955 if (isym->st_shndx != SHN_UNDEF
4fbb74a6
AM
9956 && isym->st_shndx < SHN_LORESERVE
9957 && bfd_section_removed_from_list (output_bfd,
9958 isec->output_section))
e75a280b
L
9959 continue;
9960
c152c796
AM
9961 /* Get the name of the symbol. */
9962 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
9963 isym->st_name);
9964 if (name == NULL)
9965 return FALSE;
9966
9967 /* See if we are discarding symbols with this name. */
8b127cbc
AM
9968 if ((flinfo->info->strip == strip_some
9969 && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
c152c796 9970 == NULL))
8b127cbc 9971 || (((flinfo->info->discard == discard_sec_merge
0e1862bb
L
9972 && (isec->flags & SEC_MERGE)
9973 && !bfd_link_relocatable (flinfo->info))
8b127cbc 9974 || flinfo->info->discard == discard_l)
c152c796
AM
9975 && bfd_is_local_label_name (input_bfd, name)))
9976 continue;
9977
ffbc01cc
AM
9978 if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
9979 {
ce875075
AM
9980 if (input_bfd->lto_output)
9981 /* -flto puts a temp file name here. This means builds
9982 are not reproducible. Discard the symbol. */
9983 continue;
ffbc01cc
AM
9984 have_file_sym = TRUE;
9985 flinfo->filesym_count += 1;
9986 }
9987 if (!have_file_sym)
9988 {
9989 /* In the absence of debug info, bfd_find_nearest_line uses
9990 FILE symbols to determine the source file for local
9991 function symbols. Provide a FILE symbol here if input
9992 files lack such, so that their symbols won't be
9993 associated with a previous input file. It's not the
9994 source file, but the best we can do. */
9995 have_file_sym = TRUE;
9996 flinfo->filesym_count += 1;
9997 memset (&osym, 0, sizeof (osym));
9998 osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9999 osym.st_shndx = SHN_ABS;
ef10c3ac
L
10000 if (!elf_link_output_symstrtab (flinfo,
10001 (input_bfd->lto_output ? NULL
10002 : input_bfd->filename),
10003 &osym, bfd_abs_section_ptr,
10004 NULL))
ffbc01cc
AM
10005 return FALSE;
10006 }
10007
c152c796
AM
10008 osym = *isym;
10009
10010 /* Adjust the section index for the output file. */
10011 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10012 isec->output_section);
10013 if (osym.st_shndx == SHN_BAD)
10014 return FALSE;
10015
c152c796
AM
10016 /* ELF symbols in relocatable files are section relative, but
10017 in executable files they are virtual addresses. Note that
10018 this code assumes that all ELF sections have an associated
10019 BFD section with a reasonable value for output_offset; below
10020 we assume that they also have a reasonable value for
10021 output_section. Any special sections must be set up to meet
10022 these requirements. */
10023 osym.st_value += isec->output_offset;
0e1862bb 10024 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10025 {
10026 osym.st_value += isec->output_section->vma;
10027 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
10028 {
10029 /* STT_TLS symbols are relative to PT_TLS segment base. */
8b127cbc
AM
10030 BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
10031 osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
c152c796
AM
10032 }
10033 }
10034
6e0b88f1 10035 indx = bfd_get_symcount (output_bfd);
ef10c3ac 10036 ret = elf_link_output_symstrtab (flinfo, name, &osym, isec, NULL);
6e0b88f1 10037 if (ret == 0)
c152c796 10038 return FALSE;
6e0b88f1
AM
10039 else if (ret == 1)
10040 *pindex = indx;
c152c796
AM
10041 }
10042
310fd250
L
10043 if (bed->s->arch_size == 32)
10044 {
10045 r_type_mask = 0xff;
10046 r_sym_shift = 8;
10047 address_size = 4;
10048 }
10049 else
10050 {
10051 r_type_mask = 0xffffffff;
10052 r_sym_shift = 32;
10053 address_size = 8;
10054 }
10055
c152c796
AM
10056 /* Relocate the contents of each section. */
10057 sym_hashes = elf_sym_hashes (input_bfd);
10058 for (o = input_bfd->sections; o != NULL; o = o->next)
10059 {
10060 bfd_byte *contents;
10061
10062 if (! o->linker_mark)
10063 {
10064 /* This section was omitted from the link. */
10065 continue;
10066 }
10067
0e1862bb 10068 if (bfd_link_relocatable (flinfo->info)
bcacc0f5
AM
10069 && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
10070 {
10071 /* Deal with the group signature symbol. */
10072 struct bfd_elf_section_data *sec_data = elf_section_data (o);
10073 unsigned long symndx = sec_data->this_hdr.sh_info;
10074 asection *osec = o->output_section;
10075
10076 if (symndx >= locsymcount
10077 || (elf_bad_symtab (input_bfd)
8b127cbc 10078 && flinfo->sections[symndx] == NULL))
bcacc0f5
AM
10079 {
10080 struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
10081 while (h->root.type == bfd_link_hash_indirect
10082 || h->root.type == bfd_link_hash_warning)
10083 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10084 /* Arrange for symbol to be output. */
10085 h->indx = -2;
10086 elf_section_data (osec)->this_hdr.sh_info = -2;
10087 }
10088 else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
10089 {
10090 /* We'll use the output section target_index. */
8b127cbc 10091 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5
AM
10092 elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
10093 }
10094 else
10095 {
8b127cbc 10096 if (flinfo->indices[symndx] == -1)
bcacc0f5
AM
10097 {
10098 /* Otherwise output the local symbol now. */
10099 Elf_Internal_Sym sym = isymbuf[symndx];
8b127cbc 10100 asection *sec = flinfo->sections[symndx]->output_section;
bcacc0f5 10101 const char *name;
6e0b88f1
AM
10102 long indx;
10103 int ret;
bcacc0f5
AM
10104
10105 name = bfd_elf_string_from_elf_section (input_bfd,
10106 symtab_hdr->sh_link,
10107 sym.st_name);
10108 if (name == NULL)
10109 return FALSE;
10110
10111 sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
10112 sec);
10113 if (sym.st_shndx == SHN_BAD)
10114 return FALSE;
10115
10116 sym.st_value += o->output_offset;
10117
6e0b88f1 10118 indx = bfd_get_symcount (output_bfd);
ef10c3ac
L
10119 ret = elf_link_output_symstrtab (flinfo, name, &sym, o,
10120 NULL);
6e0b88f1 10121 if (ret == 0)
bcacc0f5 10122 return FALSE;
6e0b88f1 10123 else if (ret == 1)
8b127cbc 10124 flinfo->indices[symndx] = indx;
6e0b88f1
AM
10125 else
10126 abort ();
bcacc0f5
AM
10127 }
10128 elf_section_data (osec)->this_hdr.sh_info
8b127cbc 10129 = flinfo->indices[symndx];
bcacc0f5
AM
10130 }
10131 }
10132
c152c796 10133 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 10134 || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
c152c796
AM
10135 continue;
10136
10137 if ((o->flags & SEC_LINKER_CREATED) != 0)
10138 {
10139 /* Section was created by _bfd_elf_link_create_dynamic_sections
10140 or somesuch. */
10141 continue;
10142 }
10143
10144 /* Get the contents of the section. They have been cached by a
10145 relaxation routine. Note that o is a section in an input
10146 file, so the contents field will not have been set by any of
10147 the routines which work on output files. */
10148 if (elf_section_data (o)->this_hdr.contents != NULL)
53291d1f
AM
10149 {
10150 contents = elf_section_data (o)->this_hdr.contents;
10151 if (bed->caches_rawsize
10152 && o->rawsize != 0
10153 && o->rawsize < o->size)
10154 {
10155 memcpy (flinfo->contents, contents, o->rawsize);
10156 contents = flinfo->contents;
10157 }
10158 }
c152c796
AM
10159 else
10160 {
8b127cbc 10161 contents = flinfo->contents;
4a114e3e 10162 if (! bfd_get_full_section_contents (input_bfd, o, &contents))
c152c796
AM
10163 return FALSE;
10164 }
10165
10166 if ((o->flags & SEC_RELOC) != 0)
10167 {
10168 Elf_Internal_Rela *internal_relocs;
0f02bbd9 10169 Elf_Internal_Rela *rel, *relend;
0f02bbd9 10170 int action_discarded;
ece5ef60 10171 int ret;
c152c796
AM
10172
10173 /* Get the swapped relocs. */
10174 internal_relocs
8b127cbc
AM
10175 = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
10176 flinfo->internal_relocs, FALSE);
c152c796
AM
10177 if (internal_relocs == NULL
10178 && o->reloc_count > 0)
10179 return FALSE;
10180
310fd250
L
10181 /* We need to reverse-copy input .ctors/.dtors sections if
10182 they are placed in .init_array/.finit_array for output. */
10183 if (o->size > address_size
10184 && ((strncmp (o->name, ".ctors", 6) == 0
10185 && strcmp (o->output_section->name,
10186 ".init_array") == 0)
10187 || (strncmp (o->name, ".dtors", 6) == 0
10188 && strcmp (o->output_section->name,
10189 ".fini_array") == 0))
10190 && (o->name[6] == 0 || o->name[6] == '.'))
c152c796 10191 {
310fd250
L
10192 if (o->size != o->reloc_count * address_size)
10193 {
4eca0228 10194 _bfd_error_handler
310fd250
L
10195 (_("error: %B: size of section %A is not "
10196 "multiple of address size"),
10197 input_bfd, o);
10198 bfd_set_error (bfd_error_on_input);
10199 return FALSE;
10200 }
10201 o->flags |= SEC_ELF_REVERSE_COPY;
c152c796
AM
10202 }
10203
0f02bbd9 10204 action_discarded = -1;
c152c796 10205 if (!elf_section_ignore_discarded_relocs (o))
0f02bbd9
AM
10206 action_discarded = (*bed->action_discarded) (o);
10207
10208 /* Run through the relocs evaluating complex reloc symbols and
10209 looking for relocs against symbols from discarded sections
10210 or section symbols from removed link-once sections.
10211 Complain about relocs against discarded sections. Zero
10212 relocs against removed link-once sections. */
10213
10214 rel = internal_relocs;
10215 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
10216 for ( ; rel < relend; rel++)
c152c796 10217 {
0f02bbd9
AM
10218 unsigned long r_symndx = rel->r_info >> r_sym_shift;
10219 unsigned int s_type;
10220 asection **ps, *sec;
10221 struct elf_link_hash_entry *h = NULL;
10222 const char *sym_name;
c152c796 10223
0f02bbd9
AM
10224 if (r_symndx == STN_UNDEF)
10225 continue;
c152c796 10226
0f02bbd9
AM
10227 if (r_symndx >= locsymcount
10228 || (elf_bad_symtab (input_bfd)
8b127cbc 10229 && flinfo->sections[r_symndx] == NULL))
0f02bbd9
AM
10230 {
10231 h = sym_hashes[r_symndx - extsymoff];
ee75fd95 10232
0f02bbd9
AM
10233 /* Badly formatted input files can contain relocs that
10234 reference non-existant symbols. Check here so that
10235 we do not seg fault. */
10236 if (h == NULL)
c152c796 10237 {
0f02bbd9 10238 char buffer [32];
dce669a1 10239
0f02bbd9 10240 sprintf_vma (buffer, rel->r_info);
4eca0228 10241 _bfd_error_handler
0f02bbd9
AM
10242 (_("error: %B contains a reloc (0x%s) for section %A "
10243 "that references a non-existent global symbol"),
10244 input_bfd, o, buffer);
10245 bfd_set_error (bfd_error_bad_value);
10246 return FALSE;
10247 }
3b36f7e6 10248
0f02bbd9
AM
10249 while (h->root.type == bfd_link_hash_indirect
10250 || h->root.type == bfd_link_hash_warning)
10251 h = (struct elf_link_hash_entry *) h->root.u.i.link;
c152c796 10252
0f02bbd9 10253 s_type = h->type;
cdd3575c 10254
9e2dec47 10255 /* If a plugin symbol is referenced from a non-IR file,
ca4be51c
AM
10256 mark the symbol as undefined. Note that the
10257 linker may attach linker created dynamic sections
10258 to the plugin bfd. Symbols defined in linker
10259 created sections are not plugin symbols. */
9e2dec47
L
10260 if (h->root.non_ir_ref
10261 && (h->root.type == bfd_link_hash_defined
10262 || h->root.type == bfd_link_hash_defweak)
10263 && (h->root.u.def.section->flags
10264 & SEC_LINKER_CREATED) == 0
10265 && h->root.u.def.section->owner != NULL
10266 && (h->root.u.def.section->owner->flags
10267 & BFD_PLUGIN) != 0)
10268 {
10269 h->root.type = bfd_link_hash_undefined;
10270 h->root.u.undef.abfd = h->root.u.def.section->owner;
10271 }
10272
0f02bbd9
AM
10273 ps = NULL;
10274 if (h->root.type == bfd_link_hash_defined
10275 || h->root.type == bfd_link_hash_defweak)
10276 ps = &h->root.u.def.section;
10277
10278 sym_name = h->root.root.string;
10279 }
10280 else
10281 {
10282 Elf_Internal_Sym *sym = isymbuf + r_symndx;
10283
10284 s_type = ELF_ST_TYPE (sym->st_info);
8b127cbc 10285 ps = &flinfo->sections[r_symndx];
0f02bbd9
AM
10286 sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
10287 sym, *ps);
10288 }
c152c796 10289
c301e700 10290 if ((s_type == STT_RELC || s_type == STT_SRELC)
0e1862bb 10291 && !bfd_link_relocatable (flinfo->info))
0f02bbd9
AM
10292 {
10293 bfd_vma val;
10294 bfd_vma dot = (rel->r_offset
10295 + o->output_offset + o->output_section->vma);
10296#ifdef DEBUG
10297 printf ("Encountered a complex symbol!");
10298 printf (" (input_bfd %s, section %s, reloc %ld\n",
9ccb8af9
AM
10299 input_bfd->filename, o->name,
10300 (long) (rel - internal_relocs));
0f02bbd9
AM
10301 printf (" symbol: idx %8.8lx, name %s\n",
10302 r_symndx, sym_name);
10303 printf (" reloc : info %8.8lx, addr %8.8lx\n",
10304 (unsigned long) rel->r_info,
10305 (unsigned long) rel->r_offset);
10306#endif
8b127cbc 10307 if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
0f02bbd9
AM
10308 isymbuf, locsymcount, s_type == STT_SRELC))
10309 return FALSE;
10310
10311 /* Symbol evaluated OK. Update to absolute value. */
10312 set_symbol_value (input_bfd, isymbuf, locsymcount,
10313 r_symndx, val);
10314 continue;
10315 }
10316
10317 if (action_discarded != -1 && ps != NULL)
10318 {
cdd3575c
AM
10319 /* Complain if the definition comes from a
10320 discarded section. */
dbaa2011 10321 if ((sec = *ps) != NULL && discarded_section (sec))
cdd3575c 10322 {
cf35638d 10323 BFD_ASSERT (r_symndx != STN_UNDEF);
0f02bbd9 10324 if (action_discarded & COMPLAIN)
8b127cbc 10325 (*flinfo->info->callbacks->einfo)
e1fffbe6 10326 (_("%X`%s' referenced in section `%A' of %B: "
58ac56d0 10327 "defined in discarded section `%A' of %B\n"),
e1fffbe6 10328 sym_name, o, input_bfd, sec, sec->owner);
cdd3575c 10329
87e5235d 10330 /* Try to do the best we can to support buggy old
e0ae6d6f 10331 versions of gcc. Pretend that the symbol is
87e5235d
AM
10332 really defined in the kept linkonce section.
10333 FIXME: This is quite broken. Modifying the
10334 symbol here means we will be changing all later
e0ae6d6f 10335 uses of the symbol, not just in this section. */
0f02bbd9 10336 if (action_discarded & PRETEND)
87e5235d 10337 {
01b3c8ab
L
10338 asection *kept;
10339
c0f00686 10340 kept = _bfd_elf_check_kept_section (sec,
8b127cbc 10341 flinfo->info);
01b3c8ab 10342 if (kept != NULL)
87e5235d
AM
10343 {
10344 *ps = kept;
10345 continue;
10346 }
10347 }
c152c796
AM
10348 }
10349 }
10350 }
10351
10352 /* Relocate the section by invoking a back end routine.
10353
10354 The back end routine is responsible for adjusting the
10355 section contents as necessary, and (if using Rela relocs
10356 and generating a relocatable output file) adjusting the
10357 reloc addend as necessary.
10358
10359 The back end routine does not have to worry about setting
10360 the reloc address or the reloc symbol index.
10361
10362 The back end routine is given a pointer to the swapped in
10363 internal symbols, and can access the hash table entries
10364 for the external symbols via elf_sym_hashes (input_bfd).
10365
10366 When generating relocatable output, the back end routine
10367 must handle STB_LOCAL/STT_SECTION symbols specially. The
10368 output symbol is going to be a section symbol
10369 corresponding to the output section, which will require
10370 the addend to be adjusted. */
10371
8b127cbc 10372 ret = (*relocate_section) (output_bfd, flinfo->info,
c152c796
AM
10373 input_bfd, o, contents,
10374 internal_relocs,
10375 isymbuf,
8b127cbc 10376 flinfo->sections);
ece5ef60 10377 if (!ret)
c152c796
AM
10378 return FALSE;
10379
ece5ef60 10380 if (ret == 2
0e1862bb 10381 || bfd_link_relocatable (flinfo->info)
8b127cbc 10382 || flinfo->info->emitrelocations)
c152c796
AM
10383 {
10384 Elf_Internal_Rela *irela;
d4730f92 10385 Elf_Internal_Rela *irelaend, *irelamid;
c152c796
AM
10386 bfd_vma last_offset;
10387 struct elf_link_hash_entry **rel_hash;
d4730f92
BS
10388 struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
10389 Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
c152c796 10390 unsigned int next_erel;
c152c796 10391 bfd_boolean rela_normal;
d4730f92 10392 struct bfd_elf_section_data *esdi, *esdo;
c152c796 10393
d4730f92
BS
10394 esdi = elf_section_data (o);
10395 esdo = elf_section_data (o->output_section);
10396 rela_normal = FALSE;
c152c796
AM
10397
10398 /* Adjust the reloc addresses and symbol indices. */
10399
10400 irela = internal_relocs;
10401 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
d4730f92
BS
10402 rel_hash = esdo->rel.hashes + esdo->rel.count;
10403 /* We start processing the REL relocs, if any. When we reach
10404 IRELAMID in the loop, we switch to the RELA relocs. */
10405 irelamid = irela;
10406 if (esdi->rel.hdr != NULL)
10407 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
10408 * bed->s->int_rels_per_ext_rel);
eac338cf 10409 rel_hash_list = rel_hash;
d4730f92 10410 rela_hash_list = NULL;
c152c796 10411 last_offset = o->output_offset;
0e1862bb 10412 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10413 last_offset += o->output_section->vma;
10414 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
10415 {
10416 unsigned long r_symndx;
10417 asection *sec;
10418 Elf_Internal_Sym sym;
10419
10420 if (next_erel == bed->s->int_rels_per_ext_rel)
10421 {
10422 rel_hash++;
10423 next_erel = 0;
10424 }
10425
d4730f92
BS
10426 if (irela == irelamid)
10427 {
10428 rel_hash = esdo->rela.hashes + esdo->rela.count;
10429 rela_hash_list = rel_hash;
10430 rela_normal = bed->rela_normal;
10431 }
10432
c152c796 10433 irela->r_offset = _bfd_elf_section_offset (output_bfd,
8b127cbc 10434 flinfo->info, o,
c152c796
AM
10435 irela->r_offset);
10436 if (irela->r_offset >= (bfd_vma) -2)
10437 {
10438 /* This is a reloc for a deleted entry or somesuch.
10439 Turn it into an R_*_NONE reloc, at the same
10440 offset as the last reloc. elf_eh_frame.c and
e460dd0d 10441 bfd_elf_discard_info rely on reloc offsets
c152c796
AM
10442 being ordered. */
10443 irela->r_offset = last_offset;
10444 irela->r_info = 0;
10445 irela->r_addend = 0;
10446 continue;
10447 }
10448
10449 irela->r_offset += o->output_offset;
10450
10451 /* Relocs in an executable have to be virtual addresses. */
0e1862bb 10452 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10453 irela->r_offset += o->output_section->vma;
10454
10455 last_offset = irela->r_offset;
10456
10457 r_symndx = irela->r_info >> r_sym_shift;
10458 if (r_symndx == STN_UNDEF)
10459 continue;
10460
10461 if (r_symndx >= locsymcount
10462 || (elf_bad_symtab (input_bfd)
8b127cbc 10463 && flinfo->sections[r_symndx] == NULL))
c152c796
AM
10464 {
10465 struct elf_link_hash_entry *rh;
10466 unsigned long indx;
10467
10468 /* This is a reloc against a global symbol. We
10469 have not yet output all the local symbols, so
10470 we do not know the symbol index of any global
10471 symbol. We set the rel_hash entry for this
10472 reloc to point to the global hash table entry
10473 for this symbol. The symbol index is then
ee75fd95 10474 set at the end of bfd_elf_final_link. */
c152c796
AM
10475 indx = r_symndx - extsymoff;
10476 rh = elf_sym_hashes (input_bfd)[indx];
10477 while (rh->root.type == bfd_link_hash_indirect
10478 || rh->root.type == bfd_link_hash_warning)
10479 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
10480
10481 /* Setting the index to -2 tells
10482 elf_link_output_extsym that this symbol is
10483 used by a reloc. */
10484 BFD_ASSERT (rh->indx < 0);
10485 rh->indx = -2;
10486
10487 *rel_hash = rh;
10488
10489 continue;
10490 }
10491
10492 /* This is a reloc against a local symbol. */
10493
10494 *rel_hash = NULL;
10495 sym = isymbuf[r_symndx];
8b127cbc 10496 sec = flinfo->sections[r_symndx];
c152c796
AM
10497 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
10498 {
10499 /* I suppose the backend ought to fill in the
10500 section of any STT_SECTION symbol against a
6a8d1586 10501 processor specific section. */
cf35638d 10502 r_symndx = STN_UNDEF;
6a8d1586
AM
10503 if (bfd_is_abs_section (sec))
10504 ;
c152c796
AM
10505 else if (sec == NULL || sec->owner == NULL)
10506 {
10507 bfd_set_error (bfd_error_bad_value);
10508 return FALSE;
10509 }
10510 else
10511 {
6a8d1586
AM
10512 asection *osec = sec->output_section;
10513
10514 /* If we have discarded a section, the output
10515 section will be the absolute section. In
ab96bf03
AM
10516 case of discarded SEC_MERGE sections, use
10517 the kept section. relocate_section should
10518 have already handled discarded linkonce
10519 sections. */
6a8d1586
AM
10520 if (bfd_is_abs_section (osec)
10521 && sec->kept_section != NULL
10522 && sec->kept_section->output_section != NULL)
10523 {
10524 osec = sec->kept_section->output_section;
10525 irela->r_addend -= osec->vma;
10526 }
10527
10528 if (!bfd_is_abs_section (osec))
10529 {
10530 r_symndx = osec->target_index;
cf35638d 10531 if (r_symndx == STN_UNDEF)
74541ad4 10532 {
051d833a
AM
10533 irela->r_addend += osec->vma;
10534 osec = _bfd_nearby_section (output_bfd, osec,
10535 osec->vma);
10536 irela->r_addend -= osec->vma;
10537 r_symndx = osec->target_index;
74541ad4 10538 }
6a8d1586 10539 }
c152c796
AM
10540 }
10541
10542 /* Adjust the addend according to where the
10543 section winds up in the output section. */
10544 if (rela_normal)
10545 irela->r_addend += sec->output_offset;
10546 }
10547 else
10548 {
8b127cbc 10549 if (flinfo->indices[r_symndx] == -1)
c152c796
AM
10550 {
10551 unsigned long shlink;
10552 const char *name;
10553 asection *osec;
6e0b88f1 10554 long indx;
c152c796 10555
8b127cbc 10556 if (flinfo->info->strip == strip_all)
c152c796
AM
10557 {
10558 /* You can't do ld -r -s. */
10559 bfd_set_error (bfd_error_invalid_operation);
10560 return FALSE;
10561 }
10562
10563 /* This symbol was skipped earlier, but
10564 since it is needed by a reloc, we
10565 must output it now. */
10566 shlink = symtab_hdr->sh_link;
10567 name = (bfd_elf_string_from_elf_section
10568 (input_bfd, shlink, sym.st_name));
10569 if (name == NULL)
10570 return FALSE;
10571
10572 osec = sec->output_section;
10573 sym.st_shndx =
10574 _bfd_elf_section_from_bfd_section (output_bfd,
10575 osec);
10576 if (sym.st_shndx == SHN_BAD)
10577 return FALSE;
10578
10579 sym.st_value += sec->output_offset;
0e1862bb 10580 if (!bfd_link_relocatable (flinfo->info))
c152c796
AM
10581 {
10582 sym.st_value += osec->vma;
10583 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
10584 {
10585 /* STT_TLS symbols are relative to PT_TLS
10586 segment base. */
8b127cbc 10587 BFD_ASSERT (elf_hash_table (flinfo->info)
c152c796 10588 ->tls_sec != NULL);
8b127cbc 10589 sym.st_value -= (elf_hash_table (flinfo->info)
c152c796
AM
10590 ->tls_sec->vma);
10591 }
10592 }
10593
6e0b88f1 10594 indx = bfd_get_symcount (output_bfd);
ef10c3ac
L
10595 ret = elf_link_output_symstrtab (flinfo, name,
10596 &sym, sec,
10597 NULL);
6e0b88f1 10598 if (ret == 0)
c152c796 10599 return FALSE;
6e0b88f1 10600 else if (ret == 1)
8b127cbc 10601 flinfo->indices[r_symndx] = indx;
6e0b88f1
AM
10602 else
10603 abort ();
c152c796
AM
10604 }
10605
8b127cbc 10606 r_symndx = flinfo->indices[r_symndx];
c152c796
AM
10607 }
10608
10609 irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
10610 | (irela->r_info & r_type_mask));
10611 }
10612
10613 /* Swap out the relocs. */
d4730f92
BS
10614 input_rel_hdr = esdi->rel.hdr;
10615 if (input_rel_hdr && input_rel_hdr->sh_size != 0)
c152c796 10616 {
d4730f92
BS
10617 if (!bed->elf_backend_emit_relocs (output_bfd, o,
10618 input_rel_hdr,
10619 internal_relocs,
10620 rel_hash_list))
10621 return FALSE;
c152c796
AM
10622 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
10623 * bed->s->int_rels_per_ext_rel);
eac338cf 10624 rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
d4730f92
BS
10625 }
10626
10627 input_rela_hdr = esdi->rela.hdr;
10628 if (input_rela_hdr && input_rela_hdr->sh_size != 0)
10629 {
eac338cf 10630 if (!bed->elf_backend_emit_relocs (output_bfd, o,
d4730f92 10631 input_rela_hdr,
eac338cf 10632 internal_relocs,
d4730f92 10633 rela_hash_list))
c152c796
AM
10634 return FALSE;
10635 }
10636 }
10637 }
10638
10639 /* Write out the modified section contents. */
10640 if (bed->elf_backend_write_section
8b127cbc 10641 && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
c7b8f16e 10642 contents))
c152c796
AM
10643 {
10644 /* Section written out. */
10645 }
10646 else switch (o->sec_info_type)
10647 {
dbaa2011 10648 case SEC_INFO_TYPE_STABS:
c152c796
AM
10649 if (! (_bfd_write_section_stabs
10650 (output_bfd,
8b127cbc 10651 &elf_hash_table (flinfo->info)->stab_info,
c152c796
AM
10652 o, &elf_section_data (o)->sec_info, contents)))
10653 return FALSE;
10654 break;
dbaa2011 10655 case SEC_INFO_TYPE_MERGE:
c152c796
AM
10656 if (! _bfd_write_merged_section (output_bfd, o,
10657 elf_section_data (o)->sec_info))
10658 return FALSE;
10659 break;
dbaa2011 10660 case SEC_INFO_TYPE_EH_FRAME:
c152c796 10661 {
8b127cbc 10662 if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
c152c796
AM
10663 o, contents))
10664 return FALSE;
10665 }
10666 break;
2f0c68f2
CM
10667 case SEC_INFO_TYPE_EH_FRAME_ENTRY:
10668 {
10669 if (! _bfd_elf_write_section_eh_frame_entry (output_bfd,
10670 flinfo->info,
10671 o, contents))
10672 return FALSE;
10673 }
10674 break;
c152c796
AM
10675 default:
10676 {
310fd250
L
10677 if (! (o->flags & SEC_EXCLUDE))
10678 {
10679 file_ptr offset = (file_ptr) o->output_offset;
10680 bfd_size_type todo = o->size;
37b01f6a
DG
10681
10682 offset *= bfd_octets_per_byte (output_bfd);
10683
310fd250
L
10684 if ((o->flags & SEC_ELF_REVERSE_COPY))
10685 {
10686 /* Reverse-copy input section to output. */
10687 do
10688 {
10689 todo -= address_size;
10690 if (! bfd_set_section_contents (output_bfd,
10691 o->output_section,
10692 contents + todo,
10693 offset,
10694 address_size))
10695 return FALSE;
10696 if (todo == 0)
10697 break;
10698 offset += address_size;
10699 }
10700 while (1);
10701 }
10702 else if (! bfd_set_section_contents (output_bfd,
10703 o->output_section,
10704 contents,
10705 offset, todo))
10706 return FALSE;
10707 }
c152c796
AM
10708 }
10709 break;
10710 }
10711 }
10712
10713 return TRUE;
10714}
10715
10716/* Generate a reloc when linking an ELF file. This is a reloc
3a800eb9 10717 requested by the linker, and does not come from any input file. This
c152c796
AM
10718 is used to build constructor and destructor tables when linking
10719 with -Ur. */
10720
10721static bfd_boolean
10722elf_reloc_link_order (bfd *output_bfd,
10723 struct bfd_link_info *info,
10724 asection *output_section,
10725 struct bfd_link_order *link_order)
10726{
10727 reloc_howto_type *howto;
10728 long indx;
10729 bfd_vma offset;
10730 bfd_vma addend;
d4730f92 10731 struct bfd_elf_section_reloc_data *reldata;
c152c796
AM
10732 struct elf_link_hash_entry **rel_hash_ptr;
10733 Elf_Internal_Shdr *rel_hdr;
10734 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10735 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
10736 bfd_byte *erel;
10737 unsigned int i;
d4730f92 10738 struct bfd_elf_section_data *esdo = elf_section_data (output_section);
c152c796
AM
10739
10740 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
10741 if (howto == NULL)
10742 {
10743 bfd_set_error (bfd_error_bad_value);
10744 return FALSE;
10745 }
10746
10747 addend = link_order->u.reloc.p->addend;
10748
d4730f92
BS
10749 if (esdo->rel.hdr)
10750 reldata = &esdo->rel;
10751 else if (esdo->rela.hdr)
10752 reldata = &esdo->rela;
10753 else
10754 {
10755 reldata = NULL;
10756 BFD_ASSERT (0);
10757 }
10758
c152c796 10759 /* Figure out the symbol index. */
d4730f92 10760 rel_hash_ptr = reldata->hashes + reldata->count;
c152c796
AM
10761 if (link_order->type == bfd_section_reloc_link_order)
10762 {
10763 indx = link_order->u.reloc.p->u.section->target_index;
10764 BFD_ASSERT (indx != 0);
10765 *rel_hash_ptr = NULL;
10766 }
10767 else
10768 {
10769 struct elf_link_hash_entry *h;
10770
10771 /* Treat a reloc against a defined symbol as though it were
10772 actually against the section. */
10773 h = ((struct elf_link_hash_entry *)
10774 bfd_wrapped_link_hash_lookup (output_bfd, info,
10775 link_order->u.reloc.p->u.name,
10776 FALSE, FALSE, TRUE));
10777 if (h != NULL
10778 && (h->root.type == bfd_link_hash_defined
10779 || h->root.type == bfd_link_hash_defweak))
10780 {
10781 asection *section;
10782
10783 section = h->root.u.def.section;
10784 indx = section->output_section->target_index;
10785 *rel_hash_ptr = NULL;
10786 /* It seems that we ought to add the symbol value to the
10787 addend here, but in practice it has already been added
10788 because it was passed to constructor_callback. */
10789 addend += section->output_section->vma + section->output_offset;
10790 }
10791 else if (h != NULL)
10792 {
10793 /* Setting the index to -2 tells elf_link_output_extsym that
10794 this symbol is used by a reloc. */
10795 h->indx = -2;
10796 *rel_hash_ptr = h;
10797 indx = 0;
10798 }
10799 else
10800 {
1a72702b
AM
10801 (*info->callbacks->unattached_reloc)
10802 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0);
c152c796
AM
10803 indx = 0;
10804 }
10805 }
10806
10807 /* If this is an inplace reloc, we must write the addend into the
10808 object file. */
10809 if (howto->partial_inplace && addend != 0)
10810 {
10811 bfd_size_type size;
10812 bfd_reloc_status_type rstat;
10813 bfd_byte *buf;
10814 bfd_boolean ok;
10815 const char *sym_name;
10816
a50b1753
NC
10817 size = (bfd_size_type) bfd_get_reloc_size (howto);
10818 buf = (bfd_byte *) bfd_zmalloc (size);
6346d5ca 10819 if (buf == NULL && size != 0)
c152c796
AM
10820 return FALSE;
10821 rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
10822 switch (rstat)
10823 {
10824 case bfd_reloc_ok:
10825 break;
10826
10827 default:
10828 case bfd_reloc_outofrange:
10829 abort ();
10830
10831 case bfd_reloc_overflow:
10832 if (link_order->type == bfd_section_reloc_link_order)
10833 sym_name = bfd_section_name (output_bfd,
10834 link_order->u.reloc.p->u.section);
10835 else
10836 sym_name = link_order->u.reloc.p->u.name;
1a72702b
AM
10837 (*info->callbacks->reloc_overflow) (info, NULL, sym_name,
10838 howto->name, addend, NULL, NULL,
10839 (bfd_vma) 0);
c152c796
AM
10840 break;
10841 }
37b01f6a 10842
c152c796 10843 ok = bfd_set_section_contents (output_bfd, output_section, buf,
37b01f6a
DG
10844 link_order->offset
10845 * bfd_octets_per_byte (output_bfd),
10846 size);
c152c796
AM
10847 free (buf);
10848 if (! ok)
10849 return FALSE;
10850 }
10851
10852 /* The address of a reloc is relative to the section in a
10853 relocatable file, and is a virtual address in an executable
10854 file. */
10855 offset = link_order->offset;
0e1862bb 10856 if (! bfd_link_relocatable (info))
c152c796
AM
10857 offset += output_section->vma;
10858
10859 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
10860 {
10861 irel[i].r_offset = offset;
10862 irel[i].r_info = 0;
10863 irel[i].r_addend = 0;
10864 }
10865 if (bed->s->arch_size == 32)
10866 irel[0].r_info = ELF32_R_INFO (indx, howto->type);
10867 else
10868 irel[0].r_info = ELF64_R_INFO (indx, howto->type);
10869
d4730f92 10870 rel_hdr = reldata->hdr;
c152c796
AM
10871 erel = rel_hdr->contents;
10872 if (rel_hdr->sh_type == SHT_REL)
10873 {
d4730f92 10874 erel += reldata->count * bed->s->sizeof_rel;
c152c796
AM
10875 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
10876 }
10877 else
10878 {
10879 irel[0].r_addend = addend;
d4730f92 10880 erel += reldata->count * bed->s->sizeof_rela;
c152c796
AM
10881 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
10882 }
10883
d4730f92 10884 ++reldata->count;
c152c796
AM
10885
10886 return TRUE;
10887}
10888
0b52efa6
PB
10889
10890/* Get the output vma of the section pointed to by the sh_link field. */
10891
10892static bfd_vma
10893elf_get_linked_section_vma (struct bfd_link_order *p)
10894{
10895 Elf_Internal_Shdr **elf_shdrp;
10896 asection *s;
10897 int elfsec;
10898
10899 s = p->u.indirect.section;
10900 elf_shdrp = elf_elfsections (s->owner);
10901 elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
10902 elfsec = elf_shdrp[elfsec]->sh_link;
185d09ad
L
10903 /* PR 290:
10904 The Intel C compiler generates SHT_IA_64_UNWIND with
e04bcc6d 10905 SHF_LINK_ORDER. But it doesn't set the sh_link or
185d09ad
L
10906 sh_info fields. Hence we could get the situation
10907 where elfsec is 0. */
10908 if (elfsec == 0)
10909 {
10910 const struct elf_backend_data *bed
10911 = get_elf_backend_data (s->owner);
10912 if (bed->link_order_error_handler)
d003868e
AM
10913 bed->link_order_error_handler
10914 (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
185d09ad
L
10915 return 0;
10916 }
10917 else
10918 {
10919 s = elf_shdrp[elfsec]->bfd_section;
10920 return s->output_section->vma + s->output_offset;
10921 }
0b52efa6
PB
10922}
10923
10924
10925/* Compare two sections based on the locations of the sections they are
10926 linked to. Used by elf_fixup_link_order. */
10927
10928static int
10929compare_link_order (const void * a, const void * b)
10930{
10931 bfd_vma apos;
10932 bfd_vma bpos;
10933
10934 apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
10935 bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
10936 if (apos < bpos)
10937 return -1;
10938 return apos > bpos;
10939}
10940
10941
10942/* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same
10943 order as their linked sections. Returns false if this could not be done
10944 because an output section includes both ordered and unordered
10945 sections. Ideally we'd do this in the linker proper. */
10946
10947static bfd_boolean
10948elf_fixup_link_order (bfd *abfd, asection *o)
10949{
10950 int seen_linkorder;
10951 int seen_other;
10952 int n;
10953 struct bfd_link_order *p;
10954 bfd *sub;
10955 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
b761a207 10956 unsigned elfsec;
0b52efa6 10957 struct bfd_link_order **sections;
d33cdfe3 10958 asection *s, *other_sec, *linkorder_sec;
0b52efa6 10959 bfd_vma offset;
3b36f7e6 10960
d33cdfe3
L
10961 other_sec = NULL;
10962 linkorder_sec = NULL;
0b52efa6
PB
10963 seen_other = 0;
10964 seen_linkorder = 0;
8423293d 10965 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6 10966 {
d33cdfe3 10967 if (p->type == bfd_indirect_link_order)
0b52efa6
PB
10968 {
10969 s = p->u.indirect.section;
d33cdfe3
L
10970 sub = s->owner;
10971 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10972 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
b761a207
BE
10973 && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
10974 && elfsec < elf_numsections (sub)
4fbb74a6
AM
10975 && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
10976 && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
d33cdfe3
L
10977 {
10978 seen_linkorder++;
10979 linkorder_sec = s;
10980 }
0b52efa6 10981 else
d33cdfe3
L
10982 {
10983 seen_other++;
10984 other_sec = s;
10985 }
0b52efa6
PB
10986 }
10987 else
10988 seen_other++;
d33cdfe3
L
10989
10990 if (seen_other && seen_linkorder)
10991 {
10992 if (other_sec && linkorder_sec)
4eca0228
AM
10993 _bfd_error_handler
10994 (_("%A has both ordered [`%A' in %B] "
10995 "and unordered [`%A' in %B] sections"),
10996 o, linkorder_sec,
10997 linkorder_sec->owner, other_sec,
10998 other_sec->owner);
d33cdfe3 10999 else
4eca0228
AM
11000 _bfd_error_handler
11001 (_("%A has both ordered and unordered sections"), o);
d33cdfe3
L
11002 bfd_set_error (bfd_error_bad_value);
11003 return FALSE;
11004 }
0b52efa6
PB
11005 }
11006
11007 if (!seen_linkorder)
11008 return TRUE;
11009
0b52efa6 11010 sections = (struct bfd_link_order **)
14b1c01e
AM
11011 bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
11012 if (sections == NULL)
11013 return FALSE;
0b52efa6 11014 seen_linkorder = 0;
3b36f7e6 11015
8423293d 11016 for (p = o->map_head.link_order; p != NULL; p = p->next)
0b52efa6
PB
11017 {
11018 sections[seen_linkorder++] = p;
11019 }
11020 /* Sort the input sections in the order of their linked section. */
11021 qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
11022 compare_link_order);
11023
11024 /* Change the offsets of the sections. */
11025 offset = 0;
11026 for (n = 0; n < seen_linkorder; n++)
11027 {
11028 s = sections[n]->u.indirect.section;
461686a3 11029 offset &= ~(bfd_vma) 0 << s->alignment_power;
37b01f6a 11030 s->output_offset = offset / bfd_octets_per_byte (abfd);
0b52efa6
PB
11031 sections[n]->offset = offset;
11032 offset += sections[n]->size;
11033 }
11034
4dd07732 11035 free (sections);
0b52efa6
PB
11036 return TRUE;
11037}
11038
76359541
TP
11039/* Generate an import library in INFO->implib_bfd from symbols in ABFD.
11040 Returns TRUE upon success, FALSE otherwise. */
11041
11042static bfd_boolean
11043elf_output_implib (bfd *abfd, struct bfd_link_info *info)
11044{
11045 bfd_boolean ret = FALSE;
11046 bfd *implib_bfd;
11047 const struct elf_backend_data *bed;
11048 flagword flags;
11049 enum bfd_architecture arch;
11050 unsigned int mach;
11051 asymbol **sympp = NULL;
11052 long symsize;
11053 long symcount;
11054 long src_count;
11055 elf_symbol_type *osymbuf;
11056
11057 implib_bfd = info->out_implib_bfd;
11058 bed = get_elf_backend_data (abfd);
11059
11060 if (!bfd_set_format (implib_bfd, bfd_object))
11061 return FALSE;
11062
11063 flags = bfd_get_file_flags (abfd);
11064 flags &= ~HAS_RELOC;
11065 if (!bfd_set_start_address (implib_bfd, 0)
11066 || !bfd_set_file_flags (implib_bfd, flags))
11067 return FALSE;
11068
11069 /* Copy architecture of output file to import library file. */
11070 arch = bfd_get_arch (abfd);
11071 mach = bfd_get_mach (abfd);
11072 if (!bfd_set_arch_mach (implib_bfd, arch, mach)
11073 && (abfd->target_defaulted
11074 || bfd_get_arch (abfd) != bfd_get_arch (implib_bfd)))
11075 return FALSE;
11076
11077 /* Get symbol table size. */
11078 symsize = bfd_get_symtab_upper_bound (abfd);
11079 if (symsize < 0)
11080 return FALSE;
11081
11082 /* Read in the symbol table. */
11083 sympp = (asymbol **) xmalloc (symsize);
11084 symcount = bfd_canonicalize_symtab (abfd, sympp);
11085 if (symcount < 0)
11086 goto free_sym_buf;
11087
11088 /* Allow the BFD backend to copy any private header data it
11089 understands from the output BFD to the import library BFD. */
11090 if (! bfd_copy_private_header_data (abfd, implib_bfd))
11091 goto free_sym_buf;
11092
11093 /* Filter symbols to appear in the import library. */
11094 if (bed->elf_backend_filter_implib_symbols)
11095 symcount = bed->elf_backend_filter_implib_symbols (abfd, info, sympp,
11096 symcount);
11097 else
11098 symcount = _bfd_elf_filter_global_symbols (abfd, info, sympp, symcount);
11099 if (symcount == 0)
11100 {
5df1bc57 11101 bfd_set_error (bfd_error_no_symbols);
4eca0228
AM
11102 _bfd_error_handler (_("%B: no symbol found for import library"),
11103 implib_bfd);
76359541
TP
11104 goto free_sym_buf;
11105 }
11106
11107
11108 /* Make symbols absolute. */
11109 osymbuf = (elf_symbol_type *) bfd_alloc2 (implib_bfd, symcount,
11110 sizeof (*osymbuf));
11111 for (src_count = 0; src_count < symcount; src_count++)
11112 {
11113 memcpy (&osymbuf[src_count], (elf_symbol_type *) sympp[src_count],
11114 sizeof (*osymbuf));
11115 osymbuf[src_count].symbol.section = bfd_abs_section_ptr;
11116 osymbuf[src_count].internal_elf_sym.st_shndx = SHN_ABS;
11117 osymbuf[src_count].symbol.value += sympp[src_count]->section->vma;
11118 osymbuf[src_count].internal_elf_sym.st_value =
11119 osymbuf[src_count].symbol.value;
11120 sympp[src_count] = &osymbuf[src_count].symbol;
11121 }
11122
11123 bfd_set_symtab (implib_bfd, sympp, symcount);
11124
11125 /* Allow the BFD backend to copy any private data it understands
11126 from the output BFD to the import library BFD. This is done last
11127 to permit the routine to look at the filtered symbol table. */
11128 if (! bfd_copy_private_bfd_data (abfd, implib_bfd))
11129 goto free_sym_buf;
11130
11131 if (!bfd_close (implib_bfd))
11132 goto free_sym_buf;
11133
11134 ret = TRUE;
11135
11136free_sym_buf:
11137 free (sympp);
11138 return ret;
11139}
11140
9f7c3e5e
AM
11141static void
11142elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
11143{
11144 asection *o;
11145
11146 if (flinfo->symstrtab != NULL)
ef10c3ac 11147 _bfd_elf_strtab_free (flinfo->symstrtab);
9f7c3e5e
AM
11148 if (flinfo->contents != NULL)
11149 free (flinfo->contents);
11150 if (flinfo->external_relocs != NULL)
11151 free (flinfo->external_relocs);
11152 if (flinfo->internal_relocs != NULL)
11153 free (flinfo->internal_relocs);
11154 if (flinfo->external_syms != NULL)
11155 free (flinfo->external_syms);
11156 if (flinfo->locsym_shndx != NULL)
11157 free (flinfo->locsym_shndx);
11158 if (flinfo->internal_syms != NULL)
11159 free (flinfo->internal_syms);
11160 if (flinfo->indices != NULL)
11161 free (flinfo->indices);
11162 if (flinfo->sections != NULL)
11163 free (flinfo->sections);
9f7c3e5e
AM
11164 if (flinfo->symshndxbuf != NULL)
11165 free (flinfo->symshndxbuf);
11166 for (o = obfd->sections; o != NULL; o = o->next)
11167 {
11168 struct bfd_elf_section_data *esdo = elf_section_data (o);
11169 if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
11170 free (esdo->rel.hashes);
11171 if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
11172 free (esdo->rela.hashes);
11173 }
11174}
0b52efa6 11175
c152c796
AM
11176/* Do the final step of an ELF link. */
11177
11178bfd_boolean
11179bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
11180{
11181 bfd_boolean dynamic;
11182 bfd_boolean emit_relocs;
11183 bfd *dynobj;
8b127cbc 11184 struct elf_final_link_info flinfo;
91d6fa6a
NC
11185 asection *o;
11186 struct bfd_link_order *p;
11187 bfd *sub;
c152c796
AM
11188 bfd_size_type max_contents_size;
11189 bfd_size_type max_external_reloc_size;
11190 bfd_size_type max_internal_reloc_count;
11191 bfd_size_type max_sym_count;
11192 bfd_size_type max_sym_shndx_count;
c152c796
AM
11193 Elf_Internal_Sym elfsym;
11194 unsigned int i;
11195 Elf_Internal_Shdr *symtab_hdr;
11196 Elf_Internal_Shdr *symtab_shndx_hdr;
c152c796
AM
11197 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11198 struct elf_outext_info eoinfo;
11199 bfd_boolean merged;
11200 size_t relativecount = 0;
11201 asection *reldyn = 0;
11202 bfd_size_type amt;
104d59d1
JM
11203 asection *attr_section = NULL;
11204 bfd_vma attr_size = 0;
11205 const char *std_attrs_section;
c152c796
AM
11206
11207 if (! is_elf_hash_table (info->hash))
11208 return FALSE;
11209
0e1862bb 11210 if (bfd_link_pic (info))
c152c796
AM
11211 abfd->flags |= DYNAMIC;
11212
11213 dynamic = elf_hash_table (info)->dynamic_sections_created;
11214 dynobj = elf_hash_table (info)->dynobj;
11215
0e1862bb 11216 emit_relocs = (bfd_link_relocatable (info)
a4676736 11217 || info->emitrelocations);
c152c796 11218
8b127cbc
AM
11219 flinfo.info = info;
11220 flinfo.output_bfd = abfd;
ef10c3ac 11221 flinfo.symstrtab = _bfd_elf_strtab_init ();
8b127cbc 11222 if (flinfo.symstrtab == NULL)
c152c796
AM
11223 return FALSE;
11224
11225 if (! dynamic)
11226 {
8b127cbc
AM
11227 flinfo.hash_sec = NULL;
11228 flinfo.symver_sec = NULL;
c152c796
AM
11229 }
11230 else
11231 {
3d4d4302 11232 flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
202e2356 11233 /* Note that dynsym_sec can be NULL (on VMS). */
3d4d4302 11234 flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
c152c796
AM
11235 /* Note that it is OK if symver_sec is NULL. */
11236 }
11237
8b127cbc
AM
11238 flinfo.contents = NULL;
11239 flinfo.external_relocs = NULL;
11240 flinfo.internal_relocs = NULL;
11241 flinfo.external_syms = NULL;
11242 flinfo.locsym_shndx = NULL;
11243 flinfo.internal_syms = NULL;
11244 flinfo.indices = NULL;
11245 flinfo.sections = NULL;
8b127cbc 11246 flinfo.symshndxbuf = NULL;
ffbc01cc 11247 flinfo.filesym_count = 0;
c152c796 11248
104d59d1
JM
11249 /* The object attributes have been merged. Remove the input
11250 sections from the link, and set the contents of the output
11251 secton. */
11252 std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
11253 for (o = abfd->sections; o != NULL; o = o->next)
11254 {
11255 if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
11256 || strcmp (o->name, ".gnu.attributes") == 0)
11257 {
11258 for (p = o->map_head.link_order; p != NULL; p = p->next)
11259 {
11260 asection *input_section;
11261
11262 if (p->type != bfd_indirect_link_order)
11263 continue;
11264 input_section = p->u.indirect.section;
11265 /* Hack: reset the SEC_HAS_CONTENTS flag so that
11266 elf_link_input_bfd ignores this section. */
11267 input_section->flags &= ~SEC_HAS_CONTENTS;
11268 }
a0c8462f 11269
104d59d1
JM
11270 attr_size = bfd_elf_obj_attr_size (abfd);
11271 if (attr_size)
11272 {
11273 bfd_set_section_size (abfd, o, attr_size);
11274 attr_section = o;
11275 /* Skip this section later on. */
11276 o->map_head.link_order = NULL;
11277 }
11278 else
11279 o->flags |= SEC_EXCLUDE;
11280 }
11281 }
11282
c152c796
AM
11283 /* Count up the number of relocations we will output for each output
11284 section, so that we know the sizes of the reloc sections. We
11285 also figure out some maximum sizes. */
11286 max_contents_size = 0;
11287 max_external_reloc_size = 0;
11288 max_internal_reloc_count = 0;
11289 max_sym_count = 0;
11290 max_sym_shndx_count = 0;
11291 merged = FALSE;
11292 for (o = abfd->sections; o != NULL; o = o->next)
11293 {
11294 struct bfd_elf_section_data *esdo = elf_section_data (o);
11295 o->reloc_count = 0;
11296
8423293d 11297 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
11298 {
11299 unsigned int reloc_count = 0;
9eaff861 11300 unsigned int additional_reloc_count = 0;
c152c796 11301 struct bfd_elf_section_data *esdi = NULL;
c152c796
AM
11302
11303 if (p->type == bfd_section_reloc_link_order
11304 || p->type == bfd_symbol_reloc_link_order)
11305 reloc_count = 1;
11306 else if (p->type == bfd_indirect_link_order)
11307 {
11308 asection *sec;
11309
11310 sec = p->u.indirect.section;
11311 esdi = elf_section_data (sec);
11312
11313 /* Mark all sections which are to be included in the
11314 link. This will normally be every section. We need
11315 to do this so that we can identify any sections which
11316 the linker has decided to not include. */
11317 sec->linker_mark = TRUE;
11318
11319 if (sec->flags & SEC_MERGE)
11320 merged = TRUE;
11321
aed64b35
L
11322 if (esdo->this_hdr.sh_type == SHT_REL
11323 || esdo->this_hdr.sh_type == SHT_RELA)
11324 /* Some backends use reloc_count in relocation sections
11325 to count particular types of relocs. Of course,
11326 reloc sections themselves can't have relocations. */
11327 reloc_count = 0;
0e1862bb 11328 else if (emit_relocs)
491d01d3
YU
11329 {
11330 reloc_count = sec->reloc_count;
11331 if (bed->elf_backend_count_additional_relocs)
11332 {
11333 int c;
11334 c = (*bed->elf_backend_count_additional_relocs) (sec);
11335 additional_reloc_count += c;
11336 }
11337 }
c152c796 11338 else if (bed->elf_backend_count_relocs)
58217f29 11339 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
c152c796 11340
eea6121a
AM
11341 if (sec->rawsize > max_contents_size)
11342 max_contents_size = sec->rawsize;
11343 if (sec->size > max_contents_size)
11344 max_contents_size = sec->size;
c152c796
AM
11345
11346 /* We are interested in just local symbols, not all
11347 symbols. */
11348 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
11349 && (sec->owner->flags & DYNAMIC) == 0)
11350 {
11351 size_t sym_count;
11352
11353 if (elf_bad_symtab (sec->owner))
11354 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
11355 / bed->s->sizeof_sym);
11356 else
11357 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
11358
11359 if (sym_count > max_sym_count)
11360 max_sym_count = sym_count;
11361
11362 if (sym_count > max_sym_shndx_count
6a40cf0c 11363 && elf_symtab_shndx_list (sec->owner) != NULL)
c152c796
AM
11364 max_sym_shndx_count = sym_count;
11365
11366 if ((sec->flags & SEC_RELOC) != 0)
11367 {
d4730f92 11368 size_t ext_size = 0;
c152c796 11369
d4730f92
BS
11370 if (esdi->rel.hdr != NULL)
11371 ext_size = esdi->rel.hdr->sh_size;
11372 if (esdi->rela.hdr != NULL)
11373 ext_size += esdi->rela.hdr->sh_size;
7326c758 11374
c152c796
AM
11375 if (ext_size > max_external_reloc_size)
11376 max_external_reloc_size = ext_size;
11377 if (sec->reloc_count > max_internal_reloc_count)
11378 max_internal_reloc_count = sec->reloc_count;
11379 }
11380 }
11381 }
11382
11383 if (reloc_count == 0)
11384 continue;
11385
9eaff861 11386 reloc_count += additional_reloc_count;
c152c796
AM
11387 o->reloc_count += reloc_count;
11388
0e1862bb 11389 if (p->type == bfd_indirect_link_order && emit_relocs)
c152c796 11390 {
d4730f92 11391 if (esdi->rel.hdr)
9eaff861 11392 {
491d01d3 11393 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
9eaff861
AO
11394 esdo->rel.count += additional_reloc_count;
11395 }
d4730f92 11396 if (esdi->rela.hdr)
9eaff861 11397 {
491d01d3 11398 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
9eaff861
AO
11399 esdo->rela.count += additional_reloc_count;
11400 }
d4730f92
BS
11401 }
11402 else
11403 {
11404 if (o->use_rela_p)
11405 esdo->rela.count += reloc_count;
2c2b4ed4 11406 else
d4730f92 11407 esdo->rel.count += reloc_count;
c152c796 11408 }
c152c796
AM
11409 }
11410
9eaff861 11411 if (o->reloc_count > 0)
c152c796
AM
11412 o->flags |= SEC_RELOC;
11413 else
11414 {
11415 /* Explicitly clear the SEC_RELOC flag. The linker tends to
11416 set it (this is probably a bug) and if it is set
11417 assign_section_numbers will create a reloc section. */
11418 o->flags &=~ SEC_RELOC;
11419 }
11420
11421 /* If the SEC_ALLOC flag is not set, force the section VMA to
11422 zero. This is done in elf_fake_sections as well, but forcing
11423 the VMA to 0 here will ensure that relocs against these
11424 sections are handled correctly. */
11425 if ((o->flags & SEC_ALLOC) == 0
11426 && ! o->user_set_vma)
11427 o->vma = 0;
11428 }
11429
0e1862bb 11430 if (! bfd_link_relocatable (info) && merged)
c152c796
AM
11431 elf_link_hash_traverse (elf_hash_table (info),
11432 _bfd_elf_link_sec_merge_syms, abfd);
11433
11434 /* Figure out the file positions for everything but the symbol table
11435 and the relocs. We set symcount to force assign_section_numbers
11436 to create a symbol table. */
8539e4e8 11437 bfd_get_symcount (abfd) = info->strip != strip_all || emit_relocs;
c152c796
AM
11438 BFD_ASSERT (! abfd->output_has_begun);
11439 if (! _bfd_elf_compute_section_file_positions (abfd, info))
11440 goto error_return;
11441
ee75fd95 11442 /* Set sizes, and assign file positions for reloc sections. */
c152c796
AM
11443 for (o = abfd->sections; o != NULL; o = o->next)
11444 {
d4730f92 11445 struct bfd_elf_section_data *esdo = elf_section_data (o);
c152c796
AM
11446 if ((o->flags & SEC_RELOC) != 0)
11447 {
d4730f92 11448 if (esdo->rel.hdr
9eaff861 11449 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
c152c796
AM
11450 goto error_return;
11451
d4730f92 11452 if (esdo->rela.hdr
9eaff861 11453 && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
c152c796
AM
11454 goto error_return;
11455 }
11456
11457 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
11458 to count upwards while actually outputting the relocations. */
d4730f92
BS
11459 esdo->rel.count = 0;
11460 esdo->rela.count = 0;
0ce398f1
L
11461
11462 if (esdo->this_hdr.sh_offset == (file_ptr) -1)
11463 {
11464 /* Cache the section contents so that they can be compressed
11465 later. Use bfd_malloc since it will be freed by
11466 bfd_compress_section_contents. */
11467 unsigned char *contents = esdo->this_hdr.contents;
11468 if ((o->flags & SEC_ELF_COMPRESS) == 0 || contents != NULL)
11469 abort ();
11470 contents
11471 = (unsigned char *) bfd_malloc (esdo->this_hdr.sh_size);
11472 if (contents == NULL)
11473 goto error_return;
11474 esdo->this_hdr.contents = contents;
11475 }
c152c796
AM
11476 }
11477
c152c796 11478 /* We have now assigned file positions for all the sections except
a485e98e
AM
11479 .symtab, .strtab, and non-loaded reloc sections. We start the
11480 .symtab section at the current file position, and write directly
11481 to it. We build the .strtab section in memory. */
c152c796
AM
11482 bfd_get_symcount (abfd) = 0;
11483 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11484 /* sh_name is set in prep_headers. */
11485 symtab_hdr->sh_type = SHT_SYMTAB;
11486 /* sh_flags, sh_addr and sh_size all start off zero. */
11487 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
11488 /* sh_link is set in assign_section_numbers. */
11489 /* sh_info is set below. */
11490 /* sh_offset is set just below. */
72de5009 11491 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
c152c796 11492
ef10c3ac
L
11493 if (max_sym_count < 20)
11494 max_sym_count = 20;
11495 elf_hash_table (info)->strtabsize = max_sym_count;
11496 amt = max_sym_count * sizeof (struct elf_sym_strtab);
11497 elf_hash_table (info)->strtab
11498 = (struct elf_sym_strtab *) bfd_malloc (amt);
11499 if (elf_hash_table (info)->strtab == NULL)
c152c796 11500 goto error_return;
ef10c3ac
L
11501 /* The real buffer will be allocated in elf_link_swap_symbols_out. */
11502 flinfo.symshndxbuf
11503 = (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF)
11504 ? (Elf_External_Sym_Shndx *) -1 : NULL);
c152c796 11505
8539e4e8 11506 if (info->strip != strip_all || emit_relocs)
c152c796 11507 {
8539e4e8
AM
11508 file_ptr off = elf_next_file_pos (abfd);
11509
11510 _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
11511
11512 /* Note that at this point elf_next_file_pos (abfd) is
11513 incorrect. We do not yet know the size of the .symtab section.
11514 We correct next_file_pos below, after we do know the size. */
11515
11516 /* Start writing out the symbol table. The first symbol is always a
11517 dummy symbol. */
c152c796
AM
11518 elfsym.st_value = 0;
11519 elfsym.st_size = 0;
11520 elfsym.st_info = 0;
11521 elfsym.st_other = 0;
11522 elfsym.st_shndx = SHN_UNDEF;
35fc36a8 11523 elfsym.st_target_internal = 0;
ef10c3ac
L
11524 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym,
11525 bfd_und_section_ptr, NULL) != 1)
c152c796 11526 goto error_return;
c152c796 11527
8539e4e8
AM
11528 /* Output a symbol for each section. We output these even if we are
11529 discarding local symbols, since they are used for relocs. These
11530 symbols have no names. We store the index of each one in the
11531 index field of the section, so that we can find it again when
11532 outputting relocs. */
11533
c152c796
AM
11534 elfsym.st_size = 0;
11535 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11536 elfsym.st_other = 0;
f0b5bb34 11537 elfsym.st_value = 0;
35fc36a8 11538 elfsym.st_target_internal = 0;
c152c796
AM
11539 for (i = 1; i < elf_numsections (abfd); i++)
11540 {
11541 o = bfd_section_from_elf_index (abfd, i);
11542 if (o != NULL)
f0b5bb34
AM
11543 {
11544 o->target_index = bfd_get_symcount (abfd);
11545 elfsym.st_shndx = i;
0e1862bb 11546 if (!bfd_link_relocatable (info))
f0b5bb34 11547 elfsym.st_value = o->vma;
ef10c3ac
L
11548 if (elf_link_output_symstrtab (&flinfo, NULL, &elfsym, o,
11549 NULL) != 1)
f0b5bb34
AM
11550 goto error_return;
11551 }
c152c796
AM
11552 }
11553 }
11554
11555 /* Allocate some memory to hold information read in from the input
11556 files. */
11557 if (max_contents_size != 0)
11558 {
8b127cbc
AM
11559 flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
11560 if (flinfo.contents == NULL)
c152c796
AM
11561 goto error_return;
11562 }
11563
11564 if (max_external_reloc_size != 0)
11565 {
8b127cbc
AM
11566 flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
11567 if (flinfo.external_relocs == NULL)
c152c796
AM
11568 goto error_return;
11569 }
11570
11571 if (max_internal_reloc_count != 0)
11572 {
11573 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
11574 amt *= sizeof (Elf_Internal_Rela);
8b127cbc
AM
11575 flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
11576 if (flinfo.internal_relocs == NULL)
c152c796
AM
11577 goto error_return;
11578 }
11579
11580 if (max_sym_count != 0)
11581 {
11582 amt = max_sym_count * bed->s->sizeof_sym;
8b127cbc
AM
11583 flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
11584 if (flinfo.external_syms == NULL)
c152c796
AM
11585 goto error_return;
11586
11587 amt = max_sym_count * sizeof (Elf_Internal_Sym);
8b127cbc
AM
11588 flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
11589 if (flinfo.internal_syms == NULL)
c152c796
AM
11590 goto error_return;
11591
11592 amt = max_sym_count * sizeof (long);
8b127cbc
AM
11593 flinfo.indices = (long int *) bfd_malloc (amt);
11594 if (flinfo.indices == NULL)
c152c796
AM
11595 goto error_return;
11596
11597 amt = max_sym_count * sizeof (asection *);
8b127cbc
AM
11598 flinfo.sections = (asection **) bfd_malloc (amt);
11599 if (flinfo.sections == NULL)
c152c796
AM
11600 goto error_return;
11601 }
11602
11603 if (max_sym_shndx_count != 0)
11604 {
11605 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
8b127cbc
AM
11606 flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
11607 if (flinfo.locsym_shndx == NULL)
c152c796
AM
11608 goto error_return;
11609 }
11610
11611 if (elf_hash_table (info)->tls_sec)
11612 {
11613 bfd_vma base, end = 0;
11614 asection *sec;
11615
11616 for (sec = elf_hash_table (info)->tls_sec;
11617 sec && (sec->flags & SEC_THREAD_LOCAL);
11618 sec = sec->next)
11619 {
3a800eb9 11620 bfd_size_type size = sec->size;
c152c796 11621
3a800eb9
AM
11622 if (size == 0
11623 && (sec->flags & SEC_HAS_CONTENTS) == 0)
c152c796 11624 {
91d6fa6a
NC
11625 struct bfd_link_order *ord = sec->map_tail.link_order;
11626
11627 if (ord != NULL)
11628 size = ord->offset + ord->size;
c152c796
AM
11629 }
11630 end = sec->vma + size;
11631 }
11632 base = elf_hash_table (info)->tls_sec->vma;
7dc98aea
RO
11633 /* Only align end of TLS section if static TLS doesn't have special
11634 alignment requirements. */
11635 if (bed->static_tls_alignment == 1)
11636 end = align_power (end,
11637 elf_hash_table (info)->tls_sec->alignment_power);
c152c796
AM
11638 elf_hash_table (info)->tls_size = end - base;
11639 }
11640
0b52efa6
PB
11641 /* Reorder SHF_LINK_ORDER sections. */
11642 for (o = abfd->sections; o != NULL; o = o->next)
11643 {
11644 if (!elf_fixup_link_order (abfd, o))
11645 return FALSE;
11646 }
11647
2f0c68f2
CM
11648 if (!_bfd_elf_fixup_eh_frame_hdr (info))
11649 return FALSE;
11650
c152c796
AM
11651 /* Since ELF permits relocations to be against local symbols, we
11652 must have the local symbols available when we do the relocations.
11653 Since we would rather only read the local symbols once, and we
11654 would rather not keep them in memory, we handle all the
11655 relocations for a single input file at the same time.
11656
11657 Unfortunately, there is no way to know the total number of local
11658 symbols until we have seen all of them, and the local symbol
11659 indices precede the global symbol indices. This means that when
11660 we are generating relocatable output, and we see a reloc against
11661 a global symbol, we can not know the symbol index until we have
11662 finished examining all the local symbols to see which ones we are
11663 going to output. To deal with this, we keep the relocations in
11664 memory, and don't output them until the end of the link. This is
11665 an unfortunate waste of memory, but I don't see a good way around
11666 it. Fortunately, it only happens when performing a relocatable
11667 link, which is not the common case. FIXME: If keep_memory is set
11668 we could write the relocs out and then read them again; I don't
11669 know how bad the memory loss will be. */
11670
c72f2fb2 11671 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
11672 sub->output_has_begun = FALSE;
11673 for (o = abfd->sections; o != NULL; o = o->next)
11674 {
8423293d 11675 for (p = o->map_head.link_order; p != NULL; p = p->next)
c152c796
AM
11676 {
11677 if (p->type == bfd_indirect_link_order
11678 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
11679 == bfd_target_elf_flavour)
11680 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
11681 {
11682 if (! sub->output_has_begun)
11683 {
8b127cbc 11684 if (! elf_link_input_bfd (&flinfo, sub))
c152c796
AM
11685 goto error_return;
11686 sub->output_has_begun = TRUE;
11687 }
11688 }
11689 else if (p->type == bfd_section_reloc_link_order
11690 || p->type == bfd_symbol_reloc_link_order)
11691 {
11692 if (! elf_reloc_link_order (abfd, info, o, p))
11693 goto error_return;
11694 }
11695 else
11696 {
11697 if (! _bfd_default_link_order (abfd, info, o, p))
351f65ca
L
11698 {
11699 if (p->type == bfd_indirect_link_order
11700 && (bfd_get_flavour (sub)
11701 == bfd_target_elf_flavour)
11702 && (elf_elfheader (sub)->e_ident[EI_CLASS]
11703 != bed->s->elfclass))
11704 {
11705 const char *iclass, *oclass;
11706
aebf9be7 11707 switch (bed->s->elfclass)
351f65ca 11708 {
aebf9be7
NC
11709 case ELFCLASS64: oclass = "ELFCLASS64"; break;
11710 case ELFCLASS32: oclass = "ELFCLASS32"; break;
11711 case ELFCLASSNONE: oclass = "ELFCLASSNONE"; break;
11712 default: abort ();
351f65ca 11713 }
aebf9be7
NC
11714
11715 switch (elf_elfheader (sub)->e_ident[EI_CLASS])
351f65ca 11716 {
aebf9be7
NC
11717 case ELFCLASS64: iclass = "ELFCLASS64"; break;
11718 case ELFCLASS32: iclass = "ELFCLASS32"; break;
11719 case ELFCLASSNONE: iclass = "ELFCLASSNONE"; break;
11720 default: abort ();
351f65ca
L
11721 }
11722
11723 bfd_set_error (bfd_error_wrong_format);
4eca0228 11724 _bfd_error_handler
351f65ca
L
11725 (_("%B: file class %s incompatible with %s"),
11726 sub, iclass, oclass);
11727 }
11728
11729 goto error_return;
11730 }
c152c796
AM
11731 }
11732 }
11733 }
11734
c0f00686
L
11735 /* Free symbol buffer if needed. */
11736 if (!info->reduce_memory_overheads)
11737 {
c72f2fb2 11738 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3fcd97f1
JJ
11739 if (bfd_get_flavour (sub) == bfd_target_elf_flavour
11740 && elf_tdata (sub)->symbuf)
c0f00686
L
11741 {
11742 free (elf_tdata (sub)->symbuf);
11743 elf_tdata (sub)->symbuf = NULL;
11744 }
11745 }
11746
c152c796
AM
11747 /* Output any global symbols that got converted to local in a
11748 version script or due to symbol visibility. We do this in a
11749 separate step since ELF requires all local symbols to appear
11750 prior to any global symbols. FIXME: We should only do this if
11751 some global symbols were, in fact, converted to become local.
11752 FIXME: Will this work correctly with the Irix 5 linker? */
11753 eoinfo.failed = FALSE;
8b127cbc 11754 eoinfo.flinfo = &flinfo;
c152c796 11755 eoinfo.localsyms = TRUE;
34a79995 11756 eoinfo.file_sym_done = FALSE;
7686d77d 11757 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
11758 if (eoinfo.failed)
11759 return FALSE;
11760
4e617b1e
PB
11761 /* If backend needs to output some local symbols not present in the hash
11762 table, do it now. */
8539e4e8
AM
11763 if (bed->elf_backend_output_arch_local_syms
11764 && (info->strip != strip_all || emit_relocs))
4e617b1e 11765 {
6e0b88f1 11766 typedef int (*out_sym_func)
4e617b1e
PB
11767 (void *, const char *, Elf_Internal_Sym *, asection *,
11768 struct elf_link_hash_entry *);
11769
11770 if (! ((*bed->elf_backend_output_arch_local_syms)
ef10c3ac
L
11771 (abfd, info, &flinfo,
11772 (out_sym_func) elf_link_output_symstrtab)))
4e617b1e
PB
11773 return FALSE;
11774 }
11775
c152c796
AM
11776 /* That wrote out all the local symbols. Finish up the symbol table
11777 with the global symbols. Even if we want to strip everything we
11778 can, we still need to deal with those global symbols that got
11779 converted to local in a version script. */
11780
11781 /* The sh_info field records the index of the first non local symbol. */
11782 symtab_hdr->sh_info = bfd_get_symcount (abfd);
11783
11784 if (dynamic
cae1fbbb
L
11785 && elf_hash_table (info)->dynsym != NULL
11786 && (elf_hash_table (info)->dynsym->output_section
11787 != bfd_abs_section_ptr))
c152c796
AM
11788 {
11789 Elf_Internal_Sym sym;
cae1fbbb 11790 bfd_byte *dynsym = elf_hash_table (info)->dynsym->contents;
90ac2420
AM
11791
11792 o = elf_hash_table (info)->dynsym->output_section;
11793 elf_section_data (o)->this_hdr.sh_info
11794 = elf_hash_table (info)->local_dynsymcount + 1;
c152c796
AM
11795
11796 /* Write out the section symbols for the output sections. */
0e1862bb
L
11797 if (bfd_link_pic (info)
11798 || elf_hash_table (info)->is_relocatable_executable)
c152c796
AM
11799 {
11800 asection *s;
11801
11802 sym.st_size = 0;
11803 sym.st_name = 0;
11804 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11805 sym.st_other = 0;
35fc36a8 11806 sym.st_target_internal = 0;
c152c796
AM
11807
11808 for (s = abfd->sections; s != NULL; s = s->next)
11809 {
11810 int indx;
11811 bfd_byte *dest;
11812 long dynindx;
11813
c152c796 11814 dynindx = elf_section_data (s)->dynindx;
8c37241b
JJ
11815 if (dynindx <= 0)
11816 continue;
11817 indx = elf_section_data (s)->this_idx;
c152c796
AM
11818 BFD_ASSERT (indx > 0);
11819 sym.st_shndx = indx;
c0d5a53d
L
11820 if (! check_dynsym (abfd, &sym))
11821 return FALSE;
c152c796
AM
11822 sym.st_value = s->vma;
11823 dest = dynsym + dynindx * bed->s->sizeof_sym;
11824 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11825 }
c152c796
AM
11826 }
11827
11828 /* Write out the local dynsyms. */
11829 if (elf_hash_table (info)->dynlocal)
11830 {
11831 struct elf_link_local_dynamic_entry *e;
11832 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
11833 {
11834 asection *s;
11835 bfd_byte *dest;
11836
935bd1e0 11837 /* Copy the internal symbol and turn off visibility.
c152c796
AM
11838 Note that we saved a word of storage and overwrote
11839 the original st_name with the dynstr_index. */
11840 sym = e->isym;
935bd1e0 11841 sym.st_other &= ~ELF_ST_VISIBILITY (-1);
c152c796 11842
cb33740c
AM
11843 s = bfd_section_from_elf_index (e->input_bfd,
11844 e->isym.st_shndx);
11845 if (s != NULL)
c152c796 11846 {
c152c796
AM
11847 sym.st_shndx =
11848 elf_section_data (s->output_section)->this_idx;
c0d5a53d
L
11849 if (! check_dynsym (abfd, &sym))
11850 return FALSE;
c152c796
AM
11851 sym.st_value = (s->output_section->vma
11852 + s->output_offset
11853 + e->isym.st_value);
11854 }
11855
c152c796
AM
11856 dest = dynsym + e->dynindx * bed->s->sizeof_sym;
11857 bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11858 }
11859 }
c152c796
AM
11860 }
11861
11862 /* We get the global symbols from the hash table. */
11863 eoinfo.failed = FALSE;
11864 eoinfo.localsyms = FALSE;
8b127cbc 11865 eoinfo.flinfo = &flinfo;
7686d77d 11866 bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
c152c796
AM
11867 if (eoinfo.failed)
11868 return FALSE;
11869
11870 /* If backend needs to output some symbols not present in the hash
11871 table, do it now. */
8539e4e8
AM
11872 if (bed->elf_backend_output_arch_syms
11873 && (info->strip != strip_all || emit_relocs))
c152c796 11874 {
6e0b88f1 11875 typedef int (*out_sym_func)
c152c796
AM
11876 (void *, const char *, Elf_Internal_Sym *, asection *,
11877 struct elf_link_hash_entry *);
11878
11879 if (! ((*bed->elf_backend_output_arch_syms)
ef10c3ac
L
11880 (abfd, info, &flinfo,
11881 (out_sym_func) elf_link_output_symstrtab)))
c152c796
AM
11882 return FALSE;
11883 }
11884
ef10c3ac
L
11885 /* Finalize the .strtab section. */
11886 _bfd_elf_strtab_finalize (flinfo.symstrtab);
11887
11888 /* Swap out the .strtab section. */
11889 if (!elf_link_swap_symbols_out (&flinfo))
c152c796
AM
11890 return FALSE;
11891
11892 /* Now we know the size of the symtab section. */
c152c796
AM
11893 if (bfd_get_symcount (abfd) > 0)
11894 {
ee3b52e9
L
11895 /* Finish up and write out the symbol string table (.strtab)
11896 section. */
11897 Elf_Internal_Shdr *symstrtab_hdr;
8539e4e8
AM
11898 file_ptr off = symtab_hdr->sh_offset + symtab_hdr->sh_size;
11899
6a40cf0c
NC
11900 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
11901 if (symtab_shndx_hdr != NULL && symtab_shndx_hdr->sh_name != 0)
8539e4e8
AM
11902 {
11903 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
11904 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
11905 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
11906 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
11907 symtab_shndx_hdr->sh_size = amt;
11908
11909 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
11910 off, TRUE);
11911
11912 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
11913 || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
11914 return FALSE;
11915 }
ee3b52e9
L
11916
11917 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
11918 /* sh_name was set in prep_headers. */
11919 symstrtab_hdr->sh_type = SHT_STRTAB;
84865015 11920 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
ee3b52e9 11921 symstrtab_hdr->sh_addr = 0;
ef10c3ac 11922 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (flinfo.symstrtab);
ee3b52e9
L
11923 symstrtab_hdr->sh_entsize = 0;
11924 symstrtab_hdr->sh_link = 0;
11925 symstrtab_hdr->sh_info = 0;
11926 /* sh_offset is set just below. */
11927 symstrtab_hdr->sh_addralign = 1;
11928
11929 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr,
11930 off, TRUE);
11931 elf_next_file_pos (abfd) = off;
11932
c152c796 11933 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
ef10c3ac 11934 || ! _bfd_elf_strtab_emit (abfd, flinfo.symstrtab))
c152c796
AM
11935 return FALSE;
11936 }
11937
76359541
TP
11938 if (info->out_implib_bfd && !elf_output_implib (abfd, info))
11939 {
4eca0228
AM
11940 _bfd_error_handler (_("%B: failed to generate import library"),
11941 info->out_implib_bfd);
76359541
TP
11942 return FALSE;
11943 }
11944
c152c796
AM
11945 /* Adjust the relocs to have the correct symbol indices. */
11946 for (o = abfd->sections; o != NULL; o = o->next)
11947 {
d4730f92 11948 struct bfd_elf_section_data *esdo = elf_section_data (o);
28dbcedc 11949 bfd_boolean sort;
c152c796
AM
11950 if ((o->flags & SEC_RELOC) == 0)
11951 continue;
11952
28dbcedc 11953 sort = bed->sort_relocs_p == NULL || (*bed->sort_relocs_p) (o);
bca6d0e3 11954 if (esdo->rel.hdr != NULL
9eaff861 11955 && !elf_link_adjust_relocs (abfd, o, &esdo->rel, sort))
bca6d0e3
AM
11956 return FALSE;
11957 if (esdo->rela.hdr != NULL
9eaff861 11958 && !elf_link_adjust_relocs (abfd, o, &esdo->rela, sort))
bca6d0e3 11959 return FALSE;
c152c796
AM
11960
11961 /* Set the reloc_count field to 0 to prevent write_relocs from
11962 trying to swap the relocs out itself. */
11963 o->reloc_count = 0;
11964 }
11965
11966 if (dynamic && info->combreloc && dynobj != NULL)
11967 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
11968
11969 /* If we are linking against a dynamic object, or generating a
11970 shared library, finish up the dynamic linking information. */
11971 if (dynamic)
11972 {
11973 bfd_byte *dyncon, *dynconend;
11974
11975 /* Fix up .dynamic entries. */
3d4d4302 11976 o = bfd_get_linker_section (dynobj, ".dynamic");
c152c796
AM
11977 BFD_ASSERT (o != NULL);
11978
11979 dyncon = o->contents;
eea6121a 11980 dynconend = o->contents + o->size;
c152c796
AM
11981 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11982 {
11983 Elf_Internal_Dyn dyn;
11984 const char *name;
11985 unsigned int type;
11986
11987 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11988
11989 switch (dyn.d_tag)
11990 {
11991 default:
11992 continue;
11993 case DT_NULL:
11994 if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
11995 {
11996 switch (elf_section_data (reldyn)->this_hdr.sh_type)
11997 {
11998 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
11999 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
12000 default: continue;
12001 }
12002 dyn.d_un.d_val = relativecount;
12003 relativecount = 0;
12004 break;
12005 }
12006 continue;
12007
12008 case DT_INIT:
12009 name = info->init_function;
12010 goto get_sym;
12011 case DT_FINI:
12012 name = info->fini_function;
12013 get_sym:
12014 {
12015 struct elf_link_hash_entry *h;
12016
12017 h = elf_link_hash_lookup (elf_hash_table (info), name,
12018 FALSE, FALSE, TRUE);
12019 if (h != NULL
12020 && (h->root.type == bfd_link_hash_defined
12021 || h->root.type == bfd_link_hash_defweak))
12022 {
bef26483 12023 dyn.d_un.d_ptr = h->root.u.def.value;
c152c796
AM
12024 o = h->root.u.def.section;
12025 if (o->output_section != NULL)
bef26483 12026 dyn.d_un.d_ptr += (o->output_section->vma
c152c796
AM
12027 + o->output_offset);
12028 else
12029 {
12030 /* The symbol is imported from another shared
12031 library and does not apply to this one. */
bef26483 12032 dyn.d_un.d_ptr = 0;
c152c796
AM
12033 }
12034 break;
12035 }
12036 }
12037 continue;
12038
12039 case DT_PREINIT_ARRAYSZ:
12040 name = ".preinit_array";
4ade44b7 12041 goto get_out_size;
c152c796
AM
12042 case DT_INIT_ARRAYSZ:
12043 name = ".init_array";
4ade44b7 12044 goto get_out_size;
c152c796
AM
12045 case DT_FINI_ARRAYSZ:
12046 name = ".fini_array";
4ade44b7 12047 get_out_size:
c152c796
AM
12048 o = bfd_get_section_by_name (abfd, name);
12049 if (o == NULL)
12050 {
4eca0228 12051 _bfd_error_handler
4ade44b7 12052 (_("could not find section %s"), name);
c152c796
AM
12053 goto error_return;
12054 }
eea6121a 12055 if (o->size == 0)
4eca0228 12056 _bfd_error_handler
c152c796 12057 (_("warning: %s section has zero size"), name);
eea6121a 12058 dyn.d_un.d_val = o->size;
c152c796
AM
12059 break;
12060
12061 case DT_PREINIT_ARRAY:
12062 name = ".preinit_array";
4ade44b7 12063 goto get_out_vma;
c152c796
AM
12064 case DT_INIT_ARRAY:
12065 name = ".init_array";
4ade44b7 12066 goto get_out_vma;
c152c796
AM
12067 case DT_FINI_ARRAY:
12068 name = ".fini_array";
4ade44b7
AM
12069 get_out_vma:
12070 o = bfd_get_section_by_name (abfd, name);
12071 goto do_vma;
c152c796
AM
12072
12073 case DT_HASH:
12074 name = ".hash";
12075 goto get_vma;
fdc90cb4
JJ
12076 case DT_GNU_HASH:
12077 name = ".gnu.hash";
12078 goto get_vma;
c152c796
AM
12079 case DT_STRTAB:
12080 name = ".dynstr";
12081 goto get_vma;
12082 case DT_SYMTAB:
12083 name = ".dynsym";
12084 goto get_vma;
12085 case DT_VERDEF:
12086 name = ".gnu.version_d";
12087 goto get_vma;
12088 case DT_VERNEED:
12089 name = ".gnu.version_r";
12090 goto get_vma;
12091 case DT_VERSYM:
12092 name = ".gnu.version";
12093 get_vma:
4ade44b7
AM
12094 o = bfd_get_linker_section (dynobj, name);
12095 do_vma:
c152c796
AM
12096 if (o == NULL)
12097 {
4eca0228 12098 _bfd_error_handler
4ade44b7 12099 (_("could not find section %s"), name);
c152c796
AM
12100 goto error_return;
12101 }
894891db
NC
12102 if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
12103 {
4eca0228 12104 _bfd_error_handler
894891db
NC
12105 (_("warning: section '%s' is being made into a note"), name);
12106 bfd_set_error (bfd_error_nonrepresentable_section);
12107 goto error_return;
12108 }
4ade44b7 12109 dyn.d_un.d_ptr = o->output_section->vma + o->output_offset;
c152c796
AM
12110 break;
12111
12112 case DT_REL:
12113 case DT_RELA:
12114 case DT_RELSZ:
12115 case DT_RELASZ:
12116 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
12117 type = SHT_REL;
12118 else
12119 type = SHT_RELA;
12120 dyn.d_un.d_val = 0;
bef26483 12121 dyn.d_un.d_ptr = 0;
c152c796
AM
12122 for (i = 1; i < elf_numsections (abfd); i++)
12123 {
12124 Elf_Internal_Shdr *hdr;
12125
12126 hdr = elf_elfsections (abfd)[i];
12127 if (hdr->sh_type == type
12128 && (hdr->sh_flags & SHF_ALLOC) != 0)
12129 {
12130 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
12131 dyn.d_un.d_val += hdr->sh_size;
12132 else
12133 {
bef26483
AM
12134 if (dyn.d_un.d_ptr == 0
12135 || hdr->sh_addr < dyn.d_un.d_ptr)
12136 dyn.d_un.d_ptr = hdr->sh_addr;
c152c796
AM
12137 }
12138 }
12139 }
12140 break;
12141 }
12142 bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
12143 }
12144 }
12145
12146 /* If we have created any dynamic sections, then output them. */
12147 if (dynobj != NULL)
12148 {
12149 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
12150 goto error_return;
12151
943284cc 12152 /* Check for DT_TEXTREL (late, in case the backend removes it). */
0e1862bb 12153 if (((info->warn_shared_textrel && bfd_link_pic (info))
be7b303d 12154 || info->error_textrel)
3d4d4302 12155 && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
943284cc
DJ
12156 {
12157 bfd_byte *dyncon, *dynconend;
12158
943284cc
DJ
12159 dyncon = o->contents;
12160 dynconend = o->contents + o->size;
12161 for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
12162 {
12163 Elf_Internal_Dyn dyn;
12164
12165 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
12166
12167 if (dyn.d_tag == DT_TEXTREL)
12168 {
c192a133
AM
12169 if (info->error_textrel)
12170 info->callbacks->einfo
12171 (_("%P%X: read-only segment has dynamic relocations.\n"));
12172 else
12173 info->callbacks->einfo
12174 (_("%P: warning: creating a DT_TEXTREL in a shared object.\n"));
943284cc
DJ
12175 break;
12176 }
12177 }
12178 }
12179
c152c796
AM
12180 for (o = dynobj->sections; o != NULL; o = o->next)
12181 {
12182 if ((o->flags & SEC_HAS_CONTENTS) == 0
eea6121a 12183 || o->size == 0
c152c796
AM
12184 || o->output_section == bfd_abs_section_ptr)
12185 continue;
12186 if ((o->flags & SEC_LINKER_CREATED) == 0)
12187 {
12188 /* At this point, we are only interested in sections
12189 created by _bfd_elf_link_create_dynamic_sections. */
12190 continue;
12191 }
3722b82f
AM
12192 if (elf_hash_table (info)->stab_info.stabstr == o)
12193 continue;
eea6121a
AM
12194 if (elf_hash_table (info)->eh_info.hdr_sec == o)
12195 continue;
3d4d4302 12196 if (strcmp (o->name, ".dynstr") != 0)
c152c796
AM
12197 {
12198 if (! bfd_set_section_contents (abfd, o->output_section,
12199 o->contents,
37b01f6a
DG
12200 (file_ptr) o->output_offset
12201 * bfd_octets_per_byte (abfd),
eea6121a 12202 o->size))
c152c796
AM
12203 goto error_return;
12204 }
12205 else
12206 {
12207 /* The contents of the .dynstr section are actually in a
12208 stringtab. */
8539e4e8
AM
12209 file_ptr off;
12210
c152c796
AM
12211 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
12212 if (bfd_seek (abfd, off, SEEK_SET) != 0
12213 || ! _bfd_elf_strtab_emit (abfd,
12214 elf_hash_table (info)->dynstr))
12215 goto error_return;
12216 }
12217 }
12218 }
12219
0e1862bb 12220 if (bfd_link_relocatable (info))
c152c796
AM
12221 {
12222 bfd_boolean failed = FALSE;
12223
12224 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
12225 if (failed)
12226 goto error_return;
12227 }
12228
12229 /* If we have optimized stabs strings, output them. */
3722b82f 12230 if (elf_hash_table (info)->stab_info.stabstr != NULL)
c152c796
AM
12231 {
12232 if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
12233 goto error_return;
12234 }
12235
9f7c3e5e
AM
12236 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
12237 goto error_return;
c152c796 12238
9f7c3e5e 12239 elf_final_link_free (abfd, &flinfo);
c152c796 12240
12bd6957 12241 elf_linker (abfd) = TRUE;
c152c796 12242
104d59d1
JM
12243 if (attr_section)
12244 {
a50b1753 12245 bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
104d59d1 12246 if (contents == NULL)
d0f16d5e 12247 return FALSE; /* Bail out and fail. */
104d59d1
JM
12248 bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
12249 bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
12250 free (contents);
12251 }
12252
c152c796
AM
12253 return TRUE;
12254
12255 error_return:
9f7c3e5e 12256 elf_final_link_free (abfd, &flinfo);
c152c796
AM
12257 return FALSE;
12258}
12259\f
5241d853
RS
12260/* Initialize COOKIE for input bfd ABFD. */
12261
12262static bfd_boolean
12263init_reloc_cookie (struct elf_reloc_cookie *cookie,
12264 struct bfd_link_info *info, bfd *abfd)
12265{
12266 Elf_Internal_Shdr *symtab_hdr;
12267 const struct elf_backend_data *bed;
12268
12269 bed = get_elf_backend_data (abfd);
12270 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12271
12272 cookie->abfd = abfd;
12273 cookie->sym_hashes = elf_sym_hashes (abfd);
12274 cookie->bad_symtab = elf_bad_symtab (abfd);
12275 if (cookie->bad_symtab)
12276 {
12277 cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12278 cookie->extsymoff = 0;
12279 }
12280 else
12281 {
12282 cookie->locsymcount = symtab_hdr->sh_info;
12283 cookie->extsymoff = symtab_hdr->sh_info;
12284 }
12285
12286 if (bed->s->arch_size == 32)
12287 cookie->r_sym_shift = 8;
12288 else
12289 cookie->r_sym_shift = 32;
12290
12291 cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
12292 if (cookie->locsyms == NULL && cookie->locsymcount != 0)
12293 {
12294 cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
12295 cookie->locsymcount, 0,
12296 NULL, NULL, NULL);
12297 if (cookie->locsyms == NULL)
12298 {
12299 info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
12300 return FALSE;
12301 }
12302 if (info->keep_memory)
12303 symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
12304 }
12305 return TRUE;
12306}
12307
12308/* Free the memory allocated by init_reloc_cookie, if appropriate. */
12309
12310static void
12311fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
12312{
12313 Elf_Internal_Shdr *symtab_hdr;
12314
12315 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12316 if (cookie->locsyms != NULL
12317 && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
12318 free (cookie->locsyms);
12319}
12320
12321/* Initialize the relocation information in COOKIE for input section SEC
12322 of input bfd ABFD. */
12323
12324static bfd_boolean
12325init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12326 struct bfd_link_info *info, bfd *abfd,
12327 asection *sec)
12328{
12329 const struct elf_backend_data *bed;
12330
12331 if (sec->reloc_count == 0)
12332 {
12333 cookie->rels = NULL;
12334 cookie->relend = NULL;
12335 }
12336 else
12337 {
12338 bed = get_elf_backend_data (abfd);
12339
12340 cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
12341 info->keep_memory);
12342 if (cookie->rels == NULL)
12343 return FALSE;
12344 cookie->rel = cookie->rels;
12345 cookie->relend = (cookie->rels
12346 + sec->reloc_count * bed->s->int_rels_per_ext_rel);
12347 }
12348 cookie->rel = cookie->rels;
12349 return TRUE;
12350}
12351
12352/* Free the memory allocated by init_reloc_cookie_rels,
12353 if appropriate. */
12354
12355static void
12356fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
12357 asection *sec)
12358{
12359 if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
12360 free (cookie->rels);
12361}
12362
12363/* Initialize the whole of COOKIE for input section SEC. */
12364
12365static bfd_boolean
12366init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12367 struct bfd_link_info *info,
12368 asection *sec)
12369{
12370 if (!init_reloc_cookie (cookie, info, sec->owner))
12371 goto error1;
12372 if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
12373 goto error2;
12374 return TRUE;
12375
12376 error2:
12377 fini_reloc_cookie (cookie, sec->owner);
12378 error1:
12379 return FALSE;
12380}
12381
12382/* Free the memory allocated by init_reloc_cookie_for_section,
12383 if appropriate. */
12384
12385static void
12386fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
12387 asection *sec)
12388{
12389 fini_reloc_cookie_rels (cookie, sec);
12390 fini_reloc_cookie (cookie, sec->owner);
12391}
12392\f
c152c796
AM
12393/* Garbage collect unused sections. */
12394
07adf181
AM
12395/* Default gc_mark_hook. */
12396
12397asection *
12398_bfd_elf_gc_mark_hook (asection *sec,
12399 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12400 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
12401 struct elf_link_hash_entry *h,
12402 Elf_Internal_Sym *sym)
12403{
12404 if (h != NULL)
12405 {
12406 switch (h->root.type)
12407 {
12408 case bfd_link_hash_defined:
12409 case bfd_link_hash_defweak:
12410 return h->root.u.def.section;
12411
12412 case bfd_link_hash_common:
12413 return h->root.u.c.p->section;
12414
12415 default:
12416 break;
12417 }
12418 }
12419 else
12420 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
12421
12422 return NULL;
12423}
12424
a6a4679f
AM
12425/* For undefined __start_<name> and __stop_<name> symbols, return the
12426 first input section matching <name>. Return NULL otherwise. */
12427
12428asection *
12429_bfd_elf_is_start_stop (const struct bfd_link_info *info,
12430 struct elf_link_hash_entry *h)
12431{
12432 asection *s;
12433 const char *sec_name;
12434
12435 if (h->root.type != bfd_link_hash_undefined
12436 && h->root.type != bfd_link_hash_undefweak)
12437 return NULL;
12438
12439 s = h->root.u.undef.section;
12440 if (s != NULL)
12441 {
12442 if (s == (asection *) 0 - 1)
12443 return NULL;
12444 return s;
12445 }
12446
12447 sec_name = NULL;
12448 if (strncmp (h->root.root.string, "__start_", 8) == 0)
12449 sec_name = h->root.root.string + 8;
12450 else if (strncmp (h->root.root.string, "__stop_", 7) == 0)
12451 sec_name = h->root.root.string + 7;
12452
12453 if (sec_name != NULL && *sec_name != '\0')
12454 {
12455 bfd *i;
12456
12457 for (i = info->input_bfds; i != NULL; i = i->link.next)
12458 {
12459 s = bfd_get_section_by_name (i, sec_name);
12460 if (s != NULL)
12461 {
12462 h->root.u.undef.section = s;
12463 break;
12464 }
12465 }
12466 }
12467
12468 if (s == NULL)
12469 h->root.u.undef.section = (asection *) 0 - 1;
12470
12471 return s;
12472}
12473
5241d853
RS
12474/* COOKIE->rel describes a relocation against section SEC, which is
12475 a section we've decided to keep. Return the section that contains
12476 the relocation symbol, or NULL if no section contains it. */
12477
12478asection *
12479_bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
12480 elf_gc_mark_hook_fn gc_mark_hook,
1cce69b9
AM
12481 struct elf_reloc_cookie *cookie,
12482 bfd_boolean *start_stop)
5241d853
RS
12483{
12484 unsigned long r_symndx;
12485 struct elf_link_hash_entry *h;
12486
12487 r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
cf35638d 12488 if (r_symndx == STN_UNDEF)
5241d853
RS
12489 return NULL;
12490
12491 if (r_symndx >= cookie->locsymcount
12492 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12493 {
12494 h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
263ddf68
L
12495 if (h == NULL)
12496 {
12497 info->callbacks->einfo (_("%F%P: corrupt input: %B\n"),
12498 sec->owner);
12499 return NULL;
12500 }
5241d853
RS
12501 while (h->root.type == bfd_link_hash_indirect
12502 || h->root.type == bfd_link_hash_warning)
12503 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1d5316ab 12504 h->mark = 1;
4e6b54a6
AM
12505 /* If this symbol is weak and there is a non-weak definition, we
12506 keep the non-weak definition because many backends put
12507 dynamic reloc info on the non-weak definition for code
12508 handling copy relocs. */
12509 if (h->u.weakdef != NULL)
12510 h->u.weakdef->mark = 1;
1cce69b9 12511
a6a4679f 12512 if (start_stop != NULL)
1cce69b9
AM
12513 {
12514 /* To work around a glibc bug, mark all XXX input sections
12515 when there is an as yet undefined reference to __start_XXX
12516 or __stop_XXX symbols. The linker will later define such
12517 symbols for orphan input sections that have a name
12518 representable as a C identifier. */
a6a4679f 12519 asection *s = _bfd_elf_is_start_stop (info, h);
1cce69b9 12520
a6a4679f 12521 if (s != NULL)
1cce69b9 12522 {
a6a4679f
AM
12523 *start_stop = !s->gc_mark;
12524 return s;
1cce69b9
AM
12525 }
12526 }
12527
5241d853
RS
12528 return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
12529 }
12530
12531 return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
12532 &cookie->locsyms[r_symndx]);
12533}
12534
12535/* COOKIE->rel describes a relocation against section SEC, which is
12536 a section we've decided to keep. Mark the section that contains
9d0a14d3 12537 the relocation symbol. */
5241d853
RS
12538
12539bfd_boolean
12540_bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
12541 asection *sec,
12542 elf_gc_mark_hook_fn gc_mark_hook,
9d0a14d3 12543 struct elf_reloc_cookie *cookie)
5241d853
RS
12544{
12545 asection *rsec;
1cce69b9 12546 bfd_boolean start_stop = FALSE;
5241d853 12547
1cce69b9
AM
12548 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie, &start_stop);
12549 while (rsec != NULL)
5241d853 12550 {
1cce69b9
AM
12551 if (!rsec->gc_mark)
12552 {
12553 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
12554 || (rsec->owner->flags & DYNAMIC) != 0)
12555 rsec->gc_mark = 1;
12556 else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
12557 return FALSE;
12558 }
12559 if (!start_stop)
12560 break;
199af150 12561 rsec = bfd_get_next_section_by_name (rsec->owner, rsec);
5241d853
RS
12562 }
12563 return TRUE;
12564}
12565
07adf181
AM
12566/* The mark phase of garbage collection. For a given section, mark
12567 it and any sections in this section's group, and all the sections
12568 which define symbols to which it refers. */
12569
ccfa59ea
AM
12570bfd_boolean
12571_bfd_elf_gc_mark (struct bfd_link_info *info,
12572 asection *sec,
6a5bb875 12573 elf_gc_mark_hook_fn gc_mark_hook)
c152c796
AM
12574{
12575 bfd_boolean ret;
9d0a14d3 12576 asection *group_sec, *eh_frame;
c152c796
AM
12577
12578 sec->gc_mark = 1;
12579
12580 /* Mark all the sections in the group. */
12581 group_sec = elf_section_data (sec)->next_in_group;
12582 if (group_sec && !group_sec->gc_mark)
ccfa59ea 12583 if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
c152c796
AM
12584 return FALSE;
12585
12586 /* Look through the section relocs. */
12587 ret = TRUE;
9d0a14d3
RS
12588 eh_frame = elf_eh_frame_section (sec->owner);
12589 if ((sec->flags & SEC_RELOC) != 0
12590 && sec->reloc_count > 0
12591 && sec != eh_frame)
c152c796 12592 {
5241d853 12593 struct elf_reloc_cookie cookie;
c152c796 12594
5241d853
RS
12595 if (!init_reloc_cookie_for_section (&cookie, info, sec))
12596 ret = FALSE;
c152c796 12597 else
c152c796 12598 {
5241d853 12599 for (; cookie.rel < cookie.relend; cookie.rel++)
9d0a14d3 12600 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
5241d853
RS
12601 {
12602 ret = FALSE;
12603 break;
12604 }
12605 fini_reloc_cookie_for_section (&cookie, sec);
c152c796
AM
12606 }
12607 }
9d0a14d3
RS
12608
12609 if (ret && eh_frame && elf_fde_list (sec))
12610 {
12611 struct elf_reloc_cookie cookie;
12612
12613 if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
12614 ret = FALSE;
12615 else
12616 {
12617 if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
12618 gc_mark_hook, &cookie))
12619 ret = FALSE;
12620 fini_reloc_cookie_for_section (&cookie, eh_frame);
12621 }
12622 }
12623
2f0c68f2
CM
12624 eh_frame = elf_section_eh_frame_entry (sec);
12625 if (ret && eh_frame && !eh_frame->gc_mark)
12626 if (!_bfd_elf_gc_mark (info, eh_frame, gc_mark_hook))
12627 ret = FALSE;
12628
c152c796
AM
12629 return ret;
12630}
12631
3c758495
TG
12632/* Scan and mark sections in a special or debug section group. */
12633
12634static void
12635_bfd_elf_gc_mark_debug_special_section_group (asection *grp)
12636{
12637 /* Point to first section of section group. */
12638 asection *ssec;
12639 /* Used to iterate the section group. */
12640 asection *msec;
12641
12642 bfd_boolean is_special_grp = TRUE;
12643 bfd_boolean is_debug_grp = TRUE;
12644
12645 /* First scan to see if group contains any section other than debug
12646 and special section. */
12647 ssec = msec = elf_next_in_group (grp);
12648 do
12649 {
12650 if ((msec->flags & SEC_DEBUGGING) == 0)
12651 is_debug_grp = FALSE;
12652
12653 if ((msec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) != 0)
12654 is_special_grp = FALSE;
12655
12656 msec = elf_next_in_group (msec);
12657 }
12658 while (msec != ssec);
12659
12660 /* If this is a pure debug section group or pure special section group,
12661 keep all sections in this group. */
12662 if (is_debug_grp || is_special_grp)
12663 {
12664 do
12665 {
12666 msec->gc_mark = 1;
12667 msec = elf_next_in_group (msec);
12668 }
12669 while (msec != ssec);
12670 }
12671}
12672
7f6ab9f8
AM
12673/* Keep debug and special sections. */
12674
12675bfd_boolean
12676_bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
12677 elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
12678{
12679 bfd *ibfd;
12680
c72f2fb2 12681 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7f6ab9f8
AM
12682 {
12683 asection *isec;
12684 bfd_boolean some_kept;
b40bf0a2 12685 bfd_boolean debug_frag_seen;
7f6ab9f8
AM
12686
12687 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
12688 continue;
12689
b40bf0a2
NC
12690 /* Ensure all linker created sections are kept,
12691 see if any other section is already marked,
12692 and note if we have any fragmented debug sections. */
12693 debug_frag_seen = some_kept = FALSE;
7f6ab9f8
AM
12694 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
12695 {
12696 if ((isec->flags & SEC_LINKER_CREATED) != 0)
12697 isec->gc_mark = 1;
12698 else if (isec->gc_mark)
12699 some_kept = TRUE;
b40bf0a2
NC
12700
12701 if (debug_frag_seen == FALSE
12702 && (isec->flags & SEC_DEBUGGING)
12703 && CONST_STRNEQ (isec->name, ".debug_line."))
12704 debug_frag_seen = TRUE;
7f6ab9f8
AM
12705 }
12706
12707 /* If no section in this file will be kept, then we can
b40bf0a2 12708 toss out the debug and special sections. */
7f6ab9f8
AM
12709 if (!some_kept)
12710 continue;
12711
12712 /* Keep debug and special sections like .comment when they are
3c758495
TG
12713 not part of a group. Also keep section groups that contain
12714 just debug sections or special sections. */
7f6ab9f8 12715 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
3c758495
TG
12716 {
12717 if ((isec->flags & SEC_GROUP) != 0)
12718 _bfd_elf_gc_mark_debug_special_section_group (isec);
12719 else if (((isec->flags & SEC_DEBUGGING) != 0
12720 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)
12721 && elf_next_in_group (isec) == NULL)
12722 isec->gc_mark = 1;
12723 }
b40bf0a2
NC
12724
12725 if (! debug_frag_seen)
12726 continue;
12727
12728 /* Look for CODE sections which are going to be discarded,
12729 and find and discard any fragmented debug sections which
12730 are associated with that code section. */
12731 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
12732 if ((isec->flags & SEC_CODE) != 0
12733 && isec->gc_mark == 0)
12734 {
12735 unsigned int ilen;
12736 asection *dsec;
12737
12738 ilen = strlen (isec->name);
12739
12740 /* Association is determined by the name of the debug section
12741 containing the name of the code section as a suffix. For
12742 example .debug_line.text.foo is a debug section associated
12743 with .text.foo. */
12744 for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
12745 {
12746 unsigned int dlen;
12747
12748 if (dsec->gc_mark == 0
12749 || (dsec->flags & SEC_DEBUGGING) == 0)
12750 continue;
12751
12752 dlen = strlen (dsec->name);
12753
12754 if (dlen > ilen
12755 && strncmp (dsec->name + (dlen - ilen),
12756 isec->name, ilen) == 0)
12757 {
12758 dsec->gc_mark = 0;
b40bf0a2
NC
12759 }
12760 }
12761 }
7f6ab9f8
AM
12762 }
12763 return TRUE;
12764}
12765
c152c796
AM
12766/* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
12767
c17d87de
NC
12768struct elf_gc_sweep_symbol_info
12769{
ccabcbe5
AM
12770 struct bfd_link_info *info;
12771 void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
12772 bfd_boolean);
12773};
12774
c152c796 12775static bfd_boolean
ccabcbe5 12776elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
c152c796 12777{
1d5316ab
AM
12778 if (!h->mark
12779 && (((h->root.type == bfd_link_hash_defined
12780 || h->root.type == bfd_link_hash_defweak)
c4621b33 12781 && !((h->def_regular || ELF_COMMON_DEF_P (h))
6673f753 12782 && h->root.u.def.section->gc_mark))
1d5316ab
AM
12783 || h->root.type == bfd_link_hash_undefined
12784 || h->root.type == bfd_link_hash_undefweak))
12785 {
12786 struct elf_gc_sweep_symbol_info *inf;
12787
12788 inf = (struct elf_gc_sweep_symbol_info *) data;
ccabcbe5 12789 (*inf->hide_symbol) (inf->info, h, TRUE);
1d5316ab
AM
12790 h->def_regular = 0;
12791 h->ref_regular = 0;
12792 h->ref_regular_nonweak = 0;
ccabcbe5 12793 }
c152c796
AM
12794
12795 return TRUE;
12796}
12797
12798/* The sweep phase of garbage collection. Remove all garbage sections. */
12799
12800typedef bfd_boolean (*gc_sweep_hook_fn)
12801 (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
12802
12803static bfd_boolean
ccabcbe5 12804elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
c152c796
AM
12805{
12806 bfd *sub;
ccabcbe5
AM
12807 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12808 gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
12809 unsigned long section_sym_count;
12810 struct elf_gc_sweep_symbol_info sweep_info;
c152c796 12811
c72f2fb2 12812 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
12813 {
12814 asection *o;
12815
b19a8f85
L
12816 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
12817 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
c152c796
AM
12818 continue;
12819
12820 for (o = sub->sections; o != NULL; o = o->next)
12821 {
a33dafc3
L
12822 /* When any section in a section group is kept, we keep all
12823 sections in the section group. If the first member of
12824 the section group is excluded, we will also exclude the
12825 group section. */
12826 if (o->flags & SEC_GROUP)
12827 {
12828 asection *first = elf_next_in_group (o);
12829 o->gc_mark = first->gc_mark;
12830 }
c152c796 12831
1e7eae0d 12832 if (o->gc_mark)
c152c796
AM
12833 continue;
12834
12835 /* Skip sweeping sections already excluded. */
12836 if (o->flags & SEC_EXCLUDE)
12837 continue;
12838
12839 /* Since this is early in the link process, it is simple
12840 to remove a section from the output. */
12841 o->flags |= SEC_EXCLUDE;
12842
c55fe096 12843 if (info->print_gc_sections && o->size != 0)
c17d87de
NC
12844 _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name);
12845
c152c796
AM
12846 /* But we also have to update some of the relocation
12847 info we collected before. */
12848 if (gc_sweep_hook
e8aaee2a 12849 && (o->flags & SEC_RELOC) != 0
9850436d
AM
12850 && o->reloc_count != 0
12851 && !((info->strip == strip_all || info->strip == strip_debugger)
12852 && (o->flags & SEC_DEBUGGING) != 0)
e8aaee2a 12853 && !bfd_is_abs_section (o->output_section))
c152c796
AM
12854 {
12855 Elf_Internal_Rela *internal_relocs;
12856 bfd_boolean r;
12857
12858 internal_relocs
12859 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
12860 info->keep_memory);
12861 if (internal_relocs == NULL)
12862 return FALSE;
12863
12864 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
12865
12866 if (elf_section_data (o)->relocs != internal_relocs)
12867 free (internal_relocs);
12868
12869 if (!r)
12870 return FALSE;
12871 }
12872 }
12873 }
12874
12875 /* Remove the symbols that were in the swept sections from the dynamic
12876 symbol table. GCFIXME: Anyone know how to get them out of the
12877 static symbol table as well? */
ccabcbe5
AM
12878 sweep_info.info = info;
12879 sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
12880 elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
12881 &sweep_info);
c152c796 12882
ccabcbe5 12883 _bfd_elf_link_renumber_dynsyms (abfd, info, &section_sym_count);
c152c796
AM
12884 return TRUE;
12885}
12886
12887/* Propagate collected vtable information. This is called through
12888 elf_link_hash_traverse. */
12889
12890static bfd_boolean
12891elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
12892{
c152c796 12893 /* Those that are not vtables. */
f6e332e6 12894 if (h->vtable == NULL || h->vtable->parent == NULL)
c152c796
AM
12895 return TRUE;
12896
12897 /* Those vtables that do not have parents, we cannot merge. */
f6e332e6 12898 if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
c152c796
AM
12899 return TRUE;
12900
12901 /* If we've already been done, exit. */
f6e332e6 12902 if (h->vtable->used && h->vtable->used[-1])
c152c796
AM
12903 return TRUE;
12904
12905 /* Make sure the parent's table is up to date. */
f6e332e6 12906 elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
c152c796 12907
f6e332e6 12908 if (h->vtable->used == NULL)
c152c796
AM
12909 {
12910 /* None of this table's entries were referenced. Re-use the
12911 parent's table. */
f6e332e6
AM
12912 h->vtable->used = h->vtable->parent->vtable->used;
12913 h->vtable->size = h->vtable->parent->vtable->size;
c152c796
AM
12914 }
12915 else
12916 {
12917 size_t n;
12918 bfd_boolean *cu, *pu;
12919
12920 /* Or the parent's entries into ours. */
f6e332e6 12921 cu = h->vtable->used;
c152c796 12922 cu[-1] = TRUE;
f6e332e6 12923 pu = h->vtable->parent->vtable->used;
c152c796
AM
12924 if (pu != NULL)
12925 {
12926 const struct elf_backend_data *bed;
12927 unsigned int log_file_align;
12928
12929 bed = get_elf_backend_data (h->root.u.def.section->owner);
12930 log_file_align = bed->s->log_file_align;
f6e332e6 12931 n = h->vtable->parent->vtable->size >> log_file_align;
c152c796
AM
12932 while (n--)
12933 {
12934 if (*pu)
12935 *cu = TRUE;
12936 pu++;
12937 cu++;
12938 }
12939 }
12940 }
12941
12942 return TRUE;
12943}
12944
12945static bfd_boolean
12946elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
12947{
12948 asection *sec;
12949 bfd_vma hstart, hend;
12950 Elf_Internal_Rela *relstart, *relend, *rel;
12951 const struct elf_backend_data *bed;
12952 unsigned int log_file_align;
12953
c152c796
AM
12954 /* Take care of both those symbols that do not describe vtables as
12955 well as those that are not loaded. */
f6e332e6 12956 if (h->vtable == NULL || h->vtable->parent == NULL)
c152c796
AM
12957 return TRUE;
12958
12959 BFD_ASSERT (h->root.type == bfd_link_hash_defined
12960 || h->root.type == bfd_link_hash_defweak);
12961
12962 sec = h->root.u.def.section;
12963 hstart = h->root.u.def.value;
12964 hend = hstart + h->size;
12965
12966 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
12967 if (!relstart)
12968 return *(bfd_boolean *) okp = FALSE;
12969 bed = get_elf_backend_data (sec->owner);
12970 log_file_align = bed->s->log_file_align;
12971
12972 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
12973
12974 for (rel = relstart; rel < relend; ++rel)
12975 if (rel->r_offset >= hstart && rel->r_offset < hend)
12976 {
12977 /* If the entry is in use, do nothing. */
f6e332e6
AM
12978 if (h->vtable->used
12979 && (rel->r_offset - hstart) < h->vtable->size)
c152c796
AM
12980 {
12981 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
f6e332e6 12982 if (h->vtable->used[entry])
c152c796
AM
12983 continue;
12984 }
12985 /* Otherwise, kill it. */
12986 rel->r_offset = rel->r_info = rel->r_addend = 0;
12987 }
12988
12989 return TRUE;
12990}
12991
87538722
AM
12992/* Mark sections containing dynamically referenced symbols. When
12993 building shared libraries, we must assume that any visible symbol is
12994 referenced. */
715df9b8 12995
64d03ab5
AM
12996bfd_boolean
12997bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
715df9b8 12998{
87538722 12999 struct bfd_link_info *info = (struct bfd_link_info *) inf;
d6f6f455 13000 struct bfd_elf_dynamic_list *d = info->dynamic_list;
87538722 13001
715df9b8
EB
13002 if ((h->root.type == bfd_link_hash_defined
13003 || h->root.type == bfd_link_hash_defweak)
87538722 13004 && (h->ref_dynamic
c4621b33 13005 || ((h->def_regular || ELF_COMMON_DEF_P (h))
87538722 13006 && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
fd91d419 13007 && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
0e1862bb 13008 && (!bfd_link_executable (info)
b407645f
AM
13009 || info->export_dynamic
13010 || (h->dynamic
13011 && d != NULL
13012 && (*d->match) (&d->head, NULL, h->root.root.string)))
422f1182 13013 && (h->versioned >= versioned
54e8959c
L
13014 || !bfd_hide_sym_by_version (info->version_info,
13015 h->root.root.string)))))
715df9b8
EB
13016 h->root.u.def.section->flags |= SEC_KEEP;
13017
13018 return TRUE;
13019}
3b36f7e6 13020
74f0fb50
AM
13021/* Keep all sections containing symbols undefined on the command-line,
13022 and the section containing the entry symbol. */
13023
13024void
13025_bfd_elf_gc_keep (struct bfd_link_info *info)
13026{
13027 struct bfd_sym_chain *sym;
13028
13029 for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
13030 {
13031 struct elf_link_hash_entry *h;
13032
13033 h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
13034 FALSE, FALSE, FALSE);
13035
13036 if (h != NULL
13037 && (h->root.type == bfd_link_hash_defined
13038 || h->root.type == bfd_link_hash_defweak)
13039 && !bfd_is_abs_section (h->root.u.def.section))
13040 h->root.u.def.section->flags |= SEC_KEEP;
13041 }
13042}
13043
2f0c68f2
CM
13044bfd_boolean
13045bfd_elf_parse_eh_frame_entries (bfd *abfd ATTRIBUTE_UNUSED,
13046 struct bfd_link_info *info)
13047{
13048 bfd *ibfd = info->input_bfds;
13049
13050 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
13051 {
13052 asection *sec;
13053 struct elf_reloc_cookie cookie;
13054
13055 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
13056 continue;
13057
13058 if (!init_reloc_cookie (&cookie, info, ibfd))
13059 return FALSE;
13060
13061 for (sec = ibfd->sections; sec; sec = sec->next)
13062 {
13063 if (CONST_STRNEQ (bfd_section_name (ibfd, sec), ".eh_frame_entry")
13064 && init_reloc_cookie_rels (&cookie, info, ibfd, sec))
13065 {
13066 _bfd_elf_parse_eh_frame_entry (info, sec, &cookie);
13067 fini_reloc_cookie_rels (&cookie, sec);
13068 }
13069 }
13070 }
13071 return TRUE;
13072}
13073
c152c796
AM
13074/* Do mark and sweep of unused sections. */
13075
13076bfd_boolean
13077bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
13078{
13079 bfd_boolean ok = TRUE;
13080 bfd *sub;
6a5bb875 13081 elf_gc_mark_hook_fn gc_mark_hook;
64d03ab5 13082 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
da44f4e5 13083 struct elf_link_hash_table *htab;
c152c796 13084
64d03ab5 13085 if (!bed->can_gc_sections
715df9b8 13086 || !is_elf_hash_table (info->hash))
c152c796 13087 {
4eca0228 13088 _bfd_error_handler(_("Warning: gc-sections option ignored"));
c152c796
AM
13089 return TRUE;
13090 }
13091
74f0fb50 13092 bed->gc_keep (info);
da44f4e5 13093 htab = elf_hash_table (info);
74f0fb50 13094
9d0a14d3
RS
13095 /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section
13096 at the .eh_frame section if we can mark the FDEs individually. */
2f0c68f2
CM
13097 for (sub = info->input_bfds;
13098 info->eh_frame_hdr_type != COMPACT_EH_HDR && sub != NULL;
13099 sub = sub->link.next)
9d0a14d3
RS
13100 {
13101 asection *sec;
13102 struct elf_reloc_cookie cookie;
13103
13104 sec = bfd_get_section_by_name (sub, ".eh_frame");
9a2a56cc 13105 while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
9d0a14d3
RS
13106 {
13107 _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
9a2a56cc
AM
13108 if (elf_section_data (sec)->sec_info
13109 && (sec->flags & SEC_LINKER_CREATED) == 0)
9d0a14d3
RS
13110 elf_eh_frame_section (sub) = sec;
13111 fini_reloc_cookie_for_section (&cookie, sec);
199af150 13112 sec = bfd_get_next_section_by_name (NULL, sec);
9d0a14d3
RS
13113 }
13114 }
9d0a14d3 13115
c152c796 13116 /* Apply transitive closure to the vtable entry usage info. */
da44f4e5 13117 elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
c152c796
AM
13118 if (!ok)
13119 return FALSE;
13120
13121 /* Kill the vtable relocations that were not used. */
da44f4e5 13122 elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
c152c796
AM
13123 if (!ok)
13124 return FALSE;
13125
715df9b8 13126 /* Mark dynamically referenced symbols. */
da44f4e5
AM
13127 if (htab->dynamic_sections_created)
13128 elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
c152c796 13129
715df9b8 13130 /* Grovel through relocs to find out who stays ... */
64d03ab5 13131 gc_mark_hook = bed->gc_mark_hook;
c72f2fb2 13132 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
c152c796
AM
13133 {
13134 asection *o;
13135
b19a8f85
L
13136 if (bfd_get_flavour (sub) != bfd_target_elf_flavour
13137 || !(*bed->relocs_compatible) (sub->xvec, abfd->xvec))
c152c796
AM
13138 continue;
13139
7f6ab9f8
AM
13140 /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
13141 Also treat note sections as a root, if the section is not part
13142 of a group. */
c152c796 13143 for (o = sub->sections; o != NULL; o = o->next)
7f6ab9f8
AM
13144 if (!o->gc_mark
13145 && (o->flags & SEC_EXCLUDE) == 0
24007750 13146 && ((o->flags & SEC_KEEP) != 0
7f6ab9f8
AM
13147 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
13148 && elf_next_in_group (o) == NULL )))
13149 {
13150 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
13151 return FALSE;
13152 }
c152c796
AM
13153 }
13154
6a5bb875 13155 /* Allow the backend to mark additional target specific sections. */
7f6ab9f8 13156 bed->gc_mark_extra_sections (info, gc_mark_hook);
6a5bb875 13157
c152c796 13158 /* ... and mark SEC_EXCLUDE for those that go. */
ccabcbe5 13159 return elf_gc_sweep (abfd, info);
c152c796
AM
13160}
13161\f
13162/* Called from check_relocs to record the existence of a VTINHERIT reloc. */
13163
13164bfd_boolean
13165bfd_elf_gc_record_vtinherit (bfd *abfd,
13166 asection *sec,
13167 struct elf_link_hash_entry *h,
13168 bfd_vma offset)
13169{
13170 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
13171 struct elf_link_hash_entry **search, *child;
ef53be89 13172 size_t extsymcount;
c152c796
AM
13173 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13174
13175 /* The sh_info field of the symtab header tells us where the
13176 external symbols start. We don't care about the local symbols at
13177 this point. */
13178 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
13179 if (!elf_bad_symtab (abfd))
13180 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
13181
13182 sym_hashes = elf_sym_hashes (abfd);
13183 sym_hashes_end = sym_hashes + extsymcount;
13184
13185 /* Hunt down the child symbol, which is in this section at the same
13186 offset as the relocation. */
13187 for (search = sym_hashes; search != sym_hashes_end; ++search)
13188 {
13189 if ((child = *search) != NULL
13190 && (child->root.type == bfd_link_hash_defined
13191 || child->root.type == bfd_link_hash_defweak)
13192 && child->root.u.def.section == sec
13193 && child->root.u.def.value == offset)
13194 goto win;
13195 }
13196
4eca0228
AM
13197 _bfd_error_handler ("%B: %A+%lu: No symbol found for INHERIT",
13198 abfd, sec, (unsigned long) offset);
c152c796
AM
13199 bfd_set_error (bfd_error_invalid_operation);
13200 return FALSE;
13201
13202 win:
f6e332e6
AM
13203 if (!child->vtable)
13204 {
ca4be51c
AM
13205 child->vtable = ((struct elf_link_virtual_table_entry *)
13206 bfd_zalloc (abfd, sizeof (*child->vtable)));
f6e332e6
AM
13207 if (!child->vtable)
13208 return FALSE;
13209 }
c152c796
AM
13210 if (!h)
13211 {
13212 /* This *should* only be the absolute section. It could potentially
13213 be that someone has defined a non-global vtable though, which
13214 would be bad. It isn't worth paging in the local symbols to be
13215 sure though; that case should simply be handled by the assembler. */
13216
f6e332e6 13217 child->vtable->parent = (struct elf_link_hash_entry *) -1;
c152c796
AM
13218 }
13219 else
f6e332e6 13220 child->vtable->parent = h;
c152c796
AM
13221
13222 return TRUE;
13223}
13224
13225/* Called from check_relocs to record the existence of a VTENTRY reloc. */
13226
13227bfd_boolean
13228bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
13229 asection *sec ATTRIBUTE_UNUSED,
13230 struct elf_link_hash_entry *h,
13231 bfd_vma addend)
13232{
13233 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13234 unsigned int log_file_align = bed->s->log_file_align;
13235
f6e332e6
AM
13236 if (!h->vtable)
13237 {
ca4be51c
AM
13238 h->vtable = ((struct elf_link_virtual_table_entry *)
13239 bfd_zalloc (abfd, sizeof (*h->vtable)));
f6e332e6
AM
13240 if (!h->vtable)
13241 return FALSE;
13242 }
13243
13244 if (addend >= h->vtable->size)
c152c796
AM
13245 {
13246 size_t size, bytes, file_align;
f6e332e6 13247 bfd_boolean *ptr = h->vtable->used;
c152c796
AM
13248
13249 /* While the symbol is undefined, we have to be prepared to handle
13250 a zero size. */
13251 file_align = 1 << log_file_align;
13252 if (h->root.type == bfd_link_hash_undefined)
13253 size = addend + file_align;
13254 else
13255 {
13256 size = h->size;
13257 if (addend >= size)
13258 {
13259 /* Oops! We've got a reference past the defined end of
13260 the table. This is probably a bug -- shall we warn? */
13261 size = addend + file_align;
13262 }
13263 }
13264 size = (size + file_align - 1) & -file_align;
13265
13266 /* Allocate one extra entry for use as a "done" flag for the
13267 consolidation pass. */
13268 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
13269
13270 if (ptr)
13271 {
a50b1753 13272 ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
c152c796
AM
13273
13274 if (ptr != NULL)
13275 {
13276 size_t oldbytes;
13277
f6e332e6 13278 oldbytes = (((h->vtable->size >> log_file_align) + 1)
c152c796
AM
13279 * sizeof (bfd_boolean));
13280 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
13281 }
13282 }
13283 else
a50b1753 13284 ptr = (bfd_boolean *) bfd_zmalloc (bytes);
c152c796
AM
13285
13286 if (ptr == NULL)
13287 return FALSE;
13288
13289 /* And arrange for that done flag to be at index -1. */
f6e332e6
AM
13290 h->vtable->used = ptr + 1;
13291 h->vtable->size = size;
c152c796
AM
13292 }
13293
f6e332e6 13294 h->vtable->used[addend >> log_file_align] = TRUE;
c152c796
AM
13295
13296 return TRUE;
13297}
13298
ae17ab41
CM
13299/* Map an ELF section header flag to its corresponding string. */
13300typedef struct
13301{
13302 char *flag_name;
13303 flagword flag_value;
13304} elf_flags_to_name_table;
13305
13306static elf_flags_to_name_table elf_flags_to_names [] =
13307{
13308 { "SHF_WRITE", SHF_WRITE },
13309 { "SHF_ALLOC", SHF_ALLOC },
13310 { "SHF_EXECINSTR", SHF_EXECINSTR },
13311 { "SHF_MERGE", SHF_MERGE },
13312 { "SHF_STRINGS", SHF_STRINGS },
13313 { "SHF_INFO_LINK", SHF_INFO_LINK},
13314 { "SHF_LINK_ORDER", SHF_LINK_ORDER},
13315 { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
13316 { "SHF_GROUP", SHF_GROUP },
13317 { "SHF_TLS", SHF_TLS },
13318 { "SHF_MASKOS", SHF_MASKOS },
13319 { "SHF_EXCLUDE", SHF_EXCLUDE },
13320};
13321
b9c361e0
JL
13322/* Returns TRUE if the section is to be included, otherwise FALSE. */
13323bfd_boolean
ae17ab41 13324bfd_elf_lookup_section_flags (struct bfd_link_info *info,
8b127cbc 13325 struct flag_info *flaginfo,
b9c361e0 13326 asection *section)
ae17ab41 13327{
8b127cbc 13328 const bfd_vma sh_flags = elf_section_flags (section);
ae17ab41 13329
8b127cbc 13330 if (!flaginfo->flags_initialized)
ae17ab41 13331 {
8b127cbc
AM
13332 bfd *obfd = info->output_bfd;
13333 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
13334 struct flag_info_list *tf = flaginfo->flag_list;
b9c361e0
JL
13335 int with_hex = 0;
13336 int without_hex = 0;
13337
8b127cbc 13338 for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
ae17ab41 13339 {
b9c361e0 13340 unsigned i;
8b127cbc 13341 flagword (*lookup) (char *);
ae17ab41 13342
8b127cbc
AM
13343 lookup = bed->elf_backend_lookup_section_flags_hook;
13344 if (lookup != NULL)
ae17ab41 13345 {
8b127cbc 13346 flagword hexval = (*lookup) ((char *) tf->name);
b9c361e0
JL
13347
13348 if (hexval != 0)
13349 {
13350 if (tf->with == with_flags)
13351 with_hex |= hexval;
13352 else if (tf->with == without_flags)
13353 without_hex |= hexval;
13354 tf->valid = TRUE;
13355 continue;
13356 }
ae17ab41 13357 }
8b127cbc 13358 for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
ae17ab41 13359 {
8b127cbc 13360 if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
b9c361e0
JL
13361 {
13362 if (tf->with == with_flags)
13363 with_hex |= elf_flags_to_names[i].flag_value;
13364 else if (tf->with == without_flags)
13365 without_hex |= elf_flags_to_names[i].flag_value;
13366 tf->valid = TRUE;
13367 break;
13368 }
13369 }
8b127cbc 13370 if (!tf->valid)
b9c361e0 13371 {
68ffbac6 13372 info->callbacks->einfo
8b127cbc 13373 (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
b9c361e0 13374 return FALSE;
ae17ab41
CM
13375 }
13376 }
8b127cbc
AM
13377 flaginfo->flags_initialized = TRUE;
13378 flaginfo->only_with_flags |= with_hex;
13379 flaginfo->not_with_flags |= without_hex;
ae17ab41 13380 }
ae17ab41 13381
8b127cbc 13382 if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
b9c361e0
JL
13383 return FALSE;
13384
8b127cbc 13385 if ((flaginfo->not_with_flags & sh_flags) != 0)
b9c361e0
JL
13386 return FALSE;
13387
13388 return TRUE;
ae17ab41
CM
13389}
13390
c152c796
AM
13391struct alloc_got_off_arg {
13392 bfd_vma gotoff;
10455f89 13393 struct bfd_link_info *info;
c152c796
AM
13394};
13395
13396/* We need a special top-level link routine to convert got reference counts
13397 to real got offsets. */
13398
13399static bfd_boolean
13400elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
13401{
a50b1753 13402 struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
10455f89
HPN
13403 bfd *obfd = gofarg->info->output_bfd;
13404 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
c152c796 13405
c152c796
AM
13406 if (h->got.refcount > 0)
13407 {
13408 h->got.offset = gofarg->gotoff;
10455f89 13409 gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
c152c796
AM
13410 }
13411 else
13412 h->got.offset = (bfd_vma) -1;
13413
13414 return TRUE;
13415}
13416
13417/* And an accompanying bit to work out final got entry offsets once
13418 we're done. Should be called from final_link. */
13419
13420bfd_boolean
13421bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
13422 struct bfd_link_info *info)
13423{
13424 bfd *i;
13425 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13426 bfd_vma gotoff;
c152c796
AM
13427 struct alloc_got_off_arg gofarg;
13428
10455f89
HPN
13429 BFD_ASSERT (abfd == info->output_bfd);
13430
c152c796
AM
13431 if (! is_elf_hash_table (info->hash))
13432 return FALSE;
13433
13434 /* The GOT offset is relative to the .got section, but the GOT header is
13435 put into the .got.plt section, if the backend uses it. */
13436 if (bed->want_got_plt)
13437 gotoff = 0;
13438 else
13439 gotoff = bed->got_header_size;
13440
13441 /* Do the local .got entries first. */
c72f2fb2 13442 for (i = info->input_bfds; i; i = i->link.next)
c152c796
AM
13443 {
13444 bfd_signed_vma *local_got;
ef53be89 13445 size_t j, locsymcount;
c152c796
AM
13446 Elf_Internal_Shdr *symtab_hdr;
13447
13448 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
13449 continue;
13450
13451 local_got = elf_local_got_refcounts (i);
13452 if (!local_got)
13453 continue;
13454
13455 symtab_hdr = &elf_tdata (i)->symtab_hdr;
13456 if (elf_bad_symtab (i))
13457 locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
13458 else
13459 locsymcount = symtab_hdr->sh_info;
13460
13461 for (j = 0; j < locsymcount; ++j)
13462 {
13463 if (local_got[j] > 0)
13464 {
13465 local_got[j] = gotoff;
10455f89 13466 gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
c152c796
AM
13467 }
13468 else
13469 local_got[j] = (bfd_vma) -1;
13470 }
13471 }
13472
13473 /* Then the global .got entries. .plt refcounts are handled by
13474 adjust_dynamic_symbol */
13475 gofarg.gotoff = gotoff;
10455f89 13476 gofarg.info = info;
c152c796
AM
13477 elf_link_hash_traverse (elf_hash_table (info),
13478 elf_gc_allocate_got_offsets,
13479 &gofarg);
13480 return TRUE;
13481}
13482
13483/* Many folk need no more in the way of final link than this, once
13484 got entry reference counting is enabled. */
13485
13486bfd_boolean
13487bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
13488{
13489 if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
13490 return FALSE;
13491
13492 /* Invoke the regular ELF backend linker to do all the work. */
13493 return bfd_elf_final_link (abfd, info);
13494}
13495
13496bfd_boolean
13497bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
13498{
a50b1753 13499 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
c152c796
AM
13500
13501 if (rcookie->bad_symtab)
13502 rcookie->rel = rcookie->rels;
13503
13504 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
13505 {
13506 unsigned long r_symndx;
13507
13508 if (! rcookie->bad_symtab)
13509 if (rcookie->rel->r_offset > offset)
13510 return FALSE;
13511 if (rcookie->rel->r_offset != offset)
13512 continue;
13513
13514 r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
2c2fa401 13515 if (r_symndx == STN_UNDEF)
c152c796
AM
13516 return TRUE;
13517
13518 if (r_symndx >= rcookie->locsymcount
13519 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
13520 {
13521 struct elf_link_hash_entry *h;
13522
13523 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
13524
13525 while (h->root.type == bfd_link_hash_indirect
13526 || h->root.type == bfd_link_hash_warning)
13527 h = (struct elf_link_hash_entry *) h->root.u.i.link;
13528
13529 if ((h->root.type == bfd_link_hash_defined
13530 || h->root.type == bfd_link_hash_defweak)
5b69e357
AM
13531 && (h->root.u.def.section->owner != rcookie->abfd
13532 || h->root.u.def.section->kept_section != NULL
13533 || discarded_section (h->root.u.def.section)))
c152c796 13534 return TRUE;
c152c796
AM
13535 }
13536 else
13537 {
13538 /* It's not a relocation against a global symbol,
13539 but it could be a relocation against a local
13540 symbol for a discarded section. */
13541 asection *isec;
13542 Elf_Internal_Sym *isym;
13543
13544 /* Need to: get the symbol; get the section. */
13545 isym = &rcookie->locsyms[r_symndx];
cb33740c 13546 isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
5b69e357
AM
13547 if (isec != NULL
13548 && (isec->kept_section != NULL
13549 || discarded_section (isec)))
cb33740c 13550 return TRUE;
c152c796
AM
13551 }
13552 return FALSE;
13553 }
13554 return FALSE;
13555}
13556
13557/* Discard unneeded references to discarded sections.
75938853
AM
13558 Returns -1 on error, 1 if any section's size was changed, 0 if
13559 nothing changed. This function assumes that the relocations are in
13560 sorted order, which is true for all known assemblers. */
c152c796 13561
75938853 13562int
c152c796
AM
13563bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
13564{
13565 struct elf_reloc_cookie cookie;
18cd5bce 13566 asection *o;
c152c796 13567 bfd *abfd;
75938853 13568 int changed = 0;
c152c796
AM
13569
13570 if (info->traditional_format
13571 || !is_elf_hash_table (info->hash))
75938853 13572 return 0;
c152c796 13573
18cd5bce
AM
13574 o = bfd_get_section_by_name (output_bfd, ".stab");
13575 if (o != NULL)
c152c796 13576 {
18cd5bce 13577 asection *i;
c152c796 13578
18cd5bce 13579 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
8da3dbc5 13580 {
18cd5bce
AM
13581 if (i->size == 0
13582 || i->reloc_count == 0
13583 || i->sec_info_type != SEC_INFO_TYPE_STABS)
13584 continue;
c152c796 13585
18cd5bce
AM
13586 abfd = i->owner;
13587 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
13588 continue;
c152c796 13589
18cd5bce 13590 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 13591 return -1;
c152c796 13592
18cd5bce
AM
13593 if (_bfd_discard_section_stabs (abfd, i,
13594 elf_section_data (i)->sec_info,
5241d853
RS
13595 bfd_elf_reloc_symbol_deleted_p,
13596 &cookie))
75938853 13597 changed = 1;
18cd5bce
AM
13598
13599 fini_reloc_cookie_for_section (&cookie, i);
c152c796 13600 }
18cd5bce
AM
13601 }
13602
2f0c68f2
CM
13603 o = NULL;
13604 if (info->eh_frame_hdr_type != COMPACT_EH_HDR)
13605 o = bfd_get_section_by_name (output_bfd, ".eh_frame");
18cd5bce
AM
13606 if (o != NULL)
13607 {
13608 asection *i;
c152c796 13609
18cd5bce 13610 for (i = o->map_head.s; i != NULL; i = i->map_head.s)
c152c796 13611 {
18cd5bce
AM
13612 if (i->size == 0)
13613 continue;
13614
13615 abfd = i->owner;
13616 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
13617 continue;
13618
13619 if (!init_reloc_cookie_for_section (&cookie, info, i))
75938853 13620 return -1;
18cd5bce
AM
13621
13622 _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
13623 if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
c152c796
AM
13624 bfd_elf_reloc_symbol_deleted_p,
13625 &cookie))
75938853 13626 changed = 1;
18cd5bce
AM
13627
13628 fini_reloc_cookie_for_section (&cookie, i);
c152c796 13629 }
18cd5bce 13630 }
c152c796 13631
18cd5bce
AM
13632 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
13633 {
13634 const struct elf_backend_data *bed;
c152c796 13635
18cd5bce
AM
13636 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
13637 continue;
13638
13639 bed = get_elf_backend_data (abfd);
13640
13641 if (bed->elf_backend_discard_info != NULL)
13642 {
13643 if (!init_reloc_cookie (&cookie, info, abfd))
75938853 13644 return -1;
18cd5bce
AM
13645
13646 if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
75938853 13647 changed = 1;
18cd5bce
AM
13648
13649 fini_reloc_cookie (&cookie, abfd);
13650 }
c152c796
AM
13651 }
13652
2f0c68f2
CM
13653 if (info->eh_frame_hdr_type == COMPACT_EH_HDR)
13654 _bfd_elf_end_eh_frame_parsing (info);
13655
13656 if (info->eh_frame_hdr_type
0e1862bb 13657 && !bfd_link_relocatable (info)
c152c796 13658 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
75938853 13659 changed = 1;
c152c796 13660
75938853 13661 return changed;
c152c796 13662}
082b7297 13663
43e1669b 13664bfd_boolean
0c511000 13665_bfd_elf_section_already_linked (bfd *abfd,
c77ec726 13666 asection *sec,
c0f00686 13667 struct bfd_link_info *info)
082b7297
L
13668{
13669 flagword flags;
c77ec726 13670 const char *name, *key;
082b7297
L
13671 struct bfd_section_already_linked *l;
13672 struct bfd_section_already_linked_hash_entry *already_linked_list;
0c511000 13673
c77ec726
AM
13674 if (sec->output_section == bfd_abs_section_ptr)
13675 return FALSE;
0c511000 13676
c77ec726 13677 flags = sec->flags;
0c511000 13678
c77ec726
AM
13679 /* Return if it isn't a linkonce section. A comdat group section
13680 also has SEC_LINK_ONCE set. */
13681 if ((flags & SEC_LINK_ONCE) == 0)
13682 return FALSE;
0c511000 13683
c77ec726
AM
13684 /* Don't put group member sections on our list of already linked
13685 sections. They are handled as a group via their group section. */
13686 if (elf_sec_group (sec) != NULL)
13687 return FALSE;
0c511000 13688
c77ec726
AM
13689 /* For a SHT_GROUP section, use the group signature as the key. */
13690 name = sec->name;
13691 if ((flags & SEC_GROUP) != 0
13692 && elf_next_in_group (sec) != NULL
13693 && elf_group_name (elf_next_in_group (sec)) != NULL)
13694 key = elf_group_name (elf_next_in_group (sec));
13695 else
13696 {
13697 /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */
0c511000 13698 if (CONST_STRNEQ (name, ".gnu.linkonce.")
c77ec726
AM
13699 && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
13700 key++;
0c511000 13701 else
c77ec726
AM
13702 /* Must be a user linkonce section that doesn't follow gcc's
13703 naming convention. In this case we won't be matching
13704 single member groups. */
13705 key = name;
0c511000 13706 }
6d2cd210 13707
c77ec726 13708 already_linked_list = bfd_section_already_linked_table_lookup (key);
082b7297
L
13709
13710 for (l = already_linked_list->entry; l != NULL; l = l->next)
13711 {
c2370991 13712 /* We may have 2 different types of sections on the list: group
c77ec726
AM
13713 sections with a signature of <key> (<key> is some string),
13714 and linkonce sections named .gnu.linkonce.<type>.<key>.
13715 Match like sections. LTO plugin sections are an exception.
13716 They are always named .gnu.linkonce.t.<key> and match either
13717 type of section. */
13718 if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
13719 && ((flags & SEC_GROUP) != 0
13720 || strcmp (name, l->sec->name) == 0))
13721 || (l->sec->owner->flags & BFD_PLUGIN) != 0)
082b7297
L
13722 {
13723 /* The section has already been linked. See if we should
6d2cd210 13724 issue a warning. */
c77ec726
AM
13725 if (!_bfd_handle_already_linked (sec, l, info))
13726 return FALSE;
082b7297 13727
c77ec726 13728 if (flags & SEC_GROUP)
3d7f7666 13729 {
c77ec726
AM
13730 asection *first = elf_next_in_group (sec);
13731 asection *s = first;
3d7f7666 13732
c77ec726 13733 while (s != NULL)
3d7f7666 13734 {
c77ec726
AM
13735 s->output_section = bfd_abs_section_ptr;
13736 /* Record which group discards it. */
13737 s->kept_section = l->sec;
13738 s = elf_next_in_group (s);
13739 /* These lists are circular. */
13740 if (s == first)
13741 break;
3d7f7666
L
13742 }
13743 }
082b7297 13744
43e1669b 13745 return TRUE;
082b7297
L
13746 }
13747 }
13748
c77ec726
AM
13749 /* A single member comdat group section may be discarded by a
13750 linkonce section and vice versa. */
13751 if ((flags & SEC_GROUP) != 0)
3d7f7666 13752 {
c77ec726 13753 asection *first = elf_next_in_group (sec);
c2370991 13754
c77ec726
AM
13755 if (first != NULL && elf_next_in_group (first) == first)
13756 /* Check this single member group against linkonce sections. */
13757 for (l = already_linked_list->entry; l != NULL; l = l->next)
13758 if ((l->sec->flags & SEC_GROUP) == 0
13759 && bfd_elf_match_symbols_in_sections (l->sec, first, info))
13760 {
13761 first->output_section = bfd_abs_section_ptr;
13762 first->kept_section = l->sec;
13763 sec->output_section = bfd_abs_section_ptr;
13764 break;
13765 }
13766 }
13767 else
13768 /* Check this linkonce section against single member groups. */
13769 for (l = already_linked_list->entry; l != NULL; l = l->next)
13770 if (l->sec->flags & SEC_GROUP)
6d2cd210 13771 {
c77ec726 13772 asection *first = elf_next_in_group (l->sec);
6d2cd210 13773
c77ec726
AM
13774 if (first != NULL
13775 && elf_next_in_group (first) == first
13776 && bfd_elf_match_symbols_in_sections (first, sec, info))
13777 {
13778 sec->output_section = bfd_abs_section_ptr;
13779 sec->kept_section = first;
13780 break;
13781 }
6d2cd210 13782 }
0c511000 13783
c77ec726
AM
13784 /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
13785 referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
13786 specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
13787 prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its
13788 matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded
13789 but its `.gnu.linkonce.t.F' is discarded means we chose one-only
13790 `.gnu.linkonce.t.F' section from a different bfd not requiring any
13791 `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded.
13792 The reverse order cannot happen as there is never a bfd with only the
13793 `.gnu.linkonce.r.F' section. The order of sections in a bfd does not
13794 matter as here were are looking only for cross-bfd sections. */
13795
13796 if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
13797 for (l = already_linked_list->entry; l != NULL; l = l->next)
13798 if ((l->sec->flags & SEC_GROUP) == 0
13799 && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
13800 {
13801 if (abfd != l->sec->owner)
13802 sec->output_section = bfd_abs_section_ptr;
13803 break;
13804 }
80c29487 13805
082b7297 13806 /* This is the first section with this name. Record it. */
c77ec726 13807 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
bb6198d2 13808 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
c77ec726 13809 return sec->output_section == bfd_abs_section_ptr;
082b7297 13810}
81e1b023 13811
a4d8e49b
L
13812bfd_boolean
13813_bfd_elf_common_definition (Elf_Internal_Sym *sym)
13814{
13815 return sym->st_shndx == SHN_COMMON;
13816}
13817
13818unsigned int
13819_bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
13820{
13821 return SHN_COMMON;
13822}
13823
13824asection *
13825_bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
13826{
13827 return bfd_com_section_ptr;
13828}
10455f89
HPN
13829
13830bfd_vma
13831_bfd_elf_default_got_elt_size (bfd *abfd,
13832 struct bfd_link_info *info ATTRIBUTE_UNUSED,
13833 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
13834 bfd *ibfd ATTRIBUTE_UNUSED,
13835 unsigned long symndx ATTRIBUTE_UNUSED)
13836{
13837 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13838 return bed->s->arch_size / 8;
13839}
83bac4b0
NC
13840
13841/* Routines to support the creation of dynamic relocs. */
13842
83bac4b0
NC
13843/* Returns the name of the dynamic reloc section associated with SEC. */
13844
13845static const char *
13846get_dynamic_reloc_section_name (bfd * abfd,
13847 asection * sec,
13848 bfd_boolean is_rela)
13849{
ddcf1fcf
BS
13850 char *name;
13851 const char *old_name = bfd_get_section_name (NULL, sec);
13852 const char *prefix = is_rela ? ".rela" : ".rel";
83bac4b0 13853
ddcf1fcf 13854 if (old_name == NULL)
83bac4b0
NC
13855 return NULL;
13856
ddcf1fcf 13857 name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
68ffbac6 13858 sprintf (name, "%s%s", prefix, old_name);
83bac4b0
NC
13859
13860 return name;
13861}
13862
13863/* Returns the dynamic reloc section associated with SEC.
13864 If necessary compute the name of the dynamic reloc section based
13865 on SEC's name (looked up in ABFD's string table) and the setting
13866 of IS_RELA. */
13867
13868asection *
13869_bfd_elf_get_dynamic_reloc_section (bfd * abfd,
13870 asection * sec,
13871 bfd_boolean is_rela)
13872{
13873 asection * reloc_sec = elf_section_data (sec)->sreloc;
13874
13875 if (reloc_sec == NULL)
13876 {
13877 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
13878
13879 if (name != NULL)
13880 {
3d4d4302 13881 reloc_sec = bfd_get_linker_section (abfd, name);
83bac4b0
NC
13882
13883 if (reloc_sec != NULL)
13884 elf_section_data (sec)->sreloc = reloc_sec;
13885 }
13886 }
13887
13888 return reloc_sec;
13889}
13890
13891/* Returns the dynamic reloc section associated with SEC. If the
13892 section does not exist it is created and attached to the DYNOBJ
13893 bfd and stored in the SRELOC field of SEC's elf_section_data
13894 structure.
f8076f98 13895
83bac4b0
NC
13896 ALIGNMENT is the alignment for the newly created section and
13897 IS_RELA defines whether the name should be .rela.<SEC's name>
13898 or .rel.<SEC's name>. The section name is looked up in the
13899 string table associated with ABFD. */
13900
13901asection *
ca4be51c
AM
13902_bfd_elf_make_dynamic_reloc_section (asection *sec,
13903 bfd *dynobj,
13904 unsigned int alignment,
13905 bfd *abfd,
13906 bfd_boolean is_rela)
83bac4b0
NC
13907{
13908 asection * reloc_sec = elf_section_data (sec)->sreloc;
13909
13910 if (reloc_sec == NULL)
13911 {
13912 const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
13913
13914 if (name == NULL)
13915 return NULL;
13916
3d4d4302 13917 reloc_sec = bfd_get_linker_section (dynobj, name);
83bac4b0
NC
13918
13919 if (reloc_sec == NULL)
13920 {
3d4d4302
AM
13921 flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
13922 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
83bac4b0
NC
13923 if ((sec->flags & SEC_ALLOC) != 0)
13924 flags |= SEC_ALLOC | SEC_LOAD;
13925
3d4d4302 13926 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
83bac4b0
NC
13927 if (reloc_sec != NULL)
13928 {
8877b5e5
AM
13929 /* _bfd_elf_get_sec_type_attr chooses a section type by
13930 name. Override as it may be wrong, eg. for a user
13931 section named "auto" we'll get ".relauto" which is
13932 seen to be a .rela section. */
13933 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
83bac4b0
NC
13934 if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
13935 reloc_sec = NULL;
13936 }
13937 }
13938
13939 elf_section_data (sec)->sreloc = reloc_sec;
13940 }
13941
13942 return reloc_sec;
13943}
1338dd10 13944
bffebb6b
AM
13945/* Copy the ELF symbol type and other attributes for a linker script
13946 assignment from HSRC to HDEST. Generally this should be treated as
13947 if we found a strong non-dynamic definition for HDEST (except that
13948 ld ignores multiple definition errors). */
1338dd10 13949void
bffebb6b
AM
13950_bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
13951 struct bfd_link_hash_entry *hdest,
13952 struct bfd_link_hash_entry *hsrc)
1338dd10 13953{
bffebb6b
AM
13954 struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
13955 struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
13956 Elf_Internal_Sym isym;
1338dd10
PB
13957
13958 ehdest->type = ehsrc->type;
35fc36a8 13959 ehdest->target_internal = ehsrc->target_internal;
bffebb6b
AM
13960
13961 isym.st_other = ehsrc->other;
b8417128 13962 elf_merge_st_other (abfd, ehdest, &isym, NULL, TRUE, FALSE);
1338dd10 13963}
351f65ca
L
13964
13965/* Append a RELA relocation REL to section S in BFD. */
13966
13967void
13968elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13969{
13970 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13971 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
13972 BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
13973 bed->s->swap_reloca_out (abfd, rel, loc);
13974}
13975
13976/* Append a REL relocation REL to section S in BFD. */
13977
13978void
13979elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13980{
13981 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13982 bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
13983 BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
59d6ffb2 13984 bed->s->swap_reloc_out (abfd, rel, loc);
351f65ca 13985}
This page took 2.336954 seconds and 4 git commands to generate.