]>
Commit | Line | Data |
---|---|---|
61ba1cf9 ILT |
1 | // reloc.cc -- relocate input files for gold. |
2 | ||
6f2750fe | 3 | // Copyright (C) 2006-2016 Free Software Foundation, Inc. |
6cb15b7f ILT |
4 | // Written by Ian Lance Taylor <[email protected]>. |
5 | ||
6 | // This file is part of gold. | |
7 | ||
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 | |
11 | // (at your option) any later version. | |
12 | ||
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. | |
22 | ||
61ba1cf9 ILT |
23 | #include "gold.h" |
24 | ||
cb295612 ILT |
25 | #include <algorithm> |
26 | ||
61ba1cf9 | 27 | #include "workqueue.h" |
09ec0418 | 28 | #include "layout.h" |
5a6f7e2d | 29 | #include "symtab.h" |
61ba1cf9 | 30 | #include "output.h" |
a9a60db6 ILT |
31 | #include "merge.h" |
32 | #include "object.h" | |
7019cd25 | 33 | #include "target-reloc.h" |
61ba1cf9 | 34 | #include "reloc.h" |
032ce4e9 | 35 | #include "icf.h" |
a2e47362 | 36 | #include "compressed_output.h" |
09ec0418 | 37 | #include "incremental.h" |
61ba1cf9 ILT |
38 | |
39 | namespace gold | |
40 | { | |
41 | ||
92e059d8 ILT |
42 | // Read_relocs methods. |
43 | ||
44 | // These tasks just read the relocation information from the file. | |
45 | // After reading it, the start another task to process the | |
46 | // information. These tasks requires access to the file. | |
47 | ||
17a1d0a9 ILT |
48 | Task_token* |
49 | Read_relocs::is_runnable() | |
92e059d8 | 50 | { |
17a1d0a9 | 51 | return this->object_->is_locked() ? this->object_->token() : NULL; |
92e059d8 ILT |
52 | } |
53 | ||
54 | // Lock the file. | |
55 | ||
17a1d0a9 ILT |
56 | void |
57 | Read_relocs::locks(Task_locker* tl) | |
92e059d8 | 58 | { |
cdc29364 CC |
59 | Task_token* token = this->object_->token(); |
60 | if (token != NULL) | |
61 | tl->add(this, token); | |
92e059d8 ILT |
62 | } |
63 | ||
64 | // Read the relocations and then start a Scan_relocs_task. | |
65 | ||
66 | void | |
67 | Read_relocs::run(Workqueue* workqueue) | |
68 | { | |
ca09d69a | 69 | Read_relocs_data* rd = new Read_relocs_data; |
92e059d8 | 70 | this->object_->read_relocs(rd); |
6d03d481 | 71 | this->object_->set_relocs_data(rd); |
17a1d0a9 ILT |
72 | this->object_->release(); |
73 | ||
ef15dade ST |
74 | // If garbage collection or identical comdat folding is desired, we |
75 | // process the relocs first before scanning them. Scanning of relocs is | |
76 | // done only after garbage or identical sections is identified. | |
032ce4e9 ST |
77 | if (parameters->options().gc_sections() |
78 | || parameters->options().icf_enabled()) | |
ef15dade | 79 | { |
ad0f2072 | 80 | workqueue->queue_next(new Gc_process_relocs(this->symtab_, |
6d03d481 ST |
81 | this->layout_, |
82 | this->object_, rd, | |
93ceb764 ILT |
83 | this->this_blocker_, |
84 | this->next_blocker_)); | |
6d03d481 ST |
85 | } |
86 | else | |
87 | { | |
ad0f2072 ILT |
88 | workqueue->queue_next(new Scan_relocs(this->symtab_, this->layout_, |
89 | this->object_, rd, | |
93ceb764 ILT |
90 | this->this_blocker_, |
91 | this->next_blocker_)); | |
6d03d481 | 92 | } |
92e059d8 ILT |
93 | } |
94 | ||
c7912668 ILT |
95 | // Return a debugging name for the task. |
96 | ||
97 | std::string | |
98 | Read_relocs::get_name() const | |
99 | { | |
100 | return "Read_relocs " + this->object_->name(); | |
101 | } | |
102 | ||
6d03d481 ST |
103 | // Gc_process_relocs methods. |
104 | ||
93ceb764 ILT |
105 | Gc_process_relocs::~Gc_process_relocs() |
106 | { | |
107 | if (this->this_blocker_ != NULL) | |
108 | delete this->this_blocker_; | |
109 | } | |
110 | ||
111 | // These tasks process the relocations read by Read_relocs and | |
6d03d481 | 112 | // determine which sections are referenced and which are garbage. |
93ceb764 ILT |
113 | // This task is done only when --gc-sections is used. This is blocked |
114 | // by THIS_BLOCKER_. It unblocks NEXT_BLOCKER_. | |
6d03d481 ST |
115 | |
116 | Task_token* | |
117 | Gc_process_relocs::is_runnable() | |
118 | { | |
93ceb764 ILT |
119 | if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked()) |
120 | return this->this_blocker_; | |
6d03d481 ST |
121 | if (this->object_->is_locked()) |
122 | return this->object_->token(); | |
123 | return NULL; | |
124 | } | |
125 | ||
126 | void | |
127 | Gc_process_relocs::locks(Task_locker* tl) | |
128 | { | |
129 | tl->add(this, this->object_->token()); | |
93ceb764 | 130 | tl->add(this, this->next_blocker_); |
6d03d481 ST |
131 | } |
132 | ||
133 | void | |
134 | Gc_process_relocs::run(Workqueue*) | |
135 | { | |
ad0f2072 | 136 | this->object_->gc_process_relocs(this->symtab_, this->layout_, this->rd_); |
6d03d481 ST |
137 | this->object_->release(); |
138 | } | |
139 | ||
140 | // Return a debugging name for the task. | |
141 | ||
142 | std::string | |
143 | Gc_process_relocs::get_name() const | |
144 | { | |
145 | return "Gc_process_relocs " + this->object_->name(); | |
146 | } | |
147 | ||
92e059d8 ILT |
148 | // Scan_relocs methods. |
149 | ||
93ceb764 ILT |
150 | Scan_relocs::~Scan_relocs() |
151 | { | |
152 | if (this->this_blocker_ != NULL) | |
153 | delete this->this_blocker_; | |
154 | } | |
155 | ||
92e059d8 ILT |
156 | // These tasks scan the relocations read by Read_relocs and mark up |
157 | // the symbol table to indicate which relocations are required. We | |
158 | // use a lock on the symbol table to keep them from interfering with | |
159 | // each other. | |
160 | ||
17a1d0a9 ILT |
161 | Task_token* |
162 | Scan_relocs::is_runnable() | |
92e059d8 | 163 | { |
93ceb764 ILT |
164 | if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked()) |
165 | return this->this_blocker_; | |
17a1d0a9 ILT |
166 | if (this->object_->is_locked()) |
167 | return this->object_->token(); | |
168 | return NULL; | |
92e059d8 ILT |
169 | } |
170 | ||
171 | // Return the locks we hold: one on the file, one on the symbol table | |
172 | // and one blocker. | |
173 | ||
17a1d0a9 ILT |
174 | void |
175 | Scan_relocs::locks(Task_locker* tl) | |
92e059d8 | 176 | { |
cdc29364 CC |
177 | Task_token* token = this->object_->token(); |
178 | if (token != NULL) | |
179 | tl->add(this, token); | |
93ceb764 | 180 | tl->add(this, this->next_blocker_); |
92e059d8 ILT |
181 | } |
182 | ||
183 | // Scan the relocs. | |
184 | ||
185 | void | |
186 | Scan_relocs::run(Workqueue*) | |
187 | { | |
ad0f2072 | 188 | this->object_->scan_relocs(this->symtab_, this->layout_, this->rd_); |
92e059d8 ILT |
189 | delete this->rd_; |
190 | this->rd_ = NULL; | |
a2a5469e | 191 | this->object_->release(); |
92e059d8 ILT |
192 | } |
193 | ||
c7912668 ILT |
194 | // Return a debugging name for the task. |
195 | ||
196 | std::string | |
197 | Scan_relocs::get_name() const | |
198 | { | |
199 | return "Scan_relocs " + this->object_->name(); | |
200 | } | |
201 | ||
61ba1cf9 ILT |
202 | // Relocate_task methods. |
203 | ||
730cdc88 | 204 | // We may have to wait for the output sections to be written. |
61ba1cf9 | 205 | |
17a1d0a9 ILT |
206 | Task_token* |
207 | Relocate_task::is_runnable() | |
61ba1cf9 | 208 | { |
730cdc88 ILT |
209 | if (this->object_->relocs_must_follow_section_writes() |
210 | && this->output_sections_blocker_->is_blocked()) | |
17a1d0a9 | 211 | return this->output_sections_blocker_; |
730cdc88 | 212 | |
c7912668 | 213 | if (this->object_->is_locked()) |
17a1d0a9 | 214 | return this->object_->token(); |
c7912668 | 215 | |
17a1d0a9 | 216 | return NULL; |
61ba1cf9 ILT |
217 | } |
218 | ||
219 | // We want to lock the file while we run. We want to unblock | |
730cdc88 | 220 | // INPUT_SECTIONS_BLOCKER and FINAL_BLOCKER when we are done. |
17a1d0a9 | 221 | // INPUT_SECTIONS_BLOCKER may be NULL. |
61ba1cf9 | 222 | |
17a1d0a9 ILT |
223 | void |
224 | Relocate_task::locks(Task_locker* tl) | |
61ba1cf9 | 225 | { |
17a1d0a9 ILT |
226 | if (this->input_sections_blocker_ != NULL) |
227 | tl->add(this, this->input_sections_blocker_); | |
228 | tl->add(this, this->final_blocker_); | |
cdc29364 CC |
229 | Task_token* token = this->object_->token(); |
230 | if (token != NULL) | |
231 | tl->add(this, token); | |
61ba1cf9 ILT |
232 | } |
233 | ||
234 | // Run the task. | |
235 | ||
236 | void | |
237 | Relocate_task::run(Workqueue*) | |
238 | { | |
ad0f2072 | 239 | this->object_->relocate(this->symtab_, this->layout_, this->of_); |
cb295612 ILT |
240 | |
241 | // This is normally the last thing we will do with an object, so | |
242 | // uncache all views. | |
243 | this->object_->clear_view_cache_marks(); | |
244 | ||
17a1d0a9 | 245 | this->object_->release(); |
61ba1cf9 ILT |
246 | } |
247 | ||
c7912668 ILT |
248 | // Return a debugging name for the task. |
249 | ||
250 | std::string | |
251 | Relocate_task::get_name() const | |
252 | { | |
253 | return "Relocate_task " + this->object_->name(); | |
254 | } | |
255 | ||
92e059d8 ILT |
256 | // Read the relocs and local symbols from the object file and store |
257 | // the information in RD. | |
258 | ||
259 | template<int size, bool big_endian> | |
260 | void | |
6fa2a40b | 261 | Sized_relobj_file<size, big_endian>::do_read_relocs(Read_relocs_data* rd) |
92e059d8 ILT |
262 | { |
263 | rd->relocs.clear(); | |
264 | ||
2ea97941 ILT |
265 | unsigned int shnum = this->shnum(); |
266 | if (shnum == 0) | |
92e059d8 ILT |
267 | return; |
268 | ||
2ea97941 | 269 | rd->relocs.reserve(shnum / 2); |
92e059d8 | 270 | |
ef9beddf | 271 | const Output_sections& out_sections(this->output_sections()); |
6fa2a40b | 272 | const std::vector<Address>& out_offsets(this->section_offsets()); |
730cdc88 | 273 | |
ca09d69a | 274 | const unsigned char* pshdrs = this->get_view(this->elf_file_.shoff(), |
2ea97941 | 275 | shnum * This::shdr_size, |
39d0cb0e | 276 | true, true); |
92e059d8 | 277 | // Skip the first, dummy, section. |
ca09d69a | 278 | const unsigned char* ps = pshdrs + This::shdr_size; |
2ea97941 | 279 | for (unsigned int i = 1; i < shnum; ++i, ps += This::shdr_size) |
92e059d8 ILT |
280 | { |
281 | typename This::Shdr shdr(ps); | |
282 | ||
283 | unsigned int sh_type = shdr.get_sh_type(); | |
284 | if (sh_type != elfcpp::SHT_REL && sh_type != elfcpp::SHT_RELA) | |
285 | continue; | |
286 | ||
d491d34e | 287 | unsigned int shndx = this->adjust_shndx(shdr.get_sh_info()); |
2ea97941 | 288 | if (shndx >= shnum) |
92e059d8 | 289 | { |
75f2446e ILT |
290 | this->error(_("relocation section %u has bad info %u"), |
291 | i, shndx); | |
292 | continue; | |
92e059d8 ILT |
293 | } |
294 | ||
ef9beddf | 295 | Output_section* os = out_sections[shndx]; |
730cdc88 | 296 | if (os == NULL) |
92e059d8 ILT |
297 | continue; |
298 | ||
ead1e424 ILT |
299 | // We are scanning relocations in order to fill out the GOT and |
300 | // PLT sections. Relocations for sections which are not | |
301 | // allocated (typically debugging sections) should not add new | |
6a74a719 | 302 | // GOT and PLT entries. So we skip them unless this is a |
031cdbed ILT |
303 | // relocatable link or we need to emit relocations. FIXME: What |
304 | // should we do if a linker script maps a section with SHF_ALLOC | |
305 | // clear to a section with SHF_ALLOC set? | |
7019cd25 ILT |
306 | typename This::Shdr secshdr(pshdrs + shndx * This::shdr_size); |
307 | bool is_section_allocated = ((secshdr.get_sh_flags() & elfcpp::SHF_ALLOC) | |
308 | != 0); | |
309 | if (!is_section_allocated | |
8851ecca | 310 | && !parameters->options().relocatable() |
09ec0418 | 311 | && !parameters->options().emit_relocs() |
8c21d9d3 | 312 | && !parameters->incremental()) |
7019cd25 | 313 | continue; |
ead1e424 | 314 | |
d491d34e | 315 | if (this->adjust_shndx(shdr.get_sh_link()) != this->symtab_shndx_) |
92e059d8 | 316 | { |
75f2446e ILT |
317 | this->error(_("relocation section %u uses unexpected " |
318 | "symbol table %u"), | |
d491d34e | 319 | i, this->adjust_shndx(shdr.get_sh_link())); |
75f2446e | 320 | continue; |
92e059d8 ILT |
321 | } |
322 | ||
323 | off_t sh_size = shdr.get_sh_size(); | |
324 | ||
8dbe1edc ILT |
325 | if (sh_size == 0) |
326 | continue; | |
327 | ||
92e059d8 ILT |
328 | unsigned int reloc_size; |
329 | if (sh_type == elfcpp::SHT_REL) | |
330 | reloc_size = elfcpp::Elf_sizes<size>::rel_size; | |
331 | else | |
332 | reloc_size = elfcpp::Elf_sizes<size>::rela_size; | |
333 | if (reloc_size != shdr.get_sh_entsize()) | |
334 | { | |
75f2446e ILT |
335 | this->error(_("unexpected entsize for reloc section %u: %lu != %u"), |
336 | i, static_cast<unsigned long>(shdr.get_sh_entsize()), | |
337 | reloc_size); | |
338 | continue; | |
92e059d8 ILT |
339 | } |
340 | ||
341 | size_t reloc_count = sh_size / reloc_size; | |
f5c3f225 | 342 | if (static_cast<off_t>(reloc_count * reloc_size) != sh_size) |
92e059d8 | 343 | { |
75f2446e ILT |
344 | this->error(_("reloc section %u size %lu uneven"), |
345 | i, static_cast<unsigned long>(sh_size)); | |
346 | continue; | |
92e059d8 ILT |
347 | } |
348 | ||
349 | rd->relocs.push_back(Section_relocs()); | |
350 | Section_relocs& sr(rd->relocs.back()); | |
351 | sr.reloc_shndx = i; | |
352 | sr.data_shndx = shndx; | |
9eb9fa57 | 353 | sr.contents = this->get_lasting_view(shdr.get_sh_offset(), sh_size, |
39d0cb0e | 354 | true, true); |
92e059d8 ILT |
355 | sr.sh_type = sh_type; |
356 | sr.reloc_count = reloc_count; | |
730cdc88 | 357 | sr.output_section = os; |
a45248e0 | 358 | sr.needs_special_offset_handling = out_offsets[shndx] == invalid_address; |
7019cd25 | 359 | sr.is_data_section_allocated = is_section_allocated; |
92e059d8 ILT |
360 | } |
361 | ||
362 | // Read the local symbols. | |
a3ad94ed | 363 | gold_assert(this->symtab_shndx_ != -1U); |
645f8123 | 364 | if (this->symtab_shndx_ == 0 || this->local_symbol_count_ == 0) |
92e059d8 ILT |
365 | rd->local_symbols = NULL; |
366 | else | |
367 | { | |
368 | typename This::Shdr symtabshdr(pshdrs | |
645f8123 | 369 | + this->symtab_shndx_ * This::shdr_size); |
a3ad94ed | 370 | gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB); |
2ea97941 | 371 | const int sym_size = This::sym_size; |
92e059d8 | 372 | const unsigned int loccount = this->local_symbol_count_; |
a3ad94ed | 373 | gold_assert(loccount == symtabshdr.get_sh_info()); |
2ea97941 | 374 | off_t locsize = loccount * sym_size; |
92e059d8 | 375 | rd->local_symbols = this->get_lasting_view(symtabshdr.get_sh_offset(), |
39d0cb0e | 376 | locsize, true, true); |
92e059d8 ILT |
377 | } |
378 | } | |
379 | ||
6d03d481 | 380 | // Process the relocs to generate mappings from source sections to referenced |
9b547ce6 | 381 | // sections. This is used during garbage collection to determine garbage |
6d03d481 ST |
382 | // sections. |
383 | ||
384 | template<int size, bool big_endian> | |
385 | void | |
6fa2a40b CC |
386 | Sized_relobj_file<size, big_endian>::do_gc_process_relocs(Symbol_table* symtab, |
387 | Layout* layout, | |
388 | Read_relocs_data* rd) | |
6d03d481 | 389 | { |
029ba973 ILT |
390 | Sized_target<size, big_endian>* target = |
391 | parameters->sized_target<size, big_endian>(); | |
6d03d481 ST |
392 | |
393 | const unsigned char* local_symbols; | |
394 | if (rd->local_symbols == NULL) | |
395 | local_symbols = NULL; | |
396 | else | |
397 | local_symbols = rd->local_symbols->data(); | |
398 | ||
399 | for (Read_relocs_data::Relocs_list::iterator p = rd->relocs.begin(); | |
400 | p != rd->relocs.end(); | |
401 | ++p) | |
402 | { | |
403 | if (!parameters->options().relocatable()) | |
404 | { | |
405 | // As noted above, when not generating an object file, we | |
406 | // only scan allocated sections. We may see a non-allocated | |
407 | // section here if we are emitting relocs. | |
408 | if (p->is_data_section_allocated) | |
2ea97941 | 409 | target->gc_process_relocs(symtab, layout, this, |
6d03d481 ST |
410 | p->data_shndx, p->sh_type, |
411 | p->contents->data(), p->reloc_count, | |
412 | p->output_section, | |
413 | p->needs_special_offset_handling, | |
414 | this->local_symbol_count_, | |
415 | local_symbols); | |
416 | } | |
417 | } | |
418 | } | |
419 | ||
420 | ||
92e059d8 ILT |
421 | // Scan the relocs and adjust the symbol table. This looks for |
422 | // relocations which require GOT/PLT/COPY relocations. | |
423 | ||
424 | template<int size, bool big_endian> | |
425 | void | |
6fa2a40b | 426 | Sized_relobj_file<size, big_endian>::do_scan_relocs(Symbol_table* symtab, |
2ea97941 | 427 | Layout* layout, |
92e059d8 ILT |
428 | Read_relocs_data* rd) |
429 | { | |
029ba973 ILT |
430 | Sized_target<size, big_endian>* target = |
431 | parameters->sized_target<size, big_endian>(); | |
92e059d8 ILT |
432 | |
433 | const unsigned char* local_symbols; | |
434 | if (rd->local_symbols == NULL) | |
435 | local_symbols = NULL; | |
436 | else | |
437 | local_symbols = rd->local_symbols->data(); | |
438 | ||
09ec0418 CC |
439 | // For incremental links, allocate the counters for incremental relocations. |
440 | if (layout->incremental_inputs() != NULL) | |
441 | this->allocate_incremental_reloc_counts(); | |
442 | ||
92e059d8 ILT |
443 | for (Read_relocs_data::Relocs_list::iterator p = rd->relocs.begin(); |
444 | p != rd->relocs.end(); | |
445 | ++p) | |
446 | { | |
6d03d481 ST |
447 | // When garbage collection is on, unreferenced sections are not included |
448 | // in the link that would have been included normally. This is known only | |
449 | // after Read_relocs hence this check has to be done again. | |
032ce4e9 ST |
450 | if (parameters->options().gc_sections() |
451 | || parameters->options().icf_enabled()) | |
6d03d481 ST |
452 | { |
453 | if (p->output_section == NULL) | |
454 | continue; | |
455 | } | |
8851ecca | 456 | if (!parameters->options().relocatable()) |
7019cd25 ILT |
457 | { |
458 | // As noted above, when not generating an object file, we | |
459 | // only scan allocated sections. We may see a non-allocated | |
460 | // section here if we are emitting relocs. | |
461 | if (p->is_data_section_allocated) | |
2ea97941 | 462 | target->scan_relocs(symtab, layout, this, p->data_shndx, |
7019cd25 ILT |
463 | p->sh_type, p->contents->data(), |
464 | p->reloc_count, p->output_section, | |
465 | p->needs_special_offset_handling, | |
466 | this->local_symbol_count_, | |
467 | local_symbols); | |
8851ecca | 468 | if (parameters->options().emit_relocs()) |
2ea97941 | 469 | this->emit_relocs_scan(symtab, layout, local_symbols, p); |
09ec0418 CC |
470 | if (layout->incremental_inputs() != NULL) |
471 | this->incremental_relocs_scan(p); | |
7019cd25 | 472 | } |
6a74a719 ILT |
473 | else |
474 | { | |
475 | Relocatable_relocs* rr = this->relocatable_relocs(p->reloc_shndx); | |
476 | gold_assert(rr != NULL); | |
477 | rr->set_reloc_count(p->reloc_count); | |
2ea97941 | 478 | target->scan_relocatable_relocs(symtab, layout, this, |
6a74a719 ILT |
479 | p->data_shndx, p->sh_type, |
480 | p->contents->data(), | |
481 | p->reloc_count, | |
482 | p->output_section, | |
483 | p->needs_special_offset_handling, | |
484 | this->local_symbol_count_, | |
485 | local_symbols, | |
486 | rr); | |
487 | } | |
488 | ||
92e059d8 ILT |
489 | delete p->contents; |
490 | p->contents = NULL; | |
491 | } | |
492 | ||
09ec0418 CC |
493 | // For incremental links, finalize the allocation of relocations. |
494 | if (layout->incremental_inputs() != NULL) | |
cdc29364 | 495 | this->finalize_incremental_relocs(layout, true); |
09ec0418 | 496 | |
92e059d8 ILT |
497 | if (rd->local_symbols != NULL) |
498 | { | |
499 | delete rd->local_symbols; | |
500 | rd->local_symbols = NULL; | |
501 | } | |
502 | } | |
503 | ||
7019cd25 ILT |
504 | // This is a strategy class we use when scanning for --emit-relocs. |
505 | ||
506 | template<int sh_type> | |
507 | class Emit_relocs_strategy | |
508 | { | |
509 | public: | |
510 | // A local non-section symbol. | |
511 | inline Relocatable_relocs::Reloc_strategy | |
68943102 | 512 | local_non_section_strategy(unsigned int, Relobj*, unsigned int) |
7019cd25 ILT |
513 | { return Relocatable_relocs::RELOC_COPY; } |
514 | ||
515 | // A local section symbol. | |
516 | inline Relocatable_relocs::Reloc_strategy | |
517 | local_section_strategy(unsigned int, Relobj*) | |
518 | { | |
519 | if (sh_type == elfcpp::SHT_RELA) | |
520 | return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA; | |
521 | else | |
522 | { | |
523 | // The addend is stored in the section contents. Since this | |
524 | // is not a relocatable link, we are going to apply the | |
525 | // relocation contents to the section as usual. This means | |
526 | // that we have no way to record the original addend. If the | |
527 | // original addend is not zero, there is basically no way for | |
528 | // the user to handle this correctly. Caveat emptor. | |
529 | return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_0; | |
530 | } | |
531 | } | |
532 | ||
533 | // A global symbol. | |
534 | inline Relocatable_relocs::Reloc_strategy | |
535 | global_strategy(unsigned int, Relobj*, unsigned int) | |
536 | { return Relocatable_relocs::RELOC_COPY; } | |
537 | }; | |
538 | ||
539 | // Scan the input relocations for --emit-relocs. | |
540 | ||
541 | template<int size, bool big_endian> | |
542 | void | |
6fa2a40b | 543 | Sized_relobj_file<size, big_endian>::emit_relocs_scan( |
7019cd25 | 544 | Symbol_table* symtab, |
2ea97941 | 545 | Layout* layout, |
7019cd25 ILT |
546 | const unsigned char* plocal_syms, |
547 | const Read_relocs_data::Relocs_list::iterator& p) | |
548 | { | |
549 | Relocatable_relocs* rr = this->relocatable_relocs(p->reloc_shndx); | |
550 | gold_assert(rr != NULL); | |
551 | rr->set_reloc_count(p->reloc_count); | |
552 | ||
553 | if (p->sh_type == elfcpp::SHT_REL) | |
2ea97941 | 554 | this->emit_relocs_scan_reltype<elfcpp::SHT_REL>(symtab, layout, |
7019cd25 ILT |
555 | plocal_syms, p, rr); |
556 | else | |
557 | { | |
558 | gold_assert(p->sh_type == elfcpp::SHT_RELA); | |
2ea97941 | 559 | this->emit_relocs_scan_reltype<elfcpp::SHT_RELA>(symtab, layout, |
ad0f2072 | 560 | plocal_syms, p, rr); |
7019cd25 ILT |
561 | } |
562 | } | |
563 | ||
564 | // Scan the input relocation for --emit-relocs, templatized on the | |
565 | // type of the relocation section. | |
566 | ||
567 | template<int size, bool big_endian> | |
568 | template<int sh_type> | |
569 | void | |
6fa2a40b | 570 | Sized_relobj_file<size, big_endian>::emit_relocs_scan_reltype( |
7019cd25 | 571 | Symbol_table* symtab, |
2ea97941 | 572 | Layout* layout, |
7019cd25 ILT |
573 | const unsigned char* plocal_syms, |
574 | const Read_relocs_data::Relocs_list::iterator& p, | |
575 | Relocatable_relocs* rr) | |
576 | { | |
577 | scan_relocatable_relocs<size, big_endian, sh_type, | |
578 | Emit_relocs_strategy<sh_type> >( | |
7019cd25 | 579 | symtab, |
2ea97941 | 580 | layout, |
7019cd25 ILT |
581 | this, |
582 | p->data_shndx, | |
583 | p->contents->data(), | |
584 | p->reloc_count, | |
585 | p->output_section, | |
586 | p->needs_special_offset_handling, | |
587 | this->local_symbol_count_, | |
588 | plocal_syms, | |
589 | rr); | |
590 | } | |
591 | ||
09ec0418 CC |
592 | // Scan the input relocations for --incremental. |
593 | ||
594 | template<int size, bool big_endian> | |
595 | void | |
6fa2a40b | 596 | Sized_relobj_file<size, big_endian>::incremental_relocs_scan( |
09ec0418 CC |
597 | const Read_relocs_data::Relocs_list::iterator& p) |
598 | { | |
599 | if (p->sh_type == elfcpp::SHT_REL) | |
600 | this->incremental_relocs_scan_reltype<elfcpp::SHT_REL>(p); | |
601 | else | |
602 | { | |
603 | gold_assert(p->sh_type == elfcpp::SHT_RELA); | |
604 | this->incremental_relocs_scan_reltype<elfcpp::SHT_RELA>(p); | |
605 | } | |
606 | } | |
607 | ||
cdc29364 | 608 | // Scan the input relocation for --incremental, templatized on the |
09ec0418 CC |
609 | // type of the relocation section. |
610 | ||
611 | template<int size, bool big_endian> | |
612 | template<int sh_type> | |
613 | void | |
6fa2a40b | 614 | Sized_relobj_file<size, big_endian>::incremental_relocs_scan_reltype( |
09ec0418 CC |
615 | const Read_relocs_data::Relocs_list::iterator& p) |
616 | { | |
617 | typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reltype; | |
618 | const int reloc_size = Reloc_types<sh_type, size, big_endian>::reloc_size; | |
619 | const unsigned char* prelocs = p->contents->data(); | |
620 | size_t reloc_count = p->reloc_count; | |
621 | ||
622 | for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size) | |
623 | { | |
624 | Reltype reloc(prelocs); | |
625 | ||
626 | if (p->needs_special_offset_handling | |
627 | && !p->output_section->is_input_address_mapped(this, p->data_shndx, | |
628 | reloc.get_r_offset())) | |
629 | continue; | |
630 | ||
631 | typename elfcpp::Elf_types<size>::Elf_WXword r_info = | |
632 | reloc.get_r_info(); | |
633 | const unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info); | |
634 | ||
635 | if (r_sym >= this->local_symbol_count_) | |
636 | this->count_incremental_reloc(r_sym - this->local_symbol_count_); | |
637 | } | |
638 | } | |
639 | ||
61ba1cf9 ILT |
640 | // Relocate the input sections and write out the local symbols. |
641 | ||
642 | template<int size, bool big_endian> | |
643 | void | |
6fa2a40b CC |
644 | Sized_relobj_file<size, big_endian>::do_relocate(const Symbol_table* symtab, |
645 | const Layout* layout, | |
646 | Output_file* of) | |
61ba1cf9 | 647 | { |
2ea97941 | 648 | unsigned int shnum = this->shnum(); |
61ba1cf9 ILT |
649 | |
650 | // Read the section headers. | |
645f8123 | 651 | const unsigned char* pshdrs = this->get_view(this->elf_file_.shoff(), |
2ea97941 | 652 | shnum * This::shdr_size, |
39d0cb0e | 653 | true, true); |
61ba1cf9 ILT |
654 | |
655 | Views views; | |
2ea97941 | 656 | views.resize(shnum); |
61ba1cf9 ILT |
657 | |
658 | // Make two passes over the sections. The first one copies the | |
659 | // section data to the output file. The second one applies | |
660 | // relocations. | |
661 | ||
487b39df | 662 | this->write_sections(layout, pshdrs, of, &views); |
61ba1cf9 | 663 | |
a9a60db6 ILT |
664 | // To speed up relocations, we set up hash tables for fast lookup of |
665 | // input offsets to output addresses. | |
666 | this->initialize_input_to_output_maps(); | |
667 | ||
6b2353a5 CC |
668 | // Make the views available through get_output_view() for the duration |
669 | // of this routine. This RAII class will reset output_views_ to NULL | |
670 | // when the views go out of scope. | |
671 | struct Set_output_views | |
672 | { | |
673 | Set_output_views(const Views** ppviews, const Views* pviews) | |
674 | { | |
675 | ppviews_ = ppviews; | |
676 | *ppviews = pviews; | |
677 | } | |
678 | ||
679 | ~Set_output_views() | |
680 | { *ppviews_ = NULL; } | |
681 | ||
682 | const Views** ppviews_; | |
683 | }; | |
684 | Set_output_views set_output_views(&this->output_views_, &views); | |
685 | ||
61ba1cf9 ILT |
686 | // Apply relocations. |
687 | ||
09ec0418 | 688 | this->relocate_sections(symtab, layout, pshdrs, of, &views); |
61ba1cf9 | 689 | |
a9a60db6 ILT |
690 | // After we've done the relocations, we release the hash tables, |
691 | // since we no longer need them. | |
692 | this->free_input_to_output_maps(); | |
693 | ||
61ba1cf9 | 694 | // Write out the accumulated views. |
2ea97941 | 695 | for (unsigned int i = 1; i < shnum; ++i) |
61ba1cf9 ILT |
696 | { |
697 | if (views[i].view != NULL) | |
730cdc88 | 698 | { |
487b39df ILT |
699 | if (views[i].is_ctors_reverse_view) |
700 | this->reverse_words(views[i].view, views[i].view_size); | |
96803768 ILT |
701 | if (!views[i].is_postprocessing_view) |
702 | { | |
703 | if (views[i].is_input_output_view) | |
704 | of->write_input_output_view(views[i].offset, | |
705 | views[i].view_size, | |
706 | views[i].view); | |
707 | else | |
708 | of->write_output_view(views[i].offset, views[i].view_size, | |
709 | views[i].view); | |
710 | } | |
730cdc88 | 711 | } |
61ba1cf9 ILT |
712 | } |
713 | ||
714 | // Write out the local symbols. | |
2ea97941 | 715 | this->write_local_symbols(of, layout->sympool(), layout->dynpool(), |
cdc29364 | 716 | layout->symtab_xindex(), layout->dynsym_xindex(), |
bec5b579 | 717 | layout->symtab_section_offset()); |
61ba1cf9 ILT |
718 | } |
719 | ||
cb295612 ILT |
720 | // Sort a Read_multiple vector by file offset. |
721 | struct Read_multiple_compare | |
722 | { | |
723 | inline bool | |
724 | operator()(const File_read::Read_multiple_entry& rme1, | |
725 | const File_read::Read_multiple_entry& rme2) const | |
726 | { return rme1.file_offset < rme2.file_offset; } | |
727 | }; | |
728 | ||
61ba1cf9 ILT |
729 | // Write section data to the output file. PSHDRS points to the |
730 | // section headers. Record the views in *PVIEWS for use when | |
731 | // relocating. | |
732 | ||
733 | template<int size, bool big_endian> | |
734 | void | |
487b39df ILT |
735 | Sized_relobj_file<size, big_endian>::write_sections(const Layout* layout, |
736 | const unsigned char* pshdrs, | |
6fa2a40b CC |
737 | Output_file* of, |
738 | Views* pviews) | |
61ba1cf9 | 739 | { |
2ea97941 | 740 | unsigned int shnum = this->shnum(); |
ef9beddf | 741 | const Output_sections& out_sections(this->output_sections()); |
6fa2a40b | 742 | const std::vector<Address>& out_offsets(this->section_offsets()); |
61ba1cf9 | 743 | |
cb295612 ILT |
744 | File_read::Read_multiple rm; |
745 | bool is_sorted = true; | |
746 | ||
61ba1cf9 | 747 | const unsigned char* p = pshdrs + This::shdr_size; |
2ea97941 | 748 | for (unsigned int i = 1; i < shnum; ++i, p += This::shdr_size) |
61ba1cf9 ILT |
749 | { |
750 | View_size* pvs = &(*pviews)[i]; | |
751 | ||
752 | pvs->view = NULL; | |
753 | ||
ef9beddf | 754 | const Output_section* os = out_sections[i]; |
61ba1cf9 ILT |
755 | if (os == NULL) |
756 | continue; | |
ef9beddf | 757 | Address output_offset = out_offsets[i]; |
61ba1cf9 ILT |
758 | |
759 | typename This::Shdr shdr(p); | |
760 | ||
761 | if (shdr.get_sh_type() == elfcpp::SHT_NOBITS) | |
762 | continue; | |
763 | ||
8851ecca ILT |
764 | if ((parameters->options().relocatable() |
765 | || parameters->options().emit_relocs()) | |
6a74a719 ILT |
766 | && (shdr.get_sh_type() == elfcpp::SHT_REL |
767 | || shdr.get_sh_type() == elfcpp::SHT_RELA) | |
768 | && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0) | |
769 | { | |
7019cd25 ILT |
770 | // This is a reloc section in a relocatable link or when |
771 | // emitting relocs. We don't need to read the input file. | |
772 | // The size and file offset are stored in the | |
773 | // Relocatable_relocs structure. | |
6a74a719 ILT |
774 | Relocatable_relocs* rr = this->relocatable_relocs(i); |
775 | gold_assert(rr != NULL); | |
776 | Output_data* posd = rr->output_data(); | |
777 | gold_assert(posd != NULL); | |
778 | ||
779 | pvs->offset = posd->offset(); | |
780 | pvs->view_size = posd->data_size(); | |
781 | pvs->view = of->get_output_view(pvs->offset, pvs->view_size); | |
782 | pvs->address = posd->address(); | |
783 | pvs->is_input_output_view = false; | |
784 | pvs->is_postprocessing_view = false; | |
487b39df | 785 | pvs->is_ctors_reverse_view = false; |
6a74a719 ILT |
786 | |
787 | continue; | |
788 | } | |
789 | ||
96803768 ILT |
790 | // In the normal case, this input section is simply mapped to |
791 | // the output section at offset OUTPUT_OFFSET. | |
792 | ||
eff45813 CC |
793 | // However, if OUTPUT_OFFSET == INVALID_ADDRESS, then input data is |
794 | // handled specially--e.g., a .eh_frame section. The relocation | |
96803768 ILT |
795 | // routines need to check for each reloc where it should be |
796 | // applied. For this case, we need an input/output view for the | |
797 | // entire contents of the section in the output file. We don't | |
798 | // want to copy the contents of the input section to the output | |
799 | // section; the output section contents were already written, | |
800 | // and we waited for them in Relocate_task::is_runnable because | |
801 | // relocs_must_follow_section_writes is set for the object. | |
802 | ||
803 | // Regardless of which of the above cases is true, we have to | |
804 | // check requires_postprocessing of the output section. If that | |
805 | // is false, then we work with views of the output file | |
806 | // directly. If it is true, then we work with a separate | |
807 | // buffer, and the output section is responsible for writing the | |
808 | // final data to the output file. | |
809 | ||
2ea97941 | 810 | off_t output_section_offset; |
ef9beddf | 811 | Address output_section_size; |
96803768 ILT |
812 | if (!os->requires_postprocessing()) |
813 | { | |
2ea97941 | 814 | output_section_offset = os->offset(); |
ef9beddf | 815 | output_section_size = convert_types<Address, off_t>(os->data_size()); |
96803768 ILT |
816 | } |
817 | else | |
818 | { | |
2ea97941 | 819 | output_section_offset = 0; |
ef9beddf ILT |
820 | output_section_size = |
821 | convert_types<Address, off_t>(os->postprocessing_buffer_size()); | |
96803768 ILT |
822 | } |
823 | ||
730cdc88 | 824 | off_t view_start; |
fe8718a4 | 825 | section_size_type view_size; |
a2e47362 | 826 | bool must_decompress = false; |
eff45813 | 827 | if (output_offset != invalid_address) |
730cdc88 | 828 | { |
2ea97941 | 829 | view_start = output_section_offset + output_offset; |
fe8718a4 | 830 | view_size = convert_to_section_size_type(shdr.get_sh_size()); |
a2e47362 CC |
831 | section_size_type uncompressed_size; |
832 | if (this->section_is_compressed(i, &uncompressed_size)) | |
833 | { | |
834 | view_size = uncompressed_size; | |
835 | must_decompress = true; | |
836 | } | |
730cdc88 ILT |
837 | } |
838 | else | |
839 | { | |
2ea97941 | 840 | view_start = output_section_offset; |
fe8718a4 | 841 | view_size = convert_to_section_size_type(output_section_size); |
730cdc88 | 842 | } |
61ba1cf9 | 843 | |
730cdc88 | 844 | if (view_size == 0) |
ead1e424 ILT |
845 | continue; |
846 | ||
eff45813 | 847 | gold_assert(output_offset == invalid_address |
ef9beddf | 848 | || output_offset + view_size <= output_section_size); |
ead1e424 | 849 | |
2ea97941 | 850 | unsigned char* view; |
96803768 ILT |
851 | if (os->requires_postprocessing()) |
852 | { | |
853 | unsigned char* buffer = os->postprocessing_buffer(); | |
2ea97941 | 854 | view = buffer + view_start; |
a2e47362 | 855 | if (output_offset != invalid_address && !must_decompress) |
cb295612 ILT |
856 | { |
857 | off_t sh_offset = shdr.get_sh_offset(); | |
858 | if (!rm.empty() && rm.back().file_offset > sh_offset) | |
859 | is_sorted = false; | |
860 | rm.push_back(File_read::Read_multiple_entry(sh_offset, | |
2ea97941 | 861 | view_size, view)); |
cb295612 | 862 | } |
96803768 | 863 | } |
730cdc88 ILT |
864 | else |
865 | { | |
eff45813 | 866 | if (output_offset == invalid_address) |
2ea97941 | 867 | view = of->get_input_output_view(view_start, view_size); |
96803768 ILT |
868 | else |
869 | { | |
2ea97941 | 870 | view = of->get_output_view(view_start, view_size); |
a2e47362 CC |
871 | if (!must_decompress) |
872 | { | |
873 | off_t sh_offset = shdr.get_sh_offset(); | |
874 | if (!rm.empty() && rm.back().file_offset > sh_offset) | |
875 | is_sorted = false; | |
876 | rm.push_back(File_read::Read_multiple_entry(sh_offset, | |
877 | view_size, view)); | |
878 | } | |
96803768 | 879 | } |
730cdc88 | 880 | } |
92e059d8 | 881 | |
a2e47362 CC |
882 | if (must_decompress) |
883 | { | |
884 | // Read and decompress the section. | |
885 | section_size_type len; | |
886 | const unsigned char* p = this->section_contents(i, &len, false); | |
48058663 L |
887 | if (!decompress_input_section(p, len, view, view_size, |
888 | size, big_endian, | |
889 | shdr.get_sh_flags())) | |
a2e47362 CC |
890 | this->error(_("could not decompress section %s"), |
891 | this->section_name(i).c_str()); | |
892 | } | |
893 | ||
2ea97941 | 894 | pvs->view = view; |
730cdc88 | 895 | pvs->address = os->address(); |
eff45813 | 896 | if (output_offset != invalid_address) |
730cdc88 ILT |
897 | pvs->address += output_offset; |
898 | pvs->offset = view_start; | |
899 | pvs->view_size = view_size; | |
eff45813 | 900 | pvs->is_input_output_view = output_offset == invalid_address; |
96803768 | 901 | pvs->is_postprocessing_view = os->requires_postprocessing(); |
487b39df ILT |
902 | pvs->is_ctors_reverse_view = |
903 | (!parameters->options().relocatable() | |
904 | && view_size > size / 8 | |
905 | && (strcmp(os->name(), ".init_array") == 0 | |
906 | || strcmp(os->name(), ".fini_array") == 0) | |
907 | && layout->is_ctors_in_init_array(this, i)); | |
61ba1cf9 | 908 | } |
cb295612 ILT |
909 | |
910 | // Actually read the data. | |
911 | if (!rm.empty()) | |
912 | { | |
913 | if (!is_sorted) | |
914 | std::sort(rm.begin(), rm.end(), Read_multiple_compare()); | |
915 | this->read_multiple(rm); | |
916 | } | |
61ba1cf9 ILT |
917 | } |
918 | ||
919 | // Relocate section data. VIEWS points to the section data as views | |
920 | // in the output file. | |
921 | ||
922 | template<int size, bool big_endian> | |
923 | void | |
6fa2a40b | 924 | Sized_relobj_file<size, big_endian>::do_relocate_sections( |
92e059d8 | 925 | const Symbol_table* symtab, |
2ea97941 | 926 | const Layout* layout, |
92e059d8 | 927 | const unsigned char* pshdrs, |
09ec0418 | 928 | Output_file* of, |
92e059d8 | 929 | Views* pviews) |
61ba1cf9 | 930 | { |
2ea97941 | 931 | unsigned int shnum = this->shnum(); |
029ba973 ILT |
932 | Sized_target<size, big_endian>* target = |
933 | parameters->sized_target<size, big_endian>(); | |
61ba1cf9 | 934 | |
ef9beddf | 935 | const Output_sections& out_sections(this->output_sections()); |
6fa2a40b | 936 | const std::vector<Address>& out_offsets(this->section_offsets()); |
730cdc88 | 937 | |
92e059d8 | 938 | Relocate_info<size, big_endian> relinfo; |
92e059d8 | 939 | relinfo.symtab = symtab; |
2ea97941 | 940 | relinfo.layout = layout; |
92e059d8 | 941 | relinfo.object = this; |
92e059d8 | 942 | |
61ba1cf9 | 943 | const unsigned char* p = pshdrs + This::shdr_size; |
2ea97941 | 944 | for (unsigned int i = 1; i < shnum; ++i, p += This::shdr_size) |
61ba1cf9 ILT |
945 | { |
946 | typename This::Shdr shdr(p); | |
947 | ||
948 | unsigned int sh_type = shdr.get_sh_type(); | |
949 | if (sh_type != elfcpp::SHT_REL && sh_type != elfcpp::SHT_RELA) | |
950 | continue; | |
951 | ||
1307d6cd ILT |
952 | off_t sh_size = shdr.get_sh_size(); |
953 | if (sh_size == 0) | |
954 | continue; | |
955 | ||
d491d34e | 956 | unsigned int index = this->adjust_shndx(shdr.get_sh_info()); |
61ba1cf9 ILT |
957 | if (index >= this->shnum()) |
958 | { | |
75f2446e ILT |
959 | this->error(_("relocation section %u has bad info %u"), |
960 | i, index); | |
961 | continue; | |
61ba1cf9 ILT |
962 | } |
963 | ||
ef9beddf | 964 | Output_section* os = out_sections[index]; |
730cdc88 | 965 | if (os == NULL) |
61ba1cf9 ILT |
966 | { |
967 | // This relocation section is against a section which we | |
968 | // discarded. | |
969 | continue; | |
970 | } | |
ef9beddf | 971 | Address output_offset = out_offsets[index]; |
61ba1cf9 | 972 | |
a3ad94ed | 973 | gold_assert((*pviews)[index].view != NULL); |
8851ecca | 974 | if (parameters->options().relocatable()) |
6a74a719 | 975 | gold_assert((*pviews)[i].view != NULL); |
61ba1cf9 | 976 | |
d491d34e | 977 | if (this->adjust_shndx(shdr.get_sh_link()) != this->symtab_shndx_) |
61ba1cf9 | 978 | { |
75f2446e ILT |
979 | gold_error(_("relocation section %u uses unexpected " |
980 | "symbol table %u"), | |
d491d34e | 981 | i, this->adjust_shndx(shdr.get_sh_link())); |
75f2446e | 982 | continue; |
61ba1cf9 ILT |
983 | } |
984 | ||
61ba1cf9 | 985 | const unsigned char* prelocs = this->get_view(shdr.get_sh_offset(), |
39d0cb0e | 986 | sh_size, true, false); |
61ba1cf9 ILT |
987 | |
988 | unsigned int reloc_size; | |
989 | if (sh_type == elfcpp::SHT_REL) | |
990 | reloc_size = elfcpp::Elf_sizes<size>::rel_size; | |
991 | else | |
992 | reloc_size = elfcpp::Elf_sizes<size>::rela_size; | |
993 | ||
994 | if (reloc_size != shdr.get_sh_entsize()) | |
995 | { | |
75f2446e ILT |
996 | gold_error(_("unexpected entsize for reloc section %u: %lu != %u"), |
997 | i, static_cast<unsigned long>(shdr.get_sh_entsize()), | |
730cdc88 | 998 | reloc_size); |
75f2446e | 999 | continue; |
61ba1cf9 ILT |
1000 | } |
1001 | ||
1002 | size_t reloc_count = sh_size / reloc_size; | |
f5c3f225 | 1003 | if (static_cast<off_t>(reloc_count * reloc_size) != sh_size) |
61ba1cf9 | 1004 | { |
75f2446e ILT |
1005 | gold_error(_("reloc section %u size %lu uneven"), |
1006 | i, static_cast<unsigned long>(sh_size)); | |
1007 | continue; | |
61ba1cf9 ILT |
1008 | } |
1009 | ||
eff45813 | 1010 | gold_assert(output_offset != invalid_address |
96803768 ILT |
1011 | || this->relocs_must_follow_section_writes()); |
1012 | ||
92e059d8 | 1013 | relinfo.reloc_shndx = i; |
82bb573a | 1014 | relinfo.reloc_shdr = p; |
92e059d8 | 1015 | relinfo.data_shndx = index; |
82bb573a | 1016 | relinfo.data_shdr = pshdrs + index * This::shdr_size; |
2ea97941 | 1017 | unsigned char* view = (*pviews)[index].view; |
364c7fa5 ILT |
1018 | Address address = (*pviews)[index].address; |
1019 | section_size_type view_size = (*pviews)[index].view_size; | |
1020 | ||
1021 | Reloc_symbol_changes* reloc_map = NULL; | |
1022 | if (this->uses_split_stack() && output_offset != invalid_address) | |
1023 | { | |
1024 | typename This::Shdr data_shdr(pshdrs + index * This::shdr_size); | |
1025 | if ((data_shdr.get_sh_flags() & elfcpp::SHF_EXECINSTR) != 0) | |
1026 | this->split_stack_adjust(symtab, pshdrs, sh_type, index, | |
2ea97941 | 1027 | prelocs, reloc_count, view, view_size, |
364c7fa5 ILT |
1028 | &reloc_map); |
1029 | } | |
1030 | ||
91a65d2f AM |
1031 | Relocatable_relocs* rr = NULL; |
1032 | if (parameters->options().emit_relocs() | |
1033 | || parameters->options().relocatable()) | |
1034 | rr = this->relocatable_relocs(i); | |
1035 | relinfo.rr = rr; | |
1036 | ||
8851ecca | 1037 | if (!parameters->options().relocatable()) |
7019cd25 | 1038 | { |
364c7fa5 | 1039 | target->relocate_section(&relinfo, sh_type, prelocs, reloc_count, os, |
eff45813 | 1040 | output_offset == invalid_address, |
2ea97941 | 1041 | view, address, view_size, reloc_map); |
8851ecca | 1042 | if (parameters->options().emit_relocs()) |
91a65d2f AM |
1043 | target->relocate_relocs(&relinfo, sh_type, prelocs, reloc_count, |
1044 | os, output_offset, | |
1045 | view, address, view_size, | |
1046 | (*pviews)[i].view, | |
1047 | (*pviews)[i].view_size); | |
8c21d9d3 | 1048 | if (parameters->incremental()) |
09ec0418 CC |
1049 | this->incremental_relocs_write(&relinfo, sh_type, prelocs, |
1050 | reloc_count, os, output_offset, of); | |
7019cd25 | 1051 | } |
6a74a719 | 1052 | else |
91a65d2f AM |
1053 | target->relocate_relocs(&relinfo, sh_type, prelocs, reloc_count, |
1054 | os, output_offset, | |
1055 | view, address, view_size, | |
1056 | (*pviews)[i].view, | |
1057 | (*pviews)[i].view_size); | |
61ba1cf9 ILT |
1058 | } |
1059 | } | |
1060 | ||
6b2353a5 CC |
1061 | // Return the output view for section SHNDX. |
1062 | ||
1063 | template<int size, bool big_endian> | |
39040bb9 | 1064 | unsigned char* |
6b2353a5 CC |
1065 | Sized_relobj_file<size, big_endian>::do_get_output_view( |
1066 | unsigned int shndx, | |
1067 | section_size_type* plen) const | |
1068 | { | |
1069 | gold_assert(this->output_views_ != NULL); | |
1070 | gold_assert(shndx < this->output_views_->size()); | |
1071 | const View_size& v = (*this->output_views_)[shndx]; | |
1072 | *plen = v.view_size; | |
1073 | return v.view; | |
1074 | } | |
1075 | ||
09ec0418 CC |
1076 | // Write the incremental relocs. |
1077 | ||
1078 | template<int size, bool big_endian> | |
1079 | void | |
6fa2a40b | 1080 | Sized_relobj_file<size, big_endian>::incremental_relocs_write( |
09ec0418 CC |
1081 | const Relocate_info<size, big_endian>* relinfo, |
1082 | unsigned int sh_type, | |
1083 | const unsigned char* prelocs, | |
1084 | size_t reloc_count, | |
1085 | Output_section* output_section, | |
1086 | Address output_offset, | |
1087 | Output_file* of) | |
1088 | { | |
1089 | if (sh_type == elfcpp::SHT_REL) | |
1090 | this->incremental_relocs_write_reltype<elfcpp::SHT_REL>( | |
1091 | relinfo, | |
1092 | prelocs, | |
1093 | reloc_count, | |
1094 | output_section, | |
1095 | output_offset, | |
1096 | of); | |
1097 | else | |
1098 | { | |
1099 | gold_assert(sh_type == elfcpp::SHT_RELA); | |
1100 | this->incremental_relocs_write_reltype<elfcpp::SHT_RELA>( | |
1101 | relinfo, | |
1102 | prelocs, | |
1103 | reloc_count, | |
1104 | output_section, | |
1105 | output_offset, | |
1106 | of); | |
1107 | } | |
1108 | } | |
1109 | ||
1110 | // Write the incremental relocs, templatized on the type of the | |
1111 | // relocation section. | |
1112 | ||
1113 | template<int size, bool big_endian> | |
1114 | template<int sh_type> | |
1115 | void | |
6fa2a40b | 1116 | Sized_relobj_file<size, big_endian>::incremental_relocs_write_reltype( |
09ec0418 CC |
1117 | const Relocate_info<size, big_endian>* relinfo, |
1118 | const unsigned char* prelocs, | |
1119 | size_t reloc_count, | |
1120 | Output_section* output_section, | |
1121 | Address output_offset, | |
1122 | Output_file* of) | |
1123 | { | |
1124 | typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reloc; | |
1125 | const unsigned int reloc_size = | |
1126 | Reloc_types<sh_type, size, big_endian>::reloc_size; | |
1127 | const unsigned int sizeof_addr = size / 8; | |
cdc29364 CC |
1128 | const unsigned int incr_reloc_size = |
1129 | Incremental_relocs_reader<size, big_endian>::reloc_size; | |
09ec0418 CC |
1130 | |
1131 | unsigned int out_shndx = output_section->out_shndx(); | |
1132 | ||
1133 | // Get a view for the .gnu_incremental_relocs section. | |
1134 | ||
1135 | Incremental_inputs* inputs = relinfo->layout->incremental_inputs(); | |
1136 | gold_assert(inputs != NULL); | |
1137 | const off_t relocs_off = inputs->relocs_section()->offset(); | |
1138 | const off_t relocs_size = inputs->relocs_section()->data_size(); | |
1139 | unsigned char* const view = of->get_output_view(relocs_off, relocs_size); | |
1140 | ||
1141 | for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size) | |
1142 | { | |
1143 | Reloc reloc(prelocs); | |
1144 | ||
1145 | typename elfcpp::Elf_types<size>::Elf_WXword r_info = reloc.get_r_info(); | |
1146 | const unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info); | |
1147 | const unsigned int r_type = elfcpp::elf_r_type<size>(r_info); | |
1148 | ||
1149 | if (r_sym < this->local_symbol_count_) | |
1150 | continue; | |
1151 | ||
1152 | // Get the new offset--the location in the output section where | |
1153 | // this relocation should be applied. | |
1154 | ||
1155 | Address offset = reloc.get_r_offset(); | |
1156 | if (output_offset != invalid_address) | |
1157 | offset += output_offset; | |
1158 | else | |
1159 | { | |
1160 | section_offset_type sot_offset = | |
1161 | convert_types<section_offset_type, Address>(offset); | |
1162 | section_offset_type new_sot_offset = | |
1163 | output_section->output_offset(relinfo->object, | |
1164 | relinfo->data_shndx, | |
1165 | sot_offset); | |
1166 | gold_assert(new_sot_offset != -1); | |
1167 | offset += new_sot_offset; | |
1168 | } | |
1169 | ||
1170 | // Get the addend. | |
1171 | typename elfcpp::Elf_types<size>::Elf_Swxword addend; | |
1172 | if (sh_type == elfcpp::SHT_RELA) | |
1173 | addend = | |
1174 | Reloc_types<sh_type, size, big_endian>::get_reloc_addend(&reloc); | |
1175 | else | |
1176 | { | |
1177 | // FIXME: Get the addend for SHT_REL. | |
1178 | addend = 0; | |
1179 | } | |
1180 | ||
1181 | // Get the index of the output relocation. | |
1182 | ||
1183 | unsigned int reloc_index = | |
1184 | this->next_incremental_reloc_index(r_sym - this->local_symbol_count_); | |
1185 | ||
1186 | // Write the relocation. | |
1187 | ||
1188 | unsigned char* pov = view + reloc_index * incr_reloc_size; | |
1189 | elfcpp::Swap<32, big_endian>::writeval(pov, r_type); | |
1190 | elfcpp::Swap<32, big_endian>::writeval(pov + 4, out_shndx); | |
1191 | elfcpp::Swap<size, big_endian>::writeval(pov + 8, offset); | |
1192 | elfcpp::Swap<size, big_endian>::writeval(pov + 8 + sizeof_addr, addend); | |
1193 | of->write_output_view(pov - view, incr_reloc_size, view); | |
1194 | } | |
1195 | } | |
1196 | ||
a9a60db6 ILT |
1197 | // Create merge hash tables for the local symbols. These are used to |
1198 | // speed up relocations. | |
1199 | ||
1200 | template<int size, bool big_endian> | |
1201 | void | |
6fa2a40b | 1202 | Sized_relobj_file<size, big_endian>::initialize_input_to_output_maps() |
a9a60db6 ILT |
1203 | { |
1204 | const unsigned int loccount = this->local_symbol_count_; | |
1205 | for (unsigned int i = 1; i < loccount; ++i) | |
1206 | { | |
1207 | Symbol_value<size>& lv(this->local_values_[i]); | |
1208 | lv.initialize_input_to_output_map(this); | |
1209 | } | |
1210 | } | |
1211 | ||
1212 | // Free merge hash tables for the local symbols. | |
1213 | ||
1214 | template<int size, bool big_endian> | |
1215 | void | |
6fa2a40b | 1216 | Sized_relobj_file<size, big_endian>::free_input_to_output_maps() |
a9a60db6 ILT |
1217 | { |
1218 | const unsigned int loccount = this->local_symbol_count_; | |
1219 | for (unsigned int i = 1; i < loccount; ++i) | |
1220 | { | |
1221 | Symbol_value<size>& lv(this->local_values_[i]); | |
1222 | lv.free_input_to_output_map(); | |
1223 | } | |
1224 | } | |
1225 | ||
364c7fa5 ILT |
1226 | // If an object was compiled with -fsplit-stack, this is called to |
1227 | // check whether any relocations refer to functions defined in objects | |
1228 | // which were not compiled with -fsplit-stack. If they were, then we | |
1229 | // need to apply some target-specific adjustments to request | |
1230 | // additional stack space. | |
1231 | ||
1232 | template<int size, bool big_endian> | |
1233 | void | |
6fa2a40b | 1234 | Sized_relobj_file<size, big_endian>::split_stack_adjust( |
364c7fa5 ILT |
1235 | const Symbol_table* symtab, |
1236 | const unsigned char* pshdrs, | |
1237 | unsigned int sh_type, | |
1238 | unsigned int shndx, | |
1239 | const unsigned char* prelocs, | |
1240 | size_t reloc_count, | |
2ea97941 | 1241 | unsigned char* view, |
364c7fa5 ILT |
1242 | section_size_type view_size, |
1243 | Reloc_symbol_changes** reloc_map) | |
1244 | { | |
1245 | if (sh_type == elfcpp::SHT_REL) | |
1246 | this->split_stack_adjust_reltype<elfcpp::SHT_REL>(symtab, pshdrs, shndx, | |
1247 | prelocs, reloc_count, | |
2ea97941 | 1248 | view, view_size, |
364c7fa5 ILT |
1249 | reloc_map); |
1250 | else | |
1251 | { | |
1252 | gold_assert(sh_type == elfcpp::SHT_RELA); | |
1253 | this->split_stack_adjust_reltype<elfcpp::SHT_RELA>(symtab, pshdrs, shndx, | |
1254 | prelocs, reloc_count, | |
2ea97941 | 1255 | view, view_size, |
364c7fa5 ILT |
1256 | reloc_map); |
1257 | } | |
1258 | } | |
1259 | ||
1260 | // Adjust for -fsplit-stack, templatized on the type of the relocation | |
1261 | // section. | |
1262 | ||
1263 | template<int size, bool big_endian> | |
1264 | template<int sh_type> | |
1265 | void | |
6fa2a40b | 1266 | Sized_relobj_file<size, big_endian>::split_stack_adjust_reltype( |
364c7fa5 ILT |
1267 | const Symbol_table* symtab, |
1268 | const unsigned char* pshdrs, | |
1269 | unsigned int shndx, | |
1270 | const unsigned char* prelocs, | |
1271 | size_t reloc_count, | |
2ea97941 | 1272 | unsigned char* view, |
364c7fa5 ILT |
1273 | section_size_type view_size, |
1274 | Reloc_symbol_changes** reloc_map) | |
1275 | { | |
1276 | typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reltype; | |
1277 | const int reloc_size = Reloc_types<sh_type, size, big_endian>::reloc_size; | |
1278 | ||
1279 | size_t local_count = this->local_symbol_count(); | |
1280 | ||
1281 | std::vector<section_offset_type> non_split_refs; | |
1282 | ||
1283 | const unsigned char* pr = prelocs; | |
1284 | for (size_t i = 0; i < reloc_count; ++i, pr += reloc_size) | |
1285 | { | |
1286 | Reltype reloc(pr); | |
1287 | ||
1288 | typename elfcpp::Elf_types<size>::Elf_WXword r_info = reloc.get_r_info(); | |
1289 | unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info); | |
1290 | if (r_sym < local_count) | |
1291 | continue; | |
1292 | ||
1293 | const Symbol* gsym = this->global_symbol(r_sym); | |
1294 | gold_assert(gsym != NULL); | |
1295 | if (gsym->is_forwarder()) | |
1296 | gsym = symtab->resolve_forwards(gsym); | |
1297 | ||
1298 | // See if this relocation refers to a function defined in an | |
1299 | // object compiled without -fsplit-stack. Note that we don't | |
1300 | // care about the type of relocation--this means that in some | |
1301 | // cases we will ask for a large stack unnecessarily, but this | |
1302 | // is not fatal. FIXME: Some targets have symbols which are | |
1303 | // functions but are not type STT_FUNC, e.g., STT_ARM_TFUNC. | |
b6848d3c | 1304 | if (!gsym->is_undefined() |
364c7fa5 ILT |
1305 | && gsym->source() == Symbol::FROM_OBJECT |
1306 | && !gsym->object()->uses_split_stack()) | |
1307 | { | |
b6848d3c ILT |
1308 | unsigned int r_type = elfcpp::elf_r_type<size>(reloc.get_r_info()); |
1309 | if (parameters->target().is_call_to_non_split(gsym, r_type)) | |
1310 | { | |
1311 | section_offset_type offset = | |
1312 | convert_to_section_size_type(reloc.get_r_offset()); | |
1313 | non_split_refs.push_back(offset); | |
1314 | } | |
364c7fa5 ILT |
1315 | } |
1316 | } | |
1317 | ||
1318 | if (non_split_refs.empty()) | |
1319 | return; | |
1320 | ||
1321 | // At this point, every entry in NON_SPLIT_REFS indicates a | |
1322 | // relocation which refers to a function in an object compiled | |
1323 | // without -fsplit-stack. We now have to convert that list into a | |
1324 | // set of offsets to functions. First, we find all the functions. | |
1325 | ||
1326 | Function_offsets function_offsets; | |
1327 | this->find_functions(pshdrs, shndx, &function_offsets); | |
1328 | if (function_offsets.empty()) | |
1329 | return; | |
1330 | ||
1331 | // Now get a list of the function with references to non split-stack | |
1332 | // code. | |
1333 | ||
1334 | Function_offsets calls_non_split; | |
1335 | for (std::vector<section_offset_type>::const_iterator p | |
1336 | = non_split_refs.begin(); | |
1337 | p != non_split_refs.end(); | |
1338 | ++p) | |
1339 | { | |
1340 | Function_offsets::const_iterator low = function_offsets.lower_bound(*p); | |
1341 | if (low == function_offsets.end()) | |
1342 | --low; | |
1343 | else if (low->first == *p) | |
1344 | ; | |
1345 | else if (low == function_offsets.begin()) | |
1346 | continue; | |
1347 | else | |
1348 | --low; | |
1349 | ||
1350 | calls_non_split.insert(*low); | |
1351 | } | |
1352 | if (calls_non_split.empty()) | |
1353 | return; | |
1354 | ||
1355 | // Now we have a set of functions to adjust. The adjustments are | |
1356 | // target specific. Besides changing the output section view | |
1357 | // however, it likes, the target may request a relocation change | |
1358 | // from one global symbol name to another. | |
1359 | ||
1360 | for (Function_offsets::const_iterator p = calls_non_split.begin(); | |
1361 | p != calls_non_split.end(); | |
1362 | ++p) | |
1363 | { | |
1364 | std::string from; | |
1365 | std::string to; | |
1366 | parameters->target().calls_non_split(this, shndx, p->first, p->second, | |
6e0813d3 | 1367 | prelocs, reloc_count, |
2ea97941 | 1368 | view, view_size, &from, &to); |
364c7fa5 ILT |
1369 | if (!from.empty()) |
1370 | { | |
1371 | gold_assert(!to.empty()); | |
1372 | Symbol* tosym = NULL; | |
1373 | ||
1374 | // Find relocations in the relevant function which are for | |
1375 | // FROM. | |
1376 | pr = prelocs; | |
1377 | for (size_t i = 0; i < reloc_count; ++i, pr += reloc_size) | |
1378 | { | |
1379 | Reltype reloc(pr); | |
1380 | ||
1381 | typename elfcpp::Elf_types<size>::Elf_WXword r_info = | |
1382 | reloc.get_r_info(); | |
1383 | unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info); | |
1384 | if (r_sym < local_count) | |
1385 | continue; | |
1386 | ||
2ea97941 | 1387 | section_offset_type offset = |
364c7fa5 | 1388 | convert_to_section_size_type(reloc.get_r_offset()); |
2ea97941 ILT |
1389 | if (offset < p->first |
1390 | || (offset | |
364c7fa5 ILT |
1391 | >= (p->first |
1392 | + static_cast<section_offset_type>(p->second)))) | |
1393 | continue; | |
1394 | ||
1395 | const Symbol* gsym = this->global_symbol(r_sym); | |
1396 | if (from == gsym->name()) | |
1397 | { | |
1398 | if (tosym == NULL) | |
1399 | { | |
1400 | tosym = symtab->lookup(to.c_str()); | |
1401 | if (tosym == NULL) | |
1402 | { | |
1403 | this->error(_("could not convert call " | |
1404 | "to '%s' to '%s'"), | |
1405 | from.c_str(), to.c_str()); | |
1406 | break; | |
1407 | } | |
1408 | } | |
1409 | ||
1410 | if (*reloc_map == NULL) | |
1411 | *reloc_map = new Reloc_symbol_changes(reloc_count); | |
1412 | (*reloc_map)->set(i, tosym); | |
1413 | } | |
1414 | } | |
1415 | } | |
1416 | } | |
1417 | } | |
1418 | ||
1419 | // Find all the function in this object defined in section SHNDX. | |
1420 | // Store their offsets in the section in FUNCTION_OFFSETS. | |
1421 | ||
1422 | template<int size, bool big_endian> | |
1423 | void | |
6fa2a40b | 1424 | Sized_relobj_file<size, big_endian>::find_functions( |
364c7fa5 ILT |
1425 | const unsigned char* pshdrs, |
1426 | unsigned int shndx, | |
6fa2a40b | 1427 | Sized_relobj_file<size, big_endian>::Function_offsets* function_offsets) |
364c7fa5 ILT |
1428 | { |
1429 | // We need to read the symbols to find the functions. If we wanted | |
1430 | // to, we could cache reading the symbols across all sections in the | |
1431 | // object. | |
2ea97941 ILT |
1432 | const unsigned int symtab_shndx = this->symtab_shndx_; |
1433 | typename This::Shdr symtabshdr(pshdrs + symtab_shndx * This::shdr_size); | |
364c7fa5 ILT |
1434 | gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB); |
1435 | ||
1436 | typename elfcpp::Elf_types<size>::Elf_WXword sh_size = | |
1437 | symtabshdr.get_sh_size(); | |
1438 | const unsigned char* psyms = this->get_view(symtabshdr.get_sh_offset(), | |
1439 | sh_size, true, true); | |
1440 | ||
2ea97941 ILT |
1441 | const int sym_size = This::sym_size; |
1442 | const unsigned int symcount = sh_size / sym_size; | |
1443 | for (unsigned int i = 0; i < symcount; ++i, psyms += sym_size) | |
364c7fa5 ILT |
1444 | { |
1445 | typename elfcpp::Sym<size, big_endian> isym(psyms); | |
1446 | ||
1447 | // FIXME: Some targets can have functions which do not have type | |
1448 | // STT_FUNC, e.g., STT_ARM_TFUNC. | |
1449 | if (isym.get_st_type() != elfcpp::STT_FUNC | |
1450 | || isym.get_st_size() == 0) | |
1451 | continue; | |
1452 | ||
1453 | bool is_ordinary; | |
bbec1a5d AM |
1454 | Symbol_location loc; |
1455 | loc.shndx = this->adjust_sym_shndx(i, isym.get_st_shndx(), | |
1456 | &is_ordinary); | |
1457 | if (!is_ordinary) | |
1458 | continue; | |
1459 | ||
1460 | loc.object = this; | |
1461 | loc.offset = isym.get_st_value(); | |
1462 | parameters->target().function_location(&loc); | |
1463 | ||
1464 | if (loc.shndx != shndx) | |
364c7fa5 ILT |
1465 | continue; |
1466 | ||
1467 | section_offset_type value = | |
bbec1a5d | 1468 | convert_to_section_size_type(loc.offset); |
364c7fa5 ILT |
1469 | section_size_type fnsize = |
1470 | convert_to_section_size_type(isym.get_st_size()); | |
1471 | ||
1472 | (*function_offsets)[value] = fnsize; | |
1473 | } | |
1474 | } | |
1475 | ||
487b39df ILT |
1476 | // Reverse the words in a section. Used for .ctors sections mapped to |
1477 | // .init_array sections. See ctors_sections_in_init_array in | |
1478 | // layout.cc. | |
1479 | ||
1480 | template<int size, bool big_endian> | |
1481 | void | |
1482 | Sized_relobj_file<size, big_endian>::reverse_words(unsigned char* view, | |
1483 | section_size_type view_size) | |
1484 | { | |
1485 | typedef typename elfcpp::Swap<size, big_endian>::Valtype Valtype; | |
1486 | Valtype* vview = reinterpret_cast<Valtype*>(view); | |
1487 | section_size_type vview_size = view_size / (size / 8); | |
1488 | for (section_size_type i = 0; i < vview_size / 2; ++i) | |
1489 | { | |
1490 | Valtype tmp = vview[i]; | |
1491 | vview[i] = vview[vview_size - 1 - i]; | |
1492 | vview[vview_size - 1 - i] = tmp; | |
1493 | } | |
1494 | } | |
1495 | ||
a9a60db6 ILT |
1496 | // Class Merged_symbol_value. |
1497 | ||
1498 | template<int size> | |
1499 | void | |
1500 | Merged_symbol_value<size>::initialize_input_to_output_map( | |
1501 | const Relobj* object, | |
1502 | unsigned int input_shndx) | |
1503 | { | |
dbe40a88 RÁE |
1504 | object->initialize_input_to_output_map<size>(input_shndx, |
1505 | this->output_start_address_, | |
1506 | &this->output_addresses_); | |
a9a60db6 ILT |
1507 | } |
1508 | ||
1509 | // Get the output value corresponding to an input offset if we | |
1510 | // couldn't find it in the hash table. | |
1511 | ||
1512 | template<int size> | |
1513 | typename elfcpp::Elf_types<size>::Elf_Addr | |
1514 | Merged_symbol_value<size>::value_from_output_section( | |
1515 | const Relobj* object, | |
1516 | unsigned int input_shndx, | |
1517 | typename elfcpp::Elf_types<size>::Elf_Addr input_offset) const | |
1518 | { | |
1519 | section_offset_type output_offset; | |
dbe40a88 RÁE |
1520 | bool found = object->merge_output_offset(input_shndx, input_offset, |
1521 | &output_offset); | |
a9a60db6 ILT |
1522 | |
1523 | // If this assertion fails, it means that some relocation was | |
1524 | // against a portion of an input merge section which we didn't map | |
1525 | // to the output file and we didn't explicitly discard. We should | |
1526 | // always map all portions of input merge sections. | |
1527 | gold_assert(found); | |
1528 | ||
1529 | if (output_offset == -1) | |
1530 | return 0; | |
1531 | else | |
1532 | return this->output_start_address_ + output_offset; | |
1533 | } | |
1534 | ||
730cdc88 ILT |
1535 | // Track_relocs methods. |
1536 | ||
1537 | // Initialize the class to track the relocs. This gets the object, | |
1538 | // the reloc section index, and the type of the relocs. This returns | |
1539 | // false if something goes wrong. | |
1540 | ||
1541 | template<int size, bool big_endian> | |
1542 | bool | |
1543 | Track_relocs<size, big_endian>::initialize( | |
b696e6d4 | 1544 | Object* object, |
730cdc88 ILT |
1545 | unsigned int reloc_shndx, |
1546 | unsigned int reloc_type) | |
1547 | { | |
730cdc88 ILT |
1548 | // If RELOC_SHNDX is -1U, it means there is more than one reloc |
1549 | // section for the .eh_frame section. We can't handle that case. | |
1550 | if (reloc_shndx == -1U) | |
1551 | return false; | |
1552 | ||
1553 | // If RELOC_SHNDX is 0, there is no reloc section. | |
1554 | if (reloc_shndx == 0) | |
1555 | return true; | |
1556 | ||
1557 | // Get the contents of the reloc section. | |
1558 | this->prelocs_ = object->section_contents(reloc_shndx, &this->len_, false); | |
1559 | ||
1560 | if (reloc_type == elfcpp::SHT_REL) | |
1561 | this->reloc_size_ = elfcpp::Elf_sizes<size>::rel_size; | |
1562 | else if (reloc_type == elfcpp::SHT_RELA) | |
1563 | this->reloc_size_ = elfcpp::Elf_sizes<size>::rela_size; | |
1564 | else | |
1565 | gold_unreachable(); | |
1566 | ||
1567 | if (this->len_ % this->reloc_size_ != 0) | |
1568 | { | |
1569 | object->error(_("reloc section size %zu is not a multiple of " | |
1570 | "reloc size %d\n"), | |
1571 | static_cast<size_t>(this->len_), | |
1572 | this->reloc_size_); | |
1573 | return false; | |
1574 | } | |
1575 | ||
1576 | return true; | |
1577 | } | |
1578 | ||
1579 | // Return the offset of the next reloc, or -1 if there isn't one. | |
1580 | ||
1581 | template<int size, bool big_endian> | |
1582 | off_t | |
1583 | Track_relocs<size, big_endian>::next_offset() const | |
1584 | { | |
1585 | if (this->pos_ >= this->len_) | |
1586 | return -1; | |
1587 | ||
1588 | // Rel and Rela start out the same, so we can always use Rel to find | |
1589 | // the r_offset value. | |
1590 | elfcpp::Rel<size, big_endian> rel(this->prelocs_ + this->pos_); | |
1591 | return rel.get_r_offset(); | |
1592 | } | |
1593 | ||
1594 | // Return the index of the symbol referenced by the next reloc, or -1U | |
1595 | // if there aren't any more relocs. | |
1596 | ||
1597 | template<int size, bool big_endian> | |
1598 | unsigned int | |
1599 | Track_relocs<size, big_endian>::next_symndx() const | |
1600 | { | |
1601 | if (this->pos_ >= this->len_) | |
1602 | return -1U; | |
1603 | ||
1604 | // Rel and Rela start out the same, so we can use Rel to find the | |
1605 | // symbol index. | |
1606 | elfcpp::Rel<size, big_endian> rel(this->prelocs_ + this->pos_); | |
1607 | return elfcpp::elf_r_sym<size>(rel.get_r_info()); | |
1608 | } | |
1609 | ||
4dbfafcc ILT |
1610 | // Return the addend of the next reloc, or 0 if there isn't one. |
1611 | ||
1612 | template<int size, bool big_endian> | |
1613 | uint64_t | |
1614 | Track_relocs<size, big_endian>::next_addend() const | |
1615 | { | |
1616 | if (this->pos_ >= this->len_) | |
1617 | return 0; | |
1618 | if (this->reloc_size_ == elfcpp::Elf_sizes<size>::rel_size) | |
1619 | return 0; | |
1620 | elfcpp::Rela<size, big_endian> rela(this->prelocs_ + this->pos_); | |
1621 | return rela.get_r_addend(); | |
1622 | } | |
1623 | ||
730cdc88 ILT |
1624 | // Advance to the next reloc whose r_offset is greater than or equal |
1625 | // to OFFSET. Return the number of relocs we skip. | |
1626 | ||
1627 | template<int size, bool big_endian> | |
1628 | int | |
1629 | Track_relocs<size, big_endian>::advance(off_t offset) | |
1630 | { | |
1631 | int ret = 0; | |
1632 | while (this->pos_ < this->len_) | |
1633 | { | |
1634 | // Rel and Rela start out the same, so we can always use Rel to | |
1635 | // find the r_offset value. | |
1636 | elfcpp::Rel<size, big_endian> rel(this->prelocs_ + this->pos_); | |
1637 | if (static_cast<off_t>(rel.get_r_offset()) >= offset) | |
1638 | break; | |
1639 | ++ret; | |
1640 | this->pos_ += this->reloc_size_; | |
1641 | } | |
1642 | return ret; | |
1643 | } | |
1644 | ||
12c0daef | 1645 | // Instantiate the templates we need. |
61ba1cf9 | 1646 | |
193a53d9 | 1647 | #ifdef HAVE_TARGET_32_LITTLE |
92e059d8 ILT |
1648 | template |
1649 | void | |
6fa2a40b | 1650 | Sized_relobj_file<32, false>::do_read_relocs(Read_relocs_data* rd); |
193a53d9 | 1651 | #endif |
92e059d8 | 1652 | |
193a53d9 | 1653 | #ifdef HAVE_TARGET_32_BIG |
92e059d8 ILT |
1654 | template |
1655 | void | |
6fa2a40b | 1656 | Sized_relobj_file<32, true>::do_read_relocs(Read_relocs_data* rd); |
193a53d9 | 1657 | #endif |
92e059d8 | 1658 | |
193a53d9 | 1659 | #ifdef HAVE_TARGET_64_LITTLE |
92e059d8 ILT |
1660 | template |
1661 | void | |
6fa2a40b | 1662 | Sized_relobj_file<64, false>::do_read_relocs(Read_relocs_data* rd); |
193a53d9 | 1663 | #endif |
92e059d8 | 1664 | |
193a53d9 | 1665 | #ifdef HAVE_TARGET_64_BIG |
92e059d8 ILT |
1666 | template |
1667 | void | |
6fa2a40b | 1668 | Sized_relobj_file<64, true>::do_read_relocs(Read_relocs_data* rd); |
193a53d9 | 1669 | #endif |
92e059d8 | 1670 | |
6d03d481 ST |
1671 | #ifdef HAVE_TARGET_32_LITTLE |
1672 | template | |
1673 | void | |
6fa2a40b CC |
1674 | Sized_relobj_file<32, false>::do_gc_process_relocs(Symbol_table* symtab, |
1675 | Layout* layout, | |
1676 | Read_relocs_data* rd); | |
6d03d481 ST |
1677 | #endif |
1678 | ||
1679 | #ifdef HAVE_TARGET_32_BIG | |
1680 | template | |
1681 | void | |
6fa2a40b CC |
1682 | Sized_relobj_file<32, true>::do_gc_process_relocs(Symbol_table* symtab, |
1683 | Layout* layout, | |
1684 | Read_relocs_data* rd); | |
6d03d481 ST |
1685 | #endif |
1686 | ||
1687 | #ifdef HAVE_TARGET_64_LITTLE | |
1688 | template | |
1689 | void | |
6fa2a40b CC |
1690 | Sized_relobj_file<64, false>::do_gc_process_relocs(Symbol_table* symtab, |
1691 | Layout* layout, | |
1692 | Read_relocs_data* rd); | |
6d03d481 ST |
1693 | #endif |
1694 | ||
1695 | #ifdef HAVE_TARGET_64_BIG | |
1696 | template | |
1697 | void | |
6fa2a40b CC |
1698 | Sized_relobj_file<64, true>::do_gc_process_relocs(Symbol_table* symtab, |
1699 | Layout* layout, | |
1700 | Read_relocs_data* rd); | |
6d03d481 ST |
1701 | #endif |
1702 | ||
193a53d9 | 1703 | #ifdef HAVE_TARGET_32_LITTLE |
92e059d8 ILT |
1704 | template |
1705 | void | |
6fa2a40b CC |
1706 | Sized_relobj_file<32, false>::do_scan_relocs(Symbol_table* symtab, |
1707 | Layout* layout, | |
1708 | Read_relocs_data* rd); | |
193a53d9 | 1709 | #endif |
92e059d8 | 1710 | |
193a53d9 | 1711 | #ifdef HAVE_TARGET_32_BIG |
92e059d8 ILT |
1712 | template |
1713 | void | |
6fa2a40b CC |
1714 | Sized_relobj_file<32, true>::do_scan_relocs(Symbol_table* symtab, |
1715 | Layout* layout, | |
1716 | Read_relocs_data* rd); | |
193a53d9 | 1717 | #endif |
92e059d8 | 1718 | |
193a53d9 | 1719 | #ifdef HAVE_TARGET_64_LITTLE |
92e059d8 ILT |
1720 | template |
1721 | void | |
6fa2a40b CC |
1722 | Sized_relobj_file<64, false>::do_scan_relocs(Symbol_table* symtab, |
1723 | Layout* layout, | |
1724 | Read_relocs_data* rd); | |
193a53d9 | 1725 | #endif |
92e059d8 | 1726 | |
193a53d9 | 1727 | #ifdef HAVE_TARGET_64_BIG |
92e059d8 ILT |
1728 | template |
1729 | void | |
6fa2a40b CC |
1730 | Sized_relobj_file<64, true>::do_scan_relocs(Symbol_table* symtab, |
1731 | Layout* layout, | |
1732 | Read_relocs_data* rd); | |
193a53d9 | 1733 | #endif |
92e059d8 | 1734 | |
193a53d9 | 1735 | #ifdef HAVE_TARGET_32_LITTLE |
61ba1cf9 ILT |
1736 | template |
1737 | void | |
6fa2a40b CC |
1738 | Sized_relobj_file<32, false>::do_relocate(const Symbol_table* symtab, |
1739 | const Layout* layout, | |
1740 | Output_file* of); | |
193a53d9 | 1741 | #endif |
61ba1cf9 | 1742 | |
193a53d9 | 1743 | #ifdef HAVE_TARGET_32_BIG |
61ba1cf9 ILT |
1744 | template |
1745 | void | |
6fa2a40b CC |
1746 | Sized_relobj_file<32, true>::do_relocate(const Symbol_table* symtab, |
1747 | const Layout* layout, | |
1748 | Output_file* of); | |
193a53d9 | 1749 | #endif |
61ba1cf9 | 1750 | |
193a53d9 | 1751 | #ifdef HAVE_TARGET_64_LITTLE |
61ba1cf9 ILT |
1752 | template |
1753 | void | |
6fa2a40b CC |
1754 | Sized_relobj_file<64, false>::do_relocate(const Symbol_table* symtab, |
1755 | const Layout* layout, | |
1756 | Output_file* of); | |
193a53d9 | 1757 | #endif |
61ba1cf9 | 1758 | |
193a53d9 | 1759 | #ifdef HAVE_TARGET_64_BIG |
61ba1cf9 ILT |
1760 | template |
1761 | void | |
6fa2a40b CC |
1762 | Sized_relobj_file<64, true>::do_relocate(const Symbol_table* symtab, |
1763 | const Layout* layout, | |
1764 | Output_file* of); | |
193a53d9 | 1765 | #endif |
61ba1cf9 | 1766 | |
72adc4fa DK |
1767 | #ifdef HAVE_TARGET_32_LITTLE |
1768 | template | |
1769 | void | |
6fa2a40b | 1770 | Sized_relobj_file<32, false>::do_relocate_sections( |
72adc4fa | 1771 | const Symbol_table* symtab, |
2ea97941 | 1772 | const Layout* layout, |
72adc4fa | 1773 | const unsigned char* pshdrs, |
09ec0418 | 1774 | Output_file* of, |
72adc4fa | 1775 | Views* pviews); |
6b2353a5 CC |
1776 | |
1777 | template | |
39040bb9 | 1778 | unsigned char* |
6b2353a5 CC |
1779 | Sized_relobj_file<32, false>::do_get_output_view( |
1780 | unsigned int shndx, | |
1781 | section_size_type* plen) const; | |
72adc4fa DK |
1782 | #endif |
1783 | ||
1784 | #ifdef HAVE_TARGET_32_BIG | |
1785 | template | |
1786 | void | |
6fa2a40b | 1787 | Sized_relobj_file<32, true>::do_relocate_sections( |
72adc4fa | 1788 | const Symbol_table* symtab, |
2ea97941 | 1789 | const Layout* layout, |
72adc4fa | 1790 | const unsigned char* pshdrs, |
09ec0418 | 1791 | Output_file* of, |
72adc4fa | 1792 | Views* pviews); |
6b2353a5 CC |
1793 | |
1794 | template | |
39040bb9 | 1795 | unsigned char* |
6b2353a5 CC |
1796 | Sized_relobj_file<32, true>::do_get_output_view( |
1797 | unsigned int shndx, | |
1798 | section_size_type* plen) const; | |
72adc4fa DK |
1799 | #endif |
1800 | ||
1801 | #ifdef HAVE_TARGET_64_LITTLE | |
1802 | template | |
1803 | void | |
6fa2a40b | 1804 | Sized_relobj_file<64, false>::do_relocate_sections( |
72adc4fa | 1805 | const Symbol_table* symtab, |
2ea97941 | 1806 | const Layout* layout, |
72adc4fa | 1807 | const unsigned char* pshdrs, |
09ec0418 | 1808 | Output_file* of, |
72adc4fa | 1809 | Views* pviews); |
6b2353a5 CC |
1810 | |
1811 | template | |
39040bb9 | 1812 | unsigned char* |
6b2353a5 CC |
1813 | Sized_relobj_file<64, false>::do_get_output_view( |
1814 | unsigned int shndx, | |
1815 | section_size_type* plen) const; | |
72adc4fa DK |
1816 | #endif |
1817 | ||
1818 | #ifdef HAVE_TARGET_64_BIG | |
1819 | template | |
1820 | void | |
6fa2a40b | 1821 | Sized_relobj_file<64, true>::do_relocate_sections( |
72adc4fa DK |
1822 | const Symbol_table* symtab, |
1823 | const Layout* layout, | |
1824 | const unsigned char* pshdrs, | |
09ec0418 | 1825 | Output_file* of, |
72adc4fa | 1826 | Views* pviews); |
6b2353a5 CC |
1827 | |
1828 | template | |
39040bb9 | 1829 | unsigned char* |
6b2353a5 CC |
1830 | Sized_relobj_file<64, true>::do_get_output_view( |
1831 | unsigned int shndx, | |
1832 | section_size_type* plen) const; | |
72adc4fa DK |
1833 | #endif |
1834 | ||
3e4afc80 ILT |
1835 | #ifdef HAVE_TARGET_32_LITTLE |
1836 | template | |
1837 | void | |
6fa2a40b | 1838 | Sized_relobj_file<32, false>::initialize_input_to_output_maps(); |
3e4afc80 ILT |
1839 | |
1840 | template | |
1841 | void | |
6fa2a40b | 1842 | Sized_relobj_file<32, false>::free_input_to_output_maps(); |
3e4afc80 ILT |
1843 | #endif |
1844 | ||
1845 | #ifdef HAVE_TARGET_32_BIG | |
1846 | template | |
1847 | void | |
6fa2a40b | 1848 | Sized_relobj_file<32, true>::initialize_input_to_output_maps(); |
3e4afc80 ILT |
1849 | |
1850 | template | |
1851 | void | |
6fa2a40b | 1852 | Sized_relobj_file<32, true>::free_input_to_output_maps(); |
3e4afc80 ILT |
1853 | #endif |
1854 | ||
1855 | #ifdef HAVE_TARGET_64_LITTLE | |
1856 | template | |
1857 | void | |
6fa2a40b | 1858 | Sized_relobj_file<64, false>::initialize_input_to_output_maps(); |
3e4afc80 ILT |
1859 | |
1860 | template | |
1861 | void | |
6fa2a40b | 1862 | Sized_relobj_file<64, false>::free_input_to_output_maps(); |
3e4afc80 ILT |
1863 | #endif |
1864 | ||
1865 | #ifdef HAVE_TARGET_64_BIG | |
1866 | template | |
1867 | void | |
6fa2a40b | 1868 | Sized_relobj_file<64, true>::initialize_input_to_output_maps(); |
3e4afc80 ILT |
1869 | |
1870 | template | |
1871 | void | |
6fa2a40b | 1872 | Sized_relobj_file<64, true>::free_input_to_output_maps(); |
3e4afc80 ILT |
1873 | #endif |
1874 | ||
a9a60db6 ILT |
1875 | #if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG) |
1876 | template | |
1877 | class Merged_symbol_value<32>; | |
1878 | #endif | |
1879 | ||
1880 | #if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG) | |
1881 | template | |
1882 | class Merged_symbol_value<64>; | |
1883 | #endif | |
1884 | ||
1885 | #if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG) | |
1886 | template | |
1887 | class Symbol_value<32>; | |
1888 | #endif | |
1889 | ||
1890 | #if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG) | |
1891 | template | |
1892 | class Symbol_value<64>; | |
1893 | #endif | |
1894 | ||
730cdc88 ILT |
1895 | #ifdef HAVE_TARGET_32_LITTLE |
1896 | template | |
1897 | class Track_relocs<32, false>; | |
1898 | #endif | |
1899 | ||
1900 | #ifdef HAVE_TARGET_32_BIG | |
1901 | template | |
1902 | class Track_relocs<32, true>; | |
1903 | #endif | |
1904 | ||
1905 | #ifdef HAVE_TARGET_64_LITTLE | |
1906 | template | |
1907 | class Track_relocs<64, false>; | |
1908 | #endif | |
1909 | ||
1910 | #ifdef HAVE_TARGET_64_BIG | |
1911 | template | |
1912 | class Track_relocs<64, true>; | |
1913 | #endif | |
1914 | ||
61ba1cf9 | 1915 | } // End namespace gold. |