]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/object.cc
Remove gdb.base/coremaker2.c
[thirdparty/binutils-gdb.git] / gold / object.cc
CommitLineData
bae7f79e
ILT
1// object.cc -- support for an object file for linking in gold
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
bae7f79e
ILT
23#include "gold.h"
24
25#include <cerrno>
26#include <cstring>
645f8123 27#include <cstdarg>
a2b1aa12 28#include "demangle.h"
9a2d6984 29#include "libiberty.h"
bae7f79e 30
6d03d481 31#include "gc.h"
14bfc3f5 32#include "target-select.h"
5c2c6c95 33#include "dwarf_reader.h"
a2fb1b05 34#include "layout.h"
61ba1cf9 35#include "output.h"
f6ce93d6 36#include "symtab.h"
92de84a6 37#include "cref.h"
4c50553d 38#include "reloc.h"
f6ce93d6
ILT
39#include "object.h"
40#include "dynobj.h"
5995b570 41#include "plugin.h"
a2e47362 42#include "compressed_output.h"
09ec0418 43#include "incremental.h"
dbe40a88 44#include "merge.h"
bae7f79e
ILT
45
46namespace gold
47{
48
00698fc5
CC
49// Struct Read_symbols_data.
50
d2d60eef
CC
51// Destroy any remaining File_view objects and buffers of decompressed
52// sections.
00698fc5
CC
53
54Read_symbols_data::~Read_symbols_data()
55{
56 if (this->section_headers != NULL)
57 delete this->section_headers;
58 if (this->section_names != NULL)
59 delete this->section_names;
60 if (this->symbols != NULL)
61 delete this->symbols;
62 if (this->symbol_names != NULL)
63 delete this->symbol_names;
64 if (this->versym != NULL)
65 delete this->versym;
66 if (this->verdef != NULL)
67 delete this->verdef;
68 if (this->verneed != NULL)
69 delete this->verneed;
70}
71
d491d34e
ILT
72// Class Xindex.
73
74// Initialize the symtab_xindex_ array. Find the SHT_SYMTAB_SHNDX
75// section and read it in. SYMTAB_SHNDX is the index of the symbol
76// table we care about.
77
78template<int size, bool big_endian>
79void
2ea97941 80Xindex::initialize_symtab_xindex(Object* object, unsigned int symtab_shndx)
d491d34e
ILT
81{
82 if (!this->symtab_xindex_.empty())
83 return;
84
2ea97941 85 gold_assert(symtab_shndx != 0);
d491d34e
ILT
86
87 // Look through the sections in reverse order, on the theory that it
88 // is more likely to be near the end than the beginning.
89 unsigned int i = object->shnum();
90 while (i > 0)
91 {
92 --i;
93 if (object->section_type(i) == elfcpp::SHT_SYMTAB_SHNDX
2ea97941 94 && this->adjust_shndx(object->section_link(i)) == symtab_shndx)
d491d34e
ILT
95 {
96 this->read_symtab_xindex<size, big_endian>(object, i, NULL);
97 return;
98 }
99 }
100
101 object->error(_("missing SHT_SYMTAB_SHNDX section"));
102}
103
104// Read in the symtab_xindex_ array, given the section index of the
105// SHT_SYMTAB_SHNDX section. If PSHDRS is not NULL, it points at the
106// section headers.
107
108template<int size, bool big_endian>
109void
110Xindex::read_symtab_xindex(Object* object, unsigned int xindex_shndx,
111 const unsigned char* pshdrs)
112{
113 section_size_type bytecount;
114 const unsigned char* contents;
115 if (pshdrs == NULL)
116 contents = object->section_contents(xindex_shndx, &bytecount, false);
117 else
118 {
119 const unsigned char* p = (pshdrs
120 + (xindex_shndx
121 * elfcpp::Elf_sizes<size>::shdr_size));
122 typename elfcpp::Shdr<size, big_endian> shdr(p);
123 bytecount = convert_to_section_size_type(shdr.get_sh_size());
124 contents = object->get_view(shdr.get_sh_offset(), bytecount, true, false);
125 }
126
127 gold_assert(this->symtab_xindex_.empty());
128 this->symtab_xindex_.reserve(bytecount / 4);
129 for (section_size_type i = 0; i < bytecount; i += 4)
130 {
131 unsigned int shndx = elfcpp::Swap<32, big_endian>::readval(contents + i);
132 // We preadjust the section indexes we save.
133 this->symtab_xindex_.push_back(this->adjust_shndx(shndx));
134 }
135}
136
137// Symbol symndx has a section of SHN_XINDEX; return the real section
138// index.
139
140unsigned int
141Xindex::sym_xindex_to_shndx(Object* object, unsigned int symndx)
142{
143 if (symndx >= this->symtab_xindex_.size())
144 {
145 object->error(_("symbol %u out of range for SHT_SYMTAB_SHNDX section"),
146 symndx);
147 return elfcpp::SHN_UNDEF;
148 }
149 unsigned int shndx = this->symtab_xindex_[symndx];
150 if (shndx < elfcpp::SHN_LORESERVE || shndx >= object->shnum())
151 {
152 object->error(_("extended index for symbol %u out of range: %u"),
153 symndx, shndx);
154 return elfcpp::SHN_UNDEF;
155 }
156 return shndx;
157}
158
645f8123
ILT
159// Class Object.
160
75f2446e
ILT
161// Report an error for this object file. This is used by the
162// elfcpp::Elf_file interface, and also called by the Object code
163// itself.
645f8123
ILT
164
165void
75f2446e 166Object::error(const char* format, ...) const
645f8123
ILT
167{
168 va_list args;
645f8123 169 va_start(args, format);
75f2446e
ILT
170 char* buf = NULL;
171 if (vasprintf(&buf, format, args) < 0)
172 gold_nomem();
645f8123 173 va_end(args);
75f2446e
ILT
174 gold_error(_("%s: %s"), this->name().c_str(), buf);
175 free(buf);
645f8123
ILT
176}
177
178// Return a view of the contents of a section.
179
180const unsigned char*
8383303e
ILT
181Object::section_contents(unsigned int shndx, section_size_type* plen,
182 bool cache)
c1027032 183{ return this->do_section_contents(shndx, plen, cache); }
645f8123 184
6fa2a40b 185// Read the section data into SD. This is code common to Sized_relobj_file
dbe717ef
ILT
186// and Sized_dynobj, so we put it into Object.
187
188template<int size, bool big_endian>
189void
190Object::read_section_data(elfcpp::Elf_file<size, big_endian, Object>* elf_file,
191 Read_symbols_data* sd)
192{
193 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
194
195 // Read the section headers.
196 const off_t shoff = elf_file->shoff();
2ea97941
ILT
197 const unsigned int shnum = this->shnum();
198 sd->section_headers = this->get_lasting_view(shoff, shnum * shdr_size,
39d0cb0e 199 true, true);
dbe717ef
ILT
200
201 // Read the section names.
202 const unsigned char* pshdrs = sd->section_headers->data();
203 const unsigned char* pshdrnames = pshdrs + elf_file->shstrndx() * shdr_size;
204 typename elfcpp::Shdr<size, big_endian> shdrnames(pshdrnames);
205
206 if (shdrnames.get_sh_type() != elfcpp::SHT_STRTAB)
75f2446e
ILT
207 this->error(_("section name section has wrong type: %u"),
208 static_cast<unsigned int>(shdrnames.get_sh_type()));
dbe717ef 209
8383303e
ILT
210 sd->section_names_size =
211 convert_to_section_size_type(shdrnames.get_sh_size());
dbe717ef 212 sd->section_names = this->get_lasting_view(shdrnames.get_sh_offset(),
39d0cb0e
ILT
213 sd->section_names_size, false,
214 false);
dbe717ef
ILT
215}
216
2ea97941 217// If NAME is the name of a special .gnu.warning section, arrange for
dbe717ef
ILT
218// the warning to be issued. SHNDX is the section index. Return
219// whether it is a warning section.
220
221bool
2ea97941 222Object::handle_gnu_warning_section(const char* name, unsigned int shndx,
dbe717ef
ILT
223 Symbol_table* symtab)
224{
225 const char warn_prefix[] = ".gnu.warning.";
226 const int warn_prefix_len = sizeof warn_prefix - 1;
2ea97941 227 if (strncmp(name, warn_prefix, warn_prefix_len) == 0)
dbe717ef 228 {
cb295612
ILT
229 // Read the section contents to get the warning text. It would
230 // be nicer if we only did this if we have to actually issue a
231 // warning. Unfortunately, warnings are issued as we relocate
232 // sections. That means that we can not lock the object then,
233 // as we might try to issue the same warning multiple times
234 // simultaneously.
235 section_size_type len;
236 const unsigned char* contents = this->section_contents(shndx, &len,
237 false);
8d63875c
ILT
238 if (len == 0)
239 {
2ea97941 240 const char* warning = name + warn_prefix_len;
8d63875c
ILT
241 contents = reinterpret_cast<const unsigned char*>(warning);
242 len = strlen(warning);
243 }
cb295612 244 std::string warning(reinterpret_cast<const char*>(contents), len);
2ea97941 245 symtab->add_warning(name + warn_prefix_len, this, warning);
dbe717ef
ILT
246 return true;
247 }
248 return false;
249}
250
2ea97941 251// If NAME is the name of the special section which indicates that
9b547ce6 252// this object was compiled with -fsplit-stack, mark it accordingly.
364c7fa5
ILT
253
254bool
2ea97941 255Object::handle_split_stack_section(const char* name)
364c7fa5 256{
2ea97941 257 if (strcmp(name, ".note.GNU-split-stack") == 0)
364c7fa5
ILT
258 {
259 this->uses_split_stack_ = true;
260 return true;
261 }
2ea97941 262 if (strcmp(name, ".note.GNU-no-split-stack") == 0)
364c7fa5
ILT
263 {
264 this->has_no_split_stack_ = true;
265 return true;
266 }
267 return false;
268}
269
6d03d481
ST
270// Class Relobj
271
dbe40a88
RÁE
272template<int size>
273void
274Relobj::initialize_input_to_output_map(unsigned int shndx,
275 typename elfcpp::Elf_types<size>::Elf_Addr starting_address,
276 Unordered_map<section_offset_type,
277 typename elfcpp::Elf_types<size>::Elf_Addr>* output_addresses) const {
278 Object_merge_map *map = this->object_merge_map_;
279 map->initialize_input_to_output_map<size>(shndx, starting_address,
280 output_addresses);
281}
282
283void
284Relobj::add_merge_mapping(Output_section_data *output_data,
285 unsigned int shndx, section_offset_type offset,
286 section_size_type length,
287 section_offset_type output_offset) {
0916f9e7
RÁE
288 Object_merge_map* object_merge_map = this->get_or_create_merge_map();
289 object_merge_map->add_mapping(output_data, shndx, offset, length, output_offset);
dbe40a88
RÁE
290}
291
292bool
293Relobj::merge_output_offset(unsigned int shndx, section_offset_type offset,
294 section_offset_type *poutput) const {
295 Object_merge_map* object_merge_map = this->object_merge_map_;
296 if (object_merge_map == NULL)
297 return false;
298 return object_merge_map->get_output_offset(shndx, offset, poutput);
299}
300
67f95b96
RÁE
301const Output_section_data*
302Relobj::find_merge_section(unsigned int shndx) const {
dbe40a88
RÁE
303 Object_merge_map* object_merge_map = this->object_merge_map_;
304 if (object_merge_map == NULL)
67f95b96
RÁE
305 return NULL;
306 return object_merge_map->find_merge_section(shndx);
dbe40a88
RÁE
307}
308
6d03d481 309// To copy the symbols data read from the file to a local data structure.
2e702c99 310// This function is called from do_layout only while doing garbage
6d03d481
ST
311// collection.
312
313void
2e702c99
RM
314Relobj::copy_symbols_data(Symbols_data* gc_sd, Read_symbols_data* sd,
315 unsigned int section_header_size)
6d03d481 316{
2e702c99
RM
317 gc_sd->section_headers_data =
318 new unsigned char[(section_header_size)];
6d03d481 319 memcpy(gc_sd->section_headers_data, sd->section_headers->data(),
2e702c99
RM
320 section_header_size);
321 gc_sd->section_names_data =
322 new unsigned char[sd->section_names_size];
6d03d481 323 memcpy(gc_sd->section_names_data, sd->section_names->data(),
2e702c99 324 sd->section_names_size);
6d03d481
ST
325 gc_sd->section_names_size = sd->section_names_size;
326 if (sd->symbols != NULL)
327 {
2e702c99
RM
328 gc_sd->symbols_data =
329 new unsigned char[sd->symbols_size];
6d03d481 330 memcpy(gc_sd->symbols_data, sd->symbols->data(),
2e702c99 331 sd->symbols_size);
6d03d481
ST
332 }
333 else
334 {
335 gc_sd->symbols_data = NULL;
336 }
337 gc_sd->symbols_size = sd->symbols_size;
338 gc_sd->external_symbols_offset = sd->external_symbols_offset;
339 if (sd->symbol_names != NULL)
340 {
341 gc_sd->symbol_names_data =
2e702c99 342 new unsigned char[sd->symbol_names_size];
6d03d481 343 memcpy(gc_sd->symbol_names_data, sd->symbol_names->data(),
2e702c99 344 sd->symbol_names_size);
6d03d481
ST
345 }
346 else
347 {
348 gc_sd->symbol_names_data = NULL;
349 }
350 gc_sd->symbol_names_size = sd->symbol_names_size;
351}
352
353// This function determines if a particular section name must be included
354// in the link. This is used during garbage collection to determine the
355// roots of the worklist.
356
357bool
2ea97941 358Relobj::is_section_name_included(const char* name)
6d03d481 359{
2e702c99
RM
360 if (is_prefix_of(".ctors", name)
361 || is_prefix_of(".dtors", name)
362 || is_prefix_of(".note", name)
363 || is_prefix_of(".init", name)
364 || is_prefix_of(".fini", name)
365 || is_prefix_of(".gcc_except_table", name)
366 || is_prefix_of(".jcr", name)
367 || is_prefix_of(".preinit_array", name)
368 || (is_prefix_of(".text", name)
369 && strstr(name, "personality"))
370 || (is_prefix_of(".data", name)
1698990d
AM
371 && strstr(name, "personality"))
372 || (is_prefix_of(".sdata", name)
373 && strstr(name, "personality"))
fa618ee4 374 || (is_prefix_of(".gnu.linkonce.d", name)
5ad9b0a7
ST
375 && strstr(name, "personality"))
376 || (is_prefix_of(".rodata", name)
377 && strstr(name, "nptl_version")))
6d03d481 378 {
2e702c99 379 return true;
6d03d481
ST
380 }
381 return false;
382}
383
09ec0418
CC
384// Finalize the incremental relocation information. Allocates a block
385// of relocation entries for each symbol, and sets the reloc_bases_
cdc29364
CC
386// array to point to the first entry in each block. If CLEAR_COUNTS
387// is TRUE, also clear the per-symbol relocation counters.
09ec0418
CC
388
389void
cdc29364 390Relobj::finalize_incremental_relocs(Layout* layout, bool clear_counts)
09ec0418
CC
391{
392 unsigned int nsyms = this->get_global_symbols()->size();
393 this->reloc_bases_ = new unsigned int[nsyms];
394
395 gold_assert(this->reloc_bases_ != NULL);
396 gold_assert(layout->incremental_inputs() != NULL);
397
398 unsigned int rindex = layout->incremental_inputs()->get_reloc_count();
399 for (unsigned int i = 0; i < nsyms; ++i)
400 {
401 this->reloc_bases_[i] = rindex;
402 rindex += this->reloc_counts_[i];
cdc29364
CC
403 if (clear_counts)
404 this->reloc_counts_[i] = 0;
09ec0418
CC
405 }
406 layout->incremental_inputs()->set_reloc_count(rindex);
407}
408
0916f9e7
RÁE
409Object_merge_map*
410Relobj::get_or_create_merge_map()
411{
412 if (!this->object_merge_map_)
413 this->object_merge_map_ = new Object_merge_map();
414 return this->object_merge_map_;
415}
416
f6ce93d6 417// Class Sized_relobj.
bae7f79e 418
6fa2a40b
CC
419// Iterate over local symbols, calling a visitor class V for each GOT offset
420// associated with a local symbol.
421
bae7f79e 422template<int size, bool big_endian>
6fa2a40b
CC
423void
424Sized_relobj<size, big_endian>::do_for_all_local_got_entries(
425 Got_offset_list::Visitor* v) const
426{
427 unsigned int nsyms = this->local_symbol_count();
428 for (unsigned int i = 0; i < nsyms; i++)
429 {
7ef8ae7c
VR
430 Local_got_entry_key key(i, 0);
431 Local_got_offsets::const_iterator p = this->local_got_offsets_.find(key);
6fa2a40b
CC
432 if (p != this->local_got_offsets_.end())
433 {
434 const Got_offset_list* got_offsets = p->second;
435 got_offsets->for_all_got_offsets(v);
436 }
437 }
438}
439
c6905c28
CC
440// Get the address of an output section.
441
442template<int size, bool big_endian>
443uint64_t
444Sized_relobj<size, big_endian>::do_output_section_address(
445 unsigned int shndx)
446{
447 // If the input file is linked as --just-symbols, the output
448 // section address is the input section address.
449 if (this->just_symbols())
450 return this->section_address(shndx);
451
452 const Output_section* os = this->do_output_section(shndx);
453 gold_assert(os != NULL);
454 return os->address();
455}
456
6fa2a40b
CC
457// Class Sized_relobj_file.
458
459template<int size, bool big_endian>
460Sized_relobj_file<size, big_endian>::Sized_relobj_file(
2ea97941
ILT
461 const std::string& name,
462 Input_file* input_file,
463 off_t offset,
bae7f79e 464 const elfcpp::Ehdr<size, big_endian>& ehdr)
6fa2a40b 465 : Sized_relobj<size, big_endian>(name, input_file, offset),
645f8123 466 elf_file_(this, ehdr),
dbe717ef 467 symtab_shndx_(-1U),
61ba1cf9
ILT
468 local_symbol_count_(0),
469 output_local_symbol_count_(0),
7bf1f802 470 output_local_dynsym_count_(0),
730cdc88 471 symbols_(),
92de84a6 472 defined_count_(0),
61ba1cf9 473 local_symbol_offset_(0),
7bf1f802 474 local_dynsym_offset_(0),
e727fa71 475 local_values_(),
7223e9ca 476 local_plt_offsets_(),
ef9beddf 477 kept_comdat_sections_(),
805bb01c 478 has_eh_frame_(false),
a2e47362 479 discarded_eh_frame_shndx_(-1U),
c924eb67 480 is_deferred_layout_(false),
a2e47362 481 deferred_layout_(),
0d5bbdb0 482 deferred_layout_relocs_()
bae7f79e 483{
9590bf25 484 this->e_type_ = ehdr.get_e_type();
bae7f79e
ILT
485}
486
487template<int size, bool big_endian>
6fa2a40b 488Sized_relobj_file<size, big_endian>::~Sized_relobj_file()
bae7f79e
ILT
489{
490}
491
645f8123 492// Set up an object file based on the file header. This sets up the
029ba973 493// section information.
bae7f79e
ILT
494
495template<int size, bool big_endian>
496void
6fa2a40b 497Sized_relobj_file<size, big_endian>::do_setup()
bae7f79e 498{
2ea97941
ILT
499 const unsigned int shnum = this->elf_file_.shnum();
500 this->set_shnum(shnum);
dbe717ef 501}
12e14209 502
dbe717ef
ILT
503// Find the SHT_SYMTAB section, given the section headers. The ELF
504// standard says that maybe in the future there can be more than one
505// SHT_SYMTAB section. Until somebody figures out how that could
506// work, we assume there is only one.
12e14209 507
dbe717ef
ILT
508template<int size, bool big_endian>
509void
6fa2a40b 510Sized_relobj_file<size, big_endian>::find_symtab(const unsigned char* pshdrs)
dbe717ef 511{
2ea97941 512 const unsigned int shnum = this->shnum();
dbe717ef 513 this->symtab_shndx_ = 0;
2ea97941 514 if (shnum > 0)
bae7f79e 515 {
dbe717ef
ILT
516 // Look through the sections in reverse order, since gas tends
517 // to put the symbol table at the end.
2ea97941
ILT
518 const unsigned char* p = pshdrs + shnum * This::shdr_size;
519 unsigned int i = shnum;
d491d34e
ILT
520 unsigned int xindex_shndx = 0;
521 unsigned int xindex_link = 0;
dbe717ef 522 while (i > 0)
bae7f79e 523 {
dbe717ef
ILT
524 --i;
525 p -= This::shdr_size;
526 typename This::Shdr shdr(p);
527 if (shdr.get_sh_type() == elfcpp::SHT_SYMTAB)
528 {
529 this->symtab_shndx_ = i;
d491d34e
ILT
530 if (xindex_shndx > 0 && xindex_link == i)
531 {
532 Xindex* xindex =
533 new Xindex(this->elf_file_.large_shndx_offset());
534 xindex->read_symtab_xindex<size, big_endian>(this,
535 xindex_shndx,
536 pshdrs);
537 this->set_xindex(xindex);
538 }
dbe717ef
ILT
539 break;
540 }
d491d34e
ILT
541
542 // Try to pick up the SHT_SYMTAB_SHNDX section, if there is
543 // one. This will work if it follows the SHT_SYMTAB
544 // section.
545 if (shdr.get_sh_type() == elfcpp::SHT_SYMTAB_SHNDX)
546 {
547 xindex_shndx = i;
548 xindex_link = this->adjust_shndx(shdr.get_sh_link());
549 }
bae7f79e 550 }
bae7f79e
ILT
551 }
552}
553
d491d34e
ILT
554// Return the Xindex structure to use for object with lots of
555// sections.
556
557template<int size, bool big_endian>
558Xindex*
6fa2a40b 559Sized_relobj_file<size, big_endian>::do_initialize_xindex()
d491d34e
ILT
560{
561 gold_assert(this->symtab_shndx_ != -1U);
562 Xindex* xindex = new Xindex(this->elf_file_.large_shndx_offset());
563 xindex->initialize_symtab_xindex<size, big_endian>(this, this->symtab_shndx_);
564 return xindex;
565}
566
730cdc88
ILT
567// Return whether SHDR has the right type and flags to be a GNU
568// .eh_frame section.
569
570template<int size, bool big_endian>
571bool
6fa2a40b 572Sized_relobj_file<size, big_endian>::check_eh_frame_flags(
730cdc88
ILT
573 const elfcpp::Shdr<size, big_endian>* shdr) const
574{
4d5e4e62
ILT
575 elfcpp::Elf_Word sh_type = shdr->get_sh_type();
576 return ((sh_type == elfcpp::SHT_PROGBITS
577 || sh_type == elfcpp::SHT_X86_64_UNWIND)
1650c4ff 578 && (shdr->get_sh_flags() & elfcpp::SHF_ALLOC) != 0);
730cdc88
ILT
579}
580
cf43a2fe
AM
581// Find the section header with the given name.
582
583template<int size, bool big_endian>
584const unsigned char*
dc3714f3 585Object::find_shdr(
cf43a2fe
AM
586 const unsigned char* pshdrs,
587 const char* name,
588 const char* names,
589 section_size_type names_size,
590 const unsigned char* hdr) const
591{
dc3714f3 592 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
cf43a2fe 593 const unsigned int shnum = this->shnum();
dc3714f3 594 const unsigned char* hdr_end = pshdrs + shdr_size * shnum;
cf43a2fe
AM
595 size_t sh_name = 0;
596
597 while (1)
598 {
599 if (hdr)
600 {
601 // We found HDR last time we were called, continue looking.
dc3714f3 602 typename elfcpp::Shdr<size, big_endian> shdr(hdr);
cf43a2fe
AM
603 sh_name = shdr.get_sh_name();
604 }
605 else
606 {
607 // Look for the next occurrence of NAME in NAMES.
608 // The fact that .shstrtab produced by current GNU tools is
609 // string merged means we shouldn't have both .not.foo and
610 // .foo in .shstrtab, and multiple .foo sections should all
611 // have the same sh_name. However, this is not guaranteed
612 // by the ELF spec and not all ELF object file producers may
613 // be so clever.
614 size_t len = strlen(name) + 1;
615 const char *p = sh_name ? names + sh_name + len : names;
616 p = reinterpret_cast<const char*>(memmem(p, names_size - (p - names),
617 name, len));
618 if (p == NULL)
619 return NULL;
620 sh_name = p - names;
621 hdr = pshdrs;
622 if (sh_name == 0)
623 return hdr;
624 }
625
dc3714f3 626 hdr += shdr_size;
cf43a2fe
AM
627 while (hdr < hdr_end)
628 {
dc3714f3 629 typename elfcpp::Shdr<size, big_endian> shdr(hdr);
cf43a2fe
AM
630 if (shdr.get_sh_name() == sh_name)
631 return hdr;
dc3714f3 632 hdr += shdr_size;
cf43a2fe
AM
633 }
634 hdr = NULL;
635 if (sh_name == 0)
636 return hdr;
637 }
638}
639
730cdc88
ILT
640// Return whether there is a GNU .eh_frame section, given the section
641// headers and the section names.
642
643template<int size, bool big_endian>
644bool
6fa2a40b 645Sized_relobj_file<size, big_endian>::find_eh_frame(
8383303e
ILT
646 const unsigned char* pshdrs,
647 const char* names,
648 section_size_type names_size) const
730cdc88 649{
cf43a2fe
AM
650 const unsigned char* s = NULL;
651
652 while (1)
730cdc88 653 {
dc3714f3
AM
654 s = this->template find_shdr<size, big_endian>(pshdrs, ".eh_frame",
655 names, names_size, s);
cf43a2fe
AM
656 if (s == NULL)
657 return false;
730cdc88 658
cf43a2fe
AM
659 typename This::Shdr shdr(s);
660 if (this->check_eh_frame_flags(&shdr))
661 return true;
730cdc88 662 }
730cdc88
ILT
663}
664
5dd8762a 665// Return TRUE if this is a section whose contents will be needed in the
c1027032 666// Add_symbols task. This function is only called for sections that have
48058663
L
667// already passed the test in is_compressed_debug_section() and the debug
668// section name prefix, ".debug"/".zdebug", has been skipped.
5dd8762a
CC
669
670static bool
671need_decompressed_section(const char* name)
672{
c1027032
CC
673 if (*name++ != '_')
674 return false;
675
676#ifdef ENABLE_THREADS
677 // Decompressing these sections now will help only if we're
678 // multithreaded.
679 if (parameters->options().threads())
680 {
681 // We will need .zdebug_str if this is not an incremental link
682 // (i.e., we are processing string merge sections) or if we need
683 // to build a gdb index.
684 if ((!parameters->incremental() || parameters->options().gdb_index())
685 && strcmp(name, "str") == 0)
686 return true;
687
688 // We will need these other sections when building a gdb index.
689 if (parameters->options().gdb_index()
690 && (strcmp(name, "info") == 0
691 || strcmp(name, "types") == 0
692 || strcmp(name, "pubnames") == 0
693 || strcmp(name, "pubtypes") == 0
694 || strcmp(name, "ranges") == 0
695 || strcmp(name, "abbrev") == 0))
696 return true;
697 }
698#endif
699
700 // Even when single-threaded, we will need .zdebug_str if this is
701 // not an incremental link and we are building a gdb index.
702 // Otherwise, we would decompress the section twice: once for
703 // string merge processing, and once for building the gdb index.
704 if (!parameters->incremental()
705 && parameters->options().gdb_index()
706 && strcmp(name, "str") == 0)
5dd8762a
CC
707 return true;
708
709 return false;
710}
711
a2e47362 712// Build a table for any compressed debug sections, mapping each section index
5dd8762a 713// to the uncompressed size and (if needed) the decompressed contents.
a2e47362
CC
714
715template<int size, bool big_endian>
716Compressed_section_map*
717build_compressed_section_map(
718 const unsigned char* pshdrs,
719 unsigned int shnum,
720 const char* names,
721 section_size_type names_size,
0d5bbdb0
CC
722 Object* obj,
723 bool decompress_if_needed)
a2e47362 724{
5dd8762a 725 Compressed_section_map* uncompressed_map = new Compressed_section_map();
a2e47362
CC
726 const unsigned int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
727 const unsigned char* p = pshdrs + shdr_size;
5dd8762a 728
a2e47362
CC
729 for (unsigned int i = 1; i < shnum; ++i, p += shdr_size)
730 {
731 typename elfcpp::Shdr<size, big_endian> shdr(p);
732 if (shdr.get_sh_type() == elfcpp::SHT_PROGBITS
733 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
734 {
735 if (shdr.get_sh_name() >= names_size)
736 {
737 obj->error(_("bad section name offset for section %u: %lu"),
738 i, static_cast<unsigned long>(shdr.get_sh_name()));
739 continue;
740 }
741
742 const char* name = names + shdr.get_sh_name();
48058663
L
743 bool is_compressed = ((shdr.get_sh_flags()
744 & elfcpp::SHF_COMPRESSED) != 0);
745 bool is_zcompressed = (!is_compressed
746 && is_compressed_debug_section(name));
747
748 if (is_zcompressed || is_compressed)
a2e47362
CC
749 {
750 section_size_type len;
751 const unsigned char* contents =
752 obj->section_contents(i, &len, false);
48058663
L
753 uint64_t uncompressed_size;
754 if (is_zcompressed)
755 {
756 // Skip over the ".zdebug" prefix.
757 name += 7;
758 uncompressed_size = get_uncompressed_size(contents, len);
759 }
760 else
761 {
762 // Skip over the ".debug" prefix.
763 name += 6;
764 elfcpp::Chdr<size, big_endian> chdr(contents);
765 uncompressed_size = chdr.get_ch_size();
766 }
c1027032
CC
767 Compressed_section_info info;
768 info.size = convert_to_section_size_type(uncompressed_size);
48058663 769 info.flag = shdr.get_sh_flags();
c1027032 770 info.contents = NULL;
a2e47362 771 if (uncompressed_size != -1ULL)
5dd8762a 772 {
c1027032 773 unsigned char* uncompressed_data = NULL;
0d5bbdb0 774 if (decompress_if_needed && need_decompressed_section(name))
5dd8762a 775 {
c1027032
CC
776 uncompressed_data = new unsigned char[uncompressed_size];
777 if (decompress_input_section(contents, len,
778 uncompressed_data,
48058663
L
779 uncompressed_size,
780 size, big_endian,
781 shdr.get_sh_flags()))
c1027032
CC
782 info.contents = uncompressed_data;
783 else
784 delete[] uncompressed_data;
5dd8762a 785 }
5dd8762a
CC
786 (*uncompressed_map)[i] = info;
787 }
a2e47362
CC
788 }
789 }
790 }
5dd8762a 791 return uncompressed_map;
a2e47362
CC
792}
793
cf43a2fe
AM
794// Stash away info for a number of special sections.
795// Return true if any of the sections found require local symbols to be read.
796
797template<int size, bool big_endian>
798bool
799Sized_relobj_file<size, big_endian>::do_find_special_sections(
800 Read_symbols_data* sd)
801{
802 const unsigned char* const pshdrs = sd->section_headers->data();
803 const unsigned char* namesu = sd->section_names->data();
804 const char* names = reinterpret_cast<const char*>(namesu);
805
806 if (this->find_eh_frame(pshdrs, names, sd->section_names_size))
807 this->has_eh_frame_ = true;
808
48058663
L
809 Compressed_section_map* compressed_sections =
810 build_compressed_section_map<size, big_endian>(
811 pshdrs, this->shnum(), names, sd->section_names_size, this, true);
812 if (compressed_sections != NULL)
813 this->set_compressed_sections(compressed_sections);
0d5bbdb0 814
cf43a2fe
AM
815 return (this->has_eh_frame_
816 || (!parameters->options().relocatable()
817 && parameters->options().gdb_index()
818 && (memmem(names, sd->section_names_size, "debug_info", 12) == 0
819 || memmem(names, sd->section_names_size, "debug_types",
820 13) == 0)));
821}
822
12e14209 823// Read the sections and symbols from an object file.
bae7f79e
ILT
824
825template<int size, bool big_endian>
12e14209 826void
6fa2a40b 827Sized_relobj_file<size, big_endian>::do_read_symbols(Read_symbols_data* sd)
f35c4853
CC
828{
829 this->base_read_symbols(sd);
830}
831
832// Read the sections and symbols from an object file. This is common
833// code for all target-specific overrides of do_read_symbols().
834
835template<int size, bool big_endian>
836void
837Sized_relobj_file<size, big_endian>::base_read_symbols(Read_symbols_data* sd)
bae7f79e 838{
dbe717ef 839 this->read_section_data(&this->elf_file_, sd);
12e14209 840
dbe717ef
ILT
841 const unsigned char* const pshdrs = sd->section_headers->data();
842
843 this->find_symtab(pshdrs);
12e14209 844
cf43a2fe 845 bool need_local_symbols = this->do_find_special_sections(sd);
c1027032 846
75f2446e
ILT
847 sd->symbols = NULL;
848 sd->symbols_size = 0;
730cdc88 849 sd->external_symbols_offset = 0;
75f2446e
ILT
850 sd->symbol_names = NULL;
851 sd->symbol_names_size = 0;
852
645f8123 853 if (this->symtab_shndx_ == 0)
bae7f79e
ILT
854 {
855 // No symbol table. Weird but legal.
12e14209 856 return;
bae7f79e
ILT
857 }
858
12e14209
ILT
859 // Get the symbol table section header.
860 typename This::Shdr symtabshdr(pshdrs
645f8123 861 + this->symtab_shndx_ * This::shdr_size);
a3ad94ed 862 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
bae7f79e 863
c1027032
CC
864 // If this object has a .eh_frame section, or if building a .gdb_index
865 // section and there is debug info, we need all the symbols.
730cdc88
ILT
866 // Otherwise we only need the external symbols. While it would be
867 // simpler to just always read all the symbols, I've seen object
868 // files with well over 2000 local symbols, which for a 64-bit
869 // object file format is over 5 pages that we don't need to read
870 // now.
871
2ea97941 872 const int sym_size = This::sym_size;
92e059d8
ILT
873 const unsigned int loccount = symtabshdr.get_sh_info();
874 this->local_symbol_count_ = loccount;
7bf1f802 875 this->local_values_.resize(loccount);
2ea97941 876 section_offset_type locsize = loccount * sym_size;
730cdc88 877 off_t dataoff = symtabshdr.get_sh_offset();
8383303e
ILT
878 section_size_type datasize =
879 convert_to_section_size_type(symtabshdr.get_sh_size());
730cdc88 880 off_t extoff = dataoff + locsize;
8383303e 881 section_size_type extsize = datasize - locsize;
75f65a3e 882
c1027032
CC
883 off_t readoff = need_local_symbols ? dataoff : extoff;
884 section_size_type readsize = need_local_symbols ? datasize : extsize;
730cdc88 885
3f2e6a2d
CC
886 if (readsize == 0)
887 {
888 // No external symbols. Also weird but also legal.
889 return;
890 }
891
39d0cb0e 892 File_view* fvsymtab = this->get_lasting_view(readoff, readsize, true, false);
bae7f79e
ILT
893
894 // Read the section header for the symbol names.
d491d34e 895 unsigned int strtab_shndx = this->adjust_shndx(symtabshdr.get_sh_link());
dbe717ef 896 if (strtab_shndx >= this->shnum())
bae7f79e 897 {
75f2446e
ILT
898 this->error(_("invalid symbol table name index: %u"), strtab_shndx);
899 return;
bae7f79e 900 }
dbe717ef 901 typename This::Shdr strtabshdr(pshdrs + strtab_shndx * This::shdr_size);
bae7f79e
ILT
902 if (strtabshdr.get_sh_type() != elfcpp::SHT_STRTAB)
903 {
75f2446e
ILT
904 this->error(_("symbol table name section has wrong type: %u"),
905 static_cast<unsigned int>(strtabshdr.get_sh_type()));
906 return;
bae7f79e
ILT
907 }
908
909 // Read the symbol names.
910 File_view* fvstrtab = this->get_lasting_view(strtabshdr.get_sh_offset(),
39d0cb0e
ILT
911 strtabshdr.get_sh_size(),
912 false, true);
bae7f79e 913
12e14209 914 sd->symbols = fvsymtab;
730cdc88 915 sd->symbols_size = readsize;
c1027032 916 sd->external_symbols_offset = need_local_symbols ? locsize : 0;
12e14209 917 sd->symbol_names = fvstrtab;
8383303e
ILT
918 sd->symbol_names_size =
919 convert_to_section_size_type(strtabshdr.get_sh_size());
a2fb1b05
ILT
920}
921
730cdc88 922// Return the section index of symbol SYM. Set *VALUE to its value in
d491d34e 923// the object file. Set *IS_ORDINARY if this is an ordinary section
9b547ce6 924// index, not a special code between SHN_LORESERVE and SHN_HIRESERVE.
d491d34e
ILT
925// Note that for a symbol which is not defined in this object file,
926// this will set *VALUE to 0 and return SHN_UNDEF; it will not return
927// the final value of the symbol in the link.
730cdc88
ILT
928
929template<int size, bool big_endian>
930unsigned int
6fa2a40b
CC
931Sized_relobj_file<size, big_endian>::symbol_section_and_value(unsigned int sym,
932 Address* value,
933 bool* is_ordinary)
730cdc88 934{
8383303e 935 section_size_type symbols_size;
730cdc88
ILT
936 const unsigned char* symbols = this->section_contents(this->symtab_shndx_,
937 &symbols_size,
938 false);
939
940 const size_t count = symbols_size / This::sym_size;
941 gold_assert(sym < count);
942
943 elfcpp::Sym<size, big_endian> elfsym(symbols + sym * This::sym_size);
944 *value = elfsym.get_st_value();
d491d34e
ILT
945
946 return this->adjust_sym_shndx(sym, elfsym.get_st_shndx(), is_ordinary);
730cdc88
ILT
947}
948
a2fb1b05
ILT
949// Return whether to include a section group in the link. LAYOUT is
950// used to keep track of which section groups we have already seen.
951// INDEX is the index of the section group and SHDR is the section
952// header. If we do not want to include this group, we set bits in
953// OMIT for each section which should be discarded.
954
955template<int size, bool big_endian>
956bool
6fa2a40b 957Sized_relobj_file<size, big_endian>::include_section_group(
6a74a719 958 Symbol_table* symtab,
2ea97941 959 Layout* layout,
a2fb1b05 960 unsigned int index,
2ea97941 961 const char* name,
e94cf127
CC
962 const unsigned char* shdrs,
963 const char* section_names,
964 section_size_type section_names_size,
a2fb1b05
ILT
965 std::vector<bool>* omit)
966{
967 // Read the section contents.
e94cf127 968 typename This::Shdr shdr(shdrs + index * This::shdr_size);
a2fb1b05 969 const unsigned char* pcon = this->get_view(shdr.get_sh_offset(),
39d0cb0e 970 shdr.get_sh_size(), true, false);
a2fb1b05
ILT
971 const elfcpp::Elf_Word* pword =
972 reinterpret_cast<const elfcpp::Elf_Word*>(pcon);
973
974 // The first word contains flags. We only care about COMDAT section
975 // groups. Other section groups are always included in the link
976 // just like ordinary sections.
f6ce93d6 977 elfcpp::Elf_Word flags = elfcpp::Swap<32, big_endian>::readval(pword);
a2fb1b05 978
41f9cbbe
ILT
979 // Look up the group signature, which is the name of a symbol. ELF
980 // uses a symbol name because some group signatures are long, and
981 // the name is generally already in the symbol table, so it makes
982 // sense to put the long string just once in .strtab rather than in
983 // both .strtab and .shstrtab.
a2fb1b05
ILT
984
985 // Get the appropriate symbol table header (this will normally be
986 // the single SHT_SYMTAB section, but in principle it need not be).
d491d34e 987 const unsigned int link = this->adjust_shndx(shdr.get_sh_link());
645f8123 988 typename This::Shdr symshdr(this, this->elf_file_.section_header(link));
a2fb1b05
ILT
989
990 // Read the symbol table entry.
d491d34e
ILT
991 unsigned int symndx = shdr.get_sh_info();
992 if (symndx >= symshdr.get_sh_size() / This::sym_size)
a2fb1b05 993 {
75f2446e 994 this->error(_("section group %u info %u out of range"),
d491d34e 995 index, symndx);
75f2446e 996 return false;
a2fb1b05 997 }
d491d34e 998 off_t symoff = symshdr.get_sh_offset() + symndx * This::sym_size;
39d0cb0e
ILT
999 const unsigned char* psym = this->get_view(symoff, This::sym_size, true,
1000 false);
a2fb1b05
ILT
1001 elfcpp::Sym<size, big_endian> sym(psym);
1002
a2fb1b05 1003 // Read the symbol table names.
8383303e 1004 section_size_type symnamelen;
645f8123 1005 const unsigned char* psymnamesu;
d491d34e
ILT
1006 psymnamesu = this->section_contents(this->adjust_shndx(symshdr.get_sh_link()),
1007 &symnamelen, true);
a2fb1b05
ILT
1008 const char* psymnames = reinterpret_cast<const char*>(psymnamesu);
1009
1010 // Get the section group signature.
645f8123 1011 if (sym.get_st_name() >= symnamelen)
a2fb1b05 1012 {
75f2446e 1013 this->error(_("symbol %u name offset %u out of range"),
d491d34e 1014 symndx, sym.get_st_name());
75f2446e 1015 return false;
a2fb1b05
ILT
1016 }
1017
e94cf127 1018 std::string signature(psymnames + sym.get_st_name());
a2fb1b05 1019
ead1e424
ILT
1020 // It seems that some versions of gas will create a section group
1021 // associated with a section symbol, and then fail to give a name to
1022 // the section symbol. In such a case, use the name of the section.
645f8123 1023 if (signature[0] == '\0' && sym.get_st_type() == elfcpp::STT_SECTION)
ead1e424 1024 {
d491d34e
ILT
1025 bool is_ordinary;
1026 unsigned int sym_shndx = this->adjust_sym_shndx(symndx,
1027 sym.get_st_shndx(),
1028 &is_ordinary);
1029 if (!is_ordinary || sym_shndx >= this->shnum())
1030 {
1031 this->error(_("symbol %u invalid section index %u"),
1032 symndx, sym_shndx);
1033 return false;
1034 }
e94cf127
CC
1035 typename This::Shdr member_shdr(shdrs + sym_shndx * This::shdr_size);
1036 if (member_shdr.get_sh_name() < section_names_size)
2e702c99 1037 signature = section_names + member_shdr.get_sh_name();
ead1e424
ILT
1038 }
1039
e94cf127
CC
1040 // Record this section group in the layout, and see whether we've already
1041 // seen one with the same signature.
8a4c0b0d 1042 bool include_group;
1ef4d87f
ILT
1043 bool is_comdat;
1044 Kept_section* kept_section = NULL;
6a74a719 1045
8a4c0b0d 1046 if ((flags & elfcpp::GRP_COMDAT) == 0)
1ef4d87f
ILT
1047 {
1048 include_group = true;
1049 is_comdat = false;
1050 }
8a4c0b0d 1051 else
e94cf127 1052 {
2ea97941
ILT
1053 include_group = layout->find_or_add_kept_section(signature,
1054 this, index, true,
1055 true, &kept_section);
1ef4d87f 1056 is_comdat = true;
6a74a719 1057 }
a2fb1b05 1058
89d8a36b
CC
1059 if (is_comdat && include_group)
1060 {
1061 Incremental_inputs* incremental_inputs = layout->incremental_inputs();
1062 if (incremental_inputs != NULL)
1063 incremental_inputs->report_comdat_group(this, signature.c_str());
1064 }
1065
a2fb1b05 1066 size_t count = shdr.get_sh_size() / sizeof(elfcpp::Elf_Word);
8825ac63
ILT
1067
1068 std::vector<unsigned int> shndxes;
1069 bool relocate_group = include_group && parameters->options().relocatable();
1070 if (relocate_group)
1071 shndxes.reserve(count - 1);
1072
a2fb1b05
ILT
1073 for (size_t i = 1; i < count; ++i)
1074 {
1ef4d87f 1075 elfcpp::Elf_Word shndx =
8825ac63
ILT
1076 this->adjust_shndx(elfcpp::Swap<32, big_endian>::readval(pword + i));
1077
1078 if (relocate_group)
1ef4d87f 1079 shndxes.push_back(shndx);
8825ac63 1080
1ef4d87f 1081 if (shndx >= this->shnum())
a2fb1b05 1082 {
75f2446e 1083 this->error(_("section %u in section group %u out of range"),
1ef4d87f 1084 shndx, index);
75f2446e 1085 continue;
a2fb1b05 1086 }
55438702
ILT
1087
1088 // Check for an earlier section number, since we're going to get
1089 // it wrong--we may have already decided to include the section.
1ef4d87f 1090 if (shndx < index)
2e702c99
RM
1091 this->error(_("invalid section group %u refers to earlier section %u"),
1092 index, shndx);
55438702 1093
e94cf127 1094 // Get the name of the member section.
1ef4d87f 1095 typename This::Shdr member_shdr(shdrs + shndx * This::shdr_size);
e94cf127 1096 if (member_shdr.get_sh_name() >= section_names_size)
2e702c99
RM
1097 {
1098 // This is an error, but it will be diagnosed eventually
1099 // in do_layout, so we don't need to do anything here but
1100 // ignore it.
1101 continue;
1102 }
e94cf127
CC
1103 std::string mname(section_names + member_shdr.get_sh_name());
1104
1ef4d87f
ILT
1105 if (include_group)
1106 {
1107 if (is_comdat)
1108 kept_section->add_comdat_section(mname, shndx,
1109 member_shdr.get_sh_size());
1110 }
1111 else
2e702c99
RM
1112 {
1113 (*omit)[shndx] = true;
1ef4d87f
ILT
1114
1115 if (is_comdat)
2e702c99 1116 {
1ef4d87f
ILT
1117 Relobj* kept_object = kept_section->object();
1118 if (kept_section->is_comdat())
1119 {
1120 // Find the corresponding kept section, and store
1121 // that info in the discarded section table.
1122 unsigned int kept_shndx;
1123 uint64_t kept_size;
1124 if (kept_section->find_comdat_section(mname, &kept_shndx,
1125 &kept_size))
1126 {
1127 // We don't keep a mapping for this section if
1128 // it has a different size. The mapping is only
1129 // used for relocation processing, and we don't
1130 // want to treat the sections as similar if the
1131 // sizes are different. Checking the section
1132 // size is the approach used by the GNU linker.
1133 if (kept_size == member_shdr.get_sh_size())
1134 this->set_kept_comdat_section(shndx, kept_object,
1135 kept_shndx);
1136 }
1137 }
1138 else
1139 {
1140 // The existing section is a linkonce section. Add
1141 // a mapping if there is exactly one section in the
1142 // group (which is true when COUNT == 2) and if it
1143 // is the same size.
1144 if (count == 2
1145 && (kept_section->linkonce_size()
1146 == member_shdr.get_sh_size()))
1147 this->set_kept_comdat_section(shndx, kept_object,
1148 kept_section->shndx());
1149 }
2e702c99
RM
1150 }
1151 }
a2fb1b05
ILT
1152 }
1153
8825ac63 1154 if (relocate_group)
2ea97941
ILT
1155 layout->layout_group(symtab, this, index, name, signature.c_str(),
1156 shdr, flags, &shndxes);
8825ac63 1157
e94cf127 1158 return include_group;
a2fb1b05
ILT
1159}
1160
1161// Whether to include a linkonce section in the link. NAME is the
1162// name of the section and SHDR is the section header.
1163
1164// Linkonce sections are a GNU extension implemented in the original
1165// GNU linker before section groups were defined. The semantics are
1166// that we only include one linkonce section with a given name. The
1167// name of a linkonce section is normally .gnu.linkonce.T.SYMNAME,
1168// where T is the type of section and SYMNAME is the name of a symbol.
1169// In an attempt to make linkonce sections interact well with section
1170// groups, we try to identify SYMNAME and use it like a section group
1171// signature. We want to block section groups with that signature,
1172// but not other linkonce sections with that signature. We also use
1173// the full name of the linkonce section as a normal section group
1174// signature.
1175
1176template<int size, bool big_endian>
1177bool
6fa2a40b 1178Sized_relobj_file<size, big_endian>::include_linkonce_section(
2ea97941 1179 Layout* layout,
e94cf127 1180 unsigned int index,
2ea97941 1181 const char* name,
1ef4d87f 1182 const elfcpp::Shdr<size, big_endian>& shdr)
a2fb1b05 1183{
1ef4d87f 1184 typename elfcpp::Elf_types<size>::Elf_WXword sh_size = shdr.get_sh_size();
ad435a24
ILT
1185 // In general the symbol name we want will be the string following
1186 // the last '.'. However, we have to handle the case of
1187 // .gnu.linkonce.t.__i686.get_pc_thunk.bx, which was generated by
1188 // some versions of gcc. So we use a heuristic: if the name starts
1189 // with ".gnu.linkonce.t.", we use everything after that. Otherwise
1190 // we look for the last '.'. We can't always simply skip
1191 // ".gnu.linkonce.X", because we have to deal with cases like
1192 // ".gnu.linkonce.d.rel.ro.local".
1193 const char* const linkonce_t = ".gnu.linkonce.t.";
1194 const char* symname;
2ea97941
ILT
1195 if (strncmp(name, linkonce_t, strlen(linkonce_t)) == 0)
1196 symname = name + strlen(linkonce_t);
ad435a24 1197 else
2ea97941 1198 symname = strrchr(name, '.') + 1;
e94cf127 1199 std::string sig1(symname);
2ea97941 1200 std::string sig2(name);
8a4c0b0d
ILT
1201 Kept_section* kept1;
1202 Kept_section* kept2;
2ea97941
ILT
1203 bool include1 = layout->find_or_add_kept_section(sig1, this, index, false,
1204 false, &kept1);
1205 bool include2 = layout->find_or_add_kept_section(sig2, this, index, false,
1206 true, &kept2);
e94cf127
CC
1207
1208 if (!include2)
1209 {
1ef4d87f
ILT
1210 // We are not including this section because we already saw the
1211 // name of the section as a signature. This normally implies
1212 // that the kept section is another linkonce section. If it is
1213 // the same size, record it as the section which corresponds to
1214 // this one.
1215 if (kept2->object() != NULL
1216 && !kept2->is_comdat()
1217 && kept2->linkonce_size() == sh_size)
1218 this->set_kept_comdat_section(index, kept2->object(), kept2->shndx());
e94cf127
CC
1219 }
1220 else if (!include1)
1221 {
1222 // The section is being discarded on the basis of its symbol
1223 // name. This means that the corresponding kept section was
1224 // part of a comdat group, and it will be difficult to identify
1225 // the specific section within that group that corresponds to
1226 // this linkonce section. We'll handle the simple case where
1227 // the group has only one member section. Otherwise, it's not
1228 // worth the effort.
1ef4d87f
ILT
1229 unsigned int kept_shndx;
1230 uint64_t kept_size;
1231 if (kept1->object() != NULL
1232 && kept1->is_comdat()
1233 && kept1->find_single_comdat_section(&kept_shndx, &kept_size)
1234 && kept_size == sh_size)
1235 this->set_kept_comdat_section(index, kept1->object(), kept_shndx);
1236 }
1237 else
1238 {
1239 kept1->set_linkonce_size(sh_size);
1240 kept2->set_linkonce_size(sh_size);
e94cf127
CC
1241 }
1242
a783673b 1243 return include1 && include2;
a2fb1b05
ILT
1244}
1245
5995b570
CC
1246// Layout an input section.
1247
1248template<int size, bool big_endian>
1249inline void
14788a3f
ILT
1250Sized_relobj_file<size, big_endian>::layout_section(
1251 Layout* layout,
1252 unsigned int shndx,
1253 const char* name,
1254 const typename This::Shdr& shdr,
1255 unsigned int reloc_shndx,
1256 unsigned int reloc_type)
5995b570 1257{
2ea97941
ILT
1258 off_t offset;
1259 Output_section* os = layout->layout(this, shndx, name, shdr,
1260 reloc_shndx, reloc_type, &offset);
5995b570
CC
1261
1262 this->output_sections()[shndx] = os;
2ea97941 1263 if (offset == -1)
6fa2a40b 1264 this->section_offsets()[shndx] = invalid_address;
5995b570 1265 else
6fa2a40b 1266 this->section_offsets()[shndx] = convert_types<Address, off_t>(offset);
5995b570
CC
1267
1268 // If this section requires special handling, and if there are
1269 // relocs that apply to it, then we must do the special handling
1270 // before we apply the relocs.
2ea97941 1271 if (offset == -1 && reloc_shndx != 0)
5995b570
CC
1272 this->set_relocs_must_follow_section_writes();
1273}
1274
14788a3f
ILT
1275// Layout an input .eh_frame section.
1276
1277template<int size, bool big_endian>
1278void
1279Sized_relobj_file<size, big_endian>::layout_eh_frame_section(
1280 Layout* layout,
1281 const unsigned char* symbols_data,
1282 section_size_type symbols_size,
1283 const unsigned char* symbol_names_data,
1284 section_size_type symbol_names_size,
1285 unsigned int shndx,
1286 const typename This::Shdr& shdr,
1287 unsigned int reloc_shndx,
1288 unsigned int reloc_type)
1289{
1290 gold_assert(this->has_eh_frame_);
1291
1292 off_t offset;
1293 Output_section* os = layout->layout_eh_frame(this,
1294 symbols_data,
1295 symbols_size,
1296 symbol_names_data,
1297 symbol_names_size,
1298 shndx,
1299 shdr,
1300 reloc_shndx,
1301 reloc_type,
1302 &offset);
1303 this->output_sections()[shndx] = os;
1304 if (os == NULL || offset == -1)
1305 {
1306 // An object can contain at most one section holding exception
1307 // frame information.
1308 gold_assert(this->discarded_eh_frame_shndx_ == -1U);
1309 this->discarded_eh_frame_shndx_ = shndx;
1310 this->section_offsets()[shndx] = invalid_address;
1311 }
1312 else
1313 this->section_offsets()[shndx] = convert_types<Address, off_t>(offset);
1314
1315 // If this section requires special handling, and if there are
1316 // relocs that aply to it, then we must do the special handling
1317 // before we apply the relocs.
1318 if (os != NULL && offset == -1 && reloc_shndx != 0)
1319 this->set_relocs_must_follow_section_writes();
1320}
1321
a2fb1b05
ILT
1322// Lay out the input sections. We walk through the sections and check
1323// whether they should be included in the link. If they should, we
1324// pass them to the Layout object, which will return an output section
2e702c99 1325// and an offset.
16164a6b
ST
1326// This function is called twice sometimes, two passes, when mapping
1327// of input sections to output sections must be delayed.
1328// This is true for the following :
1329// * Garbage collection (--gc-sections): Some input sections will be
1330// discarded and hence the assignment must wait until the second pass.
1331// In the first pass, it is for setting up some sections as roots to
1332// a work-list for --gc-sections and to do comdat processing.
1333// * Identical Code Folding (--icf=<safe,all>): Some input sections
1334// will be folded and hence the assignment must wait.
1335// * Using plugins to map some sections to unique segments: Mapping
1336// some sections to unique segments requires mapping them to unique
1337// output sections too. This can be done via plugins now and this
1338// information is not available in the first pass.
a2fb1b05
ILT
1339
1340template<int size, bool big_endian>
1341void
6fa2a40b
CC
1342Sized_relobj_file<size, big_endian>::do_layout(Symbol_table* symtab,
1343 Layout* layout,
1344 Read_symbols_data* sd)
a2fb1b05 1345{
2ea97941 1346 const unsigned int shnum = this->shnum();
2e702c99 1347
16164a6b
ST
1348 /* Should this function be called twice? */
1349 bool is_two_pass = (parameters->options().gc_sections()
1350 || parameters->options().icf_enabled()
1351 || layout->is_unique_segment_for_sections_specified());
ef15dade 1352
16164a6b
ST
1353 /* Only one of is_pass_one and is_pass_two is true. Both are false when
1354 a two-pass approach is not needed. */
1355 bool is_pass_one = false;
1356 bool is_pass_two = false;
ef15dade 1357
16164a6b 1358 Symbols_data* gc_sd = NULL;
ef15dade 1359
16164a6b
ST
1360 /* Check if do_layout needs to be two-pass. If so, find out which pass
1361 should happen. In the first pass, the data in sd is saved to be used
1362 later in the second pass. */
1363 if (is_two_pass)
1364 {
1365 gc_sd = this->get_symbols_data();
1366 if (gc_sd == NULL)
1367 {
1368 gold_assert(sd != NULL);
1369 is_pass_one = true;
1370 }
1371 else
1372 {
1373 if (parameters->options().gc_sections())
1374 gold_assert(symtab->gc()->is_worklist_ready());
1375 if (parameters->options().icf_enabled())
1376 gold_assert(symtab->icf()->is_icf_ready());
1377 is_pass_two = true;
1378 }
1379 }
1380
2ea97941 1381 if (shnum == 0)
12e14209 1382 return;
16164a6b
ST
1383
1384 if (is_pass_one)
6d03d481 1385 {
2e702c99
RM
1386 // During garbage collection save the symbols data to use it when
1387 // re-entering this function.
6d03d481 1388 gc_sd = new Symbols_data;
2ea97941 1389 this->copy_symbols_data(gc_sd, sd, This::shdr_size * shnum);
6d03d481
ST
1390 this->set_symbols_data(gc_sd);
1391 }
6d03d481
ST
1392
1393 const unsigned char* section_headers_data = NULL;
1394 section_size_type section_names_size;
1395 const unsigned char* symbols_data = NULL;
1396 section_size_type symbols_size;
6d03d481
ST
1397 const unsigned char* symbol_names_data = NULL;
1398 section_size_type symbol_names_size;
2e702c99 1399
16164a6b 1400 if (is_two_pass)
6d03d481
ST
1401 {
1402 section_headers_data = gc_sd->section_headers_data;
1403 section_names_size = gc_sd->section_names_size;
1404 symbols_data = gc_sd->symbols_data;
1405 symbols_size = gc_sd->symbols_size;
6d03d481
ST
1406 symbol_names_data = gc_sd->symbol_names_data;
1407 symbol_names_size = gc_sd->symbol_names_size;
1408 }
1409 else
1410 {
1411 section_headers_data = sd->section_headers->data();
1412 section_names_size = sd->section_names_size;
1413 if (sd->symbols != NULL)
2e702c99 1414 symbols_data = sd->symbols->data();
6d03d481 1415 symbols_size = sd->symbols_size;
6d03d481 1416 if (sd->symbol_names != NULL)
2e702c99 1417 symbol_names_data = sd->symbol_names->data();
6d03d481
ST
1418 symbol_names_size = sd->symbol_names_size;
1419 }
a2fb1b05
ILT
1420
1421 // Get the section headers.
6d03d481 1422 const unsigned char* shdrs = section_headers_data;
e94cf127 1423 const unsigned char* pshdrs;
a2fb1b05
ILT
1424
1425 // Get the section names.
16164a6b
ST
1426 const unsigned char* pnamesu = (is_two_pass
1427 ? gc_sd->section_names_data
1428 : sd->section_names->data());
ef15dade 1429
a2fb1b05
ILT
1430 const char* pnames = reinterpret_cast<const char*>(pnamesu);
1431
5995b570
CC
1432 // If any input files have been claimed by plugins, we need to defer
1433 // actual layout until the replacement files have arrived.
1434 const bool should_defer_layout =
1435 (parameters->options().has_plugins()
1436 && parameters->options().plugins()->should_defer_layout());
1437 unsigned int num_sections_to_defer = 0;
1438
730cdc88
ILT
1439 // For each section, record the index of the reloc section if any.
1440 // Use 0 to mean that there is no reloc section, -1U to mean that
1441 // there is more than one.
2ea97941
ILT
1442 std::vector<unsigned int> reloc_shndx(shnum, 0);
1443 std::vector<unsigned int> reloc_type(shnum, elfcpp::SHT_NULL);
730cdc88 1444 // Skip the first, dummy, section.
e94cf127 1445 pshdrs = shdrs + This::shdr_size;
2ea97941 1446 for (unsigned int i = 1; i < shnum; ++i, pshdrs += This::shdr_size)
730cdc88
ILT
1447 {
1448 typename This::Shdr shdr(pshdrs);
1449
5995b570
CC
1450 // Count the number of sections whose layout will be deferred.
1451 if (should_defer_layout && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
2e702c99 1452 ++num_sections_to_defer;
5995b570 1453
730cdc88
ILT
1454 unsigned int sh_type = shdr.get_sh_type();
1455 if (sh_type == elfcpp::SHT_REL || sh_type == elfcpp::SHT_RELA)
1456 {
d491d34e 1457 unsigned int target_shndx = this->adjust_shndx(shdr.get_sh_info());
2ea97941 1458 if (target_shndx == 0 || target_shndx >= shnum)
730cdc88
ILT
1459 {
1460 this->error(_("relocation section %u has bad info %u"),
1461 i, target_shndx);
1462 continue;
1463 }
1464
1465 if (reloc_shndx[target_shndx] != 0)
1466 reloc_shndx[target_shndx] = -1U;
1467 else
1468 {
1469 reloc_shndx[target_shndx] = i;
1470 reloc_type[target_shndx] = sh_type;
1471 }
1472 }
1473 }
1474
ef9beddf 1475 Output_sections& out_sections(this->output_sections());
6fa2a40b 1476 std::vector<Address>& out_section_offsets(this->section_offsets());
ef9beddf 1477
16164a6b 1478 if (!is_pass_two)
6d03d481 1479 {
2ea97941
ILT
1480 out_sections.resize(shnum);
1481 out_section_offsets.resize(shnum);
6d03d481 1482 }
a2fb1b05 1483
88dd47ac
ILT
1484 // If we are only linking for symbols, then there is nothing else to
1485 // do here.
1486 if (this->input_file()->just_symbols())
1487 {
16164a6b 1488 if (!is_pass_two)
2e702c99
RM
1489 {
1490 delete sd->section_headers;
1491 sd->section_headers = NULL;
1492 delete sd->section_names;
1493 sd->section_names = NULL;
1494 }
88dd47ac
ILT
1495 return;
1496 }
1497
5995b570
CC
1498 if (num_sections_to_defer > 0)
1499 {
1500 parameters->options().plugins()->add_deferred_layout_object(this);
1501 this->deferred_layout_.reserve(num_sections_to_defer);
c924eb67 1502 this->is_deferred_layout_ = true;
5995b570
CC
1503 }
1504
35cdfc9a
ILT
1505 // Whether we've seen a .note.GNU-stack section.
1506 bool seen_gnu_stack = false;
1507 // The flags of a .note.GNU-stack section.
1508 uint64_t gnu_stack_flags = 0;
1509
a2fb1b05 1510 // Keep track of which sections to omit.
2ea97941 1511 std::vector<bool> omit(shnum, false);
a2fb1b05 1512
7019cd25 1513 // Keep track of reloc sections when emitting relocations.
8851ecca 1514 const bool relocatable = parameters->options().relocatable();
2ea97941
ILT
1515 const bool emit_relocs = (relocatable
1516 || parameters->options().emit_relocs());
6a74a719
ILT
1517 std::vector<unsigned int> reloc_sections;
1518
730cdc88
ILT
1519 // Keep track of .eh_frame sections.
1520 std::vector<unsigned int> eh_frame_sections;
1521
c1027032
CC
1522 // Keep track of .debug_info and .debug_types sections.
1523 std::vector<unsigned int> debug_info_sections;
1524 std::vector<unsigned int> debug_types_sections;
1525
f6ce93d6 1526 // Skip the first, dummy, section.
e94cf127 1527 pshdrs = shdrs + This::shdr_size;
2ea97941 1528 for (unsigned int i = 1; i < shnum; ++i, pshdrs += This::shdr_size)
a2fb1b05 1529 {
75f65a3e 1530 typename This::Shdr shdr(pshdrs);
a2fb1b05 1531
6d03d481 1532 if (shdr.get_sh_name() >= section_names_size)
a2fb1b05 1533 {
75f2446e
ILT
1534 this->error(_("bad section name offset for section %u: %lu"),
1535 i, static_cast<unsigned long>(shdr.get_sh_name()));
1536 return;
a2fb1b05
ILT
1537 }
1538
2ea97941 1539 const char* name = pnames + shdr.get_sh_name();
a2fb1b05 1540
16164a6b 1541 if (!is_pass_two)
2e702c99
RM
1542 {
1543 if (this->handle_gnu_warning_section(name, i, symtab))
1544 {
1545 if (!relocatable && !parameters->options().shared())
1546 omit[i] = true;
6d03d481 1547 }
f6ce93d6 1548
2e702c99
RM
1549 // The .note.GNU-stack section is special. It gives the
1550 // protection flags that this object file requires for the stack
1551 // in memory.
1552 if (strcmp(name, ".note.GNU-stack") == 0)
1553 {
6d03d481
ST
1554 seen_gnu_stack = true;
1555 gnu_stack_flags |= shdr.get_sh_flags();
1556 omit[i] = true;
2e702c99 1557 }
35cdfc9a 1558
364c7fa5
ILT
1559 // The .note.GNU-split-stack section is also special. It
1560 // indicates that the object was compiled with
1561 // -fsplit-stack.
2ea97941 1562 if (this->handle_split_stack_section(name))
364c7fa5 1563 {
e588ea8d 1564 if (!relocatable && !parameters->options().shared())
364c7fa5
ILT
1565 omit[i] = true;
1566 }
1567
05a352e6 1568 // Skip attributes section.
2ea97941 1569 if (parameters->target().is_attributes_section(name))
05a352e6
DK
1570 {
1571 omit[i] = true;
1572 }
1573
2e702c99
RM
1574 bool discard = omit[i];
1575 if (!discard)
1576 {
6d03d481 1577 if (shdr.get_sh_type() == elfcpp::SHT_GROUP)
2e702c99
RM
1578 {
1579 if (!this->include_section_group(symtab, layout, i, name,
1580 shdrs, pnames,
1581 section_names_size,
1582 &omit))
1583 discard = true;
1584 }
1585 else if ((shdr.get_sh_flags() & elfcpp::SHF_GROUP) == 0
1586 && Layout::is_linkonce(name))
1587 {
1588 if (!this->include_linkonce_section(layout, i, name, shdr))
6d03d481 1589 discard = true;
2e702c99 1590 }
a2fb1b05 1591 }
a2fb1b05 1592
09ec0418
CC
1593 // Add the section to the incremental inputs layout.
1594 Incremental_inputs* incremental_inputs = layout->incremental_inputs();
cdc29364
CC
1595 if (incremental_inputs != NULL
1596 && !discard
aa06ae28 1597 && can_incremental_update(shdr.get_sh_type()))
4fb3a1c3
CC
1598 {
1599 off_t sh_size = shdr.get_sh_size();
1600 section_size_type uncompressed_size;
1601 if (this->section_is_compressed(i, &uncompressed_size))
1602 sh_size = uncompressed_size;
1603 incremental_inputs->report_input_section(this, i, name, sh_size);
1604 }
09ec0418 1605
2e702c99
RM
1606 if (discard)
1607 {
6d03d481
ST
1608 // Do not include this section in the link.
1609 out_sections[i] = NULL;
2e702c99 1610 out_section_offsets[i] = invalid_address;
6d03d481 1611 continue;
2e702c99
RM
1612 }
1613 }
1614
16164a6b 1615 if (is_pass_one && parameters->options().gc_sections())
2e702c99
RM
1616 {
1617 if (this->is_section_name_included(name)
b9b2ae8b 1618 || layout->keep_input_section (this, name)
2e702c99
RM
1619 || shdr.get_sh_type() == elfcpp::SHT_INIT_ARRAY
1620 || shdr.get_sh_type() == elfcpp::SHT_FINI_ARRAY)
1621 {
4277535c 1622 symtab->gc()->worklist().push_back(Section_id(this, i));
2e702c99
RM
1623 }
1624 // If the section name XXX can be represented as a C identifier
1625 // it cannot be discarded if there are references to
1626 // __start_XXX and __stop_XXX symbols. These need to be
1627 // specially handled.
1628 if (is_cident(name))
1629 {
1630 symtab->gc()->add_cident_section(name, Section_id(this, i));
1631 }
1632 }
a2fb1b05 1633
6a74a719
ILT
1634 // When doing a relocatable link we are going to copy input
1635 // reloc sections into the output. We only want to copy the
1636 // ones associated with sections which are not being discarded.
1637 // However, we don't know that yet for all sections. So save
6d03d481
ST
1638 // reloc sections and process them later. Garbage collection is
1639 // not triggered when relocatable code is desired.
2ea97941 1640 if (emit_relocs
6a74a719
ILT
1641 && (shdr.get_sh_type() == elfcpp::SHT_REL
1642 || shdr.get_sh_type() == elfcpp::SHT_RELA))
1643 {
1644 reloc_sections.push_back(i);
1645 continue;
1646 }
1647
8851ecca 1648 if (relocatable && shdr.get_sh_type() == elfcpp::SHT_GROUP)
6a74a719
ILT
1649 continue;
1650
730cdc88
ILT
1651 // The .eh_frame section is special. It holds exception frame
1652 // information that we need to read in order to generate the
1653 // exception frame header. We process these after all the other
1654 // sections so that the exception frame reader can reliably
1655 // determine which sections are being discarded, and discard the
1656 // corresponding information.
8851ecca 1657 if (!relocatable
2e702c99
RM
1658 && strcmp(name, ".eh_frame") == 0
1659 && this->check_eh_frame_flags(&shdr))
1660 {
16164a6b 1661 if (is_pass_one)
2e702c99 1662 {
c924eb67
CC
1663 if (this->is_deferred_layout())
1664 out_sections[i] = reinterpret_cast<Output_section*>(2);
1665 else
1666 out_sections[i] = reinterpret_cast<Output_section*>(1);
2e702c99
RM
1667 out_section_offsets[i] = invalid_address;
1668 }
c924eb67 1669 else if (this->is_deferred_layout())
14788a3f
ILT
1670 this->deferred_layout_.push_back(Deferred_layout(i, name,
1671 pshdrs,
1672 reloc_shndx[i],
1673 reloc_type[i]));
1674 else
2e702c99
RM
1675 eh_frame_sections.push_back(i);
1676 continue;
1677 }
730cdc88 1678
16164a6b 1679 if (is_pass_two && parameters->options().gc_sections())
2e702c99
RM
1680 {
1681 // This is executed during the second pass of garbage
1682 // collection. do_layout has been called before and some
1683 // sections have been already discarded. Simply ignore
1684 // such sections this time around.
1685 if (out_sections[i] == NULL)
1686 {
1687 gold_assert(out_section_offsets[i] == invalid_address);
1688 continue;
1689 }
1690 if (((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0)
1691 && symtab->gc()->is_section_garbage(this, i))
1692 {
1693 if (parameters->options().print_gc_sections())
1694 gold_info(_("%s: removing unused section from '%s'"
1695 " in file '%s'"),
1696 program_name, this->section_name(i).c_str(),
1697 this->name().c_str());
1698 out_sections[i] = NULL;
1699 out_section_offsets[i] = invalid_address;
1700 continue;
1701 }
1702 }
ef15dade 1703
16164a6b 1704 if (is_pass_two && parameters->options().icf_enabled())
2e702c99
RM
1705 {
1706 if (out_sections[i] == NULL)
1707 {
1708 gold_assert(out_section_offsets[i] == invalid_address);
1709 continue;
1710 }
1711 if (((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0)
1712 && symtab->icf()->is_section_folded(this, i))
1713 {
1714 if (parameters->options().print_icf_sections())
1715 {
1716 Section_id folded =
1717 symtab->icf()->get_folded_section(this, i);
1718 Relobj* folded_obj =
1719 reinterpret_cast<Relobj*>(folded.first);
53c66605 1720 gold_info(_("%s: ICF folding section '%s' in file '%s' "
2e702c99
RM
1721 "into '%s' in file '%s'"),
1722 program_name, this->section_name(i).c_str(),
1723 this->name().c_str(),
1724 folded_obj->section_name(folded.second).c_str(),
1725 folded_obj->name().c_str());
1726 }
1727 out_sections[i] = NULL;
1728 out_section_offsets[i] = invalid_address;
1729 continue;
1730 }
1731 }
ef15dade 1732
6d03d481 1733 // Defer layout here if input files are claimed by plugins. When gc
c924eb67
CC
1734 // is turned on this function is called twice; we only want to do this
1735 // on the first pass.
1736 if (!is_pass_two
1737 && this->is_deferred_layout()
1738 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
2e702c99 1739 {
2e702c99
RM
1740 this->deferred_layout_.push_back(Deferred_layout(i, name,
1741 pshdrs,
1742 reloc_shndx[i],
1743 reloc_type[i]));
1744 // Put dummy values here; real values will be supplied by
1745 // do_layout_deferred_sections.
1746 out_sections[i] = reinterpret_cast<Output_section*>(2);
1747 out_section_offsets[i] = invalid_address;
1748 continue;
1749 }
ef15dade 1750
6d03d481
ST
1751 // During gc_pass_two if a section that was previously deferred is
1752 // found, do not layout the section as layout_deferred_sections will
1753 // do it later from gold.cc.
16164a6b 1754 if (is_pass_two
2e702c99
RM
1755 && (out_sections[i] == reinterpret_cast<Output_section*>(2)))
1756 continue;
6d03d481 1757
16164a6b 1758 if (is_pass_one)
2e702c99
RM
1759 {
1760 // This is during garbage collection. The out_sections are
1761 // assigned in the second call to this function.
1762 out_sections[i] = reinterpret_cast<Output_section*>(1);
1763 out_section_offsets[i] = invalid_address;
1764 }
ef9beddf 1765 else
2e702c99
RM
1766 {
1767 // When garbage collection is switched on the actual layout
1768 // only happens in the second call.
1769 this->layout_section(layout, i, name, shdr, reloc_shndx[i],
1770 reloc_type[i]);
c1027032
CC
1771
1772 // When generating a .gdb_index section, we do additional
1773 // processing of .debug_info and .debug_types sections after all
1774 // the other sections for the same reason as above.
1775 if (!relocatable
1776 && parameters->options().gdb_index()
1777 && !(shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
1778 {
1779 if (strcmp(name, ".debug_info") == 0
1780 || strcmp(name, ".zdebug_info") == 0)
1781 debug_info_sections.push_back(i);
1782 else if (strcmp(name, ".debug_types") == 0
1783 || strcmp(name, ".zdebug_types") == 0)
1784 debug_types_sections.push_back(i);
1785 }
2e702c99 1786 }
12e14209
ILT
1787 }
1788
16164a6b 1789 if (!is_pass_two)
83e17bd5 1790 layout->layout_gnu_stack(seen_gnu_stack, gnu_stack_flags, this);
35cdfc9a 1791
1d946cb3
CC
1792 // Handle the .eh_frame sections after the other sections.
1793 gold_assert(!is_pass_one || eh_frame_sections.empty());
1794 for (std::vector<unsigned int>::const_iterator p = eh_frame_sections.begin();
1795 p != eh_frame_sections.end();
1796 ++p)
1797 {
1798 unsigned int i = *p;
1799 const unsigned char* pshdr;
1800 pshdr = section_headers_data + i * This::shdr_size;
1801 typename This::Shdr shdr(pshdr);
1802
1803 this->layout_eh_frame_section(layout,
1804 symbols_data,
1805 symbols_size,
1806 symbol_names_data,
1807 symbol_names_size,
1808 i,
1809 shdr,
1810 reloc_shndx[i],
1811 reloc_type[i]);
1812 }
1813
6a74a719 1814 // When doing a relocatable link handle the reloc sections at the
2e702c99
RM
1815 // end. Garbage collection and Identical Code Folding is not
1816 // turned on for relocatable code.
2ea97941 1817 if (emit_relocs)
6a74a719 1818 this->size_relocatable_relocs();
ef15dade 1819
16164a6b 1820 gold_assert(!is_two_pass || reloc_sections.empty());
ef15dade 1821
6a74a719
ILT
1822 for (std::vector<unsigned int>::const_iterator p = reloc_sections.begin();
1823 p != reloc_sections.end();
1824 ++p)
1825 {
1826 unsigned int i = *p;
1827 const unsigned char* pshdr;
6d03d481 1828 pshdr = section_headers_data + i * This::shdr_size;
6a74a719
ILT
1829 typename This::Shdr shdr(pshdr);
1830
d491d34e 1831 unsigned int data_shndx = this->adjust_shndx(shdr.get_sh_info());
2ea97941 1832 if (data_shndx >= shnum)
6a74a719
ILT
1833 {
1834 // We already warned about this above.
1835 continue;
1836 }
1837
ef9beddf 1838 Output_section* data_section = out_sections[data_shndx];
f3a2388f 1839 if (data_section == reinterpret_cast<Output_section*>(2))
2e702c99 1840 {
c924eb67
CC
1841 if (is_pass_two)
1842 continue;
2e702c99
RM
1843 // The layout for the data section was deferred, so we need
1844 // to defer the relocation section, too.
f3a2388f 1845 const char* name = pnames + shdr.get_sh_name();
2e702c99
RM
1846 this->deferred_layout_relocs_.push_back(
1847 Deferred_layout(i, name, pshdr, 0, elfcpp::SHT_NULL));
f3a2388f 1848 out_sections[i] = reinterpret_cast<Output_section*>(2);
2e702c99
RM
1849 out_section_offsets[i] = invalid_address;
1850 continue;
1851 }
6a74a719
ILT
1852 if (data_section == NULL)
1853 {
ef9beddf 1854 out_sections[i] = NULL;
2e702c99 1855 out_section_offsets[i] = invalid_address;
6a74a719
ILT
1856 continue;
1857 }
1858
1859 Relocatable_relocs* rr = new Relocatable_relocs();
1860 this->set_relocatable_relocs(i, rr);
1861
2ea97941
ILT
1862 Output_section* os = layout->layout_reloc(this, i, shdr, data_section,
1863 rr);
ef9beddf 1864 out_sections[i] = os;
eff45813 1865 out_section_offsets[i] = invalid_address;
6a74a719
ILT
1866 }
1867
c1027032
CC
1868 // When building a .gdb_index section, scan the .debug_info and
1869 // .debug_types sections.
16164a6b 1870 gold_assert(!is_pass_one
c1027032
CC
1871 || (debug_info_sections.empty() && debug_types_sections.empty()));
1872 for (std::vector<unsigned int>::const_iterator p
1873 = debug_info_sections.begin();
1874 p != debug_info_sections.end();
1875 ++p)
1876 {
1877 unsigned int i = *p;
1878 layout->add_to_gdb_index(false, this, symbols_data, symbols_size,
1879 i, reloc_shndx[i], reloc_type[i]);
1880 }
1881 for (std::vector<unsigned int>::const_iterator p
1882 = debug_types_sections.begin();
1883 p != debug_types_sections.end();
1884 ++p)
1885 {
1886 unsigned int i = *p;
1887 layout->add_to_gdb_index(true, this, symbols_data, symbols_size,
1888 i, reloc_shndx[i], reloc_type[i]);
1889 }
1890
16164a6b 1891 if (is_pass_two)
6d03d481
ST
1892 {
1893 delete[] gc_sd->section_headers_data;
1894 delete[] gc_sd->section_names_data;
1895 delete[] gc_sd->symbols_data;
1896 delete[] gc_sd->symbol_names_data;
ef15dade 1897 this->set_symbols_data(NULL);
6d03d481
ST
1898 }
1899 else
1900 {
1901 delete sd->section_headers;
1902 sd->section_headers = NULL;
1903 delete sd->section_names;
1904 sd->section_names = NULL;
1905 }
12e14209
ILT
1906}
1907
5995b570
CC
1908// Layout sections whose layout was deferred while waiting for
1909// input files from a plugin.
1910
1911template<int size, bool big_endian>
1912void
6fa2a40b 1913Sized_relobj_file<size, big_endian>::do_layout_deferred_sections(Layout* layout)
5995b570
CC
1914{
1915 typename std::vector<Deferred_layout>::iterator deferred;
1916
1917 for (deferred = this->deferred_layout_.begin();
1918 deferred != this->deferred_layout_.end();
1919 ++deferred)
1920 {
1921 typename This::Shdr shdr(deferred->shdr_data_);
5e0f337e 1922
54a3d865
ILT
1923 if (!parameters->options().relocatable()
1924 && deferred->name_ == ".eh_frame"
1925 && this->check_eh_frame_flags(&shdr))
14788a3f 1926 {
54a3d865
ILT
1927 // Checking is_section_included is not reliable for
1928 // .eh_frame sections, because they do not have an output
1929 // section. This is not a problem normally because we call
1930 // layout_eh_frame_section unconditionally, but when
1931 // deferring sections that is not true. We don't want to
1932 // keep all .eh_frame sections because that will cause us to
1933 // keep all sections that they refer to, which is the wrong
1934 // way around. Instead, the eh_frame code will discard
1935 // .eh_frame sections that refer to discarded sections.
1936
14788a3f
ILT
1937 // Reading the symbols again here may be slow.
1938 Read_symbols_data sd;
f35c4853 1939 this->base_read_symbols(&sd);
14788a3f
ILT
1940 this->layout_eh_frame_section(layout,
1941 sd.symbols->data(),
1942 sd.symbols_size,
1943 sd.symbol_names->data(),
1944 sd.symbol_names_size,
1945 deferred->shndx_,
1946 shdr,
1947 deferred->reloc_shndx_,
1948 deferred->reloc_type_);
54a3d865 1949 continue;
14788a3f 1950 }
54a3d865
ILT
1951
1952 // If the section is not included, it is because the garbage collector
1953 // decided it is not needed. Avoid reverting that decision.
1954 if (!this->is_section_included(deferred->shndx_))
1955 continue;
1956
1957 this->layout_section(layout, deferred->shndx_, deferred->name_.c_str(),
1958 shdr, deferred->reloc_shndx_,
1959 deferred->reloc_type_);
5995b570
CC
1960 }
1961
1962 this->deferred_layout_.clear();
f3a2388f
CC
1963
1964 // Now handle the deferred relocation sections.
1965
1966 Output_sections& out_sections(this->output_sections());
6fa2a40b 1967 std::vector<Address>& out_section_offsets(this->section_offsets());
f3a2388f
CC
1968
1969 for (deferred = this->deferred_layout_relocs_.begin();
1970 deferred != this->deferred_layout_relocs_.end();
1971 ++deferred)
1972 {
1973 unsigned int shndx = deferred->shndx_;
1974 typename This::Shdr shdr(deferred->shdr_data_);
1975 unsigned int data_shndx = this->adjust_shndx(shdr.get_sh_info());
1976
1977 Output_section* data_section = out_sections[data_shndx];
1978 if (data_section == NULL)
1979 {
1980 out_sections[shndx] = NULL;
2e702c99 1981 out_section_offsets[shndx] = invalid_address;
f3a2388f
CC
1982 continue;
1983 }
1984
1985 Relocatable_relocs* rr = new Relocatable_relocs();
1986 this->set_relocatable_relocs(shndx, rr);
1987
1988 Output_section* os = layout->layout_reloc(this, shndx, shdr,
1989 data_section, rr);
1990 out_sections[shndx] = os;
1991 out_section_offsets[shndx] = invalid_address;
1992 }
5995b570
CC
1993}
1994
12e14209
ILT
1995// Add the symbols to the symbol table.
1996
1997template<int size, bool big_endian>
1998void
6fa2a40b
CC
1999Sized_relobj_file<size, big_endian>::do_add_symbols(Symbol_table* symtab,
2000 Read_symbols_data* sd,
2001 Layout*)
12e14209
ILT
2002{
2003 if (sd->symbols == NULL)
2004 {
a3ad94ed 2005 gold_assert(sd->symbol_names == NULL);
12e14209
ILT
2006 return;
2007 }
a2fb1b05 2008
2ea97941 2009 const int sym_size = This::sym_size;
730cdc88 2010 size_t symcount = ((sd->symbols_size - sd->external_symbols_offset)
2ea97941
ILT
2011 / sym_size);
2012 if (symcount * sym_size != sd->symbols_size - sd->external_symbols_offset)
12e14209 2013 {
75f2446e
ILT
2014 this->error(_("size of symbols is not multiple of symbol size"));
2015 return;
a2fb1b05 2016 }
12e14209 2017
730cdc88 2018 this->symbols_.resize(symcount);
12e14209 2019
12e14209
ILT
2020 const char* sym_names =
2021 reinterpret_cast<const char*>(sd->symbol_names->data());
730cdc88
ILT
2022 symtab->add_from_relobj(this,
2023 sd->symbols->data() + sd->external_symbols_offset,
7fcd3aa9 2024 symcount, this->local_symbol_count_,
d491d34e 2025 sym_names, sd->symbol_names_size,
92de84a6
ILT
2026 &this->symbols_,
2027 &this->defined_count_);
12e14209
ILT
2028
2029 delete sd->symbols;
2030 sd->symbols = NULL;
2031 delete sd->symbol_names;
2032 sd->symbol_names = NULL;
bae7f79e
ILT
2033}
2034
b0193076
RÁE
2035// Find out if this object, that is a member of a lib group, should be included
2036// in the link. We check every symbol defined by this object. If the symbol
2037// table has a strong undefined reference to that symbol, we have to include
2038// the object.
2039
2040template<int size, bool big_endian>
2041Archive::Should_include
6fa2a40b
CC
2042Sized_relobj_file<size, big_endian>::do_should_include_member(
2043 Symbol_table* symtab,
2044 Layout* layout,
2045 Read_symbols_data* sd,
2046 std::string* why)
b0193076
RÁE
2047{
2048 char* tmpbuf = NULL;
2049 size_t tmpbuflen = 0;
2050 const char* sym_names =
2051 reinterpret_cast<const char*>(sd->symbol_names->data());
2052 const unsigned char* syms =
2053 sd->symbols->data() + sd->external_symbols_offset;
2054 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
2055 size_t symcount = ((sd->symbols_size - sd->external_symbols_offset)
2e702c99 2056 / sym_size);
b0193076
RÁE
2057
2058 const unsigned char* p = syms;
2059
2060 for (size_t i = 0; i < symcount; ++i, p += sym_size)
2061 {
2062 elfcpp::Sym<size, big_endian> sym(p);
2063 unsigned int st_shndx = sym.get_st_shndx();
2064 if (st_shndx == elfcpp::SHN_UNDEF)
2065 continue;
2066
2067 unsigned int st_name = sym.get_st_name();
2068 const char* name = sym_names + st_name;
2069 Symbol* symbol;
88a4108b
ILT
2070 Archive::Should_include t = Archive::should_include_member(symtab,
2071 layout,
2072 name,
b0193076
RÁE
2073 &symbol, why,
2074 &tmpbuf,
2075 &tmpbuflen);
2076 if (t == Archive::SHOULD_INCLUDE_YES)
2077 {
2078 if (tmpbuf != NULL)
2079 free(tmpbuf);
2080 return t;
2081 }
2082 }
2083 if (tmpbuf != NULL)
2084 free(tmpbuf);
2085 return Archive::SHOULD_INCLUDE_UNKNOWN;
2086}
2087
e0c52780
CC
2088// Iterate over global defined symbols, calling a visitor class V for each.
2089
2090template<int size, bool big_endian>
2091void
6fa2a40b 2092Sized_relobj_file<size, big_endian>::do_for_all_global_symbols(
e0c52780
CC
2093 Read_symbols_data* sd,
2094 Library_base::Symbol_visitor_base* v)
2095{
2096 const char* sym_names =
2097 reinterpret_cast<const char*>(sd->symbol_names->data());
2098 const unsigned char* syms =
2099 sd->symbols->data() + sd->external_symbols_offset;
2100 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
2101 size_t symcount = ((sd->symbols_size - sd->external_symbols_offset)
2e702c99 2102 / sym_size);
e0c52780
CC
2103 const unsigned char* p = syms;
2104
2105 for (size_t i = 0; i < symcount; ++i, p += sym_size)
2106 {
2107 elfcpp::Sym<size, big_endian> sym(p);
2108 if (sym.get_st_shndx() != elfcpp::SHN_UNDEF)
2109 v->visit(sym_names + sym.get_st_name());
2110 }
2111}
2112
7223e9ca
ILT
2113// Return whether the local symbol SYMNDX has a PLT offset.
2114
2115template<int size, bool big_endian>
2116bool
6fa2a40b
CC
2117Sized_relobj_file<size, big_endian>::local_has_plt_offset(
2118 unsigned int symndx) const
7223e9ca
ILT
2119{
2120 typename Local_plt_offsets::const_iterator p =
2121 this->local_plt_offsets_.find(symndx);
2122 return p != this->local_plt_offsets_.end();
2123}
2124
2125// Get the PLT offset of a local symbol.
2126
2127template<int size, bool big_endian>
2128unsigned int
83896202
ILT
2129Sized_relobj_file<size, big_endian>::do_local_plt_offset(
2130 unsigned int symndx) const
7223e9ca
ILT
2131{
2132 typename Local_plt_offsets::const_iterator p =
2133 this->local_plt_offsets_.find(symndx);
2134 gold_assert(p != this->local_plt_offsets_.end());
2135 return p->second;
2136}
2137
2138// Set the PLT offset of a local symbol.
2139
2140template<int size, bool big_endian>
2141void
6fa2a40b
CC
2142Sized_relobj_file<size, big_endian>::set_local_plt_offset(
2143 unsigned int symndx, unsigned int plt_offset)
7223e9ca
ILT
2144{
2145 std::pair<typename Local_plt_offsets::iterator, bool> ins =
2146 this->local_plt_offsets_.insert(std::make_pair(symndx, plt_offset));
2147 gold_assert(ins.second);
2148}
2149
cb295612
ILT
2150// First pass over the local symbols. Here we add their names to
2151// *POOL and *DYNPOOL, and we store the symbol value in
2152// THIS->LOCAL_VALUES_. This function is always called from a
2153// singleton thread. This is followed by a call to
2154// finalize_local_symbols.
75f65a3e
ILT
2155
2156template<int size, bool big_endian>
7bf1f802 2157void
6fa2a40b
CC
2158Sized_relobj_file<size, big_endian>::do_count_local_symbols(Stringpool* pool,
2159 Stringpool* dynpool)
75f65a3e 2160{
a3ad94ed 2161 gold_assert(this->symtab_shndx_ != -1U);
645f8123 2162 if (this->symtab_shndx_ == 0)
61ba1cf9
ILT
2163 {
2164 // This object has no symbols. Weird but legal.
7bf1f802 2165 return;
61ba1cf9
ILT
2166 }
2167
75f65a3e 2168 // Read the symbol table section header.
2ea97941 2169 const unsigned int symtab_shndx = this->symtab_shndx_;
645f8123 2170 typename This::Shdr symtabshdr(this,
2ea97941 2171 this->elf_file_.section_header(symtab_shndx));
a3ad94ed 2172 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
75f65a3e
ILT
2173
2174 // Read the local symbols.
2ea97941 2175 const int sym_size = This::sym_size;
92e059d8 2176 const unsigned int loccount = this->local_symbol_count_;
a3ad94ed 2177 gold_assert(loccount == symtabshdr.get_sh_info());
2ea97941 2178 off_t locsize = loccount * sym_size;
75f65a3e 2179 const unsigned char* psyms = this->get_view(symtabshdr.get_sh_offset(),
39d0cb0e 2180 locsize, true, true);
75f65a3e 2181
75f65a3e 2182 // Read the symbol names.
d491d34e
ILT
2183 const unsigned int strtab_shndx =
2184 this->adjust_shndx(symtabshdr.get_sh_link());
8383303e 2185 section_size_type strtab_size;
645f8123 2186 const unsigned char* pnamesu = this->section_contents(strtab_shndx,
9eb9fa57
ILT
2187 &strtab_size,
2188 true);
75f65a3e
ILT
2189 const char* pnames = reinterpret_cast<const char*>(pnamesu);
2190
2191 // Loop over the local symbols.
2192
ef9beddf 2193 const Output_sections& out_sections(this->output_sections());
cd3c333f 2194 std::vector<Address>& out_section_offsets(this->section_offsets());
2ea97941 2195 unsigned int shnum = this->shnum();
61ba1cf9 2196 unsigned int count = 0;
7bf1f802 2197 unsigned int dyncount = 0;
75f65a3e 2198 // Skip the first, dummy, symbol.
2ea97941 2199 psyms += sym_size;
403676b5 2200 bool strip_all = parameters->options().strip_all();
ebcc8304 2201 bool discard_all = parameters->options().discard_all();
bb04269c 2202 bool discard_locals = parameters->options().discard_locals();
cd3c333f 2203 bool discard_sec_merge = parameters->options().discard_sec_merge();
2ea97941 2204 for (unsigned int i = 1; i < loccount; ++i, psyms += sym_size)
75f65a3e
ILT
2205 {
2206 elfcpp::Sym<size, big_endian> sym(psyms);
2207
b8e6aad9
ILT
2208 Symbol_value<size>& lv(this->local_values_[i]);
2209
d491d34e
ILT
2210 bool is_ordinary;
2211 unsigned int shndx = this->adjust_sym_shndx(i, sym.get_st_shndx(),
2212 &is_ordinary);
2213 lv.set_input_shndx(shndx, is_ordinary);
75f65a3e 2214
063f12a8
ILT
2215 if (sym.get_st_type() == elfcpp::STT_SECTION)
2216 lv.set_is_section_symbol();
7bf1f802
ILT
2217 else if (sym.get_st_type() == elfcpp::STT_TLS)
2218 lv.set_is_tls_symbol();
7223e9ca
ILT
2219 else if (sym.get_st_type() == elfcpp::STT_GNU_IFUNC)
2220 lv.set_is_ifunc_symbol();
7bf1f802
ILT
2221
2222 // Save the input symbol value for use in do_finalize_local_symbols().
2223 lv.set_input_value(sym.get_st_value());
2224
2225 // Decide whether this symbol should go into the output file.
063f12a8 2226
2ea97941 2227 if ((shndx < shnum && out_sections[shndx] == NULL)
ebcc8304 2228 || shndx == this->discarded_eh_frame_shndx_)
2e702c99 2229 {
7bf1f802 2230 lv.set_no_output_symtab_entry();
2e702c99
RM
2231 gold_assert(!lv.needs_output_dynsym_entry());
2232 continue;
2233 }
7bf1f802 2234
ec4dbad3
AM
2235 if (sym.get_st_type() == elfcpp::STT_SECTION
2236 || !this->adjust_local_symbol(&lv))
7bf1f802
ILT
2237 {
2238 lv.set_no_output_symtab_entry();
2e702c99 2239 gold_assert(!lv.needs_output_dynsym_entry());
7bf1f802
ILT
2240 continue;
2241 }
2242
2243 if (sym.get_st_name() >= strtab_size)
2244 {
2245 this->error(_("local symbol %u section name out of range: %u >= %u"),
2246 i, sym.get_st_name(),
2247 static_cast<unsigned int>(strtab_size));
2248 lv.set_no_output_symtab_entry();
2249 continue;
2250 }
2251
ebcc8304
ILT
2252 const char* name = pnames + sym.get_st_name();
2253
2254 // If needed, add the symbol to the dynamic symbol table string pool.
2255 if (lv.needs_output_dynsym_entry())
2e702c99
RM
2256 {
2257 dynpool->add(name, true, NULL);
2258 ++dyncount;
2259 }
ebcc8304 2260
403676b5
CC
2261 if (strip_all
2262 || (discard_all && lv.may_be_discarded_from_output_symtab()))
ebcc8304
ILT
2263 {
2264 lv.set_no_output_symtab_entry();
2265 continue;
2266 }
2267
cd3c333f 2268 // By default, discard temporary local symbols in merge sections.
bb04269c
DK
2269 // If --discard-locals option is used, discard all temporary local
2270 // symbols. These symbols start with system-specific local label
2271 // prefixes, typically .L for ELF system. We want to be compatible
2272 // with GNU ld so here we essentially use the same check in
2273 // bfd_is_local_label(). The code is different because we already
2274 // know that:
2275 //
2276 // - the symbol is local and thus cannot have global or weak binding.
2277 // - the symbol is not a section symbol.
2278 // - the symbol has a name.
2279 //
2280 // We do not discard a symbol if it needs a dynamic symbol entry.
cd3c333f
CC
2281 if ((discard_locals
2282 || (discard_sec_merge
2283 && is_ordinary
2284 && out_section_offsets[shndx] == invalid_address))
bb04269c
DK
2285 && sym.get_st_type() != elfcpp::STT_FILE
2286 && !lv.needs_output_dynsym_entry()
d3bbad62 2287 && lv.may_be_discarded_from_output_symtab()
2ea97941 2288 && parameters->target().is_local_label_name(name))
bb04269c
DK
2289 {
2290 lv.set_no_output_symtab_entry();
2291 continue;
2292 }
2293
8c604651
CS
2294 // Discard the local symbol if -retain_symbols_file is specified
2295 // and the local symbol is not in that file.
2ea97941 2296 if (!parameters->options().should_retain_symbol(name))
2e702c99
RM
2297 {
2298 lv.set_no_output_symtab_entry();
2299 continue;
2300 }
8c604651 2301
bb04269c 2302 // Add the symbol to the symbol table string pool.
2ea97941 2303 pool->add(name, true, NULL);
7bf1f802 2304 ++count;
7bf1f802
ILT
2305 }
2306
2307 this->output_local_symbol_count_ = count;
2308 this->output_local_dynsym_count_ = dyncount;
2309}
2310
aa98ff75
DK
2311// Compute the final value of a local symbol.
2312
2313template<int size, bool big_endian>
6fa2a40b
CC
2314typename Sized_relobj_file<size, big_endian>::Compute_final_local_value_status
2315Sized_relobj_file<size, big_endian>::compute_final_local_value_internal(
aa98ff75
DK
2316 unsigned int r_sym,
2317 const Symbol_value<size>* lv_in,
2318 Symbol_value<size>* lv_out,
2319 bool relocatable,
2320 const Output_sections& out_sections,
2321 const std::vector<Address>& out_offsets,
2322 const Symbol_table* symtab)
2323{
2324 // We are going to overwrite *LV_OUT, if it has a merged symbol value,
2325 // we may have a memory leak.
2326 gold_assert(lv_out->has_output_value());
2327
2328 bool is_ordinary;
2329 unsigned int shndx = lv_in->input_shndx(&is_ordinary);
2e702c99 2330
aa98ff75 2331 // Set the output symbol value.
2e702c99 2332
aa98ff75
DK
2333 if (!is_ordinary)
2334 {
2335 if (shndx == elfcpp::SHN_ABS || Symbol::is_common_shndx(shndx))
2336 lv_out->set_output_value(lv_in->input_value());
2337 else
2338 {
2339 this->error(_("unknown section index %u for local symbol %u"),
2340 shndx, r_sym);
2341 lv_out->set_output_value(0);
2342 return This::CFLV_ERROR;
2343 }
2344 }
2345 else
2346 {
2347 if (shndx >= this->shnum())
2348 {
2349 this->error(_("local symbol %u section index %u out of range"),
2350 r_sym, shndx);
2351 lv_out->set_output_value(0);
2352 return This::CFLV_ERROR;
2353 }
2e702c99 2354
aa98ff75
DK
2355 Output_section* os = out_sections[shndx];
2356 Address secoffset = out_offsets[shndx];
2357 if (symtab->is_section_folded(this, shndx))
2358 {
2359 gold_assert(os == NULL && secoffset == invalid_address);
2360 // Get the os of the section it is folded onto.
2361 Section_id folded = symtab->icf()->get_folded_section(this,
2362 shndx);
2363 gold_assert(folded.first != NULL);
6fa2a40b
CC
2364 Sized_relobj_file<size, big_endian>* folded_obj = reinterpret_cast
2365 <Sized_relobj_file<size, big_endian>*>(folded.first);
aa98ff75
DK
2366 os = folded_obj->output_section(folded.second);
2367 gold_assert(os != NULL);
2368 secoffset = folded_obj->get_output_section_offset(folded.second);
2e702c99 2369
aa98ff75
DK
2370 // This could be a relaxed input section.
2371 if (secoffset == invalid_address)
2372 {
2373 const Output_relaxed_input_section* relaxed_section =
2374 os->find_relaxed_input_section(folded_obj, folded.second);
2375 gold_assert(relaxed_section != NULL);
2376 secoffset = relaxed_section->address() - os->address();
2377 }
2378 }
2e702c99 2379
aa98ff75
DK
2380 if (os == NULL)
2381 {
2382 // This local symbol belongs to a section we are discarding.
2383 // In some cases when applying relocations later, we will
2384 // attempt to match it to the corresponding kept section,
2385 // so we leave the input value unchanged here.
2386 return This::CFLV_DISCARDED;
2387 }
2388 else if (secoffset == invalid_address)
2389 {
2390 uint64_t start;
2e702c99 2391
aa98ff75
DK
2392 // This is a SHF_MERGE section or one which otherwise
2393 // requires special handling.
2394 if (shndx == this->discarded_eh_frame_shndx_)
2395 {
2396 // This local symbol belongs to a discarded .eh_frame
2397 // section. Just treat it like the case in which
2398 // os == NULL above.
2399 gold_assert(this->has_eh_frame_);
2400 return This::CFLV_DISCARDED;
2401 }
2402 else if (!lv_in->is_section_symbol())
2403 {
2404 // This is not a section symbol. We can determine
2405 // the final value now.
2406 lv_out->set_output_value(
2407 os->output_address(this, shndx, lv_in->input_value()));
2408 }
2409 else if (!os->find_starting_output_address(this, shndx, &start))
2410 {
2411 // This is a section symbol, but apparently not one in a
2412 // merged section. First check to see if this is a relaxed
2413 // input section. If so, use its address. Otherwise just
2414 // use the start of the output section. This happens with
2415 // relocatable links when the input object has section
2416 // symbols for arbitrary non-merge sections.
2417 const Output_section_data* posd =
2418 os->find_relaxed_input_section(this, shndx);
2419 if (posd != NULL)
2420 {
2421 Address relocatable_link_adjustment =
2422 relocatable ? os->address() : 0;
2423 lv_out->set_output_value(posd->address()
2424 - relocatable_link_adjustment);
2425 }
2426 else
2427 lv_out->set_output_value(os->address());
2428 }
2429 else
2430 {
2431 // We have to consider the addend to determine the
2432 // value to use in a relocation. START is the start
2433 // of this input section. If we are doing a relocatable
2434 // link, use offset from start output section instead of
2435 // address.
2436 Address adjusted_start =
2437 relocatable ? start - os->address() : start;
2438 Merged_symbol_value<size>* msv =
2439 new Merged_symbol_value<size>(lv_in->input_value(),
2440 adjusted_start);
2441 lv_out->set_merged_symbol_value(msv);
2442 }
2443 }
5efeedf6
CC
2444 else if (lv_in->is_tls_symbol()
2445 || (lv_in->is_section_symbol()
2446 && (os->flags() & elfcpp::SHF_TLS)))
aa98ff75
DK
2447 lv_out->set_output_value(os->tls_offset()
2448 + secoffset
2449 + lv_in->input_value());
2450 else
2451 lv_out->set_output_value((relocatable ? 0 : os->address())
2452 + secoffset
2453 + lv_in->input_value());
2454 }
2455 return This::CFLV_OK;
2456}
2457
2458// Compute final local symbol value. R_SYM is the index of a local
2459// symbol in symbol table. LV points to a symbol value, which is
2460// expected to hold the input value and to be over-written by the
2461// final value. SYMTAB points to a symbol table. Some targets may want
2462// to know would-be-finalized local symbol values in relaxation.
2463// Hence we provide this method. Since this method updates *LV, a
2464// callee should make a copy of the original local symbol value and
2465// use the copy instead of modifying an object's local symbols before
2466// everything is finalized. The caller should also free up any allocated
2467// memory in the return value in *LV.
2468template<int size, bool big_endian>
6fa2a40b
CC
2469typename Sized_relobj_file<size, big_endian>::Compute_final_local_value_status
2470Sized_relobj_file<size, big_endian>::compute_final_local_value(
aa98ff75
DK
2471 unsigned int r_sym,
2472 const Symbol_value<size>* lv_in,
2473 Symbol_value<size>* lv_out,
2474 const Symbol_table* symtab)
2475{
2476 // This is just a wrapper of compute_final_local_value_internal.
2477 const bool relocatable = parameters->options().relocatable();
2478 const Output_sections& out_sections(this->output_sections());
6fa2a40b 2479 const std::vector<Address>& out_offsets(this->section_offsets());
aa98ff75
DK
2480 return this->compute_final_local_value_internal(r_sym, lv_in, lv_out,
2481 relocatable, out_sections,
2482 out_offsets, symtab);
2483}
2484
cb295612 2485// Finalize the local symbols. Here we set the final value in
7bf1f802 2486// THIS->LOCAL_VALUES_ and set their output symbol table indexes.
17a1d0a9 2487// This function is always called from a singleton thread. The actual
7bf1f802
ILT
2488// output of the local symbols will occur in a separate task.
2489
2490template<int size, bool big_endian>
2491unsigned int
6fa2a40b
CC
2492Sized_relobj_file<size, big_endian>::do_finalize_local_symbols(
2493 unsigned int index,
2494 off_t off,
2495 Symbol_table* symtab)
7bf1f802
ILT
2496{
2497 gold_assert(off == static_cast<off_t>(align_address(off, size >> 3)));
2498
2499 const unsigned int loccount = this->local_symbol_count_;
2500 this->local_symbol_offset_ = off;
2501
b4ecf66b 2502 const bool relocatable = parameters->options().relocatable();
ef9beddf 2503 const Output_sections& out_sections(this->output_sections());
6fa2a40b 2504 const std::vector<Address>& out_offsets(this->section_offsets());
7bf1f802
ILT
2505
2506 for (unsigned int i = 1; i < loccount; ++i)
2507 {
aa98ff75 2508 Symbol_value<size>* lv = &this->local_values_[i];
7bf1f802 2509
6695e4b3 2510 Compute_final_local_value_status cflv_status =
aa98ff75
DK
2511 this->compute_final_local_value_internal(i, lv, lv, relocatable,
2512 out_sections, out_offsets,
2513 symtab);
2514 switch (cflv_status)
75f65a3e 2515 {
aa98ff75
DK
2516 case CFLV_OK:
2517 if (!lv->is_output_symtab_index_set())
75f65a3e 2518 {
aa98ff75
DK
2519 lv->set_output_symtab_index(index);
2520 ++index;
75f65a3e 2521 }
aa98ff75
DK
2522 break;
2523 case CFLV_DISCARDED:
2524 case CFLV_ERROR:
2525 // Do nothing.
2526 break;
2527 default:
2528 gold_unreachable();
75f65a3e 2529 }
7bf1f802
ILT
2530 }
2531 return index;
2532}
645f8123 2533
7bf1f802 2534// Set the output dynamic symbol table indexes for the local variables.
c06b7b0b 2535
7bf1f802
ILT
2536template<int size, bool big_endian>
2537unsigned int
6fa2a40b
CC
2538Sized_relobj_file<size, big_endian>::do_set_local_dynsym_indexes(
2539 unsigned int index)
7bf1f802
ILT
2540{
2541 const unsigned int loccount = this->local_symbol_count_;
2542 for (unsigned int i = 1; i < loccount; ++i)
2543 {
2544 Symbol_value<size>& lv(this->local_values_[i]);
2545 if (lv.needs_output_dynsym_entry())
2e702c99
RM
2546 {
2547 lv.set_output_dynsym_index(index);
2548 ++index;
2549 }
75f65a3e 2550 }
7bf1f802
ILT
2551 return index;
2552}
75f65a3e 2553
7bf1f802
ILT
2554// Set the offset where local dynamic symbol information will be stored.
2555// Returns the count of local symbols contributed to the symbol table by
2556// this object.
61ba1cf9 2557
7bf1f802
ILT
2558template<int size, bool big_endian>
2559unsigned int
6fa2a40b 2560Sized_relobj_file<size, big_endian>::do_set_local_dynsym_offset(off_t off)
7bf1f802
ILT
2561{
2562 gold_assert(off == static_cast<off_t>(align_address(off, size >> 3)));
2563 this->local_dynsym_offset_ = off;
2564 return this->output_local_dynsym_count_;
75f65a3e
ILT
2565}
2566
ef15dade
ST
2567// If Symbols_data is not NULL get the section flags from here otherwise
2568// get it from the file.
2569
2570template<int size, bool big_endian>
2571uint64_t
6fa2a40b 2572Sized_relobj_file<size, big_endian>::do_section_flags(unsigned int shndx)
ef15dade
ST
2573{
2574 Symbols_data* sd = this->get_symbols_data();
2575 if (sd != NULL)
2576 {
2577 const unsigned char* pshdrs = sd->section_headers_data
2e702c99 2578 + This::shdr_size * shndx;
ef15dade 2579 typename This::Shdr shdr(pshdrs);
2e702c99 2580 return shdr.get_sh_flags();
ef15dade
ST
2581 }
2582 // If sd is NULL, read the section header from the file.
2e702c99 2583 return this->elf_file_.section_flags(shndx);
ef15dade
ST
2584}
2585
2586// Get the section's ent size from Symbols_data. Called by get_section_contents
2587// in icf.cc
2588
2589template<int size, bool big_endian>
2590uint64_t
6fa2a40b 2591Sized_relobj_file<size, big_endian>::do_section_entsize(unsigned int shndx)
ef15dade
ST
2592{
2593 Symbols_data* sd = this->get_symbols_data();
ca09d69a 2594 gold_assert(sd != NULL);
ef15dade
ST
2595
2596 const unsigned char* pshdrs = sd->section_headers_data
2e702c99 2597 + This::shdr_size * shndx;
ef15dade 2598 typename This::Shdr shdr(pshdrs);
2e702c99 2599 return shdr.get_sh_entsize();
ef15dade
ST
2600}
2601
61ba1cf9
ILT
2602// Write out the local symbols.
2603
2604template<int size, bool big_endian>
2605void
6fa2a40b 2606Sized_relobj_file<size, big_endian>::write_local_symbols(
17a1d0a9
ILT
2607 Output_file* of,
2608 const Stringpool* sympool,
d491d34e
ILT
2609 const Stringpool* dynpool,
2610 Output_symtab_xindex* symtab_xindex,
cdc29364
CC
2611 Output_symtab_xindex* dynsym_xindex,
2612 off_t symtab_off)
61ba1cf9 2613{
99e9a495
ILT
2614 const bool strip_all = parameters->options().strip_all();
2615 if (strip_all)
2616 {
2617 if (this->output_local_dynsym_count_ == 0)
2618 return;
2619 this->output_local_symbol_count_ = 0;
2620 }
9e2dcb77 2621
a3ad94ed 2622 gold_assert(this->symtab_shndx_ != -1U);
645f8123 2623 if (this->symtab_shndx_ == 0)
61ba1cf9
ILT
2624 {
2625 // This object has no symbols. Weird but legal.
2626 return;
2627 }
2628
2629 // Read the symbol table section header.
2ea97941 2630 const unsigned int symtab_shndx = this->symtab_shndx_;
645f8123 2631 typename This::Shdr symtabshdr(this,
2ea97941 2632 this->elf_file_.section_header(symtab_shndx));
a3ad94ed 2633 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
92e059d8 2634 const unsigned int loccount = this->local_symbol_count_;
a3ad94ed 2635 gold_assert(loccount == symtabshdr.get_sh_info());
61ba1cf9
ILT
2636
2637 // Read the local symbols.
2ea97941
ILT
2638 const int sym_size = This::sym_size;
2639 off_t locsize = loccount * sym_size;
61ba1cf9 2640 const unsigned char* psyms = this->get_view(symtabshdr.get_sh_offset(),
39d0cb0e 2641 locsize, true, false);
61ba1cf9 2642
61ba1cf9 2643 // Read the symbol names.
d491d34e
ILT
2644 const unsigned int strtab_shndx =
2645 this->adjust_shndx(symtabshdr.get_sh_link());
8383303e 2646 section_size_type strtab_size;
645f8123 2647 const unsigned char* pnamesu = this->section_contents(strtab_shndx,
9eb9fa57 2648 &strtab_size,
cb295612 2649 false);
61ba1cf9
ILT
2650 const char* pnames = reinterpret_cast<const char*>(pnamesu);
2651
7bf1f802
ILT
2652 // Get views into the output file for the portions of the symbol table
2653 // and the dynamic symbol table that we will be writing.
2ea97941 2654 off_t output_size = this->output_local_symbol_count_ * sym_size;
f2619d6c 2655 unsigned char* oview = NULL;
7bf1f802 2656 if (output_size > 0)
cdc29364
CC
2657 oview = of->get_output_view(symtab_off + this->local_symbol_offset_,
2658 output_size);
7bf1f802 2659
2ea97941 2660 off_t dyn_output_size = this->output_local_dynsym_count_ * sym_size;
7bf1f802
ILT
2661 unsigned char* dyn_oview = NULL;
2662 if (dyn_output_size > 0)
2663 dyn_oview = of->get_output_view(this->local_dynsym_offset_,
2e702c99 2664 dyn_output_size);
61ba1cf9 2665
e0a1e121 2666 const Output_sections& out_sections(this->output_sections());
c06b7b0b 2667
a3ad94ed 2668 gold_assert(this->local_values_.size() == loccount);
61ba1cf9 2669
61ba1cf9 2670 unsigned char* ov = oview;
7bf1f802 2671 unsigned char* dyn_ov = dyn_oview;
2ea97941
ILT
2672 psyms += sym_size;
2673 for (unsigned int i = 1; i < loccount; ++i, psyms += sym_size)
61ba1cf9
ILT
2674 {
2675 elfcpp::Sym<size, big_endian> isym(psyms);
f6ce93d6 2676
d491d34e 2677 Symbol_value<size>& lv(this->local_values_[i]);
74b03b91 2678 typename elfcpp::Elf_types<size>::Elf_Addr sym_value = lv.value(this, 0);
d491d34e
ILT
2679
2680 bool is_ordinary;
2681 unsigned int st_shndx = this->adjust_sym_shndx(i, isym.get_st_shndx(),
2682 &is_ordinary);
2683 if (is_ordinary)
61ba1cf9 2684 {
ef9beddf
ILT
2685 gold_assert(st_shndx < out_sections.size());
2686 if (out_sections[st_shndx] == NULL)
61ba1cf9 2687 continue;
74b03b91
CC
2688 // In relocatable object files symbol values are section relative.
2689 if (parameters->options().relocatable())
2690 sym_value -= out_sections[st_shndx]->address();
ef9beddf 2691 st_shndx = out_sections[st_shndx]->out_shndx();
d491d34e
ILT
2692 if (st_shndx >= elfcpp::SHN_LORESERVE)
2693 {
d3bbad62 2694 if (lv.has_output_symtab_entry())
d491d34e 2695 symtab_xindex->add(lv.output_symtab_index(), st_shndx);
d3bbad62 2696 if (lv.has_output_dynsym_entry())
d491d34e
ILT
2697 dynsym_xindex->add(lv.output_dynsym_index(), st_shndx);
2698 st_shndx = elfcpp::SHN_XINDEX;
2699 }
61ba1cf9
ILT
2700 }
2701
7bf1f802 2702 // Write the symbol to the output symbol table.
d3bbad62 2703 if (lv.has_output_symtab_entry())
2e702c99
RM
2704 {
2705 elfcpp::Sym_write<size, big_endian> osym(ov);
2706
2707 gold_assert(isym.get_st_name() < strtab_size);
2708 const char* name = pnames + isym.get_st_name();
2709 osym.put_st_name(sympool->get_offset(name));
74b03b91 2710 osym.put_st_value(sym_value);
2e702c99
RM
2711 osym.put_st_size(isym.get_st_size());
2712 osym.put_st_info(isym.get_st_info());
2713 osym.put_st_other(isym.get_st_other());
2714 osym.put_st_shndx(st_shndx);
2715
2716 ov += sym_size;
2717 }
7bf1f802
ILT
2718
2719 // Write the symbol to the output dynamic symbol table.
d3bbad62 2720 if (lv.has_output_dynsym_entry())
2e702c99
RM
2721 {
2722 gold_assert(dyn_ov < dyn_oview + dyn_output_size);
2723 elfcpp::Sym_write<size, big_endian> osym(dyn_ov);
2724
2725 gold_assert(isym.get_st_name() < strtab_size);
2726 const char* name = pnames + isym.get_st_name();
2727 osym.put_st_name(dynpool->get_offset(name));
74b03b91 2728 osym.put_st_value(sym_value);
2e702c99
RM
2729 osym.put_st_size(isym.get_st_size());
2730 osym.put_st_info(isym.get_st_info());
2731 osym.put_st_other(isym.get_st_other());
2732 osym.put_st_shndx(st_shndx);
2733
2734 dyn_ov += sym_size;
2735 }
7bf1f802 2736 }
f6ce93d6 2737
61ba1cf9 2738
7bf1f802
ILT
2739 if (output_size > 0)
2740 {
2741 gold_assert(ov - oview == output_size);
cdc29364
CC
2742 of->write_output_view(symtab_off + this->local_symbol_offset_,
2743 output_size, oview);
61ba1cf9
ILT
2744 }
2745
7bf1f802
ILT
2746 if (dyn_output_size > 0)
2747 {
2748 gold_assert(dyn_ov - dyn_oview == dyn_output_size);
2749 of->write_output_view(this->local_dynsym_offset_, dyn_output_size,
2e702c99 2750 dyn_oview);
7bf1f802 2751 }
61ba1cf9
ILT
2752}
2753
f7e2ee48
ILT
2754// Set *INFO to symbolic information about the offset OFFSET in the
2755// section SHNDX. Return true if we found something, false if we
2756// found nothing.
2757
2758template<int size, bool big_endian>
2759bool
6fa2a40b 2760Sized_relobj_file<size, big_endian>::get_symbol_location_info(
f7e2ee48 2761 unsigned int shndx,
2ea97941 2762 off_t offset,
f7e2ee48
ILT
2763 Symbol_location_info* info)
2764{
2765 if (this->symtab_shndx_ == 0)
2766 return false;
2767
8383303e 2768 section_size_type symbols_size;
f7e2ee48
ILT
2769 const unsigned char* symbols = this->section_contents(this->symtab_shndx_,
2770 &symbols_size,
2771 false);
2772
d491d34e
ILT
2773 unsigned int symbol_names_shndx =
2774 this->adjust_shndx(this->section_link(this->symtab_shndx_));
8383303e 2775 section_size_type names_size;
f7e2ee48
ILT
2776 const unsigned char* symbol_names_u =
2777 this->section_contents(symbol_names_shndx, &names_size, false);
2778 const char* symbol_names = reinterpret_cast<const char*>(symbol_names_u);
2779
2ea97941
ILT
2780 const int sym_size = This::sym_size;
2781 const size_t count = symbols_size / sym_size;
f7e2ee48
ILT
2782
2783 const unsigned char* p = symbols;
2ea97941 2784 for (size_t i = 0; i < count; ++i, p += sym_size)
f7e2ee48
ILT
2785 {
2786 elfcpp::Sym<size, big_endian> sym(p);
2787
2788 if (sym.get_st_type() == elfcpp::STT_FILE)
2789 {
2790 if (sym.get_st_name() >= names_size)
2791 info->source_file = "(invalid)";
2792 else
2793 info->source_file = symbol_names + sym.get_st_name();
d491d34e 2794 continue;
f7e2ee48 2795 }
d491d34e
ILT
2796
2797 bool is_ordinary;
2798 unsigned int st_shndx = this->adjust_sym_shndx(i, sym.get_st_shndx(),
2799 &is_ordinary);
2800 if (is_ordinary
2801 && st_shndx == shndx
2ea97941 2802 && static_cast<off_t>(sym.get_st_value()) <= offset
d491d34e 2803 && (static_cast<off_t>(sym.get_st_value() + sym.get_st_size())
2ea97941 2804 > offset))
2e702c99 2805 {
60e8b3fc 2806 info->enclosing_symbol_type = sym.get_st_type();
2e702c99 2807 if (sym.get_st_name() > names_size)
f7e2ee48
ILT
2808 info->enclosing_symbol_name = "(invalid)";
2809 else
2e702c99
RM
2810 {
2811 info->enclosing_symbol_name = symbol_names + sym.get_st_name();
2812 if (parameters->options().do_demangle())
2813 {
2814 char* demangled_name = cplus_demangle(
2815 info->enclosing_symbol_name.c_str(),
2816 DMGL_ANSI | DMGL_PARAMS);
2817 if (demangled_name != NULL)
2818 {
2819 info->enclosing_symbol_name.assign(demangled_name);
2820 free(demangled_name);
2821 }
2822 }
2823 }
f7e2ee48 2824 return true;
2e702c99 2825 }
f7e2ee48
ILT
2826 }
2827
2828 return false;
2829}
2830
e94cf127
CC
2831// Look for a kept section corresponding to the given discarded section,
2832// and return its output address. This is used only for relocations in
2833// debugging sections. If we can't find the kept section, return 0.
2834
2835template<int size, bool big_endian>
6fa2a40b
CC
2836typename Sized_relobj_file<size, big_endian>::Address
2837Sized_relobj_file<size, big_endian>::map_to_kept_section(
e94cf127
CC
2838 unsigned int shndx,
2839 bool* found) const
2840{
1ef4d87f
ILT
2841 Relobj* kept_object;
2842 unsigned int kept_shndx;
2843 if (this->get_kept_comdat_section(shndx, &kept_object, &kept_shndx))
e94cf127 2844 {
6fa2a40b
CC
2845 Sized_relobj_file<size, big_endian>* kept_relobj =
2846 static_cast<Sized_relobj_file<size, big_endian>*>(kept_object);
1ef4d87f 2847 Output_section* os = kept_relobj->output_section(kept_shndx);
2ea97941
ILT
2848 Address offset = kept_relobj->get_output_section_offset(kept_shndx);
2849 if (os != NULL && offset != invalid_address)
1ef4d87f
ILT
2850 {
2851 *found = true;
2ea97941 2852 return os->address() + offset;
1ef4d87f 2853 }
e94cf127
CC
2854 }
2855 *found = false;
2856 return 0;
2857}
2858
92de84a6
ILT
2859// Get symbol counts.
2860
2861template<int size, bool big_endian>
2862void
6fa2a40b 2863Sized_relobj_file<size, big_endian>::do_get_global_symbol_counts(
92de84a6
ILT
2864 const Symbol_table*,
2865 size_t* defined,
2866 size_t* used) const
2867{
2868 *defined = this->defined_count_;
2869 size_t count = 0;
cdc29364 2870 for (typename Symbols::const_iterator p = this->symbols_.begin();
92de84a6
ILT
2871 p != this->symbols_.end();
2872 ++p)
2873 if (*p != NULL
2874 && (*p)->source() == Symbol::FROM_OBJECT
2875 && (*p)->object() == this
2876 && (*p)->is_defined())
2877 ++count;
2878 *used = count;
2879}
2880
5dd8762a
CC
2881// Return a view of the decompressed contents of a section. Set *PLEN
2882// to the size. Set *IS_NEW to true if the contents need to be freed
2883// by the caller.
2884
5dd8762a 2885const unsigned char*
0d5bbdb0 2886Object::decompressed_section_contents(
5dd8762a
CC
2887 unsigned int shndx,
2888 section_size_type* plen,
2889 bool* is_new)
2890{
2891 section_size_type buffer_size;
c1027032
CC
2892 const unsigned char* buffer = this->do_section_contents(shndx, &buffer_size,
2893 false);
5dd8762a
CC
2894
2895 if (this->compressed_sections_ == NULL)
2896 {
2897 *plen = buffer_size;
2898 *is_new = false;
2899 return buffer;
2900 }
2901
2902 Compressed_section_map::const_iterator p =
2903 this->compressed_sections_->find(shndx);
2904 if (p == this->compressed_sections_->end())
2905 {
2906 *plen = buffer_size;
2907 *is_new = false;
2908 return buffer;
2909 }
2910
2911 section_size_type uncompressed_size = p->second.size;
2912 if (p->second.contents != NULL)
2913 {
2914 *plen = uncompressed_size;
2915 *is_new = false;
2916 return p->second.contents;
2917 }
2918
2919 unsigned char* uncompressed_data = new unsigned char[uncompressed_size];
2920 if (!decompress_input_section(buffer,
2921 buffer_size,
2922 uncompressed_data,
48058663
L
2923 uncompressed_size,
2924 elfsize(),
2925 is_big_endian(),
2926 p->second.flag))
5dd8762a
CC
2927 this->error(_("could not decompress section %s"),
2928 this->do_section_name(shndx).c_str());
2929
2930 // We could cache the results in p->second.contents and store
2931 // false in *IS_NEW, but build_compressed_section_map() would
2932 // have done so if it had expected it to be profitable. If
2933 // we reach this point, we expect to need the contents only
2934 // once in this pass.
2935 *plen = uncompressed_size;
2936 *is_new = true;
2937 return uncompressed_data;
2938}
2939
2940// Discard any buffers of uncompressed sections. This is done
2941// at the end of the Add_symbols task.
2942
5dd8762a 2943void
0d5bbdb0 2944Object::discard_decompressed_sections()
5dd8762a
CC
2945{
2946 if (this->compressed_sections_ == NULL)
2947 return;
2948
2949 for (Compressed_section_map::iterator p = this->compressed_sections_->begin();
2950 p != this->compressed_sections_->end();
2951 ++p)
2952 {
2953 if (p->second.contents != NULL)
2e702c99
RM
2954 {
2955 delete[] p->second.contents;
2956 p->second.contents = NULL;
2957 }
5dd8762a
CC
2958 }
2959}
2960
54dc6425
ILT
2961// Input_objects methods.
2962
008db82e
ILT
2963// Add a regular relocatable object to the list. Return false if this
2964// object should be ignored.
f6ce93d6 2965
008db82e 2966bool
54dc6425
ILT
2967Input_objects::add_object(Object* obj)
2968{
c5818ff1
CC
2969 // Print the filename if the -t/--trace option is selected.
2970 if (parameters->options().trace())
2971 gold_info("%s", obj->name().c_str());
2972
008db82e 2973 if (!obj->is_dynamic())
f6ce93d6 2974 this->relobj_list_.push_back(static_cast<Relobj*>(obj));
008db82e
ILT
2975 else
2976 {
2977 // See if this is a duplicate SONAME.
2978 Dynobj* dynobj = static_cast<Dynobj*>(obj);
9a2d6984 2979 const char* soname = dynobj->soname();
008db82e 2980
4bfacfd3
CC
2981 Unordered_map<std::string, Object*>::value_type val(soname, obj);
2982 std::pair<Unordered_map<std::string, Object*>::iterator, bool> ins =
2983 this->sonames_.insert(val);
008db82e
ILT
2984 if (!ins.second)
2985 {
2986 // We have already seen a dynamic object with this soname.
4bfacfd3
CC
2987 // If any instances of this object on the command line have
2988 // the --no-as-needed flag, make sure the one we keep is
2989 // marked so.
2990 if (!obj->as_needed())
2991 {
2992 gold_assert(ins.first->second != NULL);
2993 ins.first->second->clear_as_needed();
2994 }
008db82e
ILT
2995 return false;
2996 }
2997
2998 this->dynobj_list_.push_back(dynobj);
2999 }
75f65a3e 3000
92de84a6 3001 // Add this object to the cross-referencer if requested.
dde3f402
ILT
3002 if (parameters->options().user_set_print_symbol_counts()
3003 || parameters->options().cref())
92de84a6
ILT
3004 {
3005 if (this->cref_ == NULL)
3006 this->cref_ = new Cref();
3007 this->cref_->add_object(obj);
3008 }
3009
008db82e 3010 return true;
54dc6425
ILT
3011}
3012
e2827e5f
ILT
3013// For each dynamic object, record whether we've seen all of its
3014// explicit dependencies.
3015
3016void
3017Input_objects::check_dynamic_dependencies() const
3018{
7eaea549 3019 bool issued_copy_dt_needed_error = false;
e2827e5f
ILT
3020 for (Dynobj_list::const_iterator p = this->dynobj_list_.begin();
3021 p != this->dynobj_list_.end();
3022 ++p)
3023 {
3024 const Dynobj::Needed& needed((*p)->needed());
3025 bool found_all = true;
7eaea549
ILT
3026 Dynobj::Needed::const_iterator pneeded;
3027 for (pneeded = needed.begin(); pneeded != needed.end(); ++pneeded)
e2827e5f
ILT
3028 {
3029 if (this->sonames_.find(*pneeded) == this->sonames_.end())
3030 {
3031 found_all = false;
3032 break;
3033 }
3034 }
3035 (*p)->set_has_unknown_needed_entries(!found_all);
7eaea549
ILT
3036
3037 // --copy-dt-needed-entries aka --add-needed is a GNU ld option
612bdda1
ILT
3038 // that gold does not support. However, they cause no trouble
3039 // unless there is a DT_NEEDED entry that we don't know about;
3040 // warn only in that case.
7eaea549
ILT
3041 if (!found_all
3042 && !issued_copy_dt_needed_error
3043 && (parameters->options().copy_dt_needed_entries()
3044 || parameters->options().add_needed()))
3045 {
3046 const char* optname;
3047 if (parameters->options().copy_dt_needed_entries())
3048 optname = "--copy-dt-needed-entries";
3049 else
3050 optname = "--add-needed";
3051 gold_error(_("%s is not supported but is required for %s in %s"),
3052 optname, (*pneeded).c_str(), (*p)->name().c_str());
3053 issued_copy_dt_needed_error = true;
3054 }
e2827e5f
ILT
3055 }
3056}
3057
92de84a6
ILT
3058// Start processing an archive.
3059
3060void
3061Input_objects::archive_start(Archive* archive)
3062{
dde3f402
ILT
3063 if (parameters->options().user_set_print_symbol_counts()
3064 || parameters->options().cref())
92de84a6
ILT
3065 {
3066 if (this->cref_ == NULL)
3067 this->cref_ = new Cref();
3068 this->cref_->add_archive_start(archive);
3069 }
3070}
3071
3072// Stop processing an archive.
3073
3074void
3075Input_objects::archive_stop(Archive* archive)
3076{
dde3f402
ILT
3077 if (parameters->options().user_set_print_symbol_counts()
3078 || parameters->options().cref())
92de84a6
ILT
3079 this->cref_->add_archive_stop(archive);
3080}
3081
3082// Print symbol counts
3083
3084void
3085Input_objects::print_symbol_counts(const Symbol_table* symtab) const
3086{
3087 if (parameters->options().user_set_print_symbol_counts()
3088 && this->cref_ != NULL)
3089 this->cref_->print_symbol_counts(symtab);
3090}
3091
dde3f402
ILT
3092// Print a cross reference table.
3093
3094void
3095Input_objects::print_cref(const Symbol_table* symtab, FILE* f) const
3096{
3097 if (parameters->options().cref() && this->cref_ != NULL)
3098 this->cref_->print_cref(symtab, f);
3099}
3100
92e059d8
ILT
3101// Relocate_info methods.
3102
308ecdc7
ILT
3103// Return a string describing the location of a relocation when file
3104// and lineno information is not available. This is only used in
3105// error messages.
92e059d8
ILT
3106
3107template<int size, bool big_endian>
3108std::string
f7e2ee48 3109Relocate_info<size, big_endian>::location(size_t, off_t offset) const
92e059d8 3110{
a55ce7fe 3111 Sized_dwarf_line_info<size, big_endian> line_info(this->object);
308ecdc7
ILT
3112 std::string ret = line_info.addr2line(this->data_shndx, offset, NULL);
3113 if (!ret.empty())
3114 return ret;
3115
3116 ret = this->object->name();
4c50553d 3117
f7e2ee48
ILT
3118 Symbol_location_info info;
3119 if (this->object->get_symbol_location_info(this->data_shndx, offset, &info))
3120 {
308ecdc7
ILT
3121 if (!info.source_file.empty())
3122 {
3123 ret += ":";
3124 ret += info.source_file;
3125 }
60e8b3fc
CC
3126 ret += ":";
3127 if (info.enclosing_symbol_type == elfcpp::STT_FUNC)
3128 ret += _("function ");
3129 ret += info.enclosing_symbol_name;
308ecdc7 3130 return ret;
f7e2ee48 3131 }
308ecdc7
ILT
3132
3133 ret += "(";
3134 ret += this->object->section_name(this->data_shndx);
3135 char buf[100];
3136 snprintf(buf, sizeof buf, "+0x%lx)", static_cast<long>(offset));
3137 ret += buf;
92e059d8
ILT
3138 return ret;
3139}
3140
bae7f79e
ILT
3141} // End namespace gold.
3142
3143namespace
3144{
3145
3146using namespace gold;
3147
3148// Read an ELF file with the header and return the appropriate
3149// instance of Object.
3150
3151template<int size, bool big_endian>
3152Object*
3153make_elf_sized_object(const std::string& name, Input_file* input_file,
029ba973
ILT
3154 off_t offset, const elfcpp::Ehdr<size, big_endian>& ehdr,
3155 bool* punconfigured)
bae7f79e 3156{
2e702c99
RM
3157 Target* target = select_target(input_file, offset,
3158 ehdr.get_e_machine(), size, big_endian,
f733487b
DK
3159 ehdr.get_e_ident()[elfcpp::EI_OSABI],
3160 ehdr.get_e_ident()[elfcpp::EI_ABIVERSION]);
3161 if (target == NULL)
3162 gold_fatal(_("%s: unsupported ELF machine number %d"),
3163 name.c_str(), ehdr.get_e_machine());
029ba973
ILT
3164
3165 if (!parameters->target_valid())
3166 set_parameters_target(target);
3167 else if (target != &parameters->target())
3168 {
3169 if (punconfigured != NULL)
3170 *punconfigured = true;
3171 else
3172 gold_error(_("%s: incompatible target"), name.c_str());
3173 return NULL;
3174 }
3175
f733487b
DK
3176 return target->make_elf_object<size, big_endian>(name, input_file, offset,
3177 ehdr);
bae7f79e
ILT
3178}
3179
3180} // End anonymous namespace.
3181
3182namespace gold
3183{
3184
f6060a4d
ILT
3185// Return whether INPUT_FILE is an ELF object.
3186
3187bool
3188is_elf_object(Input_file* input_file, off_t offset,
ca09d69a 3189 const unsigned char** start, int* read_size)
f6060a4d
ILT
3190{
3191 off_t filesize = input_file->file().filesize();
c549a694 3192 int want = elfcpp::Elf_recognizer::max_header_size;
f6060a4d
ILT
3193 if (filesize - offset < want)
3194 want = filesize - offset;
3195
3196 const unsigned char* p = input_file->file().get_view(offset, 0, want,
3197 true, false);
3198 *start = p;
3199 *read_size = want;
3200
c549a694 3201 return elfcpp::Elf_recognizer::is_elf_file(p, want);
f6060a4d
ILT
3202}
3203
bae7f79e
ILT
3204// Read an ELF file and return the appropriate instance of Object.
3205
3206Object*
3207make_elf_object(const std::string& name, Input_file* input_file, off_t offset,
15f8229b
ILT
3208 const unsigned char* p, section_offset_type bytes,
3209 bool* punconfigured)
bae7f79e 3210{
15f8229b
ILT
3211 if (punconfigured != NULL)
3212 *punconfigured = false;
3213
c549a694 3214 std::string error;
ac33a407
DK
3215 bool big_endian = false;
3216 int size = 0;
c549a694 3217 if (!elfcpp::Elf_recognizer::is_valid_header(p, bytes, &size,
2e702c99 3218 &big_endian, &error))
bae7f79e 3219 {
c549a694 3220 gold_error(_("%s: %s"), name.c_str(), error.c_str());
75f2446e 3221 return NULL;
bae7f79e
ILT
3222 }
3223
c549a694 3224 if (size == 32)
bae7f79e 3225 {
bae7f79e
ILT
3226 if (big_endian)
3227 {
193a53d9 3228#ifdef HAVE_TARGET_32_BIG
bae7f79e
ILT
3229 elfcpp::Ehdr<32, true> ehdr(p);
3230 return make_elf_sized_object<32, true>(name, input_file,
029ba973 3231 offset, ehdr, punconfigured);
193a53d9 3232#else
15f8229b
ILT
3233 if (punconfigured != NULL)
3234 *punconfigured = true;
3235 else
3236 gold_error(_("%s: not configured to support "
3237 "32-bit big-endian object"),
3238 name.c_str());
75f2446e 3239 return NULL;
193a53d9 3240#endif
bae7f79e
ILT
3241 }
3242 else
3243 {
193a53d9 3244#ifdef HAVE_TARGET_32_LITTLE
bae7f79e
ILT
3245 elfcpp::Ehdr<32, false> ehdr(p);
3246 return make_elf_sized_object<32, false>(name, input_file,
029ba973 3247 offset, ehdr, punconfigured);
193a53d9 3248#else
15f8229b
ILT
3249 if (punconfigured != NULL)
3250 *punconfigured = true;
3251 else
3252 gold_error(_("%s: not configured to support "
3253 "32-bit little-endian object"),
3254 name.c_str());
75f2446e 3255 return NULL;
193a53d9 3256#endif
bae7f79e
ILT
3257 }
3258 }
c549a694 3259 else if (size == 64)
bae7f79e 3260 {
bae7f79e
ILT
3261 if (big_endian)
3262 {
193a53d9 3263#ifdef HAVE_TARGET_64_BIG
bae7f79e
ILT
3264 elfcpp::Ehdr<64, true> ehdr(p);
3265 return make_elf_sized_object<64, true>(name, input_file,
029ba973 3266 offset, ehdr, punconfigured);
193a53d9 3267#else
15f8229b
ILT
3268 if (punconfigured != NULL)
3269 *punconfigured = true;
3270 else
3271 gold_error(_("%s: not configured to support "
3272 "64-bit big-endian object"),
3273 name.c_str());
75f2446e 3274 return NULL;
193a53d9 3275#endif
bae7f79e
ILT
3276 }
3277 else
3278 {
193a53d9 3279#ifdef HAVE_TARGET_64_LITTLE
bae7f79e
ILT
3280 elfcpp::Ehdr<64, false> ehdr(p);
3281 return make_elf_sized_object<64, false>(name, input_file,
029ba973 3282 offset, ehdr, punconfigured);
193a53d9 3283#else
15f8229b
ILT
3284 if (punconfigured != NULL)
3285 *punconfigured = true;
3286 else
3287 gold_error(_("%s: not configured to support "
3288 "64-bit little-endian object"),
3289 name.c_str());
75f2446e 3290 return NULL;
193a53d9 3291#endif
bae7f79e
ILT
3292 }
3293 }
c549a694
ILT
3294 else
3295 gold_unreachable();
bae7f79e
ILT
3296}
3297
04bf7072
ILT
3298// Instantiate the templates we need.
3299
dbe40a88
RÁE
3300#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
3301template
3302void
3303Relobj::initialize_input_to_output_map<64>(unsigned int shndx,
beb8418f 3304 elfcpp::Elf_types<64>::Elf_Addr starting_address,
dbe40a88 3305 Unordered_map<section_offset_type,
beb8418f 3306 elfcpp::Elf_types<64>::Elf_Addr>* output_addresses) const;
dbe40a88
RÁE
3307#endif
3308
3309#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
3310template
3311void
3312Relobj::initialize_input_to_output_map<32>(unsigned int shndx,
beb8418f 3313 elfcpp::Elf_types<32>::Elf_Addr starting_address,
dbe40a88 3314 Unordered_map<section_offset_type,
beb8418f 3315 elfcpp::Elf_types<32>::Elf_Addr>* output_addresses) const;
dbe40a88
RÁE
3316#endif
3317
04bf7072
ILT
3318#ifdef HAVE_TARGET_32_LITTLE
3319template
3320void
3321Object::read_section_data<32, false>(elfcpp::Elf_file<32, false, Object>*,
3322 Read_symbols_data*);
dc3714f3
AM
3323template
3324const unsigned char*
3325Object::find_shdr<32,false>(const unsigned char*, const char*, const char*,
3326 section_size_type, const unsigned char*) const;
04bf7072
ILT
3327#endif
3328
3329#ifdef HAVE_TARGET_32_BIG
3330template
3331void
3332Object::read_section_data<32, true>(elfcpp::Elf_file<32, true, Object>*,
3333 Read_symbols_data*);
dc3714f3
AM
3334template
3335const unsigned char*
3336Object::find_shdr<32,true>(const unsigned char*, const char*, const char*,
3337 section_size_type, const unsigned char*) const;
04bf7072
ILT
3338#endif
3339
3340#ifdef HAVE_TARGET_64_LITTLE
3341template
3342void
3343Object::read_section_data<64, false>(elfcpp::Elf_file<64, false, Object>*,
3344 Read_symbols_data*);
dc3714f3
AM
3345template
3346const unsigned char*
3347Object::find_shdr<64,false>(const unsigned char*, const char*, const char*,
3348 section_size_type, const unsigned char*) const;
04bf7072
ILT
3349#endif
3350
3351#ifdef HAVE_TARGET_64_BIG
3352template
3353void
3354Object::read_section_data<64, true>(elfcpp::Elf_file<64, true, Object>*,
3355 Read_symbols_data*);
dc3714f3
AM
3356template
3357const unsigned char*
3358Object::find_shdr<64,true>(const unsigned char*, const char*, const char*,
3359 section_size_type, const unsigned char*) const;
04bf7072 3360#endif
bae7f79e 3361
193a53d9 3362#ifdef HAVE_TARGET_32_LITTLE
c6905c28
CC
3363template
3364class Sized_relobj<32, false>;
3365
bae7f79e 3366template
6fa2a40b 3367class Sized_relobj_file<32, false>;
193a53d9 3368#endif
bae7f79e 3369
193a53d9 3370#ifdef HAVE_TARGET_32_BIG
c6905c28
CC
3371template
3372class Sized_relobj<32, true>;
3373
bae7f79e 3374template
6fa2a40b 3375class Sized_relobj_file<32, true>;
193a53d9 3376#endif
bae7f79e 3377
193a53d9 3378#ifdef HAVE_TARGET_64_LITTLE
c6905c28
CC
3379template
3380class Sized_relobj<64, false>;
3381
bae7f79e 3382template
6fa2a40b 3383class Sized_relobj_file<64, false>;
193a53d9 3384#endif
bae7f79e 3385
193a53d9 3386#ifdef HAVE_TARGET_64_BIG
c6905c28
CC
3387template
3388class Sized_relobj<64, true>;
3389
bae7f79e 3390template
6fa2a40b 3391class Sized_relobj_file<64, true>;
193a53d9 3392#endif
bae7f79e 3393
193a53d9 3394#ifdef HAVE_TARGET_32_LITTLE
92e059d8
ILT
3395template
3396struct Relocate_info<32, false>;
193a53d9 3397#endif
92e059d8 3398
193a53d9 3399#ifdef HAVE_TARGET_32_BIG
92e059d8
ILT
3400template
3401struct Relocate_info<32, true>;
193a53d9 3402#endif
92e059d8 3403
193a53d9 3404#ifdef HAVE_TARGET_64_LITTLE
92e059d8
ILT
3405template
3406struct Relocate_info<64, false>;
193a53d9 3407#endif
92e059d8 3408
193a53d9 3409#ifdef HAVE_TARGET_64_BIG
92e059d8
ILT
3410template
3411struct Relocate_info<64, true>;
193a53d9 3412#endif
92e059d8 3413
9d3b86f6
ILT
3414#ifdef HAVE_TARGET_32_LITTLE
3415template
3416void
3417Xindex::initialize_symtab_xindex<32, false>(Object*, unsigned int);
3418
3419template
3420void
3421Xindex::read_symtab_xindex<32, false>(Object*, unsigned int,
3422 const unsigned char*);
3423#endif
3424
3425#ifdef HAVE_TARGET_32_BIG
3426template
3427void
3428Xindex::initialize_symtab_xindex<32, true>(Object*, unsigned int);
3429
3430template
3431void
3432Xindex::read_symtab_xindex<32, true>(Object*, unsigned int,
3433 const unsigned char*);
3434#endif
3435
3436#ifdef HAVE_TARGET_64_LITTLE
3437template
3438void
3439Xindex::initialize_symtab_xindex<64, false>(Object*, unsigned int);
3440
3441template
3442void
3443Xindex::read_symtab_xindex<64, false>(Object*, unsigned int,
3444 const unsigned char*);
3445#endif
3446
3447#ifdef HAVE_TARGET_64_BIG
3448template
3449void
3450Xindex::initialize_symtab_xindex<64, true>(Object*, unsigned int);
3451
3452template
3453void
3454Xindex::read_symtab_xindex<64, true>(Object*, unsigned int,
3455 const unsigned char*);
3456#endif
3457
bae7f79e 3458} // End namespace gold.