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