config/tc-aarch64.c: Avoid trying to parse a vector mov as immediate.
[deliverable/binutils-gdb.git] / bfd / elf64-x86-64.c
CommitLineData
351f65ca 1/* X86-64 specific support for ELF
4dfe6ac6 2 Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
61315175 3 2010, 2011, 2012, 2013
9f973f28 4 Free Software Foundation, Inc.
8d88c4ca
NC
5 Contributed by Jan Hubicka <jh@suse.cz>.
6
ae9a127f 7 This file is part of BFD, the Binary File Descriptor library.
8d88c4ca 8
ae9a127f
NC
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
cd123cb7 11 the Free Software Foundation; either version 3 of the License, or
ae9a127f 12 (at your option) any later version.
8d88c4ca 13
ae9a127f
NC
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
8d88c4ca 18
ae9a127f
NC
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
cd123cb7
NC
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
8d88c4ca 23
8d88c4ca 24#include "sysdep.h"
3db64b00 25#include "bfd.h"
c434dee6 26#include "bfdlink.h"
8d88c4ca
NC
27#include "libbfd.h"
28#include "elf-bfd.h"
5a68afcf 29#include "elf-nacl.h"
142411ca 30#include "bfd_stdint.h"
c25bc9fc
L
31#include "objalloc.h"
32#include "hashtab.h"
e41b3a13 33#include "dwarf2.h"
d7921315 34#include "libiberty.h"
8d88c4ca
NC
35
36#include "elf/x86-64.h"
37
8fd79e71
L
38#ifdef CORE_HEADER
39#include <stdarg.h>
40#include CORE_HEADER
41#endif
42
8d88c4ca
NC
43/* In case we're on a 32-bit machine, construct a 64-bit "-1" value. */
44#define MINUS_ONE (~ (bfd_vma) 0)
45
351f65ca
L
46/* Since both 32-bit and 64-bit x86-64 encode relocation type in the
47 identical manner, we use ELF32_R_TYPE instead of ELF64_R_TYPE to get
48 relocation type. We also use ELF_ST_TYPE instead of ELF64_ST_TYPE
49 since they are the same. */
50
51#define ABI_64_P(abfd) \
52 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
53
8d88c4ca 54/* The relocation "howto" table. Order of fields:
7b81dfbb
AJ
55 type, rightshift, size, bitsize, pc_relative, bitpos, complain_on_overflow,
56 special_function, name, partial_inplace, src_mask, dst_mask, pcrel_offset. */
70256ad8
AJ
57static reloc_howto_type x86_64_elf_howto_table[] =
58{
b34976b6
AM
59 HOWTO(R_X86_64_NONE, 0, 0, 0, FALSE, 0, complain_overflow_dont,
60 bfd_elf_generic_reloc, "R_X86_64_NONE", FALSE, 0x00000000, 0x00000000,
61 FALSE),
62 HOWTO(R_X86_64_64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
63 bfd_elf_generic_reloc, "R_X86_64_64", FALSE, MINUS_ONE, MINUS_ONE,
64 FALSE),
65 HOWTO(R_X86_64_PC32, 0, 2, 32, TRUE, 0, complain_overflow_signed,
66 bfd_elf_generic_reloc, "R_X86_64_PC32", FALSE, 0xffffffff, 0xffffffff,
67 TRUE),
68 HOWTO(R_X86_64_GOT32, 0, 2, 32, FALSE, 0, complain_overflow_signed,
69 bfd_elf_generic_reloc, "R_X86_64_GOT32", FALSE, 0xffffffff, 0xffffffff,
70 FALSE),
71 HOWTO(R_X86_64_PLT32, 0, 2, 32, TRUE, 0, complain_overflow_signed,
72 bfd_elf_generic_reloc, "R_X86_64_PLT32", FALSE, 0xffffffff, 0xffffffff,
73 TRUE),
74 HOWTO(R_X86_64_COPY, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
75 bfd_elf_generic_reloc, "R_X86_64_COPY", FALSE, 0xffffffff, 0xffffffff,
76 FALSE),
77 HOWTO(R_X86_64_GLOB_DAT, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
78 bfd_elf_generic_reloc, "R_X86_64_GLOB_DAT", FALSE, MINUS_ONE,
79 MINUS_ONE, FALSE),
80 HOWTO(R_X86_64_JUMP_SLOT, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
81 bfd_elf_generic_reloc, "R_X86_64_JUMP_SLOT", FALSE, MINUS_ONE,
82 MINUS_ONE, FALSE),
83 HOWTO(R_X86_64_RELATIVE, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
84 bfd_elf_generic_reloc, "R_X86_64_RELATIVE", FALSE, MINUS_ONE,
85 MINUS_ONE, FALSE),
86 HOWTO(R_X86_64_GOTPCREL, 0, 2, 32, TRUE, 0, complain_overflow_signed,
87 bfd_elf_generic_reloc, "R_X86_64_GOTPCREL", FALSE, 0xffffffff,
88 0xffffffff, TRUE),
89 HOWTO(R_X86_64_32, 0, 2, 32, FALSE, 0, complain_overflow_unsigned,
90 bfd_elf_generic_reloc, "R_X86_64_32", FALSE, 0xffffffff, 0xffffffff,
91 FALSE),
92 HOWTO(R_X86_64_32S, 0, 2, 32, FALSE, 0, complain_overflow_signed,
93 bfd_elf_generic_reloc, "R_X86_64_32S", FALSE, 0xffffffff, 0xffffffff,
94 FALSE),
95 HOWTO(R_X86_64_16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield,
96 bfd_elf_generic_reloc, "R_X86_64_16", FALSE, 0xffff, 0xffff, FALSE),
b0360d8c 97 HOWTO(R_X86_64_PC16,0, 1, 16, TRUE, 0, complain_overflow_bitfield,
b34976b6 98 bfd_elf_generic_reloc, "R_X86_64_PC16", FALSE, 0xffff, 0xffff, TRUE),
ac2aa337 99 HOWTO(R_X86_64_8, 0, 0, 8, FALSE, 0, complain_overflow_bitfield,
b34976b6
AM
100 bfd_elf_generic_reloc, "R_X86_64_8", FALSE, 0xff, 0xff, FALSE),
101 HOWTO(R_X86_64_PC8, 0, 0, 8, TRUE, 0, complain_overflow_signed,
102 bfd_elf_generic_reloc, "R_X86_64_PC8", FALSE, 0xff, 0xff, TRUE),
103 HOWTO(R_X86_64_DTPMOD64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
104 bfd_elf_generic_reloc, "R_X86_64_DTPMOD64", FALSE, MINUS_ONE,
105 MINUS_ONE, FALSE),
106 HOWTO(R_X86_64_DTPOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
107 bfd_elf_generic_reloc, "R_X86_64_DTPOFF64", FALSE, MINUS_ONE,
108 MINUS_ONE, FALSE),
109 HOWTO(R_X86_64_TPOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
110 bfd_elf_generic_reloc, "R_X86_64_TPOFF64", FALSE, MINUS_ONE,
111 MINUS_ONE, FALSE),
112 HOWTO(R_X86_64_TLSGD, 0, 2, 32, TRUE, 0, complain_overflow_signed,
113 bfd_elf_generic_reloc, "R_X86_64_TLSGD", FALSE, 0xffffffff,
114 0xffffffff, TRUE),
115 HOWTO(R_X86_64_TLSLD, 0, 2, 32, TRUE, 0, complain_overflow_signed,
116 bfd_elf_generic_reloc, "R_X86_64_TLSLD", FALSE, 0xffffffff,
117 0xffffffff, TRUE),
ac2aa337 118 HOWTO(R_X86_64_DTPOFF32, 0, 2, 32, FALSE, 0, complain_overflow_signed,
b34976b6
AM
119 bfd_elf_generic_reloc, "R_X86_64_DTPOFF32", FALSE, 0xffffffff,
120 0xffffffff, FALSE),
121 HOWTO(R_X86_64_GOTTPOFF, 0, 2, 32, TRUE, 0, complain_overflow_signed,
122 bfd_elf_generic_reloc, "R_X86_64_GOTTPOFF", FALSE, 0xffffffff,
123 0xffffffff, TRUE),
124 HOWTO(R_X86_64_TPOFF32, 0, 2, 32, FALSE, 0, complain_overflow_signed,
125 bfd_elf_generic_reloc, "R_X86_64_TPOFF32", FALSE, 0xffffffff,
126 0xffffffff, FALSE),
d6ab8113
JB
127 HOWTO(R_X86_64_PC64, 0, 4, 64, TRUE, 0, complain_overflow_bitfield,
128 bfd_elf_generic_reloc, "R_X86_64_PC64", FALSE, MINUS_ONE, MINUS_ONE,
129 TRUE),
130 HOWTO(R_X86_64_GOTOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
131 bfd_elf_generic_reloc, "R_X86_64_GOTOFF64",
132 FALSE, MINUS_ONE, MINUS_ONE, FALSE),
133 HOWTO(R_X86_64_GOTPC32, 0, 2, 32, TRUE, 0, complain_overflow_signed,
134 bfd_elf_generic_reloc, "R_X86_64_GOTPC32",
135 FALSE, 0xffffffff, 0xffffffff, TRUE),
7b81dfbb
AJ
136 HOWTO(R_X86_64_GOT64, 0, 4, 64, FALSE, 0, complain_overflow_signed,
137 bfd_elf_generic_reloc, "R_X86_64_GOT64", FALSE, MINUS_ONE, MINUS_ONE,
138 FALSE),
139 HOWTO(R_X86_64_GOTPCREL64, 0, 4, 64, TRUE, 0, complain_overflow_signed,
140 bfd_elf_generic_reloc, "R_X86_64_GOTPCREL64", FALSE, MINUS_ONE,
141 MINUS_ONE, TRUE),
142 HOWTO(R_X86_64_GOTPC64, 0, 4, 64, TRUE, 0, complain_overflow_signed,
143 bfd_elf_generic_reloc, "R_X86_64_GOTPC64",
144 FALSE, MINUS_ONE, MINUS_ONE, TRUE),
145 HOWTO(R_X86_64_GOTPLT64, 0, 4, 64, FALSE, 0, complain_overflow_signed,
146 bfd_elf_generic_reloc, "R_X86_64_GOTPLT64", FALSE, MINUS_ONE,
147 MINUS_ONE, FALSE),
148 HOWTO(R_X86_64_PLTOFF64, 0, 4, 64, FALSE, 0, complain_overflow_signed,
149 bfd_elf_generic_reloc, "R_X86_64_PLTOFF64", FALSE, MINUS_ONE,
150 MINUS_ONE, FALSE),
1788fc08
L
151 HOWTO(R_X86_64_SIZE32, 0, 2, 32, FALSE, 0, complain_overflow_unsigned,
152 bfd_elf_generic_reloc, "R_X86_64_SIZE32", FALSE, 0xffffffff, 0xffffffff,
153 FALSE),
154 HOWTO(R_X86_64_SIZE64, 0, 4, 64, FALSE, 0, complain_overflow_unsigned,
155 bfd_elf_generic_reloc, "R_X86_64_SIZE64", FALSE, MINUS_ONE, MINUS_ONE,
156 FALSE),
67a4f2b7
AO
157 HOWTO(R_X86_64_GOTPC32_TLSDESC, 0, 2, 32, TRUE, 0,
158 complain_overflow_bitfield, bfd_elf_generic_reloc,
159 "R_X86_64_GOTPC32_TLSDESC",
160 FALSE, 0xffffffff, 0xffffffff, TRUE),
161 HOWTO(R_X86_64_TLSDESC_CALL, 0, 0, 0, FALSE, 0,
162 complain_overflow_dont, bfd_elf_generic_reloc,
163 "R_X86_64_TLSDESC_CALL",
164 FALSE, 0, 0, FALSE),
165 HOWTO(R_X86_64_TLSDESC, 0, 4, 64, FALSE, 0,
166 complain_overflow_bitfield, bfd_elf_generic_reloc,
167 "R_X86_64_TLSDESC",
168 FALSE, MINUS_ONE, MINUS_ONE, FALSE),
cbe950e9
L
169 HOWTO(R_X86_64_IRELATIVE, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
170 bfd_elf_generic_reloc, "R_X86_64_IRELATIVE", FALSE, MINUS_ONE,
171 MINUS_ONE, FALSE),
64d25c44
L
172 HOWTO(R_X86_64_RELATIVE64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
173 bfd_elf_generic_reloc, "R_X86_64_RELATIVE64", FALSE, MINUS_ONE,
174 MINUS_ONE, FALSE),
fe4770f4 175
a33d77bc
JB
176 /* We have a gap in the reloc numbers here.
177 R_X86_64_standard counts the number up to this point, and
178 R_X86_64_vt_offset is the value to subtract from a reloc type of
179 R_X86_64_GNU_VT* to form an index into this table. */
1e536451 180#define R_X86_64_standard (R_X86_64_RELATIVE64 + 1)
a33d77bc
JB
181#define R_X86_64_vt_offset (R_X86_64_GNU_VTINHERIT - R_X86_64_standard)
182
fe4770f4 183/* GNU extension to record C++ vtable hierarchy. */
b34976b6
AM
184 HOWTO (R_X86_64_GNU_VTINHERIT, 0, 4, 0, FALSE, 0, complain_overflow_dont,
185 NULL, "R_X86_64_GNU_VTINHERIT", FALSE, 0, 0, FALSE),
fe4770f4
AJ
186
187/* GNU extension to record C++ vtable member usage. */
b34976b6
AM
188 HOWTO (R_X86_64_GNU_VTENTRY, 0, 4, 0, FALSE, 0, complain_overflow_dont,
189 _bfd_elf_rel_vtable_reloc_fn, "R_X86_64_GNU_VTENTRY", FALSE, 0, 0,
d7921315
L
190 FALSE),
191
192/* Use complain_overflow_bitfield on R_X86_64_32 for x32. */
193 HOWTO(R_X86_64_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
194 bfd_elf_generic_reloc, "R_X86_64_32", FALSE, 0xffffffff, 0xffffffff,
195 FALSE)
8d88c4ca
NC
196};
197
d8045f23
NC
198#define IS_X86_64_PCREL_TYPE(TYPE) \
199 ( ((TYPE) == R_X86_64_PC8) \
200 || ((TYPE) == R_X86_64_PC16) \
201 || ((TYPE) == R_X86_64_PC32) \
202 || ((TYPE) == R_X86_64_PC64))
203
8d88c4ca 204/* Map BFD relocs to the x86_64 elf relocs. */
70256ad8
AJ
205struct elf_reloc_map
206{
8d88c4ca
NC
207 bfd_reloc_code_real_type bfd_reloc_val;
208 unsigned char elf_reloc_val;
209};
210
dc810e39 211static const struct elf_reloc_map x86_64_reloc_map[] =
8d88c4ca 212{
70256ad8
AJ
213 { BFD_RELOC_NONE, R_X86_64_NONE, },
214 { BFD_RELOC_64, R_X86_64_64, },
215 { BFD_RELOC_32_PCREL, R_X86_64_PC32, },
216 { BFD_RELOC_X86_64_GOT32, R_X86_64_GOT32,},
217 { BFD_RELOC_X86_64_PLT32, R_X86_64_PLT32,},
218 { BFD_RELOC_X86_64_COPY, R_X86_64_COPY, },
219 { BFD_RELOC_X86_64_GLOB_DAT, R_X86_64_GLOB_DAT, },
220 { BFD_RELOC_X86_64_JUMP_SLOT, R_X86_64_JUMP_SLOT, },
221 { BFD_RELOC_X86_64_RELATIVE, R_X86_64_RELATIVE, },
222 { BFD_RELOC_X86_64_GOTPCREL, R_X86_64_GOTPCREL, },
223 { BFD_RELOC_32, R_X86_64_32, },
224 { BFD_RELOC_X86_64_32S, R_X86_64_32S, },
225 { BFD_RELOC_16, R_X86_64_16, },
226 { BFD_RELOC_16_PCREL, R_X86_64_PC16, },
227 { BFD_RELOC_8, R_X86_64_8, },
228 { BFD_RELOC_8_PCREL, R_X86_64_PC8, },
bffbf940
JJ
229 { BFD_RELOC_X86_64_DTPMOD64, R_X86_64_DTPMOD64, },
230 { BFD_RELOC_X86_64_DTPOFF64, R_X86_64_DTPOFF64, },
231 { BFD_RELOC_X86_64_TPOFF64, R_X86_64_TPOFF64, },
232 { BFD_RELOC_X86_64_TLSGD, R_X86_64_TLSGD, },
233 { BFD_RELOC_X86_64_TLSLD, R_X86_64_TLSLD, },
234 { BFD_RELOC_X86_64_DTPOFF32, R_X86_64_DTPOFF32, },
235 { BFD_RELOC_X86_64_GOTTPOFF, R_X86_64_GOTTPOFF, },
236 { BFD_RELOC_X86_64_TPOFF32, R_X86_64_TPOFF32, },
d6ab8113
JB
237 { BFD_RELOC_64_PCREL, R_X86_64_PC64, },
238 { BFD_RELOC_X86_64_GOTOFF64, R_X86_64_GOTOFF64, },
239 { BFD_RELOC_X86_64_GOTPC32, R_X86_64_GOTPC32, },
7b81dfbb
AJ
240 { BFD_RELOC_X86_64_GOT64, R_X86_64_GOT64, },
241 { BFD_RELOC_X86_64_GOTPCREL64,R_X86_64_GOTPCREL64, },
242 { BFD_RELOC_X86_64_GOTPC64, R_X86_64_GOTPC64, },
243 { BFD_RELOC_X86_64_GOTPLT64, R_X86_64_GOTPLT64, },
244 { BFD_RELOC_X86_64_PLTOFF64, R_X86_64_PLTOFF64, },
1788fc08
L
245 { BFD_RELOC_SIZE32, R_X86_64_SIZE32, },
246 { BFD_RELOC_SIZE64, R_X86_64_SIZE64, },
67a4f2b7
AO
247 { BFD_RELOC_X86_64_GOTPC32_TLSDESC, R_X86_64_GOTPC32_TLSDESC, },
248 { BFD_RELOC_X86_64_TLSDESC_CALL, R_X86_64_TLSDESC_CALL, },
249 { BFD_RELOC_X86_64_TLSDESC, R_X86_64_TLSDESC, },
cbe950e9 250 { BFD_RELOC_X86_64_IRELATIVE, R_X86_64_IRELATIVE, },
fe4770f4
AJ
251 { BFD_RELOC_VTABLE_INHERIT, R_X86_64_GNU_VTINHERIT, },
252 { BFD_RELOC_VTABLE_ENTRY, R_X86_64_GNU_VTENTRY, },
8d88c4ca
NC
253};
254
67a4f2b7 255static reloc_howto_type *
351f65ca 256elf_x86_64_rtype_to_howto (bfd *abfd, unsigned r_type)
67a4f2b7
AO
257{
258 unsigned i;
259
d7921315
L
260 if (r_type == (unsigned int) R_X86_64_32)
261 {
262 if (ABI_64_P (abfd))
263 i = r_type;
264 else
265 i = ARRAY_SIZE (x86_64_elf_howto_table) - 1;
266 }
267 else if (r_type < (unsigned int) R_X86_64_GNU_VTINHERIT
268 || r_type >= (unsigned int) R_X86_64_max)
67a4f2b7
AO
269 {
270 if (r_type >= (unsigned int) R_X86_64_standard)
271 {
272 (*_bfd_error_handler) (_("%B: invalid relocation type %d"),
273 abfd, (int) r_type);
274 r_type = R_X86_64_NONE;
275 }
276 i = r_type;
277 }
278 else
279 i = r_type - (unsigned int) R_X86_64_vt_offset;
280 BFD_ASSERT (x86_64_elf_howto_table[i].type == r_type);
281 return &x86_64_elf_howto_table[i];
282}
8d88c4ca
NC
283
284/* Given a BFD reloc type, return a HOWTO structure. */
285static reloc_howto_type *
351f65ca
L
286elf_x86_64_reloc_type_lookup (bfd *abfd,
287 bfd_reloc_code_real_type code)
8d88c4ca
NC
288{
289 unsigned int i;
27482721 290
8d88c4ca
NC
291 for (i = 0; i < sizeof (x86_64_reloc_map) / sizeof (struct elf_reloc_map);
292 i++)
293 {
294 if (x86_64_reloc_map[i].bfd_reloc_val == code)
351f65ca
L
295 return elf_x86_64_rtype_to_howto (abfd,
296 x86_64_reloc_map[i].elf_reloc_val);
8d88c4ca
NC
297 }
298 return 0;
299}
300
157090f7 301static reloc_howto_type *
d7921315 302elf_x86_64_reloc_name_lookup (bfd *abfd,
351f65ca 303 const char *r_name)
157090f7
AM
304{
305 unsigned int i;
306
d7921315
L
307 if (!ABI_64_P (abfd) && strcasecmp (r_name, "R_X86_64_32") == 0)
308 {
309 /* Get x32 R_X86_64_32. */
310 reloc_howto_type *reloc
311 = &x86_64_elf_howto_table[ARRAY_SIZE (x86_64_elf_howto_table) - 1];
312 BFD_ASSERT (reloc->type == (unsigned int) R_X86_64_32);
313 return reloc;
314 }
315
316 for (i = 0; i < ARRAY_SIZE (x86_64_elf_howto_table); i++)
157090f7
AM
317 if (x86_64_elf_howto_table[i].name != NULL
318 && strcasecmp (x86_64_elf_howto_table[i].name, r_name) == 0)
319 return &x86_64_elf_howto_table[i];
320
321 return NULL;
322}
323
8d88c4ca 324/* Given an x86_64 ELF reloc type, fill in an arelent structure. */
8da6118f 325
8d88c4ca 326static void
351f65ca
L
327elf_x86_64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *cache_ptr,
328 Elf_Internal_Rela *dst)
8d88c4ca 329{
67a4f2b7 330 unsigned r_type;
8d88c4ca 331
351f65ca
L
332 r_type = ELF32_R_TYPE (dst->r_info);
333 cache_ptr->howto = elf_x86_64_rtype_to_howto (abfd, r_type);
8d88c4ca
NC
334 BFD_ASSERT (r_type == cache_ptr->howto->type);
335}
70256ad8 336\f
3bab7989 337/* Support for core dump NOTE sections. */
b34976b6 338static bfd_boolean
351f65ca 339elf_x86_64_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
3bab7989
ML
340{
341 int offset;
eea6121a 342 size_t size;
3bab7989
ML
343
344 switch (note->descsz)
345 {
346 default:
b34976b6 347 return FALSE;
3bab7989 348
bcd823f1
L
349 case 296: /* sizeof(istruct elf_prstatus) on Linux/x32 */
350 /* pr_cursig */
228e534f 351 elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
bcd823f1
L
352
353 /* pr_pid */
228e534f 354 elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
bcd823f1
L
355
356 /* pr_reg */
357 offset = 72;
358 size = 216;
359
360 break;
361
3bab7989
ML
362 case 336: /* sizeof(istruct elf_prstatus) on Linux/x86_64 */
363 /* pr_cursig */
228e534f 364 elf_tdata (abfd)->core->signal
3bab7989
ML
365 = bfd_get_16 (abfd, note->descdata + 12);
366
367 /* pr_pid */
228e534f 368 elf_tdata (abfd)->core->lwpid
3bab7989
ML
369 = bfd_get_32 (abfd, note->descdata + 32);
370
371 /* pr_reg */
372 offset = 112;
eea6121a 373 size = 216;
3bab7989
ML
374
375 break;
376 }
377
378 /* Make a ".reg/999" section. */
379 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 380 size, note->descpos + offset);
3bab7989
ML
381}
382
b34976b6 383static bfd_boolean
351f65ca 384elf_x86_64_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
3bab7989
ML
385{
386 switch (note->descsz)
387 {
388 default:
b34976b6 389 return FALSE;
3bab7989 390
bcd823f1 391 case 124: /* sizeof(struct elf_prpsinfo) on Linux/x32 */
228e534f 392 elf_tdata (abfd)->core->pid
bcd823f1 393 = bfd_get_32 (abfd, note->descdata + 12);
228e534f 394 elf_tdata (abfd)->core->program
bcd823f1 395 = _bfd_elfcore_strndup (abfd, note->descdata + 28, 16);
228e534f 396 elf_tdata (abfd)->core->command
bcd823f1
L
397 = _bfd_elfcore_strndup (abfd, note->descdata + 44, 80);
398 break;
399
3bab7989 400 case 136: /* sizeof(struct elf_prpsinfo) on Linux/x86_64 */
228e534f 401 elf_tdata (abfd)->core->pid
261b8d08 402 = bfd_get_32 (abfd, note->descdata + 24);
228e534f 403 elf_tdata (abfd)->core->program
3bab7989 404 = _bfd_elfcore_strndup (abfd, note->descdata + 40, 16);
228e534f 405 elf_tdata (abfd)->core->command
3bab7989
ML
406 = _bfd_elfcore_strndup (abfd, note->descdata + 56, 80);
407 }
408
409 /* Note that for some reason, a spurious space is tacked
410 onto the end of the args in some (at least one anyway)
411 implementations, so strip it off if it exists. */
412
413 {
228e534f 414 char *command = elf_tdata (abfd)->core->command;
3bab7989
ML
415 int n = strlen (command);
416
417 if (0 < n && command[n - 1] == ' ')
418 command[n - 1] = '\0';
419 }
420
b34976b6 421 return TRUE;
3bab7989 422}
8fd79e71
L
423
424#ifdef CORE_HEADER
425static char *
426elf_x86_64_write_core_note (bfd *abfd, char *buf, int *bufsiz,
427 int note_type, ...)
428{
429 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8fd79e71
L
430 va_list ap;
431 const char *fname, *psargs;
432 long pid;
433 int cursig;
434 const void *gregs;
435
436 switch (note_type)
437 {
438 default:
439 return NULL;
440
441 case NT_PRPSINFO:
442 va_start (ap, note_type);
443 fname = va_arg (ap, const char *);
444 psargs = va_arg (ap, const char *);
445 va_end (ap);
446
447 if (bed->s->elfclass == ELFCLASS32)
448 {
449 prpsinfo32_t data;
450 memset (&data, 0, sizeof (data));
451 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
452 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
e85c6a70
JK
453 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
454 &data, sizeof (data));
8fd79e71
L
455 }
456 else
457 {
b1bd052d 458 prpsinfo64_t data;
8fd79e71
L
459 memset (&data, 0, sizeof (data));
460 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
461 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
e85c6a70
JK
462 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
463 &data, sizeof (data));
8fd79e71 464 }
e85c6a70 465 /* NOTREACHED */
8fd79e71
L
466
467 case NT_PRSTATUS:
468 va_start (ap, note_type);
469 pid = va_arg (ap, long);
470 cursig = va_arg (ap, int);
471 gregs = va_arg (ap, const void *);
472 va_end (ap);
473
474 if (bed->s->elfclass == ELFCLASS32)
475 {
476 if (bed->elf_machine_code == EM_X86_64)
477 {
478 prstatusx32_t prstat;
479 memset (&prstat, 0, sizeof (prstat));
480 prstat.pr_pid = pid;
481 prstat.pr_cursig = cursig;
482 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
e85c6a70
JK
483 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
484 &prstat, sizeof (prstat));
8fd79e71
L
485 }
486 else
487 {
488 prstatus32_t prstat;
489 memset (&prstat, 0, sizeof (prstat));
490 prstat.pr_pid = pid;
491 prstat.pr_cursig = cursig;
492 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
e85c6a70
JK
493 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
494 &prstat, sizeof (prstat));
8fd79e71
L
495 }
496 }
497 else
498 {
b1bd052d 499 prstatus64_t prstat;
8fd79e71
L
500 memset (&prstat, 0, sizeof (prstat));
501 prstat.pr_pid = pid;
502 prstat.pr_cursig = cursig;
503 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
e85c6a70
JK
504 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
505 &prstat, sizeof (prstat));
8fd79e71 506 }
8fd79e71 507 }
e85c6a70 508 /* NOTREACHED */
8fd79e71
L
509}
510#endif
3bab7989 511\f
407443a3 512/* Functions for the x86-64 ELF linker. */
70256ad8 513
407443a3 514/* The name of the dynamic interpreter. This is put in the .interp
70256ad8
AJ
515 section. */
516
351f65ca 517#define ELF64_DYNAMIC_INTERPRETER "/lib/ld64.so.1"
eec9dd95 518#define ELF32_DYNAMIC_INTERPRETER "/lib/ldx32.so.1"
70256ad8 519
d40d037c
AJ
520/* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
521 copying dynamic variables from a shared lib into an app's dynbss
522 section, and instead use a dynamic relocation to point into the
523 shared lib. */
524#define ELIMINATE_COPY_RELOCS 1
525
70256ad8
AJ
526/* The size in bytes of an entry in the global offset table. */
527
528#define GOT_ENTRY_SIZE 8
8d88c4ca 529
70256ad8 530/* The size in bytes of an entry in the procedure linkage table. */
8d88c4ca 531
70256ad8
AJ
532#define PLT_ENTRY_SIZE 16
533
534/* The first entry in a procedure linkage table looks like this. See the
535 SVR4 ABI i386 supplement and the x86-64 ABI to see how this works. */
536
351f65ca 537static const bfd_byte elf_x86_64_plt0_entry[PLT_ENTRY_SIZE] =
70256ad8 538{
653165cc
AJ
539 0xff, 0x35, 8, 0, 0, 0, /* pushq GOT+8(%rip) */
540 0xff, 0x25, 16, 0, 0, 0, /* jmpq *GOT+16(%rip) */
10efb593 541 0x0f, 0x1f, 0x40, 0x00 /* nopl 0(%rax) */
70256ad8
AJ
542};
543
544/* Subsequent entries in a procedure linkage table look like this. */
545
351f65ca 546static const bfd_byte elf_x86_64_plt_entry[PLT_ENTRY_SIZE] =
70256ad8 547{
653165cc 548 0xff, 0x25, /* jmpq *name@GOTPC(%rip) */
407443a3 549 0, 0, 0, 0, /* replaced with offset to this symbol in .got. */
653165cc 550 0x68, /* pushq immediate */
70256ad8
AJ
551 0, 0, 0, 0, /* replaced with index into relocation table. */
552 0xe9, /* jmp relative */
553 0, 0, 0, 0 /* replaced with offset to start of .plt0. */
554};
555
e41b3a13
JJ
556/* .eh_frame covering the .plt section. */
557
558static const bfd_byte elf_x86_64_eh_frame_plt[] =
559{
560#define PLT_CIE_LENGTH 20
561#define PLT_FDE_LENGTH 36
562#define PLT_FDE_START_OFFSET 4 + PLT_CIE_LENGTH + 8
563#define PLT_FDE_LEN_OFFSET 4 + PLT_CIE_LENGTH + 12
564 PLT_CIE_LENGTH, 0, 0, 0, /* CIE length */
565 0, 0, 0, 0, /* CIE ID */
566 1, /* CIE version */
567 'z', 'R', 0, /* Augmentation string */
568 1, /* Code alignment factor */
569 0x78, /* Data alignment factor */
570 16, /* Return address column */
571 1, /* Augmentation size */
572 DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding */
573 DW_CFA_def_cfa, 7, 8, /* DW_CFA_def_cfa: r7 (rsp) ofs 8 */
574 DW_CFA_offset + 16, 1, /* DW_CFA_offset: r16 (rip) at cfa-8 */
575 DW_CFA_nop, DW_CFA_nop,
576
577 PLT_FDE_LENGTH, 0, 0, 0, /* FDE length */
578 PLT_CIE_LENGTH + 8, 0, 0, 0, /* CIE pointer */
579 0, 0, 0, 0, /* R_X86_64_PC32 .plt goes here */
580 0, 0, 0, 0, /* .plt size goes here */
581 0, /* Augmentation size */
582 DW_CFA_def_cfa_offset, 16, /* DW_CFA_def_cfa_offset: 16 */
583 DW_CFA_advance_loc + 6, /* DW_CFA_advance_loc: 6 to __PLT__+6 */
584 DW_CFA_def_cfa_offset, 24, /* DW_CFA_def_cfa_offset: 24 */
585 DW_CFA_advance_loc + 10, /* DW_CFA_advance_loc: 10 to __PLT__+16 */
586 DW_CFA_def_cfa_expression, /* DW_CFA_def_cfa_expression */
587 11, /* Block length */
588 DW_OP_breg7, 8, /* DW_OP_breg7 (rsp): 8 */
589 DW_OP_breg16, 0, /* DW_OP_breg16 (rip): 0 */
590 DW_OP_lit15, DW_OP_and, DW_OP_lit11, DW_OP_ge,
591 DW_OP_lit3, DW_OP_shl, DW_OP_plus,
592 DW_CFA_nop, DW_CFA_nop, DW_CFA_nop, DW_CFA_nop
593};
594
eed180f8
RM
595/* Architecture-specific backend data for x86-64. */
596
597struct elf_x86_64_backend_data
598{
599 /* Templates for the initial PLT entry and for subsequent entries. */
600 const bfd_byte *plt0_entry;
601 const bfd_byte *plt_entry;
602 unsigned int plt_entry_size; /* Size of each PLT entry. */
603
604 /* Offsets into plt0_entry that are to be replaced with GOT[1] and GOT[2]. */
605 unsigned int plt0_got1_offset;
606 unsigned int plt0_got2_offset;
607
608 /* Offset of the end of the PC-relative instruction containing
609 plt0_got2_offset. */
610 unsigned int plt0_got2_insn_end;
611
612 /* Offsets into plt_entry that are to be replaced with... */
613 unsigned int plt_got_offset; /* ... address of this symbol in .got. */
614 unsigned int plt_reloc_offset; /* ... offset into relocation table. */
615 unsigned int plt_plt_offset; /* ... offset to start of .plt. */
616
617 /* Length of the PC-relative instruction containing plt_got_offset. */
618 unsigned int plt_got_insn_size;
619
620 /* Offset of the end of the PC-relative jump to plt0_entry. */
621 unsigned int plt_plt_insn_end;
622
623 /* Offset into plt_entry where the initial value of the GOT entry points. */
624 unsigned int plt_lazy_offset;
625
626 /* .eh_frame covering the .plt section. */
627 const bfd_byte *eh_frame_plt;
628 unsigned int eh_frame_plt_size;
629};
630
f8222080
L
631#define get_elf_x86_64_arch_data(bed) \
632 ((const struct elf_x86_64_backend_data *) (bed)->arch_data)
633
eed180f8 634#define get_elf_x86_64_backend_data(abfd) \
f8222080 635 get_elf_x86_64_arch_data (get_elf_backend_data (abfd))
eed180f8
RM
636
637#define GET_PLT_ENTRY_SIZE(abfd) \
638 get_elf_x86_64_backend_data (abfd)->plt_entry_size
639
640/* These are the standard parameters. */
641static const struct elf_x86_64_backend_data elf_x86_64_arch_bed =
642 {
643 elf_x86_64_plt0_entry, /* plt0_entry */
644 elf_x86_64_plt_entry, /* plt_entry */
645 sizeof (elf_x86_64_plt_entry), /* plt_entry_size */
646 2, /* plt0_got1_offset */
647 8, /* plt0_got2_offset */
648 12, /* plt0_got2_insn_end */
649 2, /* plt_got_offset */
650 7, /* plt_reloc_offset */
651 12, /* plt_plt_offset */
652 6, /* plt_got_insn_size */
653 PLT_ENTRY_SIZE, /* plt_plt_insn_end */
654 6, /* plt_lazy_offset */
655 elf_x86_64_eh_frame_plt, /* eh_frame_plt */
656 sizeof (elf_x86_64_eh_frame_plt), /* eh_frame_plt_size */
657 };
658
659#define elf_backend_arch_data &elf_x86_64_arch_bed
660
70256ad8
AJ
661/* x86-64 ELF linker hash entry. */
662
351f65ca 663struct elf_x86_64_link_hash_entry
70256ad8 664{
c434dee6 665 struct elf_link_hash_entry elf;
70256ad8 666
c434dee6 667 /* Track dynamic relocs copied for this symbol. */
e03a8ed8 668 struct elf_dyn_relocs *dyn_relocs;
bffbf940
JJ
669
670#define GOT_UNKNOWN 0
671#define GOT_NORMAL 1
672#define GOT_TLS_GD 2
673#define GOT_TLS_IE 3
67a4f2b7
AO
674#define GOT_TLS_GDESC 4
675#define GOT_TLS_GD_BOTH_P(type) \
676 ((type) == (GOT_TLS_GD | GOT_TLS_GDESC))
677#define GOT_TLS_GD_P(type) \
678 ((type) == GOT_TLS_GD || GOT_TLS_GD_BOTH_P (type))
679#define GOT_TLS_GDESC_P(type) \
680 ((type) == GOT_TLS_GDESC || GOT_TLS_GD_BOTH_P (type))
681#define GOT_TLS_GD_ANY_P(type) \
682 (GOT_TLS_GD_P (type) || GOT_TLS_GDESC_P (type))
bffbf940 683 unsigned char tls_type;
67a4f2b7
AO
684
685 /* Offset of the GOTPLT entry reserved for the TLS descriptor,
686 starting at the end of the jump table. */
687 bfd_vma tlsdesc_got;
bffbf940
JJ
688};
689
351f65ca
L
690#define elf_x86_64_hash_entry(ent) \
691 ((struct elf_x86_64_link_hash_entry *)(ent))
bffbf940 692
351f65ca 693struct elf_x86_64_obj_tdata
bffbf940
JJ
694{
695 struct elf_obj_tdata root;
696
697 /* tls_type for each local got entry. */
698 char *local_got_tls_type;
67a4f2b7
AO
699
700 /* GOTPLT entries for TLS descriptors. */
701 bfd_vma *local_tlsdesc_gotent;
70256ad8
AJ
702};
703
351f65ca
L
704#define elf_x86_64_tdata(abfd) \
705 ((struct elf_x86_64_obj_tdata *) (abfd)->tdata.any)
bffbf940 706
351f65ca
L
707#define elf_x86_64_local_got_tls_type(abfd) \
708 (elf_x86_64_tdata (abfd)->local_got_tls_type)
bffbf940 709
351f65ca
L
710#define elf_x86_64_local_tlsdesc_gotent(abfd) \
711 (elf_x86_64_tdata (abfd)->local_tlsdesc_gotent)
bffbf940 712
0ffa91dd
NC
713#define is_x86_64_elf(bfd) \
714 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
715 && elf_tdata (bfd) != NULL \
4dfe6ac6 716 && elf_object_id (bfd) == X86_64_ELF_DATA)
0ffa91dd
NC
717
718static bfd_boolean
351f65ca 719elf_x86_64_mkobject (bfd *abfd)
0ffa91dd 720{
351f65ca 721 return bfd_elf_allocate_object (abfd, sizeof (struct elf_x86_64_obj_tdata),
4dfe6ac6 722 X86_64_ELF_DATA);
0ffa91dd
NC
723}
724
c434dee6 725/* x86-64 ELF linker hash table. */
8d88c4ca 726
351f65ca 727struct elf_x86_64_link_hash_table
407443a3 728{
c434dee6 729 struct elf_link_hash_table elf;
70256ad8 730
c434dee6 731 /* Short-cuts to get to dynamic linker sections. */
c434dee6
AJ
732 asection *sdynbss;
733 asection *srelbss;
e41b3a13 734 asection *plt_eh_frame;
70256ad8 735
4dfe6ac6
NC
736 union
737 {
bffbf940
JJ
738 bfd_signed_vma refcount;
739 bfd_vma offset;
740 } tls_ld_got;
741
67a4f2b7
AO
742 /* The amount of space used by the jump slots in the GOT. */
743 bfd_vma sgotplt_jump_table_size;
744
87d72d41
AM
745 /* Small local sym cache. */
746 struct sym_cache sym_cache;
9f03412a 747
351f65ca
L
748 bfd_vma (*r_info) (bfd_vma, bfd_vma);
749 bfd_vma (*r_sym) (bfd_vma);
248775ba 750 unsigned int pointer_r_type;
351f65ca
L
751 const char *dynamic_interpreter;
752 int dynamic_interpreter_size;
753
9f03412a
AO
754 /* _TLS_MODULE_BASE_ symbol. */
755 struct bfd_link_hash_entry *tls_module_base;
c25bc9fc
L
756
757 /* Used by local STT_GNU_IFUNC symbols. */
758 htab_t loc_hash_table;
4dfe6ac6
NC
759 void * loc_hash_memory;
760
761 /* The offset into splt of the PLT entry for the TLS descriptor
762 resolver. Special values are 0, if not necessary (or not found
763 to be necessary yet), and -1 if needed but not determined
764 yet. */
765 bfd_vma tlsdesc_plt;
766 /* The offset into sgot of the GOT entry used by the PLT entry
767 above. */
768 bfd_vma tlsdesc_got;
e1f98742
L
769
770 /* The index of the next R_X86_64_JUMP_SLOT entry in .rela.plt. */
771 bfd_vma next_jump_slot_index;
772 /* The index of the next R_X86_64_IRELATIVE entry in .rela.plt. */
773 bfd_vma next_irelative_index;
c434dee6 774};
70256ad8
AJ
775
776/* Get the x86-64 ELF linker hash table from a link_info structure. */
8d88c4ca 777
351f65ca 778#define elf_x86_64_hash_table(p) \
4dfe6ac6 779 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
351f65ca 780 == X86_64_ELF_DATA ? ((struct elf_x86_64_link_hash_table *) ((p)->hash)) : NULL)
8d88c4ca 781
351f65ca 782#define elf_x86_64_compute_jump_table_size(htab) \
6de2ae4a 783 ((htab)->elf.srelplt->reloc_count * GOT_ENTRY_SIZE)
67a4f2b7 784
407443a3 785/* Create an entry in an x86-64 ELF linker hash table. */
70256ad8
AJ
786
787static struct bfd_hash_entry *
351f65ca
L
788elf_x86_64_link_hash_newfunc (struct bfd_hash_entry *entry,
789 struct bfd_hash_table *table,
790 const char *string)
70256ad8 791{
70256ad8 792 /* Allocate the structure if it has not already been allocated by a
c434dee6
AJ
793 subclass. */
794 if (entry == NULL)
795 {
a50b1753 796 entry = (struct bfd_hash_entry *)
eed180f8
RM
797 bfd_hash_allocate (table,
798 sizeof (struct elf_x86_64_link_hash_entry));
c434dee6
AJ
799 if (entry == NULL)
800 return entry;
801 }
70256ad8
AJ
802
803 /* Call the allocation method of the superclass. */
c434dee6
AJ
804 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
805 if (entry != NULL)
70256ad8 806 {
351f65ca 807 struct elf_x86_64_link_hash_entry *eh;
c434dee6 808
351f65ca 809 eh = (struct elf_x86_64_link_hash_entry *) entry;
c434dee6 810 eh->dyn_relocs = NULL;
bffbf940 811 eh->tls_type = GOT_UNKNOWN;
67a4f2b7 812 eh->tlsdesc_got = (bfd_vma) -1;
70256ad8
AJ
813 }
814
c434dee6 815 return entry;
70256ad8
AJ
816}
817
c25bc9fc
L
818/* Compute a hash of a local hash entry. We use elf_link_hash_entry
819 for local symbol so that we can handle local STT_GNU_IFUNC symbols
820 as global symbol. We reuse indx and dynstr_index for local symbol
821 hash since they aren't used by global symbols in this backend. */
822
823static hashval_t
351f65ca 824elf_x86_64_local_htab_hash (const void *ptr)
c25bc9fc
L
825{
826 struct elf_link_hash_entry *h
827 = (struct elf_link_hash_entry *) ptr;
d2149d72 828 return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
c25bc9fc
L
829}
830
831/* Compare local hash entries. */
832
833static int
351f65ca 834elf_x86_64_local_htab_eq (const void *ptr1, const void *ptr2)
c25bc9fc
L
835{
836 struct elf_link_hash_entry *h1
837 = (struct elf_link_hash_entry *) ptr1;
838 struct elf_link_hash_entry *h2
839 = (struct elf_link_hash_entry *) ptr2;
840
841 return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
842}
843
844/* Find and/or create a hash entry for local symbol. */
845
846static struct elf_link_hash_entry *
351f65ca
L
847elf_x86_64_get_local_sym_hash (struct elf_x86_64_link_hash_table *htab,
848 bfd *abfd, const Elf_Internal_Rela *rel,
849 bfd_boolean create)
c25bc9fc 850{
351f65ca 851 struct elf_x86_64_link_hash_entry e, *ret;
c25bc9fc 852 asection *sec = abfd->sections;
d2149d72 853 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
351f65ca 854 htab->r_sym (rel->r_info));
c25bc9fc
L
855 void **slot;
856
857 e.elf.indx = sec->id;
351f65ca 858 e.elf.dynstr_index = htab->r_sym (rel->r_info);
c25bc9fc
L
859 slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
860 create ? INSERT : NO_INSERT);
861
862 if (!slot)
863 return NULL;
864
865 if (*slot)
866 {
351f65ca 867 ret = (struct elf_x86_64_link_hash_entry *) *slot;
c25bc9fc
L
868 return &ret->elf;
869 }
870
351f65ca 871 ret = (struct elf_x86_64_link_hash_entry *)
c25bc9fc 872 objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
351f65ca 873 sizeof (struct elf_x86_64_link_hash_entry));
c25bc9fc
L
874 if (ret)
875 {
876 memset (ret, 0, sizeof (*ret));
877 ret->elf.indx = sec->id;
351f65ca 878 ret->elf.dynstr_index = htab->r_sym (rel->r_info);
c25bc9fc 879 ret->elf.dynindx = -1;
c25bc9fc
L
880 *slot = ret;
881 }
882 return &ret->elf;
883}
884
8d88c4ca
NC
885/* Create an X86-64 ELF linker hash table. */
886
887static struct bfd_link_hash_table *
351f65ca 888elf_x86_64_link_hash_table_create (bfd *abfd)
8d88c4ca 889{
351f65ca
L
890 struct elf_x86_64_link_hash_table *ret;
891 bfd_size_type amt = sizeof (struct elf_x86_64_link_hash_table);
8d88c4ca 892
7bf52ea2 893 ret = (struct elf_x86_64_link_hash_table *) bfd_zmalloc (amt);
c434dee6 894 if (ret == NULL)
8d88c4ca
NC
895 return NULL;
896
eb4ff4d6 897 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
351f65ca
L
898 elf_x86_64_link_hash_newfunc,
899 sizeof (struct elf_x86_64_link_hash_entry),
4dfe6ac6 900 X86_64_ELF_DATA))
8d88c4ca 901 {
e2d34d7d 902 free (ret);
8d88c4ca
NC
903 return NULL;
904 }
905
351f65ca
L
906 if (ABI_64_P (abfd))
907 {
908 ret->r_info = elf64_r_info;
909 ret->r_sym = elf64_r_sym;
248775ba 910 ret->pointer_r_type = R_X86_64_64;
351f65ca
L
911 ret->dynamic_interpreter = ELF64_DYNAMIC_INTERPRETER;
912 ret->dynamic_interpreter_size = sizeof ELF64_DYNAMIC_INTERPRETER;
913 }
914 else
915 {
916 ret->r_info = elf32_r_info;
917 ret->r_sym = elf32_r_sym;
248775ba 918 ret->pointer_r_type = R_X86_64_32;
351f65ca
L
919 ret->dynamic_interpreter = ELF32_DYNAMIC_INTERPRETER;
920 ret->dynamic_interpreter_size = sizeof ELF32_DYNAMIC_INTERPRETER;
921 }
922
c25bc9fc 923 ret->loc_hash_table = htab_try_create (1024,
351f65ca
L
924 elf_x86_64_local_htab_hash,
925 elf_x86_64_local_htab_eq,
c25bc9fc
L
926 NULL);
927 ret->loc_hash_memory = objalloc_create ();
928 if (!ret->loc_hash_table || !ret->loc_hash_memory)
929 {
930 free (ret);
931 return NULL;
932 }
933
c434dee6
AJ
934 return &ret->elf.root;
935}
936
c25bc9fc
L
937/* Destroy an X86-64 ELF linker hash table. */
938
939static void
351f65ca 940elf_x86_64_link_hash_table_free (struct bfd_link_hash_table *hash)
c25bc9fc 941{
351f65ca
L
942 struct elf_x86_64_link_hash_table *htab
943 = (struct elf_x86_64_link_hash_table *) hash;
c25bc9fc
L
944
945 if (htab->loc_hash_table)
946 htab_delete (htab->loc_hash_table);
947 if (htab->loc_hash_memory)
948 objalloc_free ((struct objalloc *) htab->loc_hash_memory);
9f7c3e5e 949 _bfd_elf_link_hash_table_free (hash);
c25bc9fc
L
950}
951
c434dee6
AJ
952/* Create .plt, .rela.plt, .got, .got.plt, .rela.got, .dynbss, and
953 .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
954 hash table. */
955
b34976b6 956static bfd_boolean
351f65ca
L
957elf_x86_64_create_dynamic_sections (bfd *dynobj,
958 struct bfd_link_info *info)
c434dee6 959{
351f65ca 960 struct elf_x86_64_link_hash_table *htab;
c434dee6 961
c434dee6 962 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
b34976b6 963 return FALSE;
c434dee6 964
351f65ca 965 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
966 if (htab == NULL)
967 return FALSE;
968
3d4d4302 969 htab->sdynbss = bfd_get_linker_section (dynobj, ".dynbss");
c434dee6 970 if (!info->shared)
3d4d4302 971 htab->srelbss = bfd_get_linker_section (dynobj, ".rela.bss");
c434dee6 972
6de2ae4a 973 if (!htab->sdynbss
c434dee6
AJ
974 || (!info->shared && !htab->srelbss))
975 abort ();
976
e41b3a13 977 if (!info->no_ld_generated_unwind_info
2fe0fd06 978 && htab->plt_eh_frame == NULL
e4de50d4 979 && htab->elf.splt != NULL)
e41b3a13 980 {
bbf96e4e
L
981 flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
982 | SEC_HAS_CONTENTS | SEC_IN_MEMORY
983 | SEC_LINKER_CREATED);
e41b3a13 984 htab->plt_eh_frame
bbf96e4e 985 = bfd_make_section_anyway_with_flags (dynobj, ".eh_frame", flags);
e41b3a13
JJ
986 if (htab->plt_eh_frame == NULL
987 || !bfd_set_section_alignment (dynobj, htab->plt_eh_frame, 3))
988 return FALSE;
e41b3a13 989 }
b34976b6 990 return TRUE;
c434dee6
AJ
991}
992
993/* Copy the extra info we tack onto an elf_link_hash_entry. */
994
995static void
351f65ca
L
996elf_x86_64_copy_indirect_symbol (struct bfd_link_info *info,
997 struct elf_link_hash_entry *dir,
998 struct elf_link_hash_entry *ind)
c434dee6 999{
351f65ca 1000 struct elf_x86_64_link_hash_entry *edir, *eind;
c434dee6 1001
351f65ca
L
1002 edir = (struct elf_x86_64_link_hash_entry *) dir;
1003 eind = (struct elf_x86_64_link_hash_entry *) ind;
c434dee6
AJ
1004
1005 if (eind->dyn_relocs != NULL)
1006 {
1007 if (edir->dyn_relocs != NULL)
1008 {
e03a8ed8
L
1009 struct elf_dyn_relocs **pp;
1010 struct elf_dyn_relocs *p;
c434dee6 1011
fcfa13d2 1012 /* Add reloc counts against the indirect sym to the direct sym
c434dee6
AJ
1013 list. Merge any entries against the same section. */
1014 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
1015 {
e03a8ed8 1016 struct elf_dyn_relocs *q;
c434dee6
AJ
1017
1018 for (q = edir->dyn_relocs; q != NULL; q = q->next)
1019 if (q->sec == p->sec)
1020 {
1021 q->pc_count += p->pc_count;
1022 q->count += p->count;
1023 *pp = p->next;
1024 break;
1025 }
1026 if (q == NULL)
1027 pp = &p->next;
1028 }
1029 *pp = edir->dyn_relocs;
1030 }
1031
1032 edir->dyn_relocs = eind->dyn_relocs;
1033 eind->dyn_relocs = NULL;
1034 }
1035
bffbf940
JJ
1036 if (ind->root.type == bfd_link_hash_indirect
1037 && dir->got.refcount <= 0)
1038 {
1039 edir->tls_type = eind->tls_type;
1040 eind->tls_type = GOT_UNKNOWN;
1041 }
1042
d40d037c
AJ
1043 if (ELIMINATE_COPY_RELOCS
1044 && ind->root.type != bfd_link_hash_indirect
f5385ebf
AM
1045 && dir->dynamic_adjusted)
1046 {
1047 /* If called to transfer flags for a weakdef during processing
1048 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
1049 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
1050 dir->ref_dynamic |= ind->ref_dynamic;
1051 dir->ref_regular |= ind->ref_regular;
1052 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
1053 dir->needs_plt |= ind->needs_plt;
1054 dir->pointer_equality_needed |= ind->pointer_equality_needed;
1055 }
d40d037c 1056 else
fcfa13d2 1057 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
8d88c4ca
NC
1058}
1059
b34976b6 1060static bfd_boolean
27482721 1061elf64_x86_64_elf_object_p (bfd *abfd)
bffbf940 1062{
8d88c4ca
NC
1063 /* Set the right machine number for an x86-64 elf64 file. */
1064 bfd_default_set_arch_mach (abfd, bfd_arch_i386, bfd_mach_x86_64);
b34976b6 1065 return TRUE;
8d88c4ca
NC
1066}
1067
8059fb19
RM
1068static bfd_boolean
1069elf32_x86_64_elf_object_p (bfd *abfd)
1070{
1071 /* Set the right machine number for an x86-64 elf32 file. */
1072 bfd_default_set_arch_mach (abfd, bfd_arch_i386, bfd_mach_x64_32);
1073 return TRUE;
1074}
1075
142411ca
L
1076/* Return TRUE if the TLS access code sequence support transition
1077 from R_TYPE. */
1078
1079static bfd_boolean
351f65ca
L
1080elf_x86_64_check_tls_transition (bfd *abfd,
1081 struct bfd_link_info *info,
1082 asection *sec,
1083 bfd_byte *contents,
1084 Elf_Internal_Shdr *symtab_hdr,
1085 struct elf_link_hash_entry **sym_hashes,
1086 unsigned int r_type,
1087 const Elf_Internal_Rela *rel,
1088 const Elf_Internal_Rela *relend)
bffbf940 1089{
142411ca
L
1090 unsigned int val;
1091 unsigned long r_symndx;
5c98a14e 1092 bfd_boolean largepic = FALSE;
142411ca
L
1093 struct elf_link_hash_entry *h;
1094 bfd_vma offset;
351f65ca 1095 struct elf_x86_64_link_hash_table *htab;
142411ca
L
1096
1097 /* Get the section contents. */
1098 if (contents == NULL)
1099 {
1100 if (elf_section_data (sec)->this_hdr.contents != NULL)
1101 contents = elf_section_data (sec)->this_hdr.contents;
1102 else
1103 {
1104 /* FIXME: How to better handle error condition? */
1105 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
1106 return FALSE;
bffbf940 1107
142411ca
L
1108 /* Cache the section contents for elf_link_input_bfd. */
1109 elf_section_data (sec)->this_hdr.contents = contents;
1110 }
1111 }
1112
351f65ca 1113 htab = elf_x86_64_hash_table (info);
142411ca 1114 offset = rel->r_offset;
bffbf940 1115 switch (r_type)
142411ca
L
1116 {
1117 case R_X86_64_TLSGD:
1118 case R_X86_64_TLSLD:
1119 if ((rel + 1) >= relend)
1120 return FALSE;
1121
1122 if (r_type == R_X86_64_TLSGD)
1123 {
52bc799a 1124 /* Check transition from GD access model. For 64bit, only
142411ca
L
1125 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
1126 .word 0x6666; rex64; call __tls_get_addr
52bc799a
L
1127 can transit to different access model. For 32bit, only
1128 leaq foo@tlsgd(%rip), %rdi
1129 .word 0x6666; rex64; call __tls_get_addr
5c98a14e
JJ
1130 can transit to different access model. For largepic
1131 we also support:
1132 leaq foo@tlsgd(%rip), %rdi
1133 movabsq $__tls_get_addr@pltoff, %rax
1134 addq $rbx, %rax
1135 call *%rax. */
142411ca 1136
fa289a5f
AM
1137 static const unsigned char call[] = { 0x66, 0x66, 0x48, 0xe8 };
1138 static const unsigned char leaq[] = { 0x66, 0x48, 0x8d, 0x3d };
1139
5c98a14e 1140 if ((offset + 12) > sec->size)
142411ca 1141 return FALSE;
52bc799a 1142
5c98a14e
JJ
1143 if (memcmp (contents + offset + 4, call, 4) != 0)
1144 {
1145 if (!ABI_64_P (abfd)
1146 || (offset + 19) > sec->size
1147 || offset < 3
1148 || memcmp (contents + offset - 3, leaq + 1, 3) != 0
1149 || memcmp (contents + offset + 4, "\x48\xb8", 2) != 0
1150 || memcmp (contents + offset + 14, "\x48\x01\xd8\xff\xd0", 5)
1151 != 0)
1152 return FALSE;
1153 largepic = TRUE;
1154 }
1155 else if (ABI_64_P (abfd))
52bc799a 1156 {
52bc799a 1157 if (offset < 4
fa289a5f 1158 || memcmp (contents + offset - 4, leaq, 4) != 0)
52bc799a
L
1159 return FALSE;
1160 }
1161 else
1162 {
52bc799a 1163 if (offset < 3
fa289a5f 1164 || memcmp (contents + offset - 3, leaq + 1, 3) != 0)
52bc799a
L
1165 return FALSE;
1166 }
142411ca
L
1167 }
1168 else
1169 {
1170 /* Check transition from LD access model. Only
1171 leaq foo@tlsld(%rip), %rdi;
1172 call __tls_get_addr
5c98a14e
JJ
1173 can transit to different access model. For largepic
1174 we also support:
1175 leaq foo@tlsld(%rip), %rdi
1176 movabsq $__tls_get_addr@pltoff, %rax
1177 addq $rbx, %rax
1178 call *%rax. */
142411ca 1179
fa289a5f 1180 static const unsigned char lea[] = { 0x48, 0x8d, 0x3d };
142411ca
L
1181
1182 if (offset < 3 || (offset + 9) > sec->size)
1183 return FALSE;
1184
5c98a14e 1185 if (memcmp (contents + offset - 3, lea, 3) != 0)
142411ca 1186 return FALSE;
5c98a14e
JJ
1187
1188 if (0xe8 != *(contents + offset + 4))
1189 {
1190 if (!ABI_64_P (abfd)
1191 || (offset + 19) > sec->size
1192 || memcmp (contents + offset + 4, "\x48\xb8", 2) != 0
1193 || memcmp (contents + offset + 14, "\x48\x01\xd8\xff\xd0", 5)
1194 != 0)
1195 return FALSE;
1196 largepic = TRUE;
1197 }
142411ca
L
1198 }
1199
351f65ca 1200 r_symndx = htab->r_sym (rel[1].r_info);
142411ca
L
1201 if (r_symndx < symtab_hdr->sh_info)
1202 return FALSE;
1203
1204 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
c4fb387b 1205 /* Use strncmp to check __tls_get_addr since __tls_get_addr
eed180f8 1206 may be versioned. */
142411ca
L
1207 return (h != NULL
1208 && h->root.root.string != NULL
5c98a14e
JJ
1209 && (largepic
1210 ? ELF32_R_TYPE (rel[1].r_info) == R_X86_64_PLTOFF64
1211 : (ELF32_R_TYPE (rel[1].r_info) == R_X86_64_PC32
1212 || ELF32_R_TYPE (rel[1].r_info) == R_X86_64_PLT32))
c4fb387b
L
1213 && (strncmp (h->root.root.string,
1214 "__tls_get_addr", 14) == 0));
142411ca
L
1215
1216 case R_X86_64_GOTTPOFF:
1217 /* Check transition from IE access model:
4a4c5f25
L
1218 mov foo@gottpoff(%rip), %reg
1219 add foo@gottpoff(%rip), %reg
142411ca
L
1220 */
1221
4a4c5f25
L
1222 /* Check REX prefix first. */
1223 if (offset >= 3 && (offset + 4) <= sec->size)
1224 {
1225 val = bfd_get_8 (abfd, contents + offset - 3);
1226 if (val != 0x48 && val != 0x4c)
1227 {
1228 /* X32 may have 0x44 REX prefix or no REX prefix. */
1229 if (ABI_64_P (abfd))
1230 return FALSE;
1231 }
1232 }
1233 else
1234 {
1235 /* X32 may not have any REX prefix. */
1236 if (ABI_64_P (abfd))
1237 return FALSE;
1238 if (offset < 2 || (offset + 3) > sec->size)
1239 return FALSE;
1240 }
142411ca
L
1241
1242 val = bfd_get_8 (abfd, contents + offset - 2);
1243 if (val != 0x8b && val != 0x03)
1244 return FALSE;
1245
1246 val = bfd_get_8 (abfd, contents + offset - 1);
1247 return (val & 0xc7) == 5;
1248
1249 case R_X86_64_GOTPC32_TLSDESC:
1250 /* Check transition from GDesc access model:
1251 leaq x@tlsdesc(%rip), %rax
1252
1253 Make sure it's a leaq adding rip to a 32-bit offset
1254 into any register, although it's probably almost always
1255 going to be rax. */
1256
1257 if (offset < 3 || (offset + 4) > sec->size)
1258 return FALSE;
1259
1260 val = bfd_get_8 (abfd, contents + offset - 3);
1261 if ((val & 0xfb) != 0x48)
1262 return FALSE;
1263
1264 if (bfd_get_8 (abfd, contents + offset - 2) != 0x8d)
1265 return FALSE;
1266
1267 val = bfd_get_8 (abfd, contents + offset - 1);
1268 return (val & 0xc7) == 0x05;
1269
1270 case R_X86_64_TLSDESC_CALL:
1271 /* Check transition from GDesc access model:
1272 call *x@tlsdesc(%rax)
1273 */
1274 if (offset + 2 <= sec->size)
1275 {
1276 /* Make sure that it's a call *x@tlsdesc(%rax). */
fa289a5f
AM
1277 static const unsigned char call[] = { 0xff, 0x10 };
1278 return memcmp (contents + offset, call, 2) == 0;
142411ca
L
1279 }
1280
1281 return FALSE;
1282
1283 default:
1284 abort ();
1285 }
1286}
1287
1288/* Return TRUE if the TLS access transition is OK or no transition
1289 will be performed. Update R_TYPE if there is a transition. */
1290
1291static bfd_boolean
351f65ca
L
1292elf_x86_64_tls_transition (struct bfd_link_info *info, bfd *abfd,
1293 asection *sec, bfd_byte *contents,
1294 Elf_Internal_Shdr *symtab_hdr,
1295 struct elf_link_hash_entry **sym_hashes,
1296 unsigned int *r_type, int tls_type,
1297 const Elf_Internal_Rela *rel,
1298 const Elf_Internal_Rela *relend,
1299 struct elf_link_hash_entry *h,
1300 unsigned long r_symndx)
142411ca
L
1301{
1302 unsigned int from_type = *r_type;
1303 unsigned int to_type = from_type;
1304 bfd_boolean check = TRUE;
1305
bb1cb422
L
1306 /* Skip TLS transition for functions. */
1307 if (h != NULL
1308 && (h->type == STT_FUNC
1309 || h->type == STT_GNU_IFUNC))
1310 return TRUE;
1311
142411ca 1312 switch (from_type)
bffbf940
JJ
1313 {
1314 case R_X86_64_TLSGD:
67a4f2b7
AO
1315 case R_X86_64_GOTPC32_TLSDESC:
1316 case R_X86_64_TLSDESC_CALL:
bffbf940 1317 case R_X86_64_GOTTPOFF:
1d85728f 1318 if (info->executable)
142411ca
L
1319 {
1320 if (h == NULL)
1321 to_type = R_X86_64_TPOFF32;
1322 else
1323 to_type = R_X86_64_GOTTPOFF;
1324 }
1325
351f65ca 1326 /* When we are called from elf_x86_64_relocate_section,
142411ca
L
1327 CONTENTS isn't NULL and there may be additional transitions
1328 based on TLS_TYPE. */
1329 if (contents != NULL)
1330 {
1331 unsigned int new_to_type = to_type;
1332
1d85728f 1333 if (info->executable
142411ca
L
1334 && h != NULL
1335 && h->dynindx == -1
1336 && tls_type == GOT_TLS_IE)
1337 new_to_type = R_X86_64_TPOFF32;
1338
1339 if (to_type == R_X86_64_TLSGD
1340 || to_type == R_X86_64_GOTPC32_TLSDESC
1341 || to_type == R_X86_64_TLSDESC_CALL)
1342 {
1343 if (tls_type == GOT_TLS_IE)
1344 new_to_type = R_X86_64_GOTTPOFF;
1345 }
1346
1347 /* We checked the transition before when we were called from
351f65ca 1348 elf_x86_64_check_relocs. We only want to check the new
142411ca
L
1349 transition which hasn't been checked before. */
1350 check = new_to_type != to_type && from_type == to_type;
1351 to_type = new_to_type;
1352 }
1353
1354 break;
1355
bffbf940 1356 case R_X86_64_TLSLD:
1d85728f 1357 if (info->executable)
142411ca
L
1358 to_type = R_X86_64_TPOFF32;
1359 break;
1360
1361 default:
1362 return TRUE;
bffbf940
JJ
1363 }
1364
142411ca
L
1365 /* Return TRUE if there is no transition. */
1366 if (from_type == to_type)
1367 return TRUE;
1368
1369 /* Check if the transition can be performed. */
1370 if (check
351f65ca
L
1371 && ! elf_x86_64_check_tls_transition (abfd, info, sec, contents,
1372 symtab_hdr, sym_hashes,
1373 from_type, rel, relend))
142411ca 1374 {
2f629d23 1375 reloc_howto_type *from, *to;
4c544807 1376 const char *name;
142411ca 1377
351f65ca
L
1378 from = elf_x86_64_rtype_to_howto (abfd, from_type);
1379 to = elf_x86_64_rtype_to_howto (abfd, to_type);
142411ca 1380
4c544807
L
1381 if (h)
1382 name = h->root.root.string;
1383 else
1384 {
351f65ca 1385 struct elf_x86_64_link_hash_table *htab;
4dfe6ac6 1386
351f65ca 1387 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
1388 if (htab == NULL)
1389 name = "*unknown*";
1390 else
1391 {
1392 Elf_Internal_Sym *isym;
1393
1394 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1395 abfd, r_symndx);
1396 name = bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL);
1397 }
4c544807
L
1398 }
1399
142411ca
L
1400 (*_bfd_error_handler)
1401 (_("%B: TLS transition from %s to %s against `%s' at 0x%lx "
1402 "in section `%A' failed"),
4c544807 1403 abfd, sec, from->name, to->name, name,
142411ca
L
1404 (unsigned long) rel->r_offset);
1405 bfd_set_error (bfd_error_bad_value);
1406 return FALSE;
1407 }
1408
1409 *r_type = to_type;
1410 return TRUE;
bffbf940
JJ
1411}
1412
70256ad8 1413/* Look through the relocs for a section during the first phase, and
c434dee6
AJ
1414 calculate needed space in the global offset table, procedure
1415 linkage table, and dynamic reloc sections. */
70256ad8 1416
b34976b6 1417static bfd_boolean
351f65ca
L
1418elf_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info,
1419 asection *sec,
1420 const Elf_Internal_Rela *relocs)
70256ad8 1421{
351f65ca 1422 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
1423 Elf_Internal_Shdr *symtab_hdr;
1424 struct elf_link_hash_entry **sym_hashes;
70256ad8
AJ
1425 const Elf_Internal_Rela *rel;
1426 const Elf_Internal_Rela *rel_end;
70256ad8
AJ
1427 asection *sreloc;
1428
1049f94e 1429 if (info->relocatable)
b34976b6 1430 return TRUE;
70256ad8 1431
0ffa91dd
NC
1432 BFD_ASSERT (is_x86_64_elf (abfd));
1433
351f65ca 1434 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
1435 if (htab == NULL)
1436 return FALSE;
1437
0ffa91dd 1438 symtab_hdr = &elf_symtab_hdr (abfd);
70256ad8 1439 sym_hashes = elf_sym_hashes (abfd);
70256ad8 1440
c434dee6 1441 sreloc = NULL;
cbe950e9 1442
70256ad8
AJ
1443 rel_end = relocs + sec->reloc_count;
1444 for (rel = relocs; rel < rel_end; rel++)
1445 {
bffbf940 1446 unsigned int r_type;
70256ad8
AJ
1447 unsigned long r_symndx;
1448 struct elf_link_hash_entry *h;
4c544807
L
1449 Elf_Internal_Sym *isym;
1450 const char *name;
06a6a421 1451 bfd_boolean size_reloc;
70256ad8 1452
351f65ca
L
1453 r_symndx = htab->r_sym (rel->r_info);
1454 r_type = ELF32_R_TYPE (rel->r_info);
c434dee6
AJ
1455
1456 if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
1457 {
d003868e
AM
1458 (*_bfd_error_handler) (_("%B: bad symbol index: %d"),
1459 abfd, r_symndx);
b34976b6 1460 return FALSE;
c434dee6
AJ
1461 }
1462
70256ad8 1463 if (r_symndx < symtab_hdr->sh_info)
c25bc9fc
L
1464 {
1465 /* A local symbol. */
c2e61a4e
L
1466 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1467 abfd, r_symndx);
1468 if (isym == NULL)
1469 return FALSE;
c25bc9fc
L
1470
1471 /* Check relocation against local STT_GNU_IFUNC symbol. */
351f65ca 1472 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
c25bc9fc 1473 {
351f65ca
L
1474 h = elf_x86_64_get_local_sym_hash (htab, abfd, rel,
1475 TRUE);
c25bc9fc 1476 if (h == NULL)
c2e61a4e 1477 return FALSE;
6bbec505 1478
c25bc9fc
L
1479 /* Fake a STT_GNU_IFUNC symbol. */
1480 h->type = STT_GNU_IFUNC;
1481 h->def_regular = 1;
1482 h->ref_regular = 1;
1483 h->forced_local = 1;
1484 h->root.type = bfd_link_hash_defined;
1485 }
1486 else
1487 h = NULL;
1488 }
70256ad8 1489 else
71cb9464 1490 {
4c544807 1491 isym = NULL;
71cb9464
L
1492 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1493 while (h->root.type == bfd_link_hash_indirect
1494 || h->root.type == bfd_link_hash_warning)
1495 h = (struct elf_link_hash_entry *) h->root.u.i.link;
c25bc9fc 1496 }
cbe950e9 1497
d1534d16
L
1498 /* Check invalid x32 relocations. */
1499 if (!ABI_64_P (abfd))
1500 switch (r_type)
1501 {
1502 default:
1503 break;
1504
d1534d16
L
1505 case R_X86_64_DTPOFF64:
1506 case R_X86_64_TPOFF64:
1507 case R_X86_64_PC64:
1508 case R_X86_64_GOTOFF64:
1509 case R_X86_64_GOT64:
1510 case R_X86_64_GOTPCREL64:
1511 case R_X86_64_GOTPC64:
1512 case R_X86_64_GOTPLT64:
1513 case R_X86_64_PLTOFF64:
1514 {
1515 if (h)
1516 name = h->root.root.string;
1517 else
1518 name = bfd_elf_sym_name (abfd, symtab_hdr, isym,
1519 NULL);
1520 (*_bfd_error_handler)
1521 (_("%B: relocation %s against symbol `%s' isn't "
1522 "supported in x32 mode"), abfd,
1523 x86_64_elf_howto_table[r_type].name, name);
1524 bfd_set_error (bfd_error_bad_value);
1525 return FALSE;
1526 }
1527 break;
1528 }
1529
c25bc9fc
L
1530 if (h != NULL)
1531 {
cbe950e9
L
1532 /* Create the ifunc sections for static executables. If we
1533 never see an indirect function symbol nor we are building
1534 a static executable, those sections will be empty and
1535 won't appear in output. */
1536 switch (r_type)
1537 {
1538 default:
1539 break;
1540
1541 case R_X86_64_32S:
1542 case R_X86_64_32:
1543 case R_X86_64_64:
1544 case R_X86_64_PC32:
1545 case R_X86_64_PC64:
1546 case R_X86_64_PLT32:
1547 case R_X86_64_GOTPCREL:
1548 case R_X86_64_GOTPCREL64:
9d4057ee
AM
1549 if (htab->elf.dynobj == NULL)
1550 htab->elf.dynobj = abfd;
1551 if (!_bfd_elf_create_ifunc_sections (htab->elf.dynobj, info))
c2e61a4e 1552 return FALSE;
cbe950e9
L
1553 break;
1554 }
1555
ad1e85de
L
1556 /* It is referenced by a non-shared object. */
1557 h->ref_regular = 1;
61315175 1558 h->root.non_ir_ref = 1;
71cb9464 1559 }
70256ad8 1560
351f65ca
L
1561 if (! elf_x86_64_tls_transition (info, abfd, sec, NULL,
1562 symtab_hdr, sym_hashes,
1563 &r_type, GOT_UNKNOWN,
1564 rel, rel_end, h, r_symndx))
c2e61a4e 1565 return FALSE;
142411ca 1566
bffbf940 1567 switch (r_type)
70256ad8 1568 {
bffbf940
JJ
1569 case R_X86_64_TLSLD:
1570 htab->tls_ld_got.refcount += 1;
1571 goto create_got;
1572
1573 case R_X86_64_TPOFF32:
351f65ca 1574 if (!info->executable && ABI_64_P (abfd))
70256ad8 1575 {
09a24cbf 1576 if (h)
4c544807
L
1577 name = h->root.root.string;
1578 else
1579 name = bfd_elf_sym_name (abfd, symtab_hdr, isym,
1580 NULL);
bffbf940 1581 (*_bfd_error_handler)
d003868e
AM
1582 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
1583 abfd,
4c544807 1584 x86_64_elf_howto_table[r_type].name, name);
bffbf940 1585 bfd_set_error (bfd_error_bad_value);
c2e61a4e 1586 return FALSE;
70256ad8 1587 }
bffbf940 1588 break;
c434dee6 1589
bffbf940 1590 case R_X86_64_GOTTPOFF:
1d85728f 1591 if (!info->executable)
bffbf940
JJ
1592 info->flags |= DF_STATIC_TLS;
1593 /* Fall through */
70256ad8 1594
bffbf940
JJ
1595 case R_X86_64_GOT32:
1596 case R_X86_64_GOTPCREL:
1597 case R_X86_64_TLSGD:
7b81dfbb
AJ
1598 case R_X86_64_GOT64:
1599 case R_X86_64_GOTPCREL64:
1600 case R_X86_64_GOTPLT64:
67a4f2b7
AO
1601 case R_X86_64_GOTPC32_TLSDESC:
1602 case R_X86_64_TLSDESC_CALL:
bffbf940
JJ
1603 /* This symbol requires a global offset table entry. */
1604 {
1605 int tls_type, old_tls_type;
1606
1607 switch (r_type)
1608 {
1609 default: tls_type = GOT_NORMAL; break;
1610 case R_X86_64_TLSGD: tls_type = GOT_TLS_GD; break;
1611 case R_X86_64_GOTTPOFF: tls_type = GOT_TLS_IE; break;
67a4f2b7
AO
1612 case R_X86_64_GOTPC32_TLSDESC:
1613 case R_X86_64_TLSDESC_CALL:
1614 tls_type = GOT_TLS_GDESC; break;
bffbf940
JJ
1615 }
1616
1617 if (h != NULL)
1618 {
7b81dfbb
AJ
1619 if (r_type == R_X86_64_GOTPLT64)
1620 {
1621 /* This relocation indicates that we also need
1622 a PLT entry, as this is a function. We don't need
1623 a PLT entry for local symbols. */
1624 h->needs_plt = 1;
1625 h->plt.refcount += 1;
1626 }
bffbf940 1627 h->got.refcount += 1;
351f65ca 1628 old_tls_type = elf_x86_64_hash_entry (h)->tls_type;
bffbf940
JJ
1629 }
1630 else
1631 {
1632 bfd_signed_vma *local_got_refcounts;
1633
1634 /* This is a global offset table entry for a local symbol. */
1635 local_got_refcounts = elf_local_got_refcounts (abfd);
1636 if (local_got_refcounts == NULL)
1637 {
1638 bfd_size_type size;
1639
1640 size = symtab_hdr->sh_info;
67a4f2b7
AO
1641 size *= sizeof (bfd_signed_vma)
1642 + sizeof (bfd_vma) + sizeof (char);
bffbf940
JJ
1643 local_got_refcounts = ((bfd_signed_vma *)
1644 bfd_zalloc (abfd, size));
1645 if (local_got_refcounts == NULL)
c2e61a4e 1646 return FALSE;
bffbf940 1647 elf_local_got_refcounts (abfd) = local_got_refcounts;
351f65ca 1648 elf_x86_64_local_tlsdesc_gotent (abfd)
67a4f2b7 1649 = (bfd_vma *) (local_got_refcounts + symtab_hdr->sh_info);
351f65ca 1650 elf_x86_64_local_got_tls_type (abfd)
67a4f2b7 1651 = (char *) (local_got_refcounts + 2 * symtab_hdr->sh_info);
bffbf940
JJ
1652 }
1653 local_got_refcounts[r_symndx] += 1;
1654 old_tls_type
351f65ca 1655 = elf_x86_64_local_got_tls_type (abfd) [r_symndx];
bffbf940
JJ
1656 }
1657
1658 /* If a TLS symbol is accessed using IE at least once,
1659 there is no point to use dynamic model for it. */
1660 if (old_tls_type != tls_type && old_tls_type != GOT_UNKNOWN
67a4f2b7
AO
1661 && (! GOT_TLS_GD_ANY_P (old_tls_type)
1662 || tls_type != GOT_TLS_IE))
bffbf940 1663 {
67a4f2b7 1664 if (old_tls_type == GOT_TLS_IE && GOT_TLS_GD_ANY_P (tls_type))
bffbf940 1665 tls_type = old_tls_type;
67a4f2b7
AO
1666 else if (GOT_TLS_GD_ANY_P (old_tls_type)
1667 && GOT_TLS_GD_ANY_P (tls_type))
1668 tls_type |= old_tls_type;
bffbf940
JJ
1669 else
1670 {
09a24cbf 1671 if (h)
4c544807
L
1672 name = h->root.root.string;
1673 else
1674 name = bfd_elf_sym_name (abfd, symtab_hdr,
1675 isym, NULL);
bffbf940 1676 (*_bfd_error_handler)
1f7a4e42 1677 (_("%B: '%s' accessed both as normal and thread local symbol"),
4c544807 1678 abfd, name);
68c4a57e 1679 bfd_set_error (bfd_error_bad_value);
c2e61a4e 1680 return FALSE;
bffbf940
JJ
1681 }
1682 }
1683
1684 if (old_tls_type != tls_type)
1685 {
1686 if (h != NULL)
351f65ca 1687 elf_x86_64_hash_entry (h)->tls_type = tls_type;
bffbf940 1688 else
351f65ca 1689 elf_x86_64_local_got_tls_type (abfd) [r_symndx] = tls_type;
bffbf940
JJ
1690 }
1691 }
c434dee6
AJ
1692 /* Fall through */
1693
d6ab8113
JB
1694 case R_X86_64_GOTOFF64:
1695 case R_X86_64_GOTPC32:
7b81dfbb 1696 case R_X86_64_GOTPC64:
bffbf940 1697 create_got:
6de2ae4a 1698 if (htab->elf.sgot == NULL)
c434dee6
AJ
1699 {
1700 if (htab->elf.dynobj == NULL)
1701 htab->elf.dynobj = abfd;
6de2ae4a
L
1702 if (!_bfd_elf_create_got_section (htab->elf.dynobj,
1703 info))
c2e61a4e 1704 return FALSE;
c434dee6 1705 }
70256ad8
AJ
1706 break;
1707
1708 case R_X86_64_PLT32:
1709 /* This symbol requires a procedure linkage table entry. We
407443a3
AJ
1710 actually build the entry in adjust_dynamic_symbol,
1711 because this might be a case of linking PIC code which is
1712 never referenced by a dynamic object, in which case we
1713 don't need to generate a procedure linkage table entry
1714 after all. */
70256ad8
AJ
1715
1716 /* If this is a local symbol, we resolve it directly without
407443a3 1717 creating a procedure linkage table entry. */
70256ad8
AJ
1718 if (h == NULL)
1719 continue;
1720
f5385ebf 1721 h->needs_plt = 1;
51b64d56 1722 h->plt.refcount += 1;
70256ad8
AJ
1723 break;
1724
7b81dfbb
AJ
1725 case R_X86_64_PLTOFF64:
1726 /* This tries to form the 'address' of a function relative
1727 to GOT. For global symbols we need a PLT entry. */
1728 if (h != NULL)
1729 {
1730 h->needs_plt = 1;
1731 h->plt.refcount += 1;
1732 }
1733 goto create_got;
1734
6a3e1bae
L
1735 case R_X86_64_SIZE32:
1736 case R_X86_64_SIZE64:
06a6a421 1737 size_reloc = TRUE;
6a3e1bae
L
1738 goto do_size;
1739
248775ba
L
1740 case R_X86_64_32:
1741 if (!ABI_64_P (abfd))
1742 goto pointer;
cc78d0af
AJ
1743 case R_X86_64_8:
1744 case R_X86_64_16:
70256ad8 1745 case R_X86_64_32S:
1b71fb54
AJ
1746 /* Let's help debug shared library creation. These relocs
1747 cannot be used in shared libs. Don't error out for
1748 sections we don't care about, such as debug sections or
1749 non-constant sections. */
1750 if (info->shared
1751 && (sec->flags & SEC_ALLOC) != 0
1752 && (sec->flags & SEC_READONLY) != 0)
1753 {
09a24cbf 1754 if (h)
4c544807
L
1755 name = h->root.root.string;
1756 else
1757 name = bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL);
1b71fb54 1758 (*_bfd_error_handler)
d003868e 1759 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
4c544807 1760 abfd, x86_64_elf_howto_table[r_type].name, name);
1b71fb54 1761 bfd_set_error (bfd_error_bad_value);
c2e61a4e 1762 return FALSE;
1b71fb54
AJ
1763 }
1764 /* Fall through. */
1765
c434dee6
AJ
1766 case R_X86_64_PC8:
1767 case R_X86_64_PC16:
70256ad8 1768 case R_X86_64_PC32:
d6ab8113 1769 case R_X86_64_PC64:
1b71fb54 1770 case R_X86_64_64:
248775ba 1771pointer:
710ab287 1772 if (h != NULL && info->executable)
c434dee6
AJ
1773 {
1774 /* If this reloc is in a read-only section, we might
1775 need a copy reloc. We can't check reliably at this
1776 stage whether the section is read-only, as input
1777 sections have not yet been mapped to output sections.
1778 Tentatively set the flag for now, and correct in
1779 adjust_dynamic_symbol. */
f5385ebf 1780 h->non_got_ref = 1;
c434dee6
AJ
1781
1782 /* We may need a .plt entry if the function this reloc
1783 refers to is in a shared lib. */
1784 h->plt.refcount += 1;
d6ab8113 1785 if (r_type != R_X86_64_PC32 && r_type != R_X86_64_PC64)
f5385ebf 1786 h->pointer_equality_needed = 1;
c434dee6 1787 }
70256ad8 1788
06a6a421 1789 size_reloc = FALSE;
6a3e1bae 1790do_size:
70256ad8
AJ
1791 /* If we are creating a shared library, and this is a reloc
1792 against a global symbol, or a non PC relative reloc
1793 against a local symbol, then we need to copy the reloc
1794 into the shared library. However, if we are linking with
1795 -Bsymbolic, we do not need to copy a reloc against a
1796 global symbol which is defined in an object we are
407443a3 1797 including in the link (i.e., DEF_REGULAR is set). At
70256ad8
AJ
1798 this point we have not seen all the input files, so it is
1799 possible that DEF_REGULAR is not set now but will be set
c434dee6
AJ
1800 later (it is never cleared). In case of a weak definition,
1801 DEF_REGULAR may be cleared later by a strong definition in
1802 a shared library. We account for that possibility below by
1803 storing information in the relocs_copied field of the hash
1804 table entry. A similar situation occurs when creating
1805 shared libraries and symbol visibility changes render the
1806 symbol local.
1807
1808 If on the other hand, we are creating an executable, we
1809 may need to keep relocations for symbols satisfied by a
1810 dynamic library if we manage to avoid copy relocs for the
0f88be7a 1811 symbol. */
c434dee6
AJ
1812 if ((info->shared
1813 && (sec->flags & SEC_ALLOC) != 0
d8045f23 1814 && (! IS_X86_64_PCREL_TYPE (r_type)
c434dee6 1815 || (h != NULL
55255dae 1816 && (! SYMBOLIC_BIND (info, h)
c434dee6 1817 || h->root.type == bfd_link_hash_defweak
f5385ebf 1818 || !h->def_regular))))
d40d037c
AJ
1819 || (ELIMINATE_COPY_RELOCS
1820 && !info->shared
c434dee6
AJ
1821 && (sec->flags & SEC_ALLOC) != 0
1822 && h != NULL
1823 && (h->root.type == bfd_link_hash_defweak
0f88be7a 1824 || !h->def_regular)))
70256ad8 1825 {
e03a8ed8
L
1826 struct elf_dyn_relocs *p;
1827 struct elf_dyn_relocs **head;
c434dee6
AJ
1828
1829 /* We must copy these reloc types into the output file.
1830 Create a reloc section in dynobj and make room for
1831 this reloc. */
70256ad8
AJ
1832 if (sreloc == NULL)
1833 {
c434dee6
AJ
1834 if (htab->elf.dynobj == NULL)
1835 htab->elf.dynobj = abfd;
1836
83bac4b0 1837 sreloc = _bfd_elf_make_dynamic_reloc_section
82e96e07
L
1838 (sec, htab->elf.dynobj, ABI_64_P (abfd) ? 3 : 2,
1839 abfd, /*rela?*/ TRUE);
70256ad8 1840
70256ad8 1841 if (sreloc == NULL)
c2e61a4e 1842 return FALSE;
70256ad8
AJ
1843 }
1844
c434dee6
AJ
1845 /* If this is a global symbol, we count the number of
1846 relocations we need for this symbol. */
1847 if (h != NULL)
70256ad8 1848 {
351f65ca 1849 head = &((struct elf_x86_64_link_hash_entry *) h)->dyn_relocs;
c434dee6
AJ
1850 }
1851 else
1852 {
1853 /* Track dynamic relocs needed for local syms too.
1854 We really need local syms available to do this
1855 easily. Oh well. */
c434dee6 1856 asection *s;
87d72d41 1857 void **vpp;
87d72d41
AM
1858
1859 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1860 abfd, r_symndx);
1861 if (isym == NULL)
1862 return FALSE;
1863
1864 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
c434dee6 1865 if (s == NULL)
87d72d41 1866 s = sec;
70256ad8 1867
e81d3500
DD
1868 /* Beware of type punned pointers vs strict aliasing
1869 rules. */
1870 vpp = &(elf_section_data (s)->local_dynrel);
e03a8ed8 1871 head = (struct elf_dyn_relocs **)vpp;
c434dee6 1872 }
70256ad8 1873
c434dee6
AJ
1874 p = *head;
1875 if (p == NULL || p->sec != sec)
1876 {
1877 bfd_size_type amt = sizeof *p;
d8045f23 1878
e03a8ed8 1879 p = ((struct elf_dyn_relocs *)
c434dee6 1880 bfd_alloc (htab->elf.dynobj, amt));
70256ad8 1881 if (p == NULL)
c2e61a4e 1882 return FALSE;
c434dee6
AJ
1883 p->next = *head;
1884 *head = p;
1885 p->sec = sec;
1886 p->count = 0;
1887 p->pc_count = 0;
70256ad8 1888 }
c434dee6
AJ
1889
1890 p->count += 1;
06a6a421
L
1891 /* Count size relocation as PC-relative relocation. */
1892 if (IS_X86_64_PCREL_TYPE (r_type) || size_reloc)
c434dee6 1893 p->pc_count += 1;
70256ad8
AJ
1894 }
1895 break;
fe4770f4
AJ
1896
1897 /* This relocation describes the C++ object vtable hierarchy.
1898 Reconstruct it for later use during GC. */
1899 case R_X86_64_GNU_VTINHERIT:
c152c796 1900 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
c2e61a4e 1901 return FALSE;
fe4770f4
AJ
1902 break;
1903
1904 /* This relocation describes which C++ vtable entries are actually
1905 used. Record for later use during GC. */
1906 case R_X86_64_GNU_VTENTRY:
d17e0c6e
JB
1907 BFD_ASSERT (h != NULL);
1908 if (h != NULL
1909 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
c2e61a4e 1910 return FALSE;
fe4770f4 1911 break;
c434dee6
AJ
1912
1913 default:
1914 break;
70256ad8
AJ
1915 }
1916 }
1917
b34976b6 1918 return TRUE;
70256ad8
AJ
1919}
1920
1921/* Return the section that should be marked against GC for a given
407443a3 1922 relocation. */
70256ad8
AJ
1923
1924static asection *
351f65ca
L
1925elf_x86_64_gc_mark_hook (asection *sec,
1926 struct bfd_link_info *info,
1927 Elf_Internal_Rela *rel,
1928 struct elf_link_hash_entry *h,
1929 Elf_Internal_Sym *sym)
70256ad8
AJ
1930{
1931 if (h != NULL)
351f65ca 1932 switch (ELF32_R_TYPE (rel->r_info))
07adf181
AM
1933 {
1934 case R_X86_64_GNU_VTINHERIT:
1935 case R_X86_64_GNU_VTENTRY:
1936 return NULL;
1937 }
1938
1939 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
70256ad8
AJ
1940}
1941
407443a3 1942/* Update the got entry reference counts for the section being removed. */
70256ad8 1943
b34976b6 1944static bfd_boolean
351f65ca
L
1945elf_x86_64_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info,
1946 asection *sec,
1947 const Elf_Internal_Rela *relocs)
70256ad8 1948{
351f65ca 1949 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
1950 Elf_Internal_Shdr *symtab_hdr;
1951 struct elf_link_hash_entry **sym_hashes;
1952 bfd_signed_vma *local_got_refcounts;
1953 const Elf_Internal_Rela *rel, *relend;
c434dee6 1954
7dda2462
TG
1955 if (info->relocatable)
1956 return TRUE;
1957
351f65ca 1958 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
1959 if (htab == NULL)
1960 return FALSE;
1961
c434dee6 1962 elf_section_data (sec)->local_dynrel = NULL;
70256ad8 1963
0ffa91dd 1964 symtab_hdr = &elf_symtab_hdr (abfd);
70256ad8
AJ
1965 sym_hashes = elf_sym_hashes (abfd);
1966 local_got_refcounts = elf_local_got_refcounts (abfd);
1967
351f65ca 1968 htab = elf_x86_64_hash_table (info);
70256ad8
AJ
1969 relend = relocs + sec->reloc_count;
1970 for (rel = relocs; rel < relend; rel++)
26e41594
AM
1971 {
1972 unsigned long r_symndx;
1973 unsigned int r_type;
1974 struct elf_link_hash_entry *h = NULL;
70256ad8 1975
351f65ca 1976 r_symndx = htab->r_sym (rel->r_info);
26e41594
AM
1977 if (r_symndx >= symtab_hdr->sh_info)
1978 {
26e41594 1979 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3eb128b2
AM
1980 while (h->root.type == bfd_link_hash_indirect
1981 || h->root.type == bfd_link_hash_warning)
1982 h = (struct elf_link_hash_entry *) h->root.u.i.link;
26e41594 1983 }
bb1cb422
L
1984 else
1985 {
1986 /* A local symbol. */
1987 Elf_Internal_Sym *isym;
1988
1989 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1990 abfd, r_symndx);
1991
1992 /* Check relocation against local STT_GNU_IFUNC symbol. */
1993 if (isym != NULL
82e96e07 1994 && ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
bb1cb422 1995 {
351f65ca 1996 h = elf_x86_64_get_local_sym_hash (htab, abfd, rel, FALSE);
bb1cb422
L
1997 if (h == NULL)
1998 abort ();
1999 }
2000 }
c434dee6 2001
3db2e7dd
L
2002 if (h)
2003 {
2004 struct elf_x86_64_link_hash_entry *eh;
2005 struct elf_dyn_relocs **pp;
2006 struct elf_dyn_relocs *p;
2007
2008 eh = (struct elf_x86_64_link_hash_entry *) h;
2009
2010 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
2011 if (p->sec == sec)
2012 {
2013 /* Everything must go for SEC. */
2014 *pp = p->next;
2015 break;
2016 }
2017 }
2018
351f65ca
L
2019 r_type = ELF32_R_TYPE (rel->r_info);
2020 if (! elf_x86_64_tls_transition (info, abfd, sec, NULL,
2021 symtab_hdr, sym_hashes,
2022 &r_type, GOT_UNKNOWN,
2023 rel, relend, h, r_symndx))
142411ca
L
2024 return FALSE;
2025
26e41594
AM
2026 switch (r_type)
2027 {
2028 case R_X86_64_TLSLD:
4dfe6ac6
NC
2029 if (htab->tls_ld_got.refcount > 0)
2030 htab->tls_ld_got.refcount -= 1;
26e41594 2031 break;
c434dee6 2032
26e41594 2033 case R_X86_64_TLSGD:
67a4f2b7
AO
2034 case R_X86_64_GOTPC32_TLSDESC:
2035 case R_X86_64_TLSDESC_CALL:
26e41594
AM
2036 case R_X86_64_GOTTPOFF:
2037 case R_X86_64_GOT32:
2038 case R_X86_64_GOTPCREL:
7b81dfbb
AJ
2039 case R_X86_64_GOT64:
2040 case R_X86_64_GOTPCREL64:
2041 case R_X86_64_GOTPLT64:
26e41594
AM
2042 if (h != NULL)
2043 {
7b81dfbb 2044 if (r_type == R_X86_64_GOTPLT64 && h->plt.refcount > 0)
eed180f8 2045 h->plt.refcount -= 1;
26e41594
AM
2046 if (h->got.refcount > 0)
2047 h->got.refcount -= 1;
bb1cb422
L
2048 if (h->type == STT_GNU_IFUNC)
2049 {
2050 if (h->plt.refcount > 0)
2051 h->plt.refcount -= 1;
2052 }
26e41594
AM
2053 }
2054 else if (local_got_refcounts != NULL)
2055 {
2056 if (local_got_refcounts[r_symndx] > 0)
2057 local_got_refcounts[r_symndx] -= 1;
2058 }
2059 break;
c434dee6 2060
26e41594
AM
2061 case R_X86_64_8:
2062 case R_X86_64_16:
2063 case R_X86_64_32:
2064 case R_X86_64_64:
2065 case R_X86_64_32S:
2066 case R_X86_64_PC8:
2067 case R_X86_64_PC16:
2068 case R_X86_64_PC32:
d6ab8113 2069 case R_X86_64_PC64:
1788fc08
L
2070 case R_X86_64_SIZE32:
2071 case R_X86_64_SIZE64:
3db2e7dd
L
2072 if (info->shared
2073 && (h == NULL || h->type != STT_GNU_IFUNC))
26e41594
AM
2074 break;
2075 /* Fall thru */
c434dee6 2076
26e41594 2077 case R_X86_64_PLT32:
7b81dfbb 2078 case R_X86_64_PLTOFF64:
26e41594
AM
2079 if (h != NULL)
2080 {
2081 if (h->plt.refcount > 0)
2082 h->plt.refcount -= 1;
2083 }
2084 break;
70256ad8 2085
26e41594
AM
2086 default:
2087 break;
2088 }
2089 }
70256ad8 2090
b34976b6 2091 return TRUE;
70256ad8
AJ
2092}
2093
2094/* Adjust a symbol defined by a dynamic object and referenced by a
2095 regular object. The current definition is in some section of the
2096 dynamic object, but we're not including those sections. We have to
2097 change the definition to something the rest of the link can
407443a3 2098 understand. */
70256ad8 2099
b34976b6 2100static bfd_boolean
351f65ca
L
2101elf_x86_64_adjust_dynamic_symbol (struct bfd_link_info *info,
2102 struct elf_link_hash_entry *h)
70256ad8 2103{
351f65ca 2104 struct elf_x86_64_link_hash_table *htab;
70256ad8 2105 asection *s;
5ca5bb35
L
2106 struct elf_x86_64_link_hash_entry *eh;
2107 struct elf_dyn_relocs *p;
70256ad8 2108
cbe950e9
L
2109 /* STT_GNU_IFUNC symbol must go through PLT. */
2110 if (h->type == STT_GNU_IFUNC)
2111 {
73bcf233
L
2112 /* All local STT_GNU_IFUNC references must be treate as local
2113 calls via local PLT. */
5ca5bb35
L
2114 if (h->ref_regular
2115 && SYMBOL_CALLS_LOCAL (info, h))
2116 {
73bcf233 2117 bfd_size_type pc_count = 0, count = 0;
5ca5bb35
L
2118 struct elf_dyn_relocs **pp;
2119
2120 eh = (struct elf_x86_64_link_hash_entry *) h;
2121 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2122 {
2123 pc_count += p->pc_count;
2124 p->count -= p->pc_count;
2125 p->pc_count = 0;
73bcf233 2126 count += p->count;
5ca5bb35
L
2127 if (p->count == 0)
2128 *pp = p->next;
2129 else
2130 pp = &p->next;
2131 }
2132
73bcf233 2133 if (pc_count || count)
5ca5bb35
L
2134 {
2135 h->needs_plt = 1;
5ca5bb35 2136 h->non_got_ref = 1;
a5479e5f
L
2137 if (h->plt.refcount <= 0)
2138 h->plt.refcount = 1;
2139 else
2140 h->plt.refcount += 1;
5ca5bb35
L
2141 }
2142 }
2143
cbe950e9
L
2144 if (h->plt.refcount <= 0)
2145 {
2146 h->plt.offset = (bfd_vma) -1;
2147 h->needs_plt = 0;
2148 }
2149 return TRUE;
2150 }
2151
70256ad8
AJ
2152 /* If this is a function, put it in the procedure linkage table. We
2153 will fill in the contents of the procedure linkage table later,
2154 when we know the address of the .got section. */
2155 if (h->type == STT_FUNC
f5385ebf 2156 || h->needs_plt)
70256ad8 2157 {
c434dee6 2158 if (h->plt.refcount <= 0
27482721
AJ
2159 || SYMBOL_CALLS_LOCAL (info, h)
2160 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2161 && h->root.type == bfd_link_hash_undefweak))
70256ad8 2162 {
70256ad8
AJ
2163 /* This case can occur if we saw a PLT32 reloc in an input
2164 file, but the symbol was never referred to by a dynamic
2165 object, or if all references were garbage collected. In
2166 such a case, we don't actually need to build a procedure
2167 linkage table, and we can just do a PC32 reloc instead. */
70256ad8 2168 h->plt.offset = (bfd_vma) -1;
f5385ebf 2169 h->needs_plt = 0;
70256ad8
AJ
2170 }
2171
b34976b6 2172 return TRUE;
70256ad8 2173 }
bbd7ec4a 2174 else
c434dee6
AJ
2175 /* It's possible that we incorrectly decided a .plt reloc was
2176 needed for an R_X86_64_PC32 reloc to a non-function sym in
2177 check_relocs. We can't decide accurately between function and
2178 non-function syms in check-relocs; Objects loaded later in
2179 the link may change h->type. So fix it now. */
bbd7ec4a 2180 h->plt.offset = (bfd_vma) -1;
70256ad8
AJ
2181
2182 /* If this is a weak symbol, and there is a real definition, the
2183 processor independent code will have arranged for us to see the
407443a3 2184 real definition first, and we can just use the same value. */
f6e332e6 2185 if (h->u.weakdef != NULL)
70256ad8 2186 {
f6e332e6
AM
2187 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
2188 || h->u.weakdef->root.type == bfd_link_hash_defweak);
2189 h->root.u.def.section = h->u.weakdef->root.u.def.section;
2190 h->root.u.def.value = h->u.weakdef->root.u.def.value;
d40d037c 2191 if (ELIMINATE_COPY_RELOCS || info->nocopyreloc)
f6e332e6 2192 h->non_got_ref = h->u.weakdef->non_got_ref;
b34976b6 2193 return TRUE;
70256ad8
AJ
2194 }
2195
2196 /* This is a reference to a symbol defined by a dynamic object which
407443a3 2197 is not a function. */
70256ad8
AJ
2198
2199 /* If we are creating a shared library, we must presume that the
2200 only references to the symbol are via the global offset table.
2201 For such cases we need not do anything here; the relocations will
407443a3 2202 be handled correctly by relocate_section. */
70256ad8 2203 if (info->shared)
b34976b6 2204 return TRUE;
70256ad8
AJ
2205
2206 /* If there are no references to this symbol that do not use the
2207 GOT, we don't need to generate a copy reloc. */
f5385ebf 2208 if (!h->non_got_ref)
b34976b6 2209 return TRUE;
70256ad8 2210
c434dee6
AJ
2211 /* If -z nocopyreloc was given, we won't generate them either. */
2212 if (info->nocopyreloc)
2213 {
f5385ebf 2214 h->non_got_ref = 0;
b34976b6 2215 return TRUE;
c434dee6
AJ
2216 }
2217
d40d037c 2218 if (ELIMINATE_COPY_RELOCS)
c434dee6 2219 {
351f65ca 2220 eh = (struct elf_x86_64_link_hash_entry *) h;
d40d037c
AJ
2221 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2222 {
2223 s = p->sec->output_section;
2224 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2225 break;
2226 }
2227
2228 /* If we didn't find any dynamic relocs in read-only sections, then
2229 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
2230 if (p == NULL)
2231 {
f5385ebf 2232 h->non_got_ref = 0;
d40d037c
AJ
2233 return TRUE;
2234 }
c434dee6
AJ
2235 }
2236
70256ad8 2237 /* We must allocate the symbol in our .dynbss section, which will
407443a3 2238 become part of the .bss section of the executable. There will be
70256ad8
AJ
2239 an entry for this symbol in the .dynsym section. The dynamic
2240 object will contain position independent code, so all references
2241 from the dynamic object to this symbol will go through the global
2242 offset table. The dynamic linker will use the .dynsym entry to
2243 determine the address it must put in the global offset table, so
2244 both the dynamic object and the regular object will refer to the
2245 same memory location for the variable. */
2246
351f65ca 2247 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
2248 if (htab == NULL)
2249 return FALSE;
70256ad8
AJ
2250
2251 /* We must generate a R_X86_64_COPY reloc to tell the dynamic linker
2252 to copy the initial value out of the dynamic object and into the
cedb70c5 2253 runtime process image. */
1d7e9d18 2254 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
70256ad8 2255 {
351f65ca
L
2256 const struct elf_backend_data *bed;
2257 bed = get_elf_backend_data (info->output_bfd);
2258 htab->srelbss->size += bed->s->sizeof_rela;
f5385ebf 2259 h->needs_copy = 1;
70256ad8
AJ
2260 }
2261
c434dee6 2262 s = htab->sdynbss;
70256ad8 2263
027297b7 2264 return _bfd_elf_adjust_dynamic_copy (h, s);
70256ad8
AJ
2265}
2266
c434dee6
AJ
2267/* Allocate space in .plt, .got and associated reloc sections for
2268 dynamic relocs. */
2269
b34976b6 2270static bfd_boolean
351f65ca 2271elf_x86_64_allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
c434dee6
AJ
2272{
2273 struct bfd_link_info *info;
351f65ca
L
2274 struct elf_x86_64_link_hash_table *htab;
2275 struct elf_x86_64_link_hash_entry *eh;
e03a8ed8 2276 struct elf_dyn_relocs *p;
351f65ca 2277 const struct elf_backend_data *bed;
eed180f8 2278 unsigned int plt_entry_size;
c434dee6 2279
e92d460e 2280 if (h->root.type == bfd_link_hash_indirect)
b34976b6 2281 return TRUE;
c434dee6 2282
351f65ca 2283 eh = (struct elf_x86_64_link_hash_entry *) h;
e92d460e 2284
c434dee6 2285 info = (struct bfd_link_info *) inf;
351f65ca 2286 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
2287 if (htab == NULL)
2288 return FALSE;
351f65ca 2289 bed = get_elf_backend_data (info->output_bfd);
eed180f8 2290 plt_entry_size = GET_PLT_ENTRY_SIZE (info->output_bfd);
c434dee6 2291
cbe950e9
L
2292 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
2293 here if it is defined and referenced in a non-shared object. */
2294 if (h->type == STT_GNU_IFUNC
2295 && h->def_regular)
e03a8ed8
L
2296 return _bfd_elf_allocate_ifunc_dyn_relocs (info, h,
2297 &eh->dyn_relocs,
eed180f8 2298 plt_entry_size,
7b70956d 2299 plt_entry_size,
e03a8ed8 2300 GOT_ENTRY_SIZE);
cbe950e9
L
2301 else if (htab->elf.dynamic_sections_created
2302 && h->plt.refcount > 0)
c434dee6
AJ
2303 {
2304 /* Make sure this symbol is output as a dynamic symbol.
2305 Undefined weak syms won't yet be marked as dynamic. */
2306 if (h->dynindx == -1
f5385ebf 2307 && !h->forced_local)
c434dee6 2308 {
c152c796 2309 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 2310 return FALSE;
c434dee6
AJ
2311 }
2312
27482721
AJ
2313 if (info->shared
2314 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
c434dee6 2315 {
6de2ae4a 2316 asection *s = htab->elf.splt;
c434dee6
AJ
2317
2318 /* If this is the first .plt entry, make room for the special
2319 first entry. */
eea6121a 2320 if (s->size == 0)
eed180f8 2321 s->size += plt_entry_size;
c434dee6 2322
eea6121a 2323 h->plt.offset = s->size;
c434dee6
AJ
2324
2325 /* If this symbol is not defined in a regular file, and we are
2326 not generating a shared library, then set the symbol to this
2327 location in the .plt. This is required to make function
2328 pointers compare as equal between the normal executable and
2329 the shared library. */
2330 if (! info->shared
f5385ebf 2331 && !h->def_regular)
c434dee6
AJ
2332 {
2333 h->root.u.def.section = s;
2334 h->root.u.def.value = h->plt.offset;
2335 }
2336
2337 /* Make room for this entry. */
eed180f8 2338 s->size += plt_entry_size;
c434dee6
AJ
2339
2340 /* We also need to make an entry in the .got.plt section, which
2341 will be placed in the .got section by the linker script. */
6de2ae4a 2342 htab->elf.sgotplt->size += GOT_ENTRY_SIZE;
c434dee6
AJ
2343
2344 /* We also need to make an entry in the .rela.plt section. */
351f65ca 2345 htab->elf.srelplt->size += bed->s->sizeof_rela;
6de2ae4a 2346 htab->elf.srelplt->reloc_count++;
c434dee6
AJ
2347 }
2348 else
2349 {
2350 h->plt.offset = (bfd_vma) -1;
f5385ebf 2351 h->needs_plt = 0;
c434dee6
AJ
2352 }
2353 }
2354 else
2355 {
2356 h->plt.offset = (bfd_vma) -1;
f5385ebf 2357 h->needs_plt = 0;
c434dee6
AJ
2358 }
2359
67a4f2b7
AO
2360 eh->tlsdesc_got = (bfd_vma) -1;
2361
bffbf940
JJ
2362 /* If R_X86_64_GOTTPOFF symbol is now local to the binary,
2363 make it a R_X86_64_TPOFF32 requiring no GOT entry. */
2364 if (h->got.refcount > 0
1d85728f 2365 && info->executable
bffbf940 2366 && h->dynindx == -1
351f65ca 2367 && elf_x86_64_hash_entry (h)->tls_type == GOT_TLS_IE)
d8045f23
NC
2368 {
2369 h->got.offset = (bfd_vma) -1;
2370 }
bffbf940 2371 else if (h->got.refcount > 0)
c434dee6
AJ
2372 {
2373 asection *s;
b34976b6 2374 bfd_boolean dyn;
351f65ca 2375 int tls_type = elf_x86_64_hash_entry (h)->tls_type;
c434dee6
AJ
2376
2377 /* Make sure this symbol is output as a dynamic symbol.
2378 Undefined weak syms won't yet be marked as dynamic. */
2379 if (h->dynindx == -1
f5385ebf 2380 && !h->forced_local)
c434dee6 2381 {
c152c796 2382 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 2383 return FALSE;
c434dee6
AJ
2384 }
2385
67a4f2b7
AO
2386 if (GOT_TLS_GDESC_P (tls_type))
2387 {
6de2ae4a 2388 eh->tlsdesc_got = htab->elf.sgotplt->size
351f65ca 2389 - elf_x86_64_compute_jump_table_size (htab);
6de2ae4a 2390 htab->elf.sgotplt->size += 2 * GOT_ENTRY_SIZE;
67a4f2b7
AO
2391 h->got.offset = (bfd_vma) -2;
2392 }
2393 if (! GOT_TLS_GDESC_P (tls_type)
2394 || GOT_TLS_GD_P (tls_type))
2395 {
6de2ae4a 2396 s = htab->elf.sgot;
67a4f2b7
AO
2397 h->got.offset = s->size;
2398 s->size += GOT_ENTRY_SIZE;
2399 if (GOT_TLS_GD_P (tls_type))
2400 s->size += GOT_ENTRY_SIZE;
2401 }
c434dee6 2402 dyn = htab->elf.dynamic_sections_created;
bffbf940
JJ
2403 /* R_X86_64_TLSGD needs one dynamic relocation if local symbol
2404 and two if global.
2405 R_X86_64_GOTTPOFF needs one dynamic relocation. */
67a4f2b7 2406 if ((GOT_TLS_GD_P (tls_type) && h->dynindx == -1)
bffbf940 2407 || tls_type == GOT_TLS_IE)
351f65ca 2408 htab->elf.srelgot->size += bed->s->sizeof_rela;
67a4f2b7 2409 else if (GOT_TLS_GD_P (tls_type))
351f65ca 2410 htab->elf.srelgot->size += 2 * bed->s->sizeof_rela;
67a4f2b7
AO
2411 else if (! GOT_TLS_GDESC_P (tls_type)
2412 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2413 || h->root.type != bfd_link_hash_undefweak)
27482721
AJ
2414 && (info->shared
2415 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
351f65ca 2416 htab->elf.srelgot->size += bed->s->sizeof_rela;
67a4f2b7
AO
2417 if (GOT_TLS_GDESC_P (tls_type))
2418 {
351f65ca 2419 htab->elf.srelplt->size += bed->s->sizeof_rela;
67a4f2b7
AO
2420 htab->tlsdesc_plt = (bfd_vma) -1;
2421 }
c434dee6
AJ
2422 }
2423 else
2424 h->got.offset = (bfd_vma) -1;
2425
c434dee6 2426 if (eh->dyn_relocs == NULL)
b34976b6 2427 return TRUE;
c434dee6
AJ
2428
2429 /* In the shared -Bsymbolic case, discard space allocated for
2430 dynamic pc-relative relocs against symbols which turn out to be
2431 defined in regular objects. For the normal shared case, discard
2432 space for pc-relative relocs that have become local due to symbol
2433 visibility changes. */
2434
2435 if (info->shared)
2436 {
27482721
AJ
2437 /* Relocs that use pc_count are those that appear on a call
2438 insn, or certain REL relocs that can generated via assembly.
2439 We want calls to protected symbols to resolve directly to the
2440 function rather than going via the plt. If people want
2441 function pointer comparisons to work as expected then they
2442 should avoid writing weird assembly. */
2443 if (SYMBOL_CALLS_LOCAL (info, h))
c434dee6 2444 {
e03a8ed8 2445 struct elf_dyn_relocs **pp;
c434dee6
AJ
2446
2447 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2448 {
2449 p->count -= p->pc_count;
2450 p->pc_count = 0;
2451 if (p->count == 0)
2452 *pp = p->next;
2453 else
2454 pp = &p->next;
2455 }
2456 }
4e795f50
AM
2457
2458 /* Also discard relocs on undefined weak syms with non-default
2459 visibility. */
22d606e9 2460 if (eh->dyn_relocs != NULL
4e795f50 2461 && h->root.type == bfd_link_hash_undefweak)
22d606e9
AM
2462 {
2463 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2464 eh->dyn_relocs = NULL;
2465
2466 /* Make sure undefined weak symbols are output as a dynamic
2467 symbol in PIEs. */
2468 else if (h->dynindx == -1
d8045f23
NC
2469 && ! h->forced_local
2470 && ! bfd_elf_link_record_dynamic_symbol (info, h))
2471 return FALSE;
22d606e9 2472 }
cbe950e9 2473
d8045f23 2474 }
d40d037c 2475 else if (ELIMINATE_COPY_RELOCS)
c434dee6
AJ
2476 {
2477 /* For the non-shared case, discard space for relocs against
2478 symbols which turn out to need copy relocs or are not
2479 dynamic. */
2480
f5385ebf
AM
2481 if (!h->non_got_ref
2482 && ((h->def_dynamic
2483 && !h->def_regular)
c434dee6
AJ
2484 || (htab->elf.dynamic_sections_created
2485 && (h->root.type == bfd_link_hash_undefweak
2486 || h->root.type == bfd_link_hash_undefined))))
2487 {
2488 /* Make sure this symbol is output as a dynamic symbol.
2489 Undefined weak syms won't yet be marked as dynamic. */
2490 if (h->dynindx == -1
d8045f23
NC
2491 && ! h->forced_local
2492 && ! bfd_elf_link_record_dynamic_symbol (info, h))
2493 return FALSE;
c434dee6
AJ
2494
2495 /* If that succeeded, we know we'll be keeping all the
2496 relocs. */
2497 if (h->dynindx != -1)
2498 goto keep;
2499 }
2500
2501 eh->dyn_relocs = NULL;
2502
2503 keep: ;
2504 }
2505
2506 /* Finally, allocate space. */
2507 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2508 {
e7c33416
NC
2509 asection * sreloc;
2510
cbe950e9 2511 sreloc = elf_section_data (p->sec)->sreloc;
e7c33416
NC
2512
2513 BFD_ASSERT (sreloc != NULL);
2514
351f65ca 2515 sreloc->size += p->count * bed->s->sizeof_rela;
c434dee6
AJ
2516 }
2517
b34976b6 2518 return TRUE;
c434dee6
AJ
2519}
2520
c25bc9fc
L
2521/* Allocate space in .plt, .got and associated reloc sections for
2522 local dynamic relocs. */
2523
2524static bfd_boolean
351f65ca 2525elf_x86_64_allocate_local_dynrelocs (void **slot, void *inf)
c25bc9fc
L
2526{
2527 struct elf_link_hash_entry *h
2528 = (struct elf_link_hash_entry *) *slot;
2529
2530 if (h->type != STT_GNU_IFUNC
2531 || !h->def_regular
2532 || !h->ref_regular
2533 || !h->forced_local
2534 || h->root.type != bfd_link_hash_defined)
2535 abort ();
2536
351f65ca 2537 return elf_x86_64_allocate_dynrelocs (h, inf);
c25bc9fc
L
2538}
2539
c434dee6
AJ
2540/* Find any dynamic relocs that apply to read-only sections. */
2541
b34976b6 2542static bfd_boolean
351f65ca
L
2543elf_x86_64_readonly_dynrelocs (struct elf_link_hash_entry *h,
2544 void * inf)
c434dee6 2545{
351f65ca 2546 struct elf_x86_64_link_hash_entry *eh;
e03a8ed8 2547 struct elf_dyn_relocs *p;
c434dee6 2548
aa715242
L
2549 /* Skip local IFUNC symbols. */
2550 if (h->forced_local && h->type == STT_GNU_IFUNC)
2551 return TRUE;
2552
351f65ca 2553 eh = (struct elf_x86_64_link_hash_entry *) h;
c434dee6
AJ
2554 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2555 {
2556 asection *s = p->sec->output_section;
2557
2558 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2559 {
2560 struct bfd_link_info *info = (struct bfd_link_info *) inf;
2561
2562 info->flags |= DF_TEXTREL;
2563
b70321a2
L
2564 if (info->warn_shared_textrel && info->shared)
2565 info->callbacks->einfo (_("%P: %B: warning: relocation against `%s' in readonly section `%A'.\n"),
2566 p->sec->owner, h->root.root.string,
2567 p->sec);
2568
c434dee6 2569 /* Not an error, just cut short the traversal. */
b34976b6 2570 return FALSE;
c434dee6
AJ
2571 }
2572 }
b34976b6 2573 return TRUE;
c434dee6
AJ
2574}
2575
daa67607
L
2576/* Convert
2577 mov foo@GOTPCREL(%rip), %reg
2578 to
2579 lea foo(%rip), %reg
2580 with the local symbol, foo. */
2581
2582static bfd_boolean
2583elf_x86_64_convert_mov_to_lea (bfd *abfd, asection *sec,
2584 struct bfd_link_info *link_info)
2585{
2586 Elf_Internal_Shdr *symtab_hdr;
2587 Elf_Internal_Rela *internal_relocs;
2588 Elf_Internal_Rela *irel, *irelend;
2589 bfd_byte *contents;
2590 struct elf_x86_64_link_hash_table *htab;
2591 bfd_boolean changed_contents;
2592 bfd_boolean changed_relocs;
2593 bfd_signed_vma *local_got_refcounts;
2594
2595 /* Don't even try to convert non-ELF outputs. */
2596 if (!is_elf_hash_table (link_info->hash))
2597 return FALSE;
2598
fbdc86d9 2599 /* Nothing to do if there are no codes, no relocations or no output. */
daa67607 2600 if ((sec->flags & (SEC_CODE | SEC_RELOC)) != (SEC_CODE | SEC_RELOC)
fbdc86d9
L
2601 || sec->reloc_count == 0
2602 || discarded_section (sec))
daa67607
L
2603 return TRUE;
2604
2605 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2606
2607 /* Load the relocations for this section. */
2608 internal_relocs = (_bfd_elf_link_read_relocs
2609 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
2610 link_info->keep_memory));
2611 if (internal_relocs == NULL)
2612 return FALSE;
2613
2614 htab = elf_x86_64_hash_table (link_info);
2615 changed_contents = FALSE;
2616 changed_relocs = FALSE;
2617 local_got_refcounts = elf_local_got_refcounts (abfd);
2618
2619 /* Get the section contents. */
2620 if (elf_section_data (sec)->this_hdr.contents != NULL)
2621 contents = elf_section_data (sec)->this_hdr.contents;
2622 else
2623 {
2624 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
2625 goto error_return;
2626 }
2627
2628 irelend = internal_relocs + sec->reloc_count;
2629 for (irel = internal_relocs; irel < irelend; irel++)
2630 {
2631 unsigned int r_type = ELF32_R_TYPE (irel->r_info);
2632 unsigned int r_symndx = htab->r_sym (irel->r_info);
2633 unsigned int indx;
2634 struct elf_link_hash_entry *h;
2635
2636 if (r_type != R_X86_64_GOTPCREL)
2637 continue;
2638
2639 /* Get the symbol referred to by the reloc. */
2640 if (r_symndx < symtab_hdr->sh_info)
2641 {
2642 Elf_Internal_Sym *isym;
2643
2644 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
2645 abfd, r_symndx);
2646
2647 /* STT_GNU_IFUNC must keep R_X86_64_GOTPCREL relocation. */
2648 if (ELF_ST_TYPE (isym->st_info) != STT_GNU_IFUNC
2649 && bfd_get_8 (input_bfd,
2650 contents + irel->r_offset - 2) == 0x8b)
2651 {
2652 bfd_put_8 (output_bfd, 0x8d,
2653 contents + irel->r_offset - 2);
2654 irel->r_info = htab->r_info (r_symndx, R_X86_64_PC32);
2655 if (local_got_refcounts != NULL
2656 && local_got_refcounts[r_symndx] > 0)
2657 local_got_refcounts[r_symndx] -= 1;
2658 changed_contents = TRUE;
2659 changed_relocs = TRUE;
2660 }
2661 continue;
2662 }
2663
2664 indx = r_symndx - symtab_hdr->sh_info;
2665 h = elf_sym_hashes (abfd)[indx];
2666 BFD_ASSERT (h != NULL);
2667
2668 while (h->root.type == bfd_link_hash_indirect
2669 || h->root.type == bfd_link_hash_warning)
2670 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2671
3f65f599
L
2672 /* STT_GNU_IFUNC must keep R_X86_64_GOTPCREL relocation. We also
2673 avoid optimizing _DYNAMIC since ld.so may use its link-time
2674 address. */
daa67607
L
2675 if (h->def_regular
2676 && h->type != STT_GNU_IFUNC
9637f6ef 2677 && h != htab->elf.hdynamic
daa67607
L
2678 && SYMBOL_REFERENCES_LOCAL (link_info, h)
2679 && bfd_get_8 (input_bfd,
2680 contents + irel->r_offset - 2) == 0x8b)
2681 {
2682 bfd_put_8 (output_bfd, 0x8d,
2683 contents + irel->r_offset - 2);
2684 irel->r_info = htab->r_info (r_symndx, R_X86_64_PC32);
2685 if (h->got.refcount > 0)
2686 h->got.refcount -= 1;
2687 changed_contents = TRUE;
2688 changed_relocs = TRUE;
2689 }
2690 }
2691
2692 if (contents != NULL
2693 && elf_section_data (sec)->this_hdr.contents != contents)
2694 {
2695 if (!changed_contents && !link_info->keep_memory)
2696 free (contents);
2697 else
2698 {
2699 /* Cache the section contents for elf_link_input_bfd. */
2700 elf_section_data (sec)->this_hdr.contents = contents;
2701 }
2702 }
2703
2704 if (elf_section_data (sec)->relocs != internal_relocs)
2705 {
2706 if (!changed_relocs)
2707 free (internal_relocs);
2708 else
2709 elf_section_data (sec)->relocs = internal_relocs;
2710 }
2711
2712 return TRUE;
2713
2714 error_return:
2715 if (contents != NULL
2716 && elf_section_data (sec)->this_hdr.contents != contents)
2717 free (contents);
2718 if (internal_relocs != NULL
2719 && elf_section_data (sec)->relocs != internal_relocs)
2720 free (internal_relocs);
2721 return FALSE;
2722}
2723
70256ad8
AJ
2724/* Set the sizes of the dynamic sections. */
2725
b34976b6 2726static bfd_boolean
351f65ca
L
2727elf_x86_64_size_dynamic_sections (bfd *output_bfd,
2728 struct bfd_link_info *info)
70256ad8 2729{
351f65ca 2730 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
2731 bfd *dynobj;
2732 asection *s;
b34976b6 2733 bfd_boolean relocs;
c434dee6 2734 bfd *ibfd;
351f65ca 2735 const struct elf_backend_data *bed;
70256ad8 2736
351f65ca 2737 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
2738 if (htab == NULL)
2739 return FALSE;
351f65ca 2740 bed = get_elf_backend_data (output_bfd);
4dfe6ac6 2741
c434dee6
AJ
2742 dynobj = htab->elf.dynobj;
2743 if (dynobj == NULL)
2744 abort ();
70256ad8 2745
c434dee6 2746 if (htab->elf.dynamic_sections_created)
70256ad8
AJ
2747 {
2748 /* Set the contents of the .interp section to the interpreter. */
36af4a4e 2749 if (info->executable)
70256ad8 2750 {
3d4d4302 2751 s = bfd_get_linker_section (dynobj, ".interp");
c434dee6
AJ
2752 if (s == NULL)
2753 abort ();
351f65ca
L
2754 s->size = htab->dynamic_interpreter_size;
2755 s->contents = (unsigned char *) htab->dynamic_interpreter;
70256ad8
AJ
2756 }
2757 }
70256ad8 2758
c434dee6
AJ
2759 /* Set up .got offsets for local syms, and space for local dynamic
2760 relocs. */
2761 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
70256ad8 2762 {
c434dee6
AJ
2763 bfd_signed_vma *local_got;
2764 bfd_signed_vma *end_local_got;
bffbf940 2765 char *local_tls_type;
67a4f2b7 2766 bfd_vma *local_tlsdesc_gotent;
c434dee6
AJ
2767 bfd_size_type locsymcount;
2768 Elf_Internal_Shdr *symtab_hdr;
2769 asection *srel;
70256ad8 2770
0ffa91dd 2771 if (! is_x86_64_elf (ibfd))
70256ad8
AJ
2772 continue;
2773
c434dee6 2774 for (s = ibfd->sections; s != NULL; s = s->next)
70256ad8 2775 {
e03a8ed8 2776 struct elf_dyn_relocs *p;
c434dee6 2777
daa67607
L
2778 if (!elf_x86_64_convert_mov_to_lea (ibfd, s, info))
2779 return FALSE;
2780
e03a8ed8 2781 for (p = (struct elf_dyn_relocs *)
e81d3500 2782 (elf_section_data (s)->local_dynrel);
c434dee6
AJ
2783 p != NULL;
2784 p = p->next)
70256ad8 2785 {
c434dee6
AJ
2786 if (!bfd_is_abs_section (p->sec)
2787 && bfd_is_abs_section (p->sec->output_section))
2788 {
2789 /* Input section has been discarded, either because
2790 it is a copy of a linkonce section or due to
2791 linker script /DISCARD/, so we'll be discarding
2792 the relocs too. */
2793 }
2794 else if (p->count != 0)
2795 {
2796 srel = elf_section_data (p->sec)->sreloc;
351f65ca 2797 srel->size += p->count * bed->s->sizeof_rela;
4b819e1f
L
2798 if ((p->sec->output_section->flags & SEC_READONLY) != 0
2799 && (info->flags & DF_TEXTREL) == 0)
b70321a2
L
2800 {
2801 info->flags |= DF_TEXTREL;
2802 if (info->warn_shared_textrel && info->shared)
2803 info->callbacks->einfo (_("%P: %B: warning: relocation in readonly section `%A'.\n"),
2804 p->sec->owner, p->sec);
b70321a2 2805 }
c434dee6 2806 }
70256ad8
AJ
2807 }
2808 }
c434dee6
AJ
2809
2810 local_got = elf_local_got_refcounts (ibfd);
2811 if (!local_got)
2812 continue;
2813
0ffa91dd 2814 symtab_hdr = &elf_symtab_hdr (ibfd);
c434dee6
AJ
2815 locsymcount = symtab_hdr->sh_info;
2816 end_local_got = local_got + locsymcount;
351f65ca
L
2817 local_tls_type = elf_x86_64_local_got_tls_type (ibfd);
2818 local_tlsdesc_gotent = elf_x86_64_local_tlsdesc_gotent (ibfd);
6de2ae4a
L
2819 s = htab->elf.sgot;
2820 srel = htab->elf.srelgot;
67a4f2b7
AO
2821 for (; local_got < end_local_got;
2822 ++local_got, ++local_tls_type, ++local_tlsdesc_gotent)
70256ad8 2823 {
67a4f2b7 2824 *local_tlsdesc_gotent = (bfd_vma) -1;
c434dee6 2825 if (*local_got > 0)
70256ad8 2826 {
67a4f2b7
AO
2827 if (GOT_TLS_GDESC_P (*local_tls_type))
2828 {
6de2ae4a 2829 *local_tlsdesc_gotent = htab->elf.sgotplt->size
351f65ca 2830 - elf_x86_64_compute_jump_table_size (htab);
6de2ae4a 2831 htab->elf.sgotplt->size += 2 * GOT_ENTRY_SIZE;
67a4f2b7
AO
2832 *local_got = (bfd_vma) -2;
2833 }
2834 if (! GOT_TLS_GDESC_P (*local_tls_type)
2835 || GOT_TLS_GD_P (*local_tls_type))
2836 {
2837 *local_got = s->size;
2838 s->size += GOT_ENTRY_SIZE;
2839 if (GOT_TLS_GD_P (*local_tls_type))
2840 s->size += GOT_ENTRY_SIZE;
2841 }
bffbf940 2842 if (info->shared
67a4f2b7 2843 || GOT_TLS_GD_ANY_P (*local_tls_type)
bffbf940 2844 || *local_tls_type == GOT_TLS_IE)
67a4f2b7
AO
2845 {
2846 if (GOT_TLS_GDESC_P (*local_tls_type))
2847 {
6de2ae4a 2848 htab->elf.srelplt->size
351f65ca 2849 += bed->s->sizeof_rela;
67a4f2b7
AO
2850 htab->tlsdesc_plt = (bfd_vma) -1;
2851 }
2852 if (! GOT_TLS_GDESC_P (*local_tls_type)
2853 || GOT_TLS_GD_P (*local_tls_type))
351f65ca 2854 srel->size += bed->s->sizeof_rela;
67a4f2b7 2855 }
70256ad8
AJ
2856 }
2857 else
c434dee6
AJ
2858 *local_got = (bfd_vma) -1;
2859 }
2860 }
70256ad8 2861
bffbf940
JJ
2862 if (htab->tls_ld_got.refcount > 0)
2863 {
2864 /* Allocate 2 got entries and 1 dynamic reloc for R_X86_64_TLSLD
2865 relocs. */
6de2ae4a
L
2866 htab->tls_ld_got.offset = htab->elf.sgot->size;
2867 htab->elf.sgot->size += 2 * GOT_ENTRY_SIZE;
351f65ca 2868 htab->elf.srelgot->size += bed->s->sizeof_rela;
bffbf940
JJ
2869 }
2870 else
2871 htab->tls_ld_got.offset = -1;
2872
c434dee6
AJ
2873 /* Allocate global sym .plt and .got entries, and space for global
2874 sym dynamic relocs. */
351f65ca 2875 elf_link_hash_traverse (&htab->elf, elf_x86_64_allocate_dynrelocs,
eb4ff4d6 2876 info);
c434dee6 2877
c25bc9fc
L
2878 /* Allocate .plt and .got entries, and space for local symbols. */
2879 htab_traverse (htab->loc_hash_table,
351f65ca 2880 elf_x86_64_allocate_local_dynrelocs,
c25bc9fc
L
2881 info);
2882
67a4f2b7
AO
2883 /* For every jump slot reserved in the sgotplt, reloc_count is
2884 incremented. However, when we reserve space for TLS descriptors,
2885 it's not incremented, so in order to compute the space reserved
2886 for them, it suffices to multiply the reloc count by the jump
e1f98742
L
2887 slot size.
2888
2889 PR ld/13302: We start next_irelative_index at the end of .rela.plt
2890 so that R_X86_64_IRELATIVE entries come last. */
6de2ae4a 2891 if (htab->elf.srelplt)
e1f98742
L
2892 {
2893 htab->sgotplt_jump_table_size
2894 = elf_x86_64_compute_jump_table_size (htab);
2895 htab->next_irelative_index = htab->elf.srelplt->reloc_count - 1;
2896 }
2897 else if (htab->elf.irelplt)
2898 htab->next_irelative_index = htab->elf.irelplt->reloc_count - 1;
67a4f2b7
AO
2899
2900 if (htab->tlsdesc_plt)
2901 {
2902 /* If we're not using lazy TLS relocations, don't generate the
2903 PLT and GOT entries they require. */
2904 if ((info->flags & DF_BIND_NOW))
2905 htab->tlsdesc_plt = 0;
2906 else
2907 {
6de2ae4a
L
2908 htab->tlsdesc_got = htab->elf.sgot->size;
2909 htab->elf.sgot->size += GOT_ENTRY_SIZE;
67a4f2b7
AO
2910 /* Reserve room for the initial entry.
2911 FIXME: we could probably do away with it in this case. */
6de2ae4a 2912 if (htab->elf.splt->size == 0)
eed180f8 2913 htab->elf.splt->size += GET_PLT_ENTRY_SIZE (output_bfd);
6de2ae4a 2914 htab->tlsdesc_plt = htab->elf.splt->size;
eed180f8 2915 htab->elf.splt->size += GET_PLT_ENTRY_SIZE (output_bfd);
67a4f2b7
AO
2916 }
2917 }
2918
a7b16ceb
L
2919 if (htab->elf.sgotplt)
2920 {
2921 /* Don't allocate .got.plt section if there are no GOT nor PLT
eed180f8 2922 entries and there is no refeence to _GLOBAL_OFFSET_TABLE_. */
9d4b2dba
L
2923 if ((htab->elf.hgot == NULL
2924 || !htab->elf.hgot->ref_regular_nonweak)
e28df02b
L
2925 && (htab->elf.sgotplt->size
2926 == get_elf_backend_data (output_bfd)->got_header_size)
a7b16ceb
L
2927 && (htab->elf.splt == NULL
2928 || htab->elf.splt->size == 0)
2929 && (htab->elf.sgot == NULL
2930 || htab->elf.sgot->size == 0)
2931 && (htab->elf.iplt == NULL
2932 || htab->elf.iplt->size == 0)
2933 && (htab->elf.igotplt == NULL
2934 || htab->elf.igotplt->size == 0))
2935 htab->elf.sgotplt->size = 0;
2936 }
2937
9a2a56cc
AM
2938 if (htab->plt_eh_frame != NULL
2939 && htab->elf.splt != NULL
2940 && htab->elf.splt->size != 0
2941 && !bfd_is_abs_section (htab->elf.splt->output_section)
2942 && _bfd_elf_eh_frame_present (info))
2943 {
2944 const struct elf_x86_64_backend_data *arch_data
f8222080 2945 = get_elf_x86_64_arch_data (bed);
9a2a56cc
AM
2946 htab->plt_eh_frame->size = arch_data->eh_frame_plt_size;
2947 }
2948
c434dee6
AJ
2949 /* We now have determined the sizes of the various dynamic sections.
2950 Allocate memory for them. */
b34976b6 2951 relocs = FALSE;
c434dee6
AJ
2952 for (s = dynobj->sections; s != NULL; s = s->next)
2953 {
2954 if ((s->flags & SEC_LINKER_CREATED) == 0)
2955 continue;
2956
6de2ae4a
L
2957 if (s == htab->elf.splt
2958 || s == htab->elf.sgot
2959 || s == htab->elf.sgotplt
2960 || s == htab->elf.iplt
2961 || s == htab->elf.igotplt
9a2a56cc 2962 || s == htab->plt_eh_frame
75ff4589 2963 || s == htab->sdynbss)
c434dee6
AJ
2964 {
2965 /* Strip this section if we don't need it; see the
2966 comment below. */
2967 }
0112cd26 2968 else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela"))
c434dee6 2969 {
6de2ae4a 2970 if (s->size != 0 && s != htab->elf.srelplt)
b34976b6 2971 relocs = TRUE;
c434dee6
AJ
2972
2973 /* We use the reloc_count field as a counter if we need
2974 to copy relocs into the output file. */
6de2ae4a 2975 if (s != htab->elf.srelplt)
67a4f2b7 2976 s->reloc_count = 0;
70256ad8 2977 }
c434dee6 2978 else
70256ad8
AJ
2979 {
2980 /* It's not one of our sections, so don't allocate space. */
2981 continue;
2982 }
2983
eea6121a 2984 if (s->size == 0)
70256ad8 2985 {
c434dee6
AJ
2986 /* If we don't need this section, strip it from the
2987 output file. This is mostly to handle .rela.bss and
2988 .rela.plt. We must create both sections in
2989 create_dynamic_sections, because they must be created
2990 before the linker maps input sections to output
2991 sections. The linker does that before
2992 adjust_dynamic_symbol is called, and it is that
2993 function which decides whether anything needs to go
2994 into these sections. */
2995
8423293d 2996 s->flags |= SEC_EXCLUDE;
70256ad8
AJ
2997 continue;
2998 }
2999
c456f082
AM
3000 if ((s->flags & SEC_HAS_CONTENTS) == 0)
3001 continue;
3002
70256ad8
AJ
3003 /* Allocate memory for the section contents. We use bfd_zalloc
3004 here in case unused entries are not reclaimed before the
3005 section's contents are written out. This should not happen,
3006 but this way if it does, we get a R_X86_64_NONE reloc instead
3007 of garbage. */
eea6121a 3008 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
c434dee6 3009 if (s->contents == NULL)
b34976b6 3010 return FALSE;
70256ad8
AJ
3011 }
3012
e41b3a13 3013 if (htab->plt_eh_frame != NULL
9a2a56cc
AM
3014 && htab->plt_eh_frame->contents != NULL)
3015 {
3016 const struct elf_x86_64_backend_data *arch_data
f8222080 3017 = get_elf_x86_64_arch_data (bed);
9a2a56cc
AM
3018
3019 memcpy (htab->plt_eh_frame->contents,
3020 arch_data->eh_frame_plt, htab->plt_eh_frame->size);
3021 bfd_put_32 (dynobj, htab->elf.splt->size,
3022 htab->plt_eh_frame->contents + PLT_FDE_LEN_OFFSET);
3023 }
e41b3a13 3024
c434dee6 3025 if (htab->elf.dynamic_sections_created)
70256ad8
AJ
3026 {
3027 /* Add some entries to the .dynamic section. We fill in the
351f65ca 3028 values later, in elf_x86_64_finish_dynamic_sections, but we
70256ad8 3029 must add the entries now so that we get the correct size for
407443a3 3030 the .dynamic section. The DT_DEBUG entry is filled in by the
70256ad8 3031 dynamic linker and used by the debugger. */
dc810e39 3032#define add_dynamic_entry(TAG, VAL) \
5a580b3a 3033 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
dc810e39 3034
36af4a4e 3035 if (info->executable)
70256ad8 3036 {
dc810e39 3037 if (!add_dynamic_entry (DT_DEBUG, 0))
b34976b6 3038 return FALSE;
70256ad8
AJ
3039 }
3040
6de2ae4a 3041 if (htab->elf.splt->size != 0)
70256ad8 3042 {
dc810e39
AM
3043 if (!add_dynamic_entry (DT_PLTGOT, 0)
3044 || !add_dynamic_entry (DT_PLTRELSZ, 0)
3045 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
3046 || !add_dynamic_entry (DT_JMPREL, 0))
b34976b6 3047 return FALSE;
67a4f2b7
AO
3048
3049 if (htab->tlsdesc_plt
3050 && (!add_dynamic_entry (DT_TLSDESC_PLT, 0)
3051 || !add_dynamic_entry (DT_TLSDESC_GOT, 0)))
3052 return FALSE;
70256ad8
AJ
3053 }
3054
3055 if (relocs)
3056 {
dc810e39
AM
3057 if (!add_dynamic_entry (DT_RELA, 0)
3058 || !add_dynamic_entry (DT_RELASZ, 0)
351f65ca 3059 || !add_dynamic_entry (DT_RELAENT, bed->s->sizeof_rela))
b34976b6 3060 return FALSE;
70256ad8 3061
c434dee6
AJ
3062 /* If any dynamic relocs apply to a read-only section,
3063 then we need a DT_TEXTREL entry. */
3064 if ((info->flags & DF_TEXTREL) == 0)
eed180f8 3065 elf_link_hash_traverse (&htab->elf,
351f65ca 3066 elf_x86_64_readonly_dynrelocs,
eb4ff4d6 3067 info);
c434dee6
AJ
3068
3069 if ((info->flags & DF_TEXTREL) != 0)
3070 {
3071 if (!add_dynamic_entry (DT_TEXTREL, 0))
b34976b6 3072 return FALSE;
c434dee6 3073 }
70256ad8
AJ
3074 }
3075 }
dc810e39 3076#undef add_dynamic_entry
70256ad8 3077
b34976b6 3078 return TRUE;
70256ad8
AJ
3079}
3080
67a4f2b7 3081static bfd_boolean
351f65ca
L
3082elf_x86_64_always_size_sections (bfd *output_bfd,
3083 struct bfd_link_info *info)
67a4f2b7
AO
3084{
3085 asection *tls_sec = elf_hash_table (info)->tls_sec;
3086
3087 if (tls_sec)
3088 {
3089 struct elf_link_hash_entry *tlsbase;
3090
3091 tlsbase = elf_link_hash_lookup (elf_hash_table (info),
3092 "_TLS_MODULE_BASE_",
3093 FALSE, FALSE, FALSE);
3094
3095 if (tlsbase && tlsbase->type == STT_TLS)
3096 {
351f65ca 3097 struct elf_x86_64_link_hash_table *htab;
67a4f2b7
AO
3098 struct bfd_link_hash_entry *bh = NULL;
3099 const struct elf_backend_data *bed
3100 = get_elf_backend_data (output_bfd);
3101
351f65ca 3102 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
3103 if (htab == NULL)
3104 return FALSE;
3105
67a4f2b7
AO
3106 if (!(_bfd_generic_link_add_one_symbol
3107 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
3108 tls_sec, 0, NULL, FALSE,
3109 bed->collect, &bh)))
3110 return FALSE;
9f03412a 3111
4dfe6ac6 3112 htab->tls_module_base = bh;
9f03412a 3113
67a4f2b7
AO
3114 tlsbase = (struct elf_link_hash_entry *)bh;
3115 tlsbase->def_regular = 1;
3116 tlsbase->other = STV_HIDDEN;
3117 (*bed->elf_backend_hide_symbol) (info, tlsbase, TRUE);
3118 }
3119 }
3120
3121 return TRUE;
3122}
3123
9f03412a
AO
3124/* _TLS_MODULE_BASE_ needs to be treated especially when linking
3125 executables. Rather than setting it to the beginning of the TLS
3126 section, we have to set it to the end. This function may be called
3127 multiple times, it is idempotent. */
3128
3129static void
351f65ca 3130elf_x86_64_set_tls_module_base (struct bfd_link_info *info)
9f03412a 3131{
351f65ca 3132 struct elf_x86_64_link_hash_table *htab;
9f03412a
AO
3133 struct bfd_link_hash_entry *base;
3134
3135 if (!info->executable)
3136 return;
3137
351f65ca 3138 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
3139 if (htab == NULL)
3140 return;
9f03412a 3141
4dfe6ac6
NC
3142 base = htab->tls_module_base;
3143 if (base == NULL)
9f03412a
AO
3144 return;
3145
4dfe6ac6 3146 base->u.def.value = htab->elf.tls_size;
9f03412a
AO
3147}
3148
bffbf940
JJ
3149/* Return the base VMA address which should be subtracted from real addresses
3150 when resolving @dtpoff relocation.
3151 This is PT_TLS segment p_vaddr. */
3152
3153static bfd_vma
351f65ca 3154elf_x86_64_dtpoff_base (struct bfd_link_info *info)
bffbf940 3155{
e1918d23
AM
3156 /* If tls_sec is NULL, we should have signalled an error already. */
3157 if (elf_hash_table (info)->tls_sec == NULL)
bffbf940 3158 return 0;
e1918d23 3159 return elf_hash_table (info)->tls_sec->vma;
bffbf940
JJ
3160}
3161
3162/* Return the relocation value for @tpoff relocation
3163 if STT_TLS virtual address is ADDRESS. */
3164
3165static bfd_vma
351f65ca 3166elf_x86_64_tpoff (struct bfd_link_info *info, bfd_vma address)
bffbf940 3167{
e1918d23 3168 struct elf_link_hash_table *htab = elf_hash_table (info);
7dc98aea
RO
3169 const struct elf_backend_data *bed = get_elf_backend_data (info->output_bfd);
3170 bfd_vma static_tls_size;
bffbf940
JJ
3171
3172 /* If tls_segment is NULL, we should have signalled an error already. */
e1918d23 3173 if (htab->tls_sec == NULL)
bffbf940 3174 return 0;
7dc98aea
RO
3175
3176 /* Consider special static TLS alignment requirements. */
3177 static_tls_size = BFD_ALIGN (htab->tls_size, bed->static_tls_alignment);
3178 return address - static_tls_size - htab->tls_sec->vma;
bffbf940
JJ
3179}
3180
90f487df
L
3181/* Is the instruction before OFFSET in CONTENTS a 32bit relative
3182 branch? */
3183
3184static bfd_boolean
3185is_32bit_relative_branch (bfd_byte *contents, bfd_vma offset)
3186{
3187 /* Opcode Instruction
3188 0xe8 call
3189 0xe9 jump
3190 0x0f 0x8x conditional jump */
3191 return ((offset > 0
3192 && (contents [offset - 1] == 0xe8
3193 || contents [offset - 1] == 0xe9))
3194 || (offset > 1
3195 && contents [offset - 2] == 0x0f
3196 && (contents [offset - 1] & 0xf0) == 0x80));
3197}
3198
8d88c4ca
NC
3199/* Relocate an x86_64 ELF section. */
3200
b34976b6 3201static bfd_boolean
351f65ca
L
3202elf_x86_64_relocate_section (bfd *output_bfd,
3203 struct bfd_link_info *info,
3204 bfd *input_bfd,
3205 asection *input_section,
3206 bfd_byte *contents,
3207 Elf_Internal_Rela *relocs,
3208 Elf_Internal_Sym *local_syms,
3209 asection **local_sections)
8d88c4ca 3210{
351f65ca 3211 struct elf_x86_64_link_hash_table *htab;
8d88c4ca
NC
3212 Elf_Internal_Shdr *symtab_hdr;
3213 struct elf_link_hash_entry **sym_hashes;
3214 bfd_vma *local_got_offsets;
67a4f2b7 3215 bfd_vma *local_tlsdesc_gotents;
c434dee6 3216 Elf_Internal_Rela *rel;
8d88c4ca 3217 Elf_Internal_Rela *relend;
eed180f8 3218 const unsigned int plt_entry_size = GET_PLT_ENTRY_SIZE (info->output_bfd);
8d88c4ca 3219
0ffa91dd
NC
3220 BFD_ASSERT (is_x86_64_elf (input_bfd));
3221
351f65ca 3222 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
3223 if (htab == NULL)
3224 return FALSE;
0ffa91dd 3225 symtab_hdr = &elf_symtab_hdr (input_bfd);
8d88c4ca
NC
3226 sym_hashes = elf_sym_hashes (input_bfd);
3227 local_got_offsets = elf_local_got_offsets (input_bfd);
351f65ca 3228 local_tlsdesc_gotents = elf_x86_64_local_tlsdesc_gotent (input_bfd);
8d88c4ca 3229
351f65ca 3230 elf_x86_64_set_tls_module_base (info);
9f03412a 3231
c434dee6 3232 rel = relocs;
8d88c4ca 3233 relend = relocs + input_section->reloc_count;
c434dee6 3234 for (; rel < relend; rel++)
8d88c4ca 3235 {
bffbf940 3236 unsigned int r_type;
8d88c4ca
NC
3237 reloc_howto_type *howto;
3238 unsigned long r_symndx;
3239 struct elf_link_hash_entry *h;
3240 Elf_Internal_Sym *sym;
3241 asection *sec;
67a4f2b7 3242 bfd_vma off, offplt;
8d88c4ca 3243 bfd_vma relocation;
b34976b6 3244 bfd_boolean unresolved_reloc;
8d88c4ca 3245 bfd_reloc_status_type r;
bffbf940 3246 int tls_type;
cbe950e9 3247 asection *base_got;
1788fc08 3248 bfd_vma st_size;
8d88c4ca 3249
351f65ca 3250 r_type = ELF32_R_TYPE (rel->r_info);
fe4770f4
AJ
3251 if (r_type == (int) R_X86_64_GNU_VTINHERIT
3252 || r_type == (int) R_X86_64_GNU_VTENTRY)
3253 continue;
8d88c4ca 3254
9911c0fc 3255 if (r_type >= (int) R_X86_64_standard)
8da6118f 3256 {
9911c0fc
L
3257 (*_bfd_error_handler)
3258 (_("%B: unrecognized relocation (0x%x) in section `%A'"),
3259 input_bfd, input_section, r_type);
8da6118f 3260 bfd_set_error (bfd_error_bad_value);
b34976b6 3261 return FALSE;
8da6118f 3262 }
8d88c4ca 3263
d7921315 3264 if (r_type != (int) R_X86_64_32
eed180f8 3265 || ABI_64_P (output_bfd))
d7921315
L
3266 howto = x86_64_elf_howto_table + r_type;
3267 else
3268 howto = (x86_64_elf_howto_table
3269 + ARRAY_SIZE (x86_64_elf_howto_table) - 1);
351f65ca 3270 r_symndx = htab->r_sym (rel->r_info);
8d88c4ca
NC
3271 h = NULL;
3272 sym = NULL;
3273 sec = NULL;
b34976b6 3274 unresolved_reloc = FALSE;
8d88c4ca 3275 if (r_symndx < symtab_hdr->sh_info)
8da6118f
KH
3276 {
3277 sym = local_syms + r_symndx;
3278 sec = local_sections[r_symndx];
c434dee6 3279
c25bc9fc
L
3280 relocation = _bfd_elf_rela_local_sym (output_bfd, sym,
3281 &sec, rel);
1788fc08 3282 st_size = sym->st_size;
c25bc9fc
L
3283
3284 /* Relocate against local STT_GNU_IFUNC symbol. */
1f85278f 3285 if (!info->relocatable
351f65ca 3286 && ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
c25bc9fc 3287 {
351f65ca
L
3288 h = elf_x86_64_get_local_sym_hash (htab, input_bfd,
3289 rel, FALSE);
c25bc9fc
L
3290 if (h == NULL)
3291 abort ();
3292
eed180f8 3293 /* Set STT_GNU_IFUNC symbol value. */
c25bc9fc
L
3294 h->root.u.def.value = sym->st_value;
3295 h->root.u.def.section = sec;
3296 }
8da6118f 3297 }
8d88c4ca 3298 else
8da6118f 3299 {
c9736ba0 3300 bfd_boolean warned ATTRIBUTE_UNUSED;
c434dee6 3301
b2a8e766
AM
3302 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
3303 r_symndx, symtab_hdr, sym_hashes,
3304 h, sec, relocation,
3305 unresolved_reloc, warned);
1788fc08 3306 st_size = h->size;
8da6118f 3307 }
ab96bf03 3308
dbaa2011 3309 if (sec != NULL && discarded_section (sec))
0672748a 3310 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
545fd46b 3311 rel, 1, relend, howto, 0, contents);
ab96bf03
AM
3312
3313 if (info->relocatable)
3314 continue;
3315
1788fc08 3316 if (rel->r_addend == 0 && !ABI_64_P (output_bfd))
64d25c44 3317 {
1788fc08
L
3318 if (r_type == R_X86_64_64)
3319 {
3320 /* For x32, treat R_X86_64_64 like R_X86_64_32 and
3321 zero-extend it to 64bit if addend is zero. */
3322 r_type = R_X86_64_32;
3323 memset (contents + rel->r_offset + 4, 0, 4);
3324 }
3325 else if (r_type == R_X86_64_SIZE64)
3326 {
3327 /* For x32, treat R_X86_64_SIZE64 like R_X86_64_SIZE32 and
3328 zero-extend it to 64bit if addend is zero. */
3329 r_type = R_X86_64_SIZE32;
3330 memset (contents + rel->r_offset + 4, 0, 4);
3331 }
64d25c44
L
3332 }
3333
cbe950e9
L
3334 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
3335 it here if it is defined in a non-shared object. */
3336 if (h != NULL
3337 && h->type == STT_GNU_IFUNC
3338 && h->def_regular)
3339 {
3340 asection *plt;
3341 bfd_vma plt_index;
4c544807 3342 const char *name;
cbe950e9
L
3343
3344 if ((input_section->flags & SEC_ALLOC) == 0
3345 || h->plt.offset == (bfd_vma) -1)
3346 abort ();
3347
3348 /* STT_GNU_IFUNC symbol must go through PLT. */
6de2ae4a 3349 plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
cbe950e9
L
3350 relocation = (plt->output_section->vma
3351 + plt->output_offset + h->plt.offset);
3352
3353 switch (r_type)
3354 {
3355 default:
4c544807
L
3356 if (h->root.root.string)
3357 name = h->root.root.string;
3358 else
3359 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3360 NULL);
cbe950e9
L
3361 (*_bfd_error_handler)
3362 (_("%B: relocation %s against STT_GNU_IFUNC "
3363 "symbol `%s' isn't handled by %s"), input_bfd,
3364 x86_64_elf_howto_table[r_type].name,
4c544807 3365 name, __FUNCTION__);
cbe950e9
L
3366 bfd_set_error (bfd_error_bad_value);
3367 return FALSE;
3368
3369 case R_X86_64_32S:
710ab287 3370 if (info->shared)
cbe950e9 3371 abort ();
710ab287
L
3372 goto do_relocation;
3373
248775ba
L
3374 case R_X86_64_32:
3375 if (ABI_64_P (output_bfd))
3376 goto do_relocation;
17672001 3377 /* FALLTHROUGH */
eed180f8 3378 case R_X86_64_64:
710ab287
L
3379 if (rel->r_addend != 0)
3380 {
4c544807
L
3381 if (h->root.root.string)
3382 name = h->root.root.string;
3383 else
3384 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
3385 sym, NULL);
710ab287
L
3386 (*_bfd_error_handler)
3387 (_("%B: relocation %s against STT_GNU_IFUNC "
3388 "symbol `%s' has non-zero addend: %d"),
3389 input_bfd, x86_64_elf_howto_table[r_type].name,
4c544807 3390 name, rel->r_addend);
710ab287
L
3391 bfd_set_error (bfd_error_bad_value);
3392 return FALSE;
3393 }
3394
3395 /* Generate dynamic relcoation only when there is a
c293fa49 3396 non-GOT reference in a shared object. */
710ab287
L
3397 if (info->shared && h->non_got_ref)
3398 {
3399 Elf_Internal_Rela outrel;
710ab287
L
3400 asection *sreloc;
3401
c25bc9fc
L
3402 /* Need a dynamic relocation to get the real function
3403 address. */
710ab287
L
3404 outrel.r_offset = _bfd_elf_section_offset (output_bfd,
3405 info,
3406 input_section,
3407 rel->r_offset);
3408 if (outrel.r_offset == (bfd_vma) -1
3409 || outrel.r_offset == (bfd_vma) -2)
3410 abort ();
3411
3412 outrel.r_offset += (input_section->output_section->vma
3413 + input_section->output_offset);
3414
3415 if (h->dynindx == -1
44c4ea11
L
3416 || h->forced_local
3417 || info->executable)
710ab287
L
3418 {
3419 /* This symbol is resolved locally. */
56b8aada
L
3420 outrel.r_info = htab->r_info (0, R_X86_64_IRELATIVE);
3421 outrel.r_addend = (h->root.u.def.value
3422 + h->root.u.def.section->output_section->vma
3423 + h->root.u.def.section->output_offset);
710ab287
L
3424 }
3425 else
3426 {
351f65ca 3427 outrel.r_info = htab->r_info (h->dynindx, r_type);
710ab287
L
3428 outrel.r_addend = 0;
3429 }
3430
6de2ae4a 3431 sreloc = htab->elf.irelifunc;
351f65ca 3432 elf_append_rela (output_bfd, sreloc, &outrel);
710ab287
L
3433
3434 /* If this reloc is against an external symbol, we
3435 do not want to fiddle with the addend. Otherwise,
3436 we need to include the symbol value so that it
3437 becomes an addend for the dynamic reloc. For an
3438 internal symbol, we have updated addend. */
56b8aada 3439 continue;
710ab287 3440 }
17672001 3441 /* FALLTHROUGH */
cbe950e9
L
3442 case R_X86_64_PC32:
3443 case R_X86_64_PC64:
3444 case R_X86_64_PLT32:
3445 goto do_relocation;
3446
3447 case R_X86_64_GOTPCREL:
3448 case R_X86_64_GOTPCREL64:
6de2ae4a 3449 base_got = htab->elf.sgot;
cbe950e9
L
3450 off = h->got.offset;
3451
7afd84dc 3452 if (base_got == NULL)
cbe950e9
L
3453 abort ();
3454
7afd84dc 3455 if (off == (bfd_vma) -1)
cbe950e9 3456 {
7afd84dc
L
3457 /* We can't use h->got.offset here to save state, or
3458 even just remember the offset, as finish_dynamic_symbol
3459 would use that as offset into .got. */
cbe950e9 3460
6de2ae4a 3461 if (htab->elf.splt != NULL)
7afd84dc 3462 {
eed180f8 3463 plt_index = h->plt.offset / plt_entry_size - 1;
7afd84dc 3464 off = (plt_index + 3) * GOT_ENTRY_SIZE;
6de2ae4a 3465 base_got = htab->elf.sgotplt;
7afd84dc 3466 }
cbe950e9
L
3467 else
3468 {
eed180f8 3469 plt_index = h->plt.offset / plt_entry_size;
7afd84dc 3470 off = plt_index * GOT_ENTRY_SIZE;
6de2ae4a 3471 base_got = htab->elf.igotplt;
7afd84dc
L
3472 }
3473
3474 if (h->dynindx == -1
3475 || h->forced_local
3476 || info->symbolic)
3477 {
eed180f8 3478 /* This references the local defitionion. We must
7afd84dc 3479 initialize this entry in the global offset table.
eed180f8 3480 Since the offset must always be a multiple of 8,
7afd84dc
L
3481 we use the least significant bit to record
3482 whether we have initialized it already.
3483
3484 When doing a dynamic link, we create a .rela.got
3485 relocation entry to initialize the value. This
3486 is done in the finish_dynamic_symbol routine. */
3487 if ((off & 1) != 0)
3488 off &= ~1;
3489 else
3490 {
3491 bfd_put_64 (output_bfd, relocation,
3492 base_got->contents + off);
3493 /* Note that this is harmless for the GOTPLT64
3494 case, as -1 | 1 still is -1. */
3495 h->got.offset |= 1;
3496 }
cbe950e9
L
3497 }
3498 }
3499
3500 relocation = (base_got->output_section->vma
3501 + base_got->output_offset + off);
3502
cbe950e9
L
3503 goto do_relocation;
3504 }
3505 }
3506
70256ad8
AJ
3507 /* When generating a shared object, the relocations handled here are
3508 copied into the output file to be resolved at run time. */
3509 switch (r_type)
3510 {
3511 case R_X86_64_GOT32:
7b81dfbb 3512 case R_X86_64_GOT64:
70256ad8
AJ
3513 /* Relocation is to the entry for this symbol in the global
3514 offset table. */
70256ad8 3515 case R_X86_64_GOTPCREL:
7b81dfbb
AJ
3516 case R_X86_64_GOTPCREL64:
3517 /* Use global offset table entry as symbol value. */
3518 case R_X86_64_GOTPLT64:
3519 /* This is the same as GOT64 for relocation purposes, but
3520 indicates the existence of a PLT entry. The difficulty is,
3521 that we must calculate the GOT slot offset from the PLT
3522 offset, if this symbol got a PLT entry (it was global).
3523 Additionally if it's computed from the PLT entry, then that
3524 GOT offset is relative to .got.plt, not to .got. */
6de2ae4a 3525 base_got = htab->elf.sgot;
7b81dfbb 3526
6de2ae4a 3527 if (htab->elf.sgot == NULL)
c434dee6 3528 abort ();
053579d7 3529
51e0a107 3530 if (h != NULL)
70256ad8 3531 {
b34976b6 3532 bfd_boolean dyn;
c434dee6
AJ
3533
3534 off = h->got.offset;
7b81dfbb 3535 if (h->needs_plt
eed180f8 3536 && h->plt.offset != (bfd_vma)-1
7b81dfbb
AJ
3537 && off == (bfd_vma)-1)
3538 {
3539 /* We can't use h->got.offset here to save
3540 state, or even just remember the offset, as
3541 finish_dynamic_symbol would use that as offset into
3542 .got. */
eed180f8 3543 bfd_vma plt_index = h->plt.offset / plt_entry_size - 1;
7b81dfbb 3544 off = (plt_index + 3) * GOT_ENTRY_SIZE;
6de2ae4a 3545 base_got = htab->elf.sgotplt;
7b81dfbb
AJ
3546 }
3547
c434dee6 3548 dyn = htab->elf.dynamic_sections_created;
51e0a107 3549
27482721 3550 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
51e0a107 3551 || (info->shared
27482721 3552 && SYMBOL_REFERENCES_LOCAL (info, h))
4bc6e03a
AJ
3553 || (ELF_ST_VISIBILITY (h->other)
3554 && h->root.type == bfd_link_hash_undefweak))
51e0a107
JH
3555 {
3556 /* This is actually a static link, or it is a -Bsymbolic
3557 link and the symbol is defined locally, or the symbol
407443a3 3558 was forced to be local because of a version file. We
51e0a107
JH
3559 must initialize this entry in the global offset table.
3560 Since the offset must always be a multiple of 8, we
3561 use the least significant bit to record whether we
3562 have initialized it already.
3563
3564 When doing a dynamic link, we create a .rela.got
407443a3
AJ
3565 relocation entry to initialize the value. This is
3566 done in the finish_dynamic_symbol routine. */
51e0a107
JH
3567 if ((off & 1) != 0)
3568 off &= ~1;
3569 else
3570 {
3571 bfd_put_64 (output_bfd, relocation,
7b81dfbb
AJ
3572 base_got->contents + off);
3573 /* Note that this is harmless for the GOTPLT64 case,
eed180f8 3574 as -1 | 1 still is -1. */
51e0a107
JH
3575 h->got.offset |= 1;
3576 }
3577 }
053579d7 3578 else
b34976b6 3579 unresolved_reloc = FALSE;
70256ad8 3580 }
51e0a107
JH
3581 else
3582 {
c434dee6
AJ
3583 if (local_got_offsets == NULL)
3584 abort ();
51e0a107
JH
3585
3586 off = local_got_offsets[r_symndx];
3587
3588 /* The offset must always be a multiple of 8. We use
407443a3
AJ
3589 the least significant bit to record whether we have
3590 already generated the necessary reloc. */
51e0a107
JH
3591 if ((off & 1) != 0)
3592 off &= ~1;
3593 else
3594 {
c434dee6 3595 bfd_put_64 (output_bfd, relocation,
7b81dfbb 3596 base_got->contents + off);
51e0a107
JH
3597
3598 if (info->shared)
3599 {
947216bf 3600 asection *s;
51e0a107 3601 Elf_Internal_Rela outrel;
70256ad8 3602
51e0a107
JH
3603 /* We need to generate a R_X86_64_RELATIVE reloc
3604 for the dynamic linker. */
6de2ae4a 3605 s = htab->elf.srelgot;
947216bf 3606 if (s == NULL)
c434dee6 3607 abort ();
51e0a107 3608
7b81dfbb
AJ
3609 outrel.r_offset = (base_got->output_section->vma
3610 + base_got->output_offset
51e0a107 3611 + off);
351f65ca 3612 outrel.r_info = htab->r_info (0, R_X86_64_RELATIVE);
51e0a107 3613 outrel.r_addend = relocation;
351f65ca 3614 elf_append_rela (output_bfd, s, &outrel);
51e0a107
JH
3615 }
3616
3617 local_got_offsets[r_symndx] |= 1;
3618 }
51e0a107 3619 }
6a2bda3f 3620
c434dee6
AJ
3621 if (off >= (bfd_vma) -2)
3622 abort ();
3623
7b81dfbb
AJ
3624 relocation = base_got->output_section->vma
3625 + base_got->output_offset + off;
3626 if (r_type != R_X86_64_GOTPCREL && r_type != R_X86_64_GOTPCREL64)
6de2ae4a
L
3627 relocation -= htab->elf.sgotplt->output_section->vma
3628 - htab->elf.sgotplt->output_offset;
c434dee6 3629
70256ad8
AJ
3630 break;
3631
d6ab8113
JB
3632 case R_X86_64_GOTOFF64:
3633 /* Relocation is relative to the start of the global offset
3634 table. */
3635
3636 /* Check to make sure it isn't a protected function symbol
3637 for shared library since it may not be local when used
3638 as function address. */
bdb892b9 3639 if (!info->executable
d6ab8113 3640 && h
bdb892b9 3641 && !SYMBOLIC_BIND (info, h)
d6ab8113
JB
3642 && h->def_regular
3643 && h->type == STT_FUNC
3644 && ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
3645 {
3646 (*_bfd_error_handler)
3647 (_("%B: relocation R_X86_64_GOTOFF64 against protected function `%s' can not be used when making a shared object"),
3648 input_bfd, h->root.root.string);
3649 bfd_set_error (bfd_error_bad_value);
3650 return FALSE;
3651 }
3652
3653 /* Note that sgot is not involved in this
3654 calculation. We always want the start of .got.plt. If we
3655 defined _GLOBAL_OFFSET_TABLE_ in a different way, as is
3656 permitted by the ABI, we might have to change this
3657 calculation. */
6de2ae4a
L
3658 relocation -= htab->elf.sgotplt->output_section->vma
3659 + htab->elf.sgotplt->output_offset;
d6ab8113
JB
3660 break;
3661
3662 case R_X86_64_GOTPC32:
7b81dfbb 3663 case R_X86_64_GOTPC64:
d6ab8113 3664 /* Use global offset table as symbol value. */
6de2ae4a
L
3665 relocation = htab->elf.sgotplt->output_section->vma
3666 + htab->elf.sgotplt->output_offset;
d6ab8113
JB
3667 unresolved_reloc = FALSE;
3668 break;
7b81dfbb
AJ
3669
3670 case R_X86_64_PLTOFF64:
3671 /* Relocation is PLT entry relative to GOT. For local
3672 symbols it's the symbol itself relative to GOT. */
eed180f8 3673 if (h != NULL
7b81dfbb
AJ
3674 /* See PLT32 handling. */
3675 && h->plt.offset != (bfd_vma) -1
6de2ae4a 3676 && htab->elf.splt != NULL)
7b81dfbb 3677 {
6de2ae4a
L
3678 relocation = (htab->elf.splt->output_section->vma
3679 + htab->elf.splt->output_offset
7b81dfbb
AJ
3680 + h->plt.offset);
3681 unresolved_reloc = FALSE;
3682 }
3683
6de2ae4a
L
3684 relocation -= htab->elf.sgotplt->output_section->vma
3685 + htab->elf.sgotplt->output_offset;
7b81dfbb 3686 break;
d6ab8113 3687
70256ad8
AJ
3688 case R_X86_64_PLT32:
3689 /* Relocation is to the entry for this symbol in the
3690 procedure linkage table. */
3691
3692 /* Resolve a PLT32 reloc against a local symbol directly,
407443a3 3693 without using the procedure linkage table. */
70256ad8
AJ
3694 if (h == NULL)
3695 break;
3696
c434dee6 3697 if (h->plt.offset == (bfd_vma) -1
6de2ae4a 3698 || htab->elf.splt == NULL)
70256ad8
AJ
3699 {
3700 /* We didn't make a PLT entry for this symbol. This
407443a3
AJ
3701 happens when statically linking PIC code, or when
3702 using -Bsymbolic. */
70256ad8
AJ
3703 break;
3704 }
3705
6de2ae4a
L
3706 relocation = (htab->elf.splt->output_section->vma
3707 + htab->elf.splt->output_offset
70256ad8 3708 + h->plt.offset);
b34976b6 3709 unresolved_reloc = FALSE;
70256ad8
AJ
3710 break;
3711
1788fc08
L
3712 case R_X86_64_SIZE32:
3713 case R_X86_64_SIZE64:
1788fc08
L
3714 /* Set to symbol size. */
3715 relocation = st_size;
3716 goto direct;
3717
fd8ab9e5
AJ
3718 case R_X86_64_PC8:
3719 case R_X86_64_PC16:
3720 case R_X86_64_PC32:
6610a52d 3721 if (info->shared
ba3bee0b 3722 && (input_section->flags & SEC_ALLOC) != 0
90f487df 3723 && (input_section->flags & SEC_READONLY) != 0
41bed6dd 3724 && h != NULL)
6610a52d 3725 {
41bed6dd
L
3726 bfd_boolean fail = FALSE;
3727 bfd_boolean branch
3728 = (r_type == R_X86_64_PC32
3729 && is_32bit_relative_branch (contents, rel->r_offset));
3730
3731 if (SYMBOL_REFERENCES_LOCAL (info, h))
3732 {
3733 /* Symbol is referenced locally. Make sure it is
3734 defined locally or for a branch. */
3735 fail = !h->def_regular && !branch;
3736 }
90f487df 3737 else
41bed6dd
L
3738 {
3739 /* Symbol isn't referenced locally. We only allow
3740 branch to symbol with non-default visibility. */
3741 fail = (!branch
3742 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT);
3743 }
3744
3745 if (fail)
3746 {
3747 const char *fmt;
3748 const char *v;
3749 const char *pic = "";
3750
3751 switch (ELF_ST_VISIBILITY (h->other))
3752 {
3753 case STV_HIDDEN:
3754 v = _("hidden symbol");
3755 break;
3756 case STV_INTERNAL:
3757 v = _("internal symbol");
3758 break;
3759 case STV_PROTECTED:
3760 v = _("protected symbol");
3761 break;
3762 default:
3763 v = _("symbol");
3764 pic = _("; recompile with -fPIC");
3765 break;
3766 }
3767
3768 if (h->def_regular)
3769 fmt = _("%B: relocation %s against %s `%s' can not be used when making a shared object%s");
3770 else
3771 fmt = _("%B: relocation %s against undefined %s `%s' can not be used when making a shared object%s");
3772
3773 (*_bfd_error_handler) (fmt, input_bfd,
3774 x86_64_elf_howto_table[r_type].name,
3775 v, h->root.root.string, pic);
3776 bfd_set_error (bfd_error_bad_value);
3777 return FALSE;
3778 }
6610a52d
L
3779 }
3780 /* Fall through. */
3781
70256ad8
AJ
3782 case R_X86_64_8:
3783 case R_X86_64_16:
3784 case R_X86_64_32:
d6ab8113 3785 case R_X86_64_PC64:
6b3db546 3786 case R_X86_64_64:
80643fbc 3787 /* FIXME: The ABI says the linker should make sure the value is
407443a3 3788 the same when it's zeroextended to 64 bit. */
c434dee6 3789
1788fc08 3790direct:
b1e24c02 3791 if ((input_section->flags & SEC_ALLOC) == 0)
c434dee6
AJ
3792 break;
3793
3794 if ((info->shared
4bc6e03a
AJ
3795 && (h == NULL
3796 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3797 || h->root.type != bfd_link_hash_undefweak)
1788fc08
L
3798 && ((! IS_X86_64_PCREL_TYPE (r_type)
3799 && r_type != R_X86_64_SIZE32
3800 && r_type != R_X86_64_SIZE64)
d8045f23 3801 || ! SYMBOL_CALLS_LOCAL (info, h)))
d40d037c
AJ
3802 || (ELIMINATE_COPY_RELOCS
3803 && !info->shared
c434dee6
AJ
3804 && h != NULL
3805 && h->dynindx != -1
f5385ebf
AM
3806 && !h->non_got_ref
3807 && ((h->def_dynamic
3808 && !h->def_regular)
c434dee6 3809 || h->root.type == bfd_link_hash_undefweak
0f88be7a 3810 || h->root.type == bfd_link_hash_undefined)))
70256ad8
AJ
3811 {
3812 Elf_Internal_Rela outrel;
b34976b6 3813 bfd_boolean skip, relocate;
c434dee6 3814 asection *sreloc;
70256ad8
AJ
3815
3816 /* When generating a shared object, these relocations
3817 are copied into the output file to be resolved at run
407443a3 3818 time. */
b34976b6
AM
3819 skip = FALSE;
3820 relocate = FALSE;
70256ad8 3821
c629eae0
JJ
3822 outrel.r_offset =
3823 _bfd_elf_section_offset (output_bfd, info, input_section,
c434dee6 3824 rel->r_offset);
c629eae0 3825 if (outrel.r_offset == (bfd_vma) -1)
b34976b6 3826 skip = TRUE;
0fb19cbc 3827 else if (outrel.r_offset == (bfd_vma) -2)
b34976b6 3828 skip = TRUE, relocate = TRUE;
70256ad8
AJ
3829
3830 outrel.r_offset += (input_section->output_section->vma
3831 + input_section->output_offset);
3832
3833 if (skip)
0bb2d96a 3834 memset (&outrel, 0, sizeof outrel);
c434dee6 3835
fd8ab9e5
AJ
3836 /* h->dynindx may be -1 if this symbol was marked to
3837 become local. */
3838 else if (h != NULL
c434dee6 3839 && h->dynindx != -1
d8045f23
NC
3840 && (IS_X86_64_PCREL_TYPE (r_type)
3841 || ! info->shared
3842 || ! SYMBOLIC_BIND (info, h)
3843 || ! h->def_regular))
70256ad8 3844 {
351f65ca 3845 outrel.r_info = htab->r_info (h->dynindx, r_type);
c434dee6 3846 outrel.r_addend = rel->r_addend;
70256ad8
AJ
3847 }
3848 else
3849 {
c434dee6 3850 /* This symbol is local, or marked to become local. */
248775ba 3851 if (r_type == htab->pointer_r_type)
607c0e09 3852 {
b34976b6 3853 relocate = TRUE;
351f65ca 3854 outrel.r_info = htab->r_info (0, R_X86_64_RELATIVE);
607c0e09
AS
3855 outrel.r_addend = relocation + rel->r_addend;
3856 }
64d25c44
L
3857 else if (r_type == R_X86_64_64
3858 && !ABI_64_P (output_bfd))
3859 {
3860 relocate = TRUE;
3861 outrel.r_info = htab->r_info (0,
3862 R_X86_64_RELATIVE64);
3863 outrel.r_addend = relocation + rel->r_addend;
8cf0d2dd
L
3864 /* Check addend overflow. */
3865 if ((outrel.r_addend & 0x80000000)
3866 != (rel->r_addend & 0x80000000))
3867 {
3868 const char *name;
268a8d3a 3869 int addend = rel->r_addend;
8cf0d2dd
L
3870 if (h && h->root.root.string)
3871 name = h->root.root.string;
3872 else
3873 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
3874 sym, NULL);
6f2c9068
L
3875 if (addend < 0)
3876 (*_bfd_error_handler)
268a8d3a 3877 (_("%B: addend -0x%x in relocation %s against "
6f2c9068
L
3878 "symbol `%s' at 0x%lx in section `%A' is "
3879 "out of range"),
3880 input_bfd, input_section, addend,
3881 x86_64_elf_howto_table[r_type].name,
3882 name, (unsigned long) rel->r_offset);
3883 else
3884 (*_bfd_error_handler)
268a8d3a 3885 (_("%B: addend 0x%x in relocation %s against "
6f2c9068
L
3886 "symbol `%s' at 0x%lx in section `%A' is "
3887 "out of range"),
3888 input_bfd, input_section, addend,
3889 x86_64_elf_howto_table[r_type].name,
3890 name, (unsigned long) rel->r_offset);
8cf0d2dd
L
3891 bfd_set_error (bfd_error_bad_value);
3892 return FALSE;
3893 }
64d25c44 3894 }
607c0e09
AS
3895 else
3896 {
3897 long sindx;
3898
8517fae7 3899 if (bfd_is_abs_section (sec))
607c0e09
AS
3900 sindx = 0;
3901 else if (sec == NULL || sec->owner == NULL)
3902 {
3903 bfd_set_error (bfd_error_bad_value);
b34976b6 3904 return FALSE;
607c0e09
AS
3905 }
3906 else
3907 {
3908 asection *osec;
3909
74541ad4
AM
3910 /* We are turning this relocation into one
3911 against a section symbol. It would be
3912 proper to subtract the symbol's value,
3913 osec->vma, from the emitted reloc addend,
3914 but ld.so expects buggy relocs. */
607c0e09
AS
3915 osec = sec->output_section;
3916 sindx = elf_section_data (osec)->dynindx;
74541ad4
AM
3917 if (sindx == 0)
3918 {
3919 asection *oi = htab->elf.text_index_section;
3920 sindx = elf_section_data (oi)->dynindx;
3921 }
3922 BFD_ASSERT (sindx != 0);
607c0e09
AS
3923 }
3924
351f65ca 3925 outrel.r_info = htab->r_info (sindx, r_type);
607c0e09
AS
3926 outrel.r_addend = relocation + rel->r_addend;
3927 }
70256ad8
AJ
3928 }
3929
cbe950e9 3930 sreloc = elf_section_data (input_section)->sreloc;
d8045f23 3931
62d78908
L
3932 if (sreloc == NULL || sreloc->contents == NULL)
3933 {
3934 r = bfd_reloc_notsupported;
3935 goto check_relocation_error;
3936 }
c434dee6 3937
351f65ca 3938 elf_append_rela (output_bfd, sreloc, &outrel);
70256ad8
AJ
3939
3940 /* If this reloc is against an external symbol, we do
3941 not want to fiddle with the addend. Otherwise, we
3942 need to include the symbol value so that it becomes
3943 an addend for the dynamic reloc. */
0f88be7a 3944 if (! relocate)
70256ad8
AJ
3945 continue;
3946 }
3947
3948 break;
3949
bffbf940 3950 case R_X86_64_TLSGD:
67a4f2b7
AO
3951 case R_X86_64_GOTPC32_TLSDESC:
3952 case R_X86_64_TLSDESC_CALL:
bffbf940 3953 case R_X86_64_GOTTPOFF:
bffbf940
JJ
3954 tls_type = GOT_UNKNOWN;
3955 if (h == NULL && local_got_offsets)
351f65ca 3956 tls_type = elf_x86_64_local_got_tls_type (input_bfd) [r_symndx];
bffbf940 3957 else if (h != NULL)
351f65ca 3958 tls_type = elf_x86_64_hash_entry (h)->tls_type;
142411ca 3959
351f65ca
L
3960 if (! elf_x86_64_tls_transition (info, input_bfd,
3961 input_section, contents,
3962 symtab_hdr, sym_hashes,
3963 &r_type, tls_type, rel,
3964 relend, h, r_symndx))
534a31f6 3965 return FALSE;
bffbf940
JJ
3966
3967 if (r_type == R_X86_64_TPOFF32)
3968 {
142411ca
L
3969 bfd_vma roff = rel->r_offset;
3970
bffbf940 3971 BFD_ASSERT (! unresolved_reloc);
142411ca 3972
351f65ca 3973 if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSGD)
bffbf940 3974 {
52bc799a 3975 /* GD->LE transition. For 64bit, change
abcf1d52 3976 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
a3fadc9a 3977 .word 0x6666; rex64; call __tls_get_addr
52bc799a 3978 into:
bffbf940 3979 movq %fs:0, %rax
52bc799a
L
3980 leaq foo@tpoff(%rax), %rax
3981 For 32bit, change
3982 leaq foo@tlsgd(%rip), %rdi
3983 .word 0x6666; rex64; call __tls_get_addr
3984 into:
3985 movl %fs:0, %eax
5c98a14e
JJ
3986 leaq foo@tpoff(%rax), %rax
3987 For largepic, change:
3988 leaq foo@tlsgd(%rip), %rdi
3989 movabsq $__tls_get_addr@pltoff, %rax
3990 addq %rbx, %rax
3991 call *%rax
3992 into:
3993 movq %fs:0, %rax
3994 leaq foo@tpoff(%rax), %rax
3995 nopw 0x0(%rax,%rax,1) */
3996 int largepic = 0;
3997 if (ABI_64_P (output_bfd)
3998 && contents[roff + 5] == (bfd_byte) '\xb8')
3999 {
4000 memcpy (contents + roff - 3,
4001 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80"
4002 "\0\0\0\0\x66\x0f\x1f\x44\0", 22);
4003 largepic = 1;
4004 }
4005 else if (ABI_64_P (output_bfd))
52bc799a
L
4006 memcpy (contents + roff - 4,
4007 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0",
4008 16);
4009 else
4010 memcpy (contents + roff - 3,
4011 "\x64\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0",
4012 15);
eb4ff4d6 4013 bfd_put_32 (output_bfd,
351f65ca 4014 elf_x86_64_tpoff (info, relocation),
5c98a14e
JJ
4015 contents + roff + 8 + largepic);
4016 /* Skip R_X86_64_PC32/R_X86_64_PLT32/R_X86_64_PLTOFF64. */
bffbf940
JJ
4017 rel++;
4018 continue;
4019 }
351f65ca 4020 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_GOTPC32_TLSDESC)
67a4f2b7
AO
4021 {
4022 /* GDesc -> LE transition.
4023 It's originally something like:
4024 leaq x@tlsdesc(%rip), %rax
4025
4026 Change it to:
c9736ba0 4027 movl $x@tpoff, %rax. */
67a4f2b7 4028
c9736ba0 4029 unsigned int val, type;
67a4f2b7 4030
67a4f2b7 4031 type = bfd_get_8 (input_bfd, contents + roff - 3);
67a4f2b7 4032 val = bfd_get_8 (input_bfd, contents + roff - 1);
67a4f2b7
AO
4033 bfd_put_8 (output_bfd, 0x48 | ((type >> 2) & 1),
4034 contents + roff - 3);
4035 bfd_put_8 (output_bfd, 0xc7, contents + roff - 2);
4036 bfd_put_8 (output_bfd, 0xc0 | ((val >> 3) & 7),
4037 contents + roff - 1);
eb4ff4d6 4038 bfd_put_32 (output_bfd,
351f65ca 4039 elf_x86_64_tpoff (info, relocation),
67a4f2b7
AO
4040 contents + roff);
4041 continue;
4042 }
351f65ca 4043 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSDESC_CALL)
67a4f2b7
AO
4044 {
4045 /* GDesc -> LE transition.
4046 It's originally:
4047 call *(%rax)
4048 Turn it into:
142411ca 4049 xchg %ax,%ax. */
10efb593 4050 bfd_put_8 (output_bfd, 0x66, contents + roff);
67a4f2b7
AO
4051 bfd_put_8 (output_bfd, 0x90, contents + roff + 1);
4052 continue;
4053 }
351f65ca 4054 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_GOTTPOFF)
bffbf940 4055 {
bffbf940
JJ
4056 /* IE->LE transition:
4057 Originally it can be one of:
4058 movq foo@gottpoff(%rip), %reg
4059 addq foo@gottpoff(%rip), %reg
4060 We change it into:
4061 movq $foo, %reg
4062 leaq foo(%reg), %reg
4063 addq $foo, %reg. */
142411ca
L
4064
4065 unsigned int val, type, reg;
4066
4067 val = bfd_get_8 (input_bfd, contents + roff - 3);
4068 type = bfd_get_8 (input_bfd, contents + roff - 2);
4069 reg = bfd_get_8 (input_bfd, contents + roff - 1);
bffbf940 4070 reg >>= 3;
bffbf940
JJ
4071 if (type == 0x8b)
4072 {
4073 /* movq */
4074 if (val == 0x4c)
4075 bfd_put_8 (output_bfd, 0x49,
142411ca 4076 contents + roff - 3);
4a4c5f25
L
4077 else if (!ABI_64_P (output_bfd) && val == 0x44)
4078 bfd_put_8 (output_bfd, 0x41,
4079 contents + roff - 3);
bffbf940 4080 bfd_put_8 (output_bfd, 0xc7,
142411ca 4081 contents + roff - 2);
bffbf940 4082 bfd_put_8 (output_bfd, 0xc0 | reg,
142411ca 4083 contents + roff - 1);
bffbf940
JJ
4084 }
4085 else if (reg == 4)
4086 {
4087 /* addq -> addq - addressing with %rsp/%r12 is
4088 special */
4089 if (val == 0x4c)
4090 bfd_put_8 (output_bfd, 0x49,
142411ca 4091 contents + roff - 3);
4a4c5f25
L
4092 else if (!ABI_64_P (output_bfd) && val == 0x44)
4093 bfd_put_8 (output_bfd, 0x41,
4094 contents + roff - 3);
bffbf940 4095 bfd_put_8 (output_bfd, 0x81,
142411ca 4096 contents + roff - 2);
bffbf940 4097 bfd_put_8 (output_bfd, 0xc0 | reg,
142411ca 4098 contents + roff - 1);
bffbf940
JJ
4099 }
4100 else
4101 {
4102 /* addq -> leaq */
4103 if (val == 0x4c)
4104 bfd_put_8 (output_bfd, 0x4d,
142411ca 4105 contents + roff - 3);
4a4c5f25
L
4106 else if (!ABI_64_P (output_bfd) && val == 0x44)
4107 bfd_put_8 (output_bfd, 0x45,
4108 contents + roff - 3);
bffbf940 4109 bfd_put_8 (output_bfd, 0x8d,
142411ca 4110 contents + roff - 2);
bffbf940 4111 bfd_put_8 (output_bfd, 0x80 | reg | (reg << 3),
142411ca 4112 contents + roff - 1);
bffbf940 4113 }
eb4ff4d6 4114 bfd_put_32 (output_bfd,
351f65ca 4115 elf_x86_64_tpoff (info, relocation),
142411ca 4116 contents + roff);
bffbf940
JJ
4117 continue;
4118 }
142411ca
L
4119 else
4120 BFD_ASSERT (FALSE);
bffbf940
JJ
4121 }
4122
6de2ae4a 4123 if (htab->elf.sgot == NULL)
bffbf940
JJ
4124 abort ();
4125
4126 if (h != NULL)
67a4f2b7
AO
4127 {
4128 off = h->got.offset;
351f65ca 4129 offplt = elf_x86_64_hash_entry (h)->tlsdesc_got;
67a4f2b7 4130 }
bffbf940
JJ
4131 else
4132 {
4133 if (local_got_offsets == NULL)
4134 abort ();
4135
4136 off = local_got_offsets[r_symndx];
67a4f2b7 4137 offplt = local_tlsdesc_gotents[r_symndx];
bffbf940
JJ
4138 }
4139
4140 if ((off & 1) != 0)
4141 off &= ~1;
26e41594 4142 else
bffbf940
JJ
4143 {
4144 Elf_Internal_Rela outrel;
bffbf940 4145 int dr_type, indx;
67a4f2b7 4146 asection *sreloc;
bffbf940 4147
6de2ae4a 4148 if (htab->elf.srelgot == NULL)
bffbf940
JJ
4149 abort ();
4150
67a4f2b7
AO
4151 indx = h && h->dynindx != -1 ? h->dynindx : 0;
4152
4153 if (GOT_TLS_GDESC_P (tls_type))
4154 {
351f65ca 4155 outrel.r_info = htab->r_info (indx, R_X86_64_TLSDESC);
67a4f2b7 4156 BFD_ASSERT (htab->sgotplt_jump_table_size + offplt
6de2ae4a
L
4157 + 2 * GOT_ENTRY_SIZE <= htab->elf.sgotplt->size);
4158 outrel.r_offset = (htab->elf.sgotplt->output_section->vma
4159 + htab->elf.sgotplt->output_offset
67a4f2b7
AO
4160 + offplt
4161 + htab->sgotplt_jump_table_size);
6de2ae4a 4162 sreloc = htab->elf.srelplt;
67a4f2b7 4163 if (indx == 0)
351f65ca 4164 outrel.r_addend = relocation - elf_x86_64_dtpoff_base (info);
67a4f2b7
AO
4165 else
4166 outrel.r_addend = 0;
351f65ca 4167 elf_append_rela (output_bfd, sreloc, &outrel);
67a4f2b7
AO
4168 }
4169
6de2ae4a 4170 sreloc = htab->elf.srelgot;
67a4f2b7 4171
6de2ae4a
L
4172 outrel.r_offset = (htab->elf.sgot->output_section->vma
4173 + htab->elf.sgot->output_offset + off);
bffbf940 4174
67a4f2b7 4175 if (GOT_TLS_GD_P (tls_type))
bffbf940 4176 dr_type = R_X86_64_DTPMOD64;
67a4f2b7
AO
4177 else if (GOT_TLS_GDESC_P (tls_type))
4178 goto dr_done;
bffbf940
JJ
4179 else
4180 dr_type = R_X86_64_TPOFF64;
4181
6de2ae4a 4182 bfd_put_64 (output_bfd, 0, htab->elf.sgot->contents + off);
bffbf940 4183 outrel.r_addend = 0;
67a4f2b7
AO
4184 if ((dr_type == R_X86_64_TPOFF64
4185 || dr_type == R_X86_64_TLSDESC) && indx == 0)
351f65ca
L
4186 outrel.r_addend = relocation - elf_x86_64_dtpoff_base (info);
4187 outrel.r_info = htab->r_info (indx, dr_type);
bffbf940 4188
351f65ca 4189 elf_append_rela (output_bfd, sreloc, &outrel);
bffbf940 4190
67a4f2b7 4191 if (GOT_TLS_GD_P (tls_type))
bffbf940
JJ
4192 {
4193 if (indx == 0)
4194 {
d40d037c 4195 BFD_ASSERT (! unresolved_reloc);
bffbf940 4196 bfd_put_64 (output_bfd,
351f65ca 4197 relocation - elf_x86_64_dtpoff_base (info),
6de2ae4a 4198 htab->elf.sgot->contents + off + GOT_ENTRY_SIZE);
bffbf940
JJ
4199 }
4200 else
4201 {
4202 bfd_put_64 (output_bfd, 0,
6de2ae4a 4203 htab->elf.sgot->contents + off + GOT_ENTRY_SIZE);
351f65ca 4204 outrel.r_info = htab->r_info (indx,
bffbf940
JJ
4205 R_X86_64_DTPOFF64);
4206 outrel.r_offset += GOT_ENTRY_SIZE;
351f65ca 4207 elf_append_rela (output_bfd, sreloc,
464d3bd4 4208 &outrel);
bffbf940
JJ
4209 }
4210 }
4211
67a4f2b7 4212 dr_done:
bffbf940
JJ
4213 if (h != NULL)
4214 h->got.offset |= 1;
4215 else
4216 local_got_offsets[r_symndx] |= 1;
4217 }
4218
67a4f2b7
AO
4219 if (off >= (bfd_vma) -2
4220 && ! GOT_TLS_GDESC_P (tls_type))
bffbf940 4221 abort ();
351f65ca 4222 if (r_type == ELF32_R_TYPE (rel->r_info))
bffbf940 4223 {
67a4f2b7
AO
4224 if (r_type == R_X86_64_GOTPC32_TLSDESC
4225 || r_type == R_X86_64_TLSDESC_CALL)
6de2ae4a
L
4226 relocation = htab->elf.sgotplt->output_section->vma
4227 + htab->elf.sgotplt->output_offset
67a4f2b7
AO
4228 + offplt + htab->sgotplt_jump_table_size;
4229 else
6de2ae4a
L
4230 relocation = htab->elf.sgot->output_section->vma
4231 + htab->elf.sgot->output_offset + off;
b34976b6 4232 unresolved_reloc = FALSE;
bffbf940 4233 }
142411ca 4234 else
67a4f2b7 4235 {
142411ca 4236 bfd_vma roff = rel->r_offset;
67a4f2b7 4237
351f65ca 4238 if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSGD)
142411ca 4239 {
52bc799a 4240 /* GD->IE transition. For 64bit, change
142411ca
L
4241 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
4242 .word 0x6666; rex64; call __tls_get_addr@plt
52bc799a 4243 into:
142411ca 4244 movq %fs:0, %rax
52bc799a
L
4245 addq foo@gottpoff(%rip), %rax
4246 For 32bit, change
4247 leaq foo@tlsgd(%rip), %rdi
4248 .word 0x6666; rex64; call __tls_get_addr@plt
4249 into:
4250 movl %fs:0, %eax
5c98a14e
JJ
4251 addq foo@gottpoff(%rip), %rax
4252 For largepic, change:
4253 leaq foo@tlsgd(%rip), %rdi
4254 movabsq $__tls_get_addr@pltoff, %rax
4255 addq %rbx, %rax
4256 call *%rax
4257 into:
4258 movq %fs:0, %rax
4259 addq foo@gottpoff(%rax), %rax
4260 nopw 0x0(%rax,%rax,1) */
4261 int largepic = 0;
4262 if (ABI_64_P (output_bfd)
4263 && contents[roff + 5] == (bfd_byte) '\xb8')
4264 {
4265 memcpy (contents + roff - 3,
4266 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05"
4267 "\0\0\0\0\x66\x0f\x1f\x44\0", 22);
4268 largepic = 1;
4269 }
4270 else if (ABI_64_P (output_bfd))
52bc799a
L
4271 memcpy (contents + roff - 4,
4272 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0",
4273 16);
4274 else
4275 memcpy (contents + roff - 3,
4276 "\x64\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0",
4277 15);
142411ca 4278
6de2ae4a
L
4279 relocation = (htab->elf.sgot->output_section->vma
4280 + htab->elf.sgot->output_offset + off
142411ca 4281 - roff
5c98a14e 4282 - largepic
142411ca
L
4283 - input_section->output_section->vma
4284 - input_section->output_offset
4285 - 12);
4286 bfd_put_32 (output_bfd, relocation,
5c98a14e
JJ
4287 contents + roff + 8 + largepic);
4288 /* Skip R_X86_64_PLT32/R_X86_64_PLTOFF64. */
142411ca
L
4289 rel++;
4290 continue;
4291 }
351f65ca 4292 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_GOTPC32_TLSDESC)
142411ca
L
4293 {
4294 /* GDesc -> IE transition.
4295 It's originally something like:
4296 leaq x@tlsdesc(%rip), %rax
67a4f2b7 4297
142411ca 4298 Change it to:
c9736ba0 4299 movq x@gottpoff(%rip), %rax # before xchg %ax,%ax. */
67a4f2b7 4300
142411ca
L
4301 /* Now modify the instruction as appropriate. To
4302 turn a leaq into a movq in the form we use it, it
4303 suffices to change the second byte from 0x8d to
4304 0x8b. */
4305 bfd_put_8 (output_bfd, 0x8b, contents + roff - 2);
4306
4307 bfd_put_32 (output_bfd,
6de2ae4a
L
4308 htab->elf.sgot->output_section->vma
4309 + htab->elf.sgot->output_offset + off
142411ca
L
4310 - rel->r_offset
4311 - input_section->output_section->vma
4312 - input_section->output_offset
4313 - 4,
4314 contents + roff);
4315 continue;
4316 }
351f65ca 4317 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSDESC_CALL)
142411ca
L
4318 {
4319 /* GDesc -> IE transition.
4320 It's originally:
4321 call *(%rax)
4322
4323 Change it to:
c9736ba0 4324 xchg %ax, %ax. */
142411ca 4325
142411ca
L
4326 bfd_put_8 (output_bfd, 0x66, contents + roff);
4327 bfd_put_8 (output_bfd, 0x90, contents + roff + 1);
4328 continue;
4329 }
4330 else
4331 BFD_ASSERT (FALSE);
67a4f2b7 4332 }
bffbf940
JJ
4333 break;
4334
4335 case R_X86_64_TLSLD:
351f65ca
L
4336 if (! elf_x86_64_tls_transition (info, input_bfd,
4337 input_section, contents,
4338 symtab_hdr, sym_hashes,
4339 &r_type, GOT_UNKNOWN,
4340 rel, relend, h, r_symndx))
142411ca 4341 return FALSE;
a3fadc9a 4342
142411ca
L
4343 if (r_type != R_X86_64_TLSLD)
4344 {
bffbf940 4345 /* LD->LE transition:
a3fadc9a 4346 leaq foo@tlsld(%rip), %rdi; call __tls_get_addr.
52bc799a
L
4347 For 64bit, we change it into:
4348 .word 0x6666; .byte 0x66; movq %fs:0, %rax.
4349 For 32bit, we change it into:
5c98a14e
JJ
4350 nopl 0x0(%rax); movl %fs:0, %eax.
4351 For largepic, change:
4352 leaq foo@tlsgd(%rip), %rdi
4353 movabsq $__tls_get_addr@pltoff, %rax
4354 addq %rbx, %rax
4355 call *%rax
4356 into:
4357 data32 data32 data32 nopw %cs:0x0(%rax,%rax,1)
4358 movq %fs:0, %eax */
142411ca
L
4359
4360 BFD_ASSERT (r_type == R_X86_64_TPOFF32);
5c98a14e
JJ
4361 if (ABI_64_P (output_bfd)
4362 && contents[rel->r_offset + 5] == (bfd_byte) '\xb8')
4363 memcpy (contents + rel->r_offset - 3,
4364 "\x66\x66\x66\x66\x2e\x0f\x1f\x84\0\0\0\0\0"
4365 "\x64\x48\x8b\x04\x25\0\0\0", 22);
4366 else if (ABI_64_P (output_bfd))
52bc799a
L
4367 memcpy (contents + rel->r_offset - 3,
4368 "\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0", 12);
4369 else
4370 memcpy (contents + rel->r_offset - 3,
4371 "\x0f\x1f\x40\x00\x64\x8b\x04\x25\0\0\0", 12);
5c98a14e 4372 /* Skip R_X86_64_PC32/R_X86_64_PLT32/R_X86_64_PLTOFF64. */
bffbf940
JJ
4373 rel++;
4374 continue;
4375 }
4376
6de2ae4a 4377 if (htab->elf.sgot == NULL)
bffbf940
JJ
4378 abort ();
4379
4380 off = htab->tls_ld_got.offset;
4381 if (off & 1)
4382 off &= ~1;
4383 else
4384 {
4385 Elf_Internal_Rela outrel;
bffbf940 4386
6de2ae4a 4387 if (htab->elf.srelgot == NULL)
bffbf940
JJ
4388 abort ();
4389
6de2ae4a
L
4390 outrel.r_offset = (htab->elf.sgot->output_section->vma
4391 + htab->elf.sgot->output_offset + off);
bffbf940
JJ
4392
4393 bfd_put_64 (output_bfd, 0,
6de2ae4a 4394 htab->elf.sgot->contents + off);
bffbf940 4395 bfd_put_64 (output_bfd, 0,
6de2ae4a 4396 htab->elf.sgot->contents + off + GOT_ENTRY_SIZE);
351f65ca 4397 outrel.r_info = htab->r_info (0, R_X86_64_DTPMOD64);
bffbf940 4398 outrel.r_addend = 0;
351f65ca 4399 elf_append_rela (output_bfd, htab->elf.srelgot,
464d3bd4 4400 &outrel);
bffbf940
JJ
4401 htab->tls_ld_got.offset |= 1;
4402 }
6de2ae4a
L
4403 relocation = htab->elf.sgot->output_section->vma
4404 + htab->elf.sgot->output_offset + off;
b34976b6 4405 unresolved_reloc = FALSE;
bffbf940
JJ
4406 break;
4407
4408 case R_X86_64_DTPOFF32:
1d85728f 4409 if (!info->executable|| (input_section->flags & SEC_CODE) == 0)
351f65ca 4410 relocation -= elf_x86_64_dtpoff_base (info);
bffbf940 4411 else
351f65ca 4412 relocation = elf_x86_64_tpoff (info, relocation);
bffbf940
JJ
4413 break;
4414
4415 case R_X86_64_TPOFF32:
6769d501 4416 case R_X86_64_TPOFF64:
9b769489 4417 BFD_ASSERT (info->executable);
351f65ca 4418 relocation = elf_x86_64_tpoff (info, relocation);
bffbf940
JJ
4419 break;
4420
a69ed7f7
L
4421 case R_X86_64_DTPOFF64:
4422 BFD_ASSERT ((input_section->flags & SEC_CODE) == 0);
4423 relocation -= elf_x86_64_dtpoff_base (info);
4424 break;
4425
70256ad8
AJ
4426 default:
4427 break;
4428 }
8d88c4ca 4429
239e1f3a
AM
4430 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
4431 because such sections are not SEC_ALLOC and thus ld.so will
4432 not process them. */
c434dee6 4433 if (unresolved_reloc
239e1f3a 4434 && !((input_section->flags & SEC_DEBUGGING) != 0
1d5316ab
AM
4435 && h->def_dynamic)
4436 && _bfd_elf_section_offset (output_bfd, info, input_section,
4437 rel->r_offset) != (bfd_vma) -1)
a040981f
L
4438 {
4439 (*_bfd_error_handler)
4440 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
4441 input_bfd,
4442 input_section,
4443 (long) rel->r_offset,
4444 howto->name,
4445 h->root.root.string);
4446 return FALSE;
4447 }
c434dee6 4448
cbe950e9 4449do_relocation:
8d88c4ca 4450 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
c434dee6
AJ
4451 contents, rel->r_offset,
4452 relocation, rel->r_addend);
8d88c4ca 4453
62d78908 4454check_relocation_error:
8d88c4ca 4455 if (r != bfd_reloc_ok)
8da6118f 4456 {
c434dee6
AJ
4457 const char *name;
4458
4459 if (h != NULL)
4460 name = h->root.root.string;
4461 else
8da6118f 4462 {
c434dee6
AJ
4463 name = bfd_elf_string_from_elf_section (input_bfd,
4464 symtab_hdr->sh_link,
4465 sym->st_name);
4466 if (name == NULL)
b34976b6 4467 return FALSE;
c434dee6
AJ
4468 if (*name == '\0')
4469 name = bfd_section_name (input_bfd, sec);
4470 }
4471
4472 if (r == bfd_reloc_overflow)
4473 {
c434dee6 4474 if (! ((*info->callbacks->reloc_overflow)
dfeffb9f
L
4475 (info, (h ? &h->root : NULL), name, howto->name,
4476 (bfd_vma) 0, input_bfd, input_section,
4477 rel->r_offset)))
b34976b6 4478 return FALSE;
c434dee6
AJ
4479 }
4480 else
4481 {
4482 (*_bfd_error_handler)
bb95161d 4483 (_("%B(%A+0x%lx): reloc against `%s': error %d"),
d003868e 4484 input_bfd, input_section,
c434dee6 4485 (long) rel->r_offset, name, (int) r);
b34976b6 4486 return FALSE;
8da6118f
KH
4487 }
4488 }
8d88c4ca 4489 }
70256ad8 4490
b34976b6 4491 return TRUE;
70256ad8
AJ
4492}
4493
4494/* Finish up dynamic symbol handling. We set the contents of various
4495 dynamic sections here. */
4496
b34976b6 4497static bfd_boolean
351f65ca
L
4498elf_x86_64_finish_dynamic_symbol (bfd *output_bfd,
4499 struct bfd_link_info *info,
4500 struct elf_link_hash_entry *h,
220cf809 4501 Elf_Internal_Sym *sym ATTRIBUTE_UNUSED)
70256ad8 4502{
351f65ca 4503 struct elf_x86_64_link_hash_table *htab;
eed180f8
RM
4504 const struct elf_x86_64_backend_data *const abed
4505 = get_elf_x86_64_backend_data (output_bfd);
70256ad8 4506
351f65ca 4507 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
4508 if (htab == NULL)
4509 return FALSE;
70256ad8
AJ
4510
4511 if (h->plt.offset != (bfd_vma) -1)
4512 {
70256ad8
AJ
4513 bfd_vma plt_index;
4514 bfd_vma got_offset;
4515 Elf_Internal_Rela rela;
947216bf 4516 bfd_byte *loc;
cbe950e9 4517 asection *plt, *gotplt, *relplt;
351f65ca 4518 const struct elf_backend_data *bed;
cbe950e9
L
4519
4520 /* When building a static executable, use .iplt, .igot.plt and
4521 .rela.iplt sections for STT_GNU_IFUNC symbols. */
6de2ae4a 4522 if (htab->elf.splt != NULL)
cbe950e9 4523 {
6de2ae4a
L
4524 plt = htab->elf.splt;
4525 gotplt = htab->elf.sgotplt;
4526 relplt = htab->elf.srelplt;
cbe950e9
L
4527 }
4528 else
4529 {
6de2ae4a
L
4530 plt = htab->elf.iplt;
4531 gotplt = htab->elf.igotplt;
4532 relplt = htab->elf.irelplt;
cbe950e9 4533 }
70256ad8
AJ
4534
4535 /* This symbol has an entry in the procedure linkage table. Set
407443a3 4536 it up. */
cbe950e9
L
4537 if ((h->dynindx == -1
4538 && !((h->forced_local || info->executable)
4539 && h->def_regular
4540 && h->type == STT_GNU_IFUNC))
4541 || plt == NULL
4542 || gotplt == NULL
4543 || relplt == NULL)
cec7f46a 4544 abort ();
70256ad8
AJ
4545
4546 /* Get the index in the procedure linkage table which
4547 corresponds to this symbol. This is the index of this symbol
4548 in all the symbols for which we are making plt entries. The
cbe950e9 4549 first entry in the procedure linkage table is reserved.
6bbec505 4550
cbe950e9 4551 Get the offset into the .got table of the entry that
407443a3 4552 corresponds to this function. Each .got entry is GOT_ENTRY_SIZE
cbe950e9
L
4553 bytes. The first three are reserved for the dynamic linker.
4554
4555 For static executables, we don't reserve anything. */
4556
6de2ae4a 4557 if (plt == htab->elf.splt)
cbe950e9 4558 {
eed180f8 4559 got_offset = h->plt.offset / abed->plt_entry_size - 1;
e1f98742 4560 got_offset = (got_offset + 3) * GOT_ENTRY_SIZE;
cbe950e9
L
4561 }
4562 else
4563 {
eed180f8 4564 got_offset = h->plt.offset / abed->plt_entry_size;
e1f98742 4565 got_offset = got_offset * GOT_ENTRY_SIZE;
cbe950e9 4566 }
70256ad8
AJ
4567
4568 /* Fill in the entry in the procedure linkage table. */
eed180f8
RM
4569 memcpy (plt->contents + h->plt.offset, abed->plt_entry,
4570 abed->plt_entry_size);
4571
4572 /* Insert the relocation positions of the plt section. */
4573
4574 /* Put offset the PC-relative instruction referring to the GOT entry,
4575 subtracting the size of that instruction. */
653165cc 4576 bfd_put_32 (output_bfd,
eed180f8
RM
4577 (gotplt->output_section->vma
4578 + gotplt->output_offset
4579 + got_offset
4580 - plt->output_section->vma
4581 - plt->output_offset
4582 - h->plt.offset
4583 - abed->plt_got_insn_size),
4584 plt->contents + h->plt.offset + abed->plt_got_offset);
cbe950e9 4585
653165cc 4586 /* Fill in the entry in the global offset table, initially this
eed180f8 4587 points to the second part of the PLT entry. */
cbe950e9
L
4588 bfd_put_64 (output_bfd, (plt->output_section->vma
4589 + plt->output_offset
eed180f8 4590 + h->plt.offset + abed->plt_lazy_offset),
cbe950e9 4591 gotplt->contents + got_offset);
70256ad8
AJ
4592
4593 /* Fill in the entry in the .rela.plt section. */
cbe950e9
L
4594 rela.r_offset = (gotplt->output_section->vma
4595 + gotplt->output_offset
70256ad8 4596 + got_offset);
cbe950e9
L
4597 if (h->dynindx == -1
4598 || ((info->executable
4599 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
4600 && h->def_regular
4601 && h->type == STT_GNU_IFUNC))
4602 {
4603 /* If an STT_GNU_IFUNC symbol is locally defined, generate
4604 R_X86_64_IRELATIVE instead of R_X86_64_JUMP_SLOT. */
351f65ca 4605 rela.r_info = htab->r_info (0, R_X86_64_IRELATIVE);
cbe950e9
L
4606 rela.r_addend = (h->root.u.def.value
4607 + h->root.u.def.section->output_section->vma
4608 + h->root.u.def.section->output_offset);
e1f98742
L
4609 /* R_X86_64_IRELATIVE comes last. */
4610 plt_index = htab->next_irelative_index--;
cbe950e9
L
4611 }
4612 else
4613 {
351f65ca 4614 rela.r_info = htab->r_info (h->dynindx, R_X86_64_JUMP_SLOT);
cbe950e9 4615 rela.r_addend = 0;
e1f98742
L
4616 plt_index = htab->next_jump_slot_index++;
4617 }
4618
4619 /* Don't fill PLT entry for static executables. */
4620 if (plt == htab->elf.splt)
4621 {
4622 /* Put relocation index. */
4623 bfd_put_32 (output_bfd, plt_index,
eed180f8 4624 plt->contents + h->plt.offset + abed->plt_reloc_offset);
e1f98742 4625 /* Put offset for jmp .PLT0. */
eed180f8
RM
4626 bfd_put_32 (output_bfd, - (h->plt.offset + abed->plt_plt_insn_end),
4627 plt->contents + h->plt.offset + abed->plt_plt_offset);
cbe950e9 4628 }
351f65ca
L
4629
4630 bed = get_elf_backend_data (output_bfd);
4631 loc = relplt->contents + plt_index * bed->s->sizeof_rela;
82e96e07 4632 bed->s->swap_reloca_out (output_bfd, &rela, loc);
70256ad8 4633
f5385ebf 4634 if (!h->def_regular)
70256ad8
AJ
4635 {
4636 /* Mark the symbol as undefined, rather than as defined in
47a9f7b3
JJ
4637 the .plt section. Leave the value if there were any
4638 relocations where pointer equality matters (this is a clue
c434dee6
AJ
4639 for the dynamic linker, to make function pointer
4640 comparisons work between an application and shared
47a9f7b3
JJ
4641 library), otherwise set it to zero. If a function is only
4642 called from a binary, there is no need to slow down
4643 shared libraries because of that. */
70256ad8 4644 sym->st_shndx = SHN_UNDEF;
f5385ebf 4645 if (!h->pointer_equality_needed)
47a9f7b3 4646 sym->st_value = 0;
70256ad8
AJ
4647 }
4648 }
4649
bffbf940 4650 if (h->got.offset != (bfd_vma) -1
351f65ca
L
4651 && ! GOT_TLS_GD_ANY_P (elf_x86_64_hash_entry (h)->tls_type)
4652 && elf_x86_64_hash_entry (h)->tls_type != GOT_TLS_IE)
053579d7 4653 {
053579d7
AJ
4654 Elf_Internal_Rela rela;
4655
4656 /* This symbol has an entry in the global offset table. Set it
bffbf940 4657 up. */
6de2ae4a 4658 if (htab->elf.sgot == NULL || htab->elf.srelgot == NULL)
c434dee6 4659 abort ();
053579d7 4660
6de2ae4a
L
4661 rela.r_offset = (htab->elf.sgot->output_section->vma
4662 + htab->elf.sgot->output_offset
dc810e39 4663 + (h->got.offset &~ (bfd_vma) 1));
053579d7
AJ
4664
4665 /* If this is a static link, or it is a -Bsymbolic link and the
4666 symbol is defined locally or was forced to be local because
4667 of a version file, we just want to emit a RELATIVE reloc.
4668 The entry in the global offset table will already have been
4669 initialized in the relocate_section function. */
710ab287 4670 if (h->def_regular
0018b0a3
L
4671 && h->type == STT_GNU_IFUNC)
4672 {
710ab287
L
4673 if (info->shared)
4674 {
4675 /* Generate R_X86_64_GLOB_DAT. */
4676 goto do_glob_dat;
4677 }
4678 else
4679 {
90d60710
L
4680 asection *plt;
4681
710ab287
L
4682 if (!h->pointer_equality_needed)
4683 abort ();
4684
4685 /* For non-shared object, we can't use .got.plt, which
4686 contains the real function addres if we need pointer
4687 equality. We load the GOT entry with the PLT entry. */
90d60710 4688 plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
710ab287
L
4689 bfd_put_64 (output_bfd, (plt->output_section->vma
4690 + plt->output_offset
4691 + h->plt.offset),
6de2ae4a 4692 htab->elf.sgot->contents + h->got.offset);
710ab287
L
4693 return TRUE;
4694 }
0018b0a3
L
4695 }
4696 else if (info->shared
4697 && SYMBOL_REFERENCES_LOCAL (info, h))
053579d7 4698 {
41bed6dd
L
4699 if (!h->def_regular)
4700 return FALSE;
cc78d0af 4701 BFD_ASSERT((h->got.offset & 1) != 0);
351f65ca 4702 rela.r_info = htab->r_info (0, R_X86_64_RELATIVE);
053579d7
AJ
4703 rela.r_addend = (h->root.u.def.value
4704 + h->root.u.def.section->output_section->vma
4705 + h->root.u.def.section->output_offset);
4706 }
4707 else
4708 {
4709 BFD_ASSERT((h->got.offset & 1) == 0);
710ab287 4710do_glob_dat:
c434dee6 4711 bfd_put_64 (output_bfd, (bfd_vma) 0,
6de2ae4a 4712 htab->elf.sgot->contents + h->got.offset);
351f65ca 4713 rela.r_info = htab->r_info (h->dynindx, R_X86_64_GLOB_DAT);
053579d7
AJ
4714 rela.r_addend = 0;
4715 }
4716
351f65ca 4717 elf_append_rela (output_bfd, htab->elf.srelgot, &rela);
053579d7
AJ
4718 }
4719
f5385ebf 4720 if (h->needs_copy)
70256ad8 4721 {
70256ad8
AJ
4722 Elf_Internal_Rela rela;
4723
4724 /* This symbol needs a copy reloc. Set it up. */
4725
c434dee6
AJ
4726 if (h->dynindx == -1
4727 || (h->root.type != bfd_link_hash_defined
4728 && h->root.type != bfd_link_hash_defweak)
4729 || htab->srelbss == NULL)
4730 abort ();
70256ad8
AJ
4731
4732 rela.r_offset = (h->root.u.def.value
4733 + h->root.u.def.section->output_section->vma
4734 + h->root.u.def.section->output_offset);
351f65ca 4735 rela.r_info = htab->r_info (h->dynindx, R_X86_64_COPY);
70256ad8 4736 rela.r_addend = 0;
351f65ca 4737 elf_append_rela (output_bfd, htab->srelbss, &rela);
70256ad8
AJ
4738 }
4739
b34976b6 4740 return TRUE;
70256ad8
AJ
4741}
4742
c25bc9fc
L
4743/* Finish up local dynamic symbol handling. We set the contents of
4744 various dynamic sections here. */
4745
4746static bfd_boolean
351f65ca 4747elf_x86_64_finish_local_dynamic_symbol (void **slot, void *inf)
c25bc9fc
L
4748{
4749 struct elf_link_hash_entry *h
4750 = (struct elf_link_hash_entry *) *slot;
4751 struct bfd_link_info *info
eed180f8 4752 = (struct bfd_link_info *) inf;
c25bc9fc 4753
351f65ca 4754 return elf_x86_64_finish_dynamic_symbol (info->output_bfd,
c25bc9fc
L
4755 info, h, NULL);
4756}
4757
c434dee6
AJ
4758/* Used to decide how to sort relocs in an optimal manner for the
4759 dynamic linker, before writing them out. */
4760
4761static enum elf_reloc_type_class
7e612e98
AM
4762elf_x86_64_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
4763 const asection *rel_sec ATTRIBUTE_UNUSED,
4764 const Elf_Internal_Rela *rela)
c434dee6 4765{
351f65ca 4766 switch ((int) ELF32_R_TYPE (rela->r_info))
c434dee6
AJ
4767 {
4768 case R_X86_64_RELATIVE:
1da80baa 4769 case R_X86_64_RELATIVE64:
c434dee6
AJ
4770 return reloc_class_relative;
4771 case R_X86_64_JUMP_SLOT:
4772 return reloc_class_plt;
4773 case R_X86_64_COPY:
4774 return reloc_class_copy;
4775 default:
4776 return reloc_class_normal;
4777 }
4778}
4779
70256ad8
AJ
4780/* Finish up the dynamic sections. */
4781
b34976b6 4782static bfd_boolean
351f65ca
L
4783elf_x86_64_finish_dynamic_sections (bfd *output_bfd,
4784 struct bfd_link_info *info)
70256ad8 4785{
351f65ca 4786 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
4787 bfd *dynobj;
4788 asection *sdyn;
eed180f8
RM
4789 const struct elf_x86_64_backend_data *const abed
4790 = get_elf_x86_64_backend_data (output_bfd);
70256ad8 4791
351f65ca 4792 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
4793 if (htab == NULL)
4794 return FALSE;
4795
c434dee6 4796 dynobj = htab->elf.dynobj;
3d4d4302 4797 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
70256ad8 4798
c434dee6 4799 if (htab->elf.dynamic_sections_created)
70256ad8 4800 {
82e96e07
L
4801 bfd_byte *dyncon, *dynconend;
4802 const struct elf_backend_data *bed;
4803 bfd_size_type sizeof_dyn;
70256ad8 4804
6de2ae4a 4805 if (sdyn == NULL || htab->elf.sgot == NULL)
c434dee6 4806 abort ();
70256ad8 4807
82e96e07
L
4808 bed = get_elf_backend_data (dynobj);
4809 sizeof_dyn = bed->s->sizeof_dyn;
4810 dyncon = sdyn->contents;
4811 dynconend = sdyn->contents + sdyn->size;
4812 for (; dyncon < dynconend; dyncon += sizeof_dyn)
70256ad8
AJ
4813 {
4814 Elf_Internal_Dyn dyn;
70256ad8
AJ
4815 asection *s;
4816
82e96e07 4817 (*bed->s->swap_dyn_in) (dynobj, dyncon, &dyn);
70256ad8
AJ
4818
4819 switch (dyn.d_tag)
4820 {
4821 default:
053579d7 4822 continue;
70256ad8
AJ
4823
4824 case DT_PLTGOT:
6de2ae4a 4825 s = htab->elf.sgotplt;
8c37241b 4826 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
c434dee6 4827 break;
70256ad8
AJ
4828
4829 case DT_JMPREL:
6de2ae4a 4830 dyn.d_un.d_ptr = htab->elf.srelplt->output_section->vma;
c434dee6 4831 break;
70256ad8 4832
c434dee6 4833 case DT_PLTRELSZ:
6de2ae4a 4834 s = htab->elf.srelplt->output_section;
eea6121a 4835 dyn.d_un.d_val = s->size;
70256ad8
AJ
4836 break;
4837
4838 case DT_RELASZ:
c434dee6
AJ
4839 /* The procedure linkage table relocs (DT_JMPREL) should
4840 not be included in the overall relocs (DT_RELA).
4841 Therefore, we override the DT_RELASZ entry here to
4842 make it not include the JMPREL relocs. Since the
4843 linker script arranges for .rela.plt to follow all
4844 other relocation sections, we don't have to worry
4845 about changing the DT_RELA entry. */
6de2ae4a 4846 if (htab->elf.srelplt != NULL)
70256ad8 4847 {
6de2ae4a 4848 s = htab->elf.srelplt->output_section;
eea6121a 4849 dyn.d_un.d_val -= s->size;
70256ad8
AJ
4850 }
4851 break;
67a4f2b7
AO
4852
4853 case DT_TLSDESC_PLT:
6de2ae4a 4854 s = htab->elf.splt;
67a4f2b7
AO
4855 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
4856 + htab->tlsdesc_plt;
4857 break;
4858
4859 case DT_TLSDESC_GOT:
6de2ae4a 4860 s = htab->elf.sgot;
67a4f2b7
AO
4861 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
4862 + htab->tlsdesc_got;
4863 break;
70256ad8 4864 }
c434dee6 4865
82e96e07 4866 (*bed->s->swap_dyn_out) (output_bfd, &dyn, dyncon);
70256ad8
AJ
4867 }
4868
c434dee6 4869 /* Fill in the special first entry in the procedure linkage table. */
6de2ae4a 4870 if (htab->elf.splt && htab->elf.splt->size > 0)
70256ad8 4871 {
653165cc 4872 /* Fill in the first entry in the procedure linkage table. */
eed180f8
RM
4873 memcpy (htab->elf.splt->contents,
4874 abed->plt0_entry, abed->plt_entry_size);
653165cc
AJ
4875 /* Add offset for pushq GOT+8(%rip), since the instruction
4876 uses 6 bytes subtract this value. */
4877 bfd_put_32 (output_bfd,
6de2ae4a
L
4878 (htab->elf.sgotplt->output_section->vma
4879 + htab->elf.sgotplt->output_offset
653165cc 4880 + 8
6de2ae4a
L
4881 - htab->elf.splt->output_section->vma
4882 - htab->elf.splt->output_offset
653165cc 4883 - 6),
eed180f8
RM
4884 htab->elf.splt->contents + abed->plt0_got1_offset);
4885 /* Add offset for the PC-relative instruction accessing GOT+16,
4886 subtracting the offset to the end of that instruction. */
653165cc 4887 bfd_put_32 (output_bfd,
6de2ae4a
L
4888 (htab->elf.sgotplt->output_section->vma
4889 + htab->elf.sgotplt->output_offset
653165cc 4890 + 16
6de2ae4a
L
4891 - htab->elf.splt->output_section->vma
4892 - htab->elf.splt->output_offset
eed180f8
RM
4893 - abed->plt0_got2_insn_end),
4894 htab->elf.splt->contents + abed->plt0_got2_offset);
653165cc 4895
eed180f8
RM
4896 elf_section_data (htab->elf.splt->output_section)
4897 ->this_hdr.sh_entsize = abed->plt_entry_size;
67a4f2b7
AO
4898
4899 if (htab->tlsdesc_plt)
4900 {
4901 bfd_put_64 (output_bfd, (bfd_vma) 0,
6de2ae4a 4902 htab->elf.sgot->contents + htab->tlsdesc_got);
67a4f2b7 4903
6de2ae4a 4904 memcpy (htab->elf.splt->contents + htab->tlsdesc_plt,
eed180f8 4905 abed->plt0_entry, abed->plt_entry_size);
67a4f2b7
AO
4906
4907 /* Add offset for pushq GOT+8(%rip), since the
4908 instruction uses 6 bytes subtract this value. */
4909 bfd_put_32 (output_bfd,
6de2ae4a
L
4910 (htab->elf.sgotplt->output_section->vma
4911 + htab->elf.sgotplt->output_offset
67a4f2b7 4912 + 8
6de2ae4a
L
4913 - htab->elf.splt->output_section->vma
4914 - htab->elf.splt->output_offset
67a4f2b7
AO
4915 - htab->tlsdesc_plt
4916 - 6),
eed180f8
RM
4917 htab->elf.splt->contents
4918 + htab->tlsdesc_plt + abed->plt0_got1_offset);
4919 /* Add offset for the PC-relative instruction accessing GOT+TDG,
4920 where TGD stands for htab->tlsdesc_got, subtracting the offset
4921 to the end of that instruction. */
67a4f2b7 4922 bfd_put_32 (output_bfd,
6de2ae4a
L
4923 (htab->elf.sgot->output_section->vma
4924 + htab->elf.sgot->output_offset
67a4f2b7 4925 + htab->tlsdesc_got
6de2ae4a
L
4926 - htab->elf.splt->output_section->vma
4927 - htab->elf.splt->output_offset
67a4f2b7 4928 - htab->tlsdesc_plt
eed180f8
RM
4929 - abed->plt0_got2_insn_end),
4930 htab->elf.splt->contents
4931 + htab->tlsdesc_plt + abed->plt0_got2_offset);
67a4f2b7 4932 }
70256ad8 4933 }
70256ad8
AJ
4934 }
4935
6de2ae4a 4936 if (htab->elf.sgotplt)
70256ad8 4937 {
56d4289c
L
4938 if (bfd_is_abs_section (htab->elf.sgotplt->output_section))
4939 {
4940 (*_bfd_error_handler)
4941 (_("discarded output section: `%A'"), htab->elf.sgotplt);
4942 return FALSE;
4943 }
4944
c434dee6 4945 /* Fill in the first three entries in the global offset table. */
6de2ae4a 4946 if (htab->elf.sgotplt->size > 0)
c434dee6
AJ
4947 {
4948 /* Set the first entry in the global offset table to the address of
4949 the dynamic section. */
4950 if (sdyn == NULL)
6de2ae4a 4951 bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents);
c434dee6
AJ
4952 else
4953 bfd_put_64 (output_bfd,
4954 sdyn->output_section->vma + sdyn->output_offset,
6de2ae4a 4955 htab->elf.sgotplt->contents);
c434dee6 4956 /* Write GOT[1] and GOT[2], needed for the dynamic linker. */
6de2ae4a
L
4957 bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents + GOT_ENTRY_SIZE);
4958 bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents + GOT_ENTRY_SIZE*2);
c434dee6 4959 }
70256ad8 4960
6de2ae4a 4961 elf_section_data (htab->elf.sgotplt->output_section)->this_hdr.sh_entsize =
c434dee6
AJ
4962 GOT_ENTRY_SIZE;
4963 }
70256ad8 4964
e41b3a13 4965 /* Adjust .eh_frame for .plt section. */
9a2a56cc
AM
4966 if (htab->plt_eh_frame != NULL
4967 && htab->plt_eh_frame->contents != NULL)
e41b3a13
JJ
4968 {
4969 if (htab->elf.splt != NULL
4970 && htab->elf.splt->size != 0
4971 && (htab->elf.splt->flags & SEC_EXCLUDE) == 0
4972 && htab->elf.splt->output_section != NULL
4973 && htab->plt_eh_frame->output_section != NULL)
4974 {
4975 bfd_vma plt_start = htab->elf.splt->output_section->vma;
4976 bfd_vma eh_frame_start = htab->plt_eh_frame->output_section->vma
4977 + htab->plt_eh_frame->output_offset
4978 + PLT_FDE_START_OFFSET;
4979 bfd_put_signed_32 (dynobj, plt_start - eh_frame_start,
4980 htab->plt_eh_frame->contents
4981 + PLT_FDE_START_OFFSET);
4982 }
dbaa2011 4983 if (htab->plt_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME)
e41b3a13
JJ
4984 {
4985 if (! _bfd_elf_write_section_eh_frame (output_bfd, info,
4986 htab->plt_eh_frame,
4987 htab->plt_eh_frame->contents))
4988 return FALSE;
4989 }
4990 }
4991
6de2ae4a
L
4992 if (htab->elf.sgot && htab->elf.sgot->size > 0)
4993 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize
8c37241b
JJ
4994 = GOT_ENTRY_SIZE;
4995
c25bc9fc
L
4996 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
4997 htab_traverse (htab->loc_hash_table,
351f65ca 4998 elf_x86_64_finish_local_dynamic_symbol,
c25bc9fc
L
4999 info);
5000
b34976b6 5001 return TRUE;
8d88c4ca
NC
5002}
5003
4c45e5c9
JJ
5004/* Return address for Ith PLT stub in section PLT, for relocation REL
5005 or (bfd_vma) -1 if it should not be included. */
5006
5007static bfd_vma
351f65ca
L
5008elf_x86_64_plt_sym_val (bfd_vma i, const asection *plt,
5009 const arelent *rel ATTRIBUTE_UNUSED)
4c45e5c9 5010{
eed180f8 5011 return plt->vma + (i + 1) * GET_PLT_ENTRY_SIZE (plt->owner);
4c45e5c9 5012}
8df9fc9d 5013
d2b2c203
DJ
5014/* Handle an x86-64 specific section when reading an object file. This
5015 is called when elfcode.h finds a section with an unknown type. */
5016
5017static bfd_boolean
351f65ca 5018elf_x86_64_section_from_shdr (bfd *abfd,
6dc132d9
L
5019 Elf_Internal_Shdr *hdr,
5020 const char *name,
5021 int shindex)
d2b2c203
DJ
5022{
5023 if (hdr->sh_type != SHT_X86_64_UNWIND)
5024 return FALSE;
5025
6dc132d9 5026 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
d2b2c203
DJ
5027 return FALSE;
5028
5029 return TRUE;
5030}
5031
3b22753a
L
5032/* Hook called by the linker routine which adds symbols from an object
5033 file. We use it to put SHN_X86_64_LCOMMON items in .lbss, instead
5034 of .bss. */
5035
5036static bfd_boolean
351f65ca
L
5037elf_x86_64_add_symbol_hook (bfd *abfd,
5038 struct bfd_link_info *info,
5039 Elf_Internal_Sym *sym,
5040 const char **namep ATTRIBUTE_UNUSED,
5041 flagword *flagsp ATTRIBUTE_UNUSED,
5042 asection **secp,
5043 bfd_vma *valp)
3b22753a
L
5044{
5045 asection *lcomm;
5046
5047 switch (sym->st_shndx)
5048 {
5049 case SHN_X86_64_LCOMMON:
5050 lcomm = bfd_get_section_by_name (abfd, "LARGE_COMMON");
5051 if (lcomm == NULL)
5052 {
5053 lcomm = bfd_make_section_with_flags (abfd,
5054 "LARGE_COMMON",
5055 (SEC_ALLOC
5056 | SEC_IS_COMMON
5057 | SEC_LINKER_CREATED));
5058 if (lcomm == NULL)
5059 return FALSE;
5060 elf_section_flags (lcomm) |= SHF_X86_64_LARGE;
5061 }
5062 *secp = lcomm;
5063 *valp = sym->st_size;
c35bdf6e 5064 return TRUE;
3b22753a 5065 }
d8045f23 5066
c16153ae 5067 if ((abfd->flags & DYNAMIC) == 0
f64b2e8d
NC
5068 && (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC
5069 || ELF_ST_BIND (sym->st_info) == STB_GNU_UNIQUE))
5070 elf_tdata (info->output_bfd)->has_gnu_symbols = TRUE;
d8045f23 5071
3b22753a
L
5072 return TRUE;
5073}
5074
5075
5076/* Given a BFD section, try to locate the corresponding ELF section
5077 index. */
5078
5079static bfd_boolean
351f65ca
L
5080elf_x86_64_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
5081 asection *sec, int *index_return)
3b22753a
L
5082{
5083 if (sec == &_bfd_elf_large_com_section)
5084 {
91d6fa6a 5085 *index_return = SHN_X86_64_LCOMMON;
3b22753a
L
5086 return TRUE;
5087 }
5088 return FALSE;
5089}
5090
5091/* Process a symbol. */
5092
5093static void
351f65ca
L
5094elf_x86_64_symbol_processing (bfd *abfd ATTRIBUTE_UNUSED,
5095 asymbol *asym)
3b22753a
L
5096{
5097 elf_symbol_type *elfsym = (elf_symbol_type *) asym;
5098
5099 switch (elfsym->internal_elf_sym.st_shndx)
5100 {
5101 case SHN_X86_64_LCOMMON:
5102 asym->section = &_bfd_elf_large_com_section;
5103 asym->value = elfsym->internal_elf_sym.st_size;
5104 /* Common symbol doesn't set BSF_GLOBAL. */
5105 asym->flags &= ~BSF_GLOBAL;
5106 break;
5107 }
5108}
5109
5110static bfd_boolean
351f65ca 5111elf_x86_64_common_definition (Elf_Internal_Sym *sym)
3b22753a
L
5112{
5113 return (sym->st_shndx == SHN_COMMON
5114 || sym->st_shndx == SHN_X86_64_LCOMMON);
5115}
5116
5117static unsigned int
351f65ca 5118elf_x86_64_common_section_index (asection *sec)
3b22753a
L
5119{
5120 if ((elf_section_flags (sec) & SHF_X86_64_LARGE) == 0)
5121 return SHN_COMMON;
5122 else
5123 return SHN_X86_64_LCOMMON;
5124}
5125
5126static asection *
351f65ca 5127elf_x86_64_common_section (asection *sec)
3b22753a
L
5128{
5129 if ((elf_section_flags (sec) & SHF_X86_64_LARGE) == 0)
5130 return bfd_com_section_ptr;
5131 else
5132 return &_bfd_elf_large_com_section;
5133}
5134
5135static bfd_boolean
5d13b3b3
AM
5136elf_x86_64_merge_symbol (struct elf_link_hash_entry *h,
5137 const Elf_Internal_Sym *sym,
351f65ca 5138 asection **psec,
5d13b3b3
AM
5139 bfd_boolean newdef,
5140 bfd_boolean olddef,
351f65ca 5141 bfd *oldbfd,
5d13b3b3 5142 const asection *oldsec)
3b22753a
L
5143{
5144 /* A normal common symbol and a large common symbol result in a
00492999
L
5145 normal common symbol. We turn the large common symbol into a
5146 normal one. */
5d13b3b3 5147 if (!olddef
3b22753a 5148 && h->root.type == bfd_link_hash_common
5d13b3b3
AM
5149 && !newdef
5150 && bfd_is_com_section (*psec)
5151 && oldsec != *psec)
3b22753a 5152 {
00492999 5153 if (sym->st_shndx == SHN_COMMON
5d13b3b3 5154 && (elf_section_flags (oldsec) & SHF_X86_64_LARGE) != 0)
00492999
L
5155 {
5156 h->root.u.c.p->section
5157 = bfd_make_section_old_way (oldbfd, "COMMON");
5158 h->root.u.c.p->section->flags = SEC_ALLOC;
5159 }
5160 else if (sym->st_shndx == SHN_X86_64_LCOMMON
5d13b3b3
AM
5161 && (elf_section_flags (oldsec) & SHF_X86_64_LARGE) == 0)
5162 *psec = bfd_com_section_ptr;
3b22753a
L
5163 }
5164
5165 return TRUE;
5166}
5167
5168static int
351f65ca
L
5169elf_x86_64_additional_program_headers (bfd *abfd,
5170 struct bfd_link_info *info ATTRIBUTE_UNUSED)
3b22753a
L
5171{
5172 asection *s;
9a2e389a 5173 int count = 0;
3b22753a
L
5174
5175 /* Check to see if we need a large readonly segment. */
5176 s = bfd_get_section_by_name (abfd, ".lrodata");
5177 if (s && (s->flags & SEC_LOAD))
5178 count++;
5179
5180 /* Check to see if we need a large data segment. Since .lbss sections
5181 is placed right after the .bss section, there should be no need for
5182 a large data segment just because of .lbss. */
5183 s = bfd_get_section_by_name (abfd, ".ldata");
5184 if (s && (s->flags & SEC_LOAD))
5185 count++;
5186
5187 return count;
5188}
5189
fdc90cb4
JJ
5190/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5191
5192static bfd_boolean
351f65ca 5193elf_x86_64_hash_symbol (struct elf_link_hash_entry *h)
fdc90cb4
JJ
5194{
5195 if (h->plt.offset != (bfd_vma) -1
5196 && !h->def_regular
5197 && !h->pointer_equality_needed)
5198 return FALSE;
5199
5200 return _bfd_elf_hash_symbol (h);
5201}
5202
c543bf9a
L
5203/* Return TRUE iff relocations for INPUT are compatible with OUTPUT. */
5204
5205static bfd_boolean
5206elf_x86_64_relocs_compatible (const bfd_target *input,
5207 const bfd_target *output)
5208{
5209 return ((xvec_get_elf_backend_data (input)->s->elfclass
5210 == xvec_get_elf_backend_data (output)->s->elfclass)
5211 && _bfd_elf_relocs_compatible (input, output));
5212}
5213
9a2e389a 5214static const struct bfd_elf_special_section
351f65ca 5215 elf_x86_64_special_sections[]=
3b22753a 5216{
0112cd26
NC
5217 { STRING_COMMA_LEN (".gnu.linkonce.lb"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_X86_64_LARGE},
5218 { STRING_COMMA_LEN (".gnu.linkonce.lr"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_X86_64_LARGE},
5219 { STRING_COMMA_LEN (".gnu.linkonce.lt"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR + SHF_X86_64_LARGE},
5220 { STRING_COMMA_LEN (".lbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_X86_64_LARGE},
5221 { STRING_COMMA_LEN (".ldata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_X86_64_LARGE},
5222 { STRING_COMMA_LEN (".lrodata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_X86_64_LARGE},
5223 { NULL, 0, 0, 0, 0 }
3b22753a
L
5224};
5225
70256ad8
AJ
5226#define TARGET_LITTLE_SYM bfd_elf64_x86_64_vec
5227#define TARGET_LITTLE_NAME "elf64-x86-64"
5228#define ELF_ARCH bfd_arch_i386
ae95ffa6 5229#define ELF_TARGET_ID X86_64_ELF_DATA
70256ad8 5230#define ELF_MACHINE_CODE EM_X86_64
f7661549 5231#define ELF_MAXPAGESIZE 0x200000
2043964e 5232#define ELF_MINPAGESIZE 0x1000
24718e3b 5233#define ELF_COMMONPAGESIZE 0x1000
70256ad8
AJ
5234
5235#define elf_backend_can_gc_sections 1
51b64d56 5236#define elf_backend_can_refcount 1
70256ad8
AJ
5237#define elf_backend_want_got_plt 1
5238#define elf_backend_plt_readonly 1
5239#define elf_backend_want_plt_sym 0
5240#define elf_backend_got_header_size (GOT_ENTRY_SIZE*3)
b491616a 5241#define elf_backend_rela_normal 1
e41b3a13 5242#define elf_backend_plt_alignment 4
70256ad8 5243
351f65ca 5244#define elf_info_to_howto elf_x86_64_info_to_howto
70256ad8 5245
70256ad8 5246#define bfd_elf64_bfd_link_hash_table_create \
351f65ca 5247 elf_x86_64_link_hash_table_create
c25bc9fc 5248#define bfd_elf64_bfd_link_hash_table_free \
351f65ca
L
5249 elf_x86_64_link_hash_table_free
5250#define bfd_elf64_bfd_reloc_type_lookup elf_x86_64_reloc_type_lookup
157090f7 5251#define bfd_elf64_bfd_reloc_name_lookup \
351f65ca 5252 elf_x86_64_reloc_name_lookup
70256ad8 5253
351f65ca 5254#define elf_backend_adjust_dynamic_symbol elf_x86_64_adjust_dynamic_symbol
c543bf9a 5255#define elf_backend_relocs_compatible elf_x86_64_relocs_compatible
351f65ca
L
5256#define elf_backend_check_relocs elf_x86_64_check_relocs
5257#define elf_backend_copy_indirect_symbol elf_x86_64_copy_indirect_symbol
5258#define elf_backend_create_dynamic_sections elf_x86_64_create_dynamic_sections
5259#define elf_backend_finish_dynamic_sections elf_x86_64_finish_dynamic_sections
5260#define elf_backend_finish_dynamic_symbol elf_x86_64_finish_dynamic_symbol
5261#define elf_backend_gc_mark_hook elf_x86_64_gc_mark_hook
5262#define elf_backend_gc_sweep_hook elf_x86_64_gc_sweep_hook
5263#define elf_backend_grok_prstatus elf_x86_64_grok_prstatus
5264#define elf_backend_grok_psinfo elf_x86_64_grok_psinfo
8fd79e71
L
5265#ifdef CORE_HEADER
5266#define elf_backend_write_core_note elf_x86_64_write_core_note
5267#endif
351f65ca
L
5268#define elf_backend_reloc_type_class elf_x86_64_reloc_type_class
5269#define elf_backend_relocate_section elf_x86_64_relocate_section
5270#define elf_backend_size_dynamic_sections elf_x86_64_size_dynamic_sections
5271#define elf_backend_always_size_sections elf_x86_64_always_size_sections
74541ad4 5272#define elf_backend_init_index_section _bfd_elf_init_1_index_section
351f65ca 5273#define elf_backend_plt_sym_val elf_x86_64_plt_sym_val
407443a3 5274#define elf_backend_object_p elf64_x86_64_elf_object_p
351f65ca 5275#define bfd_elf64_mkobject elf_x86_64_mkobject
8d88c4ca 5276
d2b2c203 5277#define elf_backend_section_from_shdr \
351f65ca 5278 elf_x86_64_section_from_shdr
d2b2c203 5279
3b22753a 5280#define elf_backend_section_from_bfd_section \
351f65ca 5281 elf_x86_64_elf_section_from_bfd_section
3b22753a 5282#define elf_backend_add_symbol_hook \
351f65ca 5283 elf_x86_64_add_symbol_hook
3b22753a 5284#define elf_backend_symbol_processing \
351f65ca 5285 elf_x86_64_symbol_processing
3b22753a 5286#define elf_backend_common_section_index \
351f65ca 5287 elf_x86_64_common_section_index
3b22753a 5288#define elf_backend_common_section \
351f65ca 5289 elf_x86_64_common_section
3b22753a 5290#define elf_backend_common_definition \
351f65ca 5291 elf_x86_64_common_definition
3b22753a 5292#define elf_backend_merge_symbol \
351f65ca 5293 elf_x86_64_merge_symbol
3b22753a 5294#define elf_backend_special_sections \
351f65ca 5295 elf_x86_64_special_sections
3b22753a 5296#define elf_backend_additional_program_headers \
351f65ca 5297 elf_x86_64_additional_program_headers
fdc90cb4 5298#define elf_backend_hash_symbol \
351f65ca 5299 elf_x86_64_hash_symbol
3b22753a 5300
d8045f23
NC
5301#define elf_backend_post_process_headers _bfd_elf_set_osabi
5302
8d88c4ca 5303#include "elf64-target.h"
9d7cbccd
NC
5304
5305/* FreeBSD support. */
5306
5307#undef TARGET_LITTLE_SYM
5308#define TARGET_LITTLE_SYM bfd_elf64_x86_64_freebsd_vec
5309#undef TARGET_LITTLE_NAME
5310#define TARGET_LITTLE_NAME "elf64-x86-64-freebsd"
5311
d1036acb
L
5312#undef ELF_OSABI
5313#define ELF_OSABI ELFOSABI_FREEBSD
9d7cbccd 5314
9d7cbccd
NC
5315#undef elf64_bed
5316#define elf64_bed elf64_x86_64_fbsd_bed
5317
5318#include "elf64-target.h"
8a9036a4 5319
a6cc6b3b
RO
5320/* Solaris 2 support. */
5321
5322#undef TARGET_LITTLE_SYM
5323#define TARGET_LITTLE_SYM bfd_elf64_x86_64_sol2_vec
5324#undef TARGET_LITTLE_NAME
5325#define TARGET_LITTLE_NAME "elf64-x86-64-sol2"
5326
5327/* Restore default: we cannot use ELFOSABI_SOLARIS, otherwise ELFOSABI_NONE
5328 objects won't be recognized. */
5329#undef ELF_OSABI
5330
5331#undef elf64_bed
5332#define elf64_bed elf64_x86_64_sol2_bed
5333
7dc98aea
RO
5334/* The 64-bit static TLS arena size is rounded to the nearest 16-byte
5335 boundary. */
5336#undef elf_backend_static_tls_alignment
5337#define elf_backend_static_tls_alignment 16
5338
a6cc6b3b
RO
5339/* The Solaris 2 ABI requires a plt symbol on all platforms.
5340
5341 Cf. Linker and Libraries Guide, Ch. 2, Link-Editor, Generating the Output
5342 File, p.63. */
5343#undef elf_backend_want_plt_sym
5344#define elf_backend_want_plt_sym 1
5345
5346#include "elf64-target.h"
5347
8059fb19
RM
5348/* Native Client support. */
5349
5350#undef TARGET_LITTLE_SYM
5351#define TARGET_LITTLE_SYM bfd_elf64_x86_64_nacl_vec
5352#undef TARGET_LITTLE_NAME
5353#define TARGET_LITTLE_NAME "elf64-x86-64-nacl"
5354#undef elf64_bed
5355#define elf64_bed elf64_x86_64_nacl_bed
5356
5357#undef ELF_MAXPAGESIZE
5358#undef ELF_MINPAGESIZE
5359#undef ELF_COMMONPAGESIZE
5360#define ELF_MAXPAGESIZE 0x10000
5361#define ELF_MINPAGESIZE 0x10000
5362#define ELF_COMMONPAGESIZE 0x10000
5363
5364/* Restore defaults. */
5365#undef ELF_OSABI
5366#undef elf_backend_static_tls_alignment
5367#undef elf_backend_want_plt_sym
5368#define elf_backend_want_plt_sym 0
5369
5370/* NaCl uses substantially different PLT entries for the same effects. */
5371
5372#undef elf_backend_plt_alignment
5373#define elf_backend_plt_alignment 5
5374#define NACL_PLT_ENTRY_SIZE 64
5375#define NACLMASK 0xe0 /* 32-byte alignment mask. */
5376
5377static const bfd_byte elf_x86_64_nacl_plt0_entry[NACL_PLT_ENTRY_SIZE] =
5378 {
5379 0xff, 0x35, 8, 0, 0, 0, /* pushq GOT+8(%rip) */
5380 0x4c, 0x8b, 0x1d, 16, 0, 0, 0, /* mov GOT+16(%rip), %r11 */
5381 0x41, 0x83, 0xe3, NACLMASK, /* and $-32, %r11d */
5382 0x4d, 0x01, 0xfb, /* add %r15, %r11 */
5383 0x41, 0xff, 0xe3, /* jmpq *%r11 */
5384
ea2d813e 5385 /* 9-byte nop sequence to pad out to the next 32-byte boundary. */
70cc877f 5386 0x66, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw 0x0(%rax,%rax,1) */
ea2d813e
RM
5387
5388 /* 32 bytes of nop to pad out to the standard size. */
8059fb19
RM
5389 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5390 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
5391 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5392 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
ea2d813e
RM
5393 0x66, /* excess data32 prefix */
5394 0x90 /* nop */
8059fb19
RM
5395 };
5396
5397static const bfd_byte elf_x86_64_nacl_plt_entry[NACL_PLT_ENTRY_SIZE] =
5398 {
5399 0x4c, 0x8b, 0x1d, 0, 0, 0, 0, /* mov name@GOTPCREL(%rip),%r11 */
5400 0x41, 0x83, 0xe3, NACLMASK, /* and $-32, %r11d */
5401 0x4d, 0x01, 0xfb, /* add %r15, %r11 */
5402 0x41, 0xff, 0xe3, /* jmpq *%r11 */
5403
5404 /* 15-byte nop sequence to pad out to the next 32-byte boundary. */
5405 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5406 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
5407
5408 /* Lazy GOT entries point here (32-byte aligned). */
5409 0x68, /* pushq immediate */
5410 0, 0, 0, 0, /* replaced with index into relocation table. */
5411 0xe9, /* jmp relative */
5412 0, 0, 0, 0, /* replaced with offset to start of .plt0. */
5413
5414 /* 22 bytes of nop to pad out to the standard size. */
5415 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5416 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
5417 0x0f, 0x1f, 0x80, 0, 0, 0, 0, /* nopl 0x0(%rax) */
5418 };
5419
5420/* .eh_frame covering the .plt section. */
5421
5422static const bfd_byte elf_x86_64_nacl_eh_frame_plt[] =
5423 {
5424#if (PLT_CIE_LENGTH != 20 \
5425 || PLT_FDE_LENGTH != 36 \
5426 || PLT_FDE_START_OFFSET != 4 + PLT_CIE_LENGTH + 8 \
5427 || PLT_FDE_LEN_OFFSET != 4 + PLT_CIE_LENGTH + 12)
5428# error "Need elf_x86_64_backend_data parameters for eh_frame_plt offsets!"
5429#endif
5430 PLT_CIE_LENGTH, 0, 0, 0, /* CIE length */
5431 0, 0, 0, 0, /* CIE ID */
5432 1, /* CIE version */
5433 'z', 'R', 0, /* Augmentation string */
5434 1, /* Code alignment factor */
5435 0x78, /* Data alignment factor */
5436 16, /* Return address column */
5437 1, /* Augmentation size */
5438 DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding */
5439 DW_CFA_def_cfa, 7, 8, /* DW_CFA_def_cfa: r7 (rsp) ofs 8 */
5440 DW_CFA_offset + 16, 1, /* DW_CFA_offset: r16 (rip) at cfa-8 */
5441 DW_CFA_nop, DW_CFA_nop,
5442
5443 PLT_FDE_LENGTH, 0, 0, 0, /* FDE length */
5444 PLT_CIE_LENGTH + 8, 0, 0, 0,/* CIE pointer */
5445 0, 0, 0, 0, /* R_X86_64_PC32 .plt goes here */
5446 0, 0, 0, 0, /* .plt size goes here */
5447 0, /* Augmentation size */
5448 DW_CFA_def_cfa_offset, 16, /* DW_CFA_def_cfa_offset: 16 */
5449 DW_CFA_advance_loc + 6, /* DW_CFA_advance_loc: 6 to __PLT__+6 */
5450 DW_CFA_def_cfa_offset, 24, /* DW_CFA_def_cfa_offset: 24 */
5451 DW_CFA_advance_loc + 58, /* DW_CFA_advance_loc: 58 to __PLT__+64 */
5452 DW_CFA_def_cfa_expression, /* DW_CFA_def_cfa_expression */
5453 13, /* Block length */
5454 DW_OP_breg7, 8, /* DW_OP_breg7 (rsp): 8 */
5455 DW_OP_breg16, 0, /* DW_OP_breg16 (rip): 0 */
5456 DW_OP_const1u, 63, DW_OP_and, DW_OP_const1u, 37, DW_OP_ge,
5457 DW_OP_lit3, DW_OP_shl, DW_OP_plus,
5458 DW_CFA_nop, DW_CFA_nop
5459 };
5460
5461static const struct elf_x86_64_backend_data elf_x86_64_nacl_arch_bed =
5462 {
5463 elf_x86_64_nacl_plt0_entry, /* plt0_entry */
5464 elf_x86_64_nacl_plt_entry, /* plt_entry */
5465 NACL_PLT_ENTRY_SIZE, /* plt_entry_size */
5466 2, /* plt0_got1_offset */
5467 9, /* plt0_got2_offset */
5468 13, /* plt0_got2_insn_end */
5469 3, /* plt_got_offset */
5470 33, /* plt_reloc_offset */
5471 38, /* plt_plt_offset */
5472 7, /* plt_got_insn_size */
5473 42, /* plt_plt_insn_end */
5474 32, /* plt_lazy_offset */
5475 elf_x86_64_nacl_eh_frame_plt, /* eh_frame_plt */
5476 sizeof (elf_x86_64_nacl_eh_frame_plt), /* eh_frame_plt_size */
5477 };
5478
5479#undef elf_backend_arch_data
5480#define elf_backend_arch_data &elf_x86_64_nacl_arch_bed
5481
5a68afcf
RM
5482#undef elf_backend_modify_segment_map
5483#define elf_backend_modify_segment_map nacl_modify_segment_map
5484#undef elf_backend_modify_program_headers
5485#define elf_backend_modify_program_headers nacl_modify_program_headers
887badb3
RM
5486#undef elf_backend_final_write_processing
5487#define elf_backend_final_write_processing nacl_final_write_processing
5a68afcf 5488
8059fb19
RM
5489#include "elf64-target.h"
5490
5491/* Native Client x32 support. */
5492
5493#undef TARGET_LITTLE_SYM
5494#define TARGET_LITTLE_SYM bfd_elf32_x86_64_nacl_vec
5495#undef TARGET_LITTLE_NAME
5496#define TARGET_LITTLE_NAME "elf32-x86-64-nacl"
5497#undef elf32_bed
5498#define elf32_bed elf32_x86_64_nacl_bed
5499
5500#define bfd_elf32_bfd_link_hash_table_create \
5501 elf_x86_64_link_hash_table_create
5502#define bfd_elf32_bfd_link_hash_table_free \
5503 elf_x86_64_link_hash_table_free
5504#define bfd_elf32_bfd_reloc_type_lookup \
5505 elf_x86_64_reloc_type_lookup
5506#define bfd_elf32_bfd_reloc_name_lookup \
5507 elf_x86_64_reloc_name_lookup
5508#define bfd_elf32_mkobject \
5509 elf_x86_64_mkobject
5510
5511#undef elf_backend_object_p
5512#define elf_backend_object_p \
5513 elf32_x86_64_elf_object_p
5514
5515#undef elf_backend_bfd_from_remote_memory
5516#define elf_backend_bfd_from_remote_memory \
5517 _bfd_elf32_bfd_from_remote_memory
5518
5519#undef elf_backend_size_info
5520#define elf_backend_size_info \
5521 _bfd_elf32_size_info
5522
5523#include "elf32-target.h"
5524
5525/* Restore defaults. */
5a68afcf 5526#undef elf_backend_object_p
8059fb19 5527#define elf_backend_object_p elf64_x86_64_elf_object_p
5a68afcf
RM
5528#undef elf_backend_bfd_from_remote_memory
5529#undef elf_backend_size_info
5530#undef elf_backend_modify_segment_map
5531#undef elf_backend_modify_program_headers
887badb3 5532#undef elf_backend_final_write_processing
8059fb19 5533
8a9036a4
L
5534/* Intel L1OM support. */
5535
5536static bfd_boolean
5537elf64_l1om_elf_object_p (bfd *abfd)
5538{
5539 /* Set the right machine number for an L1OM elf64 file. */
5540 bfd_default_set_arch_mach (abfd, bfd_arch_l1om, bfd_mach_l1om);
5541 return TRUE;
5542}
5543
5544#undef TARGET_LITTLE_SYM
5545#define TARGET_LITTLE_SYM bfd_elf64_l1om_vec
5546#undef TARGET_LITTLE_NAME
5547#define TARGET_LITTLE_NAME "elf64-l1om"
5548#undef ELF_ARCH
5549#define ELF_ARCH bfd_arch_l1om
5550
5551#undef ELF_MACHINE_CODE
5552#define ELF_MACHINE_CODE EM_L1OM
5553
5554#undef ELF_OSABI
5555
5556#undef elf64_bed
5557#define elf64_bed elf64_l1om_bed
5558
5559#undef elf_backend_object_p
5560#define elf_backend_object_p elf64_l1om_elf_object_p
5561
8059fb19
RM
5562/* Restore defaults. */
5563#undef ELF_MAXPAGESIZE
5564#undef ELF_MINPAGESIZE
5565#undef ELF_COMMONPAGESIZE
5566#define ELF_MAXPAGESIZE 0x200000
5567#define ELF_MINPAGESIZE 0x1000
5568#define ELF_COMMONPAGESIZE 0x1000
5569#undef elf_backend_plt_alignment
5570#define elf_backend_plt_alignment 4
5571#undef elf_backend_arch_data
5572#define elf_backend_arch_data &elf_x86_64_arch_bed
1a0c107f 5573
8a9036a4
L
5574#include "elf64-target.h"
5575
5576/* FreeBSD L1OM support. */
5577
5578#undef TARGET_LITTLE_SYM
5579#define TARGET_LITTLE_SYM bfd_elf64_l1om_freebsd_vec
5580#undef TARGET_LITTLE_NAME
5581#define TARGET_LITTLE_NAME "elf64-l1om-freebsd"
5582
5583#undef ELF_OSABI
5584#define ELF_OSABI ELFOSABI_FREEBSD
5585
5586#undef elf64_bed
5587#define elf64_bed elf64_l1om_fbsd_bed
5588
8a9036a4 5589#include "elf64-target.h"
351f65ca 5590
7a9068fe
L
5591/* Intel K1OM support. */
5592
5593static bfd_boolean
5594elf64_k1om_elf_object_p (bfd *abfd)
5595{
5596 /* Set the right machine number for an K1OM elf64 file. */
5597 bfd_default_set_arch_mach (abfd, bfd_arch_k1om, bfd_mach_k1om);
5598 return TRUE;
5599}
5600
5601#undef TARGET_LITTLE_SYM
5602#define TARGET_LITTLE_SYM bfd_elf64_k1om_vec
5603#undef TARGET_LITTLE_NAME
5604#define TARGET_LITTLE_NAME "elf64-k1om"
5605#undef ELF_ARCH
5606#define ELF_ARCH bfd_arch_k1om
5607
5608#undef ELF_MACHINE_CODE
5609#define ELF_MACHINE_CODE EM_K1OM
5610
5611#undef ELF_OSABI
5612
5613#undef elf64_bed
5614#define elf64_bed elf64_k1om_bed
5615
5616#undef elf_backend_object_p
5617#define elf_backend_object_p elf64_k1om_elf_object_p
5618
5619#undef elf_backend_static_tls_alignment
5620
5621#undef elf_backend_want_plt_sym
5622#define elf_backend_want_plt_sym 0
5623
5624#include "elf64-target.h"
5625
5626/* FreeBSD K1OM support. */
5627
5628#undef TARGET_LITTLE_SYM
5629#define TARGET_LITTLE_SYM bfd_elf64_k1om_freebsd_vec
5630#undef TARGET_LITTLE_NAME
5631#define TARGET_LITTLE_NAME "elf64-k1om-freebsd"
5632
5633#undef ELF_OSABI
5634#define ELF_OSABI ELFOSABI_FREEBSD
5635
5636#undef elf64_bed
5637#define elf64_bed elf64_k1om_fbsd_bed
5638
5639#include "elf64-target.h"
5640
351f65ca
L
5641/* 32bit x86-64 support. */
5642
351f65ca
L
5643#undef TARGET_LITTLE_SYM
5644#define TARGET_LITTLE_SYM bfd_elf32_x86_64_vec
5645#undef TARGET_LITTLE_NAME
5646#define TARGET_LITTLE_NAME "elf32-x86-64"
8059fb19 5647#undef elf32_bed
351f65ca
L
5648
5649#undef ELF_ARCH
5650#define ELF_ARCH bfd_arch_i386
5651
5652#undef ELF_MACHINE_CODE
5653#define ELF_MACHINE_CODE EM_X86_64
5654
351f65ca
L
5655#undef ELF_OSABI
5656
351f65ca
L
5657#undef elf_backend_object_p
5658#define elf_backend_object_p \
5659 elf32_x86_64_elf_object_p
5660
5661#undef elf_backend_bfd_from_remote_memory
5662#define elf_backend_bfd_from_remote_memory \
5663 _bfd_elf32_bfd_from_remote_memory
5664
5665#undef elf_backend_size_info
5666#define elf_backend_size_info \
5667 _bfd_elf32_size_info
5668
5669#include "elf32-target.h"
This page took 1.263174 seconds and 4 git commands to generate.