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