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