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