* incremental-dump.cc (dump_incremental_inputs): Print dynamic reloc
[deliverable/binutils-gdb.git] / gold / layout.cc
CommitLineData
a2fb1b05
ILT
1// layout.cc -- lay out output file sections for gold
2
3bb951e5 3// Copyright 2006, 2007, 2008, 2009, 2010, 2011 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
8ed814a9 25#include <cerrno>
a2fb1b05 26#include <cstring>
54dc6425 27#include <algorithm>
a2fb1b05 28#include <iostream>
6e9ba2ca 29#include <fstream>
a2fb1b05 30#include <utility>
8ed814a9 31#include <fcntl.h>
6e9ba2ca 32#include <fnmatch.h>
8ed814a9
ILT
33#include <unistd.h>
34#include "libiberty.h"
35#include "md5.h"
36#include "sha1.h"
a2fb1b05 37
7e1edb90 38#include "parameters.h"
14144f39 39#include "options.h"
7d9e3d98 40#include "mapfile.h"
a445fddf
ILT
41#include "script.h"
42#include "script-sections.h"
a2fb1b05 43#include "output.h"
f6ce93d6 44#include "symtab.h"
a3ad94ed 45#include "dynobj.h"
3151305a 46#include "ehframe.h"
96803768 47#include "compressed_output.h"
62b01cb5 48#include "reduced_debug_output.h"
6a74a719 49#include "reloc.h"
2a00e4fb 50#include "descriptors.h"
2756a258 51#include "plugin.h"
3ce2c28e
ILT
52#include "incremental.h"
53#include "layout.h"
a2fb1b05
ILT
54
55namespace gold
56{
57
cdc29364
CC
58// Class Free_list.
59
60// The total number of free lists used.
61unsigned int Free_list::num_lists = 0;
62// The total number of free list nodes used.
63unsigned int Free_list::num_nodes = 0;
64// The total number of calls to Free_list::remove.
65unsigned int Free_list::num_removes = 0;
66// The total number of nodes visited during calls to Free_list::remove.
67unsigned int Free_list::num_remove_visits = 0;
68// The total number of calls to Free_list::allocate.
69unsigned int Free_list::num_allocates = 0;
70// The total number of nodes visited during calls to Free_list::allocate.
71unsigned int Free_list::num_allocate_visits = 0;
72
73// Initialize the free list. Creates a single free list node that
74// describes the entire region of length LEN. If EXTEND is true,
75// allocate() is allowed to extend the region beyond its initial
76// length.
77
78void
79Free_list::init(off_t len, bool extend)
80{
81 this->list_.push_front(Free_list_node(0, len));
82 this->last_remove_ = this->list_.begin();
83 this->extend_ = extend;
84 this->length_ = len;
85 ++Free_list::num_lists;
86 ++Free_list::num_nodes;
87}
88
89// Remove a chunk from the free list. Because we start with a single
90// node that covers the entire section, and remove chunks from it one
91// at a time, we do not need to coalesce chunks or handle cases that
92// span more than one free node. We expect to remove chunks from the
93// free list in order, and we expect to have only a few chunks of free
94// space left (corresponding to files that have changed since the last
95// incremental link), so a simple linear list should provide sufficient
96// performance.
97
98void
99Free_list::remove(off_t start, off_t end)
100{
101 if (start == end)
102 return;
103 gold_assert(start < end);
104
105 ++Free_list::num_removes;
106
107 Iterator p = this->last_remove_;
108 if (p->start_ > start)
109 p = this->list_.begin();
110
111 for (; p != this->list_.end(); ++p)
112 {
113 ++Free_list::num_remove_visits;
114 // Find a node that wholly contains the indicated region.
115 if (p->start_ <= start && p->end_ >= end)
116 {
117 // Case 1: the indicated region spans the whole node.
118 // Add some fuzz to avoid creating tiny free chunks.
119 if (p->start_ + 3 >= start && p->end_ <= end + 3)
120 p = this->list_.erase(p);
121 // Case 2: remove a chunk from the start of the node.
122 else if (p->start_ + 3 >= start)
123 p->start_ = end;
124 // Case 3: remove a chunk from the end of the node.
125 else if (p->end_ <= end + 3)
126 p->end_ = start;
127 // Case 4: remove a chunk from the middle, and split
128 // the node into two.
129 else
130 {
131 Free_list_node newnode(p->start_, start);
132 p->start_ = end;
133 this->list_.insert(p, newnode);
134 ++Free_list::num_nodes;
135 }
136 this->last_remove_ = p;
137 return;
138 }
139 }
140
141 // Did not find a node containing the given chunk. This could happen
142 // because a small chunk was already removed due to the fuzz.
143 gold_debug(DEBUG_INCREMENTAL,
144 "Free_list::remove(%d,%d) not found",
145 static_cast<int>(start), static_cast<int>(end));
146}
147
148// Allocate a chunk of size LEN from the free list. Returns -1ULL
149// if a sufficiently large chunk of free space is not found.
150// We use a simple first-fit algorithm.
151
152off_t
153Free_list::allocate(off_t len, uint64_t align, off_t minoff)
154{
155 gold_debug(DEBUG_INCREMENTAL,
156 "Free_list::allocate(%08lx, %d, %08lx)",
157 static_cast<long>(len), static_cast<int>(align),
158 static_cast<long>(minoff));
159 if (len == 0)
160 return align_address(minoff, align);
161
162 ++Free_list::num_allocates;
163
164 for (Iterator p = this->list_.begin(); p != this->list_.end(); ++p)
165 {
166 ++Free_list::num_allocate_visits;
167 off_t start = p->start_ > minoff ? p->start_ : minoff;
168 start = align_address(start, align);
169 off_t end = start + len;
170 if (end <= p->end_)
171 {
172 if (p->start_ + 3 >= start && p->end_ <= end + 3)
173 this->list_.erase(p);
174 else if (p->start_ + 3 >= start)
175 p->start_ = end;
176 else if (p->end_ <= end + 3)
177 p->end_ = start;
178 else
179 {
180 Free_list_node newnode(p->start_, start);
181 p->start_ = end;
182 this->list_.insert(p, newnode);
183 ++Free_list::num_nodes;
184 }
185 return start;
186 }
187 }
188 return -1;
189}
190
191// Dump the free list (for debugging).
192void
193Free_list::dump()
194{
195 gold_info("Free list:\n start end length\n");
196 for (Iterator p = this->list_.begin(); p != this->list_.end(); ++p)
197 gold_info(" %08lx %08lx %08lx", static_cast<long>(p->start_),
198 static_cast<long>(p->end_),
199 static_cast<long>(p->end_ - p->start_));
200}
201
202// Print the statistics for the free lists.
203void
204Free_list::print_stats()
205{
206 fprintf(stderr, _("%s: total free lists: %u\n"),
207 program_name, Free_list::num_lists);
208 fprintf(stderr, _("%s: total free list nodes: %u\n"),
209 program_name, Free_list::num_nodes);
210 fprintf(stderr, _("%s: calls to Free_list::remove: %u\n"),
211 program_name, Free_list::num_removes);
212 fprintf(stderr, _("%s: nodes visited: %u\n"),
213 program_name, Free_list::num_remove_visits);
214 fprintf(stderr, _("%s: calls to Free_list::allocate: %u\n"),
215 program_name, Free_list::num_allocates);
216 fprintf(stderr, _("%s: nodes visited: %u\n"),
217 program_name, Free_list::num_allocate_visits);
218}
219
20e6d0d6
DK
220// Layout::Relaxation_debug_check methods.
221
222// Check that sections and special data are in reset states.
223// We do not save states for Output_sections and special Output_data.
224// So we check that they have not assigned any addresses or offsets.
225// clean_up_after_relaxation simply resets their addresses and offsets.
226void
227Layout::Relaxation_debug_check::check_output_data_for_reset_values(
228 const Layout::Section_list& sections,
229 const Layout::Data_list& special_outputs)
230{
231 for(Layout::Section_list::const_iterator p = sections.begin();
232 p != sections.end();
233 ++p)
234 gold_assert((*p)->address_and_file_offset_have_reset_values());
235
236 for(Layout::Data_list::const_iterator p = special_outputs.begin();
237 p != special_outputs.end();
238 ++p)
239 gold_assert((*p)->address_and_file_offset_have_reset_values());
240}
241
242// Save information of SECTIONS for checking later.
243
244void
245Layout::Relaxation_debug_check::read_sections(
246 const Layout::Section_list& sections)
247{
248 for(Layout::Section_list::const_iterator p = sections.begin();
249 p != sections.end();
250 ++p)
251 {
252 Output_section* os = *p;
253 Section_info info;
254 info.output_section = os;
255 info.address = os->is_address_valid() ? os->address() : 0;
256 info.data_size = os->is_data_size_valid() ? os->data_size() : -1;
257 info.offset = os->is_offset_valid()? os->offset() : -1 ;
258 this->section_infos_.push_back(info);
259 }
260}
261
262// Verify SECTIONS using previously recorded information.
263
264void
265Layout::Relaxation_debug_check::verify_sections(
266 const Layout::Section_list& sections)
267{
268 size_t i = 0;
269 for(Layout::Section_list::const_iterator p = sections.begin();
270 p != sections.end();
271 ++p, ++i)
272 {
273 Output_section* os = *p;
274 uint64_t address = os->is_address_valid() ? os->address() : 0;
275 off_t data_size = os->is_data_size_valid() ? os->data_size() : -1;
276 off_t offset = os->is_offset_valid()? os->offset() : -1 ;
277
278 if (i >= this->section_infos_.size())
279 {
280 gold_fatal("Section_info of %s missing.\n", os->name());
281 }
282 const Section_info& info = this->section_infos_[i];
283 if (os != info.output_section)
284 gold_fatal("Section order changed. Expecting %s but see %s\n",
285 info.output_section->name(), os->name());
286 if (address != info.address
287 || data_size != info.data_size
288 || offset != info.offset)
289 gold_fatal("Section %s changed.\n", os->name());
290 }
291}
292
92e059d8 293// Layout_task_runner methods.
a2fb1b05
ILT
294
295// Lay out the sections. This is called after all the input objects
296// have been read.
297
298void
17a1d0a9 299Layout_task_runner::run(Workqueue* workqueue, const Task* task)
a2fb1b05 300{
94a3fc8b
CC
301 Layout* layout = this->layout_;
302 off_t file_size = layout->finalize(this->input_objects_,
303 this->symtab_,
304 this->target_,
305 task);
61ba1cf9
ILT
306
307 // Now we know the final size of the output file and we know where
308 // each piece of information goes.
7d9e3d98
ILT
309
310 if (this->mapfile_ != NULL)
311 {
312 this->mapfile_->print_discarded_sections(this->input_objects_);
94a3fc8b 313 layout->print_to_mapfile(this->mapfile_);
7d9e3d98
ILT
314 }
315
cdc29364 316 Output_file* of;
94a3fc8b 317 if (layout->incremental_base() == NULL)
cdc29364
CC
318 {
319 of = new Output_file(parameters->options().output_file_name());
320 if (this->options_.oformat_enum() != General_options::OBJECT_FORMAT_ELF)
321 of->set_is_temporary();
322 of->open(file_size);
323 }
324 else
325 {
94a3fc8b
CC
326 of = layout->incremental_base()->output_file();
327
328 // Apply the incremental relocations for symbols whose values
329 // have changed. We do this before we resize the file and start
330 // writing anything else to it, so that we can read the old
331 // incremental information from the file before (possibly)
332 // overwriting it.
333 if (parameters->incremental_update())
334 layout->incremental_base()->apply_incremental_relocs(this->symtab_,
335 this->layout_,
336 of);
337
cdc29364
CC
338 of->resize(file_size);
339 }
61ba1cf9
ILT
340
341 // Queue up the final set of tasks.
342 gold::queue_final_tasks(this->options_, this->input_objects_,
94a3fc8b 343 this->symtab_, layout, workqueue, of);
a2fb1b05
ILT
344}
345
346// Layout methods.
347
2ea97941 348Layout::Layout(int number_of_input_files, Script_options* script_options)
e55bde5e 349 : number_of_input_files_(number_of_input_files),
2ea97941 350 script_options_(script_options),
d491d34e
ILT
351 namepool_(),
352 sympool_(),
353 dynpool_(),
354 signatures_(),
355 section_name_map_(),
356 segment_list_(),
357 section_list_(),
358 unattached_section_list_(),
d491d34e
ILT
359 special_output_list_(),
360 section_headers_(NULL),
361 tls_segment_(NULL),
9f1d377b 362 relro_segment_(NULL),
1a2dff53 363 increase_relro_(0),
d491d34e
ILT
364 symtab_section_(NULL),
365 symtab_xindex_(NULL),
366 dynsym_section_(NULL),
367 dynsym_xindex_(NULL),
368 dynamic_section_(NULL),
f0ba79e2 369 dynamic_symbol_(NULL),
d491d34e
ILT
370 dynamic_data_(NULL),
371 eh_frame_section_(NULL),
372 eh_frame_data_(NULL),
373 added_eh_frame_data_(false),
374 eh_frame_hdr_section_(NULL),
375 build_id_note_(NULL),
62b01cb5
ILT
376 debug_abbrev_(NULL),
377 debug_info_(NULL),
d491d34e
ILT
378 group_signatures_(),
379 output_file_size_(-1),
d7bb5745 380 have_added_input_section_(false),
e55bde5e 381 sections_are_attached_(false),
35cdfc9a
ILT
382 input_requires_executable_stack_(false),
383 input_with_gnu_stack_note_(false),
535890bb 384 input_without_gnu_stack_note_(false),
17a1d0a9 385 has_static_tls_(false),
e55bde5e 386 any_postprocessing_sections_(false),
3ce2c28e 387 resized_signatures_(false),
1518dc8f 388 have_stabstr_section_(false),
20e6d0d6
DK
389 incremental_inputs_(NULL),
390 record_output_section_data_from_script_(false),
391 script_output_section_data_list_(),
392 segment_states_(NULL),
cdc29364
CC
393 relaxation_debug_check_(NULL),
394 incremental_base_(NULL),
395 free_list_()
54dc6425
ILT
396{
397 // Make space for more than enough segments for a typical file.
398 // This is just for efficiency--it's OK if we wind up needing more.
a3ad94ed
ILT
399 this->segment_list_.reserve(12);
400
27bc2bce
ILT
401 // We expect two unattached Output_data objects: the file header and
402 // the segment headers.
403 this->special_output_list_.reserve(2);
3ce2c28e
ILT
404
405 // Initialize structure needed for an incremental build.
8c21d9d3 406 if (parameters->incremental())
3ce2c28e 407 this->incremental_inputs_ = new Incremental_inputs;
f7c8a183
ILT
408
409 // The section name pool is worth optimizing in all cases, because
410 // it is small, but there are often overlaps due to .rel sections.
411 this->namepool_.set_optimize();
54dc6425
ILT
412}
413
cdc29364
CC
414// For incremental links, record the base file to be modified.
415
416void
417Layout::set_incremental_base(Incremental_binary* base)
418{
419 this->incremental_base_ = base;
420 this->free_list_.init(base->output_file()->filesize(), true);
421}
422
a2fb1b05
ILT
423// Hash a key we use to look up an output section mapping.
424
425size_t
426Layout::Hash_key::operator()(const Layout::Key& k) const
427{
f0641a0b 428 return k.first + k.second.first + k.second.second;
a2fb1b05
ILT
429}
430
02d2ba74
ILT
431// Returns whether the given section is in the list of
432// debug-sections-used-by-some-version-of-gdb. Currently,
433// we've checked versions of gdb up to and including 6.7.1.
434
435static const char* gdb_sections[] =
436{ ".debug_abbrev",
437 // ".debug_aranges", // not used by gdb as of 6.7.1
438 ".debug_frame",
439 ".debug_info",
a0506cca 440 ".debug_types",
02d2ba74
ILT
441 ".debug_line",
442 ".debug_loc",
443 ".debug_macinfo",
444 // ".debug_pubnames", // not used by gdb as of 6.7.1
445 ".debug_ranges",
446 ".debug_str",
447};
448
62b01cb5
ILT
449static const char* lines_only_debug_sections[] =
450{ ".debug_abbrev",
451 // ".debug_aranges", // not used by gdb as of 6.7.1
452 // ".debug_frame",
453 ".debug_info",
a0506cca 454 // ".debug_types",
62b01cb5
ILT
455 ".debug_line",
456 // ".debug_loc",
457 // ".debug_macinfo",
458 // ".debug_pubnames", // not used by gdb as of 6.7.1
459 // ".debug_ranges",
460 ".debug_str",
461};
462
02d2ba74
ILT
463static inline bool
464is_gdb_debug_section(const char* str)
465{
466 // We can do this faster: binary search or a hashtable. But why bother?
467 for (size_t i = 0; i < sizeof(gdb_sections)/sizeof(*gdb_sections); ++i)
468 if (strcmp(str, gdb_sections[i]) == 0)
469 return true;
470 return false;
471}
472
62b01cb5
ILT
473static inline bool
474is_lines_only_debug_section(const char* str)
475{
476 // We can do this faster: binary search or a hashtable. But why bother?
477 for (size_t i = 0;
478 i < sizeof(lines_only_debug_sections)/sizeof(*lines_only_debug_sections);
479 ++i)
480 if (strcmp(str, lines_only_debug_sections[i]) == 0)
481 return true;
482 return false;
483}
484
6fc6ea19
CC
485// Sometimes we compress sections. This is typically done for
486// sections that are not part of normal program execution (such as
487// .debug_* sections), and where the readers of these sections know
488// how to deal with compressed sections. This routine doesn't say for
489// certain whether we'll compress -- it depends on commandline options
490// as well -- just whether this section is a candidate for compression.
491// (The Output_compressed_section class decides whether to compress
492// a given section, and picks the name of the compressed section.)
493
494static bool
495is_compressible_debug_section(const char* secname)
496{
497 return (is_prefix_of(".debug", secname));
498}
499
500// We may see compressed debug sections in input files. Return TRUE
501// if this is the name of a compressed debug section.
502
503bool
504is_compressed_debug_section(const char* secname)
505{
506 return (is_prefix_of(".zdebug", secname));
507}
508
a2fb1b05
ILT
509// Whether to include this section in the link.
510
511template<int size, bool big_endian>
512bool
6fa2a40b 513Layout::include_section(Sized_relobj_file<size, big_endian>*, const char* name,
a2fb1b05
ILT
514 const elfcpp::Shdr<size, big_endian>& shdr)
515{
fd06b4aa
CC
516 if (shdr.get_sh_flags() & elfcpp::SHF_EXCLUDE)
517 return false;
518
a2fb1b05
ILT
519 switch (shdr.get_sh_type())
520 {
521 case elfcpp::SHT_NULL:
522 case elfcpp::SHT_SYMTAB:
523 case elfcpp::SHT_DYNSYM:
a2fb1b05
ILT
524 case elfcpp::SHT_HASH:
525 case elfcpp::SHT_DYNAMIC:
526 case elfcpp::SHT_SYMTAB_SHNDX:
527 return false;
528
5cb66f97
ILT
529 case elfcpp::SHT_STRTAB:
530 // Discard the sections which have special meanings in the ELF
531 // ABI. Keep others (e.g., .stabstr). We could also do this by
532 // checking the sh_link fields of the appropriate sections.
533 return (strcmp(name, ".dynstr") != 0
534 && strcmp(name, ".strtab") != 0
535 && strcmp(name, ".shstrtab") != 0);
536
a2fb1b05
ILT
537 case elfcpp::SHT_RELA:
538 case elfcpp::SHT_REL:
539 case elfcpp::SHT_GROUP:
7019cd25
ILT
540 // If we are emitting relocations these should be handled
541 // elsewhere.
8851ecca
ILT
542 gold_assert(!parameters->options().relocatable()
543 && !parameters->options().emit_relocs());
6a74a719 544 return false;
a2fb1b05 545
9e2dcb77 546 case elfcpp::SHT_PROGBITS:
8851ecca 547 if (parameters->options().strip_debug()
9e2dcb77
ILT
548 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
549 {
e94cf127 550 if (is_debug_info_section(name))
9e2dcb77
ILT
551 return false;
552 }
62b01cb5
ILT
553 if (parameters->options().strip_debug_non_line()
554 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
555 {
556 // Debugging sections can only be recognized by name.
557 if (is_prefix_of(".debug", name)
558 && !is_lines_only_debug_section(name))
559 return false;
560 }
8851ecca 561 if (parameters->options().strip_debug_gdb()
02d2ba74
ILT
562 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
563 {
564 // Debugging sections can only be recognized by name.
565 if (is_prefix_of(".debug", name)
566 && !is_gdb_debug_section(name))
567 return false;
568 }
fd06b4aa
CC
569 if (parameters->options().strip_lto_sections()
570 && !parameters->options().relocatable()
571 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
572 {
573 // Ignore LTO sections containing intermediate code.
574 if (is_prefix_of(".gnu.lto_", name))
575 return false;
576 }
6b7dd3f3
ILT
577 // The GNU linker strips .gnu_debuglink sections, so we do too.
578 // This is a feature used to keep debugging information in
579 // separate files.
580 if (strcmp(name, ".gnu_debuglink") == 0)
581 return false;
9e2dcb77
ILT
582 return true;
583
a2fb1b05 584 default:
a2fb1b05
ILT
585 return true;
586 }
587}
588
ead1e424 589// Return an output section named NAME, or NULL if there is none.
a2fb1b05 590
a2fb1b05 591Output_section*
ead1e424 592Layout::find_output_section(const char* name) const
a2fb1b05 593{
a445fddf
ILT
594 for (Section_list::const_iterator p = this->section_list_.begin();
595 p != this->section_list_.end();
ead1e424 596 ++p)
a445fddf
ILT
597 if (strcmp((*p)->name(), name) == 0)
598 return *p;
ead1e424
ILT
599 return NULL;
600}
a2fb1b05 601
ead1e424
ILT
602// Return an output segment of type TYPE, with segment flags SET set
603// and segment flags CLEAR clear. Return NULL if there is none.
a2fb1b05 604
ead1e424
ILT
605Output_segment*
606Layout::find_output_segment(elfcpp::PT type, elfcpp::Elf_Word set,
607 elfcpp::Elf_Word clear) const
608{
609 for (Segment_list::const_iterator p = this->segment_list_.begin();
610 p != this->segment_list_.end();
611 ++p)
612 if (static_cast<elfcpp::PT>((*p)->type()) == type
613 && ((*p)->flags() & set) == set
614 && ((*p)->flags() & clear) == 0)
615 return *p;
616 return NULL;
617}
a2fb1b05 618
ead1e424 619// Return the output section to use for section NAME with type TYPE
a445fddf 620// and section flags FLAGS. NAME must be canonicalized in the string
f5c870d2
ILT
621// pool, and NAME_KEY is the key. IS_INTERP is true if this is the
622// .interp section. IS_DYNAMIC_LINKER_SECTION is true if this section
1a2dff53
ILT
623// is used by the dynamic linker. IS_RELRO is true for a relro
624// section. IS_LAST_RELRO is true for the last relro section.
625// IS_FIRST_NON_RELRO is true for the first non-relro section.
a2fb1b05 626
ead1e424 627Output_section*
f0641a0b 628Layout::get_output_section(const char* name, Stringpool::Key name_key,
f5c870d2 629 elfcpp::Elf_Word type, elfcpp::Elf_Xword flags,
22f0da72 630 Output_section_order order, bool is_relro)
ead1e424 631{
154e0e9a
ILT
632 elfcpp::Elf_Xword lookup_flags = flags;
633
634 // Ignoring SHF_WRITE and SHF_EXECINSTR here means that we combine
635 // read-write with read-only sections. Some other ELF linkers do
636 // not do this. FIXME: Perhaps there should be an option
637 // controlling this.
638 lookup_flags &= ~(elfcpp::SHF_WRITE | elfcpp::SHF_EXECINSTR);
639
640 const Key key(name_key, std::make_pair(type, lookup_flags));
a2fb1b05
ILT
641 const std::pair<Key, Output_section*> v(key, NULL);
642 std::pair<Section_name_map::iterator, bool> ins(
643 this->section_name_map_.insert(v));
644
a2fb1b05 645 if (!ins.second)
ead1e424 646 return ins.first->second;
a2fb1b05
ILT
647 else
648 {
649 // This is the first time we've seen this name/type/flags
4e2b1697
ILT
650 // combination. For compatibility with the GNU linker, we
651 // combine sections with contents and zero flags with sections
652 // with non-zero flags. This is a workaround for cases where
653 // assembler code forgets to set section flags. FIXME: Perhaps
654 // there should be an option to control this.
15cf077e 655 Output_section* os = NULL;
4e2b1697
ILT
656
657 if (type == elfcpp::SHT_PROGBITS)
15cf077e 658 {
4e2b1697
ILT
659 if (flags == 0)
660 {
661 Output_section* same_name = this->find_output_section(name);
662 if (same_name != NULL
663 && same_name->type() == elfcpp::SHT_PROGBITS
664 && (same_name->flags() & elfcpp::SHF_TLS) == 0)
665 os = same_name;
666 }
667 else if ((flags & elfcpp::SHF_TLS) == 0)
668 {
669 elfcpp::Elf_Xword zero_flags = 0;
670 const Key zero_key(name_key, std::make_pair(type, zero_flags));
671 Section_name_map::iterator p =
672 this->section_name_map_.find(zero_key);
673 if (p != this->section_name_map_.end())
154e0e9a 674 os = p->second;
4e2b1697 675 }
15cf077e 676 }
4e2b1697 677
15cf077e 678 if (os == NULL)
22f0da72
ILT
679 os = this->make_output_section(name, type, flags, order, is_relro);
680
a2fb1b05 681 ins.first->second = os;
ead1e424 682 return os;
a2fb1b05 683 }
ead1e424
ILT
684}
685
a445fddf
ILT
686// Pick the output section to use for section NAME, in input file
687// RELOBJ, with type TYPE and flags FLAGS. RELOBJ may be NULL for a
154e0e9a
ILT
688// linker created section. IS_INPUT_SECTION is true if we are
689// choosing an output section for an input section found in a input
f5c870d2
ILT
690// file. IS_INTERP is true if this is the .interp section.
691// IS_DYNAMIC_LINKER_SECTION is true if this section is used by the
1a2dff53
ILT
692// dynamic linker. IS_RELRO is true for a relro section.
693// IS_LAST_RELRO is true for the last relro section.
694// IS_FIRST_NON_RELRO is true for the first non-relro section. This
695// will return NULL if the input section should be discarded.
a445fddf
ILT
696
697Output_section*
698Layout::choose_output_section(const Relobj* relobj, const char* name,
699 elfcpp::Elf_Word type, elfcpp::Elf_Xword flags,
22f0da72
ILT
700 bool is_input_section, Output_section_order order,
701 bool is_relro)
a445fddf 702{
154e0e9a
ILT
703 // We should not see any input sections after we have attached
704 // sections to segments.
705 gold_assert(!is_input_section || !this->sections_are_attached_);
706
707 // Some flags in the input section should not be automatically
708 // copied to the output section.
a445fddf 709 flags &= ~ (elfcpp::SHF_INFO_LINK
a445fddf
ILT
710 | elfcpp::SHF_GROUP
711 | elfcpp::SHF_MERGE
712 | elfcpp::SHF_STRINGS);
713
c9484ea5
DK
714 // We only clear the SHF_LINK_ORDER flag in for
715 // a non-relocatable link.
716 if (!parameters->options().relocatable())
717 flags &= ~elfcpp::SHF_LINK_ORDER;
718
a445fddf
ILT
719 if (this->script_options_->saw_sections_clause())
720 {
721 // We are using a SECTIONS clause, so the output section is
722 // chosen based only on the name.
723
724 Script_sections* ss = this->script_options_->script_sections();
725 const char* file_name = relobj == NULL ? NULL : relobj->name().c_str();
726 Output_section** output_section_slot;
1e5d2fb1 727 Script_sections::Section_type script_section_type;
7f8cd844 728 const char* orig_name = name;
1e5d2fb1
DK
729 name = ss->output_section_name(file_name, name, &output_section_slot,
730 &script_section_type);
a445fddf
ILT
731 if (name == NULL)
732 {
7f8cd844
NC
733 gold_debug(DEBUG_SCRIPT, _("Unable to create output section '%s' "
734 "because it is not allowed by the "
735 "SECTIONS clause of the linker script"),
736 orig_name);
a445fddf
ILT
737 // The SECTIONS clause says to discard this input section.
738 return NULL;
739 }
740
1e5d2fb1
DK
741 // We can only handle script section types ST_NONE and ST_NOLOAD.
742 switch (script_section_type)
743 {
744 case Script_sections::ST_NONE:
745 break;
746 case Script_sections::ST_NOLOAD:
747 flags &= elfcpp::SHF_ALLOC;
748 break;
749 default:
750 gold_unreachable();
751 }
752
a445fddf
ILT
753 // If this is an orphan section--one not mentioned in the linker
754 // script--then OUTPUT_SECTION_SLOT will be NULL, and we do the
755 // default processing below.
756
757 if (output_section_slot != NULL)
758 {
759 if (*output_section_slot != NULL)
9c547ec3
ILT
760 {
761 (*output_section_slot)->update_flags_for_input_section(flags);
762 return *output_section_slot;
763 }
a445fddf
ILT
764
765 // We don't put sections found in the linker script into
766 // SECTION_NAME_MAP_. That keeps us from getting confused
767 // if an orphan section is mapped to a section with the same
768 // name as one in the linker script.
769
770 name = this->namepool_.add(name, false, NULL);
771
22f0da72
ILT
772 Output_section* os = this->make_output_section(name, type, flags,
773 order, is_relro);
774
a445fddf 775 os->set_found_in_sections_clause();
1e5d2fb1
DK
776
777 // Special handling for NOLOAD sections.
778 if (script_section_type == Script_sections::ST_NOLOAD)
779 {
780 os->set_is_noload();
781
782 // The constructor of Output_section sets addresses of non-ALLOC
783 // sections to 0 by default. We don't want that for NOLOAD
784 // sections even if they have no SHF_ALLOC flag.
785 if ((os->flags() & elfcpp::SHF_ALLOC) == 0
786 && os->is_address_valid())
787 {
788 gold_assert(os->address() == 0
789 && !os->is_offset_valid()
790 && !os->is_data_size_valid());
791 os->reset_address_and_file_offset();
792 }
793 }
794
a445fddf
ILT
795 *output_section_slot = os;
796 return os;
797 }
798 }
799
800 // FIXME: Handle SHF_OS_NONCONFORMING somewhere.
801
6fc6ea19
CC
802 size_t len = strlen(name);
803 char* uncompressed_name = NULL;
804
805 // Compressed debug sections should be mapped to the corresponding
806 // uncompressed section.
807 if (is_compressed_debug_section(name))
808 {
809 uncompressed_name = new char[len];
810 uncompressed_name[0] = '.';
811 gold_assert(name[0] == '.' && name[1] == 'z');
812 strncpy(&uncompressed_name[1], &name[2], len - 2);
813 uncompressed_name[len - 1] = '\0';
814 len -= 1;
815 name = uncompressed_name;
816 }
817
a445fddf
ILT
818 // Turn NAME from the name of the input section into the name of the
819 // output section.
401a9a73
CC
820 if (is_input_section
821 && !this->script_options_->saw_sections_clause()
822 && !parameters->options().relocatable())
a445fddf
ILT
823 name = Layout::output_section_name(name, &len);
824
825 Stringpool::Key name_key;
826 name = this->namepool_.add_with_length(name, len, true, &name_key);
827
6fc6ea19
CC
828 if (uncompressed_name != NULL)
829 delete[] uncompressed_name;
830
a445fddf
ILT
831 // Find or make the output section. The output section is selected
832 // based on the section name, type, and flags.
22f0da72 833 return this->get_output_section(name, name_key, type, flags, order, is_relro);
a445fddf
ILT
834}
835
cdc29364
CC
836// For incremental links, record the initial fixed layout of a section
837// from the base file, and return a pointer to the Output_section.
838
839template<int size, bool big_endian>
840Output_section*
841Layout::init_fixed_output_section(const char* name,
842 elfcpp::Shdr<size, big_endian>& shdr)
843{
844 unsigned int sh_type = shdr.get_sh_type();
845
846 // We preserve the layout of PROGBITS, NOBITS, and NOTE sections.
847 // All others will be created from scratch and reallocated.
848 if (sh_type != elfcpp::SHT_PROGBITS
849 && sh_type != elfcpp::SHT_NOBITS
850 && sh_type != elfcpp::SHT_NOTE)
851 return NULL;
852
853 typename elfcpp::Elf_types<size>::Elf_Addr sh_addr = shdr.get_sh_addr();
854 typename elfcpp::Elf_types<size>::Elf_Off sh_offset = shdr.get_sh_offset();
855 typename elfcpp::Elf_types<size>::Elf_WXword sh_size = shdr.get_sh_size();
856 typename elfcpp::Elf_types<size>::Elf_WXword sh_flags = shdr.get_sh_flags();
857 typename elfcpp::Elf_types<size>::Elf_WXword sh_addralign =
858 shdr.get_sh_addralign();
859
860 // Make the output section.
861 Stringpool::Key name_key;
862 name = this->namepool_.add(name, true, &name_key);
863 Output_section* os = this->get_output_section(name, name_key, sh_type,
864 sh_flags, ORDER_INVALID, false);
865 os->set_fixed_layout(sh_addr, sh_offset, sh_size, sh_addralign);
866 if (sh_type != elfcpp::SHT_NOBITS)
867 this->free_list_.remove(sh_offset, sh_offset + sh_size);
868 return os;
869}
870
ead1e424 871// Return the output section to use for input section SHNDX, with name
730cdc88
ILT
872// NAME, with header HEADER, from object OBJECT. RELOC_SHNDX is the
873// index of a relocation section which applies to this section, or 0
874// if none, or -1U if more than one. RELOC_TYPE is the type of the
875// relocation section if there is one. Set *OFF to the offset of this
876// input section without the output section. Return NULL if the
877// section should be discarded. Set *OFF to -1 if the section
878// contents should not be written directly to the output file, but
879// will instead receive special handling.
ead1e424
ILT
880
881template<int size, bool big_endian>
882Output_section*
6fa2a40b 883Layout::layout(Sized_relobj_file<size, big_endian>* object, unsigned int shndx,
730cdc88
ILT
884 const char* name, const elfcpp::Shdr<size, big_endian>& shdr,
885 unsigned int reloc_shndx, unsigned int, off_t* off)
ead1e424 886{
ef9beddf
ILT
887 *off = 0;
888
ead1e424
ILT
889 if (!this->include_section(object, name, shdr))
890 return NULL;
891
6a74a719
ILT
892 Output_section* os;
893
2a0ff005
DK
894 // Sometimes .init_array*, .preinit_array* and .fini_array* do not have
895 // correct section types. Force them here.
896 elfcpp::Elf_Word sh_type = shdr.get_sh_type();
897 if (sh_type == elfcpp::SHT_PROGBITS)
898 {
899 static const char init_array_prefix[] = ".init_array";
900 static const char preinit_array_prefix[] = ".preinit_array";
901 static const char fini_array_prefix[] = ".fini_array";
902 static size_t init_array_prefix_size = sizeof(init_array_prefix) - 1;
903 static size_t preinit_array_prefix_size =
904 sizeof(preinit_array_prefix) - 1;
905 static size_t fini_array_prefix_size = sizeof(fini_array_prefix) - 1;
906
907 if (strncmp(name, init_array_prefix, init_array_prefix_size) == 0)
908 sh_type = elfcpp::SHT_INIT_ARRAY;
909 else if (strncmp(name, preinit_array_prefix, preinit_array_prefix_size)
910 == 0)
911 sh_type = elfcpp::SHT_PREINIT_ARRAY;
912 else if (strncmp(name, fini_array_prefix, fini_array_prefix_size) == 0)
913 sh_type = elfcpp::SHT_FINI_ARRAY;
914 }
915
6a74a719
ILT
916 // In a relocatable link a grouped section must not be combined with
917 // any other sections.
8851ecca 918 if (parameters->options().relocatable()
6a74a719
ILT
919 && (shdr.get_sh_flags() & elfcpp::SHF_GROUP) != 0)
920 {
921 name = this->namepool_.add(name, true, NULL);
22f0da72
ILT
922 os = this->make_output_section(name, sh_type, shdr.get_sh_flags(),
923 ORDER_INVALID, false);
6a74a719
ILT
924 }
925 else
926 {
2a0ff005 927 os = this->choose_output_section(object, name, sh_type,
22f0da72
ILT
928 shdr.get_sh_flags(), true,
929 ORDER_INVALID, false);
6a74a719
ILT
930 if (os == NULL)
931 return NULL;
932 }
a2fb1b05 933
2fd32231
ILT
934 // By default the GNU linker sorts input sections whose names match
935 // .ctor.*, .dtor.*, .init_array.*, or .fini_array.*. The sections
936 // are sorted by name. This is used to implement constructor
937 // priority ordering. We are compatible.
938 if (!this->script_options_->saw_sections_clause()
939 && (is_prefix_of(".ctors.", name)
940 || is_prefix_of(".dtors.", name)
941 || is_prefix_of(".init_array.", name)
942 || is_prefix_of(".fini_array.", name)))
943 os->set_must_sort_attached_input_sections();
944
a2fb1b05
ILT
945 // FIXME: Handle SHF_LINK_ORDER somewhere.
946
5b7b7d6e
ILT
947 elfcpp::Elf_Xword orig_flags = os->flags();
948
6e9ba2ca 949 *off = os->add_input_section(this, object, shndx, name, shdr, reloc_shndx,
a445fddf 950 this->script_options_->saw_sections_clause());
5b7b7d6e
ILT
951
952 // If the flags changed, we may have to change the order.
953 if ((orig_flags & elfcpp::SHF_ALLOC) != 0)
954 {
955 orig_flags &= (elfcpp::SHF_WRITE | elfcpp::SHF_EXECINSTR);
956 elfcpp::Elf_Xword new_flags =
957 os->flags() & (elfcpp::SHF_WRITE | elfcpp::SHF_EXECINSTR);
958 if (orig_flags != new_flags)
959 os->set_order(this->default_section_order(os, false));
960 }
961
d7bb5745 962 this->have_added_input_section_ = true;
a2fb1b05
ILT
963
964 return os;
965}
966
6a74a719
ILT
967// Handle a relocation section when doing a relocatable link.
968
969template<int size, bool big_endian>
970Output_section*
6fa2a40b 971Layout::layout_reloc(Sized_relobj_file<size, big_endian>* object,
6a74a719
ILT
972 unsigned int,
973 const elfcpp::Shdr<size, big_endian>& shdr,
974 Output_section* data_section,
975 Relocatable_relocs* rr)
976{
8851ecca
ILT
977 gold_assert(parameters->options().relocatable()
978 || parameters->options().emit_relocs());
6a74a719
ILT
979
980 int sh_type = shdr.get_sh_type();
981
982 std::string name;
983 if (sh_type == elfcpp::SHT_REL)
984 name = ".rel";
985 else if (sh_type == elfcpp::SHT_RELA)
986 name = ".rela";
987 else
988 gold_unreachable();
989 name += data_section->name();
990
bd288ea2
ILT
991 // In a relocatable link relocs for a grouped section must not be
992 // combined with other reloc sections.
993 Output_section* os;
994 if (!parameters->options().relocatable()
995 || (data_section->flags() & elfcpp::SHF_GROUP) == 0)
996 os = this->choose_output_section(object, name.c_str(), sh_type,
22f0da72
ILT
997 shdr.get_sh_flags(), false,
998 ORDER_INVALID, false);
bd288ea2
ILT
999 else
1000 {
1001 const char* n = this->namepool_.add(name.c_str(), true, NULL);
1002 os = this->make_output_section(n, sh_type, shdr.get_sh_flags(),
22f0da72 1003 ORDER_INVALID, false);
bd288ea2 1004 }
6a74a719
ILT
1005
1006 os->set_should_link_to_symtab();
1007 os->set_info_section(data_section);
1008
1009 Output_section_data* posd;
1010 if (sh_type == elfcpp::SHT_REL)
1011 {
1012 os->set_entsize(elfcpp::Elf_sizes<size>::rel_size);
1013 posd = new Output_relocatable_relocs<elfcpp::SHT_REL,
1014 size,
1015 big_endian>(rr);
1016 }
1017 else if (sh_type == elfcpp::SHT_RELA)
1018 {
1019 os->set_entsize(elfcpp::Elf_sizes<size>::rela_size);
1020 posd = new Output_relocatable_relocs<elfcpp::SHT_RELA,
1021 size,
1022 big_endian>(rr);
1023 }
1024 else
1025 gold_unreachable();
1026
1027 os->add_output_section_data(posd);
1028 rr->set_output_data(posd);
1029
1030 return os;
1031}
1032
1033// Handle a group section when doing a relocatable link.
1034
1035template<int size, bool big_endian>
1036void
1037Layout::layout_group(Symbol_table* symtab,
6fa2a40b 1038 Sized_relobj_file<size, big_endian>* object,
6a74a719
ILT
1039 unsigned int,
1040 const char* group_section_name,
1041 const char* signature,
1042 const elfcpp::Shdr<size, big_endian>& shdr,
8825ac63
ILT
1043 elfcpp::Elf_Word flags,
1044 std::vector<unsigned int>* shndxes)
6a74a719 1045{
8851ecca 1046 gold_assert(parameters->options().relocatable());
6a74a719
ILT
1047 gold_assert(shdr.get_sh_type() == elfcpp::SHT_GROUP);
1048 group_section_name = this->namepool_.add(group_section_name, true, NULL);
1049 Output_section* os = this->make_output_section(group_section_name,
1050 elfcpp::SHT_GROUP,
f5c870d2 1051 shdr.get_sh_flags(),
22f0da72 1052 ORDER_INVALID, false);
6a74a719
ILT
1053
1054 // We need to find a symbol with the signature in the symbol table.
755ab8af 1055 // If we don't find one now, we need to look again later.
6a74a719 1056 Symbol* sym = symtab->lookup(signature, NULL);
755ab8af
ILT
1057 if (sym != NULL)
1058 os->set_info_symndx(sym);
1059 else
1060 {
e55bde5e
ILT
1061 // Reserve some space to minimize reallocations.
1062 if (this->group_signatures_.empty())
1063 this->group_signatures_.reserve(this->number_of_input_files_ * 16);
1064
755ab8af
ILT
1065 // We will wind up using a symbol whose name is the signature.
1066 // So just put the signature in the symbol name pool to save it.
1067 signature = symtab->canonicalize_name(signature);
1068 this->group_signatures_.push_back(Group_signature(os, signature));
1069 }
6a74a719
ILT
1070
1071 os->set_should_link_to_symtab();
6a74a719
ILT
1072 os->set_entsize(4);
1073
1074 section_size_type entry_count =
1075 convert_to_section_size_type(shdr.get_sh_size() / 4);
1076 Output_section_data* posd =
8825ac63
ILT
1077 new Output_data_group<size, big_endian>(object, entry_count, flags,
1078 shndxes);
6a74a719
ILT
1079 os->add_output_section_data(posd);
1080}
1081
730cdc88
ILT
1082// Special GNU handling of sections name .eh_frame. They will
1083// normally hold exception frame data as defined by the C++ ABI
1084// (http://codesourcery.com/cxx-abi/).
3151305a
ILT
1085
1086template<int size, bool big_endian>
730cdc88 1087Output_section*
6fa2a40b 1088Layout::layout_eh_frame(Sized_relobj_file<size, big_endian>* object,
730cdc88
ILT
1089 const unsigned char* symbols,
1090 off_t symbols_size,
1091 const unsigned char* symbol_names,
1092 off_t symbol_names_size,
3151305a 1093 unsigned int shndx,
3151305a 1094 const elfcpp::Shdr<size, big_endian>& shdr,
730cdc88
ILT
1095 unsigned int reloc_shndx, unsigned int reloc_type,
1096 off_t* off)
3151305a 1097{
730cdc88 1098 gold_assert(shdr.get_sh_type() == elfcpp::SHT_PROGBITS);
1650c4ff 1099 gold_assert((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0);
730cdc88 1100
a445fddf 1101 const char* const name = ".eh_frame";
22f0da72 1102 Output_section* os = this->choose_output_section(object, name,
a445fddf 1103 elfcpp::SHT_PROGBITS,
22f0da72
ILT
1104 elfcpp::SHF_ALLOC, false,
1105 ORDER_EHFRAME, false);
a445fddf
ILT
1106 if (os == NULL)
1107 return NULL;
730cdc88 1108
3151305a
ILT
1109 if (this->eh_frame_section_ == NULL)
1110 {
1111 this->eh_frame_section_ = os;
730cdc88 1112 this->eh_frame_data_ = new Eh_frame();
3151305a 1113
cdc29364
CC
1114 // For incremental linking, we do not optimize .eh_frame sections
1115 // or create a .eh_frame_hdr section.
1116 if (parameters->options().eh_frame_hdr() && !parameters->incremental())
3151305a 1117 {
3151305a 1118 Output_section* hdr_os =
22f0da72 1119 this->choose_output_section(NULL, ".eh_frame_hdr",
a445fddf 1120 elfcpp::SHT_PROGBITS,
22f0da72
ILT
1121 elfcpp::SHF_ALLOC, false,
1122 ORDER_EHFRAME, false);
3151305a 1123
a445fddf
ILT
1124 if (hdr_os != NULL)
1125 {
1126 Eh_frame_hdr* hdr_posd = new Eh_frame_hdr(os,
1127 this->eh_frame_data_);
1128 hdr_os->add_output_section_data(hdr_posd);
3151305a 1129
a445fddf 1130 hdr_os->set_after_input_sections();
730cdc88 1131
1c4f3631
ILT
1132 if (!this->script_options_->saw_phdrs_clause())
1133 {
1134 Output_segment* hdr_oseg;
1135 hdr_oseg = this->make_output_segment(elfcpp::PT_GNU_EH_FRAME,
1136 elfcpp::PF_R);
22f0da72
ILT
1137 hdr_oseg->add_output_section_to_nonload(hdr_os,
1138 elfcpp::PF_R);
1c4f3631 1139 }
730cdc88 1140
a445fddf
ILT
1141 this->eh_frame_data_->set_eh_frame_hdr(hdr_posd);
1142 }
3151305a
ILT
1143 }
1144 }
1145
1146 gold_assert(this->eh_frame_section_ == os);
1147
cdc29364
CC
1148 if (!parameters->incremental()
1149 && this->eh_frame_data_->add_ehframe_input_section(object,
1150 symbols,
1151 symbols_size,
1152 symbol_names,
1153 symbol_names_size,
1154 shndx,
1155 reloc_shndx,
1156 reloc_type))
2c38906f 1157 {
154e0e9a
ILT
1158 os->update_flags_for_input_section(shdr.get_sh_flags());
1159
3bb951e5
ILT
1160 // A writable .eh_frame section is a RELRO section.
1161 if ((shdr.get_sh_flags() & elfcpp::SHF_WRITE) != 0)
1162 os->set_is_relro();
1163
2c38906f
ILT
1164 // We found a .eh_frame section we are going to optimize, so now
1165 // we can add the set of optimized sections to the output
1166 // section. We need to postpone adding this until we've found a
1167 // section we can optimize so that the .eh_frame section in
1168 // crtbegin.o winds up at the start of the output section.
1169 if (!this->added_eh_frame_data_)
1170 {
1171 os->add_output_section_data(this->eh_frame_data_);
1172 this->added_eh_frame_data_ = true;
1173 }
1174 *off = -1;
1175 }
730cdc88
ILT
1176 else
1177 {
1178 // We couldn't handle this .eh_frame section for some reason.
1179 // Add it as a normal section.
a445fddf 1180 bool saw_sections_clause = this->script_options_->saw_sections_clause();
6e9ba2ca 1181 *off = os->add_input_section(this, object, shndx, name, shdr, reloc_shndx,
a445fddf 1182 saw_sections_clause);
d7bb5745 1183 this->have_added_input_section_ = true;
730cdc88
ILT
1184 }
1185
1186 return os;
3151305a
ILT
1187}
1188
9f1d377b
ILT
1189// Add POSD to an output section using NAME, TYPE, and FLAGS. Return
1190// the output section.
ead1e424 1191
9f1d377b 1192Output_section*
ead1e424
ILT
1193Layout::add_output_section_data(const char* name, elfcpp::Elf_Word type,
1194 elfcpp::Elf_Xword flags,
f5c870d2 1195 Output_section_data* posd,
22f0da72 1196 Output_section_order order, bool is_relro)
ead1e424 1197{
a445fddf 1198 Output_section* os = this->choose_output_section(NULL, name, type, flags,
22f0da72 1199 false, order, is_relro);
a445fddf
ILT
1200 if (os != NULL)
1201 os->add_output_section_data(posd);
9f1d377b 1202 return os;
ead1e424
ILT
1203}
1204
a2fb1b05
ILT
1205// Map section flags to segment flags.
1206
1207elfcpp::Elf_Word
1208Layout::section_flags_to_segment(elfcpp::Elf_Xword flags)
1209{
1210 elfcpp::Elf_Word ret = elfcpp::PF_R;
1211 if ((flags & elfcpp::SHF_WRITE) != 0)
1212 ret |= elfcpp::PF_W;
1213 if ((flags & elfcpp::SHF_EXECINSTR) != 0)
1214 ret |= elfcpp::PF_X;
1215 return ret;
1216}
1217
1218// Make a new Output_section, and attach it to segments as
22f0da72
ILT
1219// appropriate. ORDER is the order in which this section should
1220// appear in the output segment. IS_RELRO is true if this is a relro
1221// (read-only after relocations) section.
a2fb1b05
ILT
1222
1223Output_section*
1224Layout::make_output_section(const char* name, elfcpp::Elf_Word type,
22f0da72
ILT
1225 elfcpp::Elf_Xword flags,
1226 Output_section_order order, bool is_relro)
a2fb1b05 1227{
96803768
ILT
1228 Output_section* os;
1229 if ((flags & elfcpp::SHF_ALLOC) == 0
e55bde5e 1230 && strcmp(parameters->options().compress_debug_sections(), "none") != 0
96803768 1231 && is_compressible_debug_section(name))
e55bde5e
ILT
1232 os = new Output_compressed_section(&parameters->options(), name, type,
1233 flags);
62b01cb5 1234 else if ((flags & elfcpp::SHF_ALLOC) == 0
e55bde5e 1235 && parameters->options().strip_debug_non_line()
62b01cb5
ILT
1236 && strcmp(".debug_abbrev", name) == 0)
1237 {
1238 os = this->debug_abbrev_ = new Output_reduced_debug_abbrev_section(
1239 name, type, flags);
1240 if (this->debug_info_)
1241 this->debug_info_->set_abbreviations(this->debug_abbrev_);
1242 }
1243 else if ((flags & elfcpp::SHF_ALLOC) == 0
e55bde5e 1244 && parameters->options().strip_debug_non_line()
62b01cb5
ILT
1245 && strcmp(".debug_info", name) == 0)
1246 {
1247 os = this->debug_info_ = new Output_reduced_debug_info_section(
1248 name, type, flags);
1249 if (this->debug_abbrev_)
1250 this->debug_info_->set_abbreviations(this->debug_abbrev_);
1251 }
09ec0418 1252 else
c0a62865
DK
1253 {
1254 // FIXME: const_cast is ugly.
1255 Target* target = const_cast<Target*>(&parameters->target());
1256 os = target->make_output_section(name, type, flags);
1257 }
96803768 1258
22f0da72
ILT
1259 // With -z relro, we have to recognize the special sections by name.
1260 // There is no other way.
1261 bool is_relro_local = false;
1262 if (!this->script_options_->saw_sections_clause()
1263 && parameters->options().relro()
1264 && type == elfcpp::SHT_PROGBITS
1265 && (flags & elfcpp::SHF_ALLOC) != 0
1266 && (flags & elfcpp::SHF_WRITE) != 0)
1267 {
1268 if (strcmp(name, ".data.rel.ro") == 0)
1269 is_relro = true;
1270 else if (strcmp(name, ".data.rel.ro.local") == 0)
1271 {
1272 is_relro = true;
1273 is_relro_local = true;
1274 }
1275 else if (type == elfcpp::SHT_INIT_ARRAY
1276 || type == elfcpp::SHT_FINI_ARRAY
1277 || type == elfcpp::SHT_PREINIT_ARRAY)
1278 is_relro = true;
1279 else if (strcmp(name, ".ctors") == 0
1280 || strcmp(name, ".dtors") == 0
1281 || strcmp(name, ".jcr") == 0)
1282 is_relro = true;
1283 }
1284
1a2dff53
ILT
1285 if (is_relro)
1286 os->set_is_relro();
22f0da72
ILT
1287
1288 if (order == ORDER_INVALID && (flags & elfcpp::SHF_ALLOC) != 0)
1289 order = this->default_section_order(os, is_relro_local);
1290
1291 os->set_order(order);
f5c870d2 1292
8a5e3e08
ILT
1293 parameters->target().new_output_section(os);
1294
a3ad94ed 1295 this->section_list_.push_back(os);
a2fb1b05 1296
2fd32231
ILT
1297 // The GNU linker by default sorts some sections by priority, so we
1298 // do the same. We need to know that this might happen before we
1299 // attach any input sections.
1300 if (!this->script_options_->saw_sections_clause()
1301 && (strcmp(name, ".ctors") == 0
1302 || strcmp(name, ".dtors") == 0
1303 || strcmp(name, ".init_array") == 0
1304 || strcmp(name, ".fini_array") == 0))
1305 os->set_may_sort_attached_input_sections();
1306
1518dc8f
ILT
1307 // Check for .stab*str sections, as .stab* sections need to link to
1308 // them.
1309 if (type == elfcpp::SHT_STRTAB
1310 && !this->have_stabstr_section_
1311 && strncmp(name, ".stab", 5) == 0
1312 && strcmp(name + strlen(name) - 3, "str") == 0)
1313 this->have_stabstr_section_ = true;
1314
154e0e9a
ILT
1315 // If we have already attached the sections to segments, then we
1316 // need to attach this one now. This happens for sections created
1317 // directly by the linker.
1318 if (this->sections_are_attached_)
1319 this->attach_section_to_segment(os);
1320
4e2b1697
ILT
1321 return os;
1322}
a445fddf 1323
22f0da72
ILT
1324// Return the default order in which a section should be placed in an
1325// output segment. This function captures a lot of the ideas in
1326// ld/scripttempl/elf.sc in the GNU linker. Note that the order of a
1327// linker created section is normally set when the section is created;
1328// this function is used for input sections.
1329
1330Output_section_order
1331Layout::default_section_order(Output_section* os, bool is_relro_local)
1332{
1333 gold_assert((os->flags() & elfcpp::SHF_ALLOC) != 0);
1334 bool is_write = (os->flags() & elfcpp::SHF_WRITE) != 0;
1335 bool is_execinstr = (os->flags() & elfcpp::SHF_EXECINSTR) != 0;
1336 bool is_bss = false;
1337
1338 switch (os->type())
1339 {
1340 default:
1341 case elfcpp::SHT_PROGBITS:
1342 break;
1343 case elfcpp::SHT_NOBITS:
1344 is_bss = true;
1345 break;
1346 case elfcpp::SHT_RELA:
1347 case elfcpp::SHT_REL:
1348 if (!is_write)
1349 return ORDER_DYNAMIC_RELOCS;
1350 break;
1351 case elfcpp::SHT_HASH:
1352 case elfcpp::SHT_DYNAMIC:
1353 case elfcpp::SHT_SHLIB:
1354 case elfcpp::SHT_DYNSYM:
1355 case elfcpp::SHT_GNU_HASH:
1356 case elfcpp::SHT_GNU_verdef:
1357 case elfcpp::SHT_GNU_verneed:
1358 case elfcpp::SHT_GNU_versym:
1359 if (!is_write)
1360 return ORDER_DYNAMIC_LINKER;
1361 break;
1362 case elfcpp::SHT_NOTE:
1363 return is_write ? ORDER_RW_NOTE : ORDER_RO_NOTE;
1364 }
1365
1366 if ((os->flags() & elfcpp::SHF_TLS) != 0)
1367 return is_bss ? ORDER_TLS_BSS : ORDER_TLS_DATA;
1368
1369 if (!is_bss && !is_write)
1370 {
1371 if (is_execinstr)
1372 {
1373 if (strcmp(os->name(), ".init") == 0)
1374 return ORDER_INIT;
1375 else if (strcmp(os->name(), ".fini") == 0)
1376 return ORDER_FINI;
1377 }
1378 return is_execinstr ? ORDER_TEXT : ORDER_READONLY;
1379 }
1380
1381 if (os->is_relro())
1382 return is_relro_local ? ORDER_RELRO_LOCAL : ORDER_RELRO;
1383
1384 if (os->is_small_section())
1385 return is_bss ? ORDER_SMALL_BSS : ORDER_SMALL_DATA;
1386 if (os->is_large_section())
1387 return is_bss ? ORDER_LARGE_BSS : ORDER_LARGE_DATA;
1388
1389 return is_bss ? ORDER_BSS : ORDER_DATA;
1390}
1391
154e0e9a
ILT
1392// Attach output sections to segments. This is called after we have
1393// seen all the input sections.
1394
1395void
1396Layout::attach_sections_to_segments()
1397{
1398 for (Section_list::iterator p = this->section_list_.begin();
1399 p != this->section_list_.end();
1400 ++p)
1401 this->attach_section_to_segment(*p);
1402
1403 this->sections_are_attached_ = true;
1404}
1405
1406// Attach an output section to a segment.
1407
1408void
1409Layout::attach_section_to_segment(Output_section* os)
1410{
1411 if ((os->flags() & elfcpp::SHF_ALLOC) == 0)
1412 this->unattached_section_list_.push_back(os);
1413 else
1414 this->attach_allocated_section_to_segment(os);
1415}
1416
4e2b1697 1417// Attach an allocated output section to a segment.
1c4f3631 1418
4e2b1697 1419void
154e0e9a 1420Layout::attach_allocated_section_to_segment(Output_section* os)
4e2b1697 1421{
154e0e9a 1422 elfcpp::Elf_Xword flags = os->flags();
4e2b1697 1423 gold_assert((flags & elfcpp::SHF_ALLOC) != 0);
a2fb1b05 1424
4e2b1697
ILT
1425 if (parameters->options().relocatable())
1426 return;
a2fb1b05 1427
4e2b1697
ILT
1428 // If we have a SECTIONS clause, we can't handle the attachment to
1429 // segments until after we've seen all the sections.
1430 if (this->script_options_->saw_sections_clause())
1431 return;
a2fb1b05 1432
4e2b1697 1433 gold_assert(!this->script_options_->saw_phdrs_clause());
756ac4a8 1434
4e2b1697 1435 // This output section goes into a PT_LOAD segment.
a2fb1b05 1436
4e2b1697 1437 elfcpp::Elf_Word seg_flags = Layout::section_flags_to_segment(flags);
a2fb1b05 1438
a192ba05
ILT
1439 // Check for --section-start.
1440 uint64_t addr;
1441 bool is_address_set = parameters->options().section_start(os->name(), &addr);
f5c870d2 1442
4e2b1697 1443 // In general the only thing we really care about for PT_LOAD
0f72bf6f
RÁE
1444 // segments is whether or not they are writable or executable,
1445 // so that is how we search for them.
1446 // Large data sections also go into their own PT_LOAD segment.
1447 // People who need segments sorted on some other basis will
1448 // have to use a linker script.
a2fb1b05 1449
4e2b1697
ILT
1450 Segment_list::const_iterator p;
1451 for (p = this->segment_list_.begin();
1452 p != this->segment_list_.end();
1453 ++p)
1454 {
8a5e3e08
ILT
1455 if ((*p)->type() != elfcpp::PT_LOAD)
1456 continue;
1457 if (!parameters->options().omagic()
1458 && ((*p)->flags() & elfcpp::PF_W) != (seg_flags & elfcpp::PF_W))
1459 continue;
0f72bf6f
RÁE
1460 if (parameters->options().rosegment()
1461 && ((*p)->flags() & elfcpp::PF_X) != (seg_flags & elfcpp::PF_X))
1462 continue;
8a5e3e08
ILT
1463 // If -Tbss was specified, we need to separate the data and BSS
1464 // segments.
1465 if (parameters->options().user_set_Tbss())
1466 {
1467 if ((os->type() == elfcpp::SHT_NOBITS)
1468 == (*p)->has_any_data_sections())
1469 continue;
1470 }
1471 if (os->is_large_data_section() && !(*p)->is_large_data_segment())
1472 continue;
4e2b1697 1473
a192ba05
ILT
1474 if (is_address_set)
1475 {
1476 if ((*p)->are_addresses_set())
1477 continue;
1478
1479 (*p)->add_initial_output_data(os);
1480 (*p)->update_flags_for_output_section(seg_flags);
1481 (*p)->set_addresses(addr, addr);
1482 break;
1483 }
1484
22f0da72 1485 (*p)->add_output_section_to_load(this, os, seg_flags);
8a5e3e08 1486 break;
4e2b1697 1487 }
54dc6425 1488
4e2b1697
ILT
1489 if (p == this->segment_list_.end())
1490 {
1491 Output_segment* oseg = this->make_output_segment(elfcpp::PT_LOAD,
1492 seg_flags);
8a5e3e08
ILT
1493 if (os->is_large_data_section())
1494 oseg->set_is_large_data_segment();
22f0da72 1495 oseg->add_output_section_to_load(this, os, seg_flags);
a192ba05
ILT
1496 if (is_address_set)
1497 oseg->set_addresses(addr, addr);
a2fb1b05
ILT
1498 }
1499
4e2b1697
ILT
1500 // If we see a loadable SHT_NOTE section, we create a PT_NOTE
1501 // segment.
1502 if (os->type() == elfcpp::SHT_NOTE)
1503 {
1504 // See if we already have an equivalent PT_NOTE segment.
1505 for (p = this->segment_list_.begin();
1506 p != segment_list_.end();
1507 ++p)
1508 {
1509 if ((*p)->type() == elfcpp::PT_NOTE
1510 && (((*p)->flags() & elfcpp::PF_W)
1511 == (seg_flags & elfcpp::PF_W)))
1512 {
22f0da72 1513 (*p)->add_output_section_to_nonload(os, seg_flags);
4e2b1697
ILT
1514 break;
1515 }
1516 }
1517
1518 if (p == this->segment_list_.end())
1519 {
1520 Output_segment* oseg = this->make_output_segment(elfcpp::PT_NOTE,
1521 seg_flags);
22f0da72 1522 oseg->add_output_section_to_nonload(os, seg_flags);
4e2b1697
ILT
1523 }
1524 }
1525
1526 // If we see a loadable SHF_TLS section, we create a PT_TLS
1527 // segment. There can only be one such segment.
1528 if ((flags & elfcpp::SHF_TLS) != 0)
1529 {
1530 if (this->tls_segment_ == NULL)
2d924fd9 1531 this->make_output_segment(elfcpp::PT_TLS, seg_flags);
22f0da72 1532 this->tls_segment_->add_output_section_to_nonload(os, seg_flags);
4e2b1697 1533 }
9f1d377b
ILT
1534
1535 // If -z relro is in effect, and we see a relro section, we create a
1536 // PT_GNU_RELRO segment. There can only be one such segment.
1537 if (os->is_relro() && parameters->options().relro())
1538 {
1539 gold_assert(seg_flags == (elfcpp::PF_R | elfcpp::PF_W));
1540 if (this->relro_segment_ == NULL)
2d924fd9 1541 this->make_output_segment(elfcpp::PT_GNU_RELRO, seg_flags);
22f0da72 1542 this->relro_segment_->add_output_section_to_nonload(os, seg_flags);
9f1d377b 1543 }
a2fb1b05
ILT
1544}
1545
919ed24c
ILT
1546// Make an output section for a script.
1547
1548Output_section*
1e5d2fb1
DK
1549Layout::make_output_section_for_script(
1550 const char* name,
1551 Script_sections::Section_type section_type)
919ed24c
ILT
1552{
1553 name = this->namepool_.add(name, false, NULL);
1e5d2fb1
DK
1554 elfcpp::Elf_Xword sh_flags = elfcpp::SHF_ALLOC;
1555 if (section_type == Script_sections::ST_NOLOAD)
1556 sh_flags = 0;
919ed24c 1557 Output_section* os = this->make_output_section(name, elfcpp::SHT_PROGBITS,
22f0da72
ILT
1558 sh_flags, ORDER_INVALID,
1559 false);
919ed24c 1560 os->set_found_in_sections_clause();
1e5d2fb1
DK
1561 if (section_type == Script_sections::ST_NOLOAD)
1562 os->set_is_noload();
919ed24c
ILT
1563 return os;
1564}
1565
3802b2dd
ILT
1566// Return the number of segments we expect to see.
1567
1568size_t
1569Layout::expected_segment_count() const
1570{
1571 size_t ret = this->segment_list_.size();
1572
1573 // If we didn't see a SECTIONS clause in a linker script, we should
1574 // already have the complete list of segments. Otherwise we ask the
1575 // SECTIONS clause how many segments it expects, and add in the ones
1576 // we already have (PT_GNU_STACK, PT_GNU_EH_FRAME, etc.)
1577
1578 if (!this->script_options_->saw_sections_clause())
1579 return ret;
1580 else
1581 {
1582 const Script_sections* ss = this->script_options_->script_sections();
1583 return ret + ss->expected_segment_count(this);
1584 }
1585}
1586
35cdfc9a
ILT
1587// Handle the .note.GNU-stack section at layout time. SEEN_GNU_STACK
1588// is whether we saw a .note.GNU-stack section in the object file.
1589// GNU_STACK_FLAGS is the section flags. The flags give the
1590// protection required for stack memory. We record this in an
1591// executable as a PT_GNU_STACK segment. If an object file does not
1592// have a .note.GNU-stack segment, we must assume that it is an old
1593// object. On some targets that will force an executable stack.
1594
1595void
83e17bd5
CC
1596Layout::layout_gnu_stack(bool seen_gnu_stack, uint64_t gnu_stack_flags,
1597 const Object* obj)
35cdfc9a
ILT
1598{
1599 if (!seen_gnu_stack)
83e17bd5
CC
1600 {
1601 this->input_without_gnu_stack_note_ = true;
1602 if (parameters->options().warn_execstack()
1603 && parameters->target().is_default_stack_executable())
1604 gold_warning(_("%s: missing .note.GNU-stack section"
1605 " implies executable stack"),
1606 obj->name().c_str());
1607 }
35cdfc9a
ILT
1608 else
1609 {
1610 this->input_with_gnu_stack_note_ = true;
1611 if ((gnu_stack_flags & elfcpp::SHF_EXECINSTR) != 0)
83e17bd5
CC
1612 {
1613 this->input_requires_executable_stack_ = true;
1614 if (parameters->options().warn_execstack()
1615 || parameters->options().is_stack_executable())
1616 gold_warning(_("%s: requires executable stack"),
1617 obj->name().c_str());
1618 }
35cdfc9a
ILT
1619 }
1620}
1621
9c547ec3
ILT
1622// Create automatic note sections.
1623
1624void
1625Layout::create_notes()
1626{
1627 this->create_gold_note();
1628 this->create_executable_stack_info();
1629 this->create_build_id();
1630}
1631
a3ad94ed
ILT
1632// Create the dynamic sections which are needed before we read the
1633// relocs.
1634
1635void
9b07f471 1636Layout::create_initial_dynamic_sections(Symbol_table* symtab)
a3ad94ed 1637{
436ca963 1638 if (parameters->doing_static_link())
a3ad94ed
ILT
1639 return;
1640
3802b2dd
ILT
1641 this->dynamic_section_ = this->choose_output_section(NULL, ".dynamic",
1642 elfcpp::SHT_DYNAMIC,
1643 (elfcpp::SHF_ALLOC
1644 | elfcpp::SHF_WRITE),
22f0da72
ILT
1645 false, ORDER_RELRO,
1646 true);
a3ad94ed 1647
f0ba79e2
ILT
1648 this->dynamic_symbol_ =
1649 symtab->define_in_output_data("_DYNAMIC", NULL, Symbol_table::PREDEFINED,
1650 this->dynamic_section_, 0, 0,
1651 elfcpp::STT_OBJECT, elfcpp::STB_LOCAL,
1652 elfcpp::STV_HIDDEN, 0, false, false);
16649710 1653
9025d29d 1654 this->dynamic_data_ = new Output_data_dynamic(&this->dynpool_);
16649710
ILT
1655
1656 this->dynamic_section_->add_output_section_data(this->dynamic_data_);
a3ad94ed
ILT
1657}
1658
bfd58944
ILT
1659// For each output section whose name can be represented as C symbol,
1660// define __start and __stop symbols for the section. This is a GNU
1661// extension.
1662
1663void
9b07f471 1664Layout::define_section_symbols(Symbol_table* symtab)
bfd58944
ILT
1665{
1666 for (Section_list::const_iterator p = this->section_list_.begin();
1667 p != this->section_list_.end();
1668 ++p)
1669 {
1670 const char* const name = (*p)->name();
f1ec9ded 1671 if (is_cident(name))
bfd58944
ILT
1672 {
1673 const std::string name_string(name);
f1ec9ded
ST
1674 const std::string start_name(cident_section_start_prefix
1675 + name_string);
1676 const std::string stop_name(cident_section_stop_prefix
1677 + name_string);
bfd58944 1678
9b07f471 1679 symtab->define_in_output_data(start_name.c_str(),
bfd58944 1680 NULL, // version
99fff23b 1681 Symbol_table::PREDEFINED,
bfd58944
ILT
1682 *p,
1683 0, // value
1684 0, // symsize
1685 elfcpp::STT_NOTYPE,
1686 elfcpp::STB_GLOBAL,
1687 elfcpp::STV_DEFAULT,
1688 0, // nonvis
1689 false, // offset_is_from_end
a445fddf 1690 true); // only_if_ref
bfd58944 1691
9b07f471 1692 symtab->define_in_output_data(stop_name.c_str(),
bfd58944 1693 NULL, // version
99fff23b 1694 Symbol_table::PREDEFINED,
bfd58944
ILT
1695 *p,
1696 0, // value
1697 0, // symsize
1698 elfcpp::STT_NOTYPE,
1699 elfcpp::STB_GLOBAL,
1700 elfcpp::STV_DEFAULT,
1701 0, // nonvis
1702 true, // offset_is_from_end
a445fddf 1703 true); // only_if_ref
bfd58944
ILT
1704 }
1705 }
1706}
1707
755ab8af
ILT
1708// Define symbols for group signatures.
1709
1710void
1711Layout::define_group_signatures(Symbol_table* symtab)
1712{
1713 for (Group_signatures::iterator p = this->group_signatures_.begin();
1714 p != this->group_signatures_.end();
1715 ++p)
1716 {
1717 Symbol* sym = symtab->lookup(p->signature, NULL);
1718 if (sym != NULL)
1719 p->section->set_info_symndx(sym);
1720 else
1721 {
1722 // Force the name of the group section to the group
1723 // signature, and use the group's section symbol as the
1724 // signature symbol.
1725 if (strcmp(p->section->name(), p->signature) != 0)
1726 {
1727 const char* name = this->namepool_.add(p->signature,
1728 true, NULL);
1729 p->section->set_name(name);
1730 }
1731 p->section->set_needs_symtab_index();
1732 p->section->set_info_section_symndx(p->section);
1733 }
1734 }
1735
1736 this->group_signatures_.clear();
1737}
1738
75f65a3e
ILT
1739// Find the first read-only PT_LOAD segment, creating one if
1740// necessary.
54dc6425 1741
75f65a3e
ILT
1742Output_segment*
1743Layout::find_first_load_seg()
54dc6425 1744{
0f72bf6f 1745 Output_segment* best = NULL;
75f65a3e
ILT
1746 for (Segment_list::const_iterator p = this->segment_list_.begin();
1747 p != this->segment_list_.end();
1748 ++p)
1749 {
1750 if ((*p)->type() == elfcpp::PT_LOAD
1751 && ((*p)->flags() & elfcpp::PF_R) != 0
af6156ef
ILT
1752 && (parameters->options().omagic()
1753 || ((*p)->flags() & elfcpp::PF_W) == 0))
0f72bf6f
RÁE
1754 {
1755 if (best == NULL || this->segment_precedes(*p, best))
1756 best = *p;
1757 }
75f65a3e 1758 }
0f72bf6f
RÁE
1759 if (best != NULL)
1760 return best;
75f65a3e 1761
1c4f3631
ILT
1762 gold_assert(!this->script_options_->saw_phdrs_clause());
1763
3802b2dd
ILT
1764 Output_segment* load_seg = this->make_output_segment(elfcpp::PT_LOAD,
1765 elfcpp::PF_R);
75f65a3e 1766 return load_seg;
54dc6425
ILT
1767}
1768
20e6d0d6
DK
1769// Save states of all current output segments. Store saved states
1770// in SEGMENT_STATES.
1771
1772void
1773Layout::save_segments(Segment_states* segment_states)
1774{
1775 for (Segment_list::const_iterator p = this->segment_list_.begin();
1776 p != this->segment_list_.end();
1777 ++p)
1778 {
1779 Output_segment* segment = *p;
1780 // Shallow copy.
1781 Output_segment* copy = new Output_segment(*segment);
1782 (*segment_states)[segment] = copy;
1783 }
1784}
1785
1786// Restore states of output segments and delete any segment not found in
1787// SEGMENT_STATES.
1788
1789void
1790Layout::restore_segments(const Segment_states* segment_states)
1791{
1792 // Go through the segment list and remove any segment added in the
1793 // relaxation loop.
1794 this->tls_segment_ = NULL;
1795 this->relro_segment_ = NULL;
1796 Segment_list::iterator list_iter = this->segment_list_.begin();
1797 while (list_iter != this->segment_list_.end())
1798 {
1799 Output_segment* segment = *list_iter;
1800 Segment_states::const_iterator states_iter =
1801 segment_states->find(segment);
1802 if (states_iter != segment_states->end())
1803 {
1804 const Output_segment* copy = states_iter->second;
1805 // Shallow copy to restore states.
1806 *segment = *copy;
1807
1808 // Also fix up TLS and RELRO segment pointers as appropriate.
1809 if (segment->type() == elfcpp::PT_TLS)
1810 this->tls_segment_ = segment;
1811 else if (segment->type() == elfcpp::PT_GNU_RELRO)
1812 this->relro_segment_ = segment;
1813
1814 ++list_iter;
1815 }
1816 else
1817 {
1818 list_iter = this->segment_list_.erase(list_iter);
1819 // This is a segment created during section layout. It should be
1820 // safe to remove it since we should have removed all pointers to it.
1821 delete segment;
1822 }
1823 }
1824}
1825
1826// Clean up after relaxation so that sections can be laid out again.
1827
1828void
1829Layout::clean_up_after_relaxation()
1830{
1831 // Restore the segments to point state just prior to the relaxation loop.
1832 Script_sections* script_section = this->script_options_->script_sections();
1833 script_section->release_segments();
1834 this->restore_segments(this->segment_states_);
1835
1836 // Reset section addresses and file offsets
1837 for (Section_list::iterator p = this->section_list_.begin();
1838 p != this->section_list_.end();
1839 ++p)
1840 {
20e6d0d6 1841 (*p)->restore_states();
8923b24c
DK
1842
1843 // If an input section changes size because of relaxation,
1844 // we need to adjust the section offsets of all input sections.
1845 // after such a section.
1846 if ((*p)->section_offsets_need_adjustment())
1847 (*p)->adjust_section_offsets();
1848
1849 (*p)->reset_address_and_file_offset();
20e6d0d6
DK
1850 }
1851
1852 // Reset special output object address and file offsets.
1853 for (Data_list::iterator p = this->special_output_list_.begin();
1854 p != this->special_output_list_.end();
1855 ++p)
1856 (*p)->reset_address_and_file_offset();
1857
1858 // A linker script may have created some output section data objects.
1859 // They are useless now.
1860 for (Output_section_data_list::const_iterator p =
1861 this->script_output_section_data_list_.begin();
1862 p != this->script_output_section_data_list_.end();
1863 ++p)
1864 delete *p;
1865 this->script_output_section_data_list_.clear();
1866}
1867
1868// Prepare for relaxation.
1869
1870void
1871Layout::prepare_for_relaxation()
1872{
1873 // Create an relaxation debug check if in debugging mode.
1874 if (is_debugging_enabled(DEBUG_RELAXATION))
1875 this->relaxation_debug_check_ = new Relaxation_debug_check();
1876
1877 // Save segment states.
1878 this->segment_states_ = new Segment_states();
1879 this->save_segments(this->segment_states_);
1880
1881 for(Section_list::const_iterator p = this->section_list_.begin();
1882 p != this->section_list_.end();
1883 ++p)
1884 (*p)->save_states();
1885
1886 if (is_debugging_enabled(DEBUG_RELAXATION))
1887 this->relaxation_debug_check_->check_output_data_for_reset_values(
1888 this->section_list_, this->special_output_list_);
1889
1890 // Also enable recording of output section data from scripts.
1891 this->record_output_section_data_from_script_ = true;
1892}
1893
1894// Relaxation loop body: If target has no relaxation, this runs only once
1895// Otherwise, the target relaxation hook is called at the end of
1896// each iteration. If the hook returns true, it means re-layout of
1897// section is required.
1898//
1899// The number of segments created by a linking script without a PHDRS
1900// clause may be affected by section sizes and alignments. There is
1901// a remote chance that relaxation causes different number of PT_LOAD
1902// segments are created and sections are attached to different segments.
1903// Therefore, we always throw away all segments created during section
1904// layout. In order to be able to restart the section layout, we keep
1905// a copy of the segment list right before the relaxation loop and use
1906// that to restore the segments.
1907//
1908// PASS is the current relaxation pass number.
1909// SYMTAB is a symbol table.
1910// PLOAD_SEG is the address of a pointer for the load segment.
1911// PHDR_SEG is a pointer to the PHDR segment.
1912// SEGMENT_HEADERS points to the output segment header.
1913// FILE_HEADER points to the output file header.
1914// PSHNDX is the address to store the output section index.
1915
1916off_t inline
1917Layout::relaxation_loop_body(
1918 int pass,
1919 Target* target,
1920 Symbol_table* symtab,
1921 Output_segment** pload_seg,
1922 Output_segment* phdr_seg,
1923 Output_segment_headers* segment_headers,
1924 Output_file_header* file_header,
1925 unsigned int* pshndx)
1926{
1927 // If this is not the first iteration, we need to clean up after
1928 // relaxation so that we can lay out the sections again.
1929 if (pass != 0)
1930 this->clean_up_after_relaxation();
1931
1932 // If there is a SECTIONS clause, put all the input sections into
1933 // the required order.
1934 Output_segment* load_seg;
1935 if (this->script_options_->saw_sections_clause())
1936 load_seg = this->set_section_addresses_from_script(symtab);
1937 else if (parameters->options().relocatable())
1938 load_seg = NULL;
1939 else
1940 load_seg = this->find_first_load_seg();
1941
1942 if (parameters->options().oformat_enum()
1943 != General_options::OBJECT_FORMAT_ELF)
1944 load_seg = NULL;
1945
403a15dd
ILT
1946 // If the user set the address of the text segment, that may not be
1947 // compatible with putting the segment headers and file headers into
1948 // that segment.
1949 if (parameters->options().user_set_Ttext())
1950 load_seg = NULL;
1951
68b6574b
ILT
1952 gold_assert(phdr_seg == NULL
1953 || load_seg != NULL
1954 || this->script_options_->saw_sections_clause());
20e6d0d6 1955
a192ba05 1956 // If the address of the load segment we found has been set by
1e3811b0
ILT
1957 // --section-start rather than by a script, then adjust the VMA and
1958 // LMA downward if possible to include the file and section headers.
1959 uint64_t header_gap = 0;
a192ba05
ILT
1960 if (load_seg != NULL
1961 && load_seg->are_addresses_set()
1e3811b0
ILT
1962 && !this->script_options_->saw_sections_clause()
1963 && !parameters->options().relocatable())
1964 {
1965 file_header->finalize_data_size();
1966 segment_headers->finalize_data_size();
1967 size_t sizeof_headers = (file_header->data_size()
1968 + segment_headers->data_size());
1969 const uint64_t abi_pagesize = target->abi_pagesize();
1970 uint64_t hdr_paddr = load_seg->paddr() - sizeof_headers;
1971 hdr_paddr &= ~(abi_pagesize - 1);
1972 uint64_t subtract = load_seg->paddr() - hdr_paddr;
1973 if (load_seg->paddr() < subtract || load_seg->vaddr() < subtract)
1974 load_seg = NULL;
1975 else
1976 {
1977 load_seg->set_addresses(load_seg->vaddr() - subtract,
1978 load_seg->paddr() - subtract);
1979 header_gap = subtract - sizeof_headers;
1980 }
1981 }
a192ba05 1982
20e6d0d6
DK
1983 // Lay out the segment headers.
1984 if (!parameters->options().relocatable())
1985 {
1986 gold_assert(segment_headers != NULL);
1e3811b0
ILT
1987 if (header_gap != 0 && load_seg != NULL)
1988 {
1989 Output_data_zero_fill* z = new Output_data_zero_fill(header_gap, 1);
1990 load_seg->add_initial_output_data(z);
1991 }
20e6d0d6
DK
1992 if (load_seg != NULL)
1993 load_seg->add_initial_output_data(segment_headers);
1994 if (phdr_seg != NULL)
1995 phdr_seg->add_initial_output_data(segment_headers);
1996 }
1997
1998 // Lay out the file header.
1999 if (load_seg != NULL)
2000 load_seg->add_initial_output_data(file_header);
2001
2002 if (this->script_options_->saw_phdrs_clause()
2003 && !parameters->options().relocatable())
2004 {
2005 // Support use of FILEHDRS and PHDRS attachments in a PHDRS
2006 // clause in a linker script.
2007 Script_sections* ss = this->script_options_->script_sections();
2008 ss->put_headers_in_phdrs(file_header, segment_headers);
2009 }
2010
2011 // We set the output section indexes in set_segment_offsets and
2012 // set_section_indexes.
2013 *pshndx = 1;
2014
2015 // Set the file offsets of all the segments, and all the sections
2016 // they contain.
2017 off_t off;
2018 if (!parameters->options().relocatable())
2019 off = this->set_segment_offsets(target, load_seg, pshndx);
2020 else
2021 off = this->set_relocatable_section_offsets(file_header, pshndx);
2022
2023 // Verify that the dummy relaxation does not change anything.
2024 if (is_debugging_enabled(DEBUG_RELAXATION))
2025 {
2026 if (pass == 0)
2027 this->relaxation_debug_check_->read_sections(this->section_list_);
2028 else
2029 this->relaxation_debug_check_->verify_sections(this->section_list_);
2030 }
2031
2032 *pload_seg = load_seg;
2033 return off;
2034}
2035
6e9ba2ca
ST
2036// Search the list of patterns and find the postion of the given section
2037// name in the output section. If the section name matches a glob
2038// pattern and a non-glob name, then the non-glob position takes
2039// precedence. Return 0 if no match is found.
2040
2041unsigned int
2042Layout::find_section_order_index(const std::string& section_name)
2043{
2044 Unordered_map<std::string, unsigned int>::iterator map_it;
2045 map_it = this->input_section_position_.find(section_name);
2046 if (map_it != this->input_section_position_.end())
2047 return map_it->second;
2048
2049 // Absolute match failed. Linear search the glob patterns.
2050 std::vector<std::string>::iterator it;
2051 for (it = this->input_section_glob_.begin();
2052 it != this->input_section_glob_.end();
2053 ++it)
2054 {
2055 if (fnmatch((*it).c_str(), section_name.c_str(), FNM_NOESCAPE) == 0)
2056 {
2057 map_it = this->input_section_position_.find(*it);
2058 gold_assert(map_it != this->input_section_position_.end());
2059 return map_it->second;
2060 }
2061 }
2062 return 0;
2063}
2064
2065// Read the sequence of input sections from the file specified with
2066// --section-ordering-file.
2067
2068void
2069Layout::read_layout_from_file()
2070{
2071 const char* filename = parameters->options().section_ordering_file();
2072 std::ifstream in;
2073 std::string line;
2074
2075 in.open(filename);
2076 if (!in)
2077 gold_fatal(_("unable to open --section-ordering-file file %s: %s"),
2078 filename, strerror(errno));
2079
2080 std::getline(in, line); // this chops off the trailing \n, if any
2081 unsigned int position = 1;
2082
2083 while (in)
2084 {
2085 if (!line.empty() && line[line.length() - 1] == '\r') // Windows
2086 line.resize(line.length() - 1);
2087 // Ignore comments, beginning with '#'
2088 if (line[0] == '#')
2089 {
2090 std::getline(in, line);
2091 continue;
2092 }
2093 this->input_section_position_[line] = position;
2094 // Store all glob patterns in a vector.
2095 if (is_wildcard_string(line.c_str()))
2096 this->input_section_glob_.push_back(line);
2097 position++;
2098 std::getline(in, line);
2099 }
2100}
2101
54dc6425
ILT
2102// Finalize the layout. When this is called, we have created all the
2103// output sections and all the output segments which are based on
2104// input sections. We have several things to do, and we have to do
2105// them in the right order, so that we get the right results correctly
2106// and efficiently.
2107
2108// 1) Finalize the list of output segments and create the segment
2109// table header.
2110
2111// 2) Finalize the dynamic symbol table and associated sections.
2112
2113// 3) Determine the final file offset of all the output segments.
2114
2115// 4) Determine the final file offset of all the SHF_ALLOC output
2116// sections.
2117
75f65a3e
ILT
2118// 5) Create the symbol table sections and the section name table
2119// section.
2120
2121// 6) Finalize the symbol table: set symbol values to their final
54dc6425
ILT
2122// value and make a final determination of which symbols are going
2123// into the output symbol table.
2124
54dc6425
ILT
2125// 7) Create the section table header.
2126
2127// 8) Determine the final file offset of all the output sections which
2128// are not SHF_ALLOC, including the section table header.
2129
2130// 9) Finalize the ELF file header.
2131
75f65a3e
ILT
2132// This function returns the size of the output file.
2133
2134off_t
17a1d0a9 2135Layout::finalize(const Input_objects* input_objects, Symbol_table* symtab,
8851ecca 2136 Target* target, const Task* task)
54dc6425 2137{
f59f41f3 2138 target->finalize_sections(this, input_objects, symtab);
5a6f7e2d 2139
17a1d0a9 2140 this->count_local_symbols(task, input_objects);
7bf1f802 2141
1518dc8f 2142 this->link_stabs_sections();
4f211c8b 2143
3802b2dd 2144 Output_segment* phdr_seg = NULL;
8851ecca 2145 if (!parameters->options().relocatable() && !parameters->doing_static_link())
54dc6425 2146 {
dbe717ef
ILT
2147 // There was a dynamic object in the link. We need to create
2148 // some information for the dynamic linker.
2149
3802b2dd
ILT
2150 // Create the PT_PHDR segment which will hold the program
2151 // headers.
1c4f3631
ILT
2152 if (!this->script_options_->saw_phdrs_clause())
2153 phdr_seg = this->make_output_segment(elfcpp::PT_PHDR, elfcpp::PF_R);
3802b2dd 2154
14b31740
ILT
2155 // Create the dynamic symbol table, including the hash table.
2156 Output_section* dynstr;
2157 std::vector<Symbol*> dynamic_symbols;
2158 unsigned int local_dynamic_count;
a5dc0706
ILT
2159 Versions versions(*this->script_options()->version_script_info(),
2160 &this->dynpool_);
9b07f471 2161 this->create_dynamic_symtab(input_objects, symtab, &dynstr,
14b31740
ILT
2162 &local_dynamic_count, &dynamic_symbols,
2163 &versions);
dbe717ef
ILT
2164
2165 // Create the .interp section to hold the name of the
2166 // interpreter, and put it in a PT_INTERP segment.
8851ecca 2167 if (!parameters->options().shared())
96f2030e 2168 this->create_interp(target);
a3ad94ed
ILT
2169
2170 // Finish the .dynamic section to hold the dynamic data, and put
2171 // it in a PT_DYNAMIC segment.
16649710 2172 this->finish_dynamic_section(input_objects, symtab);
14b31740
ILT
2173
2174 // We should have added everything we need to the dynamic string
2175 // table.
2176 this->dynpool_.set_string_offsets();
2177
2178 // Create the version sections. We can't do this until the
2179 // dynamic string table is complete.
46fe1623 2180 this->create_version_sections(&versions, symtab, local_dynamic_count,
14b31740 2181 dynamic_symbols, dynstr);
f0ba79e2
ILT
2182
2183 // Set the size of the _DYNAMIC symbol. We can't do this until
2184 // after we call create_version_sections.
2185 this->set_dynamic_symbol_size(symtab);
54dc6425 2186 }
3ce2c28e 2187
20e6d0d6
DK
2188 // Create segment headers.
2189 Output_segment_headers* segment_headers =
2190 (parameters->options().relocatable()
2191 ? NULL
2192 : new Output_segment_headers(this->segment_list_));
75f65a3e
ILT
2193
2194 // Lay out the file header.
20e6d0d6
DK
2195 Output_file_header* file_header
2196 = new Output_file_header(target, symtab, segment_headers,
2197 parameters->options().entry());
a445fddf 2198
61ba1cf9 2199 this->special_output_list_.push_back(file_header);
6a74a719
ILT
2200 if (segment_headers != NULL)
2201 this->special_output_list_.push_back(segment_headers);
75f65a3e 2202
20e6d0d6
DK
2203 // Find approriate places for orphan output sections if we are using
2204 // a linker script.
2205 if (this->script_options_->saw_sections_clause())
2206 this->place_orphan_sections_in_script();
2207
2208 Output_segment* load_seg;
2209 off_t off;
2210 unsigned int shndx;
2211 int pass = 0;
2212
2213 // Take a snapshot of the section layout as needed.
2214 if (target->may_relax())
2215 this->prepare_for_relaxation();
2216
2217 // Run the relaxation loop to lay out sections.
2218 do
1c4f3631 2219 {
20e6d0d6
DK
2220 off = this->relaxation_loop_body(pass, target, symtab, &load_seg,
2221 phdr_seg, segment_headers, file_header,
2222 &shndx);
2223 pass++;
1c4f3631 2224 }
c0a62865 2225 while (target->may_relax()
f625ae50 2226 && target->relax(pass, input_objects, symtab, this, task));
75f65a3e 2227
a9a60db6
ILT
2228 // Set the file offsets of all the non-data sections we've seen so
2229 // far which don't have to wait for the input sections. We need
2230 // this in order to finalize local symbols in non-allocated
2231 // sections.
2232 off = this->set_section_offsets(off, BEFORE_INPUT_SECTIONS_PASS);
2233
d491d34e
ILT
2234 // Set the section indexes of all unallocated sections seen so far,
2235 // in case any of them are somehow referenced by a symbol.
2236 shndx = this->set_section_indexes(shndx);
2237
75f65a3e 2238 // Create the symbol table sections.
d491d34e 2239 this->create_symtab_sections(input_objects, symtab, shndx, &off);
7bf1f802
ILT
2240 if (!parameters->doing_static_link())
2241 this->assign_local_dynsym_offsets(input_objects);
75f65a3e 2242
e5756efb
ILT
2243 // Process any symbol assignments from a linker script. This must
2244 // be called after the symbol table has been finalized.
2245 this->script_options_->finalize_symbols(symtab, this);
2246
09ec0418
CC
2247 // Create the incremental inputs sections.
2248 if (this->incremental_inputs_)
2249 {
2250 this->incremental_inputs_->finalize();
2251 this->create_incremental_info_sections(symtab);
2252 }
2253
75f65a3e
ILT
2254 // Create the .shstrtab section.
2255 Output_section* shstrtab_section = this->create_shstrtab();
2256
a9a60db6
ILT
2257 // Set the file offsets of the rest of the non-data sections which
2258 // don't have to wait for the input sections.
9a0910c3 2259 off = this->set_section_offsets(off, BEFORE_INPUT_SECTIONS_PASS);
86887060 2260
d491d34e
ILT
2261 // Now that all sections have been created, set the section indexes
2262 // for any sections which haven't been done yet.
86887060 2263 shndx = this->set_section_indexes(shndx);
ead1e424 2264
75f65a3e 2265 // Create the section table header.
d491d34e 2266 this->create_shdrs(shstrtab_section, &off);
75f65a3e 2267
17a1d0a9
ILT
2268 // If there are no sections which require postprocessing, we can
2269 // handle the section names now, and avoid a resize later.
2270 if (!this->any_postprocessing_sections_)
09ec0418
CC
2271 {
2272 off = this->set_section_offsets(off,
2273 POSTPROCESSING_SECTIONS_PASS);
2274 off =
2275 this->set_section_offsets(off,
17a1d0a9 2276 STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS);
09ec0418 2277 }
17a1d0a9 2278
27bc2bce 2279 file_header->set_section_info(this->section_headers_, shstrtab_section);
75f65a3e 2280
27bc2bce
ILT
2281 // Now we know exactly where everything goes in the output file
2282 // (except for non-allocated sections which require postprocessing).
a3ad94ed 2283 Output_data::layout_complete();
75f65a3e 2284
e44fcf3b
ILT
2285 this->output_file_size_ = off;
2286
75f65a3e
ILT
2287 return off;
2288}
2289
8ed814a9 2290// Create a note header following the format defined in the ELF ABI.
ec3f783e
ILT
2291// NAME is the name, NOTE_TYPE is the type, SECTION_NAME is the name
2292// of the section to create, DESCSZ is the size of the descriptor.
2293// ALLOCATE is true if the section should be allocated in memory.
2294// This returns the new note section. It sets *TRAILING_PADDING to
2295// the number of trailing zero bytes required.
4f211c8b 2296
8ed814a9 2297Output_section*
ef4ab7a8
PP
2298Layout::create_note(const char* name, int note_type,
2299 const char* section_name, size_t descsz,
8ed814a9 2300 bool allocate, size_t* trailing_padding)
4f211c8b 2301{
e2305dc0
ILT
2302 // Authorities all agree that the values in a .note field should
2303 // be aligned on 4-byte boundaries for 32-bit binaries. However,
2304 // they differ on what the alignment is for 64-bit binaries.
2305 // The GABI says unambiguously they take 8-byte alignment:
2306 // http://sco.com/developers/gabi/latest/ch5.pheader.html#note_section
2307 // Other documentation says alignment should always be 4 bytes:
2308 // http://www.netbsd.org/docs/kernel/elf-notes.html#note-format
2309 // GNU ld and GNU readelf both support the latter (at least as of
2310 // version 2.16.91), and glibc always generates the latter for
2311 // .note.ABI-tag (as of version 1.6), so that's the one we go with
2312 // here.
35cdfc9a 2313#ifdef GABI_FORMAT_FOR_DOTNOTE_SECTION // This is not defined by default.
8851ecca 2314 const int size = parameters->target().get_size();
e2305dc0
ILT
2315#else
2316 const int size = 32;
2317#endif
4f211c8b
ILT
2318
2319 // The contents of the .note section.
4f211c8b
ILT
2320 size_t namesz = strlen(name) + 1;
2321 size_t aligned_namesz = align_address(namesz, size / 8);
4f211c8b 2322 size_t aligned_descsz = align_address(descsz, size / 8);
4f211c8b 2323
8ed814a9 2324 size_t notehdrsz = 3 * (size / 8) + aligned_namesz;
4f211c8b 2325
8ed814a9
ILT
2326 unsigned char* buffer = new unsigned char[notehdrsz];
2327 memset(buffer, 0, notehdrsz);
4f211c8b 2328
8851ecca 2329 bool is_big_endian = parameters->target().is_big_endian();
4f211c8b
ILT
2330
2331 if (size == 32)
2332 {
2333 if (!is_big_endian)
2334 {
2335 elfcpp::Swap<32, false>::writeval(buffer, namesz);
2336 elfcpp::Swap<32, false>::writeval(buffer + 4, descsz);
2337 elfcpp::Swap<32, false>::writeval(buffer + 8, note_type);
2338 }
2339 else
2340 {
2341 elfcpp::Swap<32, true>::writeval(buffer, namesz);
2342 elfcpp::Swap<32, true>::writeval(buffer + 4, descsz);
2343 elfcpp::Swap<32, true>::writeval(buffer + 8, note_type);
2344 }
2345 }
2346 else if (size == 64)
2347 {
2348 if (!is_big_endian)
2349 {
2350 elfcpp::Swap<64, false>::writeval(buffer, namesz);
2351 elfcpp::Swap<64, false>::writeval(buffer + 8, descsz);
2352 elfcpp::Swap<64, false>::writeval(buffer + 16, note_type);
2353 }
2354 else
2355 {
2356 elfcpp::Swap<64, true>::writeval(buffer, namesz);
2357 elfcpp::Swap<64, true>::writeval(buffer + 8, descsz);
2358 elfcpp::Swap<64, true>::writeval(buffer + 16, note_type);
2359 }
2360 }
2361 else
2362 gold_unreachable();
2363
2364 memcpy(buffer + 3 * (size / 8), name, namesz);
4f211c8b 2365
8ed814a9 2366 elfcpp::Elf_Xword flags = 0;
22f0da72 2367 Output_section_order order = ORDER_INVALID;
8ed814a9 2368 if (allocate)
22f0da72
ILT
2369 {
2370 flags = elfcpp::SHF_ALLOC;
2371 order = ORDER_RO_NOTE;
2372 }
ec3f783e
ILT
2373 Output_section* os = this->choose_output_section(NULL, section_name,
2374 elfcpp::SHT_NOTE,
22f0da72 2375 flags, false, order, false);
9c547ec3
ILT
2376 if (os == NULL)
2377 return NULL;
2378
8ed814a9 2379 Output_section_data* posd = new Output_data_const_buffer(buffer, notehdrsz,
7d9e3d98
ILT
2380 size / 8,
2381 "** note header");
8ed814a9
ILT
2382 os->add_output_section_data(posd);
2383
2384 *trailing_padding = aligned_descsz - descsz;
2385
2386 return os;
2387}
2388
2389// For an executable or shared library, create a note to record the
2390// version of gold used to create the binary.
2391
2392void
2393Layout::create_gold_note()
2394{
cdc29364
CC
2395 if (parameters->options().relocatable()
2396 || parameters->incremental_update())
8ed814a9
ILT
2397 return;
2398
2399 std::string desc = std::string("gold ") + gold::get_version_string();
2400
2401 size_t trailing_padding;
ca09d69a 2402 Output_section* os = this->create_note("GNU", elfcpp::NT_GNU_GOLD_VERSION,
ef4ab7a8
PP
2403 ".note.gnu.gold-version", desc.size(),
2404 false, &trailing_padding);
9c547ec3
ILT
2405 if (os == NULL)
2406 return;
8ed814a9
ILT
2407
2408 Output_section_data* posd = new Output_data_const(desc, 4);
4f211c8b 2409 os->add_output_section_data(posd);
8ed814a9
ILT
2410
2411 if (trailing_padding > 0)
2412 {
7d9e3d98 2413 posd = new Output_data_zero_fill(trailing_padding, 0);
8ed814a9
ILT
2414 os->add_output_section_data(posd);
2415 }
4f211c8b
ILT
2416}
2417
35cdfc9a
ILT
2418// Record whether the stack should be executable. This can be set
2419// from the command line using the -z execstack or -z noexecstack
2420// options. Otherwise, if any input file has a .note.GNU-stack
2421// section with the SHF_EXECINSTR flag set, the stack should be
2422// executable. Otherwise, if at least one input file a
2423// .note.GNU-stack section, and some input file has no .note.GNU-stack
2424// section, we use the target default for whether the stack should be
2425// executable. Otherwise, we don't generate a stack note. When
2426// generating a object file, we create a .note.GNU-stack section with
2427// the appropriate marking. When generating an executable or shared
2428// library, we create a PT_GNU_STACK segment.
2429
2430void
9c547ec3 2431Layout::create_executable_stack_info()
35cdfc9a
ILT
2432{
2433 bool is_stack_executable;
e55bde5e
ILT
2434 if (parameters->options().is_execstack_set())
2435 is_stack_executable = parameters->options().is_stack_executable();
35cdfc9a
ILT
2436 else if (!this->input_with_gnu_stack_note_)
2437 return;
2438 else
2439 {
2440 if (this->input_requires_executable_stack_)
2441 is_stack_executable = true;
2442 else if (this->input_without_gnu_stack_note_)
9c547ec3
ILT
2443 is_stack_executable =
2444 parameters->target().is_default_stack_executable();
35cdfc9a
ILT
2445 else
2446 is_stack_executable = false;
2447 }
2448
8851ecca 2449 if (parameters->options().relocatable())
35cdfc9a
ILT
2450 {
2451 const char* name = this->namepool_.add(".note.GNU-stack", false, NULL);
2452 elfcpp::Elf_Xword flags = 0;
2453 if (is_stack_executable)
2454 flags |= elfcpp::SHF_EXECINSTR;
22f0da72
ILT
2455 this->make_output_section(name, elfcpp::SHT_PROGBITS, flags,
2456 ORDER_INVALID, false);
35cdfc9a
ILT
2457 }
2458 else
2459 {
1c4f3631
ILT
2460 if (this->script_options_->saw_phdrs_clause())
2461 return;
35cdfc9a
ILT
2462 int flags = elfcpp::PF_R | elfcpp::PF_W;
2463 if (is_stack_executable)
2464 flags |= elfcpp::PF_X;
3802b2dd 2465 this->make_output_segment(elfcpp::PT_GNU_STACK, flags);
35cdfc9a
ILT
2466 }
2467}
2468
8ed814a9
ILT
2469// If --build-id was used, set up the build ID note.
2470
2471void
2472Layout::create_build_id()
2473{
2474 if (!parameters->options().user_set_build_id())
2475 return;
2476
2477 const char* style = parameters->options().build_id();
2478 if (strcmp(style, "none") == 0)
2479 return;
2480
2481 // Set DESCSZ to the size of the note descriptor. When possible,
2482 // set DESC to the note descriptor contents.
2483 size_t descsz;
2484 std::string desc;
2485 if (strcmp(style, "md5") == 0)
2486 descsz = 128 / 8;
2487 else if (strcmp(style, "sha1") == 0)
2488 descsz = 160 / 8;
2489 else if (strcmp(style, "uuid") == 0)
2490 {
2491 const size_t uuidsz = 128 / 8;
2492
2493 char buffer[uuidsz];
2494 memset(buffer, 0, uuidsz);
2495
2a00e4fb 2496 int descriptor = open_descriptor(-1, "/dev/urandom", O_RDONLY);
8ed814a9
ILT
2497 if (descriptor < 0)
2498 gold_error(_("--build-id=uuid failed: could not open /dev/urandom: %s"),
2499 strerror(errno));
2500 else
2501 {
2502 ssize_t got = ::read(descriptor, buffer, uuidsz);
2a00e4fb 2503 release_descriptor(descriptor, true);
8ed814a9
ILT
2504 if (got < 0)
2505 gold_error(_("/dev/urandom: read failed: %s"), strerror(errno));
2506 else if (static_cast<size_t>(got) != uuidsz)
2507 gold_error(_("/dev/urandom: expected %zu bytes, got %zd bytes"),
2508 uuidsz, got);
2509 }
2510
2511 desc.assign(buffer, uuidsz);
2512 descsz = uuidsz;
2513 }
2514 else if (strncmp(style, "0x", 2) == 0)
2515 {
2516 hex_init();
2517 const char* p = style + 2;
2518 while (*p != '\0')
2519 {
2520 if (hex_p(p[0]) && hex_p(p[1]))
2521 {
2522 char c = (hex_value(p[0]) << 4) | hex_value(p[1]);
2523 desc += c;
2524 p += 2;
2525 }
2526 else if (*p == '-' || *p == ':')
2527 ++p;
2528 else
2529 gold_fatal(_("--build-id argument '%s' not a valid hex number"),
2530 style);
2531 }
2532 descsz = desc.size();
2533 }
2534 else
2535 gold_fatal(_("unrecognized --build-id argument '%s'"), style);
2536
2537 // Create the note.
2538 size_t trailing_padding;
2539 Output_section* os = this->create_note("GNU", elfcpp::NT_GNU_BUILD_ID,
ef4ab7a8
PP
2540 ".note.gnu.build-id", descsz, true,
2541 &trailing_padding);
9c547ec3
ILT
2542 if (os == NULL)
2543 return;
8ed814a9
ILT
2544
2545 if (!desc.empty())
2546 {
2547 // We know the value already, so we fill it in now.
2548 gold_assert(desc.size() == descsz);
2549
2550 Output_section_data* posd = new Output_data_const(desc, 4);
2551 os->add_output_section_data(posd);
2552
2553 if (trailing_padding != 0)
2554 {
7d9e3d98 2555 posd = new Output_data_zero_fill(trailing_padding, 0);
8ed814a9
ILT
2556 os->add_output_section_data(posd);
2557 }
2558 }
2559 else
2560 {
2561 // We need to compute a checksum after we have completed the
2562 // link.
2563 gold_assert(trailing_padding == 0);
7d9e3d98 2564 this->build_id_note_ = new Output_data_zero_fill(descsz, 4);
8ed814a9 2565 os->add_output_section_data(this->build_id_note_);
8ed814a9
ILT
2566 }
2567}
2568
1518dc8f
ILT
2569// If we have both .stabXX and .stabXXstr sections, then the sh_link
2570// field of the former should point to the latter. I'm not sure who
2571// started this, but the GNU linker does it, and some tools depend
2572// upon it.
2573
2574void
2575Layout::link_stabs_sections()
2576{
2577 if (!this->have_stabstr_section_)
2578 return;
2579
2580 for (Section_list::iterator p = this->section_list_.begin();
2581 p != this->section_list_.end();
2582 ++p)
2583 {
2584 if ((*p)->type() != elfcpp::SHT_STRTAB)
2585 continue;
2586
2587 const char* name = (*p)->name();
2588 if (strncmp(name, ".stab", 5) != 0)
2589 continue;
2590
2591 size_t len = strlen(name);
2592 if (strcmp(name + len - 3, "str") != 0)
2593 continue;
2594
2595 std::string stab_name(name, len - 3);
2596 Output_section* stab_sec;
2597 stab_sec = this->find_output_section(stab_name.c_str());
2598 if (stab_sec != NULL)
2599 stab_sec->set_link_section(*p);
2600 }
2601}
2602
09ec0418 2603// Create .gnu_incremental_inputs and related sections needed
3ce2c28e
ILT
2604// for the next run of incremental linking to check what has changed.
2605
2606void
09ec0418 2607Layout::create_incremental_info_sections(Symbol_table* symtab)
3ce2c28e 2608{
09ec0418
CC
2609 Incremental_inputs* incr = this->incremental_inputs_;
2610
2611 gold_assert(incr != NULL);
2612
2613 // Create the .gnu_incremental_inputs, _symtab, and _relocs input sections.
2614 incr->create_data_sections(symtab);
3ce2c28e
ILT
2615
2616 // Add the .gnu_incremental_inputs section.
ca09d69a 2617 const char* incremental_inputs_name =
3ce2c28e 2618 this->namepool_.add(".gnu_incremental_inputs", false, NULL);
09ec0418 2619 Output_section* incremental_inputs_os =
3ce2c28e 2620 this->make_output_section(incremental_inputs_name,
f5c870d2 2621 elfcpp::SHT_GNU_INCREMENTAL_INPUTS, 0,
22f0da72 2622 ORDER_INVALID, false);
09ec0418
CC
2623 incremental_inputs_os->add_output_section_data(incr->inputs_section());
2624
2625 // Add the .gnu_incremental_symtab section.
ca09d69a 2626 const char* incremental_symtab_name =
09ec0418
CC
2627 this->namepool_.add(".gnu_incremental_symtab", false, NULL);
2628 Output_section* incremental_symtab_os =
2629 this->make_output_section(incremental_symtab_name,
2630 elfcpp::SHT_GNU_INCREMENTAL_SYMTAB, 0,
2631 ORDER_INVALID, false);
2632 incremental_symtab_os->add_output_section_data(incr->symtab_section());
2633 incremental_symtab_os->set_entsize(4);
2634
2635 // Add the .gnu_incremental_relocs section.
ca09d69a 2636 const char* incremental_relocs_name =
09ec0418
CC
2637 this->namepool_.add(".gnu_incremental_relocs", false, NULL);
2638 Output_section* incremental_relocs_os =
2639 this->make_output_section(incremental_relocs_name,
2640 elfcpp::SHT_GNU_INCREMENTAL_RELOCS, 0,
2641 ORDER_INVALID, false);
2642 incremental_relocs_os->add_output_section_data(incr->relocs_section());
2643 incremental_relocs_os->set_entsize(incr->relocs_entsize());
2644
0e70b911 2645 // Add the .gnu_incremental_got_plt section.
ca09d69a 2646 const char* incremental_got_plt_name =
0e70b911
CC
2647 this->namepool_.add(".gnu_incremental_got_plt", false, NULL);
2648 Output_section* incremental_got_plt_os =
2649 this->make_output_section(incremental_got_plt_name,
2650 elfcpp::SHT_GNU_INCREMENTAL_GOT_PLT, 0,
2651 ORDER_INVALID, false);
2652 incremental_got_plt_os->add_output_section_data(incr->got_plt_section());
2653
3ce2c28e 2654 // Add the .gnu_incremental_strtab section.
ca09d69a 2655 const char* incremental_strtab_name =
3ce2c28e 2656 this->namepool_.add(".gnu_incremental_strtab", false, NULL);
09ec0418
CC
2657 Output_section* incremental_strtab_os = this->make_output_section(incremental_strtab_name,
2658 elfcpp::SHT_STRTAB, 0,
2659 ORDER_INVALID, false);
3ce2c28e 2660 Output_data_strtab* strtab_data =
09ec0418
CC
2661 new Output_data_strtab(incr->get_stringpool());
2662 incremental_strtab_os->add_output_section_data(strtab_data);
2663
2664 incremental_inputs_os->set_after_input_sections();
2665 incremental_symtab_os->set_after_input_sections();
2666 incremental_relocs_os->set_after_input_sections();
0e70b911 2667 incremental_got_plt_os->set_after_input_sections();
09ec0418
CC
2668
2669 incremental_inputs_os->set_link_section(incremental_strtab_os);
2670 incremental_symtab_os->set_link_section(incremental_inputs_os);
2671 incremental_relocs_os->set_link_section(incremental_inputs_os);
0e70b911 2672 incremental_got_plt_os->set_link_section(incremental_inputs_os);
3ce2c28e
ILT
2673}
2674
75f65a3e
ILT
2675// Return whether SEG1 should be before SEG2 in the output file. This
2676// is based entirely on the segment type and flags. When this is
2677// called the segment addresses has normally not yet been set.
2678
2679bool
2680Layout::segment_precedes(const Output_segment* seg1,
2681 const Output_segment* seg2)
2682{
2683 elfcpp::Elf_Word type1 = seg1->type();
2684 elfcpp::Elf_Word type2 = seg2->type();
2685
2686 // The single PT_PHDR segment is required to precede any loadable
2687 // segment. We simply make it always first.
2688 if (type1 == elfcpp::PT_PHDR)
2689 {
a3ad94ed 2690 gold_assert(type2 != elfcpp::PT_PHDR);
75f65a3e
ILT
2691 return true;
2692 }
2693 if (type2 == elfcpp::PT_PHDR)
2694 return false;
2695
2696 // The single PT_INTERP segment is required to precede any loadable
2697 // segment. We simply make it always second.
2698 if (type1 == elfcpp::PT_INTERP)
2699 {
a3ad94ed 2700 gold_assert(type2 != elfcpp::PT_INTERP);
75f65a3e
ILT
2701 return true;
2702 }
2703 if (type2 == elfcpp::PT_INTERP)
2704 return false;
2705
2706 // We then put PT_LOAD segments before any other segments.
2707 if (type1 == elfcpp::PT_LOAD && type2 != elfcpp::PT_LOAD)
2708 return true;
2709 if (type2 == elfcpp::PT_LOAD && type1 != elfcpp::PT_LOAD)
2710 return false;
2711
9f1d377b
ILT
2712 // We put the PT_TLS segment last except for the PT_GNU_RELRO
2713 // segment, because that is where the dynamic linker expects to find
2714 // it (this is just for efficiency; other positions would also work
2715 // correctly).
2716 if (type1 == elfcpp::PT_TLS
2717 && type2 != elfcpp::PT_TLS
2718 && type2 != elfcpp::PT_GNU_RELRO)
2719 return false;
2720 if (type2 == elfcpp::PT_TLS
2721 && type1 != elfcpp::PT_TLS
2722 && type1 != elfcpp::PT_GNU_RELRO)
2723 return true;
2724
2725 // We put the PT_GNU_RELRO segment last, because that is where the
2726 // dynamic linker expects to find it (as with PT_TLS, this is just
2727 // for efficiency).
2728 if (type1 == elfcpp::PT_GNU_RELRO && type2 != elfcpp::PT_GNU_RELRO)
92e059d8 2729 return false;
9f1d377b 2730 if (type2 == elfcpp::PT_GNU_RELRO && type1 != elfcpp::PT_GNU_RELRO)
92e059d8
ILT
2731 return true;
2732
75f65a3e
ILT
2733 const elfcpp::Elf_Word flags1 = seg1->flags();
2734 const elfcpp::Elf_Word flags2 = seg2->flags();
2735
2736 // The order of non-PT_LOAD segments is unimportant. We simply sort
2737 // by the numeric segment type and flags values. There should not
2738 // be more than one segment with the same type and flags.
2739 if (type1 != elfcpp::PT_LOAD)
2740 {
2741 if (type1 != type2)
2742 return type1 < type2;
a3ad94ed 2743 gold_assert(flags1 != flags2);
75f65a3e
ILT
2744 return flags1 < flags2;
2745 }
2746
a445fddf
ILT
2747 // If the addresses are set already, sort by load address.
2748 if (seg1->are_addresses_set())
2749 {
2750 if (!seg2->are_addresses_set())
2751 return true;
2752
2753 unsigned int section_count1 = seg1->output_section_count();
2754 unsigned int section_count2 = seg2->output_section_count();
2755 if (section_count1 == 0 && section_count2 > 0)
2756 return true;
2757 if (section_count1 > 0 && section_count2 == 0)
2758 return false;
2759
b8fa8750
NC
2760 uint64_t paddr1 = (seg1->are_addresses_set()
2761 ? seg1->paddr()
2762 : seg1->first_section_load_address());
2763 uint64_t paddr2 = (seg2->are_addresses_set()
2764 ? seg2->paddr()
2765 : seg2->first_section_load_address());
2766
a445fddf
ILT
2767 if (paddr1 != paddr2)
2768 return paddr1 < paddr2;
2769 }
2770 else if (seg2->are_addresses_set())
2771 return false;
2772
8a5e3e08
ILT
2773 // A segment which holds large data comes after a segment which does
2774 // not hold large data.
2775 if (seg1->is_large_data_segment())
2776 {
2777 if (!seg2->is_large_data_segment())
2778 return false;
2779 }
2780 else if (seg2->is_large_data_segment())
2781 return true;
2782
2783 // Otherwise, we sort PT_LOAD segments based on the flags. Readonly
2784 // segments come before writable segments. Then writable segments
2785 // with data come before writable segments without data. Then
2786 // executable segments come before non-executable segments. Then
2787 // the unlikely case of a non-readable segment comes before the
2788 // normal case of a readable segment. If there are multiple
2789 // segments with the same type and flags, we require that the
2790 // address be set, and we sort by virtual address and then physical
2791 // address.
75f65a3e
ILT
2792 if ((flags1 & elfcpp::PF_W) != (flags2 & elfcpp::PF_W))
2793 return (flags1 & elfcpp::PF_W) == 0;
756ac4a8
ILT
2794 if ((flags1 & elfcpp::PF_W) != 0
2795 && seg1->has_any_data_sections() != seg2->has_any_data_sections())
2796 return seg1->has_any_data_sections();
75f65a3e
ILT
2797 if ((flags1 & elfcpp::PF_X) != (flags2 & elfcpp::PF_X))
2798 return (flags1 & elfcpp::PF_X) != 0;
2799 if ((flags1 & elfcpp::PF_R) != (flags2 & elfcpp::PF_R))
2800 return (flags1 & elfcpp::PF_R) == 0;
2801
a445fddf
ILT
2802 // We shouldn't get here--we shouldn't create segments which we
2803 // can't distinguish.
2804 gold_unreachable();
75f65a3e
ILT
2805}
2806
8a5e3e08
ILT
2807// Increase OFF so that it is congruent to ADDR modulo ABI_PAGESIZE.
2808
2809static off_t
2810align_file_offset(off_t off, uint64_t addr, uint64_t abi_pagesize)
2811{
2812 uint64_t unsigned_off = off;
2813 uint64_t aligned_off = ((unsigned_off & ~(abi_pagesize - 1))
2814 | (addr & (abi_pagesize - 1)));
2815 if (aligned_off < unsigned_off)
2816 aligned_off += abi_pagesize;
2817 return aligned_off;
2818}
2819
ead1e424
ILT
2820// Set the file offsets of all the segments, and all the sections they
2821// contain. They have all been created. LOAD_SEG must be be laid out
2822// first. Return the offset of the data to follow.
75f65a3e
ILT
2823
2824off_t
ead1e424 2825Layout::set_segment_offsets(const Target* target, Output_segment* load_seg,
ca09d69a 2826 unsigned int* pshndx)
75f65a3e
ILT
2827{
2828 // Sort them into the final order.
54dc6425
ILT
2829 std::sort(this->segment_list_.begin(), this->segment_list_.end(),
2830 Layout::Compare_segments());
2831
75f65a3e
ILT
2832 // Find the PT_LOAD segments, and set their addresses and offsets
2833 // and their section's addresses and offsets.
0c5e9c22 2834 uint64_t addr;
e55bde5e
ILT
2835 if (parameters->options().user_set_Ttext())
2836 addr = parameters->options().Ttext();
374ad285 2837 else if (parameters->options().output_is_position_independent())
a445fddf 2838 addr = 0;
0c5e9c22
ILT
2839 else
2840 addr = target->default_text_segment_address();
75f65a3e 2841 off_t off = 0;
a445fddf
ILT
2842
2843 // If LOAD_SEG is NULL, then the file header and segment headers
2844 // will not be loadable. But they still need to be at offset 0 in
2845 // the file. Set their offsets now.
2846 if (load_seg == NULL)
2847 {
2848 for (Data_list::iterator p = this->special_output_list_.begin();
2849 p != this->special_output_list_.end();
2850 ++p)
2851 {
2852 off = align_address(off, (*p)->addralign());
2853 (*p)->set_address_and_file_offset(0, off);
2854 off += (*p)->data_size();
2855 }
2856 }
2857
1a2dff53
ILT
2858 unsigned int increase_relro = this->increase_relro_;
2859 if (this->script_options_->saw_sections_clause())
2860 increase_relro = 0;
2861
34810851
ILT
2862 const bool check_sections = parameters->options().check_sections();
2863 Output_segment* last_load_segment = NULL;
2864
75f65a3e
ILT
2865 for (Segment_list::iterator p = this->segment_list_.begin();
2866 p != this->segment_list_.end();
2867 ++p)
2868 {
2869 if ((*p)->type() == elfcpp::PT_LOAD)
2870 {
2871 if (load_seg != NULL && load_seg != *p)
a3ad94ed 2872 gold_unreachable();
75f65a3e
ILT
2873 load_seg = NULL;
2874
756ac4a8
ILT
2875 bool are_addresses_set = (*p)->are_addresses_set();
2876 if (are_addresses_set)
2877 {
2878 // When it comes to setting file offsets, we care about
2879 // the physical address.
2880 addr = (*p)->paddr();
2881 }
e55bde5e 2882 else if (parameters->options().user_set_Tdata()
756ac4a8 2883 && ((*p)->flags() & elfcpp::PF_W) != 0
e55bde5e 2884 && (!parameters->options().user_set_Tbss()
756ac4a8
ILT
2885 || (*p)->has_any_data_sections()))
2886 {
e55bde5e 2887 addr = parameters->options().Tdata();
756ac4a8
ILT
2888 are_addresses_set = true;
2889 }
e55bde5e 2890 else if (parameters->options().user_set_Tbss()
756ac4a8
ILT
2891 && ((*p)->flags() & elfcpp::PF_W) != 0
2892 && !(*p)->has_any_data_sections())
2893 {
e55bde5e 2894 addr = parameters->options().Tbss();
756ac4a8
ILT
2895 are_addresses_set = true;
2896 }
2897
75f65a3e
ILT
2898 uint64_t orig_addr = addr;
2899 uint64_t orig_off = off;
2900
a445fddf 2901 uint64_t aligned_addr = 0;
75f65a3e 2902 uint64_t abi_pagesize = target->abi_pagesize();
af6156ef 2903 uint64_t common_pagesize = target->common_pagesize();
0496d5e5 2904
af6156ef
ILT
2905 if (!parameters->options().nmagic()
2906 && !parameters->options().omagic())
2907 (*p)->set_minimum_p_align(common_pagesize);
0496d5e5 2908
8a5e3e08 2909 if (!are_addresses_set)
a445fddf 2910 {
a6577478
RÁE
2911 // Skip the address forward one page, maintaining the same
2912 // position within the page. This lets us store both segments
2913 // overlapping on a single page in the file, but the loader will
2914 // put them on different pages in memory. We will revisit this
2915 // decision once we know the size of the segment.
a445fddf
ILT
2916
2917 addr = align_address(addr, (*p)->maximum_alignment());
75f65a3e 2918 aligned_addr = addr;
a445fddf 2919
a6577478
RÁE
2920 if ((addr & (abi_pagesize - 1)) != 0)
2921 addr = addr + abi_pagesize;
a445fddf
ILT
2922
2923 off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
75f65a3e
ILT
2924 }
2925
8a5e3e08
ILT
2926 if (!parameters->options().nmagic()
2927 && !parameters->options().omagic())
2928 off = align_file_offset(off, addr, abi_pagesize);
661be1e2
ILT
2929 else if (load_seg == NULL)
2930 {
2931 // This is -N or -n with a section script which prevents
2932 // us from using a load segment. We need to ensure that
2933 // the file offset is aligned to the alignment of the
2934 // segment. This is because the linker script
2935 // implicitly assumed a zero offset. If we don't align
2936 // here, then the alignment of the sections in the
2937 // linker script may not match the alignment of the
2938 // sections in the set_section_addresses call below,
2939 // causing an error about dot moving backward.
2940 off = align_address(off, (*p)->maximum_alignment());
2941 }
8a5e3e08 2942
ead1e424 2943 unsigned int shndx_hold = *pshndx;
fc497986 2944 bool has_relro = false;
96a2b4e4 2945 uint64_t new_addr = (*p)->set_section_addresses(this, false, addr,
fd064a5b 2946 &increase_relro,
fc497986 2947 &has_relro,
96a2b4e4 2948 &off, pshndx);
75f65a3e
ILT
2949
2950 // Now that we know the size of this segment, we may be able
2951 // to save a page in memory, at the cost of wasting some
2952 // file space, by instead aligning to the start of a new
2953 // page. Here we use the real machine page size rather than
fc497986
CC
2954 // the ABI mandated page size. If the segment has been
2955 // aligned so that the relro data ends at a page boundary,
2956 // we do not try to realign it.
75f65a3e 2957
cdc29364
CC
2958 if (!are_addresses_set
2959 && !has_relro
2960 && aligned_addr != addr
2961 && !parameters->incremental_update())
75f65a3e 2962 {
75f65a3e
ILT
2963 uint64_t first_off = (common_pagesize
2964 - (aligned_addr
2965 & (common_pagesize - 1)));
2966 uint64_t last_off = new_addr & (common_pagesize - 1);
2967 if (first_off > 0
2968 && last_off > 0
2969 && ((aligned_addr & ~ (common_pagesize - 1))
2970 != (new_addr & ~ (common_pagesize - 1)))
2971 && first_off + last_off <= common_pagesize)
2972 {
ead1e424
ILT
2973 *pshndx = shndx_hold;
2974 addr = align_address(aligned_addr, common_pagesize);
a445fddf 2975 addr = align_address(addr, (*p)->maximum_alignment());
75f65a3e 2976 off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
8a5e3e08 2977 off = align_file_offset(off, addr, abi_pagesize);
3bb951e5
ILT
2978
2979 increase_relro = this->increase_relro_;
2980 if (this->script_options_->saw_sections_clause())
2981 increase_relro = 0;
2982 has_relro = false;
2983
96a2b4e4 2984 new_addr = (*p)->set_section_addresses(this, true, addr,
fd064a5b 2985 &increase_relro,
fc497986 2986 &has_relro,
96a2b4e4 2987 &off, pshndx);
75f65a3e
ILT
2988 }
2989 }
2990
2991 addr = new_addr;
2992
34810851
ILT
2993 // Implement --check-sections. We know that the segments
2994 // are sorted by LMA.
2995 if (check_sections && last_load_segment != NULL)
2996 {
2997 gold_assert(last_load_segment->paddr() <= (*p)->paddr());
2998 if (last_load_segment->paddr() + last_load_segment->memsz()
2999 > (*p)->paddr())
3000 {
3001 unsigned long long lb1 = last_load_segment->paddr();
3002 unsigned long long le1 = lb1 + last_load_segment->memsz();
3003 unsigned long long lb2 = (*p)->paddr();
3004 unsigned long long le2 = lb2 + (*p)->memsz();
3005 gold_error(_("load segment overlap [0x%llx -> 0x%llx] and "
3006 "[0x%llx -> 0x%llx]"),
3007 lb1, le1, lb2, le2);
3008 }
3009 }
3010 last_load_segment = *p;
75f65a3e
ILT
3011 }
3012 }
3013
3014 // Handle the non-PT_LOAD segments, setting their offsets from their
3015 // section's offsets.
3016 for (Segment_list::iterator p = this->segment_list_.begin();
3017 p != this->segment_list_.end();
3018 ++p)
3019 {
3020 if ((*p)->type() != elfcpp::PT_LOAD)
1a2dff53
ILT
3021 (*p)->set_offset((*p)->type() == elfcpp::PT_GNU_RELRO
3022 ? increase_relro
3023 : 0);
75f65a3e
ILT
3024 }
3025
7bf1f802
ILT
3026 // Set the TLS offsets for each section in the PT_TLS segment.
3027 if (this->tls_segment_ != NULL)
3028 this->tls_segment_->set_tls_offsets();
3029
75f65a3e
ILT
3030 return off;
3031}
3032
6a74a719
ILT
3033// Set the offsets of all the allocated sections when doing a
3034// relocatable link. This does the same jobs as set_segment_offsets,
3035// only for a relocatable link.
3036
3037off_t
3038Layout::set_relocatable_section_offsets(Output_data* file_header,
ca09d69a 3039 unsigned int* pshndx)
6a74a719
ILT
3040{
3041 off_t off = 0;
3042
3043 file_header->set_address_and_file_offset(0, 0);
3044 off += file_header->data_size();
3045
3046 for (Section_list::iterator p = this->section_list_.begin();
3047 p != this->section_list_.end();
3048 ++p)
3049 {
3050 // We skip unallocated sections here, except that group sections
3051 // have to come first.
3052 if (((*p)->flags() & elfcpp::SHF_ALLOC) == 0
3053 && (*p)->type() != elfcpp::SHT_GROUP)
3054 continue;
3055
3056 off = align_address(off, (*p)->addralign());
3057
3058 // The linker script might have set the address.
3059 if (!(*p)->is_address_valid())
3060 (*p)->set_address(0);
3061 (*p)->set_file_offset(off);
3062 (*p)->finalize_data_size();
3063 off += (*p)->data_size();
3064
3065 (*p)->set_out_shndx(*pshndx);
3066 ++*pshndx;
3067 }
3068
3069 return off;
3070}
3071
75f65a3e
ILT
3072// Set the file offset of all the sections not associated with a
3073// segment.
3074
3075off_t
9a0910c3 3076Layout::set_section_offsets(off_t off, Layout::Section_offset_pass pass)
75f65a3e 3077{
cdc29364
CC
3078 off_t startoff = off;
3079 off_t maxoff = off;
3080
a3ad94ed
ILT
3081 for (Section_list::iterator p = this->unattached_section_list_.begin();
3082 p != this->unattached_section_list_.end();
75f65a3e
ILT
3083 ++p)
3084 {
27bc2bce
ILT
3085 // The symtab section is handled in create_symtab_sections.
3086 if (*p == this->symtab_section_)
61ba1cf9 3087 continue;
27bc2bce 3088
a9a60db6
ILT
3089 // If we've already set the data size, don't set it again.
3090 if ((*p)->is_offset_valid() && (*p)->is_data_size_valid())
3091 continue;
3092
96803768
ILT
3093 if (pass == BEFORE_INPUT_SECTIONS_PASS
3094 && (*p)->requires_postprocessing())
17a1d0a9
ILT
3095 {
3096 (*p)->create_postprocessing_buffer();
3097 this->any_postprocessing_sections_ = true;
3098 }
96803768 3099
9a0910c3
ILT
3100 if (pass == BEFORE_INPUT_SECTIONS_PASS
3101 && (*p)->after_input_sections())
3102 continue;
17a1d0a9 3103 else if (pass == POSTPROCESSING_SECTIONS_PASS
9a0910c3
ILT
3104 && (!(*p)->after_input_sections()
3105 || (*p)->type() == elfcpp::SHT_STRTAB))
3106 continue;
17a1d0a9 3107 else if (pass == STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS
9a0910c3
ILT
3108 && (!(*p)->after_input_sections()
3109 || (*p)->type() != elfcpp::SHT_STRTAB))
3110 continue;
27bc2bce 3111
cdc29364
CC
3112 if (!parameters->incremental_update())
3113 {
3114 off = align_address(off, (*p)->addralign());
3115 (*p)->set_file_offset(off);
3116 (*p)->finalize_data_size();
3117 }
3118 else
3119 {
3120 // Incremental update: allocate file space from free list.
3121 (*p)->pre_finalize_data_size();
3122 off_t current_size = (*p)->current_data_size();
3123 off = this->allocate(current_size, (*p)->addralign(), startoff);
3124 if (off == -1)
3125 {
3126 if (is_debugging_enabled(DEBUG_INCREMENTAL))
3127 this->free_list_.dump();
3128 gold_assert((*p)->output_section() != NULL);
3129 gold_fatal(_("out of patch space for section %s; "
3130 "relink with --incremental-full"),
3131 (*p)->output_section()->name());
3132 }
3133 (*p)->set_file_offset(off);
3134 (*p)->finalize_data_size();
3135 if ((*p)->data_size() > current_size)
3136 {
3137 gold_assert((*p)->output_section() != NULL);
3138 gold_fatal(_("%s: section changed size; "
3139 "relink with --incremental-full"),
3140 (*p)->output_section()->name());
3141 }
3142 gold_debug(DEBUG_INCREMENTAL,
3143 "set_section_offsets: %08lx %08lx %s",
3144 static_cast<long>(off),
3145 static_cast<long>((*p)->data_size()),
3146 ((*p)->output_section() != NULL
3147 ? (*p)->output_section()->name() : "(special)"));
3148 }
3149
75f65a3e 3150 off += (*p)->data_size();
cdc29364
CC
3151 if (off > maxoff)
3152 maxoff = off;
96803768
ILT
3153
3154 // At this point the name must be set.
17a1d0a9 3155 if (pass != STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS)
96803768 3156 this->namepool_.add((*p)->name(), false, NULL);
75f65a3e 3157 }
cdc29364 3158 return maxoff;
75f65a3e
ILT
3159}
3160
86887060
ILT
3161// Set the section indexes of all the sections not associated with a
3162// segment.
3163
3164unsigned int
3165Layout::set_section_indexes(unsigned int shndx)
3166{
3167 for (Section_list::iterator p = this->unattached_section_list_.begin();
3168 p != this->unattached_section_list_.end();
3169 ++p)
3170 {
d491d34e
ILT
3171 if (!(*p)->has_out_shndx())
3172 {
3173 (*p)->set_out_shndx(shndx);
3174 ++shndx;
3175 }
86887060
ILT
3176 }
3177 return shndx;
3178}
3179
a445fddf
ILT
3180// Set the section addresses according to the linker script. This is
3181// only called when we see a SECTIONS clause. This returns the
3182// program segment which should hold the file header and segment
3183// headers, if any. It will return NULL if they should not be in a
3184// segment.
3185
3186Output_segment*
3187Layout::set_section_addresses_from_script(Symbol_table* symtab)
20e6d0d6
DK
3188{
3189 Script_sections* ss = this->script_options_->script_sections();
3190 gold_assert(ss->saw_sections_clause());
3191 return this->script_options_->set_section_addresses(symtab, this);
3192}
3193
3194// Place the orphan sections in the linker script.
3195
3196void
3197Layout::place_orphan_sections_in_script()
a445fddf
ILT
3198{
3199 Script_sections* ss = this->script_options_->script_sections();
3200 gold_assert(ss->saw_sections_clause());
3201
3202 // Place each orphaned output section in the script.
3203 for (Section_list::iterator p = this->section_list_.begin();
3204 p != this->section_list_.end();
3205 ++p)
3206 {
3207 if (!(*p)->found_in_sections_clause())
3208 ss->place_orphan(*p);
3209 }
a445fddf
ILT
3210}
3211
7bf1f802
ILT
3212// Count the local symbols in the regular symbol table and the dynamic
3213// symbol table, and build the respective string pools.
3214
3215void
17a1d0a9
ILT
3216Layout::count_local_symbols(const Task* task,
3217 const Input_objects* input_objects)
7bf1f802 3218{
6d013333
ILT
3219 // First, figure out an upper bound on the number of symbols we'll
3220 // be inserting into each pool. This helps us create the pools with
3221 // the right size, to avoid unnecessary hashtable resizing.
3222 unsigned int symbol_count = 0;
3223 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
3224 p != input_objects->relobj_end();
3225 ++p)
3226 symbol_count += (*p)->local_symbol_count();
3227
3228 // Go from "upper bound" to "estimate." We overcount for two
3229 // reasons: we double-count symbols that occur in more than one
3230 // object file, and we count symbols that are dropped from the
3231 // output. Add it all together and assume we overcount by 100%.
3232 symbol_count /= 2;
3233
3234 // We assume all symbols will go into both the sympool and dynpool.
3235 this->sympool_.reserve(symbol_count);
3236 this->dynpool_.reserve(symbol_count);
3237
7bf1f802
ILT
3238 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
3239 p != input_objects->relobj_end();
3240 ++p)
3241 {
17a1d0a9 3242 Task_lock_obj<Object> tlo(task, *p);
7bf1f802
ILT
3243 (*p)->count_local_symbols(&this->sympool_, &this->dynpool_);
3244 }
3245}
3246
b8e6aad9
ILT
3247// Create the symbol table sections. Here we also set the final
3248// values of the symbols. At this point all the loadable sections are
d491d34e 3249// fully laid out. SHNUM is the number of sections so far.
75f65a3e
ILT
3250
3251void
9025d29d 3252Layout::create_symtab_sections(const Input_objects* input_objects,
75f65a3e 3253 Symbol_table* symtab,
d491d34e 3254 unsigned int shnum,
16649710 3255 off_t* poff)
75f65a3e 3256{
61ba1cf9
ILT
3257 int symsize;
3258 unsigned int align;
8851ecca 3259 if (parameters->target().get_size() == 32)
61ba1cf9
ILT
3260 {
3261 symsize = elfcpp::Elf_sizes<32>::sym_size;
3262 align = 4;
3263 }
8851ecca 3264 else if (parameters->target().get_size() == 64)
61ba1cf9
ILT
3265 {
3266 symsize = elfcpp::Elf_sizes<64>::sym_size;
3267 align = 8;
3268 }
3269 else
a3ad94ed 3270 gold_unreachable();
61ba1cf9 3271
cdc29364
CC
3272 // Compute file offsets relative to the start of the symtab section.
3273 off_t off = 0;
61ba1cf9
ILT
3274
3275 // Save space for the dummy symbol at the start of the section. We
3276 // never bother to write this out--it will just be left as zero.
3277 off += symsize;
c06b7b0b 3278 unsigned int local_symbol_index = 1;
61ba1cf9 3279
a3ad94ed
ILT
3280 // Add STT_SECTION symbols for each Output section which needs one.
3281 for (Section_list::iterator p = this->section_list_.begin();
3282 p != this->section_list_.end();
3283 ++p)
3284 {
3285 if (!(*p)->needs_symtab_index())
3286 (*p)->set_symtab_index(-1U);
3287 else
3288 {
3289 (*p)->set_symtab_index(local_symbol_index);
3290 ++local_symbol_index;
3291 off += symsize;
3292 }
3293 }
3294
f6ce93d6
ILT
3295 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
3296 p != input_objects->relobj_end();
75f65a3e
ILT
3297 ++p)
3298 {
c06b7b0b 3299 unsigned int index = (*p)->finalize_local_symbols(local_symbol_index,
ef15dade 3300 off, symtab);
c06b7b0b
ILT
3301 off += (index - local_symbol_index) * symsize;
3302 local_symbol_index = index;
75f65a3e
ILT
3303 }
3304
c06b7b0b 3305 unsigned int local_symcount = local_symbol_index;
cdc29364 3306 gold_assert(static_cast<off_t>(local_symcount * symsize) == off);
61ba1cf9 3307
16649710
ILT
3308 off_t dynoff;
3309 size_t dyn_global_index;
3310 size_t dyncount;
3311 if (this->dynsym_section_ == NULL)
3312 {
3313 dynoff = 0;
3314 dyn_global_index = 0;
3315 dyncount = 0;
3316 }
3317 else
3318 {
3319 dyn_global_index = this->dynsym_section_->info();
3320 off_t locsize = dyn_global_index * this->dynsym_section_->entsize();
3321 dynoff = this->dynsym_section_->offset() + locsize;
3322 dyncount = (this->dynsym_section_->data_size() - locsize) / symsize;
f5c3f225 3323 gold_assert(static_cast<off_t>(dyncount * symsize)
16649710
ILT
3324 == this->dynsym_section_->data_size() - locsize);
3325 }
3326
cdc29364 3327 off_t global_off = off;
55a93433
ILT
3328 off = symtab->finalize(off, dynoff, dyn_global_index, dyncount,
3329 &this->sympool_, &local_symcount);
75f65a3e 3330
8851ecca 3331 if (!parameters->options().strip_all())
9e2dcb77
ILT
3332 {
3333 this->sympool_.set_string_offsets();
61ba1cf9 3334
cfd73a4e 3335 const char* symtab_name = this->namepool_.add(".symtab", false, NULL);
9e2dcb77
ILT
3336 Output_section* osymtab = this->make_output_section(symtab_name,
3337 elfcpp::SHT_SYMTAB,
22f0da72
ILT
3338 0, ORDER_INVALID,
3339 false);
9e2dcb77 3340 this->symtab_section_ = osymtab;
a3ad94ed 3341
cdc29364 3342 Output_section_data* pos = new Output_data_fixed_space(off, align,
7d9e3d98 3343 "** symtab");
9e2dcb77 3344 osymtab->add_output_section_data(pos);
61ba1cf9 3345
d491d34e
ILT
3346 // We generate a .symtab_shndx section if we have more than
3347 // SHN_LORESERVE sections. Technically it is possible that we
3348 // don't need one, because it is possible that there are no
3349 // symbols in any of sections with indexes larger than
3350 // SHN_LORESERVE. That is probably unusual, though, and it is
3351 // easier to always create one than to compute section indexes
3352 // twice (once here, once when writing out the symbols).
3353 if (shnum >= elfcpp::SHN_LORESERVE)
3354 {
3355 const char* symtab_xindex_name = this->namepool_.add(".symtab_shndx",
3356 false, NULL);
3357 Output_section* osymtab_xindex =
3358 this->make_output_section(symtab_xindex_name,
22f0da72
ILT
3359 elfcpp::SHT_SYMTAB_SHNDX, 0,
3360 ORDER_INVALID, false);
d491d34e 3361
cdc29364 3362 size_t symcount = off / symsize;
d491d34e
ILT
3363 this->symtab_xindex_ = new Output_symtab_xindex(symcount);
3364
3365 osymtab_xindex->add_output_section_data(this->symtab_xindex_);
3366
3367 osymtab_xindex->set_link_section(osymtab);
3368 osymtab_xindex->set_addralign(4);
3369 osymtab_xindex->set_entsize(4);
3370
3371 osymtab_xindex->set_after_input_sections();
3372
3373 // This tells the driver code to wait until the symbol table
3374 // has written out before writing out the postprocessing
3375 // sections, including the .symtab_shndx section.
3376 this->any_postprocessing_sections_ = true;
3377 }
3378
cfd73a4e 3379 const char* strtab_name = this->namepool_.add(".strtab", false, NULL);
9e2dcb77
ILT
3380 Output_section* ostrtab = this->make_output_section(strtab_name,
3381 elfcpp::SHT_STRTAB,
22f0da72
ILT
3382 0, ORDER_INVALID,
3383 false);
a3ad94ed 3384
9e2dcb77
ILT
3385 Output_section_data* pstr = new Output_data_strtab(&this->sympool_);
3386 ostrtab->add_output_section_data(pstr);
61ba1cf9 3387
cdc29364
CC
3388 off_t symtab_off;
3389 if (!parameters->incremental_update())
3390 symtab_off = align_address(*poff, align);
3391 else
3392 {
3393 symtab_off = this->allocate(off, align, *poff);
3394 if (off == -1)
3395 gold_fatal(_("out of patch space for symbol table; "
3396 "relink with --incremental-full"));
3397 gold_debug(DEBUG_INCREMENTAL,
3398 "create_symtab_sections: %08lx %08lx .symtab",
3399 static_cast<long>(symtab_off),
3400 static_cast<long>(off));
3401 }
3402
3403 symtab->set_file_offset(symtab_off + global_off);
3404 osymtab->set_file_offset(symtab_off);
27bc2bce 3405 osymtab->finalize_data_size();
9e2dcb77
ILT
3406 osymtab->set_link_section(ostrtab);
3407 osymtab->set_info(local_symcount);
3408 osymtab->set_entsize(symsize);
61ba1cf9 3409
cdc29364
CC
3410 if (symtab_off + off > *poff)
3411 *poff = symtab_off + off;
9e2dcb77 3412 }
75f65a3e
ILT
3413}
3414
3415// Create the .shstrtab section, which holds the names of the
3416// sections. At the time this is called, we have created all the
3417// output sections except .shstrtab itself.
3418
3419Output_section*
3420Layout::create_shstrtab()
3421{
3422 // FIXME: We don't need to create a .shstrtab section if we are
3423 // stripping everything.
3424
cfd73a4e 3425 const char* name = this->namepool_.add(".shstrtab", false, NULL);
75f65a3e 3426
f5c870d2 3427 Output_section* os = this->make_output_section(name, elfcpp::SHT_STRTAB, 0,
22f0da72 3428 ORDER_INVALID, false);
75f65a3e 3429
0e0d5469
ILT
3430 if (strcmp(parameters->options().compress_debug_sections(), "none") != 0)
3431 {
3432 // We can't write out this section until we've set all the
3433 // section names, and we don't set the names of compressed
3434 // output sections until relocations are complete. FIXME: With
3435 // the current names we use, this is unnecessary.
3436 os->set_after_input_sections();
3437 }
27bc2bce 3438
a3ad94ed
ILT
3439 Output_section_data* posd = new Output_data_strtab(&this->namepool_);
3440 os->add_output_section_data(posd);
75f65a3e
ILT
3441
3442 return os;
3443}
3444
3445// Create the section headers. SIZE is 32 or 64. OFF is the file
3446// offset.
3447
27bc2bce 3448void
d491d34e 3449Layout::create_shdrs(const Output_section* shstrtab_section, off_t* poff)
75f65a3e
ILT
3450{
3451 Output_section_headers* oshdrs;
9025d29d 3452 oshdrs = new Output_section_headers(this,
16649710 3453 &this->segment_list_,
6a74a719 3454 &this->section_list_,
16649710 3455 &this->unattached_section_list_,
d491d34e
ILT
3456 &this->namepool_,
3457 shstrtab_section);
cdc29364
CC
3458 off_t off;
3459 if (!parameters->incremental_update())
3460 off = align_address(*poff, oshdrs->addralign());
3461 else
3462 {
3463 oshdrs->pre_finalize_data_size();
3464 off = this->allocate(oshdrs->data_size(), oshdrs->addralign(), *poff);
3465 if (off == -1)
3466 gold_fatal(_("out of patch space for section header table; "
3467 "relink with --incremental-full"));
3468 gold_debug(DEBUG_INCREMENTAL,
3469 "create_shdrs: %08lx %08lx (section header table)",
3470 static_cast<long>(off),
3471 static_cast<long>(off + oshdrs->data_size()));
3472 }
27bc2bce 3473 oshdrs->set_address_and_file_offset(0, off);
61ba1cf9 3474 off += oshdrs->data_size();
cdc29364
CC
3475 if (off > *poff)
3476 *poff = off;
27bc2bce 3477 this->section_headers_ = oshdrs;
54dc6425
ILT
3478}
3479
d491d34e
ILT
3480// Count the allocated sections.
3481
3482size_t
3483Layout::allocated_output_section_count() const
3484{
3485 size_t section_count = 0;
3486 for (Segment_list::const_iterator p = this->segment_list_.begin();
3487 p != this->segment_list_.end();
3488 ++p)
3489 section_count += (*p)->output_section_count();
3490 return section_count;
3491}
3492
dbe717ef
ILT
3493// Create the dynamic symbol table.
3494
3495void
7bf1f802 3496Layout::create_dynamic_symtab(const Input_objects* input_objects,
9b07f471 3497 Symbol_table* symtab,
ca09d69a 3498 Output_section** pdynstr,
14b31740
ILT
3499 unsigned int* plocal_dynamic_count,
3500 std::vector<Symbol*>* pdynamic_symbols,
3501 Versions* pversions)
dbe717ef 3502{
a3ad94ed
ILT
3503 // Count all the symbols in the dynamic symbol table, and set the
3504 // dynamic symbol indexes.
dbe717ef 3505
a3ad94ed
ILT
3506 // Skip symbol 0, which is always all zeroes.
3507 unsigned int index = 1;
dbe717ef 3508
a3ad94ed
ILT
3509 // Add STT_SECTION symbols for each Output section which needs one.
3510 for (Section_list::iterator p = this->section_list_.begin();
3511 p != this->section_list_.end();
3512 ++p)
3513 {
3514 if (!(*p)->needs_dynsym_index())
3515 (*p)->set_dynsym_index(-1U);
3516 else
3517 {
3518 (*p)->set_dynsym_index(index);
3519 ++index;
3520 }
3521 }
3522
7bf1f802
ILT
3523 // Count the local symbols that need to go in the dynamic symbol table,
3524 // and set the dynamic symbol indexes.
3525 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
3526 p != input_objects->relobj_end();
3527 ++p)
3528 {
3529 unsigned int new_index = (*p)->set_local_dynsym_indexes(index);
3530 index = new_index;
3531 }
a3ad94ed
ILT
3532
3533 unsigned int local_symcount = index;
14b31740 3534 *plocal_dynamic_count = local_symcount;
a3ad94ed 3535
9b07f471 3536 index = symtab->set_dynsym_indexes(index, pdynamic_symbols,
35cdfc9a 3537 &this->dynpool_, pversions);
a3ad94ed
ILT
3538
3539 int symsize;
3540 unsigned int align;
8851ecca 3541 const int size = parameters->target().get_size();
a3ad94ed
ILT
3542 if (size == 32)
3543 {
3544 symsize = elfcpp::Elf_sizes<32>::sym_size;
3545 align = 4;
3546 }
3547 else if (size == 64)
3548 {
3549 symsize = elfcpp::Elf_sizes<64>::sym_size;
3550 align = 8;
3551 }
3552 else
3553 gold_unreachable();
3554
14b31740
ILT
3555 // Create the dynamic symbol table section.
3556
3802b2dd
ILT
3557 Output_section* dynsym = this->choose_output_section(NULL, ".dynsym",
3558 elfcpp::SHT_DYNSYM,
3559 elfcpp::SHF_ALLOC,
22f0da72
ILT
3560 false,
3561 ORDER_DYNAMIC_LINKER,
3562 false);
a3ad94ed 3563
27bc2bce 3564 Output_section_data* odata = new Output_data_fixed_space(index * symsize,
7d9e3d98
ILT
3565 align,
3566 "** dynsym");
a3ad94ed
ILT
3567 dynsym->add_output_section_data(odata);
3568
3569 dynsym->set_info(local_symcount);
3570 dynsym->set_entsize(symsize);
3571 dynsym->set_addralign(align);
3572
3573 this->dynsym_section_ = dynsym;
3574
16649710 3575 Output_data_dynamic* const odyn = this->dynamic_data_;
a3ad94ed
ILT
3576 odyn->add_section_address(elfcpp::DT_SYMTAB, dynsym);
3577 odyn->add_constant(elfcpp::DT_SYMENT, symsize);
3578
d491d34e
ILT
3579 // If there are more than SHN_LORESERVE allocated sections, we
3580 // create a .dynsym_shndx section. It is possible that we don't
3581 // need one, because it is possible that there are no dynamic
3582 // symbols in any of the sections with indexes larger than
3583 // SHN_LORESERVE. This is probably unusual, though, and at this
3584 // time we don't know the actual section indexes so it is
3585 // inconvenient to check.
3586 if (this->allocated_output_section_count() >= elfcpp::SHN_LORESERVE)
3587 {
2ea97941 3588 Output_section* dynsym_xindex =
d491d34e
ILT
3589 this->choose_output_section(NULL, ".dynsym_shndx",
3590 elfcpp::SHT_SYMTAB_SHNDX,
3591 elfcpp::SHF_ALLOC,
22f0da72 3592 false, ORDER_DYNAMIC_LINKER, false);
d491d34e
ILT
3593
3594 this->dynsym_xindex_ = new Output_symtab_xindex(index);
3595
2ea97941 3596 dynsym_xindex->add_output_section_data(this->dynsym_xindex_);
d491d34e 3597
2ea97941
ILT
3598 dynsym_xindex->set_link_section(dynsym);
3599 dynsym_xindex->set_addralign(4);
3600 dynsym_xindex->set_entsize(4);
d491d34e 3601
2ea97941 3602 dynsym_xindex->set_after_input_sections();
d491d34e
ILT
3603
3604 // This tells the driver code to wait until the symbol table has
3605 // written out before writing out the postprocessing sections,
3606 // including the .dynsym_shndx section.
3607 this->any_postprocessing_sections_ = true;
3608 }
3609
14b31740
ILT
3610 // Create the dynamic string table section.
3611
3802b2dd
ILT
3612 Output_section* dynstr = this->choose_output_section(NULL, ".dynstr",
3613 elfcpp::SHT_STRTAB,
3614 elfcpp::SHF_ALLOC,
22f0da72
ILT
3615 false,
3616 ORDER_DYNAMIC_LINKER,
3617 false);
a3ad94ed
ILT
3618
3619 Output_section_data* strdata = new Output_data_strtab(&this->dynpool_);
3620 dynstr->add_output_section_data(strdata);
3621
16649710
ILT
3622 dynsym->set_link_section(dynstr);
3623 this->dynamic_section_->set_link_section(dynstr);
3624
a3ad94ed
ILT
3625 odyn->add_section_address(elfcpp::DT_STRTAB, dynstr);
3626 odyn->add_section_size(elfcpp::DT_STRSZ, dynstr);
3627
14b31740
ILT
3628 *pdynstr = dynstr;
3629
3630 // Create the hash tables.
3631
13670ee6
ILT
3632 if (strcmp(parameters->options().hash_style(), "sysv") == 0
3633 || strcmp(parameters->options().hash_style(), "both") == 0)
3634 {
3635 unsigned char* phash;
3636 unsigned int hashlen;
3637 Dynobj::create_elf_hash_table(*pdynamic_symbols, local_symcount,
3638 &phash, &hashlen);
3639
22f0da72
ILT
3640 Output_section* hashsec =
3641 this->choose_output_section(NULL, ".hash", elfcpp::SHT_HASH,
3642 elfcpp::SHF_ALLOC, false,
3643 ORDER_DYNAMIC_LINKER, false);
13670ee6
ILT
3644
3645 Output_section_data* hashdata = new Output_data_const_buffer(phash,
3646 hashlen,
7d9e3d98
ILT
3647 align,
3648 "** hash");
13670ee6
ILT
3649 hashsec->add_output_section_data(hashdata);
3650
3651 hashsec->set_link_section(dynsym);
3652 hashsec->set_entsize(4);
a3ad94ed 3653
13670ee6
ILT
3654 odyn->add_section_address(elfcpp::DT_HASH, hashsec);
3655 }
3656
3657 if (strcmp(parameters->options().hash_style(), "gnu") == 0
3658 || strcmp(parameters->options().hash_style(), "both") == 0)
3659 {
3660 unsigned char* phash;
3661 unsigned int hashlen;
3662 Dynobj::create_gnu_hash_table(*pdynamic_symbols, local_symcount,
3663 &phash, &hashlen);
a3ad94ed 3664
22f0da72
ILT
3665 Output_section* hashsec =
3666 this->choose_output_section(NULL, ".gnu.hash", elfcpp::SHT_GNU_HASH,
3667 elfcpp::SHF_ALLOC, false,
3668 ORDER_DYNAMIC_LINKER, false);
a3ad94ed 3669
13670ee6
ILT
3670 Output_section_data* hashdata = new Output_data_const_buffer(phash,
3671 hashlen,
7d9e3d98
ILT
3672 align,
3673 "** hash");
13670ee6 3674 hashsec->add_output_section_data(hashdata);
a3ad94ed 3675
13670ee6 3676 hashsec->set_link_section(dynsym);
1b81fb71
ILT
3677
3678 // For a 64-bit target, the entries in .gnu.hash do not have a
3679 // uniform size, so we only set the entry size for a 32-bit
3680 // target.
3681 if (parameters->target().get_size() == 32)
3682 hashsec->set_entsize(4);
a3ad94ed 3683
13670ee6
ILT
3684 odyn->add_section_address(elfcpp::DT_GNU_HASH, hashsec);
3685 }
dbe717ef
ILT
3686}
3687
7bf1f802
ILT
3688// Assign offsets to each local portion of the dynamic symbol table.
3689
3690void
3691Layout::assign_local_dynsym_offsets(const Input_objects* input_objects)
3692{
3693 Output_section* dynsym = this->dynsym_section_;
3694 gold_assert(dynsym != NULL);
3695
3696 off_t off = dynsym->offset();
3697
3698 // Skip the dummy symbol at the start of the section.
3699 off += dynsym->entsize();
3700
3701 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
3702 p != input_objects->relobj_end();
3703 ++p)
3704 {
3705 unsigned int count = (*p)->set_local_dynsym_offset(off);
3706 off += count * dynsym->entsize();
3707 }
3708}
3709
14b31740
ILT
3710// Create the version sections.
3711
3712void
9025d29d 3713Layout::create_version_sections(const Versions* versions,
46fe1623 3714 const Symbol_table* symtab,
14b31740
ILT
3715 unsigned int local_symcount,
3716 const std::vector<Symbol*>& dynamic_symbols,
3717 const Output_section* dynstr)
3718{
3719 if (!versions->any_defs() && !versions->any_needs())
3720 return;
3721
8851ecca 3722 switch (parameters->size_and_endianness())
14b31740 3723 {
193a53d9 3724#ifdef HAVE_TARGET_32_LITTLE
8851ecca 3725 case Parameters::TARGET_32_LITTLE:
7d1a9ebb
ILT
3726 this->sized_create_version_sections<32, false>(versions, symtab,
3727 local_symcount,
3728 dynamic_symbols, dynstr);
8851ecca 3729 break;
193a53d9 3730#endif
8851ecca
ILT
3731#ifdef HAVE_TARGET_32_BIG
3732 case Parameters::TARGET_32_BIG:
7d1a9ebb
ILT
3733 this->sized_create_version_sections<32, true>(versions, symtab,
3734 local_symcount,
3735 dynamic_symbols, dynstr);
8851ecca 3736 break;
193a53d9 3737#endif
193a53d9 3738#ifdef HAVE_TARGET_64_LITTLE
8851ecca 3739 case Parameters::TARGET_64_LITTLE:
7d1a9ebb
ILT
3740 this->sized_create_version_sections<64, false>(versions, symtab,
3741 local_symcount,
3742 dynamic_symbols, dynstr);
8851ecca 3743 break;
193a53d9 3744#endif
8851ecca
ILT
3745#ifdef HAVE_TARGET_64_BIG
3746 case Parameters::TARGET_64_BIG:
7d1a9ebb
ILT
3747 this->sized_create_version_sections<64, true>(versions, symtab,
3748 local_symcount,
3749 dynamic_symbols, dynstr);
8851ecca
ILT
3750 break;
3751#endif
3752 default:
3753 gold_unreachable();
14b31740 3754 }
14b31740
ILT
3755}
3756
3757// Create the version sections, sized version.
3758
3759template<int size, bool big_endian>
3760void
3761Layout::sized_create_version_sections(
3762 const Versions* versions,
46fe1623 3763 const Symbol_table* symtab,
14b31740
ILT
3764 unsigned int local_symcount,
3765 const std::vector<Symbol*>& dynamic_symbols,
7d1a9ebb 3766 const Output_section* dynstr)
14b31740 3767{
3802b2dd
ILT
3768 Output_section* vsec = this->choose_output_section(NULL, ".gnu.version",
3769 elfcpp::SHT_GNU_versym,
3770 elfcpp::SHF_ALLOC,
22f0da72
ILT
3771 false,
3772 ORDER_DYNAMIC_LINKER,
3773 false);
14b31740
ILT
3774
3775 unsigned char* vbuf;
3776 unsigned int vsize;
7d1a9ebb
ILT
3777 versions->symbol_section_contents<size, big_endian>(symtab, &this->dynpool_,
3778 local_symcount,
3779 dynamic_symbols,
3780 &vbuf, &vsize);
14b31740 3781
7d9e3d98
ILT
3782 Output_section_data* vdata = new Output_data_const_buffer(vbuf, vsize, 2,
3783 "** versions");
14b31740
ILT
3784
3785 vsec->add_output_section_data(vdata);
3786 vsec->set_entsize(2);
3787 vsec->set_link_section(this->dynsym_section_);
3788
3789 Output_data_dynamic* const odyn = this->dynamic_data_;
3790 odyn->add_section_address(elfcpp::DT_VERSYM, vsec);
3791
3792 if (versions->any_defs())
3793 {
3802b2dd
ILT
3794 Output_section* vdsec;
3795 vdsec= this->choose_output_section(NULL, ".gnu.version_d",
3796 elfcpp::SHT_GNU_verdef,
3797 elfcpp::SHF_ALLOC,
22f0da72 3798 false, ORDER_DYNAMIC_LINKER, false);
14b31740
ILT
3799
3800 unsigned char* vdbuf;
3801 unsigned int vdsize;
3802 unsigned int vdentries;
7d1a9ebb
ILT
3803 versions->def_section_contents<size, big_endian>(&this->dynpool_, &vdbuf,
3804 &vdsize, &vdentries);
14b31740 3805
7d9e3d98
ILT
3806 Output_section_data* vddata =
3807 new Output_data_const_buffer(vdbuf, vdsize, 4, "** version defs");
14b31740
ILT
3808
3809 vdsec->add_output_section_data(vddata);
3810 vdsec->set_link_section(dynstr);
3811 vdsec->set_info(vdentries);
3812
3813 odyn->add_section_address(elfcpp::DT_VERDEF, vdsec);
3814 odyn->add_constant(elfcpp::DT_VERDEFNUM, vdentries);
3815 }
3816
3817 if (versions->any_needs())
3818 {
14b31740 3819 Output_section* vnsec;
3802b2dd
ILT
3820 vnsec = this->choose_output_section(NULL, ".gnu.version_r",
3821 elfcpp::SHT_GNU_verneed,
3822 elfcpp::SHF_ALLOC,
22f0da72 3823 false, ORDER_DYNAMIC_LINKER, false);
14b31740
ILT
3824
3825 unsigned char* vnbuf;
3826 unsigned int vnsize;
3827 unsigned int vnentries;
7d1a9ebb
ILT
3828 versions->need_section_contents<size, big_endian>(&this->dynpool_,
3829 &vnbuf, &vnsize,
3830 &vnentries);
14b31740 3831
7d9e3d98
ILT
3832 Output_section_data* vndata =
3833 new Output_data_const_buffer(vnbuf, vnsize, 4, "** version refs");
14b31740
ILT
3834
3835 vnsec->add_output_section_data(vndata);
3836 vnsec->set_link_section(dynstr);
3837 vnsec->set_info(vnentries);
3838
3839 odyn->add_section_address(elfcpp::DT_VERNEED, vnsec);
3840 odyn->add_constant(elfcpp::DT_VERNEEDNUM, vnentries);
3841 }
3842}
3843
dbe717ef
ILT
3844// Create the .interp section and PT_INTERP segment.
3845
3846void
3847Layout::create_interp(const Target* target)
3848{
e55bde5e 3849 const char* interp = parameters->options().dynamic_linker();
dbe717ef
ILT
3850 if (interp == NULL)
3851 {
3852 interp = target->dynamic_linker();
a3ad94ed 3853 gold_assert(interp != NULL);
dbe717ef
ILT
3854 }
3855
3856 size_t len = strlen(interp) + 1;
3857
3858 Output_section_data* odata = new Output_data_const(interp, len, 1);
3859
3802b2dd
ILT
3860 Output_section* osec = this->choose_output_section(NULL, ".interp",
3861 elfcpp::SHT_PROGBITS,
3862 elfcpp::SHF_ALLOC,
22f0da72
ILT
3863 false, ORDER_INTERP,
3864 false);
dbe717ef
ILT
3865 osec->add_output_section_data(odata);
3866
1c4f3631
ILT
3867 if (!this->script_options_->saw_phdrs_clause())
3868 {
3869 Output_segment* oseg = this->make_output_segment(elfcpp::PT_INTERP,
3870 elfcpp::PF_R);
22f0da72 3871 oseg->add_output_section_to_nonload(osec, elfcpp::PF_R);
1c4f3631 3872 }
dbe717ef
ILT
3873}
3874
ea715a34
ILT
3875// Add dynamic tags for the PLT and the dynamic relocs. This is
3876// called by the target-specific code. This does nothing if not doing
3877// a dynamic link.
3878
3879// USE_REL is true for REL relocs rather than RELA relocs.
3880
3881// If PLT_GOT is not NULL, then DT_PLTGOT points to it.
3882
3883// If PLT_REL is not NULL, it is used for DT_PLTRELSZ, and DT_JMPREL,
e291e7b9
ILT
3884// and we also set DT_PLTREL. We use PLT_REL's output section, since
3885// some targets have multiple reloc sections in PLT_REL.
ea715a34
ILT
3886
3887// If DYN_REL is not NULL, it is used for DT_REL/DT_RELA,
3888// DT_RELSZ/DT_RELASZ, DT_RELENT/DT_RELAENT.
3889
3890// If ADD_DEBUG is true, we add a DT_DEBUG entry when generating an
3891// executable.
3892
3893void
3894Layout::add_target_dynamic_tags(bool use_rel, const Output_data* plt_got,
3895 const Output_data* plt_rel,
3a44184e 3896 const Output_data_reloc_generic* dyn_rel,
612a8d3d 3897 bool add_debug, bool dynrel_includes_plt)
ea715a34
ILT
3898{
3899 Output_data_dynamic* odyn = this->dynamic_data_;
3900 if (odyn == NULL)
3901 return;
3902
3903 if (plt_got != NULL && plt_got->output_section() != NULL)
3904 odyn->add_section_address(elfcpp::DT_PLTGOT, plt_got);
3905
3906 if (plt_rel != NULL && plt_rel->output_section() != NULL)
3907 {
e291e7b9
ILT
3908 odyn->add_section_size(elfcpp::DT_PLTRELSZ, plt_rel->output_section());
3909 odyn->add_section_address(elfcpp::DT_JMPREL, plt_rel->output_section());
ea715a34
ILT
3910 odyn->add_constant(elfcpp::DT_PLTREL,
3911 use_rel ? elfcpp::DT_REL : elfcpp::DT_RELA);
3912 }
3913
3914 if (dyn_rel != NULL && dyn_rel->output_section() != NULL)
3915 {
3916 odyn->add_section_address(use_rel ? elfcpp::DT_REL : elfcpp::DT_RELA,
3917 dyn_rel);
612a8d3d
DM
3918 if (plt_rel != NULL && dynrel_includes_plt)
3919 odyn->add_section_size(use_rel ? elfcpp::DT_RELSZ : elfcpp::DT_RELASZ,
3920 dyn_rel, plt_rel);
3921 else
3922 odyn->add_section_size(use_rel ? elfcpp::DT_RELSZ : elfcpp::DT_RELASZ,
3923 dyn_rel);
ea715a34
ILT
3924 const int size = parameters->target().get_size();
3925 elfcpp::DT rel_tag;
3926 int rel_size;
3927 if (use_rel)
3928 {
3929 rel_tag = elfcpp::DT_RELENT;
3930 if (size == 32)
3931 rel_size = Reloc_types<elfcpp::SHT_REL, 32, false>::reloc_size;
3932 else if (size == 64)
3933 rel_size = Reloc_types<elfcpp::SHT_REL, 64, false>::reloc_size;
3934 else
3935 gold_unreachable();
3936 }
3937 else
3938 {
3939 rel_tag = elfcpp::DT_RELAENT;
3940 if (size == 32)
3941 rel_size = Reloc_types<elfcpp::SHT_RELA, 32, false>::reloc_size;
3942 else if (size == 64)
3943 rel_size = Reloc_types<elfcpp::SHT_RELA, 64, false>::reloc_size;
3944 else
3945 gold_unreachable();
3946 }
3947 odyn->add_constant(rel_tag, rel_size);
3a44184e
ILT
3948
3949 if (parameters->options().combreloc())
3950 {
3951 size_t c = dyn_rel->relative_reloc_count();
3952 if (c > 0)
3953 odyn->add_constant((use_rel
3954 ? elfcpp::DT_RELCOUNT
3955 : elfcpp::DT_RELACOUNT),
3956 c);
3957 }
ea715a34
ILT
3958 }
3959
3960 if (add_debug && !parameters->options().shared())
3961 {
3962 // The value of the DT_DEBUG tag is filled in by the dynamic
3963 // linker at run time, and used by the debugger.
3964 odyn->add_constant(elfcpp::DT_DEBUG, 0);
3965 }
3966}
3967
a3ad94ed
ILT
3968// Finish the .dynamic section and PT_DYNAMIC segment.
3969
3970void
3971Layout::finish_dynamic_section(const Input_objects* input_objects,
16649710 3972 const Symbol_table* symtab)
a3ad94ed 3973{
1c4f3631
ILT
3974 if (!this->script_options_->saw_phdrs_clause())
3975 {
3976 Output_segment* oseg = this->make_output_segment(elfcpp::PT_DYNAMIC,
3977 (elfcpp::PF_R
3978 | elfcpp::PF_W));
22f0da72
ILT
3979 oseg->add_output_section_to_nonload(this->dynamic_section_,
3980 elfcpp::PF_R | elfcpp::PF_W);
1c4f3631 3981 }
a3ad94ed 3982
16649710
ILT
3983 Output_data_dynamic* const odyn = this->dynamic_data_;
3984
a3ad94ed
ILT
3985 for (Input_objects::Dynobj_iterator p = input_objects->dynobj_begin();
3986 p != input_objects->dynobj_end();
3987 ++p)
3988 {
594c8e5e 3989 if (!(*p)->is_needed()
cdc29364 3990 && !(*p)->is_incremental()
594c8e5e
ILT
3991 && (*p)->input_file()->options().as_needed())
3992 {
3993 // This dynamic object was linked with --as-needed, but it
3994 // is not needed.
3995 continue;
3996 }
3997
a3ad94ed
ILT
3998 odyn->add_string(elfcpp::DT_NEEDED, (*p)->soname());
3999 }
4000
8851ecca 4001 if (parameters->options().shared())
fced7afd 4002 {
e55bde5e 4003 const char* soname = parameters->options().soname();
fced7afd
ILT
4004 if (soname != NULL)
4005 odyn->add_string(elfcpp::DT_SONAME, soname);
4006 }
4007
c6585162 4008 Symbol* sym = symtab->lookup(parameters->options().init());
14b31740 4009 if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
a3ad94ed
ILT
4010 odyn->add_symbol(elfcpp::DT_INIT, sym);
4011
c6585162 4012 sym = symtab->lookup(parameters->options().fini());
14b31740 4013 if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
a3ad94ed
ILT
4014 odyn->add_symbol(elfcpp::DT_FINI, sym);
4015
f15f61a7
DK
4016 // Look for .init_array, .preinit_array and .fini_array by checking
4017 // section types.
4018 for(Layout::Section_list::const_iterator p = this->section_list_.begin();
4019 p != this->section_list_.end();
4020 ++p)
4021 switch((*p)->type())
4022 {
4023 case elfcpp::SHT_FINI_ARRAY:
4024 odyn->add_section_address(elfcpp::DT_FINI_ARRAY, *p);
4025 odyn->add_section_size(elfcpp::DT_FINI_ARRAYSZ, *p);
4026 break;
4027 case elfcpp::SHT_INIT_ARRAY:
4028 odyn->add_section_address(elfcpp::DT_INIT_ARRAY, *p);
4029 odyn->add_section_size(elfcpp::DT_INIT_ARRAYSZ, *p);
4030 break;
4031 case elfcpp::SHT_PREINIT_ARRAY:
4032 odyn->add_section_address(elfcpp::DT_PREINIT_ARRAY, *p);
4033 odyn->add_section_size(elfcpp::DT_PREINIT_ARRAYSZ, *p);
4034 break;
4035 default:
4036 break;
4037 }
4038
41f542e7 4039 // Add a DT_RPATH entry if needed.
e55bde5e 4040 const General_options::Dir_list& rpath(parameters->options().rpath());
41f542e7
ILT
4041 if (!rpath.empty())
4042 {
4043 std::string rpath_val;
4044 for (General_options::Dir_list::const_iterator p = rpath.begin();
4045 p != rpath.end();
4046 ++p)
4047 {
4048 if (rpath_val.empty())
ad2d6943 4049 rpath_val = p->name();
41f542e7
ILT
4050 else
4051 {
4052 // Eliminate duplicates.
4053 General_options::Dir_list::const_iterator q;
4054 for (q = rpath.begin(); q != p; ++q)
ad2d6943 4055 if (q->name() == p->name())
41f542e7
ILT
4056 break;
4057 if (q == p)
4058 {
4059 rpath_val += ':';
ad2d6943 4060 rpath_val += p->name();
41f542e7
ILT
4061 }
4062 }
4063 }
4064
4065 odyn->add_string(elfcpp::DT_RPATH, rpath_val);
7c414435
DM
4066 if (parameters->options().enable_new_dtags())
4067 odyn->add_string(elfcpp::DT_RUNPATH, rpath_val);
41f542e7 4068 }
4f4c5f80
ILT
4069
4070 // Look for text segments that have dynamic relocations.
4071 bool have_textrel = false;
4e8fe71f 4072 if (!this->script_options_->saw_sections_clause())
4f4c5f80 4073 {
4e8fe71f
ILT
4074 for (Segment_list::const_iterator p = this->segment_list_.begin();
4075 p != this->segment_list_.end();
4076 ++p)
4077 {
4078 if (((*p)->flags() & elfcpp::PF_W) == 0
22f0da72 4079 && (*p)->has_dynamic_reloc())
4e8fe71f
ILT
4080 {
4081 have_textrel = true;
4082 break;
4083 }
4084 }
4085 }
4086 else
4087 {
4088 // We don't know the section -> segment mapping, so we are
4089 // conservative and just look for readonly sections with
4090 // relocations. If those sections wind up in writable segments,
4091 // then we have created an unnecessary DT_TEXTREL entry.
4092 for (Section_list::const_iterator p = this->section_list_.begin();
4093 p != this->section_list_.end();
4094 ++p)
4095 {
4096 if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0
4097 && ((*p)->flags() & elfcpp::SHF_WRITE) == 0
22f0da72 4098 && ((*p)->has_dynamic_reloc()))
4e8fe71f
ILT
4099 {
4100 have_textrel = true;
4101 break;
4102 }
4103 }
4f4c5f80
ILT
4104 }
4105
4106 // Add a DT_FLAGS entry. We add it even if no flags are set so that
4107 // post-link tools can easily modify these flags if desired.
4108 unsigned int flags = 0;
4109 if (have_textrel)
6a41d30b
ILT
4110 {
4111 // Add a DT_TEXTREL for compatibility with older loaders.
4112 odyn->add_constant(elfcpp::DT_TEXTREL, 0);
4113 flags |= elfcpp::DF_TEXTREL;
b9674e17 4114
ffeef7df
ILT
4115 if (parameters->options().text())
4116 gold_error(_("read-only segment has dynamic relocations"));
4117 else if (parameters->options().warn_shared_textrel()
4118 && parameters->options().shared())
b9674e17 4119 gold_warning(_("shared library text segment is not shareable"));
6a41d30b 4120 }
8851ecca 4121 if (parameters->options().shared() && this->has_static_tls())
535890bb 4122 flags |= elfcpp::DF_STATIC_TLS;
7be8330a
CD
4123 if (parameters->options().origin())
4124 flags |= elfcpp::DF_ORIGIN;
f15f61a7
DK
4125 if (parameters->options().Bsymbolic())
4126 {
4127 flags |= elfcpp::DF_SYMBOLIC;
4128 // Add DT_SYMBOLIC for compatibility with older loaders.
4129 odyn->add_constant(elfcpp::DT_SYMBOLIC, 0);
4130 }
e1c74d60
ILT
4131 if (parameters->options().now())
4132 flags |= elfcpp::DF_BIND_NOW;
4f4c5f80 4133 odyn->add_constant(elfcpp::DT_FLAGS, flags);
7c414435
DM
4134
4135 flags = 0;
4136 if (parameters->options().initfirst())
4137 flags |= elfcpp::DF_1_INITFIRST;
4138 if (parameters->options().interpose())
4139 flags |= elfcpp::DF_1_INTERPOSE;
4140 if (parameters->options().loadfltr())
4141 flags |= elfcpp::DF_1_LOADFLTR;
4142 if (parameters->options().nodefaultlib())
4143 flags |= elfcpp::DF_1_NODEFLIB;
4144 if (parameters->options().nodelete())
4145 flags |= elfcpp::DF_1_NODELETE;
4146 if (parameters->options().nodlopen())
4147 flags |= elfcpp::DF_1_NOOPEN;
4148 if (parameters->options().nodump())
4149 flags |= elfcpp::DF_1_NODUMP;
4150 if (!parameters->options().shared())
4151 flags &= ~(elfcpp::DF_1_INITFIRST
4152 | elfcpp::DF_1_NODELETE
4153 | elfcpp::DF_1_NOOPEN);
7be8330a
CD
4154 if (parameters->options().origin())
4155 flags |= elfcpp::DF_1_ORIGIN;
e1c74d60
ILT
4156 if (parameters->options().now())
4157 flags |= elfcpp::DF_1_NOW;
7c414435
DM
4158 if (flags)
4159 odyn->add_constant(elfcpp::DT_FLAGS_1, flags);
a3ad94ed
ILT
4160}
4161
f0ba79e2
ILT
4162// Set the size of the _DYNAMIC symbol table to be the size of the
4163// dynamic data.
4164
4165void
4166Layout::set_dynamic_symbol_size(const Symbol_table* symtab)
4167{
4168 Output_data_dynamic* const odyn = this->dynamic_data_;
4169 odyn->finalize_data_size();
4170 off_t data_size = odyn->data_size();
4171 const int size = parameters->target().get_size();
4172 if (size == 32)
4173 symtab->get_sized_symbol<32>(this->dynamic_symbol_)->set_symsize(data_size);
4174 else if (size == 64)
4175 symtab->get_sized_symbol<64>(this->dynamic_symbol_)->set_symsize(data_size);
4176 else
4177 gold_unreachable();
4178}
4179
dff16297
ILT
4180// The mapping of input section name prefixes to output section names.
4181// In some cases one prefix is itself a prefix of another prefix; in
4182// such a case the longer prefix must come first. These prefixes are
4183// based on the GNU linker default ELF linker script.
a2fb1b05 4184
ead1e424 4185#define MAPPING_INIT(f, t) { f, sizeof(f) - 1, t, sizeof(t) - 1 }
dff16297 4186const Layout::Section_name_mapping Layout::section_name_mapping[] =
a2fb1b05 4187{
dff16297
ILT
4188 MAPPING_INIT(".text.", ".text"),
4189 MAPPING_INIT(".ctors.", ".ctors"),
4190 MAPPING_INIT(".dtors.", ".dtors"),
4191 MAPPING_INIT(".rodata.", ".rodata"),
4192 MAPPING_INIT(".data.rel.ro.local", ".data.rel.ro.local"),
4193 MAPPING_INIT(".data.rel.ro", ".data.rel.ro"),
4194 MAPPING_INIT(".data.", ".data"),
4195 MAPPING_INIT(".bss.", ".bss"),
4196 MAPPING_INIT(".tdata.", ".tdata"),
4197 MAPPING_INIT(".tbss.", ".tbss"),
4198 MAPPING_INIT(".init_array.", ".init_array"),
4199 MAPPING_INIT(".fini_array.", ".fini_array"),
4200 MAPPING_INIT(".sdata.", ".sdata"),
4201 MAPPING_INIT(".sbss.", ".sbss"),
4202 // FIXME: In the GNU linker, .sbss2 and .sdata2 are handled
4203 // differently depending on whether it is creating a shared library.
4204 MAPPING_INIT(".sdata2.", ".sdata"),
4205 MAPPING_INIT(".sbss2.", ".sbss"),
4206 MAPPING_INIT(".lrodata.", ".lrodata"),
4207 MAPPING_INIT(".ldata.", ".ldata"),
4208 MAPPING_INIT(".lbss.", ".lbss"),
4209 MAPPING_INIT(".gcc_except_table.", ".gcc_except_table"),
4210 MAPPING_INIT(".gnu.linkonce.d.rel.ro.local.", ".data.rel.ro.local"),
4211 MAPPING_INIT(".gnu.linkonce.d.rel.ro.", ".data.rel.ro"),
4212 MAPPING_INIT(".gnu.linkonce.t.", ".text"),
4213 MAPPING_INIT(".gnu.linkonce.r.", ".rodata"),
4214 MAPPING_INIT(".gnu.linkonce.d.", ".data"),
4215 MAPPING_INIT(".gnu.linkonce.b.", ".bss"),
4216 MAPPING_INIT(".gnu.linkonce.s.", ".sdata"),
4217 MAPPING_INIT(".gnu.linkonce.sb.", ".sbss"),
4218 MAPPING_INIT(".gnu.linkonce.s2.", ".sdata"),
4219 MAPPING_INIT(".gnu.linkonce.sb2.", ".sbss"),
4220 MAPPING_INIT(".gnu.linkonce.wi.", ".debug_info"),
4221 MAPPING_INIT(".gnu.linkonce.td.", ".tdata"),
4222 MAPPING_INIT(".gnu.linkonce.tb.", ".tbss"),
4223 MAPPING_INIT(".gnu.linkonce.lr.", ".lrodata"),
4224 MAPPING_INIT(".gnu.linkonce.l.", ".ldata"),
4225 MAPPING_INIT(".gnu.linkonce.lb.", ".lbss"),
4a54abbb 4226 MAPPING_INIT(".ARM.extab", ".ARM.extab"),
1dcd334d 4227 MAPPING_INIT(".gnu.linkonce.armextab.", ".ARM.extab"),
4a54abbb 4228 MAPPING_INIT(".ARM.exidx", ".ARM.exidx"),
1dcd334d 4229 MAPPING_INIT(".gnu.linkonce.armexidx.", ".ARM.exidx"),
a2fb1b05
ILT
4230};
4231#undef MAPPING_INIT
4232
dff16297
ILT
4233const int Layout::section_name_mapping_count =
4234 (sizeof(Layout::section_name_mapping)
4235 / sizeof(Layout::section_name_mapping[0]));
a2fb1b05 4236
ead1e424
ILT
4237// Choose the output section name to use given an input section name.
4238// Set *PLEN to the length of the name. *PLEN is initialized to the
4239// length of NAME.
4240
4241const char*
4242Layout::output_section_name(const char* name, size_t* plen)
4243{
af4a8a83
ILT
4244 // gcc 4.3 generates the following sorts of section names when it
4245 // needs a section name specific to a function:
4246 // .text.FN
4247 // .rodata.FN
4248 // .sdata2.FN
4249 // .data.FN
4250 // .data.rel.FN
4251 // .data.rel.local.FN
4252 // .data.rel.ro.FN
4253 // .data.rel.ro.local.FN
4254 // .sdata.FN
4255 // .bss.FN
4256 // .sbss.FN
4257 // .tdata.FN
4258 // .tbss.FN
4259
4260 // The GNU linker maps all of those to the part before the .FN,
4261 // except that .data.rel.local.FN is mapped to .data, and
4262 // .data.rel.ro.local.FN is mapped to .data.rel.ro. The sections
4263 // beginning with .data.rel.ro.local are grouped together.
4264
4265 // For an anonymous namespace, the string FN can contain a '.'.
4266
4267 // Also of interest: .rodata.strN.N, .rodata.cstN, both of which the
4268 // GNU linker maps to .rodata.
4269
dff16297
ILT
4270 // The .data.rel.ro sections are used with -z relro. The sections
4271 // are recognized by name. We use the same names that the GNU
4272 // linker does for these sections.
af4a8a83 4273
dff16297
ILT
4274 // It is hard to handle this in a principled way, so we don't even
4275 // try. We use a table of mappings. If the input section name is
4276 // not found in the table, we simply use it as the output section
4277 // name.
af4a8a83 4278
dff16297
ILT
4279 const Section_name_mapping* psnm = section_name_mapping;
4280 for (int i = 0; i < section_name_mapping_count; ++i, ++psnm)
ead1e424 4281 {
dff16297
ILT
4282 if (strncmp(name, psnm->from, psnm->fromlen) == 0)
4283 {
4284 *plen = psnm->tolen;
4285 return psnm->to;
4286 }
ead1e424
ILT
4287 }
4288
ead1e424
ILT
4289 return name;
4290}
4291
8a4c0b0d
ILT
4292// Check if a comdat group or .gnu.linkonce section with the given
4293// NAME is selected for the link. If there is already a section,
1ef4d87f
ILT
4294// *KEPT_SECTION is set to point to the existing section and the
4295// function returns false. Otherwise, OBJECT, SHNDX, IS_COMDAT, and
4296// IS_GROUP_NAME are recorded for this NAME in the layout object,
4297// *KEPT_SECTION is set to the internal copy and the function returns
4298// true.
a2fb1b05
ILT
4299
4300bool
e55bde5e 4301Layout::find_or_add_kept_section(const std::string& name,
1ef4d87f
ILT
4302 Relobj* object,
4303 unsigned int shndx,
4304 bool is_comdat,
4305 bool is_group_name,
8a4c0b0d 4306 Kept_section** kept_section)
a2fb1b05 4307{
e55bde5e
ILT
4308 // It's normal to see a couple of entries here, for the x86 thunk
4309 // sections. If we see more than a few, we're linking a C++
4310 // program, and we resize to get more space to minimize rehashing.
4311 if (this->signatures_.size() > 4
4312 && !this->resized_signatures_)
4313 {
4314 reserve_unordered_map(&this->signatures_,
4315 this->number_of_input_files_ * 64);
4316 this->resized_signatures_ = true;
4317 }
4318
1ef4d87f
ILT
4319 Kept_section candidate;
4320 std::pair<Signatures::iterator, bool> ins =
4321 this->signatures_.insert(std::make_pair(name, candidate));
a2fb1b05 4322
1ef4d87f 4323 if (kept_section != NULL)
8a4c0b0d 4324 *kept_section = &ins.first->second;
a2fb1b05
ILT
4325 if (ins.second)
4326 {
4327 // This is the first time we've seen this signature.
1ef4d87f
ILT
4328 ins.first->second.set_object(object);
4329 ins.first->second.set_shndx(shndx);
4330 if (is_comdat)
4331 ins.first->second.set_is_comdat();
4332 if (is_group_name)
4333 ins.first->second.set_is_group_name();
a2fb1b05
ILT
4334 return true;
4335 }
4336
1ef4d87f
ILT
4337 // We have already seen this signature.
4338
4339 if (ins.first->second.is_group_name())
a2fb1b05
ILT
4340 {
4341 // We've already seen a real section group with this signature.
1ef4d87f
ILT
4342 // If the kept group is from a plugin object, and we're in the
4343 // replacement phase, accept the new one as a replacement.
4344 if (ins.first->second.object() == NULL
2756a258
CC
4345 && parameters->options().plugins()->in_replacement_phase())
4346 {
1ef4d87f
ILT
4347 ins.first->second.set_object(object);
4348 ins.first->second.set_shndx(shndx);
2756a258
CC
4349 return true;
4350 }
a2fb1b05
ILT
4351 return false;
4352 }
1ef4d87f 4353 else if (is_group_name)
a2fb1b05
ILT
4354 {
4355 // This is a real section group, and we've already seen a
a0fa0c07 4356 // linkonce section with this signature. Record that we've seen
a2fb1b05 4357 // a section group, and don't include this section group.
1ef4d87f 4358 ins.first->second.set_is_group_name();
a2fb1b05
ILT
4359 return false;
4360 }
4361 else
4362 {
4363 // We've already seen a linkonce section and this is a linkonce
4364 // section. These don't block each other--this may be the same
4365 // symbol name with different section types.
4366 return true;
4367 }
4368}
4369
a445fddf
ILT
4370// Store the allocated sections into the section list.
4371
4372void
2ea97941 4373Layout::get_allocated_sections(Section_list* section_list) const
a445fddf
ILT
4374{
4375 for (Section_list::const_iterator p = this->section_list_.begin();
4376 p != this->section_list_.end();
4377 ++p)
4378 if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0)
2ea97941 4379 section_list->push_back(*p);
a445fddf
ILT
4380}
4381
4382// Create an output segment.
4383
4384Output_segment*
4385Layout::make_output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags)
4386{
8851ecca 4387 gold_assert(!parameters->options().relocatable());
a445fddf
ILT
4388 Output_segment* oseg = new Output_segment(type, flags);
4389 this->segment_list_.push_back(oseg);
2d924fd9
ILT
4390
4391 if (type == elfcpp::PT_TLS)
4392 this->tls_segment_ = oseg;
4393 else if (type == elfcpp::PT_GNU_RELRO)
4394 this->relro_segment_ = oseg;
4395
a445fddf
ILT
4396 return oseg;
4397}
4398
bec5b579
CC
4399// Return the file offset of the normal symbol table.
4400
4401off_t
4402Layout::symtab_section_offset() const
4403{
4404 if (this->symtab_section_ != NULL)
4405 return this->symtab_section_->offset();
4406 return 0;
4407}
4408
730cdc88
ILT
4409// Write out the Output_sections. Most won't have anything to write,
4410// since most of the data will come from input sections which are
4411// handled elsewhere. But some Output_sections do have Output_data.
4412
4413void
4414Layout::write_output_sections(Output_file* of) const
4415{
4416 for (Section_list::const_iterator p = this->section_list_.begin();
4417 p != this->section_list_.end();
4418 ++p)
4419 {
4420 if (!(*p)->after_input_sections())
4421 (*p)->write(of);
4422 }
4423}
4424
61ba1cf9
ILT
4425// Write out data not associated with a section or the symbol table.
4426
4427void
9025d29d 4428Layout::write_data(const Symbol_table* symtab, Output_file* of) const
61ba1cf9 4429{
8851ecca 4430 if (!parameters->options().strip_all())
a3ad94ed 4431 {
2ea97941 4432 const Output_section* symtab_section = this->symtab_section_;
9e2dcb77
ILT
4433 for (Section_list::const_iterator p = this->section_list_.begin();
4434 p != this->section_list_.end();
4435 ++p)
a3ad94ed 4436 {
9e2dcb77
ILT
4437 if ((*p)->needs_symtab_index())
4438 {
2ea97941 4439 gold_assert(symtab_section != NULL);
9e2dcb77
ILT
4440 unsigned int index = (*p)->symtab_index();
4441 gold_assert(index > 0 && index != -1U);
2ea97941
ILT
4442 off_t off = (symtab_section->offset()
4443 + index * symtab_section->entsize());
d491d34e 4444 symtab->write_section_symbol(*p, this->symtab_xindex_, of, off);
9e2dcb77 4445 }
a3ad94ed
ILT
4446 }
4447 }
4448
2ea97941 4449 const Output_section* dynsym_section = this->dynsym_section_;
a3ad94ed
ILT
4450 for (Section_list::const_iterator p = this->section_list_.begin();
4451 p != this->section_list_.end();
4452 ++p)
4453 {
4454 if ((*p)->needs_dynsym_index())
4455 {
2ea97941 4456 gold_assert(dynsym_section != NULL);
a3ad94ed
ILT
4457 unsigned int index = (*p)->dynsym_index();
4458 gold_assert(index > 0 && index != -1U);
2ea97941
ILT
4459 off_t off = (dynsym_section->offset()
4460 + index * dynsym_section->entsize());
d491d34e 4461 symtab->write_section_symbol(*p, this->dynsym_xindex_, of, off);
a3ad94ed
ILT
4462 }
4463 }
4464
a3ad94ed 4465 // Write out the Output_data which are not in an Output_section.
61ba1cf9
ILT
4466 for (Data_list::const_iterator p = this->special_output_list_.begin();
4467 p != this->special_output_list_.end();
4468 ++p)
4469 (*p)->write(of);
4470}
4471
730cdc88
ILT
4472// Write out the Output_sections which can only be written after the
4473// input sections are complete.
4474
4475void
27bc2bce 4476Layout::write_sections_after_input_sections(Output_file* of)
730cdc88 4477{
27bc2bce 4478 // Determine the final section offsets, and thus the final output
9a0910c3
ILT
4479 // file size. Note we finalize the .shstrab last, to allow the
4480 // after_input_section sections to modify their section-names before
4481 // writing.
17a1d0a9 4482 if (this->any_postprocessing_sections_)
27bc2bce 4483 {
17a1d0a9
ILT
4484 off_t off = this->output_file_size_;
4485 off = this->set_section_offsets(off, POSTPROCESSING_SECTIONS_PASS);
8a4c0b0d 4486
17a1d0a9
ILT
4487 // Now that we've finalized the names, we can finalize the shstrab.
4488 off =
4489 this->set_section_offsets(off,
4490 STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS);
4491
4492 if (off > this->output_file_size_)
4493 {
4494 of->resize(off);
4495 this->output_file_size_ = off;
4496 }
27bc2bce
ILT
4497 }
4498
730cdc88
ILT
4499 for (Section_list::const_iterator p = this->section_list_.begin();
4500 p != this->section_list_.end();
4501 ++p)
4502 {
4503 if ((*p)->after_input_sections())
4504 (*p)->write(of);
4505 }
27bc2bce 4506
27bc2bce 4507 this->section_headers_->write(of);
730cdc88
ILT
4508}
4509
8ed814a9
ILT
4510// If the build ID requires computing a checksum, do so here, and
4511// write it out. We compute a checksum over the entire file because
4512// that is simplest.
4513
4514void
4515Layout::write_build_id(Output_file* of) const
4516{
4517 if (this->build_id_note_ == NULL)
4518 return;
4519
4520 const unsigned char* iv = of->get_input_view(0, this->output_file_size_);
4521
4522 unsigned char* ov = of->get_output_view(this->build_id_note_->offset(),
4523 this->build_id_note_->data_size());
4524
4525 const char* style = parameters->options().build_id();
4526 if (strcmp(style, "sha1") == 0)
4527 {
4528 sha1_ctx ctx;
4529 sha1_init_ctx(&ctx);
4530 sha1_process_bytes(iv, this->output_file_size_, &ctx);
4531 sha1_finish_ctx(&ctx, ov);
4532 }
4533 else if (strcmp(style, "md5") == 0)
4534 {
4535 md5_ctx ctx;
4536 md5_init_ctx(&ctx);
4537 md5_process_bytes(iv, this->output_file_size_, &ctx);
4538 md5_finish_ctx(&ctx, ov);
4539 }
4540 else
4541 gold_unreachable();
4542
4543 of->write_output_view(this->build_id_note_->offset(),
4544 this->build_id_note_->data_size(),
4545 ov);
4546
4547 of->free_input_view(0, this->output_file_size_, iv);
4548}
4549
516cb3d0
ILT
4550// Write out a binary file. This is called after the link is
4551// complete. IN is the temporary output file we used to generate the
4552// ELF code. We simply walk through the segments, read them from
4553// their file offset in IN, and write them to their load address in
4554// the output file. FIXME: with a bit more work, we could support
4555// S-records and/or Intel hex format here.
4556
4557void
4558Layout::write_binary(Output_file* in) const
4559{
e55bde5e 4560 gold_assert(parameters->options().oformat_enum()
bc644c6c 4561 == General_options::OBJECT_FORMAT_BINARY);
516cb3d0
ILT
4562
4563 // Get the size of the binary file.
4564 uint64_t max_load_address = 0;
4565 for (Segment_list::const_iterator p = this->segment_list_.begin();
4566 p != this->segment_list_.end();
4567 ++p)
4568 {
4569 if ((*p)->type() == elfcpp::PT_LOAD && (*p)->filesz() > 0)
4570 {
4571 uint64_t max_paddr = (*p)->paddr() + (*p)->filesz();
4572 if (max_paddr > max_load_address)
4573 max_load_address = max_paddr;
4574 }
4575 }
4576
8851ecca 4577 Output_file out(parameters->options().output_file_name());
516cb3d0
ILT
4578 out.open(max_load_address);
4579
4580 for (Segment_list::const_iterator p = this->segment_list_.begin();
4581 p != this->segment_list_.end();
4582 ++p)
4583 {
4584 if ((*p)->type() == elfcpp::PT_LOAD && (*p)->filesz() > 0)
4585 {
4586 const unsigned char* vin = in->get_input_view((*p)->offset(),
4587 (*p)->filesz());
4588 unsigned char* vout = out.get_output_view((*p)->paddr(),
4589 (*p)->filesz());
4590 memcpy(vout, vin, (*p)->filesz());
4591 out.write_output_view((*p)->paddr(), (*p)->filesz(), vout);
4592 in->free_input_view((*p)->offset(), (*p)->filesz(), vin);
4593 }
4594 }
4595
4596 out.close();
4597}
4598
7d9e3d98
ILT
4599// Print the output sections to the map file.
4600
4601void
4602Layout::print_to_mapfile(Mapfile* mapfile) const
4603{
4604 for (Segment_list::const_iterator p = this->segment_list_.begin();
4605 p != this->segment_list_.end();
4606 ++p)
4607 (*p)->print_sections_to_mapfile(mapfile);
4608}
4609
ad8f37d1
ILT
4610// Print statistical information to stderr. This is used for --stats.
4611
4612void
4613Layout::print_stats() const
4614{
4615 this->namepool_.print_stats("section name pool");
4616 this->sympool_.print_stats("output symbol name pool");
4617 this->dynpool_.print_stats("dynamic name pool");
38c5e8b4
ILT
4618
4619 for (Section_list::const_iterator p = this->section_list_.begin();
4620 p != this->section_list_.end();
4621 ++p)
4622 (*p)->print_merge_stats();
ad8f37d1
ILT
4623}
4624
730cdc88
ILT
4625// Write_sections_task methods.
4626
4627// We can always run this task.
4628
17a1d0a9
ILT
4629Task_token*
4630Write_sections_task::is_runnable()
730cdc88 4631{
17a1d0a9 4632 return NULL;
730cdc88
ILT
4633}
4634
4635// We need to unlock both OUTPUT_SECTIONS_BLOCKER and FINAL_BLOCKER
4636// when finished.
4637
17a1d0a9
ILT
4638void
4639Write_sections_task::locks(Task_locker* tl)
730cdc88 4640{
17a1d0a9
ILT
4641 tl->add(this, this->output_sections_blocker_);
4642 tl->add(this, this->final_blocker_);
730cdc88
ILT
4643}
4644
4645// Run the task--write out the data.
4646
4647void
4648Write_sections_task::run(Workqueue*)
4649{
4650 this->layout_->write_output_sections(this->of_);
4651}
4652
61ba1cf9
ILT
4653// Write_data_task methods.
4654
4655// We can always run this task.
4656
17a1d0a9
ILT
4657Task_token*
4658Write_data_task::is_runnable()
61ba1cf9 4659{
17a1d0a9 4660 return NULL;
61ba1cf9
ILT
4661}
4662
4663// We need to unlock FINAL_BLOCKER when finished.
4664
17a1d0a9
ILT
4665void
4666Write_data_task::locks(Task_locker* tl)
61ba1cf9 4667{
17a1d0a9 4668 tl->add(this, this->final_blocker_);
61ba1cf9
ILT
4669}
4670
4671// Run the task--write out the data.
4672
4673void
4674Write_data_task::run(Workqueue*)
4675{
9025d29d 4676 this->layout_->write_data(this->symtab_, this->of_);
61ba1cf9
ILT
4677}
4678
4679// Write_symbols_task methods.
4680
4681// We can always run this task.
4682
17a1d0a9
ILT
4683Task_token*
4684Write_symbols_task::is_runnable()
61ba1cf9 4685{
17a1d0a9 4686 return NULL;
61ba1cf9
ILT
4687}
4688
4689// We need to unlock FINAL_BLOCKER when finished.
4690
17a1d0a9
ILT
4691void
4692Write_symbols_task::locks(Task_locker* tl)
61ba1cf9 4693{
17a1d0a9 4694 tl->add(this, this->final_blocker_);
61ba1cf9
ILT
4695}
4696
4697// Run the task--write out the symbols.
4698
4699void
4700Write_symbols_task::run(Workqueue*)
4701{
fd9d194f
ILT
4702 this->symtab_->write_globals(this->sympool_, this->dynpool_,
4703 this->layout_->symtab_xindex(),
d491d34e 4704 this->layout_->dynsym_xindex(), this->of_);
61ba1cf9
ILT
4705}
4706
730cdc88
ILT
4707// Write_after_input_sections_task methods.
4708
4709// We can only run this task after the input sections have completed.
4710
17a1d0a9
ILT
4711Task_token*
4712Write_after_input_sections_task::is_runnable()
730cdc88
ILT
4713{
4714 if (this->input_sections_blocker_->is_blocked())
17a1d0a9
ILT
4715 return this->input_sections_blocker_;
4716 return NULL;
730cdc88
ILT
4717}
4718
4719// We need to unlock FINAL_BLOCKER when finished.
4720
17a1d0a9
ILT
4721void
4722Write_after_input_sections_task::locks(Task_locker* tl)
730cdc88 4723{
17a1d0a9 4724 tl->add(this, this->final_blocker_);
730cdc88
ILT
4725}
4726
4727// Run the task.
4728
4729void
4730Write_after_input_sections_task::run(Workqueue*)
4731{
4732 this->layout_->write_sections_after_input_sections(this->of_);
4733}
4734
92e059d8 4735// Close_task_runner methods.
61ba1cf9
ILT
4736
4737// Run the task--close the file.
4738
4739void
17a1d0a9 4740Close_task_runner::run(Workqueue*, const Task*)
61ba1cf9 4741{
8ed814a9
ILT
4742 // If we need to compute a checksum for the BUILD if, we do so here.
4743 this->layout_->write_build_id(this->of_);
4744
516cb3d0 4745 // If we've been asked to create a binary file, we do so here.
7cc619c3 4746 if (this->options_->oformat_enum() != General_options::OBJECT_FORMAT_ELF)
516cb3d0
ILT
4747 this->layout_->write_binary(this->of_);
4748
61ba1cf9
ILT
4749 this->of_->close();
4750}
4751
a2fb1b05
ILT
4752// Instantiate the templates we need. We could use the configure
4753// script to restrict this to only the ones for implemented targets.
4754
193a53d9 4755#ifdef HAVE_TARGET_32_LITTLE
a2fb1b05 4756template
cdc29364
CC
4757Output_section*
4758Layout::init_fixed_output_section<32, false>(
4759 const char* name,
4760 elfcpp::Shdr<32, false>& shdr);
4761#endif
4762
4763#ifdef HAVE_TARGET_32_BIG
4764template
4765Output_section*
4766Layout::init_fixed_output_section<32, true>(
4767 const char* name,
4768 elfcpp::Shdr<32, true>& shdr);
4769#endif
4770
4771#ifdef HAVE_TARGET_64_LITTLE
4772template
4773Output_section*
4774Layout::init_fixed_output_section<64, false>(
4775 const char* name,
4776 elfcpp::Shdr<64, false>& shdr);
4777#endif
4778
4779#ifdef HAVE_TARGET_64_BIG
4780template
4781Output_section*
4782Layout::init_fixed_output_section<64, true>(
4783 const char* name,
4784 elfcpp::Shdr<64, true>& shdr);
4785#endif
4786
4787#ifdef HAVE_TARGET_32_LITTLE
4788template
a2fb1b05 4789Output_section*
6fa2a40b
CC
4790Layout::layout<32, false>(Sized_relobj_file<32, false>* object,
4791 unsigned int shndx,
730cdc88
ILT
4792 const char* name,
4793 const elfcpp::Shdr<32, false>& shdr,
4794 unsigned int, unsigned int, off_t*);
193a53d9 4795#endif
a2fb1b05 4796
193a53d9 4797#ifdef HAVE_TARGET_32_BIG
a2fb1b05
ILT
4798template
4799Output_section*
6fa2a40b
CC
4800Layout::layout<32, true>(Sized_relobj_file<32, true>* object,
4801 unsigned int shndx,
730cdc88
ILT
4802 const char* name,
4803 const elfcpp::Shdr<32, true>& shdr,
4804 unsigned int, unsigned int, off_t*);
193a53d9 4805#endif
a2fb1b05 4806
193a53d9 4807#ifdef HAVE_TARGET_64_LITTLE
a2fb1b05
ILT
4808template
4809Output_section*
6fa2a40b
CC
4810Layout::layout<64, false>(Sized_relobj_file<64, false>* object,
4811 unsigned int shndx,
730cdc88
ILT
4812 const char* name,
4813 const elfcpp::Shdr<64, false>& shdr,
4814 unsigned int, unsigned int, off_t*);
193a53d9 4815#endif
a2fb1b05 4816
193a53d9 4817#ifdef HAVE_TARGET_64_BIG
a2fb1b05
ILT
4818template
4819Output_section*
6fa2a40b
CC
4820Layout::layout<64, true>(Sized_relobj_file<64, true>* object,
4821 unsigned int shndx,
730cdc88
ILT
4822 const char* name,
4823 const elfcpp::Shdr<64, true>& shdr,
4824 unsigned int, unsigned int, off_t*);
193a53d9 4825#endif
a2fb1b05 4826
6a74a719
ILT
4827#ifdef HAVE_TARGET_32_LITTLE
4828template
4829Output_section*
6fa2a40b 4830Layout::layout_reloc<32, false>(Sized_relobj_file<32, false>* object,
6a74a719
ILT
4831 unsigned int reloc_shndx,
4832 const elfcpp::Shdr<32, false>& shdr,
4833 Output_section* data_section,
4834 Relocatable_relocs* rr);
4835#endif
4836
4837#ifdef HAVE_TARGET_32_BIG
4838template
4839Output_section*
6fa2a40b 4840Layout::layout_reloc<32, true>(Sized_relobj_file<32, true>* object,
6a74a719
ILT
4841 unsigned int reloc_shndx,
4842 const elfcpp::Shdr<32, true>& shdr,
4843 Output_section* data_section,
4844 Relocatable_relocs* rr);
4845#endif
4846
4847#ifdef HAVE_TARGET_64_LITTLE
4848template
4849Output_section*
6fa2a40b 4850Layout::layout_reloc<64, false>(Sized_relobj_file<64, false>* object,
6a74a719
ILT
4851 unsigned int reloc_shndx,
4852 const elfcpp::Shdr<64, false>& shdr,
4853 Output_section* data_section,
4854 Relocatable_relocs* rr);
4855#endif
4856
4857#ifdef HAVE_TARGET_64_BIG
4858template
4859Output_section*
6fa2a40b 4860Layout::layout_reloc<64, true>(Sized_relobj_file<64, true>* object,
6a74a719
ILT
4861 unsigned int reloc_shndx,
4862 const elfcpp::Shdr<64, true>& shdr,
4863 Output_section* data_section,
4864 Relocatable_relocs* rr);
4865#endif
4866
4867#ifdef HAVE_TARGET_32_LITTLE
4868template
4869void
4870Layout::layout_group<32, false>(Symbol_table* symtab,
6fa2a40b 4871 Sized_relobj_file<32, false>* object,
6a74a719
ILT
4872 unsigned int,
4873 const char* group_section_name,
4874 const char* signature,
4875 const elfcpp::Shdr<32, false>& shdr,
8825ac63
ILT
4876 elfcpp::Elf_Word flags,
4877 std::vector<unsigned int>* shndxes);
6a74a719
ILT
4878#endif
4879
4880#ifdef HAVE_TARGET_32_BIG
4881template
4882void
4883Layout::layout_group<32, true>(Symbol_table* symtab,
6fa2a40b 4884 Sized_relobj_file<32, true>* object,
6a74a719
ILT
4885 unsigned int,
4886 const char* group_section_name,
4887 const char* signature,
4888 const elfcpp::Shdr<32, true>& shdr,
8825ac63
ILT
4889 elfcpp::Elf_Word flags,
4890 std::vector<unsigned int>* shndxes);
6a74a719
ILT
4891#endif
4892
4893#ifdef HAVE_TARGET_64_LITTLE
4894template
4895void
4896Layout::layout_group<64, false>(Symbol_table* symtab,
6fa2a40b 4897 Sized_relobj_file<64, false>* object,
6a74a719
ILT
4898 unsigned int,
4899 const char* group_section_name,
4900 const char* signature,
4901 const elfcpp::Shdr<64, false>& shdr,
8825ac63
ILT
4902 elfcpp::Elf_Word flags,
4903 std::vector<unsigned int>* shndxes);
6a74a719
ILT
4904#endif
4905
4906#ifdef HAVE_TARGET_64_BIG
4907template
4908void
4909Layout::layout_group<64, true>(Symbol_table* symtab,
6fa2a40b 4910 Sized_relobj_file<64, true>* object,
6a74a719
ILT
4911 unsigned int,
4912 const char* group_section_name,
4913 const char* signature,
4914 const elfcpp::Shdr<64, true>& shdr,
8825ac63
ILT
4915 elfcpp::Elf_Word flags,
4916 std::vector<unsigned int>* shndxes);
6a74a719
ILT
4917#endif
4918
730cdc88
ILT
4919#ifdef HAVE_TARGET_32_LITTLE
4920template
4921Output_section*
6fa2a40b 4922Layout::layout_eh_frame<32, false>(Sized_relobj_file<32, false>* object,
730cdc88
ILT
4923 const unsigned char* symbols,
4924 off_t symbols_size,
4925 const unsigned char* symbol_names,
4926 off_t symbol_names_size,
4927 unsigned int shndx,
4928 const elfcpp::Shdr<32, false>& shdr,
4929 unsigned int reloc_shndx,
4930 unsigned int reloc_type,
4931 off_t* off);
4932#endif
4933
4934#ifdef HAVE_TARGET_32_BIG
4935template
4936Output_section*
6fa2a40b
CC
4937Layout::layout_eh_frame<32, true>(Sized_relobj_file<32, true>* object,
4938 const unsigned char* symbols,
4939 off_t symbols_size,
730cdc88
ILT
4940 const unsigned char* symbol_names,
4941 off_t symbol_names_size,
4942 unsigned int shndx,
4943 const elfcpp::Shdr<32, true>& shdr,
4944 unsigned int reloc_shndx,
4945 unsigned int reloc_type,
4946 off_t* off);
4947#endif
4948
4949#ifdef HAVE_TARGET_64_LITTLE
4950template
4951Output_section*
6fa2a40b 4952Layout::layout_eh_frame<64, false>(Sized_relobj_file<64, false>* object,
730cdc88
ILT
4953 const unsigned char* symbols,
4954 off_t symbols_size,
4955 const unsigned char* symbol_names,
4956 off_t symbol_names_size,
4957 unsigned int shndx,
4958 const elfcpp::Shdr<64, false>& shdr,
4959 unsigned int reloc_shndx,
4960 unsigned int reloc_type,
4961 off_t* off);
4962#endif
4963
4964#ifdef HAVE_TARGET_64_BIG
4965template
4966Output_section*
6fa2a40b
CC
4967Layout::layout_eh_frame<64, true>(Sized_relobj_file<64, true>* object,
4968 const unsigned char* symbols,
4969 off_t symbols_size,
730cdc88
ILT
4970 const unsigned char* symbol_names,
4971 off_t symbol_names_size,
4972 unsigned int shndx,
4973 const elfcpp::Shdr<64, true>& shdr,
4974 unsigned int reloc_shndx,
4975 unsigned int reloc_type,
4976 off_t* off);
4977#endif
a2fb1b05
ILT
4978
4979} // End namespace gold.
This page took 0.489185 seconds and 4 git commands to generate.