Automatic date update in version.in
[deliverable/binutils-gdb.git] / gold / target-reloc.h
CommitLineData
61ba1cf9
ILT
1// target-reloc.h -- target specific relocation support -*- C++ -*-
2
b90efa5b 3// Copyright (C) 2006-2015 Free Software Foundation, Inc.
6cb15b7f
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
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#ifndef GOLD_TARGET_RELOC_H
24#define GOLD_TARGET_RELOC_H
25
26#include "elfcpp.h"
27#include "symtab.h"
364c7fa5 28#include "object.h"
6a74a719 29#include "reloc.h"
c06b7b0b 30#include "reloc-types.h"
61ba1cf9
ILT
31
32namespace gold
33{
34
6a74a719
ILT
35// This function implements the generic part of reloc scanning. The
36// template parameter Scan must be a class type which provides two
37// functions: local() and global(). Those functions implement the
38// machine specific part of scanning. We do it this way to
9b547ce6 39// avoid making a function call for each relocation, and to avoid
6a74a719 40// repeating the generic code for each target.
92e059d8 41
ead1e424
ILT
42template<int size, bool big_endian, typename Target_type, int sh_type,
43 typename Scan>
92e059d8
ILT
44inline void
45scan_relocs(
92e059d8 46 Symbol_table* symtab,
ead1e424
ILT
47 Layout* layout,
48 Target_type* target,
6fa2a40b 49 Sized_relobj_file<size, big_endian>* object,
a3ad94ed 50 unsigned int data_shndx,
92e059d8
ILT
51 const unsigned char* prelocs,
52 size_t reloc_count,
730cdc88
ILT
53 Output_section* output_section,
54 bool needs_special_offset_handling,
92e059d8 55 size_t local_count,
730cdc88 56 const unsigned char* plocal_syms)
92e059d8
ILT
57{
58 typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reltype;
59 const int reloc_size = Reloc_types<sh_type, size, big_endian>::reloc_size;
60 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
61 Scan scan;
62
63 for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size)
64 {
65 Reltype reloc(prelocs);
66
730cdc88
ILT
67 if (needs_special_offset_handling
68 && !output_section->is_input_address_mapped(object, data_shndx,
69 reloc.get_r_offset()))
70 continue;
71
92e059d8
ILT
72 typename elfcpp::Elf_types<size>::Elf_WXword r_info = reloc.get_r_info();
73 unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info);
74 unsigned int r_type = elfcpp::elf_r_type<size>(r_info);
75
76 if (r_sym < local_count)
77 {
a3ad94ed 78 gold_assert(plocal_syms != NULL);
92e059d8
ILT
79 typename elfcpp::Sym<size, big_endian> lsym(plocal_syms
80 + r_sym * sym_size);
d491d34e
ILT
81 unsigned int shndx = lsym.get_st_shndx();
82 bool is_ordinary;
83 shndx = object->adjust_sym_shndx(r_sym, shndx, &is_ordinary);
bfdfa4cd
AM
84 // If RELOC is a relocation against a local symbol in a
85 // section we are discarding then we can ignore it. It will
86 // eventually become a reloc against the value zero.
87 //
88 // FIXME: We should issue a warning if this is an
89 // allocated section; is this the best place to do it?
62fe925a 90 //
bfdfa4cd
AM
91 // FIXME: The old GNU linker would in some cases look
92 // for the linkonce section which caused this section to
93 // be discarded, and, if the other section was the same
94 // size, change the reloc to refer to the other section.
95 // That seems risky and weird to me, and I don't know of
96 // any case where it is actually required.
97 bool is_discarded = (is_ordinary
98 && shndx != elfcpp::SHN_UNDEF
99 && !object->is_section_included(shndx)
100 && !symtab->is_section_folded(object, shndx));
ad0f2072 101 scan.local(symtab, layout, target, object, data_shndx,
bfdfa4cd 102 output_section, reloc, r_type, lsym, is_discarded);
92e059d8
ILT
103 }
104 else
105 {
730cdc88 106 Symbol* gsym = object->global_symbol(r_sym);
a3ad94ed 107 gold_assert(gsym != NULL);
92e059d8
ILT
108 if (gsym->is_forwarder())
109 gsym = symtab->resolve_forwards(gsym);
110
ad0f2072 111 scan.global(symtab, layout, target, object, data_shndx,
07f397ab 112 output_section, reloc, r_type, gsym);
92e059d8
ILT
113 }
114 }
115}
116
e94cf127
CC
117// Behavior for relocations to discarded comdat sections.
118
119enum Comdat_behavior
120{
121 CB_UNDETERMINED, // Not yet determined -- need to look at section name.
122 CB_PRETEND, // Attempt to map to the corresponding kept section.
123 CB_IGNORE, // Ignore the relocation.
124 CB_WARNING // Print a warning.
125};
126
168a4726 127class Default_comdat_behavior
e94cf127 128{
168a4726
AM
129 public:
130 // Decide what the linker should do for relocations that refer to
131 // discarded comdat sections. This decision is based on the name of
132 // the section being relocated.
133
134 inline Comdat_behavior
135 get(const char* name)
136 {
137 if (Layout::is_debug_info_section(name))
138 return CB_PRETEND;
139 if (strcmp(name, ".eh_frame") == 0
140 || strcmp(name, ".gcc_except_table") == 0)
141 return CB_IGNORE;
142 return CB_WARNING;
143 }
144};
e94cf127 145
837504c4
ILT
146// Give an error for a symbol with non-default visibility which is not
147// defined locally.
148
149inline void
150visibility_error(const Symbol* sym)
151{
152 const char* v;
153 switch (sym->visibility())
154 {
155 case elfcpp::STV_INTERNAL:
156 v = _("internal");
157 break;
158 case elfcpp::STV_HIDDEN:
159 v = _("hidden");
160 break;
161 case elfcpp::STV_PROTECTED:
162 v = _("protected");
163 break;
164 default:
165 gold_unreachable();
166 }
167 gold_error(_("%s symbol '%s' is not defined locally"),
168 v, sym->name());
169}
170
191f1a2d
ILT
171// Return true if we are should issue an error saying that SYM is an
172// undefined symbol. This is called if there is a relocation against
173// SYM.
174
175inline bool
176issue_undefined_symbol_error(const Symbol* sym)
177{
beabb2c6
ILT
178 // We only report global symbols.
179 if (sym == NULL)
180 return false;
181
182 // We only report undefined symbols.
183 if (!sym->is_undefined() && !sym->is_placeholder())
184 return false;
185
186 // We don't report weak symbols.
d1bddd3c 187 if (sym->is_weak_undefined())
beabb2c6
ILT
188 return false;
189
190 // We don't report symbols defined in discarded sections.
191 if (sym->is_defined_in_discarded_section())
192 return false;
193
194 // If the target defines this symbol, don't report it here.
195 if (parameters->target().is_defined_by_abi(sym))
196 return false;
197
198 // See if we've been told to ignore whether this symbol is
199 // undefined.
200 const char* const u = parameters->options().unresolved_symbols();
201 if (u != NULL)
202 {
203 if (strcmp(u, "ignore-all") == 0)
204 return false;
e2153196
ILT
205 if (strcmp(u, "report-all") == 0)
206 return true;
beabb2c6
ILT
207 if (strcmp(u, "ignore-in-object-files") == 0 && !sym->in_dyn())
208 return false;
209 if (strcmp(u, "ignore-in-shared-libs") == 0 && !sym->in_reg())
210 return false;
211 }
212
d1bddd3c
CC
213 // If the symbol is hidden, report it.
214 if (sym->visibility() == elfcpp::STV_HIDDEN)
215 return true;
216
beabb2c6
ILT
217 // When creating a shared library, only report unresolved symbols if
218 // -z defs was used.
219 if (parameters->options().shared() && !parameters->options().defs())
220 return false;
221
222 // Otherwise issue a warning.
223 return true;
191f1a2d
ILT
224}
225
92e059d8 226// This function implements the generic part of relocation processing.
6a74a719
ILT
227// The template parameter Relocate must be a class type which provides
228// a single function, relocate(), which implements the machine
229// specific part of a relocation.
61ba1cf9 230
168a4726
AM
231// The template parameter Relocate_comdat_behavior is a class type
232// which provides a single function, get(), which determines what the
233// linker should do for relocations that refer to discarded comdat
234// sections.
235
61ba1cf9 236// SIZE is the ELF size: 32 or 64. BIG_ENDIAN is the endianness of
92e059d8
ILT
237// the data. SH_TYPE is the section type: SHT_REL or SHT_RELA.
238// RELOCATE implements operator() to do a relocation.
61ba1cf9 239
92e059d8 240// PRELOCS points to the relocation data. RELOC_COUNT is the number
730cdc88
ILT
241// of relocs. OUTPUT_SECTION is the output section.
242// NEEDS_SPECIAL_OFFSET_HANDLING is true if input offsets need to be
243// mapped to output offsets.
244
245// VIEW is the section data, VIEW_ADDRESS is its memory address, and
246// VIEW_SIZE is the size. These refer to the input section, unless
247// NEEDS_SPECIAL_OFFSET_HANDLING is true, in which case they refer to
248// the output section.
61ba1cf9 249
364c7fa5
ILT
250// RELOC_SYMBOL_CHANGES is used for -fsplit-stack support. If it is
251// not NULL, it is a vector indexed by relocation index. If that
252// entry is not NULL, it points to a global symbol which used as the
253// symbol for the relocation, ignoring the symbol index in the
254// relocation.
255
ead1e424 256template<int size, bool big_endian, typename Target_type, int sh_type,
168a4726
AM
257 typename Relocate,
258 typename Relocate_comdat_behavior>
61ba1cf9
ILT
259inline void
260relocate_section(
92e059d8 261 const Relocate_info<size, big_endian>* relinfo,
ead1e424 262 Target_type* target,
61ba1cf9
ILT
263 const unsigned char* prelocs,
264 size_t reloc_count,
730cdc88
ILT
265 Output_section* output_section,
266 bool needs_special_offset_handling,
61ba1cf9
ILT
267 unsigned char* view,
268 typename elfcpp::Elf_types<size>::Elf_Addr view_address,
364c7fa5
ILT
269 section_size_type view_size,
270 const Reloc_symbol_changes* reloc_symbol_changes)
61ba1cf9
ILT
271{
272 typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reltype;
273 const int reloc_size = Reloc_types<sh_type, size, big_endian>::reloc_size;
274 Relocate relocate;
168a4726 275 Relocate_comdat_behavior relocate_comdat_behavior;
61ba1cf9 276
6fa2a40b 277 Sized_relobj_file<size, big_endian>* object = relinfo->object;
730cdc88 278 unsigned int local_count = object->local_symbol_count();
92e059d8 279
e94cf127
CC
280 Comdat_behavior comdat_behavior = CB_UNDETERMINED;
281
61ba1cf9
ILT
282 for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size)
283 {
284 Reltype reloc(prelocs);
285
fe8718a4
ILT
286 section_offset_type offset =
287 convert_to_section_size_type(reloc.get_r_offset());
61ba1cf9 288
730cdc88
ILT
289 if (needs_special_offset_handling)
290 {
291 offset = output_section->output_offset(relinfo->object,
292 relinfo->data_shndx,
293 offset);
294 if (offset == -1)
295 continue;
296 }
297
61ba1cf9
ILT
298 typename elfcpp::Elf_types<size>::Elf_WXword r_info = reloc.get_r_info();
299 unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info);
300 unsigned int r_type = elfcpp::elf_r_type<size>(r_info);
301
c06b7b0b 302 const Sized_symbol<size>* sym;
61ba1cf9 303
b8e6aad9
ILT
304 Symbol_value<size> symval;
305 const Symbol_value<size> *psymval;
880cd20d
ILT
306 bool is_defined_in_discarded_section;
307 unsigned int shndx;
364c7fa5
ILT
308 if (r_sym < local_count
309 && (reloc_symbol_changes == NULL
310 || (*reloc_symbol_changes)[i] == NULL))
61ba1cf9
ILT
311 {
312 sym = NULL;
730cdc88 313 psymval = object->local_symbol(r_sym);
e94cf127
CC
314
315 // If the local symbol belongs to a section we are discarding,
316 // and that section is a debug section, try to find the
317 // corresponding kept section and map this symbol to its
62fe925a 318 // counterpart in the kept section. The symbol must not
ef15dade 319 // correspond to a section we are folding.
e94cf127 320 bool is_ordinary;
880cd20d
ILT
321 shndx = psymval->input_shndx(&is_ordinary);
322 is_defined_in_discarded_section =
323 (is_ordinary
324 && shndx != elfcpp::SHN_UNDEF
325 && !object->is_section_included(shndx)
326 && !relinfo->symtab->is_section_folded(object, shndx));
61ba1cf9
ILT
327 }
328 else
329 {
364c7fa5
ILT
330 const Symbol* gsym;
331 if (reloc_symbol_changes != NULL
332 && (*reloc_symbol_changes)[i] != NULL)
333 gsym = (*reloc_symbol_changes)[i];
334 else
335 {
336 gsym = object->global_symbol(r_sym);
337 gold_assert(gsym != NULL);
338 if (gsym->is_forwarder())
339 gsym = relinfo->symtab->resolve_forwards(gsym);
340 }
61ba1cf9 341
c06b7b0b 342 sym = static_cast<const Sized_symbol<size>*>(gsym);
d3bbad62 343 if (sym->has_symtab_index() && sym->symtab_index() != -1U)
b8e6aad9
ILT
344 symval.set_output_symtab_index(sym->symtab_index());
345 else
346 symval.set_no_output_symtab_entry();
347 symval.set_output_value(sym->value());
7223e9ca
ILT
348 if (gsym->type() == elfcpp::STT_TLS)
349 symval.set_is_tls_symbol();
350 else if (gsym->type() == elfcpp::STT_GNU_IFUNC)
351 symval.set_is_ifunc_symbol();
b8e6aad9 352 psymval = &symval;
880cd20d
ILT
353
354 is_defined_in_discarded_section =
355 (gsym->is_defined_in_discarded_section()
356 && gsym->is_undefined());
357 shndx = 0;
358 }
359
360 Symbol_value<size> symval2;
361 if (is_defined_in_discarded_section)
362 {
363 if (comdat_behavior == CB_UNDETERMINED)
364 {
365 std::string name = object->section_name(relinfo->data_shndx);
168a4726 366 comdat_behavior = relocate_comdat_behavior.get(name.c_str());
880cd20d
ILT
367 }
368 if (comdat_behavior == CB_PRETEND)
369 {
370 // FIXME: This case does not work for global symbols.
371 // We have no place to store the original section index.
372 // Fortunately this does not matter for comdat sections,
373 // only for sections explicitly discarded by a linker
374 // script.
375 bool found;
376 typename elfcpp::Elf_types<size>::Elf_Addr value =
377 object->map_to_kept_section(shndx, &found);
378 if (found)
379 symval2.set_output_value(value + psymval->input_value());
380 else
381 symval2.set_output_value(0);
382 }
383 else
384 {
385 if (comdat_behavior == CB_WARNING)
386 gold_warning_at_location(relinfo, i, offset,
387 _("relocation refers to discarded "
388 "section"));
389 symval2.set_output_value(0);
390 }
391 symval2.set_no_output_symtab_entry();
392 psymval = &symval2;
ead1e424 393 }
61ba1cf9 394
0e804863
ILT
395 // If OFFSET is out of range, still let the target decide to
396 // ignore the relocation. Pass in NULL as the VIEW argument so
397 // that it can return quickly without trashing an invalid memory
398 // address.
399 unsigned char *v = view + offset;
400 if (offset < 0 || static_cast<section_size_type>(offset) >= view_size)
401 v = NULL;
402
031cdbed 403 if (!relocate.relocate(relinfo, target, output_section, i, reloc,
0e804863
ILT
404 r_type, sym, psymval, v, view_address + offset,
405 view_size))
ead1e424
ILT
406 continue;
407
0e804863 408 if (v == NULL)
ead1e424 409 {
75f2446e
ILT
410 gold_error_at_location(relinfo, i, offset,
411 _("reloc has bad offset %zu"),
412 static_cast<size_t>(offset));
413 continue;
61ba1cf9
ILT
414 }
415
191f1a2d 416 if (issue_undefined_symbol_error(sym))
1a221d3d 417 gold_undefined_symbol_at_location(sym, relinfo, i, offset);
837504c4
ILT
418 else if (sym != NULL
419 && sym->visibility() != elfcpp::STV_DEFAULT
d1bddd3c 420 && (sym->is_strong_undefined() || sym->is_from_dynobj()))
837504c4 421 visibility_error(sym);
f6ce93d6
ILT
422
423 if (sym != NULL && sym->has_warning())
75f2446e 424 relinfo->symtab->issue_warning(sym, relinfo, i, offset);
61ba1cf9
ILT
425 }
426}
427
94a3fc8b
CC
428// Apply an incremental relocation.
429
430template<int size, bool big_endian, typename Target_type,
431 typename Relocate>
432void
433apply_relocation(const Relocate_info<size, big_endian>* relinfo,
434 Target_type* target,
435 typename elfcpp::Elf_types<size>::Elf_Addr r_offset,
436 unsigned int r_type,
437 typename elfcpp::Elf_types<size>::Elf_Swxword r_addend,
438 const Symbol* gsym,
439 unsigned char* view,
440 typename elfcpp::Elf_types<size>::Elf_Addr address,
441 section_size_type view_size)
442{
443 // Construct the ELF relocation in a temporary buffer.
d55525b9 444 const int reloc_size = elfcpp::Elf_sizes<size>::rela_size;
94a3fc8b 445 unsigned char relbuf[reloc_size];
d55525b9
L
446 elfcpp::Rela<size, big_endian> rel(relbuf);
447 elfcpp::Rela_write<size, big_endian> orel(relbuf);
94a3fc8b 448 orel.put_r_offset(r_offset);
d55525b9 449 orel.put_r_info(elfcpp::elf_r_info<size>(0, r_type));
94a3fc8b
CC
450 orel.put_r_addend(r_addend);
451
452 // Setup a Symbol_value for the global symbol.
d55525b9
L
453 const Sized_symbol<size>* sym = static_cast<const Sized_symbol<size>*>(gsym);
454 Symbol_value<size> symval;
94a3fc8b
CC
455 gold_assert(sym->has_symtab_index() && sym->symtab_index() != -1U);
456 symval.set_output_symtab_index(sym->symtab_index());
457 symval.set_output_value(sym->value());
458 if (gsym->type() == elfcpp::STT_TLS)
459 symval.set_is_tls_symbol();
460 else if (gsym->type() == elfcpp::STT_GNU_IFUNC)
461 symval.set_is_ifunc_symbol();
462
463 Relocate relocate;
464 relocate.relocate(relinfo, target, NULL, -1U, rel, r_type, sym, &symval,
465 view + r_offset, address + r_offset, view_size);
466}
467
6a74a719
ILT
468// This class may be used as a typical class for the
469// Scan_relocatable_reloc parameter to scan_relocatable_relocs. The
470// template parameter Classify_reloc must be a class type which
471// provides a function get_size_for_reloc which returns the number of
472// bytes to which a reloc applies. This class is intended to capture
473// the most typical target behaviour, while still permitting targets
474// to define their own independent class for Scan_relocatable_reloc.
475
476template<int sh_type, typename Classify_reloc>
477class Default_scan_relocatable_relocs
478{
479 public:
480 // Return the strategy to use for a local symbol which is not a
481 // section symbol, given the relocation type.
482 inline Relocatable_relocs::Reloc_strategy
68943102 483 local_non_section_strategy(unsigned int r_type, Relobj*, unsigned int r_sym)
c2508178
ILT
484 {
485 // We assume that relocation type 0 is NONE. Targets which are
486 // different must override.
68943102 487 if (r_type == 0 && r_sym == 0)
c2508178
ILT
488 return Relocatable_relocs::RELOC_DISCARD;
489 return Relocatable_relocs::RELOC_COPY;
490 }
6a74a719
ILT
491
492 // Return the strategy to use for a local symbol which is a section
493 // symbol, given the relocation type.
494 inline Relocatable_relocs::Reloc_strategy
495 local_section_strategy(unsigned int r_type, Relobj* object)
496 {
497 if (sh_type == elfcpp::SHT_RELA)
498 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA;
499 else
500 {
501 Classify_reloc classify;
502 switch (classify.get_size_for_reloc(r_type, object))
503 {
504 case 0:
7019cd25 505 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_0;
6a74a719
ILT
506 case 1:
507 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_1;
508 case 2:
509 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_2;
510 case 4:
511 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_4;
512 case 8:
513 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_8;
514 default:
515 gold_unreachable();
516 }
517 }
518 }
519
520 // Return the strategy to use for a global symbol, given the
521 // relocation type, the object, and the symbol index.
522 inline Relocatable_relocs::Reloc_strategy
68943102
ILT
523 global_strategy(unsigned int, Relobj*, unsigned int)
524 { return Relocatable_relocs::RELOC_COPY; }
6a74a719
ILT
525};
526
527// Scan relocs during a relocatable link. This is a default
528// definition which should work for most targets.
529// Scan_relocatable_reloc must name a class type which provides three
530// functions which return a Relocatable_relocs::Reloc_strategy code:
531// global_strategy, local_non_section_strategy, and
532// local_section_strategy. Most targets should be able to use
533// Default_scan_relocatable_relocs as this class.
534
7019cd25 535template<int size, bool big_endian, int sh_type,
6a74a719
ILT
536 typename Scan_relocatable_reloc>
537void
538scan_relocatable_relocs(
6a74a719
ILT
539 Symbol_table*,
540 Layout*,
6fa2a40b 541 Sized_relobj_file<size, big_endian>* object,
6a74a719
ILT
542 unsigned int data_shndx,
543 const unsigned char* prelocs,
544 size_t reloc_count,
545 Output_section* output_section,
546 bool needs_special_offset_handling,
547 size_t local_symbol_count,
548 const unsigned char* plocal_syms,
549 Relocatable_relocs* rr)
550{
551 typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reltype;
552 const int reloc_size = Reloc_types<sh_type, size, big_endian>::reloc_size;
553 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
554 Scan_relocatable_reloc scan;
555
556 for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size)
557 {
558 Reltype reloc(prelocs);
559
560 Relocatable_relocs::Reloc_strategy strategy;
561
562 if (needs_special_offset_handling
563 && !output_section->is_input_address_mapped(object, data_shndx,
564 reloc.get_r_offset()))
565 strategy = Relocatable_relocs::RELOC_DISCARD;
566 else
567 {
568 typename elfcpp::Elf_types<size>::Elf_WXword r_info =
569 reloc.get_r_info();
570 const unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info);
571 const unsigned int r_type = elfcpp::elf_r_type<size>(r_info);
572
573 if (r_sym >= local_symbol_count)
574 strategy = scan.global_strategy(r_type, object, r_sym);
575 else
576 {
577 gold_assert(plocal_syms != NULL);
578 typename elfcpp::Sym<size, big_endian> lsym(plocal_syms
579 + r_sym * sym_size);
d491d34e
ILT
580 unsigned int shndx = lsym.get_st_shndx();
581 bool is_ordinary;
582 shndx = object->adjust_sym_shndx(r_sym, shndx, &is_ordinary);
583 if (is_ordinary
6a74a719 584 && shndx != elfcpp::SHN_UNDEF
d491d34e 585 && !object->is_section_included(shndx))
6a74a719
ILT
586 {
587 // RELOC is a relocation against a local symbol
588 // defined in a section we are discarding. Discard
589 // the reloc. FIXME: Should we issue a warning?
590 strategy = Relocatable_relocs::RELOC_DISCARD;
591 }
592 else if (lsym.get_st_type() != elfcpp::STT_SECTION)
68943102
ILT
593 strategy = scan.local_non_section_strategy(r_type, object,
594 r_sym);
6a74a719
ILT
595 else
596 {
597 strategy = scan.local_section_strategy(r_type, object);
598 if (strategy != Relocatable_relocs::RELOC_DISCARD)
ef9beddf 599 object->output_section(shndx)->set_needs_symtab_index();
6a74a719 600 }
d3bbad62
ILT
601
602 if (strategy == Relocatable_relocs::RELOC_COPY)
603 object->set_must_have_output_symtab_entry(r_sym);
6a74a719
ILT
604 }
605 }
606
607 rr->set_next_reloc_strategy(strategy);
608 }
609}
610
7404fe1b
AM
611// Relocate relocs. Called for a relocatable link, and for --emit-relocs.
612// This is a default definition which should work for most targets.
6a74a719 613
7019cd25 614template<int size, bool big_endian, int sh_type>
6a74a719 615void
7404fe1b 616relocate_relocs(
6a74a719
ILT
617 const Relocate_info<size, big_endian>* relinfo,
618 const unsigned char* prelocs,
619 size_t reloc_count,
620 Output_section* output_section,
62fe925a 621 typename elfcpp::Elf_types<size>::Elf_Off offset_in_output_section,
6a74a719
ILT
622 const Relocatable_relocs* rr,
623 unsigned char* view,
6be6f3bd 624 typename elfcpp::Elf_types<size>::Elf_Addr view_address,
5c388529 625 section_size_type view_size,
6a74a719
ILT
626 unsigned char* reloc_view,
627 section_size_type reloc_view_size)
628{
ef9beddf 629 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
6a74a719
ILT
630 typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reltype;
631 typedef typename Reloc_types<sh_type, size, big_endian>::Reloc_write
632 Reltype_write;
633 const int reloc_size = Reloc_types<sh_type, size, big_endian>::reloc_size;
eff45813 634 const Address invalid_address = static_cast<Address>(0) - 1;
6a74a719 635
6fa2a40b 636 Sized_relobj_file<size, big_endian>* const object = relinfo->object;
6a74a719
ILT
637 const unsigned int local_count = object->local_symbol_count();
638
639 unsigned char* pwrite = reloc_view;
640
641 for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size)
642 {
643 Relocatable_relocs::Reloc_strategy strategy = rr->strategy(i);
644 if (strategy == Relocatable_relocs::RELOC_DISCARD)
645 continue;
646
5c388529
DK
647 if (strategy == Relocatable_relocs::RELOC_SPECIAL)
648 {
649 // Target wants to handle this relocation.
650 Sized_target<size, big_endian>* target =
651 parameters->sized_target<size, big_endian>();
652 target->relocate_special_relocatable(relinfo, sh_type, prelocs,
653 i, output_section,
654 offset_in_output_section,
655 view, view_address,
656 view_size, pwrite);
657 pwrite += reloc_size;
658 continue;
659 }
6a74a719
ILT
660 Reltype reloc(prelocs);
661 Reltype_write reloc_write(pwrite);
662
663 typename elfcpp::Elf_types<size>::Elf_WXword r_info = reloc.get_r_info();
664 const unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info);
665 const unsigned int r_type = elfcpp::elf_r_type<size>(r_info);
666
667 // Get the new symbol index.
668
9215b98b 669 Output_section* os = NULL;
6a74a719
ILT
670 unsigned int new_symndx;
671 if (r_sym < local_count)
672 {
673 switch (strategy)
674 {
675 case Relocatable_relocs::RELOC_COPY:
818bf354
ILT
676 if (r_sym == 0)
677 new_symndx = 0;
678 else
679 {
680 new_symndx = object->symtab_index(r_sym);
681 gold_assert(new_symndx != -1U);
682 }
6a74a719
ILT
683 break;
684
685 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA:
7019cd25 686 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_0:
6a74a719
ILT
687 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_1:
688 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_2:
689 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_4:
690 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_8:
2c339f71 691 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_4_UNALIGNED:
6a74a719
ILT
692 {
693 // We are adjusting a section symbol. We need to find
694 // the symbol table index of the section symbol for
695 // the output section corresponding to input section
696 // in which this symbol is defined.
697 gold_assert(r_sym < local_count);
d491d34e
ILT
698 bool is_ordinary;
699 unsigned int shndx =
700 object->local_symbol_input_shndx(r_sym, &is_ordinary);
701 gold_assert(is_ordinary);
9215b98b 702 os = object->output_section(shndx);
6a74a719
ILT
703 gold_assert(os != NULL);
704 gold_assert(os->needs_symtab_index());
705 new_symndx = os->symtab_index();
706 }
707 break;
708
709 default:
710 gold_unreachable();
711 }
712 }
713 else
714 {
715 const Symbol* gsym = object->global_symbol(r_sym);
716 gold_assert(gsym != NULL);
717 if (gsym->is_forwarder())
718 gsym = relinfo->symtab->resolve_forwards(gsym);
719
720 gold_assert(gsym->has_symtab_index());
721 new_symndx = gsym->symtab_index();
722 }
723
724 // Get the new offset--the location in the output section where
725 // this relocation should be applied.
726
ef9beddf
ILT
727 Address offset = reloc.get_r_offset();
728 Address new_offset;
eff45813 729 if (offset_in_output_section != invalid_address)
6a74a719
ILT
730 new_offset = offset + offset_in_output_section;
731 else
732 {
ef9beddf
ILT
733 section_offset_type sot_offset =
734 convert_types<section_offset_type, Address>(offset);
735 section_offset_type new_sot_offset =
736 output_section->output_offset(object, relinfo->data_shndx,
737 sot_offset);
738 gold_assert(new_sot_offset != -1);
739 new_offset = new_sot_offset;
6a74a719
ILT
740 }
741
6be6f3bd
ILT
742 // In an object file, r_offset is an offset within the section.
743 // In an executable or dynamic object, generated by
744 // --emit-relocs, r_offset is an absolute address.
745 if (!parameters->options().relocatable())
e09ad04a
ILT
746 {
747 new_offset += view_address;
eff45813 748 if (offset_in_output_section != invalid_address)
e09ad04a
ILT
749 new_offset -= offset_in_output_section;
750 }
6be6f3bd 751
6a74a719
ILT
752 reloc_write.put_r_offset(new_offset);
753 reloc_write.put_r_info(elfcpp::elf_r_info<size>(new_symndx, r_type));
754
755 // Handle the reloc addend based on the strategy.
756
757 if (strategy == Relocatable_relocs::RELOC_COPY)
758 {
759 if (sh_type == elfcpp::SHT_RELA)
760 Reloc_types<sh_type, size, big_endian>::
761 copy_reloc_addend(&reloc_write,
762 &reloc);
763 }
764 else
765 {
766 // The relocation uses a section symbol in the input file.
767 // We are adjusting it to use a section symbol in the output
768 // file. The input section symbol refers to some address in
769 // the input section. We need the relocation in the output
770 // file to refer to that same address. This adjustment to
771 // the addend is the same calculation we use for a simple
772 // absolute relocation for the input section symbol.
773
774 const Symbol_value<size>* psymval = object->local_symbol(r_sym);
775
776 unsigned char* padd = view + offset;
777 switch (strategy)
778 {
779 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA:
780 {
781 typename elfcpp::Elf_types<size>::Elf_Swxword addend;
782 addend = Reloc_types<sh_type, size, big_endian>::
783 get_reloc_addend(&reloc);
9215b98b
AM
784 gold_assert(os != NULL);
785 addend = psymval->value(object, addend) - os->address();
6a74a719
ILT
786 Reloc_types<sh_type, size, big_endian>::
787 set_reloc_addend(&reloc_write, addend);
788 }
789 break;
790
7019cd25
ILT
791 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_0:
792 break;
793
6a74a719
ILT
794 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_1:
795 Relocate_functions<size, big_endian>::rel8(padd, object,
796 psymval);
797 break;
798
799 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_2:
800 Relocate_functions<size, big_endian>::rel16(padd, object,
801 psymval);
802 break;
803
804 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_4:
805 Relocate_functions<size, big_endian>::rel32(padd, object,
806 psymval);
807 break;
808
809 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_8:
810 Relocate_functions<size, big_endian>::rel64(padd, object,
811 psymval);
812 break;
813
2c339f71
DK
814 case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_4_UNALIGNED:
815 Relocate_functions<size, big_endian>::rel32_unaligned(padd,
816 object,
817 psymval);
818 break;
819
6a74a719
ILT
820 default:
821 gold_unreachable();
822 }
823 }
824
825 pwrite += reloc_size;
826 }
827
828 gold_assert(static_cast<section_size_type>(pwrite - reloc_view)
829 == reloc_view_size);
830}
831
61ba1cf9
ILT
832} // End namespace gold.
833
834#endif // !defined(GOLD_TARGET_RELOC_H)
This page took 0.411258 seconds and 4 git commands to generate.