Use STRING_COMMA_LEN to avoid strlen.
[deliverable/binutils-gdb.git] / gold / object.cc
CommitLineData
bae7f79e
ILT
1// object.cc -- support for an object file for linking in gold
2
dde3f402 3// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6cb15b7f
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
8// This program is free software; you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation; either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21// MA 02110-1301, USA.
22
bae7f79e
ILT
23#include "gold.h"
24
25#include <cerrno>
26#include <cstring>
645f8123 27#include <cstdarg>
a2b1aa12 28#include "demangle.h"
9a2d6984 29#include "libiberty.h"
bae7f79e 30
6d03d481 31#include "gc.h"
14bfc3f5 32#include "target-select.h"
5c2c6c95 33#include "dwarf_reader.h"
a2fb1b05 34#include "layout.h"
61ba1cf9 35#include "output.h"
f6ce93d6 36#include "symtab.h"
92de84a6 37#include "cref.h"
4c50553d 38#include "reloc.h"
f6ce93d6
ILT
39#include "object.h"
40#include "dynobj.h"
5995b570 41#include "plugin.h"
bae7f79e
ILT
42
43namespace gold
44{
45
d491d34e
ILT
46// Class Xindex.
47
48// Initialize the symtab_xindex_ array. Find the SHT_SYMTAB_SHNDX
49// section and read it in. SYMTAB_SHNDX is the index of the symbol
50// table we care about.
51
52template<int size, bool big_endian>
53void
2ea97941 54Xindex::initialize_symtab_xindex(Object* object, unsigned int symtab_shndx)
d491d34e
ILT
55{
56 if (!this->symtab_xindex_.empty())
57 return;
58
2ea97941 59 gold_assert(symtab_shndx != 0);
d491d34e
ILT
60
61 // Look through the sections in reverse order, on the theory that it
62 // is more likely to be near the end than the beginning.
63 unsigned int i = object->shnum();
64 while (i > 0)
65 {
66 --i;
67 if (object->section_type(i) == elfcpp::SHT_SYMTAB_SHNDX
2ea97941 68 && this->adjust_shndx(object->section_link(i)) == symtab_shndx)
d491d34e
ILT
69 {
70 this->read_symtab_xindex<size, big_endian>(object, i, NULL);
71 return;
72 }
73 }
74
75 object->error(_("missing SHT_SYMTAB_SHNDX section"));
76}
77
78// Read in the symtab_xindex_ array, given the section index of the
79// SHT_SYMTAB_SHNDX section. If PSHDRS is not NULL, it points at the
80// section headers.
81
82template<int size, bool big_endian>
83void
84Xindex::read_symtab_xindex(Object* object, unsigned int xindex_shndx,
85 const unsigned char* pshdrs)
86{
87 section_size_type bytecount;
88 const unsigned char* contents;
89 if (pshdrs == NULL)
90 contents = object->section_contents(xindex_shndx, &bytecount, false);
91 else
92 {
93 const unsigned char* p = (pshdrs
94 + (xindex_shndx
95 * elfcpp::Elf_sizes<size>::shdr_size));
96 typename elfcpp::Shdr<size, big_endian> shdr(p);
97 bytecount = convert_to_section_size_type(shdr.get_sh_size());
98 contents = object->get_view(shdr.get_sh_offset(), bytecount, true, false);
99 }
100
101 gold_assert(this->symtab_xindex_.empty());
102 this->symtab_xindex_.reserve(bytecount / 4);
103 for (section_size_type i = 0; i < bytecount; i += 4)
104 {
105 unsigned int shndx = elfcpp::Swap<32, big_endian>::readval(contents + i);
106 // We preadjust the section indexes we save.
107 this->symtab_xindex_.push_back(this->adjust_shndx(shndx));
108 }
109}
110
111// Symbol symndx has a section of SHN_XINDEX; return the real section
112// index.
113
114unsigned int
115Xindex::sym_xindex_to_shndx(Object* object, unsigned int symndx)
116{
117 if (symndx >= this->symtab_xindex_.size())
118 {
119 object->error(_("symbol %u out of range for SHT_SYMTAB_SHNDX section"),
120 symndx);
121 return elfcpp::SHN_UNDEF;
122 }
123 unsigned int shndx = this->symtab_xindex_[symndx];
124 if (shndx < elfcpp::SHN_LORESERVE || shndx >= object->shnum())
125 {
126 object->error(_("extended index for symbol %u out of range: %u"),
127 symndx, shndx);
128 return elfcpp::SHN_UNDEF;
129 }
130 return shndx;
131}
132
645f8123
ILT
133// Class Object.
134
75f2446e
ILT
135// Report an error for this object file. This is used by the
136// elfcpp::Elf_file interface, and also called by the Object code
137// itself.
645f8123
ILT
138
139void
75f2446e 140Object::error(const char* format, ...) const
645f8123
ILT
141{
142 va_list args;
645f8123 143 va_start(args, format);
75f2446e
ILT
144 char* buf = NULL;
145 if (vasprintf(&buf, format, args) < 0)
146 gold_nomem();
645f8123 147 va_end(args);
75f2446e
ILT
148 gold_error(_("%s: %s"), this->name().c_str(), buf);
149 free(buf);
645f8123
ILT
150}
151
152// Return a view of the contents of a section.
153
154const unsigned char*
8383303e
ILT
155Object::section_contents(unsigned int shndx, section_size_type* plen,
156 bool cache)
645f8123
ILT
157{
158 Location loc(this->do_section_contents(shndx));
8383303e 159 *plen = convert_to_section_size_type(loc.data_size);
8d63875c
ILT
160 if (*plen == 0)
161 {
162 static const unsigned char empty[1] = { '\0' };
163 return empty;
164 }
39d0cb0e 165 return this->get_view(loc.file_offset, *plen, true, cache);
645f8123
ILT
166}
167
dbe717ef
ILT
168// Read the section data into SD. This is code common to Sized_relobj
169// and Sized_dynobj, so we put it into Object.
170
171template<int size, bool big_endian>
172void
173Object::read_section_data(elfcpp::Elf_file<size, big_endian, Object>* elf_file,
174 Read_symbols_data* sd)
175{
176 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
177
178 // Read the section headers.
179 const off_t shoff = elf_file->shoff();
2ea97941
ILT
180 const unsigned int shnum = this->shnum();
181 sd->section_headers = this->get_lasting_view(shoff, shnum * shdr_size,
39d0cb0e 182 true, true);
dbe717ef
ILT
183
184 // Read the section names.
185 const unsigned char* pshdrs = sd->section_headers->data();
186 const unsigned char* pshdrnames = pshdrs + elf_file->shstrndx() * shdr_size;
187 typename elfcpp::Shdr<size, big_endian> shdrnames(pshdrnames);
188
189 if (shdrnames.get_sh_type() != elfcpp::SHT_STRTAB)
75f2446e
ILT
190 this->error(_("section name section has wrong type: %u"),
191 static_cast<unsigned int>(shdrnames.get_sh_type()));
dbe717ef 192
8383303e
ILT
193 sd->section_names_size =
194 convert_to_section_size_type(shdrnames.get_sh_size());
dbe717ef 195 sd->section_names = this->get_lasting_view(shdrnames.get_sh_offset(),
39d0cb0e
ILT
196 sd->section_names_size, false,
197 false);
dbe717ef
ILT
198}
199
2ea97941 200// If NAME is the name of a special .gnu.warning section, arrange for
dbe717ef
ILT
201// the warning to be issued. SHNDX is the section index. Return
202// whether it is a warning section.
203
204bool
2ea97941 205Object::handle_gnu_warning_section(const char* name, unsigned int shndx,
dbe717ef
ILT
206 Symbol_table* symtab)
207{
208 const char warn_prefix[] = ".gnu.warning.";
209 const int warn_prefix_len = sizeof warn_prefix - 1;
2ea97941 210 if (strncmp(name, warn_prefix, warn_prefix_len) == 0)
dbe717ef 211 {
cb295612
ILT
212 // Read the section contents to get the warning text. It would
213 // be nicer if we only did this if we have to actually issue a
214 // warning. Unfortunately, warnings are issued as we relocate
215 // sections. That means that we can not lock the object then,
216 // as we might try to issue the same warning multiple times
217 // simultaneously.
218 section_size_type len;
219 const unsigned char* contents = this->section_contents(shndx, &len,
220 false);
8d63875c
ILT
221 if (len == 0)
222 {
2ea97941 223 const char* warning = name + warn_prefix_len;
8d63875c
ILT
224 contents = reinterpret_cast<const unsigned char*>(warning);
225 len = strlen(warning);
226 }
cb295612 227 std::string warning(reinterpret_cast<const char*>(contents), len);
2ea97941 228 symtab->add_warning(name + warn_prefix_len, this, warning);
dbe717ef
ILT
229 return true;
230 }
231 return false;
232}
233
2ea97941 234// If NAME is the name of the special section which indicates that
364c7fa5
ILT
235// this object was compiled with -fstack-split, mark it accordingly.
236
237bool
2ea97941 238Object::handle_split_stack_section(const char* name)
364c7fa5 239{
2ea97941 240 if (strcmp(name, ".note.GNU-split-stack") == 0)
364c7fa5
ILT
241 {
242 this->uses_split_stack_ = true;
243 return true;
244 }
2ea97941 245 if (strcmp(name, ".note.GNU-no-split-stack") == 0)
364c7fa5
ILT
246 {
247 this->has_no_split_stack_ = true;
248 return true;
249 }
250 return false;
251}
252
6d03d481
ST
253// Class Relobj
254
255// To copy the symbols data read from the file to a local data structure.
256// This function is called from do_layout only while doing garbage
257// collection.
258
259void
260Relobj::copy_symbols_data(Symbols_data* gc_sd, Read_symbols_data* sd,
261 unsigned int section_header_size)
262{
263 gc_sd->section_headers_data =
264 new unsigned char[(section_header_size)];
265 memcpy(gc_sd->section_headers_data, sd->section_headers->data(),
266 section_header_size);
267 gc_sd->section_names_data =
268 new unsigned char[sd->section_names_size];
269 memcpy(gc_sd->section_names_data, sd->section_names->data(),
270 sd->section_names_size);
271 gc_sd->section_names_size = sd->section_names_size;
272 if (sd->symbols != NULL)
273 {
274 gc_sd->symbols_data =
275 new unsigned char[sd->symbols_size];
276 memcpy(gc_sd->symbols_data, sd->symbols->data(),
277 sd->symbols_size);
278 }
279 else
280 {
281 gc_sd->symbols_data = NULL;
282 }
283 gc_sd->symbols_size = sd->symbols_size;
284 gc_sd->external_symbols_offset = sd->external_symbols_offset;
285 if (sd->symbol_names != NULL)
286 {
287 gc_sd->symbol_names_data =
288 new unsigned char[sd->symbol_names_size];
289 memcpy(gc_sd->symbol_names_data, sd->symbol_names->data(),
290 sd->symbol_names_size);
291 }
292 else
293 {
294 gc_sd->symbol_names_data = NULL;
295 }
296 gc_sd->symbol_names_size = sd->symbol_names_size;
297}
298
299// This function determines if a particular section name must be included
300// in the link. This is used during garbage collection to determine the
301// roots of the worklist.
302
303bool
2ea97941 304Relobj::is_section_name_included(const char* name)
6d03d481 305{
2ea97941
ILT
306 if (is_prefix_of(".ctors", name)
307 || is_prefix_of(".dtors", name)
308 || is_prefix_of(".note", name)
309 || is_prefix_of(".init", name)
310 || is_prefix_of(".fini", name)
311 || is_prefix_of(".gcc_except_table", name)
312 || is_prefix_of(".jcr", name)
313 || is_prefix_of(".preinit_array", name)
314 || (is_prefix_of(".text", name)
315 && strstr(name, "personality"))
316 || (is_prefix_of(".data", name)
317 && strstr(name, "personality"))
fa618ee4
ILT
318 || (is_prefix_of(".gnu.linkonce.d", name)
319 && strstr(name, "personality")))
6d03d481
ST
320 {
321 return true;
322 }
323 return false;
324}
325
f6ce93d6 326// Class Sized_relobj.
bae7f79e
ILT
327
328template<int size, bool big_endian>
f6ce93d6 329Sized_relobj<size, big_endian>::Sized_relobj(
2ea97941
ILT
330 const std::string& name,
331 Input_file* input_file,
332 off_t offset,
bae7f79e 333 const elfcpp::Ehdr<size, big_endian>& ehdr)
2ea97941 334 : Relobj(name, input_file, offset),
645f8123 335 elf_file_(this, ehdr),
dbe717ef 336 symtab_shndx_(-1U),
61ba1cf9
ILT
337 local_symbol_count_(0),
338 output_local_symbol_count_(0),
7bf1f802 339 output_local_dynsym_count_(0),
730cdc88 340 symbols_(),
92de84a6 341 defined_count_(0),
61ba1cf9 342 local_symbol_offset_(0),
7bf1f802 343 local_dynsym_offset_(0),
e727fa71 344 local_values_(),
730cdc88 345 local_got_offsets_(),
ef9beddf 346 kept_comdat_sections_(),
805bb01c
DK
347 has_eh_frame_(false),
348 discarded_eh_frame_shndx_(-1U)
bae7f79e 349{
bae7f79e
ILT
350}
351
352template<int size, bool big_endian>
f6ce93d6 353Sized_relobj<size, big_endian>::~Sized_relobj()
bae7f79e
ILT
354{
355}
356
645f8123 357// Set up an object file based on the file header. This sets up the
029ba973 358// section information.
bae7f79e
ILT
359
360template<int size, bool big_endian>
361void
c0a62865 362Sized_relobj<size, big_endian>::do_setup()
bae7f79e 363{
2ea97941
ILT
364 const unsigned int shnum = this->elf_file_.shnum();
365 this->set_shnum(shnum);
dbe717ef 366}
12e14209 367
dbe717ef
ILT
368// Find the SHT_SYMTAB section, given the section headers. The ELF
369// standard says that maybe in the future there can be more than one
370// SHT_SYMTAB section. Until somebody figures out how that could
371// work, we assume there is only one.
12e14209 372
dbe717ef
ILT
373template<int size, bool big_endian>
374void
375Sized_relobj<size, big_endian>::find_symtab(const unsigned char* pshdrs)
376{
2ea97941 377 const unsigned int shnum = this->shnum();
dbe717ef 378 this->symtab_shndx_ = 0;
2ea97941 379 if (shnum > 0)
bae7f79e 380 {
dbe717ef
ILT
381 // Look through the sections in reverse order, since gas tends
382 // to put the symbol table at the end.
2ea97941
ILT
383 const unsigned char* p = pshdrs + shnum * This::shdr_size;
384 unsigned int i = shnum;
d491d34e
ILT
385 unsigned int xindex_shndx = 0;
386 unsigned int xindex_link = 0;
dbe717ef 387 while (i > 0)
bae7f79e 388 {
dbe717ef
ILT
389 --i;
390 p -= This::shdr_size;
391 typename This::Shdr shdr(p);
392 if (shdr.get_sh_type() == elfcpp::SHT_SYMTAB)
393 {
394 this->symtab_shndx_ = i;
d491d34e
ILT
395 if (xindex_shndx > 0 && xindex_link == i)
396 {
397 Xindex* xindex =
398 new Xindex(this->elf_file_.large_shndx_offset());
399 xindex->read_symtab_xindex<size, big_endian>(this,
400 xindex_shndx,
401 pshdrs);
402 this->set_xindex(xindex);
403 }
dbe717ef
ILT
404 break;
405 }
d491d34e
ILT
406
407 // Try to pick up the SHT_SYMTAB_SHNDX section, if there is
408 // one. This will work if it follows the SHT_SYMTAB
409 // section.
410 if (shdr.get_sh_type() == elfcpp::SHT_SYMTAB_SHNDX)
411 {
412 xindex_shndx = i;
413 xindex_link = this->adjust_shndx(shdr.get_sh_link());
414 }
bae7f79e 415 }
bae7f79e
ILT
416 }
417}
418
d491d34e
ILT
419// Return the Xindex structure to use for object with lots of
420// sections.
421
422template<int size, bool big_endian>
423Xindex*
424Sized_relobj<size, big_endian>::do_initialize_xindex()
425{
426 gold_assert(this->symtab_shndx_ != -1U);
427 Xindex* xindex = new Xindex(this->elf_file_.large_shndx_offset());
428 xindex->initialize_symtab_xindex<size, big_endian>(this, this->symtab_shndx_);
429 return xindex;
430}
431
730cdc88
ILT
432// Return whether SHDR has the right type and flags to be a GNU
433// .eh_frame section.
434
435template<int size, bool big_endian>
436bool
437Sized_relobj<size, big_endian>::check_eh_frame_flags(
438 const elfcpp::Shdr<size, big_endian>* shdr) const
439{
2c38906f 440 return (shdr->get_sh_type() == elfcpp::SHT_PROGBITS
1650c4ff 441 && (shdr->get_sh_flags() & elfcpp::SHF_ALLOC) != 0);
730cdc88
ILT
442}
443
444// Return whether there is a GNU .eh_frame section, given the section
445// headers and the section names.
446
447template<int size, bool big_endian>
448bool
8383303e
ILT
449Sized_relobj<size, big_endian>::find_eh_frame(
450 const unsigned char* pshdrs,
451 const char* names,
452 section_size_type names_size) const
730cdc88 453{
2ea97941 454 const unsigned int shnum = this->shnum();
730cdc88 455 const unsigned char* p = pshdrs + This::shdr_size;
2ea97941 456 for (unsigned int i = 1; i < shnum; ++i, p += This::shdr_size)
730cdc88
ILT
457 {
458 typename This::Shdr shdr(p);
459 if (this->check_eh_frame_flags(&shdr))
460 {
461 if (shdr.get_sh_name() >= names_size)
462 {
463 this->error(_("bad section name offset for section %u: %lu"),
464 i, static_cast<unsigned long>(shdr.get_sh_name()));
465 continue;
466 }
467
2ea97941
ILT
468 const char* name = names + shdr.get_sh_name();
469 if (strcmp(name, ".eh_frame") == 0)
730cdc88
ILT
470 return true;
471 }
472 }
473 return false;
474}
475
12e14209 476// Read the sections and symbols from an object file.
bae7f79e
ILT
477
478template<int size, bool big_endian>
12e14209 479void
f6ce93d6 480Sized_relobj<size, big_endian>::do_read_symbols(Read_symbols_data* sd)
bae7f79e 481{
dbe717ef 482 this->read_section_data(&this->elf_file_, sd);
12e14209 483
dbe717ef
ILT
484 const unsigned char* const pshdrs = sd->section_headers->data();
485
486 this->find_symtab(pshdrs);
12e14209 487
730cdc88
ILT
488 const unsigned char* namesu = sd->section_names->data();
489 const char* names = reinterpret_cast<const char*>(namesu);
1650c4ff
ILT
490 if (memmem(names, sd->section_names_size, ".eh_frame", 10) != NULL)
491 {
492 if (this->find_eh_frame(pshdrs, names, sd->section_names_size))
493 this->has_eh_frame_ = true;
494 }
730cdc88 495
75f2446e
ILT
496 sd->symbols = NULL;
497 sd->symbols_size = 0;
730cdc88 498 sd->external_symbols_offset = 0;
75f2446e
ILT
499 sd->symbol_names = NULL;
500 sd->symbol_names_size = 0;
501
645f8123 502 if (this->symtab_shndx_ == 0)
bae7f79e
ILT
503 {
504 // No symbol table. Weird but legal.
12e14209 505 return;
bae7f79e
ILT
506 }
507
12e14209
ILT
508 // Get the symbol table section header.
509 typename This::Shdr symtabshdr(pshdrs
645f8123 510 + this->symtab_shndx_ * This::shdr_size);
a3ad94ed 511 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
bae7f79e 512
730cdc88
ILT
513 // If this object has a .eh_frame section, we need all the symbols.
514 // Otherwise we only need the external symbols. While it would be
515 // simpler to just always read all the symbols, I've seen object
516 // files with well over 2000 local symbols, which for a 64-bit
517 // object file format is over 5 pages that we don't need to read
518 // now.
519
2ea97941 520 const int sym_size = This::sym_size;
92e059d8
ILT
521 const unsigned int loccount = symtabshdr.get_sh_info();
522 this->local_symbol_count_ = loccount;
7bf1f802 523 this->local_values_.resize(loccount);
2ea97941 524 section_offset_type locsize = loccount * sym_size;
730cdc88 525 off_t dataoff = symtabshdr.get_sh_offset();
8383303e
ILT
526 section_size_type datasize =
527 convert_to_section_size_type(symtabshdr.get_sh_size());
730cdc88 528 off_t extoff = dataoff + locsize;
8383303e 529 section_size_type extsize = datasize - locsize;
75f65a3e 530
730cdc88 531 off_t readoff = this->has_eh_frame_ ? dataoff : extoff;
8383303e 532 section_size_type readsize = this->has_eh_frame_ ? datasize : extsize;
730cdc88 533
3f2e6a2d
CC
534 if (readsize == 0)
535 {
536 // No external symbols. Also weird but also legal.
537 return;
538 }
539
39d0cb0e 540 File_view* fvsymtab = this->get_lasting_view(readoff, readsize, true, false);
bae7f79e
ILT
541
542 // Read the section header for the symbol names.
d491d34e 543 unsigned int strtab_shndx = this->adjust_shndx(symtabshdr.get_sh_link());
dbe717ef 544 if (strtab_shndx >= this->shnum())
bae7f79e 545 {
75f2446e
ILT
546 this->error(_("invalid symbol table name index: %u"), strtab_shndx);
547 return;
bae7f79e 548 }
dbe717ef 549 typename This::Shdr strtabshdr(pshdrs + strtab_shndx * This::shdr_size);
bae7f79e
ILT
550 if (strtabshdr.get_sh_type() != elfcpp::SHT_STRTAB)
551 {
75f2446e
ILT
552 this->error(_("symbol table name section has wrong type: %u"),
553 static_cast<unsigned int>(strtabshdr.get_sh_type()));
554 return;
bae7f79e
ILT
555 }
556
557 // Read the symbol names.
558 File_view* fvstrtab = this->get_lasting_view(strtabshdr.get_sh_offset(),
39d0cb0e
ILT
559 strtabshdr.get_sh_size(),
560 false, true);
bae7f79e 561
12e14209 562 sd->symbols = fvsymtab;
730cdc88
ILT
563 sd->symbols_size = readsize;
564 sd->external_symbols_offset = this->has_eh_frame_ ? locsize : 0;
12e14209 565 sd->symbol_names = fvstrtab;
8383303e
ILT
566 sd->symbol_names_size =
567 convert_to_section_size_type(strtabshdr.get_sh_size());
a2fb1b05
ILT
568}
569
730cdc88 570// Return the section index of symbol SYM. Set *VALUE to its value in
d491d34e
ILT
571// the object file. Set *IS_ORDINARY if this is an ordinary section
572// index. not a special cod between SHN_LORESERVE and SHN_HIRESERVE.
573// Note that for a symbol which is not defined in this object file,
574// this will set *VALUE to 0 and return SHN_UNDEF; it will not return
575// the final value of the symbol in the link.
730cdc88
ILT
576
577template<int size, bool big_endian>
578unsigned int
579Sized_relobj<size, big_endian>::symbol_section_and_value(unsigned int sym,
d491d34e
ILT
580 Address* value,
581 bool* is_ordinary)
730cdc88 582{
8383303e 583 section_size_type symbols_size;
730cdc88
ILT
584 const unsigned char* symbols = this->section_contents(this->symtab_shndx_,
585 &symbols_size,
586 false);
587
588 const size_t count = symbols_size / This::sym_size;
589 gold_assert(sym < count);
590
591 elfcpp::Sym<size, big_endian> elfsym(symbols + sym * This::sym_size);
592 *value = elfsym.get_st_value();
d491d34e
ILT
593
594 return this->adjust_sym_shndx(sym, elfsym.get_st_shndx(), is_ordinary);
730cdc88
ILT
595}
596
a2fb1b05
ILT
597// Return whether to include a section group in the link. LAYOUT is
598// used to keep track of which section groups we have already seen.
599// INDEX is the index of the section group and SHDR is the section
600// header. If we do not want to include this group, we set bits in
601// OMIT for each section which should be discarded.
602
603template<int size, bool big_endian>
604bool
f6ce93d6 605Sized_relobj<size, big_endian>::include_section_group(
6a74a719 606 Symbol_table* symtab,
2ea97941 607 Layout* layout,
a2fb1b05 608 unsigned int index,
2ea97941 609 const char* name,
e94cf127
CC
610 const unsigned char* shdrs,
611 const char* section_names,
612 section_size_type section_names_size,
a2fb1b05
ILT
613 std::vector<bool>* omit)
614{
615 // Read the section contents.
e94cf127 616 typename This::Shdr shdr(shdrs + index * This::shdr_size);
a2fb1b05 617 const unsigned char* pcon = this->get_view(shdr.get_sh_offset(),
39d0cb0e 618 shdr.get_sh_size(), true, false);
a2fb1b05
ILT
619 const elfcpp::Elf_Word* pword =
620 reinterpret_cast<const elfcpp::Elf_Word*>(pcon);
621
622 // The first word contains flags. We only care about COMDAT section
623 // groups. Other section groups are always included in the link
624 // just like ordinary sections.
f6ce93d6 625 elfcpp::Elf_Word flags = elfcpp::Swap<32, big_endian>::readval(pword);
a2fb1b05
ILT
626
627 // Look up the group signature, which is the name of a symbol. This
628 // is a lot of effort to go to to read a string. Why didn't they
6a74a719
ILT
629 // just have the group signature point into the string table, rather
630 // than indirect through a symbol?
a2fb1b05
ILT
631
632 // Get the appropriate symbol table header (this will normally be
633 // the single SHT_SYMTAB section, but in principle it need not be).
d491d34e 634 const unsigned int link = this->adjust_shndx(shdr.get_sh_link());
645f8123 635 typename This::Shdr symshdr(this, this->elf_file_.section_header(link));
a2fb1b05
ILT
636
637 // Read the symbol table entry.
d491d34e
ILT
638 unsigned int symndx = shdr.get_sh_info();
639 if (symndx >= symshdr.get_sh_size() / This::sym_size)
a2fb1b05 640 {
75f2446e 641 this->error(_("section group %u info %u out of range"),
d491d34e 642 index, symndx);
75f2446e 643 return false;
a2fb1b05 644 }
d491d34e 645 off_t symoff = symshdr.get_sh_offset() + symndx * This::sym_size;
39d0cb0e
ILT
646 const unsigned char* psym = this->get_view(symoff, This::sym_size, true,
647 false);
a2fb1b05
ILT
648 elfcpp::Sym<size, big_endian> sym(psym);
649
a2fb1b05 650 // Read the symbol table names.
8383303e 651 section_size_type symnamelen;
645f8123 652 const unsigned char* psymnamesu;
d491d34e
ILT
653 psymnamesu = this->section_contents(this->adjust_shndx(symshdr.get_sh_link()),
654 &symnamelen, true);
a2fb1b05
ILT
655 const char* psymnames = reinterpret_cast<const char*>(psymnamesu);
656
657 // Get the section group signature.
645f8123 658 if (sym.get_st_name() >= symnamelen)
a2fb1b05 659 {
75f2446e 660 this->error(_("symbol %u name offset %u out of range"),
d491d34e 661 symndx, sym.get_st_name());
75f2446e 662 return false;
a2fb1b05
ILT
663 }
664
e94cf127 665 std::string signature(psymnames + sym.get_st_name());
a2fb1b05 666
ead1e424
ILT
667 // It seems that some versions of gas will create a section group
668 // associated with a section symbol, and then fail to give a name to
669 // the section symbol. In such a case, use the name of the section.
645f8123 670 if (signature[0] == '\0' && sym.get_st_type() == elfcpp::STT_SECTION)
ead1e424 671 {
d491d34e
ILT
672 bool is_ordinary;
673 unsigned int sym_shndx = this->adjust_sym_shndx(symndx,
674 sym.get_st_shndx(),
675 &is_ordinary);
676 if (!is_ordinary || sym_shndx >= this->shnum())
677 {
678 this->error(_("symbol %u invalid section index %u"),
679 symndx, sym_shndx);
680 return false;
681 }
e94cf127
CC
682 typename This::Shdr member_shdr(shdrs + sym_shndx * This::shdr_size);
683 if (member_shdr.get_sh_name() < section_names_size)
684 signature = section_names + member_shdr.get_sh_name();
ead1e424
ILT
685 }
686
e94cf127
CC
687 // Record this section group in the layout, and see whether we've already
688 // seen one with the same signature.
8a4c0b0d 689 bool include_group;
1ef4d87f
ILT
690 bool is_comdat;
691 Kept_section* kept_section = NULL;
6a74a719 692
8a4c0b0d 693 if ((flags & elfcpp::GRP_COMDAT) == 0)
1ef4d87f
ILT
694 {
695 include_group = true;
696 is_comdat = false;
697 }
8a4c0b0d 698 else
e94cf127 699 {
2ea97941
ILT
700 include_group = layout->find_or_add_kept_section(signature,
701 this, index, true,
702 true, &kept_section);
1ef4d87f 703 is_comdat = true;
6a74a719 704 }
a2fb1b05 705
a2fb1b05 706 size_t count = shdr.get_sh_size() / sizeof(elfcpp::Elf_Word);
8825ac63
ILT
707
708 std::vector<unsigned int> shndxes;
709 bool relocate_group = include_group && parameters->options().relocatable();
710 if (relocate_group)
711 shndxes.reserve(count - 1);
712
a2fb1b05
ILT
713 for (size_t i = 1; i < count; ++i)
714 {
1ef4d87f 715 elfcpp::Elf_Word shndx =
8825ac63
ILT
716 this->adjust_shndx(elfcpp::Swap<32, big_endian>::readval(pword + i));
717
718 if (relocate_group)
1ef4d87f 719 shndxes.push_back(shndx);
8825ac63 720
1ef4d87f 721 if (shndx >= this->shnum())
a2fb1b05 722 {
75f2446e 723 this->error(_("section %u in section group %u out of range"),
1ef4d87f 724 shndx, index);
75f2446e 725 continue;
a2fb1b05 726 }
55438702
ILT
727
728 // Check for an earlier section number, since we're going to get
729 // it wrong--we may have already decided to include the section.
1ef4d87f 730 if (shndx < index)
55438702 731 this->error(_("invalid section group %u refers to earlier section %u"),
1ef4d87f 732 index, shndx);
55438702 733
e94cf127 734 // Get the name of the member section.
1ef4d87f 735 typename This::Shdr member_shdr(shdrs + shndx * This::shdr_size);
e94cf127
CC
736 if (member_shdr.get_sh_name() >= section_names_size)
737 {
738 // This is an error, but it will be diagnosed eventually
739 // in do_layout, so we don't need to do anything here but
740 // ignore it.
741 continue;
742 }
743 std::string mname(section_names + member_shdr.get_sh_name());
744
1ef4d87f
ILT
745 if (include_group)
746 {
747 if (is_comdat)
748 kept_section->add_comdat_section(mname, shndx,
749 member_shdr.get_sh_size());
750 }
751 else
e94cf127 752 {
1ef4d87f
ILT
753 (*omit)[shndx] = true;
754
755 if (is_comdat)
e94cf127 756 {
1ef4d87f
ILT
757 Relobj* kept_object = kept_section->object();
758 if (kept_section->is_comdat())
759 {
760 // Find the corresponding kept section, and store
761 // that info in the discarded section table.
762 unsigned int kept_shndx;
763 uint64_t kept_size;
764 if (kept_section->find_comdat_section(mname, &kept_shndx,
765 &kept_size))
766 {
767 // We don't keep a mapping for this section if
768 // it has a different size. The mapping is only
769 // used for relocation processing, and we don't
770 // want to treat the sections as similar if the
771 // sizes are different. Checking the section
772 // size is the approach used by the GNU linker.
773 if (kept_size == member_shdr.get_sh_size())
774 this->set_kept_comdat_section(shndx, kept_object,
775 kept_shndx);
776 }
777 }
778 else
779 {
780 // The existing section is a linkonce section. Add
781 // a mapping if there is exactly one section in the
782 // group (which is true when COUNT == 2) and if it
783 // is the same size.
784 if (count == 2
785 && (kept_section->linkonce_size()
786 == member_shdr.get_sh_size()))
787 this->set_kept_comdat_section(shndx, kept_object,
788 kept_section->shndx());
789 }
e94cf127
CC
790 }
791 }
a2fb1b05
ILT
792 }
793
8825ac63 794 if (relocate_group)
2ea97941
ILT
795 layout->layout_group(symtab, this, index, name, signature.c_str(),
796 shdr, flags, &shndxes);
8825ac63 797
e94cf127 798 return include_group;
a2fb1b05
ILT
799}
800
801// Whether to include a linkonce section in the link. NAME is the
802// name of the section and SHDR is the section header.
803
804// Linkonce sections are a GNU extension implemented in the original
805// GNU linker before section groups were defined. The semantics are
806// that we only include one linkonce section with a given name. The
807// name of a linkonce section is normally .gnu.linkonce.T.SYMNAME,
808// where T is the type of section and SYMNAME is the name of a symbol.
809// In an attempt to make linkonce sections interact well with section
810// groups, we try to identify SYMNAME and use it like a section group
811// signature. We want to block section groups with that signature,
812// but not other linkonce sections with that signature. We also use
813// the full name of the linkonce section as a normal section group
814// signature.
815
816template<int size, bool big_endian>
817bool
f6ce93d6 818Sized_relobj<size, big_endian>::include_linkonce_section(
2ea97941 819 Layout* layout,
e94cf127 820 unsigned int index,
2ea97941 821 const char* name,
1ef4d87f 822 const elfcpp::Shdr<size, big_endian>& shdr)
a2fb1b05 823{
1ef4d87f 824 typename elfcpp::Elf_types<size>::Elf_WXword sh_size = shdr.get_sh_size();
ad435a24
ILT
825 // In general the symbol name we want will be the string following
826 // the last '.'. However, we have to handle the case of
827 // .gnu.linkonce.t.__i686.get_pc_thunk.bx, which was generated by
828 // some versions of gcc. So we use a heuristic: if the name starts
829 // with ".gnu.linkonce.t.", we use everything after that. Otherwise
830 // we look for the last '.'. We can't always simply skip
831 // ".gnu.linkonce.X", because we have to deal with cases like
832 // ".gnu.linkonce.d.rel.ro.local".
833 const char* const linkonce_t = ".gnu.linkonce.t.";
834 const char* symname;
2ea97941
ILT
835 if (strncmp(name, linkonce_t, strlen(linkonce_t)) == 0)
836 symname = name + strlen(linkonce_t);
ad435a24 837 else
2ea97941 838 symname = strrchr(name, '.') + 1;
e94cf127 839 std::string sig1(symname);
2ea97941 840 std::string sig2(name);
8a4c0b0d
ILT
841 Kept_section* kept1;
842 Kept_section* kept2;
2ea97941
ILT
843 bool include1 = layout->find_or_add_kept_section(sig1, this, index, false,
844 false, &kept1);
845 bool include2 = layout->find_or_add_kept_section(sig2, this, index, false,
846 true, &kept2);
e94cf127
CC
847
848 if (!include2)
849 {
1ef4d87f
ILT
850 // We are not including this section because we already saw the
851 // name of the section as a signature. This normally implies
852 // that the kept section is another linkonce section. If it is
853 // the same size, record it as the section which corresponds to
854 // this one.
855 if (kept2->object() != NULL
856 && !kept2->is_comdat()
857 && kept2->linkonce_size() == sh_size)
858 this->set_kept_comdat_section(index, kept2->object(), kept2->shndx());
e94cf127
CC
859 }
860 else if (!include1)
861 {
862 // The section is being discarded on the basis of its symbol
863 // name. This means that the corresponding kept section was
864 // part of a comdat group, and it will be difficult to identify
865 // the specific section within that group that corresponds to
866 // this linkonce section. We'll handle the simple case where
867 // the group has only one member section. Otherwise, it's not
868 // worth the effort.
1ef4d87f
ILT
869 unsigned int kept_shndx;
870 uint64_t kept_size;
871 if (kept1->object() != NULL
872 && kept1->is_comdat()
873 && kept1->find_single_comdat_section(&kept_shndx, &kept_size)
874 && kept_size == sh_size)
875 this->set_kept_comdat_section(index, kept1->object(), kept_shndx);
876 }
877 else
878 {
879 kept1->set_linkonce_size(sh_size);
880 kept2->set_linkonce_size(sh_size);
e94cf127
CC
881 }
882
a783673b 883 return include1 && include2;
a2fb1b05
ILT
884}
885
5995b570
CC
886// Layout an input section.
887
888template<int size, bool big_endian>
889inline void
2ea97941 890Sized_relobj<size, big_endian>::layout_section(Layout* layout,
5995b570 891 unsigned int shndx,
2ea97941 892 const char* name,
5995b570
CC
893 typename This::Shdr& shdr,
894 unsigned int reloc_shndx,
895 unsigned int reloc_type)
896{
2ea97941
ILT
897 off_t offset;
898 Output_section* os = layout->layout(this, shndx, name, shdr,
899 reloc_shndx, reloc_type, &offset);
5995b570
CC
900
901 this->output_sections()[shndx] = os;
2ea97941 902 if (offset == -1)
5995b570
CC
903 this->section_offsets_[shndx] = invalid_address;
904 else
2ea97941 905 this->section_offsets_[shndx] = convert_types<Address, off_t>(offset);
5995b570
CC
906
907 // If this section requires special handling, and if there are
908 // relocs that apply to it, then we must do the special handling
909 // before we apply the relocs.
2ea97941 910 if (offset == -1 && reloc_shndx != 0)
5995b570
CC
911 this->set_relocs_must_follow_section_writes();
912}
913
a2fb1b05
ILT
914// Lay out the input sections. We walk through the sections and check
915// whether they should be included in the link. If they should, we
916// pass them to the Layout object, which will return an output section
6d03d481 917// and an offset.
ef15dade
ST
918// During garbage collection (--gc-sections) and identical code folding
919// (--icf), this function is called twice. When it is called the first
920// time, it is for setting up some sections as roots to a work-list for
921// --gc-sections and to do comdat processing. Actual layout happens the
922// second time around after all the relevant sections have been determined.
923// The first time, is_worklist_ready or is_icf_ready is false. It is then
924// set to true after the garbage collection worklist or identical code
925// folding is processed and the relevant sections to be kept are
926// determined. Then, this function is called again to layout the sections.
a2fb1b05
ILT
927
928template<int size, bool big_endian>
929void
7e1edb90 930Sized_relobj<size, big_endian>::do_layout(Symbol_table* symtab,
2ea97941 931 Layout* layout,
12e14209 932 Read_symbols_data* sd)
a2fb1b05 933{
2ea97941 934 const unsigned int shnum = this->shnum();
ef15dade
ST
935 bool is_gc_pass_one = ((parameters->options().gc_sections()
936 && !symtab->gc()->is_worklist_ready())
032ce4e9 937 || (parameters->options().icf_enabled()
ef15dade
ST
938 && !symtab->icf()->is_icf_ready()));
939
940 bool is_gc_pass_two = ((parameters->options().gc_sections()
941 && symtab->gc()->is_worklist_ready())
032ce4e9 942 || (parameters->options().icf_enabled()
ef15dade
ST
943 && symtab->icf()->is_icf_ready()));
944
945 bool is_gc_or_icf = (parameters->options().gc_sections()
032ce4e9 946 || parameters->options().icf_enabled());
ef15dade
ST
947
948 // Both is_gc_pass_one and is_gc_pass_two should not be true.
949 gold_assert(!(is_gc_pass_one && is_gc_pass_two));
950
2ea97941 951 if (shnum == 0)
12e14209 952 return;
e0ebcf42 953 Symbols_data* gc_sd = NULL;
6d03d481
ST
954 if (is_gc_pass_one)
955 {
956 // During garbage collection save the symbols data to use it when
957 // re-entering this function.
958 gc_sd = new Symbols_data;
2ea97941 959 this->copy_symbols_data(gc_sd, sd, This::shdr_size * shnum);
6d03d481
ST
960 this->set_symbols_data(gc_sd);
961 }
962 else if (is_gc_pass_two)
963 {
964 gc_sd = this->get_symbols_data();
965 }
966
967 const unsigned char* section_headers_data = NULL;
968 section_size_type section_names_size;
969 const unsigned char* symbols_data = NULL;
970 section_size_type symbols_size;
971 section_offset_type external_symbols_offset;
972 const unsigned char* symbol_names_data = NULL;
973 section_size_type symbol_names_size;
974
ef15dade 975 if (is_gc_or_icf)
6d03d481
ST
976 {
977 section_headers_data = gc_sd->section_headers_data;
978 section_names_size = gc_sd->section_names_size;
979 symbols_data = gc_sd->symbols_data;
980 symbols_size = gc_sd->symbols_size;
981 external_symbols_offset = gc_sd->external_symbols_offset;
982 symbol_names_data = gc_sd->symbol_names_data;
983 symbol_names_size = gc_sd->symbol_names_size;
984 }
985 else
986 {
987 section_headers_data = sd->section_headers->data();
988 section_names_size = sd->section_names_size;
989 if (sd->symbols != NULL)
990 symbols_data = sd->symbols->data();
991 symbols_size = sd->symbols_size;
992 external_symbols_offset = sd->external_symbols_offset;
993 if (sd->symbol_names != NULL)
994 symbol_names_data = sd->symbol_names->data();
995 symbol_names_size = sd->symbol_names_size;
996 }
a2fb1b05
ILT
997
998 // Get the section headers.
6d03d481 999 const unsigned char* shdrs = section_headers_data;
e94cf127 1000 const unsigned char* pshdrs;
a2fb1b05
ILT
1001
1002 // Get the section names.
ef15dade
ST
1003 const unsigned char* pnamesu = (is_gc_or_icf)
1004 ? gc_sd->section_names_data
1005 : sd->section_names->data();
1006
a2fb1b05
ILT
1007 const char* pnames = reinterpret_cast<const char*>(pnamesu);
1008
5995b570
CC
1009 // If any input files have been claimed by plugins, we need to defer
1010 // actual layout until the replacement files have arrived.
1011 const bool should_defer_layout =
1012 (parameters->options().has_plugins()
1013 && parameters->options().plugins()->should_defer_layout());
1014 unsigned int num_sections_to_defer = 0;
1015
730cdc88
ILT
1016 // For each section, record the index of the reloc section if any.
1017 // Use 0 to mean that there is no reloc section, -1U to mean that
1018 // there is more than one.
2ea97941
ILT
1019 std::vector<unsigned int> reloc_shndx(shnum, 0);
1020 std::vector<unsigned int> reloc_type(shnum, elfcpp::SHT_NULL);
730cdc88 1021 // Skip the first, dummy, section.
e94cf127 1022 pshdrs = shdrs + This::shdr_size;
2ea97941 1023 for (unsigned int i = 1; i < shnum; ++i, pshdrs += This::shdr_size)
730cdc88
ILT
1024 {
1025 typename This::Shdr shdr(pshdrs);
1026
5995b570
CC
1027 // Count the number of sections whose layout will be deferred.
1028 if (should_defer_layout && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
1029 ++num_sections_to_defer;
1030
730cdc88
ILT
1031 unsigned int sh_type = shdr.get_sh_type();
1032 if (sh_type == elfcpp::SHT_REL || sh_type == elfcpp::SHT_RELA)
1033 {
d491d34e 1034 unsigned int target_shndx = this->adjust_shndx(shdr.get_sh_info());
2ea97941 1035 if (target_shndx == 0 || target_shndx >= shnum)
730cdc88
ILT
1036 {
1037 this->error(_("relocation section %u has bad info %u"),
1038 i, target_shndx);
1039 continue;
1040 }
1041
1042 if (reloc_shndx[target_shndx] != 0)
1043 reloc_shndx[target_shndx] = -1U;
1044 else
1045 {
1046 reloc_shndx[target_shndx] = i;
1047 reloc_type[target_shndx] = sh_type;
1048 }
1049 }
1050 }
1051
ef9beddf
ILT
1052 Output_sections& out_sections(this->output_sections());
1053 std::vector<Address>& out_section_offsets(this->section_offsets_);
1054
6d03d481
ST
1055 if (!is_gc_pass_two)
1056 {
2ea97941
ILT
1057 out_sections.resize(shnum);
1058 out_section_offsets.resize(shnum);
6d03d481 1059 }
a2fb1b05 1060
88dd47ac
ILT
1061 // If we are only linking for symbols, then there is nothing else to
1062 // do here.
1063 if (this->input_file()->just_symbols())
1064 {
6d03d481
ST
1065 if (!is_gc_pass_two)
1066 {
1067 delete sd->section_headers;
1068 sd->section_headers = NULL;
1069 delete sd->section_names;
1070 sd->section_names = NULL;
1071 }
88dd47ac
ILT
1072 return;
1073 }
1074
5995b570
CC
1075 if (num_sections_to_defer > 0)
1076 {
1077 parameters->options().plugins()->add_deferred_layout_object(this);
1078 this->deferred_layout_.reserve(num_sections_to_defer);
1079 }
1080
35cdfc9a
ILT
1081 // Whether we've seen a .note.GNU-stack section.
1082 bool seen_gnu_stack = false;
1083 // The flags of a .note.GNU-stack section.
1084 uint64_t gnu_stack_flags = 0;
1085
a2fb1b05 1086 // Keep track of which sections to omit.
2ea97941 1087 std::vector<bool> omit(shnum, false);
a2fb1b05 1088
7019cd25 1089 // Keep track of reloc sections when emitting relocations.
8851ecca 1090 const bool relocatable = parameters->options().relocatable();
2ea97941
ILT
1091 const bool emit_relocs = (relocatable
1092 || parameters->options().emit_relocs());
6a74a719
ILT
1093 std::vector<unsigned int> reloc_sections;
1094
730cdc88
ILT
1095 // Keep track of .eh_frame sections.
1096 std::vector<unsigned int> eh_frame_sections;
1097
f6ce93d6 1098 // Skip the first, dummy, section.
e94cf127 1099 pshdrs = shdrs + This::shdr_size;
2ea97941 1100 for (unsigned int i = 1; i < shnum; ++i, pshdrs += This::shdr_size)
a2fb1b05 1101 {
75f65a3e 1102 typename This::Shdr shdr(pshdrs);
a2fb1b05 1103
6d03d481 1104 if (shdr.get_sh_name() >= section_names_size)
a2fb1b05 1105 {
75f2446e
ILT
1106 this->error(_("bad section name offset for section %u: %lu"),
1107 i, static_cast<unsigned long>(shdr.get_sh_name()));
1108 return;
a2fb1b05
ILT
1109 }
1110
2ea97941 1111 const char* name = pnames + shdr.get_sh_name();
a2fb1b05 1112
6d03d481
ST
1113 if (!is_gc_pass_two)
1114 {
2ea97941 1115 if (this->handle_gnu_warning_section(name, i, symtab))
6d03d481
ST
1116 {
1117 if (!relocatable)
1118 omit[i] = true;
1119 }
f6ce93d6 1120
6d03d481
ST
1121 // The .note.GNU-stack section is special. It gives the
1122 // protection flags that this object file requires for the stack
1123 // in memory.
2ea97941 1124 if (strcmp(name, ".note.GNU-stack") == 0)
6d03d481
ST
1125 {
1126 seen_gnu_stack = true;
1127 gnu_stack_flags |= shdr.get_sh_flags();
1128 omit[i] = true;
1129 }
35cdfc9a 1130
364c7fa5
ILT
1131 // The .note.GNU-split-stack section is also special. It
1132 // indicates that the object was compiled with
1133 // -fsplit-stack.
2ea97941 1134 if (this->handle_split_stack_section(name))
364c7fa5
ILT
1135 {
1136 if (!parameters->options().relocatable()
1137 && !parameters->options().shared())
1138 omit[i] = true;
1139 }
1140
05a352e6 1141 // Skip attributes section.
2ea97941 1142 if (parameters->target().is_attributes_section(name))
05a352e6
DK
1143 {
1144 omit[i] = true;
1145 }
1146
6d03d481
ST
1147 bool discard = omit[i];
1148 if (!discard)
1149 {
1150 if (shdr.get_sh_type() == elfcpp::SHT_GROUP)
1151 {
2ea97941 1152 if (!this->include_section_group(symtab, layout, i, name,
6d03d481
ST
1153 shdrs, pnames,
1154 section_names_size,
1155 &omit))
1156 discard = true;
1157 }
1158 else if ((shdr.get_sh_flags() & elfcpp::SHF_GROUP) == 0
2ea97941 1159 && Layout::is_linkonce(name))
6d03d481 1160 {
2ea97941 1161 if (!this->include_linkonce_section(layout, i, name, shdr))
6d03d481
ST
1162 discard = true;
1163 }
a2fb1b05 1164 }
a2fb1b05 1165
6d03d481
ST
1166 if (discard)
1167 {
1168 // Do not include this section in the link.
1169 out_sections[i] = NULL;
1170 out_section_offsets[i] = invalid_address;
1171 continue;
1172 }
1173 }
1174
ef15dade 1175 if (is_gc_pass_one && parameters->options().gc_sections())
6d03d481 1176 {
2ea97941 1177 if (is_section_name_included(name)
6d03d481
ST
1178 || shdr.get_sh_type() == elfcpp::SHT_INIT_ARRAY
1179 || shdr.get_sh_type() == elfcpp::SHT_FINI_ARRAY)
1180 {
1181 symtab->gc()->worklist().push(Section_id(this, i));
1182 }
f1ec9ded
ST
1183 // If the section name XXX can be represented as a C identifier
1184 // it cannot be discarded if there are references to
1185 // __start_XXX and __stop_XXX symbols. These need to be
1186 // specially handled.
1187 if (is_cident(name))
1188 {
1189 symtab->gc()->add_cident_section(name, Section_id(this, i));
1190 }
6d03d481 1191 }
a2fb1b05 1192
6a74a719
ILT
1193 // When doing a relocatable link we are going to copy input
1194 // reloc sections into the output. We only want to copy the
1195 // ones associated with sections which are not being discarded.
1196 // However, we don't know that yet for all sections. So save
6d03d481
ST
1197 // reloc sections and process them later. Garbage collection is
1198 // not triggered when relocatable code is desired.
2ea97941 1199 if (emit_relocs
6a74a719
ILT
1200 && (shdr.get_sh_type() == elfcpp::SHT_REL
1201 || shdr.get_sh_type() == elfcpp::SHT_RELA))
1202 {
1203 reloc_sections.push_back(i);
1204 continue;
1205 }
1206
8851ecca 1207 if (relocatable && shdr.get_sh_type() == elfcpp::SHT_GROUP)
6a74a719
ILT
1208 continue;
1209
730cdc88
ILT
1210 // The .eh_frame section is special. It holds exception frame
1211 // information that we need to read in order to generate the
1212 // exception frame header. We process these after all the other
1213 // sections so that the exception frame reader can reliably
1214 // determine which sections are being discarded, and discard the
1215 // corresponding information.
8851ecca 1216 if (!relocatable
2ea97941 1217 && strcmp(name, ".eh_frame") == 0
6d03d481
ST
1218 && this->check_eh_frame_flags(&shdr))
1219 {
1220 if (is_gc_pass_one)
1221 {
1222 out_sections[i] = reinterpret_cast<Output_section*>(1);
1223 out_section_offsets[i] = invalid_address;
1224 }
1225 else
1226 eh_frame_sections.push_back(i);
1227 continue;
1228 }
730cdc88 1229
ef15dade 1230 if (is_gc_pass_two && parameters->options().gc_sections())
6d03d481
ST
1231 {
1232 // This is executed during the second pass of garbage
1233 // collection. do_layout has been called before and some
1234 // sections have been already discarded. Simply ignore
1235 // such sections this time around.
1236 if (out_sections[i] == NULL)
1237 {
1238 gold_assert(out_section_offsets[i] == invalid_address);
1239 continue;
1240 }
ef15dade
ST
1241 if (((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0)
1242 && symtab->gc()->is_section_garbage(this, i))
6d03d481
ST
1243 {
1244 if (parameters->options().print_gc_sections())
89dd1680 1245 gold_info(_("%s: removing unused section from '%s'"
ef15dade 1246 " in file '%s'"),
6d03d481
ST
1247 program_name, this->section_name(i).c_str(),
1248 this->name().c_str());
1249 out_sections[i] = NULL;
1250 out_section_offsets[i] = invalid_address;
1251 continue;
1252 }
1253 }
ef15dade 1254
032ce4e9 1255 if (is_gc_pass_two && parameters->options().icf_enabled())
ef15dade
ST
1256 {
1257 if (out_sections[i] == NULL)
1258 {
1259 gold_assert(out_section_offsets[i] == invalid_address);
1260 continue;
1261 }
1262 if (((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0)
1263 && symtab->icf()->is_section_folded(this, i))
1264 {
1265 if (parameters->options().print_icf_sections())
1266 {
1267 Section_id folded =
1268 symtab->icf()->get_folded_section(this, i);
1269 Relobj* folded_obj =
1270 reinterpret_cast<Relobj*>(folded.first);
1271 gold_info(_("%s: ICF folding section '%s' in file '%s'"
1272 "into '%s' in file '%s'"),
1273 program_name, this->section_name(i).c_str(),
1274 this->name().c_str(),
1275 folded_obj->section_name(folded.second).c_str(),
1276 folded_obj->name().c_str());
1277 }
1278 out_sections[i] = NULL;
1279 out_section_offsets[i] = invalid_address;
1280 continue;
1281 }
1282 }
1283
6d03d481
ST
1284 // Defer layout here if input files are claimed by plugins. When gc
1285 // is turned on this function is called twice. For the second call
1286 // should_defer_layout should be false.
5995b570
CC
1287 if (should_defer_layout && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
1288 {
6d03d481 1289 gold_assert(!is_gc_pass_two);
2ea97941 1290 this->deferred_layout_.push_back(Deferred_layout(i, name,
6d03d481 1291 pshdrs,
5995b570
CC
1292 reloc_shndx[i],
1293 reloc_type[i]));
5995b570
CC
1294 // Put dummy values here; real values will be supplied by
1295 // do_layout_deferred_sections.
6d03d481
ST
1296 out_sections[i] = reinterpret_cast<Output_section*>(2);
1297 out_section_offsets[i] = invalid_address;
1298 continue;
ef15dade
ST
1299 }
1300
6d03d481
ST
1301 // During gc_pass_two if a section that was previously deferred is
1302 // found, do not layout the section as layout_deferred_sections will
1303 // do it later from gold.cc.
1304 if (is_gc_pass_two
1305 && (out_sections[i] == reinterpret_cast<Output_section*>(2)))
1306 continue;
1307
1308 if (is_gc_pass_one)
1309 {
1310 // This is during garbage collection. The out_sections are
1311 // assigned in the second call to this function.
5995b570
CC
1312 out_sections[i] = reinterpret_cast<Output_section*>(1);
1313 out_section_offsets[i] = invalid_address;
1314 }
ef9beddf 1315 else
5995b570 1316 {
6d03d481
ST
1317 // When garbage collection is switched on the actual layout
1318 // only happens in the second call.
2ea97941 1319 this->layout_section(layout, i, name, shdr, reloc_shndx[i],
5995b570
CC
1320 reloc_type[i]);
1321 }
12e14209
ILT
1322 }
1323
459e9b03 1324 if (!is_gc_pass_two)
2ea97941 1325 layout->layout_gnu_stack(seen_gnu_stack, gnu_stack_flags);
35cdfc9a 1326
6a74a719 1327 // When doing a relocatable link handle the reloc sections at the
ef15dade
ST
1328 // end. Garbage collection and Identical Code Folding is not
1329 // turned on for relocatable code.
2ea97941 1330 if (emit_relocs)
6a74a719 1331 this->size_relocatable_relocs();
ef15dade
ST
1332
1333 gold_assert(!(is_gc_or_icf) || reloc_sections.empty());
1334
6a74a719
ILT
1335 for (std::vector<unsigned int>::const_iterator p = reloc_sections.begin();
1336 p != reloc_sections.end();
1337 ++p)
1338 {
1339 unsigned int i = *p;
1340 const unsigned char* pshdr;
6d03d481 1341 pshdr = section_headers_data + i * This::shdr_size;
6a74a719
ILT
1342 typename This::Shdr shdr(pshdr);
1343
d491d34e 1344 unsigned int data_shndx = this->adjust_shndx(shdr.get_sh_info());
2ea97941 1345 if (data_shndx >= shnum)
6a74a719
ILT
1346 {
1347 // We already warned about this above.
1348 continue;
1349 }
1350
ef9beddf 1351 Output_section* data_section = out_sections[data_shndx];
6a74a719
ILT
1352 if (data_section == NULL)
1353 {
ef9beddf 1354 out_sections[i] = NULL;
eff45813 1355 out_section_offsets[i] = invalid_address;
6a74a719
ILT
1356 continue;
1357 }
1358
1359 Relocatable_relocs* rr = new Relocatable_relocs();
1360 this->set_relocatable_relocs(i, rr);
1361
2ea97941
ILT
1362 Output_section* os = layout->layout_reloc(this, i, shdr, data_section,
1363 rr);
ef9beddf 1364 out_sections[i] = os;
eff45813 1365 out_section_offsets[i] = invalid_address;
6a74a719
ILT
1366 }
1367
730cdc88 1368 // Handle the .eh_frame sections at the end.
6d03d481 1369 gold_assert(!is_gc_pass_one || eh_frame_sections.empty());
730cdc88
ILT
1370 for (std::vector<unsigned int>::const_iterator p = eh_frame_sections.begin();
1371 p != eh_frame_sections.end();
1372 ++p)
1373 {
1374 gold_assert(this->has_eh_frame_);
6d03d481 1375 gold_assert(external_symbols_offset != 0);
730cdc88
ILT
1376
1377 unsigned int i = *p;
1378 const unsigned char *pshdr;
6d03d481 1379 pshdr = section_headers_data + i * This::shdr_size;
730cdc88
ILT
1380 typename This::Shdr shdr(pshdr);
1381
2ea97941
ILT
1382 off_t offset;
1383 Output_section* os = layout->layout_eh_frame(this,
1384 symbols_data,
1385 symbols_size,
1386 symbol_names_data,
1387 symbol_names_size,
1388 i, shdr,
1389 reloc_shndx[i],
1390 reloc_type[i],
1391 &offset);
ef9beddf 1392 out_sections[i] = os;
339d40a3 1393 if (os == NULL || offset == -1)
805bb01c
DK
1394 {
1395 // An object can contain at most one section holding exception
1396 // frame information.
1397 gold_assert(this->discarded_eh_frame_shndx_ == -1U);
1398 this->discarded_eh_frame_shndx_ = i;
1399 out_section_offsets[i] = invalid_address;
1400 }
ef9beddf 1401 else
2ea97941 1402 out_section_offsets[i] = convert_types<Address, off_t>(offset);
730cdc88
ILT
1403
1404 // If this section requires special handling, and if there are
1405 // relocs that apply to it, then we must do the special handling
1406 // before we apply the relocs.
339d40a3 1407 if (os != NULL && offset == -1 && reloc_shndx[i] != 0)
730cdc88
ILT
1408 this->set_relocs_must_follow_section_writes();
1409 }
1410
6d03d481
ST
1411 if (is_gc_pass_two)
1412 {
1413 delete[] gc_sd->section_headers_data;
1414 delete[] gc_sd->section_names_data;
1415 delete[] gc_sd->symbols_data;
1416 delete[] gc_sd->symbol_names_data;
ef15dade 1417 this->set_symbols_data(NULL);
6d03d481
ST
1418 }
1419 else
1420 {
1421 delete sd->section_headers;
1422 sd->section_headers = NULL;
1423 delete sd->section_names;
1424 sd->section_names = NULL;
1425 }
12e14209
ILT
1426}
1427
5995b570
CC
1428// Layout sections whose layout was deferred while waiting for
1429// input files from a plugin.
1430
1431template<int size, bool big_endian>
1432void
2ea97941 1433Sized_relobj<size, big_endian>::do_layout_deferred_sections(Layout* layout)
5995b570
CC
1434{
1435 typename std::vector<Deferred_layout>::iterator deferred;
1436
1437 for (deferred = this->deferred_layout_.begin();
1438 deferred != this->deferred_layout_.end();
1439 ++deferred)
1440 {
1441 typename This::Shdr shdr(deferred->shdr_data_);
2ea97941 1442 this->layout_section(layout, deferred->shndx_, deferred->name_.c_str(),
5995b570
CC
1443 shdr, deferred->reloc_shndx_, deferred->reloc_type_);
1444 }
1445
1446 this->deferred_layout_.clear();
1447}
1448
12e14209
ILT
1449// Add the symbols to the symbol table.
1450
1451template<int size, bool big_endian>
1452void
f6ce93d6 1453Sized_relobj<size, big_endian>::do_add_symbols(Symbol_table* symtab,
f488e4b0
CC
1454 Read_symbols_data* sd,
1455 Layout*)
12e14209
ILT
1456{
1457 if (sd->symbols == NULL)
1458 {
a3ad94ed 1459 gold_assert(sd->symbol_names == NULL);
12e14209
ILT
1460 return;
1461 }
a2fb1b05 1462
2ea97941 1463 const int sym_size = This::sym_size;
730cdc88 1464 size_t symcount = ((sd->symbols_size - sd->external_symbols_offset)
2ea97941
ILT
1465 / sym_size);
1466 if (symcount * sym_size != sd->symbols_size - sd->external_symbols_offset)
12e14209 1467 {
75f2446e
ILT
1468 this->error(_("size of symbols is not multiple of symbol size"));
1469 return;
a2fb1b05 1470 }
12e14209 1471
730cdc88 1472 this->symbols_.resize(symcount);
12e14209 1473
12e14209
ILT
1474 const char* sym_names =
1475 reinterpret_cast<const char*>(sd->symbol_names->data());
730cdc88
ILT
1476 symtab->add_from_relobj(this,
1477 sd->symbols->data() + sd->external_symbols_offset,
7fcd3aa9 1478 symcount, this->local_symbol_count_,
d491d34e 1479 sym_names, sd->symbol_names_size,
92de84a6
ILT
1480 &this->symbols_,
1481 &this->defined_count_);
12e14209
ILT
1482
1483 delete sd->symbols;
1484 sd->symbols = NULL;
1485 delete sd->symbol_names;
1486 sd->symbol_names = NULL;
bae7f79e
ILT
1487}
1488
cb295612
ILT
1489// First pass over the local symbols. Here we add their names to
1490// *POOL and *DYNPOOL, and we store the symbol value in
1491// THIS->LOCAL_VALUES_. This function is always called from a
1492// singleton thread. This is followed by a call to
1493// finalize_local_symbols.
75f65a3e
ILT
1494
1495template<int size, bool big_endian>
7bf1f802
ILT
1496void
1497Sized_relobj<size, big_endian>::do_count_local_symbols(Stringpool* pool,
1498 Stringpool* dynpool)
75f65a3e 1499{
a3ad94ed 1500 gold_assert(this->symtab_shndx_ != -1U);
645f8123 1501 if (this->symtab_shndx_ == 0)
61ba1cf9
ILT
1502 {
1503 // This object has no symbols. Weird but legal.
7bf1f802 1504 return;
61ba1cf9
ILT
1505 }
1506
75f65a3e 1507 // Read the symbol table section header.
2ea97941 1508 const unsigned int symtab_shndx = this->symtab_shndx_;
645f8123 1509 typename This::Shdr symtabshdr(this,
2ea97941 1510 this->elf_file_.section_header(symtab_shndx));
a3ad94ed 1511 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
75f65a3e
ILT
1512
1513 // Read the local symbols.
2ea97941 1514 const int sym_size = This::sym_size;
92e059d8 1515 const unsigned int loccount = this->local_symbol_count_;
a3ad94ed 1516 gold_assert(loccount == symtabshdr.get_sh_info());
2ea97941 1517 off_t locsize = loccount * sym_size;
75f65a3e 1518 const unsigned char* psyms = this->get_view(symtabshdr.get_sh_offset(),
39d0cb0e 1519 locsize, true, true);
75f65a3e 1520
75f65a3e 1521 // Read the symbol names.
d491d34e
ILT
1522 const unsigned int strtab_shndx =
1523 this->adjust_shndx(symtabshdr.get_sh_link());
8383303e 1524 section_size_type strtab_size;
645f8123 1525 const unsigned char* pnamesu = this->section_contents(strtab_shndx,
9eb9fa57
ILT
1526 &strtab_size,
1527 true);
75f65a3e
ILT
1528 const char* pnames = reinterpret_cast<const char*>(pnamesu);
1529
1530 // Loop over the local symbols.
1531
ef9beddf 1532 const Output_sections& out_sections(this->output_sections());
2ea97941 1533 unsigned int shnum = this->shnum();
61ba1cf9 1534 unsigned int count = 0;
7bf1f802 1535 unsigned int dyncount = 0;
75f65a3e 1536 // Skip the first, dummy, symbol.
2ea97941 1537 psyms += sym_size;
ebcc8304 1538 bool discard_all = parameters->options().discard_all();
bb04269c 1539 bool discard_locals = parameters->options().discard_locals();
2ea97941 1540 for (unsigned int i = 1; i < loccount; ++i, psyms += sym_size)
75f65a3e
ILT
1541 {
1542 elfcpp::Sym<size, big_endian> sym(psyms);
1543
b8e6aad9
ILT
1544 Symbol_value<size>& lv(this->local_values_[i]);
1545
d491d34e
ILT
1546 bool is_ordinary;
1547 unsigned int shndx = this->adjust_sym_shndx(i, sym.get_st_shndx(),
1548 &is_ordinary);
1549 lv.set_input_shndx(shndx, is_ordinary);
75f65a3e 1550
063f12a8
ILT
1551 if (sym.get_st_type() == elfcpp::STT_SECTION)
1552 lv.set_is_section_symbol();
7bf1f802
ILT
1553 else if (sym.get_st_type() == elfcpp::STT_TLS)
1554 lv.set_is_tls_symbol();
1555
1556 // Save the input symbol value for use in do_finalize_local_symbols().
1557 lv.set_input_value(sym.get_st_value());
1558
1559 // Decide whether this symbol should go into the output file.
063f12a8 1560
2ea97941 1561 if ((shndx < shnum && out_sections[shndx] == NULL)
ebcc8304 1562 || shndx == this->discarded_eh_frame_shndx_)
7bf1f802
ILT
1563 {
1564 lv.set_no_output_symtab_entry();
dceae3c1 1565 gold_assert(!lv.needs_output_dynsym_entry());
7bf1f802
ILT
1566 continue;
1567 }
1568
1569 if (sym.get_st_type() == elfcpp::STT_SECTION)
1570 {
1571 lv.set_no_output_symtab_entry();
dceae3c1 1572 gold_assert(!lv.needs_output_dynsym_entry());
7bf1f802
ILT
1573 continue;
1574 }
1575
1576 if (sym.get_st_name() >= strtab_size)
1577 {
1578 this->error(_("local symbol %u section name out of range: %u >= %u"),
1579 i, sym.get_st_name(),
1580 static_cast<unsigned int>(strtab_size));
1581 lv.set_no_output_symtab_entry();
1582 continue;
1583 }
1584
ebcc8304
ILT
1585 const char* name = pnames + sym.get_st_name();
1586
1587 // If needed, add the symbol to the dynamic symbol table string pool.
1588 if (lv.needs_output_dynsym_entry())
1589 {
1590 dynpool->add(name, true, NULL);
1591 ++dyncount;
1592 }
1593
d3bbad62 1594 if (discard_all && lv.may_be_discarded_from_output_symtab())
ebcc8304
ILT
1595 {
1596 lv.set_no_output_symtab_entry();
1597 continue;
1598 }
1599
bb04269c
DK
1600 // If --discard-locals option is used, discard all temporary local
1601 // symbols. These symbols start with system-specific local label
1602 // prefixes, typically .L for ELF system. We want to be compatible
1603 // with GNU ld so here we essentially use the same check in
1604 // bfd_is_local_label(). The code is different because we already
1605 // know that:
1606 //
1607 // - the symbol is local and thus cannot have global or weak binding.
1608 // - the symbol is not a section symbol.
1609 // - the symbol has a name.
1610 //
1611 // We do not discard a symbol if it needs a dynamic symbol entry.
bb04269c
DK
1612 if (discard_locals
1613 && sym.get_st_type() != elfcpp::STT_FILE
1614 && !lv.needs_output_dynsym_entry()
d3bbad62 1615 && lv.may_be_discarded_from_output_symtab()
2ea97941 1616 && parameters->target().is_local_label_name(name))
bb04269c
DK
1617 {
1618 lv.set_no_output_symtab_entry();
1619 continue;
1620 }
1621
8c604651
CS
1622 // Discard the local symbol if -retain_symbols_file is specified
1623 // and the local symbol is not in that file.
2ea97941 1624 if (!parameters->options().should_retain_symbol(name))
8c604651
CS
1625 {
1626 lv.set_no_output_symtab_entry();
1627 continue;
1628 }
1629
bb04269c 1630 // Add the symbol to the symbol table string pool.
2ea97941 1631 pool->add(name, true, NULL);
7bf1f802 1632 ++count;
7bf1f802
ILT
1633 }
1634
1635 this->output_local_symbol_count_ = count;
1636 this->output_local_dynsym_count_ = dyncount;
1637}
1638
cb295612 1639// Finalize the local symbols. Here we set the final value in
7bf1f802 1640// THIS->LOCAL_VALUES_ and set their output symbol table indexes.
17a1d0a9 1641// This function is always called from a singleton thread. The actual
7bf1f802
ILT
1642// output of the local symbols will occur in a separate task.
1643
1644template<int size, bool big_endian>
1645unsigned int
1646Sized_relobj<size, big_endian>::do_finalize_local_symbols(unsigned int index,
ef15dade
ST
1647 off_t off,
1648 Symbol_table* symtab)
7bf1f802
ILT
1649{
1650 gold_assert(off == static_cast<off_t>(align_address(off, size >> 3)));
1651
1652 const unsigned int loccount = this->local_symbol_count_;
1653 this->local_symbol_offset_ = off;
1654
b4ecf66b 1655 const bool relocatable = parameters->options().relocatable();
ef9beddf
ILT
1656 const Output_sections& out_sections(this->output_sections());
1657 const std::vector<Address>& out_offsets(this->section_offsets_);
2ea97941 1658 unsigned int shnum = this->shnum();
7bf1f802
ILT
1659
1660 for (unsigned int i = 1; i < loccount; ++i)
1661 {
1662 Symbol_value<size>& lv(this->local_values_[i]);
1663
d491d34e
ILT
1664 bool is_ordinary;
1665 unsigned int shndx = lv.input_shndx(&is_ordinary);
7bf1f802
ILT
1666
1667 // Set the output symbol value.
ef9beddf 1668
d491d34e 1669 if (!is_ordinary)
75f65a3e 1670 {
8a5e3e08 1671 if (shndx == elfcpp::SHN_ABS || Symbol::is_common_shndx(shndx))
7bf1f802 1672 lv.set_output_value(lv.input_value());
61ba1cf9 1673 else
75f65a3e 1674 {
75f2446e
ILT
1675 this->error(_("unknown section index %u for local symbol %u"),
1676 shndx, i);
1677 lv.set_output_value(0);
75f65a3e 1678 }
75f65a3e
ILT
1679 }
1680 else
1681 {
2ea97941 1682 if (shndx >= shnum)
75f65a3e 1683 {
75f2446e
ILT
1684 this->error(_("local symbol %u section index %u out of range"),
1685 i, shndx);
1686 shndx = 0;
75f65a3e
ILT
1687 }
1688
ef9beddf 1689 Output_section* os = out_sections[shndx];
ef15dade
ST
1690 Address secoffset = out_offsets[shndx];
1691 if (symtab->is_section_folded(this, shndx))
1692 {
1693 gold_assert (os == NULL && secoffset == invalid_address);
1694 // Get the os of the section it is folded onto.
1695 Section_id folded = symtab->icf()->get_folded_section(this,
1696 shndx);
1697 gold_assert(folded.first != NULL);
1698 Sized_relobj<size, big_endian>* folded_obj = reinterpret_cast
1699 <Sized_relobj<size, big_endian>*>(folded.first);
1700 os = folded_obj->output_section(folded.second);
1701 gold_assert(os != NULL);
1702 secoffset = folded_obj->get_output_section_offset(folded.second);
d6344fb5
DK
1703
1704 // This could be a relaxed input section.
1705 if (secoffset == invalid_address)
1706 {
1707 const Output_relaxed_input_section* relaxed_section =
1708 os->find_relaxed_input_section(folded_obj, folded.second);
1709 gold_assert(relaxed_section != NULL);
1710 secoffset = relaxed_section->address() - os->address();
1711 }
ef15dade 1712 }
b8e6aad9
ILT
1713
1714 if (os == NULL)
61ba1cf9 1715 {
e94cf127
CC
1716 // This local symbol belongs to a section we are discarding.
1717 // In some cases when applying relocations later, we will
1718 // attempt to match it to the corresponding kept section,
1719 // so we leave the input value unchanged here.
61ba1cf9
ILT
1720 continue;
1721 }
ef15dade 1722 else if (secoffset == invalid_address)
7bf1f802 1723 {
e29e076a
ILT
1724 uint64_t start;
1725
a9a60db6 1726 // This is a SHF_MERGE section or one which otherwise
e29e076a 1727 // requires special handling.
805bb01c
DK
1728 if (shndx == this->discarded_eh_frame_shndx_)
1729 {
1730 // This local symbol belongs to a discarded .eh_frame
1731 // section. Just treat it like the case in which
1732 // os == NULL above.
1733 gold_assert(this->has_eh_frame_);
1734 continue;
1735 }
1736 else if (!lv.is_section_symbol())
e29e076a
ILT
1737 {
1738 // This is not a section symbol. We can determine
1739 // the final value now.
1740 lv.set_output_value(os->output_address(this, shndx,
1741 lv.input_value()));
1742 }
1743 else if (!os->find_starting_output_address(this, shndx, &start))
1744 {
6c172549
DK
1745 // This is a section symbol, but apparently not one in a
1746 // merged section. First check to see if this is a relaxed
1747 // input section. If so, use its address. Otherwise just
1748 // use the start of the output section. This happens with
1749 // relocatable links when the input object has section
1750 // symbols for arbitrary non-merge sections.
1751 const Output_section_data* posd =
1752 os->find_relaxed_input_section(this, shndx);
1753 if (posd != NULL)
1754 lv.set_output_value(posd->address());
1755 else
1756 lv.set_output_value(os->address());
e29e076a 1757 }
a9a60db6
ILT
1758 else
1759 {
e29e076a
ILT
1760 // We have to consider the addend to determine the
1761 // value to use in a relocation. START is the start
1762 // of this input section.
a9a60db6
ILT
1763 Merged_symbol_value<size>* msv =
1764 new Merged_symbol_value<size>(lv.input_value(), start);
1765 lv.set_merged_symbol_value(msv);
1766 }
7bf1f802
ILT
1767 }
1768 else if (lv.is_tls_symbol())
a9a60db6 1769 lv.set_output_value(os->tls_offset()
ef15dade 1770 + secoffset
7bf1f802 1771 + lv.input_value());
b8e6aad9 1772 else
b4ecf66b 1773 lv.set_output_value((relocatable ? 0 : os->address())
ef15dade 1774 + secoffset
7bf1f802 1775 + lv.input_value());
75f65a3e
ILT
1776 }
1777
d3bbad62 1778 if (!lv.is_output_symtab_index_set())
7bf1f802
ILT
1779 {
1780 lv.set_output_symtab_index(index);
1781 ++index;
1782 }
1783 }
1784 return index;
1785}
645f8123 1786
7bf1f802 1787// Set the output dynamic symbol table indexes for the local variables.
c06b7b0b 1788
7bf1f802
ILT
1789template<int size, bool big_endian>
1790unsigned int
1791Sized_relobj<size, big_endian>::do_set_local_dynsym_indexes(unsigned int index)
1792{
1793 const unsigned int loccount = this->local_symbol_count_;
1794 for (unsigned int i = 1; i < loccount; ++i)
1795 {
1796 Symbol_value<size>& lv(this->local_values_[i]);
1797 if (lv.needs_output_dynsym_entry())
1798 {
1799 lv.set_output_dynsym_index(index);
1800 ++index;
1801 }
75f65a3e 1802 }
7bf1f802
ILT
1803 return index;
1804}
75f65a3e 1805
7bf1f802
ILT
1806// Set the offset where local dynamic symbol information will be stored.
1807// Returns the count of local symbols contributed to the symbol table by
1808// this object.
61ba1cf9 1809
7bf1f802
ILT
1810template<int size, bool big_endian>
1811unsigned int
1812Sized_relobj<size, big_endian>::do_set_local_dynsym_offset(off_t off)
1813{
1814 gold_assert(off == static_cast<off_t>(align_address(off, size >> 3)));
1815 this->local_dynsym_offset_ = off;
1816 return this->output_local_dynsym_count_;
75f65a3e
ILT
1817}
1818
ef15dade
ST
1819// If Symbols_data is not NULL get the section flags from here otherwise
1820// get it from the file.
1821
1822template<int size, bool big_endian>
1823uint64_t
1824Sized_relobj<size, big_endian>::do_section_flags(unsigned int shndx)
1825{
1826 Symbols_data* sd = this->get_symbols_data();
1827 if (sd != NULL)
1828 {
1829 const unsigned char* pshdrs = sd->section_headers_data
1830 + This::shdr_size * shndx;
1831 typename This::Shdr shdr(pshdrs);
1832 return shdr.get_sh_flags();
1833 }
1834 // If sd is NULL, read the section header from the file.
1835 return this->elf_file_.section_flags(shndx);
1836}
1837
1838// Get the section's ent size from Symbols_data. Called by get_section_contents
1839// in icf.cc
1840
1841template<int size, bool big_endian>
1842uint64_t
1843Sized_relobj<size, big_endian>::do_section_entsize(unsigned int shndx)
1844{
1845 Symbols_data* sd = this->get_symbols_data();
1846 gold_assert (sd != NULL);
1847
1848 const unsigned char* pshdrs = sd->section_headers_data
1849 + This::shdr_size * shndx;
1850 typename This::Shdr shdr(pshdrs);
1851 return shdr.get_sh_entsize();
1852}
1853
1854
61ba1cf9
ILT
1855// Write out the local symbols.
1856
1857template<int size, bool big_endian>
1858void
17a1d0a9
ILT
1859Sized_relobj<size, big_endian>::write_local_symbols(
1860 Output_file* of,
1861 const Stringpool* sympool,
d491d34e
ILT
1862 const Stringpool* dynpool,
1863 Output_symtab_xindex* symtab_xindex,
1864 Output_symtab_xindex* dynsym_xindex)
61ba1cf9 1865{
99e9a495
ILT
1866 const bool strip_all = parameters->options().strip_all();
1867 if (strip_all)
1868 {
1869 if (this->output_local_dynsym_count_ == 0)
1870 return;
1871 this->output_local_symbol_count_ = 0;
1872 }
9e2dcb77 1873
a3ad94ed 1874 gold_assert(this->symtab_shndx_ != -1U);
645f8123 1875 if (this->symtab_shndx_ == 0)
61ba1cf9
ILT
1876 {
1877 // This object has no symbols. Weird but legal.
1878 return;
1879 }
1880
1881 // Read the symbol table section header.
2ea97941 1882 const unsigned int symtab_shndx = this->symtab_shndx_;
645f8123 1883 typename This::Shdr symtabshdr(this,
2ea97941 1884 this->elf_file_.section_header(symtab_shndx));
a3ad94ed 1885 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
92e059d8 1886 const unsigned int loccount = this->local_symbol_count_;
a3ad94ed 1887 gold_assert(loccount == symtabshdr.get_sh_info());
61ba1cf9
ILT
1888
1889 // Read the local symbols.
2ea97941
ILT
1890 const int sym_size = This::sym_size;
1891 off_t locsize = loccount * sym_size;
61ba1cf9 1892 const unsigned char* psyms = this->get_view(symtabshdr.get_sh_offset(),
39d0cb0e 1893 locsize, true, false);
61ba1cf9 1894
61ba1cf9 1895 // Read the symbol names.
d491d34e
ILT
1896 const unsigned int strtab_shndx =
1897 this->adjust_shndx(symtabshdr.get_sh_link());
8383303e 1898 section_size_type strtab_size;
645f8123 1899 const unsigned char* pnamesu = this->section_contents(strtab_shndx,
9eb9fa57 1900 &strtab_size,
cb295612 1901 false);
61ba1cf9
ILT
1902 const char* pnames = reinterpret_cast<const char*>(pnamesu);
1903
7bf1f802
ILT
1904 // Get views into the output file for the portions of the symbol table
1905 // and the dynamic symbol table that we will be writing.
2ea97941 1906 off_t output_size = this->output_local_symbol_count_ * sym_size;
f2619d6c 1907 unsigned char* oview = NULL;
7bf1f802
ILT
1908 if (output_size > 0)
1909 oview = of->get_output_view(this->local_symbol_offset_, output_size);
1910
2ea97941 1911 off_t dyn_output_size = this->output_local_dynsym_count_ * sym_size;
7bf1f802
ILT
1912 unsigned char* dyn_oview = NULL;
1913 if (dyn_output_size > 0)
1914 dyn_oview = of->get_output_view(this->local_dynsym_offset_,
1915 dyn_output_size);
61ba1cf9 1916
ef9beddf 1917 const Output_sections out_sections(this->output_sections());
c06b7b0b 1918
a3ad94ed 1919 gold_assert(this->local_values_.size() == loccount);
61ba1cf9 1920
61ba1cf9 1921 unsigned char* ov = oview;
7bf1f802 1922 unsigned char* dyn_ov = dyn_oview;
2ea97941
ILT
1923 psyms += sym_size;
1924 for (unsigned int i = 1; i < loccount; ++i, psyms += sym_size)
61ba1cf9
ILT
1925 {
1926 elfcpp::Sym<size, big_endian> isym(psyms);
f6ce93d6 1927
d491d34e
ILT
1928 Symbol_value<size>& lv(this->local_values_[i]);
1929
1930 bool is_ordinary;
1931 unsigned int st_shndx = this->adjust_sym_shndx(i, isym.get_st_shndx(),
1932 &is_ordinary);
1933 if (is_ordinary)
61ba1cf9 1934 {
ef9beddf
ILT
1935 gold_assert(st_shndx < out_sections.size());
1936 if (out_sections[st_shndx] == NULL)
61ba1cf9 1937 continue;
ef9beddf 1938 st_shndx = out_sections[st_shndx]->out_shndx();
d491d34e
ILT
1939 if (st_shndx >= elfcpp::SHN_LORESERVE)
1940 {
d3bbad62 1941 if (lv.has_output_symtab_entry())
d491d34e 1942 symtab_xindex->add(lv.output_symtab_index(), st_shndx);
d3bbad62 1943 if (lv.has_output_dynsym_entry())
d491d34e
ILT
1944 dynsym_xindex->add(lv.output_dynsym_index(), st_shndx);
1945 st_shndx = elfcpp::SHN_XINDEX;
1946 }
61ba1cf9
ILT
1947 }
1948
7bf1f802 1949 // Write the symbol to the output symbol table.
d3bbad62 1950 if (lv.has_output_symtab_entry())
7bf1f802
ILT
1951 {
1952 elfcpp::Sym_write<size, big_endian> osym(ov);
1953
1954 gold_assert(isym.get_st_name() < strtab_size);
2ea97941
ILT
1955 const char* name = pnames + isym.get_st_name();
1956 osym.put_st_name(sympool->get_offset(name));
7bf1f802
ILT
1957 osym.put_st_value(this->local_values_[i].value(this, 0));
1958 osym.put_st_size(isym.get_st_size());
1959 osym.put_st_info(isym.get_st_info());
1960 osym.put_st_other(isym.get_st_other());
1961 osym.put_st_shndx(st_shndx);
1962
2ea97941 1963 ov += sym_size;
7bf1f802
ILT
1964 }
1965
1966 // Write the symbol to the output dynamic symbol table.
d3bbad62 1967 if (lv.has_output_dynsym_entry())
7bf1f802
ILT
1968 {
1969 gold_assert(dyn_ov < dyn_oview + dyn_output_size);
1970 elfcpp::Sym_write<size, big_endian> osym(dyn_ov);
1971
1972 gold_assert(isym.get_st_name() < strtab_size);
2ea97941
ILT
1973 const char* name = pnames + isym.get_st_name();
1974 osym.put_st_name(dynpool->get_offset(name));
7bf1f802
ILT
1975 osym.put_st_value(this->local_values_[i].value(this, 0));
1976 osym.put_st_size(isym.get_st_size());
1977 osym.put_st_info(isym.get_st_info());
1978 osym.put_st_other(isym.get_st_other());
1979 osym.put_st_shndx(st_shndx);
1980
2ea97941 1981 dyn_ov += sym_size;
7bf1f802
ILT
1982 }
1983 }
f6ce93d6 1984
61ba1cf9 1985
7bf1f802
ILT
1986 if (output_size > 0)
1987 {
1988 gold_assert(ov - oview == output_size);
1989 of->write_output_view(this->local_symbol_offset_, output_size, oview);
61ba1cf9
ILT
1990 }
1991
7bf1f802
ILT
1992 if (dyn_output_size > 0)
1993 {
1994 gold_assert(dyn_ov - dyn_oview == dyn_output_size);
1995 of->write_output_view(this->local_dynsym_offset_, dyn_output_size,
1996 dyn_oview);
1997 }
61ba1cf9
ILT
1998}
1999
f7e2ee48
ILT
2000// Set *INFO to symbolic information about the offset OFFSET in the
2001// section SHNDX. Return true if we found something, false if we
2002// found nothing.
2003
2004template<int size, bool big_endian>
2005bool
2006Sized_relobj<size, big_endian>::get_symbol_location_info(
2007 unsigned int shndx,
2ea97941 2008 off_t offset,
f7e2ee48
ILT
2009 Symbol_location_info* info)
2010{
2011 if (this->symtab_shndx_ == 0)
2012 return false;
2013
8383303e 2014 section_size_type symbols_size;
f7e2ee48
ILT
2015 const unsigned char* symbols = this->section_contents(this->symtab_shndx_,
2016 &symbols_size,
2017 false);
2018
d491d34e
ILT
2019 unsigned int symbol_names_shndx =
2020 this->adjust_shndx(this->section_link(this->symtab_shndx_));
8383303e 2021 section_size_type names_size;
f7e2ee48
ILT
2022 const unsigned char* symbol_names_u =
2023 this->section_contents(symbol_names_shndx, &names_size, false);
2024 const char* symbol_names = reinterpret_cast<const char*>(symbol_names_u);
2025
2ea97941
ILT
2026 const int sym_size = This::sym_size;
2027 const size_t count = symbols_size / sym_size;
f7e2ee48
ILT
2028
2029 const unsigned char* p = symbols;
2ea97941 2030 for (size_t i = 0; i < count; ++i, p += sym_size)
f7e2ee48
ILT
2031 {
2032 elfcpp::Sym<size, big_endian> sym(p);
2033
2034 if (sym.get_st_type() == elfcpp::STT_FILE)
2035 {
2036 if (sym.get_st_name() >= names_size)
2037 info->source_file = "(invalid)";
2038 else
2039 info->source_file = symbol_names + sym.get_st_name();
d491d34e 2040 continue;
f7e2ee48 2041 }
d491d34e
ILT
2042
2043 bool is_ordinary;
2044 unsigned int st_shndx = this->adjust_sym_shndx(i, sym.get_st_shndx(),
2045 &is_ordinary);
2046 if (is_ordinary
2047 && st_shndx == shndx
2ea97941 2048 && static_cast<off_t>(sym.get_st_value()) <= offset
d491d34e 2049 && (static_cast<off_t>(sym.get_st_value() + sym.get_st_size())
2ea97941 2050 > offset))
f7e2ee48
ILT
2051 {
2052 if (sym.get_st_name() > names_size)
2053 info->enclosing_symbol_name = "(invalid)";
2054 else
a2b1aa12
ILT
2055 {
2056 info->enclosing_symbol_name = symbol_names + sym.get_st_name();
086a1841 2057 if (parameters->options().do_demangle())
a2b1aa12
ILT
2058 {
2059 char* demangled_name = cplus_demangle(
2060 info->enclosing_symbol_name.c_str(),
2061 DMGL_ANSI | DMGL_PARAMS);
2062 if (demangled_name != NULL)
2063 {
2064 info->enclosing_symbol_name.assign(demangled_name);
2065 free(demangled_name);
2066 }
2067 }
2068 }
f7e2ee48
ILT
2069 return true;
2070 }
2071 }
2072
2073 return false;
2074}
2075
e94cf127
CC
2076// Look for a kept section corresponding to the given discarded section,
2077// and return its output address. This is used only for relocations in
2078// debugging sections. If we can't find the kept section, return 0.
2079
2080template<int size, bool big_endian>
2081typename Sized_relobj<size, big_endian>::Address
2082Sized_relobj<size, big_endian>::map_to_kept_section(
2083 unsigned int shndx,
2084 bool* found) const
2085{
1ef4d87f
ILT
2086 Relobj* kept_object;
2087 unsigned int kept_shndx;
2088 if (this->get_kept_comdat_section(shndx, &kept_object, &kept_shndx))
e94cf127 2089 {
1ef4d87f
ILT
2090 Sized_relobj<size, big_endian>* kept_relobj =
2091 static_cast<Sized_relobj<size, big_endian>*>(kept_object);
2092 Output_section* os = kept_relobj->output_section(kept_shndx);
2ea97941
ILT
2093 Address offset = kept_relobj->get_output_section_offset(kept_shndx);
2094 if (os != NULL && offset != invalid_address)
1ef4d87f
ILT
2095 {
2096 *found = true;
2ea97941 2097 return os->address() + offset;
1ef4d87f 2098 }
e94cf127
CC
2099 }
2100 *found = false;
2101 return 0;
2102}
2103
92de84a6
ILT
2104// Get symbol counts.
2105
2106template<int size, bool big_endian>
2107void
2108Sized_relobj<size, big_endian>::do_get_global_symbol_counts(
2109 const Symbol_table*,
2110 size_t* defined,
2111 size_t* used) const
2112{
2113 *defined = this->defined_count_;
2114 size_t count = 0;
2115 for (Symbols::const_iterator p = this->symbols_.begin();
2116 p != this->symbols_.end();
2117 ++p)
2118 if (*p != NULL
2119 && (*p)->source() == Symbol::FROM_OBJECT
2120 && (*p)->object() == this
2121 && (*p)->is_defined())
2122 ++count;
2123 *used = count;
2124}
2125
54dc6425
ILT
2126// Input_objects methods.
2127
008db82e
ILT
2128// Add a regular relocatable object to the list. Return false if this
2129// object should be ignored.
f6ce93d6 2130
008db82e 2131bool
54dc6425
ILT
2132Input_objects::add_object(Object* obj)
2133{
c5818ff1
CC
2134 // Print the filename if the -t/--trace option is selected.
2135 if (parameters->options().trace())
2136 gold_info("%s", obj->name().c_str());
2137
008db82e 2138 if (!obj->is_dynamic())
f6ce93d6 2139 this->relobj_list_.push_back(static_cast<Relobj*>(obj));
008db82e
ILT
2140 else
2141 {
2142 // See if this is a duplicate SONAME.
2143 Dynobj* dynobj = static_cast<Dynobj*>(obj);
9a2d6984 2144 const char* soname = dynobj->soname();
008db82e
ILT
2145
2146 std::pair<Unordered_set<std::string>::iterator, bool> ins =
9a2d6984 2147 this->sonames_.insert(soname);
008db82e
ILT
2148 if (!ins.second)
2149 {
2150 // We have already seen a dynamic object with this soname.
2151 return false;
2152 }
2153
2154 this->dynobj_list_.push_back(dynobj);
2155 }
75f65a3e 2156
92de84a6 2157 // Add this object to the cross-referencer if requested.
dde3f402
ILT
2158 if (parameters->options().user_set_print_symbol_counts()
2159 || parameters->options().cref())
92de84a6
ILT
2160 {
2161 if (this->cref_ == NULL)
2162 this->cref_ = new Cref();
2163 this->cref_->add_object(obj);
2164 }
2165
008db82e 2166 return true;
54dc6425
ILT
2167}
2168
e2827e5f
ILT
2169// For each dynamic object, record whether we've seen all of its
2170// explicit dependencies.
2171
2172void
2173Input_objects::check_dynamic_dependencies() const
2174{
7eaea549 2175 bool issued_copy_dt_needed_error = false;
e2827e5f
ILT
2176 for (Dynobj_list::const_iterator p = this->dynobj_list_.begin();
2177 p != this->dynobj_list_.end();
2178 ++p)
2179 {
2180 const Dynobj::Needed& needed((*p)->needed());
2181 bool found_all = true;
7eaea549
ILT
2182 Dynobj::Needed::const_iterator pneeded;
2183 for (pneeded = needed.begin(); pneeded != needed.end(); ++pneeded)
e2827e5f
ILT
2184 {
2185 if (this->sonames_.find(*pneeded) == this->sonames_.end())
2186 {
2187 found_all = false;
2188 break;
2189 }
2190 }
2191 (*p)->set_has_unknown_needed_entries(!found_all);
7eaea549
ILT
2192
2193 // --copy-dt-needed-entries aka --add-needed is a GNU ld option
612bdda1
ILT
2194 // that gold does not support. However, they cause no trouble
2195 // unless there is a DT_NEEDED entry that we don't know about;
2196 // warn only in that case.
7eaea549
ILT
2197 if (!found_all
2198 && !issued_copy_dt_needed_error
2199 && (parameters->options().copy_dt_needed_entries()
2200 || parameters->options().add_needed()))
2201 {
2202 const char* optname;
2203 if (parameters->options().copy_dt_needed_entries())
2204 optname = "--copy-dt-needed-entries";
2205 else
2206 optname = "--add-needed";
2207 gold_error(_("%s is not supported but is required for %s in %s"),
2208 optname, (*pneeded).c_str(), (*p)->name().c_str());
2209 issued_copy_dt_needed_error = true;
2210 }
e2827e5f
ILT
2211 }
2212}
2213
92de84a6
ILT
2214// Start processing an archive.
2215
2216void
2217Input_objects::archive_start(Archive* archive)
2218{
dde3f402
ILT
2219 if (parameters->options().user_set_print_symbol_counts()
2220 || parameters->options().cref())
92de84a6
ILT
2221 {
2222 if (this->cref_ == NULL)
2223 this->cref_ = new Cref();
2224 this->cref_->add_archive_start(archive);
2225 }
2226}
2227
2228// Stop processing an archive.
2229
2230void
2231Input_objects::archive_stop(Archive* archive)
2232{
dde3f402
ILT
2233 if (parameters->options().user_set_print_symbol_counts()
2234 || parameters->options().cref())
92de84a6
ILT
2235 this->cref_->add_archive_stop(archive);
2236}
2237
2238// Print symbol counts
2239
2240void
2241Input_objects::print_symbol_counts(const Symbol_table* symtab) const
2242{
2243 if (parameters->options().user_set_print_symbol_counts()
2244 && this->cref_ != NULL)
2245 this->cref_->print_symbol_counts(symtab);
2246}
2247
dde3f402
ILT
2248// Print a cross reference table.
2249
2250void
2251Input_objects::print_cref(const Symbol_table* symtab, FILE* f) const
2252{
2253 if (parameters->options().cref() && this->cref_ != NULL)
2254 this->cref_->print_cref(symtab, f);
2255}
2256
92e059d8
ILT
2257// Relocate_info methods.
2258
2259// Return a string describing the location of a relocation. This is
2260// only used in error messages.
2261
2262template<int size, bool big_endian>
2263std::string
f7e2ee48 2264Relocate_info<size, big_endian>::location(size_t, off_t offset) const
92e059d8 2265{
5c2c6c95
ILT
2266 // See if we can get line-number information from debugging sections.
2267 std::string filename;
2268 std::string file_and_lineno; // Better than filename-only, if available.
4c50553d 2269
a55ce7fe 2270 Sized_dwarf_line_info<size, big_endian> line_info(this->object);
24badc65
ILT
2271 // This will be "" if we failed to parse the debug info for any reason.
2272 file_and_lineno = line_info.addr2line(this->data_shndx, offset);
4c50553d 2273
92e059d8 2274 std::string ret(this->object->name());
f7e2ee48
ILT
2275 ret += ':';
2276 Symbol_location_info info;
2277 if (this->object->get_symbol_location_info(this->data_shndx, offset, &info))
2278 {
2279 ret += " in function ";
2280 ret += info.enclosing_symbol_name;
2281 ret += ":";
5c2c6c95
ILT
2282 filename = info.source_file;
2283 }
2284
2285 if (!file_and_lineno.empty())
2286 ret += file_and_lineno;
2287 else
2288 {
2289 if (!filename.empty())
2290 ret += filename;
2291 ret += "(";
2292 ret += this->object->section_name(this->data_shndx);
2293 char buf[100];
2294 // Offsets into sections have to be positive.
2295 snprintf(buf, sizeof(buf), "+0x%lx", static_cast<long>(offset));
2296 ret += buf;
2297 ret += ")";
f7e2ee48 2298 }
92e059d8
ILT
2299 return ret;
2300}
2301
bae7f79e
ILT
2302} // End namespace gold.
2303
2304namespace
2305{
2306
2307using namespace gold;
2308
2309// Read an ELF file with the header and return the appropriate
2310// instance of Object.
2311
2312template<int size, bool big_endian>
2313Object*
2314make_elf_sized_object(const std::string& name, Input_file* input_file,
029ba973
ILT
2315 off_t offset, const elfcpp::Ehdr<size, big_endian>& ehdr,
2316 bool* punconfigured)
bae7f79e 2317{
f733487b
DK
2318 Target* target = select_target(ehdr.get_e_machine(), size, big_endian,
2319 ehdr.get_e_ident()[elfcpp::EI_OSABI],
2320 ehdr.get_e_ident()[elfcpp::EI_ABIVERSION]);
2321 if (target == NULL)
2322 gold_fatal(_("%s: unsupported ELF machine number %d"),
2323 name.c_str(), ehdr.get_e_machine());
029ba973
ILT
2324
2325 if (!parameters->target_valid())
2326 set_parameters_target(target);
2327 else if (target != &parameters->target())
2328 {
2329 if (punconfigured != NULL)
2330 *punconfigured = true;
2331 else
2332 gold_error(_("%s: incompatible target"), name.c_str());
2333 return NULL;
2334 }
2335
f733487b
DK
2336 return target->make_elf_object<size, big_endian>(name, input_file, offset,
2337 ehdr);
bae7f79e
ILT
2338}
2339
2340} // End anonymous namespace.
2341
2342namespace gold
2343{
2344
f6060a4d
ILT
2345// Return whether INPUT_FILE is an ELF object.
2346
2347bool
2348is_elf_object(Input_file* input_file, off_t offset,
2349 const unsigned char** start, int *read_size)
2350{
2351 off_t filesize = input_file->file().filesize();
c549a694 2352 int want = elfcpp::Elf_recognizer::max_header_size;
f6060a4d
ILT
2353 if (filesize - offset < want)
2354 want = filesize - offset;
2355
2356 const unsigned char* p = input_file->file().get_view(offset, 0, want,
2357 true, false);
2358 *start = p;
2359 *read_size = want;
2360
c549a694 2361 return elfcpp::Elf_recognizer::is_elf_file(p, want);
f6060a4d
ILT
2362}
2363
bae7f79e
ILT
2364// Read an ELF file and return the appropriate instance of Object.
2365
2366Object*
2367make_elf_object(const std::string& name, Input_file* input_file, off_t offset,
15f8229b
ILT
2368 const unsigned char* p, section_offset_type bytes,
2369 bool* punconfigured)
bae7f79e 2370{
15f8229b
ILT
2371 if (punconfigured != NULL)
2372 *punconfigured = false;
2373
c549a694 2374 std::string error;
ac33a407
DK
2375 bool big_endian = false;
2376 int size = 0;
c549a694
ILT
2377 if (!elfcpp::Elf_recognizer::is_valid_header(p, bytes, &size,
2378 &big_endian, &error))
bae7f79e 2379 {
c549a694 2380 gold_error(_("%s: %s"), name.c_str(), error.c_str());
75f2446e 2381 return NULL;
bae7f79e
ILT
2382 }
2383
c549a694 2384 if (size == 32)
bae7f79e 2385 {
bae7f79e
ILT
2386 if (big_endian)
2387 {
193a53d9 2388#ifdef HAVE_TARGET_32_BIG
bae7f79e
ILT
2389 elfcpp::Ehdr<32, true> ehdr(p);
2390 return make_elf_sized_object<32, true>(name, input_file,
029ba973 2391 offset, ehdr, punconfigured);
193a53d9 2392#else
15f8229b
ILT
2393 if (punconfigured != NULL)
2394 *punconfigured = true;
2395 else
2396 gold_error(_("%s: not configured to support "
2397 "32-bit big-endian object"),
2398 name.c_str());
75f2446e 2399 return NULL;
193a53d9 2400#endif
bae7f79e
ILT
2401 }
2402 else
2403 {
193a53d9 2404#ifdef HAVE_TARGET_32_LITTLE
bae7f79e
ILT
2405 elfcpp::Ehdr<32, false> ehdr(p);
2406 return make_elf_sized_object<32, false>(name, input_file,
029ba973 2407 offset, ehdr, punconfigured);
193a53d9 2408#else
15f8229b
ILT
2409 if (punconfigured != NULL)
2410 *punconfigured = true;
2411 else
2412 gold_error(_("%s: not configured to support "
2413 "32-bit little-endian object"),
2414 name.c_str());
75f2446e 2415 return NULL;
193a53d9 2416#endif
bae7f79e
ILT
2417 }
2418 }
c549a694 2419 else if (size == 64)
bae7f79e 2420 {
bae7f79e
ILT
2421 if (big_endian)
2422 {
193a53d9 2423#ifdef HAVE_TARGET_64_BIG
bae7f79e
ILT
2424 elfcpp::Ehdr<64, true> ehdr(p);
2425 return make_elf_sized_object<64, true>(name, input_file,
029ba973 2426 offset, ehdr, punconfigured);
193a53d9 2427#else
15f8229b
ILT
2428 if (punconfigured != NULL)
2429 *punconfigured = true;
2430 else
2431 gold_error(_("%s: not configured to support "
2432 "64-bit big-endian object"),
2433 name.c_str());
75f2446e 2434 return NULL;
193a53d9 2435#endif
bae7f79e
ILT
2436 }
2437 else
2438 {
193a53d9 2439#ifdef HAVE_TARGET_64_LITTLE
bae7f79e
ILT
2440 elfcpp::Ehdr<64, false> ehdr(p);
2441 return make_elf_sized_object<64, false>(name, input_file,
029ba973 2442 offset, ehdr, punconfigured);
193a53d9 2443#else
15f8229b
ILT
2444 if (punconfigured != NULL)
2445 *punconfigured = true;
2446 else
2447 gold_error(_("%s: not configured to support "
2448 "64-bit little-endian object"),
2449 name.c_str());
75f2446e 2450 return NULL;
193a53d9 2451#endif
bae7f79e
ILT
2452 }
2453 }
c549a694
ILT
2454 else
2455 gold_unreachable();
bae7f79e
ILT
2456}
2457
04bf7072
ILT
2458// Instantiate the templates we need.
2459
2460#ifdef HAVE_TARGET_32_LITTLE
2461template
2462void
2463Object::read_section_data<32, false>(elfcpp::Elf_file<32, false, Object>*,
2464 Read_symbols_data*);
2465#endif
2466
2467#ifdef HAVE_TARGET_32_BIG
2468template
2469void
2470Object::read_section_data<32, true>(elfcpp::Elf_file<32, true, Object>*,
2471 Read_symbols_data*);
2472#endif
2473
2474#ifdef HAVE_TARGET_64_LITTLE
2475template
2476void
2477Object::read_section_data<64, false>(elfcpp::Elf_file<64, false, Object>*,
2478 Read_symbols_data*);
2479#endif
2480
2481#ifdef HAVE_TARGET_64_BIG
2482template
2483void
2484Object::read_section_data<64, true>(elfcpp::Elf_file<64, true, Object>*,
2485 Read_symbols_data*);
2486#endif
bae7f79e 2487
193a53d9 2488#ifdef HAVE_TARGET_32_LITTLE
bae7f79e 2489template
f6ce93d6 2490class Sized_relobj<32, false>;
193a53d9 2491#endif
bae7f79e 2492
193a53d9 2493#ifdef HAVE_TARGET_32_BIG
bae7f79e 2494template
f6ce93d6 2495class Sized_relobj<32, true>;
193a53d9 2496#endif
bae7f79e 2497
193a53d9 2498#ifdef HAVE_TARGET_64_LITTLE
bae7f79e 2499template
f6ce93d6 2500class Sized_relobj<64, false>;
193a53d9 2501#endif
bae7f79e 2502
193a53d9 2503#ifdef HAVE_TARGET_64_BIG
bae7f79e 2504template
f6ce93d6 2505class Sized_relobj<64, true>;
193a53d9 2506#endif
bae7f79e 2507
193a53d9 2508#ifdef HAVE_TARGET_32_LITTLE
92e059d8
ILT
2509template
2510struct Relocate_info<32, false>;
193a53d9 2511#endif
92e059d8 2512
193a53d9 2513#ifdef HAVE_TARGET_32_BIG
92e059d8
ILT
2514template
2515struct Relocate_info<32, true>;
193a53d9 2516#endif
92e059d8 2517
193a53d9 2518#ifdef HAVE_TARGET_64_LITTLE
92e059d8
ILT
2519template
2520struct Relocate_info<64, false>;
193a53d9 2521#endif
92e059d8 2522
193a53d9 2523#ifdef HAVE_TARGET_64_BIG
92e059d8
ILT
2524template
2525struct Relocate_info<64, true>;
193a53d9 2526#endif
92e059d8 2527
9d3b86f6
ILT
2528#ifdef HAVE_TARGET_32_LITTLE
2529template
2530void
2531Xindex::initialize_symtab_xindex<32, false>(Object*, unsigned int);
2532
2533template
2534void
2535Xindex::read_symtab_xindex<32, false>(Object*, unsigned int,
2536 const unsigned char*);
2537#endif
2538
2539#ifdef HAVE_TARGET_32_BIG
2540template
2541void
2542Xindex::initialize_symtab_xindex<32, true>(Object*, unsigned int);
2543
2544template
2545void
2546Xindex::read_symtab_xindex<32, true>(Object*, unsigned int,
2547 const unsigned char*);
2548#endif
2549
2550#ifdef HAVE_TARGET_64_LITTLE
2551template
2552void
2553Xindex::initialize_symtab_xindex<64, false>(Object*, unsigned int);
2554
2555template
2556void
2557Xindex::read_symtab_xindex<64, false>(Object*, unsigned int,
2558 const unsigned char*);
2559#endif
2560
2561#ifdef HAVE_TARGET_64_BIG
2562template
2563void
2564Xindex::initialize_symtab_xindex<64, true>(Object*, unsigned int);
2565
2566template
2567void
2568Xindex::read_symtab_xindex<64, true>(Object*, unsigned int,
2569 const unsigned char*);
2570#endif
2571
bae7f79e 2572} // End namespace gold.
This page took 0.311373 seconds and 4 git commands to generate.