x86: Mark __bss_start, _end and _edata locally defined
[deliverable/binutils-gdb.git] / bfd / elfxx-x86.c
CommitLineData
0afcef53 1/* x86 specific support for ELF
219d1afa 2 Copyright (C) 2017-2018 Free Software Foundation, Inc.
0afcef53
L
3
4 This file is part of BFD, the Binary File Descriptor library.
5
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
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
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.
15
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
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21#include "elfxx-x86.h"
a6798bab 22#include "elf-vxworks.h"
765e526c
L
23#include "objalloc.h"
24#include "elf/i386.h"
25#include "elf/x86-64.h"
26
27/* The name of the dynamic interpreter. This is put in the .interp
28 section. */
29
30#define ELF32_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
31#define ELF64_DYNAMIC_INTERPRETER "/lib/ld64.so.1"
32#define ELFX32_DYNAMIC_INTERPRETER "/lib/ldx32.so.1"
0afcef53 33
39946cc2
L
34bfd_boolean
35_bfd_x86_elf_mkobject (bfd *abfd)
36{
37 return bfd_elf_allocate_object (abfd,
38 sizeof (struct elf_x86_obj_tdata),
39 get_elf_backend_data (abfd)->target_id);
40}
41
0afcef53
L
42/* _TLS_MODULE_BASE_ needs to be treated especially when linking
43 executables. Rather than setting it to the beginning of the TLS
44 section, we have to set it to the end. This function may be called
45 multiple times, it is idempotent. */
46
47void
48_bfd_x86_elf_set_tls_module_base (struct bfd_link_info *info)
49{
50 struct elf_x86_link_hash_table *htab;
51 struct bfd_link_hash_entry *base;
52 const struct elf_backend_data *bed;
53
54 if (!bfd_link_executable (info))
55 return;
56
57 bed = get_elf_backend_data (info->output_bfd);
58 htab = elf_x86_hash_table (info, bed->target_id);
59 if (htab == NULL)
60 return;
61
62 base = htab->tls_module_base;
63 if (base == NULL)
64 return;
65
66 base->u.def.value = htab->elf.tls_size;
67}
68
69/* Return the base VMA address which should be subtracted from real addresses
70 when resolving @dtpoff relocation.
71 This is PT_TLS segment p_vaddr. */
72
73bfd_vma
74_bfd_x86_elf_dtpoff_base (struct bfd_link_info *info)
75{
76 /* If tls_sec is NULL, we should have signalled an error already. */
77 if (elf_hash_table (info)->tls_sec == NULL)
78 return 0;
79 return elf_hash_table (info)->tls_sec->vma;
80}
81
b9ce864c
L
82/* Allocate space in .plt, .got and associated reloc sections for
83 dynamic relocs. */
84
5e2ac45d 85static bfd_boolean
70090aa5 86elf_x86_allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
b9ce864c
L
87{
88 struct bfd_link_info *info;
89 struct elf_x86_link_hash_table *htab;
90 struct elf_x86_link_hash_entry *eh;
91 struct elf_dyn_relocs *p;
92 unsigned int plt_entry_size;
93 bfd_boolean resolved_to_zero;
94 const struct elf_backend_data *bed;
95
96 if (h->root.type == bfd_link_hash_indirect)
97 return TRUE;
98
99 eh = (struct elf_x86_link_hash_entry *) h;
100
101 info = (struct bfd_link_info *) inf;
102 bed = get_elf_backend_data (info->output_bfd);
103 htab = elf_x86_hash_table (info, bed->target_id);
104 if (htab == NULL)
105 return FALSE;
106
107 plt_entry_size = htab->plt.plt_entry_size;
108
c5bce5c6 109 resolved_to_zero = UNDEFINED_WEAK_RESOLVED_TO_ZERO (info, eh);
b9ce864c 110
b9ce864c
L
111 /* We can't use the GOT PLT if pointer equality is needed since
112 finish_dynamic_symbol won't clear symbol value and the dynamic
113 linker won't update the GOT slot. We will get into an infinite
114 loop at run-time. */
115 if (htab->plt_got != NULL
116 && h->type != STT_GNU_IFUNC
117 && !h->pointer_equality_needed
118 && h->plt.refcount > 0
119 && h->got.refcount > 0)
120 {
121 /* Don't use the regular PLT if there are both GOT and GOTPLT
07d6d2b8 122 reloctions. */
b9ce864c
L
123 h->plt.offset = (bfd_vma) -1;
124
125 /* Use the GOT PLT. */
126 eh->plt_got.refcount = 1;
127 }
128
129 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
130 here if it is defined and referenced in a non-shared object. */
131 if (h->type == STT_GNU_IFUNC
132 && h->def_regular)
133 {
134 if (_bfd_elf_allocate_ifunc_dyn_relocs (info, h, &eh->dyn_relocs,
135 &htab->readonly_dynrelocs_against_ifunc,
136 plt_entry_size,
137 (htab->plt.has_plt0
138 * plt_entry_size),
139 htab->got_entry_size,
140 TRUE))
141 {
142 asection *s = htab->plt_second;
143 if (h->plt.offset != (bfd_vma) -1 && s != NULL)
144 {
145 /* Use the second PLT section if it is created. */
146 eh->plt_second.offset = s->size;
147
148 /* Make room for this entry in the second PLT section. */
149 s->size += htab->non_lazy_plt->plt_entry_size;
150 }
151
152 return TRUE;
153 }
154 else
155 return FALSE;
156 }
157 /* Don't create the PLT entry if there are only function pointer
158 relocations which can be resolved at run-time. */
159 else if (htab->elf.dynamic_sections_created
79b0c981 160 && (h->plt.refcount > 0
b9ce864c
L
161 || eh->plt_got.refcount > 0))
162 {
163 bfd_boolean use_plt_got = eh->plt_got.refcount > 0;
164
b9ce864c
L
165 /* Make sure this symbol is output as a dynamic symbol.
166 Undefined weak syms won't yet be marked as dynamic. */
167 if (h->dynindx == -1
168 && !h->forced_local
169 && !resolved_to_zero
170 && h->root.type == bfd_link_hash_undefweak)
171 {
172 if (! bfd_elf_link_record_dynamic_symbol (info, h))
173 return FALSE;
174 }
175
176 if (bfd_link_pic (info)
177 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
178 {
179 asection *s = htab->elf.splt;
180 asection *second_s = htab->plt_second;
181 asection *got_s = htab->plt_got;
451875b4 182 bfd_boolean use_plt;
b9ce864c
L
183
184 /* If this is the first .plt entry, make room for the special
185 first entry. The .plt section is used by prelink to undo
186 prelinking for dynamic relocations. */
187 if (s->size == 0)
188 s->size = htab->plt.has_plt0 * plt_entry_size;
189
190 if (use_plt_got)
191 eh->plt_got.offset = got_s->size;
192 else
193 {
194 h->plt.offset = s->size;
195 if (second_s)
196 eh->plt_second.offset = second_s->size;
197 }
198
199 /* If this symbol is not defined in a regular file, and we are
451875b4
L
200 generating PDE, then set the symbol to this location in the
201 .plt. This is required to make function pointers compare
202 as equal between PDE and the shared library.
203
204 NB: If PLT is PC-relative, we can use the .plt in PIE for
205 function address. */
206 if (h->def_regular)
207 use_plt = FALSE;
208 else if (htab->pcrel_plt)
209 use_plt = ! bfd_link_dll (info);
210 else
211 use_plt = bfd_link_pde (info);
212 if (use_plt)
b9ce864c
L
213 {
214 if (use_plt_got)
215 {
216 /* We need to make a call to the entry of the GOT PLT
217 instead of regular PLT entry. */
218 h->root.u.def.section = got_s;
219 h->root.u.def.value = eh->plt_got.offset;
220 }
221 else
222 {
223 if (second_s)
224 {
225 /* We need to make a call to the entry of the
226 second PLT instead of regular PLT entry. */
227 h->root.u.def.section = second_s;
228 h->root.u.def.value = eh->plt_second.offset;
229 }
230 else
231 {
232 h->root.u.def.section = s;
233 h->root.u.def.value = h->plt.offset;
234 }
235 }
236 }
237
238 /* Make room for this entry. */
239 if (use_plt_got)
240 got_s->size += htab->non_lazy_plt->plt_entry_size;
241 else
242 {
243 s->size += plt_entry_size;
244 if (second_s)
245 second_s->size += htab->non_lazy_plt->plt_entry_size;
246
247 /* We also need to make an entry in the .got.plt section,
248 which will be placed in the .got section by the linker
249 script. */
250 htab->elf.sgotplt->size += htab->got_entry_size;
251
252 /* There should be no PLT relocation against resolved
253 undefined weak symbol in executable. */
254 if (!resolved_to_zero)
255 {
256 /* We also need to make an entry in the .rel.plt
257 section. */
258 htab->elf.srelplt->size += htab->sizeof_reloc;
259 htab->elf.srelplt->reloc_count++;
260 }
261 }
262
851b6fa1 263 if (htab->target_os == is_vxworks && !bfd_link_pic (info))
b9ce864c
L
264 {
265 /* VxWorks has a second set of relocations for each PLT entry
266 in executables. They go in a separate relocation section,
267 which is processed by the kernel loader. */
268
269 /* There are two relocations for the initial PLT entry: an
270 R_386_32 relocation for _GLOBAL_OFFSET_TABLE_ + 4 and an
271 R_386_32 relocation for _GLOBAL_OFFSET_TABLE_ + 8. */
272
273 asection *srelplt2 = htab->srelplt2;
274 if (h->plt.offset == plt_entry_size)
275 srelplt2->size += (htab->sizeof_reloc * 2);
276
277 /* There are two extra relocations for each subsequent PLT entry:
278 an R_386_32 relocation for the GOT entry, and an R_386_32
279 relocation for the PLT entry. */
280
281 srelplt2->size += (htab->sizeof_reloc * 2);
282 }
283 }
284 else
285 {
286 eh->plt_got.offset = (bfd_vma) -1;
287 h->plt.offset = (bfd_vma) -1;
288 h->needs_plt = 0;
289 }
290 }
291 else
292 {
293 eh->plt_got.offset = (bfd_vma) -1;
294 h->plt.offset = (bfd_vma) -1;
295 h->needs_plt = 0;
296 }
297
298 eh->tlsdesc_got = (bfd_vma) -1;
299
300 /* For i386, if R_386_TLS_{IE_32,IE,GOTIE} symbol is now local to the
301 binary, make it a R_386_TLS_LE_32 requiring no TLS entry. For
302 x86-64, if R_X86_64_GOTTPOFF symbol is now local to the binary,
303 make it a R_X86_64_TPOFF32 requiring no GOT entry. */
304 if (h->got.refcount > 0
305 && bfd_link_executable (info)
306 && h->dynindx == -1
307 && (elf_x86_hash_entry (h)->tls_type & GOT_TLS_IE))
308 h->got.offset = (bfd_vma) -1;
309 else if (h->got.refcount > 0)
310 {
311 asection *s;
312 bfd_boolean dyn;
313 int tls_type = elf_x86_hash_entry (h)->tls_type;
314
315 /* Make sure this symbol is output as a dynamic symbol.
316 Undefined weak syms won't yet be marked as dynamic. */
317 if (h->dynindx == -1
318 && !h->forced_local
319 && !resolved_to_zero
320 && h->root.type == bfd_link_hash_undefweak)
321 {
322 if (! bfd_elf_link_record_dynamic_symbol (info, h))
323 return FALSE;
324 }
325
326 s = htab->elf.sgot;
327 if (GOT_TLS_GDESC_P (tls_type))
328 {
329 eh->tlsdesc_got = htab->elf.sgotplt->size
330 - elf_x86_compute_jump_table_size (htab);
331 htab->elf.sgotplt->size += 2 * htab->got_entry_size;
332 h->got.offset = (bfd_vma) -2;
333 }
334 if (! GOT_TLS_GDESC_P (tls_type)
335 || GOT_TLS_GD_P (tls_type))
336 {
337 h->got.offset = s->size;
338 s->size += htab->got_entry_size;
339 /* R_386_TLS_GD and R_X86_64_TLSGD need 2 consecutive GOT
340 slots. */
341 if (GOT_TLS_GD_P (tls_type) || tls_type == GOT_TLS_IE_BOTH)
342 s->size += htab->got_entry_size;
343 }
344 dyn = htab->elf.dynamic_sections_created;
345 /* R_386_TLS_IE_32 needs one dynamic relocation,
346 R_386_TLS_IE resp. R_386_TLS_GOTIE needs one dynamic relocation,
347 (but if both R_386_TLS_IE_32 and R_386_TLS_IE is present, we
348 need two), R_386_TLS_GD and R_X86_64_TLSGD need one if local
349 symbol and two if global. No dynamic relocation against
350 resolved undefined weak symbol in executable. */
351 if (tls_type == GOT_TLS_IE_BOTH)
352 htab->elf.srelgot->size += 2 * htab->sizeof_reloc;
353 else if ((GOT_TLS_GD_P (tls_type) && h->dynindx == -1)
354 || (tls_type & GOT_TLS_IE))
355 htab->elf.srelgot->size += htab->sizeof_reloc;
356 else if (GOT_TLS_GD_P (tls_type))
357 htab->elf.srelgot->size += 2 * htab->sizeof_reloc;
358 else if (! GOT_TLS_GDESC_P (tls_type)
359 && ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
360 && !resolved_to_zero)
361 || h->root.type != bfd_link_hash_undefweak)
362 && (bfd_link_pic (info)
363 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
364 htab->elf.srelgot->size += htab->sizeof_reloc;
365 if (GOT_TLS_GDESC_P (tls_type))
0e30d991
L
366 {
367 htab->elf.srelplt->size += htab->sizeof_reloc;
368 if (bed->target_id == X86_64_ELF_DATA)
369 htab->tlsdesc_plt = (bfd_vma) -1;
370 }
b9ce864c
L
371 }
372 else
373 h->got.offset = (bfd_vma) -1;
374
375 if (eh->dyn_relocs == NULL)
376 return TRUE;
377
378 /* In the shared -Bsymbolic case, discard space allocated for
379 dynamic pc-relative relocs against symbols which turn out to be
380 defined in regular objects. For the normal shared case, discard
381 space for pc-relative relocs that have become local due to symbol
382 visibility changes. */
383
384 if (bfd_link_pic (info))
385 {
386 /* Relocs that use pc_count are those that appear on a call
387 insn, or certain REL relocs that can generated via assembly.
388 We want calls to protected symbols to resolve directly to the
389 function rather than going via the plt. If people want
390 function pointer comparisons to work as expected then they
391 should avoid writing weird assembly. */
392 if (SYMBOL_CALLS_LOCAL (info, h))
393 {
394 struct elf_dyn_relocs **pp;
395
396 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
397 {
398 p->count -= p->pc_count;
399 p->pc_count = 0;
400 if (p->count == 0)
401 *pp = p->next;
402 else
403 pp = &p->next;
404 }
405 }
406
851b6fa1 407 if (htab->target_os == is_vxworks)
b9ce864c
L
408 {
409 struct elf_dyn_relocs **pp;
410 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
411 {
412 if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
413 *pp = p->next;
414 else
415 pp = &p->next;
416 }
417 }
418
419 /* Also discard relocs on undefined weak syms with non-default
420 visibility or in PIE. */
421 if (eh->dyn_relocs != NULL)
422 {
423 if (h->root.type == bfd_link_hash_undefweak)
424 {
425 /* Undefined weak symbol is never bound locally in shared
426 library. */
427 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
428 || resolved_to_zero)
429 {
430 if (bed->target_id == I386_ELF_DATA
431 && h->non_got_ref)
432 {
433 /* Keep dynamic non-GOT/non-PLT relocation so
434 that we can branch to 0 without PLT. */
435 struct elf_dyn_relocs **pp;
436
437 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
438 if (p->pc_count == 0)
439 *pp = p->next;
440 else
441 {
442 /* Remove non-R_386_PC32 relocation. */
443 p->count = p->pc_count;
444 pp = &p->next;
445 }
446
447 /* Make sure undefined weak symbols are output
448 as dynamic symbols in PIEs for dynamic non-GOT
449 non-PLT reloations. */
450 if (eh->dyn_relocs != NULL
451 && !bfd_elf_link_record_dynamic_symbol (info, h))
452 return FALSE;
453 }
454 else
455 eh->dyn_relocs = NULL;
456 }
457 else if (h->dynindx == -1
458 && !h->forced_local
459 && !bfd_elf_link_record_dynamic_symbol (info, h))
460 return FALSE;
461 }
462 else if (bfd_link_executable (info)
463 && (h->needs_copy || eh->needs_copy)
464 && h->def_dynamic
465 && !h->def_regular)
466 {
467 /* NB: needs_copy is set only for x86-64. For PIE,
468 discard space for pc-relative relocs against symbols
469 which turn out to need copy relocs. */
470 struct elf_dyn_relocs **pp;
471
472 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
473 {
474 if (p->pc_count != 0)
475 *pp = p->next;
476 else
477 pp = &p->next;
478 }
479 }
480 }
481 }
482 else if (ELIMINATE_COPY_RELOCS)
483 {
484 /* For the non-shared case, discard space for relocs against
485 symbols which turn out to need copy relocs or are not
486 dynamic. Keep dynamic relocations for run-time function
487 pointer initialization. */
488
489 if ((!h->non_got_ref
b9ce864c
L
490 || (h->root.type == bfd_link_hash_undefweak
491 && !resolved_to_zero))
492 && ((h->def_dynamic
493 && !h->def_regular)
494 || (htab->elf.dynamic_sections_created
495 && (h->root.type == bfd_link_hash_undefweak
496 || h->root.type == bfd_link_hash_undefined))))
497 {
498 /* Make sure this symbol is output as a dynamic symbol.
499 Undefined weak syms won't yet be marked as dynamic. */
500 if (h->dynindx == -1
501 && !h->forced_local
502 && !resolved_to_zero
503 && h->root.type == bfd_link_hash_undefweak
504 && ! bfd_elf_link_record_dynamic_symbol (info, h))
505 return FALSE;
506
507 /* If that succeeded, we know we'll be keeping all the
508 relocs. */
509 if (h->dynindx != -1)
510 goto keep;
511 }
512
513 eh->dyn_relocs = NULL;
b9ce864c
L
514
515 keep: ;
516 }
517
518 /* Finally, allocate space. */
519 for (p = eh->dyn_relocs; p != NULL; p = p->next)
520 {
521 asection *sreloc;
522
523 sreloc = elf_section_data (p->sec)->sreloc;
524
525 BFD_ASSERT (sreloc != NULL);
526 sreloc->size += p->count * htab->sizeof_reloc;
527 }
528
529 return TRUE;
530}
531
826c3f1e 532/* Find dynamic relocs for H that apply to read-only sections. */
0afcef53 533
826c3f1e
AM
534static asection *
535readonly_dynrelocs (struct elf_link_hash_entry *h)
0afcef53 536{
0afcef53
L
537 struct elf_dyn_relocs *p;
538
826c3f1e 539 for (p = elf_x86_hash_entry (h)->dyn_relocs; p != NULL; p = p->next)
0afcef53
L
540 {
541 asection *s = p->sec->output_section;
542
543 if (s != NULL && (s->flags & SEC_READONLY) != 0)
826c3f1e
AM
544 return p->sec;
545 }
546 return NULL;
547}
0afcef53 548
826c3f1e
AM
549/* Set DF_TEXTREL if we find any dynamic relocs that apply to
550 read-only sections. */
0afcef53 551
826c3f1e
AM
552static bfd_boolean
553maybe_set_textrel (struct elf_link_hash_entry *h, void *inf)
554{
555 asection *sec;
0afcef53 556
826c3f1e
AM
557 if (h->root.type == bfd_link_hash_indirect)
558 return TRUE;
559
560 /* Skip local IFUNC symbols. */
561 if (h->forced_local && h->type == STT_GNU_IFUNC)
562 return TRUE;
563
564 sec = readonly_dynrelocs (h);
565 if (sec != NULL)
566 {
567 struct bfd_link_info *info = (struct bfd_link_info *) inf;
568
569 info->flags |= DF_TEXTREL;
570 /* xgettext:c-format */
c1c8c1ef 571 info->callbacks->minfo (_("%pB: dynamic relocation against `%pT' "
871b3ab2 572 "in read-only section `%pA'\n"),
826c3f1e
AM
573 sec->owner, h->root.root.string, sec);
574
575 if ((info->warn_shared_textrel && bfd_link_pic (info))
576 || info->error_textrel)
577 /* xgettext:c-format */
871b3ab2
AM
578 info->callbacks->einfo (_("%P: %pB: warning: relocation against `%s' "
579 "in read-only section `%pA'\n"),
826c3f1e
AM
580 sec->owner, h->root.root.string, sec);
581
582 /* Not an error, just cut short the traversal. */
583 return FALSE;
0afcef53
L
584 }
585 return TRUE;
586}
587
b9ce864c
L
588/* Allocate space in .plt, .got and associated reloc sections for
589 local dynamic relocs. */
590
5e2ac45d
L
591static bfd_boolean
592elf_x86_allocate_local_dynreloc (void **slot, void *inf)
b9ce864c
L
593{
594 struct elf_link_hash_entry *h
595 = (struct elf_link_hash_entry *) *slot;
596
597 if (h->type != STT_GNU_IFUNC
598 || !h->def_regular
599 || !h->ref_regular
600 || !h->forced_local
601 || h->root.type != bfd_link_hash_defined)
602 abort ();
603
5e2ac45d 604 return elf_x86_allocate_dynrelocs (h, inf);
b9ce864c
L
605}
606
0afcef53
L
607/* Find and/or create a hash entry for local symbol. */
608
609struct elf_link_hash_entry *
610_bfd_elf_x86_get_local_sym_hash (struct elf_x86_link_hash_table *htab,
611 bfd *abfd, const Elf_Internal_Rela *rel,
612 bfd_boolean create)
613{
614 struct elf_x86_link_hash_entry e, *ret;
615 asection *sec = abfd->sections;
616 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
617 htab->r_sym (rel->r_info));
618 void **slot;
619
620 e.elf.indx = sec->id;
621 e.elf.dynstr_index = htab->r_sym (rel->r_info);
622 slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
623 create ? INSERT : NO_INSERT);
624
625 if (!slot)
626 return NULL;
627
628 if (*slot)
629 {
630 ret = (struct elf_x86_link_hash_entry *) *slot;
631 return &ret->elf;
632 }
633
634 ret = (struct elf_x86_link_hash_entry *)
635 objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
636 sizeof (struct elf_x86_link_hash_entry));
637 if (ret)
638 {
639 memset (ret, 0, sizeof (*ret));
640 ret->elf.indx = sec->id;
641 ret->elf.dynstr_index = htab->r_sym (rel->r_info);
642 ret->elf.dynindx = -1;
643 ret->plt_got.offset = (bfd_vma) -1;
644 *slot = ret;
645 }
646 return &ret->elf;
647}
648
649/* Create an entry in a x86 ELF linker hash table. NB: THIS MUST BE IN
650 SYNC WITH _bfd_elf_link_hash_newfunc. */
651
652struct bfd_hash_entry *
653_bfd_x86_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
654 struct bfd_hash_table *table,
655 const char *string)
656{
657 /* Allocate the structure if it has not already been allocated by a
658 subclass. */
659 if (entry == NULL)
660 {
661 entry = (struct bfd_hash_entry *)
662 bfd_hash_allocate (table,
663 sizeof (struct elf_x86_link_hash_entry));
664 if (entry == NULL)
665 return entry;
666 }
667
668 /* Call the allocation method of the superclass. */
669 entry = _bfd_link_hash_newfunc (entry, table, string);
670 if (entry != NULL)
671 {
672 struct elf_x86_link_hash_entry *eh
673 = (struct elf_x86_link_hash_entry *) entry;
674 struct elf_link_hash_table *htab
675 = (struct elf_link_hash_table *) table;
676
677 memset (&eh->elf.size, 0,
678 (sizeof (struct elf_x86_link_hash_entry)
679 - offsetof (struct elf_link_hash_entry, size)));
680 /* Set local fields. */
681 eh->elf.indx = -1;
682 eh->elf.dynindx = -1;
683 eh->elf.got = htab->init_got_refcount;
684 eh->elf.plt = htab->init_plt_refcount;
685 /* Assume that we have been called by a non-ELF symbol reader.
686 This flag is then reset by the code which reads an ELF input
687 file. This ensures that a symbol created by a non-ELF symbol
688 reader will have the flag set correctly. */
689 eh->elf.non_elf = 1;
690 eh->plt_second.offset = (bfd_vma) -1;
691 eh->plt_got.offset = (bfd_vma) -1;
692 eh->tlsdesc_got = (bfd_vma) -1;
98b273dc 693 eh->zero_undefweak = 1;
0afcef53
L
694 }
695
696 return entry;
697}
698
699/* Compute a hash of a local hash entry. We use elf_link_hash_entry
700 for local symbol so that we can handle local STT_GNU_IFUNC symbols
701 as global symbol. We reuse indx and dynstr_index for local symbol
702 hash since they aren't used by global symbols in this backend. */
703
704hashval_t
705_bfd_x86_elf_local_htab_hash (const void *ptr)
706{
707 struct elf_link_hash_entry *h
708 = (struct elf_link_hash_entry *) ptr;
709 return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
710}
711
712/* Compare local hash entries. */
713
714int
715_bfd_x86_elf_local_htab_eq (const void *ptr1, const void *ptr2)
716{
717 struct elf_link_hash_entry *h1
718 = (struct elf_link_hash_entry *) ptr1;
719 struct elf_link_hash_entry *h2
720 = (struct elf_link_hash_entry *) ptr2;
721
722 return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
723}
724
725/* Destroy an x86 ELF linker hash table. */
726
765e526c
L
727static void
728elf_x86_link_hash_table_free (bfd *obfd)
0afcef53
L
729{
730 struct elf_x86_link_hash_table *htab
731 = (struct elf_x86_link_hash_table *) obfd->link.hash;
732
733 if (htab->loc_hash_table)
734 htab_delete (htab->loc_hash_table);
735 if (htab->loc_hash_memory)
736 objalloc_free ((struct objalloc *) htab->loc_hash_memory);
737 _bfd_elf_link_hash_table_free (obfd);
738}
739
5e2ac45d
L
740static bfd_boolean
741elf_i386_is_reloc_section (const char *secname)
742{
743 return CONST_STRNEQ (secname, ".rel");
744}
745
5e2ac45d
L
746static bfd_boolean
747elf_x86_64_is_reloc_section (const char *secname)
748{
749 return CONST_STRNEQ (secname, ".rela");
750}
5e2ac45d 751
765e526c
L
752/* Create an x86 ELF linker hash table. */
753
754struct bfd_link_hash_table *
755_bfd_x86_elf_link_hash_table_create (bfd *abfd)
756{
757 struct elf_x86_link_hash_table *ret;
758 const struct elf_backend_data *bed;
759 bfd_size_type amt = sizeof (struct elf_x86_link_hash_table);
760
761 ret = (struct elf_x86_link_hash_table *) bfd_zmalloc (amt);
762 if (ret == NULL)
763 return NULL;
764
765 bed = get_elf_backend_data (abfd);
766 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
767 _bfd_x86_elf_link_hash_newfunc,
768 sizeof (struct elf_x86_link_hash_entry),
769 bed->target_id))
770 {
771 free (ret);
772 return NULL;
773 }
774
5e2ac45d
L
775 if (bed->target_id == X86_64_ELF_DATA)
776 {
5e2ac45d
L
777 ret->is_reloc_section = elf_x86_64_is_reloc_section;
778 ret->dt_reloc = DT_RELA;
779 ret->dt_reloc_sz = DT_RELASZ;
780 ret->dt_reloc_ent = DT_RELAENT;
781 ret->got_entry_size = 8;
451875b4 782 ret->pcrel_plt = TRUE;
f04bdfa7 783 ret->tls_get_addr = "__tls_get_addr";
5e2ac45d 784 }
765e526c
L
785 if (ABI_64_P (abfd))
786 {
503294e7 787 ret->sizeof_reloc = sizeof (Elf64_External_Rela);
765e526c
L
788 ret->pointer_r_type = R_X86_64_64;
789 ret->dynamic_interpreter = ELF64_DYNAMIC_INTERPRETER;
790 ret->dynamic_interpreter_size = sizeof ELF64_DYNAMIC_INTERPRETER;
765e526c
L
791 }
792 else
765e526c 793 {
5b86dbf4 794 if (bed->target_id == X86_64_ELF_DATA)
765e526c 795 {
503294e7 796 ret->sizeof_reloc = sizeof (Elf32_External_Rela);
765e526c
L
797 ret->pointer_r_type = R_X86_64_32;
798 ret->dynamic_interpreter = ELFX32_DYNAMIC_INTERPRETER;
799 ret->dynamic_interpreter_size
800 = sizeof ELFX32_DYNAMIC_INTERPRETER;
765e526c
L
801 }
802 else
803 {
5e2ac45d
L
804 ret->is_reloc_section = elf_i386_is_reloc_section;
805 ret->dt_reloc = DT_REL;
806 ret->dt_reloc_sz = DT_RELSZ;
807 ret->dt_reloc_ent = DT_RELENT;
503294e7 808 ret->sizeof_reloc = sizeof (Elf32_External_Rel);
9ff114ca 809 ret->got_entry_size = 4;
451875b4 810 ret->pcrel_plt = FALSE;
765e526c
L
811 ret->pointer_r_type = R_386_32;
812 ret->dynamic_interpreter = ELF32_DYNAMIC_INTERPRETER;
813 ret->dynamic_interpreter_size
814 = sizeof ELF32_DYNAMIC_INTERPRETER;
815 ret->tls_get_addr = "___tls_get_addr";
816 }
817 }
fe53b4a4 818 ret->target_id = bed->target_id;
851b6fa1 819 ret->target_os = get_elf_x86_backend_data (abfd)->target_os;
765e526c
L
820
821 ret->loc_hash_table = htab_try_create (1024,
822 _bfd_x86_elf_local_htab_hash,
823 _bfd_x86_elf_local_htab_eq,
824 NULL);
825 ret->loc_hash_memory = objalloc_create ();
826 if (!ret->loc_hash_table || !ret->loc_hash_memory)
827 {
828 elf_x86_link_hash_table_free (abfd);
829 return NULL;
830 }
831 ret->elf.root.hash_table_free = elf_x86_link_hash_table_free;
832
833 return &ret->elf.root;
834}
835
0afcef53
L
836/* Sort relocs into address order. */
837
838int
839_bfd_x86_elf_compare_relocs (const void *ap, const void *bp)
840{
841 const arelent *a = * (const arelent **) ap;
842 const arelent *b = * (const arelent **) bp;
843
844 if (a->address > b->address)
845 return 1;
846 else if (a->address < b->address)
847 return -1;
848 else
849 return 0;
850}
851
9bc935ef
L
852/* Mark symbol, NAME, as locally defined by linker if it is referenced
853 and not defined in a relocatable object file. */
854
855static void
856elf_x86_linker_defined (struct bfd_link_info *info, const char *name)
857{
858 struct elf_link_hash_entry *h;
859
860 h = elf_link_hash_lookup (elf_hash_table (info), name,
861 FALSE, FALSE, FALSE);
862 if (h == NULL)
863 return;
864
865 while (h->root.type == bfd_link_hash_indirect)
866 h = (struct elf_link_hash_entry *) h->root.u.i.link;
867
868 if (h->root.type == bfd_link_hash_new
869 || h->root.type == bfd_link_hash_undefined
870 || h->root.type == bfd_link_hash_undefweak
871 || h->root.type == bfd_link_hash_common
872 || (!h->def_regular && h->def_dynamic))
873 {
874 elf_x86_hash_entry (h)->local_ref = 2;
875 elf_x86_hash_entry (h)->linker_def = 1;
876 }
877}
878
0afcef53
L
879bfd_boolean
880_bfd_x86_elf_link_check_relocs (bfd *abfd, struct bfd_link_info *info)
881{
882 if (!bfd_link_relocatable (info))
883 {
884 /* Check for __tls_get_addr reference. */
885 struct elf_x86_link_hash_table *htab;
886 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
887 htab = elf_x86_hash_table (info, bed->target_id);
888 if (htab)
889 {
0a27fed7
L
890 struct elf_link_hash_entry *h;
891
892 h = elf_link_hash_lookup (elf_hash_table (info),
0afcef53
L
893 htab->tls_get_addr,
894 FALSE, FALSE, FALSE);
895 if (h != NULL)
8a1b824a
L
896 {
897 elf_x86_hash_entry (h)->tls_get_addr = 1;
898
899 /* Check the versioned __tls_get_addr symbol. */
900 while (h->root.type == bfd_link_hash_indirect)
901 {
902 h = (struct elf_link_hash_entry *) h->root.u.i.link;
903 elf_x86_hash_entry (h)->tls_get_addr = 1;
904 }
905 }
0a27fed7
L
906
907 /* "__ehdr_start" will be defined by linker as a hidden symbol
908 later if it is referenced and not defined. */
9bc935ef
L
909 elf_x86_linker_defined (info, "__ehdr_start");
910
911 if (bfd_link_executable (info))
0a27fed7 912 {
9bc935ef
L
913 /* References to __bss_start, _end and _edata should be
914 locally resolved within executables. */
915 elf_x86_linker_defined (info, "__bss_start");
916 elf_x86_linker_defined (info, "_end");
917 elf_x86_linker_defined (info, "_edata");
0a27fed7 918 }
0afcef53
L
919 }
920 }
921
922 /* Invoke the regular ELF backend linker to do all the work. */
923 return _bfd_elf_link_check_relocs (abfd, info);
924}
925
5e2ac45d
L
926/* Set the sizes of the dynamic sections. */
927
928bfd_boolean
929_bfd_x86_elf_size_dynamic_sections (bfd *output_bfd,
930 struct bfd_link_info *info)
931{
932 struct elf_x86_link_hash_table *htab;
933 bfd *dynobj;
934 asection *s;
935 bfd_boolean relocs;
936 bfd *ibfd;
937 const struct elf_backend_data *bed
938 = get_elf_backend_data (output_bfd);
939
940 htab = elf_x86_hash_table (info, bed->target_id);
941 if (htab == NULL)
942 return FALSE;
943 dynobj = htab->elf.dynobj;
944 if (dynobj == NULL)
945 abort ();
946
947 /* Set up .got offsets for local syms, and space for local dynamic
948 relocs. */
949 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
950 {
951 bfd_signed_vma *local_got;
952 bfd_signed_vma *end_local_got;
953 char *local_tls_type;
954 bfd_vma *local_tlsdesc_gotent;
955 bfd_size_type locsymcount;
956 Elf_Internal_Shdr *symtab_hdr;
957 asection *srel;
958
959 if (! is_x86_elf (ibfd, htab))
960 continue;
961
962 for (s = ibfd->sections; s != NULL; s = s->next)
963 {
964 struct elf_dyn_relocs *p;
965
5e2ac45d
L
966 for (p = ((struct elf_dyn_relocs *)
967 elf_section_data (s)->local_dynrel);
968 p != NULL;
969 p = p->next)
970 {
971 if (!bfd_is_abs_section (p->sec)
972 && bfd_is_abs_section (p->sec->output_section))
973 {
974 /* Input section has been discarded, either because
975 it is a copy of a linkonce section or due to
976 linker script /DISCARD/, so we'll be discarding
977 the relocs too. */
978 }
851b6fa1 979 else if (htab->target_os == is_vxworks
5e2ac45d
L
980 && strcmp (p->sec->output_section->name,
981 ".tls_vars") == 0)
982 {
983 /* Relocations in vxworks .tls_vars sections are
984 handled specially by the loader. */
985 }
986 else if (p->count != 0)
987 {
988 srel = elf_section_data (p->sec)->sreloc;
989 srel->size += p->count * htab->sizeof_reloc;
990 if ((p->sec->output_section->flags & SEC_READONLY) != 0
991 && (info->flags & DF_TEXTREL) == 0)
992 {
993 info->flags |= DF_TEXTREL;
994 if ((info->warn_shared_textrel && bfd_link_pic (info))
995 || info->error_textrel)
996 /* xgettext:c-format */
826c3f1e 997 info->callbacks->einfo
871b3ab2
AM
998 (_("%P: %pB: warning: relocation "
999 "in read-only section `%pA'\n"),
826c3f1e 1000 p->sec->owner, p->sec);
5e2ac45d
L
1001 }
1002 }
1003 }
1004 }
1005
1006 local_got = elf_local_got_refcounts (ibfd);
1007 if (!local_got)
1008 continue;
1009
1010 symtab_hdr = &elf_symtab_hdr (ibfd);
1011 locsymcount = symtab_hdr->sh_info;
1012 end_local_got = local_got + locsymcount;
1013 local_tls_type = elf_x86_local_got_tls_type (ibfd);
1014 local_tlsdesc_gotent = elf_x86_local_tlsdesc_gotent (ibfd);
1015 s = htab->elf.sgot;
1016 srel = htab->elf.srelgot;
1017 for (; local_got < end_local_got;
1018 ++local_got, ++local_tls_type, ++local_tlsdesc_gotent)
1019 {
1020 *local_tlsdesc_gotent = (bfd_vma) -1;
1021 if (*local_got > 0)
1022 {
1023 if (GOT_TLS_GDESC_P (*local_tls_type))
1024 {
1025 *local_tlsdesc_gotent = htab->elf.sgotplt->size
1026 - elf_x86_compute_jump_table_size (htab);
1027 htab->elf.sgotplt->size += 2 * htab->got_entry_size;
1028 *local_got = (bfd_vma) -2;
1029 }
1030 if (! GOT_TLS_GDESC_P (*local_tls_type)
1031 || GOT_TLS_GD_P (*local_tls_type))
1032 {
1033 *local_got = s->size;
1034 s->size += htab->got_entry_size;
1035 if (GOT_TLS_GD_P (*local_tls_type)
1036 || *local_tls_type == GOT_TLS_IE_BOTH)
1037 s->size += htab->got_entry_size;
1038 }
1039 if (bfd_link_pic (info)
1040 || GOT_TLS_GD_ANY_P (*local_tls_type)
1041 || (*local_tls_type & GOT_TLS_IE))
1042 {
1043 if (*local_tls_type == GOT_TLS_IE_BOTH)
1044 srel->size += 2 * htab->sizeof_reloc;
1045 else if (GOT_TLS_GD_P (*local_tls_type)
1046 || ! GOT_TLS_GDESC_P (*local_tls_type))
1047 srel->size += htab->sizeof_reloc;
1048 if (GOT_TLS_GDESC_P (*local_tls_type))
1049 {
1050 htab->elf.srelplt->size += htab->sizeof_reloc;
1051 if (bed->target_id == X86_64_ELF_DATA)
1052 htab->tlsdesc_plt = (bfd_vma) -1;
1053 }
1054 }
1055 }
1056 else
1057 *local_got = (bfd_vma) -1;
1058 }
1059 }
1060
1061 if (htab->tls_ld_or_ldm_got.refcount > 0)
1062 {
1063 /* Allocate 2 got entries and 1 dynamic reloc for R_386_TLS_LDM
07d6d2b8 1064 or R_X86_64_TLSLD relocs. */
5e2ac45d
L
1065 htab->tls_ld_or_ldm_got.offset = htab->elf.sgot->size;
1066 htab->elf.sgot->size += 2 * htab->got_entry_size;
1067 htab->elf.srelgot->size += htab->sizeof_reloc;
1068 }
1069 else
1070 htab->tls_ld_or_ldm_got.offset = -1;
1071
1072 /* Allocate global sym .plt and .got entries, and space for global
1073 sym dynamic relocs. */
1074 elf_link_hash_traverse (&htab->elf, elf_x86_allocate_dynrelocs,
1075 info);
1076
1077 /* Allocate .plt and .got entries, and space for local symbols. */
1078 htab_traverse (htab->loc_hash_table, elf_x86_allocate_local_dynreloc,
1079 info);
1080
1081 /* For every jump slot reserved in the sgotplt, reloc_count is
1082 incremented. However, when we reserve space for TLS descriptors,
1083 it's not incremented, so in order to compute the space reserved
1084 for them, it suffices to multiply the reloc count by the jump
1085 slot size.
1086
1087 PR ld/13302: We start next_irelative_index at the end of .rela.plt
1088 so that R_{386,X86_64}_IRELATIVE entries come last. */
1089 if (htab->elf.srelplt)
1090 {
1091 htab->next_tls_desc_index = htab->elf.srelplt->reloc_count;
1092 htab->sgotplt_jump_table_size
1093 = elf_x86_compute_jump_table_size (htab);
1094 htab->next_irelative_index = htab->elf.srelplt->reloc_count - 1;
1095 }
1096 else if (htab->elf.irelplt)
1097 htab->next_irelative_index = htab->elf.irelplt->reloc_count - 1;
1098
1099 if (htab->tlsdesc_plt)
1100 {
1101 /* NB: tlsdesc_plt is set only for x86-64. If we're not using
1102 lazy TLS relocations, don't generate the PLT and GOT entries
1103 they require. */
1104 if ((info->flags & DF_BIND_NOW))
1105 htab->tlsdesc_plt = 0;
1106 else
1107 {
1108 htab->tlsdesc_got = htab->elf.sgot->size;
1109 htab->elf.sgot->size += htab->got_entry_size;
1110 /* Reserve room for the initial entry.
1111 FIXME: we could probably do away with it in this case. */
1112 if (htab->elf.splt->size == 0)
1113 htab->elf.splt->size = htab->plt.plt_entry_size;
1114 htab->tlsdesc_plt = htab->elf.splt->size;
1115 htab->elf.splt->size += htab->plt.plt_entry_size;
1116 }
1117 }
1118
1119 if (htab->elf.sgotplt)
1120 {
1121 /* Don't allocate .got.plt section if there are no GOT nor PLT
1122 entries and there is no reference to _GLOBAL_OFFSET_TABLE_. */
1123 if ((htab->elf.hgot == NULL
cd048363 1124 || !htab->got_referenced)
5e2ac45d
L
1125 && (htab->elf.sgotplt->size == bed->got_header_size)
1126 && (htab->elf.splt == NULL
1127 || htab->elf.splt->size == 0)
1128 && (htab->elf.sgot == NULL
1129 || htab->elf.sgot->size == 0)
1130 && (htab->elf.iplt == NULL
1131 || htab->elf.iplt->size == 0)
1132 && (htab->elf.igotplt == NULL
1133 || htab->elf.igotplt->size == 0))
cd048363
L
1134 {
1135 htab->elf.sgotplt->size = 0;
3b4c3844
L
1136 /* Solaris requires to keep _GLOBAL_OFFSET_TABLE_ even if it
1137 isn't used. */
1138 if (htab->elf.hgot != NULL && htab->target_os != is_solaris)
cd048363
L
1139 {
1140 /* Remove the unused _GLOBAL_OFFSET_TABLE_ from symbol
1141 table. */
1142 htab->elf.hgot->root.type = bfd_link_hash_undefined;
1143 htab->elf.hgot->root.u.undef.abfd
1144 = htab->elf.hgot->root.u.def.section->owner;
1145 htab->elf.hgot->root.linker_def = 0;
1146 htab->elf.hgot->ref_regular = 0;
1147 htab->elf.hgot->def_regular = 0;
1148 }
1149 }
5e2ac45d
L
1150 }
1151
1152 if (_bfd_elf_eh_frame_present (info))
1153 {
1154 if (htab->plt_eh_frame != NULL
1155 && htab->elf.splt != NULL
1156 && htab->elf.splt->size != 0
1157 && !bfd_is_abs_section (htab->elf.splt->output_section))
1158 htab->plt_eh_frame->size = htab->plt.eh_frame_plt_size;
1159
1160 if (htab->plt_got_eh_frame != NULL
1161 && htab->plt_got != NULL
1162 && htab->plt_got->size != 0
1163 && !bfd_is_abs_section (htab->plt_got->output_section))
1164 htab->plt_got_eh_frame->size
1165 = htab->non_lazy_plt->eh_frame_plt_size;
1166
1167 /* Unwind info for the second PLT and .plt.got sections are
1168 identical. */
1169 if (htab->plt_second_eh_frame != NULL
1170 && htab->plt_second != NULL
1171 && htab->plt_second->size != 0
1172 && !bfd_is_abs_section (htab->plt_second->output_section))
1173 htab->plt_second_eh_frame->size
1174 = htab->non_lazy_plt->eh_frame_plt_size;
1175 }
1176
1177 /* We now have determined the sizes of the various dynamic sections.
1178 Allocate memory for them. */
1179 relocs = FALSE;
1180 for (s = dynobj->sections; s != NULL; s = s->next)
1181 {
1182 bfd_boolean strip_section = TRUE;
1183
1184 if ((s->flags & SEC_LINKER_CREATED) == 0)
1185 continue;
1186
1187 if (s == htab->elf.splt
1188 || s == htab->elf.sgot)
1189 {
1190 /* Strip this section if we don't need it; see the
1191 comment below. */
1192 /* We'd like to strip these sections if they aren't needed, but if
1193 we've exported dynamic symbols from them we must leave them.
1194 It's too late to tell BFD to get rid of the symbols. */
1195
1196 if (htab->elf.hplt != NULL)
1197 strip_section = FALSE;
1198 }
1199 else if (s == htab->elf.sgotplt
1200 || s == htab->elf.iplt
1201 || s == htab->elf.igotplt
1202 || s == htab->plt_second
1203 || s == htab->plt_got
1204 || s == htab->plt_eh_frame
1205 || s == htab->plt_got_eh_frame
1206 || s == htab->plt_second_eh_frame
1207 || s == htab->elf.sdynbss
1208 || s == htab->elf.sdynrelro)
1209 {
1210 /* Strip these too. */
1211 }
1212 else if (htab->is_reloc_section (bfd_get_section_name (dynobj, s)))
1213 {
1214 if (s->size != 0
1215 && s != htab->elf.srelplt
1216 && s != htab->srelplt2)
1217 relocs = TRUE;
1218
1219 /* We use the reloc_count field as a counter if we need
1220 to copy relocs into the output file. */
1221 if (s != htab->elf.srelplt)
1222 s->reloc_count = 0;
1223 }
1224 else
1225 {
1226 /* It's not one of our sections, so don't allocate space. */
1227 continue;
1228 }
1229
1230 if (s->size == 0)
1231 {
1232 /* If we don't need this section, strip it from the
1233 output file. This is mostly to handle .rel.bss and
1234 .rel.plt. We must create both sections in
1235 create_dynamic_sections, because they must be created
1236 before the linker maps input sections to output
1237 sections. The linker does that before
1238 adjust_dynamic_symbol is called, and it is that
1239 function which decides whether anything needs to go
1240 into these sections. */
1241 if (strip_section)
1242 s->flags |= SEC_EXCLUDE;
1243 continue;
1244 }
1245
1246 if ((s->flags & SEC_HAS_CONTENTS) == 0)
1247 continue;
1248
1249 /* Allocate memory for the section contents. We use bfd_zalloc
1250 here in case unused entries are not reclaimed before the
1251 section's contents are written out. This should not happen,
1252 but this way if it does, we get a R_386_NONE or R_X86_64_NONE
1253 reloc instead of garbage. */
1254 s->contents = (unsigned char *) bfd_zalloc (dynobj, s->size);
1255 if (s->contents == NULL)
1256 return FALSE;
1257 }
1258
1259 if (htab->plt_eh_frame != NULL
1260 && htab->plt_eh_frame->contents != NULL)
1261 {
1262 memcpy (htab->plt_eh_frame->contents,
1263 htab->plt.eh_frame_plt,
1264 htab->plt_eh_frame->size);
1265 bfd_put_32 (dynobj, htab->elf.splt->size,
1266 htab->plt_eh_frame->contents + PLT_FDE_LEN_OFFSET);
1267 }
1268
1269 if (htab->plt_got_eh_frame != NULL
1270 && htab->plt_got_eh_frame->contents != NULL)
1271 {
1272 memcpy (htab->plt_got_eh_frame->contents,
1273 htab->non_lazy_plt->eh_frame_plt,
1274 htab->plt_got_eh_frame->size);
1275 bfd_put_32 (dynobj, htab->plt_got->size,
1276 (htab->plt_got_eh_frame->contents
1277 + PLT_FDE_LEN_OFFSET));
1278 }
1279
1280 if (htab->plt_second_eh_frame != NULL
1281 && htab->plt_second_eh_frame->contents != NULL)
1282 {
1283 memcpy (htab->plt_second_eh_frame->contents,
1284 htab->non_lazy_plt->eh_frame_plt,
1285 htab->plt_second_eh_frame->size);
1286 bfd_put_32 (dynobj, htab->plt_second->size,
1287 (htab->plt_second_eh_frame->contents
1288 + PLT_FDE_LEN_OFFSET));
1289 }
1290
1291 if (htab->elf.dynamic_sections_created)
1292 {
1293 /* Add some entries to the .dynamic section. We fill in the
1294 values later, in elf_{i386,x86_64}_finish_dynamic_sections,
1295 but we must add the entries now so that we get the correct
1296 size for the .dynamic section. The DT_DEBUG entry is filled
1297 in by the dynamic linker and used by the debugger. */
1298#define add_dynamic_entry(TAG, VAL) \
1299 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
1300
1301 if (bfd_link_executable (info))
1302 {
1303 if (!add_dynamic_entry (DT_DEBUG, 0))
1304 return FALSE;
1305 }
1306
1307 if (htab->elf.splt->size != 0)
1308 {
1309 /* DT_PLTGOT is used by prelink even if there is no PLT
1310 relocation. */
1311 if (!add_dynamic_entry (DT_PLTGOT, 0))
1312 return FALSE;
1313 }
1314
1315 if (htab->elf.srelplt->size != 0)
1316 {
1317 if (!add_dynamic_entry (DT_PLTRELSZ, 0)
1318 || !add_dynamic_entry (DT_PLTREL, htab->dt_reloc)
1319 || !add_dynamic_entry (DT_JMPREL, 0))
1320 return FALSE;
1321 }
1322
1323 if (htab->tlsdesc_plt
1324 && (!add_dynamic_entry (DT_TLSDESC_PLT, 0)
1325 || !add_dynamic_entry (DT_TLSDESC_GOT, 0)))
1326 return FALSE;
1327
1328 if (relocs)
1329 {
1330 if (!add_dynamic_entry (htab->dt_reloc, 0)
1331 || !add_dynamic_entry (htab->dt_reloc_sz, 0)
1332 || !add_dynamic_entry (htab->dt_reloc_ent,
1333 htab->sizeof_reloc))
1334 return FALSE;
1335
1336 /* If any dynamic relocs apply to a read-only section,
1337 then we need a DT_TEXTREL entry. */
1338 if ((info->flags & DF_TEXTREL) == 0)
826c3f1e 1339 elf_link_hash_traverse (&htab->elf, maybe_set_textrel, info);
5e2ac45d
L
1340
1341 if ((info->flags & DF_TEXTREL) != 0)
1342 {
1343 if (htab->readonly_dynrelocs_against_ifunc)
1344 {
1345 info->callbacks->einfo
826c3f1e
AM
1346 (_("%P%X: read-only segment has dynamic IFUNC relocations;"
1347 " recompile with -fPIC\n"));
5e2ac45d
L
1348 bfd_set_error (bfd_error_bad_value);
1349 return FALSE;
1350 }
1351
1352 if (!add_dynamic_entry (DT_TEXTREL, 0))
1353 return FALSE;
1354 }
1355 }
851b6fa1 1356 if (htab->target_os == is_vxworks
5e2ac45d
L
1357 && !elf_vxworks_add_dynamic_entries (output_bfd, info))
1358 return FALSE;
1359 }
1360#undef add_dynamic_entry
1361
1362 return TRUE;
1363}
1364
9577f60b
L
1365/* Finish up the x86 dynamic sections. */
1366
1367struct elf_x86_link_hash_table *
1368_bfd_x86_elf_finish_dynamic_sections (bfd *output_bfd,
1369 struct bfd_link_info *info)
1370{
1371 struct elf_x86_link_hash_table *htab;
1372 const struct elf_backend_data *bed;
1373 bfd *dynobj;
1374 asection *sdyn;
1375 bfd_byte *dyncon, *dynconend;
1376 bfd_size_type sizeof_dyn;
1377
1378 bed = get_elf_backend_data (output_bfd);
1379 htab = elf_x86_hash_table (info, bed->target_id);
1380 if (htab == NULL)
1381 return htab;
1382
1383 dynobj = htab->elf.dynobj;
1384 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
1385
1386 /* GOT is always created in setup_gnu_properties. But it may not be
1387 needed. .got.plt section may be needed for static IFUNC. */
1388 if (htab->elf.sgotplt && htab->elf.sgotplt->size > 0)
1389 {
1390 bfd_vma dynamic_addr;
1391
1392 if (bfd_is_abs_section (htab->elf.sgotplt->output_section))
1393 {
1394 _bfd_error_handler
871b3ab2 1395 (_("discarded output section: `%pA'"), htab->elf.sgotplt);
9577f60b
L
1396 return NULL;
1397 }
1398
1399 elf_section_data (htab->elf.sgotplt->output_section)->this_hdr.sh_entsize
1400 = htab->got_entry_size;
1401
1402 dynamic_addr = (sdyn == NULL
1403 ? (bfd_vma) 0
1404 : sdyn->output_section->vma + sdyn->output_offset);
1405
1406 /* Set the first entry in the global offset table to the address
07d6d2b8 1407 of the dynamic section. Write GOT[1] and GOT[2], needed for
9577f60b
L
1408 the dynamic linker. */
1409 if (htab->got_entry_size == 8)
1410 {
1411 bfd_put_64 (output_bfd, dynamic_addr,
1412 htab->elf.sgotplt->contents);
1413 bfd_put_64 (output_bfd, (bfd_vma) 0,
1414 htab->elf.sgotplt->contents + 8);
1415 bfd_put_64 (output_bfd, (bfd_vma) 0,
1416 htab->elf.sgotplt->contents + 8*2);
1417 }
1418 else
1419 {
1420 bfd_put_32 (output_bfd, dynamic_addr,
1421 htab->elf.sgotplt->contents);
1422 bfd_put_32 (output_bfd, 0,
1423 htab->elf.sgotplt->contents + 4);
1424 bfd_put_32 (output_bfd, 0,
1425 htab->elf.sgotplt->contents + 4*2);
1426 }
1427 }
1428
1429 if (!htab->elf.dynamic_sections_created)
1430 return htab;
1431
1432 if (sdyn == NULL || htab->elf.sgot == NULL)
1433 abort ();
1434
1435 sizeof_dyn = bed->s->sizeof_dyn;
1436 dyncon = sdyn->contents;
1437 dynconend = sdyn->contents + sdyn->size;
1438 for (; dyncon < dynconend; dyncon += sizeof_dyn)
1439 {
1440 Elf_Internal_Dyn dyn;
1441 asection *s;
1442
1443 (*bed->s->swap_dyn_in) (dynobj, dyncon, &dyn);
1444
1445 switch (dyn.d_tag)
1446 {
1447 default:
851b6fa1 1448 if (htab->target_os == is_vxworks
9577f60b
L
1449 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
1450 break;
1451 continue;
1452
1453 case DT_PLTGOT:
1454 s = htab->elf.sgotplt;
1455 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
1456 break;
1457
1458 case DT_JMPREL:
1459 dyn.d_un.d_ptr = htab->elf.srelplt->output_section->vma;
1460 break;
1461
1462 case DT_PLTRELSZ:
1463 s = htab->elf.srelplt->output_section;
1464 dyn.d_un.d_val = s->size;
1465 break;
1466
1467 case DT_TLSDESC_PLT:
1468 s = htab->elf.splt;
1469 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
1470 + htab->tlsdesc_plt;
1471 break;
1472
1473 case DT_TLSDESC_GOT:
1474 s = htab->elf.sgot;
1475 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
1476 + htab->tlsdesc_got;
1477 break;
1478 }
1479
1480 (*bed->s->swap_dyn_out) (output_bfd, &dyn, dyncon);
1481 }
1482
1483 if (htab->plt_got != NULL && htab->plt_got->size > 0)
1484 elf_section_data (htab->plt_got->output_section)
1485 ->this_hdr.sh_entsize = htab->non_lazy_plt->plt_entry_size;
1486
1487 if (htab->plt_second != NULL && htab->plt_second->size > 0)
1488 elf_section_data (htab->plt_second->output_section)
1489 ->this_hdr.sh_entsize = htab->non_lazy_plt->plt_entry_size;
1490
1491 /* Adjust .eh_frame for .plt section. */
1492 if (htab->plt_eh_frame != NULL
1493 && htab->plt_eh_frame->contents != NULL)
1494 {
1495 if (htab->elf.splt != NULL
1496 && htab->elf.splt->size != 0
1497 && (htab->elf.splt->flags & SEC_EXCLUDE) == 0
1498 && htab->elf.splt->output_section != NULL
1499 && htab->plt_eh_frame->output_section != NULL)
1500 {
1501 bfd_vma plt_start = htab->elf.splt->output_section->vma;
1502 bfd_vma eh_frame_start = htab->plt_eh_frame->output_section->vma
1503 + htab->plt_eh_frame->output_offset
1504 + PLT_FDE_START_OFFSET;
1505 bfd_put_signed_32 (dynobj, plt_start - eh_frame_start,
1506 htab->plt_eh_frame->contents
1507 + PLT_FDE_START_OFFSET);
1508 }
1509
1510 if (htab->plt_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME)
1511 {
1512 if (! _bfd_elf_write_section_eh_frame (output_bfd, info,
1513 htab->plt_eh_frame,
1514 htab->plt_eh_frame->contents))
1515 return NULL;
1516 }
1517 }
1518
1519 /* Adjust .eh_frame for .plt.got section. */
1520 if (htab->plt_got_eh_frame != NULL
1521 && htab->plt_got_eh_frame->contents != NULL)
1522 {
1523 if (htab->plt_got != NULL
1524 && htab->plt_got->size != 0
1525 && (htab->plt_got->flags & SEC_EXCLUDE) == 0
1526 && htab->plt_got->output_section != NULL
1527 && htab->plt_got_eh_frame->output_section != NULL)
1528 {
1529 bfd_vma plt_start = htab->plt_got->output_section->vma;
1530 bfd_vma eh_frame_start = htab->plt_got_eh_frame->output_section->vma
1531 + htab->plt_got_eh_frame->output_offset
1532 + PLT_FDE_START_OFFSET;
1533 bfd_put_signed_32 (dynobj, plt_start - eh_frame_start,
1534 htab->plt_got_eh_frame->contents
1535 + PLT_FDE_START_OFFSET);
1536 }
1537 if (htab->plt_got_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME)
1538 {
1539 if (! _bfd_elf_write_section_eh_frame (output_bfd, info,
1540 htab->plt_got_eh_frame,
1541 htab->plt_got_eh_frame->contents))
1542 return NULL;
1543 }
1544 }
1545
1546 /* Adjust .eh_frame for the second PLT section. */
1547 if (htab->plt_second_eh_frame != NULL
1548 && htab->plt_second_eh_frame->contents != NULL)
1549 {
1550 if (htab->plt_second != NULL
1551 && htab->plt_second->size != 0
1552 && (htab->plt_second->flags & SEC_EXCLUDE) == 0
1553 && htab->plt_second->output_section != NULL
1554 && htab->plt_second_eh_frame->output_section != NULL)
1555 {
1556 bfd_vma plt_start = htab->plt_second->output_section->vma;
1557 bfd_vma eh_frame_start
1558 = (htab->plt_second_eh_frame->output_section->vma
1559 + htab->plt_second_eh_frame->output_offset
1560 + PLT_FDE_START_OFFSET);
1561 bfd_put_signed_32 (dynobj, plt_start - eh_frame_start,
1562 htab->plt_second_eh_frame->contents
1563 + PLT_FDE_START_OFFSET);
1564 }
1565 if (htab->plt_second_eh_frame->sec_info_type
1566 == SEC_INFO_TYPE_EH_FRAME)
1567 {
1568 if (! _bfd_elf_write_section_eh_frame (output_bfd, info,
1569 htab->plt_second_eh_frame,
1570 htab->plt_second_eh_frame->contents))
1571 return NULL;
1572 }
1573 }
1574
1575 if (htab->elf.sgot && htab->elf.sgot->size > 0)
1576 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize
1577 = htab->got_entry_size;
1578
1579 return htab;
1580}
1581
1582
0afcef53
L
1583bfd_boolean
1584_bfd_x86_elf_always_size_sections (bfd *output_bfd,
1585 struct bfd_link_info *info)
1586{
1587 asection *tls_sec = elf_hash_table (info)->tls_sec;
1588
1589 if (tls_sec)
1590 {
1591 struct elf_link_hash_entry *tlsbase;
1592
1593 tlsbase = elf_link_hash_lookup (elf_hash_table (info),
1594 "_TLS_MODULE_BASE_",
1595 FALSE, FALSE, FALSE);
1596
1597 if (tlsbase && tlsbase->type == STT_TLS)
1598 {
1599 struct elf_x86_link_hash_table *htab;
1600 struct bfd_link_hash_entry *bh = NULL;
1601 const struct elf_backend_data *bed
1602 = get_elf_backend_data (output_bfd);
1603
1604 htab = elf_x86_hash_table (info, bed->target_id);
1605 if (htab == NULL)
1606 return FALSE;
1607
1608 if (!(_bfd_generic_link_add_one_symbol
1609 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
1610 tls_sec, 0, NULL, FALSE,
1611 bed->collect, &bh)))
1612 return FALSE;
1613
1614 htab->tls_module_base = bh;
1615
1616 tlsbase = (struct elf_link_hash_entry *)bh;
1617 tlsbase->def_regular = 1;
1618 tlsbase->other = STV_HIDDEN;
1619 tlsbase->root.linker_def = 1;
1620 (*bed->elf_backend_hide_symbol) (info, tlsbase, TRUE);
1621 }
1622 }
1623
1624 return TRUE;
1625}
1626
1627void
1628_bfd_x86_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
1629 const Elf_Internal_Sym *isym,
1630 bfd_boolean definition,
1631 bfd_boolean dynamic ATTRIBUTE_UNUSED)
1632{
1633 if (definition)
1634 {
1635 struct elf_x86_link_hash_entry *eh
1636 = (struct elf_x86_link_hash_entry *) h;
1637 eh->def_protected = (ELF_ST_VISIBILITY (isym->st_other)
1638 == STV_PROTECTED);
1639 }
1640}
1641
1642/* Copy the extra info we tack onto an elf_link_hash_entry. */
1643
1644void
1645_bfd_x86_elf_copy_indirect_symbol (struct bfd_link_info *info,
1646 struct elf_link_hash_entry *dir,
1647 struct elf_link_hash_entry *ind)
1648{
1649 struct elf_x86_link_hash_entry *edir, *eind;
1650
1651 edir = (struct elf_x86_link_hash_entry *) dir;
1652 eind = (struct elf_x86_link_hash_entry *) ind;
1653
1654 if (eind->dyn_relocs != NULL)
1655 {
1656 if (edir->dyn_relocs != NULL)
1657 {
1658 struct elf_dyn_relocs **pp;
1659 struct elf_dyn_relocs *p;
1660
1661 /* Add reloc counts against the indirect sym to the direct sym
1662 list. Merge any entries against the same section. */
1663 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
1664 {
1665 struct elf_dyn_relocs *q;
1666
1667 for (q = edir->dyn_relocs; q != NULL; q = q->next)
1668 if (q->sec == p->sec)
1669 {
1670 q->pc_count += p->pc_count;
1671 q->count += p->count;
1672 *pp = p->next;
1673 break;
1674 }
1675 if (q == NULL)
1676 pp = &p->next;
1677 }
1678 *pp = edir->dyn_relocs;
1679 }
1680
1681 edir->dyn_relocs = eind->dyn_relocs;
1682 eind->dyn_relocs = NULL;
1683 }
1684
1685 if (ind->root.type == bfd_link_hash_indirect
1686 && dir->got.refcount <= 0)
1687 {
1688 edir->tls_type = eind->tls_type;
1689 eind->tls_type = GOT_UNKNOWN;
1690 }
1691
1692 /* Copy gotoff_ref so that elf_i386_adjust_dynamic_symbol will
1693 generate a R_386_COPY reloc. */
1694 edir->gotoff_ref |= eind->gotoff_ref;
1695
98b273dc 1696 edir->zero_undefweak |= eind->zero_undefweak;
0afcef53
L
1697
1698 if (ELIMINATE_COPY_RELOCS
1699 && ind->root.type != bfd_link_hash_indirect
1700 && dir->dynamic_adjusted)
1701 {
1702 /* If called to transfer flags for a weakdef during processing
1703 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
1704 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
1705 if (dir->versioned != versioned_hidden)
1706 dir->ref_dynamic |= ind->ref_dynamic;
1707 dir->ref_regular |= ind->ref_regular;
1708 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
1709 dir->needs_plt |= ind->needs_plt;
1710 dir->pointer_equality_needed |= ind->pointer_equality_needed;
1711 }
1712 else
79b0c981 1713 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
0afcef53
L
1714}
1715
1716/* Remove undefined weak symbol from the dynamic symbol table if it
1717 is resolved to 0. */
1718
1719bfd_boolean
1720_bfd_x86_elf_fixup_symbol (struct bfd_link_info *info,
1721 struct elf_link_hash_entry *h)
1722{
c5bce5c6
L
1723 if (h->dynindx != -1
1724 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (info, elf_x86_hash_entry (h)))
0afcef53 1725 {
c5bce5c6
L
1726 h->dynindx = -1;
1727 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
1728 h->dynstr_index);
0afcef53
L
1729 }
1730 return TRUE;
1731}
1732
1733/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
1734
1735bfd_boolean
1736_bfd_x86_elf_hash_symbol (struct elf_link_hash_entry *h)
1737{
1738 if (h->plt.offset != (bfd_vma) -1
1739 && !h->def_regular
1740 && !h->pointer_equality_needed)
1741 return FALSE;
1742
1743 return _bfd_elf_hash_symbol (h);
1744}
1745
eeb2f20a
L
1746/* Adjust a symbol defined by a dynamic object and referenced by a
1747 regular object. The current definition is in some section of the
1748 dynamic object, but we're not including those sections. We have to
1749 change the definition to something the rest of the link can
1750 understand. */
1751
1752bfd_boolean
1753_bfd_x86_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
1754 struct elf_link_hash_entry *h)
1755{
1756 struct elf_x86_link_hash_table *htab;
1757 asection *s, *srel;
1758 struct elf_x86_link_hash_entry *eh;
1759 struct elf_dyn_relocs *p;
1760 const struct elf_backend_data *bed
1761 = get_elf_backend_data (info->output_bfd);
1762
1763 /* STT_GNU_IFUNC symbol must go through PLT. */
1764 if (h->type == STT_GNU_IFUNC)
1765 {
1766 /* All local STT_GNU_IFUNC references must be treate as local
1767 calls via local PLT. */
1768 if (h->ref_regular
1769 && SYMBOL_CALLS_LOCAL (info, h))
1770 {
1771 bfd_size_type pc_count = 0, count = 0;
1772 struct elf_dyn_relocs **pp;
1773
1774 eh = (struct elf_x86_link_hash_entry *) h;
1775 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
1776 {
1777 pc_count += p->pc_count;
1778 p->count -= p->pc_count;
1779 p->pc_count = 0;
1780 count += p->count;
1781 if (p->count == 0)
1782 *pp = p->next;
1783 else
1784 pp = &p->next;
1785 }
1786
1787 if (pc_count || count)
1788 {
1789 h->non_got_ref = 1;
1790 if (pc_count)
1791 {
1792 /* Increment PLT reference count only for PC-relative
1793 references. */
1794 h->needs_plt = 1;
1795 if (h->plt.refcount <= 0)
1796 h->plt.refcount = 1;
1797 else
1798 h->plt.refcount += 1;
1799 }
1800 }
1801 }
1802
1803 if (h->plt.refcount <= 0)
1804 {
1805 h->plt.offset = (bfd_vma) -1;
1806 h->needs_plt = 0;
1807 }
1808 return TRUE;
1809 }
1810
1811 /* If this is a function, put it in the procedure linkage table. We
1812 will fill in the contents of the procedure linkage table later,
1813 when we know the address of the .got section. */
1814 if (h->type == STT_FUNC
1815 || h->needs_plt)
1816 {
1817 if (h->plt.refcount <= 0
1818 || SYMBOL_CALLS_LOCAL (info, h)
1819 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1820 && h->root.type == bfd_link_hash_undefweak))
1821 {
1822 /* This case can occur if we saw a PLT32 reloc in an input
1823 file, but the symbol was never referred to by a dynamic
1824 object, or if all references were garbage collected. In
1825 such a case, we don't actually need to build a procedure
1826 linkage table, and we can just do a PC32 reloc instead. */
1827 h->plt.offset = (bfd_vma) -1;
1828 h->needs_plt = 0;
1829 }
1830
1831 return TRUE;
1832 }
1833 else
1834 /* It's possible that we incorrectly decided a .plt reloc was needed
1835 * for an R_386_PC32/R_X86_64_PC32 reloc to a non-function sym in
1836 check_relocs. We can't decide accurately between function and
1837 non-function syms in check-relocs; Objects loaded later in
1838 the link may change h->type. So fix it now. */
1839 h->plt.offset = (bfd_vma) -1;
1840
1841 eh = (struct elf_x86_link_hash_entry *) h;
1842
1843 /* If this is a weak symbol, and there is a real definition, the
1844 processor independent code will have arranged for us to see the
1845 real definition first, and we can just use the same value. */
60d67dc8 1846 if (h->is_weakalias)
eeb2f20a 1847 {
60d67dc8
AM
1848 struct elf_link_hash_entry *def = weakdef (h);
1849 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
1850 h->root.u.def.section = def->root.u.def.section;
1851 h->root.u.def.value = def->root.u.def.value;
eeb2f20a
L
1852 if (ELIMINATE_COPY_RELOCS
1853 || info->nocopyreloc
1854 || SYMBOL_NO_COPYRELOC (info, eh))
1855 {
1856 /* NB: needs_copy is always 0 for i386. */
60d67dc8
AM
1857 h->non_got_ref = def->non_got_ref;
1858 eh->needs_copy = def->needs_copy;
eeb2f20a
L
1859 }
1860 return TRUE;
1861 }
1862
1863 /* This is a reference to a symbol defined by a dynamic object which
1864 is not a function. */
1865
1866 /* If we are creating a shared library, we must presume that the
1867 only references to the symbol are via the global offset table.
1868 For such cases we need not do anything here; the relocations will
1869 be handled correctly by relocate_section. */
1870 if (!bfd_link_executable (info))
1871 return TRUE;
1872
1873 /* If there are no references to this symbol that do not use the
1874 GOT nor R_386_GOTOFF relocation, we don't need to generate a copy
1875 reloc. NB: gotoff_ref is always 0 for x86-64. */
1876 if (!h->non_got_ref && !eh->gotoff_ref)
1877 return TRUE;
1878
1879 /* If -z nocopyreloc was given, we won't generate them either. */
1880 if (info->nocopyreloc || SYMBOL_NO_COPYRELOC (info, eh))
1881 {
1882 h->non_got_ref = 0;
1883 return TRUE;
1884 }
1885
1886 htab = elf_x86_hash_table (info, bed->target_id);
1887 if (htab == NULL)
1888 return FALSE;
1889
1890 /* If there aren't any dynamic relocs in read-only sections nor
1891 R_386_GOTOFF relocation, then we can keep the dynamic relocs and
1892 avoid the copy reloc. This doesn't work on VxWorks, where we can
1893 not have dynamic relocations (other than copy and jump slot
1894 relocations) in an executable. */
1895 if (ELIMINATE_COPY_RELOCS
1896 && (bed->target_id == X86_64_ELF_DATA
1897 || (!eh->gotoff_ref
851b6fa1 1898 && htab->target_os != is_vxworks)))
eeb2f20a 1899 {
826c3f1e 1900 /* If we don't find any dynamic relocs in read-only sections,
eeb2f20a
L
1901 then we'll be keeping the dynamic relocs and avoiding the copy
1902 reloc. */
826c3f1e 1903 if (!readonly_dynrelocs (h))
eeb2f20a
L
1904 {
1905 h->non_got_ref = 0;
1906 return TRUE;
1907 }
1908 }
1909
1910 /* We must allocate the symbol in our .dynbss section, which will
1911 become part of the .bss section of the executable. There will be
1912 an entry for this symbol in the .dynsym section. The dynamic
1913 object will contain position independent code, so all references
1914 from the dynamic object to this symbol will go through the global
1915 offset table. The dynamic linker will use the .dynsym entry to
1916 determine the address it must put in the global offset table, so
1917 both the dynamic object and the regular object will refer to the
1918 same memory location for the variable. */
1919
1920 /* We must generate a R_386_COPY/R_X86_64_COPY reloc to tell the
1921 dynamic linker to copy the initial value out of the dynamic object
1922 and into the runtime process image. */
1923 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
1924 {
1925 s = htab->elf.sdynrelro;
1926 srel = htab->elf.sreldynrelro;
1927 }
1928 else
1929 {
1930 s = htab->elf.sdynbss;
1931 srel = htab->elf.srelbss;
1932 }
1933 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
1934 {
503294e7 1935 srel->size += htab->sizeof_reloc;
eeb2f20a
L
1936 h->needs_copy = 1;
1937 }
1938
1939 return _bfd_elf_adjust_dynamic_copy (info, h, s);
1940}
1941
9f857535
L
1942void
1943_bfd_x86_elf_hide_symbol (struct bfd_link_info *info,
1944 struct elf_link_hash_entry *h,
1945 bfd_boolean force_local)
1946{
1947 if (h->root.type == bfd_link_hash_undefweak
1948 && info->nointerp
1949 && bfd_link_pie (info))
1950 {
1951 /* When there is no dynamic interpreter in PIE, make the undefined
1952 weak symbol dynamic so that PC relative branch to the undefined
1953 weak symbol will land to address 0. */
1954 struct elf_x86_link_hash_entry *eh = elf_x86_hash_entry (h);
79b0c981 1955 if (h->plt.refcount > 0
9f857535
L
1956 || eh->plt_got.refcount > 0)
1957 return;
1958 }
1959
1960 _bfd_elf_link_hash_hide_symbol (info, h, force_local);
1961}
1962
6999821f
L
1963/* Return TRUE if a symbol is referenced locally. It is similar to
1964 SYMBOL_REFERENCES_LOCAL, but it also checks version script. It
1965 works in check_relocs. */
1966
1967bfd_boolean
1968_bfd_x86_elf_link_symbol_references_local (struct bfd_link_info *info,
1969 struct elf_link_hash_entry *h)
1970{
0a27fed7
L
1971 struct elf_x86_link_hash_entry *eh = elf_x86_hash_entry (h);
1972 struct elf_x86_link_hash_table *htab
1973 = (struct elf_x86_link_hash_table *) info->hash;
6999821f
L
1974
1975 if (eh->local_ref > 1)
1976 return TRUE;
1977
1978 if (eh->local_ref == 1)
1979 return FALSE;
1980
1981 /* Unversioned symbols defined in regular objects can be forced local
0a27fed7
L
1982 by linker version script. A weak undefined symbol is forced local
1983 if
1984 1. It has non-default visibility. Or
8fbf0ba1 1985 2. When building executable, there is no dynamic linker. Or
0a27fed7
L
1986 3. or "-z nodynamic-undefined-weak" is used.
1987 */
6999821f 1988 if (SYMBOL_REFERENCES_LOCAL (info, h)
0a27fed7
L
1989 || (h->root.type == bfd_link_hash_undefweak
1990 && (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1991 || (bfd_link_executable (info)
8fbf0ba1 1992 && htab->interp == NULL)
0a27fed7 1993 || info->dynamic_undefined_weak == 0))
6999821f
L
1994 || ((h->def_regular || ELF_COMMON_DEF_P (h))
1995 && h->versioned == unversioned
1996 && info->version_info != NULL
1997 && bfd_hide_sym_by_version (info->version_info,
1998 h->root.root.string)))
1999 {
2000 eh->local_ref = 2;
2001 return TRUE;
2002 }
2003
2004 eh->local_ref = 1;
2005 return FALSE;
2006}
2007
4f501a24
L
2008/* Return the section that should be marked against GC for a given
2009 relocation. */
2010
2011asection *
2012_bfd_x86_elf_gc_mark_hook (asection *sec,
2013 struct bfd_link_info *info,
2014 Elf_Internal_Rela *rel,
2015 struct elf_link_hash_entry *h,
2016 Elf_Internal_Sym *sym)
2017{
2018 /* Compiler should optimize this out. */
2019 if (((unsigned int) R_X86_64_GNU_VTINHERIT
2020 != (unsigned int) R_386_GNU_VTINHERIT)
2021 || ((unsigned int) R_X86_64_GNU_VTENTRY
2022 != (unsigned int) R_386_GNU_VTENTRY))
2023 abort ();
2024
2025 if (h != NULL)
2026 switch (ELF32_R_TYPE (rel->r_info))
2027 {
2028 case R_X86_64_GNU_VTINHERIT:
2029 case R_X86_64_GNU_VTENTRY:
2030 return NULL;
2031 }
2032
2033 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
2034}
2035
f493882d
L
2036static bfd_vma
2037elf_i386_get_plt_got_vma (struct elf_x86_plt *plt_p ATTRIBUTE_UNUSED,
2038 bfd_vma off,
2039 bfd_vma offset ATTRIBUTE_UNUSED,
2040 bfd_vma got_addr)
2041{
2042 return got_addr + off;
2043}
2044
2045static bfd_vma
2046elf_x86_64_get_plt_got_vma (struct elf_x86_plt *plt_p,
2047 bfd_vma off,
2048 bfd_vma offset,
2049 bfd_vma got_addr ATTRIBUTE_UNUSED)
2050{
2051 return plt_p->sec->vma + offset + off + plt_p->plt_got_insn_size;
2052}
2053
2054static bfd_boolean
2055elf_i386_valid_plt_reloc_p (unsigned int type)
2056{
2057 return (type == R_386_JUMP_SLOT
2058 || type == R_386_GLOB_DAT
2059 || type == R_386_IRELATIVE);
2060}
2061
2062static bfd_boolean
2063elf_x86_64_valid_plt_reloc_p (unsigned int type)
2064{
2065 return (type == R_X86_64_JUMP_SLOT
2066 || type == R_X86_64_GLOB_DAT
2067 || type == R_X86_64_IRELATIVE);
2068}
2069
2070long
2071_bfd_x86_elf_get_synthetic_symtab (bfd *abfd,
2072 long count,
2073 long relsize,
2074 bfd_vma got_addr,
2075 struct elf_x86_plt plts[],
2076 asymbol **dynsyms,
2077 asymbol **ret)
2078{
2079 long size, i, n, len;
2080 int j;
2081 unsigned int plt_got_offset, plt_entry_size;
2082 asymbol *s;
2083 bfd_byte *plt_contents;
2084 long dynrelcount;
2085 arelent **dynrelbuf, *p;
2086 char *names;
2087 const struct elf_backend_data *bed;
2088 bfd_vma (*get_plt_got_vma) (struct elf_x86_plt *, bfd_vma, bfd_vma,
2089 bfd_vma);
2090 bfd_boolean (*valid_plt_reloc_p) (unsigned int);
2091
2092 if (count == 0)
2093 return -1;
2094
2095 dynrelbuf = (arelent **) bfd_malloc (relsize);
2096 if (dynrelbuf == NULL)
2097 return -1;
2098
2099 dynrelcount = bfd_canonicalize_dynamic_reloc (abfd, dynrelbuf,
2100 dynsyms);
b69e9267 2101 if (dynrelcount <= 0)
94670f6c 2102 return -1;
f493882d
L
2103
2104 /* Sort the relocs by address. */
2105 qsort (dynrelbuf, dynrelcount, sizeof (arelent *),
2106 _bfd_x86_elf_compare_relocs);
2107
2108 size = count * sizeof (asymbol);
2109
2110 /* Allocate space for @plt suffixes. */
2111 n = 0;
2112 for (i = 0; i < dynrelcount; i++)
2113 {
2114 p = dynrelbuf[i];
2115 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
2116 if (p->addend != 0)
2117 size += sizeof ("+0x") - 1 + 8 + 8 * ABI_64_P (abfd);
2118 }
2119
2120 s = *ret = (asymbol *) bfd_zmalloc (size);
2121 if (s == NULL)
2122 goto bad_return;
2123
2124 bed = get_elf_backend_data (abfd);
2125
2126 if (bed->target_id == X86_64_ELF_DATA)
2127 {
2128 get_plt_got_vma = elf_x86_64_get_plt_got_vma;
2129 valid_plt_reloc_p = elf_x86_64_valid_plt_reloc_p;
2130 }
2131 else
2132 {
2133 get_plt_got_vma = elf_i386_get_plt_got_vma;
2134 valid_plt_reloc_p = elf_i386_valid_plt_reloc_p;
2135 if (got_addr)
2136 {
2137 /* Check .got.plt and then .got to get the _GLOBAL_OFFSET_TABLE_
2138 address. */
2139 asection *sec = bfd_get_section_by_name (abfd, ".got.plt");
2140 if (sec != NULL)
2141 got_addr = sec->vma;
2142 else
2143 {
2144 sec = bfd_get_section_by_name (abfd, ".got");
2145 if (sec != NULL)
2146 got_addr = sec->vma;
2147 }
2148
2149 if (got_addr == (bfd_vma) -1)
2150 goto bad_return;
2151 }
2152 }
2153
2154 /* Check for each PLT section. */
2155 names = (char *) (s + count);
2156 size = 0;
2157 n = 0;
2158 for (j = 0; plts[j].name != NULL; j++)
2159 if ((plt_contents = plts[j].contents) != NULL)
2160 {
2161 long k;
2162 bfd_vma offset;
2163 asection *plt;
2164 struct elf_x86_plt *plt_p = &plts[j];
2165
2166 plt_got_offset = plt_p->plt_got_offset;
2167 plt_entry_size = plt_p->plt_entry_size;
2168
2169 plt = plt_p->sec;
2170
2171 if ((plt_p->type & plt_lazy))
2172 {
2173 /* Skip PLT0 in lazy PLT. */
2174 k = 1;
2175 offset = plt_entry_size;
2176 }
2177 else
2178 {
2179 k = 0;
2180 offset = 0;
2181 }
2182
2183 /* Check each PLT entry against dynamic relocations. */
2184 for (; k < plt_p->count; k++)
2185 {
2186 int off;
2187 bfd_vma got_vma;
2188 long min, max, mid;
2189
2190 /* Get the GOT offset for i386 or the PC-relative offset
2191 for x86-64, a signed 32-bit integer. */
2192 off = H_GET_32 (abfd, (plt_contents + offset
2193 + plt_got_offset));
2194 got_vma = get_plt_got_vma (plt_p, off, offset, got_addr);
2195
2196 /* Binary search. */
2197 p = dynrelbuf[0];
2198 min = 0;
2199 max = dynrelcount;
2200 while ((min + 1) < max)
2201 {
2202 arelent *r;
2203
2204 mid = (min + max) / 2;
2205 r = dynrelbuf[mid];
2206 if (got_vma > r->address)
2207 min = mid;
2208 else if (got_vma < r->address)
2209 max = mid;
2210 else
2211 {
2212 p = r;
2213 break;
2214 }
2215 }
2216
2217 /* Skip unknown relocation. PR 17512: file: bc9d6cf5. */
2218 if (got_vma == p->address
2219 && p->howto != NULL
2220 && valid_plt_reloc_p (p->howto->type))
2221 {
2222 *s = **p->sym_ptr_ptr;
2223 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL
2224 set. Since we are defining a symbol, ensure one
2225 of them is set. */
2226 if ((s->flags & BSF_LOCAL) == 0)
2227 s->flags |= BSF_GLOBAL;
2228 s->flags |= BSF_SYNTHETIC;
2229 /* This is no longer a section symbol. */
2230 s->flags &= ~BSF_SECTION_SYM;
2231 s->section = plt;
2232 s->the_bfd = plt->owner;
2233 s->value = offset;
2234 s->udata.p = NULL;
2235 s->name = names;
2236 len = strlen ((*p->sym_ptr_ptr)->name);
2237 memcpy (names, (*p->sym_ptr_ptr)->name, len);
2238 names += len;
2239 if (p->addend != 0)
2240 {
2241 char buf[30], *a;
2242
2243 memcpy (names, "+0x", sizeof ("+0x") - 1);
2244 names += sizeof ("+0x") - 1;
2245 bfd_sprintf_vma (abfd, buf, p->addend);
2246 for (a = buf; *a == '0'; ++a)
2247 ;
2248 size = strlen (a);
2249 memcpy (names, a, size);
2250 names += size;
2251 }
2252 memcpy (names, "@plt", sizeof ("@plt"));
2253 names += sizeof ("@plt");
2254 n++;
2255 s++;
61e3bf5f
L
2256 /* There should be only one entry in PLT for a given
2257 symbol. Set howto to NULL after processing a PLT
2258 entry to guard against corrupted PLT. */
2259 p->howto = NULL;
f493882d
L
2260 }
2261 offset += plt_entry_size;
2262 }
2263 }
2264
2265 /* PLT entries with R_386_TLS_DESC relocations are skipped. */
2266 if (n == 0)
2267 {
2268bad_return:
2269 count = -1;
2270 }
2271 else
2272 count = n;
2273
2274 for (j = 0; plts[j].name != NULL; j++)
2275 if (plts[j].contents != NULL)
2276 free (plts[j].contents);
2277
2278 free (dynrelbuf);
2279
2280 return count;
2281}
2282
0afcef53
L
2283/* Parse x86 GNU properties. */
2284
2285enum elf_property_kind
2286_bfd_x86_elf_parse_gnu_properties (bfd *abfd, unsigned int type,
2287 bfd_byte *ptr, unsigned int datasz)
2288{
2289 elf_property *prop;
2290
2291 switch (type)
2292 {
2293 case GNU_PROPERTY_X86_ISA_1_USED:
2294 case GNU_PROPERTY_X86_ISA_1_NEEDED:
2295 case GNU_PROPERTY_X86_FEATURE_1_AND:
2296 if (datasz != 4)
2297 {
2298 _bfd_error_handler
2299 ((type == GNU_PROPERTY_X86_ISA_1_USED
871b3ab2 2300 ? _("error: %pB: <corrupt x86 ISA used size: 0x%x>")
0afcef53 2301 : (type == GNU_PROPERTY_X86_ISA_1_NEEDED
871b3ab2
AM
2302 ? _("error: %pB: <corrupt x86 ISA needed size: 0x%x>")
2303 : _("error: %pB: <corrupt x86 feature size: 0x%x>"))),
0afcef53
L
2304 abfd, datasz);
2305 return property_corrupt;
2306 }
2307 prop = _bfd_elf_get_property (abfd, type, datasz);
2308 /* Combine properties of the same type. */
2309 prop->u.number |= bfd_h_get_32 (abfd, ptr);
2310 prop->pr_kind = property_number;
2311 break;
2312
2313 default:
2314 return property_ignored;
2315 }
2316
2317 return property_number;
2318}
2319
2320/* Merge x86 GNU property BPROP with APROP. If APROP isn't NULL,
2321 return TRUE if APROP is updated. Otherwise, return TRUE if BPROP
2322 should be merged with ABFD. */
2323
2324bfd_boolean
2325_bfd_x86_elf_merge_gnu_properties (struct bfd_link_info *info,
2326 bfd *abfd ATTRIBUTE_UNUSED,
2327 elf_property *aprop,
2328 elf_property *bprop)
2329{
2330 unsigned int number, features;
2331 bfd_boolean updated = FALSE;
2332 unsigned int pr_type = aprop != NULL ? aprop->pr_type : bprop->pr_type;
2333
2334 switch (pr_type)
2335 {
2336 case GNU_PROPERTY_X86_ISA_1_USED:
2337 case GNU_PROPERTY_X86_ISA_1_NEEDED:
2338 if (aprop != NULL && bprop != NULL)
2339 {
2340 number = aprop->u.number;
2341 aprop->u.number = number | bprop->u.number;
2342 updated = number != (unsigned int) aprop->u.number;
2343 }
2344 else
2345 {
2346 /* Return TRUE if APROP is NULL to indicate that BPROP should
2347 be added to ABFD. */
2348 updated = aprop == NULL;
2349 }
2350 break;
2351
2352 case GNU_PROPERTY_X86_FEATURE_1_AND:
2353 /* Only one of APROP and BPROP can be NULL:
2354 1. APROP & BPROP when both APROP and BPROP aren't NULL.
2355 2. If APROP is NULL, remove x86 feature.
2356 3. Otherwise, do nothing.
2357 */
2358 if (aprop != NULL && bprop != NULL)
2359 {
2360 features = 0;
2361 if (info->ibt)
2362 features = GNU_PROPERTY_X86_FEATURE_1_IBT;
2363 if (info->shstk)
2364 features |= GNU_PROPERTY_X86_FEATURE_1_SHSTK;
2365 number = aprop->u.number;
2366 /* Add GNU_PROPERTY_X86_FEATURE_1_IBT and
2367 GNU_PROPERTY_X86_FEATURE_1_SHSTK. */
2368 aprop->u.number = (number & bprop->u.number) | features;
2369 updated = number != (unsigned int) aprop->u.number;
2370 /* Remove the property if all feature bits are cleared. */
2371 if (aprop->u.number == 0)
2372 aprop->pr_kind = property_remove;
2373 }
2374 else
2375 {
2376 features = 0;
2377 if (info->ibt)
2378 features = GNU_PROPERTY_X86_FEATURE_1_IBT;
2379 if (info->shstk)
2380 features |= GNU_PROPERTY_X86_FEATURE_1_SHSTK;
2381 if (features)
2382 {
2383 /* Add GNU_PROPERTY_X86_FEATURE_1_IBT and
2384 GNU_PROPERTY_X86_FEATURE_1_SHSTK. */
2385 if (aprop != NULL)
2386 {
2387 number = aprop->u.number;
2388 aprop->u.number = number | features;
2389 updated = number != (unsigned int) aprop->u.number;
2390 }
2391 else
2392 {
2393 bprop->u.number |= features;
2394 updated = TRUE;
2395 }
2396 }
2397 else if (aprop != NULL)
2398 {
2399 aprop->pr_kind = property_remove;
2400 updated = TRUE;
2401 }
2402 }
2403 break;
2404
2405 default:
2406 /* Never should happen. */
2407 abort ();
2408 }
2409
2410 return updated;
2411}
a6798bab
L
2412
2413/* Set up x86 GNU properties. Return the first relocatable ELF input
2414 with GNU properties if found. Otherwise, return NULL. */
2415
2416bfd *
2417_bfd_x86_elf_link_setup_gnu_properties
1de031c8 2418 (struct bfd_link_info *info, struct elf_x86_init_table *init_table)
a6798bab
L
2419{
2420 bfd_boolean normal_target;
2421 bfd_boolean lazy_plt;
2422 asection *sec, *pltsec;
2423 bfd *dynobj;
2424 bfd_boolean use_ibt_plt;
2425 unsigned int plt_alignment, features;
2426 struct elf_x86_link_hash_table *htab;
2427 bfd *pbfd;
2428 bfd *ebfd = NULL;
2429 elf_property *prop;
2430 const struct elf_backend_data *bed;
2431 unsigned int class_align = ABI_64_P (info->output_bfd) ? 3 : 2;
2432 unsigned int got_align;
2433
2434 features = 0;
2435 if (info->ibt)
2436 features = GNU_PROPERTY_X86_FEATURE_1_IBT;
2437 if (info->shstk)
2438 features |= GNU_PROPERTY_X86_FEATURE_1_SHSTK;
2439
2440 /* Find a normal input file with GNU property note. */
2441 for (pbfd = info->input_bfds;
2442 pbfd != NULL;
2443 pbfd = pbfd->link.next)
2444 if (bfd_get_flavour (pbfd) == bfd_target_elf_flavour
2445 && bfd_count_sections (pbfd) != 0)
2446 {
2447 ebfd = pbfd;
2448
2449 if (elf_properties (pbfd) != NULL)
2450 break;
2451 }
2452
2453 if (ebfd != NULL && features)
2454 {
2455 /* If features is set, add GNU_PROPERTY_X86_FEATURE_1_IBT and
2456 GNU_PROPERTY_X86_FEATURE_1_SHSTK. */
2457 prop = _bfd_elf_get_property (ebfd,
2458 GNU_PROPERTY_X86_FEATURE_1_AND,
2459 4);
2460 prop->u.number |= features;
2461 prop->pr_kind = property_number;
2462
2463 /* Create the GNU property note section if needed. */
2464 if (pbfd == NULL)
2465 {
2466 sec = bfd_make_section_with_flags (ebfd,
2467 NOTE_GNU_PROPERTY_SECTION_NAME,
2468 (SEC_ALLOC
2469 | SEC_LOAD
2470 | SEC_IN_MEMORY
2471 | SEC_READONLY
2472 | SEC_HAS_CONTENTS
2473 | SEC_DATA));
2474 if (sec == NULL)
2c244f9b 2475 info->callbacks->einfo (_("%F%P: failed to create GNU property section\n"));
a6798bab
L
2476
2477 if (!bfd_set_section_alignment (ebfd, sec, class_align))
2478 {
2479error_alignment:
871b3ab2 2480 info->callbacks->einfo (_("%F%pA: failed to align section\n"),
a6798bab
L
2481 sec);
2482 }
2483
2484 elf_section_type (sec) = SHT_NOTE;
2485 }
2486 }
2487
2488 pbfd = _bfd_elf_link_setup_gnu_properties (info);
2489
a6798bab
L
2490 bed = get_elf_backend_data (info->output_bfd);
2491
2492 htab = elf_x86_hash_table (info, bed->target_id);
2493 if (htab == NULL)
2494 return pbfd;
2495
1de031c8
L
2496 htab->r_info = init_table->r_info;
2497 htab->r_sym = init_table->r_sym;
7a382c1c
L
2498
2499 if (bfd_link_relocatable (info))
2500 return pbfd;
eeb2f20a 2501
851b6fa1
L
2502 htab->plt0_pad_byte = init_table->plt0_pad_byte;
2503
a6798bab
L
2504 use_ibt_plt = info->ibtplt || info->ibt;
2505 if (!use_ibt_plt && pbfd != NULL)
2506 {
2507 /* Check if GNU_PROPERTY_X86_FEATURE_1_IBT is on. */
2508 elf_property_list *p;
2509
2510 /* The property list is sorted in order of type. */
2511 for (p = elf_properties (pbfd); p; p = p->next)
2512 {
2513 if (GNU_PROPERTY_X86_FEATURE_1_AND == p->property.pr_type)
2514 {
2515 use_ibt_plt = !!(p->property.u.number
2516 & GNU_PROPERTY_X86_FEATURE_1_IBT);
2517 break;
2518 }
2519 else if (GNU_PROPERTY_X86_FEATURE_1_AND < p->property.pr_type)
2520 break;
2521 }
2522 }
2523
2524 dynobj = htab->elf.dynobj;
2525
2526 /* Set htab->elf.dynobj here so that there is no need to check and
2527 set it in check_relocs. */
2528 if (dynobj == NULL)
2529 {
2530 if (pbfd != NULL)
2531 {
2532 htab->elf.dynobj = pbfd;
2533 dynobj = pbfd;
2534 }
2535 else
2536 {
2537 bfd *abfd;
2538
2539 /* Find a normal input file to hold linker created
2540 sections. */
2541 for (abfd = info->input_bfds;
2542 abfd != NULL;
2543 abfd = abfd->link.next)
2544 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
2545 && (abfd->flags
e4e6a73d
L
2546 & (DYNAMIC | BFD_LINKER_CREATED | BFD_PLUGIN)) == 0
2547 && bed->relocs_compatible (abfd->xvec,
2548 info->output_bfd->xvec))
a6798bab
L
2549 {
2550 htab->elf.dynobj = abfd;
2551 dynobj = abfd;
2552 break;
2553 }
2554 }
2555 }
2556
851b6fa1
L
2557 /* Return if there are no normal input files. */
2558 if (dynobj == NULL)
2559 return pbfd;
2560
a6798bab
L
2561 /* Even when lazy binding is disabled by "-z now", the PLT0 entry may
2562 still be used with LD_AUDIT or LD_PROFILE if PLT entry is used for
2563 canonical function address. */
2564 htab->plt.has_plt0 = 1;
851b6fa1 2565 normal_target = htab->target_os == is_normal;
a6798bab
L
2566
2567 if (normal_target)
2568 {
2569 if (use_ibt_plt)
2570 {
1de031c8
L
2571 htab->lazy_plt = init_table->lazy_ibt_plt;
2572 htab->non_lazy_plt = init_table->non_lazy_ibt_plt;
a6798bab
L
2573 }
2574 else
2575 {
1de031c8
L
2576 htab->lazy_plt = init_table->lazy_plt;
2577 htab->non_lazy_plt = init_table->non_lazy_plt;
a6798bab
L
2578 }
2579 }
2580 else
2581 {
1de031c8 2582 htab->lazy_plt = init_table->lazy_plt;
a6798bab
L
2583 htab->non_lazy_plt = NULL;
2584 }
2585
2586 pltsec = htab->elf.splt;
2587
2588 /* If the non-lazy PLT is available, use it for all PLT entries if
2589 there are no PLT0 or no .plt section. */
2590 if (htab->non_lazy_plt != NULL
2591 && (!htab->plt.has_plt0 || pltsec == NULL))
2592 {
2593 lazy_plt = FALSE;
2594 if (bfd_link_pic (info))
2595 htab->plt.plt_entry = htab->non_lazy_plt->pic_plt_entry;
2596 else
2597 htab->plt.plt_entry = htab->non_lazy_plt->plt_entry;
2598 htab->plt.plt_entry_size = htab->non_lazy_plt->plt_entry_size;
2599 htab->plt.plt_got_offset = htab->non_lazy_plt->plt_got_offset;
2600 htab->plt.plt_got_insn_size
2601 = htab->non_lazy_plt->plt_got_insn_size;
2602 htab->plt.eh_frame_plt_size
2603 = htab->non_lazy_plt->eh_frame_plt_size;
2604 htab->plt.eh_frame_plt = htab->non_lazy_plt->eh_frame_plt;
2605 }
2606 else
2607 {
2608 lazy_plt = TRUE;
2609 if (bfd_link_pic (info))
2610 {
2611 htab->plt.plt0_entry = htab->lazy_plt->pic_plt0_entry;
2612 htab->plt.plt_entry = htab->lazy_plt->pic_plt_entry;
2613 }
2614 else
2615 {
2616 htab->plt.plt0_entry = htab->lazy_plt->plt0_entry;
2617 htab->plt.plt_entry = htab->lazy_plt->plt_entry;
2618 }
2619 htab->plt.plt_entry_size = htab->lazy_plt->plt_entry_size;
2620 htab->plt.plt_got_offset = htab->lazy_plt->plt_got_offset;
2621 htab->plt.plt_got_insn_size
2622 = htab->lazy_plt->plt_got_insn_size;
2623 htab->plt.eh_frame_plt_size
2624 = htab->lazy_plt->eh_frame_plt_size;
2625 htab->plt.eh_frame_plt = htab->lazy_plt->eh_frame_plt;
2626 }
2627
851b6fa1 2628 if (htab->target_os == is_vxworks
a6798bab
L
2629 && !elf_vxworks_create_dynamic_sections (dynobj, info,
2630 &htab->srelplt2))
2631 {
2c244f9b 2632 info->callbacks->einfo (_("%F%P: failed to create VxWorks dynamic sections\n"));
a6798bab
L
2633 return pbfd;
2634 }
2635
2636 /* Since create_dynamic_sections isn't always called, but GOT
2637 relocations need GOT relocations, create them here so that we
2638 don't need to do it in check_relocs. */
2639 if (htab->elf.sgot == NULL
2640 && !_bfd_elf_create_got_section (dynobj, info))
2c244f9b 2641 info->callbacks->einfo (_("%F%P: failed to create GOT sections\n"));
a6798bab
L
2642
2643 got_align = (bed->target_id == X86_64_ELF_DATA) ? 3 : 2;
2644
2645 /* Align .got and .got.plt sections to their entry size. Do it here
2646 instead of in create_dynamic_sections so that they are always
2647 properly aligned even if create_dynamic_sections isn't called. */
2648 sec = htab->elf.sgot;
2649 if (!bfd_set_section_alignment (dynobj, sec, got_align))
2650 goto error_alignment;
2651
2652 sec = htab->elf.sgotplt;
2653 if (!bfd_set_section_alignment (dynobj, sec, got_align))
2654 goto error_alignment;
2655
2656 /* Create the ifunc sections here so that check_relocs can be
2657 simplified. */
2658 if (!_bfd_elf_create_ifunc_sections (dynobj, info))
2c244f9b 2659 info->callbacks->einfo (_("%F%P: failed to create ifunc sections\n"));
a6798bab
L
2660
2661 plt_alignment = bfd_log2 (htab->plt.plt_entry_size);
2662
2663 if (pltsec != NULL)
2664 {
2665 /* Whe creating executable, set the contents of the .interp
2666 section to the interpreter. */
2667 if (bfd_link_executable (info) && !info->nointerp)
2668 {
2669 asection *s = bfd_get_linker_section (dynobj, ".interp");
2670 if (s == NULL)
2671 abort ();
2672 s->size = htab->dynamic_interpreter_size;
2673 s->contents = (unsigned char *) htab->dynamic_interpreter;
2674 htab->interp = s;
2675 }
2676
2677 /* Don't change PLT section alignment for NaCl since it uses
2678 64-byte PLT entry and sets PLT section alignment to 32
2679 bytes. Don't create additional PLT sections for NaCl. */
2680 if (normal_target)
2681 {
2682 flagword pltflags = (bed->dynamic_sec_flags
2683 | SEC_ALLOC
2684 | SEC_CODE
2685 | SEC_LOAD
2686 | SEC_READONLY);
2687 unsigned int non_lazy_plt_alignment
2688 = bfd_log2 (htab->non_lazy_plt->plt_entry_size);
2689
2690 sec = pltsec;
2691 if (!bfd_set_section_alignment (sec->owner, sec,
2692 plt_alignment))
2693 goto error_alignment;
2694
2695 /* Create the GOT procedure linkage table. */
2696 sec = bfd_make_section_anyway_with_flags (dynobj,
2697 ".plt.got",
2698 pltflags);
2699 if (sec == NULL)
2c244f9b 2700 info->callbacks->einfo (_("%F%P: failed to create GOT PLT section\n"));
a6798bab
L
2701
2702 if (!bfd_set_section_alignment (dynobj, sec,
2703 non_lazy_plt_alignment))
2704 goto error_alignment;
2705
2706 htab->plt_got = sec;
2707
2708 if (lazy_plt)
2709 {
2710 sec = NULL;
2711
2712 if (use_ibt_plt)
2713 {
2714 /* Create the second PLT for Intel IBT support. IBT
2715 PLT is supported only for non-NaCl target and is
2716 is needed only for lazy binding. */
2717 sec = bfd_make_section_anyway_with_flags (dynobj,
2718 ".plt.sec",
2719 pltflags);
2720 if (sec == NULL)
2c244f9b 2721 info->callbacks->einfo (_("%F%P: failed to create IBT-enabled PLT section\n"));
a6798bab
L
2722
2723 if (!bfd_set_section_alignment (dynobj, sec,
2724 plt_alignment))
2725 goto error_alignment;
2726 }
2727 else if (info->bndplt && ABI_64_P (dynobj))
2728 {
2729 /* Create the second PLT for Intel MPX support. MPX
2730 PLT is supported only for non-NaCl target in 64-bit
2731 mode and is needed only for lazy binding. */
2732 sec = bfd_make_section_anyway_with_flags (dynobj,
2733 ".plt.sec",
2734 pltflags);
2735 if (sec == NULL)
2c244f9b 2736 info->callbacks->einfo (_("%F%P: failed to create BND PLT section\n"));
a6798bab
L
2737
2738 if (!bfd_set_section_alignment (dynobj, sec,
2739 non_lazy_plt_alignment))
2740 goto error_alignment;
2741 }
2742
2743 htab->plt_second = sec;
2744 }
2745 }
2746
2747 if (!info->no_ld_generated_unwind_info)
2748 {
2749 flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
2750 | SEC_HAS_CONTENTS | SEC_IN_MEMORY
2751 | SEC_LINKER_CREATED);
2752
2753 sec = bfd_make_section_anyway_with_flags (dynobj,
2754 ".eh_frame",
2755 flags);
2756 if (sec == NULL)
2c244f9b 2757 info->callbacks->einfo (_("%F%P: failed to create PLT .eh_frame section\n"));
a6798bab
L
2758
2759 if (!bfd_set_section_alignment (dynobj, sec, class_align))
2760 goto error_alignment;
2761
2762 htab->plt_eh_frame = sec;
2763
2764 if (htab->plt_got != NULL)
2765 {
2766 sec = bfd_make_section_anyway_with_flags (dynobj,
2767 ".eh_frame",
2768 flags);
2769 if (sec == NULL)
2c244f9b 2770 info->callbacks->einfo (_("%F%P: failed to create GOT PLT .eh_frame section\n"));
a6798bab
L
2771
2772 if (!bfd_set_section_alignment (dynobj, sec, class_align))
2773 goto error_alignment;
2774
2775 htab->plt_got_eh_frame = sec;
2776 }
2777
2778 if (htab->plt_second != NULL)
2779 {
2780 sec = bfd_make_section_anyway_with_flags (dynobj,
2781 ".eh_frame",
2782 flags);
2783 if (sec == NULL)
2c244f9b 2784 info->callbacks->einfo (_("%F%P: failed to create the second PLT .eh_frame section\n"));
a6798bab
L
2785
2786 if (!bfd_set_section_alignment (dynobj, sec, class_align))
2787 goto error_alignment;
2788
2789 htab->plt_second_eh_frame = sec;
2790 }
2791 }
2792 }
2793
2794 if (normal_target)
2795 {
2796 /* The .iplt section is used for IFUNC symbols in static
2797 executables. */
2798 sec = htab->elf.iplt;
2799 if (sec != NULL
2800 && !bfd_set_section_alignment (sec->owner, sec,
2801 plt_alignment))
2802 goto error_alignment;
2803 }
2804
2805 return pbfd;
2806}
This page took 0.289901 seconds and 4 git commands to generate.