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