]>
Commit | Line | Data |
---|---|---|
2e30d253 ILT |
1 | // x86_64.cc -- x86_64 target support for gold. |
2 | ||
b90efa5b | 3 | // Copyright (C) 2006-2015 Free Software Foundation, Inc. |
2e30d253 ILT |
4 | // Written by Ian Lance Taylor <[email protected]>. |
5 | ||
6 | // This file is part of gold. | |
7 | ||
8b105e34 ILT |
8 | // This program is free software; you can redistribute it and/or modify |
9 | // it under the terms of the GNU General Public License as published by | |
10 | // the Free Software Foundation; either version 3 of the License, or | |
2e30d253 ILT |
11 | // (at your option) any later version. |
12 | ||
8b105e34 ILT |
13 | // This program is distributed in the hope that it will be useful, |
14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | // GNU General Public License for more details. | |
17 | ||
18 | // You should have received a copy of the GNU General Public License | |
19 | // along with this program; if not, write to the Free Software | |
20 | // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
21 | // MA 02110-1301, USA. | |
2e30d253 ILT |
22 | |
23 | #include "gold.h" | |
24 | ||
25 | #include <cstring> | |
26 | ||
27 | #include "elfcpp.h" | |
07a60597 | 28 | #include "dwarf.h" |
2e30d253 ILT |
29 | #include "parameters.h" |
30 | #include "reloc.h" | |
31 | #include "x86_64.h" | |
32 | #include "object.h" | |
33 | #include "symtab.h" | |
34 | #include "layout.h" | |
35 | #include "output.h" | |
12c0daef | 36 | #include "copy-relocs.h" |
2e30d253 ILT |
37 | #include "target.h" |
38 | #include "target-reloc.h" | |
39 | #include "target-select.h" | |
e041f13d | 40 | #include "tls.h" |
36959681 | 41 | #include "freebsd.h" |
2e702c99 | 42 | #include "nacl.h" |
f345227a | 43 | #include "gc.h" |
21bb3914 | 44 | #include "icf.h" |
2e30d253 ILT |
45 | |
46 | namespace | |
47 | { | |
48 | ||
49 | using namespace gold; | |
50 | ||
57b2284c CC |
51 | // A class to handle the .got.plt section. |
52 | ||
53 | class Output_data_got_plt_x86_64 : public Output_section_data_build | |
54 | { | |
55 | public: | |
56 | Output_data_got_plt_x86_64(Layout* layout) | |
57 | : Output_section_data_build(8), | |
58 | layout_(layout) | |
59 | { } | |
60 | ||
61 | Output_data_got_plt_x86_64(Layout* layout, off_t data_size) | |
62 | : Output_section_data_build(data_size, 8), | |
63 | layout_(layout) | |
64 | { } | |
65 | ||
66 | protected: | |
67 | // Write out the PLT data. | |
68 | void | |
69 | do_write(Output_file*); | |
70 | ||
71 | // Write to a map file. | |
72 | void | |
73 | do_print_to_mapfile(Mapfile* mapfile) const | |
74 | { mapfile->print_output_data(this, "** GOT PLT"); } | |
75 | ||
76 | private: | |
77 | // A pointer to the Layout class, so that we can find the .dynamic | |
78 | // section when we write out the GOT PLT section. | |
79 | Layout* layout_; | |
80 | }; | |
81 | ||
7223e9ca | 82 | // A class to handle the PLT data. |
2e702c99 RM |
83 | // This is an abstract base class that handles most of the linker details |
84 | // but does not know the actual contents of PLT entries. The derived | |
85 | // classes below fill in those details. | |
7223e9ca | 86 | |
fc51264f | 87 | template<int size> |
7223e9ca ILT |
88 | class Output_data_plt_x86_64 : public Output_section_data |
89 | { | |
90 | public: | |
fc51264f | 91 | typedef Output_data_reloc<elfcpp::SHT_RELA, true, size, false> Reloc_section; |
7223e9ca | 92 | |
2e702c99 RM |
93 | Output_data_plt_x86_64(Layout* layout, uint64_t addralign, |
94 | Output_data_got<64, false>* got, | |
57b2284c | 95 | Output_data_got_plt_x86_64* got_plt, |
67181c72 | 96 | Output_data_space* got_irelative) |
57b2284c | 97 | : Output_section_data(addralign), tlsdesc_rel_(NULL), |
7d172687 ILT |
98 | irelative_rel_(NULL), got_(got), got_plt_(got_plt), |
99 | got_irelative_(got_irelative), count_(0), irelative_count_(0), | |
100 | tlsdesc_got_offset_(-1U), free_list_() | |
67181c72 ILT |
101 | { this->init(layout); } |
102 | ||
2e702c99 RM |
103 | Output_data_plt_x86_64(Layout* layout, uint64_t plt_entry_size, |
104 | Output_data_got<64, false>* got, | |
57b2284c | 105 | Output_data_got_plt_x86_64* got_plt, |
67181c72 | 106 | Output_data_space* got_irelative, |
4829d394 | 107 | unsigned int plt_count) |
2e702c99 RM |
108 | : Output_section_data((plt_count + 1) * plt_entry_size, |
109 | plt_entry_size, false), | |
57b2284c | 110 | tlsdesc_rel_(NULL), irelative_rel_(NULL), got_(got), |
7d172687 ILT |
111 | got_plt_(got_plt), got_irelative_(got_irelative), count_(plt_count), |
112 | irelative_count_(0), tlsdesc_got_offset_(-1U), free_list_() | |
4829d394 | 113 | { |
67181c72 | 114 | this->init(layout); |
4829d394 CC |
115 | |
116 | // Initialize the free list and reserve the first entry. | |
117 | this->free_list_.init((plt_count + 1) * plt_entry_size, false); | |
118 | this->free_list_.remove(0, plt_entry_size); | |
119 | } | |
120 | ||
121 | // Initialize the PLT section. | |
122 | void | |
67181c72 | 123 | init(Layout* layout); |
7223e9ca ILT |
124 | |
125 | // Add an entry to the PLT. | |
126 | void | |
67181c72 | 127 | add_entry(Symbol_table*, Layout*, Symbol* gsym); |
7223e9ca ILT |
128 | |
129 | // Add an entry to the PLT for a local STT_GNU_IFUNC symbol. | |
130 | unsigned int | |
67181c72 | 131 | add_local_ifunc_entry(Symbol_table* symtab, Layout*, |
fc51264f | 132 | Sized_relobj_file<size, false>* relobj, |
7223e9ca ILT |
133 | unsigned int local_sym_index); |
134 | ||
4829d394 CC |
135 | // Add the relocation for a PLT entry. |
136 | void | |
67181c72 ILT |
137 | add_relocation(Symbol_table*, Layout*, Symbol* gsym, |
138 | unsigned int got_offset); | |
4829d394 | 139 | |
7223e9ca ILT |
140 | // Add the reserved TLSDESC_PLT entry to the PLT. |
141 | void | |
142 | reserve_tlsdesc_entry(unsigned int got_offset) | |
143 | { this->tlsdesc_got_offset_ = got_offset; } | |
144 | ||
145 | // Return true if a TLSDESC_PLT entry has been reserved. | |
146 | bool | |
147 | has_tlsdesc_entry() const | |
148 | { return this->tlsdesc_got_offset_ != -1U; } | |
149 | ||
150 | // Return the GOT offset for the reserved TLSDESC_PLT entry. | |
151 | unsigned int | |
152 | get_tlsdesc_got_offset() const | |
153 | { return this->tlsdesc_got_offset_; } | |
154 | ||
155 | // Return the offset of the reserved TLSDESC_PLT entry. | |
156 | unsigned int | |
157 | get_tlsdesc_plt_offset() const | |
2e702c99 RM |
158 | { |
159 | return ((this->count_ + this->irelative_count_ + 1) | |
160 | * this->get_plt_entry_size()); | |
161 | } | |
7223e9ca ILT |
162 | |
163 | // Return the .rela.plt section data. | |
164 | Reloc_section* | |
165 | rela_plt() | |
166 | { return this->rel_; } | |
167 | ||
168 | // Return where the TLSDESC relocations should go. | |
169 | Reloc_section* | |
170 | rela_tlsdesc(Layout*); | |
171 | ||
67181c72 ILT |
172 | // Return where the IRELATIVE relocations should go in the PLT |
173 | // relocations. | |
174 | Reloc_section* | |
175 | rela_irelative(Symbol_table*, Layout*); | |
176 | ||
177 | // Return whether we created a section for IRELATIVE relocations. | |
178 | bool | |
179 | has_irelative_section() const | |
180 | { return this->irelative_rel_ != NULL; } | |
181 | ||
7223e9ca ILT |
182 | // Return the number of PLT entries. |
183 | unsigned int | |
184 | entry_count() const | |
67181c72 | 185 | { return this->count_ + this->irelative_count_; } |
7223e9ca ILT |
186 | |
187 | // Return the offset of the first non-reserved PLT entry. | |
2e702c99 | 188 | unsigned int |
7223e9ca | 189 | first_plt_entry_offset() |
2e702c99 | 190 | { return this->get_plt_entry_size(); } |
7223e9ca ILT |
191 | |
192 | // Return the size of a PLT entry. | |
2e702c99 RM |
193 | unsigned int |
194 | get_plt_entry_size() const | |
195 | { return this->do_get_plt_entry_size(); } | |
7223e9ca | 196 | |
4829d394 CC |
197 | // Reserve a slot in the PLT for an existing symbol in an incremental update. |
198 | void | |
199 | reserve_slot(unsigned int plt_index) | |
200 | { | |
2e702c99 RM |
201 | this->free_list_.remove((plt_index + 1) * this->get_plt_entry_size(), |
202 | (plt_index + 2) * this->get_plt_entry_size()); | |
4829d394 CC |
203 | } |
204 | ||
67181c72 ILT |
205 | // Return the PLT address to use for a global symbol. |
206 | uint64_t | |
207 | address_for_global(const Symbol*); | |
208 | ||
209 | // Return the PLT address to use for a local symbol. | |
210 | uint64_t | |
211 | address_for_local(const Relobj*, unsigned int symndx); | |
212 | ||
2e702c99 RM |
213 | // Add .eh_frame information for the PLT. |
214 | void | |
215 | add_eh_frame(Layout* layout) | |
216 | { this->do_add_eh_frame(layout); } | |
217 | ||
7223e9ca | 218 | protected: |
2e702c99 RM |
219 | // Fill in the first PLT entry. |
220 | void | |
221 | fill_first_plt_entry(unsigned char* pov, | |
222 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
223 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address) | |
224 | { this->do_fill_first_plt_entry(pov, got_address, plt_address); } | |
225 | ||
226 | // Fill in a normal PLT entry. Returns the offset into the entry that | |
227 | // should be the initial GOT slot value. | |
228 | unsigned int | |
229 | fill_plt_entry(unsigned char* pov, | |
230 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
231 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
232 | unsigned int got_offset, | |
233 | unsigned int plt_offset, | |
234 | unsigned int plt_index) | |
235 | { | |
236 | return this->do_fill_plt_entry(pov, got_address, plt_address, | |
237 | got_offset, plt_offset, plt_index); | |
238 | } | |
239 | ||
240 | // Fill in the reserved TLSDESC PLT entry. | |
241 | void | |
242 | fill_tlsdesc_entry(unsigned char* pov, | |
243 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
244 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
245 | typename elfcpp::Elf_types<size>::Elf_Addr got_base, | |
246 | unsigned int tlsdesc_got_offset, | |
247 | unsigned int plt_offset) | |
248 | { | |
249 | this->do_fill_tlsdesc_entry(pov, got_address, plt_address, got_base, | |
250 | tlsdesc_got_offset, plt_offset); | |
251 | } | |
252 | ||
253 | virtual unsigned int | |
254 | do_get_plt_entry_size() const = 0; | |
255 | ||
256 | virtual void | |
257 | do_fill_first_plt_entry(unsigned char* pov, | |
258 | typename elfcpp::Elf_types<size>::Elf_Addr got_addr, | |
259 | typename elfcpp::Elf_types<size>::Elf_Addr plt_addr) | |
260 | = 0; | |
261 | ||
262 | virtual unsigned int | |
263 | do_fill_plt_entry(unsigned char* pov, | |
264 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
265 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
266 | unsigned int got_offset, | |
267 | unsigned int plt_offset, | |
268 | unsigned int plt_index) = 0; | |
269 | ||
270 | virtual void | |
271 | do_fill_tlsdesc_entry(unsigned char* pov, | |
272 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
273 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
274 | typename elfcpp::Elf_types<size>::Elf_Addr got_base, | |
275 | unsigned int tlsdesc_got_offset, | |
276 | unsigned int plt_offset) = 0; | |
277 | ||
278 | virtual void | |
279 | do_add_eh_frame(Layout* layout) = 0; | |
280 | ||
7223e9ca ILT |
281 | void |
282 | do_adjust_output_section(Output_section* os); | |
283 | ||
284 | // Write to a map file. | |
285 | void | |
286 | do_print_to_mapfile(Mapfile* mapfile) const | |
287 | { mapfile->print_output_data(this, _("** PLT")); } | |
288 | ||
2e702c99 | 289 | // The CIE of the .eh_frame unwind information for the PLT. |
07a60597 | 290 | static const int plt_eh_frame_cie_size = 16; |
07a60597 | 291 | static const unsigned char plt_eh_frame_cie[plt_eh_frame_cie_size]; |
7223e9ca | 292 | |
2e702c99 | 293 | private: |
7223e9ca ILT |
294 | // Set the final size. |
295 | void | |
296 | set_final_data_size(); | |
297 | ||
298 | // Write out the PLT data. | |
299 | void | |
300 | do_write(Output_file*); | |
301 | ||
302 | // The reloc section. | |
303 | Reloc_section* rel_; | |
304 | // The TLSDESC relocs, if necessary. These must follow the regular | |
305 | // PLT relocs. | |
306 | Reloc_section* tlsdesc_rel_; | |
67181c72 ILT |
307 | // The IRELATIVE relocs, if necessary. These must follow the |
308 | // regular PLT relocations and the TLSDESC relocations. | |
309 | Reloc_section* irelative_rel_; | |
7223e9ca ILT |
310 | // The .got section. |
311 | Output_data_got<64, false>* got_; | |
312 | // The .got.plt section. | |
57b2284c | 313 | Output_data_got_plt_x86_64* got_plt_; |
67181c72 ILT |
314 | // The part of the .got.plt section used for IRELATIVE relocs. |
315 | Output_data_space* got_irelative_; | |
7223e9ca ILT |
316 | // The number of PLT entries. |
317 | unsigned int count_; | |
67181c72 ILT |
318 | // Number of PLT entries with R_X86_64_IRELATIVE relocs. These |
319 | // follow the regular PLT entries. | |
320 | unsigned int irelative_count_; | |
7223e9ca ILT |
321 | // Offset of the reserved TLSDESC_GOT entry when needed. |
322 | unsigned int tlsdesc_got_offset_; | |
4829d394 CC |
323 | // List of available regions within the section, for incremental |
324 | // update links. | |
325 | Free_list free_list_; | |
7223e9ca | 326 | }; |
2e30d253 | 327 | |
2e702c99 RM |
328 | template<int size> |
329 | class Output_data_plt_x86_64_standard : public Output_data_plt_x86_64<size> | |
330 | { | |
331 | public: | |
332 | Output_data_plt_x86_64_standard(Layout* layout, | |
333 | Output_data_got<64, false>* got, | |
57b2284c | 334 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
335 | Output_data_space* got_irelative) |
336 | : Output_data_plt_x86_64<size>(layout, plt_entry_size, | |
337 | got, got_plt, got_irelative) | |
338 | { } | |
339 | ||
340 | Output_data_plt_x86_64_standard(Layout* layout, | |
341 | Output_data_got<64, false>* got, | |
57b2284c | 342 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
343 | Output_data_space* got_irelative, |
344 | unsigned int plt_count) | |
345 | : Output_data_plt_x86_64<size>(layout, plt_entry_size, | |
346 | got, got_plt, got_irelative, | |
347 | plt_count) | |
348 | { } | |
349 | ||
350 | protected: | |
351 | virtual unsigned int | |
352 | do_get_plt_entry_size() const | |
353 | { return plt_entry_size; } | |
354 | ||
355 | virtual void | |
356 | do_add_eh_frame(Layout* layout) | |
357 | { | |
358 | layout->add_eh_frame_for_plt(this, | |
359 | this->plt_eh_frame_cie, | |
360 | this->plt_eh_frame_cie_size, | |
361 | plt_eh_frame_fde, | |
362 | plt_eh_frame_fde_size); | |
363 | } | |
364 | ||
365 | virtual void | |
366 | do_fill_first_plt_entry(unsigned char* pov, | |
367 | typename elfcpp::Elf_types<size>::Elf_Addr got_addr, | |
368 | typename elfcpp::Elf_types<size>::Elf_Addr plt_addr); | |
369 | ||
370 | virtual unsigned int | |
371 | do_fill_plt_entry(unsigned char* pov, | |
372 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
373 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
374 | unsigned int got_offset, | |
375 | unsigned int plt_offset, | |
376 | unsigned int plt_index); | |
377 | ||
378 | virtual void | |
379 | do_fill_tlsdesc_entry(unsigned char* pov, | |
380 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
381 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
382 | typename elfcpp::Elf_types<size>::Elf_Addr got_base, | |
383 | unsigned int tlsdesc_got_offset, | |
384 | unsigned int plt_offset); | |
385 | ||
386 | private: | |
387 | // The size of an entry in the PLT. | |
388 | static const int plt_entry_size = 16; | |
389 | ||
390 | // The first entry in the PLT. | |
391 | // From the AMD64 ABI: "Unlike Intel386 ABI, this ABI uses the same | |
392 | // procedure linkage table for both programs and shared objects." | |
393 | static const unsigned char first_plt_entry[plt_entry_size]; | |
394 | ||
395 | // Other entries in the PLT for an executable. | |
396 | static const unsigned char plt_entry[plt_entry_size]; | |
397 | ||
398 | // The reserved TLSDESC entry in the PLT for an executable. | |
399 | static const unsigned char tlsdesc_plt_entry[plt_entry_size]; | |
400 | ||
401 | // The .eh_frame unwind information for the PLT. | |
402 | static const int plt_eh_frame_fde_size = 32; | |
403 | static const unsigned char plt_eh_frame_fde[plt_eh_frame_fde_size]; | |
404 | }; | |
405 | ||
2e30d253 | 406 | // The x86_64 target class. |
d61c17ea ILT |
407 | // See the ABI at |
408 | // http://www.x86-64.org/documentation/abi.pdf | |
409 | // TLS info comes from | |
410 | // http://people.redhat.com/drepper/tls.pdf | |
0ffd9845 | 411 | // http://www.lsd.ic.unicamp.br/~oliva/writeups/TLS/RFC-TLSDESC-x86.txt |
2e30d253 | 412 | |
fc51264f L |
413 | template<int size> |
414 | class Target_x86_64 : public Sized_target<size, false> | |
2e30d253 ILT |
415 | { |
416 | public: | |
e822f2b1 ILT |
417 | // In the x86_64 ABI (p 68), it says "The AMD64 ABI architectures |
418 | // uses only Elf64_Rela relocation entries with explicit addends." | |
fc51264f | 419 | typedef Output_data_reloc<elfcpp::SHT_RELA, true, size, false> Reloc_section; |
2e30d253 | 420 | |
2e702c99 RM |
421 | Target_x86_64(const Target::Target_info* info = &x86_64_info) |
422 | : Sized_target<size, false>(info), | |
67181c72 ILT |
423 | got_(NULL), plt_(NULL), got_plt_(NULL), got_irelative_(NULL), |
424 | got_tlsdesc_(NULL), global_offset_table_(NULL), rela_dyn_(NULL), | |
425 | rela_irelative_(NULL), copy_relocs_(elfcpp::R_X86_64_COPY), | |
43819297 | 426 | got_mod_index_offset_(-1U), tlsdesc_reloc_info_(), |
e291e7b9 | 427 | tls_base_symbol_defined_(false) |
2e30d253 ILT |
428 | { } |
429 | ||
8a5e3e08 ILT |
430 | // Hook for a new output section. |
431 | void | |
432 | do_new_output_section(Output_section*) const; | |
433 | ||
6d03d481 ST |
434 | // Scan the relocations to look for symbol adjustments. |
435 | void | |
ad0f2072 | 436 | gc_process_relocs(Symbol_table* symtab, |
2e702c99 RM |
437 | Layout* layout, |
438 | Sized_relobj_file<size, false>* object, | |
439 | unsigned int data_shndx, | |
440 | unsigned int sh_type, | |
441 | const unsigned char* prelocs, | |
442 | size_t reloc_count, | |
443 | Output_section* output_section, | |
444 | bool needs_special_offset_handling, | |
445 | size_t local_symbol_count, | |
446 | const unsigned char* plocal_symbols); | |
6d03d481 | 447 | |
2e30d253 ILT |
448 | // Scan the relocations to look for symbol adjustments. |
449 | void | |
ad0f2072 | 450 | scan_relocs(Symbol_table* symtab, |
2e30d253 | 451 | Layout* layout, |
fc51264f | 452 | Sized_relobj_file<size, false>* object, |
2e30d253 ILT |
453 | unsigned int data_shndx, |
454 | unsigned int sh_type, | |
455 | const unsigned char* prelocs, | |
456 | size_t reloc_count, | |
730cdc88 ILT |
457 | Output_section* output_section, |
458 | bool needs_special_offset_handling, | |
2e30d253 | 459 | size_t local_symbol_count, |
730cdc88 | 460 | const unsigned char* plocal_symbols); |
2e30d253 ILT |
461 | |
462 | // Finalize the sections. | |
463 | void | |
f59f41f3 | 464 | do_finalize_sections(Layout*, const Input_objects*, Symbol_table*); |
2e30d253 | 465 | |
4fb6c25d ILT |
466 | // Return the value to use for a dynamic which requires special |
467 | // treatment. | |
468 | uint64_t | |
469 | do_dynsym_value(const Symbol*) const; | |
470 | ||
2e30d253 ILT |
471 | // Relocate a section. |
472 | void | |
fc51264f | 473 | relocate_section(const Relocate_info<size, false>*, |
2e30d253 ILT |
474 | unsigned int sh_type, |
475 | const unsigned char* prelocs, | |
476 | size_t reloc_count, | |
730cdc88 ILT |
477 | Output_section* output_section, |
478 | bool needs_special_offset_handling, | |
2e30d253 | 479 | unsigned char* view, |
fc51264f | 480 | typename elfcpp::Elf_types<size>::Elf_Addr view_address, |
364c7fa5 ILT |
481 | section_size_type view_size, |
482 | const Reloc_symbol_changes*); | |
2e30d253 | 483 | |
6a74a719 ILT |
484 | // Scan the relocs during a relocatable link. |
485 | void | |
ad0f2072 | 486 | scan_relocatable_relocs(Symbol_table* symtab, |
6a74a719 | 487 | Layout* layout, |
fc51264f | 488 | Sized_relobj_file<size, false>* object, |
6a74a719 ILT |
489 | unsigned int data_shndx, |
490 | unsigned int sh_type, | |
491 | const unsigned char* prelocs, | |
492 | size_t reloc_count, | |
493 | Output_section* output_section, | |
494 | bool needs_special_offset_handling, | |
495 | size_t local_symbol_count, | |
496 | const unsigned char* plocal_symbols, | |
497 | Relocatable_relocs*); | |
498 | ||
7404fe1b | 499 | // Emit relocations for a section. |
6a74a719 | 500 | void |
7404fe1b | 501 | relocate_relocs( |
fc51264f L |
502 | const Relocate_info<size, false>*, |
503 | unsigned int sh_type, | |
504 | const unsigned char* prelocs, | |
505 | size_t reloc_count, | |
506 | Output_section* output_section, | |
62fe925a | 507 | typename elfcpp::Elf_types<size>::Elf_Off offset_in_output_section, |
fc51264f L |
508 | const Relocatable_relocs*, |
509 | unsigned char* view, | |
510 | typename elfcpp::Elf_types<size>::Elf_Addr view_address, | |
511 | section_size_type view_size, | |
512 | unsigned char* reloc_view, | |
513 | section_size_type reloc_view_size); | |
6a74a719 | 514 | |
2e30d253 ILT |
515 | // Return a string used to fill a code section with nops. |
516 | std::string | |
8851ecca | 517 | do_code_fill(section_size_type length) const; |
2e30d253 | 518 | |
9a2d6984 ILT |
519 | // Return whether SYM is defined by the ABI. |
520 | bool | |
9c2d0ef9 | 521 | do_is_defined_by_abi(const Symbol* sym) const |
9a2d6984 ILT |
522 | { return strcmp(sym->name(), "__tls_get_addr") == 0; } |
523 | ||
e291e7b9 ILT |
524 | // Return the symbol index to use for a target specific relocation. |
525 | // The only target specific relocation is R_X86_64_TLSDESC for a | |
526 | // local symbol, which is an absolute reloc. | |
527 | unsigned int | |
528 | do_reloc_symbol_index(void*, unsigned int r_type) const | |
529 | { | |
530 | gold_assert(r_type == elfcpp::R_X86_64_TLSDESC); | |
531 | return 0; | |
532 | } | |
533 | ||
534 | // Return the addend to use for a target specific relocation. | |
535 | uint64_t | |
536 | do_reloc_addend(void* arg, unsigned int r_type, uint64_t addend) const; | |
537 | ||
7223e9ca | 538 | // Return the PLT section. |
67181c72 ILT |
539 | uint64_t |
540 | do_plt_address_for_global(const Symbol* gsym) const | |
541 | { return this->plt_section()->address_for_global(gsym); } | |
7223e9ca | 542 | |
67181c72 ILT |
543 | uint64_t |
544 | do_plt_address_for_local(const Relobj* relobj, unsigned int symndx) const | |
545 | { return this->plt_section()->address_for_local(relobj, symndx); } | |
7223e9ca | 546 | |
b3ce541e ILT |
547 | // This function should be defined in targets that can use relocation |
548 | // types to determine (implemented in local_reloc_may_be_function_pointer | |
549 | // and global_reloc_may_be_function_pointer) | |
550 | // if a function's pointer is taken. ICF uses this in safe mode to only | |
551 | // fold those functions whose pointer is defintely not taken. For x86_64 | |
552 | // pie binaries, safe ICF cannot be done by looking at relocation types. | |
553 | bool | |
554 | do_can_check_for_function_pointers() const | |
555 | { return !parameters->options().pie(); } | |
556 | ||
02d7cd44 ILT |
557 | // Return the base for a DW_EH_PE_datarel encoding. |
558 | uint64_t | |
559 | do_ehframe_datarel_base() const; | |
560 | ||
9b547ce6 | 561 | // Adjust -fsplit-stack code which calls non-split-stack code. |
364c7fa5 ILT |
562 | void |
563 | do_calls_non_split(Relobj* object, unsigned int shndx, | |
564 | section_offset_type fnoffset, section_size_type fnsize, | |
565 | unsigned char* view, section_size_type view_size, | |
566 | std::string* from, std::string* to) const; | |
567 | ||
96f2030e | 568 | // Return the size of the GOT section. |
fe8718a4 | 569 | section_size_type |
0e70b911 | 570 | got_size() const |
96f2030e ILT |
571 | { |
572 | gold_assert(this->got_ != NULL); | |
573 | return this->got_->data_size(); | |
574 | } | |
575 | ||
0e70b911 CC |
576 | // Return the number of entries in the GOT. |
577 | unsigned int | |
578 | got_entry_count() const | |
579 | { | |
580 | if (this->got_ == NULL) | |
581 | return 0; | |
582 | return this->got_size() / 8; | |
583 | } | |
584 | ||
585 | // Return the number of entries in the PLT. | |
586 | unsigned int | |
587 | plt_entry_count() const; | |
588 | ||
589 | // Return the offset of the first non-reserved PLT entry. | |
590 | unsigned int | |
591 | first_plt_entry_offset() const; | |
592 | ||
593 | // Return the size of each PLT entry. | |
594 | unsigned int | |
595 | plt_entry_size() const; | |
596 | ||
4829d394 | 597 | // Create the GOT section for an incremental update. |
dd74ae06 | 598 | Output_data_got_base* |
4829d394 CC |
599 | init_got_plt_for_update(Symbol_table* symtab, |
600 | Layout* layout, | |
601 | unsigned int got_count, | |
602 | unsigned int plt_count); | |
603 | ||
6fa2a40b CC |
604 | // Reserve a GOT entry for a local symbol, and regenerate any |
605 | // necessary dynamic relocations. | |
606 | void | |
607 | reserve_local_got_entry(unsigned int got_index, | |
2e702c99 | 608 | Sized_relobj<size, false>* obj, |
6fa2a40b CC |
609 | unsigned int r_sym, |
610 | unsigned int got_type); | |
611 | ||
612 | // Reserve a GOT entry for a global symbol, and regenerate any | |
613 | // necessary dynamic relocations. | |
614 | void | |
615 | reserve_global_got_entry(unsigned int got_index, Symbol* gsym, | |
616 | unsigned int got_type); | |
617 | ||
4829d394 | 618 | // Register an existing PLT entry for a global symbol. |
4829d394 | 619 | void |
67181c72 ILT |
620 | register_global_plt_entry(Symbol_table*, Layout*, unsigned int plt_index, |
621 | Symbol* gsym); | |
4829d394 | 622 | |
26d3c67d CC |
623 | // Force a COPY relocation for a given symbol. |
624 | void | |
625 | emit_copy_reloc(Symbol_table*, Symbol*, Output_section*, off_t); | |
626 | ||
94a3fc8b CC |
627 | // Apply an incremental relocation. |
628 | void | |
fc51264f L |
629 | apply_relocation(const Relocate_info<size, false>* relinfo, |
630 | typename elfcpp::Elf_types<size>::Elf_Addr r_offset, | |
94a3fc8b | 631 | unsigned int r_type, |
fc51264f | 632 | typename elfcpp::Elf_types<size>::Elf_Swxword r_addend, |
94a3fc8b CC |
633 | const Symbol* gsym, |
634 | unsigned char* view, | |
fc51264f | 635 | typename elfcpp::Elf_types<size>::Elf_Addr address, |
94a3fc8b CC |
636 | section_size_type view_size); |
637 | ||
e291e7b9 ILT |
638 | // Add a new reloc argument, returning the index in the vector. |
639 | size_t | |
fc51264f | 640 | add_tlsdesc_info(Sized_relobj_file<size, false>* object, unsigned int r_sym) |
e291e7b9 ILT |
641 | { |
642 | this->tlsdesc_reloc_info_.push_back(Tlsdesc_info(object, r_sym)); | |
643 | return this->tlsdesc_reloc_info_.size() - 1; | |
644 | } | |
645 | ||
2e702c99 RM |
646 | Output_data_plt_x86_64<size>* |
647 | make_data_plt(Layout* layout, | |
648 | Output_data_got<64, false>* got, | |
57b2284c | 649 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
650 | Output_data_space* got_irelative) |
651 | { | |
652 | return this->do_make_data_plt(layout, got, got_plt, got_irelative); | |
653 | } | |
654 | ||
655 | Output_data_plt_x86_64<size>* | |
656 | make_data_plt(Layout* layout, | |
657 | Output_data_got<64, false>* got, | |
57b2284c | 658 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
659 | Output_data_space* got_irelative, |
660 | unsigned int plt_count) | |
661 | { | |
662 | return this->do_make_data_plt(layout, got, got_plt, got_irelative, | |
663 | plt_count); | |
664 | } | |
665 | ||
666 | virtual Output_data_plt_x86_64<size>* | |
667 | do_make_data_plt(Layout* layout, | |
668 | Output_data_got<64, false>* got, | |
57b2284c | 669 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
670 | Output_data_space* got_irelative) |
671 | { | |
672 | return new Output_data_plt_x86_64_standard<size>(layout, got, got_plt, | |
673 | got_irelative); | |
674 | } | |
675 | ||
676 | virtual Output_data_plt_x86_64<size>* | |
677 | do_make_data_plt(Layout* layout, | |
678 | Output_data_got<64, false>* got, | |
57b2284c | 679 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
680 | Output_data_space* got_irelative, |
681 | unsigned int plt_count) | |
682 | { | |
683 | return new Output_data_plt_x86_64_standard<size>(layout, got, got_plt, | |
684 | got_irelative, | |
685 | plt_count); | |
686 | } | |
687 | ||
2e30d253 ILT |
688 | private: |
689 | // The class which scans relocations. | |
a036edd8 | 690 | class Scan |
2e30d253 | 691 | { |
a036edd8 ILT |
692 | public: |
693 | Scan() | |
694 | : issued_non_pic_error_(false) | |
695 | { } | |
696 | ||
95a2c8d6 RS |
697 | static inline int |
698 | get_reference_flags(unsigned int r_type); | |
699 | ||
2e30d253 | 700 | inline void |
ad0f2072 | 701 | local(Symbol_table* symtab, Layout* layout, Target_x86_64* target, |
fc51264f | 702 | Sized_relobj_file<size, false>* object, |
2e30d253 | 703 | unsigned int data_shndx, |
07f397ab | 704 | Output_section* output_section, |
fc51264f | 705 | const elfcpp::Rela<size, false>& reloc, unsigned int r_type, |
bfdfa4cd AM |
706 | const elfcpp::Sym<size, false>& lsym, |
707 | bool is_discarded); | |
2e30d253 ILT |
708 | |
709 | inline void | |
ad0f2072 | 710 | global(Symbol_table* symtab, Layout* layout, Target_x86_64* target, |
fc51264f | 711 | Sized_relobj_file<size, false>* object, |
2e30d253 | 712 | unsigned int data_shndx, |
07f397ab | 713 | Output_section* output_section, |
fc51264f | 714 | const elfcpp::Rela<size, false>& reloc, unsigned int r_type, |
2e30d253 | 715 | Symbol* gsym); |
e041f13d | 716 | |
21bb3914 ST |
717 | inline bool |
718 | local_reloc_may_be_function_pointer(Symbol_table* symtab, Layout* layout, | |
719 | Target_x86_64* target, | |
2e702c99 RM |
720 | Sized_relobj_file<size, false>* object, |
721 | unsigned int data_shndx, | |
722 | Output_section* output_section, | |
723 | const elfcpp::Rela<size, false>& reloc, | |
21bb3914 | 724 | unsigned int r_type, |
2e702c99 | 725 | const elfcpp::Sym<size, false>& lsym); |
21bb3914 ST |
726 | |
727 | inline bool | |
728 | global_reloc_may_be_function_pointer(Symbol_table* symtab, Layout* layout, | |
2e702c99 RM |
729 | Target_x86_64* target, |
730 | Sized_relobj_file<size, false>* object, | |
731 | unsigned int data_shndx, | |
732 | Output_section* output_section, | |
733 | const elfcpp::Rela<size, false>& reloc, | |
21bb3914 | 734 | unsigned int r_type, |
2e702c99 | 735 | Symbol* gsym); |
21bb3914 | 736 | |
a036edd8 | 737 | private: |
e041f13d | 738 | static void |
fc51264f L |
739 | unsupported_reloc_local(Sized_relobj_file<size, false>*, |
740 | unsigned int r_type); | |
e041f13d ILT |
741 | |
742 | static void | |
fc51264f L |
743 | unsupported_reloc_global(Sized_relobj_file<size, false>*, |
744 | unsigned int r_type, Symbol*); | |
a036edd8 ILT |
745 | |
746 | void | |
a29b0dad | 747 | check_non_pic(Relobj*, unsigned int r_type, Symbol*); |
a036edd8 | 748 | |
21bb3914 ST |
749 | inline bool |
750 | possible_function_pointer_reloc(unsigned int r_type); | |
751 | ||
7223e9ca | 752 | bool |
fc51264f | 753 | reloc_needs_plt_for_ifunc(Sized_relobj_file<size, false>*, |
6fa2a40b | 754 | unsigned int r_type); |
7223e9ca | 755 | |
a036edd8 ILT |
756 | // Whether we have issued an error about a non-PIC compilation. |
757 | bool issued_non_pic_error_; | |
2e30d253 ILT |
758 | }; |
759 | ||
760 | // The class which implements relocation. | |
761 | class Relocate | |
762 | { | |
763 | public: | |
764 | Relocate() | |
36171d64 | 765 | : skip_call_tls_get_addr_(false) |
2e30d253 ILT |
766 | { } |
767 | ||
768 | ~Relocate() | |
769 | { | |
770 | if (this->skip_call_tls_get_addr_) | |
771 | { | |
772 | // FIXME: This needs to specify the location somehow. | |
a0c4fb0a | 773 | gold_error(_("missing expected TLS relocation")); |
2e30d253 ILT |
774 | } |
775 | } | |
776 | ||
777 | // Do a relocation. Return false if the caller should not issue | |
778 | // any warnings about this relocation. | |
779 | inline bool | |
fc51264f L |
780 | relocate(const Relocate_info<size, false>*, Target_x86_64*, |
781 | Output_section*, | |
782 | size_t relnum, const elfcpp::Rela<size, false>&, | |
783 | unsigned int r_type, const Sized_symbol<size>*, | |
784 | const Symbol_value<size>*, | |
785 | unsigned char*, typename elfcpp::Elf_types<size>::Elf_Addr, | |
fe8718a4 | 786 | section_size_type); |
2e30d253 ILT |
787 | |
788 | private: | |
789 | // Do a TLS relocation. | |
790 | inline void | |
fc51264f | 791 | relocate_tls(const Relocate_info<size, false>*, Target_x86_64*, |
2e702c99 | 792 | size_t relnum, const elfcpp::Rela<size, false>&, |
fc51264f L |
793 | unsigned int r_type, const Sized_symbol<size>*, |
794 | const Symbol_value<size>*, | |
795 | unsigned char*, typename elfcpp::Elf_types<size>::Elf_Addr, | |
fe8718a4 | 796 | section_size_type); |
2e30d253 | 797 | |
c2b45e22 | 798 | // Do a TLS General-Dynamic to Initial-Exec transition. |
7bf1f802 | 799 | inline void |
fc51264f | 800 | tls_gd_to_ie(const Relocate_info<size, false>*, size_t relnum, |
7bf1f802 | 801 | Output_segment* tls_segment, |
fc51264f L |
802 | const elfcpp::Rela<size, false>&, unsigned int r_type, |
803 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
7bf1f802 | 804 | unsigned char* view, |
fc51264f | 805 | typename elfcpp::Elf_types<size>::Elf_Addr, |
fe8718a4 | 806 | section_size_type view_size); |
7bf1f802 | 807 | |
56622147 ILT |
808 | // Do a TLS General-Dynamic to Local-Exec transition. |
809 | inline void | |
fc51264f | 810 | tls_gd_to_le(const Relocate_info<size, false>*, size_t relnum, |
2e30d253 | 811 | Output_segment* tls_segment, |
fc51264f L |
812 | const elfcpp::Rela<size, false>&, unsigned int r_type, |
813 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
2e30d253 | 814 | unsigned char* view, |
fe8718a4 | 815 | section_size_type view_size); |
2e30d253 | 816 | |
c2b45e22 CC |
817 | // Do a TLSDESC-style General-Dynamic to Initial-Exec transition. |
818 | inline void | |
fc51264f | 819 | tls_desc_gd_to_ie(const Relocate_info<size, false>*, size_t relnum, |
c2b45e22 | 820 | Output_segment* tls_segment, |
fc51264f L |
821 | const elfcpp::Rela<size, false>&, unsigned int r_type, |
822 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
c2b45e22 | 823 | unsigned char* view, |
fc51264f | 824 | typename elfcpp::Elf_types<size>::Elf_Addr, |
c2b45e22 CC |
825 | section_size_type view_size); |
826 | ||
827 | // Do a TLSDESC-style General-Dynamic to Local-Exec transition. | |
828 | inline void | |
fc51264f | 829 | tls_desc_gd_to_le(const Relocate_info<size, false>*, size_t relnum, |
c2b45e22 | 830 | Output_segment* tls_segment, |
fc51264f L |
831 | const elfcpp::Rela<size, false>&, unsigned int r_type, |
832 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
c2b45e22 CC |
833 | unsigned char* view, |
834 | section_size_type view_size); | |
835 | ||
56622147 | 836 | // Do a TLS Local-Dynamic to Local-Exec transition. |
2e30d253 | 837 | inline void |
fc51264f | 838 | tls_ld_to_le(const Relocate_info<size, false>*, size_t relnum, |
2e30d253 | 839 | Output_segment* tls_segment, |
fc51264f L |
840 | const elfcpp::Rela<size, false>&, unsigned int r_type, |
841 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
2e30d253 | 842 | unsigned char* view, |
fe8718a4 | 843 | section_size_type view_size); |
2e30d253 | 844 | |
56622147 ILT |
845 | // Do a TLS Initial-Exec to Local-Exec transition. |
846 | static inline void | |
fc51264f | 847 | tls_ie_to_le(const Relocate_info<size, false>*, size_t relnum, |
72ec2876 | 848 | Output_segment* tls_segment, |
fc51264f L |
849 | const elfcpp::Rela<size, false>&, unsigned int r_type, |
850 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
72ec2876 | 851 | unsigned char* view, |
fe8718a4 | 852 | section_size_type view_size); |
2e30d253 ILT |
853 | |
854 | // This is set if we should skip the next reloc, which should be a | |
855 | // PLT32 reloc against ___tls_get_addr. | |
856 | bool skip_call_tls_get_addr_; | |
857 | }; | |
858 | ||
6a74a719 ILT |
859 | // A class which returns the size required for a relocation type, |
860 | // used while scanning relocs during a relocatable link. | |
861 | class Relocatable_size_for_reloc | |
862 | { | |
863 | public: | |
864 | unsigned int | |
865 | get_size_for_reloc(unsigned int, Relobj*); | |
866 | }; | |
867 | ||
1fa29f10 IT |
868 | // Check if relocation against this symbol is a candidate for |
869 | // conversion from | |
870 | // mov foo@GOTPCREL(%rip), %reg | |
871 | // to lea foo(%rip), %reg. | |
872 | static bool | |
873 | can_convert_mov_to_lea(const Symbol* gsym) | |
874 | { | |
875 | gold_assert(gsym != NULL); | |
876 | return (gsym->type() != elfcpp::STT_GNU_IFUNC | |
877 | && !gsym->is_undefined () | |
878 | && !gsym->is_from_dynobj() | |
879 | && !gsym->is_preemptible() | |
880 | && (!parameters->options().shared() | |
881 | || (gsym->visibility() != elfcpp::STV_DEFAULT | |
882 | && gsym->visibility() != elfcpp::STV_PROTECTED) | |
883 | || parameters->options().Bsymbolic()) | |
884 | && strcmp(gsym->name(), "_DYNAMIC") != 0); | |
885 | } | |
886 | ||
2e30d253 ILT |
887 | // Adjust TLS relocation type based on the options and whether this |
888 | // is a local symbol. | |
e041f13d | 889 | static tls::Tls_optimization |
2e30d253 ILT |
890 | optimize_tls_reloc(bool is_final, int r_type); |
891 | ||
892 | // Get the GOT section, creating it if necessary. | |
893 | Output_data_got<64, false>* | |
894 | got_section(Symbol_table*, Layout*); | |
895 | ||
96f2030e | 896 | // Get the GOT PLT section. |
57b2284c | 897 | Output_data_got_plt_x86_64* |
96f2030e ILT |
898 | got_plt_section() const |
899 | { | |
900 | gold_assert(this->got_plt_ != NULL); | |
901 | return this->got_plt_; | |
902 | } | |
903 | ||
a8df5856 ILT |
904 | // Get the GOT section for TLSDESC entries. |
905 | Output_data_got<64, false>* | |
906 | got_tlsdesc_section() const | |
907 | { | |
908 | gold_assert(this->got_tlsdesc_ != NULL); | |
909 | return this->got_tlsdesc_; | |
910 | } | |
911 | ||
c2b45e22 CC |
912 | // Create the PLT section. |
913 | void | |
914 | make_plt_section(Symbol_table* symtab, Layout* layout); | |
915 | ||
2e30d253 ILT |
916 | // Create a PLT entry for a global symbol. |
917 | void | |
918 | make_plt_entry(Symbol_table*, Layout*, Symbol*); | |
919 | ||
7223e9ca ILT |
920 | // Create a PLT entry for a local STT_GNU_IFUNC symbol. |
921 | void | |
922 | make_local_ifunc_plt_entry(Symbol_table*, Layout*, | |
fc51264f | 923 | Sized_relobj_file<size, false>* relobj, |
7223e9ca ILT |
924 | unsigned int local_sym_index); |
925 | ||
9fa33bee | 926 | // Define the _TLS_MODULE_BASE_ symbol in the TLS segment. |
edfbb029 CC |
927 | void |
928 | define_tls_base_symbol(Symbol_table*, Layout*); | |
929 | ||
c2b45e22 CC |
930 | // Create the reserved PLT and GOT entries for the TLS descriptor resolver. |
931 | void | |
932 | reserve_tlsdesc_entries(Symbol_table* symtab, Layout* layout); | |
933 | ||
31d60480 ILT |
934 | // Create a GOT entry for the TLS module index. |
935 | unsigned int | |
936 | got_mod_index_entry(Symbol_table* symtab, Layout* layout, | |
fc51264f | 937 | Sized_relobj_file<size, false>* object); |
31d60480 | 938 | |
2e30d253 | 939 | // Get the PLT section. |
fc51264f | 940 | Output_data_plt_x86_64<size>* |
2e30d253 ILT |
941 | plt_section() const |
942 | { | |
943 | gold_assert(this->plt_ != NULL); | |
944 | return this->plt_; | |
945 | } | |
946 | ||
947 | // Get the dynamic reloc section, creating it if necessary. | |
948 | Reloc_section* | |
0ffd9845 | 949 | rela_dyn_section(Layout*); |
2e30d253 | 950 | |
e291e7b9 ILT |
951 | // Get the section to use for TLSDESC relocations. |
952 | Reloc_section* | |
953 | rela_tlsdesc_section(Layout*) const; | |
954 | ||
67181c72 ILT |
955 | // Get the section to use for IRELATIVE relocations. |
956 | Reloc_section* | |
957 | rela_irelative_section(Layout*); | |
958 | ||
12c0daef | 959 | // Add a potential copy relocation. |
2e30d253 | 960 | void |
ef9beddf | 961 | copy_reloc(Symbol_table* symtab, Layout* layout, |
2e702c99 | 962 | Sized_relobj_file<size, false>* object, |
12c0daef | 963 | unsigned int shndx, Output_section* output_section, |
fc51264f | 964 | Symbol* sym, const elfcpp::Rela<size, false>& reloc) |
12c0daef ILT |
965 | { |
966 | this->copy_relocs_.copy_reloc(symtab, layout, | |
fc51264f | 967 | symtab->get_sized_symbol<size>(sym), |
12c0daef ILT |
968 | object, shndx, output_section, |
969 | reloc, this->rela_dyn_section(layout)); | |
970 | } | |
2e30d253 ILT |
971 | |
972 | // Information about this specific target which we pass to the | |
973 | // general Target structure. | |
974 | static const Target::Target_info x86_64_info; | |
975 | ||
0e70b911 CC |
976 | // The types of GOT entries needed for this platform. |
977 | // These values are exposed to the ABI in an incremental link. | |
978 | // Do not renumber existing values without changing the version | |
979 | // number of the .gnu_incremental_inputs section. | |
0a65a3a7 CC |
980 | enum Got_type |
981 | { | |
982 | GOT_TYPE_STANDARD = 0, // GOT entry for a regular symbol | |
983 | GOT_TYPE_TLS_OFFSET = 1, // GOT entry for TLS offset | |
984 | GOT_TYPE_TLS_PAIR = 2, // GOT entry for TLS module/offset pair | |
985 | GOT_TYPE_TLS_DESC = 3 // GOT entry for TLS_DESC pair | |
986 | }; | |
987 | ||
e291e7b9 ILT |
988 | // This type is used as the argument to the target specific |
989 | // relocation routines. The only target specific reloc is | |
990 | // R_X86_64_TLSDESC against a local symbol. | |
991 | struct Tlsdesc_info | |
992 | { | |
fc51264f | 993 | Tlsdesc_info(Sized_relobj_file<size, false>* a_object, unsigned int a_r_sym) |
e291e7b9 ILT |
994 | : object(a_object), r_sym(a_r_sym) |
995 | { } | |
996 | ||
997 | // The object in which the local symbol is defined. | |
fc51264f | 998 | Sized_relobj_file<size, false>* object; |
e291e7b9 ILT |
999 | // The local symbol index in the object. |
1000 | unsigned int r_sym; | |
1001 | }; | |
1002 | ||
2e30d253 ILT |
1003 | // The GOT section. |
1004 | Output_data_got<64, false>* got_; | |
1005 | // The PLT section. | |
fc51264f | 1006 | Output_data_plt_x86_64<size>* plt_; |
2e30d253 | 1007 | // The GOT PLT section. |
57b2284c | 1008 | Output_data_got_plt_x86_64* got_plt_; |
67181c72 ILT |
1009 | // The GOT section for IRELATIVE relocations. |
1010 | Output_data_space* got_irelative_; | |
a8df5856 ILT |
1011 | // The GOT section for TLSDESC relocations. |
1012 | Output_data_got<64, false>* got_tlsdesc_; | |
e785ec03 ILT |
1013 | // The _GLOBAL_OFFSET_TABLE_ symbol. |
1014 | Symbol* global_offset_table_; | |
2e30d253 | 1015 | // The dynamic reloc section. |
0ffd9845 | 1016 | Reloc_section* rela_dyn_; |
67181c72 ILT |
1017 | // The section to use for IRELATIVE relocs. |
1018 | Reloc_section* rela_irelative_; | |
2e30d253 | 1019 | // Relocs saved to avoid a COPY reloc. |
fc51264f | 1020 | Copy_relocs<elfcpp::SHT_RELA, size, false> copy_relocs_; |
c2b45e22 | 1021 | // Offset of the GOT entry for the TLS module index. |
31d60480 | 1022 | unsigned int got_mod_index_offset_; |
e291e7b9 ILT |
1023 | // We handle R_X86_64_TLSDESC against a local symbol as a target |
1024 | // specific relocation. Here we store the object and local symbol | |
1025 | // index for the relocation. | |
1026 | std::vector<Tlsdesc_info> tlsdesc_reloc_info_; | |
edfbb029 CC |
1027 | // True if the _TLS_MODULE_BASE_ symbol has been defined. |
1028 | bool tls_base_symbol_defined_; | |
2e30d253 ILT |
1029 | }; |
1030 | ||
fc51264f L |
1031 | template<> |
1032 | const Target::Target_info Target_x86_64<64>::x86_64_info = | |
2e30d253 ILT |
1033 | { |
1034 | 64, // size | |
1035 | false, // is_big_endian | |
1036 | elfcpp::EM_X86_64, // machine_code | |
1037 | false, // has_make_symbol | |
1038 | false, // has_resolve | |
1039 | true, // has_code_fill | |
35cdfc9a | 1040 | true, // is_default_stack_executable |
b3ce541e | 1041 | true, // can_icf_inline_merge_sections |
0864d551 | 1042 | '\0', // wrap_char |
2e30d253 | 1043 | "/lib/ld64.so.1", // program interpreter |
0c5e9c22 | 1044 | 0x400000, // default_text_segment_address |
cd72c291 | 1045 | 0x1000, // abi_pagesize (overridable by -z max-page-size) |
8a5e3e08 | 1046 | 0x1000, // common_pagesize (overridable by -z common-page-size) |
2e702c99 RM |
1047 | false, // isolate_execinstr |
1048 | 0, // rosegment_gap | |
8a5e3e08 ILT |
1049 | elfcpp::SHN_UNDEF, // small_common_shndx |
1050 | elfcpp::SHN_X86_64_LCOMMON, // large_common_shndx | |
1051 | 0, // small_common_section_flags | |
05a352e6 DK |
1052 | elfcpp::SHF_X86_64_LARGE, // large_common_section_flags |
1053 | NULL, // attributes_section | |
a67858e0 CC |
1054 | NULL, // attributes_vendor |
1055 | "_start" // entry_symbol_name | |
2e30d253 ILT |
1056 | }; |
1057 | ||
fc51264f L |
1058 | template<> |
1059 | const Target::Target_info Target_x86_64<32>::x86_64_info = | |
1060 | { | |
1061 | 32, // size | |
1062 | false, // is_big_endian | |
1063 | elfcpp::EM_X86_64, // machine_code | |
1064 | false, // has_make_symbol | |
1065 | false, // has_resolve | |
1066 | true, // has_code_fill | |
1067 | true, // is_default_stack_executable | |
1068 | true, // can_icf_inline_merge_sections | |
1069 | '\0', // wrap_char | |
1070 | "/libx32/ldx32.so.1", // program interpreter | |
1071 | 0x400000, // default_text_segment_address | |
1072 | 0x1000, // abi_pagesize (overridable by -z max-page-size) | |
1073 | 0x1000, // common_pagesize (overridable by -z common-page-size) | |
2e702c99 RM |
1074 | false, // isolate_execinstr |
1075 | 0, // rosegment_gap | |
fc51264f L |
1076 | elfcpp::SHN_UNDEF, // small_common_shndx |
1077 | elfcpp::SHN_X86_64_LCOMMON, // large_common_shndx | |
1078 | 0, // small_common_section_flags | |
1079 | elfcpp::SHF_X86_64_LARGE, // large_common_section_flags | |
1080 | NULL, // attributes_section | |
a67858e0 CC |
1081 | NULL, // attributes_vendor |
1082 | "_start" // entry_symbol_name | |
fc51264f L |
1083 | }; |
1084 | ||
8a5e3e08 ILT |
1085 | // This is called when a new output section is created. This is where |
1086 | // we handle the SHF_X86_64_LARGE. | |
1087 | ||
fc51264f | 1088 | template<int size> |
8a5e3e08 | 1089 | void |
fc51264f | 1090 | Target_x86_64<size>::do_new_output_section(Output_section* os) const |
8a5e3e08 ILT |
1091 | { |
1092 | if ((os->flags() & elfcpp::SHF_X86_64_LARGE) != 0) | |
1093 | os->set_is_large_section(); | |
1094 | } | |
1095 | ||
2e30d253 ILT |
1096 | // Get the GOT section, creating it if necessary. |
1097 | ||
fc51264f | 1098 | template<int size> |
2e30d253 | 1099 | Output_data_got<64, false>* |
fc51264f | 1100 | Target_x86_64<size>::got_section(Symbol_table* symtab, Layout* layout) |
2e30d253 ILT |
1101 | { |
1102 | if (this->got_ == NULL) | |
1103 | { | |
1104 | gold_assert(symtab != NULL && layout != NULL); | |
1105 | ||
9446efde ILT |
1106 | // When using -z now, we can treat .got.plt as a relro section. |
1107 | // Without -z now, it is modified after program startup by lazy | |
1108 | // PLT relocations. | |
1109 | bool is_got_plt_relro = parameters->options().now(); | |
1110 | Output_section_order got_order = (is_got_plt_relro | |
1111 | ? ORDER_RELRO | |
1112 | : ORDER_RELRO_LAST); | |
1113 | Output_section_order got_plt_order = (is_got_plt_relro | |
1114 | ? ORDER_RELRO | |
1115 | : ORDER_NON_RELRO_FIRST); | |
1116 | ||
2e30d253 ILT |
1117 | this->got_ = new Output_data_got<64, false>(); |
1118 | ||
82742395 ILT |
1119 | layout->add_output_section_data(".got", elfcpp::SHT_PROGBITS, |
1120 | (elfcpp::SHF_ALLOC | |
1121 | | elfcpp::SHF_WRITE), | |
9446efde | 1122 | this->got_, got_order, true); |
2e30d253 | 1123 | |
57b2284c | 1124 | this->got_plt_ = new Output_data_got_plt_x86_64(layout); |
82742395 ILT |
1125 | layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS, |
1126 | (elfcpp::SHF_ALLOC | |
1127 | | elfcpp::SHF_WRITE), | |
9446efde ILT |
1128 | this->got_plt_, got_plt_order, |
1129 | is_got_plt_relro); | |
2e30d253 ILT |
1130 | |
1131 | // The first three entries are reserved. | |
27bc2bce | 1132 | this->got_plt_->set_current_data_size(3 * 8); |
2e30d253 | 1133 | |
9446efde ILT |
1134 | if (!is_got_plt_relro) |
1135 | { | |
1136 | // Those bytes can go into the relro segment. | |
1137 | layout->increase_relro(3 * 8); | |
1138 | } | |
1a2dff53 | 1139 | |
2e30d253 | 1140 | // Define _GLOBAL_OFFSET_TABLE_ at the start of the PLT. |
e785ec03 ILT |
1141 | this->global_offset_table_ = |
1142 | symtab->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL, | |
1143 | Symbol_table::PREDEFINED, | |
1144 | this->got_plt_, | |
1145 | 0, 0, elfcpp::STT_OBJECT, | |
1146 | elfcpp::STB_LOCAL, | |
1147 | elfcpp::STV_HIDDEN, 0, | |
1148 | false, false); | |
a8df5856 | 1149 | |
67181c72 ILT |
1150 | // If there are any IRELATIVE relocations, they get GOT entries |
1151 | // in .got.plt after the jump slot entries. | |
1152 | this->got_irelative_ = new Output_data_space(8, "** GOT IRELATIVE PLT"); | |
1153 | layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS, | |
1154 | (elfcpp::SHF_ALLOC | |
1155 | | elfcpp::SHF_WRITE), | |
1156 | this->got_irelative_, | |
9446efde | 1157 | got_plt_order, is_got_plt_relro); |
67181c72 | 1158 | |
a8df5856 | 1159 | // If there are any TLSDESC relocations, they get GOT entries in |
67181c72 | 1160 | // .got.plt after the jump slot and IRELATIVE entries. |
a8df5856 ILT |
1161 | this->got_tlsdesc_ = new Output_data_got<64, false>(); |
1162 | layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS, | |
1163 | (elfcpp::SHF_ALLOC | |
1164 | | elfcpp::SHF_WRITE), | |
22f0da72 | 1165 | this->got_tlsdesc_, |
9446efde | 1166 | got_plt_order, is_got_plt_relro); |
2e30d253 ILT |
1167 | } |
1168 | ||
1169 | return this->got_; | |
1170 | } | |
1171 | ||
1172 | // Get the dynamic reloc section, creating it if necessary. | |
1173 | ||
fc51264f L |
1174 | template<int size> |
1175 | typename Target_x86_64<size>::Reloc_section* | |
1176 | Target_x86_64<size>::rela_dyn_section(Layout* layout) | |
2e30d253 | 1177 | { |
0ffd9845 | 1178 | if (this->rela_dyn_ == NULL) |
2e30d253 ILT |
1179 | { |
1180 | gold_assert(layout != NULL); | |
d98bc257 | 1181 | this->rela_dyn_ = new Reloc_section(parameters->options().combreloc()); |
2e30d253 | 1182 | layout->add_output_section_data(".rela.dyn", elfcpp::SHT_RELA, |
22f0da72 ILT |
1183 | elfcpp::SHF_ALLOC, this->rela_dyn_, |
1184 | ORDER_DYNAMIC_RELOCS, false); | |
2e30d253 | 1185 | } |
0ffd9845 | 1186 | return this->rela_dyn_; |
2e30d253 ILT |
1187 | } |
1188 | ||
67181c72 ILT |
1189 | // Get the section to use for IRELATIVE relocs, creating it if |
1190 | // necessary. These go in .rela.dyn, but only after all other dynamic | |
1191 | // relocations. They need to follow the other dynamic relocations so | |
1192 | // that they can refer to global variables initialized by those | |
1193 | // relocs. | |
1194 | ||
fc51264f L |
1195 | template<int size> |
1196 | typename Target_x86_64<size>::Reloc_section* | |
1197 | Target_x86_64<size>::rela_irelative_section(Layout* layout) | |
67181c72 ILT |
1198 | { |
1199 | if (this->rela_irelative_ == NULL) | |
1200 | { | |
1201 | // Make sure we have already created the dynamic reloc section. | |
1202 | this->rela_dyn_section(layout); | |
1203 | this->rela_irelative_ = new Reloc_section(false); | |
1204 | layout->add_output_section_data(".rela.dyn", elfcpp::SHT_RELA, | |
1205 | elfcpp::SHF_ALLOC, this->rela_irelative_, | |
1206 | ORDER_DYNAMIC_RELOCS, false); | |
1207 | gold_assert(this->rela_dyn_->output_section() | |
1208 | == this->rela_irelative_->output_section()); | |
1209 | } | |
1210 | return this->rela_irelative_; | |
1211 | } | |
1212 | ||
57b2284c CC |
1213 | // Write the first three reserved words of the .got.plt section. |
1214 | // The remainder of the section is written while writing the PLT | |
1215 | // in Output_data_plt_i386::do_write. | |
1216 | ||
1217 | void | |
1218 | Output_data_got_plt_x86_64::do_write(Output_file* of) | |
1219 | { | |
1220 | // The first entry in the GOT is the address of the .dynamic section | |
1221 | // aka the PT_DYNAMIC segment. The next two entries are reserved. | |
1222 | // We saved space for them when we created the section in | |
1223 | // Target_x86_64::got_section. | |
1224 | const off_t got_file_offset = this->offset(); | |
1225 | gold_assert(this->data_size() >= 24); | |
1226 | unsigned char* const got_view = of->get_output_view(got_file_offset, 24); | |
1227 | Output_section* dynamic = this->layout_->dynamic_section(); | |
1228 | uint64_t dynamic_addr = dynamic == NULL ? 0 : dynamic->address(); | |
1229 | elfcpp::Swap<64, false>::writeval(got_view, dynamic_addr); | |
1230 | memset(got_view + 8, 0, 16); | |
1231 | of->write_output_view(got_file_offset, 24, got_view); | |
1232 | } | |
1233 | ||
4829d394 | 1234 | // Initialize the PLT section. |
2e30d253 | 1235 | |
fc51264f | 1236 | template<int size> |
4829d394 | 1237 | void |
fc51264f | 1238 | Output_data_plt_x86_64<size>::init(Layout* layout) |
2e30d253 | 1239 | { |
d98bc257 | 1240 | this->rel_ = new Reloc_section(false); |
2e30d253 | 1241 | layout->add_output_section_data(".rela.plt", elfcpp::SHT_RELA, |
22f0da72 ILT |
1242 | elfcpp::SHF_ALLOC, this->rel_, |
1243 | ORDER_DYNAMIC_PLT_RELOCS, false); | |
2e30d253 ILT |
1244 | } |
1245 | ||
fc51264f | 1246 | template<int size> |
2e30d253 | 1247 | void |
fc51264f | 1248 | Output_data_plt_x86_64<size>::do_adjust_output_section(Output_section* os) |
2e30d253 | 1249 | { |
2e702c99 | 1250 | os->set_entsize(this->get_plt_entry_size()); |
2e30d253 ILT |
1251 | } |
1252 | ||
1253 | // Add an entry to the PLT. | |
1254 | ||
fc51264f | 1255 | template<int size> |
2e30d253 | 1256 | void |
fc51264f L |
1257 | Output_data_plt_x86_64<size>::add_entry(Symbol_table* symtab, Layout* layout, |
1258 | Symbol* gsym) | |
2e30d253 ILT |
1259 | { |
1260 | gold_assert(!gsym->has_plt_offset()); | |
1261 | ||
4829d394 CC |
1262 | unsigned int plt_index; |
1263 | off_t plt_offset; | |
1264 | section_offset_type got_offset; | |
2e30d253 | 1265 | |
67181c72 ILT |
1266 | unsigned int* pcount; |
1267 | unsigned int offset; | |
1268 | unsigned int reserved; | |
57b2284c | 1269 | Output_section_data_build* got; |
67181c72 ILT |
1270 | if (gsym->type() == elfcpp::STT_GNU_IFUNC |
1271 | && gsym->can_use_relative_reloc(false)) | |
1272 | { | |
1273 | pcount = &this->irelative_count_; | |
1274 | offset = 0; | |
1275 | reserved = 0; | |
1276 | got = this->got_irelative_; | |
1277 | } | |
1278 | else | |
1279 | { | |
1280 | pcount = &this->count_; | |
1281 | offset = 1; | |
1282 | reserved = 3; | |
1283 | got = this->got_plt_; | |
1284 | } | |
1285 | ||
4829d394 CC |
1286 | if (!this->is_data_size_valid()) |
1287 | { | |
67181c72 ILT |
1288 | // Note that when setting the PLT offset for a non-IRELATIVE |
1289 | // entry we skip the initial reserved PLT entry. | |
1290 | plt_index = *pcount + offset; | |
2e702c99 | 1291 | plt_offset = plt_index * this->get_plt_entry_size(); |
2e30d253 | 1292 | |
67181c72 | 1293 | ++*pcount; |
2e30d253 | 1294 | |
67181c72 ILT |
1295 | got_offset = (plt_index - offset + reserved) * 8; |
1296 | gold_assert(got_offset == got->current_data_size()); | |
2e30d253 | 1297 | |
4829d394 CC |
1298 | // Every PLT entry needs a GOT entry which points back to the PLT |
1299 | // entry (this will be changed by the dynamic linker, normally | |
1300 | // lazily when the function is called). | |
67181c72 | 1301 | got->set_current_data_size(got_offset + 8); |
4829d394 | 1302 | } |
7223e9ca ILT |
1303 | else |
1304 | { | |
67181c72 ILT |
1305 | // FIXME: This is probably not correct for IRELATIVE relocs. |
1306 | ||
4829d394 | 1307 | // For incremental updates, find an available slot. |
2e702c99 RM |
1308 | plt_offset = this->free_list_.allocate(this->get_plt_entry_size(), |
1309 | this->get_plt_entry_size(), 0); | |
4829d394 | 1310 | if (plt_offset == -1) |
e6455dfb CC |
1311 | gold_fallback(_("out of patch space (PLT);" |
1312 | " relink with --incremental-full")); | |
4829d394 CC |
1313 | |
1314 | // The GOT and PLT entries have a 1-1 correspondance, so the GOT offset | |
1315 | // can be calculated from the PLT index, adjusting for the three | |
1316 | // reserved entries at the beginning of the GOT. | |
2e702c99 | 1317 | plt_index = plt_offset / this->get_plt_entry_size() - 1; |
67181c72 | 1318 | got_offset = (plt_index - offset + reserved) * 8; |
7223e9ca | 1319 | } |
2e30d253 | 1320 | |
4829d394 CC |
1321 | gsym->set_plt_offset(plt_offset); |
1322 | ||
1323 | // Every PLT entry needs a reloc. | |
67181c72 | 1324 | this->add_relocation(symtab, layout, gsym, got_offset); |
4829d394 | 1325 | |
2e30d253 ILT |
1326 | // Note that we don't need to save the symbol. The contents of the |
1327 | // PLT are independent of which symbols are used. The symbols only | |
1328 | // appear in the relocations. | |
1329 | } | |
1330 | ||
7223e9ca ILT |
1331 | // Add an entry to the PLT for a local STT_GNU_IFUNC symbol. Return |
1332 | // the PLT offset. | |
1333 | ||
fc51264f | 1334 | template<int size> |
7223e9ca | 1335 | unsigned int |
fc51264f | 1336 | Output_data_plt_x86_64<size>::add_local_ifunc_entry( |
67181c72 ILT |
1337 | Symbol_table* symtab, |
1338 | Layout* layout, | |
fc51264f | 1339 | Sized_relobj_file<size, false>* relobj, |
6fa2a40b | 1340 | unsigned int local_sym_index) |
7223e9ca | 1341 | { |
2e702c99 | 1342 | unsigned int plt_offset = this->irelative_count_ * this->get_plt_entry_size(); |
67181c72 | 1343 | ++this->irelative_count_; |
7223e9ca | 1344 | |
67181c72 | 1345 | section_offset_type got_offset = this->got_irelative_->current_data_size(); |
7223e9ca ILT |
1346 | |
1347 | // Every PLT entry needs a GOT entry which points back to the PLT | |
1348 | // entry. | |
67181c72 | 1349 | this->got_irelative_->set_current_data_size(got_offset + 8); |
7223e9ca ILT |
1350 | |
1351 | // Every PLT entry needs a reloc. | |
67181c72 ILT |
1352 | Reloc_section* rela = this->rela_irelative(symtab, layout); |
1353 | rela->add_symbolless_local_addend(relobj, local_sym_index, | |
1354 | elfcpp::R_X86_64_IRELATIVE, | |
1355 | this->got_irelative_, got_offset, 0); | |
7223e9ca ILT |
1356 | |
1357 | return plt_offset; | |
1358 | } | |
1359 | ||
4829d394 CC |
1360 | // Add the relocation for a PLT entry. |
1361 | ||
fc51264f | 1362 | template<int size> |
4829d394 | 1363 | void |
fc51264f L |
1364 | Output_data_plt_x86_64<size>::add_relocation(Symbol_table* symtab, |
1365 | Layout* layout, | |
1366 | Symbol* gsym, | |
1367 | unsigned int got_offset) | |
4829d394 CC |
1368 | { |
1369 | if (gsym->type() == elfcpp::STT_GNU_IFUNC | |
1370 | && gsym->can_use_relative_reloc(false)) | |
67181c72 ILT |
1371 | { |
1372 | Reloc_section* rela = this->rela_irelative(symtab, layout); | |
1373 | rela->add_symbolless_global_addend(gsym, elfcpp::R_X86_64_IRELATIVE, | |
1374 | this->got_irelative_, got_offset, 0); | |
1375 | } | |
4829d394 CC |
1376 | else |
1377 | { | |
1378 | gsym->set_needs_dynsym_entry(); | |
1379 | this->rel_->add_global(gsym, elfcpp::R_X86_64_JUMP_SLOT, this->got_plt_, | |
1380 | got_offset, 0); | |
1381 | } | |
1382 | } | |
1383 | ||
e291e7b9 ILT |
1384 | // Return where the TLSDESC relocations should go, creating it if |
1385 | // necessary. These follow the JUMP_SLOT relocations. | |
1386 | ||
fc51264f L |
1387 | template<int size> |
1388 | typename Output_data_plt_x86_64<size>::Reloc_section* | |
1389 | Output_data_plt_x86_64<size>::rela_tlsdesc(Layout* layout) | |
e291e7b9 ILT |
1390 | { |
1391 | if (this->tlsdesc_rel_ == NULL) | |
1392 | { | |
1393 | this->tlsdesc_rel_ = new Reloc_section(false); | |
1394 | layout->add_output_section_data(".rela.plt", elfcpp::SHT_RELA, | |
1395 | elfcpp::SHF_ALLOC, this->tlsdesc_rel_, | |
22f0da72 | 1396 | ORDER_DYNAMIC_PLT_RELOCS, false); |
67181c72 ILT |
1397 | gold_assert(this->tlsdesc_rel_->output_section() |
1398 | == this->rel_->output_section()); | |
e291e7b9 ILT |
1399 | } |
1400 | return this->tlsdesc_rel_; | |
1401 | } | |
1402 | ||
67181c72 ILT |
1403 | // Return where the IRELATIVE relocations should go in the PLT. These |
1404 | // follow the JUMP_SLOT and the TLSDESC relocations. | |
1405 | ||
fc51264f L |
1406 | template<int size> |
1407 | typename Output_data_plt_x86_64<size>::Reloc_section* | |
1408 | Output_data_plt_x86_64<size>::rela_irelative(Symbol_table* symtab, | |
1409 | Layout* layout) | |
67181c72 ILT |
1410 | { |
1411 | if (this->irelative_rel_ == NULL) | |
1412 | { | |
1413 | // Make sure we have a place for the TLSDESC relocations, in | |
1414 | // case we see any later on. | |
1415 | this->rela_tlsdesc(layout); | |
1416 | this->irelative_rel_ = new Reloc_section(false); | |
1417 | layout->add_output_section_data(".rela.plt", elfcpp::SHT_RELA, | |
1418 | elfcpp::SHF_ALLOC, this->irelative_rel_, | |
1419 | ORDER_DYNAMIC_PLT_RELOCS, false); | |
1420 | gold_assert(this->irelative_rel_->output_section() | |
1421 | == this->rel_->output_section()); | |
1422 | ||
1423 | if (parameters->doing_static_link()) | |
1424 | { | |
1425 | // A statically linked executable will only have a .rela.plt | |
1426 | // section to hold R_X86_64_IRELATIVE relocs for | |
1427 | // STT_GNU_IFUNC symbols. The library will use these | |
1428 | // symbols to locate the IRELATIVE relocs at program startup | |
1429 | // time. | |
1430 | symtab->define_in_output_data("__rela_iplt_start", NULL, | |
1431 | Symbol_table::PREDEFINED, | |
1432 | this->irelative_rel_, 0, 0, | |
1433 | elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL, | |
1434 | elfcpp::STV_HIDDEN, 0, false, true); | |
1435 | symtab->define_in_output_data("__rela_iplt_end", NULL, | |
1436 | Symbol_table::PREDEFINED, | |
1437 | this->irelative_rel_, 0, 0, | |
1438 | elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL, | |
1439 | elfcpp::STV_HIDDEN, 0, true, true); | |
1440 | } | |
1441 | } | |
1442 | return this->irelative_rel_; | |
1443 | } | |
1444 | ||
1445 | // Return the PLT address to use for a global symbol. | |
1446 | ||
fc51264f | 1447 | template<int size> |
67181c72 | 1448 | uint64_t |
fc51264f | 1449 | Output_data_plt_x86_64<size>::address_for_global(const Symbol* gsym) |
67181c72 ILT |
1450 | { |
1451 | uint64_t offset = 0; | |
1452 | if (gsym->type() == elfcpp::STT_GNU_IFUNC | |
1453 | && gsym->can_use_relative_reloc(false)) | |
2e702c99 | 1454 | offset = (this->count_ + 1) * this->get_plt_entry_size(); |
19fec8c1 | 1455 | return this->address() + offset + gsym->plt_offset(); |
67181c72 ILT |
1456 | } |
1457 | ||
1458 | // Return the PLT address to use for a local symbol. These are always | |
1459 | // IRELATIVE relocs. | |
1460 | ||
fc51264f | 1461 | template<int size> |
67181c72 | 1462 | uint64_t |
19fec8c1 AM |
1463 | Output_data_plt_x86_64<size>::address_for_local(const Relobj* object, |
1464 | unsigned int r_sym) | |
67181c72 | 1465 | { |
19fec8c1 AM |
1466 | return (this->address() |
1467 | + (this->count_ + 1) * this->get_plt_entry_size() | |
1468 | + object->local_plt_offset(r_sym)); | |
67181c72 ILT |
1469 | } |
1470 | ||
c2b45e22 | 1471 | // Set the final size. |
fc51264f | 1472 | template<int size> |
c2b45e22 | 1473 | void |
fc51264f | 1474 | Output_data_plt_x86_64<size>::set_final_data_size() |
c2b45e22 | 1475 | { |
67181c72 | 1476 | unsigned int count = this->count_ + this->irelative_count_; |
c2b45e22 CC |
1477 | if (this->has_tlsdesc_entry()) |
1478 | ++count; | |
2e702c99 | 1479 | this->set_data_size((count + 1) * this->get_plt_entry_size()); |
c2b45e22 CC |
1480 | } |
1481 | ||
2e30d253 ILT |
1482 | // The first entry in the PLT for an executable. |
1483 | ||
fc51264f L |
1484 | template<int size> |
1485 | const unsigned char | |
2e702c99 | 1486 | Output_data_plt_x86_64_standard<size>::first_plt_entry[plt_entry_size] = |
2e30d253 ILT |
1487 | { |
1488 | // From AMD64 ABI Draft 0.98, page 76 | |
1489 | 0xff, 0x35, // pushq contents of memory address | |
2e30d253 | 1490 | 0, 0, 0, 0, // replaced with address of .got + 8 |
78d911fd ILT |
1491 | 0xff, 0x25, // jmp indirect |
1492 | 0, 0, 0, 0, // replaced with address of .got + 16 | |
2e30d253 ILT |
1493 | 0x90, 0x90, 0x90, 0x90 // noop (x4) |
1494 | }; | |
1495 | ||
2e702c99 RM |
1496 | template<int size> |
1497 | void | |
1498 | Output_data_plt_x86_64_standard<size>::do_fill_first_plt_entry( | |
1499 | unsigned char* pov, | |
1500 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
1501 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address) | |
1502 | { | |
1503 | memcpy(pov, first_plt_entry, plt_entry_size); | |
1504 | // We do a jmp relative to the PC at the end of this instruction. | |
1505 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, | |
1506 | (got_address + 8 | |
1507 | - (plt_address + 6))); | |
1508 | elfcpp::Swap<32, false>::writeval(pov + 8, | |
1509 | (got_address + 16 | |
1510 | - (plt_address + 12))); | |
1511 | } | |
1512 | ||
2e30d253 ILT |
1513 | // Subsequent entries in the PLT for an executable. |
1514 | ||
fc51264f L |
1515 | template<int size> |
1516 | const unsigned char | |
2e702c99 | 1517 | Output_data_plt_x86_64_standard<size>::plt_entry[plt_entry_size] = |
2e30d253 ILT |
1518 | { |
1519 | // From AMD64 ABI Draft 0.98, page 76 | |
1520 | 0xff, 0x25, // jmpq indirect | |
1521 | 0, 0, 0, 0, // replaced with address of symbol in .got | |
1522 | 0x68, // pushq immediate | |
1523 | 0, 0, 0, 0, // replaced with offset into relocation table | |
1524 | 0xe9, // jmpq relative | |
1525 | 0, 0, 0, 0 // replaced with offset to start of .plt | |
1526 | }; | |
1527 | ||
2e702c99 RM |
1528 | template<int size> |
1529 | unsigned int | |
1530 | Output_data_plt_x86_64_standard<size>::do_fill_plt_entry( | |
1531 | unsigned char* pov, | |
1532 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
1533 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
1534 | unsigned int got_offset, | |
1535 | unsigned int plt_offset, | |
1536 | unsigned int plt_index) | |
1537 | { | |
9d585188 L |
1538 | // Check PC-relative offset overflow in PLT entry. |
1539 | uint64_t plt_got_pcrel_offset = (got_address + got_offset | |
1540 | - (plt_address + plt_offset + 6)); | |
1541 | if (Bits<32>::has_overflow(plt_got_pcrel_offset)) | |
1542 | gold_error(_("PC-relative offset overflow in PLT entry %d"), | |
1543 | plt_index + 1); | |
1544 | ||
2e702c99 RM |
1545 | memcpy(pov, plt_entry, plt_entry_size); |
1546 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, | |
9d585188 | 1547 | plt_got_pcrel_offset); |
2e702c99 RM |
1548 | |
1549 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 7, plt_index); | |
1550 | elfcpp::Swap<32, false>::writeval(pov + 12, | |
1551 | - (plt_offset + plt_entry_size)); | |
1552 | ||
1553 | return 6; | |
1554 | } | |
1555 | ||
c2b45e22 CC |
1556 | // The reserved TLSDESC entry in the PLT for an executable. |
1557 | ||
fc51264f L |
1558 | template<int size> |
1559 | const unsigned char | |
2e702c99 | 1560 | Output_data_plt_x86_64_standard<size>::tlsdesc_plt_entry[plt_entry_size] = |
c2b45e22 CC |
1561 | { |
1562 | // From Alexandre Oliva, "Thread-Local Storage Descriptors for IA32 | |
1563 | // and AMD64/EM64T", Version 0.9.4 (2005-10-10). | |
1564 | 0xff, 0x35, // pushq x(%rip) | |
1565 | 0, 0, 0, 0, // replaced with address of linkmap GOT entry (at PLTGOT + 8) | |
1566 | 0xff, 0x25, // jmpq *y(%rip) | |
1567 | 0, 0, 0, 0, // replaced with offset of reserved TLSDESC_GOT entry | |
1568 | 0x0f, 0x1f, // nop | |
1569 | 0x40, 0 | |
1570 | }; | |
1571 | ||
2e702c99 RM |
1572 | template<int size> |
1573 | void | |
1574 | Output_data_plt_x86_64_standard<size>::do_fill_tlsdesc_entry( | |
1575 | unsigned char* pov, | |
1576 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
1577 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
1578 | typename elfcpp::Elf_types<size>::Elf_Addr got_base, | |
1579 | unsigned int tlsdesc_got_offset, | |
1580 | unsigned int plt_offset) | |
1581 | { | |
1582 | memcpy(pov, tlsdesc_plt_entry, plt_entry_size); | |
1583 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, | |
1584 | (got_address + 8 | |
1585 | - (plt_address + plt_offset | |
1586 | + 6))); | |
1587 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 8, | |
1588 | (got_base | |
1589 | + tlsdesc_got_offset | |
1590 | - (plt_address + plt_offset | |
1591 | + 12))); | |
1592 | } | |
1593 | ||
07a60597 ILT |
1594 | // The .eh_frame unwind information for the PLT. |
1595 | ||
fc51264f | 1596 | template<int size> |
2e702c99 | 1597 | const unsigned char |
fc51264f | 1598 | Output_data_plt_x86_64<size>::plt_eh_frame_cie[plt_eh_frame_cie_size] = |
07a60597 ILT |
1599 | { |
1600 | 1, // CIE version. | |
1601 | 'z', // Augmentation: augmentation size included. | |
1602 | 'R', // Augmentation: FDE encoding included. | |
1603 | '\0', // End of augmentation string. | |
1604 | 1, // Code alignment factor. | |
1605 | 0x78, // Data alignment factor. | |
1606 | 16, // Return address column. | |
1607 | 1, // Augmentation size. | |
1608 | (elfcpp::DW_EH_PE_pcrel // FDE encoding. | |
1609 | | elfcpp::DW_EH_PE_sdata4), | |
1610 | elfcpp::DW_CFA_def_cfa, 7, 8, // DW_CFA_def_cfa: r7 (rsp) ofs 8. | |
1611 | elfcpp::DW_CFA_offset + 16, 1,// DW_CFA_offset: r16 (rip) at cfa-8. | |
1612 | elfcpp::DW_CFA_nop, // Align to 16 bytes. | |
1613 | elfcpp::DW_CFA_nop | |
1614 | }; | |
1615 | ||
fc51264f | 1616 | template<int size> |
07a60597 | 1617 | const unsigned char |
2e702c99 | 1618 | Output_data_plt_x86_64_standard<size>::plt_eh_frame_fde[plt_eh_frame_fde_size] = |
07a60597 ILT |
1619 | { |
1620 | 0, 0, 0, 0, // Replaced with offset to .plt. | |
1621 | 0, 0, 0, 0, // Replaced with size of .plt. | |
1622 | 0, // Augmentation size. | |
1623 | elfcpp::DW_CFA_def_cfa_offset, 16, // DW_CFA_def_cfa_offset: 16. | |
1624 | elfcpp::DW_CFA_advance_loc + 6, // Advance 6 to __PLT__ + 6. | |
1625 | elfcpp::DW_CFA_def_cfa_offset, 24, // DW_CFA_def_cfa_offset: 24. | |
1626 | elfcpp::DW_CFA_advance_loc + 10, // Advance 10 to __PLT__ + 16. | |
1627 | elfcpp::DW_CFA_def_cfa_expression, // DW_CFA_def_cfa_expression. | |
1628 | 11, // Block length. | |
1629 | elfcpp::DW_OP_breg7, 8, // Push %rsp + 8. | |
1630 | elfcpp::DW_OP_breg16, 0, // Push %rip. | |
1631 | elfcpp::DW_OP_lit15, // Push 0xf. | |
1632 | elfcpp::DW_OP_and, // & (%rip & 0xf). | |
1633 | elfcpp::DW_OP_lit11, // Push 0xb. | |
1634 | elfcpp::DW_OP_ge, // >= ((%rip & 0xf) >= 0xb) | |
1635 | elfcpp::DW_OP_lit3, // Push 3. | |
1636 | elfcpp::DW_OP_shl, // << (((%rip & 0xf) >= 0xb) << 3) | |
1637 | elfcpp::DW_OP_plus, // + ((((%rip&0xf)>=0xb)<<3)+%rsp+8 | |
1638 | elfcpp::DW_CFA_nop, // Align to 32 bytes. | |
1639 | elfcpp::DW_CFA_nop, | |
1640 | elfcpp::DW_CFA_nop, | |
1641 | elfcpp::DW_CFA_nop | |
1642 | }; | |
1643 | ||
2e30d253 ILT |
1644 | // Write out the PLT. This uses the hand-coded instructions above, |
1645 | // and adjusts them as needed. This is specified by the AMD64 ABI. | |
1646 | ||
fc51264f | 1647 | template<int size> |
2e30d253 | 1648 | void |
fc51264f | 1649 | Output_data_plt_x86_64<size>::do_write(Output_file* of) |
2e30d253 | 1650 | { |
2ea97941 | 1651 | const off_t offset = this->offset(); |
fe8718a4 ILT |
1652 | const section_size_type oview_size = |
1653 | convert_to_section_size_type(this->data_size()); | |
2ea97941 | 1654 | unsigned char* const oview = of->get_output_view(offset, oview_size); |
2e30d253 ILT |
1655 | |
1656 | const off_t got_file_offset = this->got_plt_->offset(); | |
67181c72 ILT |
1657 | gold_assert(parameters->incremental_update() |
1658 | || (got_file_offset + this->got_plt_->data_size() | |
1659 | == this->got_irelative_->offset())); | |
fe8718a4 | 1660 | const section_size_type got_size = |
67181c72 ILT |
1661 | convert_to_section_size_type(this->got_plt_->data_size() |
1662 | + this->got_irelative_->data_size()); | |
2e30d253 ILT |
1663 | unsigned char* const got_view = of->get_output_view(got_file_offset, |
1664 | got_size); | |
1665 | ||
1666 | unsigned char* pov = oview; | |
1667 | ||
c2b45e22 | 1668 | // The base address of the .plt section. |
fc51264f | 1669 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address = this->address(); |
c2b45e22 | 1670 | // The base address of the .got section. |
fc51264f | 1671 | typename elfcpp::Elf_types<size>::Elf_Addr got_base = this->got_->address(); |
c2b45e22 CC |
1672 | // The base address of the PLT portion of the .got section, |
1673 | // which is where the GOT pointer will point, and where the | |
1674 | // three reserved GOT entries are located. | |
fc51264f L |
1675 | typename elfcpp::Elf_types<size>::Elf_Addr got_address |
1676 | = this->got_plt_->address(); | |
2e30d253 | 1677 | |
2e702c99 RM |
1678 | this->fill_first_plt_entry(pov, got_address, plt_address); |
1679 | pov += this->get_plt_entry_size(); | |
2e30d253 | 1680 | |
57b2284c CC |
1681 | // The first three entries in the GOT are reserved, and are written |
1682 | // by Output_data_got_plt_x86_64::do_write. | |
1683 | unsigned char* got_pov = got_view + 24; | |
2e30d253 | 1684 | |
2e702c99 | 1685 | unsigned int plt_offset = this->get_plt_entry_size(); |
2e30d253 | 1686 | unsigned int got_offset = 24; |
67181c72 | 1687 | const unsigned int count = this->count_ + this->irelative_count_; |
2e30d253 ILT |
1688 | for (unsigned int plt_index = 0; |
1689 | plt_index < count; | |
1690 | ++plt_index, | |
2e702c99 | 1691 | pov += this->get_plt_entry_size(), |
2e30d253 | 1692 | got_pov += 8, |
2e702c99 | 1693 | plt_offset += this->get_plt_entry_size(), |
2e30d253 ILT |
1694 | got_offset += 8) |
1695 | { | |
1696 | // Set and adjust the PLT entry itself. | |
2e702c99 RM |
1697 | unsigned int lazy_offset = this->fill_plt_entry(pov, |
1698 | got_address, plt_address, | |
1699 | got_offset, plt_offset, | |
1700 | plt_index); | |
2e30d253 ILT |
1701 | |
1702 | // Set the entry in the GOT. | |
2e702c99 RM |
1703 | elfcpp::Swap<64, false>::writeval(got_pov, |
1704 | plt_address + plt_offset + lazy_offset); | |
2e30d253 ILT |
1705 | } |
1706 | ||
c2b45e22 CC |
1707 | if (this->has_tlsdesc_entry()) |
1708 | { | |
1709 | // Set and adjust the reserved TLSDESC PLT entry. | |
1710 | unsigned int tlsdesc_got_offset = this->get_tlsdesc_got_offset(); | |
2e702c99 RM |
1711 | this->fill_tlsdesc_entry(pov, got_address, plt_address, got_base, |
1712 | tlsdesc_got_offset, plt_offset); | |
1713 | pov += this->get_plt_entry_size(); | |
c2b45e22 CC |
1714 | } |
1715 | ||
fe8718a4 ILT |
1716 | gold_assert(static_cast<section_size_type>(pov - oview) == oview_size); |
1717 | gold_assert(static_cast<section_size_type>(got_pov - got_view) == got_size); | |
2e30d253 | 1718 | |
2ea97941 | 1719 | of->write_output_view(offset, oview_size, oview); |
2e30d253 ILT |
1720 | of->write_output_view(got_file_offset, got_size, got_view); |
1721 | } | |
1722 | ||
c2b45e22 | 1723 | // Create the PLT section. |
2e30d253 | 1724 | |
fc51264f | 1725 | template<int size> |
2e30d253 | 1726 | void |
fc51264f | 1727 | Target_x86_64<size>::make_plt_section(Symbol_table* symtab, Layout* layout) |
2e30d253 | 1728 | { |
2e30d253 ILT |
1729 | if (this->plt_ == NULL) |
1730 | { | |
1731 | // Create the GOT sections first. | |
1732 | this->got_section(symtab, layout); | |
1733 | ||
2e702c99 RM |
1734 | this->plt_ = this->make_data_plt(layout, this->got_, this->got_plt_, |
1735 | this->got_irelative_); | |
1736 | ||
1737 | // Add unwind information if requested. | |
1738 | if (parameters->options().ld_generated_unwind_info()) | |
1739 | this->plt_->add_eh_frame(layout); | |
1740 | ||
2e30d253 ILT |
1741 | layout->add_output_section_data(".plt", elfcpp::SHT_PROGBITS, |
1742 | (elfcpp::SHF_ALLOC | |
1743 | | elfcpp::SHF_EXECINSTR), | |
22f0da72 | 1744 | this->plt_, ORDER_PLT, false); |
7223e9ca ILT |
1745 | |
1746 | // Make the sh_info field of .rela.plt point to .plt. | |
1747 | Output_section* rela_plt_os = this->plt_->rela_plt()->output_section(); | |
1748 | rela_plt_os->set_info_section(this->plt_->output_section()); | |
2e30d253 | 1749 | } |
c2b45e22 CC |
1750 | } |
1751 | ||
e291e7b9 ILT |
1752 | // Return the section for TLSDESC relocations. |
1753 | ||
fc51264f L |
1754 | template<int size> |
1755 | typename Target_x86_64<size>::Reloc_section* | |
1756 | Target_x86_64<size>::rela_tlsdesc_section(Layout* layout) const | |
e291e7b9 ILT |
1757 | { |
1758 | return this->plt_section()->rela_tlsdesc(layout); | |
1759 | } | |
1760 | ||
c2b45e22 CC |
1761 | // Create a PLT entry for a global symbol. |
1762 | ||
fc51264f | 1763 | template<int size> |
c2b45e22 | 1764 | void |
fc51264f L |
1765 | Target_x86_64<size>::make_plt_entry(Symbol_table* symtab, Layout* layout, |
1766 | Symbol* gsym) | |
c2b45e22 CC |
1767 | { |
1768 | if (gsym->has_plt_offset()) | |
1769 | return; | |
1770 | ||
1771 | if (this->plt_ == NULL) | |
1772 | this->make_plt_section(symtab, layout); | |
2e30d253 | 1773 | |
67181c72 | 1774 | this->plt_->add_entry(symtab, layout, gsym); |
2e30d253 ILT |
1775 | } |
1776 | ||
7223e9ca ILT |
1777 | // Make a PLT entry for a local STT_GNU_IFUNC symbol. |
1778 | ||
fc51264f | 1779 | template<int size> |
7223e9ca | 1780 | void |
fc51264f L |
1781 | Target_x86_64<size>::make_local_ifunc_plt_entry( |
1782 | Symbol_table* symtab, Layout* layout, | |
1783 | Sized_relobj_file<size, false>* relobj, | |
1784 | unsigned int local_sym_index) | |
7223e9ca ILT |
1785 | { |
1786 | if (relobj->local_has_plt_offset(local_sym_index)) | |
1787 | return; | |
1788 | if (this->plt_ == NULL) | |
1789 | this->make_plt_section(symtab, layout); | |
67181c72 ILT |
1790 | unsigned int plt_offset = this->plt_->add_local_ifunc_entry(symtab, layout, |
1791 | relobj, | |
7223e9ca ILT |
1792 | local_sym_index); |
1793 | relobj->set_local_plt_offset(local_sym_index, plt_offset); | |
1794 | } | |
1795 | ||
0e70b911 CC |
1796 | // Return the number of entries in the PLT. |
1797 | ||
fc51264f | 1798 | template<int size> |
0e70b911 | 1799 | unsigned int |
fc51264f | 1800 | Target_x86_64<size>::plt_entry_count() const |
0e70b911 CC |
1801 | { |
1802 | if (this->plt_ == NULL) | |
1803 | return 0; | |
1804 | return this->plt_->entry_count(); | |
1805 | } | |
1806 | ||
1807 | // Return the offset of the first non-reserved PLT entry. | |
1808 | ||
fc51264f | 1809 | template<int size> |
0e70b911 | 1810 | unsigned int |
fc51264f | 1811 | Target_x86_64<size>::first_plt_entry_offset() const |
0e70b911 | 1812 | { |
2e702c99 | 1813 | return this->plt_->first_plt_entry_offset(); |
0e70b911 CC |
1814 | } |
1815 | ||
1816 | // Return the size of each PLT entry. | |
1817 | ||
fc51264f | 1818 | template<int size> |
0e70b911 | 1819 | unsigned int |
fc51264f | 1820 | Target_x86_64<size>::plt_entry_size() const |
0e70b911 | 1821 | { |
2e702c99 | 1822 | return this->plt_->get_plt_entry_size(); |
0e70b911 CC |
1823 | } |
1824 | ||
4829d394 CC |
1825 | // Create the GOT and PLT sections for an incremental update. |
1826 | ||
fc51264f | 1827 | template<int size> |
dd74ae06 | 1828 | Output_data_got_base* |
fc51264f | 1829 | Target_x86_64<size>::init_got_plt_for_update(Symbol_table* symtab, |
4829d394 CC |
1830 | Layout* layout, |
1831 | unsigned int got_count, | |
1832 | unsigned int plt_count) | |
1833 | { | |
1834 | gold_assert(this->got_ == NULL); | |
1835 | ||
1836 | this->got_ = new Output_data_got<64, false>(got_count * 8); | |
1837 | layout->add_output_section_data(".got", elfcpp::SHT_PROGBITS, | |
1838 | (elfcpp::SHF_ALLOC | |
1839 | | elfcpp::SHF_WRITE), | |
1840 | this->got_, ORDER_RELRO_LAST, | |
1841 | true); | |
1842 | ||
1843 | // Add the three reserved entries. | |
57b2284c | 1844 | this->got_plt_ = new Output_data_got_plt_x86_64(layout, (plt_count + 3) * 8); |
4829d394 CC |
1845 | layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS, |
1846 | (elfcpp::SHF_ALLOC | |
1847 | | elfcpp::SHF_WRITE), | |
1848 | this->got_plt_, ORDER_NON_RELRO_FIRST, | |
1849 | false); | |
1850 | ||
1851 | // Define _GLOBAL_OFFSET_TABLE_ at the start of the PLT. | |
1852 | this->global_offset_table_ = | |
1853 | symtab->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL, | |
1854 | Symbol_table::PREDEFINED, | |
1855 | this->got_plt_, | |
1856 | 0, 0, elfcpp::STT_OBJECT, | |
1857 | elfcpp::STB_LOCAL, | |
1858 | elfcpp::STV_HIDDEN, 0, | |
1859 | false, false); | |
1860 | ||
1861 | // If there are any TLSDESC relocations, they get GOT entries in | |
1862 | // .got.plt after the jump slot entries. | |
1863 | // FIXME: Get the count for TLSDESC entries. | |
1864 | this->got_tlsdesc_ = new Output_data_got<64, false>(0); | |
1865 | layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS, | |
1866 | elfcpp::SHF_ALLOC | elfcpp::SHF_WRITE, | |
1867 | this->got_tlsdesc_, | |
1868 | ORDER_NON_RELRO_FIRST, false); | |
1869 | ||
67181c72 ILT |
1870 | // If there are any IRELATIVE relocations, they get GOT entries in |
1871 | // .got.plt after the jump slot and TLSDESC entries. | |
1872 | this->got_irelative_ = new Output_data_space(0, 8, "** GOT IRELATIVE PLT"); | |
1873 | layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS, | |
1874 | elfcpp::SHF_ALLOC | elfcpp::SHF_WRITE, | |
1875 | this->got_irelative_, | |
1876 | ORDER_NON_RELRO_FIRST, false); | |
1877 | ||
4829d394 | 1878 | // Create the PLT section. |
2e702c99 RM |
1879 | this->plt_ = this->make_data_plt(layout, this->got_, |
1880 | this->got_plt_, | |
1881 | this->got_irelative_, | |
1882 | plt_count); | |
1883 | ||
1884 | // Add unwind information if requested. | |
1885 | if (parameters->options().ld_generated_unwind_info()) | |
1886 | this->plt_->add_eh_frame(layout); | |
1887 | ||
4829d394 CC |
1888 | layout->add_output_section_data(".plt", elfcpp::SHT_PROGBITS, |
1889 | elfcpp::SHF_ALLOC | elfcpp::SHF_EXECINSTR, | |
1890 | this->plt_, ORDER_PLT, false); | |
1891 | ||
1892 | // Make the sh_info field of .rela.plt point to .plt. | |
1893 | Output_section* rela_plt_os = this->plt_->rela_plt()->output_section(); | |
1894 | rela_plt_os->set_info_section(this->plt_->output_section()); | |
1895 | ||
6fa2a40b CC |
1896 | // Create the rela_dyn section. |
1897 | this->rela_dyn_section(layout); | |
1898 | ||
4829d394 CC |
1899 | return this->got_; |
1900 | } | |
1901 | ||
6fa2a40b CC |
1902 | // Reserve a GOT entry for a local symbol, and regenerate any |
1903 | // necessary dynamic relocations. | |
1904 | ||
fc51264f | 1905 | template<int size> |
6fa2a40b | 1906 | void |
fc51264f | 1907 | Target_x86_64<size>::reserve_local_got_entry( |
6fa2a40b | 1908 | unsigned int got_index, |
fc51264f | 1909 | Sized_relobj<size, false>* obj, |
6fa2a40b CC |
1910 | unsigned int r_sym, |
1911 | unsigned int got_type) | |
1912 | { | |
1913 | unsigned int got_offset = got_index * 8; | |
1914 | Reloc_section* rela_dyn = this->rela_dyn_section(NULL); | |
1915 | ||
1916 | this->got_->reserve_local(got_index, obj, r_sym, got_type); | |
1917 | switch (got_type) | |
1918 | { | |
1919 | case GOT_TYPE_STANDARD: | |
1920 | if (parameters->options().output_is_position_independent()) | |
1921 | rela_dyn->add_local_relative(obj, r_sym, elfcpp::R_X86_64_RELATIVE, | |
397b129b | 1922 | this->got_, got_offset, 0, false); |
6fa2a40b CC |
1923 | break; |
1924 | case GOT_TYPE_TLS_OFFSET: | |
1925 | rela_dyn->add_local(obj, r_sym, elfcpp::R_X86_64_TPOFF64, | |
1926 | this->got_, got_offset, 0); | |
1927 | break; | |
1928 | case GOT_TYPE_TLS_PAIR: | |
1929 | this->got_->reserve_slot(got_index + 1); | |
1930 | rela_dyn->add_local(obj, r_sym, elfcpp::R_X86_64_DTPMOD64, | |
1931 | this->got_, got_offset, 0); | |
1932 | break; | |
1933 | case GOT_TYPE_TLS_DESC: | |
1934 | gold_fatal(_("TLS_DESC not yet supported for incremental linking")); | |
1935 | // this->got_->reserve_slot(got_index + 1); | |
1936 | // rela_dyn->add_target_specific(elfcpp::R_X86_64_TLSDESC, arg, | |
1937 | // this->got_, got_offset, 0); | |
1938 | break; | |
1939 | default: | |
1940 | gold_unreachable(); | |
1941 | } | |
1942 | } | |
1943 | ||
1944 | // Reserve a GOT entry for a global symbol, and regenerate any | |
1945 | // necessary dynamic relocations. | |
1946 | ||
fc51264f | 1947 | template<int size> |
6fa2a40b | 1948 | void |
fc51264f L |
1949 | Target_x86_64<size>::reserve_global_got_entry(unsigned int got_index, |
1950 | Symbol* gsym, | |
1951 | unsigned int got_type) | |
6fa2a40b CC |
1952 | { |
1953 | unsigned int got_offset = got_index * 8; | |
1954 | Reloc_section* rela_dyn = this->rela_dyn_section(NULL); | |
1955 | ||
1956 | this->got_->reserve_global(got_index, gsym, got_type); | |
1957 | switch (got_type) | |
1958 | { | |
1959 | case GOT_TYPE_STANDARD: | |
1960 | if (!gsym->final_value_is_known()) | |
1961 | { | |
1962 | if (gsym->is_from_dynobj() | |
1963 | || gsym->is_undefined() | |
1964 | || gsym->is_preemptible() | |
1965 | || gsym->type() == elfcpp::STT_GNU_IFUNC) | |
1966 | rela_dyn->add_global(gsym, elfcpp::R_X86_64_GLOB_DAT, | |
1967 | this->got_, got_offset, 0); | |
1968 | else | |
1969 | rela_dyn->add_global_relative(gsym, elfcpp::R_X86_64_RELATIVE, | |
13cf9988 | 1970 | this->got_, got_offset, 0, false); |
6fa2a40b CC |
1971 | } |
1972 | break; | |
1973 | case GOT_TYPE_TLS_OFFSET: | |
1974 | rela_dyn->add_global_relative(gsym, elfcpp::R_X86_64_TPOFF64, | |
13cf9988 | 1975 | this->got_, got_offset, 0, false); |
6fa2a40b CC |
1976 | break; |
1977 | case GOT_TYPE_TLS_PAIR: | |
1978 | this->got_->reserve_slot(got_index + 1); | |
1979 | rela_dyn->add_global_relative(gsym, elfcpp::R_X86_64_DTPMOD64, | |
13cf9988 | 1980 | this->got_, got_offset, 0, false); |
6fa2a40b | 1981 | rela_dyn->add_global_relative(gsym, elfcpp::R_X86_64_DTPOFF64, |
13cf9988 | 1982 | this->got_, got_offset + 8, 0, false); |
6fa2a40b CC |
1983 | break; |
1984 | case GOT_TYPE_TLS_DESC: | |
1985 | this->got_->reserve_slot(got_index + 1); | |
1986 | rela_dyn->add_global_relative(gsym, elfcpp::R_X86_64_TLSDESC, | |
13cf9988 | 1987 | this->got_, got_offset, 0, false); |
6fa2a40b CC |
1988 | break; |
1989 | default: | |
1990 | gold_unreachable(); | |
1991 | } | |
1992 | } | |
1993 | ||
4829d394 CC |
1994 | // Register an existing PLT entry for a global symbol. |
1995 | ||
fc51264f | 1996 | template<int size> |
4829d394 | 1997 | void |
fc51264f L |
1998 | Target_x86_64<size>::register_global_plt_entry(Symbol_table* symtab, |
1999 | Layout* layout, | |
2000 | unsigned int plt_index, | |
2001 | Symbol* gsym) | |
4829d394 CC |
2002 | { |
2003 | gold_assert(this->plt_ != NULL); | |
2004 | gold_assert(!gsym->has_plt_offset()); | |
2005 | ||
2006 | this->plt_->reserve_slot(plt_index); | |
2007 | ||
2008 | gsym->set_plt_offset((plt_index + 1) * this->plt_entry_size()); | |
2009 | ||
2010 | unsigned int got_offset = (plt_index + 3) * 8; | |
67181c72 | 2011 | this->plt_->add_relocation(symtab, layout, gsym, got_offset); |
4829d394 CC |
2012 | } |
2013 | ||
26d3c67d CC |
2014 | // Force a COPY relocation for a given symbol. |
2015 | ||
fc51264f | 2016 | template<int size> |
26d3c67d | 2017 | void |
fc51264f | 2018 | Target_x86_64<size>::emit_copy_reloc( |
26d3c67d CC |
2019 | Symbol_table* symtab, Symbol* sym, Output_section* os, off_t offset) |
2020 | { | |
2021 | this->copy_relocs_.emit_copy_reloc(symtab, | |
fc51264f | 2022 | symtab->get_sized_symbol<size>(sym), |
26d3c67d CC |
2023 | os, |
2024 | offset, | |
2025 | this->rela_dyn_section(NULL)); | |
2026 | } | |
2027 | ||
9fa33bee | 2028 | // Define the _TLS_MODULE_BASE_ symbol in the TLS segment. |
edfbb029 | 2029 | |
fc51264f | 2030 | template<int size> |
edfbb029 | 2031 | void |
fc51264f L |
2032 | Target_x86_64<size>::define_tls_base_symbol(Symbol_table* symtab, |
2033 | Layout* layout) | |
edfbb029 CC |
2034 | { |
2035 | if (this->tls_base_symbol_defined_) | |
2036 | return; | |
2037 | ||
2038 | Output_segment* tls_segment = layout->tls_segment(); | |
2039 | if (tls_segment != NULL) | |
2040 | { | |
183fd0e3 | 2041 | bool is_exec = parameters->options().output_is_executable(); |
edfbb029 | 2042 | symtab->define_in_output_segment("_TLS_MODULE_BASE_", NULL, |
99fff23b | 2043 | Symbol_table::PREDEFINED, |
edfbb029 CC |
2044 | tls_segment, 0, 0, |
2045 | elfcpp::STT_TLS, | |
2046 | elfcpp::STB_LOCAL, | |
2047 | elfcpp::STV_HIDDEN, 0, | |
183fd0e3 AO |
2048 | (is_exec |
2049 | ? Symbol::SEGMENT_END | |
2050 | : Symbol::SEGMENT_START), | |
2051 | true); | |
edfbb029 CC |
2052 | } |
2053 | this->tls_base_symbol_defined_ = true; | |
2054 | } | |
2055 | ||
c2b45e22 CC |
2056 | // Create the reserved PLT and GOT entries for the TLS descriptor resolver. |
2057 | ||
fc51264f | 2058 | template<int size> |
c2b45e22 | 2059 | void |
fc51264f | 2060 | Target_x86_64<size>::reserve_tlsdesc_entries(Symbol_table* symtab, |
2e702c99 | 2061 | Layout* layout) |
c2b45e22 CC |
2062 | { |
2063 | if (this->plt_ == NULL) | |
2064 | this->make_plt_section(symtab, layout); | |
2065 | ||
2066 | if (!this->plt_->has_tlsdesc_entry()) | |
2067 | { | |
2068 | // Allocate the TLSDESC_GOT entry. | |
2069 | Output_data_got<64, false>* got = this->got_section(symtab, layout); | |
2070 | unsigned int got_offset = got->add_constant(0); | |
2071 | ||
2072 | // Allocate the TLSDESC_PLT entry. | |
2073 | this->plt_->reserve_tlsdesc_entry(got_offset); | |
2074 | } | |
2075 | } | |
2076 | ||
31d60480 ILT |
2077 | // Create a GOT entry for the TLS module index. |
2078 | ||
fc51264f | 2079 | template<int size> |
31d60480 | 2080 | unsigned int |
fc51264f L |
2081 | Target_x86_64<size>::got_mod_index_entry(Symbol_table* symtab, Layout* layout, |
2082 | Sized_relobj_file<size, false>* object) | |
31d60480 ILT |
2083 | { |
2084 | if (this->got_mod_index_offset_ == -1U) | |
2085 | { | |
2086 | gold_assert(symtab != NULL && layout != NULL && object != NULL); | |
2087 | Reloc_section* rela_dyn = this->rela_dyn_section(layout); | |
2088 | Output_data_got<64, false>* got = this->got_section(symtab, layout); | |
2089 | unsigned int got_offset = got->add_constant(0); | |
2090 | rela_dyn->add_local(object, 0, elfcpp::R_X86_64_DTPMOD64, got, | |
2e702c99 | 2091 | got_offset, 0); |
009a67a2 | 2092 | got->add_constant(0); |
31d60480 ILT |
2093 | this->got_mod_index_offset_ = got_offset; |
2094 | } | |
2095 | return this->got_mod_index_offset_; | |
2096 | } | |
2097 | ||
2e30d253 ILT |
2098 | // Optimize the TLS relocation type based on what we know about the |
2099 | // symbol. IS_FINAL is true if the final address of this symbol is | |
2100 | // known at link time. | |
2101 | ||
fc51264f | 2102 | template<int size> |
e041f13d | 2103 | tls::Tls_optimization |
fc51264f | 2104 | Target_x86_64<size>::optimize_tls_reloc(bool is_final, int r_type) |
2e30d253 | 2105 | { |
2e30d253 ILT |
2106 | // If we are generating a shared library, then we can't do anything |
2107 | // in the linker. | |
8851ecca | 2108 | if (parameters->options().shared()) |
e041f13d | 2109 | return tls::TLSOPT_NONE; |
2e30d253 ILT |
2110 | |
2111 | switch (r_type) | |
2112 | { | |
2113 | case elfcpp::R_X86_64_TLSGD: | |
e041f13d ILT |
2114 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: |
2115 | case elfcpp::R_X86_64_TLSDESC_CALL: | |
2116 | // These are General-Dynamic which permits fully general TLS | |
2e30d253 ILT |
2117 | // access. Since we know that we are generating an executable, |
2118 | // we can convert this to Initial-Exec. If we also know that | |
2119 | // this is a local symbol, we can further switch to Local-Exec. | |
2120 | if (is_final) | |
e041f13d ILT |
2121 | return tls::TLSOPT_TO_LE; |
2122 | return tls::TLSOPT_TO_IE; | |
2e30d253 | 2123 | |
d61c17ea | 2124 | case elfcpp::R_X86_64_TLSLD: |
2e30d253 ILT |
2125 | // This is Local-Dynamic, which refers to a local symbol in the |
2126 | // dynamic TLS block. Since we know that we generating an | |
2127 | // executable, we can switch to Local-Exec. | |
e041f13d | 2128 | return tls::TLSOPT_TO_LE; |
2e30d253 | 2129 | |
0ffd9845 | 2130 | case elfcpp::R_X86_64_DTPOFF32: |
0ffd9845 ILT |
2131 | case elfcpp::R_X86_64_DTPOFF64: |
2132 | // Another Local-Dynamic reloc. | |
e041f13d | 2133 | return tls::TLSOPT_TO_LE; |
0ffd9845 | 2134 | |
d61c17ea | 2135 | case elfcpp::R_X86_64_GOTTPOFF: |
2e30d253 ILT |
2136 | // These are Initial-Exec relocs which get the thread offset |
2137 | // from the GOT. If we know that we are linking against the | |
2138 | // local symbol, we can switch to Local-Exec, which links the | |
2139 | // thread offset into the instruction. | |
2140 | if (is_final) | |
e041f13d ILT |
2141 | return tls::TLSOPT_TO_LE; |
2142 | return tls::TLSOPT_NONE; | |
2e30d253 | 2143 | |
d61c17ea | 2144 | case elfcpp::R_X86_64_TPOFF32: |
2e30d253 ILT |
2145 | // When we already have Local-Exec, there is nothing further we |
2146 | // can do. | |
e041f13d | 2147 | return tls::TLSOPT_NONE; |
2e30d253 ILT |
2148 | |
2149 | default: | |
2150 | gold_unreachable(); | |
2151 | } | |
2e30d253 ILT |
2152 | } |
2153 | ||
95a2c8d6 RS |
2154 | // Get the Reference_flags for a particular relocation. |
2155 | ||
fc51264f | 2156 | template<int size> |
95a2c8d6 | 2157 | int |
fc51264f | 2158 | Target_x86_64<size>::Scan::get_reference_flags(unsigned int r_type) |
95a2c8d6 RS |
2159 | { |
2160 | switch (r_type) | |
2161 | { | |
2162 | case elfcpp::R_X86_64_NONE: | |
2163 | case elfcpp::R_X86_64_GNU_VTINHERIT: | |
2164 | case elfcpp::R_X86_64_GNU_VTENTRY: | |
2165 | case elfcpp::R_X86_64_GOTPC32: | |
2166 | case elfcpp::R_X86_64_GOTPC64: | |
2167 | // No symbol reference. | |
2168 | return 0; | |
2169 | ||
2170 | case elfcpp::R_X86_64_64: | |
2171 | case elfcpp::R_X86_64_32: | |
2172 | case elfcpp::R_X86_64_32S: | |
2173 | case elfcpp::R_X86_64_16: | |
2174 | case elfcpp::R_X86_64_8: | |
2175 | return Symbol::ABSOLUTE_REF; | |
2176 | ||
2177 | case elfcpp::R_X86_64_PC64: | |
2178 | case elfcpp::R_X86_64_PC32: | |
f49fe902 | 2179 | case elfcpp::R_X86_64_PC32_BND: |
95a2c8d6 RS |
2180 | case elfcpp::R_X86_64_PC16: |
2181 | case elfcpp::R_X86_64_PC8: | |
2182 | case elfcpp::R_X86_64_GOTOFF64: | |
2183 | return Symbol::RELATIVE_REF; | |
2184 | ||
2185 | case elfcpp::R_X86_64_PLT32: | |
f49fe902 | 2186 | case elfcpp::R_X86_64_PLT32_BND: |
95a2c8d6 RS |
2187 | case elfcpp::R_X86_64_PLTOFF64: |
2188 | return Symbol::FUNCTION_CALL | Symbol::RELATIVE_REF; | |
2189 | ||
2190 | case elfcpp::R_X86_64_GOT64: | |
2191 | case elfcpp::R_X86_64_GOT32: | |
2192 | case elfcpp::R_X86_64_GOTPCREL64: | |
2193 | case elfcpp::R_X86_64_GOTPCREL: | |
2194 | case elfcpp::R_X86_64_GOTPLT64: | |
2195 | // Absolute in GOT. | |
2196 | return Symbol::ABSOLUTE_REF; | |
2197 | ||
2198 | case elfcpp::R_X86_64_TLSGD: // Global-dynamic | |
2199 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: // Global-dynamic (from ~oliva url) | |
2200 | case elfcpp::R_X86_64_TLSDESC_CALL: | |
2201 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic | |
2202 | case elfcpp::R_X86_64_DTPOFF32: | |
2203 | case elfcpp::R_X86_64_DTPOFF64: | |
2204 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec | |
2205 | case elfcpp::R_X86_64_TPOFF32: // Local-exec | |
2206 | return Symbol::TLS_REF; | |
2207 | ||
2208 | case elfcpp::R_X86_64_COPY: | |
2209 | case elfcpp::R_X86_64_GLOB_DAT: | |
2210 | case elfcpp::R_X86_64_JUMP_SLOT: | |
2211 | case elfcpp::R_X86_64_RELATIVE: | |
2212 | case elfcpp::R_X86_64_IRELATIVE: | |
2213 | case elfcpp::R_X86_64_TPOFF64: | |
2214 | case elfcpp::R_X86_64_DTPMOD64: | |
2215 | case elfcpp::R_X86_64_TLSDESC: | |
2216 | case elfcpp::R_X86_64_SIZE32: | |
2217 | case elfcpp::R_X86_64_SIZE64: | |
2218 | default: | |
2219 | // Not expected. We will give an error later. | |
2220 | return 0; | |
2221 | } | |
2222 | } | |
2223 | ||
e041f13d ILT |
2224 | // Report an unsupported relocation against a local symbol. |
2225 | ||
fc51264f | 2226 | template<int size> |
e041f13d | 2227 | void |
fc51264f L |
2228 | Target_x86_64<size>::Scan::unsupported_reloc_local( |
2229 | Sized_relobj_file<size, false>* object, | |
6fa2a40b | 2230 | unsigned int r_type) |
e041f13d | 2231 | { |
75f2446e ILT |
2232 | gold_error(_("%s: unsupported reloc %u against local symbol"), |
2233 | object->name().c_str(), r_type); | |
e041f13d ILT |
2234 | } |
2235 | ||
a036edd8 ILT |
2236 | // We are about to emit a dynamic relocation of type R_TYPE. If the |
2237 | // dynamic linker does not support it, issue an error. The GNU linker | |
2238 | // only issues a non-PIC error for an allocated read-only section. | |
2239 | // Here we know the section is allocated, but we don't know that it is | |
2240 | // read-only. But we check for all the relocation types which the | |
2241 | // glibc dynamic linker supports, so it seems appropriate to issue an | |
a29b0dad ILT |
2242 | // error even if the section is not read-only. If GSYM is not NULL, |
2243 | // it is the symbol the relocation is against; if it is NULL, the | |
2244 | // relocation is against a local symbol. | |
a036edd8 | 2245 | |
fc51264f | 2246 | template<int size> |
a036edd8 | 2247 | void |
fc51264f L |
2248 | Target_x86_64<size>::Scan::check_non_pic(Relobj* object, unsigned int r_type, |
2249 | Symbol* gsym) | |
a036edd8 ILT |
2250 | { |
2251 | switch (r_type) | |
2252 | { | |
2fbb4320 ILT |
2253 | // These are the relocation types supported by glibc for x86_64 |
2254 | // which should always work. | |
a036edd8 | 2255 | case elfcpp::R_X86_64_RELATIVE: |
7223e9ca | 2256 | case elfcpp::R_X86_64_IRELATIVE: |
a036edd8 ILT |
2257 | case elfcpp::R_X86_64_GLOB_DAT: |
2258 | case elfcpp::R_X86_64_JUMP_SLOT: | |
2259 | case elfcpp::R_X86_64_DTPMOD64: | |
2260 | case elfcpp::R_X86_64_DTPOFF64: | |
2261 | case elfcpp::R_X86_64_TPOFF64: | |
2262 | case elfcpp::R_X86_64_64: | |
2fbb4320 ILT |
2263 | case elfcpp::R_X86_64_COPY: |
2264 | return; | |
2265 | ||
2266 | // glibc supports these reloc types, but they can overflow. | |
a036edd8 | 2267 | case elfcpp::R_X86_64_PC32: |
f49fe902 | 2268 | case elfcpp::R_X86_64_PC32_BND: |
a29b0dad ILT |
2269 | // A PC relative reference is OK against a local symbol or if |
2270 | // the symbol is defined locally. | |
2271 | if (gsym == NULL | |
2272 | || (!gsym->is_from_dynobj() | |
2273 | && !gsym->is_undefined() | |
2274 | && !gsym->is_preemptible())) | |
2275 | return; | |
2276 | /* Fall through. */ | |
2277 | case elfcpp::R_X86_64_32: | |
3660ff06 L |
2278 | // R_X86_64_32 is OK for x32. |
2279 | if (size == 32 && r_type == elfcpp::R_X86_64_32) | |
2280 | return; | |
2fbb4320 ILT |
2281 | if (this->issued_non_pic_error_) |
2282 | return; | |
2283 | gold_assert(parameters->options().output_is_position_independent()); | |
a29b0dad ILT |
2284 | if (gsym == NULL) |
2285 | object->error(_("requires dynamic R_X86_64_32 reloc which may " | |
2286 | "overflow at runtime; recompile with -fPIC")); | |
2287 | else | |
f49fe902 L |
2288 | { |
2289 | const char *r_name; | |
2290 | switch (r_type) | |
2291 | { | |
2292 | case elfcpp::R_X86_64_32: | |
2293 | r_name = "R_X86_64_32"; | |
2294 | break; | |
2295 | case elfcpp::R_X86_64_PC32: | |
2296 | r_name = "R_X86_64_PC32"; | |
2297 | break; | |
2298 | case elfcpp::R_X86_64_PC32_BND: | |
2299 | r_name = "R_X86_64_PC32_BND"; | |
2300 | break; | |
2301 | default: | |
2302 | gold_unreachable(); | |
2303 | break; | |
2304 | } | |
2305 | object->error(_("requires dynamic %s reloc against '%s' " | |
2306 | "which may overflow at runtime; recompile " | |
2307 | "with -fPIC"), | |
2308 | r_name, gsym->name()); | |
2309 | } | |
2fbb4320 | 2310 | this->issued_non_pic_error_ = true; |
a036edd8 ILT |
2311 | return; |
2312 | ||
2313 | default: | |
2314 | // This prevents us from issuing more than one error per reloc | |
2315 | // section. But we can still wind up issuing more than one | |
2316 | // error per object file. | |
2317 | if (this->issued_non_pic_error_) | |
2e702c99 | 2318 | return; |
33aea2fd | 2319 | gold_assert(parameters->options().output_is_position_independent()); |
a29b0dad | 2320 | object->error(_("requires unsupported dynamic reloc %u; " |
2e702c99 | 2321 | "recompile with -fPIC"), |
a29b0dad | 2322 | r_type); |
a036edd8 ILT |
2323 | this->issued_non_pic_error_ = true; |
2324 | return; | |
2325 | ||
2326 | case elfcpp::R_X86_64_NONE: | |
2327 | gold_unreachable(); | |
2328 | } | |
2329 | } | |
2330 | ||
7223e9ca ILT |
2331 | // Return whether we need to make a PLT entry for a relocation of the |
2332 | // given type against a STT_GNU_IFUNC symbol. | |
2333 | ||
fc51264f | 2334 | template<int size> |
7223e9ca | 2335 | bool |
fc51264f L |
2336 | Target_x86_64<size>::Scan::reloc_needs_plt_for_ifunc( |
2337 | Sized_relobj_file<size, false>* object, | |
6fa2a40b | 2338 | unsigned int r_type) |
7223e9ca | 2339 | { |
95a2c8d6 RS |
2340 | int flags = Scan::get_reference_flags(r_type); |
2341 | if (flags & Symbol::TLS_REF) | |
2342 | gold_error(_("%s: unsupported TLS reloc %u for IFUNC symbol"), | |
2e702c99 | 2343 | object->name().c_str(), r_type); |
95a2c8d6 | 2344 | return flags != 0; |
7223e9ca ILT |
2345 | } |
2346 | ||
2e30d253 ILT |
2347 | // Scan a relocation for a local symbol. |
2348 | ||
fc51264f | 2349 | template<int size> |
2e30d253 | 2350 | inline void |
fc51264f L |
2351 | Target_x86_64<size>::Scan::local(Symbol_table* symtab, |
2352 | Layout* layout, | |
2353 | Target_x86_64<size>* target, | |
2354 | Sized_relobj_file<size, false>* object, | |
2355 | unsigned int data_shndx, | |
2356 | Output_section* output_section, | |
2357 | const elfcpp::Rela<size, false>& reloc, | |
2358 | unsigned int r_type, | |
bfdfa4cd AM |
2359 | const elfcpp::Sym<size, false>& lsym, |
2360 | bool is_discarded) | |
2e30d253 | 2361 | { |
bfdfa4cd AM |
2362 | if (is_discarded) |
2363 | return; | |
2364 | ||
7223e9ca | 2365 | // A local STT_GNU_IFUNC symbol may require a PLT entry. |
397b129b CC |
2366 | bool is_ifunc = lsym.get_st_type() == elfcpp::STT_GNU_IFUNC; |
2367 | if (is_ifunc && this->reloc_needs_plt_for_ifunc(object, r_type)) | |
7223e9ca | 2368 | { |
fc51264f | 2369 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); |
7223e9ca ILT |
2370 | target->make_local_ifunc_plt_entry(symtab, layout, object, r_sym); |
2371 | } | |
2372 | ||
2e30d253 ILT |
2373 | switch (r_type) |
2374 | { | |
2375 | case elfcpp::R_X86_64_NONE: | |
6e5710ce ILT |
2376 | case elfcpp::R_X86_64_GNU_VTINHERIT: |
2377 | case elfcpp::R_X86_64_GNU_VTENTRY: | |
2e30d253 ILT |
2378 | break; |
2379 | ||
2380 | case elfcpp::R_X86_64_64: | |
d61c6bd4 | 2381 | // If building a shared library (or a position-independent |
dceae3c1 ILT |
2382 | // executable), we need to create a dynamic relocation for this |
2383 | // location. The relocation applied at link time will apply the | |
2384 | // link-time value, so we flag the location with an | |
2385 | // R_X86_64_RELATIVE relocation so the dynamic loader can | |
d61c6bd4 | 2386 | // relocate it easily. |
8851ecca | 2387 | if (parameters->options().output_is_position_independent()) |
2e702c99 RM |
2388 | { |
2389 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); | |
2390 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); | |
7223e9ca | 2391 | rela_dyn->add_local_relative(object, r_sym, |
62fe925a | 2392 | (size == 32 |
fd885f3a L |
2393 | ? elfcpp::R_X86_64_RELATIVE64 |
2394 | : elfcpp::R_X86_64_RELATIVE), | |
7223e9ca ILT |
2395 | output_section, data_shndx, |
2396 | reloc.get_r_offset(), | |
397b129b | 2397 | reloc.get_r_addend(), is_ifunc); |
2e702c99 | 2398 | } |
d61c6bd4 ILT |
2399 | break; |
2400 | ||
2e30d253 ILT |
2401 | case elfcpp::R_X86_64_32: |
2402 | case elfcpp::R_X86_64_32S: | |
2403 | case elfcpp::R_X86_64_16: | |
2404 | case elfcpp::R_X86_64_8: | |
96f2030e | 2405 | // If building a shared library (or a position-independent |
dceae3c1 ILT |
2406 | // executable), we need to create a dynamic relocation for this |
2407 | // location. We can't use an R_X86_64_RELATIVE relocation | |
2408 | // because that is always a 64-bit relocation. | |
8851ecca | 2409 | if (parameters->options().output_is_position_independent()) |
2e702c99 | 2410 | { |
3660ff06 L |
2411 | // Use R_X86_64_RELATIVE relocation for R_X86_64_32 under x32. |
2412 | if (size == 32 && r_type == elfcpp::R_X86_64_32) | |
2413 | { | |
2414 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); | |
2415 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); | |
2416 | rela_dyn->add_local_relative(object, r_sym, | |
2417 | elfcpp::R_X86_64_RELATIVE, | |
2418 | output_section, data_shndx, | |
2419 | reloc.get_r_offset(), | |
2420 | reloc.get_r_addend(), is_ifunc); | |
2421 | break; | |
2422 | } | |
2423 | ||
2e702c99 | 2424 | this->check_non_pic(object, r_type, NULL); |
a036edd8 | 2425 | |
2e702c99 | 2426 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); |
fc51264f | 2427 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); |
2e702c99 | 2428 | if (lsym.get_st_type() != elfcpp::STT_SECTION) |
d491d34e ILT |
2429 | rela_dyn->add_local(object, r_sym, r_type, output_section, |
2430 | data_shndx, reloc.get_r_offset(), | |
2431 | reloc.get_r_addend()); | |
2e702c99 RM |
2432 | else |
2433 | { | |
2434 | gold_assert(lsym.get_st_value() == 0); | |
d491d34e ILT |
2435 | unsigned int shndx = lsym.get_st_shndx(); |
2436 | bool is_ordinary; | |
2437 | shndx = object->adjust_sym_shndx(r_sym, shndx, | |
2438 | &is_ordinary); | |
2439 | if (!is_ordinary) | |
2440 | object->error(_("section symbol %u has bad shndx %u"), | |
2441 | r_sym, shndx); | |
2442 | else | |
2443 | rela_dyn->add_local_section(object, shndx, | |
2444 | r_type, output_section, | |
2445 | data_shndx, reloc.get_r_offset(), | |
2446 | reloc.get_r_addend()); | |
2e702c99 RM |
2447 | } |
2448 | } | |
2e30d253 ILT |
2449 | break; |
2450 | ||
2451 | case elfcpp::R_X86_64_PC64: | |
2452 | case elfcpp::R_X86_64_PC32: | |
f49fe902 | 2453 | case elfcpp::R_X86_64_PC32_BND: |
2e30d253 ILT |
2454 | case elfcpp::R_X86_64_PC16: |
2455 | case elfcpp::R_X86_64_PC8: | |
2456 | break; | |
2457 | ||
f389a824 | 2458 | case elfcpp::R_X86_64_PLT32: |
f49fe902 | 2459 | case elfcpp::R_X86_64_PLT32_BND: |
f389a824 ILT |
2460 | // Since we know this is a local symbol, we can handle this as a |
2461 | // PC32 reloc. | |
2462 | break; | |
2463 | ||
fdc2f80f | 2464 | case elfcpp::R_X86_64_GOTPC32: |
e822f2b1 | 2465 | case elfcpp::R_X86_64_GOTOFF64: |
fdc2f80f ILT |
2466 | case elfcpp::R_X86_64_GOTPC64: |
2467 | case elfcpp::R_X86_64_PLTOFF64: | |
2e30d253 ILT |
2468 | // We need a GOT section. |
2469 | target->got_section(symtab, layout); | |
ee9e9e86 ILT |
2470 | // For PLTOFF64, we'd normally want a PLT section, but since we |
2471 | // know this is a local symbol, no PLT is needed. | |
2e30d253 ILT |
2472 | break; |
2473 | ||
0ffd9845 ILT |
2474 | case elfcpp::R_X86_64_GOT64: |
2475 | case elfcpp::R_X86_64_GOT32: | |
2476 | case elfcpp::R_X86_64_GOTPCREL64: | |
2477 | case elfcpp::R_X86_64_GOTPCREL: | |
ee9e9e86 | 2478 | case elfcpp::R_X86_64_GOTPLT64: |
0ffd9845 | 2479 | { |
1fa29f10 | 2480 | // The symbol requires a GOT section. |
2e702c99 | 2481 | Output_data_got<64, false>* got = target->got_section(symtab, layout); |
1fa29f10 IT |
2482 | |
2483 | // If the relocation symbol isn't IFUNC, | |
2484 | // and is local, then we will convert | |
2485 | // mov foo@GOTPCREL(%rip), %reg | |
2486 | // to lea foo(%rip), %reg. | |
2487 | // in Relocate::relocate. | |
2488 | if (r_type == elfcpp::R_X86_64_GOTPCREL | |
2489 | && reloc.get_r_offset() >= 2 | |
2490 | && !is_ifunc) | |
2491 | { | |
2492 | section_size_type stype; | |
2493 | const unsigned char* view = object->section_contents(data_shndx, | |
2494 | &stype, true); | |
2495 | if (view[reloc.get_r_offset() - 2] == 0x8b) | |
2496 | break; | |
2497 | } | |
2498 | ||
2499 | ||
2500 | // The symbol requires a GOT entry. | |
2e702c99 | 2501 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); |
7223e9ca ILT |
2502 | |
2503 | // For a STT_GNU_IFUNC symbol we want the PLT offset. That | |
2504 | // lets function pointers compare correctly with shared | |
2505 | // libraries. Otherwise we would need an IRELATIVE reloc. | |
2506 | bool is_new; | |
397b129b | 2507 | if (is_ifunc) |
7223e9ca ILT |
2508 | is_new = got->add_local_plt(object, r_sym, GOT_TYPE_STANDARD); |
2509 | else | |
2510 | is_new = got->add_local(object, r_sym, GOT_TYPE_STANDARD); | |
2e702c99 RM |
2511 | if (is_new) |
2512 | { | |
2513 | // If we are generating a shared object, we need to add a | |
2514 | // dynamic relocation for this symbol's GOT entry. | |
2515 | if (parameters->options().output_is_position_independent()) | |
2516 | { | |
2517 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); | |
7bf1f802 ILT |
2518 | // R_X86_64_RELATIVE assumes a 64-bit relocation. |
2519 | if (r_type != elfcpp::R_X86_64_GOT32) | |
7223e9ca ILT |
2520 | { |
2521 | unsigned int got_offset = | |
2522 | object->local_got_offset(r_sym, GOT_TYPE_STANDARD); | |
2523 | rela_dyn->add_local_relative(object, r_sym, | |
2524 | elfcpp::R_X86_64_RELATIVE, | |
397b129b | 2525 | got, got_offset, 0, is_ifunc); |
7223e9ca | 2526 | } |
2e702c99 RM |
2527 | else |
2528 | { | |
2529 | this->check_non_pic(object, r_type, NULL); | |
2530 | ||
2531 | gold_assert(lsym.get_st_type() != elfcpp::STT_SECTION); | |
2532 | rela_dyn->add_local( | |
2533 | object, r_sym, r_type, got, | |
2534 | object->local_got_offset(r_sym, GOT_TYPE_STANDARD), 0); | |
2535 | } | |
2536 | } | |
2537 | } | |
2538 | // For GOTPLT64, we'd normally want a PLT section, but since | |
2539 | // we know this is a local symbol, no PLT is needed. | |
0ffd9845 ILT |
2540 | } |
2541 | break; | |
2542 | ||
2e30d253 ILT |
2543 | case elfcpp::R_X86_64_COPY: |
2544 | case elfcpp::R_X86_64_GLOB_DAT: | |
2545 | case elfcpp::R_X86_64_JUMP_SLOT: | |
2546 | case elfcpp::R_X86_64_RELATIVE: | |
7223e9ca | 2547 | case elfcpp::R_X86_64_IRELATIVE: |
d61c17ea | 2548 | // These are outstanding tls relocs, which are unexpected when linking |
2e30d253 | 2549 | case elfcpp::R_X86_64_TPOFF64: |
2e30d253 | 2550 | case elfcpp::R_X86_64_DTPMOD64: |
2e30d253 | 2551 | case elfcpp::R_X86_64_TLSDESC: |
75f2446e ILT |
2552 | gold_error(_("%s: unexpected reloc %u in object file"), |
2553 | object->name().c_str(), r_type); | |
2e30d253 ILT |
2554 | break; |
2555 | ||
d61c17ea | 2556 | // These are initial tls relocs, which are expected when linking |
56622147 ILT |
2557 | case elfcpp::R_X86_64_TLSGD: // Global-dynamic |
2558 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: // Global-dynamic (from ~oliva url) | |
e041f13d | 2559 | case elfcpp::R_X86_64_TLSDESC_CALL: |
56622147 | 2560 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic |
0ffd9845 ILT |
2561 | case elfcpp::R_X86_64_DTPOFF32: |
2562 | case elfcpp::R_X86_64_DTPOFF64: | |
56622147 ILT |
2563 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec |
2564 | case elfcpp::R_X86_64_TPOFF32: // Local-exec | |
2e30d253 | 2565 | { |
8851ecca | 2566 | bool output_is_shared = parameters->options().shared(); |
e041f13d | 2567 | const tls::Tls_optimization optimized_type |
2e702c99 | 2568 | = Target_x86_64<size>::optimize_tls_reloc(!output_is_shared, |
fc51264f | 2569 | r_type); |
2e30d253 ILT |
2570 | switch (r_type) |
2571 | { | |
2e702c99 RM |
2572 | case elfcpp::R_X86_64_TLSGD: // General-dynamic |
2573 | if (optimized_type == tls::TLSOPT_NONE) | |
2574 | { | |
2575 | // Create a pair of GOT entries for the module index and | |
2576 | // dtv-relative offset. | |
2577 | Output_data_got<64, false>* got | |
2578 | = target->got_section(symtab, layout); | |
2579 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); | |
d491d34e ILT |
2580 | unsigned int shndx = lsym.get_st_shndx(); |
2581 | bool is_ordinary; | |
2582 | shndx = object->adjust_sym_shndx(r_sym, shndx, &is_ordinary); | |
2583 | if (!is_ordinary) | |
2584 | object->error(_("local symbol %u has bad shndx %u"), | |
2585 | r_sym, shndx); | |
2e702c99 | 2586 | else |
83896202 ILT |
2587 | got->add_local_pair_with_rel(object, r_sym, |
2588 | shndx, | |
2589 | GOT_TYPE_TLS_PAIR, | |
2590 | target->rela_dyn_section(layout), | |
bd73a62d | 2591 | elfcpp::R_X86_64_DTPMOD64); |
2e702c99 RM |
2592 | } |
2593 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
7bf1f802 | 2594 | unsupported_reloc_local(object, r_type); |
2e702c99 | 2595 | break; |
7bf1f802 | 2596 | |
2e702c99 RM |
2597 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: |
2598 | target->define_tls_base_symbol(symtab, layout); | |
c2b45e22 CC |
2599 | if (optimized_type == tls::TLSOPT_NONE) |
2600 | { | |
2e702c99 RM |
2601 | // Create reserved PLT and GOT entries for the resolver. |
2602 | target->reserve_tlsdesc_entries(symtab, layout); | |
2603 | ||
2604 | // Generate a double GOT entry with an | |
2605 | // R_X86_64_TLSDESC reloc. The R_X86_64_TLSDESC reloc | |
2606 | // is resolved lazily, so the GOT entry needs to be in | |
2607 | // an area in .got.plt, not .got. Call got_section to | |
2608 | // make sure the section has been created. | |
a8df5856 | 2609 | target->got_section(symtab, layout); |
2e702c99 RM |
2610 | Output_data_got<64, false>* got = target->got_tlsdesc_section(); |
2611 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); | |
e291e7b9 ILT |
2612 | if (!object->local_has_got_offset(r_sym, GOT_TYPE_TLS_DESC)) |
2613 | { | |
2614 | unsigned int got_offset = got->add_constant(0); | |
2615 | got->add_constant(0); | |
2616 | object->set_local_got_offset(r_sym, GOT_TYPE_TLS_DESC, | |
2617 | got_offset); | |
2618 | Reloc_section* rt = target->rela_tlsdesc_section(layout); | |
2619 | // We store the arguments we need in a vector, and | |
2620 | // use the index into the vector as the parameter | |
2621 | // to pass to the target specific routines. | |
2622 | uintptr_t intarg = target->add_tlsdesc_info(object, r_sym); | |
2623 | void* arg = reinterpret_cast<void*>(intarg); | |
2624 | rt->add_target_specific(elfcpp::R_X86_64_TLSDESC, arg, | |
2625 | got, got_offset, 0); | |
2626 | } | |
c2b45e22 CC |
2627 | } |
2628 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
56622147 | 2629 | unsupported_reloc_local(object, r_type); |
2e30d253 ILT |
2630 | break; |
2631 | ||
2e702c99 | 2632 | case elfcpp::R_X86_64_TLSDESC_CALL: |
c2b45e22 CC |
2633 | break; |
2634 | ||
2e702c99 | 2635 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic |
7bf1f802 ILT |
2636 | if (optimized_type == tls::TLSOPT_NONE) |
2637 | { | |
2e702c99 RM |
2638 | // Create a GOT entry for the module index. |
2639 | target->got_mod_index_entry(symtab, layout, object); | |
7bf1f802 ILT |
2640 | } |
2641 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
2642 | unsupported_reloc_local(object, r_type); | |
2643 | break; | |
2644 | ||
2e702c99 RM |
2645 | case elfcpp::R_X86_64_DTPOFF32: |
2646 | case elfcpp::R_X86_64_DTPOFF64: | |
e041f13d ILT |
2647 | break; |
2648 | ||
2e702c99 | 2649 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec |
535890bb | 2650 | layout->set_has_static_tls(); |
2e702c99 RM |
2651 | if (optimized_type == tls::TLSOPT_NONE) |
2652 | { | |
2653 | // Create a GOT entry for the tp-relative offset. | |
2654 | Output_data_got<64, false>* got | |
2655 | = target->got_section(symtab, layout); | |
2656 | unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info()); | |
2657 | got->add_local_with_rel(object, r_sym, GOT_TYPE_TLS_OFFSET, | |
83896202 ILT |
2658 | target->rela_dyn_section(layout), |
2659 | elfcpp::R_X86_64_TPOFF64); | |
2e702c99 RM |
2660 | } |
2661 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
2662 | unsupported_reloc_local(object, r_type); | |
2663 | break; | |
0ffd9845 | 2664 | |
2e702c99 | 2665 | case elfcpp::R_X86_64_TPOFF32: // Local-exec |
535890bb | 2666 | layout->set_has_static_tls(); |
2e702c99 RM |
2667 | if (output_is_shared) |
2668 | unsupported_reloc_local(object, r_type); | |
2e30d253 | 2669 | break; |
e041f13d | 2670 | |
2e702c99 RM |
2671 | default: |
2672 | gold_unreachable(); | |
2e30d253 ILT |
2673 | } |
2674 | } | |
2675 | break; | |
2e30d253 | 2676 | |
fdc2f80f ILT |
2677 | case elfcpp::R_X86_64_SIZE32: |
2678 | case elfcpp::R_X86_64_SIZE64: | |
2e30d253 | 2679 | default: |
75f2446e ILT |
2680 | gold_error(_("%s: unsupported reloc %u against local symbol"), |
2681 | object->name().c_str(), r_type); | |
2e30d253 ILT |
2682 | break; |
2683 | } | |
2684 | } | |
2685 | ||
2686 | ||
e041f13d ILT |
2687 | // Report an unsupported relocation against a global symbol. |
2688 | ||
fc51264f | 2689 | template<int size> |
e041f13d | 2690 | void |
fc51264f L |
2691 | Target_x86_64<size>::Scan::unsupported_reloc_global( |
2692 | Sized_relobj_file<size, false>* object, | |
6fa2a40b CC |
2693 | unsigned int r_type, |
2694 | Symbol* gsym) | |
e041f13d | 2695 | { |
75f2446e | 2696 | gold_error(_("%s: unsupported reloc %u against global symbol %s"), |
a2b1aa12 | 2697 | object->name().c_str(), r_type, gsym->demangled_name().c_str()); |
e041f13d ILT |
2698 | } |
2699 | ||
ce97fa81 | 2700 | // Returns true if this relocation type could be that of a function pointer. |
fc51264f | 2701 | template<int size> |
21bb3914 | 2702 | inline bool |
fc51264f | 2703 | Target_x86_64<size>::Scan::possible_function_pointer_reloc(unsigned int r_type) |
21bb3914 | 2704 | { |
21bb3914 ST |
2705 | switch (r_type) |
2706 | { | |
2707 | case elfcpp::R_X86_64_64: | |
2708 | case elfcpp::R_X86_64_32: | |
2709 | case elfcpp::R_X86_64_32S: | |
2710 | case elfcpp::R_X86_64_16: | |
2711 | case elfcpp::R_X86_64_8: | |
ce97fa81 ST |
2712 | case elfcpp::R_X86_64_GOT64: |
2713 | case elfcpp::R_X86_64_GOT32: | |
2714 | case elfcpp::R_X86_64_GOTPCREL64: | |
2715 | case elfcpp::R_X86_64_GOTPCREL: | |
2716 | case elfcpp::R_X86_64_GOTPLT64: | |
21bb3914 | 2717 | { |
2e702c99 | 2718 | return true; |
21bb3914 ST |
2719 | } |
2720 | } | |
2721 | return false; | |
2722 | } | |
2723 | ||
2724 | // For safe ICF, scan a relocation for a local symbol to check if it | |
2725 | // corresponds to a function pointer being taken. In that case mark | |
2726 | // the function whose pointer was taken as not foldable. | |
2727 | ||
fc51264f | 2728 | template<int size> |
21bb3914 | 2729 | inline bool |
fc51264f | 2730 | Target_x86_64<size>::Scan::local_reloc_may_be_function_pointer( |
21bb3914 ST |
2731 | Symbol_table* , |
2732 | Layout* , | |
fc51264f L |
2733 | Target_x86_64<size>* , |
2734 | Sized_relobj_file<size, false>* , | |
21bb3914 ST |
2735 | unsigned int , |
2736 | Output_section* , | |
fc51264f | 2737 | const elfcpp::Rela<size, false>& , |
21bb3914 | 2738 | unsigned int r_type, |
fc51264f | 2739 | const elfcpp::Sym<size, false>&) |
21bb3914 ST |
2740 | { |
2741 | // When building a shared library, do not fold any local symbols as it is | |
2742 | // not possible to distinguish pointer taken versus a call by looking at | |
2743 | // the relocation types. | |
2744 | return (parameters->options().shared() | |
2e702c99 | 2745 | || possible_function_pointer_reloc(r_type)); |
21bb3914 ST |
2746 | } |
2747 | ||
2748 | // For safe ICF, scan a relocation for a global symbol to check if it | |
2749 | // corresponds to a function pointer being taken. In that case mark | |
2750 | // the function whose pointer was taken as not foldable. | |
2751 | ||
fc51264f | 2752 | template<int size> |
21bb3914 | 2753 | inline bool |
fc51264f | 2754 | Target_x86_64<size>::Scan::global_reloc_may_be_function_pointer( |
21bb3914 ST |
2755 | Symbol_table*, |
2756 | Layout* , | |
fc51264f L |
2757 | Target_x86_64<size>* , |
2758 | Sized_relobj_file<size, false>* , | |
21bb3914 ST |
2759 | unsigned int , |
2760 | Output_section* , | |
fc51264f | 2761 | const elfcpp::Rela<size, false>& , |
21bb3914 ST |
2762 | unsigned int r_type, |
2763 | Symbol* gsym) | |
2764 | { | |
2765 | // When building a shared library, do not fold symbols whose visibility | |
2766 | // is hidden, internal or protected. | |
2767 | return ((parameters->options().shared() | |
2e702c99 | 2768 | && (gsym->visibility() == elfcpp::STV_INTERNAL |
21bb3914 ST |
2769 | || gsym->visibility() == elfcpp::STV_PROTECTED |
2770 | || gsym->visibility() == elfcpp::STV_HIDDEN)) | |
2e702c99 | 2771 | || possible_function_pointer_reloc(r_type)); |
21bb3914 ST |
2772 | } |
2773 | ||
2e30d253 ILT |
2774 | // Scan a relocation for a global symbol. |
2775 | ||
fc51264f | 2776 | template<int size> |
2e30d253 | 2777 | inline void |
fc51264f | 2778 | Target_x86_64<size>::Scan::global(Symbol_table* symtab, |
2e702c99 RM |
2779 | Layout* layout, |
2780 | Target_x86_64<size>* target, | |
2781 | Sized_relobj_file<size, false>* object, | |
2782 | unsigned int data_shndx, | |
2783 | Output_section* output_section, | |
2784 | const elfcpp::Rela<size, false>& reloc, | |
2785 | unsigned int r_type, | |
2786 | Symbol* gsym) | |
2e30d253 | 2787 | { |
7223e9ca ILT |
2788 | // A STT_GNU_IFUNC symbol may require a PLT entry. |
2789 | if (gsym->type() == elfcpp::STT_GNU_IFUNC | |
2790 | && this->reloc_needs_plt_for_ifunc(object, r_type)) | |
2791 | target->make_plt_entry(symtab, layout, gsym); | |
2792 | ||
2e30d253 ILT |
2793 | switch (r_type) |
2794 | { | |
2795 | case elfcpp::R_X86_64_NONE: | |
6e5710ce ILT |
2796 | case elfcpp::R_X86_64_GNU_VTINHERIT: |
2797 | case elfcpp::R_X86_64_GNU_VTENTRY: | |
2e30d253 ILT |
2798 | break; |
2799 | ||
2800 | case elfcpp::R_X86_64_64: | |
2e30d253 ILT |
2801 | case elfcpp::R_X86_64_32: |
2802 | case elfcpp::R_X86_64_32S: | |
2e30d253 | 2803 | case elfcpp::R_X86_64_16: |
2e30d253 | 2804 | case elfcpp::R_X86_64_8: |
96f2030e | 2805 | { |
2e702c99 RM |
2806 | // Make a PLT entry if necessary. |
2807 | if (gsym->needs_plt_entry()) | |
2808 | { | |
2809 | target->make_plt_entry(symtab, layout, gsym); | |
2810 | // Since this is not a PC-relative relocation, we may be | |
2811 | // taking the address of a function. In that case we need to | |
2812 | // set the entry in the dynamic symbol table to the address of | |
2813 | // the PLT entry. | |
2814 | if (gsym->is_from_dynobj() && !parameters->options().shared()) | |
2815 | gsym->set_needs_dynsym_value(); | |
2816 | } | |
2817 | // Make a dynamic relocation if necessary. | |
2818 | if (gsym->needs_dynamic_reloc(Scan::get_reference_flags(r_type))) | |
2819 | { | |
a82bef93 ST |
2820 | if (!parameters->options().output_is_position_independent() |
2821 | && gsym->may_need_copy_reloc()) | |
2e702c99 RM |
2822 | { |
2823 | target->copy_reloc(symtab, layout, object, | |
2824 | data_shndx, output_section, gsym, reloc); | |
2825 | } | |
1bae613c L |
2826 | else if (((size == 64 && r_type == elfcpp::R_X86_64_64) |
2827 | || (size == 32 && r_type == elfcpp::R_X86_64_32)) | |
7223e9ca ILT |
2828 | && gsym->type() == elfcpp::STT_GNU_IFUNC |
2829 | && gsym->can_use_relative_reloc(false) | |
2830 | && !gsym->is_from_dynobj() | |
2831 | && !gsym->is_undefined() | |
2832 | && !gsym->is_preemptible()) | |
2833 | { | |
2834 | // Use an IRELATIVE reloc for a locally defined | |
2835 | // STT_GNU_IFUNC symbol. This makes a function | |
2836 | // address in a PIE executable match the address in a | |
2837 | // shared library that it links against. | |
67181c72 ILT |
2838 | Reloc_section* rela_dyn = |
2839 | target->rela_irelative_section(layout); | |
7223e9ca ILT |
2840 | unsigned int r_type = elfcpp::R_X86_64_IRELATIVE; |
2841 | rela_dyn->add_symbolless_global_addend(gsym, r_type, | |
2842 | output_section, object, | |
2843 | data_shndx, | |
2844 | reloc.get_r_offset(), | |
2845 | reloc.get_r_addend()); | |
2846 | } | |
b14016f0 L |
2847 | else if (((size == 64 && r_type == elfcpp::R_X86_64_64) |
2848 | || (size == 32 && r_type == elfcpp::R_X86_64_32)) | |
2e702c99 RM |
2849 | && gsym->can_use_relative_reloc(false)) |
2850 | { | |
2851 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); | |
7223e9ca ILT |
2852 | rela_dyn->add_global_relative(gsym, elfcpp::R_X86_64_RELATIVE, |
2853 | output_section, object, | |
2854 | data_shndx, | |
2855 | reloc.get_r_offset(), | |
13cf9988 | 2856 | reloc.get_r_addend(), false); |
2e702c99 RM |
2857 | } |
2858 | else | |
2859 | { | |
2860 | this->check_non_pic(object, r_type, gsym); | |
2861 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); | |
2862 | rela_dyn->add_global(gsym, r_type, output_section, object, | |
2863 | data_shndx, reloc.get_r_offset(), | |
2864 | reloc.get_r_addend()); | |
2865 | } | |
2866 | } | |
d61c6bd4 ILT |
2867 | } |
2868 | break; | |
2869 | ||
2870 | case elfcpp::R_X86_64_PC64: | |
2871 | case elfcpp::R_X86_64_PC32: | |
f49fe902 | 2872 | case elfcpp::R_X86_64_PC32_BND: |
d61c6bd4 ILT |
2873 | case elfcpp::R_X86_64_PC16: |
2874 | case elfcpp::R_X86_64_PC8: | |
2875 | { | |
2e702c99 RM |
2876 | // Make a PLT entry if necessary. |
2877 | if (gsym->needs_plt_entry()) | |
2878 | target->make_plt_entry(symtab, layout, gsym); | |
2879 | // Make a dynamic relocation if necessary. | |
2880 | if (gsym->needs_dynamic_reloc(Scan::get_reference_flags(r_type))) | |
2881 | { | |
a82bef93 ST |
2882 | if (parameters->options().output_is_executable() |
2883 | && gsym->may_need_copy_reloc()) | |
2e702c99 RM |
2884 | { |
2885 | target->copy_reloc(symtab, layout, object, | |
2886 | data_shndx, output_section, gsym, reloc); | |
2887 | } | |
2888 | else | |
2889 | { | |
2890 | this->check_non_pic(object, r_type, gsym); | |
2891 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); | |
2892 | rela_dyn->add_global(gsym, r_type, output_section, object, | |
2893 | data_shndx, reloc.get_r_offset(), | |
2894 | reloc.get_r_addend()); | |
2895 | } | |
2896 | } | |
d61c6bd4 | 2897 | } |
2e30d253 ILT |
2898 | break; |
2899 | ||
ff006520 | 2900 | case elfcpp::R_X86_64_GOT64: |
2e30d253 | 2901 | case elfcpp::R_X86_64_GOT32: |
ff006520 ILT |
2902 | case elfcpp::R_X86_64_GOTPCREL64: |
2903 | case elfcpp::R_X86_64_GOTPCREL: | |
2904 | case elfcpp::R_X86_64_GOTPLT64: | |
2e30d253 | 2905 | { |
2e702c99 RM |
2906 | // The symbol requires a GOT entry. |
2907 | Output_data_got<64, false>* got = target->got_section(symtab, layout); | |
1fa29f10 IT |
2908 | |
2909 | // If we convert this from | |
2910 | // mov foo@GOTPCREL(%rip), %reg | |
2911 | // to lea foo(%rip), %reg. | |
2912 | // in Relocate::relocate, then there is nothing to do here. | |
2913 | if (r_type == elfcpp::R_X86_64_GOTPCREL | |
2914 | && reloc.get_r_offset() >= 2 | |
2915 | && Target_x86_64<size>::can_convert_mov_to_lea(gsym)) | |
2916 | { | |
2917 | section_size_type stype; | |
2918 | const unsigned char* view = object->section_contents(data_shndx, | |
2919 | &stype, true); | |
2920 | if (view[reloc.get_r_offset() - 2] == 0x8b) | |
2921 | break; | |
2922 | } | |
2923 | ||
2e702c99 | 2924 | if (gsym->final_value_is_known()) |
7223e9ca ILT |
2925 | { |
2926 | // For a STT_GNU_IFUNC symbol we want the PLT address. | |
2927 | if (gsym->type() == elfcpp::STT_GNU_IFUNC) | |
2928 | got->add_global_plt(gsym, GOT_TYPE_STANDARD); | |
2929 | else | |
2930 | got->add_global(gsym, GOT_TYPE_STANDARD); | |
2931 | } | |
2e702c99 RM |
2932 | else |
2933 | { | |
2934 | // If this symbol is not fully resolved, we need to add a | |
2935 | // dynamic relocation for it. | |
2936 | Reloc_section* rela_dyn = target->rela_dyn_section(layout); | |
07aa62f2 ILT |
2937 | |
2938 | // Use a GLOB_DAT rather than a RELATIVE reloc if: | |
2939 | // | |
2940 | // 1) The symbol may be defined in some other module. | |
2941 | // | |
2942 | // 2) We are building a shared library and this is a | |
2943 | // protected symbol; using GLOB_DAT means that the dynamic | |
2944 | // linker can use the address of the PLT in the main | |
2945 | // executable when appropriate so that function address | |
2946 | // comparisons work. | |
2947 | // | |
2948 | // 3) This is a STT_GNU_IFUNC symbol in position dependent | |
2949 | // code, again so that function address comparisons work. | |
7223e9ca ILT |
2950 | if (gsym->is_from_dynobj() |
2951 | || gsym->is_undefined() | |
2952 | || gsym->is_preemptible() | |
07aa62f2 ILT |
2953 | || (gsym->visibility() == elfcpp::STV_PROTECTED |
2954 | && parameters->options().shared()) | |
7223e9ca ILT |
2955 | || (gsym->type() == elfcpp::STT_GNU_IFUNC |
2956 | && parameters->options().output_is_position_independent())) | |
2e702c99 | 2957 | got->add_global_with_rel(gsym, GOT_TYPE_STANDARD, rela_dyn, |
83896202 | 2958 | elfcpp::R_X86_64_GLOB_DAT); |
2e702c99 RM |
2959 | else |
2960 | { | |
7223e9ca ILT |
2961 | // For a STT_GNU_IFUNC symbol we want to write the PLT |
2962 | // offset into the GOT, so that function pointer | |
2963 | // comparisons work correctly. | |
2964 | bool is_new; | |
2965 | if (gsym->type() != elfcpp::STT_GNU_IFUNC) | |
2966 | is_new = got->add_global(gsym, GOT_TYPE_STANDARD); | |
2967 | else | |
2968 | { | |
2969 | is_new = got->add_global_plt(gsym, GOT_TYPE_STANDARD); | |
2970 | // Tell the dynamic linker to use the PLT address | |
2971 | // when resolving relocations. | |
2972 | if (gsym->is_from_dynobj() | |
2973 | && !parameters->options().shared()) | |
2974 | gsym->set_needs_dynsym_value(); | |
2975 | } | |
2e702c99 | 2976 | if (is_new) |
7223e9ca ILT |
2977 | { |
2978 | unsigned int got_off = gsym->got_offset(GOT_TYPE_STANDARD); | |
2979 | rela_dyn->add_global_relative(gsym, | |
2980 | elfcpp::R_X86_64_RELATIVE, | |
13cf9988 | 2981 | got, got_off, 0, false); |
7223e9ca | 2982 | } |
2e702c99 RM |
2983 | } |
2984 | } | |
2e30d253 ILT |
2985 | } |
2986 | break; | |
2987 | ||
2988 | case elfcpp::R_X86_64_PLT32: | |
f49fe902 | 2989 | case elfcpp::R_X86_64_PLT32_BND: |
2e30d253 ILT |
2990 | // If the symbol is fully resolved, this is just a PC32 reloc. |
2991 | // Otherwise we need a PLT entry. | |
2992 | if (gsym->final_value_is_known()) | |
2993 | break; | |
96f2030e ILT |
2994 | // If building a shared library, we can also skip the PLT entry |
2995 | // if the symbol is defined in the output file and is protected | |
2996 | // or hidden. | |
2997 | if (gsym->is_defined() | |
2e702c99 RM |
2998 | && !gsym->is_from_dynobj() |
2999 | && !gsym->is_preemptible()) | |
96f2030e | 3000 | break; |
2e30d253 ILT |
3001 | target->make_plt_entry(symtab, layout, gsym); |
3002 | break; | |
3003 | ||
fdc2f80f | 3004 | case elfcpp::R_X86_64_GOTPC32: |
e822f2b1 | 3005 | case elfcpp::R_X86_64_GOTOFF64: |
fdc2f80f ILT |
3006 | case elfcpp::R_X86_64_GOTPC64: |
3007 | case elfcpp::R_X86_64_PLTOFF64: | |
2e30d253 ILT |
3008 | // We need a GOT section. |
3009 | target->got_section(symtab, layout); | |
ee9e9e86 ILT |
3010 | // For PLTOFF64, we also need a PLT entry (but only if the |
3011 | // symbol is not fully resolved). | |
3012 | if (r_type == elfcpp::R_X86_64_PLTOFF64 | |
3013 | && !gsym->final_value_is_known()) | |
3014 | target->make_plt_entry(symtab, layout, gsym); | |
2e30d253 ILT |
3015 | break; |
3016 | ||
2e30d253 ILT |
3017 | case elfcpp::R_X86_64_COPY: |
3018 | case elfcpp::R_X86_64_GLOB_DAT: | |
3019 | case elfcpp::R_X86_64_JUMP_SLOT: | |
3020 | case elfcpp::R_X86_64_RELATIVE: | |
7223e9ca | 3021 | case elfcpp::R_X86_64_IRELATIVE: |
d61c17ea | 3022 | // These are outstanding tls relocs, which are unexpected when linking |
e822f2b1 | 3023 | case elfcpp::R_X86_64_TPOFF64: |
2e30d253 | 3024 | case elfcpp::R_X86_64_DTPMOD64: |
e822f2b1 | 3025 | case elfcpp::R_X86_64_TLSDESC: |
75f2446e ILT |
3026 | gold_error(_("%s: unexpected reloc %u in object file"), |
3027 | object->name().c_str(), r_type); | |
2e30d253 | 3028 | break; |
2e30d253 | 3029 | |
d61c17ea | 3030 | // These are initial tls relocs, which are expected for global() |
56622147 ILT |
3031 | case elfcpp::R_X86_64_TLSGD: // Global-dynamic |
3032 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: // Global-dynamic (from ~oliva url) | |
e041f13d | 3033 | case elfcpp::R_X86_64_TLSDESC_CALL: |
56622147 | 3034 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic |
0ffd9845 ILT |
3035 | case elfcpp::R_X86_64_DTPOFF32: |
3036 | case elfcpp::R_X86_64_DTPOFF64: | |
56622147 ILT |
3037 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec |
3038 | case elfcpp::R_X86_64_TPOFF32: // Local-exec | |
2e30d253 | 3039 | { |
65d92137 CC |
3040 | // For the Initial-Exec model, we can treat undef symbols as final |
3041 | // when building an executable. | |
3042 | const bool is_final = (gsym->final_value_is_known() || | |
3043 | (r_type == elfcpp::R_X86_64_GOTTPOFF && | |
3044 | gsym->is_undefined() && | |
3045 | parameters->options().output_is_executable())); | |
e041f13d | 3046 | const tls::Tls_optimization optimized_type |
2e702c99 | 3047 | = Target_x86_64<size>::optimize_tls_reloc(is_final, r_type); |
2e30d253 ILT |
3048 | switch (r_type) |
3049 | { | |
2e702c99 | 3050 | case elfcpp::R_X86_64_TLSGD: // General-dynamic |
7bf1f802 ILT |
3051 | if (optimized_type == tls::TLSOPT_NONE) |
3052 | { | |
2e702c99 RM |
3053 | // Create a pair of GOT entries for the module index and |
3054 | // dtv-relative offset. | |
3055 | Output_data_got<64, false>* got | |
3056 | = target->got_section(symtab, layout); | |
3057 | got->add_global_pair_with_rel(gsym, GOT_TYPE_TLS_PAIR, | |
83896202 ILT |
3058 | target->rela_dyn_section(layout), |
3059 | elfcpp::R_X86_64_DTPMOD64, | |
3060 | elfcpp::R_X86_64_DTPOFF64); | |
7bf1f802 ILT |
3061 | } |
3062 | else if (optimized_type == tls::TLSOPT_TO_IE) | |
3063 | { | |
2e702c99 RM |
3064 | // Create a GOT entry for the tp-relative offset. |
3065 | Output_data_got<64, false>* got | |
3066 | = target->got_section(symtab, layout); | |
3067 | got->add_global_with_rel(gsym, GOT_TYPE_TLS_OFFSET, | |
83896202 ILT |
3068 | target->rela_dyn_section(layout), |
3069 | elfcpp::R_X86_64_TPOFF64); | |
7bf1f802 ILT |
3070 | } |
3071 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
3072 | unsupported_reloc_global(object, r_type, gsym); | |
3073 | break; | |
3074 | ||
2e702c99 RM |
3075 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: |
3076 | target->define_tls_base_symbol(symtab, layout); | |
c2b45e22 CC |
3077 | if (optimized_type == tls::TLSOPT_NONE) |
3078 | { | |
2e702c99 RM |
3079 | // Create reserved PLT and GOT entries for the resolver. |
3080 | target->reserve_tlsdesc_entries(symtab, layout); | |
3081 | ||
3082 | // Create a double GOT entry with an R_X86_64_TLSDESC | |
3083 | // reloc. The R_X86_64_TLSDESC reloc is resolved | |
3084 | // lazily, so the GOT entry needs to be in an area in | |
3085 | // .got.plt, not .got. Call got_section to make sure | |
3086 | // the section has been created. | |
a8df5856 | 3087 | target->got_section(symtab, layout); |
2e702c99 | 3088 | Output_data_got<64, false>* got = target->got_tlsdesc_section(); |
ca09d69a | 3089 | Reloc_section* rt = target->rela_tlsdesc_section(layout); |
2e702c99 | 3090 | got->add_global_pair_with_rel(gsym, GOT_TYPE_TLS_DESC, rt, |
83896202 | 3091 | elfcpp::R_X86_64_TLSDESC, 0); |
c2b45e22 CC |
3092 | } |
3093 | else if (optimized_type == tls::TLSOPT_TO_IE) | |
3094 | { | |
2e702c99 RM |
3095 | // Create a GOT entry for the tp-relative offset. |
3096 | Output_data_got<64, false>* got | |
3097 | = target->got_section(symtab, layout); | |
3098 | got->add_global_with_rel(gsym, GOT_TYPE_TLS_OFFSET, | |
83896202 ILT |
3099 | target->rela_dyn_section(layout), |
3100 | elfcpp::R_X86_64_TPOFF64); | |
c2b45e22 CC |
3101 | } |
3102 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
56622147 | 3103 | unsupported_reloc_global(object, r_type, gsym); |
2e30d253 ILT |
3104 | break; |
3105 | ||
2e702c99 | 3106 | case elfcpp::R_X86_64_TLSDESC_CALL: |
c2b45e22 CC |
3107 | break; |
3108 | ||
2e702c99 | 3109 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic |
7bf1f802 ILT |
3110 | if (optimized_type == tls::TLSOPT_NONE) |
3111 | { | |
2e702c99 RM |
3112 | // Create a GOT entry for the module index. |
3113 | target->got_mod_index_entry(symtab, layout, object); | |
7bf1f802 ILT |
3114 | } |
3115 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
3116 | unsupported_reloc_global(object, r_type, gsym); | |
3117 | break; | |
3118 | ||
2e702c99 RM |
3119 | case elfcpp::R_X86_64_DTPOFF32: |
3120 | case elfcpp::R_X86_64_DTPOFF64: | |
e041f13d ILT |
3121 | break; |
3122 | ||
2e702c99 | 3123 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec |
535890bb | 3124 | layout->set_has_static_tls(); |
2e702c99 RM |
3125 | if (optimized_type == tls::TLSOPT_NONE) |
3126 | { | |
3127 | // Create a GOT entry for the tp-relative offset. | |
3128 | Output_data_got<64, false>* got | |
3129 | = target->got_section(symtab, layout); | |
3130 | got->add_global_with_rel(gsym, GOT_TYPE_TLS_OFFSET, | |
83896202 ILT |
3131 | target->rela_dyn_section(layout), |
3132 | elfcpp::R_X86_64_TPOFF64); | |
2e702c99 RM |
3133 | } |
3134 | else if (optimized_type != tls::TLSOPT_TO_LE) | |
3135 | unsupported_reloc_global(object, r_type, gsym); | |
3136 | break; | |
0ffd9845 | 3137 | |
2e702c99 | 3138 | case elfcpp::R_X86_64_TPOFF32: // Local-exec |
535890bb | 3139 | layout->set_has_static_tls(); |
2e702c99 | 3140 | if (parameters->options().shared()) |
b1759dce | 3141 | unsupported_reloc_global(object, r_type, gsym); |
2e30d253 | 3142 | break; |
e041f13d | 3143 | |
2e702c99 RM |
3144 | default: |
3145 | gold_unreachable(); | |
2e30d253 ILT |
3146 | } |
3147 | } | |
3148 | break; | |
fdc2f80f ILT |
3149 | |
3150 | case elfcpp::R_X86_64_SIZE32: | |
3151 | case elfcpp::R_X86_64_SIZE64: | |
2e30d253 | 3152 | default: |
75f2446e | 3153 | gold_error(_("%s: unsupported reloc %u against global symbol %s"), |
a2b1aa12 | 3154 | object->name().c_str(), r_type, |
2e702c99 | 3155 | gsym->demangled_name().c_str()); |
2e30d253 ILT |
3156 | break; |
3157 | } | |
3158 | } | |
3159 | ||
fc51264f | 3160 | template<int size> |
6d03d481 | 3161 | void |
fc51264f L |
3162 | Target_x86_64<size>::gc_process_relocs(Symbol_table* symtab, |
3163 | Layout* layout, | |
3164 | Sized_relobj_file<size, false>* object, | |
3165 | unsigned int data_shndx, | |
3166 | unsigned int sh_type, | |
3167 | const unsigned char* prelocs, | |
3168 | size_t reloc_count, | |
3169 | Output_section* output_section, | |
3170 | bool needs_special_offset_handling, | |
3171 | size_t local_symbol_count, | |
3172 | const unsigned char* plocal_symbols) | |
6d03d481 ST |
3173 | { |
3174 | ||
3175 | if (sh_type == elfcpp::SHT_REL) | |
3176 | { | |
3177 | return; | |
3178 | } | |
3179 | ||
fc51264f | 3180 | gold::gc_process_relocs<size, false, Target_x86_64<size>, elfcpp::SHT_RELA, |
2e702c99 | 3181 | typename Target_x86_64<size>::Scan, |
618d6666 | 3182 | typename Target_x86_64<size>::Relocatable_size_for_reloc>( |
6d03d481 ST |
3183 | symtab, |
3184 | layout, | |
3185 | this, | |
3186 | object, | |
3187 | data_shndx, | |
3188 | prelocs, | |
3189 | reloc_count, | |
3190 | output_section, | |
3191 | needs_special_offset_handling, | |
3192 | local_symbol_count, | |
3193 | plocal_symbols); | |
2e702c99 | 3194 | |
6d03d481 | 3195 | } |
2e30d253 ILT |
3196 | // Scan relocations for a section. |
3197 | ||
fc51264f | 3198 | template<int size> |
2e30d253 | 3199 | void |
fc51264f L |
3200 | Target_x86_64<size>::scan_relocs(Symbol_table* symtab, |
3201 | Layout* layout, | |
3202 | Sized_relobj_file<size, false>* object, | |
3203 | unsigned int data_shndx, | |
3204 | unsigned int sh_type, | |
3205 | const unsigned char* prelocs, | |
3206 | size_t reloc_count, | |
3207 | Output_section* output_section, | |
3208 | bool needs_special_offset_handling, | |
3209 | size_t local_symbol_count, | |
3210 | const unsigned char* plocal_symbols) | |
2e30d253 ILT |
3211 | { |
3212 | if (sh_type == elfcpp::SHT_REL) | |
3213 | { | |
75f2446e ILT |
3214 | gold_error(_("%s: unsupported REL reloc section"), |
3215 | object->name().c_str()); | |
3216 | return; | |
2e30d253 ILT |
3217 | } |
3218 | ||
fc51264f | 3219 | gold::scan_relocs<size, false, Target_x86_64<size>, elfcpp::SHT_RELA, |
618d6666 | 3220 | typename Target_x86_64<size>::Scan>( |
2e30d253 ILT |
3221 | symtab, |
3222 | layout, | |
3223 | this, | |
3224 | object, | |
3225 | data_shndx, | |
3226 | prelocs, | |
3227 | reloc_count, | |
730cdc88 ILT |
3228 | output_section, |
3229 | needs_special_offset_handling, | |
2e30d253 | 3230 | local_symbol_count, |
730cdc88 | 3231 | plocal_symbols); |
2e30d253 ILT |
3232 | } |
3233 | ||
3234 | // Finalize the sections. | |
3235 | ||
fc51264f | 3236 | template<int size> |
2e30d253 | 3237 | void |
fc51264f | 3238 | Target_x86_64<size>::do_finalize_sections( |
f59f41f3 DK |
3239 | Layout* layout, |
3240 | const Input_objects*, | |
e785ec03 | 3241 | Symbol_table* symtab) |
2e30d253 | 3242 | { |
ea715a34 ILT |
3243 | const Reloc_section* rel_plt = (this->plt_ == NULL |
3244 | ? NULL | |
e291e7b9 | 3245 | : this->plt_->rela_plt()); |
ea715a34 | 3246 | layout->add_target_dynamic_tags(false, this->got_plt_, rel_plt, |
612a8d3d | 3247 | this->rela_dyn_, true, false); |
2e702c99 | 3248 | |
2e30d253 ILT |
3249 | // Fill in some more dynamic tags. |
3250 | Output_data_dynamic* const odyn = layout->dynamic_data(); | |
3251 | if (odyn != NULL) | |
3252 | { | |
22b127cc | 3253 | if (this->plt_ != NULL |
ea715a34 ILT |
3254 | && this->plt_->output_section() != NULL |
3255 | && this->plt_->has_tlsdesc_entry()) | |
2e30d253 | 3256 | { |
ea715a34 ILT |
3257 | unsigned int plt_offset = this->plt_->get_tlsdesc_plt_offset(); |
3258 | unsigned int got_offset = this->plt_->get_tlsdesc_got_offset(); | |
3259 | this->got_->finalize_data_size(); | |
3260 | odyn->add_section_plus_offset(elfcpp::DT_TLSDESC_PLT, | |
3261 | this->plt_, plt_offset); | |
3262 | odyn->add_section_plus_offset(elfcpp::DT_TLSDESC_GOT, | |
3263 | this->got_, got_offset); | |
2e30d253 ILT |
3264 | } |
3265 | } | |
3266 | ||
3267 | // Emit any relocs we saved in an attempt to avoid generating COPY | |
3268 | // relocs. | |
12c0daef ILT |
3269 | if (this->copy_relocs_.any_saved_relocs()) |
3270 | this->copy_relocs_.emit(this->rela_dyn_section(layout)); | |
e785ec03 ILT |
3271 | |
3272 | // Set the size of the _GLOBAL_OFFSET_TABLE_ symbol to the size of | |
3273 | // the .got.plt section. | |
3274 | Symbol* sym = this->global_offset_table_; | |
3275 | if (sym != NULL) | |
3276 | { | |
3277 | uint64_t data_size = this->got_plt_->current_data_size(); | |
fc51264f | 3278 | symtab->get_sized_symbol<size>(sym)->set_symsize(data_size); |
e785ec03 | 3279 | } |
28a13fec | 3280 | |
67181c72 ILT |
3281 | if (parameters->doing_static_link() |
3282 | && (this->plt_ == NULL || !this->plt_->has_irelative_section())) | |
28a13fec ILT |
3283 | { |
3284 | // If linking statically, make sure that the __rela_iplt symbols | |
3285 | // were defined if necessary, even if we didn't create a PLT. | |
3286 | static const Define_symbol_in_segment syms[] = | |
3287 | { | |
3288 | { | |
3289 | "__rela_iplt_start", // name | |
3290 | elfcpp::PT_LOAD, // segment_type | |
3291 | elfcpp::PF_W, // segment_flags_set | |
3292 | elfcpp::PF(0), // segment_flags_clear | |
3293 | 0, // value | |
3294 | 0, // size | |
3295 | elfcpp::STT_NOTYPE, // type | |
3296 | elfcpp::STB_GLOBAL, // binding | |
3297 | elfcpp::STV_HIDDEN, // visibility | |
3298 | 0, // nonvis | |
3299 | Symbol::SEGMENT_START, // offset_from_base | |
3300 | true // only_if_ref | |
3301 | }, | |
3302 | { | |
3303 | "__rela_iplt_end", // name | |
3304 | elfcpp::PT_LOAD, // segment_type | |
3305 | elfcpp::PF_W, // segment_flags_set | |
3306 | elfcpp::PF(0), // segment_flags_clear | |
3307 | 0, // value | |
3308 | 0, // size | |
3309 | elfcpp::STT_NOTYPE, // type | |
3310 | elfcpp::STB_GLOBAL, // binding | |
3311 | elfcpp::STV_HIDDEN, // visibility | |
3312 | 0, // nonvis | |
3313 | Symbol::SEGMENT_START, // offset_from_base | |
3314 | true // only_if_ref | |
3315 | } | |
3316 | }; | |
3317 | ||
3318 | symtab->define_symbols(layout, 2, syms, | |
3319 | layout->script_options()->saw_sections_clause()); | |
3320 | } | |
2e30d253 ILT |
3321 | } |
3322 | ||
3323 | // Perform a relocation. | |
3324 | ||
fc51264f | 3325 | template<int size> |
2e30d253 | 3326 | inline bool |
fc51264f L |
3327 | Target_x86_64<size>::Relocate::relocate( |
3328 | const Relocate_info<size, false>* relinfo, | |
3329 | Target_x86_64<size>* target, | |
3330 | Output_section*, | |
3331 | size_t relnum, | |
3332 | const elfcpp::Rela<size, false>& rela, | |
3333 | unsigned int r_type, | |
3334 | const Sized_symbol<size>* gsym, | |
3335 | const Symbol_value<size>* psymval, | |
3336 | unsigned char* view, | |
3337 | typename elfcpp::Elf_types<size>::Elf_Addr address, | |
3338 | section_size_type view_size) | |
2e30d253 ILT |
3339 | { |
3340 | if (this->skip_call_tls_get_addr_) | |
3341 | { | |
5efc7cd2 | 3342 | if ((r_type != elfcpp::R_X86_64_PLT32 |
f49fe902 L |
3343 | && r_type != elfcpp::R_X86_64_PLT32_BND |
3344 | && r_type != elfcpp::R_X86_64_PC32_BND | |
2e702c99 | 3345 | && r_type != elfcpp::R_X86_64_PC32) |
2e30d253 | 3346 | || gsym == NULL |
0ffd9845 | 3347 | || strcmp(gsym->name(), "__tls_get_addr") != 0) |
2e30d253 | 3348 | { |
75f2446e ILT |
3349 | gold_error_at_location(relinfo, relnum, rela.get_r_offset(), |
3350 | _("missing expected TLS relocation")); | |
3351 | } | |
3352 | else | |
3353 | { | |
3354 | this->skip_call_tls_get_addr_ = false; | |
3355 | return false; | |
2e30d253 | 3356 | } |
2e30d253 ILT |
3357 | } |
3358 | ||
0e804863 ILT |
3359 | if (view == NULL) |
3360 | return true; | |
3361 | ||
fc51264f | 3362 | const Sized_relobj_file<size, false>* object = relinfo->object; |
7223e9ca ILT |
3363 | |
3364 | // Pick the value to use for symbols defined in the PLT. | |
fc51264f | 3365 | Symbol_value<size> symval; |
96f2030e | 3366 | if (gsym != NULL |
95a2c8d6 | 3367 | && gsym->use_plt_offset(Scan::get_reference_flags(r_type))) |
2e30d253 | 3368 | { |
19fec8c1 | 3369 | symval.set_output_value(target->plt_address_for_global(gsym)); |
2e30d253 ILT |
3370 | psymval = &symval; |
3371 | } | |
7223e9ca ILT |
3372 | else if (gsym == NULL && psymval->is_ifunc_symbol()) |
3373 | { | |
fc51264f | 3374 | unsigned int r_sym = elfcpp::elf_r_sym<size>(rela.get_r_info()); |
7223e9ca ILT |
3375 | if (object->local_has_plt_offset(r_sym)) |
3376 | { | |
19fec8c1 | 3377 | symval.set_output_value(target->plt_address_for_local(object, r_sym)); |
7223e9ca ILT |
3378 | psymval = &symval; |
3379 | } | |
3380 | } | |
2e30d253 | 3381 | |
0ffd9845 ILT |
3382 | const elfcpp::Elf_Xword addend = rela.get_r_addend(); |
3383 | ||
3384 | // Get the GOT offset if needed. | |
96f2030e ILT |
3385 | // The GOT pointer points to the end of the GOT section. |
3386 | // We need to subtract the size of the GOT section to get | |
3387 | // the actual offset to use in the relocation. | |
0ffd9845 | 3388 | bool have_got_offset = false; |
c23dd342 L |
3389 | // Since the actual offset is always negative, we use signed int to |
3390 | // support 64-bit GOT relocations. | |
3391 | int got_offset = 0; | |
0ffd9845 ILT |
3392 | switch (r_type) |
3393 | { | |
3394 | case elfcpp::R_X86_64_GOT32: | |
3395 | case elfcpp::R_X86_64_GOT64: | |
3396 | case elfcpp::R_X86_64_GOTPLT64: | |
0ffd9845 ILT |
3397 | case elfcpp::R_X86_64_GOTPCREL64: |
3398 | if (gsym != NULL) | |
2e702c99 RM |
3399 | { |
3400 | gold_assert(gsym->has_got_offset(GOT_TYPE_STANDARD)); | |
3401 | got_offset = gsym->got_offset(GOT_TYPE_STANDARD) - target->got_size(); | |
3402 | } | |
0ffd9845 | 3403 | else |
2e702c99 RM |
3404 | { |
3405 | unsigned int r_sym = elfcpp::elf_r_sym<size>(rela.get_r_info()); | |
3406 | gold_assert(object->local_has_got_offset(r_sym, GOT_TYPE_STANDARD)); | |
3407 | got_offset = (object->local_got_offset(r_sym, GOT_TYPE_STANDARD) | |
3408 | - target->got_size()); | |
3409 | } | |
0ffd9845 ILT |
3410 | have_got_offset = true; |
3411 | break; | |
3412 | ||
3413 | default: | |
3414 | break; | |
3415 | } | |
2e30d253 ILT |
3416 | |
3417 | switch (r_type) | |
3418 | { | |
3419 | case elfcpp::R_X86_64_NONE: | |
6e5710ce ILT |
3420 | case elfcpp::R_X86_64_GNU_VTINHERIT: |
3421 | case elfcpp::R_X86_64_GNU_VTENTRY: | |
2e30d253 ILT |
3422 | break; |
3423 | ||
3424 | case elfcpp::R_X86_64_64: | |
fc51264f | 3425 | Relocate_functions<size, false>::rela64(view, object, psymval, addend); |
2e30d253 ILT |
3426 | break; |
3427 | ||
3428 | case elfcpp::R_X86_64_PC64: | |
fc51264f | 3429 | Relocate_functions<size, false>::pcrela64(view, object, psymval, addend, |
2e702c99 | 3430 | address); |
2e30d253 ILT |
3431 | break; |
3432 | ||
3433 | case elfcpp::R_X86_64_32: | |
7bb3655e ILT |
3434 | // FIXME: we need to verify that value + addend fits into 32 bits: |
3435 | // uint64_t x = value + addend; | |
3436 | // x == static_cast<uint64_t>(static_cast<uint32_t>(x)) | |
3437 | // Likewise for other <=32-bit relocations (but see R_X86_64_32S). | |
fc51264f | 3438 | Relocate_functions<size, false>::rela32(view, object, psymval, addend); |
2e30d253 ILT |
3439 | break; |
3440 | ||
3441 | case elfcpp::R_X86_64_32S: | |
7bb3655e ILT |
3442 | // FIXME: we need to verify that value + addend fits into 32 bits: |
3443 | // int64_t x = value + addend; // note this quantity is signed! | |
3444 | // x == static_cast<int64_t>(static_cast<int32_t>(x)) | |
fc51264f | 3445 | Relocate_functions<size, false>::rela32(view, object, psymval, addend); |
2e30d253 ILT |
3446 | break; |
3447 | ||
3448 | case elfcpp::R_X86_64_PC32: | |
f49fe902 | 3449 | case elfcpp::R_X86_64_PC32_BND: |
fc51264f L |
3450 | Relocate_functions<size, false>::pcrela32(view, object, psymval, addend, |
3451 | address); | |
2e30d253 ILT |
3452 | break; |
3453 | ||
3454 | case elfcpp::R_X86_64_16: | |
fc51264f | 3455 | Relocate_functions<size, false>::rela16(view, object, psymval, addend); |
2e30d253 ILT |
3456 | break; |
3457 | ||
3458 | case elfcpp::R_X86_64_PC16: | |
fc51264f L |
3459 | Relocate_functions<size, false>::pcrela16(view, object, psymval, addend, |
3460 | address); | |
2e30d253 ILT |
3461 | break; |
3462 | ||
3463 | case elfcpp::R_X86_64_8: | |
fc51264f | 3464 | Relocate_functions<size, false>::rela8(view, object, psymval, addend); |
2e30d253 ILT |
3465 | break; |
3466 | ||
3467 | case elfcpp::R_X86_64_PC8: | |
fc51264f L |
3468 | Relocate_functions<size, false>::pcrela8(view, object, psymval, addend, |
3469 | address); | |
2e30d253 ILT |
3470 | break; |
3471 | ||
3472 | case elfcpp::R_X86_64_PLT32: | |
f49fe902 | 3473 | case elfcpp::R_X86_64_PLT32_BND: |
f389a824 | 3474 | gold_assert(gsym == NULL |
2e702c99 | 3475 | || gsym->has_plt_offset() |
99f8faca ILT |
3476 | || gsym->final_value_is_known() |
3477 | || (gsym->is_defined() | |
3478 | && !gsym->is_from_dynobj() | |
3479 | && !gsym->is_preemptible())); | |
ee9e9e86 ILT |
3480 | // Note: while this code looks the same as for R_X86_64_PC32, it |
3481 | // behaves differently because psymval was set to point to | |
3482 | // the PLT entry, rather than the symbol, in Scan::global(). | |
fc51264f L |
3483 | Relocate_functions<size, false>::pcrela32(view, object, psymval, addend, |
3484 | address); | |
2e30d253 ILT |
3485 | break; |
3486 | ||
ee9e9e86 ILT |
3487 | case elfcpp::R_X86_64_PLTOFF64: |
3488 | { | |
2e702c99 RM |
3489 | gold_assert(gsym); |
3490 | gold_assert(gsym->has_plt_offset() | |
3491 | || gsym->final_value_is_known()); | |
fc51264f | 3492 | typename elfcpp::Elf_types<size>::Elf_Addr got_address; |
c23dd342 L |
3493 | // This is the address of GLOBAL_OFFSET_TABLE. |
3494 | got_address = target->got_plt_section()->address(); | |
fc51264f L |
3495 | Relocate_functions<size, false>::rela64(view, object, psymval, |
3496 | addend - got_address); | |
ee9e9e86 | 3497 | } |
7849f6d8 | 3498 | break; |
ee9e9e86 | 3499 | |
2e30d253 | 3500 | case elfcpp::R_X86_64_GOT32: |
0ffd9845 | 3501 | gold_assert(have_got_offset); |
fc51264f | 3502 | Relocate_functions<size, false>::rela32(view, got_offset, addend); |
2e30d253 ILT |
3503 | break; |
3504 | ||
e822f2b1 ILT |
3505 | case elfcpp::R_X86_64_GOTPC32: |
3506 | { | |
2e702c99 | 3507 | gold_assert(gsym); |
fc51264f | 3508 | typename elfcpp::Elf_types<size>::Elf_Addr value; |
96f2030e | 3509 | value = target->got_plt_section()->address(); |
fc51264f | 3510 | Relocate_functions<size, false>::pcrela32(view, value, addend, address); |
e822f2b1 ILT |
3511 | } |
3512 | break; | |
3513 | ||
3514 | case elfcpp::R_X86_64_GOT64: | |
fdc2f80f | 3515 | case elfcpp::R_X86_64_GOTPLT64: |
e88ba8d5 L |
3516 | // R_X86_64_GOTPLT64 is obsolete and treated the the same as |
3517 | // GOT64. | |
0ffd9845 | 3518 | gold_assert(have_got_offset); |
fc51264f | 3519 | Relocate_functions<size, false>::rela64(view, got_offset, addend); |
e822f2b1 ILT |
3520 | break; |
3521 | ||
3522 | case elfcpp::R_X86_64_GOTPC64: | |
3523 | { | |
2e702c99 | 3524 | gold_assert(gsym); |
fc51264f | 3525 | typename elfcpp::Elf_types<size>::Elf_Addr value; |
96f2030e | 3526 | value = target->got_plt_section()->address(); |
fc51264f | 3527 | Relocate_functions<size, false>::pcrela64(view, value, addend, address); |
e822f2b1 ILT |
3528 | } |
3529 | break; | |
3530 | ||
2e30d253 ILT |
3531 | case elfcpp::R_X86_64_GOTOFF64: |
3532 | { | |
fc51264f | 3533 | typename elfcpp::Elf_types<size>::Elf_Addr value; |
2e30d253 | 3534 | value = (psymval->value(object, 0) |
96f2030e | 3535 | - target->got_plt_section()->address()); |
fc51264f | 3536 | Relocate_functions<size, false>::rela64(view, value, addend); |
2e30d253 ILT |
3537 | } |
3538 | break; | |
3539 | ||
3540 | case elfcpp::R_X86_64_GOTPCREL: | |
3541 | { | |
1fa29f10 IT |
3542 | // Convert |
3543 | // mov foo@GOTPCREL(%rip), %reg | |
3544 | // to lea foo(%rip), %reg. | |
3545 | // if possible. | |
3546 | if (rela.get_r_offset() >= 2 | |
3547 | && view[-2] == 0x8b | |
3548 | && ((gsym == NULL && !psymval->is_ifunc_symbol()) | |
3549 | || (gsym != NULL | |
3550 | && Target_x86_64<size>::can_convert_mov_to_lea(gsym)))) | |
3551 | { | |
3552 | view[-2] = 0x8d; | |
3553 | Relocate_functions<size, false>::pcrela32(view, object, psymval, addend, | |
3554 | address); | |
3555 | } | |
3556 | else | |
3557 | { | |
3558 | if (gsym != NULL) | |
3559 | { | |
3560 | gold_assert(gsym->has_got_offset(GOT_TYPE_STANDARD)); | |
3561 | got_offset = gsym->got_offset(GOT_TYPE_STANDARD) - target->got_size(); | |
3562 | } | |
3563 | else | |
3564 | { | |
3565 | unsigned int r_sym = elfcpp::elf_r_sym<size>(rela.get_r_info()); | |
3566 | gold_assert(object->local_has_got_offset(r_sym, GOT_TYPE_STANDARD)); | |
3567 | got_offset = (object->local_got_offset(r_sym, GOT_TYPE_STANDARD) | |
3568 | - target->got_size()); | |
3569 | } | |
3570 | typename elfcpp::Elf_types<size>::Elf_Addr value; | |
3571 | value = target->got_plt_section()->address() + got_offset; | |
3572 | Relocate_functions<size, false>::pcrela32(view, value, addend, address); | |
3573 | } | |
2e30d253 ILT |
3574 | } |
3575 | break; | |
3576 | ||
e822f2b1 ILT |
3577 | case elfcpp::R_X86_64_GOTPCREL64: |
3578 | { | |
2e702c99 RM |
3579 | gold_assert(have_got_offset); |
3580 | typename elfcpp::Elf_types<size>::Elf_Addr value; | |
3581 | value = target->got_plt_section()->address() + got_offset; | |
3582 | Relocate_functions<size, false>::pcrela64(view, value, addend, address); | |
e822f2b1 ILT |
3583 | } |
3584 | break; | |
3585 | ||
2e30d253 ILT |
3586 | case elfcpp::R_X86_64_COPY: |
3587 | case elfcpp::R_X86_64_GLOB_DAT: | |
3588 | case elfcpp::R_X86_64_JUMP_SLOT: | |
3589 | case elfcpp::R_X86_64_RELATIVE: | |
7223e9ca | 3590 | case elfcpp::R_X86_64_IRELATIVE: |
d61c17ea | 3591 | // These are outstanding tls relocs, which are unexpected when linking |
2e30d253 | 3592 | case elfcpp::R_X86_64_TPOFF64: |
2e30d253 | 3593 | case elfcpp::R_X86_64_DTPMOD64: |
2e30d253 | 3594 | case elfcpp::R_X86_64_TLSDESC: |
75f2446e ILT |
3595 | gold_error_at_location(relinfo, relnum, rela.get_r_offset(), |
3596 | _("unexpected reloc %u in object file"), | |
3597 | r_type); | |
2e30d253 ILT |
3598 | break; |
3599 | ||
d61c17ea | 3600 | // These are initial tls relocs, which are expected when linking |
56622147 ILT |
3601 | case elfcpp::R_X86_64_TLSGD: // Global-dynamic |
3602 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: // Global-dynamic (from ~oliva url) | |
e041f13d | 3603 | case elfcpp::R_X86_64_TLSDESC_CALL: |
56622147 | 3604 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic |
0ffd9845 ILT |
3605 | case elfcpp::R_X86_64_DTPOFF32: |
3606 | case elfcpp::R_X86_64_DTPOFF64: | |
56622147 ILT |
3607 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec |
3608 | case elfcpp::R_X86_64_TPOFF32: // Local-exec | |
7bf1f802 | 3609 | this->relocate_tls(relinfo, target, relnum, rela, r_type, gsym, psymval, |
2e702c99 | 3610 | view, address, view_size); |
2e30d253 | 3611 | break; |
2e30d253 | 3612 | |
fdc2f80f ILT |
3613 | case elfcpp::R_X86_64_SIZE32: |
3614 | case elfcpp::R_X86_64_SIZE64: | |
2e30d253 | 3615 | default: |
75f2446e ILT |
3616 | gold_error_at_location(relinfo, relnum, rela.get_r_offset(), |
3617 | _("unsupported reloc %u"), | |
3618 | r_type); | |
2e30d253 ILT |
3619 | break; |
3620 | } | |
3621 | ||
3622 | return true; | |
3623 | } | |
3624 | ||
3625 | // Perform a TLS relocation. | |
3626 | ||
fc51264f | 3627 | template<int size> |
2e30d253 | 3628 | inline void |
fc51264f L |
3629 | Target_x86_64<size>::Relocate::relocate_tls( |
3630 | const Relocate_info<size, false>* relinfo, | |
3631 | Target_x86_64<size>* target, | |
3632 | size_t relnum, | |
3633 | const elfcpp::Rela<size, false>& rela, | |
3634 | unsigned int r_type, | |
3635 | const Sized_symbol<size>* gsym, | |
3636 | const Symbol_value<size>* psymval, | |
3637 | unsigned char* view, | |
3638 | typename elfcpp::Elf_types<size>::Elf_Addr address, | |
3639 | section_size_type view_size) | |
2e30d253 | 3640 | { |
2e30d253 | 3641 | Output_segment* tls_segment = relinfo->layout->tls_segment(); |
7bf1f802 | 3642 | |
fc51264f | 3643 | const Sized_relobj_file<size, false>* object = relinfo->object; |
6a41d30b | 3644 | const elfcpp::Elf_Xword addend = rela.get_r_addend(); |
fc51264f | 3645 | elfcpp::Shdr<size, false> data_shdr(relinfo->data_shdr); |
36171d64 | 3646 | bool is_executable = (data_shdr.get_sh_flags() & elfcpp::SHF_EXECINSTR) != 0; |
2e30d253 | 3647 | |
fc51264f | 3648 | typename elfcpp::Elf_types<size>::Elf_Addr value = psymval->value(relinfo->object, 0); |
2e30d253 ILT |
3649 | |
3650 | const bool is_final = (gsym == NULL | |
b3705d2a | 3651 | ? !parameters->options().shared() |
2e30d253 | 3652 | : gsym->final_value_is_known()); |
36171d64 | 3653 | tls::Tls_optimization optimized_type |
fc51264f | 3654 | = Target_x86_64<size>::optimize_tls_reloc(is_final, r_type); |
2e30d253 ILT |
3655 | switch (r_type) |
3656 | { | |
56622147 | 3657 | case elfcpp::R_X86_64_TLSGD: // Global-dynamic |
36171d64 CC |
3658 | if (!is_executable && optimized_type == tls::TLSOPT_TO_LE) |
3659 | { | |
3660 | // If this code sequence is used in a non-executable section, | |
3661 | // we will not optimize the R_X86_64_DTPOFF32/64 relocation, | |
3662 | // on the assumption that it's being used by itself in a debug | |
3663 | // section. Therefore, in the unlikely event that the code | |
3664 | // sequence appears in a non-executable section, we simply | |
3665 | // leave it unoptimized. | |
3666 | optimized_type = tls::TLSOPT_NONE; | |
3667 | } | |
e041f13d | 3668 | if (optimized_type == tls::TLSOPT_TO_LE) |
2e30d253 | 3669 | { |
62855347 ILT |
3670 | if (tls_segment == NULL) |
3671 | { | |
191f1a2d ILT |
3672 | gold_assert(parameters->errors()->error_count() > 0 |
3673 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3674 | return; |
3675 | } | |
2e30d253 | 3676 | this->tls_gd_to_le(relinfo, relnum, tls_segment, |
72ec2876 | 3677 | rela, r_type, value, view, |
2e30d253 ILT |
3678 | view_size); |
3679 | break; | |
3680 | } | |
7bf1f802 | 3681 | else |
2e702c99 RM |
3682 | { |
3683 | unsigned int got_type = (optimized_type == tls::TLSOPT_TO_IE | |
3684 | ? GOT_TYPE_TLS_OFFSET | |
3685 | : GOT_TYPE_TLS_PAIR); | |
3686 | unsigned int got_offset; | |
3687 | if (gsym != NULL) | |
3688 | { | |
3689 | gold_assert(gsym->has_got_offset(got_type)); | |
3690 | got_offset = gsym->got_offset(got_type) - target->got_size(); | |
3691 | } | |
3692 | else | |
3693 | { | |
3694 | unsigned int r_sym = elfcpp::elf_r_sym<size>(rela.get_r_info()); | |
3695 | gold_assert(object->local_has_got_offset(r_sym, got_type)); | |
3696 | got_offset = (object->local_got_offset(r_sym, got_type) | |
3697 | - target->got_size()); | |
3698 | } | |
3699 | if (optimized_type == tls::TLSOPT_TO_IE) | |
3700 | { | |
3701 | value = target->got_plt_section()->address() + got_offset; | |
3702 | this->tls_gd_to_ie(relinfo, relnum, tls_segment, rela, r_type, | |
3703 | value, view, address, view_size); | |
3704 | break; | |
3705 | } | |
3706 | else if (optimized_type == tls::TLSOPT_NONE) | |
3707 | { | |
3708 | // Relocate the field with the offset of the pair of GOT | |
3709 | // entries. | |
6a41d30b | 3710 | value = target->got_plt_section()->address() + got_offset; |
2e702c99 | 3711 | Relocate_functions<size, false>::pcrela32(view, value, addend, |
fc51264f | 3712 | address); |
2e702c99 RM |
3713 | break; |
3714 | } | |
3715 | } | |
72ec2876 | 3716 | gold_error_at_location(relinfo, relnum, rela.get_r_offset(), |
75f2446e | 3717 | _("unsupported reloc %u"), r_type); |
2e30d253 ILT |
3718 | break; |
3719 | ||
c2b45e22 CC |
3720 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: // Global-dynamic (from ~oliva url) |
3721 | case elfcpp::R_X86_64_TLSDESC_CALL: | |
36171d64 CC |
3722 | if (!is_executable && optimized_type == tls::TLSOPT_TO_LE) |
3723 | { | |
3724 | // See above comment for R_X86_64_TLSGD. | |
3725 | optimized_type = tls::TLSOPT_NONE; | |
3726 | } | |
c2b45e22 CC |
3727 | if (optimized_type == tls::TLSOPT_TO_LE) |
3728 | { | |
62855347 ILT |
3729 | if (tls_segment == NULL) |
3730 | { | |
191f1a2d ILT |
3731 | gold_assert(parameters->errors()->error_count() > 0 |
3732 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3733 | return; |
3734 | } | |
c2b45e22 | 3735 | this->tls_desc_gd_to_le(relinfo, relnum, tls_segment, |
2e702c99 RM |
3736 | rela, r_type, value, view, |
3737 | view_size); | |
c2b45e22 CC |
3738 | break; |
3739 | } | |
3740 | else | |
2e702c99 RM |
3741 | { |
3742 | unsigned int got_type = (optimized_type == tls::TLSOPT_TO_IE | |
3743 | ? GOT_TYPE_TLS_OFFSET | |
3744 | : GOT_TYPE_TLS_DESC); | |
3745 | unsigned int got_offset = 0; | |
a8df5856 ILT |
3746 | if (r_type == elfcpp::R_X86_64_GOTPC32_TLSDESC |
3747 | && optimized_type == tls::TLSOPT_NONE) | |
3748 | { | |
3749 | // We created GOT entries in the .got.tlsdesc portion of | |
3750 | // the .got.plt section, but the offset stored in the | |
3751 | // symbol is the offset within .got.tlsdesc. | |
3752 | got_offset = (target->got_size() | |
3753 | + target->got_plt_section()->data_size()); | |
3754 | } | |
2e702c99 RM |
3755 | if (gsym != NULL) |
3756 | { | |
3757 | gold_assert(gsym->has_got_offset(got_type)); | |
3758 | got_offset += gsym->got_offset(got_type) - target->got_size(); | |
3759 | } | |
3760 | else | |
3761 | { | |
3762 | unsigned int r_sym = elfcpp::elf_r_sym<size>(rela.get_r_info()); | |
3763 | gold_assert(object->local_has_got_offset(r_sym, got_type)); | |
3764 | got_offset += (object->local_got_offset(r_sym, got_type) | |
a8df5856 | 3765 | - target->got_size()); |
2e702c99 RM |
3766 | } |
3767 | if (optimized_type == tls::TLSOPT_TO_IE) | |
3768 | { | |
62855347 ILT |
3769 | if (tls_segment == NULL) |
3770 | { | |
191f1a2d ILT |
3771 | gold_assert(parameters->errors()->error_count() > 0 |
3772 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3773 | return; |
3774 | } | |
2e702c99 RM |
3775 | value = target->got_plt_section()->address() + got_offset; |
3776 | this->tls_desc_gd_to_ie(relinfo, relnum, tls_segment, | |
3777 | rela, r_type, value, view, address, | |
3778 | view_size); | |
3779 | break; | |
3780 | } | |
3781 | else if (optimized_type == tls::TLSOPT_NONE) | |
3782 | { | |
3783 | if (r_type == elfcpp::R_X86_64_GOTPC32_TLSDESC) | |
3784 | { | |
3785 | // Relocate the field with the offset of the pair of GOT | |
3786 | // entries. | |
3787 | value = target->got_plt_section()->address() + got_offset; | |
3788 | Relocate_functions<size, false>::pcrela32(view, value, addend, | |
fc51264f | 3789 | address); |
2e702c99 RM |
3790 | } |
3791 | break; | |
3792 | } | |
3793 | } | |
c2b45e22 CC |
3794 | gold_error_at_location(relinfo, relnum, rela.get_r_offset(), |
3795 | _("unsupported reloc %u"), r_type); | |
3796 | break; | |
3797 | ||
56622147 | 3798 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic |
36171d64 CC |
3799 | if (!is_executable && optimized_type == tls::TLSOPT_TO_LE) |
3800 | { | |
3801 | // See above comment for R_X86_64_TLSGD. | |
3802 | optimized_type = tls::TLSOPT_NONE; | |
3803 | } | |
e041f13d | 3804 | if (optimized_type == tls::TLSOPT_TO_LE) |
2e702c99 | 3805 | { |
62855347 ILT |
3806 | if (tls_segment == NULL) |
3807 | { | |
191f1a2d ILT |
3808 | gold_assert(parameters->errors()->error_count() > 0 |
3809 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3810 | return; |
3811 | } | |
72ec2876 ILT |
3812 | this->tls_ld_to_le(relinfo, relnum, tls_segment, rela, r_type, |
3813 | value, view, view_size); | |
3814 | break; | |
2e702c99 | 3815 | } |
7bf1f802 | 3816 | else if (optimized_type == tls::TLSOPT_NONE) |
2e702c99 RM |
3817 | { |
3818 | // Relocate the field with the offset of the GOT entry for | |
3819 | // the module index. | |
3820 | unsigned int got_offset; | |
3821 | got_offset = (target->got_mod_index_entry(NULL, NULL, NULL) | |
31d60480 | 3822 | - target->got_size()); |
6a41d30b | 3823 | value = target->got_plt_section()->address() + got_offset; |
2e702c99 | 3824 | Relocate_functions<size, false>::pcrela32(view, value, addend, |
fc51264f | 3825 | address); |
2e702c99 RM |
3826 | break; |
3827 | } | |
72ec2876 | 3828 | gold_error_at_location(relinfo, relnum, rela.get_r_offset(), |
75f2446e | 3829 | _("unsupported reloc %u"), r_type); |
2e30d253 | 3830 | break; |
0ffd9845 ILT |
3831 | |
3832 | case elfcpp::R_X86_64_DTPOFF32: | |
36171d64 CC |
3833 | // This relocation type is used in debugging information. |
3834 | // In that case we need to not optimize the value. If the | |
3835 | // section is not executable, then we assume we should not | |
3836 | // optimize this reloc. See comments above for R_X86_64_TLSGD, | |
3837 | // R_X86_64_GOTPC32_TLSDESC, R_X86_64_TLSDESC_CALL, and | |
3838 | // R_X86_64_TLSLD. | |
3839 | if (optimized_type == tls::TLSOPT_TO_LE && is_executable) | |
3840 | { | |
62855347 ILT |
3841 | if (tls_segment == NULL) |
3842 | { | |
191f1a2d ILT |
3843 | gold_assert(parameters->errors()->error_count() > 0 |
3844 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3845 | return; |
3846 | } | |
36171d64 CC |
3847 | value -= tls_segment->memsz(); |
3848 | } | |
fc51264f | 3849 | Relocate_functions<size, false>::rela32(view, value, addend); |
0ffd9845 ILT |
3850 | break; |
3851 | ||
3852 | case elfcpp::R_X86_64_DTPOFF64: | |
36171d64 CC |
3853 | // See R_X86_64_DTPOFF32, just above, for why we check for is_executable. |
3854 | if (optimized_type == tls::TLSOPT_TO_LE && is_executable) | |
3855 | { | |
62855347 ILT |
3856 | if (tls_segment == NULL) |
3857 | { | |
191f1a2d ILT |
3858 | gold_assert(parameters->errors()->error_count() > 0 |
3859 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3860 | return; |
3861 | } | |
36171d64 CC |
3862 | value -= tls_segment->memsz(); |
3863 | } | |
fc51264f | 3864 | Relocate_functions<size, false>::rela64(view, value, addend); |
0ffd9845 | 3865 | break; |
2e30d253 | 3866 | |
56622147 | 3867 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec |
24dd5808 CC |
3868 | if (gsym != NULL |
3869 | && gsym->is_undefined() | |
3870 | && parameters->options().output_is_executable()) | |
65d92137 CC |
3871 | { |
3872 | Target_x86_64<size>::Relocate::tls_ie_to_le(relinfo, relnum, | |
3873 | NULL, rela, | |
3874 | r_type, value, view, | |
3875 | view_size); | |
3876 | break; | |
3877 | } | |
3878 | else if (optimized_type == tls::TLSOPT_TO_LE) | |
56622147 | 3879 | { |
62855347 ILT |
3880 | if (tls_segment == NULL) |
3881 | { | |
191f1a2d ILT |
3882 | gold_assert(parameters->errors()->error_count() > 0 |
3883 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3884 | return; |
3885 | } | |
fc51264f L |
3886 | Target_x86_64<size>::Relocate::tls_ie_to_le(relinfo, relnum, |
3887 | tls_segment, rela, | |
3888 | r_type, value, view, | |
3889 | view_size); | |
56622147 ILT |
3890 | break; |
3891 | } | |
7bf1f802 | 3892 | else if (optimized_type == tls::TLSOPT_NONE) |
2e702c99 RM |
3893 | { |
3894 | // Relocate the field with the offset of the GOT entry for | |
3895 | // the tp-relative offset of the symbol. | |
3896 | unsigned int got_offset; | |
3897 | if (gsym != NULL) | |
3898 | { | |
3899 | gold_assert(gsym->has_got_offset(GOT_TYPE_TLS_OFFSET)); | |
3900 | got_offset = (gsym->got_offset(GOT_TYPE_TLS_OFFSET) | |
3901 | - target->got_size()); | |
3902 | } | |
3903 | else | |
3904 | { | |
3905 | unsigned int r_sym = elfcpp::elf_r_sym<size>(rela.get_r_info()); | |
3906 | gold_assert(object->local_has_got_offset(r_sym, | |
3907 | GOT_TYPE_TLS_OFFSET)); | |
3908 | got_offset = (object->local_got_offset(r_sym, GOT_TYPE_TLS_OFFSET) | |
3909 | - target->got_size()); | |
3910 | } | |
6a41d30b | 3911 | value = target->got_plt_section()->address() + got_offset; |
2e702c99 | 3912 | Relocate_functions<size, false>::pcrela32(view, value, addend, |
fc51264f | 3913 | address); |
2e702c99 RM |
3914 | break; |
3915 | } | |
56622147 ILT |
3916 | gold_error_at_location(relinfo, relnum, rela.get_r_offset(), |
3917 | _("unsupported reloc type %u"), | |
3918 | r_type); | |
3919 | break; | |
0ffd9845 | 3920 | |
56622147 | 3921 | case elfcpp::R_X86_64_TPOFF32: // Local-exec |
62855347 ILT |
3922 | if (tls_segment == NULL) |
3923 | { | |
191f1a2d ILT |
3924 | gold_assert(parameters->errors()->error_count() > 0 |
3925 | || issue_undefined_symbol_error(gsym)); | |
62855347 ILT |
3926 | return; |
3927 | } | |
6a41d30b | 3928 | value -= tls_segment->memsz(); |
fc51264f | 3929 | Relocate_functions<size, false>::rela32(view, value, addend); |
56622147 | 3930 | break; |
2e30d253 | 3931 | } |
2e30d253 ILT |
3932 | } |
3933 | ||
7bf1f802 ILT |
3934 | // Do a relocation in which we convert a TLS General-Dynamic to an |
3935 | // Initial-Exec. | |
3936 | ||
fc51264f | 3937 | template<int size> |
7bf1f802 | 3938 | inline void |
fc51264f L |
3939 | Target_x86_64<size>::Relocate::tls_gd_to_ie( |
3940 | const Relocate_info<size, false>* relinfo, | |
3941 | size_t relnum, | |
3942 | Output_segment*, | |
3943 | const elfcpp::Rela<size, false>& rela, | |
3944 | unsigned int, | |
3945 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
3946 | unsigned char* view, | |
3947 | typename elfcpp::Elf_types<size>::Elf_Addr address, | |
3948 | section_size_type view_size) | |
7bf1f802 | 3949 | { |
41194d9f L |
3950 | // For SIZE == 64: |
3951 | // .byte 0x66; leaq foo@tlsgd(%rip),%rdi; | |
3952 | // .word 0x6666; rex64; call __tls_get_addr | |
3953 | // ==> movq %fs:0,%rax; addq x@gottpoff(%rip),%rax | |
3954 | // For SIZE == 32: | |
3955 | // leaq foo@tlsgd(%rip),%rdi; | |
3956 | // .word 0x6666; rex64; call __tls_get_addr | |
3957 | // ==> movl %fs:0,%eax; addq x@gottpoff(%rip),%rax | |
7bf1f802 | 3958 | |
7bf1f802 | 3959 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 12); |
7bf1f802 | 3960 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), |
2e702c99 | 3961 | (memcmp(view + 4, "\x66\x66\x48\xe8", 4) == 0)); |
7bf1f802 | 3962 | |
41194d9f L |
3963 | if (size == 64) |
3964 | { | |
3965 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, | |
3966 | -4); | |
3967 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
3968 | (memcmp(view - 4, "\x66\x48\x8d\x3d", 4) == 0)); | |
3969 | memcpy(view - 4, "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0\0", | |
3970 | 16); | |
3971 | } | |
3972 | else | |
3973 | { | |
3974 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, | |
3975 | -3); | |
3976 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
3977 | (memcmp(view - 3, "\x48\x8d\x3d", 3) == 0)); | |
3978 | memcpy(view - 3, "\x64\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0\0", | |
3979 | 15); | |
3980 | } | |
7bf1f802 | 3981 | |
c2b45e22 | 3982 | const elfcpp::Elf_Xword addend = rela.get_r_addend(); |
fc51264f L |
3983 | Relocate_functions<size, false>::pcrela32(view + 8, value, addend - 8, |
3984 | address); | |
7bf1f802 ILT |
3985 | |
3986 | // The next reloc should be a PLT32 reloc against __tls_get_addr. | |
3987 | // We can skip it. | |
3988 | this->skip_call_tls_get_addr_ = true; | |
3989 | } | |
3990 | ||
e041f13d | 3991 | // Do a relocation in which we convert a TLS General-Dynamic to a |
2e30d253 ILT |
3992 | // Local-Exec. |
3993 | ||
fc51264f | 3994 | template<int size> |
2e30d253 | 3995 | inline void |
fc51264f L |
3996 | Target_x86_64<size>::Relocate::tls_gd_to_le( |
3997 | const Relocate_info<size, false>* relinfo, | |
3998 | size_t relnum, | |
3999 | Output_segment* tls_segment, | |
4000 | const elfcpp::Rela<size, false>& rela, | |
4001 | unsigned int, | |
4002 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
4003 | unsigned char* view, | |
4004 | section_size_type view_size) | |
2e30d253 | 4005 | { |
41194d9f L |
4006 | // For SIZE == 64: |
4007 | // .byte 0x66; leaq foo@tlsgd(%rip),%rdi; | |
4008 | // .word 0x6666; rex64; call __tls_get_addr | |
4009 | // ==> movq %fs:0,%rax; leaq x@tpoff(%rax),%rax | |
4010 | // For SIZE == 32: | |
4011 | // leaq foo@tlsgd(%rip),%rdi; | |
4012 | // .word 0x6666; rex64; call __tls_get_addr | |
4013 | // ==> movl %fs:0,%eax; leaq x@tpoff(%rax),%rax | |
2e30d253 | 4014 | |
72ec2876 | 4015 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 12); |
72ec2876 | 4016 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), |
41194d9f L |
4017 | (memcmp(view + 4, "\x66\x66\x48\xe8", 4) == 0)); |
4018 | ||
4019 | if (size == 64) | |
4020 | { | |
4021 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, | |
4022 | -4); | |
4023 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
4024 | (memcmp(view - 4, "\x66\x48\x8d\x3d", 4) == 0)); | |
4025 | memcpy(view - 4, "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0\0", | |
4026 | 16); | |
4027 | } | |
4028 | else | |
4029 | { | |
4030 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, | |
4031 | -3); | |
4032 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
4033 | (memcmp(view - 3, "\x48\x8d\x3d", 3) == 0)); | |
2e30d253 | 4034 | |
41194d9f L |
4035 | memcpy(view - 3, "\x64\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0\0", |
4036 | 15); | |
4037 | } | |
2e30d253 | 4038 | |
6a41d30b | 4039 | value -= tls_segment->memsz(); |
fc51264f | 4040 | Relocate_functions<size, false>::rela32(view + 8, value, 0); |
2e30d253 ILT |
4041 | |
4042 | // The next reloc should be a PLT32 reloc against __tls_get_addr. | |
4043 | // We can skip it. | |
4044 | this->skip_call_tls_get_addr_ = true; | |
2e30d253 ILT |
4045 | } |
4046 | ||
c2b45e22 CC |
4047 | // Do a TLSDESC-style General-Dynamic to Initial-Exec transition. |
4048 | ||
fc51264f | 4049 | template<int size> |
c2b45e22 | 4050 | inline void |
fc51264f L |
4051 | Target_x86_64<size>::Relocate::tls_desc_gd_to_ie( |
4052 | const Relocate_info<size, false>* relinfo, | |
c2b45e22 CC |
4053 | size_t relnum, |
4054 | Output_segment*, | |
fc51264f | 4055 | const elfcpp::Rela<size, false>& rela, |
c2b45e22 | 4056 | unsigned int r_type, |
fc51264f | 4057 | typename elfcpp::Elf_types<size>::Elf_Addr value, |
c2b45e22 | 4058 | unsigned char* view, |
fc51264f | 4059 | typename elfcpp::Elf_types<size>::Elf_Addr address, |
c2b45e22 CC |
4060 | section_size_type view_size) |
4061 | { | |
4062 | if (r_type == elfcpp::R_X86_64_GOTPC32_TLSDESC) | |
4063 | { | |
4064 | // leaq foo@tlsdesc(%rip), %rax | |
4065 | // ==> movq foo@gottpoff(%rip), %rax | |
4066 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3); | |
4067 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 4); | |
4068 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
2e702c99 | 4069 | view[-3] == 0x48 && view[-2] == 0x8d && view[-1] == 0x05); |
c2b45e22 CC |
4070 | view[-2] = 0x8b; |
4071 | const elfcpp::Elf_Xword addend = rela.get_r_addend(); | |
fc51264f | 4072 | Relocate_functions<size, false>::pcrela32(view, value, addend, address); |
c2b45e22 CC |
4073 | } |
4074 | else | |
4075 | { | |
4076 | // call *foo@tlscall(%rax) | |
4077 | // ==> nop; nop | |
4078 | gold_assert(r_type == elfcpp::R_X86_64_TLSDESC_CALL); | |
4079 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 2); | |
4080 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
2e702c99 | 4081 | view[0] == 0xff && view[1] == 0x10); |
c2b45e22 CC |
4082 | view[0] = 0x66; |
4083 | view[1] = 0x90; | |
4084 | } | |
4085 | } | |
4086 | ||
4087 | // Do a TLSDESC-style General-Dynamic to Local-Exec transition. | |
4088 | ||
fc51264f | 4089 | template<int size> |
c2b45e22 | 4090 | inline void |
fc51264f L |
4091 | Target_x86_64<size>::Relocate::tls_desc_gd_to_le( |
4092 | const Relocate_info<size, false>* relinfo, | |
c2b45e22 CC |
4093 | size_t relnum, |
4094 | Output_segment* tls_segment, | |
fc51264f | 4095 | const elfcpp::Rela<size, false>& rela, |
c2b45e22 | 4096 | unsigned int r_type, |
fc51264f | 4097 | typename elfcpp::Elf_types<size>::Elf_Addr value, |
c2b45e22 CC |
4098 | unsigned char* view, |
4099 | section_size_type view_size) | |
4100 | { | |
4101 | if (r_type == elfcpp::R_X86_64_GOTPC32_TLSDESC) | |
4102 | { | |
4103 | // leaq foo@tlsdesc(%rip), %rax | |
4104 | // ==> movq foo@tpoff, %rax | |
4105 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3); | |
4106 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 4); | |
4107 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
2e702c99 | 4108 | view[-3] == 0x48 && view[-2] == 0x8d && view[-1] == 0x05); |
c2b45e22 CC |
4109 | view[-2] = 0xc7; |
4110 | view[-1] = 0xc0; | |
4111 | value -= tls_segment->memsz(); | |
fc51264f | 4112 | Relocate_functions<size, false>::rela32(view, value, 0); |
c2b45e22 CC |
4113 | } |
4114 | else | |
4115 | { | |
4116 | // call *foo@tlscall(%rax) | |
4117 | // ==> nop; nop | |
4118 | gold_assert(r_type == elfcpp::R_X86_64_TLSDESC_CALL); | |
4119 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 2); | |
4120 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), | |
2e702c99 | 4121 | view[0] == 0xff && view[1] == 0x10); |
c2b45e22 CC |
4122 | view[0] = 0x66; |
4123 | view[1] = 0x90; | |
4124 | } | |
4125 | } | |
4126 | ||
fc51264f | 4127 | template<int size> |
2e30d253 | 4128 | inline void |
fc51264f L |
4129 | Target_x86_64<size>::Relocate::tls_ld_to_le( |
4130 | const Relocate_info<size, false>* relinfo, | |
4131 | size_t relnum, | |
4132 | Output_segment*, | |
4133 | const elfcpp::Rela<size, false>& rela, | |
4134 | unsigned int, | |
4135 | typename elfcpp::Elf_types<size>::Elf_Addr, | |
4136 | unsigned char* view, | |
4137 | section_size_type view_size) | |
2e30d253 | 4138 | { |
72ec2876 | 4139 | // leaq foo@tlsld(%rip),%rdi; call __tls_get_addr@plt; |
d2cf1c6c | 4140 | // For SIZE == 64: |
72ec2876 ILT |
4141 | // ... leq foo@dtpoff(%rax),%reg |
4142 | // ==> .word 0x6666; .byte 0x66; movq %fs:0,%rax ... leaq x@tpoff(%rax),%rdx | |
d2cf1c6c L |
4143 | // For SIZE == 32: |
4144 | // ... leq foo@dtpoff(%rax),%reg | |
4145 | // ==> nopl 0x0(%rax); movl %fs:0,%eax ... leaq x@tpoff(%rax),%rdx | |
2e30d253 | 4146 | |
72ec2876 ILT |
4147 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3); |
4148 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 9); | |
2e30d253 | 4149 | |
72ec2876 | 4150 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), |
2e702c99 | 4151 | view[-3] == 0x48 && view[-2] == 0x8d && view[-1] == 0x3d); |
72ec2876 ILT |
4152 | |
4153 | tls::check_tls(relinfo, relnum, rela.get_r_offset(), view[4] == 0xe8); | |
4154 | ||
d2cf1c6c L |
4155 | if (size == 64) |
4156 | memcpy(view - 3, "\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0\0", 12); | |
4157 | else | |
4158 | memcpy(view - 3, "\x0f\x1f\x40\x00\x64\x8b\x04\x25\0\0\0\0", 12); | |
72ec2876 ILT |
4159 | |
4160 | // The next reloc should be a PLT32 reloc against __tls_get_addr. | |
4161 | // We can skip it. | |
4162 | this->skip_call_tls_get_addr_ = true; | |
2e30d253 ILT |
4163 | } |
4164 | ||
56622147 ILT |
4165 | // Do a relocation in which we convert a TLS Initial-Exec to a |
4166 | // Local-Exec. | |
4167 | ||
fc51264f | 4168 | template<int size> |
56622147 | 4169 | inline void |
fc51264f L |
4170 | Target_x86_64<size>::Relocate::tls_ie_to_le( |
4171 | const Relocate_info<size, false>* relinfo, | |
4172 | size_t relnum, | |
4173 | Output_segment* tls_segment, | |
4174 | const elfcpp::Rela<size, false>& rela, | |
4175 | unsigned int, | |
4176 | typename elfcpp::Elf_types<size>::Elf_Addr value, | |
4177 | unsigned char* view, | |
4178 | section_size_type view_size) | |
56622147 ILT |
4179 | { |
4180 | // We need to examine the opcodes to figure out which instruction we | |
4181 | // are looking at. | |
4182 | ||
4183 | // movq foo@gottpoff(%rip),%reg ==> movq $YY,%reg | |
4184 | // addq foo@gottpoff(%rip),%reg ==> addq $YY,%reg | |
4185 | ||
4186 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3); | |
4187 | tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 4); | |
4188 | ||
4189 | unsigned char op1 = view[-3]; | |
4190 | unsigned char op2 = view[-2]; | |
4191 | unsigned char op3 = view[-1]; | |
4192 | unsigned char reg = op3 >> 3; | |
4193 | ||
4194 | if (op2 == 0x8b) | |
4195 | { | |
4196 | // movq | |
4197 | if (op1 == 0x4c) | |
2e702c99 | 4198 | view[-3] = 0x49; |
e749cab8 L |
4199 | else if (size == 32 && op1 == 0x44) |
4200 | view[-3] = 0x41; | |
56622147 ILT |
4201 | view[-2] = 0xc7; |
4202 | view[-1] = 0xc0 | reg; | |
4203 | } | |
4204 | else if (reg == 4) | |
4205 | { | |
4206 | // Special handling for %rsp. | |
4207 | if (op1 == 0x4c) | |
2e702c99 | 4208 | view[-3] = 0x49; |
e749cab8 L |
4209 | else if (size == 32 && op1 == 0x44) |
4210 | view[-3] = 0x41; | |
56622147 ILT |
4211 | view[-2] = 0x81; |
4212 | view[-1] = 0xc0 | reg; | |
4213 | } | |
4214 | else | |
4215 | { | |
4216 | // addq | |
4217 | if (op1 == 0x4c) | |
2e702c99 | 4218 | view[-3] = 0x4d; |
e749cab8 L |
4219 | else if (size == 32 && op1 == 0x44) |
4220 | view[-3] = 0x45; | |
56622147 ILT |
4221 | view[-2] = 0x8d; |
4222 | view[-1] = 0x80 | reg | (reg << 3); | |
4223 | } | |
4224 | ||
65d92137 CC |
4225 | if (tls_segment != NULL) |
4226 | value -= tls_segment->memsz(); | |
fc51264f | 4227 | Relocate_functions<size, false>::rela32(view, value, 0); |
56622147 ILT |
4228 | } |
4229 | ||
2e30d253 ILT |
4230 | // Relocate section data. |
4231 | ||
fc51264f | 4232 | template<int size> |
2e30d253 | 4233 | void |
fc51264f L |
4234 | Target_x86_64<size>::relocate_section( |
4235 | const Relocate_info<size, false>* relinfo, | |
364c7fa5 ILT |
4236 | unsigned int sh_type, |
4237 | const unsigned char* prelocs, | |
4238 | size_t reloc_count, | |
4239 | Output_section* output_section, | |
4240 | bool needs_special_offset_handling, | |
4241 | unsigned char* view, | |
fc51264f | 4242 | typename elfcpp::Elf_types<size>::Elf_Addr address, |
364c7fa5 ILT |
4243 | section_size_type view_size, |
4244 | const Reloc_symbol_changes* reloc_symbol_changes) | |
2e30d253 ILT |
4245 | { |
4246 | gold_assert(sh_type == elfcpp::SHT_RELA); | |
4247 | ||
fc51264f | 4248 | gold::relocate_section<size, false, Target_x86_64<size>, elfcpp::SHT_RELA, |
168a4726 AM |
4249 | typename Target_x86_64<size>::Relocate, |
4250 | gold::Default_comdat_behavior>( | |
2e30d253 ILT |
4251 | relinfo, |
4252 | this, | |
4253 | prelocs, | |
4254 | reloc_count, | |
730cdc88 ILT |
4255 | output_section, |
4256 | needs_special_offset_handling, | |
2e30d253 ILT |
4257 | view, |
4258 | address, | |
364c7fa5 ILT |
4259 | view_size, |
4260 | reloc_symbol_changes); | |
2e30d253 ILT |
4261 | } |
4262 | ||
94a3fc8b CC |
4263 | // Apply an incremental relocation. Incremental relocations always refer |
4264 | // to global symbols. | |
4265 | ||
fc51264f | 4266 | template<int size> |
94a3fc8b | 4267 | void |
fc51264f L |
4268 | Target_x86_64<size>::apply_relocation( |
4269 | const Relocate_info<size, false>* relinfo, | |
4270 | typename elfcpp::Elf_types<size>::Elf_Addr r_offset, | |
94a3fc8b | 4271 | unsigned int r_type, |
fc51264f | 4272 | typename elfcpp::Elf_types<size>::Elf_Swxword r_addend, |
94a3fc8b CC |
4273 | const Symbol* gsym, |
4274 | unsigned char* view, | |
fc51264f | 4275 | typename elfcpp::Elf_types<size>::Elf_Addr address, |
94a3fc8b CC |
4276 | section_size_type view_size) |
4277 | { | |
fc51264f | 4278 | gold::apply_relocation<size, false, Target_x86_64<size>, |
618d6666 | 4279 | typename Target_x86_64<size>::Relocate>( |
94a3fc8b CC |
4280 | relinfo, |
4281 | this, | |
4282 | r_offset, | |
4283 | r_type, | |
4284 | r_addend, | |
4285 | gsym, | |
4286 | view, | |
4287 | address, | |
4288 | view_size); | |
4289 | } | |
4290 | ||
6a74a719 ILT |
4291 | // Return the size of a relocation while scanning during a relocatable |
4292 | // link. | |
4293 | ||
fc51264f | 4294 | template<int size> |
6a74a719 | 4295 | unsigned int |
fc51264f | 4296 | Target_x86_64<size>::Relocatable_size_for_reloc::get_size_for_reloc( |
6a74a719 ILT |
4297 | unsigned int r_type, |
4298 | Relobj* object) | |
4299 | { | |
4300 | switch (r_type) | |
4301 | { | |
4302 | case elfcpp::R_X86_64_NONE: | |
6e5710ce ILT |
4303 | case elfcpp::R_X86_64_GNU_VTINHERIT: |
4304 | case elfcpp::R_X86_64_GNU_VTENTRY: | |
6a74a719 ILT |
4305 | case elfcpp::R_X86_64_TLSGD: // Global-dynamic |
4306 | case elfcpp::R_X86_64_GOTPC32_TLSDESC: // Global-dynamic (from ~oliva url) | |
4307 | case elfcpp::R_X86_64_TLSDESC_CALL: | |
4308 | case elfcpp::R_X86_64_TLSLD: // Local-dynamic | |
4309 | case elfcpp::R_X86_64_DTPOFF32: | |
4310 | case elfcpp::R_X86_64_DTPOFF64: | |
4311 | case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec | |
4312 | case elfcpp::R_X86_64_TPOFF32: // Local-exec | |
4313 | return 0; | |
4314 | ||
4315 | case elfcpp::R_X86_64_64: | |
4316 | case elfcpp::R_X86_64_PC64: | |
4317 | case elfcpp::R_X86_64_GOTOFF64: | |
4318 | case elfcpp::R_X86_64_GOTPC64: | |
4319 | case elfcpp::R_X86_64_PLTOFF64: | |
4320 | case elfcpp::R_X86_64_GOT64: | |
4321 | case elfcpp::R_X86_64_GOTPCREL64: | |
4322 | case elfcpp::R_X86_64_GOTPCREL: | |
4323 | case elfcpp::R_X86_64_GOTPLT64: | |
4324 | return 8; | |
4325 | ||
4326 | case elfcpp::R_X86_64_32: | |
4327 | case elfcpp::R_X86_64_32S: | |
4328 | case elfcpp::R_X86_64_PC32: | |
f49fe902 | 4329 | case elfcpp::R_X86_64_PC32_BND: |
6a74a719 | 4330 | case elfcpp::R_X86_64_PLT32: |
f49fe902 | 4331 | case elfcpp::R_X86_64_PLT32_BND: |
6a74a719 ILT |
4332 | case elfcpp::R_X86_64_GOTPC32: |
4333 | case elfcpp::R_X86_64_GOT32: | |
4334 | return 4; | |
4335 | ||
4336 | case elfcpp::R_X86_64_16: | |
4337 | case elfcpp::R_X86_64_PC16: | |
4338 | return 2; | |
4339 | ||
4340 | case elfcpp::R_X86_64_8: | |
4341 | case elfcpp::R_X86_64_PC8: | |
4342 | return 1; | |
4343 | ||
4344 | case elfcpp::R_X86_64_COPY: | |
4345 | case elfcpp::R_X86_64_GLOB_DAT: | |
4346 | case elfcpp::R_X86_64_JUMP_SLOT: | |
4347 | case elfcpp::R_X86_64_RELATIVE: | |
7223e9ca | 4348 | case elfcpp::R_X86_64_IRELATIVE: |
6a74a719 ILT |
4349 | // These are outstanding tls relocs, which are unexpected when linking |
4350 | case elfcpp::R_X86_64_TPOFF64: | |
4351 | case elfcpp::R_X86_64_DTPMOD64: | |
4352 | case elfcpp::R_X86_64_TLSDESC: | |
4353 | object->error(_("unexpected reloc %u in object file"), r_type); | |
4354 | return 0; | |
4355 | ||
4356 | case elfcpp::R_X86_64_SIZE32: | |
4357 | case elfcpp::R_X86_64_SIZE64: | |
4358 | default: | |
4359 | object->error(_("unsupported reloc %u against local symbol"), r_type); | |
4360 | return 0; | |
4361 | } | |
4362 | } | |
4363 | ||
4364 | // Scan the relocs during a relocatable link. | |
4365 | ||
fc51264f | 4366 | template<int size> |
6a74a719 | 4367 | void |
fc51264f L |
4368 | Target_x86_64<size>::scan_relocatable_relocs( |
4369 | Symbol_table* symtab, | |
4370 | Layout* layout, | |
4371 | Sized_relobj_file<size, false>* object, | |
4372 | unsigned int data_shndx, | |
4373 | unsigned int sh_type, | |
4374 | const unsigned char* prelocs, | |
4375 | size_t reloc_count, | |
4376 | Output_section* output_section, | |
4377 | bool needs_special_offset_handling, | |
4378 | size_t local_symbol_count, | |
4379 | const unsigned char* plocal_symbols, | |
4380 | Relocatable_relocs* rr) | |
6a74a719 ILT |
4381 | { |
4382 | gold_assert(sh_type == elfcpp::SHT_RELA); | |
4383 | ||
4384 | typedef gold::Default_scan_relocatable_relocs<elfcpp::SHT_RELA, | |
4385 | Relocatable_size_for_reloc> Scan_relocatable_relocs; | |
4386 | ||
fc51264f | 4387 | gold::scan_relocatable_relocs<size, false, elfcpp::SHT_RELA, |
6a74a719 | 4388 | Scan_relocatable_relocs>( |
6a74a719 ILT |
4389 | symtab, |
4390 | layout, | |
4391 | object, | |
4392 | data_shndx, | |
4393 | prelocs, | |
4394 | reloc_count, | |
4395 | output_section, | |
4396 | needs_special_offset_handling, | |
4397 | local_symbol_count, | |
4398 | plocal_symbols, | |
4399 | rr); | |
4400 | } | |
4401 | ||
4402 | // Relocate a section during a relocatable link. | |
4403 | ||
fc51264f | 4404 | template<int size> |
6a74a719 | 4405 | void |
7404fe1b | 4406 | Target_x86_64<size>::relocate_relocs( |
fc51264f | 4407 | const Relocate_info<size, false>* relinfo, |
6a74a719 ILT |
4408 | unsigned int sh_type, |
4409 | const unsigned char* prelocs, | |
4410 | size_t reloc_count, | |
4411 | Output_section* output_section, | |
62fe925a | 4412 | typename elfcpp::Elf_types<size>::Elf_Off offset_in_output_section, |
6a74a719 ILT |
4413 | const Relocatable_relocs* rr, |
4414 | unsigned char* view, | |
fc51264f | 4415 | typename elfcpp::Elf_types<size>::Elf_Addr view_address, |
6a74a719 ILT |
4416 | section_size_type view_size, |
4417 | unsigned char* reloc_view, | |
4418 | section_size_type reloc_view_size) | |
4419 | { | |
4420 | gold_assert(sh_type == elfcpp::SHT_RELA); | |
4421 | ||
7404fe1b | 4422 | gold::relocate_relocs<size, false, elfcpp::SHT_RELA>( |
6a74a719 ILT |
4423 | relinfo, |
4424 | prelocs, | |
4425 | reloc_count, | |
4426 | output_section, | |
4427 | offset_in_output_section, | |
4428 | rr, | |
4429 | view, | |
4430 | view_address, | |
4431 | view_size, | |
4432 | reloc_view, | |
4433 | reloc_view_size); | |
4434 | } | |
4435 | ||
4fb6c25d ILT |
4436 | // Return the value to use for a dynamic which requires special |
4437 | // treatment. This is how we support equality comparisons of function | |
4438 | // pointers across shared library boundaries, as described in the | |
4439 | // processor specific ABI supplement. | |
4440 | ||
fc51264f | 4441 | template<int size> |
4fb6c25d | 4442 | uint64_t |
fc51264f | 4443 | Target_x86_64<size>::do_dynsym_value(const Symbol* gsym) const |
4fb6c25d ILT |
4444 | { |
4445 | gold_assert(gsym->is_from_dynobj() && gsym->has_plt_offset()); | |
19fec8c1 | 4446 | return this->plt_address_for_global(gsym); |
4fb6c25d ILT |
4447 | } |
4448 | ||
2e30d253 ILT |
4449 | // Return a string used to fill a code section with nops to take up |
4450 | // the specified length. | |
4451 | ||
fc51264f | 4452 | template<int size> |
2e30d253 | 4453 | std::string |
fc51264f | 4454 | Target_x86_64<size>::do_code_fill(section_size_type length) const |
2e30d253 ILT |
4455 | { |
4456 | if (length >= 16) | |
4457 | { | |
4458 | // Build a jmpq instruction to skip over the bytes. | |
4459 | unsigned char jmp[5]; | |
4460 | jmp[0] = 0xe9; | |
04bf7072 | 4461 | elfcpp::Swap_unaligned<32, false>::writeval(jmp + 1, length - 5); |
2e30d253 | 4462 | return (std::string(reinterpret_cast<char*>(&jmp[0]), 5) |
2e702c99 | 4463 | + std::string(length - 5, static_cast<char>(0x90))); |
2e30d253 ILT |
4464 | } |
4465 | ||
4466 | // Nop sequences of various lengths. | |
76677ad0 CC |
4467 | const char nop1[1] = { '\x90' }; // nop |
4468 | const char nop2[2] = { '\x66', '\x90' }; // xchg %ax %ax | |
4469 | const char nop3[3] = { '\x0f', '\x1f', '\x00' }; // nop (%rax) | |
4470 | const char nop4[4] = { '\x0f', '\x1f', '\x40', // nop 0(%rax) | |
2e702c99 | 4471 | '\x00'}; |
76677ad0 CC |
4472 | const char nop5[5] = { '\x0f', '\x1f', '\x44', // nop 0(%rax,%rax,1) |
4473 | '\x00', '\x00' }; | |
4474 | const char nop6[6] = { '\x66', '\x0f', '\x1f', // nopw 0(%rax,%rax,1) | |
2e702c99 | 4475 | '\x44', '\x00', '\x00' }; |
76677ad0 | 4476 | const char nop7[7] = { '\x0f', '\x1f', '\x80', // nopl 0L(%rax) |
2e702c99 | 4477 | '\x00', '\x00', '\x00', |
76677ad0 CC |
4478 | '\x00' }; |
4479 | const char nop8[8] = { '\x0f', '\x1f', '\x84', // nopl 0L(%rax,%rax,1) | |
2e702c99 | 4480 | '\x00', '\x00', '\x00', |
76677ad0 CC |
4481 | '\x00', '\x00' }; |
4482 | const char nop9[9] = { '\x66', '\x0f', '\x1f', // nopw 0L(%rax,%rax,1) | |
2e702c99 | 4483 | '\x84', '\x00', '\x00', |
76677ad0 CC |
4484 | '\x00', '\x00', '\x00' }; |
4485 | const char nop10[10] = { '\x66', '\x2e', '\x0f', // nopw %cs:0L(%rax,%rax,1) | |
2e702c99 | 4486 | '\x1f', '\x84', '\x00', |
76677ad0 CC |
4487 | '\x00', '\x00', '\x00', |
4488 | '\x00' }; | |
4489 | const char nop11[11] = { '\x66', '\x66', '\x2e', // data16 | |
2e702c99 | 4490 | '\x0f', '\x1f', '\x84', // nopw %cs:0L(%rax,%rax,1) |
76677ad0 CC |
4491 | '\x00', '\x00', '\x00', |
4492 | '\x00', '\x00' }; | |
4493 | const char nop12[12] = { '\x66', '\x66', '\x66', // data16; data16 | |
2e702c99 | 4494 | '\x2e', '\x0f', '\x1f', // nopw %cs:0L(%rax,%rax,1) |
76677ad0 CC |
4495 | '\x84', '\x00', '\x00', |
4496 | '\x00', '\x00', '\x00' }; | |
4497 | const char nop13[13] = { '\x66', '\x66', '\x66', // data16; data16; data16 | |
2e702c99 | 4498 | '\x66', '\x2e', '\x0f', // nopw %cs:0L(%rax,%rax,1) |
76677ad0 CC |
4499 | '\x1f', '\x84', '\x00', |
4500 | '\x00', '\x00', '\x00', | |
2e702c99 | 4501 | '\x00' }; |
76677ad0 | 4502 | const char nop14[14] = { '\x66', '\x66', '\x66', // data16; data16; data16 |
2e702c99 | 4503 | '\x66', '\x66', '\x2e', // data16 |
76677ad0 CC |
4504 | '\x0f', '\x1f', '\x84', // nopw %cs:0L(%rax,%rax,1) |
4505 | '\x00', '\x00', '\x00', | |
2e702c99 | 4506 | '\x00', '\x00' }; |
76677ad0 | 4507 | const char nop15[15] = { '\x66', '\x66', '\x66', // data16; data16; data16 |
2e702c99 | 4508 | '\x66', '\x66', '\x66', // data16; data16 |
76677ad0 CC |
4509 | '\x2e', '\x0f', '\x1f', // nopw %cs:0L(%rax,%rax,1) |
4510 | '\x84', '\x00', '\x00', | |
2e702c99 | 4511 | '\x00', '\x00', '\x00' }; |
2e30d253 ILT |
4512 | |
4513 | const char* nops[16] = { | |
4514 | NULL, | |
4515 | nop1, nop2, nop3, nop4, nop5, nop6, nop7, | |
4516 | nop8, nop9, nop10, nop11, nop12, nop13, nop14, nop15 | |
4517 | }; | |
4518 | ||
4519 | return std::string(nops[length], length); | |
4520 | } | |
4521 | ||
e291e7b9 ILT |
4522 | // Return the addend to use for a target specific relocation. The |
4523 | // only target specific relocation is R_X86_64_TLSDESC for a local | |
4524 | // symbol. We want to set the addend is the offset of the local | |
4525 | // symbol in the TLS segment. | |
4526 | ||
fc51264f | 4527 | template<int size> |
e291e7b9 | 4528 | uint64_t |
fc51264f L |
4529 | Target_x86_64<size>::do_reloc_addend(void* arg, unsigned int r_type, |
4530 | uint64_t) const | |
e291e7b9 ILT |
4531 | { |
4532 | gold_assert(r_type == elfcpp::R_X86_64_TLSDESC); | |
4533 | uintptr_t intarg = reinterpret_cast<uintptr_t>(arg); | |
4534 | gold_assert(intarg < this->tlsdesc_reloc_info_.size()); | |
4535 | const Tlsdesc_info& ti(this->tlsdesc_reloc_info_[intarg]); | |
fc51264f | 4536 | const Symbol_value<size>* psymval = ti.object->local_symbol(ti.r_sym); |
e291e7b9 ILT |
4537 | gold_assert(psymval->is_tls_symbol()); |
4538 | // The value of a TLS symbol is the offset in the TLS segment. | |
4539 | return psymval->value(ti.object, 0); | |
4540 | } | |
4541 | ||
02d7cd44 ILT |
4542 | // Return the value to use for the base of a DW_EH_PE_datarel offset |
4543 | // in an FDE. Solaris and SVR4 use DW_EH_PE_datarel because their | |
4544 | // assembler can not write out the difference between two labels in | |
4545 | // different sections, so instead of using a pc-relative value they | |
4546 | // use an offset from the GOT. | |
4547 | ||
fc51264f | 4548 | template<int size> |
02d7cd44 | 4549 | uint64_t |
fc51264f | 4550 | Target_x86_64<size>::do_ehframe_datarel_base() const |
02d7cd44 ILT |
4551 | { |
4552 | gold_assert(this->global_offset_table_ != NULL); | |
4553 | Symbol* sym = this->global_offset_table_; | |
fc51264f | 4554 | Sized_symbol<size>* ssym = static_cast<Sized_symbol<size>*>(sym); |
02d7cd44 ILT |
4555 | return ssym->value(); |
4556 | } | |
4557 | ||
364c7fa5 | 4558 | // FNOFFSET in section SHNDX in OBJECT is the start of a function |
9b547ce6 | 4559 | // compiled with -fsplit-stack. The function calls non-split-stack |
364c7fa5 ILT |
4560 | // code. We have to change the function so that it always ensures |
4561 | // that it has enough stack space to run some random function. | |
4562 | ||
4fc1b9d4 L |
4563 | static const unsigned char cmp_insn_32[] = { 0x64, 0x3b, 0x24, 0x25 }; |
4564 | static const unsigned char lea_r10_insn_32[] = { 0x44, 0x8d, 0x94, 0x24 }; | |
4565 | static const unsigned char lea_r11_insn_32[] = { 0x44, 0x8d, 0x9c, 0x24 }; | |
4566 | ||
4567 | static const unsigned char cmp_insn_64[] = { 0x64, 0x48, 0x3b, 0x24, 0x25 }; | |
4568 | static const unsigned char lea_r10_insn_64[] = { 0x4c, 0x8d, 0x94, 0x24 }; | |
4569 | static const unsigned char lea_r11_insn_64[] = { 0x4c, 0x8d, 0x9c, 0x24 }; | |
4570 | ||
fc51264f | 4571 | template<int size> |
364c7fa5 | 4572 | void |
fc51264f L |
4573 | Target_x86_64<size>::do_calls_non_split(Relobj* object, unsigned int shndx, |
4574 | section_offset_type fnoffset, | |
4575 | section_size_type fnsize, | |
4576 | unsigned char* view, | |
4577 | section_size_type view_size, | |
4578 | std::string* from, | |
4579 | std::string* to) const | |
364c7fa5 | 4580 | { |
4fc1b9d4 L |
4581 | const char* const cmp_insn = reinterpret_cast<const char*> |
4582 | (size == 32 ? cmp_insn_32 : cmp_insn_64); | |
4583 | const char* const lea_r10_insn = reinterpret_cast<const char*> | |
4584 | (size == 32 ? lea_r10_insn_32 : lea_r10_insn_64); | |
4585 | const char* const lea_r11_insn = reinterpret_cast<const char*> | |
4586 | (size == 32 ? lea_r11_insn_32 : lea_r11_insn_64); | |
4587 | ||
4588 | const size_t cmp_insn_len = | |
4589 | (size == 32 ? sizeof(cmp_insn_32) : sizeof(cmp_insn_64)); | |
4590 | const size_t lea_r10_insn_len = | |
4591 | (size == 32 ? sizeof(lea_r10_insn_32) : sizeof(lea_r10_insn_64)); | |
4592 | const size_t lea_r11_insn_len = | |
4593 | (size == 32 ? sizeof(lea_r11_insn_32) : sizeof(lea_r11_insn_64)); | |
4594 | const size_t nop_len = (size == 32 ? 7 : 8); | |
4595 | ||
364c7fa5 ILT |
4596 | // The function starts with a comparison of the stack pointer and a |
4597 | // field in the TCB. This is followed by a jump. | |
4598 | ||
4599 | // cmp %fs:NN,%rsp | |
4fc1b9d4 L |
4600 | if (this->match_view(view, view_size, fnoffset, cmp_insn, cmp_insn_len) |
4601 | && fnsize > nop_len + 1) | |
364c7fa5 ILT |
4602 | { |
4603 | // We will call __morestack if the carry flag is set after this | |
4604 | // comparison. We turn the comparison into an stc instruction | |
4605 | // and some nops. | |
4606 | view[fnoffset] = '\xf9'; | |
4fc1b9d4 | 4607 | this->set_view_to_nop(view, view_size, fnoffset + 1, nop_len); |
364c7fa5 ILT |
4608 | } |
4609 | // lea NN(%rsp),%r10 | |
cbc999b9 ILT |
4610 | // lea NN(%rsp),%r11 |
4611 | else if ((this->match_view(view, view_size, fnoffset, | |
4fc1b9d4 | 4612 | lea_r10_insn, lea_r10_insn_len) |
cbc999b9 | 4613 | || this->match_view(view, view_size, fnoffset, |
4fc1b9d4 | 4614 | lea_r11_insn, lea_r11_insn_len)) |
364c7fa5 ILT |
4615 | && fnsize > 8) |
4616 | { | |
4617 | // This is loading an offset from the stack pointer for a | |
4618 | // comparison. The offset is negative, so we decrease the | |
4619 | // offset by the amount of space we need for the stack. This | |
4620 | // means we will avoid calling __morestack if there happens to | |
4621 | // be plenty of space on the stack already. | |
4622 | unsigned char* pval = view + fnoffset + 4; | |
4623 | uint32_t val = elfcpp::Swap_unaligned<32, false>::readval(pval); | |
4624 | val -= parameters->options().split_stack_adjust_size(); | |
4625 | elfcpp::Swap_unaligned<32, false>::writeval(pval, val); | |
4626 | } | |
4627 | else | |
4628 | { | |
4629 | if (!object->has_no_split_stack()) | |
4630 | object->error(_("failed to match split-stack sequence at " | |
4631 | "section %u offset %0zx"), | |
ac33a407 | 4632 | shndx, static_cast<size_t>(fnoffset)); |
364c7fa5 ILT |
4633 | return; |
4634 | } | |
4635 | ||
4636 | // We have to change the function so that it calls | |
4637 | // __morestack_non_split instead of __morestack. The former will | |
4638 | // allocate additional stack space. | |
4639 | *from = "__morestack"; | |
4640 | *to = "__morestack_non_split"; | |
4641 | } | |
4642 | ||
2e702c99 RM |
4643 | // The selector for x86_64 object files. Note this is never instantiated |
4644 | // directly. It's only used in Target_selector_x86_64_nacl, below. | |
2e30d253 | 4645 | |
fc51264f | 4646 | template<int size> |
36959681 | 4647 | class Target_selector_x86_64 : public Target_selector_freebsd |
2e30d253 ILT |
4648 | { |
4649 | public: | |
4650 | Target_selector_x86_64() | |
fc51264f | 4651 | : Target_selector_freebsd(elfcpp::EM_X86_64, size, false, |
2e702c99 | 4652 | (size == 64 |
fc51264f | 4653 | ? "elf64-x86-64" : "elf32-x86-64"), |
2e702c99 | 4654 | (size == 64 |
fc51264f L |
4655 | ? "elf64-x86-64-freebsd" |
4656 | : "elf32-x86-64-freebsd"), | |
4657 | (size == 64 ? "elf_x86_64" : "elf32_x86_64")) | |
2e30d253 ILT |
4658 | { } |
4659 | ||
4660 | Target* | |
e96caa79 | 4661 | do_instantiate_target() |
fc51264f | 4662 | { return new Target_x86_64<size>(); } |
36959681 | 4663 | |
2e30d253 ILT |
4664 | }; |
4665 | ||
2e702c99 RM |
4666 | // NaCl variant. It uses different PLT contents. |
4667 | ||
4668 | template<int size> | |
4669 | class Output_data_plt_x86_64_nacl : public Output_data_plt_x86_64<size> | |
4670 | { | |
4671 | public: | |
4672 | Output_data_plt_x86_64_nacl(Layout* layout, | |
4673 | Output_data_got<64, false>* got, | |
57b2284c | 4674 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
4675 | Output_data_space* got_irelative) |
4676 | : Output_data_plt_x86_64<size>(layout, plt_entry_size, | |
4677 | got, got_plt, got_irelative) | |
4678 | { } | |
4679 | ||
4680 | Output_data_plt_x86_64_nacl(Layout* layout, | |
4681 | Output_data_got<64, false>* got, | |
57b2284c | 4682 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
4683 | Output_data_space* got_irelative, |
4684 | unsigned int plt_count) | |
4685 | : Output_data_plt_x86_64<size>(layout, plt_entry_size, | |
4686 | got, got_plt, got_irelative, | |
4687 | plt_count) | |
4688 | { } | |
4689 | ||
4690 | protected: | |
4691 | virtual unsigned int | |
4692 | do_get_plt_entry_size() const | |
4693 | { return plt_entry_size; } | |
4694 | ||
4695 | virtual void | |
4696 | do_add_eh_frame(Layout* layout) | |
4697 | { | |
4698 | layout->add_eh_frame_for_plt(this, | |
4699 | this->plt_eh_frame_cie, | |
4700 | this->plt_eh_frame_cie_size, | |
4701 | plt_eh_frame_fde, | |
4702 | plt_eh_frame_fde_size); | |
4703 | } | |
4704 | ||
4705 | virtual void | |
4706 | do_fill_first_plt_entry(unsigned char* pov, | |
4707 | typename elfcpp::Elf_types<size>::Elf_Addr got_addr, | |
4708 | typename elfcpp::Elf_types<size>::Elf_Addr plt_addr); | |
4709 | ||
4710 | virtual unsigned int | |
4711 | do_fill_plt_entry(unsigned char* pov, | |
4712 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
4713 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
4714 | unsigned int got_offset, | |
4715 | unsigned int plt_offset, | |
4716 | unsigned int plt_index); | |
4717 | ||
4718 | virtual void | |
4719 | do_fill_tlsdesc_entry(unsigned char* pov, | |
4720 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
4721 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
4722 | typename elfcpp::Elf_types<size>::Elf_Addr got_base, | |
4723 | unsigned int tlsdesc_got_offset, | |
4724 | unsigned int plt_offset); | |
4725 | ||
4726 | private: | |
4727 | // The size of an entry in the PLT. | |
4728 | static const int plt_entry_size = 64; | |
4729 | ||
4730 | // The first entry in the PLT. | |
4731 | static const unsigned char first_plt_entry[plt_entry_size]; | |
4732 | ||
4733 | // Other entries in the PLT for an executable. | |
4734 | static const unsigned char plt_entry[plt_entry_size]; | |
4735 | ||
4736 | // The reserved TLSDESC entry in the PLT for an executable. | |
4737 | static const unsigned char tlsdesc_plt_entry[plt_entry_size]; | |
4738 | ||
4739 | // The .eh_frame unwind information for the PLT. | |
4740 | static const int plt_eh_frame_fde_size = 32; | |
4741 | static const unsigned char plt_eh_frame_fde[plt_eh_frame_fde_size]; | |
4742 | }; | |
4743 | ||
4744 | template<int size> | |
4745 | class Target_x86_64_nacl : public Target_x86_64<size> | |
4746 | { | |
4747 | public: | |
4748 | Target_x86_64_nacl() | |
4749 | : Target_x86_64<size>(&x86_64_nacl_info) | |
4750 | { } | |
4751 | ||
4752 | virtual Output_data_plt_x86_64<size>* | |
4753 | do_make_data_plt(Layout* layout, | |
4754 | Output_data_got<64, false>* got, | |
57b2284c | 4755 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
4756 | Output_data_space* got_irelative) |
4757 | { | |
4758 | return new Output_data_plt_x86_64_nacl<size>(layout, got, got_plt, | |
4759 | got_irelative); | |
4760 | } | |
4761 | ||
4762 | virtual Output_data_plt_x86_64<size>* | |
4763 | do_make_data_plt(Layout* layout, | |
4764 | Output_data_got<64, false>* got, | |
57b2284c | 4765 | Output_data_got_plt_x86_64* got_plt, |
2e702c99 RM |
4766 | Output_data_space* got_irelative, |
4767 | unsigned int plt_count) | |
4768 | { | |
4769 | return new Output_data_plt_x86_64_nacl<size>(layout, got, got_plt, | |
4770 | got_irelative, | |
4771 | plt_count); | |
4772 | } | |
4773 | ||
93f8221c RM |
4774 | virtual std::string |
4775 | do_code_fill(section_size_type length) const; | |
4776 | ||
2e702c99 RM |
4777 | private: |
4778 | static const Target::Target_info x86_64_nacl_info; | |
4779 | }; | |
4780 | ||
4781 | template<> | |
4782 | const Target::Target_info Target_x86_64_nacl<64>::x86_64_nacl_info = | |
4783 | { | |
4784 | 64, // size | |
4785 | false, // is_big_endian | |
4786 | elfcpp::EM_X86_64, // machine_code | |
4787 | false, // has_make_symbol | |
4788 | false, // has_resolve | |
4789 | true, // has_code_fill | |
4790 | true, // is_default_stack_executable | |
4791 | true, // can_icf_inline_merge_sections | |
4792 | '\0', // wrap_char | |
4793 | "/lib64/ld-nacl-x86-64.so.1", // dynamic_linker | |
4794 | 0x20000, // default_text_segment_address | |
4795 | 0x10000, // abi_pagesize (overridable by -z max-page-size) | |
4796 | 0x10000, // common_pagesize (overridable by -z common-page-size) | |
4797 | true, // isolate_execinstr | |
4798 | 0x10000000, // rosegment_gap | |
4799 | elfcpp::SHN_UNDEF, // small_common_shndx | |
4800 | elfcpp::SHN_X86_64_LCOMMON, // large_common_shndx | |
4801 | 0, // small_common_section_flags | |
4802 | elfcpp::SHF_X86_64_LARGE, // large_common_section_flags | |
4803 | NULL, // attributes_section | |
a67858e0 CC |
4804 | NULL, // attributes_vendor |
4805 | "_start" // entry_symbol_name | |
2e702c99 RM |
4806 | }; |
4807 | ||
4808 | template<> | |
4809 | const Target::Target_info Target_x86_64_nacl<32>::x86_64_nacl_info = | |
4810 | { | |
4811 | 32, // size | |
4812 | false, // is_big_endian | |
4813 | elfcpp::EM_X86_64, // machine_code | |
4814 | false, // has_make_symbol | |
4815 | false, // has_resolve | |
4816 | true, // has_code_fill | |
4817 | true, // is_default_stack_executable | |
4818 | true, // can_icf_inline_merge_sections | |
4819 | '\0', // wrap_char | |
4820 | "/lib/ld-nacl-x86-64.so.1", // dynamic_linker | |
4821 | 0x20000, // default_text_segment_address | |
4822 | 0x10000, // abi_pagesize (overridable by -z max-page-size) | |
4823 | 0x10000, // common_pagesize (overridable by -z common-page-size) | |
4824 | true, // isolate_execinstr | |
4825 | 0x10000000, // rosegment_gap | |
4826 | elfcpp::SHN_UNDEF, // small_common_shndx | |
4827 | elfcpp::SHN_X86_64_LCOMMON, // large_common_shndx | |
4828 | 0, // small_common_section_flags | |
4829 | elfcpp::SHF_X86_64_LARGE, // large_common_section_flags | |
4830 | NULL, // attributes_section | |
a67858e0 CC |
4831 | NULL, // attributes_vendor |
4832 | "_start" // entry_symbol_name | |
2e702c99 RM |
4833 | }; |
4834 | ||
4835 | #define NACLMASK 0xe0 // 32-byte alignment mask. | |
4836 | ||
4837 | // The first entry in the PLT. | |
4838 | ||
4839 | template<int size> | |
4840 | const unsigned char | |
4841 | Output_data_plt_x86_64_nacl<size>::first_plt_entry[plt_entry_size] = | |
4842 | { | |
4843 | 0xff, 0x35, // pushq contents of memory address | |
4844 | 0, 0, 0, 0, // replaced with address of .got + 8 | |
4845 | 0x4c, 0x8b, 0x1d, // mov GOT+16(%rip), %r11 | |
4846 | 0, 0, 0, 0, // replaced with address of .got + 16 | |
4847 | 0x41, 0x83, 0xe3, NACLMASK, // and $-32, %r11d | |
4848 | 0x4d, 0x01, 0xfb, // add %r15, %r11 | |
4849 | 0x41, 0xff, 0xe3, // jmpq *%r11 | |
4850 | ||
4851 | // 9-byte nop sequence to pad out to the next 32-byte boundary. | |
dd0845d7 | 4852 | 0x66, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw 0x0(%rax,%rax,1) |
2e702c99 RM |
4853 | |
4854 | // 32 bytes of nop to pad out to the standard size | |
4855 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, // excess data32 prefixes | |
4856 | 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw %cs:0x0(%rax,%rax,1) | |
4857 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, // excess data32 prefixes | |
4858 | 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw %cs:0x0(%rax,%rax,1) | |
4859 | 0x66, // excess data32 prefix | |
4860 | 0x90 // nop | |
4861 | }; | |
4862 | ||
4863 | template<int size> | |
4864 | void | |
4865 | Output_data_plt_x86_64_nacl<size>::do_fill_first_plt_entry( | |
4866 | unsigned char* pov, | |
4867 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
4868 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address) | |
4869 | { | |
4870 | memcpy(pov, first_plt_entry, plt_entry_size); | |
4871 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, | |
4872 | (got_address + 8 | |
4873 | - (plt_address + 2 + 4))); | |
4874 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 9, | |
4875 | (got_address + 16 | |
4876 | - (plt_address + 9 + 4))); | |
4877 | } | |
4878 | ||
4879 | // Subsequent entries in the PLT. | |
4880 | ||
4881 | template<int size> | |
4882 | const unsigned char | |
4883 | Output_data_plt_x86_64_nacl<size>::plt_entry[plt_entry_size] = | |
4884 | { | |
4885 | 0x4c, 0x8b, 0x1d, // mov name@GOTPCREL(%rip),%r11 | |
4886 | 0, 0, 0, 0, // replaced with address of symbol in .got | |
4887 | 0x41, 0x83, 0xe3, NACLMASK, // and $-32, %r11d | |
4888 | 0x4d, 0x01, 0xfb, // add %r15, %r11 | |
4889 | 0x41, 0xff, 0xe3, // jmpq *%r11 | |
4890 | ||
4891 | // 15-byte nop sequence to pad out to the next 32-byte boundary. | |
4892 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, // excess data32 prefixes | |
4893 | 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw %cs:0x0(%rax,%rax,1) | |
4894 | ||
4895 | // Lazy GOT entries point here (32-byte aligned). | |
4896 | 0x68, // pushq immediate | |
4897 | 0, 0, 0, 0, // replaced with index into relocation table | |
4898 | 0xe9, // jmp relative | |
4899 | 0, 0, 0, 0, // replaced with offset to start of .plt0 | |
4900 | ||
4901 | // 22 bytes of nop to pad out to the standard size. | |
4902 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, // excess data32 prefixes | |
4903 | 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw %cs:0x0(%rax,%rax,1) | |
4904 | 0x0f, 0x1f, 0x80, 0, 0, 0, 0, // nopl 0x0(%rax) | |
4905 | }; | |
4906 | ||
4907 | template<int size> | |
4908 | unsigned int | |
4909 | Output_data_plt_x86_64_nacl<size>::do_fill_plt_entry( | |
4910 | unsigned char* pov, | |
4911 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
4912 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
4913 | unsigned int got_offset, | |
4914 | unsigned int plt_offset, | |
4915 | unsigned int plt_index) | |
4916 | { | |
4917 | memcpy(pov, plt_entry, plt_entry_size); | |
4918 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 3, | |
4919 | (got_address + got_offset | |
4920 | - (plt_address + plt_offset | |
4921 | + 3 + 4))); | |
4922 | ||
4923 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 33, plt_index); | |
4924 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 38, | |
4925 | - (plt_offset + 38 + 4)); | |
4926 | ||
4927 | return 32; | |
4928 | } | |
4929 | ||
4930 | // The reserved TLSDESC entry in the PLT. | |
4931 | ||
4932 | template<int size> | |
4933 | const unsigned char | |
4934 | Output_data_plt_x86_64_nacl<size>::tlsdesc_plt_entry[plt_entry_size] = | |
4935 | { | |
4936 | 0xff, 0x35, // pushq x(%rip) | |
4937 | 0, 0, 0, 0, // replaced with address of linkmap GOT entry (at PLTGOT + 8) | |
4938 | 0x4c, 0x8b, 0x1d, // mov y(%rip),%r11 | |
4939 | 0, 0, 0, 0, // replaced with offset of reserved TLSDESC_GOT entry | |
4940 | 0x41, 0x83, 0xe3, NACLMASK, // and $-32, %r11d | |
4941 | 0x4d, 0x01, 0xfb, // add %r15, %r11 | |
4942 | 0x41, 0xff, 0xe3, // jmpq *%r11 | |
4943 | ||
4944 | // 41 bytes of nop to pad out to the standard size. | |
4945 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, // excess data32 prefixes | |
4946 | 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw %cs:0x0(%rax,%rax,1) | |
4947 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, // excess data32 prefixes | |
4948 | 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw %cs:0x0(%rax,%rax,1) | |
4949 | 0x66, 0x66, // excess data32 prefixes | |
4950 | 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, // nopw %cs:0x0(%rax,%rax,1) | |
4951 | }; | |
4952 | ||
4953 | template<int size> | |
4954 | void | |
4955 | Output_data_plt_x86_64_nacl<size>::do_fill_tlsdesc_entry( | |
4956 | unsigned char* pov, | |
4957 | typename elfcpp::Elf_types<size>::Elf_Addr got_address, | |
4958 | typename elfcpp::Elf_types<size>::Elf_Addr plt_address, | |
4959 | typename elfcpp::Elf_types<size>::Elf_Addr got_base, | |
4960 | unsigned int tlsdesc_got_offset, | |
4961 | unsigned int plt_offset) | |
4962 | { | |
4963 | memcpy(pov, tlsdesc_plt_entry, plt_entry_size); | |
4964 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, | |
4965 | (got_address + 8 | |
4966 | - (plt_address + plt_offset | |
4967 | + 2 + 4))); | |
4968 | elfcpp::Swap_unaligned<32, false>::writeval(pov + 9, | |
4969 | (got_base | |
4970 | + tlsdesc_got_offset | |
4971 | - (plt_address + plt_offset | |
4972 | + 9 + 4))); | |
4973 | } | |
4974 | ||
4975 | // The .eh_frame unwind information for the PLT. | |
4976 | ||
4977 | template<int size> | |
4978 | const unsigned char | |
4979 | Output_data_plt_x86_64_nacl<size>::plt_eh_frame_fde[plt_eh_frame_fde_size] = | |
4980 | { | |
4981 | 0, 0, 0, 0, // Replaced with offset to .plt. | |
4982 | 0, 0, 0, 0, // Replaced with size of .plt. | |
4983 | 0, // Augmentation size. | |
4984 | elfcpp::DW_CFA_def_cfa_offset, 16, // DW_CFA_def_cfa_offset: 16. | |
4985 | elfcpp::DW_CFA_advance_loc + 6, // Advance 6 to __PLT__ + 6. | |
4986 | elfcpp::DW_CFA_def_cfa_offset, 24, // DW_CFA_def_cfa_offset: 24. | |
4987 | elfcpp::DW_CFA_advance_loc + 58, // Advance 58 to __PLT__ + 64. | |
4988 | elfcpp::DW_CFA_def_cfa_expression, // DW_CFA_def_cfa_expression. | |
4989 | 13, // Block length. | |
4990 | elfcpp::DW_OP_breg7, 8, // Push %rsp + 8. | |
4991 | elfcpp::DW_OP_breg16, 0, // Push %rip. | |
4992 | elfcpp::DW_OP_const1u, 63, // Push 0x3f. | |
4993 | elfcpp::DW_OP_and, // & (%rip & 0x3f). | |
4994 | elfcpp::DW_OP_const1u, 37, // Push 0x25. | |
4995 | elfcpp::DW_OP_ge, // >= ((%rip & 0x3f) >= 0x25) | |
4996 | elfcpp::DW_OP_lit3, // Push 3. | |
4997 | elfcpp::DW_OP_shl, // << (((%rip & 0x3f) >= 0x25) << 3) | |
4998 | elfcpp::DW_OP_plus, // + ((((%rip&0x3f)>=0x25)<<3)+%rsp+8 | |
4999 | elfcpp::DW_CFA_nop, // Align to 32 bytes. | |
5000 | elfcpp::DW_CFA_nop | |
5001 | }; | |
5002 | ||
93f8221c RM |
5003 | // Return a string used to fill a code section with nops. |
5004 | // For NaCl, long NOPs are only valid if they do not cross | |
5005 | // bundle alignment boundaries, so keep it simple with one-byte NOPs. | |
5006 | template<int size> | |
5007 | std::string | |
5008 | Target_x86_64_nacl<size>::do_code_fill(section_size_type length) const | |
5009 | { | |
5010 | return std::string(length, static_cast<char>(0x90)); | |
5011 | } | |
5012 | ||
2e702c99 RM |
5013 | // The selector for x86_64-nacl object files. |
5014 | ||
5015 | template<int size> | |
5016 | class Target_selector_x86_64_nacl | |
5017 | : public Target_selector_nacl<Target_selector_x86_64<size>, | |
5018 | Target_x86_64_nacl<size> > | |
5019 | { | |
5020 | public: | |
5021 | Target_selector_x86_64_nacl() | |
5022 | : Target_selector_nacl<Target_selector_x86_64<size>, | |
5023 | Target_x86_64_nacl<size> >("x86-64", | |
5024 | size == 64 | |
5025 | ? "elf64-x86-64-nacl" | |
5026 | : "elf32-x86-64-nacl", | |
5027 | size == 64 | |
5028 | ? "elf_x86_64_nacl" | |
5029 | : "elf32_x86_64_nacl") | |
5030 | { } | |
5031 | }; | |
5032 | ||
5033 | Target_selector_x86_64_nacl<64> target_selector_x86_64; | |
5034 | Target_selector_x86_64_nacl<32> target_selector_x32; | |
2e30d253 ILT |
5035 | |
5036 | } // End anonymous namespace. |