From Craig Silverstein: Have Parameters point to General_options.
[deliverable/binutils-gdb.git] / gold / layout.cc
CommitLineData
a2fb1b05
ILT
1// layout.cc -- lay out output file sections for gold
2
e5756efb 3// Copyright 2006, 2007, 2008 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
a2fb1b05
ILT
23#include "gold.h"
24
a2fb1b05 25#include <cstring>
54dc6425 26#include <algorithm>
a2fb1b05
ILT
27#include <iostream>
28#include <utility>
29
7e1edb90 30#include "parameters.h"
14144f39 31#include "options.h"
a445fddf
ILT
32#include "script.h"
33#include "script-sections.h"
a2fb1b05 34#include "output.h"
f6ce93d6 35#include "symtab.h"
a3ad94ed 36#include "dynobj.h"
3151305a 37#include "ehframe.h"
96803768 38#include "compressed_output.h"
6a74a719 39#include "reloc.h"
a2fb1b05
ILT
40#include "layout.h"
41
42namespace gold
43{
44
92e059d8 45// Layout_task_runner methods.
a2fb1b05
ILT
46
47// Lay out the sections. This is called after all the input objects
48// have been read.
49
50void
17a1d0a9 51Layout_task_runner::run(Workqueue* workqueue, const Task* task)
a2fb1b05 52{
12e14209 53 off_t file_size = this->layout_->finalize(this->input_objects_,
17a1d0a9 54 this->symtab_,
8851ecca 55 this->target_,
17a1d0a9 56 task);
61ba1cf9
ILT
57
58 // Now we know the final size of the output file and we know where
59 // each piece of information goes.
8851ecca 60 Output_file* of = new Output_file(parameters->options().output_file_name());
45aa233b 61 if (this->options_.oformat() != General_options::OBJECT_FORMAT_ELF)
516cb3d0 62 of->set_is_temporary();
61ba1cf9
ILT
63 of->open(file_size);
64
65 // Queue up the final set of tasks.
66 gold::queue_final_tasks(this->options_, this->input_objects_,
12e14209 67 this->symtab_, this->layout_, workqueue, of);
a2fb1b05
ILT
68}
69
70// Layout methods.
71
e5756efb
ILT
72Layout::Layout(const General_options& options, Script_options* script_options)
73 : options_(options), script_options_(script_options), namepool_(),
74 sympool_(), dynpool_(), signatures_(),
61ba1cf9 75 section_name_map_(), segment_list_(), section_list_(),
a3ad94ed 76 unattached_section_list_(), special_output_list_(),
27bc2bce 77 section_headers_(NULL), tls_segment_(NULL), symtab_section_(NULL),
3151305a 78 dynsym_section_(NULL), dynamic_section_(NULL), dynamic_data_(NULL),
755ab8af 79 eh_frame_section_(NULL), group_signatures_(), output_file_size_(-1),
35cdfc9a
ILT
80 input_requires_executable_stack_(false),
81 input_with_gnu_stack_note_(false),
535890bb 82 input_without_gnu_stack_note_(false),
17a1d0a9
ILT
83 has_static_tls_(false),
84 any_postprocessing_sections_(false)
54dc6425
ILT
85{
86 // Make space for more than enough segments for a typical file.
87 // This is just for efficiency--it's OK if we wind up needing more.
a3ad94ed
ILT
88 this->segment_list_.reserve(12);
89
27bc2bce
ILT
90 // We expect two unattached Output_data objects: the file header and
91 // the segment headers.
92 this->special_output_list_.reserve(2);
54dc6425
ILT
93}
94
a2fb1b05
ILT
95// Hash a key we use to look up an output section mapping.
96
97size_t
98Layout::Hash_key::operator()(const Layout::Key& k) const
99{
f0641a0b 100 return k.first + k.second.first + k.second.second;
a2fb1b05
ILT
101}
102
9e2dcb77
ILT
103// Return whether PREFIX is a prefix of STR.
104
105static inline bool
106is_prefix_of(const char* prefix, const char* str)
107{
108 return strncmp(prefix, str, strlen(prefix)) == 0;
109}
110
02d2ba74
ILT
111// Returns whether the given section is in the list of
112// debug-sections-used-by-some-version-of-gdb. Currently,
113// we've checked versions of gdb up to and including 6.7.1.
114
115static const char* gdb_sections[] =
116{ ".debug_abbrev",
117 // ".debug_aranges", // not used by gdb as of 6.7.1
118 ".debug_frame",
119 ".debug_info",
120 ".debug_line",
121 ".debug_loc",
122 ".debug_macinfo",
123 // ".debug_pubnames", // not used by gdb as of 6.7.1
124 ".debug_ranges",
125 ".debug_str",
126};
127
128static inline bool
129is_gdb_debug_section(const char* str)
130{
131 // We can do this faster: binary search or a hashtable. But why bother?
132 for (size_t i = 0; i < sizeof(gdb_sections)/sizeof(*gdb_sections); ++i)
133 if (strcmp(str, gdb_sections[i]) == 0)
134 return true;
135 return false;
136}
137
a2fb1b05
ILT
138// Whether to include this section in the link.
139
140template<int size, bool big_endian>
141bool
730cdc88 142Layout::include_section(Sized_relobj<size, big_endian>*, const char* name,
a2fb1b05
ILT
143 const elfcpp::Shdr<size, big_endian>& shdr)
144{
a2fb1b05
ILT
145 switch (shdr.get_sh_type())
146 {
147 case elfcpp::SHT_NULL:
148 case elfcpp::SHT_SYMTAB:
149 case elfcpp::SHT_DYNSYM:
150 case elfcpp::SHT_STRTAB:
151 case elfcpp::SHT_HASH:
152 case elfcpp::SHT_DYNAMIC:
153 case elfcpp::SHT_SYMTAB_SHNDX:
154 return false;
155
156 case elfcpp::SHT_RELA:
157 case elfcpp::SHT_REL:
158 case elfcpp::SHT_GROUP:
7019cd25
ILT
159 // If we are emitting relocations these should be handled
160 // elsewhere.
8851ecca
ILT
161 gold_assert(!parameters->options().relocatable()
162 && !parameters->options().emit_relocs());
6a74a719 163 return false;
a2fb1b05 164
9e2dcb77 165 case elfcpp::SHT_PROGBITS:
8851ecca 166 if (parameters->options().strip_debug()
9e2dcb77
ILT
167 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
168 {
169 // Debugging sections can only be recognized by name.
170 if (is_prefix_of(".debug", name)
171 || is_prefix_of(".gnu.linkonce.wi.", name)
172 || is_prefix_of(".line", name)
173 || is_prefix_of(".stab", name))
174 return false;
175 }
8851ecca 176 if (parameters->options().strip_debug_gdb()
02d2ba74
ILT
177 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
178 {
179 // Debugging sections can only be recognized by name.
180 if (is_prefix_of(".debug", name)
181 && !is_gdb_debug_section(name))
182 return false;
183 }
9e2dcb77
ILT
184 return true;
185
a2fb1b05 186 default:
a2fb1b05
ILT
187 return true;
188 }
189}
190
ead1e424 191// Return an output section named NAME, or NULL if there is none.
a2fb1b05 192
a2fb1b05 193Output_section*
ead1e424 194Layout::find_output_section(const char* name) const
a2fb1b05 195{
a445fddf
ILT
196 for (Section_list::const_iterator p = this->section_list_.begin();
197 p != this->section_list_.end();
ead1e424 198 ++p)
a445fddf
ILT
199 if (strcmp((*p)->name(), name) == 0)
200 return *p;
ead1e424
ILT
201 return NULL;
202}
a2fb1b05 203
ead1e424
ILT
204// Return an output segment of type TYPE, with segment flags SET set
205// and segment flags CLEAR clear. Return NULL if there is none.
a2fb1b05 206
ead1e424
ILT
207Output_segment*
208Layout::find_output_segment(elfcpp::PT type, elfcpp::Elf_Word set,
209 elfcpp::Elf_Word clear) const
210{
211 for (Segment_list::const_iterator p = this->segment_list_.begin();
212 p != this->segment_list_.end();
213 ++p)
214 if (static_cast<elfcpp::PT>((*p)->type()) == type
215 && ((*p)->flags() & set) == set
216 && ((*p)->flags() & clear) == 0)
217 return *p;
218 return NULL;
219}
a2fb1b05 220
ead1e424 221// Return the output section to use for section NAME with type TYPE
a445fddf
ILT
222// and section flags FLAGS. NAME must be canonicalized in the string
223// pool, and NAME_KEY is the key.
a2fb1b05 224
ead1e424 225Output_section*
f0641a0b
ILT
226Layout::get_output_section(const char* name, Stringpool::Key name_key,
227 elfcpp::Elf_Word type, elfcpp::Elf_Xword flags)
ead1e424 228{
f0641a0b 229 const Key key(name_key, std::make_pair(type, flags));
a2fb1b05
ILT
230 const std::pair<Key, Output_section*> v(key, NULL);
231 std::pair<Section_name_map::iterator, bool> ins(
232 this->section_name_map_.insert(v));
233
a2fb1b05 234 if (!ins.second)
ead1e424 235 return ins.first->second;
a2fb1b05
ILT
236 else
237 {
238 // This is the first time we've seen this name/type/flags
239 // combination.
ead1e424 240 Output_section* os = this->make_output_section(name, type, flags);
a2fb1b05 241 ins.first->second = os;
ead1e424 242 return os;
a2fb1b05 243 }
ead1e424
ILT
244}
245
a445fddf
ILT
246// Pick the output section to use for section NAME, in input file
247// RELOBJ, with type TYPE and flags FLAGS. RELOBJ may be NULL for a
248// linker created section. ADJUST_NAME is true if we should apply the
249// standard name mappings in Layout::output_section_name. This will
250// return NULL if the input section should be discarded.
251
252Output_section*
253Layout::choose_output_section(const Relobj* relobj, const char* name,
254 elfcpp::Elf_Word type, elfcpp::Elf_Xword flags,
255 bool adjust_name)
256{
257 // We should ignore some flags. FIXME: This will need some
258 // adjustment for ld -r.
259 flags &= ~ (elfcpp::SHF_INFO_LINK
260 | elfcpp::SHF_LINK_ORDER
261 | elfcpp::SHF_GROUP
262 | elfcpp::SHF_MERGE
263 | elfcpp::SHF_STRINGS);
264
265 if (this->script_options_->saw_sections_clause())
266 {
267 // We are using a SECTIONS clause, so the output section is
268 // chosen based only on the name.
269
270 Script_sections* ss = this->script_options_->script_sections();
271 const char* file_name = relobj == NULL ? NULL : relobj->name().c_str();
272 Output_section** output_section_slot;
273 name = ss->output_section_name(file_name, name, &output_section_slot);
274 if (name == NULL)
275 {
276 // The SECTIONS clause says to discard this input section.
277 return NULL;
278 }
279
280 // If this is an orphan section--one not mentioned in the linker
281 // script--then OUTPUT_SECTION_SLOT will be NULL, and we do the
282 // default processing below.
283
284 if (output_section_slot != NULL)
285 {
286 if (*output_section_slot != NULL)
287 return *output_section_slot;
288
289 // We don't put sections found in the linker script into
290 // SECTION_NAME_MAP_. That keeps us from getting confused
291 // if an orphan section is mapped to a section with the same
292 // name as one in the linker script.
293
294 name = this->namepool_.add(name, false, NULL);
295
296 Output_section* os = this->make_output_section(name, type, flags);
297 os->set_found_in_sections_clause();
298 *output_section_slot = os;
299 return os;
300 }
301 }
302
303 // FIXME: Handle SHF_OS_NONCONFORMING somewhere.
304
305 // Turn NAME from the name of the input section into the name of the
306 // output section.
307
308 size_t len = strlen(name);
8851ecca 309 if (adjust_name && !parameters->options().relocatable())
a445fddf
ILT
310 name = Layout::output_section_name(name, &len);
311
312 Stringpool::Key name_key;
313 name = this->namepool_.add_with_length(name, len, true, &name_key);
314
315 // Find or make the output section. The output section is selected
316 // based on the section name, type, and flags.
317 return this->get_output_section(name, name_key, type, flags);
318}
319
ead1e424 320// Return the output section to use for input section SHNDX, with name
730cdc88
ILT
321// NAME, with header HEADER, from object OBJECT. RELOC_SHNDX is the
322// index of a relocation section which applies to this section, or 0
323// if none, or -1U if more than one. RELOC_TYPE is the type of the
324// relocation section if there is one. Set *OFF to the offset of this
325// input section without the output section. Return NULL if the
326// section should be discarded. Set *OFF to -1 if the section
327// contents should not be written directly to the output file, but
328// will instead receive special handling.
ead1e424
ILT
329
330template<int size, bool big_endian>
331Output_section*
730cdc88
ILT
332Layout::layout(Sized_relobj<size, big_endian>* object, unsigned int shndx,
333 const char* name, const elfcpp::Shdr<size, big_endian>& shdr,
334 unsigned int reloc_shndx, unsigned int, off_t* off)
ead1e424
ILT
335{
336 if (!this->include_section(object, name, shdr))
337 return NULL;
338
6a74a719
ILT
339 Output_section* os;
340
341 // In a relocatable link a grouped section must not be combined with
342 // any other sections.
8851ecca 343 if (parameters->options().relocatable()
6a74a719
ILT
344 && (shdr.get_sh_flags() & elfcpp::SHF_GROUP) != 0)
345 {
346 name = this->namepool_.add(name, true, NULL);
347 os = this->make_output_section(name, shdr.get_sh_type(),
348 shdr.get_sh_flags());
349 }
350 else
351 {
352 os = this->choose_output_section(object, name, shdr.get_sh_type(),
353 shdr.get_sh_flags(), true);
354 if (os == NULL)
355 return NULL;
356 }
a2fb1b05
ILT
357
358 // FIXME: Handle SHF_LINK_ORDER somewhere.
359
a445fddf
ILT
360 *off = os->add_input_section(object, shndx, name, shdr, reloc_shndx,
361 this->script_options_->saw_sections_clause());
a2fb1b05
ILT
362
363 return os;
364}
365
6a74a719
ILT
366// Handle a relocation section when doing a relocatable link.
367
368template<int size, bool big_endian>
369Output_section*
370Layout::layout_reloc(Sized_relobj<size, big_endian>* object,
371 unsigned int,
372 const elfcpp::Shdr<size, big_endian>& shdr,
373 Output_section* data_section,
374 Relocatable_relocs* rr)
375{
8851ecca
ILT
376 gold_assert(parameters->options().relocatable()
377 || parameters->options().emit_relocs());
6a74a719
ILT
378
379 int sh_type = shdr.get_sh_type();
380
381 std::string name;
382 if (sh_type == elfcpp::SHT_REL)
383 name = ".rel";
384 else if (sh_type == elfcpp::SHT_RELA)
385 name = ".rela";
386 else
387 gold_unreachable();
388 name += data_section->name();
389
390 Output_section* os = this->choose_output_section(object, name.c_str(),
391 sh_type,
392 shdr.get_sh_flags(),
393 false);
394
395 os->set_should_link_to_symtab();
396 os->set_info_section(data_section);
397
398 Output_section_data* posd;
399 if (sh_type == elfcpp::SHT_REL)
400 {
401 os->set_entsize(elfcpp::Elf_sizes<size>::rel_size);
402 posd = new Output_relocatable_relocs<elfcpp::SHT_REL,
403 size,
404 big_endian>(rr);
405 }
406 else if (sh_type == elfcpp::SHT_RELA)
407 {
408 os->set_entsize(elfcpp::Elf_sizes<size>::rela_size);
409 posd = new Output_relocatable_relocs<elfcpp::SHT_RELA,
410 size,
411 big_endian>(rr);
412 }
413 else
414 gold_unreachable();
415
416 os->add_output_section_data(posd);
417 rr->set_output_data(posd);
418
419 return os;
420}
421
422// Handle a group section when doing a relocatable link.
423
424template<int size, bool big_endian>
425void
426Layout::layout_group(Symbol_table* symtab,
427 Sized_relobj<size, big_endian>* object,
428 unsigned int,
429 const char* group_section_name,
430 const char* signature,
431 const elfcpp::Shdr<size, big_endian>& shdr,
432 const elfcpp::Elf_Word* contents)
433{
8851ecca 434 gold_assert(parameters->options().relocatable());
6a74a719
ILT
435 gold_assert(shdr.get_sh_type() == elfcpp::SHT_GROUP);
436 group_section_name = this->namepool_.add(group_section_name, true, NULL);
437 Output_section* os = this->make_output_section(group_section_name,
438 elfcpp::SHT_GROUP,
439 shdr.get_sh_flags());
440
441 // We need to find a symbol with the signature in the symbol table.
755ab8af 442 // If we don't find one now, we need to look again later.
6a74a719 443 Symbol* sym = symtab->lookup(signature, NULL);
755ab8af
ILT
444 if (sym != NULL)
445 os->set_info_symndx(sym);
446 else
447 {
448 // We will wind up using a symbol whose name is the signature.
449 // So just put the signature in the symbol name pool to save it.
450 signature = symtab->canonicalize_name(signature);
451 this->group_signatures_.push_back(Group_signature(os, signature));
452 }
6a74a719
ILT
453
454 os->set_should_link_to_symtab();
6a74a719
ILT
455 os->set_entsize(4);
456
457 section_size_type entry_count =
458 convert_to_section_size_type(shdr.get_sh_size() / 4);
459 Output_section_data* posd =
460 new Output_data_group<size, big_endian>(object, entry_count, contents);
461 os->add_output_section_data(posd);
462}
463
730cdc88
ILT
464// Special GNU handling of sections name .eh_frame. They will
465// normally hold exception frame data as defined by the C++ ABI
466// (http://codesourcery.com/cxx-abi/).
3151305a
ILT
467
468template<int size, bool big_endian>
730cdc88
ILT
469Output_section*
470Layout::layout_eh_frame(Sized_relobj<size, big_endian>* object,
471 const unsigned char* symbols,
472 off_t symbols_size,
473 const unsigned char* symbol_names,
474 off_t symbol_names_size,
3151305a 475 unsigned int shndx,
3151305a 476 const elfcpp::Shdr<size, big_endian>& shdr,
730cdc88
ILT
477 unsigned int reloc_shndx, unsigned int reloc_type,
478 off_t* off)
3151305a 479{
730cdc88
ILT
480 gold_assert(shdr.get_sh_type() == elfcpp::SHT_PROGBITS);
481 gold_assert(shdr.get_sh_flags() == elfcpp::SHF_ALLOC);
482
a445fddf
ILT
483 const char* const name = ".eh_frame";
484 Output_section* os = this->choose_output_section(object,
485 name,
486 elfcpp::SHT_PROGBITS,
487 elfcpp::SHF_ALLOC,
488 false);
489 if (os == NULL)
490 return NULL;
730cdc88 491
3151305a
ILT
492 if (this->eh_frame_section_ == NULL)
493 {
494 this->eh_frame_section_ = os;
730cdc88
ILT
495 this->eh_frame_data_ = new Eh_frame();
496 os->add_output_section_data(this->eh_frame_data_);
3151305a 497
45aa233b 498 if (this->options_.eh_frame_hdr())
3151305a 499 {
3151305a 500 Output_section* hdr_os =
a445fddf
ILT
501 this->choose_output_section(NULL,
502 ".eh_frame_hdr",
503 elfcpp::SHT_PROGBITS,
504 elfcpp::SHF_ALLOC,
505 false);
3151305a 506
a445fddf
ILT
507 if (hdr_os != NULL)
508 {
509 Eh_frame_hdr* hdr_posd = new Eh_frame_hdr(os,
510 this->eh_frame_data_);
511 hdr_os->add_output_section_data(hdr_posd);
3151305a 512
a445fddf 513 hdr_os->set_after_input_sections();
730cdc88 514
1c4f3631
ILT
515 if (!this->script_options_->saw_phdrs_clause())
516 {
517 Output_segment* hdr_oseg;
518 hdr_oseg = this->make_output_segment(elfcpp::PT_GNU_EH_FRAME,
519 elfcpp::PF_R);
520 hdr_oseg->add_output_section(hdr_os, elfcpp::PF_R);
521 }
730cdc88 522
a445fddf
ILT
523 this->eh_frame_data_->set_eh_frame_hdr(hdr_posd);
524 }
3151305a
ILT
525 }
526 }
527
528 gold_assert(this->eh_frame_section_ == os);
529
730cdc88
ILT
530 if (this->eh_frame_data_->add_ehframe_input_section(object,
531 symbols,
532 symbols_size,
533 symbol_names,
534 symbol_names_size,
535 shndx,
536 reloc_shndx,
537 reloc_type))
538 *off = -1;
539 else
540 {
541 // We couldn't handle this .eh_frame section for some reason.
542 // Add it as a normal section.
a445fddf
ILT
543 bool saw_sections_clause = this->script_options_->saw_sections_clause();
544 *off = os->add_input_section(object, shndx, name, shdr, reloc_shndx,
545 saw_sections_clause);
730cdc88
ILT
546 }
547
548 return os;
3151305a
ILT
549}
550
ead1e424
ILT
551// Add POSD to an output section using NAME, TYPE, and FLAGS.
552
553void
554Layout::add_output_section_data(const char* name, elfcpp::Elf_Word type,
555 elfcpp::Elf_Xword flags,
556 Output_section_data* posd)
557{
a445fddf
ILT
558 Output_section* os = this->choose_output_section(NULL, name, type, flags,
559 false);
560 if (os != NULL)
561 os->add_output_section_data(posd);
ead1e424
ILT
562}
563
a2fb1b05
ILT
564// Map section flags to segment flags.
565
566elfcpp::Elf_Word
567Layout::section_flags_to_segment(elfcpp::Elf_Xword flags)
568{
569 elfcpp::Elf_Word ret = elfcpp::PF_R;
570 if ((flags & elfcpp::SHF_WRITE) != 0)
571 ret |= elfcpp::PF_W;
572 if ((flags & elfcpp::SHF_EXECINSTR) != 0)
573 ret |= elfcpp::PF_X;
574 return ret;
575}
576
96803768
ILT
577// Sometimes we compress sections. This is typically done for
578// sections that are not part of normal program execution (such as
579// .debug_* sections), and where the readers of these sections know
580// how to deal with compressed sections. (To make it easier for them,
581// we will rename the ouput section in such cases from .foo to
582// .foo.zlib.nnnn, where nnnn is the uncompressed size.) This routine
583// doesn't say for certain whether we'll compress -- it depends on
584// commandline options as well -- just whether this section is a
585// candidate for compression.
586
587static bool
588is_compressible_debug_section(const char* secname)
589{
590 return (strncmp(secname, ".debug", sizeof(".debug") - 1) == 0);
591}
592
a2fb1b05
ILT
593// Make a new Output_section, and attach it to segments as
594// appropriate.
595
596Output_section*
597Layout::make_output_section(const char* name, elfcpp::Elf_Word type,
598 elfcpp::Elf_Xword flags)
599{
96803768
ILT
600 Output_section* os;
601 if ((flags & elfcpp::SHF_ALLOC) == 0
602 && this->options_.compress_debug_sections()
603 && is_compressible_debug_section(name))
604 os = new Output_compressed_section(&this->options_, name, type, flags);
605 else
606 os = new Output_section(name, type, flags);
607
a3ad94ed 608 this->section_list_.push_back(os);
a2fb1b05
ILT
609
610 if ((flags & elfcpp::SHF_ALLOC) == 0)
a3ad94ed 611 this->unattached_section_list_.push_back(os);
a2fb1b05
ILT
612 else
613 {
8851ecca 614 if (parameters->options().relocatable())
6a74a719
ILT
615 return os;
616
a445fddf
ILT
617 // If we have a SECTIONS clause, we can't handle the attachment
618 // to segments until after we've seen all the sections.
619 if (this->script_options_->saw_sections_clause())
620 return os;
621
1c4f3631
ILT
622 gold_assert(!this->script_options_->saw_phdrs_clause());
623
a2fb1b05
ILT
624 // This output section goes into a PT_LOAD segment.
625
626 elfcpp::Elf_Word seg_flags = Layout::section_flags_to_segment(flags);
627
756ac4a8
ILT
628 // In general the only thing we really care about for PT_LOAD
629 // segments is whether or not they are writable, so that is how
630 // we search for them. People who need segments sorted on some
631 // other basis will have to use a linker script.
a2fb1b05
ILT
632
633 Segment_list::const_iterator p;
634 for (p = this->segment_list_.begin();
635 p != this->segment_list_.end();
636 ++p)
637 {
638 if ((*p)->type() == elfcpp::PT_LOAD
639 && ((*p)->flags() & elfcpp::PF_W) == (seg_flags & elfcpp::PF_W))
640 {
756ac4a8
ILT
641 // If -Tbss was specified, we need to separate the data
642 // and BSS segments.
45aa233b 643 if (this->options_.user_set_Tbss())
756ac4a8
ILT
644 {
645 if ((type == elfcpp::SHT_NOBITS)
646 == (*p)->has_any_data_sections())
647 continue;
648 }
649
75f65a3e 650 (*p)->add_output_section(os, seg_flags);
a2fb1b05
ILT
651 break;
652 }
653 }
654
655 if (p == this->segment_list_.end())
656 {
3802b2dd
ILT
657 Output_segment* oseg = this->make_output_segment(elfcpp::PT_LOAD,
658 seg_flags);
75f65a3e 659 oseg->add_output_section(os, seg_flags);
a2fb1b05
ILT
660 }
661
662 // If we see a loadable SHT_NOTE section, we create a PT_NOTE
663 // segment.
664 if (type == elfcpp::SHT_NOTE)
665 {
666 // See if we already have an equivalent PT_NOTE segment.
667 for (p = this->segment_list_.begin();
668 p != segment_list_.end();
669 ++p)
670 {
671 if ((*p)->type() == elfcpp::PT_NOTE
672 && (((*p)->flags() & elfcpp::PF_W)
673 == (seg_flags & elfcpp::PF_W)))
674 {
75f65a3e 675 (*p)->add_output_section(os, seg_flags);
a2fb1b05
ILT
676 break;
677 }
678 }
679
680 if (p == this->segment_list_.end())
681 {
3802b2dd
ILT
682 Output_segment* oseg = this->make_output_segment(elfcpp::PT_NOTE,
683 seg_flags);
75f65a3e 684 oseg->add_output_section(os, seg_flags);
a2fb1b05
ILT
685 }
686 }
54dc6425
ILT
687
688 // If we see a loadable SHF_TLS section, we create a PT_TLS
92e059d8 689 // segment. There can only be one such segment.
54dc6425
ILT
690 if ((flags & elfcpp::SHF_TLS) != 0)
691 {
92e059d8 692 if (this->tls_segment_ == NULL)
3802b2dd
ILT
693 this->tls_segment_ = this->make_output_segment(elfcpp::PT_TLS,
694 seg_flags);
92e059d8 695 this->tls_segment_->add_output_section(os, seg_flags);
54dc6425 696 }
a2fb1b05
ILT
697 }
698
699 return os;
700}
701
3802b2dd
ILT
702// Return the number of segments we expect to see.
703
704size_t
705Layout::expected_segment_count() const
706{
707 size_t ret = this->segment_list_.size();
708
709 // If we didn't see a SECTIONS clause in a linker script, we should
710 // already have the complete list of segments. Otherwise we ask the
711 // SECTIONS clause how many segments it expects, and add in the ones
712 // we already have (PT_GNU_STACK, PT_GNU_EH_FRAME, etc.)
713
714 if (!this->script_options_->saw_sections_clause())
715 return ret;
716 else
717 {
718 const Script_sections* ss = this->script_options_->script_sections();
719 return ret + ss->expected_segment_count(this);
720 }
721}
722
35cdfc9a
ILT
723// Handle the .note.GNU-stack section at layout time. SEEN_GNU_STACK
724// is whether we saw a .note.GNU-stack section in the object file.
725// GNU_STACK_FLAGS is the section flags. The flags give the
726// protection required for stack memory. We record this in an
727// executable as a PT_GNU_STACK segment. If an object file does not
728// have a .note.GNU-stack segment, we must assume that it is an old
729// object. On some targets that will force an executable stack.
730
731void
732Layout::layout_gnu_stack(bool seen_gnu_stack, uint64_t gnu_stack_flags)
733{
734 if (!seen_gnu_stack)
735 this->input_without_gnu_stack_note_ = true;
736 else
737 {
738 this->input_with_gnu_stack_note_ = true;
739 if ((gnu_stack_flags & elfcpp::SHF_EXECINSTR) != 0)
740 this->input_requires_executable_stack_ = true;
741 }
742}
743
a3ad94ed
ILT
744// Create the dynamic sections which are needed before we read the
745// relocs.
746
747void
9b07f471 748Layout::create_initial_dynamic_sections(Symbol_table* symtab)
a3ad94ed 749{
436ca963 750 if (parameters->doing_static_link())
a3ad94ed
ILT
751 return;
752
3802b2dd
ILT
753 this->dynamic_section_ = this->choose_output_section(NULL, ".dynamic",
754 elfcpp::SHT_DYNAMIC,
755 (elfcpp::SHF_ALLOC
756 | elfcpp::SHF_WRITE),
757 false);
a3ad94ed 758
9b07f471 759 symtab->define_in_output_data("_DYNAMIC", NULL, this->dynamic_section_, 0, 0,
a3ad94ed
ILT
760 elfcpp::STT_OBJECT, elfcpp::STB_LOCAL,
761 elfcpp::STV_HIDDEN, 0, false, false);
16649710 762
9025d29d 763 this->dynamic_data_ = new Output_data_dynamic(&this->dynpool_);
16649710
ILT
764
765 this->dynamic_section_->add_output_section_data(this->dynamic_data_);
a3ad94ed
ILT
766}
767
bfd58944
ILT
768// For each output section whose name can be represented as C symbol,
769// define __start and __stop symbols for the section. This is a GNU
770// extension.
771
772void
9b07f471 773Layout::define_section_symbols(Symbol_table* symtab)
bfd58944
ILT
774{
775 for (Section_list::const_iterator p = this->section_list_.begin();
776 p != this->section_list_.end();
777 ++p)
778 {
779 const char* const name = (*p)->name();
780 if (name[strspn(name,
781 ("0123456789"
782 "ABCDEFGHIJKLMNOPWRSTUVWXYZ"
783 "abcdefghijklmnopqrstuvwxyz"
784 "_"))]
785 == '\0')
786 {
787 const std::string name_string(name);
788 const std::string start_name("__start_" + name_string);
789 const std::string stop_name("__stop_" + name_string);
790
9b07f471 791 symtab->define_in_output_data(start_name.c_str(),
bfd58944
ILT
792 NULL, // version
793 *p,
794 0, // value
795 0, // symsize
796 elfcpp::STT_NOTYPE,
797 elfcpp::STB_GLOBAL,
798 elfcpp::STV_DEFAULT,
799 0, // nonvis
800 false, // offset_is_from_end
a445fddf 801 true); // only_if_ref
bfd58944 802
9b07f471 803 symtab->define_in_output_data(stop_name.c_str(),
bfd58944
ILT
804 NULL, // version
805 *p,
806 0, // value
807 0, // symsize
808 elfcpp::STT_NOTYPE,
809 elfcpp::STB_GLOBAL,
810 elfcpp::STV_DEFAULT,
811 0, // nonvis
812 true, // offset_is_from_end
a445fddf 813 true); // only_if_ref
bfd58944
ILT
814 }
815 }
816}
817
755ab8af
ILT
818// Define symbols for group signatures.
819
820void
821Layout::define_group_signatures(Symbol_table* symtab)
822{
823 for (Group_signatures::iterator p = this->group_signatures_.begin();
824 p != this->group_signatures_.end();
825 ++p)
826 {
827 Symbol* sym = symtab->lookup(p->signature, NULL);
828 if (sym != NULL)
829 p->section->set_info_symndx(sym);
830 else
831 {
832 // Force the name of the group section to the group
833 // signature, and use the group's section symbol as the
834 // signature symbol.
835 if (strcmp(p->section->name(), p->signature) != 0)
836 {
837 const char* name = this->namepool_.add(p->signature,
838 true, NULL);
839 p->section->set_name(name);
840 }
841 p->section->set_needs_symtab_index();
842 p->section->set_info_section_symndx(p->section);
843 }
844 }
845
846 this->group_signatures_.clear();
847}
848
75f65a3e
ILT
849// Find the first read-only PT_LOAD segment, creating one if
850// necessary.
54dc6425 851
75f65a3e
ILT
852Output_segment*
853Layout::find_first_load_seg()
54dc6425 854{
75f65a3e
ILT
855 for (Segment_list::const_iterator p = this->segment_list_.begin();
856 p != this->segment_list_.end();
857 ++p)
858 {
859 if ((*p)->type() == elfcpp::PT_LOAD
860 && ((*p)->flags() & elfcpp::PF_R) != 0
861 && ((*p)->flags() & elfcpp::PF_W) == 0)
862 return *p;
863 }
864
1c4f3631
ILT
865 gold_assert(!this->script_options_->saw_phdrs_clause());
866
3802b2dd
ILT
867 Output_segment* load_seg = this->make_output_segment(elfcpp::PT_LOAD,
868 elfcpp::PF_R);
75f65a3e 869 return load_seg;
54dc6425
ILT
870}
871
872// Finalize the layout. When this is called, we have created all the
873// output sections and all the output segments which are based on
874// input sections. We have several things to do, and we have to do
875// them in the right order, so that we get the right results correctly
876// and efficiently.
877
878// 1) Finalize the list of output segments and create the segment
879// table header.
880
881// 2) Finalize the dynamic symbol table and associated sections.
882
883// 3) Determine the final file offset of all the output segments.
884
885// 4) Determine the final file offset of all the SHF_ALLOC output
886// sections.
887
75f65a3e
ILT
888// 5) Create the symbol table sections and the section name table
889// section.
890
891// 6) Finalize the symbol table: set symbol values to their final
54dc6425
ILT
892// value and make a final determination of which symbols are going
893// into the output symbol table.
894
54dc6425
ILT
895// 7) Create the section table header.
896
897// 8) Determine the final file offset of all the output sections which
898// are not SHF_ALLOC, including the section table header.
899
900// 9) Finalize the ELF file header.
901
75f65a3e
ILT
902// This function returns the size of the output file.
903
904off_t
17a1d0a9 905Layout::finalize(const Input_objects* input_objects, Symbol_table* symtab,
8851ecca 906 Target* target, const Task* task)
54dc6425 907{
7e1edb90 908 target->finalize_sections(this);
5a6f7e2d 909
17a1d0a9 910 this->count_local_symbols(task, input_objects);
7bf1f802 911
35cdfc9a
ILT
912 this->create_gold_note();
913 this->create_executable_stack_info(target);
4f211c8b 914
3802b2dd 915 Output_segment* phdr_seg = NULL;
8851ecca 916 if (!parameters->options().relocatable() && !parameters->doing_static_link())
54dc6425 917 {
dbe717ef
ILT
918 // There was a dynamic object in the link. We need to create
919 // some information for the dynamic linker.
920
3802b2dd
ILT
921 // Create the PT_PHDR segment which will hold the program
922 // headers.
1c4f3631
ILT
923 if (!this->script_options_->saw_phdrs_clause())
924 phdr_seg = this->make_output_segment(elfcpp::PT_PHDR, elfcpp::PF_R);
3802b2dd 925
14b31740
ILT
926 // Create the dynamic symbol table, including the hash table.
927 Output_section* dynstr;
928 std::vector<Symbol*> dynamic_symbols;
929 unsigned int local_dynamic_count;
a5dc0706
ILT
930 Versions versions(*this->script_options()->version_script_info(),
931 &this->dynpool_);
9b07f471 932 this->create_dynamic_symtab(input_objects, symtab, &dynstr,
14b31740
ILT
933 &local_dynamic_count, &dynamic_symbols,
934 &versions);
dbe717ef
ILT
935
936 // Create the .interp section to hold the name of the
937 // interpreter, and put it in a PT_INTERP segment.
8851ecca 938 if (!parameters->options().shared())
96f2030e 939 this->create_interp(target);
a3ad94ed
ILT
940
941 // Finish the .dynamic section to hold the dynamic data, and put
942 // it in a PT_DYNAMIC segment.
16649710 943 this->finish_dynamic_section(input_objects, symtab);
14b31740
ILT
944
945 // We should have added everything we need to the dynamic string
946 // table.
947 this->dynpool_.set_string_offsets();
948
949 // Create the version sections. We can't do this until the
950 // dynamic string table is complete.
46fe1623 951 this->create_version_sections(&versions, symtab, local_dynamic_count,
14b31740 952 dynamic_symbols, dynstr);
54dc6425
ILT
953 }
954
a445fddf
ILT
955 // If there is a SECTIONS clause, put all the input sections into
956 // the required order.
957 Output_segment* load_seg;
88dd47ac 958 if (this->script_options_->saw_sections_clause())
a445fddf 959 load_seg = this->set_section_addresses_from_script(symtab);
8851ecca 960 else if (parameters->options().relocatable())
88dd47ac 961 load_seg = NULL;
a445fddf
ILT
962 else
963 load_seg = this->find_first_load_seg();
54dc6425 964
45aa233b 965 if (this->options_.oformat() != General_options::OBJECT_FORMAT_ELF)
516cb3d0
ILT
966 load_seg = NULL;
967
3802b2dd 968 gold_assert(phdr_seg == NULL || load_seg != NULL);
75f65a3e
ILT
969
970 // Lay out the segment headers.
75f65a3e 971 Output_segment_headers* segment_headers;
8851ecca 972 if (parameters->options().relocatable())
6a74a719
ILT
973 segment_headers = NULL;
974 else
975 {
976 segment_headers = new Output_segment_headers(this->segment_list_);
977 if (load_seg != NULL)
978 load_seg->add_initial_output_data(segment_headers);
979 if (phdr_seg != NULL)
980 phdr_seg->add_initial_output_data(segment_headers);
981 }
75f65a3e
ILT
982
983 // Lay out the file header.
984 Output_file_header* file_header;
d391083d 985 file_header = new Output_file_header(target, symtab, segment_headers,
a5dc0706 986 this->options_.entry());
a445fddf
ILT
987 if (load_seg != NULL)
988 load_seg->add_initial_output_data(file_header);
989
61ba1cf9 990 this->special_output_list_.push_back(file_header);
6a74a719
ILT
991 if (segment_headers != NULL)
992 this->special_output_list_.push_back(segment_headers);
75f65a3e 993
6a74a719 994 if (this->script_options_->saw_phdrs_clause()
8851ecca 995 && !parameters->options().relocatable())
1c4f3631
ILT
996 {
997 // Support use of FILEHDRS and PHDRS attachments in a PHDRS
998 // clause in a linker script.
999 Script_sections* ss = this->script_options_->script_sections();
1000 ss->put_headers_in_phdrs(file_header, segment_headers);
1001 }
1002
ead1e424 1003 // We set the output section indexes in set_segment_offsets and
27bc2bce 1004 // set_section_indexes.
ead1e424
ILT
1005 unsigned int shndx = 1;
1006
1007 // Set the file offsets of all the segments, and all the sections
1008 // they contain.
6a74a719 1009 off_t off;
8851ecca 1010 if (!parameters->options().relocatable())
6a74a719
ILT
1011 off = this->set_segment_offsets(target, load_seg, &shndx);
1012 else
1013 off = this->set_relocatable_section_offsets(file_header, &shndx);
75f65a3e 1014
a9a60db6
ILT
1015 // Set the file offsets of all the non-data sections we've seen so
1016 // far which don't have to wait for the input sections. We need
1017 // this in order to finalize local symbols in non-allocated
1018 // sections.
1019 off = this->set_section_offsets(off, BEFORE_INPUT_SECTIONS_PASS);
1020
75f65a3e 1021 // Create the symbol table sections.
cb295612 1022 this->create_symtab_sections(input_objects, symtab, &off);
7bf1f802
ILT
1023 if (!parameters->doing_static_link())
1024 this->assign_local_dynsym_offsets(input_objects);
75f65a3e 1025
e5756efb
ILT
1026 // Process any symbol assignments from a linker script. This must
1027 // be called after the symbol table has been finalized.
1028 this->script_options_->finalize_symbols(symtab, this);
1029
75f65a3e
ILT
1030 // Create the .shstrtab section.
1031 Output_section* shstrtab_section = this->create_shstrtab();
1032
a9a60db6
ILT
1033 // Set the file offsets of the rest of the non-data sections which
1034 // don't have to wait for the input sections.
9a0910c3 1035 off = this->set_section_offsets(off, BEFORE_INPUT_SECTIONS_PASS);
86887060
ILT
1036
1037 // Now that all sections have been created, set the section indexes.
1038 shndx = this->set_section_indexes(shndx);
ead1e424 1039
75f65a3e 1040 // Create the section table header.
27bc2bce 1041 this->create_shdrs(&off);
75f65a3e 1042
17a1d0a9
ILT
1043 // If there are no sections which require postprocessing, we can
1044 // handle the section names now, and avoid a resize later.
1045 if (!this->any_postprocessing_sections_)
1046 off = this->set_section_offsets(off,
1047 STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS);
1048
27bc2bce 1049 file_header->set_section_info(this->section_headers_, shstrtab_section);
75f65a3e 1050
27bc2bce
ILT
1051 // Now we know exactly where everything goes in the output file
1052 // (except for non-allocated sections which require postprocessing).
a3ad94ed 1053 Output_data::layout_complete();
75f65a3e 1054
e44fcf3b
ILT
1055 this->output_file_size_ = off;
1056
75f65a3e
ILT
1057 return off;
1058}
1059
4f211c8b
ILT
1060// Create a .note section for an executable or shared library. This
1061// records the version of gold used to create the binary.
1062
1063void
35cdfc9a 1064Layout::create_gold_note()
4f211c8b 1065{
8851ecca 1066 if (parameters->options().relocatable())
4f211c8b
ILT
1067 return;
1068
e2305dc0
ILT
1069 // Authorities all agree that the values in a .note field should
1070 // be aligned on 4-byte boundaries for 32-bit binaries. However,
1071 // they differ on what the alignment is for 64-bit binaries.
1072 // The GABI says unambiguously they take 8-byte alignment:
1073 // http://sco.com/developers/gabi/latest/ch5.pheader.html#note_section
1074 // Other documentation says alignment should always be 4 bytes:
1075 // http://www.netbsd.org/docs/kernel/elf-notes.html#note-format
1076 // GNU ld and GNU readelf both support the latter (at least as of
1077 // version 2.16.91), and glibc always generates the latter for
1078 // .note.ABI-tag (as of version 1.6), so that's the one we go with
1079 // here.
35cdfc9a 1080#ifdef GABI_FORMAT_FOR_DOTNOTE_SECTION // This is not defined by default.
8851ecca 1081 const int size = parameters->target().get_size();
e2305dc0
ILT
1082#else
1083 const int size = 32;
1084#endif
4f211c8b
ILT
1085
1086 // The contents of the .note section.
1087 const char* name = "GNU";
1088 std::string desc(std::string("gold ") + gold::get_version_string());
1089 size_t namesz = strlen(name) + 1;
1090 size_t aligned_namesz = align_address(namesz, size / 8);
1091 size_t descsz = desc.length() + 1;
1092 size_t aligned_descsz = align_address(descsz, size / 8);
1093 const int note_type = 4;
1094
1095 size_t notesz = 3 * (size / 8) + aligned_namesz + aligned_descsz;
1096
1097 unsigned char buffer[128];
1098 gold_assert(sizeof buffer >= notesz);
1099 memset(buffer, 0, notesz);
1100
8851ecca 1101 bool is_big_endian = parameters->target().is_big_endian();
4f211c8b
ILT
1102
1103 if (size == 32)
1104 {
1105 if (!is_big_endian)
1106 {
1107 elfcpp::Swap<32, false>::writeval(buffer, namesz);
1108 elfcpp::Swap<32, false>::writeval(buffer + 4, descsz);
1109 elfcpp::Swap<32, false>::writeval(buffer + 8, note_type);
1110 }
1111 else
1112 {
1113 elfcpp::Swap<32, true>::writeval(buffer, namesz);
1114 elfcpp::Swap<32, true>::writeval(buffer + 4, descsz);
1115 elfcpp::Swap<32, true>::writeval(buffer + 8, note_type);
1116 }
1117 }
1118 else if (size == 64)
1119 {
1120 if (!is_big_endian)
1121 {
1122 elfcpp::Swap<64, false>::writeval(buffer, namesz);
1123 elfcpp::Swap<64, false>::writeval(buffer + 8, descsz);
1124 elfcpp::Swap<64, false>::writeval(buffer + 16, note_type);
1125 }
1126 else
1127 {
1128 elfcpp::Swap<64, true>::writeval(buffer, namesz);
1129 elfcpp::Swap<64, true>::writeval(buffer + 8, descsz);
1130 elfcpp::Swap<64, true>::writeval(buffer + 16, note_type);
1131 }
1132 }
1133 else
1134 gold_unreachable();
1135
1136 memcpy(buffer + 3 * (size / 8), name, namesz);
1137 memcpy(buffer + 3 * (size / 8) + aligned_namesz, desc.data(), descsz);
1138
cfd73a4e 1139 const char* note_name = this->namepool_.add(".note", false, NULL);
4f211c8b
ILT
1140 Output_section* os = this->make_output_section(note_name,
1141 elfcpp::SHT_NOTE,
1142 0);
1143 Output_section_data* posd = new Output_data_const(buffer, notesz,
1144 size / 8);
1145 os->add_output_section_data(posd);
1146}
1147
35cdfc9a
ILT
1148// Record whether the stack should be executable. This can be set
1149// from the command line using the -z execstack or -z noexecstack
1150// options. Otherwise, if any input file has a .note.GNU-stack
1151// section with the SHF_EXECINSTR flag set, the stack should be
1152// executable. Otherwise, if at least one input file a
1153// .note.GNU-stack section, and some input file has no .note.GNU-stack
1154// section, we use the target default for whether the stack should be
1155// executable. Otherwise, we don't generate a stack note. When
1156// generating a object file, we create a .note.GNU-stack section with
1157// the appropriate marking. When generating an executable or shared
1158// library, we create a PT_GNU_STACK segment.
1159
1160void
1161Layout::create_executable_stack_info(const Target* target)
1162{
1163 bool is_stack_executable;
1164 if (this->options_.is_execstack_set())
1165 is_stack_executable = this->options_.is_stack_executable();
1166 else if (!this->input_with_gnu_stack_note_)
1167 return;
1168 else
1169 {
1170 if (this->input_requires_executable_stack_)
1171 is_stack_executable = true;
1172 else if (this->input_without_gnu_stack_note_)
1173 is_stack_executable = target->is_default_stack_executable();
1174 else
1175 is_stack_executable = false;
1176 }
1177
8851ecca 1178 if (parameters->options().relocatable())
35cdfc9a
ILT
1179 {
1180 const char* name = this->namepool_.add(".note.GNU-stack", false, NULL);
1181 elfcpp::Elf_Xword flags = 0;
1182 if (is_stack_executable)
1183 flags |= elfcpp::SHF_EXECINSTR;
1184 this->make_output_section(name, elfcpp::SHT_PROGBITS, flags);
1185 }
1186 else
1187 {
1c4f3631
ILT
1188 if (this->script_options_->saw_phdrs_clause())
1189 return;
35cdfc9a
ILT
1190 int flags = elfcpp::PF_R | elfcpp::PF_W;
1191 if (is_stack_executable)
1192 flags |= elfcpp::PF_X;
3802b2dd 1193 this->make_output_segment(elfcpp::PT_GNU_STACK, flags);
35cdfc9a
ILT
1194 }
1195}
1196
75f65a3e
ILT
1197// Return whether SEG1 should be before SEG2 in the output file. This
1198// is based entirely on the segment type and flags. When this is
1199// called the segment addresses has normally not yet been set.
1200
1201bool
1202Layout::segment_precedes(const Output_segment* seg1,
1203 const Output_segment* seg2)
1204{
1205 elfcpp::Elf_Word type1 = seg1->type();
1206 elfcpp::Elf_Word type2 = seg2->type();
1207
1208 // The single PT_PHDR segment is required to precede any loadable
1209 // segment. We simply make it always first.
1210 if (type1 == elfcpp::PT_PHDR)
1211 {
a3ad94ed 1212 gold_assert(type2 != elfcpp::PT_PHDR);
75f65a3e
ILT
1213 return true;
1214 }
1215 if (type2 == elfcpp::PT_PHDR)
1216 return false;
1217
1218 // The single PT_INTERP segment is required to precede any loadable
1219 // segment. We simply make it always second.
1220 if (type1 == elfcpp::PT_INTERP)
1221 {
a3ad94ed 1222 gold_assert(type2 != elfcpp::PT_INTERP);
75f65a3e
ILT
1223 return true;
1224 }
1225 if (type2 == elfcpp::PT_INTERP)
1226 return false;
1227
1228 // We then put PT_LOAD segments before any other segments.
1229 if (type1 == elfcpp::PT_LOAD && type2 != elfcpp::PT_LOAD)
1230 return true;
1231 if (type2 == elfcpp::PT_LOAD && type1 != elfcpp::PT_LOAD)
1232 return false;
1233
92e059d8
ILT
1234 // We put the PT_TLS segment last, because that is where the dynamic
1235 // linker expects to find it (this is just for efficiency; other
1236 // positions would also work correctly).
1237 if (type1 == elfcpp::PT_TLS && type2 != elfcpp::PT_TLS)
1238 return false;
1239 if (type2 == elfcpp::PT_TLS && type1 != elfcpp::PT_TLS)
1240 return true;
1241
75f65a3e
ILT
1242 const elfcpp::Elf_Word flags1 = seg1->flags();
1243 const elfcpp::Elf_Word flags2 = seg2->flags();
1244
1245 // The order of non-PT_LOAD segments is unimportant. We simply sort
1246 // by the numeric segment type and flags values. There should not
1247 // be more than one segment with the same type and flags.
1248 if (type1 != elfcpp::PT_LOAD)
1249 {
1250 if (type1 != type2)
1251 return type1 < type2;
a3ad94ed 1252 gold_assert(flags1 != flags2);
75f65a3e
ILT
1253 return flags1 < flags2;
1254 }
1255
a445fddf
ILT
1256 // If the addresses are set already, sort by load address.
1257 if (seg1->are_addresses_set())
1258 {
1259 if (!seg2->are_addresses_set())
1260 return true;
1261
1262 unsigned int section_count1 = seg1->output_section_count();
1263 unsigned int section_count2 = seg2->output_section_count();
1264 if (section_count1 == 0 && section_count2 > 0)
1265 return true;
1266 if (section_count1 > 0 && section_count2 == 0)
1267 return false;
1268
1269 uint64_t paddr1 = seg1->first_section_load_address();
1270 uint64_t paddr2 = seg2->first_section_load_address();
1271 if (paddr1 != paddr2)
1272 return paddr1 < paddr2;
1273 }
1274 else if (seg2->are_addresses_set())
1275 return false;
1276
75f65a3e 1277 // We sort PT_LOAD segments based on the flags. Readonly segments
756ac4a8
ILT
1278 // come before writable segments. Then writable segments with data
1279 // come before writable segments without data. Then executable
1280 // segments come before non-executable segments. Then the unlikely
1281 // case of a non-readable segment comes before the normal case of a
1282 // readable segment. If there are multiple segments with the same
1283 // type and flags, we require that the address be set, and we sort
1284 // by virtual address and then physical address.
75f65a3e
ILT
1285 if ((flags1 & elfcpp::PF_W) != (flags2 & elfcpp::PF_W))
1286 return (flags1 & elfcpp::PF_W) == 0;
756ac4a8
ILT
1287 if ((flags1 & elfcpp::PF_W) != 0
1288 && seg1->has_any_data_sections() != seg2->has_any_data_sections())
1289 return seg1->has_any_data_sections();
75f65a3e
ILT
1290 if ((flags1 & elfcpp::PF_X) != (flags2 & elfcpp::PF_X))
1291 return (flags1 & elfcpp::PF_X) != 0;
1292 if ((flags1 & elfcpp::PF_R) != (flags2 & elfcpp::PF_R))
1293 return (flags1 & elfcpp::PF_R) == 0;
1294
a445fddf
ILT
1295 // We shouldn't get here--we shouldn't create segments which we
1296 // can't distinguish.
1297 gold_unreachable();
75f65a3e
ILT
1298}
1299
ead1e424
ILT
1300// Set the file offsets of all the segments, and all the sections they
1301// contain. They have all been created. LOAD_SEG must be be laid out
1302// first. Return the offset of the data to follow.
75f65a3e
ILT
1303
1304off_t
ead1e424
ILT
1305Layout::set_segment_offsets(const Target* target, Output_segment* load_seg,
1306 unsigned int *pshndx)
75f65a3e
ILT
1307{
1308 // Sort them into the final order.
54dc6425
ILT
1309 std::sort(this->segment_list_.begin(), this->segment_list_.end(),
1310 Layout::Compare_segments());
1311
75f65a3e
ILT
1312 // Find the PT_LOAD segments, and set their addresses and offsets
1313 // and their section's addresses and offsets.
0c5e9c22 1314 uint64_t addr;
45aa233b
ILT
1315 if (this->options_.user_set_Ttext())
1316 addr = this->options_.Ttext();
8851ecca 1317 else if (parameters->options().shared())
a445fddf 1318 addr = 0;
0c5e9c22
ILT
1319 else
1320 addr = target->default_text_segment_address();
75f65a3e 1321 off_t off = 0;
a445fddf
ILT
1322
1323 // If LOAD_SEG is NULL, then the file header and segment headers
1324 // will not be loadable. But they still need to be at offset 0 in
1325 // the file. Set their offsets now.
1326 if (load_seg == NULL)
1327 {
1328 for (Data_list::iterator p = this->special_output_list_.begin();
1329 p != this->special_output_list_.end();
1330 ++p)
1331 {
1332 off = align_address(off, (*p)->addralign());
1333 (*p)->set_address_and_file_offset(0, off);
1334 off += (*p)->data_size();
1335 }
1336 }
1337
75f65a3e
ILT
1338 bool was_readonly = false;
1339 for (Segment_list::iterator p = this->segment_list_.begin();
1340 p != this->segment_list_.end();
1341 ++p)
1342 {
1343 if ((*p)->type() == elfcpp::PT_LOAD)
1344 {
1345 if (load_seg != NULL && load_seg != *p)
a3ad94ed 1346 gold_unreachable();
75f65a3e
ILT
1347 load_seg = NULL;
1348
756ac4a8
ILT
1349 bool are_addresses_set = (*p)->are_addresses_set();
1350 if (are_addresses_set)
1351 {
1352 // When it comes to setting file offsets, we care about
1353 // the physical address.
1354 addr = (*p)->paddr();
1355 }
45aa233b 1356 else if (this->options_.user_set_Tdata()
756ac4a8 1357 && ((*p)->flags() & elfcpp::PF_W) != 0
45aa233b 1358 && (!this->options_.user_set_Tbss()
756ac4a8
ILT
1359 || (*p)->has_any_data_sections()))
1360 {
45aa233b 1361 addr = this->options_.Tdata();
756ac4a8
ILT
1362 are_addresses_set = true;
1363 }
45aa233b 1364 else if (this->options_.user_set_Tbss()
756ac4a8
ILT
1365 && ((*p)->flags() & elfcpp::PF_W) != 0
1366 && !(*p)->has_any_data_sections())
1367 {
45aa233b 1368 addr = this->options_.Tbss();
756ac4a8
ILT
1369 are_addresses_set = true;
1370 }
1371
75f65a3e
ILT
1372 uint64_t orig_addr = addr;
1373 uint64_t orig_off = off;
1374
a445fddf 1375 uint64_t aligned_addr = 0;
75f65a3e 1376 uint64_t abi_pagesize = target->abi_pagesize();
0496d5e5 1377
a445fddf
ILT
1378 // FIXME: This should depend on the -n and -N options.
1379 (*p)->set_minimum_p_align(target->common_pagesize());
0496d5e5 1380
a445fddf 1381 if (are_addresses_set)
75f65a3e 1382 {
a445fddf
ILT
1383 // Adjust the file offset to the same address modulo the
1384 // page size.
1385 uint64_t unsigned_off = off;
1386 uint64_t aligned_off = ((unsigned_off & ~(abi_pagesize - 1))
1387 | (addr & (abi_pagesize - 1)));
1388 if (aligned_off < unsigned_off)
1389 aligned_off += abi_pagesize;
1390 off = aligned_off;
1391 }
1392 else
1393 {
1394 // If the last segment was readonly, and this one is
1395 // not, then skip the address forward one page,
1396 // maintaining the same position within the page. This
1397 // lets us store both segments overlapping on a single
1398 // page in the file, but the loader will put them on
1399 // different pages in memory.
1400
1401 addr = align_address(addr, (*p)->maximum_alignment());
75f65a3e 1402 aligned_addr = addr;
a445fddf
ILT
1403
1404 if (was_readonly && ((*p)->flags() & elfcpp::PF_W) != 0)
1405 {
1406 if ((addr & (abi_pagesize - 1)) != 0)
1407 addr = addr + abi_pagesize;
1408 }
1409
1410 off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
75f65a3e
ILT
1411 }
1412
ead1e424 1413 unsigned int shndx_hold = *pshndx;
a445fddf
ILT
1414 uint64_t new_addr = (*p)->set_section_addresses(false, addr, &off,
1415 pshndx);
75f65a3e
ILT
1416
1417 // Now that we know the size of this segment, we may be able
1418 // to save a page in memory, at the cost of wasting some
1419 // file space, by instead aligning to the start of a new
1420 // page. Here we use the real machine page size rather than
1421 // the ABI mandated page size.
1422
a445fddf 1423 if (!are_addresses_set && aligned_addr != addr)
75f65a3e
ILT
1424 {
1425 uint64_t common_pagesize = target->common_pagesize();
1426 uint64_t first_off = (common_pagesize
1427 - (aligned_addr
1428 & (common_pagesize - 1)));
1429 uint64_t last_off = new_addr & (common_pagesize - 1);
1430 if (first_off > 0
1431 && last_off > 0
1432 && ((aligned_addr & ~ (common_pagesize - 1))
1433 != (new_addr & ~ (common_pagesize - 1)))
1434 && first_off + last_off <= common_pagesize)
1435 {
ead1e424
ILT
1436 *pshndx = shndx_hold;
1437 addr = align_address(aligned_addr, common_pagesize);
a445fddf 1438 addr = align_address(addr, (*p)->maximum_alignment());
75f65a3e 1439 off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
a445fddf
ILT
1440 new_addr = (*p)->set_section_addresses(true, addr, &off,
1441 pshndx);
75f65a3e
ILT
1442 }
1443 }
1444
1445 addr = new_addr;
1446
1447 if (((*p)->flags() & elfcpp::PF_W) == 0)
1448 was_readonly = true;
1449 }
1450 }
1451
1452 // Handle the non-PT_LOAD segments, setting their offsets from their
1453 // section's offsets.
1454 for (Segment_list::iterator p = this->segment_list_.begin();
1455 p != this->segment_list_.end();
1456 ++p)
1457 {
1458 if ((*p)->type() != elfcpp::PT_LOAD)
1459 (*p)->set_offset();
1460 }
1461
7bf1f802
ILT
1462 // Set the TLS offsets for each section in the PT_TLS segment.
1463 if (this->tls_segment_ != NULL)
1464 this->tls_segment_->set_tls_offsets();
1465
75f65a3e
ILT
1466 return off;
1467}
1468
6a74a719
ILT
1469// Set the offsets of all the allocated sections when doing a
1470// relocatable link. This does the same jobs as set_segment_offsets,
1471// only for a relocatable link.
1472
1473off_t
1474Layout::set_relocatable_section_offsets(Output_data* file_header,
1475 unsigned int *pshndx)
1476{
1477 off_t off = 0;
1478
1479 file_header->set_address_and_file_offset(0, 0);
1480 off += file_header->data_size();
1481
1482 for (Section_list::iterator p = this->section_list_.begin();
1483 p != this->section_list_.end();
1484 ++p)
1485 {
1486 // We skip unallocated sections here, except that group sections
1487 // have to come first.
1488 if (((*p)->flags() & elfcpp::SHF_ALLOC) == 0
1489 && (*p)->type() != elfcpp::SHT_GROUP)
1490 continue;
1491
1492 off = align_address(off, (*p)->addralign());
1493
1494 // The linker script might have set the address.
1495 if (!(*p)->is_address_valid())
1496 (*p)->set_address(0);
1497 (*p)->set_file_offset(off);
1498 (*p)->finalize_data_size();
1499 off += (*p)->data_size();
1500
1501 (*p)->set_out_shndx(*pshndx);
1502 ++*pshndx;
1503 }
1504
1505 return off;
1506}
1507
75f65a3e
ILT
1508// Set the file offset of all the sections not associated with a
1509// segment.
1510
1511off_t
9a0910c3 1512Layout::set_section_offsets(off_t off, Layout::Section_offset_pass pass)
75f65a3e 1513{
a3ad94ed
ILT
1514 for (Section_list::iterator p = this->unattached_section_list_.begin();
1515 p != this->unattached_section_list_.end();
75f65a3e
ILT
1516 ++p)
1517 {
27bc2bce
ILT
1518 // The symtab section is handled in create_symtab_sections.
1519 if (*p == this->symtab_section_)
61ba1cf9 1520 continue;
27bc2bce 1521
a9a60db6
ILT
1522 // If we've already set the data size, don't set it again.
1523 if ((*p)->is_offset_valid() && (*p)->is_data_size_valid())
1524 continue;
1525
96803768
ILT
1526 if (pass == BEFORE_INPUT_SECTIONS_PASS
1527 && (*p)->requires_postprocessing())
17a1d0a9
ILT
1528 {
1529 (*p)->create_postprocessing_buffer();
1530 this->any_postprocessing_sections_ = true;
1531 }
96803768 1532
9a0910c3
ILT
1533 if (pass == BEFORE_INPUT_SECTIONS_PASS
1534 && (*p)->after_input_sections())
1535 continue;
17a1d0a9 1536 else if (pass == POSTPROCESSING_SECTIONS_PASS
9a0910c3
ILT
1537 && (!(*p)->after_input_sections()
1538 || (*p)->type() == elfcpp::SHT_STRTAB))
1539 continue;
17a1d0a9 1540 else if (pass == STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS
9a0910c3
ILT
1541 && (!(*p)->after_input_sections()
1542 || (*p)->type() != elfcpp::SHT_STRTAB))
1543 continue;
27bc2bce 1544
ead1e424 1545 off = align_address(off, (*p)->addralign());
27bc2bce
ILT
1546 (*p)->set_file_offset(off);
1547 (*p)->finalize_data_size();
75f65a3e 1548 off += (*p)->data_size();
96803768
ILT
1549
1550 // At this point the name must be set.
17a1d0a9 1551 if (pass != STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS)
96803768 1552 this->namepool_.add((*p)->name(), false, NULL);
75f65a3e
ILT
1553 }
1554 return off;
1555}
1556
86887060
ILT
1557// Set the section indexes of all the sections not associated with a
1558// segment.
1559
1560unsigned int
1561Layout::set_section_indexes(unsigned int shndx)
1562{
8851ecca 1563 const bool output_is_object = parameters->options().relocatable();
86887060
ILT
1564 for (Section_list::iterator p = this->unattached_section_list_.begin();
1565 p != this->unattached_section_list_.end();
1566 ++p)
1567 {
6a74a719
ILT
1568 // In a relocatable link, we already did group sections.
1569 if (output_is_object
1570 && (*p)->type() == elfcpp::SHT_GROUP)
1571 continue;
1572
86887060
ILT
1573 (*p)->set_out_shndx(shndx);
1574 ++shndx;
1575 }
1576 return shndx;
1577}
1578
a445fddf
ILT
1579// Set the section addresses according to the linker script. This is
1580// only called when we see a SECTIONS clause. This returns the
1581// program segment which should hold the file header and segment
1582// headers, if any. It will return NULL if they should not be in a
1583// segment.
1584
1585Output_segment*
1586Layout::set_section_addresses_from_script(Symbol_table* symtab)
1587{
1588 Script_sections* ss = this->script_options_->script_sections();
1589 gold_assert(ss->saw_sections_clause());
1590
1591 // Place each orphaned output section in the script.
1592 for (Section_list::iterator p = this->section_list_.begin();
1593 p != this->section_list_.end();
1594 ++p)
1595 {
1596 if (!(*p)->found_in_sections_clause())
1597 ss->place_orphan(*p);
1598 }
1599
1600 return this->script_options_->set_section_addresses(symtab, this);
1601}
1602
7bf1f802
ILT
1603// Count the local symbols in the regular symbol table and the dynamic
1604// symbol table, and build the respective string pools.
1605
1606void
17a1d0a9
ILT
1607Layout::count_local_symbols(const Task* task,
1608 const Input_objects* input_objects)
7bf1f802 1609{
6d013333
ILT
1610 // First, figure out an upper bound on the number of symbols we'll
1611 // be inserting into each pool. This helps us create the pools with
1612 // the right size, to avoid unnecessary hashtable resizing.
1613 unsigned int symbol_count = 0;
1614 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1615 p != input_objects->relobj_end();
1616 ++p)
1617 symbol_count += (*p)->local_symbol_count();
1618
1619 // Go from "upper bound" to "estimate." We overcount for two
1620 // reasons: we double-count symbols that occur in more than one
1621 // object file, and we count symbols that are dropped from the
1622 // output. Add it all together and assume we overcount by 100%.
1623 symbol_count /= 2;
1624
1625 // We assume all symbols will go into both the sympool and dynpool.
1626 this->sympool_.reserve(symbol_count);
1627 this->dynpool_.reserve(symbol_count);
1628
7bf1f802
ILT
1629 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1630 p != input_objects->relobj_end();
1631 ++p)
1632 {
17a1d0a9 1633 Task_lock_obj<Object> tlo(task, *p);
7bf1f802
ILT
1634 (*p)->count_local_symbols(&this->sympool_, &this->dynpool_);
1635 }
1636}
1637
b8e6aad9
ILT
1638// Create the symbol table sections. Here we also set the final
1639// values of the symbols. At this point all the loadable sections are
1640// fully laid out.
75f65a3e
ILT
1641
1642void
9025d29d 1643Layout::create_symtab_sections(const Input_objects* input_objects,
75f65a3e 1644 Symbol_table* symtab,
16649710 1645 off_t* poff)
75f65a3e 1646{
61ba1cf9
ILT
1647 int symsize;
1648 unsigned int align;
8851ecca 1649 if (parameters->target().get_size() == 32)
61ba1cf9
ILT
1650 {
1651 symsize = elfcpp::Elf_sizes<32>::sym_size;
1652 align = 4;
1653 }
8851ecca 1654 else if (parameters->target().get_size() == 64)
61ba1cf9
ILT
1655 {
1656 symsize = elfcpp::Elf_sizes<64>::sym_size;
1657 align = 8;
1658 }
1659 else
a3ad94ed 1660 gold_unreachable();
61ba1cf9
ILT
1661
1662 off_t off = *poff;
ead1e424 1663 off = align_address(off, align);
61ba1cf9
ILT
1664 off_t startoff = off;
1665
1666 // Save space for the dummy symbol at the start of the section. We
1667 // never bother to write this out--it will just be left as zero.
1668 off += symsize;
c06b7b0b 1669 unsigned int local_symbol_index = 1;
61ba1cf9 1670
a3ad94ed
ILT
1671 // Add STT_SECTION symbols for each Output section which needs one.
1672 for (Section_list::iterator p = this->section_list_.begin();
1673 p != this->section_list_.end();
1674 ++p)
1675 {
1676 if (!(*p)->needs_symtab_index())
1677 (*p)->set_symtab_index(-1U);
1678 else
1679 {
1680 (*p)->set_symtab_index(local_symbol_index);
1681 ++local_symbol_index;
1682 off += symsize;
1683 }
1684 }
1685
f6ce93d6
ILT
1686 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1687 p != input_objects->relobj_end();
75f65a3e
ILT
1688 ++p)
1689 {
c06b7b0b 1690 unsigned int index = (*p)->finalize_local_symbols(local_symbol_index,
7bf1f802 1691 off);
c06b7b0b
ILT
1692 off += (index - local_symbol_index) * symsize;
1693 local_symbol_index = index;
75f65a3e
ILT
1694 }
1695
c06b7b0b 1696 unsigned int local_symcount = local_symbol_index;
a3ad94ed 1697 gold_assert(local_symcount * symsize == off - startoff);
61ba1cf9 1698
16649710
ILT
1699 off_t dynoff;
1700 size_t dyn_global_index;
1701 size_t dyncount;
1702 if (this->dynsym_section_ == NULL)
1703 {
1704 dynoff = 0;
1705 dyn_global_index = 0;
1706 dyncount = 0;
1707 }
1708 else
1709 {
1710 dyn_global_index = this->dynsym_section_->info();
1711 off_t locsize = dyn_global_index * this->dynsym_section_->entsize();
1712 dynoff = this->dynsym_section_->offset() + locsize;
1713 dyncount = (this->dynsym_section_->data_size() - locsize) / symsize;
f5c3f225 1714 gold_assert(static_cast<off_t>(dyncount * symsize)
16649710
ILT
1715 == this->dynsym_section_->data_size() - locsize);
1716 }
1717
55a93433
ILT
1718 off = symtab->finalize(off, dynoff, dyn_global_index, dyncount,
1719 &this->sympool_, &local_symcount);
75f65a3e 1720
8851ecca 1721 if (!parameters->options().strip_all())
9e2dcb77
ILT
1722 {
1723 this->sympool_.set_string_offsets();
61ba1cf9 1724
cfd73a4e 1725 const char* symtab_name = this->namepool_.add(".symtab", false, NULL);
9e2dcb77
ILT
1726 Output_section* osymtab = this->make_output_section(symtab_name,
1727 elfcpp::SHT_SYMTAB,
1728 0);
1729 this->symtab_section_ = osymtab;
a3ad94ed 1730
27bc2bce
ILT
1731 Output_section_data* pos = new Output_data_fixed_space(off - startoff,
1732 align);
9e2dcb77 1733 osymtab->add_output_section_data(pos);
61ba1cf9 1734
cfd73a4e 1735 const char* strtab_name = this->namepool_.add(".strtab", false, NULL);
9e2dcb77
ILT
1736 Output_section* ostrtab = this->make_output_section(strtab_name,
1737 elfcpp::SHT_STRTAB,
1738 0);
a3ad94ed 1739
9e2dcb77
ILT
1740 Output_section_data* pstr = new Output_data_strtab(&this->sympool_);
1741 ostrtab->add_output_section_data(pstr);
61ba1cf9 1742
27bc2bce
ILT
1743 osymtab->set_file_offset(startoff);
1744 osymtab->finalize_data_size();
9e2dcb77
ILT
1745 osymtab->set_link_section(ostrtab);
1746 osymtab->set_info(local_symcount);
1747 osymtab->set_entsize(symsize);
61ba1cf9 1748
9e2dcb77
ILT
1749 *poff = off;
1750 }
75f65a3e
ILT
1751}
1752
1753// Create the .shstrtab section, which holds the names of the
1754// sections. At the time this is called, we have created all the
1755// output sections except .shstrtab itself.
1756
1757Output_section*
1758Layout::create_shstrtab()
1759{
1760 // FIXME: We don't need to create a .shstrtab section if we are
1761 // stripping everything.
1762
cfd73a4e 1763 const char* name = this->namepool_.add(".shstrtab", false, NULL);
75f65a3e 1764
a3ad94ed 1765 Output_section* os = this->make_output_section(name, elfcpp::SHT_STRTAB, 0);
75f65a3e 1766
27bc2bce
ILT
1767 // We can't write out this section until we've set all the section
1768 // names, and we don't set the names of compressed output sections
1769 // until relocations are complete.
1770 os->set_after_input_sections();
1771
a3ad94ed
ILT
1772 Output_section_data* posd = new Output_data_strtab(&this->namepool_);
1773 os->add_output_section_data(posd);
75f65a3e
ILT
1774
1775 return os;
1776}
1777
1778// Create the section headers. SIZE is 32 or 64. OFF is the file
1779// offset.
1780
27bc2bce 1781void
9025d29d 1782Layout::create_shdrs(off_t* poff)
75f65a3e
ILT
1783{
1784 Output_section_headers* oshdrs;
9025d29d 1785 oshdrs = new Output_section_headers(this,
16649710 1786 &this->segment_list_,
6a74a719 1787 &this->section_list_,
16649710 1788 &this->unattached_section_list_,
61ba1cf9 1789 &this->namepool_);
ead1e424 1790 off_t off = align_address(*poff, oshdrs->addralign());
27bc2bce 1791 oshdrs->set_address_and_file_offset(0, off);
61ba1cf9
ILT
1792 off += oshdrs->data_size();
1793 *poff = off;
27bc2bce 1794 this->section_headers_ = oshdrs;
54dc6425
ILT
1795}
1796
dbe717ef
ILT
1797// Create the dynamic symbol table.
1798
1799void
7bf1f802 1800Layout::create_dynamic_symtab(const Input_objects* input_objects,
9b07f471 1801 Symbol_table* symtab,
14b31740
ILT
1802 Output_section **pdynstr,
1803 unsigned int* plocal_dynamic_count,
1804 std::vector<Symbol*>* pdynamic_symbols,
1805 Versions* pversions)
dbe717ef 1806{
a3ad94ed
ILT
1807 // Count all the symbols in the dynamic symbol table, and set the
1808 // dynamic symbol indexes.
dbe717ef 1809
a3ad94ed
ILT
1810 // Skip symbol 0, which is always all zeroes.
1811 unsigned int index = 1;
dbe717ef 1812
a3ad94ed
ILT
1813 // Add STT_SECTION symbols for each Output section which needs one.
1814 for (Section_list::iterator p = this->section_list_.begin();
1815 p != this->section_list_.end();
1816 ++p)
1817 {
1818 if (!(*p)->needs_dynsym_index())
1819 (*p)->set_dynsym_index(-1U);
1820 else
1821 {
1822 (*p)->set_dynsym_index(index);
1823 ++index;
1824 }
1825 }
1826
7bf1f802
ILT
1827 // Count the local symbols that need to go in the dynamic symbol table,
1828 // and set the dynamic symbol indexes.
1829 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1830 p != input_objects->relobj_end();
1831 ++p)
1832 {
1833 unsigned int new_index = (*p)->set_local_dynsym_indexes(index);
1834 index = new_index;
1835 }
a3ad94ed
ILT
1836
1837 unsigned int local_symcount = index;
14b31740 1838 *plocal_dynamic_count = local_symcount;
a3ad94ed
ILT
1839
1840 // FIXME: We have to tell set_dynsym_indexes whether the
1841 // -E/--export-dynamic option was used.
9b07f471 1842 index = symtab->set_dynsym_indexes(index, pdynamic_symbols,
35cdfc9a 1843 &this->dynpool_, pversions);
a3ad94ed
ILT
1844
1845 int symsize;
1846 unsigned int align;
8851ecca 1847 const int size = parameters->target().get_size();
a3ad94ed
ILT
1848 if (size == 32)
1849 {
1850 symsize = elfcpp::Elf_sizes<32>::sym_size;
1851 align = 4;
1852 }
1853 else if (size == 64)
1854 {
1855 symsize = elfcpp::Elf_sizes<64>::sym_size;
1856 align = 8;
1857 }
1858 else
1859 gold_unreachable();
1860
14b31740
ILT
1861 // Create the dynamic symbol table section.
1862
3802b2dd
ILT
1863 Output_section* dynsym = this->choose_output_section(NULL, ".dynsym",
1864 elfcpp::SHT_DYNSYM,
1865 elfcpp::SHF_ALLOC,
1866 false);
a3ad94ed 1867
27bc2bce
ILT
1868 Output_section_data* odata = new Output_data_fixed_space(index * symsize,
1869 align);
a3ad94ed
ILT
1870 dynsym->add_output_section_data(odata);
1871
1872 dynsym->set_info(local_symcount);
1873 dynsym->set_entsize(symsize);
1874 dynsym->set_addralign(align);
1875
1876 this->dynsym_section_ = dynsym;
1877
16649710 1878 Output_data_dynamic* const odyn = this->dynamic_data_;
a3ad94ed
ILT
1879 odyn->add_section_address(elfcpp::DT_SYMTAB, dynsym);
1880 odyn->add_constant(elfcpp::DT_SYMENT, symsize);
1881
14b31740
ILT
1882 // Create the dynamic string table section.
1883
3802b2dd
ILT
1884 Output_section* dynstr = this->choose_output_section(NULL, ".dynstr",
1885 elfcpp::SHT_STRTAB,
1886 elfcpp::SHF_ALLOC,
1887 false);
a3ad94ed
ILT
1888
1889 Output_section_data* strdata = new Output_data_strtab(&this->dynpool_);
1890 dynstr->add_output_section_data(strdata);
1891
16649710
ILT
1892 dynsym->set_link_section(dynstr);
1893 this->dynamic_section_->set_link_section(dynstr);
1894
a3ad94ed
ILT
1895 odyn->add_section_address(elfcpp::DT_STRTAB, dynstr);
1896 odyn->add_section_size(elfcpp::DT_STRSZ, dynstr);
1897
14b31740
ILT
1898 *pdynstr = dynstr;
1899
1900 // Create the hash tables.
1901
a3ad94ed
ILT
1902 // FIXME: We need an option to create a GNU hash table.
1903
1904 unsigned char* phash;
1905 unsigned int hashlen;
9025d29d 1906 Dynobj::create_elf_hash_table(*pdynamic_symbols, local_symcount,
a3ad94ed
ILT
1907 &phash, &hashlen);
1908
3802b2dd
ILT
1909 Output_section* hashsec = this->choose_output_section(NULL, ".hash",
1910 elfcpp::SHT_HASH,
1911 elfcpp::SHF_ALLOC,
1912 false);
a3ad94ed
ILT
1913
1914 Output_section_data* hashdata = new Output_data_const_buffer(phash,
1915 hashlen,
1916 align);
1917 hashsec->add_output_section_data(hashdata);
1918
16649710 1919 hashsec->set_link_section(dynsym);
a3ad94ed 1920 hashsec->set_entsize(4);
a3ad94ed
ILT
1921
1922 odyn->add_section_address(elfcpp::DT_HASH, hashsec);
dbe717ef
ILT
1923}
1924
7bf1f802
ILT
1925// Assign offsets to each local portion of the dynamic symbol table.
1926
1927void
1928Layout::assign_local_dynsym_offsets(const Input_objects* input_objects)
1929{
1930 Output_section* dynsym = this->dynsym_section_;
1931 gold_assert(dynsym != NULL);
1932
1933 off_t off = dynsym->offset();
1934
1935 // Skip the dummy symbol at the start of the section.
1936 off += dynsym->entsize();
1937
1938 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1939 p != input_objects->relobj_end();
1940 ++p)
1941 {
1942 unsigned int count = (*p)->set_local_dynsym_offset(off);
1943 off += count * dynsym->entsize();
1944 }
1945}
1946
14b31740
ILT
1947// Create the version sections.
1948
1949void
9025d29d 1950Layout::create_version_sections(const Versions* versions,
46fe1623 1951 const Symbol_table* symtab,
14b31740
ILT
1952 unsigned int local_symcount,
1953 const std::vector<Symbol*>& dynamic_symbols,
1954 const Output_section* dynstr)
1955{
1956 if (!versions->any_defs() && !versions->any_needs())
1957 return;
1958
8851ecca 1959 switch (parameters->size_and_endianness())
14b31740 1960 {
193a53d9 1961#ifdef HAVE_TARGET_32_LITTLE
8851ecca
ILT
1962 case Parameters::TARGET_32_LITTLE:
1963 this->sized_create_version_sections
1964 SELECT_SIZE_ENDIAN_NAME(32, false)(
1965 versions, symtab, local_symcount, dynamic_symbols, dynstr
1966 SELECT_SIZE_ENDIAN(32, false));
1967 break;
193a53d9 1968#endif
8851ecca
ILT
1969#ifdef HAVE_TARGET_32_BIG
1970 case Parameters::TARGET_32_BIG:
1971 this->sized_create_version_sections
1972 SELECT_SIZE_ENDIAN_NAME(32, true)(
1973 versions, symtab, local_symcount, dynamic_symbols, dynstr
1974 SELECT_SIZE_ENDIAN(32, true));
1975 break;
193a53d9 1976#endif
193a53d9 1977#ifdef HAVE_TARGET_64_LITTLE
8851ecca
ILT
1978 case Parameters::TARGET_64_LITTLE:
1979 this->sized_create_version_sections
1980 SELECT_SIZE_ENDIAN_NAME(64, false)(
1981 versions, symtab, local_symcount, dynamic_symbols, dynstr
1982 SELECT_SIZE_ENDIAN(64, false));
1983 break;
193a53d9 1984#endif
8851ecca
ILT
1985#ifdef HAVE_TARGET_64_BIG
1986 case Parameters::TARGET_64_BIG:
1987 this->sized_create_version_sections
1988 SELECT_SIZE_ENDIAN_NAME(64, true)(
1989 versions, symtab, local_symcount, dynamic_symbols, dynstr
1990 SELECT_SIZE_ENDIAN(64, true));
1991 break;
1992#endif
1993 default:
1994 gold_unreachable();
14b31740 1995 }
14b31740
ILT
1996}
1997
1998// Create the version sections, sized version.
1999
2000template<int size, bool big_endian>
2001void
2002Layout::sized_create_version_sections(
2003 const Versions* versions,
46fe1623 2004 const Symbol_table* symtab,
14b31740
ILT
2005 unsigned int local_symcount,
2006 const std::vector<Symbol*>& dynamic_symbols,
91da9340
ILT
2007 const Output_section* dynstr
2008 ACCEPT_SIZE_ENDIAN)
14b31740 2009{
3802b2dd
ILT
2010 Output_section* vsec = this->choose_output_section(NULL, ".gnu.version",
2011 elfcpp::SHT_GNU_versym,
2012 elfcpp::SHF_ALLOC,
2013 false);
14b31740
ILT
2014
2015 unsigned char* vbuf;
2016 unsigned int vsize;
91da9340 2017 versions->symbol_section_contents SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
46fe1623 2018 symtab, &this->dynpool_, local_symcount, dynamic_symbols, &vbuf, &vsize
7e1edb90 2019 SELECT_SIZE_ENDIAN(size, big_endian));
14b31740
ILT
2020
2021 Output_section_data* vdata = new Output_data_const_buffer(vbuf, vsize, 2);
2022
2023 vsec->add_output_section_data(vdata);
2024 vsec->set_entsize(2);
2025 vsec->set_link_section(this->dynsym_section_);
2026
2027 Output_data_dynamic* const odyn = this->dynamic_data_;
2028 odyn->add_section_address(elfcpp::DT_VERSYM, vsec);
2029
2030 if (versions->any_defs())
2031 {
3802b2dd
ILT
2032 Output_section* vdsec;
2033 vdsec= this->choose_output_section(NULL, ".gnu.version_d",
2034 elfcpp::SHT_GNU_verdef,
2035 elfcpp::SHF_ALLOC,
2036 false);
14b31740
ILT
2037
2038 unsigned char* vdbuf;
2039 unsigned int vdsize;
2040 unsigned int vdentries;
91da9340
ILT
2041 versions->def_section_contents SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
2042 &this->dynpool_, &vdbuf, &vdsize, &vdentries
2043 SELECT_SIZE_ENDIAN(size, big_endian));
14b31740
ILT
2044
2045 Output_section_data* vddata = new Output_data_const_buffer(vdbuf,
2046 vdsize,
2047 4);
2048
2049 vdsec->add_output_section_data(vddata);
2050 vdsec->set_link_section(dynstr);
2051 vdsec->set_info(vdentries);
2052
2053 odyn->add_section_address(elfcpp::DT_VERDEF, vdsec);
2054 odyn->add_constant(elfcpp::DT_VERDEFNUM, vdentries);
2055 }
2056
2057 if (versions->any_needs())
2058 {
14b31740 2059 Output_section* vnsec;
3802b2dd
ILT
2060 vnsec = this->choose_output_section(NULL, ".gnu.version_r",
2061 elfcpp::SHT_GNU_verneed,
2062 elfcpp::SHF_ALLOC,
2063 false);
14b31740
ILT
2064
2065 unsigned char* vnbuf;
2066 unsigned int vnsize;
2067 unsigned int vnentries;
91da9340
ILT
2068 versions->need_section_contents SELECT_SIZE_ENDIAN_NAME(size, big_endian)
2069 (&this->dynpool_, &vnbuf, &vnsize, &vnentries
2070 SELECT_SIZE_ENDIAN(size, big_endian));
14b31740
ILT
2071
2072 Output_section_data* vndata = new Output_data_const_buffer(vnbuf,
2073 vnsize,
2074 4);
2075
2076 vnsec->add_output_section_data(vndata);
2077 vnsec->set_link_section(dynstr);
2078 vnsec->set_info(vnentries);
2079
2080 odyn->add_section_address(elfcpp::DT_VERNEED, vnsec);
2081 odyn->add_constant(elfcpp::DT_VERNEEDNUM, vnentries);
2082 }
2083}
2084
dbe717ef
ILT
2085// Create the .interp section and PT_INTERP segment.
2086
2087void
2088Layout::create_interp(const Target* target)
2089{
2090 const char* interp = this->options_.dynamic_linker();
2091 if (interp == NULL)
2092 {
2093 interp = target->dynamic_linker();
a3ad94ed 2094 gold_assert(interp != NULL);
dbe717ef
ILT
2095 }
2096
2097 size_t len = strlen(interp) + 1;
2098
2099 Output_section_data* odata = new Output_data_const(interp, len, 1);
2100
3802b2dd
ILT
2101 Output_section* osec = this->choose_output_section(NULL, ".interp",
2102 elfcpp::SHT_PROGBITS,
2103 elfcpp::SHF_ALLOC,
2104 false);
dbe717ef
ILT
2105 osec->add_output_section_data(odata);
2106
1c4f3631
ILT
2107 if (!this->script_options_->saw_phdrs_clause())
2108 {
2109 Output_segment* oseg = this->make_output_segment(elfcpp::PT_INTERP,
2110 elfcpp::PF_R);
2111 oseg->add_initial_output_section(osec, elfcpp::PF_R);
2112 }
dbe717ef
ILT
2113}
2114
a3ad94ed
ILT
2115// Finish the .dynamic section and PT_DYNAMIC segment.
2116
2117void
2118Layout::finish_dynamic_section(const Input_objects* input_objects,
16649710 2119 const Symbol_table* symtab)
a3ad94ed 2120{
1c4f3631
ILT
2121 if (!this->script_options_->saw_phdrs_clause())
2122 {
2123 Output_segment* oseg = this->make_output_segment(elfcpp::PT_DYNAMIC,
2124 (elfcpp::PF_R
2125 | elfcpp::PF_W));
2126 oseg->add_initial_output_section(this->dynamic_section_,
2127 elfcpp::PF_R | elfcpp::PF_W);
2128 }
a3ad94ed 2129
16649710
ILT
2130 Output_data_dynamic* const odyn = this->dynamic_data_;
2131
a3ad94ed
ILT
2132 for (Input_objects::Dynobj_iterator p = input_objects->dynobj_begin();
2133 p != input_objects->dynobj_end();
2134 ++p)
2135 {
2136 // FIXME: Handle --as-needed.
2137 odyn->add_string(elfcpp::DT_NEEDED, (*p)->soname());
2138 }
2139
8851ecca 2140 if (parameters->options().shared())
fced7afd
ILT
2141 {
2142 const char* soname = this->options_.soname();
2143 if (soname != NULL)
2144 odyn->add_string(elfcpp::DT_SONAME, soname);
2145 }
2146
a3ad94ed
ILT
2147 // FIXME: Support --init and --fini.
2148 Symbol* sym = symtab->lookup("_init");
14b31740 2149 if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
a3ad94ed
ILT
2150 odyn->add_symbol(elfcpp::DT_INIT, sym);
2151
2152 sym = symtab->lookup("_fini");
14b31740 2153 if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
a3ad94ed
ILT
2154 odyn->add_symbol(elfcpp::DT_FINI, sym);
2155
2156 // FIXME: Support DT_INIT_ARRAY and DT_FINI_ARRAY.
41f542e7
ILT
2157
2158 // Add a DT_RPATH entry if needed.
2159 const General_options::Dir_list& rpath(this->options_.rpath());
2160 if (!rpath.empty())
2161 {
2162 std::string rpath_val;
2163 for (General_options::Dir_list::const_iterator p = rpath.begin();
2164 p != rpath.end();
2165 ++p)
2166 {
2167 if (rpath_val.empty())
ad2d6943 2168 rpath_val = p->name();
41f542e7
ILT
2169 else
2170 {
2171 // Eliminate duplicates.
2172 General_options::Dir_list::const_iterator q;
2173 for (q = rpath.begin(); q != p; ++q)
ad2d6943 2174 if (q->name() == p->name())
41f542e7
ILT
2175 break;
2176 if (q == p)
2177 {
2178 rpath_val += ':';
ad2d6943 2179 rpath_val += p->name();
41f542e7
ILT
2180 }
2181 }
2182 }
2183
2184 odyn->add_string(elfcpp::DT_RPATH, rpath_val);
2185 }
4f4c5f80
ILT
2186
2187 // Look for text segments that have dynamic relocations.
2188 bool have_textrel = false;
4e8fe71f 2189 if (!this->script_options_->saw_sections_clause())
4f4c5f80 2190 {
4e8fe71f
ILT
2191 for (Segment_list::const_iterator p = this->segment_list_.begin();
2192 p != this->segment_list_.end();
2193 ++p)
2194 {
2195 if (((*p)->flags() & elfcpp::PF_W) == 0
2196 && (*p)->dynamic_reloc_count() > 0)
2197 {
2198 have_textrel = true;
2199 break;
2200 }
2201 }
2202 }
2203 else
2204 {
2205 // We don't know the section -> segment mapping, so we are
2206 // conservative and just look for readonly sections with
2207 // relocations. If those sections wind up in writable segments,
2208 // then we have created an unnecessary DT_TEXTREL entry.
2209 for (Section_list::const_iterator p = this->section_list_.begin();
2210 p != this->section_list_.end();
2211 ++p)
2212 {
2213 if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0
2214 && ((*p)->flags() & elfcpp::SHF_WRITE) == 0
2215 && ((*p)->dynamic_reloc_count() > 0))
2216 {
2217 have_textrel = true;
2218 break;
2219 }
2220 }
4f4c5f80
ILT
2221 }
2222
2223 // Add a DT_FLAGS entry. We add it even if no flags are set so that
2224 // post-link tools can easily modify these flags if desired.
2225 unsigned int flags = 0;
2226 if (have_textrel)
6a41d30b
ILT
2227 {
2228 // Add a DT_TEXTREL for compatibility with older loaders.
2229 odyn->add_constant(elfcpp::DT_TEXTREL, 0);
2230 flags |= elfcpp::DF_TEXTREL;
2231 }
8851ecca 2232 if (parameters->options().shared() && this->has_static_tls())
535890bb 2233 flags |= elfcpp::DF_STATIC_TLS;
4f4c5f80 2234 odyn->add_constant(elfcpp::DT_FLAGS, flags);
a3ad94ed
ILT
2235}
2236
a2fb1b05
ILT
2237// The mapping of .gnu.linkonce section names to real section names.
2238
ead1e424 2239#define MAPPING_INIT(f, t) { f, sizeof(f) - 1, t, sizeof(t) - 1 }
a2fb1b05
ILT
2240const Layout::Linkonce_mapping Layout::linkonce_mapping[] =
2241{
2242 MAPPING_INIT("d.rel.ro", ".data.rel.ro"), // Must be before "d".
2243 MAPPING_INIT("t", ".text"),
2244 MAPPING_INIT("r", ".rodata"),
2245 MAPPING_INIT("d", ".data"),
2246 MAPPING_INIT("b", ".bss"),
2247 MAPPING_INIT("s", ".sdata"),
2248 MAPPING_INIT("sb", ".sbss"),
2249 MAPPING_INIT("s2", ".sdata2"),
2250 MAPPING_INIT("sb2", ".sbss2"),
2251 MAPPING_INIT("wi", ".debug_info"),
2252 MAPPING_INIT("td", ".tdata"),
2253 MAPPING_INIT("tb", ".tbss"),
2254 MAPPING_INIT("lr", ".lrodata"),
2255 MAPPING_INIT("l", ".ldata"),
2256 MAPPING_INIT("lb", ".lbss"),
2257};
2258#undef MAPPING_INIT
2259
2260const int Layout::linkonce_mapping_count =
2261 sizeof(Layout::linkonce_mapping) / sizeof(Layout::linkonce_mapping[0]);
2262
2263// Return the name of the output section to use for a .gnu.linkonce
2264// section. This is based on the default ELF linker script of the old
2265// GNU linker. For example, we map a name like ".gnu.linkonce.t.foo"
ead1e424
ILT
2266// to ".text". Set *PLEN to the length of the name. *PLEN is
2267// initialized to the length of NAME.
a2fb1b05
ILT
2268
2269const char*
ead1e424 2270Layout::linkonce_output_name(const char* name, size_t *plen)
a2fb1b05
ILT
2271{
2272 const char* s = name + sizeof(".gnu.linkonce") - 1;
2273 if (*s != '.')
2274 return name;
2275 ++s;
2276 const Linkonce_mapping* plm = linkonce_mapping;
2277 for (int i = 0; i < linkonce_mapping_count; ++i, ++plm)
2278 {
2279 if (strncmp(s, plm->from, plm->fromlen) == 0 && s[plm->fromlen] == '.')
ead1e424
ILT
2280 {
2281 *plen = plm->tolen;
2282 return plm->to;
2283 }
a2fb1b05
ILT
2284 }
2285 return name;
2286}
2287
ead1e424
ILT
2288// Choose the output section name to use given an input section name.
2289// Set *PLEN to the length of the name. *PLEN is initialized to the
2290// length of NAME.
2291
2292const char*
2293Layout::output_section_name(const char* name, size_t* plen)
2294{
2295 if (Layout::is_linkonce(name))
2296 {
2297 // .gnu.linkonce sections are laid out as though they were named
2298 // for the sections are placed into.
2299 return Layout::linkonce_output_name(name, plen);
2300 }
2301
af4a8a83
ILT
2302 // gcc 4.3 generates the following sorts of section names when it
2303 // needs a section name specific to a function:
2304 // .text.FN
2305 // .rodata.FN
2306 // .sdata2.FN
2307 // .data.FN
2308 // .data.rel.FN
2309 // .data.rel.local.FN
2310 // .data.rel.ro.FN
2311 // .data.rel.ro.local.FN
2312 // .sdata.FN
2313 // .bss.FN
2314 // .sbss.FN
2315 // .tdata.FN
2316 // .tbss.FN
2317
2318 // The GNU linker maps all of those to the part before the .FN,
2319 // except that .data.rel.local.FN is mapped to .data, and
2320 // .data.rel.ro.local.FN is mapped to .data.rel.ro. The sections
2321 // beginning with .data.rel.ro.local are grouped together.
2322
2323 // For an anonymous namespace, the string FN can contain a '.'.
2324
2325 // Also of interest: .rodata.strN.N, .rodata.cstN, both of which the
2326 // GNU linker maps to .rodata.
2327
2328 // The .data.rel.ro sections enable a security feature triggered by
2329 // the -z relro option. Section which need to be relocated at
2330 // program startup time but which may be readonly after startup are
2331 // grouped into .data.rel.ro. They are then put into a PT_GNU_RELRO
2332 // segment. The dynamic linker will make that segment writable,
2333 // perform relocations, and then make it read-only. FIXME: We do
2334 // not yet implement this optimization.
2335
2336 // It is hard to handle this in a principled way.
2337
2338 // These are the rules we follow:
2339
2340 // If the section name has no initial '.', or no dot other than an
2341 // initial '.', we use the name unchanged (i.e., "mysection" and
2342 // ".text" are unchanged).
2343
2344 // If the name starts with ".data.rel.ro" we use ".data.rel.ro".
2345
2346 // Otherwise, we drop the second '.' and everything that comes after
2347 // it (i.e., ".text.XXX" becomes ".text").
ead1e424
ILT
2348
2349 const char* s = name;
af4a8a83
ILT
2350 if (*s != '.')
2351 return name;
2352 ++s;
ead1e424
ILT
2353 const char* sdot = strchr(s, '.');
2354 if (sdot == NULL)
2355 return name;
2356
af4a8a83
ILT
2357 const char* const data_rel_ro = ".data.rel.ro";
2358 if (strncmp(name, data_rel_ro, strlen(data_rel_ro)) == 0)
ead1e424 2359 {
af4a8a83
ILT
2360 *plen = strlen(data_rel_ro);
2361 return data_rel_ro;
ead1e424
ILT
2362 }
2363
ead1e424
ILT
2364 *plen = sdot - name;
2365 return name;
2366}
2367
a2fb1b05
ILT
2368// Record the signature of a comdat section, and return whether to
2369// include it in the link. If GROUP is true, this is a regular
2370// section group. If GROUP is false, this is a group signature
2371// derived from the name of a linkonce section. We want linkonce
2372// signatures and group signatures to block each other, but we don't
2373// want a linkonce signature to block another linkonce signature.
2374
2375bool
2376Layout::add_comdat(const char* signature, bool group)
2377{
2378 std::string sig(signature);
2379 std::pair<Signatures::iterator, bool> ins(
ead1e424 2380 this->signatures_.insert(std::make_pair(sig, group)));
a2fb1b05
ILT
2381
2382 if (ins.second)
2383 {
2384 // This is the first time we've seen this signature.
2385 return true;
2386 }
2387
2388 if (ins.first->second)
2389 {
2390 // We've already seen a real section group with this signature.
2391 return false;
2392 }
2393 else if (group)
2394 {
2395 // This is a real section group, and we've already seen a
a0fa0c07 2396 // linkonce section with this signature. Record that we've seen
a2fb1b05
ILT
2397 // a section group, and don't include this section group.
2398 ins.first->second = true;
2399 return false;
2400 }
2401 else
2402 {
2403 // We've already seen a linkonce section and this is a linkonce
2404 // section. These don't block each other--this may be the same
2405 // symbol name with different section types.
2406 return true;
2407 }
2408}
2409
a445fddf
ILT
2410// Store the allocated sections into the section list.
2411
2412void
2413Layout::get_allocated_sections(Section_list* section_list) const
2414{
2415 for (Section_list::const_iterator p = this->section_list_.begin();
2416 p != this->section_list_.end();
2417 ++p)
2418 if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0)
2419 section_list->push_back(*p);
2420}
2421
2422// Create an output segment.
2423
2424Output_segment*
2425Layout::make_output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags)
2426{
8851ecca 2427 gold_assert(!parameters->options().relocatable());
a445fddf
ILT
2428 Output_segment* oseg = new Output_segment(type, flags);
2429 this->segment_list_.push_back(oseg);
2430 return oseg;
2431}
2432
730cdc88
ILT
2433// Write out the Output_sections. Most won't have anything to write,
2434// since most of the data will come from input sections which are
2435// handled elsewhere. But some Output_sections do have Output_data.
2436
2437void
2438Layout::write_output_sections(Output_file* of) const
2439{
2440 for (Section_list::const_iterator p = this->section_list_.begin();
2441 p != this->section_list_.end();
2442 ++p)
2443 {
2444 if (!(*p)->after_input_sections())
2445 (*p)->write(of);
2446 }
2447}
2448
61ba1cf9
ILT
2449// Write out data not associated with a section or the symbol table.
2450
2451void
9025d29d 2452Layout::write_data(const Symbol_table* symtab, Output_file* of) const
61ba1cf9 2453{
8851ecca 2454 if (!parameters->options().strip_all())
a3ad94ed 2455 {
9e2dcb77
ILT
2456 const Output_section* symtab_section = this->symtab_section_;
2457 for (Section_list::const_iterator p = this->section_list_.begin();
2458 p != this->section_list_.end();
2459 ++p)
a3ad94ed 2460 {
9e2dcb77
ILT
2461 if ((*p)->needs_symtab_index())
2462 {
2463 gold_assert(symtab_section != NULL);
2464 unsigned int index = (*p)->symtab_index();
2465 gold_assert(index > 0 && index != -1U);
2466 off_t off = (symtab_section->offset()
2467 + index * symtab_section->entsize());
2468 symtab->write_section_symbol(*p, of, off);
2469 }
a3ad94ed
ILT
2470 }
2471 }
2472
2473 const Output_section* dynsym_section = this->dynsym_section_;
2474 for (Section_list::const_iterator p = this->section_list_.begin();
2475 p != this->section_list_.end();
2476 ++p)
2477 {
2478 if ((*p)->needs_dynsym_index())
2479 {
2480 gold_assert(dynsym_section != NULL);
2481 unsigned int index = (*p)->dynsym_index();
2482 gold_assert(index > 0 && index != -1U);
2483 off_t off = (dynsym_section->offset()
2484 + index * dynsym_section->entsize());
9025d29d 2485 symtab->write_section_symbol(*p, of, off);
a3ad94ed
ILT
2486 }
2487 }
2488
a3ad94ed 2489 // Write out the Output_data which are not in an Output_section.
61ba1cf9
ILT
2490 for (Data_list::const_iterator p = this->special_output_list_.begin();
2491 p != this->special_output_list_.end();
2492 ++p)
2493 (*p)->write(of);
2494}
2495
730cdc88
ILT
2496// Write out the Output_sections which can only be written after the
2497// input sections are complete.
2498
2499void
27bc2bce 2500Layout::write_sections_after_input_sections(Output_file* of)
730cdc88 2501{
27bc2bce 2502 // Determine the final section offsets, and thus the final output
9a0910c3
ILT
2503 // file size. Note we finalize the .shstrab last, to allow the
2504 // after_input_section sections to modify their section-names before
2505 // writing.
17a1d0a9 2506 if (this->any_postprocessing_sections_)
27bc2bce 2507 {
17a1d0a9
ILT
2508 off_t off = this->output_file_size_;
2509 off = this->set_section_offsets(off, POSTPROCESSING_SECTIONS_PASS);
2510
2511 // Now that we've finalized the names, we can finalize the shstrab.
2512 off =
2513 this->set_section_offsets(off,
2514 STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS);
2515
2516 if (off > this->output_file_size_)
2517 {
2518 of->resize(off);
2519 this->output_file_size_ = off;
2520 }
27bc2bce
ILT
2521 }
2522
730cdc88
ILT
2523 for (Section_list::const_iterator p = this->section_list_.begin();
2524 p != this->section_list_.end();
2525 ++p)
2526 {
2527 if ((*p)->after_input_sections())
2528 (*p)->write(of);
2529 }
27bc2bce 2530
27bc2bce 2531 this->section_headers_->write(of);
730cdc88
ILT
2532}
2533
516cb3d0
ILT
2534// Write out a binary file. This is called after the link is
2535// complete. IN is the temporary output file we used to generate the
2536// ELF code. We simply walk through the segments, read them from
2537// their file offset in IN, and write them to their load address in
2538// the output file. FIXME: with a bit more work, we could support
2539// S-records and/or Intel hex format here.
2540
2541void
2542Layout::write_binary(Output_file* in) const
2543{
45aa233b 2544 gold_assert(this->options_.oformat()
bc644c6c 2545 == General_options::OBJECT_FORMAT_BINARY);
516cb3d0
ILT
2546
2547 // Get the size of the binary file.
2548 uint64_t max_load_address = 0;
2549 for (Segment_list::const_iterator p = this->segment_list_.begin();
2550 p != this->segment_list_.end();
2551 ++p)
2552 {
2553 if ((*p)->type() == elfcpp::PT_LOAD && (*p)->filesz() > 0)
2554 {
2555 uint64_t max_paddr = (*p)->paddr() + (*p)->filesz();
2556 if (max_paddr > max_load_address)
2557 max_load_address = max_paddr;
2558 }
2559 }
2560
8851ecca 2561 Output_file out(parameters->options().output_file_name());
516cb3d0
ILT
2562 out.open(max_load_address);
2563
2564 for (Segment_list::const_iterator p = this->segment_list_.begin();
2565 p != this->segment_list_.end();
2566 ++p)
2567 {
2568 if ((*p)->type() == elfcpp::PT_LOAD && (*p)->filesz() > 0)
2569 {
2570 const unsigned char* vin = in->get_input_view((*p)->offset(),
2571 (*p)->filesz());
2572 unsigned char* vout = out.get_output_view((*p)->paddr(),
2573 (*p)->filesz());
2574 memcpy(vout, vin, (*p)->filesz());
2575 out.write_output_view((*p)->paddr(), (*p)->filesz(), vout);
2576 in->free_input_view((*p)->offset(), (*p)->filesz(), vin);
2577 }
2578 }
2579
2580 out.close();
2581}
2582
ad8f37d1
ILT
2583// Print statistical information to stderr. This is used for --stats.
2584
2585void
2586Layout::print_stats() const
2587{
2588 this->namepool_.print_stats("section name pool");
2589 this->sympool_.print_stats("output symbol name pool");
2590 this->dynpool_.print_stats("dynamic name pool");
38c5e8b4
ILT
2591
2592 for (Section_list::const_iterator p = this->section_list_.begin();
2593 p != this->section_list_.end();
2594 ++p)
2595 (*p)->print_merge_stats();
ad8f37d1
ILT
2596}
2597
730cdc88
ILT
2598// Write_sections_task methods.
2599
2600// We can always run this task.
2601
17a1d0a9
ILT
2602Task_token*
2603Write_sections_task::is_runnable()
730cdc88 2604{
17a1d0a9 2605 return NULL;
730cdc88
ILT
2606}
2607
2608// We need to unlock both OUTPUT_SECTIONS_BLOCKER and FINAL_BLOCKER
2609// when finished.
2610
17a1d0a9
ILT
2611void
2612Write_sections_task::locks(Task_locker* tl)
730cdc88 2613{
17a1d0a9
ILT
2614 tl->add(this, this->output_sections_blocker_);
2615 tl->add(this, this->final_blocker_);
730cdc88
ILT
2616}
2617
2618// Run the task--write out the data.
2619
2620void
2621Write_sections_task::run(Workqueue*)
2622{
2623 this->layout_->write_output_sections(this->of_);
2624}
2625
61ba1cf9
ILT
2626// Write_data_task methods.
2627
2628// We can always run this task.
2629
17a1d0a9
ILT
2630Task_token*
2631Write_data_task::is_runnable()
61ba1cf9 2632{
17a1d0a9 2633 return NULL;
61ba1cf9
ILT
2634}
2635
2636// We need to unlock FINAL_BLOCKER when finished.
2637
17a1d0a9
ILT
2638void
2639Write_data_task::locks(Task_locker* tl)
61ba1cf9 2640{
17a1d0a9 2641 tl->add(this, this->final_blocker_);
61ba1cf9
ILT
2642}
2643
2644// Run the task--write out the data.
2645
2646void
2647Write_data_task::run(Workqueue*)
2648{
9025d29d 2649 this->layout_->write_data(this->symtab_, this->of_);
61ba1cf9
ILT
2650}
2651
2652// Write_symbols_task methods.
2653
2654// We can always run this task.
2655
17a1d0a9
ILT
2656Task_token*
2657Write_symbols_task::is_runnable()
61ba1cf9 2658{
17a1d0a9 2659 return NULL;
61ba1cf9
ILT
2660}
2661
2662// We need to unlock FINAL_BLOCKER when finished.
2663
17a1d0a9
ILT
2664void
2665Write_symbols_task::locks(Task_locker* tl)
61ba1cf9 2666{
17a1d0a9 2667 tl->add(this, this->final_blocker_);
61ba1cf9
ILT
2668}
2669
2670// Run the task--write out the symbols.
2671
2672void
2673Write_symbols_task::run(Workqueue*)
2674{
9a2d6984
ILT
2675 this->symtab_->write_globals(this->input_objects_, this->sympool_,
2676 this->dynpool_, this->of_);
61ba1cf9
ILT
2677}
2678
730cdc88
ILT
2679// Write_after_input_sections_task methods.
2680
2681// We can only run this task after the input sections have completed.
2682
17a1d0a9
ILT
2683Task_token*
2684Write_after_input_sections_task::is_runnable()
730cdc88
ILT
2685{
2686 if (this->input_sections_blocker_->is_blocked())
17a1d0a9
ILT
2687 return this->input_sections_blocker_;
2688 return NULL;
730cdc88
ILT
2689}
2690
2691// We need to unlock FINAL_BLOCKER when finished.
2692
17a1d0a9
ILT
2693void
2694Write_after_input_sections_task::locks(Task_locker* tl)
730cdc88 2695{
17a1d0a9 2696 tl->add(this, this->final_blocker_);
730cdc88
ILT
2697}
2698
2699// Run the task.
2700
2701void
2702Write_after_input_sections_task::run(Workqueue*)
2703{
2704 this->layout_->write_sections_after_input_sections(this->of_);
2705}
2706
92e059d8 2707// Close_task_runner methods.
61ba1cf9
ILT
2708
2709// Run the task--close the file.
2710
2711void
17a1d0a9 2712Close_task_runner::run(Workqueue*, const Task*)
61ba1cf9 2713{
516cb3d0 2714 // If we've been asked to create a binary file, we do so here.
45aa233b 2715 if (this->options_->oformat() != General_options::OBJECT_FORMAT_ELF)
516cb3d0
ILT
2716 this->layout_->write_binary(this->of_);
2717
61ba1cf9
ILT
2718 this->of_->close();
2719}
2720
a2fb1b05
ILT
2721// Instantiate the templates we need. We could use the configure
2722// script to restrict this to only the ones for implemented targets.
2723
193a53d9 2724#ifdef HAVE_TARGET_32_LITTLE
a2fb1b05
ILT
2725template
2726Output_section*
730cdc88
ILT
2727Layout::layout<32, false>(Sized_relobj<32, false>* object, unsigned int shndx,
2728 const char* name,
2729 const elfcpp::Shdr<32, false>& shdr,
2730 unsigned int, unsigned int, off_t*);
193a53d9 2731#endif
a2fb1b05 2732
193a53d9 2733#ifdef HAVE_TARGET_32_BIG
a2fb1b05
ILT
2734template
2735Output_section*
730cdc88
ILT
2736Layout::layout<32, true>(Sized_relobj<32, true>* object, unsigned int shndx,
2737 const char* name,
2738 const elfcpp::Shdr<32, true>& shdr,
2739 unsigned int, unsigned int, off_t*);
193a53d9 2740#endif
a2fb1b05 2741
193a53d9 2742#ifdef HAVE_TARGET_64_LITTLE
a2fb1b05
ILT
2743template
2744Output_section*
730cdc88
ILT
2745Layout::layout<64, false>(Sized_relobj<64, false>* object, unsigned int shndx,
2746 const char* name,
2747 const elfcpp::Shdr<64, false>& shdr,
2748 unsigned int, unsigned int, off_t*);
193a53d9 2749#endif
a2fb1b05 2750
193a53d9 2751#ifdef HAVE_TARGET_64_BIG
a2fb1b05
ILT
2752template
2753Output_section*
730cdc88
ILT
2754Layout::layout<64, true>(Sized_relobj<64, true>* object, unsigned int shndx,
2755 const char* name,
2756 const elfcpp::Shdr<64, true>& shdr,
2757 unsigned int, unsigned int, off_t*);
193a53d9 2758#endif
a2fb1b05 2759
6a74a719
ILT
2760#ifdef HAVE_TARGET_32_LITTLE
2761template
2762Output_section*
2763Layout::layout_reloc<32, false>(Sized_relobj<32, false>* object,
2764 unsigned int reloc_shndx,
2765 const elfcpp::Shdr<32, false>& shdr,
2766 Output_section* data_section,
2767 Relocatable_relocs* rr);
2768#endif
2769
2770#ifdef HAVE_TARGET_32_BIG
2771template
2772Output_section*
2773Layout::layout_reloc<32, true>(Sized_relobj<32, true>* object,
2774 unsigned int reloc_shndx,
2775 const elfcpp::Shdr<32, true>& shdr,
2776 Output_section* data_section,
2777 Relocatable_relocs* rr);
2778#endif
2779
2780#ifdef HAVE_TARGET_64_LITTLE
2781template
2782Output_section*
2783Layout::layout_reloc<64, false>(Sized_relobj<64, false>* object,
2784 unsigned int reloc_shndx,
2785 const elfcpp::Shdr<64, false>& shdr,
2786 Output_section* data_section,
2787 Relocatable_relocs* rr);
2788#endif
2789
2790#ifdef HAVE_TARGET_64_BIG
2791template
2792Output_section*
2793Layout::layout_reloc<64, true>(Sized_relobj<64, true>* object,
2794 unsigned int reloc_shndx,
2795 const elfcpp::Shdr<64, true>& shdr,
2796 Output_section* data_section,
2797 Relocatable_relocs* rr);
2798#endif
2799
2800#ifdef HAVE_TARGET_32_LITTLE
2801template
2802void
2803Layout::layout_group<32, false>(Symbol_table* symtab,
2804 Sized_relobj<32, false>* object,
2805 unsigned int,
2806 const char* group_section_name,
2807 const char* signature,
2808 const elfcpp::Shdr<32, false>& shdr,
2809 const elfcpp::Elf_Word* contents);
2810#endif
2811
2812#ifdef HAVE_TARGET_32_BIG
2813template
2814void
2815Layout::layout_group<32, true>(Symbol_table* symtab,
2816 Sized_relobj<32, true>* object,
2817 unsigned int,
2818 const char* group_section_name,
2819 const char* signature,
2820 const elfcpp::Shdr<32, true>& shdr,
2821 const elfcpp::Elf_Word* contents);
2822#endif
2823
2824#ifdef HAVE_TARGET_64_LITTLE
2825template
2826void
2827Layout::layout_group<64, false>(Symbol_table* symtab,
2828 Sized_relobj<64, false>* object,
2829 unsigned int,
2830 const char* group_section_name,
2831 const char* signature,
2832 const elfcpp::Shdr<64, false>& shdr,
2833 const elfcpp::Elf_Word* contents);
2834#endif
2835
2836#ifdef HAVE_TARGET_64_BIG
2837template
2838void
2839Layout::layout_group<64, true>(Symbol_table* symtab,
2840 Sized_relobj<64, true>* object,
2841 unsigned int,
2842 const char* group_section_name,
2843 const char* signature,
2844 const elfcpp::Shdr<64, true>& shdr,
2845 const elfcpp::Elf_Word* contents);
2846#endif
2847
730cdc88
ILT
2848#ifdef HAVE_TARGET_32_LITTLE
2849template
2850Output_section*
2851Layout::layout_eh_frame<32, false>(Sized_relobj<32, false>* object,
2852 const unsigned char* symbols,
2853 off_t symbols_size,
2854 const unsigned char* symbol_names,
2855 off_t symbol_names_size,
2856 unsigned int shndx,
2857 const elfcpp::Shdr<32, false>& shdr,
2858 unsigned int reloc_shndx,
2859 unsigned int reloc_type,
2860 off_t* off);
2861#endif
2862
2863#ifdef HAVE_TARGET_32_BIG
2864template
2865Output_section*
2866Layout::layout_eh_frame<32, true>(Sized_relobj<32, true>* object,
2867 const unsigned char* symbols,
2868 off_t symbols_size,
2869 const unsigned char* symbol_names,
2870 off_t symbol_names_size,
2871 unsigned int shndx,
2872 const elfcpp::Shdr<32, true>& shdr,
2873 unsigned int reloc_shndx,
2874 unsigned int reloc_type,
2875 off_t* off);
2876#endif
2877
2878#ifdef HAVE_TARGET_64_LITTLE
2879template
2880Output_section*
2881Layout::layout_eh_frame<64, false>(Sized_relobj<64, false>* object,
2882 const unsigned char* symbols,
2883 off_t symbols_size,
2884 const unsigned char* symbol_names,
2885 off_t symbol_names_size,
2886 unsigned int shndx,
2887 const elfcpp::Shdr<64, false>& shdr,
2888 unsigned int reloc_shndx,
2889 unsigned int reloc_type,
2890 off_t* off);
2891#endif
2892
2893#ifdef HAVE_TARGET_64_BIG
2894template
2895Output_section*
2896Layout::layout_eh_frame<64, true>(Sized_relobj<64, true>* object,
2897 const unsigned char* symbols,
2898 off_t symbols_size,
2899 const unsigned char* symbol_names,
2900 off_t symbol_names_size,
2901 unsigned int shndx,
2902 const elfcpp::Shdr<64, true>& shdr,
2903 unsigned int reloc_shndx,
2904 unsigned int reloc_type,
2905 off_t* off);
2906#endif
a2fb1b05
ILT
2907
2908} // End namespace gold.
This page took 0.224647 seconds and 4 git commands to generate.