1 /* X86-64 specific support for ELF
2 Copyright (C) 2000-2016 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka <jh@suse.cz>.
5 This file is part of BFD, the Binary File Descriptor library.
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.
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.
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. */
28 #include "bfd_stdint.h"
32 #include "libiberty.h"
34 #include "opcode/i386.h"
35 #include "elf/x86-64.h"
42 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value. */
43 #define MINUS_ONE (~ (bfd_vma) 0)
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. */
50 #define ABI_64_P(abfd) \
51 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
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
[] =
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,
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
,
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,
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,
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,
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,
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
,
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
,
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
,
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,
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,
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,
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
,
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
,
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
,
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,
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,
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,
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,
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,
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
,
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
,
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
,
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
,
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
,
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,
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
,
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",
164 HOWTO(R_X86_64_TLSDESC
, 0, 4, 64, FALSE
, 0,
165 complain_overflow_bitfield
, bfd_elf_generic_reloc
,
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
,
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
,
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,
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,
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,
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,
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)
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
),
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,
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,
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))
216 /* Map BFD relocs to the x86_64 elf relocs. */
219 bfd_reloc_code_real_type bfd_reloc_val
;
220 unsigned char elf_reloc_val
;
223 static const struct elf_reloc_map x86_64_reloc_map
[] =
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
, },
271 static reloc_howto_type
*
272 elf_x86_64_rtype_to_howto (bfd
*abfd
, unsigned r_type
)
276 if (r_type
== (unsigned int) R_X86_64_32
)
281 i
= ARRAY_SIZE (x86_64_elf_howto_table
) - 1;
283 else if (r_type
< (unsigned int) R_X86_64_GNU_VTINHERIT
284 || r_type
>= (unsigned int) R_X86_64_max
)
286 if (r_type
>= (unsigned int) R_X86_64_standard
)
288 _bfd_error_handler (_("%B: invalid relocation type %d"),
290 r_type
= R_X86_64_NONE
;
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
];
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
)
307 for (i
= 0; i
< sizeof (x86_64_reloc_map
) / sizeof (struct elf_reloc_map
);
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
);
317 static reloc_howto_type
*
318 elf_x86_64_reloc_name_lookup (bfd
*abfd
,
323 if (!ABI_64_P (abfd
) && strcasecmp (r_name
, "R_X86_64_32") == 0)
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
);
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
];
340 /* Given an x86_64 ELF reloc type, fill in an arelent structure. */
343 elf_x86_64_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*cache_ptr
,
344 Elf_Internal_Rela
*dst
)
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
);
353 /* Support for core dump NOTE sections. */
355 elf_x86_64_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
360 switch (note
->descsz
)
365 case 296: /* sizeof(istruct elf_prstatus) on Linux/x32 */
367 elf_tdata (abfd
)->core
->signal
= bfd_get_16 (abfd
, note
->descdata
+ 12);
370 elf_tdata (abfd
)->core
->lwpid
= bfd_get_32 (abfd
, note
->descdata
+ 24);
378 case 336: /* sizeof(istruct elf_prstatus) on Linux/x86_64 */
380 elf_tdata (abfd
)->core
->signal
381 = bfd_get_16 (abfd
, note
->descdata
+ 12);
384 elf_tdata (abfd
)->core
->lwpid
385 = bfd_get_32 (abfd
, note
->descdata
+ 32);
394 /* Make a ".reg/999" section. */
395 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
396 size
, note
->descpos
+ offset
);
400 elf_x86_64_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
402 switch (note
->descsz
)
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);
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);
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. */
430 char *command
= elf_tdata (abfd
)->core
->command
;
431 int n
= strlen (command
);
433 if (0 < n
&& command
[n
- 1] == ' ')
434 command
[n
- 1] = '\0';
442 elf_x86_64_write_core_note (bfd
*abfd
, char *buf
, int *bufsiz
,
445 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
447 const char *fname
, *psargs
;
458 va_start (ap
, note_type
);
459 fname
= va_arg (ap
, const char *);
460 psargs
= va_arg (ap
, const char *);
463 if (bed
->s
->elfclass
== ELFCLASS32
)
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
));
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
));
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 *);
490 if (bed
->s
->elfclass
== ELFCLASS32
)
492 if (bed
->elf_machine_code
== EM_X86_64
)
494 prstatusx32_t prstat
;
495 memset (&prstat
, 0, sizeof (prstat
));
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
));
505 memset (&prstat
, 0, sizeof (prstat
));
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
));
516 memset (&prstat
, 0, sizeof (prstat
));
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
));
528 /* Functions for the x86-64 ELF linker. */
530 /* The name of the dynamic interpreter. This is put in the .interp
533 #define ELF64_DYNAMIC_INTERPRETER "/lib/ld64.so.1"
534 #define ELF32_DYNAMIC_INTERPRETER "/lib/ldx32.so.1"
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
540 #define ELIMINATE_COPY_RELOCS 1
542 /* The size in bytes of an entry in the global offset table. */
544 #define GOT_ENTRY_SIZE 8
546 /* The size in bytes of an entry in the procedure linkage table. */
548 #define PLT_ENTRY_SIZE 16
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. */
553 static const bfd_byte elf_x86_64_plt0_entry
[PLT_ENTRY_SIZE
] =
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) */
560 /* Subsequent entries in a procedure linkage table look like this. */
562 static const bfd_byte elf_x86_64_plt_entry
[PLT_ENTRY_SIZE
] =
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. */
572 /* The first entry in a procedure linkage table with BND relocations
575 static const bfd_byte elf_x86_64_bnd_plt0_entry
[PLT_ENTRY_SIZE
] =
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) */
582 /* Subsequent entries for legacy branches in a procedure linkage table
583 with BND relocations look like this. */
585 static const bfd_byte elf_x86_64_legacy_plt_entry
[PLT_ENTRY_SIZE
] =
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) */
592 /* Subsequent entries for branches with BND prefx in a procedure linkage
593 table with BND relocations look like this. */
595 static const bfd_byte elf_x86_64_bnd_plt_entry
[PLT_ENTRY_SIZE
] =
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) */
602 /* Entries for legacy branches in the second procedure linkage table
605 static const bfd_byte elf_x86_64_legacy_plt2_entry
[8] =
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 */
612 /* Entries for branches with BND prefix in the second procedure linkage
613 table look like this. */
615 static const bfd_byte elf_x86_64_bnd_plt2_entry
[8] =
617 0xf2, 0xff, 0x25, /* bnd jmpq *name@GOTPC(%rip) */
618 0, 0, 0, 0, /* replaced with offset to this symbol in .got. */
622 /* .eh_frame covering the .plt section. */
624 static const bfd_byte elf_x86_64_eh_frame_plt
[] =
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 */
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
,
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
661 /* Architecture-specific backend data for x86-64. */
663 struct elf_x86_64_backend_data
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. */
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
;
674 /* Offset of the end of the PC-relative instruction containing
676 unsigned int plt0_got2_insn_end
;
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. */
683 /* Length of the PC-relative instruction containing plt_got_offset. */
684 unsigned int plt_got_insn_size
;
686 /* Offset of the end of the PC-relative jump to plt0_entry. */
687 unsigned int plt_plt_insn_end
;
689 /* Offset into plt_entry where the initial value of the GOT entry points. */
690 unsigned int plt_lazy_offset
;
692 /* .eh_frame covering the .plt section. */
693 const bfd_byte
*eh_frame_plt
;
694 unsigned int eh_frame_plt_size
;
697 #define get_elf_x86_64_arch_data(bed) \
698 ((const struct elf_x86_64_backend_data *) (bed)->arch_data)
700 #define get_elf_x86_64_backend_data(abfd) \
701 get_elf_x86_64_arch_data (get_elf_backend_data (abfd))
703 #define GET_PLT_ENTRY_SIZE(abfd) \
704 get_elf_x86_64_backend_data (abfd)->plt_entry_size
706 /* These are the standard parameters. */
707 static const struct elf_x86_64_backend_data elf_x86_64_arch_bed
=
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 */
725 static const struct elf_x86_64_backend_data elf_x86_64_bnd_arch_bed
=
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 */
743 #define elf_backend_arch_data &elf_x86_64_arch_bed
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
748 1. Has non-GOT/non-PLT relocations in text section. Or
749 2. Has no GOT/PLT relocation.
751 #define UNDEFINED_WEAK_RESOLVED_TO_ZERO(INFO, GOT_RELOC, EH) \
752 ((EH)->elf.root.type == bfd_link_hash_undefweak \
753 && bfd_link_executable (INFO) \
754 && (elf_x86_64_hash_table (INFO)->interp == NULL \
756 || (EH)->has_non_got_reloc \
757 || !(INFO)->dynamic_undefined_weak))
759 /* x86-64 ELF linker hash entry. */
761 struct elf_x86_64_link_hash_entry
763 struct elf_link_hash_entry elf
;
765 /* Track dynamic relocs copied for this symbol. */
766 struct elf_dyn_relocs
*dyn_relocs
;
768 #define GOT_UNKNOWN 0
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
;
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;
790 /* TRUE if symbol has at least one BND relocation. */
791 unsigned int has_bnd_reloc
: 1;
793 /* TRUE if symbol has GOT or PLT relocations. */
794 unsigned int has_got_reloc
: 1;
796 /* TRUE if symbol has non-GOT/non-PLT relocations in text sections. */
797 unsigned int has_non_got_reloc
: 1;
799 /* 0: symbol isn't __tls_get_addr.
800 1: symbol is __tls_get_addr.
801 2: symbol is unknown. */
802 unsigned int tls_get_addr
: 2;
804 /* Reference count of C/C++ function pointer relocations in read-write
805 section which can be resolved at run-time. */
806 bfd_signed_vma func_pointer_refcount
;
808 /* Information about the GOT PLT entry. Filled when there are both
809 GOT and PLT relocations against the same function. */
810 union gotplt_union plt_got
;
812 /* Information about the second PLT entry. Filled when has_bnd_reloc is
814 union gotplt_union plt_bnd
;
816 /* Offset of the GOTPLT entry reserved for the TLS descriptor,
817 starting at the end of the jump table. */
821 #define elf_x86_64_hash_entry(ent) \
822 ((struct elf_x86_64_link_hash_entry *)(ent))
824 struct elf_x86_64_obj_tdata
826 struct elf_obj_tdata root
;
828 /* tls_type for each local got entry. */
829 char *local_got_tls_type
;
831 /* GOTPLT entries for TLS descriptors. */
832 bfd_vma
*local_tlsdesc_gotent
;
835 #define elf_x86_64_tdata(abfd) \
836 ((struct elf_x86_64_obj_tdata *) (abfd)->tdata.any)
838 #define elf_x86_64_local_got_tls_type(abfd) \
839 (elf_x86_64_tdata (abfd)->local_got_tls_type)
841 #define elf_x86_64_local_tlsdesc_gotent(abfd) \
842 (elf_x86_64_tdata (abfd)->local_tlsdesc_gotent)
844 #define is_x86_64_elf(bfd) \
845 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
846 && elf_tdata (bfd) != NULL \
847 && elf_object_id (bfd) == X86_64_ELF_DATA)
850 elf_x86_64_mkobject (bfd
*abfd
)
852 return bfd_elf_allocate_object (abfd
, sizeof (struct elf_x86_64_obj_tdata
),
856 /* x86-64 ELF linker hash table. */
858 struct elf_x86_64_link_hash_table
860 struct elf_link_hash_table elf
;
862 /* Short-cuts to get to dynamic linker sections. */
866 asection
*plt_eh_frame
;
872 bfd_signed_vma refcount
;
876 /* The amount of space used by the jump slots in the GOT. */
877 bfd_vma sgotplt_jump_table_size
;
879 /* Small local sym cache. */
880 struct sym_cache sym_cache
;
882 bfd_vma (*r_info
) (bfd_vma
, bfd_vma
);
883 bfd_vma (*r_sym
) (bfd_vma
);
884 unsigned int pointer_r_type
;
885 const char *dynamic_interpreter
;
886 int dynamic_interpreter_size
;
888 /* _TLS_MODULE_BASE_ symbol. */
889 struct bfd_link_hash_entry
*tls_module_base
;
891 /* Used by local STT_GNU_IFUNC symbols. */
892 htab_t loc_hash_table
;
893 void * loc_hash_memory
;
895 /* The offset into splt of the PLT entry for the TLS descriptor
896 resolver. Special values are 0, if not necessary (or not found
897 to be necessary yet), and -1 if needed but not determined
900 /* The offset into sgot of the GOT entry used by the PLT entry
904 /* The index of the next R_X86_64_JUMP_SLOT entry in .rela.plt. */
905 bfd_vma next_jump_slot_index
;
906 /* The index of the next R_X86_64_IRELATIVE entry in .rela.plt. */
907 bfd_vma next_irelative_index
;
909 /* TRUE if there are dynamic relocs against IFUNC symbols that apply
910 to read-only sections. */
911 bfd_boolean readonly_dynrelocs_against_ifunc
;
914 /* Get the x86-64 ELF linker hash table from a link_info structure. */
916 #define elf_x86_64_hash_table(p) \
917 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
918 == X86_64_ELF_DATA ? ((struct elf_x86_64_link_hash_table *) ((p)->hash)) : NULL)
920 #define elf_x86_64_compute_jump_table_size(htab) \
921 ((htab)->elf.srelplt->reloc_count * GOT_ENTRY_SIZE)
923 /* Create an entry in an x86-64 ELF linker hash table. */
925 static struct bfd_hash_entry
*
926 elf_x86_64_link_hash_newfunc (struct bfd_hash_entry
*entry
,
927 struct bfd_hash_table
*table
,
930 /* Allocate the structure if it has not already been allocated by a
934 entry
= (struct bfd_hash_entry
*)
935 bfd_hash_allocate (table
,
936 sizeof (struct elf_x86_64_link_hash_entry
));
941 /* Call the allocation method of the superclass. */
942 entry
= _bfd_elf_link_hash_newfunc (entry
, table
, string
);
945 struct elf_x86_64_link_hash_entry
*eh
;
947 eh
= (struct elf_x86_64_link_hash_entry
*) entry
;
948 eh
->dyn_relocs
= NULL
;
949 eh
->tls_type
= GOT_UNKNOWN
;
951 eh
->has_bnd_reloc
= 0;
952 eh
->has_got_reloc
= 0;
953 eh
->has_non_got_reloc
= 0;
954 eh
->tls_get_addr
= 2;
955 eh
->func_pointer_refcount
= 0;
956 eh
->plt_bnd
.offset
= (bfd_vma
) -1;
957 eh
->plt_got
.offset
= (bfd_vma
) -1;
958 eh
->tlsdesc_got
= (bfd_vma
) -1;
964 /* Compute a hash of a local hash entry. We use elf_link_hash_entry
965 for local symbol so that we can handle local STT_GNU_IFUNC symbols
966 as global symbol. We reuse indx and dynstr_index for local symbol
967 hash since they aren't used by global symbols in this backend. */
970 elf_x86_64_local_htab_hash (const void *ptr
)
972 struct elf_link_hash_entry
*h
973 = (struct elf_link_hash_entry
*) ptr
;
974 return ELF_LOCAL_SYMBOL_HASH (h
->indx
, h
->dynstr_index
);
977 /* Compare local hash entries. */
980 elf_x86_64_local_htab_eq (const void *ptr1
, const void *ptr2
)
982 struct elf_link_hash_entry
*h1
983 = (struct elf_link_hash_entry
*) ptr1
;
984 struct elf_link_hash_entry
*h2
985 = (struct elf_link_hash_entry
*) ptr2
;
987 return h1
->indx
== h2
->indx
&& h1
->dynstr_index
== h2
->dynstr_index
;
990 /* Find and/or create a hash entry for local symbol. */
992 static struct elf_link_hash_entry
*
993 elf_x86_64_get_local_sym_hash (struct elf_x86_64_link_hash_table
*htab
,
994 bfd
*abfd
, const Elf_Internal_Rela
*rel
,
997 struct elf_x86_64_link_hash_entry e
, *ret
;
998 asection
*sec
= abfd
->sections
;
999 hashval_t h
= ELF_LOCAL_SYMBOL_HASH (sec
->id
,
1000 htab
->r_sym (rel
->r_info
));
1003 e
.elf
.indx
= sec
->id
;
1004 e
.elf
.dynstr_index
= htab
->r_sym (rel
->r_info
);
1005 slot
= htab_find_slot_with_hash (htab
->loc_hash_table
, &e
, h
,
1006 create
? INSERT
: NO_INSERT
);
1013 ret
= (struct elf_x86_64_link_hash_entry
*) *slot
;
1017 ret
= (struct elf_x86_64_link_hash_entry
*)
1018 objalloc_alloc ((struct objalloc
*) htab
->loc_hash_memory
,
1019 sizeof (struct elf_x86_64_link_hash_entry
));
1022 memset (ret
, 0, sizeof (*ret
));
1023 ret
->elf
.indx
= sec
->id
;
1024 ret
->elf
.dynstr_index
= htab
->r_sym (rel
->r_info
);
1025 ret
->elf
.dynindx
= -1;
1026 ret
->func_pointer_refcount
= 0;
1027 ret
->plt_got
.offset
= (bfd_vma
) -1;
1033 /* Destroy an X86-64 ELF linker hash table. */
1036 elf_x86_64_link_hash_table_free (bfd
*obfd
)
1038 struct elf_x86_64_link_hash_table
*htab
1039 = (struct elf_x86_64_link_hash_table
*) obfd
->link
.hash
;
1041 if (htab
->loc_hash_table
)
1042 htab_delete (htab
->loc_hash_table
);
1043 if (htab
->loc_hash_memory
)
1044 objalloc_free ((struct objalloc
*) htab
->loc_hash_memory
);
1045 _bfd_elf_link_hash_table_free (obfd
);
1048 /* Create an X86-64 ELF linker hash table. */
1050 static struct bfd_link_hash_table
*
1051 elf_x86_64_link_hash_table_create (bfd
*abfd
)
1053 struct elf_x86_64_link_hash_table
*ret
;
1054 bfd_size_type amt
= sizeof (struct elf_x86_64_link_hash_table
);
1056 ret
= (struct elf_x86_64_link_hash_table
*) bfd_zmalloc (amt
);
1060 if (!_bfd_elf_link_hash_table_init (&ret
->elf
, abfd
,
1061 elf_x86_64_link_hash_newfunc
,
1062 sizeof (struct elf_x86_64_link_hash_entry
),
1069 if (ABI_64_P (abfd
))
1071 ret
->r_info
= elf64_r_info
;
1072 ret
->r_sym
= elf64_r_sym
;
1073 ret
->pointer_r_type
= R_X86_64_64
;
1074 ret
->dynamic_interpreter
= ELF64_DYNAMIC_INTERPRETER
;
1075 ret
->dynamic_interpreter_size
= sizeof ELF64_DYNAMIC_INTERPRETER
;
1079 ret
->r_info
= elf32_r_info
;
1080 ret
->r_sym
= elf32_r_sym
;
1081 ret
->pointer_r_type
= R_X86_64_32
;
1082 ret
->dynamic_interpreter
= ELF32_DYNAMIC_INTERPRETER
;
1083 ret
->dynamic_interpreter_size
= sizeof ELF32_DYNAMIC_INTERPRETER
;
1086 ret
->loc_hash_table
= htab_try_create (1024,
1087 elf_x86_64_local_htab_hash
,
1088 elf_x86_64_local_htab_eq
,
1090 ret
->loc_hash_memory
= objalloc_create ();
1091 if (!ret
->loc_hash_table
|| !ret
->loc_hash_memory
)
1093 elf_x86_64_link_hash_table_free (abfd
);
1096 ret
->elf
.root
.hash_table_free
= elf_x86_64_link_hash_table_free
;
1098 return &ret
->elf
.root
;
1101 /* Create .plt, .rela.plt, .got, .got.plt, .rela.got, .dynbss, and
1102 .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
1106 elf_x86_64_create_dynamic_sections (bfd
*dynobj
,
1107 struct bfd_link_info
*info
)
1109 struct elf_x86_64_link_hash_table
*htab
;
1111 if (!_bfd_elf_create_dynamic_sections (dynobj
, info
))
1114 htab
= elf_x86_64_hash_table (info
);
1118 /* Set the contents of the .interp section to the interpreter. */
1119 if (bfd_link_executable (info
) && !info
->nointerp
)
1121 asection
*s
= bfd_get_linker_section (dynobj
, ".interp");
1124 s
->size
= htab
->dynamic_interpreter_size
;
1125 s
->contents
= (unsigned char *) htab
->dynamic_interpreter
;
1129 htab
->sdynbss
= bfd_get_linker_section (dynobj
, ".dynbss");
1133 if (bfd_link_executable (info
))
1135 /* Always allow copy relocs for building executables. */
1136 asection
*s
= bfd_get_linker_section (dynobj
, ".rela.bss");
1139 const struct elf_backend_data
*bed
= get_elf_backend_data (dynobj
);
1140 s
= bfd_make_section_anyway_with_flags (dynobj
,
1142 (bed
->dynamic_sec_flags
1145 || ! bfd_set_section_alignment (dynobj
, s
,
1146 bed
->s
->log_file_align
))
1152 if (!info
->no_ld_generated_unwind_info
1153 && htab
->plt_eh_frame
== NULL
1154 && htab
->elf
.splt
!= NULL
)
1156 flagword flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
1157 | SEC_HAS_CONTENTS
| SEC_IN_MEMORY
1158 | SEC_LINKER_CREATED
);
1160 = bfd_make_section_anyway_with_flags (dynobj
, ".eh_frame", flags
);
1161 if (htab
->plt_eh_frame
== NULL
1162 || !bfd_set_section_alignment (dynobj
, htab
->plt_eh_frame
, 3))
1166 /* Align .got section to its entry size. */
1167 if (htab
->elf
.sgot
!= NULL
1168 && !bfd_set_section_alignment (dynobj
, htab
->elf
.sgot
, 3))
1171 /* Align .got.plt section to its entry size. */
1172 if (htab
->elf
.sgotplt
!= NULL
1173 && !bfd_set_section_alignment (dynobj
, htab
->elf
.sgotplt
, 3))
1179 /* Copy the extra info we tack onto an elf_link_hash_entry. */
1182 elf_x86_64_copy_indirect_symbol (struct bfd_link_info
*info
,
1183 struct elf_link_hash_entry
*dir
,
1184 struct elf_link_hash_entry
*ind
)
1186 struct elf_x86_64_link_hash_entry
*edir
, *eind
;
1188 edir
= (struct elf_x86_64_link_hash_entry
*) dir
;
1189 eind
= (struct elf_x86_64_link_hash_entry
*) ind
;
1191 if (!edir
->has_bnd_reloc
)
1192 edir
->has_bnd_reloc
= eind
->has_bnd_reloc
;
1194 if (!edir
->has_got_reloc
)
1195 edir
->has_got_reloc
= eind
->has_got_reloc
;
1197 if (!edir
->has_non_got_reloc
)
1198 edir
->has_non_got_reloc
= eind
->has_non_got_reloc
;
1200 if (eind
->dyn_relocs
!= NULL
)
1202 if (edir
->dyn_relocs
!= NULL
)
1204 struct elf_dyn_relocs
**pp
;
1205 struct elf_dyn_relocs
*p
;
1207 /* Add reloc counts against the indirect sym to the direct sym
1208 list. Merge any entries against the same section. */
1209 for (pp
= &eind
->dyn_relocs
; (p
= *pp
) != NULL
; )
1211 struct elf_dyn_relocs
*q
;
1213 for (q
= edir
->dyn_relocs
; q
!= NULL
; q
= q
->next
)
1214 if (q
->sec
== p
->sec
)
1216 q
->pc_count
+= p
->pc_count
;
1217 q
->count
+= p
->count
;
1224 *pp
= edir
->dyn_relocs
;
1227 edir
->dyn_relocs
= eind
->dyn_relocs
;
1228 eind
->dyn_relocs
= NULL
;
1231 if (ind
->root
.type
== bfd_link_hash_indirect
1232 && dir
->got
.refcount
<= 0)
1234 edir
->tls_type
= eind
->tls_type
;
1235 eind
->tls_type
= GOT_UNKNOWN
;
1238 if (ELIMINATE_COPY_RELOCS
1239 && ind
->root
.type
!= bfd_link_hash_indirect
1240 && dir
->dynamic_adjusted
)
1242 /* If called to transfer flags for a weakdef during processing
1243 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
1244 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
1245 dir
->ref_dynamic
|= ind
->ref_dynamic
;
1246 dir
->ref_regular
|= ind
->ref_regular
;
1247 dir
->ref_regular_nonweak
|= ind
->ref_regular_nonweak
;
1248 dir
->needs_plt
|= ind
->needs_plt
;
1249 dir
->pointer_equality_needed
|= ind
->pointer_equality_needed
;
1253 if (eind
->func_pointer_refcount
> 0)
1255 edir
->func_pointer_refcount
+= eind
->func_pointer_refcount
;
1256 eind
->func_pointer_refcount
= 0;
1259 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
1264 elf64_x86_64_elf_object_p (bfd
*abfd
)
1266 /* Set the right machine number for an x86-64 elf64 file. */
1267 bfd_default_set_arch_mach (abfd
, bfd_arch_i386
, bfd_mach_x86_64
);
1272 elf32_x86_64_elf_object_p (bfd
*abfd
)
1274 /* Set the right machine number for an x86-64 elf32 file. */
1275 bfd_default_set_arch_mach (abfd
, bfd_arch_i386
, bfd_mach_x64_32
);
1279 /* Return TRUE if the TLS access code sequence support transition
1283 elf_x86_64_check_tls_transition (bfd
*abfd
,
1284 struct bfd_link_info
*info
,
1287 Elf_Internal_Shdr
*symtab_hdr
,
1288 struct elf_link_hash_entry
**sym_hashes
,
1289 unsigned int r_type
,
1290 const Elf_Internal_Rela
*rel
,
1291 const Elf_Internal_Rela
*relend
)
1294 unsigned long r_symndx
;
1295 bfd_boolean largepic
= FALSE
;
1296 struct elf_link_hash_entry
*h
;
1298 struct elf_x86_64_link_hash_table
*htab
;
1300 bfd_boolean indirect_call
, tls_get_addr
;
1302 htab
= elf_x86_64_hash_table (info
);
1303 offset
= rel
->r_offset
;
1306 case R_X86_64_TLSGD
:
1307 case R_X86_64_TLSLD
:
1308 if ((rel
+ 1) >= relend
)
1311 if (r_type
== R_X86_64_TLSGD
)
1313 /* Check transition from GD access model. For 64bit, only
1314 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
1315 .word 0x6666; rex64; call __tls_get_addr@PLT
1317 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
1319 call *__tls_get_addr@GOTPCREL(%rip)
1320 which may be converted to
1321 addr32 call __tls_get_addr
1322 can transit to different access model. For 32bit, only
1323 leaq foo@tlsgd(%rip), %rdi
1324 .word 0x6666; rex64; call __tls_get_addr@PLT
1326 leaq foo@tlsgd(%rip), %rdi
1328 call *__tls_get_addr@GOTPCREL(%rip)
1329 which may be converted to
1330 addr32 call __tls_get_addr
1331 can transit to different access model. For largepic,
1333 leaq foo@tlsgd(%rip), %rdi
1334 movabsq $__tls_get_addr@pltoff, %rax
1338 leaq foo@tlsgd(%rip), %rdi
1339 movabsq $__tls_get_addr@pltoff, %rax
1343 static const unsigned char leaq
[] = { 0x66, 0x48, 0x8d, 0x3d };
1345 if ((offset
+ 12) > sec
->size
)
1348 call
= contents
+ offset
+ 4;
1350 || !((call
[1] == 0x48
1358 && call
[3] == 0xe8)))
1360 if (!ABI_64_P (abfd
)
1361 || (offset
+ 19) > sec
->size
1363 || memcmp (call
- 7, leaq
+ 1, 3) != 0
1364 || memcmp (call
, "\x48\xb8", 2) != 0
1368 || !((call
[10] == 0x48 && call
[12] == 0xd8)
1369 || (call
[10] == 0x4c && call
[12] == 0xf8)))
1373 else if (ABI_64_P (abfd
))
1376 || memcmp (contents
+ offset
- 4, leaq
, 4) != 0)
1382 || memcmp (contents
+ offset
- 3, leaq
+ 1, 3) != 0)
1385 indirect_call
= call
[2] == 0xff;
1389 /* Check transition from LD access model. Only
1390 leaq foo@tlsld(%rip), %rdi;
1391 call __tls_get_addr@PLT
1393 leaq foo@tlsld(%rip), %rdi;
1394 call *__tls_get_addr@GOTPCREL(%rip)
1395 which may be converted to
1396 addr32 call __tls_get_addr
1397 can transit to different access model. For largepic
1399 leaq foo@tlsld(%rip), %rdi
1400 movabsq $__tls_get_addr@pltoff, %rax
1404 leaq foo@tlsld(%rip), %rdi
1405 movabsq $__tls_get_addr@pltoff, %rax
1409 static const unsigned char lea
[] = { 0x48, 0x8d, 0x3d };
1411 if (offset
< 3 || (offset
+ 9) > sec
->size
)
1414 if (memcmp (contents
+ offset
- 3, lea
, 3) != 0)
1417 call
= contents
+ offset
+ 4;
1418 if (!(call
[0] == 0xe8
1419 || (call
[0] == 0xff && call
[1] == 0x15)
1420 || (call
[0] == 0x67 && call
[1] == 0xe8)))
1422 if (!ABI_64_P (abfd
)
1423 || (offset
+ 19) > sec
->size
1424 || memcmp (call
, "\x48\xb8", 2) != 0
1428 || !((call
[10] == 0x48 && call
[12] == 0xd8)
1429 || (call
[10] == 0x4c && call
[12] == 0xf8)))
1433 indirect_call
= call
[0] == 0xff;
1436 r_symndx
= htab
->r_sym (rel
[1].r_info
);
1437 if (r_symndx
< symtab_hdr
->sh_info
)
1440 tls_get_addr
= FALSE
;
1441 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1442 if (h
!= NULL
&& h
->root
.root
.string
!= NULL
)
1444 struct elf_x86_64_link_hash_entry
*eh
1445 = (struct elf_x86_64_link_hash_entry
*) h
;
1446 tls_get_addr
= eh
->tls_get_addr
== 1;
1447 if (eh
->tls_get_addr
> 1)
1449 /* Use strncmp to check __tls_get_addr since
1450 __tls_get_addr may be versioned. */
1451 if (strncmp (h
->root
.root
.string
, "__tls_get_addr", 14)
1454 eh
->tls_get_addr
= 1;
1455 tls_get_addr
= TRUE
;
1458 eh
->tls_get_addr
= 0;
1465 return ELF32_R_TYPE (rel
[1].r_info
) == R_X86_64_PLTOFF64
;
1466 else if (indirect_call
)
1467 return ELF32_R_TYPE (rel
[1].r_info
) == R_X86_64_GOTPCRELX
;
1469 return (ELF32_R_TYPE (rel
[1].r_info
) == R_X86_64_PC32
1470 || ELF32_R_TYPE (rel
[1].r_info
) == R_X86_64_PLT32
);
1472 case R_X86_64_GOTTPOFF
:
1473 /* Check transition from IE access model:
1474 mov foo@gottpoff(%rip), %reg
1475 add foo@gottpoff(%rip), %reg
1478 /* Check REX prefix first. */
1479 if (offset
>= 3 && (offset
+ 4) <= sec
->size
)
1481 val
= bfd_get_8 (abfd
, contents
+ offset
- 3);
1482 if (val
!= 0x48 && val
!= 0x4c)
1484 /* X32 may have 0x44 REX prefix or no REX prefix. */
1485 if (ABI_64_P (abfd
))
1491 /* X32 may not have any REX prefix. */
1492 if (ABI_64_P (abfd
))
1494 if (offset
< 2 || (offset
+ 3) > sec
->size
)
1498 val
= bfd_get_8 (abfd
, contents
+ offset
- 2);
1499 if (val
!= 0x8b && val
!= 0x03)
1502 val
= bfd_get_8 (abfd
, contents
+ offset
- 1);
1503 return (val
& 0xc7) == 5;
1505 case R_X86_64_GOTPC32_TLSDESC
:
1506 /* Check transition from GDesc access model:
1507 leaq x@tlsdesc(%rip), %rax
1509 Make sure it's a leaq adding rip to a 32-bit offset
1510 into any register, although it's probably almost always
1513 if (offset
< 3 || (offset
+ 4) > sec
->size
)
1516 val
= bfd_get_8 (abfd
, contents
+ offset
- 3);
1517 if ((val
& 0xfb) != 0x48)
1520 if (bfd_get_8 (abfd
, contents
+ offset
- 2) != 0x8d)
1523 val
= bfd_get_8 (abfd
, contents
+ offset
- 1);
1524 return (val
& 0xc7) == 0x05;
1526 case R_X86_64_TLSDESC_CALL
:
1527 /* Check transition from GDesc access model:
1528 call *x@tlsdesc(%rax)
1530 if (offset
+ 2 <= sec
->size
)
1532 /* Make sure that it's a call *x@tlsdesc(%rax). */
1533 call
= contents
+ offset
;
1534 return call
[0] == 0xff && call
[1] == 0x10;
1544 /* Return TRUE if the TLS access transition is OK or no transition
1545 will be performed. Update R_TYPE if there is a transition. */
1548 elf_x86_64_tls_transition (struct bfd_link_info
*info
, bfd
*abfd
,
1549 asection
*sec
, bfd_byte
*contents
,
1550 Elf_Internal_Shdr
*symtab_hdr
,
1551 struct elf_link_hash_entry
**sym_hashes
,
1552 unsigned int *r_type
, int tls_type
,
1553 const Elf_Internal_Rela
*rel
,
1554 const Elf_Internal_Rela
*relend
,
1555 struct elf_link_hash_entry
*h
,
1556 unsigned long r_symndx
,
1557 bfd_boolean from_relocate_section
)
1559 unsigned int from_type
= *r_type
;
1560 unsigned int to_type
= from_type
;
1561 bfd_boolean check
= TRUE
;
1563 /* Skip TLS transition for functions. */
1565 && (h
->type
== STT_FUNC
1566 || h
->type
== STT_GNU_IFUNC
))
1571 case R_X86_64_TLSGD
:
1572 case R_X86_64_GOTPC32_TLSDESC
:
1573 case R_X86_64_TLSDESC_CALL
:
1574 case R_X86_64_GOTTPOFF
:
1575 if (bfd_link_executable (info
))
1578 to_type
= R_X86_64_TPOFF32
;
1580 to_type
= R_X86_64_GOTTPOFF
;
1583 /* When we are called from elf_x86_64_relocate_section, there may
1584 be additional transitions based on TLS_TYPE. */
1585 if (from_relocate_section
)
1587 unsigned int new_to_type
= to_type
;
1589 if (bfd_link_executable (info
)
1592 && tls_type
== GOT_TLS_IE
)
1593 new_to_type
= R_X86_64_TPOFF32
;
1595 if (to_type
== R_X86_64_TLSGD
1596 || to_type
== R_X86_64_GOTPC32_TLSDESC
1597 || to_type
== R_X86_64_TLSDESC_CALL
)
1599 if (tls_type
== GOT_TLS_IE
)
1600 new_to_type
= R_X86_64_GOTTPOFF
;
1603 /* We checked the transition before when we were called from
1604 elf_x86_64_check_relocs. We only want to check the new
1605 transition which hasn't been checked before. */
1606 check
= new_to_type
!= to_type
&& from_type
== to_type
;
1607 to_type
= new_to_type
;
1612 case R_X86_64_TLSLD
:
1613 if (bfd_link_executable (info
))
1614 to_type
= R_X86_64_TPOFF32
;
1621 /* Return TRUE if there is no transition. */
1622 if (from_type
== to_type
)
1625 /* Check if the transition can be performed. */
1627 && ! elf_x86_64_check_tls_transition (abfd
, info
, sec
, contents
,
1628 symtab_hdr
, sym_hashes
,
1629 from_type
, rel
, relend
))
1631 reloc_howto_type
*from
, *to
;
1634 from
= elf_x86_64_rtype_to_howto (abfd
, from_type
);
1635 to
= elf_x86_64_rtype_to_howto (abfd
, to_type
);
1638 name
= h
->root
.root
.string
;
1641 struct elf_x86_64_link_hash_table
*htab
;
1643 htab
= elf_x86_64_hash_table (info
);
1648 Elf_Internal_Sym
*isym
;
1650 isym
= bfd_sym_from_r_symndx (&htab
->sym_cache
,
1652 name
= bfd_elf_sym_name (abfd
, symtab_hdr
, isym
, NULL
);
1657 (_("%B: TLS transition from %s to %s against `%s' at 0x%lx "
1658 "in section `%A' failed"),
1659 abfd
, sec
, from
->name
, to
->name
, name
,
1660 (unsigned long) rel
->r_offset
);
1661 bfd_set_error (bfd_error_bad_value
);
1669 /* Rename some of the generic section flags to better document how they
1671 #define need_convert_load sec_flg0
1672 #define check_relocs_failed sec_flg1
1675 elf_x86_64_need_pic (bfd
*input_bfd
, asection
*sec
,
1676 struct elf_link_hash_entry
*h
,
1677 Elf_Internal_Shdr
*symtab_hdr
,
1678 Elf_Internal_Sym
*isym
,
1679 reloc_howto_type
*howto
)
1682 const char *und
= "";
1683 const char *pic
= "";
1688 name
= h
->root
.root
.string
;
1689 switch (ELF_ST_VISIBILITY (h
->other
))
1692 v
= _("hidden symbol ");
1695 v
= _("internal symbol ");
1698 v
= _("protected symbol ");
1702 pic
= _("; recompile with -fPIC");
1706 if (!h
->def_regular
&& !h
->def_dynamic
)
1707 und
= _("undefined ");
1711 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
, isym
, NULL
);
1712 pic
= _("; recompile with -fPIC");
1715 _bfd_error_handler (_("%B: relocation %s against %s%s`%s' can "
1716 "not be used when making a shared object%s"),
1717 input_bfd
, howto
->name
, und
, v
, name
, pic
);
1718 bfd_set_error (bfd_error_bad_value
);
1719 sec
->check_relocs_failed
= 1;
1723 /* With the local symbol, foo, we convert
1724 mov foo@GOTPCREL(%rip), %reg
1728 call/jmp *foo@GOTPCREL(%rip)
1730 nop call foo/jmp foo nop
1731 When PIC is false, convert
1732 test %reg, foo@GOTPCREL(%rip)
1736 binop foo@GOTPCREL(%rip), %reg
1739 where binop is one of adc, add, and, cmp, or, sbb, sub, xor
1743 elf_x86_64_convert_load_reloc (bfd
*abfd
, asection
*sec
,
1745 Elf_Internal_Rela
*irel
,
1746 struct elf_link_hash_entry
*h
,
1747 bfd_boolean
*converted
,
1748 struct bfd_link_info
*link_info
)
1750 struct elf_x86_64_link_hash_table
*htab
;
1752 bfd_boolean require_reloc_pc32
;
1754 bfd_boolean to_reloc_pc32
;
1757 bfd_signed_vma raddend
;
1758 unsigned int opcode
;
1760 unsigned int r_type
= ELF32_R_TYPE (irel
->r_info
);
1761 unsigned int r_symndx
;
1763 bfd_vma roff
= irel
->r_offset
;
1765 if (roff
< (r_type
== R_X86_64_REX_GOTPCRELX
? 3 : 2))
1768 raddend
= irel
->r_addend
;
1769 /* Addend for 32-bit PC-relative relocation must be -4. */
1773 htab
= elf_x86_64_hash_table (link_info
);
1774 is_pic
= bfd_link_pic (link_info
);
1776 relocx
= (r_type
== R_X86_64_GOTPCRELX
1777 || r_type
== R_X86_64_REX_GOTPCRELX
);
1779 /* TRUE if we can convert only to R_X86_64_PC32. Enable it for
1782 = link_info
->disable_target_specific_optimizations
> 1;
1784 r_symndx
= htab
->r_sym (irel
->r_info
);
1786 opcode
= bfd_get_8 (abfd
, contents
+ roff
- 2);
1788 /* Convert mov to lea since it has been done for a while. */
1791 /* Only convert R_X86_64_GOTPCRELX and R_X86_64_REX_GOTPCRELX
1792 for call, jmp or one of adc, add, and, cmp, or, sbb, sub,
1793 test, xor instructions. */
1798 /* We convert only to R_X86_64_PC32:
1800 2. R_X86_64_GOTPCREL since we can't modify REX byte.
1801 3. require_reloc_pc32 is true.
1804 to_reloc_pc32
= (opcode
== 0xff
1806 || require_reloc_pc32
1809 /* Get the symbol referred to by the reloc. */
1812 Elf_Internal_Sym
*isym
1813 = bfd_sym_from_r_symndx (&htab
->sym_cache
, abfd
, r_symndx
);
1815 /* Skip relocation against undefined symbols. */
1816 if (isym
->st_shndx
== SHN_UNDEF
)
1819 symtype
= ELF_ST_TYPE (isym
->st_info
);
1821 if (isym
->st_shndx
== SHN_ABS
)
1822 tsec
= bfd_abs_section_ptr
;
1823 else if (isym
->st_shndx
== SHN_COMMON
)
1824 tsec
= bfd_com_section_ptr
;
1825 else if (isym
->st_shndx
== SHN_X86_64_LCOMMON
)
1826 tsec
= &_bfd_elf_large_com_section
;
1828 tsec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
1830 toff
= isym
->st_value
;
1834 /* Undefined weak symbol is only bound locally in executable
1835 and its reference is resolved as 0 without relocation
1836 overflow. We can only perform this optimization for
1837 GOTPCRELX relocations since we need to modify REX byte.
1838 It is OK convert mov with R_X86_64_GOTPCREL to
1840 if ((relocx
|| opcode
== 0x8b)
1841 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (link_info
,
1843 elf_x86_64_hash_entry (h
)))
1847 /* Skip for branch instructions since R_X86_64_PC32
1849 if (require_reloc_pc32
)
1854 /* For non-branch instructions, we can convert to
1855 R_X86_64_32/R_X86_64_32S since we know if there
1857 to_reloc_pc32
= FALSE
;
1860 /* Since we don't know the current PC when PIC is true,
1861 we can't convert to R_X86_64_PC32. */
1862 if (to_reloc_pc32
&& is_pic
)
1867 /* Avoid optimizing GOTPCREL relocations againt _DYNAMIC since
1868 ld.so may use its link-time address. */
1869 else if ((h
->def_regular
1870 || h
->root
.type
== bfd_link_hash_defined
1871 || h
->root
.type
== bfd_link_hash_defweak
)
1872 && h
!= htab
->elf
.hdynamic
1873 && SYMBOL_REFERENCES_LOCAL (link_info
, h
))
1875 /* bfd_link_hash_new or bfd_link_hash_undefined is
1876 set by an assignment in a linker script in
1877 bfd_elf_record_link_assignment. */
1879 && (h
->root
.type
== bfd_link_hash_new
1880 || h
->root
.type
== bfd_link_hash_undefined
))
1882 /* Skip since R_X86_64_32/R_X86_64_32S may overflow. */
1883 if (require_reloc_pc32
)
1887 tsec
= h
->root
.u
.def
.section
;
1888 toff
= h
->root
.u
.def
.value
;
1895 /* Don't convert GOTPCREL relocation against large section. */
1896 if (elf_section_data (tsec
) != NULL
1897 && (elf_section_flags (tsec
) & SHF_X86_64_LARGE
) != 0)
1900 /* We can only estimate relocation overflow for R_X86_64_PC32. */
1904 if (tsec
->sec_info_type
== SEC_INFO_TYPE_MERGE
)
1906 /* At this stage in linking, no SEC_MERGE symbol has been
1907 adjusted, so all references to such symbols need to be
1908 passed through _bfd_merged_section_offset. (Later, in
1909 relocate_section, all SEC_MERGE symbols *except* for
1910 section symbols have been adjusted.)
1912 gas may reduce relocations against symbols in SEC_MERGE
1913 sections to a relocation against the section symbol when
1914 the original addend was zero. When the reloc is against
1915 a section symbol we should include the addend in the
1916 offset passed to _bfd_merged_section_offset, since the
1917 location of interest is the original symbol. On the
1918 other hand, an access to "sym+addend" where "sym" is not
1919 a section symbol should not include the addend; Such an
1920 access is presumed to be an offset from "sym"; The
1921 location of interest is just "sym". */
1922 if (symtype
== STT_SECTION
)
1925 toff
= _bfd_merged_section_offset (abfd
, &tsec
,
1926 elf_section_data (tsec
)->sec_info
,
1929 if (symtype
!= STT_SECTION
)
1935 /* Don't convert if R_X86_64_PC32 relocation overflows. */
1936 if (tsec
->output_section
== sec
->output_section
)
1938 if ((toff
- roff
+ 0x80000000) > 0xffffffff)
1943 bfd_signed_vma distance
;
1945 /* At this point, we don't know the load addresses of TSEC
1946 section nor SEC section. We estimate the distrance between
1947 SEC and TSEC. We store the estimated distances in the
1948 compressed_size field of the output section, which is only
1949 used to decompress the compressed input section. */
1950 if (sec
->output_section
->compressed_size
== 0)
1953 bfd_size_type size
= 0;
1954 for (asect
= link_info
->output_bfd
->sections
;
1956 asect
= asect
->next
)
1957 /* Skip debug sections since compressed_size is used to
1958 compress debug sections. */
1959 if ((asect
->flags
& SEC_DEBUGGING
) == 0)
1962 for (i
= asect
->map_head
.s
;
1966 size
= align_power (size
, i
->alignment_power
);
1969 asect
->compressed_size
= size
;
1973 /* Don't convert GOTPCREL relocations if TSEC isn't placed
1975 distance
= (tsec
->output_section
->compressed_size
1976 - sec
->output_section
->compressed_size
);
1980 /* Take PT_GNU_RELRO segment into account by adding
1982 if ((toff
+ distance
+ get_elf_backend_data (abfd
)->maxpagesize
1983 - roff
+ 0x80000000) > 0xffffffff)
1990 /* We have "call/jmp *foo@GOTPCREL(%rip)". */
1995 /* Convert R_X86_64_GOTPCRELX and R_X86_64_REX_GOTPCRELX to
1997 modrm
= bfd_get_8 (abfd
, contents
+ roff
- 1);
2000 /* Convert to "jmp foo nop". */
2003 nop_offset
= irel
->r_offset
+ 3;
2004 disp
= bfd_get_32 (abfd
, contents
+ irel
->r_offset
);
2005 irel
->r_offset
-= 1;
2006 bfd_put_32 (abfd
, disp
, contents
+ irel
->r_offset
);
2010 struct elf_x86_64_link_hash_entry
*eh
2011 = (struct elf_x86_64_link_hash_entry
*) h
;
2013 /* Convert to "nop call foo". ADDR_PREFIX_OPCODE
2016 /* To support TLS optimization, always use addr32 prefix for
2017 "call *__tls_get_addr@GOTPCREL(%rip)". */
2018 if (eh
&& eh
->tls_get_addr
== 1)
2021 nop_offset
= irel
->r_offset
- 2;
2025 nop
= link_info
->call_nop_byte
;
2026 if (link_info
->call_nop_as_suffix
)
2028 nop_offset
= irel
->r_offset
+ 3;
2029 disp
= bfd_get_32 (abfd
, contents
+ irel
->r_offset
);
2030 irel
->r_offset
-= 1;
2031 bfd_put_32 (abfd
, disp
, contents
+ irel
->r_offset
);
2034 nop_offset
= irel
->r_offset
- 2;
2037 bfd_put_8 (abfd
, nop
, contents
+ nop_offset
);
2038 bfd_put_8 (abfd
, modrm
, contents
+ irel
->r_offset
- 1);
2039 r_type
= R_X86_64_PC32
;
2044 unsigned int rex_mask
= REX_R
;
2046 if (r_type
== R_X86_64_REX_GOTPCRELX
)
2047 rex
= bfd_get_8 (abfd
, contents
+ roff
- 3);
2055 /* Convert "mov foo@GOTPCREL(%rip), %reg" to
2056 "lea foo(%rip), %reg". */
2058 r_type
= R_X86_64_PC32
;
2062 /* Convert "mov foo@GOTPCREL(%rip), %reg" to
2063 "mov $foo, %reg". */
2065 modrm
= bfd_get_8 (abfd
, contents
+ roff
- 1);
2066 modrm
= 0xc0 | (modrm
& 0x38) >> 3;
2067 if ((rex
& REX_W
) != 0
2068 && ABI_64_P (link_info
->output_bfd
))
2070 /* Keep the REX_W bit in REX byte for LP64. */
2071 r_type
= R_X86_64_32S
;
2072 goto rewrite_modrm_rex
;
2076 /* If the REX_W bit in REX byte isn't needed,
2077 use R_X86_64_32 and clear the W bit to avoid
2078 sign-extend imm32 to imm64. */
2079 r_type
= R_X86_64_32
;
2080 /* Clear the W bit in REX byte. */
2082 goto rewrite_modrm_rex
;
2088 /* R_X86_64_PC32 isn't supported. */
2092 modrm
= bfd_get_8 (abfd
, contents
+ roff
- 1);
2095 /* Convert "test %reg, foo@GOTPCREL(%rip)" to
2096 "test $foo, %reg". */
2097 modrm
= 0xc0 | (modrm
& 0x38) >> 3;
2102 /* Convert "binop foo@GOTPCREL(%rip), %reg" to
2103 "binop $foo, %reg". */
2104 modrm
= 0xc0 | (modrm
& 0x38) >> 3 | (opcode
& 0x3c);
2108 /* Use R_X86_64_32 with 32-bit operand to avoid relocation
2109 overflow when sign-extending imm32 to imm64. */
2110 r_type
= (rex
& REX_W
) != 0 ? R_X86_64_32S
: R_X86_64_32
;
2113 bfd_put_8 (abfd
, modrm
, contents
+ roff
- 1);
2117 /* Move the R bit to the B bit in REX byte. */
2118 rex
= (rex
& ~rex_mask
) | (rex
& REX_R
) >> 2;
2119 bfd_put_8 (abfd
, rex
, contents
+ roff
- 3);
2122 /* No addend for R_X86_64_32/R_X86_64_32S relocations. */
2126 bfd_put_8 (abfd
, opcode
, contents
+ roff
- 2);
2129 irel
->r_info
= htab
->r_info (r_symndx
, r_type
);
2136 /* Look through the relocs for a section during the first phase, and
2137 calculate needed space in the global offset table, procedure
2138 linkage table, and dynamic reloc sections. */
2141 elf_x86_64_check_relocs (bfd
*abfd
, struct bfd_link_info
*info
,
2143 const Elf_Internal_Rela
*relocs
)
2145 struct elf_x86_64_link_hash_table
*htab
;
2146 Elf_Internal_Shdr
*symtab_hdr
;
2147 struct elf_link_hash_entry
**sym_hashes
;
2148 const Elf_Internal_Rela
*rel
;
2149 const Elf_Internal_Rela
*rel_end
;
2152 bfd_boolean use_plt_got
;
2154 if (bfd_link_relocatable (info
))
2157 /* Don't do anything special with non-loaded, non-alloced sections.
2158 In particular, any relocs in such sections should not affect GOT
2159 and PLT reference counting (ie. we don't allow them to create GOT
2160 or PLT entries), there's no possibility or desire to optimize TLS
2161 relocs, and there's not much point in propagating relocs to shared
2162 libs that the dynamic linker won't relocate. */
2163 if ((sec
->flags
& SEC_ALLOC
) == 0)
2166 BFD_ASSERT (is_x86_64_elf (abfd
));
2168 htab
= elf_x86_64_hash_table (info
);
2171 sec
->check_relocs_failed
= 1;
2175 /* Get the section contents. */
2176 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
2177 contents
= elf_section_data (sec
)->this_hdr
.contents
;
2178 else if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
2180 sec
->check_relocs_failed
= 1;
2184 use_plt_got
= get_elf_x86_64_backend_data (abfd
) == &elf_x86_64_arch_bed
;
2186 symtab_hdr
= &elf_symtab_hdr (abfd
);
2187 sym_hashes
= elf_sym_hashes (abfd
);
2191 rel_end
= relocs
+ sec
->reloc_count
;
2192 for (rel
= relocs
; rel
< rel_end
; rel
++)
2194 unsigned int r_type
;
2195 unsigned long r_symndx
;
2196 struct elf_link_hash_entry
*h
;
2197 struct elf_x86_64_link_hash_entry
*eh
;
2198 Elf_Internal_Sym
*isym
;
2200 bfd_boolean size_reloc
;
2202 r_symndx
= htab
->r_sym (rel
->r_info
);
2203 r_type
= ELF32_R_TYPE (rel
->r_info
);
2205 if (r_symndx
>= NUM_SHDR_ENTRIES (symtab_hdr
))
2207 _bfd_error_handler (_("%B: bad symbol index: %d"),
2212 if (r_symndx
< symtab_hdr
->sh_info
)
2214 /* A local symbol. */
2215 isym
= bfd_sym_from_r_symndx (&htab
->sym_cache
,
2220 /* Check relocation against local STT_GNU_IFUNC symbol. */
2221 if (ELF_ST_TYPE (isym
->st_info
) == STT_GNU_IFUNC
)
2223 h
= elf_x86_64_get_local_sym_hash (htab
, abfd
, rel
,
2228 /* Fake a STT_GNU_IFUNC symbol. */
2229 h
->type
= STT_GNU_IFUNC
;
2232 h
->forced_local
= 1;
2233 h
->root
.type
= bfd_link_hash_defined
;
2241 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
2242 while (h
->root
.type
== bfd_link_hash_indirect
2243 || h
->root
.type
== bfd_link_hash_warning
)
2244 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2247 /* Check invalid x32 relocations. */
2248 if (!ABI_64_P (abfd
))
2254 case R_X86_64_DTPOFF64
:
2255 case R_X86_64_TPOFF64
:
2257 case R_X86_64_GOTOFF64
:
2258 case R_X86_64_GOT64
:
2259 case R_X86_64_GOTPCREL64
:
2260 case R_X86_64_GOTPC64
:
2261 case R_X86_64_GOTPLT64
:
2262 case R_X86_64_PLTOFF64
:
2265 name
= h
->root
.root
.string
;
2267 name
= bfd_elf_sym_name (abfd
, symtab_hdr
, isym
,
2270 (_("%B: relocation %s against symbol `%s' isn't "
2271 "supported in x32 mode"), abfd
,
2272 x86_64_elf_howto_table
[r_type
].name
, name
);
2273 bfd_set_error (bfd_error_bad_value
);
2286 case R_X86_64_PC32_BND
:
2287 case R_X86_64_PLT32_BND
:
2289 case R_X86_64_PLT32
:
2292 /* MPX PLT is supported only if elf_x86_64_arch_bed
2293 is used in 64-bit mode. */
2296 && (get_elf_x86_64_backend_data (abfd
)
2297 == &elf_x86_64_arch_bed
))
2299 elf_x86_64_hash_entry (h
)->has_bnd_reloc
= 1;
2301 /* Create the second PLT for Intel MPX support. */
2302 if (htab
->plt_bnd
== NULL
)
2304 unsigned int plt_bnd_align
;
2305 const struct elf_backend_data
*bed
;
2307 bed
= get_elf_backend_data (info
->output_bfd
);
2308 BFD_ASSERT (sizeof (elf_x86_64_bnd_plt2_entry
) == 8
2309 && (sizeof (elf_x86_64_bnd_plt2_entry
)
2310 == sizeof (elf_x86_64_legacy_plt2_entry
)));
2313 if (htab
->elf
.dynobj
== NULL
)
2314 htab
->elf
.dynobj
= abfd
;
2316 = bfd_make_section_anyway_with_flags (htab
->elf
.dynobj
,
2318 (bed
->dynamic_sec_flags
2323 if (htab
->plt_bnd
== NULL
2324 || !bfd_set_section_alignment (htab
->elf
.dynobj
,
2334 case R_X86_64_GOTPCREL
:
2335 case R_X86_64_GOTPCRELX
:
2336 case R_X86_64_REX_GOTPCRELX
:
2337 case R_X86_64_GOTPCREL64
:
2338 if (htab
->elf
.dynobj
== NULL
)
2339 htab
->elf
.dynobj
= abfd
;
2340 /* Create the ifunc sections for static executables. */
2341 if (h
->type
== STT_GNU_IFUNC
2342 && !_bfd_elf_create_ifunc_sections (htab
->elf
.dynobj
,
2348 /* It is referenced by a non-shared object. */
2350 h
->root
.non_ir_ref
= 1;
2352 if (h
->type
== STT_GNU_IFUNC
)
2353 elf_tdata (info
->output_bfd
)->has_gnu_symbols
2354 |= elf_gnu_symbol_ifunc
;
2357 if (! elf_x86_64_tls_transition (info
, abfd
, sec
, contents
,
2358 symtab_hdr
, sym_hashes
,
2359 &r_type
, GOT_UNKNOWN
,
2360 rel
, rel_end
, h
, r_symndx
, FALSE
))
2363 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
2366 case R_X86_64_TLSLD
:
2367 htab
->tls_ld_got
.refcount
+= 1;
2370 case R_X86_64_TPOFF32
:
2371 if (!bfd_link_executable (info
) && ABI_64_P (abfd
))
2372 return elf_x86_64_need_pic (abfd
, sec
, h
, symtab_hdr
, isym
,
2373 &x86_64_elf_howto_table
[r_type
]);
2375 eh
->has_got_reloc
= 1;
2378 case R_X86_64_GOTTPOFF
:
2379 if (!bfd_link_executable (info
))
2380 info
->flags
|= DF_STATIC_TLS
;
2383 case R_X86_64_GOT32
:
2384 case R_X86_64_GOTPCREL
:
2385 case R_X86_64_GOTPCRELX
:
2386 case R_X86_64_REX_GOTPCRELX
:
2387 case R_X86_64_TLSGD
:
2388 case R_X86_64_GOT64
:
2389 case R_X86_64_GOTPCREL64
:
2390 case R_X86_64_GOTPLT64
:
2391 case R_X86_64_GOTPC32_TLSDESC
:
2392 case R_X86_64_TLSDESC_CALL
:
2393 /* This symbol requires a global offset table entry. */
2395 int tls_type
, old_tls_type
;
2399 default: tls_type
= GOT_NORMAL
; break;
2400 case R_X86_64_TLSGD
: tls_type
= GOT_TLS_GD
; break;
2401 case R_X86_64_GOTTPOFF
: tls_type
= GOT_TLS_IE
; break;
2402 case R_X86_64_GOTPC32_TLSDESC
:
2403 case R_X86_64_TLSDESC_CALL
:
2404 tls_type
= GOT_TLS_GDESC
; break;
2409 h
->got
.refcount
+= 1;
2410 old_tls_type
= eh
->tls_type
;
2414 bfd_signed_vma
*local_got_refcounts
;
2416 /* This is a global offset table entry for a local symbol. */
2417 local_got_refcounts
= elf_local_got_refcounts (abfd
);
2418 if (local_got_refcounts
== NULL
)
2422 size
= symtab_hdr
->sh_info
;
2423 size
*= sizeof (bfd_signed_vma
)
2424 + sizeof (bfd_vma
) + sizeof (char);
2425 local_got_refcounts
= ((bfd_signed_vma
*)
2426 bfd_zalloc (abfd
, size
));
2427 if (local_got_refcounts
== NULL
)
2429 elf_local_got_refcounts (abfd
) = local_got_refcounts
;
2430 elf_x86_64_local_tlsdesc_gotent (abfd
)
2431 = (bfd_vma
*) (local_got_refcounts
+ symtab_hdr
->sh_info
);
2432 elf_x86_64_local_got_tls_type (abfd
)
2433 = (char *) (local_got_refcounts
+ 2 * symtab_hdr
->sh_info
);
2435 local_got_refcounts
[r_symndx
] += 1;
2437 = elf_x86_64_local_got_tls_type (abfd
) [r_symndx
];
2440 /* If a TLS symbol is accessed using IE at least once,
2441 there is no point to use dynamic model for it. */
2442 if (old_tls_type
!= tls_type
&& old_tls_type
!= GOT_UNKNOWN
2443 && (! GOT_TLS_GD_ANY_P (old_tls_type
)
2444 || tls_type
!= GOT_TLS_IE
))
2446 if (old_tls_type
== GOT_TLS_IE
&& GOT_TLS_GD_ANY_P (tls_type
))
2447 tls_type
= old_tls_type
;
2448 else if (GOT_TLS_GD_ANY_P (old_tls_type
)
2449 && GOT_TLS_GD_ANY_P (tls_type
))
2450 tls_type
|= old_tls_type
;
2454 name
= h
->root
.root
.string
;
2456 name
= bfd_elf_sym_name (abfd
, symtab_hdr
,
2459 (_("%B: '%s' accessed both as normal and thread local symbol"),
2461 bfd_set_error (bfd_error_bad_value
);
2466 if (old_tls_type
!= tls_type
)
2469 eh
->tls_type
= tls_type
;
2471 elf_x86_64_local_got_tls_type (abfd
) [r_symndx
] = tls_type
;
2476 case R_X86_64_GOTOFF64
:
2477 case R_X86_64_GOTPC32
:
2478 case R_X86_64_GOTPC64
:
2481 eh
->has_got_reloc
= 1;
2482 if (htab
->elf
.sgot
== NULL
)
2484 if (htab
->elf
.dynobj
== NULL
)
2485 htab
->elf
.dynobj
= abfd
;
2486 if (!_bfd_elf_create_got_section (htab
->elf
.dynobj
,
2492 case R_X86_64_PLT32
:
2493 case R_X86_64_PLT32_BND
:
2494 /* This symbol requires a procedure linkage table entry. We
2495 actually build the entry in adjust_dynamic_symbol,
2496 because this might be a case of linking PIC code which is
2497 never referenced by a dynamic object, in which case we
2498 don't need to generate a procedure linkage table entry
2501 /* If this is a local symbol, we resolve it directly without
2502 creating a procedure linkage table entry. */
2506 eh
->has_got_reloc
= 1;
2508 h
->plt
.refcount
+= 1;
2511 case R_X86_64_PLTOFF64
:
2512 /* This tries to form the 'address' of a function relative
2513 to GOT. For global symbols we need a PLT entry. */
2517 h
->plt
.refcount
+= 1;
2521 case R_X86_64_SIZE32
:
2522 case R_X86_64_SIZE64
:
2527 if (!ABI_64_P (abfd
))
2533 /* Check relocation overflow as these relocs may lead to
2534 run-time relocation overflow. Don't error out for
2535 sections we don't care about, such as debug sections or
2536 when relocation overflow check is disabled. */
2537 if (!info
->no_reloc_overflow_check
2538 && (bfd_link_pic (info
)
2539 || (bfd_link_executable (info
)
2543 && (sec
->flags
& SEC_READONLY
) == 0)))
2544 return elf_x86_64_need_pic (abfd
, sec
, h
, symtab_hdr
, isym
,
2545 &x86_64_elf_howto_table
[r_type
]);
2551 case R_X86_64_PC32_BND
:
2555 if (eh
!= NULL
&& (sec
->flags
& SEC_CODE
) != 0)
2556 eh
->has_non_got_reloc
= 1;
2557 /* We are called after all symbols have been resolved. Only
2558 relocation against STT_GNU_IFUNC symbol must go through
2561 && (bfd_link_executable (info
)
2562 || h
->type
== STT_GNU_IFUNC
))
2564 /* If this reloc is in a read-only section, we might
2565 need a copy reloc. We can't check reliably at this
2566 stage whether the section is read-only, as input
2567 sections have not yet been mapped to output sections.
2568 Tentatively set the flag for now, and correct in
2569 adjust_dynamic_symbol. */
2572 /* We may need a .plt entry if the symbol is a function
2573 defined in a shared lib or is a STT_GNU_IFUNC function
2574 referenced from the code or read-only section. */
2576 || (sec
->flags
& (SEC_CODE
| SEC_READONLY
)) != 0)
2577 h
->plt
.refcount
+= 1;
2579 if (r_type
== R_X86_64_PC32
)
2581 /* Since something like ".long foo - ." may be used
2582 as pointer, make sure that PLT is used if foo is
2583 a function defined in a shared library. */
2584 if ((sec
->flags
& SEC_CODE
) == 0)
2585 h
->pointer_equality_needed
= 1;
2587 else if (r_type
!= R_X86_64_PC32_BND
2588 && r_type
!= R_X86_64_PC64
)
2590 h
->pointer_equality_needed
= 1;
2591 /* At run-time, R_X86_64_64 can be resolved for both
2592 x86-64 and x32. But R_X86_64_32 and R_X86_64_32S
2593 can only be resolved for x32. */
2594 if ((sec
->flags
& SEC_READONLY
) == 0
2595 && (r_type
== R_X86_64_64
2596 || (!ABI_64_P (abfd
)
2597 && (r_type
== R_X86_64_32
2598 || r_type
== R_X86_64_32S
))))
2599 eh
->func_pointer_refcount
+= 1;
2605 /* If we are creating a shared library, and this is a reloc
2606 against a global symbol, or a non PC relative reloc
2607 against a local symbol, then we need to copy the reloc
2608 into the shared library. However, if we are linking with
2609 -Bsymbolic, we do not need to copy a reloc against a
2610 global symbol which is defined in an object we are
2611 including in the link (i.e., DEF_REGULAR is set). At
2612 this point we have not seen all the input files, so it is
2613 possible that DEF_REGULAR is not set now but will be set
2614 later (it is never cleared). In case of a weak definition,
2615 DEF_REGULAR may be cleared later by a strong definition in
2616 a shared library. We account for that possibility below by
2617 storing information in the relocs_copied field of the hash
2618 table entry. A similar situation occurs when creating
2619 shared libraries and symbol visibility changes render the
2622 If on the other hand, we are creating an executable, we
2623 may need to keep relocations for symbols satisfied by a
2624 dynamic library if we manage to avoid copy relocs for the
2627 Generate dynamic pointer relocation against STT_GNU_IFUNC
2628 symbol in the non-code section. */
2629 if ((bfd_link_pic (info
)
2630 && (! IS_X86_64_PCREL_TYPE (r_type
)
2632 && (! (bfd_link_pie (info
)
2633 || SYMBOLIC_BIND (info
, h
))
2634 || h
->root
.type
== bfd_link_hash_defweak
2635 || !h
->def_regular
))))
2637 && h
->type
== STT_GNU_IFUNC
2638 && r_type
== htab
->pointer_r_type
2639 && (sec
->flags
& SEC_CODE
) == 0)
2640 || (ELIMINATE_COPY_RELOCS
2641 && !bfd_link_pic (info
)
2643 && (h
->root
.type
== bfd_link_hash_defweak
2644 || !h
->def_regular
)))
2646 struct elf_dyn_relocs
*p
;
2647 struct elf_dyn_relocs
**head
;
2649 /* We must copy these reloc types into the output file.
2650 Create a reloc section in dynobj and make room for
2654 if (htab
->elf
.dynobj
== NULL
)
2655 htab
->elf
.dynobj
= abfd
;
2657 sreloc
= _bfd_elf_make_dynamic_reloc_section
2658 (sec
, htab
->elf
.dynobj
, ABI_64_P (abfd
) ? 3 : 2,
2659 abfd
, /*rela?*/ TRUE
);
2665 /* If this is a global symbol, we count the number of
2666 relocations we need for this symbol. */
2668 head
= &eh
->dyn_relocs
;
2671 /* Track dynamic relocs needed for local syms too.
2672 We really need local syms available to do this
2677 isym
= bfd_sym_from_r_symndx (&htab
->sym_cache
,
2682 s
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
2686 /* Beware of type punned pointers vs strict aliasing
2688 vpp
= &(elf_section_data (s
)->local_dynrel
);
2689 head
= (struct elf_dyn_relocs
**)vpp
;
2693 if (p
== NULL
|| p
->sec
!= sec
)
2695 bfd_size_type amt
= sizeof *p
;
2697 p
= ((struct elf_dyn_relocs
*)
2698 bfd_alloc (htab
->elf
.dynobj
, amt
));
2709 /* Count size relocation as PC-relative relocation. */
2710 if (IS_X86_64_PCREL_TYPE (r_type
) || size_reloc
)
2715 /* This relocation describes the C++ object vtable hierarchy.
2716 Reconstruct it for later use during GC. */
2717 case R_X86_64_GNU_VTINHERIT
:
2718 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
2722 /* This relocation describes which C++ vtable entries are actually
2723 used. Record for later use during GC. */
2724 case R_X86_64_GNU_VTENTRY
:
2725 BFD_ASSERT (h
!= NULL
);
2727 && !bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
2737 && h
->plt
.refcount
> 0
2738 && (((info
->flags
& DF_BIND_NOW
) && !h
->pointer_equality_needed
)
2739 || h
->got
.refcount
> 0)
2740 && htab
->plt_got
== NULL
)
2742 /* Create the GOT procedure linkage table. */
2743 unsigned int plt_got_align
;
2744 const struct elf_backend_data
*bed
;
2746 bed
= get_elf_backend_data (info
->output_bfd
);
2747 BFD_ASSERT (sizeof (elf_x86_64_legacy_plt2_entry
) == 8
2748 && (sizeof (elf_x86_64_bnd_plt2_entry
)
2749 == sizeof (elf_x86_64_legacy_plt2_entry
)));
2752 if (htab
->elf
.dynobj
== NULL
)
2753 htab
->elf
.dynobj
= abfd
;
2755 = bfd_make_section_anyway_with_flags (htab
->elf
.dynobj
,
2757 (bed
->dynamic_sec_flags
2762 if (htab
->plt_got
== NULL
2763 || !bfd_set_section_alignment (htab
->elf
.dynobj
,
2769 if ((r_type
== R_X86_64_GOTPCREL
2770 || r_type
== R_X86_64_GOTPCRELX
2771 || r_type
== R_X86_64_REX_GOTPCRELX
)
2772 && (h
== NULL
|| h
->type
!= STT_GNU_IFUNC
))
2773 sec
->need_convert_load
= 1;
2776 if (elf_section_data (sec
)->this_hdr
.contents
!= contents
)
2778 if (!info
->keep_memory
)
2782 /* Cache the section contents for elf_link_input_bfd. */
2783 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2790 if (elf_section_data (sec
)->this_hdr
.contents
!= contents
)
2792 sec
->check_relocs_failed
= 1;
2796 /* Return the section that should be marked against GC for a given
2800 elf_x86_64_gc_mark_hook (asection
*sec
,
2801 struct bfd_link_info
*info
,
2802 Elf_Internal_Rela
*rel
,
2803 struct elf_link_hash_entry
*h
,
2804 Elf_Internal_Sym
*sym
)
2807 switch (ELF32_R_TYPE (rel
->r_info
))
2809 case R_X86_64_GNU_VTINHERIT
:
2810 case R_X86_64_GNU_VTENTRY
:
2814 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
2817 /* Remove undefined weak symbol from the dynamic symbol table if it
2818 is resolved to 0. */
2821 elf_x86_64_fixup_symbol (struct bfd_link_info
*info
,
2822 struct elf_link_hash_entry
*h
)
2824 if (h
->dynindx
!= -1
2825 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (info
,
2826 elf_x86_64_hash_entry (h
)->has_got_reloc
,
2827 elf_x86_64_hash_entry (h
)))
2830 _bfd_elf_strtab_delref (elf_hash_table (info
)->dynstr
,
2836 /* Adjust a symbol defined by a dynamic object and referenced by a
2837 regular object. The current definition is in some section of the
2838 dynamic object, but we're not including those sections. We have to
2839 change the definition to something the rest of the link can
2843 elf_x86_64_adjust_dynamic_symbol (struct bfd_link_info
*info
,
2844 struct elf_link_hash_entry
*h
)
2846 struct elf_x86_64_link_hash_table
*htab
;
2848 struct elf_x86_64_link_hash_entry
*eh
;
2849 struct elf_dyn_relocs
*p
;
2851 /* STT_GNU_IFUNC symbol must go through PLT. */
2852 if (h
->type
== STT_GNU_IFUNC
)
2854 /* All local STT_GNU_IFUNC references must be treate as local
2855 calls via local PLT. */
2857 && SYMBOL_CALLS_LOCAL (info
, h
))
2859 bfd_size_type pc_count
= 0, count
= 0;
2860 struct elf_dyn_relocs
**pp
;
2862 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
2863 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; )
2865 pc_count
+= p
->pc_count
;
2866 p
->count
-= p
->pc_count
;
2875 if (pc_count
|| count
)
2880 /* Increment PLT reference count only for PC-relative
2883 if (h
->plt
.refcount
<= 0)
2884 h
->plt
.refcount
= 1;
2886 h
->plt
.refcount
+= 1;
2891 if (h
->plt
.refcount
<= 0)
2893 h
->plt
.offset
= (bfd_vma
) -1;
2899 /* If this is a function, put it in the procedure linkage table. We
2900 will fill in the contents of the procedure linkage table later,
2901 when we know the address of the .got section. */
2902 if (h
->type
== STT_FUNC
2905 if (h
->plt
.refcount
<= 0
2906 || SYMBOL_CALLS_LOCAL (info
, h
)
2907 || (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
2908 && h
->root
.type
== bfd_link_hash_undefweak
))
2910 /* This case can occur if we saw a PLT32 reloc in an input
2911 file, but the symbol was never referred to by a dynamic
2912 object, or if all references were garbage collected. In
2913 such a case, we don't actually need to build a procedure
2914 linkage table, and we can just do a PC32 reloc instead. */
2915 h
->plt
.offset
= (bfd_vma
) -1;
2922 /* It's possible that we incorrectly decided a .plt reloc was
2923 needed for an R_X86_64_PC32 reloc to a non-function sym in
2924 check_relocs. We can't decide accurately between function and
2925 non-function syms in check-relocs; Objects loaded later in
2926 the link may change h->type. So fix it now. */
2927 h
->plt
.offset
= (bfd_vma
) -1;
2929 /* If this is a weak symbol, and there is a real definition, the
2930 processor independent code will have arranged for us to see the
2931 real definition first, and we can just use the same value. */
2932 if (h
->u
.weakdef
!= NULL
)
2934 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
2935 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
2936 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
2937 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
2938 if (ELIMINATE_COPY_RELOCS
|| info
->nocopyreloc
)
2940 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
2941 h
->non_got_ref
= h
->u
.weakdef
->non_got_ref
;
2942 eh
->needs_copy
= h
->u
.weakdef
->needs_copy
;
2947 /* This is a reference to a symbol defined by a dynamic object which
2948 is not a function. */
2950 /* If we are creating a shared library, we must presume that the
2951 only references to the symbol are via the global offset table.
2952 For such cases we need not do anything here; the relocations will
2953 be handled correctly by relocate_section. */
2954 if (!bfd_link_executable (info
))
2957 /* If there are no references to this symbol that do not use the
2958 GOT, we don't need to generate a copy reloc. */
2959 if (!h
->non_got_ref
)
2962 /* If -z nocopyreloc was given, we won't generate them either. */
2963 if (info
->nocopyreloc
)
2969 if (ELIMINATE_COPY_RELOCS
)
2971 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
2972 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2974 s
= p
->sec
->output_section
;
2975 if (s
!= NULL
&& (s
->flags
& SEC_READONLY
) != 0)
2979 /* If we didn't find any dynamic relocs in read-only sections, then
2980 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
2988 /* We must allocate the symbol in our .dynbss section, which will
2989 become part of the .bss section of the executable. There will be
2990 an entry for this symbol in the .dynsym section. The dynamic
2991 object will contain position independent code, so all references
2992 from the dynamic object to this symbol will go through the global
2993 offset table. The dynamic linker will use the .dynsym entry to
2994 determine the address it must put in the global offset table, so
2995 both the dynamic object and the regular object will refer to the
2996 same memory location for the variable. */
2998 htab
= elf_x86_64_hash_table (info
);
3002 /* We must generate a R_X86_64_COPY reloc to tell the dynamic linker
3003 to copy the initial value out of the dynamic object and into the
3004 runtime process image. */
3005 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0 && h
->size
!= 0)
3007 const struct elf_backend_data
*bed
;
3008 bed
= get_elf_backend_data (info
->output_bfd
);
3009 htab
->srelbss
->size
+= bed
->s
->sizeof_rela
;
3015 return _bfd_elf_adjust_dynamic_copy (info
, h
, s
);
3018 /* Allocate space in .plt, .got and associated reloc sections for
3022 elf_x86_64_allocate_dynrelocs (struct elf_link_hash_entry
*h
, void * inf
)
3024 struct bfd_link_info
*info
;
3025 struct elf_x86_64_link_hash_table
*htab
;
3026 struct elf_x86_64_link_hash_entry
*eh
;
3027 struct elf_dyn_relocs
*p
;
3028 const struct elf_backend_data
*bed
;
3029 unsigned int plt_entry_size
;
3030 bfd_boolean resolved_to_zero
;
3032 if (h
->root
.type
== bfd_link_hash_indirect
)
3035 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
3037 info
= (struct bfd_link_info
*) inf
;
3038 htab
= elf_x86_64_hash_table (info
);
3041 bed
= get_elf_backend_data (info
->output_bfd
);
3042 plt_entry_size
= GET_PLT_ENTRY_SIZE (info
->output_bfd
);
3044 resolved_to_zero
= UNDEFINED_WEAK_RESOLVED_TO_ZERO (info
,
3048 /* We can't use the GOT PLT if pointer equality is needed since
3049 finish_dynamic_symbol won't clear symbol value and the dynamic
3050 linker won't update the GOT slot. We will get into an infinite
3051 loop at run-time. */
3052 if (htab
->plt_got
!= NULL
3053 && h
->type
!= STT_GNU_IFUNC
3054 && !h
->pointer_equality_needed
3055 && h
->plt
.refcount
> 0
3056 && h
->got
.refcount
> 0)
3058 /* Don't use the regular PLT if there are both GOT and GOTPLT
3060 h
->plt
.offset
= (bfd_vma
) -1;
3062 /* Use the GOT PLT. */
3063 eh
->plt_got
.refcount
= 1;
3066 /* Clear the reference count of function pointer relocations if
3067 symbol isn't a normal function. */
3068 if (h
->type
!= STT_FUNC
)
3069 eh
->func_pointer_refcount
= 0;
3071 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
3072 here if it is defined and referenced in a non-shared object. */
3073 if (h
->type
== STT_GNU_IFUNC
3076 if (_bfd_elf_allocate_ifunc_dyn_relocs (info
, h
,
3078 &htab
->readonly_dynrelocs_against_ifunc
,
3081 GOT_ENTRY_SIZE
, TRUE
))
3083 asection
*s
= htab
->plt_bnd
;
3084 if (h
->plt
.offset
!= (bfd_vma
) -1 && s
!= NULL
)
3086 /* Use the .plt.bnd section if it is created. */
3087 eh
->plt_bnd
.offset
= s
->size
;
3089 /* Make room for this entry in the .plt.bnd section. */
3090 s
->size
+= sizeof (elf_x86_64_legacy_plt2_entry
);
3098 /* Don't create the PLT entry if there are only function pointer
3099 relocations which can be resolved at run-time. */
3100 else if (htab
->elf
.dynamic_sections_created
3101 && (h
->plt
.refcount
> eh
->func_pointer_refcount
3102 || eh
->plt_got
.refcount
> 0))
3104 bfd_boolean use_plt_got
;
3106 /* Clear the reference count of function pointer relocations
3108 eh
->func_pointer_refcount
= 0;
3110 if ((info
->flags
& DF_BIND_NOW
) && !h
->pointer_equality_needed
)
3112 /* Don't use the regular PLT for DF_BIND_NOW. */
3113 h
->plt
.offset
= (bfd_vma
) -1;
3115 /* Use the GOT PLT. */
3116 h
->got
.refcount
= 1;
3117 eh
->plt_got
.refcount
= 1;
3120 use_plt_got
= eh
->plt_got
.refcount
> 0;
3122 /* Make sure this symbol is output as a dynamic symbol.
3123 Undefined weak syms won't yet be marked as dynamic. */
3124 if (h
->dynindx
== -1
3126 && !resolved_to_zero
)
3128 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
3132 if (bfd_link_pic (info
)
3133 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h
))
3135 asection
*s
= htab
->elf
.splt
;
3136 asection
*bnd_s
= htab
->plt_bnd
;
3137 asection
*got_s
= htab
->plt_got
;
3139 /* If this is the first .plt entry, make room for the special
3140 first entry. The .plt section is used by prelink to undo
3141 prelinking for dynamic relocations. */
3143 s
->size
= plt_entry_size
;
3146 eh
->plt_got
.offset
= got_s
->size
;
3149 h
->plt
.offset
= s
->size
;
3151 eh
->plt_bnd
.offset
= bnd_s
->size
;
3154 /* If this symbol is not defined in a regular file, and we are
3155 not generating a shared library, then set the symbol to this
3156 location in the .plt. This is required to make function
3157 pointers compare as equal between the normal executable and
3158 the shared library. */
3159 if (! bfd_link_pic (info
)
3164 /* We need to make a call to the entry of the GOT PLT
3165 instead of regular PLT entry. */
3166 h
->root
.u
.def
.section
= got_s
;
3167 h
->root
.u
.def
.value
= eh
->plt_got
.offset
;
3173 /* We need to make a call to the entry of the second
3174 PLT instead of regular PLT entry. */
3175 h
->root
.u
.def
.section
= bnd_s
;
3176 h
->root
.u
.def
.value
= eh
->plt_bnd
.offset
;
3180 h
->root
.u
.def
.section
= s
;
3181 h
->root
.u
.def
.value
= h
->plt
.offset
;
3186 /* Make room for this entry. */
3188 got_s
->size
+= sizeof (elf_x86_64_legacy_plt2_entry
);
3191 s
->size
+= plt_entry_size
;
3193 bnd_s
->size
+= sizeof (elf_x86_64_legacy_plt2_entry
);
3195 /* We also need to make an entry in the .got.plt section,
3196 which will be placed in the .got section by the linker
3198 htab
->elf
.sgotplt
->size
+= GOT_ENTRY_SIZE
;
3200 /* There should be no PLT relocation against resolved
3201 undefined weak symbol in executable. */
3202 if (!resolved_to_zero
)
3204 /* We also need to make an entry in the .rela.plt
3206 htab
->elf
.srelplt
->size
+= bed
->s
->sizeof_rela
;
3207 htab
->elf
.srelplt
->reloc_count
++;
3213 eh
->plt_got
.offset
= (bfd_vma
) -1;
3214 h
->plt
.offset
= (bfd_vma
) -1;
3220 eh
->plt_got
.offset
= (bfd_vma
) -1;
3221 h
->plt
.offset
= (bfd_vma
) -1;
3225 eh
->tlsdesc_got
= (bfd_vma
) -1;
3227 /* If R_X86_64_GOTTPOFF symbol is now local to the binary,
3228 make it a R_X86_64_TPOFF32 requiring no GOT entry. */
3229 if (h
->got
.refcount
> 0
3230 && bfd_link_executable (info
)
3232 && elf_x86_64_hash_entry (h
)->tls_type
== GOT_TLS_IE
)
3234 h
->got
.offset
= (bfd_vma
) -1;
3236 else if (h
->got
.refcount
> 0)
3240 int tls_type
= elf_x86_64_hash_entry (h
)->tls_type
;
3242 /* Make sure this symbol is output as a dynamic symbol.
3243 Undefined weak syms won't yet be marked as dynamic. */
3244 if (h
->dynindx
== -1
3246 && !resolved_to_zero
)
3248 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
3252 if (GOT_TLS_GDESC_P (tls_type
))
3254 eh
->tlsdesc_got
= htab
->elf
.sgotplt
->size
3255 - elf_x86_64_compute_jump_table_size (htab
);
3256 htab
->elf
.sgotplt
->size
+= 2 * GOT_ENTRY_SIZE
;
3257 h
->got
.offset
= (bfd_vma
) -2;
3259 if (! GOT_TLS_GDESC_P (tls_type
)
3260 || GOT_TLS_GD_P (tls_type
))
3263 h
->got
.offset
= s
->size
;
3264 s
->size
+= GOT_ENTRY_SIZE
;
3265 if (GOT_TLS_GD_P (tls_type
))
3266 s
->size
+= GOT_ENTRY_SIZE
;
3268 dyn
= htab
->elf
.dynamic_sections_created
;
3269 /* R_X86_64_TLSGD needs one dynamic relocation if local symbol
3270 and two if global. R_X86_64_GOTTPOFF needs one dynamic
3271 relocation. No dynamic relocation against resolved undefined
3272 weak symbol in executable. */
3273 if ((GOT_TLS_GD_P (tls_type
) && h
->dynindx
== -1)
3274 || tls_type
== GOT_TLS_IE
)
3275 htab
->elf
.srelgot
->size
+= bed
->s
->sizeof_rela
;
3276 else if (GOT_TLS_GD_P (tls_type
))
3277 htab
->elf
.srelgot
->size
+= 2 * bed
->s
->sizeof_rela
;
3278 else if (! GOT_TLS_GDESC_P (tls_type
)
3279 && ((ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
3280 && !resolved_to_zero
)
3281 || h
->root
.type
!= bfd_link_hash_undefweak
)
3282 && (bfd_link_pic (info
)
3283 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, 0, h
)))
3284 htab
->elf
.srelgot
->size
+= bed
->s
->sizeof_rela
;
3285 if (GOT_TLS_GDESC_P (tls_type
))
3287 htab
->elf
.srelplt
->size
+= bed
->s
->sizeof_rela
;
3288 htab
->tlsdesc_plt
= (bfd_vma
) -1;
3292 h
->got
.offset
= (bfd_vma
) -1;
3294 if (eh
->dyn_relocs
== NULL
)
3297 /* In the shared -Bsymbolic case, discard space allocated for
3298 dynamic pc-relative relocs against symbols which turn out to be
3299 defined in regular objects. For the normal shared case, discard
3300 space for pc-relative relocs that have become local due to symbol
3301 visibility changes. */
3303 if (bfd_link_pic (info
))
3305 /* Relocs that use pc_count are those that appear on a call
3306 insn, or certain REL relocs that can generated via assembly.
3307 We want calls to protected symbols to resolve directly to the
3308 function rather than going via the plt. If people want
3309 function pointer comparisons to work as expected then they
3310 should avoid writing weird assembly. */
3311 if (SYMBOL_CALLS_LOCAL (info
, h
))
3313 struct elf_dyn_relocs
**pp
;
3315 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; )
3317 p
->count
-= p
->pc_count
;
3326 /* Also discard relocs on undefined weak syms with non-default
3327 visibility or in PIE. */
3328 if (eh
->dyn_relocs
!= NULL
)
3330 if (h
->root
.type
== bfd_link_hash_undefweak
)
3332 /* Undefined weak symbol is never bound locally in shared
3334 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
3335 || resolved_to_zero
)
3336 eh
->dyn_relocs
= NULL
;
3337 else if (h
->dynindx
== -1
3338 && ! h
->forced_local
3339 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
3342 /* For PIE, discard space for pc-relative relocs against
3343 symbols which turn out to need copy relocs. */
3344 else if (bfd_link_executable (info
)
3345 && (h
->needs_copy
|| eh
->needs_copy
)
3349 struct elf_dyn_relocs
**pp
;
3351 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
; )
3353 if (p
->pc_count
!= 0)
3361 else if (ELIMINATE_COPY_RELOCS
)
3363 /* For the non-shared case, discard space for relocs against
3364 symbols which turn out to need copy relocs or are not
3365 dynamic. Keep dynamic relocations for run-time function
3366 pointer initialization. */
3368 if ((!h
->non_got_ref
3369 || eh
->func_pointer_refcount
> 0
3370 || (h
->root
.type
== bfd_link_hash_undefweak
3371 && !resolved_to_zero
))
3374 || (htab
->elf
.dynamic_sections_created
3375 && (h
->root
.type
== bfd_link_hash_undefweak
3376 || h
->root
.type
== bfd_link_hash_undefined
))))
3378 /* Make sure this symbol is output as a dynamic symbol.
3379 Undefined weak syms won't yet be marked as dynamic. */
3380 if (h
->dynindx
== -1
3381 && ! h
->forced_local
3382 && ! resolved_to_zero
3383 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
3386 /* If that succeeded, we know we'll be keeping all the
3388 if (h
->dynindx
!= -1)
3392 eh
->dyn_relocs
= NULL
;
3393 eh
->func_pointer_refcount
= 0;
3398 /* Finally, allocate space. */
3399 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
3403 sreloc
= elf_section_data (p
->sec
)->sreloc
;
3405 BFD_ASSERT (sreloc
!= NULL
);
3407 sreloc
->size
+= p
->count
* bed
->s
->sizeof_rela
;
3413 /* Allocate space in .plt, .got and associated reloc sections for
3414 local dynamic relocs. */
3417 elf_x86_64_allocate_local_dynrelocs (void **slot
, void *inf
)
3419 struct elf_link_hash_entry
*h
3420 = (struct elf_link_hash_entry
*) *slot
;
3422 if (h
->type
!= STT_GNU_IFUNC
3426 || h
->root
.type
!= bfd_link_hash_defined
)
3429 return elf_x86_64_allocate_dynrelocs (h
, inf
);
3432 /* Find any dynamic relocs that apply to read-only sections. */
3435 elf_x86_64_readonly_dynrelocs (struct elf_link_hash_entry
*h
,
3438 struct elf_x86_64_link_hash_entry
*eh
;
3439 struct elf_dyn_relocs
*p
;
3441 /* Skip local IFUNC symbols. */
3442 if (h
->forced_local
&& h
->type
== STT_GNU_IFUNC
)
3445 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
3446 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
3448 asection
*s
= p
->sec
->output_section
;
3450 if (s
!= NULL
&& (s
->flags
& SEC_READONLY
) != 0)
3452 struct bfd_link_info
*info
= (struct bfd_link_info
*) inf
;
3454 info
->flags
|= DF_TEXTREL
;
3456 if ((info
->warn_shared_textrel
&& bfd_link_pic (info
))
3457 || info
->error_textrel
)
3458 info
->callbacks
->einfo (_("%P: %B: warning: relocation against `%s' in readonly section `%A'\n"),
3459 p
->sec
->owner
, h
->root
.root
.string
,
3462 /* Not an error, just cut short the traversal. */
3469 /* Convert load via the GOT slot to load immediate. */
3472 elf_x86_64_convert_load (bfd
*abfd
, asection
*sec
,
3473 struct bfd_link_info
*link_info
)
3475 Elf_Internal_Shdr
*symtab_hdr
;
3476 Elf_Internal_Rela
*internal_relocs
;
3477 Elf_Internal_Rela
*irel
, *irelend
;
3479 struct elf_x86_64_link_hash_table
*htab
;
3480 bfd_boolean changed
;
3481 bfd_signed_vma
*local_got_refcounts
;
3483 /* Don't even try to convert non-ELF outputs. */
3484 if (!is_elf_hash_table (link_info
->hash
))
3487 /* Nothing to do if there is no need or no output. */
3488 if ((sec
->flags
& (SEC_CODE
| SEC_RELOC
)) != (SEC_CODE
| SEC_RELOC
)
3489 || sec
->need_convert_load
== 0
3490 || bfd_is_abs_section (sec
->output_section
))
3493 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3495 /* Load the relocations for this section. */
3496 internal_relocs
= (_bfd_elf_link_read_relocs
3497 (abfd
, sec
, NULL
, (Elf_Internal_Rela
*) NULL
,
3498 link_info
->keep_memory
));
3499 if (internal_relocs
== NULL
)
3503 htab
= elf_x86_64_hash_table (link_info
);
3504 local_got_refcounts
= elf_local_got_refcounts (abfd
);
3506 /* Get the section contents. */
3507 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
3508 contents
= elf_section_data (sec
)->this_hdr
.contents
;
3511 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
3515 irelend
= internal_relocs
+ sec
->reloc_count
;
3516 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
3518 unsigned int r_type
= ELF32_R_TYPE (irel
->r_info
);
3519 unsigned int r_symndx
;
3520 struct elf_link_hash_entry
*h
;
3521 bfd_boolean converted
;
3523 if (r_type
!= R_X86_64_GOTPCRELX
3524 && r_type
!= R_X86_64_REX_GOTPCRELX
3525 && r_type
!= R_X86_64_GOTPCREL
)
3528 r_symndx
= htab
->r_sym (irel
->r_info
);
3529 if (r_symndx
< symtab_hdr
->sh_info
)
3530 h
= elf_x86_64_get_local_sym_hash (htab
, sec
->owner
,
3531 (const Elf_Internal_Rela
*) irel
,
3535 h
= elf_sym_hashes (abfd
)[r_symndx
- symtab_hdr
->sh_info
];
3536 while (h
->root
.type
== bfd_link_hash_indirect
3537 || h
->root
.type
== bfd_link_hash_warning
)
3538 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3541 /* STT_GNU_IFUNC must keep GOTPCREL relocations. */
3542 if (h
!= NULL
&& h
->type
== STT_GNU_IFUNC
)
3546 if (!elf_x86_64_convert_load_reloc (abfd
, sec
, contents
, irel
, h
,
3547 &converted
, link_info
))
3552 changed
= converted
;
3555 if (h
->got
.refcount
> 0)
3556 h
->got
.refcount
-= 1;
3560 if (local_got_refcounts
!= NULL
3561 && local_got_refcounts
[r_symndx
] > 0)
3562 local_got_refcounts
[r_symndx
] -= 1;
3567 if (contents
!= NULL
3568 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
3570 if (!changed
&& !link_info
->keep_memory
)
3574 /* Cache the section contents for elf_link_input_bfd. */
3575 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3579 if (elf_section_data (sec
)->relocs
!= internal_relocs
)
3582 free (internal_relocs
);
3584 elf_section_data (sec
)->relocs
= internal_relocs
;
3590 if (contents
!= NULL
3591 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
3593 if (internal_relocs
!= NULL
3594 && elf_section_data (sec
)->relocs
!= internal_relocs
)
3595 free (internal_relocs
);
3599 /* Set the sizes of the dynamic sections. */
3602 elf_x86_64_size_dynamic_sections (bfd
*output_bfd
,
3603 struct bfd_link_info
*info
)
3605 struct elf_x86_64_link_hash_table
*htab
;
3610 const struct elf_backend_data
*bed
;
3612 htab
= elf_x86_64_hash_table (info
);
3615 bed
= get_elf_backend_data (output_bfd
);
3617 dynobj
= htab
->elf
.dynobj
;
3621 /* Set up .got offsets for local syms, and space for local dynamic
3623 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link
.next
)
3625 bfd_signed_vma
*local_got
;
3626 bfd_signed_vma
*end_local_got
;
3627 char *local_tls_type
;
3628 bfd_vma
*local_tlsdesc_gotent
;
3629 bfd_size_type locsymcount
;
3630 Elf_Internal_Shdr
*symtab_hdr
;
3633 if (! is_x86_64_elf (ibfd
))
3636 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
3638 struct elf_dyn_relocs
*p
;
3640 if (!elf_x86_64_convert_load (ibfd
, s
, info
))
3643 for (p
= (struct elf_dyn_relocs
*)
3644 (elf_section_data (s
)->local_dynrel
);
3648 if (!bfd_is_abs_section (p
->sec
)
3649 && bfd_is_abs_section (p
->sec
->output_section
))
3651 /* Input section has been discarded, either because
3652 it is a copy of a linkonce section or due to
3653 linker script /DISCARD/, so we'll be discarding
3656 else if (p
->count
!= 0)
3658 srel
= elf_section_data (p
->sec
)->sreloc
;
3659 srel
->size
+= p
->count
* bed
->s
->sizeof_rela
;
3660 if ((p
->sec
->output_section
->flags
& SEC_READONLY
) != 0
3661 && (info
->flags
& DF_TEXTREL
) == 0)
3663 info
->flags
|= DF_TEXTREL
;
3664 if ((info
->warn_shared_textrel
&& bfd_link_pic (info
))
3665 || info
->error_textrel
)
3666 info
->callbacks
->einfo (_("%P: %B: warning: relocation in readonly section `%A'\n"),
3667 p
->sec
->owner
, p
->sec
);
3673 local_got
= elf_local_got_refcounts (ibfd
);
3677 symtab_hdr
= &elf_symtab_hdr (ibfd
);
3678 locsymcount
= symtab_hdr
->sh_info
;
3679 end_local_got
= local_got
+ locsymcount
;
3680 local_tls_type
= elf_x86_64_local_got_tls_type (ibfd
);
3681 local_tlsdesc_gotent
= elf_x86_64_local_tlsdesc_gotent (ibfd
);
3683 srel
= htab
->elf
.srelgot
;
3684 for (; local_got
< end_local_got
;
3685 ++local_got
, ++local_tls_type
, ++local_tlsdesc_gotent
)
3687 *local_tlsdesc_gotent
= (bfd_vma
) -1;
3690 if (GOT_TLS_GDESC_P (*local_tls_type
))
3692 *local_tlsdesc_gotent
= htab
->elf
.sgotplt
->size
3693 - elf_x86_64_compute_jump_table_size (htab
);
3694 htab
->elf
.sgotplt
->size
+= 2 * GOT_ENTRY_SIZE
;
3695 *local_got
= (bfd_vma
) -2;
3697 if (! GOT_TLS_GDESC_P (*local_tls_type
)
3698 || GOT_TLS_GD_P (*local_tls_type
))
3700 *local_got
= s
->size
;
3701 s
->size
+= GOT_ENTRY_SIZE
;
3702 if (GOT_TLS_GD_P (*local_tls_type
))
3703 s
->size
+= GOT_ENTRY_SIZE
;
3705 if (bfd_link_pic (info
)
3706 || GOT_TLS_GD_ANY_P (*local_tls_type
)
3707 || *local_tls_type
== GOT_TLS_IE
)
3709 if (GOT_TLS_GDESC_P (*local_tls_type
))
3711 htab
->elf
.srelplt
->size
3712 += bed
->s
->sizeof_rela
;
3713 htab
->tlsdesc_plt
= (bfd_vma
) -1;
3715 if (! GOT_TLS_GDESC_P (*local_tls_type
)
3716 || GOT_TLS_GD_P (*local_tls_type
))
3717 srel
->size
+= bed
->s
->sizeof_rela
;
3721 *local_got
= (bfd_vma
) -1;
3725 if (htab
->tls_ld_got
.refcount
> 0)
3727 /* Allocate 2 got entries and 1 dynamic reloc for R_X86_64_TLSLD
3729 htab
->tls_ld_got
.offset
= htab
->elf
.sgot
->size
;
3730 htab
->elf
.sgot
->size
+= 2 * GOT_ENTRY_SIZE
;
3731 htab
->elf
.srelgot
->size
+= bed
->s
->sizeof_rela
;
3734 htab
->tls_ld_got
.offset
= -1;
3736 /* Allocate global sym .plt and .got entries, and space for global
3737 sym dynamic relocs. */
3738 elf_link_hash_traverse (&htab
->elf
, elf_x86_64_allocate_dynrelocs
,
3741 /* Allocate .plt and .got entries, and space for local symbols. */
3742 htab_traverse (htab
->loc_hash_table
,
3743 elf_x86_64_allocate_local_dynrelocs
,
3746 /* For every jump slot reserved in the sgotplt, reloc_count is
3747 incremented. However, when we reserve space for TLS descriptors,
3748 it's not incremented, so in order to compute the space reserved
3749 for them, it suffices to multiply the reloc count by the jump
3752 PR ld/13302: We start next_irelative_index at the end of .rela.plt
3753 so that R_X86_64_IRELATIVE entries come last. */
3754 if (htab
->elf
.srelplt
)
3756 htab
->sgotplt_jump_table_size
3757 = elf_x86_64_compute_jump_table_size (htab
);
3758 htab
->next_irelative_index
= htab
->elf
.srelplt
->reloc_count
- 1;
3760 else if (htab
->elf
.irelplt
)
3761 htab
->next_irelative_index
= htab
->elf
.irelplt
->reloc_count
- 1;
3763 if (htab
->tlsdesc_plt
)
3765 /* If we're not using lazy TLS relocations, don't generate the
3766 PLT and GOT entries they require. */
3767 if ((info
->flags
& DF_BIND_NOW
))
3768 htab
->tlsdesc_plt
= 0;
3771 htab
->tlsdesc_got
= htab
->elf
.sgot
->size
;
3772 htab
->elf
.sgot
->size
+= GOT_ENTRY_SIZE
;
3773 /* Reserve room for the initial entry.
3774 FIXME: we could probably do away with it in this case. */
3775 if (htab
->elf
.splt
->size
== 0)
3776 htab
->elf
.splt
->size
+= GET_PLT_ENTRY_SIZE (output_bfd
);
3777 htab
->tlsdesc_plt
= htab
->elf
.splt
->size
;
3778 htab
->elf
.splt
->size
+= GET_PLT_ENTRY_SIZE (output_bfd
);
3782 if (htab
->elf
.sgotplt
)
3784 /* Don't allocate .got.plt section if there are no GOT nor PLT
3785 entries and there is no refeence to _GLOBAL_OFFSET_TABLE_. */
3786 if ((htab
->elf
.hgot
== NULL
3787 || !htab
->elf
.hgot
->ref_regular_nonweak
)
3788 && (htab
->elf
.sgotplt
->size
3789 == get_elf_backend_data (output_bfd
)->got_header_size
)
3790 && (htab
->elf
.splt
== NULL
3791 || htab
->elf
.splt
->size
== 0)
3792 && (htab
->elf
.sgot
== NULL
3793 || htab
->elf
.sgot
->size
== 0)
3794 && (htab
->elf
.iplt
== NULL
3795 || htab
->elf
.iplt
->size
== 0)
3796 && (htab
->elf
.igotplt
== NULL
3797 || htab
->elf
.igotplt
->size
== 0))
3798 htab
->elf
.sgotplt
->size
= 0;
3801 if (htab
->plt_eh_frame
!= NULL
3802 && htab
->elf
.splt
!= NULL
3803 && htab
->elf
.splt
->size
!= 0
3804 && !bfd_is_abs_section (htab
->elf
.splt
->output_section
)
3805 && _bfd_elf_eh_frame_present (info
))
3807 const struct elf_x86_64_backend_data
*arch_data
3808 = get_elf_x86_64_arch_data (bed
);
3809 htab
->plt_eh_frame
->size
= arch_data
->eh_frame_plt_size
;
3812 /* We now have determined the sizes of the various dynamic sections.
3813 Allocate memory for them. */
3815 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
3817 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
3820 if (s
== htab
->elf
.splt
3821 || s
== htab
->elf
.sgot
3822 || s
== htab
->elf
.sgotplt
3823 || s
== htab
->elf
.iplt
3824 || s
== htab
->elf
.igotplt
3825 || s
== htab
->plt_bnd
3826 || s
== htab
->plt_got
3827 || s
== htab
->plt_eh_frame
3828 || s
== htab
->sdynbss
)
3830 /* Strip this section if we don't need it; see the
3833 else if (CONST_STRNEQ (bfd_get_section_name (dynobj
, s
), ".rela"))
3835 if (s
->size
!= 0 && s
!= htab
->elf
.srelplt
)
3838 /* We use the reloc_count field as a counter if we need
3839 to copy relocs into the output file. */
3840 if (s
!= htab
->elf
.srelplt
)
3845 /* It's not one of our sections, so don't allocate space. */
3851 /* If we don't need this section, strip it from the
3852 output file. This is mostly to handle .rela.bss and
3853 .rela.plt. We must create both sections in
3854 create_dynamic_sections, because they must be created
3855 before the linker maps input sections to output
3856 sections. The linker does that before
3857 adjust_dynamic_symbol is called, and it is that
3858 function which decides whether anything needs to go
3859 into these sections. */
3861 s
->flags
|= SEC_EXCLUDE
;
3865 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
3868 /* Allocate memory for the section contents. We use bfd_zalloc
3869 here in case unused entries are not reclaimed before the
3870 section's contents are written out. This should not happen,
3871 but this way if it does, we get a R_X86_64_NONE reloc instead
3873 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
3874 if (s
->contents
== NULL
)
3878 if (htab
->plt_eh_frame
!= NULL
3879 && htab
->plt_eh_frame
->contents
!= NULL
)
3881 const struct elf_x86_64_backend_data
*arch_data
3882 = get_elf_x86_64_arch_data (bed
);
3884 memcpy (htab
->plt_eh_frame
->contents
,
3885 arch_data
->eh_frame_plt
, htab
->plt_eh_frame
->size
);
3886 bfd_put_32 (dynobj
, htab
->elf
.splt
->size
,
3887 htab
->plt_eh_frame
->contents
+ PLT_FDE_LEN_OFFSET
);
3890 if (htab
->elf
.dynamic_sections_created
)
3892 /* Add some entries to the .dynamic section. We fill in the
3893 values later, in elf_x86_64_finish_dynamic_sections, but we
3894 must add the entries now so that we get the correct size for
3895 the .dynamic section. The DT_DEBUG entry is filled in by the
3896 dynamic linker and used by the debugger. */
3897 #define add_dynamic_entry(TAG, VAL) \
3898 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3900 if (bfd_link_executable (info
))
3902 if (!add_dynamic_entry (DT_DEBUG
, 0))
3906 if (htab
->elf
.splt
->size
!= 0)
3908 /* DT_PLTGOT is used by prelink even if there is no PLT
3910 if (!add_dynamic_entry (DT_PLTGOT
, 0))
3913 if (htab
->elf
.srelplt
->size
!= 0)
3915 if (!add_dynamic_entry (DT_PLTRELSZ
, 0)
3916 || !add_dynamic_entry (DT_PLTREL
, DT_RELA
)
3917 || !add_dynamic_entry (DT_JMPREL
, 0))
3921 if (htab
->tlsdesc_plt
3922 && (!add_dynamic_entry (DT_TLSDESC_PLT
, 0)
3923 || !add_dynamic_entry (DT_TLSDESC_GOT
, 0)))
3929 if (!add_dynamic_entry (DT_RELA
, 0)
3930 || !add_dynamic_entry (DT_RELASZ
, 0)
3931 || !add_dynamic_entry (DT_RELAENT
, bed
->s
->sizeof_rela
))
3934 /* If any dynamic relocs apply to a read-only section,
3935 then we need a DT_TEXTREL entry. */
3936 if ((info
->flags
& DF_TEXTREL
) == 0)
3937 elf_link_hash_traverse (&htab
->elf
,
3938 elf_x86_64_readonly_dynrelocs
,
3941 if ((info
->flags
& DF_TEXTREL
) != 0)
3943 if (htab
->readonly_dynrelocs_against_ifunc
)
3945 info
->callbacks
->einfo
3946 (_("%P%X: read-only segment has dynamic IFUNC relocations; recompile with -fPIC\n"));
3947 bfd_set_error (bfd_error_bad_value
);
3951 if (!add_dynamic_entry (DT_TEXTREL
, 0))
3956 #undef add_dynamic_entry
3962 elf_x86_64_always_size_sections (bfd
*output_bfd
,
3963 struct bfd_link_info
*info
)
3965 asection
*tls_sec
= elf_hash_table (info
)->tls_sec
;
3969 struct elf_link_hash_entry
*tlsbase
;
3971 tlsbase
= elf_link_hash_lookup (elf_hash_table (info
),
3972 "_TLS_MODULE_BASE_",
3973 FALSE
, FALSE
, FALSE
);
3975 if (tlsbase
&& tlsbase
->type
== STT_TLS
)
3977 struct elf_x86_64_link_hash_table
*htab
;
3978 struct bfd_link_hash_entry
*bh
= NULL
;
3979 const struct elf_backend_data
*bed
3980 = get_elf_backend_data (output_bfd
);
3982 htab
= elf_x86_64_hash_table (info
);
3986 if (!(_bfd_generic_link_add_one_symbol
3987 (info
, output_bfd
, "_TLS_MODULE_BASE_", BSF_LOCAL
,
3988 tls_sec
, 0, NULL
, FALSE
,
3989 bed
->collect
, &bh
)))
3992 htab
->tls_module_base
= bh
;
3994 tlsbase
= (struct elf_link_hash_entry
*)bh
;
3995 tlsbase
->def_regular
= 1;
3996 tlsbase
->other
= STV_HIDDEN
;
3997 tlsbase
->root
.linker_def
= 1;
3998 (*bed
->elf_backend_hide_symbol
) (info
, tlsbase
, TRUE
);
4005 /* _TLS_MODULE_BASE_ needs to be treated especially when linking
4006 executables. Rather than setting it to the beginning of the TLS
4007 section, we have to set it to the end. This function may be called
4008 multiple times, it is idempotent. */
4011 elf_x86_64_set_tls_module_base (struct bfd_link_info
*info
)
4013 struct elf_x86_64_link_hash_table
*htab
;
4014 struct bfd_link_hash_entry
*base
;
4016 if (!bfd_link_executable (info
))
4019 htab
= elf_x86_64_hash_table (info
);
4023 base
= htab
->tls_module_base
;
4027 base
->u
.def
.value
= htab
->elf
.tls_size
;
4030 /* Return the base VMA address which should be subtracted from real addresses
4031 when resolving @dtpoff relocation.
4032 This is PT_TLS segment p_vaddr. */
4035 elf_x86_64_dtpoff_base (struct bfd_link_info
*info
)
4037 /* If tls_sec is NULL, we should have signalled an error already. */
4038 if (elf_hash_table (info
)->tls_sec
== NULL
)
4040 return elf_hash_table (info
)->tls_sec
->vma
;
4043 /* Return the relocation value for @tpoff relocation
4044 if STT_TLS virtual address is ADDRESS. */
4047 elf_x86_64_tpoff (struct bfd_link_info
*info
, bfd_vma address
)
4049 struct elf_link_hash_table
*htab
= elf_hash_table (info
);
4050 const struct elf_backend_data
*bed
= get_elf_backend_data (info
->output_bfd
);
4051 bfd_vma static_tls_size
;
4053 /* If tls_segment is NULL, we should have signalled an error already. */
4054 if (htab
->tls_sec
== NULL
)
4057 /* Consider special static TLS alignment requirements. */
4058 static_tls_size
= BFD_ALIGN (htab
->tls_size
, bed
->static_tls_alignment
);
4059 return address
- static_tls_size
- htab
->tls_sec
->vma
;
4062 /* Is the instruction before OFFSET in CONTENTS a 32bit relative
4066 is_32bit_relative_branch (bfd_byte
*contents
, bfd_vma offset
)
4068 /* Opcode Instruction
4071 0x0f 0x8x conditional jump */
4073 && (contents
[offset
- 1] == 0xe8
4074 || contents
[offset
- 1] == 0xe9))
4076 && contents
[offset
- 2] == 0x0f
4077 && (contents
[offset
- 1] & 0xf0) == 0x80));
4080 /* Relocate an x86_64 ELF section. */
4083 elf_x86_64_relocate_section (bfd
*output_bfd
,
4084 struct bfd_link_info
*info
,
4086 asection
*input_section
,
4088 Elf_Internal_Rela
*relocs
,
4089 Elf_Internal_Sym
*local_syms
,
4090 asection
**local_sections
)
4092 struct elf_x86_64_link_hash_table
*htab
;
4093 Elf_Internal_Shdr
*symtab_hdr
;
4094 struct elf_link_hash_entry
**sym_hashes
;
4095 bfd_vma
*local_got_offsets
;
4096 bfd_vma
*local_tlsdesc_gotents
;
4097 Elf_Internal_Rela
*rel
;
4098 Elf_Internal_Rela
*wrel
;
4099 Elf_Internal_Rela
*relend
;
4100 const unsigned int plt_entry_size
= GET_PLT_ENTRY_SIZE (info
->output_bfd
);
4102 BFD_ASSERT (is_x86_64_elf (input_bfd
));
4104 /* Skip if check_relocs failed. */
4105 if (input_section
->check_relocs_failed
)
4108 htab
= elf_x86_64_hash_table (info
);
4111 symtab_hdr
= &elf_symtab_hdr (input_bfd
);
4112 sym_hashes
= elf_sym_hashes (input_bfd
);
4113 local_got_offsets
= elf_local_got_offsets (input_bfd
);
4114 local_tlsdesc_gotents
= elf_x86_64_local_tlsdesc_gotent (input_bfd
);
4116 elf_x86_64_set_tls_module_base (info
);
4118 rel
= wrel
= relocs
;
4119 relend
= relocs
+ input_section
->reloc_count
;
4120 for (; rel
< relend
; wrel
++, rel
++)
4122 unsigned int r_type
;
4123 reloc_howto_type
*howto
;
4124 unsigned long r_symndx
;
4125 struct elf_link_hash_entry
*h
;
4126 struct elf_x86_64_link_hash_entry
*eh
;
4127 Elf_Internal_Sym
*sym
;
4129 bfd_vma off
, offplt
, plt_offset
;
4131 bfd_boolean unresolved_reloc
;
4132 bfd_reloc_status_type r
;
4134 asection
*base_got
, *resolved_plt
;
4136 bfd_boolean resolved_to_zero
;
4138 r_type
= ELF32_R_TYPE (rel
->r_info
);
4139 if (r_type
== (int) R_X86_64_GNU_VTINHERIT
4140 || r_type
== (int) R_X86_64_GNU_VTENTRY
)
4147 if (r_type
>= (int) R_X86_64_standard
)
4150 (_("%B: unrecognized relocation (0x%x) in section `%A'"),
4151 input_bfd
, input_section
, r_type
);
4152 bfd_set_error (bfd_error_bad_value
);
4156 if (r_type
!= (int) R_X86_64_32
4157 || ABI_64_P (output_bfd
))
4158 howto
= x86_64_elf_howto_table
+ r_type
;
4160 howto
= (x86_64_elf_howto_table
4161 + ARRAY_SIZE (x86_64_elf_howto_table
) - 1);
4162 r_symndx
= htab
->r_sym (rel
->r_info
);
4166 unresolved_reloc
= FALSE
;
4167 if (r_symndx
< symtab_hdr
->sh_info
)
4169 sym
= local_syms
+ r_symndx
;
4170 sec
= local_sections
[r_symndx
];
4172 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
,
4174 st_size
= sym
->st_size
;
4176 /* Relocate against local STT_GNU_IFUNC symbol. */
4177 if (!bfd_link_relocatable (info
)
4178 && ELF_ST_TYPE (sym
->st_info
) == STT_GNU_IFUNC
)
4180 h
= elf_x86_64_get_local_sym_hash (htab
, input_bfd
,
4185 /* Set STT_GNU_IFUNC symbol value. */
4186 h
->root
.u
.def
.value
= sym
->st_value
;
4187 h
->root
.u
.def
.section
= sec
;
4192 bfd_boolean warned ATTRIBUTE_UNUSED
;
4193 bfd_boolean ignored ATTRIBUTE_UNUSED
;
4195 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
4196 r_symndx
, symtab_hdr
, sym_hashes
,
4198 unresolved_reloc
, warned
, ignored
);
4202 if (sec
!= NULL
&& discarded_section (sec
))
4204 _bfd_clear_contents (howto
, input_bfd
, input_section
,
4205 contents
+ rel
->r_offset
);
4206 wrel
->r_offset
= rel
->r_offset
;
4210 /* For ld -r, remove relocations in debug sections against
4211 sections defined in discarded sections. Not done for
4212 eh_frame editing code expects to be present. */
4213 if (bfd_link_relocatable (info
)
4214 && (input_section
->flags
& SEC_DEBUGGING
))
4220 if (bfd_link_relocatable (info
))
4227 if (rel
->r_addend
== 0 && !ABI_64_P (output_bfd
))
4229 if (r_type
== R_X86_64_64
)
4231 /* For x32, treat R_X86_64_64 like R_X86_64_32 and
4232 zero-extend it to 64bit if addend is zero. */
4233 r_type
= R_X86_64_32
;
4234 memset (contents
+ rel
->r_offset
+ 4, 0, 4);
4236 else if (r_type
== R_X86_64_SIZE64
)
4238 /* For x32, treat R_X86_64_SIZE64 like R_X86_64_SIZE32 and
4239 zero-extend it to 64bit if addend is zero. */
4240 r_type
= R_X86_64_SIZE32
;
4241 memset (contents
+ rel
->r_offset
+ 4, 0, 4);
4245 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
4247 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
4248 it here if it is defined in a non-shared object. */
4250 && h
->type
== STT_GNU_IFUNC
4256 if ((input_section
->flags
& SEC_ALLOC
) == 0)
4258 /* Dynamic relocs are not propagated for SEC_DEBUGGING
4259 sections because such sections are not SEC_ALLOC and
4260 thus ld.so will not process them. */
4261 if ((input_section
->flags
& SEC_DEBUGGING
) != 0)
4271 case R_X86_64_GOTPCREL
:
4272 case R_X86_64_GOTPCRELX
:
4273 case R_X86_64_REX_GOTPCRELX
:
4274 case R_X86_64_GOTPCREL64
:
4275 base_got
= htab
->elf
.sgot
;
4276 off
= h
->got
.offset
;
4278 if (base_got
== NULL
)
4281 if (off
== (bfd_vma
) -1)
4283 /* We can't use h->got.offset here to save state, or
4284 even just remember the offset, as finish_dynamic_symbol
4285 would use that as offset into .got. */
4287 if (h
->plt
.offset
== (bfd_vma
) -1)
4290 if (htab
->elf
.splt
!= NULL
)
4292 plt_index
= h
->plt
.offset
/ plt_entry_size
- 1;
4293 off
= (plt_index
+ 3) * GOT_ENTRY_SIZE
;
4294 base_got
= htab
->elf
.sgotplt
;
4298 plt_index
= h
->plt
.offset
/ plt_entry_size
;
4299 off
= plt_index
* GOT_ENTRY_SIZE
;
4300 base_got
= htab
->elf
.igotplt
;
4303 if (h
->dynindx
== -1
4307 /* This references the local defitionion. We must
4308 initialize this entry in the global offset table.
4309 Since the offset must always be a multiple of 8,
4310 we use the least significant bit to record
4311 whether we have initialized it already.
4313 When doing a dynamic link, we create a .rela.got
4314 relocation entry to initialize the value. This
4315 is done in the finish_dynamic_symbol routine. */
4320 bfd_put_64 (output_bfd
, relocation
,
4321 base_got
->contents
+ off
);
4322 /* Note that this is harmless for the GOTPLT64
4323 case, as -1 | 1 still is -1. */
4329 relocation
= (base_got
->output_section
->vma
4330 + base_got
->output_offset
+ off
);
4335 if (h
->plt
.offset
== (bfd_vma
) -1)
4337 /* Handle static pointers of STT_GNU_IFUNC symbols. */
4338 if (r_type
== htab
->pointer_r_type
4339 && (input_section
->flags
& SEC_CODE
) == 0)
4340 goto do_ifunc_pointer
;
4341 goto bad_ifunc_reloc
;
4344 /* STT_GNU_IFUNC symbol must go through PLT. */
4345 if (htab
->elf
.splt
!= NULL
)
4347 if (htab
->plt_bnd
!= NULL
)
4349 resolved_plt
= htab
->plt_bnd
;
4350 plt_offset
= eh
->plt_bnd
.offset
;
4354 resolved_plt
= htab
->elf
.splt
;
4355 plt_offset
= h
->plt
.offset
;
4360 resolved_plt
= htab
->elf
.iplt
;
4361 plt_offset
= h
->plt
.offset
;
4364 relocation
= (resolved_plt
->output_section
->vma
4365 + resolved_plt
->output_offset
+ plt_offset
);
4371 if (h
->root
.root
.string
)
4372 name
= h
->root
.root
.string
;
4374 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
, sym
,
4377 (_("%B: relocation %s against STT_GNU_IFUNC "
4378 "symbol `%s' isn't supported"), input_bfd
,
4380 bfd_set_error (bfd_error_bad_value
);
4384 if (bfd_link_pic (info
))
4389 if (ABI_64_P (output_bfd
))
4394 if (rel
->r_addend
!= 0)
4396 if (h
->root
.root
.string
)
4397 name
= h
->root
.root
.string
;
4399 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
,
4402 (_("%B: relocation %s against STT_GNU_IFUNC "
4403 "symbol `%s' has non-zero addend: %d"),
4404 input_bfd
, howto
->name
, name
, rel
->r_addend
);
4405 bfd_set_error (bfd_error_bad_value
);
4409 /* Generate dynamic relcoation only when there is a
4410 non-GOT reference in a shared object or there is no
4412 if ((bfd_link_pic (info
) && h
->non_got_ref
)
4413 || h
->plt
.offset
== (bfd_vma
) -1)
4415 Elf_Internal_Rela outrel
;
4418 /* Need a dynamic relocation to get the real function
4420 outrel
.r_offset
= _bfd_elf_section_offset (output_bfd
,
4424 if (outrel
.r_offset
== (bfd_vma
) -1
4425 || outrel
.r_offset
== (bfd_vma
) -2)
4428 outrel
.r_offset
+= (input_section
->output_section
->vma
4429 + input_section
->output_offset
);
4431 if (h
->dynindx
== -1
4433 || bfd_link_executable (info
))
4435 /* This symbol is resolved locally. */
4436 outrel
.r_info
= htab
->r_info (0, R_X86_64_IRELATIVE
);
4437 outrel
.r_addend
= (h
->root
.u
.def
.value
4438 + h
->root
.u
.def
.section
->output_section
->vma
4439 + h
->root
.u
.def
.section
->output_offset
);
4443 outrel
.r_info
= htab
->r_info (h
->dynindx
, r_type
);
4444 outrel
.r_addend
= 0;
4447 /* Dynamic relocations are stored in
4448 1. .rela.ifunc section in PIC object.
4449 2. .rela.got section in dynamic executable.
4450 3. .rela.iplt section in static executable. */
4451 if (bfd_link_pic (info
))
4452 sreloc
= htab
->elf
.irelifunc
;
4453 else if (htab
->elf
.splt
!= NULL
)
4454 sreloc
= htab
->elf
.srelgot
;
4456 sreloc
= htab
->elf
.irelplt
;
4457 elf_append_rela (output_bfd
, sreloc
, &outrel
);
4459 /* If this reloc is against an external symbol, we
4460 do not want to fiddle with the addend. Otherwise,
4461 we need to include the symbol value so that it
4462 becomes an addend for the dynamic reloc. For an
4463 internal symbol, we have updated addend. */
4468 case R_X86_64_PC32_BND
:
4470 case R_X86_64_PLT32
:
4471 case R_X86_64_PLT32_BND
:
4476 resolved_to_zero
= (eh
!= NULL
4477 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (info
,
4481 /* When generating a shared object, the relocations handled here are
4482 copied into the output file to be resolved at run time. */
4485 case R_X86_64_GOT32
:
4486 case R_X86_64_GOT64
:
4487 /* Relocation is to the entry for this symbol in the global
4489 case R_X86_64_GOTPCREL
:
4490 case R_X86_64_GOTPCRELX
:
4491 case R_X86_64_REX_GOTPCRELX
:
4492 case R_X86_64_GOTPCREL64
:
4493 /* Use global offset table entry as symbol value. */
4494 case R_X86_64_GOTPLT64
:
4495 /* This is obsolete and treated the the same as GOT64. */
4496 base_got
= htab
->elf
.sgot
;
4498 if (htab
->elf
.sgot
== NULL
)
4505 off
= h
->got
.offset
;
4507 && h
->plt
.offset
!= (bfd_vma
)-1
4508 && off
== (bfd_vma
)-1)
4510 /* We can't use h->got.offset here to save
4511 state, or even just remember the offset, as
4512 finish_dynamic_symbol would use that as offset into
4514 bfd_vma plt_index
= h
->plt
.offset
/ plt_entry_size
- 1;
4515 off
= (plt_index
+ 3) * GOT_ENTRY_SIZE
;
4516 base_got
= htab
->elf
.sgotplt
;
4519 dyn
= htab
->elf
.dynamic_sections_created
;
4521 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, bfd_link_pic (info
), h
)
4522 || (bfd_link_pic (info
)
4523 && SYMBOL_REFERENCES_LOCAL (info
, h
))
4524 || (ELF_ST_VISIBILITY (h
->other
)
4525 && h
->root
.type
== bfd_link_hash_undefweak
))
4527 /* This is actually a static link, or it is a -Bsymbolic
4528 link and the symbol is defined locally, or the symbol
4529 was forced to be local because of a version file. We
4530 must initialize this entry in the global offset table.
4531 Since the offset must always be a multiple of 8, we
4532 use the least significant bit to record whether we
4533 have initialized it already.
4535 When doing a dynamic link, we create a .rela.got
4536 relocation entry to initialize the value. This is
4537 done in the finish_dynamic_symbol routine. */
4542 bfd_put_64 (output_bfd
, relocation
,
4543 base_got
->contents
+ off
);
4544 /* Note that this is harmless for the GOTPLT64 case,
4545 as -1 | 1 still is -1. */
4550 unresolved_reloc
= FALSE
;
4554 if (local_got_offsets
== NULL
)
4557 off
= local_got_offsets
[r_symndx
];
4559 /* The offset must always be a multiple of 8. We use
4560 the least significant bit to record whether we have
4561 already generated the necessary reloc. */
4566 bfd_put_64 (output_bfd
, relocation
,
4567 base_got
->contents
+ off
);
4569 if (bfd_link_pic (info
))
4572 Elf_Internal_Rela outrel
;
4574 /* We need to generate a R_X86_64_RELATIVE reloc
4575 for the dynamic linker. */
4576 s
= htab
->elf
.srelgot
;
4580 outrel
.r_offset
= (base_got
->output_section
->vma
4581 + base_got
->output_offset
4583 outrel
.r_info
= htab
->r_info (0, R_X86_64_RELATIVE
);
4584 outrel
.r_addend
= relocation
;
4585 elf_append_rela (output_bfd
, s
, &outrel
);
4588 local_got_offsets
[r_symndx
] |= 1;
4592 if (off
>= (bfd_vma
) -2)
4595 relocation
= base_got
->output_section
->vma
4596 + base_got
->output_offset
+ off
;
4597 if (r_type
!= R_X86_64_GOTPCREL
4598 && r_type
!= R_X86_64_GOTPCRELX
4599 && r_type
!= R_X86_64_REX_GOTPCRELX
4600 && r_type
!= R_X86_64_GOTPCREL64
)
4601 relocation
-= htab
->elf
.sgotplt
->output_section
->vma
4602 - htab
->elf
.sgotplt
->output_offset
;
4606 case R_X86_64_GOTOFF64
:
4607 /* Relocation is relative to the start of the global offset
4610 /* Check to make sure it isn't a protected function or data
4611 symbol for shared library since it may not be local when
4612 used as function address or with copy relocation. We also
4613 need to make sure that a symbol is referenced locally. */
4614 if (bfd_link_pic (info
) && h
)
4616 if (!h
->def_regular
)
4620 switch (ELF_ST_VISIBILITY (h
->other
))
4623 v
= _("hidden symbol");
4626 v
= _("internal symbol");
4629 v
= _("protected symbol");
4637 (_("%B: relocation R_X86_64_GOTOFF64 against undefined %s `%s' can not be used when making a shared object"),
4638 input_bfd
, v
, h
->root
.root
.string
);
4639 bfd_set_error (bfd_error_bad_value
);
4642 else if (!bfd_link_executable (info
)
4643 && !SYMBOL_REFERENCES_LOCAL (info
, h
)
4644 && (h
->type
== STT_FUNC
4645 || h
->type
== STT_OBJECT
)
4646 && ELF_ST_VISIBILITY (h
->other
) == STV_PROTECTED
)
4649 (_("%B: relocation R_X86_64_GOTOFF64 against protected %s `%s' can not be used when making a shared object"),
4651 h
->type
== STT_FUNC
? "function" : "data",
4652 h
->root
.root
.string
);
4653 bfd_set_error (bfd_error_bad_value
);
4658 /* Note that sgot is not involved in this
4659 calculation. We always want the start of .got.plt. If we
4660 defined _GLOBAL_OFFSET_TABLE_ in a different way, as is
4661 permitted by the ABI, we might have to change this
4663 relocation
-= htab
->elf
.sgotplt
->output_section
->vma
4664 + htab
->elf
.sgotplt
->output_offset
;
4667 case R_X86_64_GOTPC32
:
4668 case R_X86_64_GOTPC64
:
4669 /* Use global offset table as symbol value. */
4670 relocation
= htab
->elf
.sgotplt
->output_section
->vma
4671 + htab
->elf
.sgotplt
->output_offset
;
4672 unresolved_reloc
= FALSE
;
4675 case R_X86_64_PLTOFF64
:
4676 /* Relocation is PLT entry relative to GOT. For local
4677 symbols it's the symbol itself relative to GOT. */
4679 /* See PLT32 handling. */
4680 && h
->plt
.offset
!= (bfd_vma
) -1
4681 && htab
->elf
.splt
!= NULL
)
4683 if (htab
->plt_bnd
!= NULL
)
4685 resolved_plt
= htab
->plt_bnd
;
4686 plt_offset
= eh
->plt_bnd
.offset
;
4690 resolved_plt
= htab
->elf
.splt
;
4691 plt_offset
= h
->plt
.offset
;
4694 relocation
= (resolved_plt
->output_section
->vma
4695 + resolved_plt
->output_offset
4697 unresolved_reloc
= FALSE
;
4700 relocation
-= htab
->elf
.sgotplt
->output_section
->vma
4701 + htab
->elf
.sgotplt
->output_offset
;
4704 case R_X86_64_PLT32
:
4705 case R_X86_64_PLT32_BND
:
4706 /* Relocation is to the entry for this symbol in the
4707 procedure linkage table. */
4709 /* Resolve a PLT32 reloc against a local symbol directly,
4710 without using the procedure linkage table. */
4714 if ((h
->plt
.offset
== (bfd_vma
) -1
4715 && eh
->plt_got
.offset
== (bfd_vma
) -1)
4716 || htab
->elf
.splt
== NULL
)
4718 /* We didn't make a PLT entry for this symbol. This
4719 happens when statically linking PIC code, or when
4720 using -Bsymbolic. */
4724 if (h
->plt
.offset
!= (bfd_vma
) -1)
4726 if (htab
->plt_bnd
!= NULL
)
4728 resolved_plt
= htab
->plt_bnd
;
4729 plt_offset
= eh
->plt_bnd
.offset
;
4733 resolved_plt
= htab
->elf
.splt
;
4734 plt_offset
= h
->plt
.offset
;
4739 /* Use the GOT PLT. */
4740 resolved_plt
= htab
->plt_got
;
4741 plt_offset
= eh
->plt_got
.offset
;
4744 relocation
= (resolved_plt
->output_section
->vma
4745 + resolved_plt
->output_offset
4747 unresolved_reloc
= FALSE
;
4750 case R_X86_64_SIZE32
:
4751 case R_X86_64_SIZE64
:
4752 /* Set to symbol size. */
4753 relocation
= st_size
;
4759 case R_X86_64_PC32_BND
:
4760 /* Don't complain about -fPIC if the symbol is undefined when
4761 building executable unless it is unresolved weak symbol. */
4762 if ((input_section
->flags
& SEC_ALLOC
) != 0
4763 && (input_section
->flags
& SEC_READONLY
) != 0
4765 && ((bfd_link_executable (info
)
4766 && h
->root
.type
== bfd_link_hash_undefweak
4767 && !resolved_to_zero
)
4768 || (bfd_link_pic (info
)
4769 && !(bfd_link_pie (info
)
4770 && h
->root
.type
== bfd_link_hash_undefined
))))
4772 bfd_boolean fail
= FALSE
;
4774 = ((r_type
== R_X86_64_PC32
4775 || r_type
== R_X86_64_PC32_BND
)
4776 && is_32bit_relative_branch (contents
, rel
->r_offset
));
4778 if (SYMBOL_REFERENCES_LOCAL (info
, h
))
4780 /* Symbol is referenced locally. Make sure it is
4781 defined locally or for a branch. */
4782 fail
= !h
->def_regular
&& !branch
;
4784 else if (!(bfd_link_pie (info
)
4785 && (h
->needs_copy
|| eh
->needs_copy
)))
4787 /* Symbol doesn't need copy reloc and isn't referenced
4788 locally. We only allow branch to symbol with
4789 non-default visibility. */
4791 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
);
4795 return elf_x86_64_need_pic (input_bfd
, input_section
,
4796 h
, NULL
, NULL
, howto
);
4805 /* FIXME: The ABI says the linker should make sure the value is
4806 the same when it's zeroextended to 64 bit. */
4809 if ((input_section
->flags
& SEC_ALLOC
) == 0)
4812 /* Don't copy a pc-relative relocation into the output file
4813 if the symbol needs copy reloc or the symbol is undefined
4814 when building executable. Copy dynamic function pointer
4815 relocations. Don't generate dynamic relocations against
4816 resolved undefined weak symbols in PIE. */
4817 if ((bfd_link_pic (info
)
4818 && !(bfd_link_pie (info
)
4822 || h
->root
.type
== bfd_link_hash_undefined
)
4823 && (IS_X86_64_PCREL_TYPE (r_type
)
4824 || r_type
== R_X86_64_SIZE32
4825 || r_type
== R_X86_64_SIZE64
))
4827 || ((ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
4828 && !resolved_to_zero
)
4829 || h
->root
.type
!= bfd_link_hash_undefweak
))
4830 && ((! IS_X86_64_PCREL_TYPE (r_type
)
4831 && r_type
!= R_X86_64_SIZE32
4832 && r_type
!= R_X86_64_SIZE64
)
4833 || ! SYMBOL_CALLS_LOCAL (info
, h
)))
4834 || (ELIMINATE_COPY_RELOCS
4835 && !bfd_link_pic (info
)
4839 || eh
->func_pointer_refcount
> 0
4840 || (h
->root
.type
== bfd_link_hash_undefweak
4841 && !resolved_to_zero
))
4842 && ((h
->def_dynamic
&& !h
->def_regular
)
4843 /* Undefined weak symbol is bound locally when
4845 || h
->root
.type
== bfd_link_hash_undefined
)))
4847 Elf_Internal_Rela outrel
;
4848 bfd_boolean skip
, relocate
;
4851 /* When generating a shared object, these relocations
4852 are copied into the output file to be resolved at run
4858 _bfd_elf_section_offset (output_bfd
, info
, input_section
,
4860 if (outrel
.r_offset
== (bfd_vma
) -1)
4862 else if (outrel
.r_offset
== (bfd_vma
) -2)
4863 skip
= TRUE
, relocate
= TRUE
;
4865 outrel
.r_offset
+= (input_section
->output_section
->vma
4866 + input_section
->output_offset
);
4869 memset (&outrel
, 0, sizeof outrel
);
4871 /* h->dynindx may be -1 if this symbol was marked to
4875 && (IS_X86_64_PCREL_TYPE (r_type
)
4876 || !(bfd_link_executable (info
)
4877 || SYMBOLIC_BIND (info
, h
))
4878 || ! h
->def_regular
))
4880 outrel
.r_info
= htab
->r_info (h
->dynindx
, r_type
);
4881 outrel
.r_addend
= rel
->r_addend
;
4885 /* This symbol is local, or marked to become local.
4886 When relocation overflow check is disabled, we
4887 convert R_X86_64_32 to dynamic R_X86_64_RELATIVE. */
4888 if (r_type
== htab
->pointer_r_type
4889 || (r_type
== R_X86_64_32
4890 && info
->no_reloc_overflow_check
))
4893 outrel
.r_info
= htab
->r_info (0, R_X86_64_RELATIVE
);
4894 outrel
.r_addend
= relocation
+ rel
->r_addend
;
4896 else if (r_type
== R_X86_64_64
4897 && !ABI_64_P (output_bfd
))
4900 outrel
.r_info
= htab
->r_info (0,
4901 R_X86_64_RELATIVE64
);
4902 outrel
.r_addend
= relocation
+ rel
->r_addend
;
4903 /* Check addend overflow. */
4904 if ((outrel
.r_addend
& 0x80000000)
4905 != (rel
->r_addend
& 0x80000000))
4908 int addend
= rel
->r_addend
;
4909 if (h
&& h
->root
.root
.string
)
4910 name
= h
->root
.root
.string
;
4912 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
,
4916 (_("%B: addend -0x%x in relocation %s against "
4917 "symbol `%s' at 0x%lx in section `%A' is "
4919 input_bfd
, input_section
, addend
,
4921 (unsigned long) rel
->r_offset
);
4924 (_("%B: addend 0x%x in relocation %s against "
4925 "symbol `%s' at 0x%lx in section `%A' is "
4927 input_bfd
, input_section
, addend
,
4929 (unsigned long) rel
->r_offset
);
4930 bfd_set_error (bfd_error_bad_value
);
4938 if (bfd_is_abs_section (sec
))
4940 else if (sec
== NULL
|| sec
->owner
== NULL
)
4942 bfd_set_error (bfd_error_bad_value
);
4949 /* We are turning this relocation into one
4950 against a section symbol. It would be
4951 proper to subtract the symbol's value,
4952 osec->vma, from the emitted reloc addend,
4953 but ld.so expects buggy relocs. */
4954 osec
= sec
->output_section
;
4955 sindx
= elf_section_data (osec
)->dynindx
;
4958 asection
*oi
= htab
->elf
.text_index_section
;
4959 sindx
= elf_section_data (oi
)->dynindx
;
4961 BFD_ASSERT (sindx
!= 0);
4964 outrel
.r_info
= htab
->r_info (sindx
, r_type
);
4965 outrel
.r_addend
= relocation
+ rel
->r_addend
;
4969 sreloc
= elf_section_data (input_section
)->sreloc
;
4971 if (sreloc
== NULL
|| sreloc
->contents
== NULL
)
4973 r
= bfd_reloc_notsupported
;
4974 goto check_relocation_error
;
4977 elf_append_rela (output_bfd
, sreloc
, &outrel
);
4979 /* If this reloc is against an external symbol, we do
4980 not want to fiddle with the addend. Otherwise, we
4981 need to include the symbol value so that it becomes
4982 an addend for the dynamic reloc. */
4989 case R_X86_64_TLSGD
:
4990 case R_X86_64_GOTPC32_TLSDESC
:
4991 case R_X86_64_TLSDESC_CALL
:
4992 case R_X86_64_GOTTPOFF
:
4993 tls_type
= GOT_UNKNOWN
;
4994 if (h
== NULL
&& local_got_offsets
)
4995 tls_type
= elf_x86_64_local_got_tls_type (input_bfd
) [r_symndx
];
4997 tls_type
= elf_x86_64_hash_entry (h
)->tls_type
;
4999 if (! elf_x86_64_tls_transition (info
, input_bfd
,
5000 input_section
, contents
,
5001 symtab_hdr
, sym_hashes
,
5002 &r_type
, tls_type
, rel
,
5003 relend
, h
, r_symndx
, TRUE
))
5006 if (r_type
== R_X86_64_TPOFF32
)
5008 bfd_vma roff
= rel
->r_offset
;
5010 BFD_ASSERT (! unresolved_reloc
);
5012 if (ELF32_R_TYPE (rel
->r_info
) == R_X86_64_TLSGD
)
5014 /* GD->LE transition. For 64bit, change
5015 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
5016 .word 0x6666; rex64; call __tls_get_addr@PLT
5018 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
5020 call *__tls_get_addr@GOTPCREL(%rip)
5021 which may be converted to
5022 addr32 call __tls_get_addr
5025 leaq foo@tpoff(%rax), %rax
5027 leaq foo@tlsgd(%rip), %rdi
5028 .word 0x6666; rex64; call __tls_get_addr@PLT
5030 leaq foo@tlsgd(%rip), %rdi
5032 call *__tls_get_addr@GOTPCREL(%rip)
5033 which may be converted to
5034 addr32 call __tls_get_addr
5037 leaq foo@tpoff(%rax), %rax
5038 For largepic, change:
5039 leaq foo@tlsgd(%rip), %rdi
5040 movabsq $__tls_get_addr@pltoff, %rax
5045 leaq foo@tpoff(%rax), %rax
5046 nopw 0x0(%rax,%rax,1) */
5048 if (ABI_64_P (output_bfd
))
5050 if (contents
[roff
+ 5] == 0xb8)
5052 memcpy (contents
+ roff
- 3,
5053 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80"
5054 "\0\0\0\0\x66\x0f\x1f\x44\0", 22);
5058 memcpy (contents
+ roff
- 4,
5059 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0",
5063 memcpy (contents
+ roff
- 3,
5064 "\x64\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0",
5066 bfd_put_32 (output_bfd
,
5067 elf_x86_64_tpoff (info
, relocation
),
5068 contents
+ roff
+ 8 + largepic
);
5069 /* Skip R_X86_64_PC32, R_X86_64_PLT32,
5070 R_X86_64_GOTPCRELX and R_X86_64_PLTOFF64. */
5075 else if (ELF32_R_TYPE (rel
->r_info
) == R_X86_64_GOTPC32_TLSDESC
)
5077 /* GDesc -> LE transition.
5078 It's originally something like:
5079 leaq x@tlsdesc(%rip), %rax
5082 movl $x@tpoff, %rax. */
5084 unsigned int val
, type
;
5086 type
= bfd_get_8 (input_bfd
, contents
+ roff
- 3);
5087 val
= bfd_get_8 (input_bfd
, contents
+ roff
- 1);
5088 bfd_put_8 (output_bfd
, 0x48 | ((type
>> 2) & 1),
5089 contents
+ roff
- 3);
5090 bfd_put_8 (output_bfd
, 0xc7, contents
+ roff
- 2);
5091 bfd_put_8 (output_bfd
, 0xc0 | ((val
>> 3) & 7),
5092 contents
+ roff
- 1);
5093 bfd_put_32 (output_bfd
,
5094 elf_x86_64_tpoff (info
, relocation
),
5098 else if (ELF32_R_TYPE (rel
->r_info
) == R_X86_64_TLSDESC_CALL
)
5100 /* GDesc -> LE transition.
5105 bfd_put_8 (output_bfd
, 0x66, contents
+ roff
);
5106 bfd_put_8 (output_bfd
, 0x90, contents
+ roff
+ 1);
5109 else if (ELF32_R_TYPE (rel
->r_info
) == R_X86_64_GOTTPOFF
)
5111 /* IE->LE transition:
5112 For 64bit, originally it can be one of:
5113 movq foo@gottpoff(%rip), %reg
5114 addq foo@gottpoff(%rip), %reg
5117 leaq foo(%reg), %reg
5119 For 32bit, originally it can be one of:
5120 movq foo@gottpoff(%rip), %reg
5121 addl foo@gottpoff(%rip), %reg
5124 leal foo(%reg), %reg
5127 unsigned int val
, type
, reg
;
5130 val
= bfd_get_8 (input_bfd
, contents
+ roff
- 3);
5133 type
= bfd_get_8 (input_bfd
, contents
+ roff
- 2);
5134 reg
= bfd_get_8 (input_bfd
, contents
+ roff
- 1);
5140 bfd_put_8 (output_bfd
, 0x49,
5141 contents
+ roff
- 3);
5142 else if (!ABI_64_P (output_bfd
) && val
== 0x44)
5143 bfd_put_8 (output_bfd
, 0x41,
5144 contents
+ roff
- 3);
5145 bfd_put_8 (output_bfd
, 0xc7,
5146 contents
+ roff
- 2);
5147 bfd_put_8 (output_bfd
, 0xc0 | reg
,
5148 contents
+ roff
- 1);
5152 /* addq/addl -> addq/addl - addressing with %rsp/%r12
5155 bfd_put_8 (output_bfd
, 0x49,
5156 contents
+ roff
- 3);
5157 else if (!ABI_64_P (output_bfd
) && val
== 0x44)
5158 bfd_put_8 (output_bfd
, 0x41,
5159 contents
+ roff
- 3);
5160 bfd_put_8 (output_bfd
, 0x81,
5161 contents
+ roff
- 2);
5162 bfd_put_8 (output_bfd
, 0xc0 | reg
,
5163 contents
+ roff
- 1);
5167 /* addq/addl -> leaq/leal */
5169 bfd_put_8 (output_bfd
, 0x4d,
5170 contents
+ roff
- 3);
5171 else if (!ABI_64_P (output_bfd
) && val
== 0x44)
5172 bfd_put_8 (output_bfd
, 0x45,
5173 contents
+ roff
- 3);
5174 bfd_put_8 (output_bfd
, 0x8d,
5175 contents
+ roff
- 2);
5176 bfd_put_8 (output_bfd
, 0x80 | reg
| (reg
<< 3),
5177 contents
+ roff
- 1);
5179 bfd_put_32 (output_bfd
,
5180 elf_x86_64_tpoff (info
, relocation
),
5188 if (htab
->elf
.sgot
== NULL
)
5193 off
= h
->got
.offset
;
5194 offplt
= elf_x86_64_hash_entry (h
)->tlsdesc_got
;
5198 if (local_got_offsets
== NULL
)
5201 off
= local_got_offsets
[r_symndx
];
5202 offplt
= local_tlsdesc_gotents
[r_symndx
];
5209 Elf_Internal_Rela outrel
;
5213 if (htab
->elf
.srelgot
== NULL
)
5216 indx
= h
&& h
->dynindx
!= -1 ? h
->dynindx
: 0;
5218 if (GOT_TLS_GDESC_P (tls_type
))
5220 outrel
.r_info
= htab
->r_info (indx
, R_X86_64_TLSDESC
);
5221 BFD_ASSERT (htab
->sgotplt_jump_table_size
+ offplt
5222 + 2 * GOT_ENTRY_SIZE
<= htab
->elf
.sgotplt
->size
);
5223 outrel
.r_offset
= (htab
->elf
.sgotplt
->output_section
->vma
5224 + htab
->elf
.sgotplt
->output_offset
5226 + htab
->sgotplt_jump_table_size
);
5227 sreloc
= htab
->elf
.srelplt
;
5229 outrel
.r_addend
= relocation
- elf_x86_64_dtpoff_base (info
);
5231 outrel
.r_addend
= 0;
5232 elf_append_rela (output_bfd
, sreloc
, &outrel
);
5235 sreloc
= htab
->elf
.srelgot
;
5237 outrel
.r_offset
= (htab
->elf
.sgot
->output_section
->vma
5238 + htab
->elf
.sgot
->output_offset
+ off
);
5240 if (GOT_TLS_GD_P (tls_type
))
5241 dr_type
= R_X86_64_DTPMOD64
;
5242 else if (GOT_TLS_GDESC_P (tls_type
))
5245 dr_type
= R_X86_64_TPOFF64
;
5247 bfd_put_64 (output_bfd
, 0, htab
->elf
.sgot
->contents
+ off
);
5248 outrel
.r_addend
= 0;
5249 if ((dr_type
== R_X86_64_TPOFF64
5250 || dr_type
== R_X86_64_TLSDESC
) && indx
== 0)
5251 outrel
.r_addend
= relocation
- elf_x86_64_dtpoff_base (info
);
5252 outrel
.r_info
= htab
->r_info (indx
, dr_type
);
5254 elf_append_rela (output_bfd
, sreloc
, &outrel
);
5256 if (GOT_TLS_GD_P (tls_type
))
5260 BFD_ASSERT (! unresolved_reloc
);
5261 bfd_put_64 (output_bfd
,
5262 relocation
- elf_x86_64_dtpoff_base (info
),
5263 htab
->elf
.sgot
->contents
+ off
+ GOT_ENTRY_SIZE
);
5267 bfd_put_64 (output_bfd
, 0,
5268 htab
->elf
.sgot
->contents
+ off
+ GOT_ENTRY_SIZE
);
5269 outrel
.r_info
= htab
->r_info (indx
,
5271 outrel
.r_offset
+= GOT_ENTRY_SIZE
;
5272 elf_append_rela (output_bfd
, sreloc
,
5281 local_got_offsets
[r_symndx
] |= 1;
5284 if (off
>= (bfd_vma
) -2
5285 && ! GOT_TLS_GDESC_P (tls_type
))
5287 if (r_type
== ELF32_R_TYPE (rel
->r_info
))
5289 if (r_type
== R_X86_64_GOTPC32_TLSDESC
5290 || r_type
== R_X86_64_TLSDESC_CALL
)
5291 relocation
= htab
->elf
.sgotplt
->output_section
->vma
5292 + htab
->elf
.sgotplt
->output_offset
5293 + offplt
+ htab
->sgotplt_jump_table_size
;
5295 relocation
= htab
->elf
.sgot
->output_section
->vma
5296 + htab
->elf
.sgot
->output_offset
+ off
;
5297 unresolved_reloc
= FALSE
;
5301 bfd_vma roff
= rel
->r_offset
;
5303 if (ELF32_R_TYPE (rel
->r_info
) == R_X86_64_TLSGD
)
5305 /* GD->IE transition. For 64bit, change
5306 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
5307 .word 0x6666; rex64; call __tls_get_addr@PLT
5309 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
5311 call *__tls_get_addr@GOTPCREL(%rip
5312 which may be converted to
5313 addr32 call __tls_get_addr
5316 addq foo@gottpoff(%rip), %rax
5318 leaq foo@tlsgd(%rip), %rdi
5319 .word 0x6666; rex64; call __tls_get_addr@PLT
5321 leaq foo@tlsgd(%rip), %rdi
5323 call *__tls_get_addr@GOTPCREL(%rip)
5324 which may be converted to
5325 addr32 call __tls_get_addr
5328 addq foo@gottpoff(%rip), %rax
5329 For largepic, change:
5330 leaq foo@tlsgd(%rip), %rdi
5331 movabsq $__tls_get_addr@pltoff, %rax
5336 addq foo@gottpoff(%rax), %rax
5337 nopw 0x0(%rax,%rax,1) */
5339 if (ABI_64_P (output_bfd
))
5341 if (contents
[roff
+ 5] == 0xb8)
5343 memcpy (contents
+ roff
- 3,
5344 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05"
5345 "\0\0\0\0\x66\x0f\x1f\x44\0", 22);
5349 memcpy (contents
+ roff
- 4,
5350 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0",
5354 memcpy (contents
+ roff
- 3,
5355 "\x64\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0",
5358 relocation
= (htab
->elf
.sgot
->output_section
->vma
5359 + htab
->elf
.sgot
->output_offset
+ off
5362 - input_section
->output_section
->vma
5363 - input_section
->output_offset
5365 bfd_put_32 (output_bfd
, relocation
,
5366 contents
+ roff
+ 8 + largepic
);
5367 /* Skip R_X86_64_PLT32/R_X86_64_PLTOFF64. */
5372 else if (ELF32_R_TYPE (rel
->r_info
) == R_X86_64_GOTPC32_TLSDESC
)
5374 /* GDesc -> IE transition.
5375 It's originally something like:
5376 leaq x@tlsdesc(%rip), %rax
5379 movq x@gottpoff(%rip), %rax # before xchg %ax,%ax. */
5381 /* Now modify the instruction as appropriate. To
5382 turn a leaq into a movq in the form we use it, it
5383 suffices to change the second byte from 0x8d to
5385 bfd_put_8 (output_bfd
, 0x8b, contents
+ roff
- 2);
5387 bfd_put_32 (output_bfd
,
5388 htab
->elf
.sgot
->output_section
->vma
5389 + htab
->elf
.sgot
->output_offset
+ off
5391 - input_section
->output_section
->vma
5392 - input_section
->output_offset
5397 else if (ELF32_R_TYPE (rel
->r_info
) == R_X86_64_TLSDESC_CALL
)
5399 /* GDesc -> IE transition.
5406 bfd_put_8 (output_bfd
, 0x66, contents
+ roff
);
5407 bfd_put_8 (output_bfd
, 0x90, contents
+ roff
+ 1);
5415 case R_X86_64_TLSLD
:
5416 if (! elf_x86_64_tls_transition (info
, input_bfd
,
5417 input_section
, contents
,
5418 symtab_hdr
, sym_hashes
,
5419 &r_type
, GOT_UNKNOWN
, rel
,
5420 relend
, h
, r_symndx
, TRUE
))
5423 if (r_type
!= R_X86_64_TLSLD
)
5425 /* LD->LE transition:
5426 leaq foo@tlsld(%rip), %rdi
5427 call __tls_get_addr@PLT
5428 For 64bit, we change it into:
5429 .word 0x6666; .byte 0x66; movq %fs:0, %rax
5430 For 32bit, we change it into:
5431 nopl 0x0(%rax); movl %fs:0, %eax
5433 leaq foo@tlsld(%rip), %rdi;
5434 call *__tls_get_addr@GOTPCREL(%rip)
5435 which may be converted to
5436 addr32 call __tls_get_addr
5437 For 64bit, we change it into:
5438 .word 0x6666; .word 0x6666; movq %fs:0, %rax
5439 For 32bit, we change it into:
5440 nopw 0x0(%rax); movl %fs:0, %eax
5441 For largepic, change:
5442 leaq foo@tlsgd(%rip), %rdi
5443 movabsq $__tls_get_addr@pltoff, %rax
5447 data16 data16 data16 nopw %cs:0x0(%rax,%rax,1)
5450 BFD_ASSERT (r_type
== R_X86_64_TPOFF32
);
5451 if (ABI_64_P (output_bfd
))
5453 if (contents
[rel
->r_offset
+ 5] == 0xb8)
5454 memcpy (contents
+ rel
->r_offset
- 3,
5455 "\x66\x66\x66\x66\x2e\x0f\x1f\x84\0\0\0\0\0"
5456 "\x64\x48\x8b\x04\x25\0\0\0", 22);
5457 else if (contents
[rel
->r_offset
+ 4] == 0xff
5458 || contents
[rel
->r_offset
+ 4] == 0x67)
5459 memcpy (contents
+ rel
->r_offset
- 3,
5460 "\x66\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0",
5463 memcpy (contents
+ rel
->r_offset
- 3,
5464 "\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0", 12);
5468 if (contents
[rel
->r_offset
+ 4] == 0xff)
5469 memcpy (contents
+ rel
->r_offset
- 3,
5470 "\x66\x0f\x1f\x40\x00\x64\x8b\x04\x25\0\0\0",
5473 memcpy (contents
+ rel
->r_offset
- 3,
5474 "\x0f\x1f\x40\x00\x64\x8b\x04\x25\0\0\0", 12);
5476 /* Skip R_X86_64_PC32, R_X86_64_PLT32, R_X86_64_GOTPCRELX
5477 and R_X86_64_PLTOFF64. */
5483 if (htab
->elf
.sgot
== NULL
)
5486 off
= htab
->tls_ld_got
.offset
;
5491 Elf_Internal_Rela outrel
;
5493 if (htab
->elf
.srelgot
== NULL
)
5496 outrel
.r_offset
= (htab
->elf
.sgot
->output_section
->vma
5497 + htab
->elf
.sgot
->output_offset
+ off
);
5499 bfd_put_64 (output_bfd
, 0,
5500 htab
->elf
.sgot
->contents
+ off
);
5501 bfd_put_64 (output_bfd
, 0,
5502 htab
->elf
.sgot
->contents
+ off
+ GOT_ENTRY_SIZE
);
5503 outrel
.r_info
= htab
->r_info (0, R_X86_64_DTPMOD64
);
5504 outrel
.r_addend
= 0;
5505 elf_append_rela (output_bfd
, htab
->elf
.srelgot
,
5507 htab
->tls_ld_got
.offset
|= 1;
5509 relocation
= htab
->elf
.sgot
->output_section
->vma
5510 + htab
->elf
.sgot
->output_offset
+ off
;
5511 unresolved_reloc
= FALSE
;
5514 case R_X86_64_DTPOFF32
:
5515 if (!bfd_link_executable (info
)
5516 || (input_section
->flags
& SEC_CODE
) == 0)
5517 relocation
-= elf_x86_64_dtpoff_base (info
);
5519 relocation
= elf_x86_64_tpoff (info
, relocation
);
5522 case R_X86_64_TPOFF32
:
5523 case R_X86_64_TPOFF64
:
5524 BFD_ASSERT (bfd_link_executable (info
));
5525 relocation
= elf_x86_64_tpoff (info
, relocation
);
5528 case R_X86_64_DTPOFF64
:
5529 BFD_ASSERT ((input_section
->flags
& SEC_CODE
) == 0);
5530 relocation
-= elf_x86_64_dtpoff_base (info
);
5537 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
5538 because such sections are not SEC_ALLOC and thus ld.so will
5539 not process them. */
5540 if (unresolved_reloc
5541 && !((input_section
->flags
& SEC_DEBUGGING
) != 0
5543 && _bfd_elf_section_offset (output_bfd
, info
, input_section
,
5544 rel
->r_offset
) != (bfd_vma
) -1)
5547 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
5550 (long) rel
->r_offset
,
5552 h
->root
.root
.string
);
5557 r
= _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
5558 contents
, rel
->r_offset
,
5559 relocation
, rel
->r_addend
);
5561 check_relocation_error
:
5562 if (r
!= bfd_reloc_ok
)
5567 name
= h
->root
.root
.string
;
5570 name
= bfd_elf_string_from_elf_section (input_bfd
,
5571 symtab_hdr
->sh_link
,
5576 name
= bfd_section_name (input_bfd
, sec
);
5579 if (r
== bfd_reloc_overflow
)
5580 (*info
->callbacks
->reloc_overflow
)
5581 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
5582 (bfd_vma
) 0, input_bfd
, input_section
, rel
->r_offset
);
5586 (_("%B(%A+0x%lx): reloc against `%s': error %d"),
5587 input_bfd
, input_section
,
5588 (long) rel
->r_offset
, name
, (int) r
);
5599 Elf_Internal_Shdr
*rel_hdr
;
5600 size_t deleted
= rel
- wrel
;
5602 rel_hdr
= _bfd_elf_single_rel_hdr (input_section
->output_section
);
5603 rel_hdr
->sh_size
-= rel_hdr
->sh_entsize
* deleted
;
5604 if (rel_hdr
->sh_size
== 0)
5606 /* It is too late to remove an empty reloc section. Leave
5608 ??? What is wrong with an empty section??? */
5609 rel_hdr
->sh_size
= rel_hdr
->sh_entsize
;
5612 rel_hdr
= _bfd_elf_single_rel_hdr (input_section
);
5613 rel_hdr
->sh_size
-= rel_hdr
->sh_entsize
* deleted
;
5614 input_section
->reloc_count
-= deleted
;
5620 /* Finish up dynamic symbol handling. We set the contents of various
5621 dynamic sections here. */
5624 elf_x86_64_finish_dynamic_symbol (bfd
*output_bfd
,
5625 struct bfd_link_info
*info
,
5626 struct elf_link_hash_entry
*h
,
5627 Elf_Internal_Sym
*sym
)
5629 struct elf_x86_64_link_hash_table
*htab
;
5630 const struct elf_x86_64_backend_data
*abed
;
5631 bfd_boolean use_plt_bnd
;
5632 struct elf_x86_64_link_hash_entry
*eh
;
5633 bfd_boolean local_undefweak
;
5635 htab
= elf_x86_64_hash_table (info
);
5639 /* Use MPX backend data in case of BND relocation. Use .plt_bnd
5640 section only if there is .plt section. */
5641 use_plt_bnd
= htab
->elf
.splt
!= NULL
&& htab
->plt_bnd
!= NULL
;
5643 ? &elf_x86_64_bnd_arch_bed
5644 : get_elf_x86_64_backend_data (output_bfd
));
5646 eh
= (struct elf_x86_64_link_hash_entry
*) h
;
5648 /* We keep PLT/GOT entries without dynamic PLT/GOT relocations for
5649 resolved undefined weak symbols in executable so that their
5650 references have value 0 at run-time. */
5651 local_undefweak
= UNDEFINED_WEAK_RESOLVED_TO_ZERO (info
,
5655 if (h
->plt
.offset
!= (bfd_vma
) -1)
5658 bfd_vma got_offset
, plt_offset
, plt_plt_offset
, plt_got_offset
;
5659 bfd_vma plt_plt_insn_end
, plt_got_insn_size
;
5660 Elf_Internal_Rela rela
;
5662 asection
*plt
, *gotplt
, *relplt
, *resolved_plt
;
5663 const struct elf_backend_data
*bed
;
5664 bfd_vma plt_got_pcrel_offset
;
5666 /* When building a static executable, use .iplt, .igot.plt and
5667 .rela.iplt sections for STT_GNU_IFUNC symbols. */
5668 if (htab
->elf
.splt
!= NULL
)
5670 plt
= htab
->elf
.splt
;
5671 gotplt
= htab
->elf
.sgotplt
;
5672 relplt
= htab
->elf
.srelplt
;
5676 plt
= htab
->elf
.iplt
;
5677 gotplt
= htab
->elf
.igotplt
;
5678 relplt
= htab
->elf
.irelplt
;
5681 /* This symbol has an entry in the procedure linkage table. Set
5683 if ((h
->dynindx
== -1
5685 && !((h
->forced_local
|| bfd_link_executable (info
))
5687 && h
->type
== STT_GNU_IFUNC
))
5693 /* Get the index in the procedure linkage table which
5694 corresponds to this symbol. This is the index of this symbol
5695 in all the symbols for which we are making plt entries. The
5696 first entry in the procedure linkage table is reserved.
5698 Get the offset into the .got table of the entry that
5699 corresponds to this function. Each .got entry is GOT_ENTRY_SIZE
5700 bytes. The first three are reserved for the dynamic linker.
5702 For static executables, we don't reserve anything. */
5704 if (plt
== htab
->elf
.splt
)
5706 got_offset
= h
->plt
.offset
/ abed
->plt_entry_size
- 1;
5707 got_offset
= (got_offset
+ 3) * GOT_ENTRY_SIZE
;
5711 got_offset
= h
->plt
.offset
/ abed
->plt_entry_size
;
5712 got_offset
= got_offset
* GOT_ENTRY_SIZE
;
5715 plt_plt_insn_end
= abed
->plt_plt_insn_end
;
5716 plt_plt_offset
= abed
->plt_plt_offset
;
5717 plt_got_insn_size
= abed
->plt_got_insn_size
;
5718 plt_got_offset
= abed
->plt_got_offset
;
5721 /* Use the second PLT with BND relocations. */
5722 const bfd_byte
*plt_entry
, *plt2_entry
;
5724 if (eh
->has_bnd_reloc
)
5726 plt_entry
= elf_x86_64_bnd_plt_entry
;
5727 plt2_entry
= elf_x86_64_bnd_plt2_entry
;
5731 plt_entry
= elf_x86_64_legacy_plt_entry
;
5732 plt2_entry
= elf_x86_64_legacy_plt2_entry
;
5734 /* Subtract 1 since there is no BND prefix. */
5735 plt_plt_insn_end
-= 1;
5736 plt_plt_offset
-= 1;
5737 plt_got_insn_size
-= 1;
5738 plt_got_offset
-= 1;
5741 BFD_ASSERT (sizeof (elf_x86_64_bnd_plt_entry
)
5742 == sizeof (elf_x86_64_legacy_plt_entry
));
5744 /* Fill in the entry in the procedure linkage table. */
5745 memcpy (plt
->contents
+ h
->plt
.offset
,
5746 plt_entry
, sizeof (elf_x86_64_legacy_plt_entry
));
5747 /* Fill in the entry in the second PLT. */
5748 memcpy (htab
->plt_bnd
->contents
+ eh
->plt_bnd
.offset
,
5749 plt2_entry
, sizeof (elf_x86_64_legacy_plt2_entry
));
5751 resolved_plt
= htab
->plt_bnd
;
5752 plt_offset
= eh
->plt_bnd
.offset
;
5756 /* Fill in the entry in the procedure linkage table. */
5757 memcpy (plt
->contents
+ h
->plt
.offset
, abed
->plt_entry
,
5758 abed
->plt_entry_size
);
5761 plt_offset
= h
->plt
.offset
;
5764 /* Insert the relocation positions of the plt section. */
5766 /* Put offset the PC-relative instruction referring to the GOT entry,
5767 subtracting the size of that instruction. */
5768 plt_got_pcrel_offset
= (gotplt
->output_section
->vma
5769 + gotplt
->output_offset
5771 - resolved_plt
->output_section
->vma
5772 - resolved_plt
->output_offset
5774 - plt_got_insn_size
);
5776 /* Check PC-relative offset overflow in PLT entry. */
5777 if ((plt_got_pcrel_offset
+ 0x80000000) > 0xffffffff)
5778 info
->callbacks
->einfo (_("%F%B: PC-relative offset overflow in PLT entry for `%s'\n"),
5779 output_bfd
, h
->root
.root
.string
);
5781 bfd_put_32 (output_bfd
, plt_got_pcrel_offset
,
5782 resolved_plt
->contents
+ plt_offset
+ plt_got_offset
);
5784 /* Fill in the entry in the global offset table, initially this
5785 points to the second part of the PLT entry. Leave the entry
5786 as zero for undefined weak symbol in PIE. No PLT relocation
5787 against undefined weak symbol in PIE. */
5788 if (!local_undefweak
)
5790 bfd_put_64 (output_bfd
, (plt
->output_section
->vma
5791 + plt
->output_offset
5793 + abed
->plt_lazy_offset
),
5794 gotplt
->contents
+ got_offset
);
5796 /* Fill in the entry in the .rela.plt section. */
5797 rela
.r_offset
= (gotplt
->output_section
->vma
5798 + gotplt
->output_offset
5800 if (h
->dynindx
== -1
5801 || ((bfd_link_executable (info
)
5802 || ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
)
5804 && h
->type
== STT_GNU_IFUNC
))
5806 /* If an STT_GNU_IFUNC symbol is locally defined, generate
5807 R_X86_64_IRELATIVE instead of R_X86_64_JUMP_SLOT. */
5808 rela
.r_info
= htab
->r_info (0, R_X86_64_IRELATIVE
);
5809 rela
.r_addend
= (h
->root
.u
.def
.value
5810 + h
->root
.u
.def
.section
->output_section
->vma
5811 + h
->root
.u
.def
.section
->output_offset
);
5812 /* R_X86_64_IRELATIVE comes last. */
5813 plt_index
= htab
->next_irelative_index
--;
5817 rela
.r_info
= htab
->r_info (h
->dynindx
, R_X86_64_JUMP_SLOT
);
5819 plt_index
= htab
->next_jump_slot_index
++;
5822 /* Don't fill PLT entry for static executables. */
5823 if (plt
== htab
->elf
.splt
)
5825 bfd_vma plt0_offset
= h
->plt
.offset
+ plt_plt_insn_end
;
5827 /* Put relocation index. */
5828 bfd_put_32 (output_bfd
, plt_index
,
5829 (plt
->contents
+ h
->plt
.offset
5830 + abed
->plt_reloc_offset
));
5832 /* Put offset for jmp .PLT0 and check for overflow. We don't
5833 check relocation index for overflow since branch displacement
5834 will overflow first. */
5835 if (plt0_offset
> 0x80000000)
5836 info
->callbacks
->einfo (_("%F%B: branch displacement overflow in PLT entry for `%s'\n"),
5837 output_bfd
, h
->root
.root
.string
);
5838 bfd_put_32 (output_bfd
, - plt0_offset
,
5839 plt
->contents
+ h
->plt
.offset
+ plt_plt_offset
);
5842 bed
= get_elf_backend_data (output_bfd
);
5843 loc
= relplt
->contents
+ plt_index
* bed
->s
->sizeof_rela
;
5844 bed
->s
->swap_reloca_out (output_bfd
, &rela
, loc
);
5847 else if (eh
->plt_got
.offset
!= (bfd_vma
) -1)
5849 bfd_vma got_offset
, plt_offset
, plt_got_offset
, plt_got_insn_size
;
5850 asection
*plt
, *got
;
5851 bfd_boolean got_after_plt
;
5852 int32_t got_pcrel_offset
;
5853 const bfd_byte
*got_plt_entry
;
5855 /* Set the entry in the GOT procedure linkage table. */
5856 plt
= htab
->plt_got
;
5857 got
= htab
->elf
.sgot
;
5858 got_offset
= h
->got
.offset
;
5860 if (got_offset
== (bfd_vma
) -1
5861 || h
->type
== STT_GNU_IFUNC
5866 /* Use the second PLT entry template for the GOT PLT since they
5867 are the identical. */
5868 plt_got_insn_size
= elf_x86_64_bnd_arch_bed
.plt_got_insn_size
;
5869 plt_got_offset
= elf_x86_64_bnd_arch_bed
.plt_got_offset
;
5870 if (eh
->has_bnd_reloc
)
5871 got_plt_entry
= elf_x86_64_bnd_plt2_entry
;
5874 got_plt_entry
= elf_x86_64_legacy_plt2_entry
;
5876 /* Subtract 1 since there is no BND prefix. */
5877 plt_got_insn_size
-= 1;
5878 plt_got_offset
-= 1;
5881 /* Fill in the entry in the GOT procedure linkage table. */
5882 plt_offset
= eh
->plt_got
.offset
;
5883 memcpy (plt
->contents
+ plt_offset
,
5884 got_plt_entry
, sizeof (elf_x86_64_legacy_plt2_entry
));
5886 /* Put offset the PC-relative instruction referring to the GOT
5887 entry, subtracting the size of that instruction. */
5888 got_pcrel_offset
= (got
->output_section
->vma
5889 + got
->output_offset
5891 - plt
->output_section
->vma
5892 - plt
->output_offset
5894 - plt_got_insn_size
);
5896 /* Check PC-relative offset overflow in GOT PLT entry. */
5897 got_after_plt
= got
->output_section
->vma
> plt
->output_section
->vma
;
5898 if ((got_after_plt
&& got_pcrel_offset
< 0)
5899 || (!got_after_plt
&& got_pcrel_offset
> 0))
5900 info
->callbacks
->einfo (_("%F%B: PC-relative offset overflow in GOT PLT entry for `%s'\n"),
5901 output_bfd
, h
->root
.root
.string
);
5903 bfd_put_32 (output_bfd
, got_pcrel_offset
,
5904 plt
->contents
+ plt_offset
+ plt_got_offset
);
5907 if (!local_undefweak
5909 && (h
->plt
.offset
!= (bfd_vma
) -1
5910 || eh
->plt_got
.offset
!= (bfd_vma
) -1))
5912 /* Mark the symbol as undefined, rather than as defined in
5913 the .plt section. Leave the value if there were any
5914 relocations where pointer equality matters (this is a clue
5915 for the dynamic linker, to make function pointer
5916 comparisons work between an application and shared
5917 library), otherwise set it to zero. If a function is only
5918 called from a binary, there is no need to slow down
5919 shared libraries because of that. */
5920 sym
->st_shndx
= SHN_UNDEF
;
5921 if (!h
->pointer_equality_needed
)
5925 /* Don't generate dynamic GOT relocation against undefined weak
5926 symbol in executable. */
5927 if (h
->got
.offset
!= (bfd_vma
) -1
5928 && ! GOT_TLS_GD_ANY_P (elf_x86_64_hash_entry (h
)->tls_type
)
5929 && elf_x86_64_hash_entry (h
)->tls_type
!= GOT_TLS_IE
5930 && !local_undefweak
)
5932 Elf_Internal_Rela rela
;
5933 asection
*relgot
= htab
->elf
.srelgot
;
5935 /* This symbol has an entry in the global offset table. Set it
5937 if (htab
->elf
.sgot
== NULL
|| htab
->elf
.srelgot
== NULL
)
5940 rela
.r_offset
= (htab
->elf
.sgot
->output_section
->vma
5941 + htab
->elf
.sgot
->output_offset
5942 + (h
->got
.offset
&~ (bfd_vma
) 1));
5944 /* If this is a static link, or it is a -Bsymbolic link and the
5945 symbol is defined locally or was forced to be local because
5946 of a version file, we just want to emit a RELATIVE reloc.
5947 The entry in the global offset table will already have been
5948 initialized in the relocate_section function. */
5950 && h
->type
== STT_GNU_IFUNC
)
5952 if (h
->plt
.offset
== (bfd_vma
) -1)
5954 /* STT_GNU_IFUNC is referenced without PLT. */
5955 if (htab
->elf
.splt
== NULL
)
5957 /* use .rel[a].iplt section to store .got relocations
5958 in static executable. */
5959 relgot
= htab
->elf
.irelplt
;
5961 if (SYMBOL_REFERENCES_LOCAL (info
, h
))
5963 rela
.r_info
= htab
->r_info (0,
5964 R_X86_64_IRELATIVE
);
5965 rela
.r_addend
= (h
->root
.u
.def
.value
5966 + h
->root
.u
.def
.section
->output_section
->vma
5967 + h
->root
.u
.def
.section
->output_offset
);
5972 else if (bfd_link_pic (info
))
5974 /* Generate R_X86_64_GLOB_DAT. */
5981 if (!h
->pointer_equality_needed
)
5984 /* For non-shared object, we can't use .got.plt, which
5985 contains the real function addres if we need pointer
5986 equality. We load the GOT entry with the PLT entry. */
5987 plt
= htab
->elf
.splt
? htab
->elf
.splt
: htab
->elf
.iplt
;
5988 bfd_put_64 (output_bfd
, (plt
->output_section
->vma
5989 + plt
->output_offset
5991 htab
->elf
.sgot
->contents
+ h
->got
.offset
);
5995 else if (bfd_link_pic (info
)
5996 && SYMBOL_REFERENCES_LOCAL (info
, h
))
5998 if (!h
->def_regular
)
6000 BFD_ASSERT((h
->got
.offset
& 1) != 0);
6001 rela
.r_info
= htab
->r_info (0, R_X86_64_RELATIVE
);
6002 rela
.r_addend
= (h
->root
.u
.def
.value
6003 + h
->root
.u
.def
.section
->output_section
->vma
6004 + h
->root
.u
.def
.section
->output_offset
);
6008 BFD_ASSERT((h
->got
.offset
& 1) == 0);
6010 bfd_put_64 (output_bfd
, (bfd_vma
) 0,
6011 htab
->elf
.sgot
->contents
+ h
->got
.offset
);
6012 rela
.r_info
= htab
->r_info (h
->dynindx
, R_X86_64_GLOB_DAT
);
6016 elf_append_rela (output_bfd
, relgot
, &rela
);
6021 Elf_Internal_Rela rela
;
6023 /* This symbol needs a copy reloc. Set it up. */
6025 if (h
->dynindx
== -1
6026 || (h
->root
.type
!= bfd_link_hash_defined
6027 && h
->root
.type
!= bfd_link_hash_defweak
)
6028 || htab
->srelbss
== NULL
)
6031 rela
.r_offset
= (h
->root
.u
.def
.value
6032 + h
->root
.u
.def
.section
->output_section
->vma
6033 + h
->root
.u
.def
.section
->output_offset
);
6034 rela
.r_info
= htab
->r_info (h
->dynindx
, R_X86_64_COPY
);
6036 elf_append_rela (output_bfd
, htab
->srelbss
, &rela
);
6042 /* Finish up local dynamic symbol handling. We set the contents of
6043 various dynamic sections here. */
6046 elf_x86_64_finish_local_dynamic_symbol (void **slot
, void *inf
)
6048 struct elf_link_hash_entry
*h
6049 = (struct elf_link_hash_entry
*) *slot
;
6050 struct bfd_link_info
*info
6051 = (struct bfd_link_info
*) inf
;
6053 return elf_x86_64_finish_dynamic_symbol (info
->output_bfd
,
6057 /* Finish up undefined weak symbol handling in PIE. Fill its PLT entry
6058 here since undefined weak symbol may not be dynamic and may not be
6059 called for elf_x86_64_finish_dynamic_symbol. */
6062 elf_x86_64_pie_finish_undefweak_symbol (struct bfd_hash_entry
*bh
,
6065 struct elf_link_hash_entry
*h
= (struct elf_link_hash_entry
*) bh
;
6066 struct bfd_link_info
*info
= (struct bfd_link_info
*) inf
;
6068 if (h
->root
.type
!= bfd_link_hash_undefweak
6069 || h
->dynindx
!= -1)
6072 return elf_x86_64_finish_dynamic_symbol (info
->output_bfd
,
6076 /* Used to decide how to sort relocs in an optimal manner for the
6077 dynamic linker, before writing them out. */
6079 static enum elf_reloc_type_class
6080 elf_x86_64_reloc_type_class (const struct bfd_link_info
*info
,
6081 const asection
*rel_sec ATTRIBUTE_UNUSED
,
6082 const Elf_Internal_Rela
*rela
)
6084 bfd
*abfd
= info
->output_bfd
;
6085 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6086 struct elf_x86_64_link_hash_table
*htab
= elf_x86_64_hash_table (info
);
6088 if (htab
->elf
.dynsym
!= NULL
6089 && htab
->elf
.dynsym
->contents
!= NULL
)
6091 /* Check relocation against STT_GNU_IFUNC symbol if there are
6093 unsigned long r_symndx
= htab
->r_sym (rela
->r_info
);
6094 if (r_symndx
!= STN_UNDEF
)
6096 Elf_Internal_Sym sym
;
6097 if (!bed
->s
->swap_symbol_in (abfd
,
6098 (htab
->elf
.dynsym
->contents
6099 + r_symndx
* bed
->s
->sizeof_sym
),
6103 if (ELF_ST_TYPE (sym
.st_info
) == STT_GNU_IFUNC
)
6104 return reloc_class_ifunc
;
6108 switch ((int) ELF32_R_TYPE (rela
->r_info
))
6110 case R_X86_64_IRELATIVE
:
6111 return reloc_class_ifunc
;
6112 case R_X86_64_RELATIVE
:
6113 case R_X86_64_RELATIVE64
:
6114 return reloc_class_relative
;
6115 case R_X86_64_JUMP_SLOT
:
6116 return reloc_class_plt
;
6118 return reloc_class_copy
;
6120 return reloc_class_normal
;
6124 /* Finish up the dynamic sections. */
6127 elf_x86_64_finish_dynamic_sections (bfd
*output_bfd
,
6128 struct bfd_link_info
*info
)
6130 struct elf_x86_64_link_hash_table
*htab
;
6133 const struct elf_x86_64_backend_data
*abed
;
6135 htab
= elf_x86_64_hash_table (info
);
6139 /* Use MPX backend data in case of BND relocation. Use .plt_bnd
6140 section only if there is .plt section. */
6141 abed
= (htab
->elf
.splt
!= NULL
&& htab
->plt_bnd
!= NULL
6142 ? &elf_x86_64_bnd_arch_bed
6143 : get_elf_x86_64_backend_data (output_bfd
));
6145 dynobj
= htab
->elf
.dynobj
;
6146 sdyn
= bfd_get_linker_section (dynobj
, ".dynamic");
6148 if (htab
->elf
.dynamic_sections_created
)
6150 bfd_byte
*dyncon
, *dynconend
;
6151 const struct elf_backend_data
*bed
;
6152 bfd_size_type sizeof_dyn
;
6154 if (sdyn
== NULL
|| htab
->elf
.sgot
== NULL
)
6157 bed
= get_elf_backend_data (dynobj
);
6158 sizeof_dyn
= bed
->s
->sizeof_dyn
;
6159 dyncon
= sdyn
->contents
;
6160 dynconend
= sdyn
->contents
+ sdyn
->size
;
6161 for (; dyncon
< dynconend
; dyncon
+= sizeof_dyn
)
6163 Elf_Internal_Dyn dyn
;
6166 (*bed
->s
->swap_dyn_in
) (dynobj
, dyncon
, &dyn
);
6174 s
= htab
->elf
.sgotplt
;
6175 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
6179 dyn
.d_un
.d_ptr
= htab
->elf
.srelplt
->output_section
->vma
;
6183 s
= htab
->elf
.srelplt
->output_section
;
6184 dyn
.d_un
.d_val
= s
->size
;
6188 /* The procedure linkage table relocs (DT_JMPREL) should
6189 not be included in the overall relocs (DT_RELA).
6190 Therefore, we override the DT_RELASZ entry here to
6191 make it not include the JMPREL relocs. Since the
6192 linker script arranges for .rela.plt to follow all
6193 other relocation sections, we don't have to worry
6194 about changing the DT_RELA entry. */
6195 if (htab
->elf
.srelplt
!= NULL
)
6197 s
= htab
->elf
.srelplt
->output_section
;
6198 dyn
.d_un
.d_val
-= s
->size
;
6202 case DT_TLSDESC_PLT
:
6204 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
6205 + htab
->tlsdesc_plt
;
6208 case DT_TLSDESC_GOT
:
6210 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
6211 + htab
->tlsdesc_got
;
6215 (*bed
->s
->swap_dyn_out
) (output_bfd
, &dyn
, dyncon
);
6218 /* Fill in the special first entry in the procedure linkage table. */
6219 if (htab
->elf
.splt
&& htab
->elf
.splt
->size
> 0)
6221 /* Fill in the first entry in the procedure linkage table. */
6222 memcpy (htab
->elf
.splt
->contents
,
6223 abed
->plt0_entry
, abed
->plt_entry_size
);
6224 /* Add offset for pushq GOT+8(%rip), since the instruction
6225 uses 6 bytes subtract this value. */
6226 bfd_put_32 (output_bfd
,
6227 (htab
->elf
.sgotplt
->output_section
->vma
6228 + htab
->elf
.sgotplt
->output_offset
6230 - htab
->elf
.splt
->output_section
->vma
6231 - htab
->elf
.splt
->output_offset
6233 htab
->elf
.splt
->contents
+ abed
->plt0_got1_offset
);
6234 /* Add offset for the PC-relative instruction accessing GOT+16,
6235 subtracting the offset to the end of that instruction. */
6236 bfd_put_32 (output_bfd
,
6237 (htab
->elf
.sgotplt
->output_section
->vma
6238 + htab
->elf
.sgotplt
->output_offset
6240 - htab
->elf
.splt
->output_section
->vma
6241 - htab
->elf
.splt
->output_offset
6242 - abed
->plt0_got2_insn_end
),
6243 htab
->elf
.splt
->contents
+ abed
->plt0_got2_offset
);
6245 elf_section_data (htab
->elf
.splt
->output_section
)
6246 ->this_hdr
.sh_entsize
= abed
->plt_entry_size
;
6248 if (htab
->tlsdesc_plt
)
6250 bfd_put_64 (output_bfd
, (bfd_vma
) 0,
6251 htab
->elf
.sgot
->contents
+ htab
->tlsdesc_got
);
6253 memcpy (htab
->elf
.splt
->contents
+ htab
->tlsdesc_plt
,
6254 abed
->plt0_entry
, abed
->plt_entry_size
);
6256 /* Add offset for pushq GOT+8(%rip), since the
6257 instruction uses 6 bytes subtract this value. */
6258 bfd_put_32 (output_bfd
,
6259 (htab
->elf
.sgotplt
->output_section
->vma
6260 + htab
->elf
.sgotplt
->output_offset
6262 - htab
->elf
.splt
->output_section
->vma
6263 - htab
->elf
.splt
->output_offset
6266 htab
->elf
.splt
->contents
6267 + htab
->tlsdesc_plt
+ abed
->plt0_got1_offset
);
6268 /* Add offset for the PC-relative instruction accessing GOT+TDG,
6269 where TGD stands for htab->tlsdesc_got, subtracting the offset
6270 to the end of that instruction. */
6271 bfd_put_32 (output_bfd
,
6272 (htab
->elf
.sgot
->output_section
->vma
6273 + htab
->elf
.sgot
->output_offset
6275 - htab
->elf
.splt
->output_section
->vma
6276 - htab
->elf
.splt
->output_offset
6278 - abed
->plt0_got2_insn_end
),
6279 htab
->elf
.splt
->contents
6280 + htab
->tlsdesc_plt
+ abed
->plt0_got2_offset
);
6285 if (htab
->plt_bnd
!= NULL
)
6286 elf_section_data (htab
->plt_bnd
->output_section
)
6287 ->this_hdr
.sh_entsize
= sizeof (elf_x86_64_bnd_plt2_entry
);
6289 if (htab
->elf
.sgotplt
)
6291 if (bfd_is_abs_section (htab
->elf
.sgotplt
->output_section
))
6294 (_("discarded output section: `%A'"), htab
->elf
.sgotplt
);
6298 /* Fill in the first three entries in the global offset table. */
6299 if (htab
->elf
.sgotplt
->size
> 0)
6301 /* Set the first entry in the global offset table to the address of
6302 the dynamic section. */
6304 bfd_put_64 (output_bfd
, (bfd_vma
) 0, htab
->elf
.sgotplt
->contents
);
6306 bfd_put_64 (output_bfd
,
6307 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
6308 htab
->elf
.sgotplt
->contents
);
6309 /* Write GOT[1] and GOT[2], needed for the dynamic linker. */
6310 bfd_put_64 (output_bfd
, (bfd_vma
) 0, htab
->elf
.sgotplt
->contents
+ GOT_ENTRY_SIZE
);
6311 bfd_put_64 (output_bfd
, (bfd_vma
) 0, htab
->elf
.sgotplt
->contents
+ GOT_ENTRY_SIZE
*2);
6314 elf_section_data (htab
->elf
.sgotplt
->output_section
)->this_hdr
.sh_entsize
=
6318 /* Adjust .eh_frame for .plt section. */
6319 if (htab
->plt_eh_frame
!= NULL
6320 && htab
->plt_eh_frame
->contents
!= NULL
)
6322 if (htab
->elf
.splt
!= NULL
6323 && htab
->elf
.splt
->size
!= 0
6324 && (htab
->elf
.splt
->flags
& SEC_EXCLUDE
) == 0
6325 && htab
->elf
.splt
->output_section
!= NULL
6326 && htab
->plt_eh_frame
->output_section
!= NULL
)
6328 bfd_vma plt_start
= htab
->elf
.splt
->output_section
->vma
;
6329 bfd_vma eh_frame_start
= htab
->plt_eh_frame
->output_section
->vma
6330 + htab
->plt_eh_frame
->output_offset
6331 + PLT_FDE_START_OFFSET
;
6332 bfd_put_signed_32 (dynobj
, plt_start
- eh_frame_start
,
6333 htab
->plt_eh_frame
->contents
6334 + PLT_FDE_START_OFFSET
);
6336 if (htab
->plt_eh_frame
->sec_info_type
== SEC_INFO_TYPE_EH_FRAME
)
6338 if (! _bfd_elf_write_section_eh_frame (output_bfd
, info
,
6340 htab
->plt_eh_frame
->contents
))
6345 if (htab
->elf
.sgot
&& htab
->elf
.sgot
->size
> 0)
6346 elf_section_data (htab
->elf
.sgot
->output_section
)->this_hdr
.sh_entsize
6349 /* Fill PLT entries for undefined weak symbols in PIE. */
6350 if (bfd_link_pie (info
))
6351 bfd_hash_traverse (&info
->hash
->table
,
6352 elf_x86_64_pie_finish_undefweak_symbol
,
6358 /* Fill PLT/GOT entries and allocate dynamic relocations for local
6359 STT_GNU_IFUNC symbols, which aren't in the ELF linker hash table.
6360 It has to be done before elf_link_sort_relocs is called so that
6361 dynamic relocations are properly sorted. */
6364 elf_x86_64_output_arch_local_syms
6365 (bfd
*output_bfd ATTRIBUTE_UNUSED
,
6366 struct bfd_link_info
*info
,
6367 void *flaginfo ATTRIBUTE_UNUSED
,
6368 int (*func
) (void *, const char *,
6371 struct elf_link_hash_entry
*) ATTRIBUTE_UNUSED
)
6373 struct elf_x86_64_link_hash_table
*htab
= elf_x86_64_hash_table (info
);
6377 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
6378 htab_traverse (htab
->loc_hash_table
,
6379 elf_x86_64_finish_local_dynamic_symbol
,
6385 /* Return an array of PLT entry symbol values. */
6388 elf_x86_64_get_plt_sym_val (bfd
*abfd
, asymbol
**dynsyms
, asection
*plt
,
6391 bfd_boolean (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bfd_boolean
);
6394 bfd_vma
*plt_sym_val
;
6396 bfd_byte
*plt_contents
;
6397 const struct elf_x86_64_backend_data
*bed
;
6398 Elf_Internal_Shdr
*hdr
;
6401 /* Get the .plt section contents. PLT passed down may point to the
6402 .plt.bnd section. Make sure that PLT always points to the .plt
6404 plt_bnd
= bfd_get_section_by_name (abfd
, ".plt.bnd");
6409 plt
= bfd_get_section_by_name (abfd
, ".plt");
6412 bed
= &elf_x86_64_bnd_arch_bed
;
6415 bed
= get_elf_x86_64_backend_data (abfd
);
6417 plt_contents
= (bfd_byte
*) bfd_malloc (plt
->size
);
6418 if (plt_contents
== NULL
)
6420 if (!bfd_get_section_contents (abfd
, (asection
*) plt
,
6421 plt_contents
, 0, plt
->size
))
6424 free (plt_contents
);
6428 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
6429 if (! (*slurp_relocs
) (abfd
, relplt
, dynsyms
, TRUE
))
6432 hdr
= &elf_section_data (relplt
)->this_hdr
;
6433 count
= relplt
->size
/ hdr
->sh_entsize
;
6435 plt_sym_val
= (bfd_vma
*) bfd_malloc (sizeof (bfd_vma
) * count
);
6436 if (plt_sym_val
== NULL
)
6439 for (i
= 0; i
< count
; i
++)
6440 plt_sym_val
[i
] = -1;
6442 plt_offset
= bed
->plt_entry_size
;
6443 p
= relplt
->relocation
;
6444 for (i
= 0; i
< count
; i
++, p
++)
6448 /* Skip unknown relocation. */
6449 if (p
->howto
== NULL
)
6452 if (p
->howto
->type
!= R_X86_64_JUMP_SLOT
6453 && p
->howto
->type
!= R_X86_64_IRELATIVE
)
6456 reloc_index
= H_GET_32 (abfd
, (plt_contents
+ plt_offset
6457 + bed
->plt_reloc_offset
));
6458 if (reloc_index
< count
)
6462 /* This is the index in .plt section. */
6463 long plt_index
= plt_offset
/ bed
->plt_entry_size
;
6464 /* Store VMA + the offset in .plt.bnd section. */
6465 plt_sym_val
[reloc_index
] =
6467 + (plt_index
- 1) * sizeof (elf_x86_64_legacy_plt2_entry
));
6470 plt_sym_val
[reloc_index
] = plt
->vma
+ plt_offset
;
6472 plt_offset
+= bed
->plt_entry_size
;
6474 /* PR binutils/18437: Skip extra relocations in the .rela.plt
6476 if (plt_offset
>= plt
->size
)
6480 free (plt_contents
);
6485 /* Similar to _bfd_elf_get_synthetic_symtab, with .plt.bnd section
6489 elf_x86_64_get_synthetic_symtab (bfd
*abfd
,
6496 /* Pass the .plt.bnd section to _bfd_elf_ifunc_get_synthetic_symtab
6497 as PLT if it exists. */
6498 asection
*plt
= bfd_get_section_by_name (abfd
, ".plt.bnd");
6500 plt
= bfd_get_section_by_name (abfd
, ".plt");
6501 return _bfd_elf_ifunc_get_synthetic_symtab (abfd
, symcount
, syms
,
6502 dynsymcount
, dynsyms
, ret
,
6504 elf_x86_64_get_plt_sym_val
);
6507 /* Handle an x86-64 specific section when reading an object file. This
6508 is called when elfcode.h finds a section with an unknown type. */
6511 elf_x86_64_section_from_shdr (bfd
*abfd
, Elf_Internal_Shdr
*hdr
,
6512 const char *name
, int shindex
)
6514 if (hdr
->sh_type
!= SHT_X86_64_UNWIND
)
6517 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
6523 /* Hook called by the linker routine which adds symbols from an object
6524 file. We use it to put SHN_X86_64_LCOMMON items in .lbss, instead
6528 elf_x86_64_add_symbol_hook (bfd
*abfd
,
6529 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
6530 Elf_Internal_Sym
*sym
,
6531 const char **namep ATTRIBUTE_UNUSED
,
6532 flagword
*flagsp ATTRIBUTE_UNUSED
,
6538 switch (sym
->st_shndx
)
6540 case SHN_X86_64_LCOMMON
:
6541 lcomm
= bfd_get_section_by_name (abfd
, "LARGE_COMMON");
6544 lcomm
= bfd_make_section_with_flags (abfd
,
6548 | SEC_LINKER_CREATED
));
6551 elf_section_flags (lcomm
) |= SHF_X86_64_LARGE
;
6554 *valp
= sym
->st_size
;
6562 /* Given a BFD section, try to locate the corresponding ELF section
6566 elf_x86_64_elf_section_from_bfd_section (bfd
*abfd ATTRIBUTE_UNUSED
,
6567 asection
*sec
, int *index_return
)
6569 if (sec
== &_bfd_elf_large_com_section
)
6571 *index_return
= SHN_X86_64_LCOMMON
;
6577 /* Process a symbol. */
6580 elf_x86_64_symbol_processing (bfd
*abfd ATTRIBUTE_UNUSED
,
6583 elf_symbol_type
*elfsym
= (elf_symbol_type
*) asym
;
6585 switch (elfsym
->internal_elf_sym
.st_shndx
)
6587 case SHN_X86_64_LCOMMON
:
6588 asym
->section
= &_bfd_elf_large_com_section
;
6589 asym
->value
= elfsym
->internal_elf_sym
.st_size
;
6590 /* Common symbol doesn't set BSF_GLOBAL. */
6591 asym
->flags
&= ~BSF_GLOBAL
;
6597 elf_x86_64_common_definition (Elf_Internal_Sym
*sym
)
6599 return (sym
->st_shndx
== SHN_COMMON
6600 || sym
->st_shndx
== SHN_X86_64_LCOMMON
);
6604 elf_x86_64_common_section_index (asection
*sec
)
6606 if ((elf_section_flags (sec
) & SHF_X86_64_LARGE
) == 0)
6609 return SHN_X86_64_LCOMMON
;
6613 elf_x86_64_common_section (asection
*sec
)
6615 if ((elf_section_flags (sec
) & SHF_X86_64_LARGE
) == 0)
6616 return bfd_com_section_ptr
;
6618 return &_bfd_elf_large_com_section
;
6622 elf_x86_64_merge_symbol (struct elf_link_hash_entry
*h
,
6623 const Elf_Internal_Sym
*sym
,
6628 const asection
*oldsec
)
6630 /* A normal common symbol and a large common symbol result in a
6631 normal common symbol. We turn the large common symbol into a
6634 && h
->root
.type
== bfd_link_hash_common
6636 && bfd_is_com_section (*psec
)
6639 if (sym
->st_shndx
== SHN_COMMON
6640 && (elf_section_flags (oldsec
) & SHF_X86_64_LARGE
) != 0)
6642 h
->root
.u
.c
.p
->section
6643 = bfd_make_section_old_way (oldbfd
, "COMMON");
6644 h
->root
.u
.c
.p
->section
->flags
= SEC_ALLOC
;
6646 else if (sym
->st_shndx
== SHN_X86_64_LCOMMON
6647 && (elf_section_flags (oldsec
) & SHF_X86_64_LARGE
) == 0)
6648 *psec
= bfd_com_section_ptr
;
6655 elf_x86_64_additional_program_headers (bfd
*abfd
,
6656 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
6661 /* Check to see if we need a large readonly segment. */
6662 s
= bfd_get_section_by_name (abfd
, ".lrodata");
6663 if (s
&& (s
->flags
& SEC_LOAD
))
6666 /* Check to see if we need a large data segment. Since .lbss sections
6667 is placed right after the .bss section, there should be no need for
6668 a large data segment just because of .lbss. */
6669 s
= bfd_get_section_by_name (abfd
, ".ldata");
6670 if (s
&& (s
->flags
& SEC_LOAD
))
6676 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
6679 elf_x86_64_hash_symbol (struct elf_link_hash_entry
*h
)
6681 if (h
->plt
.offset
!= (bfd_vma
) -1
6683 && !h
->pointer_equality_needed
)
6686 return _bfd_elf_hash_symbol (h
);
6689 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT. */
6692 elf_x86_64_relocs_compatible (const bfd_target
*input
,
6693 const bfd_target
*output
)
6695 return ((xvec_get_elf_backend_data (input
)->s
->elfclass
6696 == xvec_get_elf_backend_data (output
)->s
->elfclass
)
6697 && _bfd_elf_relocs_compatible (input
, output
));
6700 static const struct bfd_elf_special_section
6701 elf_x86_64_special_sections
[]=
6703 { STRING_COMMA_LEN (".gnu.linkonce.lb"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_X86_64_LARGE
},
6704 { STRING_COMMA_LEN (".gnu.linkonce.lr"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_X86_64_LARGE
},
6705 { STRING_COMMA_LEN (".gnu.linkonce.lt"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
+ SHF_X86_64_LARGE
},
6706 { STRING_COMMA_LEN (".lbss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_X86_64_LARGE
},
6707 { STRING_COMMA_LEN (".ldata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_X86_64_LARGE
},
6708 { STRING_COMMA_LEN (".lrodata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_X86_64_LARGE
},
6709 { NULL
, 0, 0, 0, 0 }
6712 #define TARGET_LITTLE_SYM x86_64_elf64_vec
6713 #define TARGET_LITTLE_NAME "elf64-x86-64"
6714 #define ELF_ARCH bfd_arch_i386
6715 #define ELF_TARGET_ID X86_64_ELF_DATA
6716 #define ELF_MACHINE_CODE EM_X86_64
6717 #define ELF_MAXPAGESIZE 0x200000
6718 #define ELF_MINPAGESIZE 0x1000
6719 #define ELF_COMMONPAGESIZE 0x1000
6721 #define elf_backend_can_gc_sections 1
6722 #define elf_backend_can_refcount 1
6723 #define elf_backend_want_got_plt 1
6724 #define elf_backend_plt_readonly 1
6725 #define elf_backend_want_plt_sym 0
6726 #define elf_backend_got_header_size (GOT_ENTRY_SIZE*3)
6727 #define elf_backend_rela_normal 1
6728 #define elf_backend_plt_alignment 4
6729 #define elf_backend_extern_protected_data 1
6730 #define elf_backend_caches_rawsize 1
6732 #define elf_info_to_howto elf_x86_64_info_to_howto
6734 #define bfd_elf64_bfd_link_hash_table_create \
6735 elf_x86_64_link_hash_table_create
6736 #define bfd_elf64_bfd_reloc_type_lookup elf_x86_64_reloc_type_lookup
6737 #define bfd_elf64_bfd_reloc_name_lookup \
6738 elf_x86_64_reloc_name_lookup
6740 #define elf_backend_adjust_dynamic_symbol elf_x86_64_adjust_dynamic_symbol
6741 #define elf_backend_relocs_compatible elf_x86_64_relocs_compatible
6742 #define elf_backend_check_relocs elf_x86_64_check_relocs
6743 #define elf_backend_copy_indirect_symbol elf_x86_64_copy_indirect_symbol
6744 #define elf_backend_create_dynamic_sections elf_x86_64_create_dynamic_sections
6745 #define elf_backend_finish_dynamic_sections elf_x86_64_finish_dynamic_sections
6746 #define elf_backend_finish_dynamic_symbol elf_x86_64_finish_dynamic_symbol
6747 #define elf_backend_output_arch_local_syms elf_x86_64_output_arch_local_syms
6748 #define elf_backend_gc_mark_hook elf_x86_64_gc_mark_hook
6749 #define elf_backend_grok_prstatus elf_x86_64_grok_prstatus
6750 #define elf_backend_grok_psinfo elf_x86_64_grok_psinfo
6752 #define elf_backend_write_core_note elf_x86_64_write_core_note
6754 #define elf_backend_reloc_type_class elf_x86_64_reloc_type_class
6755 #define elf_backend_relocate_section elf_x86_64_relocate_section
6756 #define elf_backend_size_dynamic_sections elf_x86_64_size_dynamic_sections
6757 #define elf_backend_always_size_sections elf_x86_64_always_size_sections
6758 #define elf_backend_init_index_section _bfd_elf_init_1_index_section
6759 #define elf_backend_object_p elf64_x86_64_elf_object_p
6760 #define bfd_elf64_mkobject elf_x86_64_mkobject
6761 #define bfd_elf64_get_synthetic_symtab elf_x86_64_get_synthetic_symtab
6763 #define elf_backend_section_from_shdr \
6764 elf_x86_64_section_from_shdr
6766 #define elf_backend_section_from_bfd_section \
6767 elf_x86_64_elf_section_from_bfd_section
6768 #define elf_backend_add_symbol_hook \
6769 elf_x86_64_add_symbol_hook
6770 #define elf_backend_symbol_processing \
6771 elf_x86_64_symbol_processing
6772 #define elf_backend_common_section_index \
6773 elf_x86_64_common_section_index
6774 #define elf_backend_common_section \
6775 elf_x86_64_common_section
6776 #define elf_backend_common_definition \
6777 elf_x86_64_common_definition
6778 #define elf_backend_merge_symbol \
6779 elf_x86_64_merge_symbol
6780 #define elf_backend_special_sections \
6781 elf_x86_64_special_sections
6782 #define elf_backend_additional_program_headers \
6783 elf_x86_64_additional_program_headers
6784 #define elf_backend_hash_symbol \
6785 elf_x86_64_hash_symbol
6786 #define elf_backend_omit_section_dynsym \
6787 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
6788 #define elf_backend_fixup_symbol \
6789 elf_x86_64_fixup_symbol
6791 #include "elf64-target.h"
6793 /* CloudABI support. */
6795 #undef TARGET_LITTLE_SYM
6796 #define TARGET_LITTLE_SYM x86_64_elf64_cloudabi_vec
6797 #undef TARGET_LITTLE_NAME
6798 #define TARGET_LITTLE_NAME "elf64-x86-64-cloudabi"
6801 #define ELF_OSABI ELFOSABI_CLOUDABI
6804 #define elf64_bed elf64_x86_64_cloudabi_bed
6806 #include "elf64-target.h"
6808 /* FreeBSD support. */
6810 #undef TARGET_LITTLE_SYM
6811 #define TARGET_LITTLE_SYM x86_64_elf64_fbsd_vec
6812 #undef TARGET_LITTLE_NAME
6813 #define TARGET_LITTLE_NAME "elf64-x86-64-freebsd"
6816 #define ELF_OSABI ELFOSABI_FREEBSD
6819 #define elf64_bed elf64_x86_64_fbsd_bed
6821 #include "elf64-target.h"
6823 /* Solaris 2 support. */
6825 #undef TARGET_LITTLE_SYM
6826 #define TARGET_LITTLE_SYM x86_64_elf64_sol2_vec
6827 #undef TARGET_LITTLE_NAME
6828 #define TARGET_LITTLE_NAME "elf64-x86-64-sol2"
6830 /* Restore default: we cannot use ELFOSABI_SOLARIS, otherwise ELFOSABI_NONE
6831 objects won't be recognized. */
6835 #define elf64_bed elf64_x86_64_sol2_bed
6837 /* The 64-bit static TLS arena size is rounded to the nearest 16-byte
6839 #undef elf_backend_static_tls_alignment
6840 #define elf_backend_static_tls_alignment 16
6842 /* The Solaris 2 ABI requires a plt symbol on all platforms.
6844 Cf. Linker and Libraries Guide, Ch. 2, Link-Editor, Generating the Output
6846 #undef elf_backend_want_plt_sym
6847 #define elf_backend_want_plt_sym 1
6849 #undef elf_backend_strtab_flags
6850 #define elf_backend_strtab_flags SHF_STRINGS
6853 elf64_x86_64_copy_solaris_special_section_fields (const bfd
*ibfd ATTRIBUTE_UNUSED
,
6854 bfd
*obfd ATTRIBUTE_UNUSED
,
6855 const Elf_Internal_Shdr
*isection ATTRIBUTE_UNUSED
,
6856 Elf_Internal_Shdr
*osection ATTRIBUTE_UNUSED
)
6858 /* PR 19938: FIXME: Need to add code for setting the sh_info
6859 and sh_link fields of Solaris specific section types. */
6863 #undef elf_backend_copy_special_section_fields
6864 #define elf_backend_copy_special_section_fields elf64_x86_64_copy_solaris_special_section_fields
6866 #include "elf64-target.h"
6868 /* Native Client support. */
6871 elf64_x86_64_nacl_elf_object_p (bfd
*abfd
)
6873 /* Set the right machine number for a NaCl x86-64 ELF64 file. */
6874 bfd_default_set_arch_mach (abfd
, bfd_arch_i386
, bfd_mach_x86_64_nacl
);
6878 #undef TARGET_LITTLE_SYM
6879 #define TARGET_LITTLE_SYM x86_64_elf64_nacl_vec
6880 #undef TARGET_LITTLE_NAME
6881 #define TARGET_LITTLE_NAME "elf64-x86-64-nacl"
6883 #define elf64_bed elf64_x86_64_nacl_bed
6885 #undef ELF_MAXPAGESIZE
6886 #undef ELF_MINPAGESIZE
6887 #undef ELF_COMMONPAGESIZE
6888 #define ELF_MAXPAGESIZE 0x10000
6889 #define ELF_MINPAGESIZE 0x10000
6890 #define ELF_COMMONPAGESIZE 0x10000
6892 /* Restore defaults. */
6894 #undef elf_backend_static_tls_alignment
6895 #undef elf_backend_want_plt_sym
6896 #define elf_backend_want_plt_sym 0
6897 #undef elf_backend_strtab_flags
6898 #undef elf_backend_copy_special_section_fields
6900 /* NaCl uses substantially different PLT entries for the same effects. */
6902 #undef elf_backend_plt_alignment
6903 #define elf_backend_plt_alignment 5
6904 #define NACL_PLT_ENTRY_SIZE 64
6905 #define NACLMASK 0xe0 /* 32-byte alignment mask. */
6907 static const bfd_byte elf_x86_64_nacl_plt0_entry
[NACL_PLT_ENTRY_SIZE
] =
6909 0xff, 0x35, 8, 0, 0, 0, /* pushq GOT+8(%rip) */
6910 0x4c, 0x8b, 0x1d, 16, 0, 0, 0, /* mov GOT+16(%rip), %r11 */
6911 0x41, 0x83, 0xe3, NACLMASK
, /* and $-32, %r11d */
6912 0x4d, 0x01, 0xfb, /* add %r15, %r11 */
6913 0x41, 0xff, 0xe3, /* jmpq *%r11 */
6915 /* 9-byte nop sequence to pad out to the next 32-byte boundary. */
6916 0x66, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw 0x0(%rax,%rax,1) */
6918 /* 32 bytes of nop to pad out to the standard size. */
6919 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data16 prefixes */
6920 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
6921 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data16 prefixes */
6922 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
6923 0x66, /* excess data16 prefix */
6927 static const bfd_byte elf_x86_64_nacl_plt_entry
[NACL_PLT_ENTRY_SIZE
] =
6929 0x4c, 0x8b, 0x1d, 0, 0, 0, 0, /* mov name@GOTPCREL(%rip),%r11 */
6930 0x41, 0x83, 0xe3, NACLMASK
, /* and $-32, %r11d */
6931 0x4d, 0x01, 0xfb, /* add %r15, %r11 */
6932 0x41, 0xff, 0xe3, /* jmpq *%r11 */
6934 /* 15-byte nop sequence to pad out to the next 32-byte boundary. */
6935 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data16 prefixes */
6936 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
6938 /* Lazy GOT entries point here (32-byte aligned). */
6939 0x68, /* pushq immediate */
6940 0, 0, 0, 0, /* replaced with index into relocation table. */
6941 0xe9, /* jmp relative */
6942 0, 0, 0, 0, /* replaced with offset to start of .plt0. */
6944 /* 22 bytes of nop to pad out to the standard size. */
6945 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data16 prefixes */
6946 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
6947 0x0f, 0x1f, 0x80, 0, 0, 0, 0, /* nopl 0x0(%rax) */
6950 /* .eh_frame covering the .plt section. */
6952 static const bfd_byte elf_x86_64_nacl_eh_frame_plt
[] =
6954 #if (PLT_CIE_LENGTH != 20 \
6955 || PLT_FDE_LENGTH != 36 \
6956 || PLT_FDE_START_OFFSET != 4 + PLT_CIE_LENGTH + 8 \
6957 || PLT_FDE_LEN_OFFSET != 4 + PLT_CIE_LENGTH + 12)
6958 # error "Need elf_x86_64_backend_data parameters for eh_frame_plt offsets!"
6960 PLT_CIE_LENGTH
, 0, 0, 0, /* CIE length */
6961 0, 0, 0, 0, /* CIE ID */
6962 1, /* CIE version */
6963 'z', 'R', 0, /* Augmentation string */
6964 1, /* Code alignment factor */
6965 0x78, /* Data alignment factor */
6966 16, /* Return address column */
6967 1, /* Augmentation size */
6968 DW_EH_PE_pcrel
| DW_EH_PE_sdata4
, /* FDE encoding */
6969 DW_CFA_def_cfa
, 7, 8, /* DW_CFA_def_cfa: r7 (rsp) ofs 8 */
6970 DW_CFA_offset
+ 16, 1, /* DW_CFA_offset: r16 (rip) at cfa-8 */
6971 DW_CFA_nop
, DW_CFA_nop
,
6973 PLT_FDE_LENGTH
, 0, 0, 0, /* FDE length */
6974 PLT_CIE_LENGTH
+ 8, 0, 0, 0,/* CIE pointer */
6975 0, 0, 0, 0, /* R_X86_64_PC32 .plt goes here */
6976 0, 0, 0, 0, /* .plt size goes here */
6977 0, /* Augmentation size */
6978 DW_CFA_def_cfa_offset
, 16, /* DW_CFA_def_cfa_offset: 16 */
6979 DW_CFA_advance_loc
+ 6, /* DW_CFA_advance_loc: 6 to __PLT__+6 */
6980 DW_CFA_def_cfa_offset
, 24, /* DW_CFA_def_cfa_offset: 24 */
6981 DW_CFA_advance_loc
+ 58, /* DW_CFA_advance_loc: 58 to __PLT__+64 */
6982 DW_CFA_def_cfa_expression
, /* DW_CFA_def_cfa_expression */
6983 13, /* Block length */
6984 DW_OP_breg7
, 8, /* DW_OP_breg7 (rsp): 8 */
6985 DW_OP_breg16
, 0, /* DW_OP_breg16 (rip): 0 */
6986 DW_OP_const1u
, 63, DW_OP_and
, DW_OP_const1u
, 37, DW_OP_ge
,
6987 DW_OP_lit3
, DW_OP_shl
, DW_OP_plus
,
6988 DW_CFA_nop
, DW_CFA_nop
6991 static const struct elf_x86_64_backend_data elf_x86_64_nacl_arch_bed
=
6993 elf_x86_64_nacl_plt0_entry
, /* plt0_entry */
6994 elf_x86_64_nacl_plt_entry
, /* plt_entry */
6995 NACL_PLT_ENTRY_SIZE
, /* plt_entry_size */
6996 2, /* plt0_got1_offset */
6997 9, /* plt0_got2_offset */
6998 13, /* plt0_got2_insn_end */
6999 3, /* plt_got_offset */
7000 33, /* plt_reloc_offset */
7001 38, /* plt_plt_offset */
7002 7, /* plt_got_insn_size */
7003 42, /* plt_plt_insn_end */
7004 32, /* plt_lazy_offset */
7005 elf_x86_64_nacl_eh_frame_plt
, /* eh_frame_plt */
7006 sizeof (elf_x86_64_nacl_eh_frame_plt
), /* eh_frame_plt_size */
7009 #undef elf_backend_arch_data
7010 #define elf_backend_arch_data &elf_x86_64_nacl_arch_bed
7012 #undef elf_backend_object_p
7013 #define elf_backend_object_p elf64_x86_64_nacl_elf_object_p
7014 #undef elf_backend_modify_segment_map
7015 #define elf_backend_modify_segment_map nacl_modify_segment_map
7016 #undef elf_backend_modify_program_headers
7017 #define elf_backend_modify_program_headers nacl_modify_program_headers
7018 #undef elf_backend_final_write_processing
7019 #define elf_backend_final_write_processing nacl_final_write_processing
7021 #include "elf64-target.h"
7023 /* Native Client x32 support. */
7026 elf32_x86_64_nacl_elf_object_p (bfd
*abfd
)
7028 /* Set the right machine number for a NaCl x86-64 ELF32 file. */
7029 bfd_default_set_arch_mach (abfd
, bfd_arch_i386
, bfd_mach_x64_32_nacl
);
7033 #undef TARGET_LITTLE_SYM
7034 #define TARGET_LITTLE_SYM x86_64_elf32_nacl_vec
7035 #undef TARGET_LITTLE_NAME
7036 #define TARGET_LITTLE_NAME "elf32-x86-64-nacl"
7038 #define elf32_bed elf32_x86_64_nacl_bed
7040 #define bfd_elf32_bfd_link_hash_table_create \
7041 elf_x86_64_link_hash_table_create
7042 #define bfd_elf32_bfd_reloc_type_lookup \
7043 elf_x86_64_reloc_type_lookup
7044 #define bfd_elf32_bfd_reloc_name_lookup \
7045 elf_x86_64_reloc_name_lookup
7046 #define bfd_elf32_mkobject \
7048 #define bfd_elf32_get_synthetic_symtab \
7049 elf_x86_64_get_synthetic_symtab
7051 #undef elf_backend_object_p
7052 #define elf_backend_object_p \
7053 elf32_x86_64_nacl_elf_object_p
7055 #undef elf_backend_bfd_from_remote_memory
7056 #define elf_backend_bfd_from_remote_memory \
7057 _bfd_elf32_bfd_from_remote_memory
7059 #undef elf_backend_size_info
7060 #define elf_backend_size_info \
7061 _bfd_elf32_size_info
7063 #include "elf32-target.h"
7065 /* Restore defaults. */
7066 #undef elf_backend_object_p
7067 #define elf_backend_object_p elf64_x86_64_elf_object_p
7068 #undef elf_backend_bfd_from_remote_memory
7069 #undef elf_backend_size_info
7070 #undef elf_backend_modify_segment_map
7071 #undef elf_backend_modify_program_headers
7072 #undef elf_backend_final_write_processing
7074 /* Intel L1OM support. */
7077 elf64_l1om_elf_object_p (bfd
*abfd
)
7079 /* Set the right machine number for an L1OM elf64 file. */
7080 bfd_default_set_arch_mach (abfd
, bfd_arch_l1om
, bfd_mach_l1om
);
7084 #undef TARGET_LITTLE_SYM
7085 #define TARGET_LITTLE_SYM l1om_elf64_vec
7086 #undef TARGET_LITTLE_NAME
7087 #define TARGET_LITTLE_NAME "elf64-l1om"
7089 #define ELF_ARCH bfd_arch_l1om
7091 #undef ELF_MACHINE_CODE
7092 #define ELF_MACHINE_CODE EM_L1OM
7097 #define elf64_bed elf64_l1om_bed
7099 #undef elf_backend_object_p
7100 #define elf_backend_object_p elf64_l1om_elf_object_p
7102 /* Restore defaults. */
7103 #undef ELF_MAXPAGESIZE
7104 #undef ELF_MINPAGESIZE
7105 #undef ELF_COMMONPAGESIZE
7106 #define ELF_MAXPAGESIZE 0x200000
7107 #define ELF_MINPAGESIZE 0x1000
7108 #define ELF_COMMONPAGESIZE 0x1000
7109 #undef elf_backend_plt_alignment
7110 #define elf_backend_plt_alignment 4
7111 #undef elf_backend_arch_data
7112 #define elf_backend_arch_data &elf_x86_64_arch_bed
7114 #include "elf64-target.h"
7116 /* FreeBSD L1OM support. */
7118 #undef TARGET_LITTLE_SYM
7119 #define TARGET_LITTLE_SYM l1om_elf64_fbsd_vec
7120 #undef TARGET_LITTLE_NAME
7121 #define TARGET_LITTLE_NAME "elf64-l1om-freebsd"
7124 #define ELF_OSABI ELFOSABI_FREEBSD
7127 #define elf64_bed elf64_l1om_fbsd_bed
7129 #include "elf64-target.h"
7131 /* Intel K1OM support. */
7134 elf64_k1om_elf_object_p (bfd
*abfd
)
7136 /* Set the right machine number for an K1OM elf64 file. */
7137 bfd_default_set_arch_mach (abfd
, bfd_arch_k1om
, bfd_mach_k1om
);
7141 #undef TARGET_LITTLE_SYM
7142 #define TARGET_LITTLE_SYM k1om_elf64_vec
7143 #undef TARGET_LITTLE_NAME
7144 #define TARGET_LITTLE_NAME "elf64-k1om"
7146 #define ELF_ARCH bfd_arch_k1om
7148 #undef ELF_MACHINE_CODE
7149 #define ELF_MACHINE_CODE EM_K1OM
7154 #define elf64_bed elf64_k1om_bed
7156 #undef elf_backend_object_p
7157 #define elf_backend_object_p elf64_k1om_elf_object_p
7159 #undef elf_backend_static_tls_alignment
7161 #undef elf_backend_want_plt_sym
7162 #define elf_backend_want_plt_sym 0
7164 #include "elf64-target.h"
7166 /* FreeBSD K1OM support. */
7168 #undef TARGET_LITTLE_SYM
7169 #define TARGET_LITTLE_SYM k1om_elf64_fbsd_vec
7170 #undef TARGET_LITTLE_NAME
7171 #define TARGET_LITTLE_NAME "elf64-k1om-freebsd"
7174 #define ELF_OSABI ELFOSABI_FREEBSD
7177 #define elf64_bed elf64_k1om_fbsd_bed
7179 #include "elf64-target.h"
7181 /* 32bit x86-64 support. */
7183 #undef TARGET_LITTLE_SYM
7184 #define TARGET_LITTLE_SYM x86_64_elf32_vec
7185 #undef TARGET_LITTLE_NAME
7186 #define TARGET_LITTLE_NAME "elf32-x86-64"
7190 #define ELF_ARCH bfd_arch_i386
7192 #undef ELF_MACHINE_CODE
7193 #define ELF_MACHINE_CODE EM_X86_64
7197 #undef elf_backend_object_p
7198 #define elf_backend_object_p \
7199 elf32_x86_64_elf_object_p
7201 #undef elf_backend_bfd_from_remote_memory
7202 #define elf_backend_bfd_from_remote_memory \
7203 _bfd_elf32_bfd_from_remote_memory
7205 #undef elf_backend_size_info
7206 #define elf_backend_size_info \
7207 _bfd_elf32_size_info
7209 #include "elf32-target.h"