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