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