1 /* X86-64 specific support for 64-bit ELF
2 Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
3 2010 Free Software Foundation, Inc.
4 Contributed by Jan Hubicka <jh@suse.cz>.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
28 #include "bfd_stdint.h"
32 #include "elf/x86-64.h"
34 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value. */
35 #define MINUS_ONE (~ (bfd_vma) 0)
37 /* The relocation "howto" table. Order of fields:
38 type, rightshift, size, bitsize, pc_relative, bitpos, complain_on_overflow,
39 special_function, name, partial_inplace, src_mask, dst_mask, pcrel_offset. */
40 static reloc_howto_type x86_64_elf_howto_table
[] =
42 HOWTO(R_X86_64_NONE
, 0, 0, 0, FALSE
, 0, complain_overflow_dont
,
43 bfd_elf_generic_reloc
, "R_X86_64_NONE", FALSE
, 0x00000000, 0x00000000,
45 HOWTO(R_X86_64_64
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
46 bfd_elf_generic_reloc
, "R_X86_64_64", FALSE
, MINUS_ONE
, MINUS_ONE
,
48 HOWTO(R_X86_64_PC32
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
49 bfd_elf_generic_reloc
, "R_X86_64_PC32", FALSE
, 0xffffffff, 0xffffffff,
51 HOWTO(R_X86_64_GOT32
, 0, 2, 32, FALSE
, 0, complain_overflow_signed
,
52 bfd_elf_generic_reloc
, "R_X86_64_GOT32", FALSE
, 0xffffffff, 0xffffffff,
54 HOWTO(R_X86_64_PLT32
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
55 bfd_elf_generic_reloc
, "R_X86_64_PLT32", FALSE
, 0xffffffff, 0xffffffff,
57 HOWTO(R_X86_64_COPY
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,
58 bfd_elf_generic_reloc
, "R_X86_64_COPY", FALSE
, 0xffffffff, 0xffffffff,
60 HOWTO(R_X86_64_GLOB_DAT
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
61 bfd_elf_generic_reloc
, "R_X86_64_GLOB_DAT", FALSE
, MINUS_ONE
,
63 HOWTO(R_X86_64_JUMP_SLOT
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
64 bfd_elf_generic_reloc
, "R_X86_64_JUMP_SLOT", FALSE
, MINUS_ONE
,
66 HOWTO(R_X86_64_RELATIVE
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
67 bfd_elf_generic_reloc
, "R_X86_64_RELATIVE", FALSE
, MINUS_ONE
,
69 HOWTO(R_X86_64_GOTPCREL
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
70 bfd_elf_generic_reloc
, "R_X86_64_GOTPCREL", FALSE
, 0xffffffff,
72 HOWTO(R_X86_64_32
, 0, 2, 32, FALSE
, 0, complain_overflow_unsigned
,
73 bfd_elf_generic_reloc
, "R_X86_64_32", FALSE
, 0xffffffff, 0xffffffff,
75 HOWTO(R_X86_64_32S
, 0, 2, 32, FALSE
, 0, complain_overflow_signed
,
76 bfd_elf_generic_reloc
, "R_X86_64_32S", FALSE
, 0xffffffff, 0xffffffff,
78 HOWTO(R_X86_64_16
, 0, 1, 16, FALSE
, 0, complain_overflow_bitfield
,
79 bfd_elf_generic_reloc
, "R_X86_64_16", FALSE
, 0xffff, 0xffff, FALSE
),
80 HOWTO(R_X86_64_PC16
,0, 1, 16, TRUE
, 0, complain_overflow_bitfield
,
81 bfd_elf_generic_reloc
, "R_X86_64_PC16", FALSE
, 0xffff, 0xffff, TRUE
),
82 HOWTO(R_X86_64_8
, 0, 0, 8, FALSE
, 0, complain_overflow_bitfield
,
83 bfd_elf_generic_reloc
, "R_X86_64_8", FALSE
, 0xff, 0xff, FALSE
),
84 HOWTO(R_X86_64_PC8
, 0, 0, 8, TRUE
, 0, complain_overflow_signed
,
85 bfd_elf_generic_reloc
, "R_X86_64_PC8", FALSE
, 0xff, 0xff, TRUE
),
86 HOWTO(R_X86_64_DTPMOD64
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
87 bfd_elf_generic_reloc
, "R_X86_64_DTPMOD64", FALSE
, MINUS_ONE
,
89 HOWTO(R_X86_64_DTPOFF64
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
90 bfd_elf_generic_reloc
, "R_X86_64_DTPOFF64", FALSE
, MINUS_ONE
,
92 HOWTO(R_X86_64_TPOFF64
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
93 bfd_elf_generic_reloc
, "R_X86_64_TPOFF64", FALSE
, MINUS_ONE
,
95 HOWTO(R_X86_64_TLSGD
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
96 bfd_elf_generic_reloc
, "R_X86_64_TLSGD", FALSE
, 0xffffffff,
98 HOWTO(R_X86_64_TLSLD
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
99 bfd_elf_generic_reloc
, "R_X86_64_TLSLD", FALSE
, 0xffffffff,
101 HOWTO(R_X86_64_DTPOFF32
, 0, 2, 32, FALSE
, 0, complain_overflow_signed
,
102 bfd_elf_generic_reloc
, "R_X86_64_DTPOFF32", FALSE
, 0xffffffff,
104 HOWTO(R_X86_64_GOTTPOFF
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
105 bfd_elf_generic_reloc
, "R_X86_64_GOTTPOFF", FALSE
, 0xffffffff,
107 HOWTO(R_X86_64_TPOFF32
, 0, 2, 32, FALSE
, 0, complain_overflow_signed
,
108 bfd_elf_generic_reloc
, "R_X86_64_TPOFF32", FALSE
, 0xffffffff,
110 HOWTO(R_X86_64_PC64
, 0, 4, 64, TRUE
, 0, complain_overflow_bitfield
,
111 bfd_elf_generic_reloc
, "R_X86_64_PC64", FALSE
, MINUS_ONE
, MINUS_ONE
,
113 HOWTO(R_X86_64_GOTOFF64
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
114 bfd_elf_generic_reloc
, "R_X86_64_GOTOFF64",
115 FALSE
, MINUS_ONE
, MINUS_ONE
, FALSE
),
116 HOWTO(R_X86_64_GOTPC32
, 0, 2, 32, TRUE
, 0, complain_overflow_signed
,
117 bfd_elf_generic_reloc
, "R_X86_64_GOTPC32",
118 FALSE
, 0xffffffff, 0xffffffff, TRUE
),
119 HOWTO(R_X86_64_GOT64
, 0, 4, 64, FALSE
, 0, complain_overflow_signed
,
120 bfd_elf_generic_reloc
, "R_X86_64_GOT64", FALSE
, MINUS_ONE
, MINUS_ONE
,
122 HOWTO(R_X86_64_GOTPCREL64
, 0, 4, 64, TRUE
, 0, complain_overflow_signed
,
123 bfd_elf_generic_reloc
, "R_X86_64_GOTPCREL64", FALSE
, MINUS_ONE
,
125 HOWTO(R_X86_64_GOTPC64
, 0, 4, 64, TRUE
, 0, complain_overflow_signed
,
126 bfd_elf_generic_reloc
, "R_X86_64_GOTPC64",
127 FALSE
, MINUS_ONE
, MINUS_ONE
, TRUE
),
128 HOWTO(R_X86_64_GOTPLT64
, 0, 4, 64, FALSE
, 0, complain_overflow_signed
,
129 bfd_elf_generic_reloc
, "R_X86_64_GOTPLT64", FALSE
, MINUS_ONE
,
131 HOWTO(R_X86_64_PLTOFF64
, 0, 4, 64, FALSE
, 0, complain_overflow_signed
,
132 bfd_elf_generic_reloc
, "R_X86_64_PLTOFF64", FALSE
, MINUS_ONE
,
136 HOWTO(R_X86_64_GOTPC32_TLSDESC
, 0, 2, 32, TRUE
, 0,
137 complain_overflow_bitfield
, bfd_elf_generic_reloc
,
138 "R_X86_64_GOTPC32_TLSDESC",
139 FALSE
, 0xffffffff, 0xffffffff, TRUE
),
140 HOWTO(R_X86_64_TLSDESC_CALL
, 0, 0, 0, FALSE
, 0,
141 complain_overflow_dont
, bfd_elf_generic_reloc
,
142 "R_X86_64_TLSDESC_CALL",
144 HOWTO(R_X86_64_TLSDESC
, 0, 4, 64, FALSE
, 0,
145 complain_overflow_bitfield
, bfd_elf_generic_reloc
,
147 FALSE
, MINUS_ONE
, MINUS_ONE
, FALSE
),
148 HOWTO(R_X86_64_IRELATIVE
, 0, 4, 64, FALSE
, 0, complain_overflow_bitfield
,
149 bfd_elf_generic_reloc
, "R_X86_64_IRELATIVE", FALSE
, MINUS_ONE
,
152 /* We have a gap in the reloc numbers here.
153 R_X86_64_standard counts the number up to this point, and
154 R_X86_64_vt_offset is the value to subtract from a reloc type of
155 R_X86_64_GNU_VT* to form an index into this table. */
156 #define R_X86_64_standard (R_X86_64_IRELATIVE + 1)
157 #define R_X86_64_vt_offset (R_X86_64_GNU_VTINHERIT - R_X86_64_standard)
159 /* GNU extension to record C++ vtable hierarchy. */
160 HOWTO (R_X86_64_GNU_VTINHERIT
, 0, 4, 0, FALSE
, 0, complain_overflow_dont
,
161 NULL
, "R_X86_64_GNU_VTINHERIT", FALSE
, 0, 0, FALSE
),
163 /* GNU extension to record C++ vtable member usage. */
164 HOWTO (R_X86_64_GNU_VTENTRY
, 0, 4, 0, FALSE
, 0, complain_overflow_dont
,
165 _bfd_elf_rel_vtable_reloc_fn
, "R_X86_64_GNU_VTENTRY", FALSE
, 0, 0,
169 #define IS_X86_64_PCREL_TYPE(TYPE) \
170 ( ((TYPE) == R_X86_64_PC8) \
171 || ((TYPE) == R_X86_64_PC16) \
172 || ((TYPE) == R_X86_64_PC32) \
173 || ((TYPE) == R_X86_64_PC64))
175 /* Map BFD relocs to the x86_64 elf relocs. */
178 bfd_reloc_code_real_type bfd_reloc_val
;
179 unsigned char elf_reloc_val
;
182 static const struct elf_reloc_map x86_64_reloc_map
[] =
184 { BFD_RELOC_NONE
, R_X86_64_NONE
, },
185 { BFD_RELOC_64
, R_X86_64_64
, },
186 { BFD_RELOC_32_PCREL
, R_X86_64_PC32
, },
187 { BFD_RELOC_X86_64_GOT32
, R_X86_64_GOT32
,},
188 { BFD_RELOC_X86_64_PLT32
, R_X86_64_PLT32
,},
189 { BFD_RELOC_X86_64_COPY
, R_X86_64_COPY
, },
190 { BFD_RELOC_X86_64_GLOB_DAT
, R_X86_64_GLOB_DAT
, },
191 { BFD_RELOC_X86_64_JUMP_SLOT
, R_X86_64_JUMP_SLOT
, },
192 { BFD_RELOC_X86_64_RELATIVE
, R_X86_64_RELATIVE
, },
193 { BFD_RELOC_X86_64_GOTPCREL
, R_X86_64_GOTPCREL
, },
194 { BFD_RELOC_32
, R_X86_64_32
, },
195 { BFD_RELOC_X86_64_32S
, R_X86_64_32S
, },
196 { BFD_RELOC_16
, R_X86_64_16
, },
197 { BFD_RELOC_16_PCREL
, R_X86_64_PC16
, },
198 { BFD_RELOC_8
, R_X86_64_8
, },
199 { BFD_RELOC_8_PCREL
, R_X86_64_PC8
, },
200 { BFD_RELOC_X86_64_DTPMOD64
, R_X86_64_DTPMOD64
, },
201 { BFD_RELOC_X86_64_DTPOFF64
, R_X86_64_DTPOFF64
, },
202 { BFD_RELOC_X86_64_TPOFF64
, R_X86_64_TPOFF64
, },
203 { BFD_RELOC_X86_64_TLSGD
, R_X86_64_TLSGD
, },
204 { BFD_RELOC_X86_64_TLSLD
, R_X86_64_TLSLD
, },
205 { BFD_RELOC_X86_64_DTPOFF32
, R_X86_64_DTPOFF32
, },
206 { BFD_RELOC_X86_64_GOTTPOFF
, R_X86_64_GOTTPOFF
, },
207 { BFD_RELOC_X86_64_TPOFF32
, R_X86_64_TPOFF32
, },
208 { BFD_RELOC_64_PCREL
, R_X86_64_PC64
, },
209 { BFD_RELOC_X86_64_GOTOFF64
, R_X86_64_GOTOFF64
, },
210 { BFD_RELOC_X86_64_GOTPC32
, R_X86_64_GOTPC32
, },
211 { BFD_RELOC_X86_64_GOT64
, R_X86_64_GOT64
, },
212 { BFD_RELOC_X86_64_GOTPCREL64
,R_X86_64_GOTPCREL64
, },
213 { BFD_RELOC_X86_64_GOTPC64
, R_X86_64_GOTPC64
, },
214 { BFD_RELOC_X86_64_GOTPLT64
, R_X86_64_GOTPLT64
, },
215 { BFD_RELOC_X86_64_PLTOFF64
, R_X86_64_PLTOFF64
, },
216 { BFD_RELOC_X86_64_GOTPC32_TLSDESC
, R_X86_64_GOTPC32_TLSDESC
, },
217 { BFD_RELOC_X86_64_TLSDESC_CALL
, R_X86_64_TLSDESC_CALL
, },
218 { BFD_RELOC_X86_64_TLSDESC
, R_X86_64_TLSDESC
, },
219 { BFD_RELOC_X86_64_IRELATIVE
, R_X86_64_IRELATIVE
, },
220 { BFD_RELOC_VTABLE_INHERIT
, R_X86_64_GNU_VTINHERIT
, },
221 { BFD_RELOC_VTABLE_ENTRY
, R_X86_64_GNU_VTENTRY
, },
224 static reloc_howto_type
*
225 elf64_x86_64_rtype_to_howto (bfd
*abfd
, unsigned r_type
)
229 if (r_type
< (unsigned int) R_X86_64_GNU_VTINHERIT
230 || r_type
>= (unsigned int) R_X86_64_max
)
232 if (r_type
>= (unsigned int) R_X86_64_standard
)
234 (*_bfd_error_handler
) (_("%B: invalid relocation type %d"),
236 r_type
= R_X86_64_NONE
;
241 i
= r_type
- (unsigned int) R_X86_64_vt_offset
;
242 BFD_ASSERT (x86_64_elf_howto_table
[i
].type
== r_type
);
243 return &x86_64_elf_howto_table
[i
];
246 /* Given a BFD reloc type, return a HOWTO structure. */
247 static reloc_howto_type
*
248 elf64_x86_64_reloc_type_lookup (bfd
*abfd
,
249 bfd_reloc_code_real_type code
)
253 for (i
= 0; i
< sizeof (x86_64_reloc_map
) / sizeof (struct elf_reloc_map
);
256 if (x86_64_reloc_map
[i
].bfd_reloc_val
== code
)
257 return elf64_x86_64_rtype_to_howto (abfd
,
258 x86_64_reloc_map
[i
].elf_reloc_val
);
263 static reloc_howto_type
*
264 elf64_x86_64_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
270 i
< (sizeof (x86_64_elf_howto_table
)
271 / sizeof (x86_64_elf_howto_table
[0]));
273 if (x86_64_elf_howto_table
[i
].name
!= NULL
274 && strcasecmp (x86_64_elf_howto_table
[i
].name
, r_name
) == 0)
275 return &x86_64_elf_howto_table
[i
];
280 /* Given an x86_64 ELF reloc type, fill in an arelent structure. */
283 elf64_x86_64_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*cache_ptr
,
284 Elf_Internal_Rela
*dst
)
288 r_type
= ELF64_R_TYPE (dst
->r_info
);
289 cache_ptr
->howto
= elf64_x86_64_rtype_to_howto (abfd
, r_type
);
290 BFD_ASSERT (r_type
== cache_ptr
->howto
->type
);
293 /* Support for core dump NOTE sections. */
295 elf64_x86_64_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
300 switch (note
->descsz
)
305 case 336: /* sizeof(istruct elf_prstatus) on Linux/x86_64 */
307 elf_tdata (abfd
)->core_signal
308 = bfd_get_16 (abfd
, note
->descdata
+ 12);
311 elf_tdata (abfd
)->core_pid
312 = bfd_get_32 (abfd
, note
->descdata
+ 32);
321 /* Make a ".reg/999" section. */
322 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
323 size
, note
->descpos
+ offset
);
327 elf64_x86_64_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
329 switch (note
->descsz
)
334 case 136: /* sizeof(struct elf_prpsinfo) on Linux/x86_64 */
335 elf_tdata (abfd
)->core_program
336 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 40, 16);
337 elf_tdata (abfd
)->core_command
338 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 56, 80);
341 /* Note that for some reason, a spurious space is tacked
342 onto the end of the args in some (at least one anyway)
343 implementations, so strip it off if it exists. */
346 char *command
= elf_tdata (abfd
)->core_command
;
347 int n
= strlen (command
);
349 if (0 < n
&& command
[n
- 1] == ' ')
350 command
[n
- 1] = '\0';
356 /* Functions for the x86-64 ELF linker. */
358 /* The name of the dynamic interpreter. This is put in the .interp
361 #define ELF_DYNAMIC_INTERPRETER "/lib/ld64.so.1"
363 /* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
364 copying dynamic variables from a shared lib into an app's dynbss
365 section, and instead use a dynamic relocation to point into the
367 #define ELIMINATE_COPY_RELOCS 1
369 /* The size in bytes of an entry in the global offset table. */
371 #define GOT_ENTRY_SIZE 8
373 /* The size in bytes of an entry in the procedure linkage table. */
375 #define PLT_ENTRY_SIZE 16
377 /* The first entry in a procedure linkage table looks like this. See the
378 SVR4 ABI i386 supplement and the x86-64 ABI to see how this works. */
380 static const bfd_byte elf64_x86_64_plt0_entry
[PLT_ENTRY_SIZE
] =
382 0xff, 0x35, 8, 0, 0, 0, /* pushq GOT+8(%rip) */
383 0xff, 0x25, 16, 0, 0, 0, /* jmpq *GOT+16(%rip) */
384 0x0f, 0x1f, 0x40, 0x00 /* nopl 0(%rax) */
387 /* Subsequent entries in a procedure linkage table look like this. */
389 static const bfd_byte elf64_x86_64_plt_entry
[PLT_ENTRY_SIZE
] =
391 0xff, 0x25, /* jmpq *name@GOTPC(%rip) */
392 0, 0, 0, 0, /* replaced with offset to this symbol in .got. */
393 0x68, /* pushq immediate */
394 0, 0, 0, 0, /* replaced with index into relocation table. */
395 0xe9, /* jmp relative */
396 0, 0, 0, 0 /* replaced with offset to start of .plt0. */
399 /* x86-64 ELF linker hash entry. */
401 struct elf64_x86_64_link_hash_entry
403 struct elf_link_hash_entry elf
;
405 /* Track dynamic relocs copied for this symbol. */
406 struct elf_dyn_relocs
*dyn_relocs
;
408 #define GOT_UNKNOWN 0
412 #define GOT_TLS_GDESC 4
413 #define GOT_TLS_GD_BOTH_P(type) \
414 ((type) == (GOT_TLS_GD | GOT_TLS_GDESC))
415 #define GOT_TLS_GD_P(type) \
416 ((type) == GOT_TLS_GD || GOT_TLS_GD_BOTH_P (type))
417 #define GOT_TLS_GDESC_P(type) \
418 ((type) == GOT_TLS_GDESC || GOT_TLS_GD_BOTH_P (type))
419 #define GOT_TLS_GD_ANY_P(type) \
420 (GOT_TLS_GD_P (type) || GOT_TLS_GDESC_P (type))
421 unsigned char tls_type
;
423 /* Offset of the GOTPLT entry reserved for the TLS descriptor,
424 starting at the end of the jump table. */
428 #define elf64_x86_64_hash_entry(ent) \
429 ((struct elf64_x86_64_link_hash_entry *)(ent))
431 struct elf64_x86_64_obj_tdata
433 struct elf_obj_tdata root
;
435 /* tls_type for each local got entry. */
436 char *local_got_tls_type
;
438 /* GOTPLT entries for TLS descriptors. */
439 bfd_vma
*local_tlsdesc_gotent
;
442 #define elf64_x86_64_tdata(abfd) \
443 ((struct elf64_x86_64_obj_tdata *) (abfd)->tdata.any)
445 #define elf64_x86_64_local_got_tls_type(abfd) \
446 (elf64_x86_64_tdata (abfd)->local_got_tls_type)
448 #define elf64_x86_64_local_tlsdesc_gotent(abfd) \
449 (elf64_x86_64_tdata (abfd)->local_tlsdesc_gotent)
451 #define is_x86_64_elf(bfd) \
452 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
453 && elf_tdata (bfd) != NULL \
454 && elf_object_id (bfd) == X86_64_ELF_DATA)
457 elf64_x86_64_mkobject (bfd
*abfd
)
459 return bfd_elf_allocate_object (abfd
, sizeof (struct elf64_x86_64_obj_tdata
),
463 /* x86-64 ELF linker hash table. */
465 struct elf64_x86_64_link_hash_table
467 struct elf_link_hash_table elf
;
469 /* Short-cuts to get to dynamic linker sections. */
475 bfd_signed_vma refcount
;
479 /* The amount of space used by the jump slots in the GOT. */
480 bfd_vma sgotplt_jump_table_size
;
482 /* Small local sym cache. */
483 struct sym_cache sym_cache
;
485 /* _TLS_MODULE_BASE_ symbol. */
486 struct bfd_link_hash_entry
*tls_module_base
;
488 /* Used by local STT_GNU_IFUNC symbols. */
489 htab_t loc_hash_table
;
490 void * loc_hash_memory
;
492 /* The offset into splt of the PLT entry for the TLS descriptor
493 resolver. Special values are 0, if not necessary (or not found
494 to be necessary yet), and -1 if needed but not determined
497 /* The offset into sgot of the GOT entry used by the PLT entry
502 /* Get the x86-64 ELF linker hash table from a link_info structure. */
504 #define elf64_x86_64_hash_table(p) \
505 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
506 == X86_64_ELF_DATA ? ((struct elf64_x86_64_link_hash_table *) ((p)->hash)) : NULL)
508 #define elf64_x86_64_compute_jump_table_size(htab) \
509 ((htab)->elf.srelplt->reloc_count * GOT_ENTRY_SIZE)
511 /* Create an entry in an x86-64 ELF linker hash table. */
513 static struct bfd_hash_entry
*
514 elf64_x86_64_link_hash_newfunc (struct bfd_hash_entry
*entry
,
515 struct bfd_hash_table
*table
,
518 /* Allocate the structure if it has not already been allocated by a
522 entry
= (struct bfd_hash_entry
*)
523 bfd_hash_allocate (table
,
524 sizeof (struct elf64_x86_64_link_hash_entry
));
529 /* Call the allocation method of the superclass. */
530 entry
= _bfd_elf_link_hash_newfunc (entry
, table
, string
);
533 struct elf64_x86_64_link_hash_entry
*eh
;
535 eh
= (struct elf64_x86_64_link_hash_entry
*) entry
;
536 eh
->dyn_relocs
= NULL
;
537 eh
->tls_type
= GOT_UNKNOWN
;
538 eh
->tlsdesc_got
= (bfd_vma
) -1;
544 /* Compute a hash of a local hash entry. We use elf_link_hash_entry
545 for local symbol so that we can handle local STT_GNU_IFUNC symbols
546 as global symbol. We reuse indx and dynstr_index for local symbol
547 hash since they aren't used by global symbols in this backend. */
550 elf64_x86_64_local_htab_hash (const void *ptr
)
552 struct elf_link_hash_entry
*h
553 = (struct elf_link_hash_entry
*) ptr
;
554 return ELF_LOCAL_SYMBOL_HASH (h
->indx
, h
->dynstr_index
);
557 /* Compare local hash entries. */
560 elf64_x86_64_local_htab_eq (const void *ptr1
, const void *ptr2
)
562 struct elf_link_hash_entry
*h1
563 = (struct elf_link_hash_entry
*) ptr1
;
564 struct elf_link_hash_entry
*h2
565 = (struct elf_link_hash_entry
*) ptr2
;
567 return h1
->indx
== h2
->indx
&& h1
->dynstr_index
== h2
->dynstr_index
;
570 /* Find and/or create a hash entry for local symbol. */
572 static struct elf_link_hash_entry
*
573 elf64_x86_64_get_local_sym_hash (struct elf64_x86_64_link_hash_table
*htab
,
574 bfd
*abfd
, const Elf_Internal_Rela
*rel
,
577 struct elf64_x86_64_link_hash_entry e
, *ret
;
578 asection
*sec
= abfd
->sections
;
579 hashval_t h
= ELF_LOCAL_SYMBOL_HASH (sec
->id
,
580 ELF64_R_SYM (rel
->r_info
));
583 e
.elf
.indx
= sec
->id
;
584 e
.elf
.dynstr_index
= ELF64_R_SYM (rel
->r_info
);
585 slot
= htab_find_slot_with_hash (htab
->loc_hash_table
, &e
, h
,
586 create
? INSERT
: NO_INSERT
);
593 ret
= (struct elf64_x86_64_link_hash_entry
*) *slot
;
597 ret
= (struct elf64_x86_64_link_hash_entry
*)
598 objalloc_alloc ((struct objalloc
*) htab
->loc_hash_memory
,
599 sizeof (struct elf64_x86_64_link_hash_entry
));
602 memset (ret
, 0, sizeof (*ret
));
603 ret
->elf
.indx
= sec
->id
;
604 ret
->elf
.dynstr_index
= ELF64_R_SYM (rel
->r_info
);
605 ret
->elf
.dynindx
= -1;
606 ret
->elf
.plt
.offset
= (bfd_vma
) -1;
607 ret
->elf
.got
.offset
= (bfd_vma
) -1;
613 /* Create an X86-64 ELF linker hash table. */
615 static struct bfd_link_hash_table
*
616 elf64_x86_64_link_hash_table_create (bfd
*abfd
)
618 struct elf64_x86_64_link_hash_table
*ret
;
619 bfd_size_type amt
= sizeof (struct elf64_x86_64_link_hash_table
);
621 ret
= (struct elf64_x86_64_link_hash_table
*) bfd_malloc (amt
);
625 if (!_bfd_elf_link_hash_table_init (&ret
->elf
, abfd
,
626 elf64_x86_64_link_hash_newfunc
,
627 sizeof (struct elf64_x86_64_link_hash_entry
),
636 ret
->sym_cache
.abfd
= NULL
;
637 ret
->tlsdesc_plt
= 0;
638 ret
->tlsdesc_got
= 0;
639 ret
->tls_ld_got
.refcount
= 0;
640 ret
->sgotplt_jump_table_size
= 0;
641 ret
->tls_module_base
= NULL
;
643 ret
->loc_hash_table
= htab_try_create (1024,
644 elf64_x86_64_local_htab_hash
,
645 elf64_x86_64_local_htab_eq
,
647 ret
->loc_hash_memory
= objalloc_create ();
648 if (!ret
->loc_hash_table
|| !ret
->loc_hash_memory
)
654 return &ret
->elf
.root
;
657 /* Destroy an X86-64 ELF linker hash table. */
660 elf64_x86_64_link_hash_table_free (struct bfd_link_hash_table
*hash
)
662 struct elf64_x86_64_link_hash_table
*htab
663 = (struct elf64_x86_64_link_hash_table
*) hash
;
665 if (htab
->loc_hash_table
)
666 htab_delete (htab
->loc_hash_table
);
667 if (htab
->loc_hash_memory
)
668 objalloc_free ((struct objalloc
*) htab
->loc_hash_memory
);
669 _bfd_generic_link_hash_table_free (hash
);
672 /* Create .plt, .rela.plt, .got, .got.plt, .rela.got, .dynbss, and
673 .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
677 elf64_x86_64_create_dynamic_sections (bfd
*dynobj
, struct bfd_link_info
*info
)
679 struct elf64_x86_64_link_hash_table
*htab
;
681 if (!_bfd_elf_create_dynamic_sections (dynobj
, info
))
684 htab
= elf64_x86_64_hash_table (info
);
688 htab
->sdynbss
= bfd_get_section_by_name (dynobj
, ".dynbss");
690 htab
->srelbss
= bfd_get_section_by_name (dynobj
, ".rela.bss");
693 || (!info
->shared
&& !htab
->srelbss
))
699 /* Copy the extra info we tack onto an elf_link_hash_entry. */
702 elf64_x86_64_copy_indirect_symbol (struct bfd_link_info
*info
,
703 struct elf_link_hash_entry
*dir
,
704 struct elf_link_hash_entry
*ind
)
706 struct elf64_x86_64_link_hash_entry
*edir
, *eind
;
708 edir
= (struct elf64_x86_64_link_hash_entry
*) dir
;
709 eind
= (struct elf64_x86_64_link_hash_entry
*) ind
;
711 if (eind
->dyn_relocs
!= NULL
)
713 if (edir
->dyn_relocs
!= NULL
)
715 struct elf_dyn_relocs
**pp
;
716 struct elf_dyn_relocs
*p
;
718 /* Add reloc counts against the indirect sym to the direct sym
719 list. Merge any entries against the same section. */
720 for (pp
= &eind
->dyn_relocs
; (p
= *pp
) != NULL
; )
722 struct elf_dyn_relocs
*q
;
724 for (q
= edir
->dyn_relocs
; q
!= NULL
; q
= q
->next
)
725 if (q
->sec
== p
->sec
)
727 q
->pc_count
+= p
->pc_count
;
728 q
->count
+= p
->count
;
735 *pp
= edir
->dyn_relocs
;
738 edir
->dyn_relocs
= eind
->dyn_relocs
;
739 eind
->dyn_relocs
= NULL
;
742 if (ind
->root
.type
== bfd_link_hash_indirect
743 && dir
->got
.refcount
<= 0)
745 edir
->tls_type
= eind
->tls_type
;
746 eind
->tls_type
= GOT_UNKNOWN
;
749 if (ELIMINATE_COPY_RELOCS
750 && ind
->root
.type
!= bfd_link_hash_indirect
751 && dir
->dynamic_adjusted
)
753 /* If called to transfer flags for a weakdef during processing
754 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
755 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
756 dir
->ref_dynamic
|= ind
->ref_dynamic
;
757 dir
->ref_regular
|= ind
->ref_regular
;
758 dir
->ref_regular_nonweak
|= ind
->ref_regular_nonweak
;
759 dir
->needs_plt
|= ind
->needs_plt
;
760 dir
->pointer_equality_needed
|= ind
->pointer_equality_needed
;
763 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
767 elf64_x86_64_elf_object_p (bfd
*abfd
)
769 /* Set the right machine number for an x86-64 elf64 file. */
770 bfd_default_set_arch_mach (abfd
, bfd_arch_i386
, bfd_mach_x86_64
);
788 /* Return TRUE if the TLS access code sequence support transition
792 elf64_x86_64_check_tls_transition (bfd
*abfd
, asection
*sec
,
794 Elf_Internal_Shdr
*symtab_hdr
,
795 struct elf_link_hash_entry
**sym_hashes
,
797 const Elf_Internal_Rela
*rel
,
798 const Elf_Internal_Rela
*relend
)
801 unsigned long r_symndx
;
802 struct elf_link_hash_entry
*h
;
805 /* Get the section contents. */
806 if (contents
== NULL
)
808 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
809 contents
= elf_section_data (sec
)->this_hdr
.contents
;
812 /* FIXME: How to better handle error condition? */
813 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
816 /* Cache the section contents for elf_link_input_bfd. */
817 elf_section_data (sec
)->this_hdr
.contents
= contents
;
821 offset
= rel
->r_offset
;
826 if ((rel
+ 1) >= relend
)
829 if (r_type
== R_X86_64_TLSGD
)
831 /* Check transition from GD access model. Only
832 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
833 .word 0x6666; rex64; call __tls_get_addr
834 can transit to different access model. */
836 static x86_64_opcode32 leaq
= { { 0x66, 0x48, 0x8d, 0x3d } },
837 call
= { { 0x66, 0x66, 0x48, 0xe8 } };
839 || (offset
+ 12) > sec
->size
840 || bfd_get_32 (abfd
, contents
+ offset
- 4) != leaq
.i
841 || bfd_get_32 (abfd
, contents
+ offset
+ 4) != call
.i
)
846 /* Check transition from LD access model. Only
847 leaq foo@tlsld(%rip), %rdi;
849 can transit to different access model. */
851 static x86_64_opcode32 ld
= { { 0x48, 0x8d, 0x3d, 0xe8 } };
854 if (offset
< 3 || (offset
+ 9) > sec
->size
)
857 op
.i
= bfd_get_32 (abfd
, contents
+ offset
- 3);
858 op
.c
[3] = bfd_get_8 (abfd
, contents
+ offset
+ 4);
863 r_symndx
= ELF64_R_SYM (rel
[1].r_info
);
864 if (r_symndx
< symtab_hdr
->sh_info
)
867 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
868 /* Use strncmp to check __tls_get_addr since __tls_get_addr
871 && h
->root
.root
.string
!= NULL
872 && (ELF64_R_TYPE (rel
[1].r_info
) == R_X86_64_PC32
873 || ELF64_R_TYPE (rel
[1].r_info
) == R_X86_64_PLT32
)
874 && (strncmp (h
->root
.root
.string
,
875 "__tls_get_addr", 14) == 0));
877 case R_X86_64_GOTTPOFF
:
878 /* Check transition from IE access model:
879 movq foo@gottpoff(%rip), %reg
880 addq foo@gottpoff(%rip), %reg
883 if (offset
< 3 || (offset
+ 4) > sec
->size
)
886 val
= bfd_get_8 (abfd
, contents
+ offset
- 3);
887 if (val
!= 0x48 && val
!= 0x4c)
890 val
= bfd_get_8 (abfd
, contents
+ offset
- 2);
891 if (val
!= 0x8b && val
!= 0x03)
894 val
= bfd_get_8 (abfd
, contents
+ offset
- 1);
895 return (val
& 0xc7) == 5;
897 case R_X86_64_GOTPC32_TLSDESC
:
898 /* Check transition from GDesc access model:
899 leaq x@tlsdesc(%rip), %rax
901 Make sure it's a leaq adding rip to a 32-bit offset
902 into any register, although it's probably almost always
905 if (offset
< 3 || (offset
+ 4) > sec
->size
)
908 val
= bfd_get_8 (abfd
, contents
+ offset
- 3);
909 if ((val
& 0xfb) != 0x48)
912 if (bfd_get_8 (abfd
, contents
+ offset
- 2) != 0x8d)
915 val
= bfd_get_8 (abfd
, contents
+ offset
- 1);
916 return (val
& 0xc7) == 0x05;
918 case R_X86_64_TLSDESC_CALL
:
919 /* Check transition from GDesc access model:
920 call *x@tlsdesc(%rax)
922 if (offset
+ 2 <= sec
->size
)
924 /* Make sure that it's a call *x@tlsdesc(%rax). */
925 static x86_64_opcode16 call
= { { 0xff, 0x10 } };
926 return bfd_get_16 (abfd
, contents
+ offset
) == call
.i
;
936 /* Return TRUE if the TLS access transition is OK or no transition
937 will be performed. Update R_TYPE if there is a transition. */
940 elf64_x86_64_tls_transition (struct bfd_link_info
*info
, bfd
*abfd
,
941 asection
*sec
, bfd_byte
*contents
,
942 Elf_Internal_Shdr
*symtab_hdr
,
943 struct elf_link_hash_entry
**sym_hashes
,
944 unsigned int *r_type
, int tls_type
,
945 const Elf_Internal_Rela
*rel
,
946 const Elf_Internal_Rela
*relend
,
947 struct elf_link_hash_entry
*h
,
948 unsigned long r_symndx
)
950 unsigned int from_type
= *r_type
;
951 unsigned int to_type
= from_type
;
952 bfd_boolean check
= TRUE
;
957 case R_X86_64_GOTPC32_TLSDESC
:
958 case R_X86_64_TLSDESC_CALL
:
959 case R_X86_64_GOTTPOFF
:
960 if (info
->executable
)
963 to_type
= R_X86_64_TPOFF32
;
965 to_type
= R_X86_64_GOTTPOFF
;
968 /* When we are called from elf64_x86_64_relocate_section,
969 CONTENTS isn't NULL and there may be additional transitions
970 based on TLS_TYPE. */
971 if (contents
!= NULL
)
973 unsigned int new_to_type
= to_type
;
978 && tls_type
== GOT_TLS_IE
)
979 new_to_type
= R_X86_64_TPOFF32
;
981 if (to_type
== R_X86_64_TLSGD
982 || to_type
== R_X86_64_GOTPC32_TLSDESC
983 || to_type
== R_X86_64_TLSDESC_CALL
)
985 if (tls_type
== GOT_TLS_IE
)
986 new_to_type
= R_X86_64_GOTTPOFF
;
989 /* We checked the transition before when we were called from
990 elf64_x86_64_check_relocs. We only want to check the new
991 transition which hasn't been checked before. */
992 check
= new_to_type
!= to_type
&& from_type
== to_type
;
993 to_type
= new_to_type
;
999 if (info
->executable
)
1000 to_type
= R_X86_64_TPOFF32
;
1007 /* Return TRUE if there is no transition. */
1008 if (from_type
== to_type
)
1011 /* Check if the transition can be performed. */
1013 && ! elf64_x86_64_check_tls_transition (abfd
, sec
, contents
,
1014 symtab_hdr
, sym_hashes
,
1015 from_type
, rel
, relend
))
1017 reloc_howto_type
*from
, *to
;
1020 from
= elf64_x86_64_rtype_to_howto (abfd
, from_type
);
1021 to
= elf64_x86_64_rtype_to_howto (abfd
, to_type
);
1024 name
= h
->root
.root
.string
;
1027 struct elf64_x86_64_link_hash_table
*htab
;
1029 htab
= elf64_x86_64_hash_table (info
);
1034 Elf_Internal_Sym
*isym
;
1036 isym
= bfd_sym_from_r_symndx (&htab
->sym_cache
,
1038 name
= bfd_elf_sym_name (abfd
, symtab_hdr
, isym
, NULL
);
1042 (*_bfd_error_handler
)
1043 (_("%B: TLS transition from %s to %s against `%s' at 0x%lx "
1044 "in section `%A' failed"),
1045 abfd
, sec
, from
->name
, to
->name
, name
,
1046 (unsigned long) rel
->r_offset
);
1047 bfd_set_error (bfd_error_bad_value
);
1055 /* Look through the relocs for a section during the first phase, and
1056 calculate needed space in the global offset table, procedure
1057 linkage table, and dynamic reloc sections. */
1060 elf64_x86_64_check_relocs (bfd
*abfd
, struct bfd_link_info
*info
,
1062 const Elf_Internal_Rela
*relocs
)
1064 struct elf64_x86_64_link_hash_table
*htab
;
1065 Elf_Internal_Shdr
*symtab_hdr
;
1066 struct elf_link_hash_entry
**sym_hashes
;
1067 const Elf_Internal_Rela
*rel
;
1068 const Elf_Internal_Rela
*rel_end
;
1071 if (info
->relocatable
)
1074 BFD_ASSERT (is_x86_64_elf (abfd
));
1076 htab
= elf64_x86_64_hash_table (info
);
1080 symtab_hdr
= &elf_symtab_hdr (abfd
);
1081 sym_hashes
= elf_sym_hashes (abfd
);
1085 rel_end
= relocs
+ sec
->reloc_count
;
1086 for (rel
= relocs
; rel
< rel_end
; rel
++)
1088 unsigned int r_type
;
1089 unsigned long r_symndx
;
1090 struct elf_link_hash_entry
*h
;
1091 Elf_Internal_Sym
*isym
;
1094 r_symndx
= ELF64_R_SYM (rel
->r_info
);
1095 r_type
= ELF64_R_TYPE (rel
->r_info
);
1097 if (r_symndx
>= NUM_SHDR_ENTRIES (symtab_hdr
))
1099 (*_bfd_error_handler
) (_("%B: bad symbol index: %d"),
1104 if (r_symndx
< symtab_hdr
->sh_info
)
1106 /* A local symbol. */
1107 isym
= bfd_sym_from_r_symndx (&htab
->sym_cache
,
1112 /* Check relocation against local STT_GNU_IFUNC symbol. */
1113 if (ELF64_ST_TYPE (isym
->st_info
) == STT_GNU_IFUNC
)
1115 h
= elf64_x86_64_get_local_sym_hash (htab
, abfd
, rel
,
1120 /* Fake a STT_GNU_IFUNC symbol. */
1121 h
->type
= STT_GNU_IFUNC
;
1124 h
->forced_local
= 1;
1125 h
->root
.type
= bfd_link_hash_defined
;
1133 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1134 while (h
->root
.type
== bfd_link_hash_indirect
1135 || h
->root
.type
== bfd_link_hash_warning
)
1136 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1141 /* Create the ifunc sections for static executables. If we
1142 never see an indirect function symbol nor we are building
1143 a static executable, those sections will be empty and
1144 won't appear in output. */
1155 case R_X86_64_PLT32
:
1156 case R_X86_64_GOTPCREL
:
1157 case R_X86_64_GOTPCREL64
:
1158 if (!_bfd_elf_create_ifunc_sections (abfd
, info
))
1163 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
1164 it here if it is defined in a non-shared object. */
1165 if (h
->type
== STT_GNU_IFUNC
1168 /* It is referenced by a non-shared object. */
1172 /* STT_GNU_IFUNC symbol must go through PLT. */
1173 h
->plt
.refcount
+= 1;
1175 /* STT_GNU_IFUNC needs dynamic sections. */
1176 if (htab
->elf
.dynobj
== NULL
)
1177 htab
->elf
.dynobj
= abfd
;
1182 if (h
->root
.root
.string
)
1183 name
= h
->root
.root
.string
;
1185 name
= bfd_elf_sym_name (abfd
, symtab_hdr
, isym
,
1187 (*_bfd_error_handler
)
1188 (_("%B: relocation %s against STT_GNU_IFUNC "
1189 "symbol `%s' isn't handled by %s"), abfd
,
1190 x86_64_elf_howto_table
[r_type
].name
,
1191 name
, __FUNCTION__
);
1192 bfd_set_error (bfd_error_bad_value
);
1197 h
->pointer_equality_needed
= 1;
1200 /* We must copy these reloc types into the output
1201 file. Create a reloc section in dynobj and
1202 make room for this reloc. */
1203 sreloc
= _bfd_elf_create_ifunc_dyn_reloc
1204 (abfd
, info
, sec
, sreloc
,
1205 &((struct elf64_x86_64_link_hash_entry
*) h
)->dyn_relocs
);
1216 if (r_type
!= R_X86_64_PC32
1217 && r_type
!= R_X86_64_PC64
)
1218 h
->pointer_equality_needed
= 1;
1221 case R_X86_64_PLT32
:
1224 case R_X86_64_GOTPCREL
:
1225 case R_X86_64_GOTPCREL64
:
1226 h
->got
.refcount
+= 1;
1227 if (htab
->elf
.sgot
== NULL
1228 && !_bfd_elf_create_got_section (htab
->elf
.dynobj
,
1238 if (! elf64_x86_64_tls_transition (info
, abfd
, sec
, NULL
,
1239 symtab_hdr
, sym_hashes
,
1240 &r_type
, GOT_UNKNOWN
,
1241 rel
, rel_end
, h
, r_symndx
))
1246 case R_X86_64_TLSLD
:
1247 htab
->tls_ld_got
.refcount
+= 1;
1250 case R_X86_64_TPOFF32
:
1251 if (!info
->executable
)
1254 name
= h
->root
.root
.string
;
1256 name
= bfd_elf_sym_name (abfd
, symtab_hdr
, isym
,
1258 (*_bfd_error_handler
)
1259 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
1261 x86_64_elf_howto_table
[r_type
].name
, name
);
1262 bfd_set_error (bfd_error_bad_value
);
1267 case R_X86_64_GOTTPOFF
:
1268 if (!info
->executable
)
1269 info
->flags
|= DF_STATIC_TLS
;
1272 case R_X86_64_GOT32
:
1273 case R_X86_64_GOTPCREL
:
1274 case R_X86_64_TLSGD
:
1275 case R_X86_64_GOT64
:
1276 case R_X86_64_GOTPCREL64
:
1277 case R_X86_64_GOTPLT64
:
1278 case R_X86_64_GOTPC32_TLSDESC
:
1279 case R_X86_64_TLSDESC_CALL
:
1280 /* This symbol requires a global offset table entry. */
1282 int tls_type
, old_tls_type
;
1286 default: tls_type
= GOT_NORMAL
; break;
1287 case R_X86_64_TLSGD
: tls_type
= GOT_TLS_GD
; break;
1288 case R_X86_64_GOTTPOFF
: tls_type
= GOT_TLS_IE
; break;
1289 case R_X86_64_GOTPC32_TLSDESC
:
1290 case R_X86_64_TLSDESC_CALL
:
1291 tls_type
= GOT_TLS_GDESC
; break;
1296 if (r_type
== R_X86_64_GOTPLT64
)
1298 /* This relocation indicates that we also need
1299 a PLT entry, as this is a function. We don't need
1300 a PLT entry for local symbols. */
1302 h
->plt
.refcount
+= 1;
1304 h
->got
.refcount
+= 1;
1305 old_tls_type
= elf64_x86_64_hash_entry (h
)->tls_type
;
1309 bfd_signed_vma
*local_got_refcounts
;
1311 /* This is a global offset table entry for a local symbol. */
1312 local_got_refcounts
= elf_local_got_refcounts (abfd
);
1313 if (local_got_refcounts
== NULL
)
1317 size
= symtab_hdr
->sh_info
;
1318 size
*= sizeof (bfd_signed_vma
)
1319 + sizeof (bfd_vma
) + sizeof (char);
1320 local_got_refcounts
= ((bfd_signed_vma
*)
1321 bfd_zalloc (abfd
, size
));
1322 if (local_got_refcounts
== NULL
)
1324 elf_local_got_refcounts (abfd
) = local_got_refcounts
;
1325 elf64_x86_64_local_tlsdesc_gotent (abfd
)
1326 = (bfd_vma
*) (local_got_refcounts
+ symtab_hdr
->sh_info
);
1327 elf64_x86_64_local_got_tls_type (abfd
)
1328 = (char *) (local_got_refcounts
+ 2 * symtab_hdr
->sh_info
);
1330 local_got_refcounts
[r_symndx
] += 1;
1332 = elf64_x86_64_local_got_tls_type (abfd
) [r_symndx
];
1335 /* If a TLS symbol is accessed using IE at least once,
1336 there is no point to use dynamic model for it. */
1337 if (old_tls_type
!= tls_type
&& old_tls_type
!= GOT_UNKNOWN
1338 && (! GOT_TLS_GD_ANY_P (old_tls_type
)
1339 || tls_type
!= GOT_TLS_IE
))
1341 if (old_tls_type
== GOT_TLS_IE
&& GOT_TLS_GD_ANY_P (tls_type
))
1342 tls_type
= old_tls_type
;
1343 else if (GOT_TLS_GD_ANY_P (old_tls_type
)
1344 && GOT_TLS_GD_ANY_P (tls_type
))
1345 tls_type
|= old_tls_type
;
1349 name
= h
->root
.root
.string
;
1351 name
= bfd_elf_sym_name (abfd
, symtab_hdr
,
1353 (*_bfd_error_handler
)
1354 (_("%B: '%s' accessed both as normal and thread local symbol"),
1360 if (old_tls_type
!= tls_type
)
1363 elf64_x86_64_hash_entry (h
)->tls_type
= tls_type
;
1365 elf64_x86_64_local_got_tls_type (abfd
) [r_symndx
] = tls_type
;
1370 case R_X86_64_GOTOFF64
:
1371 case R_X86_64_GOTPC32
:
1372 case R_X86_64_GOTPC64
:
1374 if (htab
->elf
.sgot
== NULL
)
1376 if (htab
->elf
.dynobj
== NULL
)
1377 htab
->elf
.dynobj
= abfd
;
1378 if (!_bfd_elf_create_got_section (htab
->elf
.dynobj
,
1384 case R_X86_64_PLT32
:
1385 /* This symbol requires a procedure linkage table entry. We
1386 actually build the entry in adjust_dynamic_symbol,
1387 because this might be a case of linking PIC code which is
1388 never referenced by a dynamic object, in which case we
1389 don't need to generate a procedure linkage table entry
1392 /* If this is a local symbol, we resolve it directly without
1393 creating a procedure linkage table entry. */
1398 h
->plt
.refcount
+= 1;
1401 case R_X86_64_PLTOFF64
:
1402 /* This tries to form the 'address' of a function relative
1403 to GOT. For global symbols we need a PLT entry. */
1407 h
->plt
.refcount
+= 1;
1415 /* Let's help debug shared library creation. These relocs
1416 cannot be used in shared libs. Don't error out for
1417 sections we don't care about, such as debug sections or
1418 non-constant sections. */
1420 && (sec
->flags
& SEC_ALLOC
) != 0
1421 && (sec
->flags
& SEC_READONLY
) != 0)
1424 name
= h
->root
.root
.string
;
1426 name
= bfd_elf_sym_name (abfd
, symtab_hdr
, isym
, NULL
);
1427 (*_bfd_error_handler
)
1428 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
1429 abfd
, x86_64_elf_howto_table
[r_type
].name
, name
);
1430 bfd_set_error (bfd_error_bad_value
);
1440 if (h
!= NULL
&& info
->executable
)
1442 /* If this reloc is in a read-only section, we might
1443 need a copy reloc. We can't check reliably at this
1444 stage whether the section is read-only, as input
1445 sections have not yet been mapped to output sections.
1446 Tentatively set the flag for now, and correct in
1447 adjust_dynamic_symbol. */
1450 /* We may need a .plt entry if the function this reloc
1451 refers to is in a shared lib. */
1452 h
->plt
.refcount
+= 1;
1453 if (r_type
!= R_X86_64_PC32
&& r_type
!= R_X86_64_PC64
)
1454 h
->pointer_equality_needed
= 1;
1457 /* If we are creating a shared library, and this is a reloc
1458 against a global symbol, or a non PC relative reloc
1459 against a local symbol, then we need to copy the reloc
1460 into the shared library. However, if we are linking with
1461 -Bsymbolic, we do not need to copy a reloc against a
1462 global symbol which is defined in an object we are
1463 including in the link (i.e., DEF_REGULAR is set). At
1464 this point we have not seen all the input files, so it is
1465 possible that DEF_REGULAR is not set now but will be set
1466 later (it is never cleared). In case of a weak definition,
1467 DEF_REGULAR may be cleared later by a strong definition in
1468 a shared library. We account for that possibility below by
1469 storing information in the relocs_copied field of the hash
1470 table entry. A similar situation occurs when creating
1471 shared libraries and symbol visibility changes render the
1474 If on the other hand, we are creating an executable, we
1475 may need to keep relocations for symbols satisfied by a
1476 dynamic library if we manage to avoid copy relocs for the
1479 && (sec
->flags
& SEC_ALLOC
) != 0
1480 && (! IS_X86_64_PCREL_TYPE (r_type
)
1482 && (! SYMBOLIC_BIND (info
, h
)
1483 || h
->root
.type
== bfd_link_hash_defweak
1484 || !h
->def_regular
))))
1485 || (ELIMINATE_COPY_RELOCS
1487 && (sec
->flags
& SEC_ALLOC
) != 0
1489 && (h
->root
.type
== bfd_link_hash_defweak
1490 || !h
->def_regular
)))
1492 struct elf_dyn_relocs
*p
;
1493 struct elf_dyn_relocs
**head
;
1495 /* We must copy these reloc types into the output file.
1496 Create a reloc section in dynobj and make room for
1500 if (htab
->elf
.dynobj
== NULL
)
1501 htab
->elf
.dynobj
= abfd
;
1503 sreloc
= _bfd_elf_make_dynamic_reloc_section
1504 (sec
, htab
->elf
.dynobj
, 3, abfd
, /*rela?*/ TRUE
);
1510 /* If this is a global symbol, we count the number of
1511 relocations we need for this symbol. */
1514 head
= &((struct elf64_x86_64_link_hash_entry
*) h
)->dyn_relocs
;
1518 /* Track dynamic relocs needed for local syms too.
1519 We really need local syms available to do this
1524 isym
= bfd_sym_from_r_symndx (&htab
->sym_cache
,
1529 s
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
1533 /* Beware of type punned pointers vs strict aliasing
1535 vpp
= &(elf_section_data (s
)->local_dynrel
);
1536 head
= (struct elf_dyn_relocs
**)vpp
;
1540 if (p
== NULL
|| p
->sec
!= sec
)
1542 bfd_size_type amt
= sizeof *p
;
1544 p
= ((struct elf_dyn_relocs
*)
1545 bfd_alloc (htab
->elf
.dynobj
, amt
));
1556 if (IS_X86_64_PCREL_TYPE (r_type
))
1561 /* This relocation describes the C++ object vtable hierarchy.
1562 Reconstruct it for later use during GC. */
1563 case R_X86_64_GNU_VTINHERIT
:
1564 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
1568 /* This relocation describes which C++ vtable entries are actually
1569 used. Record for later use during GC. */
1570 case R_X86_64_GNU_VTENTRY
:
1571 BFD_ASSERT (h
!= NULL
);
1573 && !bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
1585 /* Return the section that should be marked against GC for a given
1589 elf64_x86_64_gc_mark_hook (asection
*sec
,
1590 struct bfd_link_info
*info
,
1591 Elf_Internal_Rela
*rel
,
1592 struct elf_link_hash_entry
*h
,
1593 Elf_Internal_Sym
*sym
)
1596 switch (ELF64_R_TYPE (rel
->r_info
))
1598 case R_X86_64_GNU_VTINHERIT
:
1599 case R_X86_64_GNU_VTENTRY
:
1603 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
1606 /* Update the got entry reference counts for the section being removed. */
1609 elf64_x86_64_gc_sweep_hook (bfd
*abfd
, struct bfd_link_info
*info
,
1611 const Elf_Internal_Rela
*relocs
)
1613 struct elf64_x86_64_link_hash_table
*htab
;
1614 Elf_Internal_Shdr
*symtab_hdr
;
1615 struct elf_link_hash_entry
**sym_hashes
;
1616 bfd_signed_vma
*local_got_refcounts
;
1617 const Elf_Internal_Rela
*rel
, *relend
;
1619 if (info
->relocatable
)
1622 htab
= elf64_x86_64_hash_table (info
);
1626 elf_section_data (sec
)->local_dynrel
= NULL
;
1628 symtab_hdr
= &elf_symtab_hdr (abfd
);
1629 sym_hashes
= elf_sym_hashes (abfd
);
1630 local_got_refcounts
= elf_local_got_refcounts (abfd
);
1632 relend
= relocs
+ sec
->reloc_count
;
1633 for (rel
= relocs
; rel
< relend
; rel
++)
1635 unsigned long r_symndx
;
1636 unsigned int r_type
;
1637 struct elf_link_hash_entry
*h
= NULL
;
1639 r_symndx
= ELF64_R_SYM (rel
->r_info
);
1640 if (r_symndx
>= symtab_hdr
->sh_info
)
1642 struct elf64_x86_64_link_hash_entry
*eh
;
1643 struct elf_dyn_relocs
**pp
;
1644 struct elf_dyn_relocs
*p
;
1646 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1647 while (h
->root
.type
== bfd_link_hash_indirect
1648 || h
->root
.type
== bfd_link_hash_warning
)
1649 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1650 eh
= (struct elf64_x86_64_link_hash_entry
*) h
;
1652 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; pp
= &p
->next
)
1655 /* Everything must go for SEC. */
1661 r_type
= ELF64_R_TYPE (rel
->r_info
);
1662 if (! elf64_x86_64_tls_transition (info
, abfd
, sec
, NULL
,
1663 symtab_hdr
, sym_hashes
,
1664 &r_type
, GOT_UNKNOWN
,
1665 rel
, relend
, h
, r_symndx
))
1670 case R_X86_64_TLSLD
:
1671 if (htab
->tls_ld_got
.refcount
> 0)
1672 htab
->tls_ld_got
.refcount
-= 1;
1675 case R_X86_64_TLSGD
:
1676 case R_X86_64_GOTPC32_TLSDESC
:
1677 case R_X86_64_TLSDESC_CALL
:
1678 case R_X86_64_GOTTPOFF
:
1679 case R_X86_64_GOT32
:
1680 case R_X86_64_GOTPCREL
:
1681 case R_X86_64_GOT64
:
1682 case R_X86_64_GOTPCREL64
:
1683 case R_X86_64_GOTPLT64
:
1686 if (r_type
== R_X86_64_GOTPLT64
&& h
->plt
.refcount
> 0)
1687 h
->plt
.refcount
-= 1;
1688 if (h
->got
.refcount
> 0)
1689 h
->got
.refcount
-= 1;
1691 else if (local_got_refcounts
!= NULL
)
1693 if (local_got_refcounts
[r_symndx
] > 0)
1694 local_got_refcounts
[r_symndx
] -= 1;
1711 case R_X86_64_PLT32
:
1712 case R_X86_64_PLTOFF64
:
1715 if (h
->plt
.refcount
> 0)
1716 h
->plt
.refcount
-= 1;
1728 /* Adjust a symbol defined by a dynamic object and referenced by a
1729 regular object. The current definition is in some section of the
1730 dynamic object, but we're not including those sections. We have to
1731 change the definition to something the rest of the link can
1735 elf64_x86_64_adjust_dynamic_symbol (struct bfd_link_info
*info
,
1736 struct elf_link_hash_entry
*h
)
1738 struct elf64_x86_64_link_hash_table
*htab
;
1741 /* STT_GNU_IFUNC symbol must go through PLT. */
1742 if (h
->type
== STT_GNU_IFUNC
)
1744 if (h
->plt
.refcount
<= 0)
1746 h
->plt
.offset
= (bfd_vma
) -1;
1752 /* If this is a function, put it in the procedure linkage table. We
1753 will fill in the contents of the procedure linkage table later,
1754 when we know the address of the .got section. */
1755 if (h
->type
== STT_FUNC
1758 if (h
->plt
.refcount
<= 0
1759 || SYMBOL_CALLS_LOCAL (info
, h
)
1760 || (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
1761 && h
->root
.type
== bfd_link_hash_undefweak
))
1763 /* This case can occur if we saw a PLT32 reloc in an input
1764 file, but the symbol was never referred to by a dynamic
1765 object, or if all references were garbage collected. In
1766 such a case, we don't actually need to build a procedure
1767 linkage table, and we can just do a PC32 reloc instead. */
1768 h
->plt
.offset
= (bfd_vma
) -1;
1775 /* It's possible that we incorrectly decided a .plt reloc was
1776 needed for an R_X86_64_PC32 reloc to a non-function sym in
1777 check_relocs. We can't decide accurately between function and
1778 non-function syms in check-relocs; Objects loaded later in
1779 the link may change h->type. So fix it now. */
1780 h
->plt
.offset
= (bfd_vma
) -1;
1782 /* If this is a weak symbol, and there is a real definition, the
1783 processor independent code will have arranged for us to see the
1784 real definition first, and we can just use the same value. */
1785 if (h
->u
.weakdef
!= NULL
)
1787 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
1788 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
1789 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
1790 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
1791 if (ELIMINATE_COPY_RELOCS
|| info
->nocopyreloc
)
1792 h
->non_got_ref
= h
->u
.weakdef
->non_got_ref
;
1796 /* This is a reference to a symbol defined by a dynamic object which
1797 is not a function. */
1799 /* If we are creating a shared library, we must presume that the
1800 only references to the symbol are via the global offset table.
1801 For such cases we need not do anything here; the relocations will
1802 be handled correctly by relocate_section. */
1806 /* If there are no references to this symbol that do not use the
1807 GOT, we don't need to generate a copy reloc. */
1808 if (!h
->non_got_ref
)
1811 /* If -z nocopyreloc was given, we won't generate them either. */
1812 if (info
->nocopyreloc
)
1818 if (ELIMINATE_COPY_RELOCS
)
1820 struct elf64_x86_64_link_hash_entry
* eh
;
1821 struct elf_dyn_relocs
*p
;
1823 eh
= (struct elf64_x86_64_link_hash_entry
*) h
;
1824 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
1826 s
= p
->sec
->output_section
;
1827 if (s
!= NULL
&& (s
->flags
& SEC_READONLY
) != 0)
1831 /* If we didn't find any dynamic relocs in read-only sections, then
1832 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
1842 (*_bfd_error_handler
) (_("dynamic variable `%s' is zero size"),
1843 h
->root
.root
.string
);
1847 /* We must allocate the symbol in our .dynbss section, which will
1848 become part of the .bss section of the executable. There will be
1849 an entry for this symbol in the .dynsym section. The dynamic
1850 object will contain position independent code, so all references
1851 from the dynamic object to this symbol will go through the global
1852 offset table. The dynamic linker will use the .dynsym entry to
1853 determine the address it must put in the global offset table, so
1854 both the dynamic object and the regular object will refer to the
1855 same memory location for the variable. */
1857 htab
= elf64_x86_64_hash_table (info
);
1861 /* We must generate a R_X86_64_COPY reloc to tell the dynamic linker
1862 to copy the initial value out of the dynamic object and into the
1863 runtime process image. */
1864 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
1866 htab
->srelbss
->size
+= sizeof (Elf64_External_Rela
);
1872 return _bfd_elf_adjust_dynamic_copy (h
, s
);
1875 /* Allocate space in .plt, .got and associated reloc sections for
1879 elf64_x86_64_allocate_dynrelocs (struct elf_link_hash_entry
*h
, void * inf
)
1881 struct bfd_link_info
*info
;
1882 struct elf64_x86_64_link_hash_table
*htab
;
1883 struct elf64_x86_64_link_hash_entry
*eh
;
1884 struct elf_dyn_relocs
*p
;
1886 if (h
->root
.type
== bfd_link_hash_indirect
)
1889 if (h
->root
.type
== bfd_link_hash_warning
)
1890 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1891 eh
= (struct elf64_x86_64_link_hash_entry
*) h
;
1893 info
= (struct bfd_link_info
*) inf
;
1894 htab
= elf64_x86_64_hash_table (info
);
1898 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
1899 here if it is defined and referenced in a non-shared object. */
1900 if (h
->type
== STT_GNU_IFUNC
1902 return _bfd_elf_allocate_ifunc_dyn_relocs (info
, h
,
1906 else if (htab
->elf
.dynamic_sections_created
1907 && h
->plt
.refcount
> 0)
1909 /* Make sure this symbol is output as a dynamic symbol.
1910 Undefined weak syms won't yet be marked as dynamic. */
1911 if (h
->dynindx
== -1
1912 && !h
->forced_local
)
1914 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
1919 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h
))
1921 asection
*s
= htab
->elf
.splt
;
1923 /* If this is the first .plt entry, make room for the special
1926 s
->size
+= PLT_ENTRY_SIZE
;
1928 h
->plt
.offset
= s
->size
;
1930 /* If this symbol is not defined in a regular file, and we are
1931 not generating a shared library, then set the symbol to this
1932 location in the .plt. This is required to make function
1933 pointers compare as equal between the normal executable and
1934 the shared library. */
1938 h
->root
.u
.def
.section
= s
;
1939 h
->root
.u
.def
.value
= h
->plt
.offset
;
1942 /* Make room for this entry. */
1943 s
->size
+= PLT_ENTRY_SIZE
;
1945 /* We also need to make an entry in the .got.plt section, which
1946 will be placed in the .got section by the linker script. */
1947 htab
->elf
.sgotplt
->size
+= GOT_ENTRY_SIZE
;
1949 /* We also need to make an entry in the .rela.plt section. */
1950 htab
->elf
.srelplt
->size
+= sizeof (Elf64_External_Rela
);
1951 htab
->elf
.srelplt
->reloc_count
++;
1955 h
->plt
.offset
= (bfd_vma
) -1;
1961 h
->plt
.offset
= (bfd_vma
) -1;
1965 eh
->tlsdesc_got
= (bfd_vma
) -1;
1967 /* If R_X86_64_GOTTPOFF symbol is now local to the binary,
1968 make it a R_X86_64_TPOFF32 requiring no GOT entry. */
1969 if (h
->got
.refcount
> 0
1972 && elf64_x86_64_hash_entry (h
)->tls_type
== GOT_TLS_IE
)
1974 h
->got
.offset
= (bfd_vma
) -1;
1976 else if (h
->got
.refcount
> 0)
1980 int tls_type
= elf64_x86_64_hash_entry (h
)->tls_type
;
1982 /* Make sure this symbol is output as a dynamic symbol.
1983 Undefined weak syms won't yet be marked as dynamic. */
1984 if (h
->dynindx
== -1
1985 && !h
->forced_local
)
1987 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
1991 if (GOT_TLS_GDESC_P (tls_type
))
1993 eh
->tlsdesc_got
= htab
->elf
.sgotplt
->size
1994 - elf64_x86_64_compute_jump_table_size (htab
);
1995 htab
->elf
.sgotplt
->size
+= 2 * GOT_ENTRY_SIZE
;
1996 h
->got
.offset
= (bfd_vma
) -2;
1998 if (! GOT_TLS_GDESC_P (tls_type
)
1999 || GOT_TLS_GD_P (tls_type
))
2002 h
->got
.offset
= s
->size
;
2003 s
->size
+= GOT_ENTRY_SIZE
;
2004 if (GOT_TLS_GD_P (tls_type
))
2005 s
->size
+= GOT_ENTRY_SIZE
;
2007 dyn
= htab
->elf
.dynamic_sections_created
;
2008 /* R_X86_64_TLSGD needs one dynamic relocation if local symbol
2010 R_X86_64_GOTTPOFF needs one dynamic relocation. */
2011 if ((GOT_TLS_GD_P (tls_type
) && h
->dynindx
== -1)
2012 || tls_type
== GOT_TLS_IE
)
2013 htab
->elf
.srelgot
->size
+= sizeof (Elf64_External_Rela
);
2014 else if (GOT_TLS_GD_P (tls_type
))
2015 htab
->elf
.srelgot
->size
+= 2 * sizeof (Elf64_External_Rela
);
2016 else if (! GOT_TLS_GDESC_P (tls_type
)
2017 && (ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
2018 || h
->root
.type
!= bfd_link_hash_undefweak
)
2020 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, 0, h
)))
2021 htab
->elf
.srelgot
->size
+= sizeof (Elf64_External_Rela
);
2022 if (GOT_TLS_GDESC_P (tls_type
))
2024 htab
->elf
.srelplt
->size
+= sizeof (Elf64_External_Rela
);
2025 htab
->tlsdesc_plt
= (bfd_vma
) -1;
2029 h
->got
.offset
= (bfd_vma
) -1;
2031 if (eh
->dyn_relocs
== NULL
)
2034 /* In the shared -Bsymbolic case, discard space allocated for
2035 dynamic pc-relative relocs against symbols which turn out to be
2036 defined in regular objects. For the normal shared case, discard
2037 space for pc-relative relocs that have become local due to symbol
2038 visibility changes. */
2042 /* Relocs that use pc_count are those that appear on a call
2043 insn, or certain REL relocs that can generated via assembly.
2044 We want calls to protected symbols to resolve directly to the
2045 function rather than going via the plt. If people want
2046 function pointer comparisons to work as expected then they
2047 should avoid writing weird assembly. */
2048 if (SYMBOL_CALLS_LOCAL (info
, h
))
2050 struct elf_dyn_relocs
**pp
;
2052 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; )
2054 p
->count
-= p
->pc_count
;
2063 /* Also discard relocs on undefined weak syms with non-default
2065 if (eh
->dyn_relocs
!= NULL
2066 && h
->root
.type
== bfd_link_hash_undefweak
)
2068 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
)
2069 eh
->dyn_relocs
= NULL
;
2071 /* Make sure undefined weak symbols are output as a dynamic
2073 else if (h
->dynindx
== -1
2074 && ! h
->forced_local
2075 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
2080 else if (ELIMINATE_COPY_RELOCS
)
2082 /* For the non-shared case, discard space for relocs against
2083 symbols which turn out to need copy relocs or are not
2089 || (htab
->elf
.dynamic_sections_created
2090 && (h
->root
.type
== bfd_link_hash_undefweak
2091 || h
->root
.type
== bfd_link_hash_undefined
))))
2093 /* Make sure this symbol is output as a dynamic symbol.
2094 Undefined weak syms won't yet be marked as dynamic. */
2095 if (h
->dynindx
== -1
2096 && ! h
->forced_local
2097 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
2100 /* If that succeeded, we know we'll be keeping all the
2102 if (h
->dynindx
!= -1)
2106 eh
->dyn_relocs
= NULL
;
2111 /* Finally, allocate space. */
2112 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2116 sreloc
= elf_section_data (p
->sec
)->sreloc
;
2118 BFD_ASSERT (sreloc
!= NULL
);
2120 sreloc
->size
+= p
->count
* sizeof (Elf64_External_Rela
);
2126 /* Allocate space in .plt, .got and associated reloc sections for
2127 local dynamic relocs. */
2130 elf64_x86_64_allocate_local_dynrelocs (void **slot
, void *inf
)
2132 struct elf_link_hash_entry
*h
2133 = (struct elf_link_hash_entry
*) *slot
;
2135 if (h
->type
!= STT_GNU_IFUNC
2139 || h
->root
.type
!= bfd_link_hash_defined
)
2142 return elf64_x86_64_allocate_dynrelocs (h
, inf
);
2145 /* Find any dynamic relocs that apply to read-only sections. */
2148 elf64_x86_64_readonly_dynrelocs (struct elf_link_hash_entry
*h
, void * inf
)
2150 struct elf64_x86_64_link_hash_entry
*eh
;
2151 struct elf_dyn_relocs
*p
;
2153 if (h
->root
.type
== bfd_link_hash_warning
)
2154 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2156 eh
= (struct elf64_x86_64_link_hash_entry
*) h
;
2157 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2159 asection
*s
= p
->sec
->output_section
;
2161 if (s
!= NULL
&& (s
->flags
& SEC_READONLY
) != 0)
2163 struct bfd_link_info
*info
= (struct bfd_link_info
*) inf
;
2165 info
->flags
|= DF_TEXTREL
;
2167 /* Not an error, just cut short the traversal. */
2174 /* Set the sizes of the dynamic sections. */
2177 elf64_x86_64_size_dynamic_sections (bfd
*output_bfd ATTRIBUTE_UNUSED
,
2178 struct bfd_link_info
*info
)
2180 struct elf64_x86_64_link_hash_table
*htab
;
2186 htab
= elf64_x86_64_hash_table (info
);
2190 dynobj
= htab
->elf
.dynobj
;
2194 if (htab
->elf
.dynamic_sections_created
)
2196 /* Set the contents of the .interp section to the interpreter. */
2197 if (info
->executable
)
2199 s
= bfd_get_section_by_name (dynobj
, ".interp");
2202 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
2203 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
2207 /* Set up .got offsets for local syms, and space for local dynamic
2209 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
2211 bfd_signed_vma
*local_got
;
2212 bfd_signed_vma
*end_local_got
;
2213 char *local_tls_type
;
2214 bfd_vma
*local_tlsdesc_gotent
;
2215 bfd_size_type locsymcount
;
2216 Elf_Internal_Shdr
*symtab_hdr
;
2219 if (! is_x86_64_elf (ibfd
))
2222 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
2224 struct elf_dyn_relocs
*p
;
2226 for (p
= (struct elf_dyn_relocs
*)
2227 (elf_section_data (s
)->local_dynrel
);
2231 if (!bfd_is_abs_section (p
->sec
)
2232 && bfd_is_abs_section (p
->sec
->output_section
))
2234 /* Input section has been discarded, either because
2235 it is a copy of a linkonce section or due to
2236 linker script /DISCARD/, so we'll be discarding
2239 else if (p
->count
!= 0)
2241 srel
= elf_section_data (p
->sec
)->sreloc
;
2242 srel
->size
+= p
->count
* sizeof (Elf64_External_Rela
);
2243 if ((p
->sec
->output_section
->flags
& SEC_READONLY
) != 0)
2244 info
->flags
|= DF_TEXTREL
;
2249 local_got
= elf_local_got_refcounts (ibfd
);
2253 symtab_hdr
= &elf_symtab_hdr (ibfd
);
2254 locsymcount
= symtab_hdr
->sh_info
;
2255 end_local_got
= local_got
+ locsymcount
;
2256 local_tls_type
= elf64_x86_64_local_got_tls_type (ibfd
);
2257 local_tlsdesc_gotent
= elf64_x86_64_local_tlsdesc_gotent (ibfd
);
2259 srel
= htab
->elf
.srelgot
;
2260 for (; local_got
< end_local_got
;
2261 ++local_got
, ++local_tls_type
, ++local_tlsdesc_gotent
)
2263 *local_tlsdesc_gotent
= (bfd_vma
) -1;
2266 if (GOT_TLS_GDESC_P (*local_tls_type
))
2268 *local_tlsdesc_gotent
= htab
->elf
.sgotplt
->size
2269 - elf64_x86_64_compute_jump_table_size (htab
);
2270 htab
->elf
.sgotplt
->size
+= 2 * GOT_ENTRY_SIZE
;
2271 *local_got
= (bfd_vma
) -2;
2273 if (! GOT_TLS_GDESC_P (*local_tls_type
)
2274 || GOT_TLS_GD_P (*local_tls_type
))
2276 *local_got
= s
->size
;
2277 s
->size
+= GOT_ENTRY_SIZE
;
2278 if (GOT_TLS_GD_P (*local_tls_type
))
2279 s
->size
+= GOT_ENTRY_SIZE
;
2282 || GOT_TLS_GD_ANY_P (*local_tls_type
)
2283 || *local_tls_type
== GOT_TLS_IE
)
2285 if (GOT_TLS_GDESC_P (*local_tls_type
))
2287 htab
->elf
.srelplt
->size
2288 += sizeof (Elf64_External_Rela
);
2289 htab
->tlsdesc_plt
= (bfd_vma
) -1;
2291 if (! GOT_TLS_GDESC_P (*local_tls_type
)
2292 || GOT_TLS_GD_P (*local_tls_type
))
2293 srel
->size
+= sizeof (Elf64_External_Rela
);
2297 *local_got
= (bfd_vma
) -1;
2301 if (htab
->tls_ld_got
.refcount
> 0)
2303 /* Allocate 2 got entries and 1 dynamic reloc for R_X86_64_TLSLD
2305 htab
->tls_ld_got
.offset
= htab
->elf
.sgot
->size
;
2306 htab
->elf
.sgot
->size
+= 2 * GOT_ENTRY_SIZE
;
2307 htab
->elf
.srelgot
->size
+= sizeof (Elf64_External_Rela
);
2310 htab
->tls_ld_got
.offset
= -1;
2312 /* Allocate global sym .plt and .got entries, and space for global
2313 sym dynamic relocs. */
2314 elf_link_hash_traverse (&htab
->elf
, elf64_x86_64_allocate_dynrelocs
,
2317 /* Allocate .plt and .got entries, and space for local symbols. */
2318 htab_traverse (htab
->loc_hash_table
,
2319 elf64_x86_64_allocate_local_dynrelocs
,
2322 /* For every jump slot reserved in the sgotplt, reloc_count is
2323 incremented. However, when we reserve space for TLS descriptors,
2324 it's not incremented, so in order to compute the space reserved
2325 for them, it suffices to multiply the reloc count by the jump
2327 if (htab
->elf
.srelplt
)
2328 htab
->sgotplt_jump_table_size
2329 = elf64_x86_64_compute_jump_table_size (htab
);
2331 if (htab
->tlsdesc_plt
)
2333 /* If we're not using lazy TLS relocations, don't generate the
2334 PLT and GOT entries they require. */
2335 if ((info
->flags
& DF_BIND_NOW
))
2336 htab
->tlsdesc_plt
= 0;
2339 htab
->tlsdesc_got
= htab
->elf
.sgot
->size
;
2340 htab
->elf
.sgot
->size
+= GOT_ENTRY_SIZE
;
2341 /* Reserve room for the initial entry.
2342 FIXME: we could probably do away with it in this case. */
2343 if (htab
->elf
.splt
->size
== 0)
2344 htab
->elf
.splt
->size
+= PLT_ENTRY_SIZE
;
2345 htab
->tlsdesc_plt
= htab
->elf
.splt
->size
;
2346 htab
->elf
.splt
->size
+= PLT_ENTRY_SIZE
;
2350 /* We now have determined the sizes of the various dynamic sections.
2351 Allocate memory for them. */
2353 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
2355 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
2358 if (s
== htab
->elf
.splt
2359 || s
== htab
->elf
.sgot
2360 || s
== htab
->elf
.sgotplt
2361 || s
== htab
->elf
.iplt
2362 || s
== htab
->elf
.igotplt
2363 || s
== htab
->sdynbss
)
2365 /* Strip this section if we don't need it; see the
2368 else if (CONST_STRNEQ (bfd_get_section_name (dynobj
, s
), ".rela"))
2370 if (s
->size
!= 0 && s
!= htab
->elf
.srelplt
)
2373 /* We use the reloc_count field as a counter if we need
2374 to copy relocs into the output file. */
2375 if (s
!= htab
->elf
.srelplt
)
2380 /* It's not one of our sections, so don't allocate space. */
2386 /* If we don't need this section, strip it from the
2387 output file. This is mostly to handle .rela.bss and
2388 .rela.plt. We must create both sections in
2389 create_dynamic_sections, because they must be created
2390 before the linker maps input sections to output
2391 sections. The linker does that before
2392 adjust_dynamic_symbol is called, and it is that
2393 function which decides whether anything needs to go
2394 into these sections. */
2396 s
->flags
|= SEC_EXCLUDE
;
2400 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
2403 /* Allocate memory for the section contents. We use bfd_zalloc
2404 here in case unused entries are not reclaimed before the
2405 section's contents are written out. This should not happen,
2406 but this way if it does, we get a R_X86_64_NONE reloc instead
2408 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
2409 if (s
->contents
== NULL
)
2413 if (htab
->elf
.dynamic_sections_created
)
2415 /* Add some entries to the .dynamic section. We fill in the
2416 values later, in elf64_x86_64_finish_dynamic_sections, but we
2417 must add the entries now so that we get the correct size for
2418 the .dynamic section. The DT_DEBUG entry is filled in by the
2419 dynamic linker and used by the debugger. */
2420 #define add_dynamic_entry(TAG, VAL) \
2421 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
2423 if (info
->executable
)
2425 if (!add_dynamic_entry (DT_DEBUG
, 0))
2429 if (htab
->elf
.splt
->size
!= 0)
2431 if (!add_dynamic_entry (DT_PLTGOT
, 0)
2432 || !add_dynamic_entry (DT_PLTRELSZ
, 0)
2433 || !add_dynamic_entry (DT_PLTREL
, DT_RELA
)
2434 || !add_dynamic_entry (DT_JMPREL
, 0))
2437 if (htab
->tlsdesc_plt
2438 && (!add_dynamic_entry (DT_TLSDESC_PLT
, 0)
2439 || !add_dynamic_entry (DT_TLSDESC_GOT
, 0)))
2445 if (!add_dynamic_entry (DT_RELA
, 0)
2446 || !add_dynamic_entry (DT_RELASZ
, 0)
2447 || !add_dynamic_entry (DT_RELAENT
, sizeof (Elf64_External_Rela
)))
2450 /* If any dynamic relocs apply to a read-only section,
2451 then we need a DT_TEXTREL entry. */
2452 if ((info
->flags
& DF_TEXTREL
) == 0)
2453 elf_link_hash_traverse (&htab
->elf
,
2454 elf64_x86_64_readonly_dynrelocs
,
2457 if ((info
->flags
& DF_TEXTREL
) != 0)
2459 if (!add_dynamic_entry (DT_TEXTREL
, 0))
2464 #undef add_dynamic_entry
2470 elf64_x86_64_always_size_sections (bfd
*output_bfd
,
2471 struct bfd_link_info
*info
)
2473 asection
*tls_sec
= elf_hash_table (info
)->tls_sec
;
2477 struct elf_link_hash_entry
*tlsbase
;
2479 tlsbase
= elf_link_hash_lookup (elf_hash_table (info
),
2480 "_TLS_MODULE_BASE_",
2481 FALSE
, FALSE
, FALSE
);
2483 if (tlsbase
&& tlsbase
->type
== STT_TLS
)
2485 struct elf64_x86_64_link_hash_table
*htab
;
2486 struct bfd_link_hash_entry
*bh
= NULL
;
2487 const struct elf_backend_data
*bed
2488 = get_elf_backend_data (output_bfd
);
2490 htab
= elf64_x86_64_hash_table (info
);
2494 if (!(_bfd_generic_link_add_one_symbol
2495 (info
, output_bfd
, "_TLS_MODULE_BASE_", BSF_LOCAL
,
2496 tls_sec
, 0, NULL
, FALSE
,
2497 bed
->collect
, &bh
)))
2500 htab
->tls_module_base
= bh
;
2502 tlsbase
= (struct elf_link_hash_entry
*)bh
;
2503 tlsbase
->def_regular
= 1;
2504 tlsbase
->other
= STV_HIDDEN
;
2505 (*bed
->elf_backend_hide_symbol
) (info
, tlsbase
, TRUE
);
2512 /* _TLS_MODULE_BASE_ needs to be treated especially when linking
2513 executables. Rather than setting it to the beginning of the TLS
2514 section, we have to set it to the end. This function may be called
2515 multiple times, it is idempotent. */
2518 elf64_x86_64_set_tls_module_base (struct bfd_link_info
*info
)
2520 struct elf64_x86_64_link_hash_table
*htab
;
2521 struct bfd_link_hash_entry
*base
;
2523 if (!info
->executable
)
2526 htab
= elf64_x86_64_hash_table (info
);
2530 base
= htab
->tls_module_base
;
2534 base
->u
.def
.value
= htab
->elf
.tls_size
;
2537 /* Return the base VMA address which should be subtracted from real addresses
2538 when resolving @dtpoff relocation.
2539 This is PT_TLS segment p_vaddr. */
2542 elf64_x86_64_dtpoff_base (struct bfd_link_info
*info
)
2544 /* If tls_sec is NULL, we should have signalled an error already. */
2545 if (elf_hash_table (info
)->tls_sec
== NULL
)
2547 return elf_hash_table (info
)->tls_sec
->vma
;
2550 /* Return the relocation value for @tpoff relocation
2551 if STT_TLS virtual address is ADDRESS. */
2554 elf64_x86_64_tpoff (struct bfd_link_info
*info
, bfd_vma address
)
2556 struct elf_link_hash_table
*htab
= elf_hash_table (info
);
2558 /* If tls_segment is NULL, we should have signalled an error already. */
2559 if (htab
->tls_sec
== NULL
)
2561 return address
- htab
->tls_size
- htab
->tls_sec
->vma
;
2564 /* Is the instruction before OFFSET in CONTENTS a 32bit relative
2568 is_32bit_relative_branch (bfd_byte
*contents
, bfd_vma offset
)
2570 /* Opcode Instruction
2573 0x0f 0x8x conditional jump */
2575 && (contents
[offset
- 1] == 0xe8
2576 || contents
[offset
- 1] == 0xe9))
2578 && contents
[offset
- 2] == 0x0f
2579 && (contents
[offset
- 1] & 0xf0) == 0x80));
2583 elf64_x86_64_append_rela (bfd
*abfd
, asection
*s
, Elf_Internal_Rela
*rel
)
2585 bfd_byte
*loc
= s
->contents
;
2586 loc
+= s
->reloc_count
++ * sizeof (Elf64_External_Rela
);
2587 BFD_ASSERT (loc
+ sizeof (Elf64_External_Rela
)
2588 <= s
->contents
+ s
->size
);
2589 bfd_elf64_swap_reloca_out (abfd
, rel
, loc
);
2592 /* Relocate an x86_64 ELF section. */
2595 elf64_x86_64_relocate_section (bfd
*output_bfd
, struct bfd_link_info
*info
,
2596 bfd
*input_bfd
, asection
*input_section
,
2597 bfd_byte
*contents
, Elf_Internal_Rela
*relocs
,
2598 Elf_Internal_Sym
*local_syms
,
2599 asection
**local_sections
)
2601 struct elf64_x86_64_link_hash_table
*htab
;
2602 Elf_Internal_Shdr
*symtab_hdr
;
2603 struct elf_link_hash_entry
**sym_hashes
;
2604 bfd_vma
*local_got_offsets
;
2605 bfd_vma
*local_tlsdesc_gotents
;
2606 Elf_Internal_Rela
*rel
;
2607 Elf_Internal_Rela
*relend
;
2609 BFD_ASSERT (is_x86_64_elf (input_bfd
));
2611 htab
= elf64_x86_64_hash_table (info
);
2614 symtab_hdr
= &elf_symtab_hdr (input_bfd
);
2615 sym_hashes
= elf_sym_hashes (input_bfd
);
2616 local_got_offsets
= elf_local_got_offsets (input_bfd
);
2617 local_tlsdesc_gotents
= elf64_x86_64_local_tlsdesc_gotent (input_bfd
);
2619 elf64_x86_64_set_tls_module_base (info
);
2622 relend
= relocs
+ input_section
->reloc_count
;
2623 for (; rel
< relend
; rel
++)
2625 unsigned int r_type
;
2626 reloc_howto_type
*howto
;
2627 unsigned long r_symndx
;
2628 struct elf_link_hash_entry
*h
;
2629 Elf_Internal_Sym
*sym
;
2631 bfd_vma off
, offplt
;
2633 bfd_boolean unresolved_reloc
;
2634 bfd_reloc_status_type r
;
2638 r_type
= ELF64_R_TYPE (rel
->r_info
);
2639 if (r_type
== (int) R_X86_64_GNU_VTINHERIT
2640 || r_type
== (int) R_X86_64_GNU_VTENTRY
)
2643 if (r_type
>= R_X86_64_max
)
2645 bfd_set_error (bfd_error_bad_value
);
2649 howto
= x86_64_elf_howto_table
+ r_type
;
2650 r_symndx
= ELF64_R_SYM (rel
->r_info
);
2654 unresolved_reloc
= FALSE
;
2655 if (r_symndx
< symtab_hdr
->sh_info
)
2657 sym
= local_syms
+ r_symndx
;
2658 sec
= local_sections
[r_symndx
];
2660 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
,
2663 /* Relocate against local STT_GNU_IFUNC symbol. */
2664 if (!info
->relocatable
2665 && ELF64_ST_TYPE (sym
->st_info
) == STT_GNU_IFUNC
)
2667 h
= elf64_x86_64_get_local_sym_hash (htab
, input_bfd
,
2672 /* Set STT_GNU_IFUNC symbol value. */
2673 h
->root
.u
.def
.value
= sym
->st_value
;
2674 h
->root
.u
.def
.section
= sec
;
2681 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
2682 r_symndx
, symtab_hdr
, sym_hashes
,
2684 unresolved_reloc
, warned
);
2687 if (sec
!= NULL
&& elf_discarded_section (sec
))
2689 /* For relocs against symbols from removed linkonce sections,
2690 or sections discarded by a linker script, we just want the
2691 section contents zeroed. Avoid any special processing. */
2692 _bfd_clear_contents (howto
, input_bfd
, contents
+ rel
->r_offset
);
2698 if (info
->relocatable
)
2701 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
2702 it here if it is defined in a non-shared object. */
2704 && h
->type
== STT_GNU_IFUNC
2711 if ((input_section
->flags
& SEC_ALLOC
) == 0
2712 || h
->plt
.offset
== (bfd_vma
) -1)
2715 /* STT_GNU_IFUNC symbol must go through PLT. */
2716 plt
= htab
->elf
.splt
? htab
->elf
.splt
: htab
->elf
.iplt
;
2717 relocation
= (plt
->output_section
->vma
2718 + plt
->output_offset
+ h
->plt
.offset
);
2723 if (h
->root
.root
.string
)
2724 name
= h
->root
.root
.string
;
2726 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
, sym
,
2728 (*_bfd_error_handler
)
2729 (_("%B: relocation %s against STT_GNU_IFUNC "
2730 "symbol `%s' isn't handled by %s"), input_bfd
,
2731 x86_64_elf_howto_table
[r_type
].name
,
2732 name
, __FUNCTION__
);
2733 bfd_set_error (bfd_error_bad_value
);
2742 if (rel
->r_addend
!= 0)
2744 if (h
->root
.root
.string
)
2745 name
= h
->root
.root
.string
;
2747 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
,
2749 (*_bfd_error_handler
)
2750 (_("%B: relocation %s against STT_GNU_IFUNC "
2751 "symbol `%s' has non-zero addend: %d"),
2752 input_bfd
, x86_64_elf_howto_table
[r_type
].name
,
2753 name
, rel
->r_addend
);
2754 bfd_set_error (bfd_error_bad_value
);
2758 /* Generate dynamic relcoation only when there is a
2759 non-GOF reference in a shared object. */
2760 if (info
->shared
&& h
->non_got_ref
)
2762 Elf_Internal_Rela outrel
;
2765 /* Need a dynamic relocation to get the real function
2767 outrel
.r_offset
= _bfd_elf_section_offset (output_bfd
,
2771 if (outrel
.r_offset
== (bfd_vma
) -1
2772 || outrel
.r_offset
== (bfd_vma
) -2)
2775 outrel
.r_offset
+= (input_section
->output_section
->vma
2776 + input_section
->output_offset
);
2778 if (h
->dynindx
== -1
2780 || info
->executable
)
2782 /* This symbol is resolved locally. */
2783 outrel
.r_info
= ELF64_R_INFO (0, R_X86_64_IRELATIVE
);
2784 outrel
.r_addend
= (h
->root
.u
.def
.value
2785 + h
->root
.u
.def
.section
->output_section
->vma
2786 + h
->root
.u
.def
.section
->output_offset
);
2790 outrel
.r_info
= ELF64_R_INFO (h
->dynindx
, r_type
);
2791 outrel
.r_addend
= 0;
2794 sreloc
= htab
->elf
.irelifunc
;
2795 elf64_x86_64_append_rela (output_bfd
, sreloc
, &outrel
);
2797 /* If this reloc is against an external symbol, we
2798 do not want to fiddle with the addend. Otherwise,
2799 we need to include the symbol value so that it
2800 becomes an addend for the dynamic reloc. For an
2801 internal symbol, we have updated addend. */
2808 case R_X86_64_PLT32
:
2811 case R_X86_64_GOTPCREL
:
2812 case R_X86_64_GOTPCREL64
:
2813 base_got
= htab
->elf
.sgot
;
2814 off
= h
->got
.offset
;
2816 if (base_got
== NULL
)
2819 if (off
== (bfd_vma
) -1)
2821 /* We can't use h->got.offset here to save state, or
2822 even just remember the offset, as finish_dynamic_symbol
2823 would use that as offset into .got. */
2825 if (htab
->elf
.splt
!= NULL
)
2827 plt_index
= h
->plt
.offset
/ PLT_ENTRY_SIZE
- 1;
2828 off
= (plt_index
+ 3) * GOT_ENTRY_SIZE
;
2829 base_got
= htab
->elf
.sgotplt
;
2833 plt_index
= h
->plt
.offset
/ PLT_ENTRY_SIZE
;
2834 off
= plt_index
* GOT_ENTRY_SIZE
;
2835 base_got
= htab
->elf
.igotplt
;
2838 if (h
->dynindx
== -1
2842 /* This references the local defitionion. We must
2843 initialize this entry in the global offset table.
2844 Since the offset must always be a multiple of 8,
2845 we use the least significant bit to record
2846 whether we have initialized it already.
2848 When doing a dynamic link, we create a .rela.got
2849 relocation entry to initialize the value. This
2850 is done in the finish_dynamic_symbol routine. */
2855 bfd_put_64 (output_bfd
, relocation
,
2856 base_got
->contents
+ off
);
2857 /* Note that this is harmless for the GOTPLT64
2858 case, as -1 | 1 still is -1. */
2864 relocation
= (base_got
->output_section
->vma
2865 + base_got
->output_offset
+ off
);
2867 if (r_type
!= R_X86_64_GOTPCREL
2868 && r_type
!= R_X86_64_GOTPCREL64
)
2871 if (htab
->elf
.splt
!= NULL
)
2872 gotplt
= htab
->elf
.sgotplt
;
2874 gotplt
= htab
->elf
.igotplt
;
2875 relocation
-= (gotplt
->output_section
->vma
2876 - gotplt
->output_offset
);
2883 /* When generating a shared object, the relocations handled here are
2884 copied into the output file to be resolved at run time. */
2887 case R_X86_64_GOT32
:
2888 case R_X86_64_GOT64
:
2889 /* Relocation is to the entry for this symbol in the global
2891 case R_X86_64_GOTPCREL
:
2892 case R_X86_64_GOTPCREL64
:
2893 /* Use global offset table entry as symbol value. */
2894 case R_X86_64_GOTPLT64
:
2895 /* This is the same as GOT64 for relocation purposes, but
2896 indicates the existence of a PLT entry. The difficulty is,
2897 that we must calculate the GOT slot offset from the PLT
2898 offset, if this symbol got a PLT entry (it was global).
2899 Additionally if it's computed from the PLT entry, then that
2900 GOT offset is relative to .got.plt, not to .got. */
2901 base_got
= htab
->elf
.sgot
;
2903 if (htab
->elf
.sgot
== NULL
)
2910 off
= h
->got
.offset
;
2912 && h
->plt
.offset
!= (bfd_vma
)-1
2913 && off
== (bfd_vma
)-1)
2915 /* We can't use h->got.offset here to save
2916 state, or even just remember the offset, as
2917 finish_dynamic_symbol would use that as offset into
2919 bfd_vma plt_index
= h
->plt
.offset
/ PLT_ENTRY_SIZE
- 1;
2920 off
= (plt_index
+ 3) * GOT_ENTRY_SIZE
;
2921 base_got
= htab
->elf
.sgotplt
;
2924 dyn
= htab
->elf
.dynamic_sections_created
;
2926 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
2928 && SYMBOL_REFERENCES_LOCAL (info
, h
))
2929 || (ELF_ST_VISIBILITY (h
->other
)
2930 && h
->root
.type
== bfd_link_hash_undefweak
))
2932 /* This is actually a static link, or it is a -Bsymbolic
2933 link and the symbol is defined locally, or the symbol
2934 was forced to be local because of a version file. We
2935 must initialize this entry in the global offset table.
2936 Since the offset must always be a multiple of 8, we
2937 use the least significant bit to record whether we
2938 have initialized it already.
2940 When doing a dynamic link, we create a .rela.got
2941 relocation entry to initialize the value. This is
2942 done in the finish_dynamic_symbol routine. */
2947 bfd_put_64 (output_bfd
, relocation
,
2948 base_got
->contents
+ off
);
2949 /* Note that this is harmless for the GOTPLT64 case,
2950 as -1 | 1 still is -1. */
2955 unresolved_reloc
= FALSE
;
2959 if (local_got_offsets
== NULL
)
2962 off
= local_got_offsets
[r_symndx
];
2964 /* The offset must always be a multiple of 8. We use
2965 the least significant bit to record whether we have
2966 already generated the necessary reloc. */
2971 bfd_put_64 (output_bfd
, relocation
,
2972 base_got
->contents
+ off
);
2977 Elf_Internal_Rela outrel
;
2979 /* We need to generate a R_X86_64_RELATIVE reloc
2980 for the dynamic linker. */
2981 s
= htab
->elf
.srelgot
;
2985 outrel
.r_offset
= (base_got
->output_section
->vma
2986 + base_got
->output_offset
2988 outrel
.r_info
= ELF64_R_INFO (0, R_X86_64_RELATIVE
);
2989 outrel
.r_addend
= relocation
;
2990 elf64_x86_64_append_rela (output_bfd
, s
, &outrel
);
2993 local_got_offsets
[r_symndx
] |= 1;
2997 if (off
>= (bfd_vma
) -2)
3000 relocation
= base_got
->output_section
->vma
3001 + base_got
->output_offset
+ off
;
3002 if (r_type
!= R_X86_64_GOTPCREL
&& r_type
!= R_X86_64_GOTPCREL64
)
3003 relocation
-= htab
->elf
.sgotplt
->output_section
->vma
3004 - htab
->elf
.sgotplt
->output_offset
;
3008 case R_X86_64_GOTOFF64
:
3009 /* Relocation is relative to the start of the global offset
3012 /* Check to make sure it isn't a protected function symbol
3013 for shared library since it may not be local when used
3014 as function address. */
3018 && h
->type
== STT_FUNC
3019 && ELF_ST_VISIBILITY (h
->other
) == STV_PROTECTED
)
3021 (*_bfd_error_handler
)
3022 (_("%B: relocation R_X86_64_GOTOFF64 against protected function `%s' can not be used when making a shared object"),
3023 input_bfd
, h
->root
.root
.string
);
3024 bfd_set_error (bfd_error_bad_value
);
3028 /* Note that sgot is not involved in this
3029 calculation. We always want the start of .got.plt. If we
3030 defined _GLOBAL_OFFSET_TABLE_ in a different way, as is
3031 permitted by the ABI, we might have to change this
3033 relocation
-= htab
->elf
.sgotplt
->output_section
->vma
3034 + htab
->elf
.sgotplt
->output_offset
;
3037 case R_X86_64_GOTPC32
:
3038 case R_X86_64_GOTPC64
:
3039 /* Use global offset table as symbol value. */
3040 relocation
= htab
->elf
.sgotplt
->output_section
->vma
3041 + htab
->elf
.sgotplt
->output_offset
;
3042 unresolved_reloc
= FALSE
;
3045 case R_X86_64_PLTOFF64
:
3046 /* Relocation is PLT entry relative to GOT. For local
3047 symbols it's the symbol itself relative to GOT. */
3049 /* See PLT32 handling. */
3050 && h
->plt
.offset
!= (bfd_vma
) -1
3051 && htab
->elf
.splt
!= NULL
)
3053 relocation
= (htab
->elf
.splt
->output_section
->vma
3054 + htab
->elf
.splt
->output_offset
3056 unresolved_reloc
= FALSE
;
3059 relocation
-= htab
->elf
.sgotplt
->output_section
->vma
3060 + htab
->elf
.sgotplt
->output_offset
;
3063 case R_X86_64_PLT32
:
3064 /* Relocation is to the entry for this symbol in the
3065 procedure linkage table. */
3067 /* Resolve a PLT32 reloc against a local symbol directly,
3068 without using the procedure linkage table. */
3072 if (h
->plt
.offset
== (bfd_vma
) -1
3073 || htab
->elf
.splt
== NULL
)
3075 /* We didn't make a PLT entry for this symbol. This
3076 happens when statically linking PIC code, or when
3077 using -Bsymbolic. */
3081 relocation
= (htab
->elf
.splt
->output_section
->vma
3082 + htab
->elf
.splt
->output_offset
3084 unresolved_reloc
= FALSE
;
3091 && (input_section
->flags
& SEC_ALLOC
) != 0
3092 && (input_section
->flags
& SEC_READONLY
) != 0
3095 bfd_boolean fail
= FALSE
;
3097 = (r_type
== R_X86_64_PC32
3098 && is_32bit_relative_branch (contents
, rel
->r_offset
));
3100 if (SYMBOL_REFERENCES_LOCAL (info
, h
))
3102 /* Symbol is referenced locally. Make sure it is
3103 defined locally or for a branch. */
3104 fail
= !h
->def_regular
&& !branch
;
3108 /* Symbol isn't referenced locally. We only allow
3109 branch to symbol with non-default visibility. */
3111 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
);
3118 const char *pic
= "";
3120 switch (ELF_ST_VISIBILITY (h
->other
))
3123 v
= _("hidden symbol");
3126 v
= _("internal symbol");
3129 v
= _("protected symbol");
3133 pic
= _("; recompile with -fPIC");
3138 fmt
= _("%B: relocation %s against %s `%s' can not be used when making a shared object%s");
3140 fmt
= _("%B: relocation %s against undefined %s `%s' can not be used when making a shared object%s");
3142 (*_bfd_error_handler
) (fmt
, input_bfd
,
3143 x86_64_elf_howto_table
[r_type
].name
,
3144 v
, h
->root
.root
.string
, pic
);
3145 bfd_set_error (bfd_error_bad_value
);
3156 /* FIXME: The ABI says the linker should make sure the value is
3157 the same when it's zeroextended to 64 bit. */
3159 if ((input_section
->flags
& SEC_ALLOC
) == 0)
3164 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
3165 || h
->root
.type
!= bfd_link_hash_undefweak
)
3166 && (! IS_X86_64_PCREL_TYPE (r_type
)
3167 || ! SYMBOL_CALLS_LOCAL (info
, h
)))
3168 || (ELIMINATE_COPY_RELOCS
3175 || h
->root
.type
== bfd_link_hash_undefweak
3176 || h
->root
.type
== bfd_link_hash_undefined
)))
3178 Elf_Internal_Rela outrel
;
3179 bfd_boolean skip
, relocate
;
3182 /* When generating a shared object, these relocations
3183 are copied into the output file to be resolved at run
3189 _bfd_elf_section_offset (output_bfd
, info
, input_section
,
3191 if (outrel
.r_offset
== (bfd_vma
) -1)
3193 else if (outrel
.r_offset
== (bfd_vma
) -2)
3194 skip
= TRUE
, relocate
= TRUE
;
3196 outrel
.r_offset
+= (input_section
->output_section
->vma
3197 + input_section
->output_offset
);
3200 memset (&outrel
, 0, sizeof outrel
);
3202 /* h->dynindx may be -1 if this symbol was marked to
3206 && (IS_X86_64_PCREL_TYPE (r_type
)
3208 || ! SYMBOLIC_BIND (info
, h
)
3209 || ! h
->def_regular
))
3211 outrel
.r_info
= ELF64_R_INFO (h
->dynindx
, r_type
);
3212 outrel
.r_addend
= rel
->r_addend
;
3216 /* This symbol is local, or marked to become local. */
3217 if (r_type
== R_X86_64_64
)
3220 outrel
.r_info
= ELF64_R_INFO (0, R_X86_64_RELATIVE
);
3221 outrel
.r_addend
= relocation
+ rel
->r_addend
;
3227 if (bfd_is_abs_section (sec
))
3229 else if (sec
== NULL
|| sec
->owner
== NULL
)
3231 bfd_set_error (bfd_error_bad_value
);
3238 /* We are turning this relocation into one
3239 against a section symbol. It would be
3240 proper to subtract the symbol's value,
3241 osec->vma, from the emitted reloc addend,
3242 but ld.so expects buggy relocs. */
3243 osec
= sec
->output_section
;
3244 sindx
= elf_section_data (osec
)->dynindx
;
3247 asection
*oi
= htab
->elf
.text_index_section
;
3248 sindx
= elf_section_data (oi
)->dynindx
;
3250 BFD_ASSERT (sindx
!= 0);
3253 outrel
.r_info
= ELF64_R_INFO (sindx
, r_type
);
3254 outrel
.r_addend
= relocation
+ rel
->r_addend
;
3258 sreloc
= elf_section_data (input_section
)->sreloc
;
3260 BFD_ASSERT (sreloc
!= NULL
&& sreloc
->contents
!= NULL
);
3262 elf64_x86_64_append_rela (output_bfd
, sreloc
, &outrel
);
3264 /* If this reloc is against an external symbol, we do
3265 not want to fiddle with the addend. Otherwise, we
3266 need to include the symbol value so that it becomes
3267 an addend for the dynamic reloc. */
3274 case R_X86_64_TLSGD
:
3275 case R_X86_64_GOTPC32_TLSDESC
:
3276 case R_X86_64_TLSDESC_CALL
:
3277 case R_X86_64_GOTTPOFF
:
3278 tls_type
= GOT_UNKNOWN
;
3279 if (h
== NULL
&& local_got_offsets
)
3280 tls_type
= elf64_x86_64_local_got_tls_type (input_bfd
) [r_symndx
];
3282 tls_type
= elf64_x86_64_hash_entry (h
)->tls_type
;
3284 if (! elf64_x86_64_tls_transition (info
, input_bfd
,
3285 input_section
, contents
,
3286 symtab_hdr
, sym_hashes
,
3287 &r_type
, tls_type
, rel
,
3288 relend
, h
, r_symndx
))
3291 if (r_type
== R_X86_64_TPOFF32
)
3293 bfd_vma roff
= rel
->r_offset
;
3295 BFD_ASSERT (! unresolved_reloc
);
3297 if (ELF64_R_TYPE (rel
->r_info
) == R_X86_64_TLSGD
)
3299 /* GD->LE transition.
3300 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
3301 .word 0x6666; rex64; call __tls_get_addr
3304 leaq foo@tpoff(%rax), %rax */
3305 memcpy (contents
+ roff
- 4,
3306 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0",
3308 bfd_put_32 (output_bfd
,
3309 elf64_x86_64_tpoff (info
, relocation
),
3310 contents
+ roff
+ 8);
3311 /* Skip R_X86_64_PC32/R_X86_64_PLT32. */
3315 else if (ELF64_R_TYPE (rel
->r_info
) == R_X86_64_GOTPC32_TLSDESC
)
3317 /* GDesc -> LE transition.
3318 It's originally something like:
3319 leaq x@tlsdesc(%rip), %rax
3325 unsigned int val
, type
, type2
;
3327 type
= bfd_get_8 (input_bfd
, contents
+ roff
- 3);
3328 type2
= bfd_get_8 (input_bfd
, contents
+ roff
- 2);
3329 val
= bfd_get_8 (input_bfd
, contents
+ roff
- 1);
3330 bfd_put_8 (output_bfd
, 0x48 | ((type
>> 2) & 1),
3331 contents
+ roff
- 3);
3332 bfd_put_8 (output_bfd
, 0xc7, contents
+ roff
- 2);
3333 bfd_put_8 (output_bfd
, 0xc0 | ((val
>> 3) & 7),
3334 contents
+ roff
- 1);
3335 bfd_put_32 (output_bfd
,
3336 elf64_x86_64_tpoff (info
, relocation
),
3340 else if (ELF64_R_TYPE (rel
->r_info
) == R_X86_64_TLSDESC_CALL
)
3342 /* GDesc -> LE transition.
3347 bfd_put_8 (output_bfd
, 0x66, contents
+ roff
);
3348 bfd_put_8 (output_bfd
, 0x90, contents
+ roff
+ 1);
3351 else if (ELF64_R_TYPE (rel
->r_info
) == R_X86_64_GOTTPOFF
)
3353 /* IE->LE transition:
3354 Originally it can be one of:
3355 movq foo@gottpoff(%rip), %reg
3356 addq foo@gottpoff(%rip), %reg
3359 leaq foo(%reg), %reg
3362 unsigned int val
, type
, reg
;
3364 val
= bfd_get_8 (input_bfd
, contents
+ roff
- 3);
3365 type
= bfd_get_8 (input_bfd
, contents
+ roff
- 2);
3366 reg
= bfd_get_8 (input_bfd
, contents
+ roff
- 1);
3372 bfd_put_8 (output_bfd
, 0x49,
3373 contents
+ roff
- 3);
3374 bfd_put_8 (output_bfd
, 0xc7,
3375 contents
+ roff
- 2);
3376 bfd_put_8 (output_bfd
, 0xc0 | reg
,
3377 contents
+ roff
- 1);
3381 /* addq -> addq - addressing with %rsp/%r12 is
3384 bfd_put_8 (output_bfd
, 0x49,
3385 contents
+ roff
- 3);
3386 bfd_put_8 (output_bfd
, 0x81,
3387 contents
+ roff
- 2);
3388 bfd_put_8 (output_bfd
, 0xc0 | reg
,
3389 contents
+ roff
- 1);
3395 bfd_put_8 (output_bfd
, 0x4d,
3396 contents
+ roff
- 3);
3397 bfd_put_8 (output_bfd
, 0x8d,
3398 contents
+ roff
- 2);
3399 bfd_put_8 (output_bfd
, 0x80 | reg
| (reg
<< 3),
3400 contents
+ roff
- 1);
3402 bfd_put_32 (output_bfd
,
3403 elf64_x86_64_tpoff (info
, relocation
),
3411 if (htab
->elf
.sgot
== NULL
)
3416 off
= h
->got
.offset
;
3417 offplt
= elf64_x86_64_hash_entry (h
)->tlsdesc_got
;
3421 if (local_got_offsets
== NULL
)
3424 off
= local_got_offsets
[r_symndx
];
3425 offplt
= local_tlsdesc_gotents
[r_symndx
];
3432 Elf_Internal_Rela outrel
;
3436 if (htab
->elf
.srelgot
== NULL
)
3439 indx
= h
&& h
->dynindx
!= -1 ? h
->dynindx
: 0;
3441 if (GOT_TLS_GDESC_P (tls_type
))
3443 outrel
.r_info
= ELF64_R_INFO (indx
, R_X86_64_TLSDESC
);
3444 BFD_ASSERT (htab
->sgotplt_jump_table_size
+ offplt
3445 + 2 * GOT_ENTRY_SIZE
<= htab
->elf
.sgotplt
->size
);
3446 outrel
.r_offset
= (htab
->elf
.sgotplt
->output_section
->vma
3447 + htab
->elf
.sgotplt
->output_offset
3449 + htab
->sgotplt_jump_table_size
);
3450 sreloc
= htab
->elf
.srelplt
;
3452 outrel
.r_addend
= relocation
- elf64_x86_64_dtpoff_base (info
);
3454 outrel
.r_addend
= 0;
3455 elf64_x86_64_append_rela (output_bfd
, sreloc
, &outrel
);
3458 sreloc
= htab
->elf
.srelgot
;
3460 outrel
.r_offset
= (htab
->elf
.sgot
->output_section
->vma
3461 + htab
->elf
.sgot
->output_offset
+ off
);
3463 if (GOT_TLS_GD_P (tls_type
))
3464 dr_type
= R_X86_64_DTPMOD64
;
3465 else if (GOT_TLS_GDESC_P (tls_type
))
3468 dr_type
= R_X86_64_TPOFF64
;
3470 bfd_put_64 (output_bfd
, 0, htab
->elf
.sgot
->contents
+ off
);
3471 outrel
.r_addend
= 0;
3472 if ((dr_type
== R_X86_64_TPOFF64
3473 || dr_type
== R_X86_64_TLSDESC
) && indx
== 0)
3474 outrel
.r_addend
= relocation
- elf64_x86_64_dtpoff_base (info
);
3475 outrel
.r_info
= ELF64_R_INFO (indx
, dr_type
);
3477 elf64_x86_64_append_rela (output_bfd
, sreloc
, &outrel
);
3479 if (GOT_TLS_GD_P (tls_type
))
3483 BFD_ASSERT (! unresolved_reloc
);
3484 bfd_put_64 (output_bfd
,
3485 relocation
- elf64_x86_64_dtpoff_base (info
),
3486 htab
->elf
.sgot
->contents
+ off
+ GOT_ENTRY_SIZE
);
3490 bfd_put_64 (output_bfd
, 0,
3491 htab
->elf
.sgot
->contents
+ off
+ GOT_ENTRY_SIZE
);
3492 outrel
.r_info
= ELF64_R_INFO (indx
,
3494 outrel
.r_offset
+= GOT_ENTRY_SIZE
;
3495 elf64_x86_64_append_rela (output_bfd
, sreloc
,
3504 local_got_offsets
[r_symndx
] |= 1;
3507 if (off
>= (bfd_vma
) -2
3508 && ! GOT_TLS_GDESC_P (tls_type
))
3510 if (r_type
== ELF64_R_TYPE (rel
->r_info
))
3512 if (r_type
== R_X86_64_GOTPC32_TLSDESC
3513 || r_type
== R_X86_64_TLSDESC_CALL
)
3514 relocation
= htab
->elf
.sgotplt
->output_section
->vma
3515 + htab
->elf
.sgotplt
->output_offset
3516 + offplt
+ htab
->sgotplt_jump_table_size
;
3518 relocation
= htab
->elf
.sgot
->output_section
->vma
3519 + htab
->elf
.sgot
->output_offset
+ off
;
3520 unresolved_reloc
= FALSE
;
3524 bfd_vma roff
= rel
->r_offset
;
3526 if (ELF64_R_TYPE (rel
->r_info
) == R_X86_64_TLSGD
)
3528 /* GD->IE transition.
3529 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
3530 .word 0x6666; rex64; call __tls_get_addr@plt
3533 addq foo@gottpoff(%rip), %rax */
3534 memcpy (contents
+ roff
- 4,
3535 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0",
3538 relocation
= (htab
->elf
.sgot
->output_section
->vma
3539 + htab
->elf
.sgot
->output_offset
+ off
3541 - input_section
->output_section
->vma
3542 - input_section
->output_offset
3544 bfd_put_32 (output_bfd
, relocation
,
3545 contents
+ roff
+ 8);
3546 /* Skip R_X86_64_PLT32. */
3550 else if (ELF64_R_TYPE (rel
->r_info
) == R_X86_64_GOTPC32_TLSDESC
)
3552 /* GDesc -> IE transition.
3553 It's originally something like:
3554 leaq x@tlsdesc(%rip), %rax
3557 movq x@gottpoff(%rip), %rax # before xchg %ax,%ax
3560 unsigned int val
, type
, type2
;
3562 type
= bfd_get_8 (input_bfd
, contents
+ roff
- 3);
3563 type2
= bfd_get_8 (input_bfd
, contents
+ roff
- 2);
3564 val
= bfd_get_8 (input_bfd
, contents
+ roff
- 1);
3566 /* Now modify the instruction as appropriate. To
3567 turn a leaq into a movq in the form we use it, it
3568 suffices to change the second byte from 0x8d to
3570 bfd_put_8 (output_bfd
, 0x8b, contents
+ roff
- 2);
3572 bfd_put_32 (output_bfd
,
3573 htab
->elf
.sgot
->output_section
->vma
3574 + htab
->elf
.sgot
->output_offset
+ off
3576 - input_section
->output_section
->vma
3577 - input_section
->output_offset
3582 else if (ELF64_R_TYPE (rel
->r_info
) == R_X86_64_TLSDESC_CALL
)
3584 /* GDesc -> IE transition.
3591 unsigned int val
, type
;
3593 type
= bfd_get_8 (input_bfd
, contents
+ roff
);
3594 val
= bfd_get_8 (input_bfd
, contents
+ roff
+ 1);
3595 bfd_put_8 (output_bfd
, 0x66, contents
+ roff
);
3596 bfd_put_8 (output_bfd
, 0x90, contents
+ roff
+ 1);
3604 case R_X86_64_TLSLD
:
3605 if (! elf64_x86_64_tls_transition (info
, input_bfd
,
3606 input_section
, contents
,
3607 symtab_hdr
, sym_hashes
,
3608 &r_type
, GOT_UNKNOWN
,
3609 rel
, relend
, h
, r_symndx
))
3612 if (r_type
!= R_X86_64_TLSLD
)
3614 /* LD->LE transition:
3615 leaq foo@tlsld(%rip), %rdi; call __tls_get_addr.
3617 .word 0x6666; .byte 0x66; movl %fs:0, %rax. */
3619 BFD_ASSERT (r_type
== R_X86_64_TPOFF32
);
3620 memcpy (contents
+ rel
->r_offset
- 3,
3621 "\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0", 12);
3622 /* Skip R_X86_64_PC32/R_X86_64_PLT32. */
3627 if (htab
->elf
.sgot
== NULL
)
3630 off
= htab
->tls_ld_got
.offset
;
3635 Elf_Internal_Rela outrel
;
3637 if (htab
->elf
.srelgot
== NULL
)
3640 outrel
.r_offset
= (htab
->elf
.sgot
->output_section
->vma
3641 + htab
->elf
.sgot
->output_offset
+ off
);
3643 bfd_put_64 (output_bfd
, 0,
3644 htab
->elf
.sgot
->contents
+ off
);
3645 bfd_put_64 (output_bfd
, 0,
3646 htab
->elf
.sgot
->contents
+ off
+ GOT_ENTRY_SIZE
);
3647 outrel
.r_info
= ELF64_R_INFO (0, R_X86_64_DTPMOD64
);
3648 outrel
.r_addend
= 0;
3649 elf64_x86_64_append_rela (output_bfd
, htab
->elf
.srelgot
,
3651 htab
->tls_ld_got
.offset
|= 1;
3653 relocation
= htab
->elf
.sgot
->output_section
->vma
3654 + htab
->elf
.sgot
->output_offset
+ off
;
3655 unresolved_reloc
= FALSE
;
3658 case R_X86_64_DTPOFF32
:
3659 if (!info
->executable
|| (input_section
->flags
& SEC_CODE
) == 0)
3660 relocation
-= elf64_x86_64_dtpoff_base (info
);
3662 relocation
= elf64_x86_64_tpoff (info
, relocation
);
3665 case R_X86_64_TPOFF32
:
3666 BFD_ASSERT (info
->executable
);
3667 relocation
= elf64_x86_64_tpoff (info
, relocation
);
3674 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
3675 because such sections are not SEC_ALLOC and thus ld.so will
3676 not process them. */
3677 if (unresolved_reloc
3678 && !((input_section
->flags
& SEC_DEBUGGING
) != 0
3680 (*_bfd_error_handler
)
3681 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
3684 (long) rel
->r_offset
,
3686 h
->root
.root
.string
);
3689 r
= _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
3690 contents
, rel
->r_offset
,
3691 relocation
, rel
->r_addend
);
3693 if (r
!= bfd_reloc_ok
)
3698 name
= h
->root
.root
.string
;
3701 name
= bfd_elf_string_from_elf_section (input_bfd
,
3702 symtab_hdr
->sh_link
,
3707 name
= bfd_section_name (input_bfd
, sec
);
3710 if (r
== bfd_reloc_overflow
)
3712 if (! ((*info
->callbacks
->reloc_overflow
)
3713 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
3714 (bfd_vma
) 0, input_bfd
, input_section
,
3720 (*_bfd_error_handler
)
3721 (_("%B(%A+0x%lx): reloc against `%s': error %d"),
3722 input_bfd
, input_section
,
3723 (long) rel
->r_offset
, name
, (int) r
);
3732 /* Finish up dynamic symbol handling. We set the contents of various
3733 dynamic sections here. */
3736 elf64_x86_64_finish_dynamic_symbol (bfd
*output_bfd
,
3737 struct bfd_link_info
*info
,
3738 struct elf_link_hash_entry
*h
,
3739 Elf_Internal_Sym
*sym
)
3741 struct elf64_x86_64_link_hash_table
*htab
;
3743 htab
= elf64_x86_64_hash_table (info
);
3747 if (h
->plt
.offset
!= (bfd_vma
) -1)
3751 Elf_Internal_Rela rela
;
3753 asection
*plt
, *gotplt
, *relplt
;
3755 /* When building a static executable, use .iplt, .igot.plt and
3756 .rela.iplt sections for STT_GNU_IFUNC symbols. */
3757 if (htab
->elf
.splt
!= NULL
)
3759 plt
= htab
->elf
.splt
;
3760 gotplt
= htab
->elf
.sgotplt
;
3761 relplt
= htab
->elf
.srelplt
;
3765 plt
= htab
->elf
.iplt
;
3766 gotplt
= htab
->elf
.igotplt
;
3767 relplt
= htab
->elf
.irelplt
;
3770 /* This symbol has an entry in the procedure linkage table. Set
3772 if ((h
->dynindx
== -1
3773 && !((h
->forced_local
|| info
->executable
)
3775 && h
->type
== STT_GNU_IFUNC
))
3781 /* Get the index in the procedure linkage table which
3782 corresponds to this symbol. This is the index of this symbol
3783 in all the symbols for which we are making plt entries. The
3784 first entry in the procedure linkage table is reserved.
3786 Get the offset into the .got table of the entry that
3787 corresponds to this function. Each .got entry is GOT_ENTRY_SIZE
3788 bytes. The first three are reserved for the dynamic linker.
3790 For static executables, we don't reserve anything. */
3792 if (plt
== htab
->elf
.splt
)
3794 plt_index
= h
->plt
.offset
/ PLT_ENTRY_SIZE
- 1;
3795 got_offset
= (plt_index
+ 3) * GOT_ENTRY_SIZE
;
3799 plt_index
= h
->plt
.offset
/ PLT_ENTRY_SIZE
;
3800 got_offset
= plt_index
* GOT_ENTRY_SIZE
;
3803 /* Fill in the entry in the procedure linkage table. */
3804 memcpy (plt
->contents
+ h
->plt
.offset
, elf64_x86_64_plt_entry
,
3807 /* Insert the relocation positions of the plt section. The magic
3808 numbers at the end of the statements are the positions of the
3809 relocations in the plt section. */
3810 /* Put offset for jmp *name@GOTPCREL(%rip), since the
3811 instruction uses 6 bytes, subtract this value. */
3812 bfd_put_32 (output_bfd
,
3813 (gotplt
->output_section
->vma
3814 + gotplt
->output_offset
3816 - plt
->output_section
->vma
3817 - plt
->output_offset
3820 plt
->contents
+ h
->plt
.offset
+ 2);
3822 /* Don't fill PLT entry for static executables. */
3823 if (plt
== htab
->elf
.splt
)
3825 /* Put relocation index. */
3826 bfd_put_32 (output_bfd
, plt_index
,
3827 plt
->contents
+ h
->plt
.offset
+ 7);
3828 /* Put offset for jmp .PLT0. */
3829 bfd_put_32 (output_bfd
, - (h
->plt
.offset
+ PLT_ENTRY_SIZE
),
3830 plt
->contents
+ h
->plt
.offset
+ 12);
3833 /* Fill in the entry in the global offset table, initially this
3834 points to the pushq instruction in the PLT which is at offset 6. */
3835 bfd_put_64 (output_bfd
, (plt
->output_section
->vma
3836 + plt
->output_offset
3837 + h
->plt
.offset
+ 6),
3838 gotplt
->contents
+ got_offset
);
3840 /* Fill in the entry in the .rela.plt section. */
3841 rela
.r_offset
= (gotplt
->output_section
->vma
3842 + gotplt
->output_offset
3844 if (h
->dynindx
== -1
3845 || ((info
->executable
3846 || ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
)
3848 && h
->type
== STT_GNU_IFUNC
))
3850 /* If an STT_GNU_IFUNC symbol is locally defined, generate
3851 R_X86_64_IRELATIVE instead of R_X86_64_JUMP_SLOT. */
3852 rela
.r_info
= ELF64_R_INFO (0, R_X86_64_IRELATIVE
);
3853 rela
.r_addend
= (h
->root
.u
.def
.value
3854 + h
->root
.u
.def
.section
->output_section
->vma
3855 + h
->root
.u
.def
.section
->output_offset
);
3859 rela
.r_info
= ELF64_R_INFO (h
->dynindx
, R_X86_64_JUMP_SLOT
);
3862 loc
= relplt
->contents
+ plt_index
* sizeof (Elf64_External_Rela
);
3863 bfd_elf64_swap_reloca_out (output_bfd
, &rela
, loc
);
3865 if (!h
->def_regular
)
3867 /* Mark the symbol as undefined, rather than as defined in
3868 the .plt section. Leave the value if there were any
3869 relocations where pointer equality matters (this is a clue
3870 for the dynamic linker, to make function pointer
3871 comparisons work between an application and shared
3872 library), otherwise set it to zero. If a function is only
3873 called from a binary, there is no need to slow down
3874 shared libraries because of that. */
3875 sym
->st_shndx
= SHN_UNDEF
;
3876 if (!h
->pointer_equality_needed
)
3881 if (h
->got
.offset
!= (bfd_vma
) -1
3882 && ! GOT_TLS_GD_ANY_P (elf64_x86_64_hash_entry (h
)->tls_type
)
3883 && elf64_x86_64_hash_entry (h
)->tls_type
!= GOT_TLS_IE
)
3885 Elf_Internal_Rela rela
;
3887 /* This symbol has an entry in the global offset table. Set it
3889 if (htab
->elf
.sgot
== NULL
|| htab
->elf
.srelgot
== NULL
)
3892 rela
.r_offset
= (htab
->elf
.sgot
->output_section
->vma
3893 + htab
->elf
.sgot
->output_offset
3894 + (h
->got
.offset
&~ (bfd_vma
) 1));
3896 /* If this is a static link, or it is a -Bsymbolic link and the
3897 symbol is defined locally or was forced to be local because
3898 of a version file, we just want to emit a RELATIVE reloc.
3899 The entry in the global offset table will already have been
3900 initialized in the relocate_section function. */
3902 && h
->type
== STT_GNU_IFUNC
)
3906 /* Generate R_X86_64_GLOB_DAT. */
3913 if (!h
->pointer_equality_needed
)
3916 /* For non-shared object, we can't use .got.plt, which
3917 contains the real function addres if we need pointer
3918 equality. We load the GOT entry with the PLT entry. */
3919 plt
= htab
->elf
.splt
? htab
->elf
.splt
: htab
->elf
.iplt
;
3920 bfd_put_64 (output_bfd
, (plt
->output_section
->vma
3921 + plt
->output_offset
3923 htab
->elf
.sgot
->contents
+ h
->got
.offset
);
3927 else if (info
->shared
3928 && SYMBOL_REFERENCES_LOCAL (info
, h
))
3930 if (!h
->def_regular
)
3932 BFD_ASSERT((h
->got
.offset
& 1) != 0);
3933 rela
.r_info
= ELF64_R_INFO (0, R_X86_64_RELATIVE
);
3934 rela
.r_addend
= (h
->root
.u
.def
.value
3935 + h
->root
.u
.def
.section
->output_section
->vma
3936 + h
->root
.u
.def
.section
->output_offset
);
3940 BFD_ASSERT((h
->got
.offset
& 1) == 0);
3942 bfd_put_64 (output_bfd
, (bfd_vma
) 0,
3943 htab
->elf
.sgot
->contents
+ h
->got
.offset
);
3944 rela
.r_info
= ELF64_R_INFO (h
->dynindx
, R_X86_64_GLOB_DAT
);
3948 elf64_x86_64_append_rela (output_bfd
, htab
->elf
.srelgot
, &rela
);
3953 Elf_Internal_Rela rela
;
3955 /* This symbol needs a copy reloc. Set it up. */
3957 if (h
->dynindx
== -1
3958 || (h
->root
.type
!= bfd_link_hash_defined
3959 && h
->root
.type
!= bfd_link_hash_defweak
)
3960 || htab
->srelbss
== NULL
)
3963 rela
.r_offset
= (h
->root
.u
.def
.value
3964 + h
->root
.u
.def
.section
->output_section
->vma
3965 + h
->root
.u
.def
.section
->output_offset
);
3966 rela
.r_info
= ELF64_R_INFO (h
->dynindx
, R_X86_64_COPY
);
3968 elf64_x86_64_append_rela (output_bfd
, htab
->srelbss
, &rela
);
3971 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. SYM may
3972 be NULL for local symbols. */
3974 && (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
3975 || h
== htab
->elf
.hgot
))
3976 sym
->st_shndx
= SHN_ABS
;
3981 /* Finish up local dynamic symbol handling. We set the contents of
3982 various dynamic sections here. */
3985 elf64_x86_64_finish_local_dynamic_symbol (void **slot
, void *inf
)
3987 struct elf_link_hash_entry
*h
3988 = (struct elf_link_hash_entry
*) *slot
;
3989 struct bfd_link_info
*info
3990 = (struct bfd_link_info
*) inf
;
3992 return elf64_x86_64_finish_dynamic_symbol (info
->output_bfd
,
3996 /* Used to decide how to sort relocs in an optimal manner for the
3997 dynamic linker, before writing them out. */
3999 static enum elf_reloc_type_class
4000 elf64_x86_64_reloc_type_class (const Elf_Internal_Rela
*rela
)
4002 switch ((int) ELF64_R_TYPE (rela
->r_info
))
4004 case R_X86_64_RELATIVE
:
4005 return reloc_class_relative
;
4006 case R_X86_64_JUMP_SLOT
:
4007 return reloc_class_plt
;
4009 return reloc_class_copy
;
4011 return reloc_class_normal
;
4015 /* Finish up the dynamic sections. */
4018 elf64_x86_64_finish_dynamic_sections (bfd
*output_bfd
, struct bfd_link_info
*info
)
4020 struct elf64_x86_64_link_hash_table
*htab
;
4024 htab
= elf64_x86_64_hash_table (info
);
4028 dynobj
= htab
->elf
.dynobj
;
4029 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
4031 if (htab
->elf
.dynamic_sections_created
)
4033 Elf64_External_Dyn
*dyncon
, *dynconend
;
4035 if (sdyn
== NULL
|| htab
->elf
.sgot
== NULL
)
4038 dyncon
= (Elf64_External_Dyn
*) sdyn
->contents
;
4039 dynconend
= (Elf64_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
4040 for (; dyncon
< dynconend
; dyncon
++)
4042 Elf_Internal_Dyn dyn
;
4045 bfd_elf64_swap_dyn_in (dynobj
, dyncon
, &dyn
);
4053 s
= htab
->elf
.sgotplt
;
4054 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
4058 dyn
.d_un
.d_ptr
= htab
->elf
.srelplt
->output_section
->vma
;
4062 s
= htab
->elf
.srelplt
->output_section
;
4063 dyn
.d_un
.d_val
= s
->size
;
4067 /* The procedure linkage table relocs (DT_JMPREL) should
4068 not be included in the overall relocs (DT_RELA).
4069 Therefore, we override the DT_RELASZ entry here to
4070 make it not include the JMPREL relocs. Since the
4071 linker script arranges for .rela.plt to follow all
4072 other relocation sections, we don't have to worry
4073 about changing the DT_RELA entry. */
4074 if (htab
->elf
.srelplt
!= NULL
)
4076 s
= htab
->elf
.srelplt
->output_section
;
4077 dyn
.d_un
.d_val
-= s
->size
;
4081 case DT_TLSDESC_PLT
:
4083 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
4084 + htab
->tlsdesc_plt
;
4087 case DT_TLSDESC_GOT
:
4089 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
4090 + htab
->tlsdesc_got
;
4094 bfd_elf64_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
4097 /* Fill in the special first entry in the procedure linkage table. */
4098 if (htab
->elf
.splt
&& htab
->elf
.splt
->size
> 0)
4100 /* Fill in the first entry in the procedure linkage table. */
4101 memcpy (htab
->elf
.splt
->contents
, elf64_x86_64_plt0_entry
,
4103 /* Add offset for pushq GOT+8(%rip), since the instruction
4104 uses 6 bytes subtract this value. */
4105 bfd_put_32 (output_bfd
,
4106 (htab
->elf
.sgotplt
->output_section
->vma
4107 + htab
->elf
.sgotplt
->output_offset
4109 - htab
->elf
.splt
->output_section
->vma
4110 - htab
->elf
.splt
->output_offset
4112 htab
->elf
.splt
->contents
+ 2);
4113 /* Add offset for jmp *GOT+16(%rip). The 12 is the offset to
4114 the end of the instruction. */
4115 bfd_put_32 (output_bfd
,
4116 (htab
->elf
.sgotplt
->output_section
->vma
4117 + htab
->elf
.sgotplt
->output_offset
4119 - htab
->elf
.splt
->output_section
->vma
4120 - htab
->elf
.splt
->output_offset
4122 htab
->elf
.splt
->contents
+ 8);
4124 elf_section_data (htab
->elf
.splt
->output_section
)->this_hdr
.sh_entsize
=
4127 if (htab
->tlsdesc_plt
)
4129 bfd_put_64 (output_bfd
, (bfd_vma
) 0,
4130 htab
->elf
.sgot
->contents
+ htab
->tlsdesc_got
);
4132 memcpy (htab
->elf
.splt
->contents
+ htab
->tlsdesc_plt
,
4133 elf64_x86_64_plt0_entry
,
4136 /* Add offset for pushq GOT+8(%rip), since the
4137 instruction uses 6 bytes subtract this value. */
4138 bfd_put_32 (output_bfd
,
4139 (htab
->elf
.sgotplt
->output_section
->vma
4140 + htab
->elf
.sgotplt
->output_offset
4142 - htab
->elf
.splt
->output_section
->vma
4143 - htab
->elf
.splt
->output_offset
4146 htab
->elf
.splt
->contents
+ htab
->tlsdesc_plt
+ 2);
4147 /* Add offset for jmp *GOT+TDG(%rip), where TGD stands for
4148 htab->tlsdesc_got. The 12 is the offset to the end of
4150 bfd_put_32 (output_bfd
,
4151 (htab
->elf
.sgot
->output_section
->vma
4152 + htab
->elf
.sgot
->output_offset
4154 - htab
->elf
.splt
->output_section
->vma
4155 - htab
->elf
.splt
->output_offset
4158 htab
->elf
.splt
->contents
+ htab
->tlsdesc_plt
+ 8);
4163 if (htab
->elf
.sgotplt
)
4165 /* Fill in the first three entries in the global offset table. */
4166 if (htab
->elf
.sgotplt
->size
> 0)
4168 /* Set the first entry in the global offset table to the address of
4169 the dynamic section. */
4171 bfd_put_64 (output_bfd
, (bfd_vma
) 0, htab
->elf
.sgotplt
->contents
);
4173 bfd_put_64 (output_bfd
,
4174 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
4175 htab
->elf
.sgotplt
->contents
);
4176 /* Write GOT[1] and GOT[2], needed for the dynamic linker. */
4177 bfd_put_64 (output_bfd
, (bfd_vma
) 0, htab
->elf
.sgotplt
->contents
+ GOT_ENTRY_SIZE
);
4178 bfd_put_64 (output_bfd
, (bfd_vma
) 0, htab
->elf
.sgotplt
->contents
+ GOT_ENTRY_SIZE
*2);
4181 elf_section_data (htab
->elf
.sgotplt
->output_section
)->this_hdr
.sh_entsize
=
4185 if (htab
->elf
.sgot
&& htab
->elf
.sgot
->size
> 0)
4186 elf_section_data (htab
->elf
.sgot
->output_section
)->this_hdr
.sh_entsize
4189 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
4190 htab_traverse (htab
->loc_hash_table
,
4191 elf64_x86_64_finish_local_dynamic_symbol
,
4197 /* Return address for Ith PLT stub in section PLT, for relocation REL
4198 or (bfd_vma) -1 if it should not be included. */
4201 elf64_x86_64_plt_sym_val (bfd_vma i
, const asection
*plt
,
4202 const arelent
*rel ATTRIBUTE_UNUSED
)
4204 return plt
->vma
+ (i
+ 1) * PLT_ENTRY_SIZE
;
4207 /* Handle an x86-64 specific section when reading an object file. This
4208 is called when elfcode.h finds a section with an unknown type. */
4211 elf64_x86_64_section_from_shdr (bfd
*abfd
,
4212 Elf_Internal_Shdr
*hdr
,
4216 if (hdr
->sh_type
!= SHT_X86_64_UNWIND
)
4219 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
4225 /* Hook called by the linker routine which adds symbols from an object
4226 file. We use it to put SHN_X86_64_LCOMMON items in .lbss, instead
4230 elf64_x86_64_add_symbol_hook (bfd
*abfd
,
4231 struct bfd_link_info
*info
,
4232 Elf_Internal_Sym
*sym
,
4233 const char **namep ATTRIBUTE_UNUSED
,
4234 flagword
*flagsp ATTRIBUTE_UNUSED
,
4240 switch (sym
->st_shndx
)
4242 case SHN_X86_64_LCOMMON
:
4243 lcomm
= bfd_get_section_by_name (abfd
, "LARGE_COMMON");
4246 lcomm
= bfd_make_section_with_flags (abfd
,
4250 | SEC_LINKER_CREATED
));
4253 elf_section_flags (lcomm
) |= SHF_X86_64_LARGE
;
4256 *valp
= sym
->st_size
;
4260 if ((abfd
->flags
& DYNAMIC
) == 0
4261 && ELF_ST_TYPE (sym
->st_info
) == STT_GNU_IFUNC
)
4262 elf_tdata (info
->output_bfd
)->has_ifunc_symbols
= TRUE
;
4268 /* Given a BFD section, try to locate the corresponding ELF section
4272 elf64_x86_64_elf_section_from_bfd_section (bfd
*abfd ATTRIBUTE_UNUSED
,
4273 asection
*sec
, int *index_return
)
4275 if (sec
== &_bfd_elf_large_com_section
)
4277 *index_return
= SHN_X86_64_LCOMMON
;
4283 /* Process a symbol. */
4286 elf64_x86_64_symbol_processing (bfd
*abfd ATTRIBUTE_UNUSED
,
4289 elf_symbol_type
*elfsym
= (elf_symbol_type
*) asym
;
4291 switch (elfsym
->internal_elf_sym
.st_shndx
)
4293 case SHN_X86_64_LCOMMON
:
4294 asym
->section
= &_bfd_elf_large_com_section
;
4295 asym
->value
= elfsym
->internal_elf_sym
.st_size
;
4296 /* Common symbol doesn't set BSF_GLOBAL. */
4297 asym
->flags
&= ~BSF_GLOBAL
;
4303 elf64_x86_64_common_definition (Elf_Internal_Sym
*sym
)
4305 return (sym
->st_shndx
== SHN_COMMON
4306 || sym
->st_shndx
== SHN_X86_64_LCOMMON
);
4310 elf64_x86_64_common_section_index (asection
*sec
)
4312 if ((elf_section_flags (sec
) & SHF_X86_64_LARGE
) == 0)
4315 return SHN_X86_64_LCOMMON
;
4319 elf64_x86_64_common_section (asection
*sec
)
4321 if ((elf_section_flags (sec
) & SHF_X86_64_LARGE
) == 0)
4322 return bfd_com_section_ptr
;
4324 return &_bfd_elf_large_com_section
;
4328 elf64_x86_64_merge_symbol (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
4329 struct elf_link_hash_entry
**sym_hash ATTRIBUTE_UNUSED
,
4330 struct elf_link_hash_entry
*h
,
4331 Elf_Internal_Sym
*sym
,
4333 bfd_vma
*pvalue ATTRIBUTE_UNUSED
,
4334 unsigned int *pold_alignment ATTRIBUTE_UNUSED
,
4335 bfd_boolean
*skip ATTRIBUTE_UNUSED
,
4336 bfd_boolean
*override ATTRIBUTE_UNUSED
,
4337 bfd_boolean
*type_change_ok ATTRIBUTE_UNUSED
,
4338 bfd_boolean
*size_change_ok ATTRIBUTE_UNUSED
,
4339 bfd_boolean
*newdef ATTRIBUTE_UNUSED
,
4340 bfd_boolean
*newdyn
,
4341 bfd_boolean
*newdyncommon ATTRIBUTE_UNUSED
,
4342 bfd_boolean
*newweak ATTRIBUTE_UNUSED
,
4343 bfd
*abfd ATTRIBUTE_UNUSED
,
4345 bfd_boolean
*olddef ATTRIBUTE_UNUSED
,
4346 bfd_boolean
*olddyn
,
4347 bfd_boolean
*olddyncommon ATTRIBUTE_UNUSED
,
4348 bfd_boolean
*oldweak ATTRIBUTE_UNUSED
,
4352 /* A normal common symbol and a large common symbol result in a
4353 normal common symbol. We turn the large common symbol into a
4356 && h
->root
.type
== bfd_link_hash_common
4358 && bfd_is_com_section (*sec
)
4361 if (sym
->st_shndx
== SHN_COMMON
4362 && (elf_section_flags (*oldsec
) & SHF_X86_64_LARGE
) != 0)
4364 h
->root
.u
.c
.p
->section
4365 = bfd_make_section_old_way (oldbfd
, "COMMON");
4366 h
->root
.u
.c
.p
->section
->flags
= SEC_ALLOC
;
4368 else if (sym
->st_shndx
== SHN_X86_64_LCOMMON
4369 && (elf_section_flags (*oldsec
) & SHF_X86_64_LARGE
) == 0)
4370 *psec
= *sec
= bfd_com_section_ptr
;
4377 elf64_x86_64_additional_program_headers (bfd
*abfd
,
4378 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
4383 /* Check to see if we need a large readonly segment. */
4384 s
= bfd_get_section_by_name (abfd
, ".lrodata");
4385 if (s
&& (s
->flags
& SEC_LOAD
))
4388 /* Check to see if we need a large data segment. Since .lbss sections
4389 is placed right after the .bss section, there should be no need for
4390 a large data segment just because of .lbss. */
4391 s
= bfd_get_section_by_name (abfd
, ".ldata");
4392 if (s
&& (s
->flags
& SEC_LOAD
))
4398 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
4401 elf64_x86_64_hash_symbol (struct elf_link_hash_entry
*h
)
4403 if (h
->plt
.offset
!= (bfd_vma
) -1
4405 && !h
->pointer_equality_needed
)
4408 return _bfd_elf_hash_symbol (h
);
4411 static const struct bfd_elf_special_section
4412 elf64_x86_64_special_sections
[]=
4414 { STRING_COMMA_LEN (".gnu.linkonce.lb"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_X86_64_LARGE
},
4415 { STRING_COMMA_LEN (".gnu.linkonce.lr"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_X86_64_LARGE
},
4416 { STRING_COMMA_LEN (".gnu.linkonce.lt"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
+ SHF_X86_64_LARGE
},
4417 { STRING_COMMA_LEN (".lbss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_X86_64_LARGE
},
4418 { STRING_COMMA_LEN (".ldata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_X86_64_LARGE
},
4419 { STRING_COMMA_LEN (".lrodata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_X86_64_LARGE
},
4420 { NULL
, 0, 0, 0, 0 }
4423 #define TARGET_LITTLE_SYM bfd_elf64_x86_64_vec
4424 #define TARGET_LITTLE_NAME "elf64-x86-64"
4425 #define ELF_ARCH bfd_arch_i386
4426 #define ELF_MACHINE_CODE EM_X86_64
4427 #define ELF_MAXPAGESIZE 0x200000
4428 #define ELF_MINPAGESIZE 0x1000
4429 #define ELF_COMMONPAGESIZE 0x1000
4431 #define elf_backend_can_gc_sections 1
4432 #define elf_backend_can_refcount 1
4433 #define elf_backend_want_got_plt 1
4434 #define elf_backend_plt_readonly 1
4435 #define elf_backend_want_plt_sym 0
4436 #define elf_backend_got_header_size (GOT_ENTRY_SIZE*3)
4437 #define elf_backend_rela_normal 1
4439 #define elf_info_to_howto elf64_x86_64_info_to_howto
4441 #define bfd_elf64_bfd_link_hash_table_create \
4442 elf64_x86_64_link_hash_table_create
4443 #define bfd_elf64_bfd_link_hash_table_free \
4444 elf64_x86_64_link_hash_table_free
4445 #define bfd_elf64_bfd_reloc_type_lookup elf64_x86_64_reloc_type_lookup
4446 #define bfd_elf64_bfd_reloc_name_lookup \
4447 elf64_x86_64_reloc_name_lookup
4449 #define elf_backend_adjust_dynamic_symbol elf64_x86_64_adjust_dynamic_symbol
4450 #define elf_backend_relocs_compatible _bfd_elf_relocs_compatible
4451 #define elf_backend_check_relocs elf64_x86_64_check_relocs
4452 #define elf_backend_copy_indirect_symbol elf64_x86_64_copy_indirect_symbol
4453 #define elf_backend_create_dynamic_sections elf64_x86_64_create_dynamic_sections
4454 #define elf_backend_finish_dynamic_sections elf64_x86_64_finish_dynamic_sections
4455 #define elf_backend_finish_dynamic_symbol elf64_x86_64_finish_dynamic_symbol
4456 #define elf_backend_gc_mark_hook elf64_x86_64_gc_mark_hook
4457 #define elf_backend_gc_sweep_hook elf64_x86_64_gc_sweep_hook
4458 #define elf_backend_grok_prstatus elf64_x86_64_grok_prstatus
4459 #define elf_backend_grok_psinfo elf64_x86_64_grok_psinfo
4460 #define elf_backend_reloc_type_class elf64_x86_64_reloc_type_class
4461 #define elf_backend_relocate_section elf64_x86_64_relocate_section
4462 #define elf_backend_size_dynamic_sections elf64_x86_64_size_dynamic_sections
4463 #define elf_backend_always_size_sections elf64_x86_64_always_size_sections
4464 #define elf_backend_init_index_section _bfd_elf_init_1_index_section
4465 #define elf_backend_plt_sym_val elf64_x86_64_plt_sym_val
4466 #define elf_backend_object_p elf64_x86_64_elf_object_p
4467 #define bfd_elf64_mkobject elf64_x86_64_mkobject
4469 #define elf_backend_section_from_shdr \
4470 elf64_x86_64_section_from_shdr
4472 #define elf_backend_section_from_bfd_section \
4473 elf64_x86_64_elf_section_from_bfd_section
4474 #define elf_backend_add_symbol_hook \
4475 elf64_x86_64_add_symbol_hook
4476 #define elf_backend_symbol_processing \
4477 elf64_x86_64_symbol_processing
4478 #define elf_backend_common_section_index \
4479 elf64_x86_64_common_section_index
4480 #define elf_backend_common_section \
4481 elf64_x86_64_common_section
4482 #define elf_backend_common_definition \
4483 elf64_x86_64_common_definition
4484 #define elf_backend_merge_symbol \
4485 elf64_x86_64_merge_symbol
4486 #define elf_backend_special_sections \
4487 elf64_x86_64_special_sections
4488 #define elf_backend_additional_program_headers \
4489 elf64_x86_64_additional_program_headers
4490 #define elf_backend_hash_symbol \
4491 elf64_x86_64_hash_symbol
4493 #undef elf_backend_post_process_headers
4494 #define elf_backend_post_process_headers _bfd_elf_set_osabi
4496 #include "elf64-target.h"
4498 /* FreeBSD support. */
4500 #undef TARGET_LITTLE_SYM
4501 #define TARGET_LITTLE_SYM bfd_elf64_x86_64_freebsd_vec
4502 #undef TARGET_LITTLE_NAME
4503 #define TARGET_LITTLE_NAME "elf64-x86-64-freebsd"
4506 #define ELF_OSABI ELFOSABI_FREEBSD
4509 #define elf64_bed elf64_x86_64_fbsd_bed
4511 #include "elf64-target.h"
4513 /* Solaris 2 support. */
4515 #undef TARGET_LITTLE_SYM
4516 #define TARGET_LITTLE_SYM bfd_elf64_x86_64_sol2_vec
4517 #undef TARGET_LITTLE_NAME
4518 #define TARGET_LITTLE_NAME "elf64-x86-64-sol2"
4520 /* Restore default: we cannot use ELFOSABI_SOLARIS, otherwise ELFOSABI_NONE
4521 objects won't be recognized. */
4525 #define elf64_bed elf64_x86_64_sol2_bed
4527 /* The Solaris 2 ABI requires a plt symbol on all platforms.
4529 Cf. Linker and Libraries Guide, Ch. 2, Link-Editor, Generating the Output
4531 #undef elf_backend_want_plt_sym
4532 #define elf_backend_want_plt_sym 1
4534 #include "elf64-target.h"
4536 /* Intel L1OM support. */
4539 elf64_l1om_elf_object_p (bfd
*abfd
)
4541 /* Set the right machine number for an L1OM elf64 file. */
4542 bfd_default_set_arch_mach (abfd
, bfd_arch_l1om
, bfd_mach_l1om
);
4546 #undef TARGET_LITTLE_SYM
4547 #define TARGET_LITTLE_SYM bfd_elf64_l1om_vec
4548 #undef TARGET_LITTLE_NAME
4549 #define TARGET_LITTLE_NAME "elf64-l1om"
4551 #define ELF_ARCH bfd_arch_l1om
4553 #undef ELF_MACHINE_CODE
4554 #define ELF_MACHINE_CODE EM_L1OM
4559 #define elf64_bed elf64_l1om_bed
4561 #undef elf_backend_object_p
4562 #define elf_backend_object_p elf64_l1om_elf_object_p
4564 #undef elf_backend_post_process_headers
4566 #include "elf64-target.h"
4568 /* FreeBSD L1OM support. */
4570 #undef TARGET_LITTLE_SYM
4571 #define TARGET_LITTLE_SYM bfd_elf64_l1om_freebsd_vec
4572 #undef TARGET_LITTLE_NAME
4573 #define TARGET_LITTLE_NAME "elf64-l1om-freebsd"
4576 #define ELF_OSABI ELFOSABI_FREEBSD
4579 #define elf64_bed elf64_l1om_fbsd_bed
4581 #undef elf_backend_post_process_headers
4582 #define elf_backend_post_process_headers _bfd_elf_set_osabi
4584 #include "elf64-target.h"