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