1 // output.cc -- manage the output file for gold
20 // Output_data variables.
22 bool Output_data::sizes_are_fixed
;
24 // Output_data methods.
26 Output_data::~Output_data()
30 // Set the address and offset.
33 Output_data::set_address(uint64_t addr
, off_t off
)
35 this->address_
= addr
;
38 // Let the child class know.
39 this->do_set_address(addr
, off
);
42 // Return the default alignment for a size--32 or 64.
45 Output_data::default_alignment(int size
)
55 // Output_section_header methods. This currently assumes that the
56 // segment and section lists are complete at construction time.
58 Output_section_headers::Output_section_headers(
62 const Layout::Segment_list
* segment_list
,
63 const Layout::Section_list
* unattached_section_list
,
64 const Stringpool
* secnamepool
)
66 big_endian_(big_endian
),
68 segment_list_(segment_list
),
69 unattached_section_list_(unattached_section_list
),
70 secnamepool_(secnamepool
)
72 // Count all the sections. Start with 1 for the null section.
74 for (Layout::Segment_list::const_iterator p
= segment_list
->begin();
75 p
!= segment_list
->end();
77 if ((*p
)->type() == elfcpp::PT_LOAD
)
78 count
+= (*p
)->output_section_count();
79 count
+= unattached_section_list
->size();
83 shdr_size
= elfcpp::Elf_sizes
<32>::shdr_size
;
85 shdr_size
= elfcpp::Elf_sizes
<64>::shdr_size
;
89 this->set_data_size(count
* shdr_size
);
92 // Write out the section headers.
95 Output_section_headers::do_write(Output_file
* of
)
97 if (this->size_
== 32)
99 if (this->big_endian_
)
100 this->do_sized_write
<32, true>(of
);
102 this->do_sized_write
<32, false>(of
);
104 else if (this->size_
== 64)
106 if (this->big_endian_
)
107 this->do_sized_write
<64, true>(of
);
109 this->do_sized_write
<64, false>(of
);
115 template<int size
, bool big_endian
>
117 Output_section_headers::do_sized_write(Output_file
* of
)
119 off_t all_shdrs_size
= this->data_size();
120 unsigned char* view
= of
->get_output_view(this->offset(), all_shdrs_size
);
122 const int shdr_size
= elfcpp::Elf_sizes
<size
>::shdr_size
;
123 unsigned char* v
= view
;
126 typename
elfcpp::Shdr_write
<size
, big_endian
> oshdr(v
);
127 oshdr
.put_sh_name(0);
128 oshdr
.put_sh_type(elfcpp::SHT_NULL
);
129 oshdr
.put_sh_flags(0);
130 oshdr
.put_sh_addr(0);
131 oshdr
.put_sh_offset(0);
132 oshdr
.put_sh_size(0);
133 oshdr
.put_sh_link(0);
134 oshdr
.put_sh_info(0);
135 oshdr
.put_sh_addralign(0);
136 oshdr
.put_sh_entsize(0);
142 for (Layout::Segment_list::const_iterator p
= this->segment_list_
->begin();
143 p
!= this->segment_list_
->end();
145 v
= (*p
)->write_section_headers
SELECT_SIZE_ENDIAN_NAME(size
, big_endian
) (
146 this->layout_
, this->secnamepool_
, v
, &shndx
147 SELECT_SIZE_ENDIAN(size
, big_endian
));
148 for (Layout::Section_list::const_iterator p
=
149 this->unattached_section_list_
->begin();
150 p
!= this->unattached_section_list_
->end();
153 gold_assert(shndx
== (*p
)->out_shndx());
154 elfcpp::Shdr_write
<size
, big_endian
> oshdr(v
);
155 (*p
)->write_header(this->layout_
, this->secnamepool_
, &oshdr
);
160 of
->write_output_view(this->offset(), all_shdrs_size
, view
);
163 // Output_segment_header methods.
165 Output_segment_headers::Output_segment_headers(
168 const Layout::Segment_list
& segment_list
)
169 : size_(size
), big_endian_(big_endian
), segment_list_(segment_list
)
173 phdr_size
= elfcpp::Elf_sizes
<32>::phdr_size
;
175 phdr_size
= elfcpp::Elf_sizes
<64>::phdr_size
;
179 this->set_data_size(segment_list
.size() * phdr_size
);
183 Output_segment_headers::do_write(Output_file
* of
)
185 if (this->size_
== 32)
187 if (this->big_endian_
)
188 this->do_sized_write
<32, true>(of
);
190 this->do_sized_write
<32, false>(of
);
192 else if (this->size_
== 64)
194 if (this->big_endian_
)
195 this->do_sized_write
<64, true>(of
);
197 this->do_sized_write
<64, false>(of
);
203 template<int size
, bool big_endian
>
205 Output_segment_headers::do_sized_write(Output_file
* of
)
207 const int phdr_size
= elfcpp::Elf_sizes
<size
>::phdr_size
;
208 off_t all_phdrs_size
= this->segment_list_
.size() * phdr_size
;
209 unsigned char* view
= of
->get_output_view(this->offset(),
211 unsigned char* v
= view
;
212 for (Layout::Segment_list::const_iterator p
= this->segment_list_
.begin();
213 p
!= this->segment_list_
.end();
216 elfcpp::Phdr_write
<size
, big_endian
> ophdr(v
);
217 (*p
)->write_header(&ophdr
);
221 of
->write_output_view(this->offset(), all_phdrs_size
, view
);
224 // Output_file_header methods.
226 Output_file_header::Output_file_header(int size
,
228 const General_options
& options
,
229 const Target
* target
,
230 const Symbol_table
* symtab
,
231 const Output_segment_headers
* osh
)
233 big_endian_(big_endian
),
237 segment_header_(osh
),
238 section_header_(NULL
),
243 ehdr_size
= elfcpp::Elf_sizes
<32>::ehdr_size
;
245 ehdr_size
= elfcpp::Elf_sizes
<64>::ehdr_size
;
249 this->set_data_size(ehdr_size
);
252 // Set the section table information for a file header.
255 Output_file_header::set_section_info(const Output_section_headers
* shdrs
,
256 const Output_section
* shstrtab
)
258 this->section_header_
= shdrs
;
259 this->shstrtab_
= shstrtab
;
262 // Write out the file header.
265 Output_file_header::do_write(Output_file
* of
)
267 if (this->size_
== 32)
269 if (this->big_endian_
)
270 this->do_sized_write
<32, true>(of
);
272 this->do_sized_write
<32, false>(of
);
274 else if (this->size_
== 64)
276 if (this->big_endian_
)
277 this->do_sized_write
<64, true>(of
);
279 this->do_sized_write
<64, false>(of
);
285 // Write out the file header with appropriate size and endianess.
287 template<int size
, bool big_endian
>
289 Output_file_header::do_sized_write(Output_file
* of
)
291 gold_assert(this->offset() == 0);
293 int ehdr_size
= elfcpp::Elf_sizes
<size
>::ehdr_size
;
294 unsigned char* view
= of
->get_output_view(0, ehdr_size
);
295 elfcpp::Ehdr_write
<size
, big_endian
> oehdr(view
);
297 unsigned char e_ident
[elfcpp::EI_NIDENT
];
298 memset(e_ident
, 0, elfcpp::EI_NIDENT
);
299 e_ident
[elfcpp::EI_MAG0
] = elfcpp::ELFMAG0
;
300 e_ident
[elfcpp::EI_MAG1
] = elfcpp::ELFMAG1
;
301 e_ident
[elfcpp::EI_MAG2
] = elfcpp::ELFMAG2
;
302 e_ident
[elfcpp::EI_MAG3
] = elfcpp::ELFMAG3
;
304 e_ident
[elfcpp::EI_CLASS
] = elfcpp::ELFCLASS32
;
306 e_ident
[elfcpp::EI_CLASS
] = elfcpp::ELFCLASS64
;
309 e_ident
[elfcpp::EI_DATA
] = (big_endian
310 ? elfcpp::ELFDATA2MSB
311 : elfcpp::ELFDATA2LSB
);
312 e_ident
[elfcpp::EI_VERSION
] = elfcpp::EV_CURRENT
;
313 // FIXME: Some targets may need to set EI_OSABI and EI_ABIVERSION.
314 oehdr
.put_e_ident(e_ident
);
318 if (this->options_
.is_relocatable())
319 e_type
= elfcpp::ET_REL
;
321 e_type
= elfcpp::ET_EXEC
;
322 oehdr
.put_e_type(e_type
);
324 oehdr
.put_e_machine(this->target_
->machine_code());
325 oehdr
.put_e_version(elfcpp::EV_CURRENT
);
327 // FIXME: Need to support -e, and target specific entry symbol.
328 Symbol
* sym
= this->symtab_
->lookup("_start");
329 typename Sized_symbol
<size
>::Value_type v
;
334 Sized_symbol
<size
>* ssym
;
335 ssym
= this->symtab_
->get_sized_symbol
SELECT_SIZE_NAME(size
) (
336 sym
SELECT_SIZE(size
));
339 oehdr
.put_e_entry(v
);
341 oehdr
.put_e_phoff(this->segment_header_
->offset());
342 oehdr
.put_e_shoff(this->section_header_
->offset());
344 // FIXME: The target needs to set the flags.
345 oehdr
.put_e_flags(0);
347 oehdr
.put_e_ehsize(elfcpp::Elf_sizes
<size
>::ehdr_size
);
348 oehdr
.put_e_phentsize(elfcpp::Elf_sizes
<size
>::phdr_size
);
349 oehdr
.put_e_phnum(this->segment_header_
->data_size()
350 / elfcpp::Elf_sizes
<size
>::phdr_size
);
351 oehdr
.put_e_shentsize(elfcpp::Elf_sizes
<size
>::shdr_size
);
352 oehdr
.put_e_shnum(this->section_header_
->data_size()
353 / elfcpp::Elf_sizes
<size
>::shdr_size
);
354 oehdr
.put_e_shstrndx(this->shstrtab_
->out_shndx());
356 of
->write_output_view(0, ehdr_size
, view
);
359 // Output_data_const methods.
362 Output_data_const::do_write(Output_file
* of
)
364 of
->write(this->offset(), this->data_
.data(), this->data_
.size());
367 // Output_data_const_buffer methods.
370 Output_data_const_buffer::do_write(Output_file
* of
)
372 of
->write(this->offset(), this->p_
, this->data_size());
375 // Output_section_data methods.
377 // Record the output section, and set the entry size and such.
380 Output_section_data::set_output_section(Output_section
* os
)
382 gold_assert(this->output_section_
== NULL
);
383 this->output_section_
= os
;
384 this->do_adjust_output_section(os
);
387 // Return the section index of the output section.
390 Output_section_data::do_out_shndx() const
392 gold_assert(this->output_section_
!= NULL
);
393 return this->output_section_
->out_shndx();
396 // Output_data_strtab methods.
398 // Set the address. We don't actually care about the address, but we
399 // do set our final size.
402 Output_data_strtab::do_set_address(uint64_t, off_t
)
404 this->strtab_
->set_string_offsets();
405 this->set_data_size(this->strtab_
->get_strtab_size());
408 // Write out a string table.
411 Output_data_strtab::do_write(Output_file
* of
)
413 this->strtab_
->write(of
, this->offset());
416 // Output_reloc methods.
418 // Get the symbol index of a relocation.
420 template<bool dynamic
, int size
, bool big_endian
>
422 Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>::get_symbol_index()
426 switch (this->local_sym_index_
)
432 if (this->u1_
.gsym
== NULL
)
435 index
= this->u1_
.gsym
->dynsym_index();
437 index
= this->u1_
.gsym
->symtab_index();
442 index
= this->u1_
.os
->dynsym_index();
444 index
= this->u1_
.os
->symtab_index();
450 // FIXME: It seems that some targets may need to generate
451 // dynamic relocations against local symbols for some
452 // reasons. This will have to be addressed at some point.
456 index
= this->u1_
.relobj
->symtab_index(this->local_sym_index_
);
459 gold_assert(index
!= -1U);
463 // Write out the offset and info fields of a Rel or Rela relocation
466 template<bool dynamic
, int size
, bool big_endian
>
467 template<typename Write_rel
>
469 Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>::write_rel(
472 Address address
= this->address_
;
473 if (this->shndx_
!= INVALID_CODE
)
476 Output_section
* os
= this->u2_
.relobj
->output_section(this->shndx_
,
478 gold_assert(os
!= NULL
);
479 address
+= os
->address() + off
;
481 else if (this->u2_
.od
!= NULL
)
482 address
+= this->u2_
.od
->address();
483 wr
->put_r_offset(address
);
484 wr
->put_r_info(elfcpp::elf_r_info
<size
>(this->get_symbol_index(),
488 // Write out a Rel relocation.
490 template<bool dynamic
, int size
, bool big_endian
>
492 Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>::write(
493 unsigned char* pov
) const
495 elfcpp::Rel_write
<size
, big_endian
> orel(pov
);
496 this->write_rel(&orel
);
499 // Write out a Rela relocation.
501 template<bool dynamic
, int size
, bool big_endian
>
503 Output_reloc
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>::write(
504 unsigned char* pov
) const
506 elfcpp::Rela_write
<size
, big_endian
> orel(pov
);
507 this->rel_
.write_rel(&orel
);
508 orel
.put_r_addend(this->addend_
);
511 // Output_data_reloc_base methods.
513 // Adjust the output section.
515 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
517 Output_data_reloc_base
<sh_type
, dynamic
, size
, big_endian
>
518 ::do_adjust_output_section(Output_section
* os
)
520 if (sh_type
== elfcpp::SHT_REL
)
521 os
->set_entsize(elfcpp::Elf_sizes
<size
>::rel_size
);
522 else if (sh_type
== elfcpp::SHT_RELA
)
523 os
->set_entsize(elfcpp::Elf_sizes
<size
>::rela_size
);
527 os
->set_should_link_to_dynsym();
529 os
->set_should_link_to_symtab();
532 // Write out relocation data.
534 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
536 Output_data_reloc_base
<sh_type
, dynamic
, size
, big_endian
>::do_write(
539 const off_t off
= this->offset();
540 const off_t oview_size
= this->data_size();
541 unsigned char* const oview
= of
->get_output_view(off
, oview_size
);
543 unsigned char* pov
= oview
;
544 for (typename
Relocs::const_iterator p
= this->relocs_
.begin();
545 p
!= this->relocs_
.end();
552 gold_assert(pov
- oview
== oview_size
);
554 of
->write_output_view(off
, oview_size
, oview
);
556 // We no longer need the relocation entries.
557 this->relocs_
.clear();
560 // Output_data_got::Got_entry methods.
562 // Write out the entry.
564 template<int size
, bool big_endian
>
566 Output_data_got
<size
, big_endian
>::Got_entry::write(
567 const General_options
* options
,
568 unsigned char* pov
) const
572 switch (this->local_sym_index_
)
576 Symbol
* gsym
= this->u_
.gsym
;
578 // If the symbol is resolved locally, we need to write out its
579 // value. Otherwise we just write zero. The target code is
580 // responsible for creating a relocation entry to fill in the
582 if (gsym
->final_value_is_known(options
))
584 Sized_symbol
<size
>* sgsym
;
585 // This cast is a bit ugly. We don't want to put a
586 // virtual method in Symbol, because we want Symbol to be
587 // as small as possible.
588 sgsym
= static_cast<Sized_symbol
<size
>*>(gsym
);
589 val
= sgsym
->value();
595 val
= this->u_
.constant
;
602 elfcpp::Swap
<size
, big_endian
>::writeval(pov
, val
);
605 // Output_data_got methods.
607 // Add an entry for a global symbol to the GOT. This returns true if
608 // this is a new GOT entry, false if the symbol already had a GOT
611 template<int size
, bool big_endian
>
613 Output_data_got
<size
, big_endian
>::add_global(Symbol
* gsym
)
615 if (gsym
->has_got_offset())
618 this->entries_
.push_back(Got_entry(gsym
));
619 this->set_got_size();
620 gsym
->set_got_offset(this->last_got_offset());
624 // Write out the GOT.
626 template<int size
, bool big_endian
>
628 Output_data_got
<size
, big_endian
>::do_write(Output_file
* of
)
630 const int add
= size
/ 8;
632 const off_t off
= this->offset();
633 const off_t oview_size
= this->data_size();
634 unsigned char* const oview
= of
->get_output_view(off
, oview_size
);
636 unsigned char* pov
= oview
;
637 for (typename
Got_entries::const_iterator p
= this->entries_
.begin();
638 p
!= this->entries_
.end();
641 p
->write(this->options_
, pov
);
645 gold_assert(pov
- oview
== oview_size
);
647 of
->write_output_view(off
, oview_size
, oview
);
649 // We no longer need the GOT entries.
650 this->entries_
.clear();
653 // Output_data_dynamic::Dynamic_entry methods.
655 // Write out the entry.
657 template<int size
, bool big_endian
>
659 Output_data_dynamic::Dynamic_entry::write(
661 const Stringpool
* pool
662 ACCEPT_SIZE_ENDIAN
) const
664 typename
elfcpp::Elf_types
<size
>::Elf_WXword val
;
665 switch (this->classification_
)
671 case DYNAMIC_SECTION_ADDRESS
:
672 val
= this->u_
.od
->address();
675 case DYNAMIC_SECTION_SIZE
:
676 val
= this->u_
.od
->data_size();
681 const Sized_symbol
<size
>* s
=
682 static_cast<const Sized_symbol
<size
>*>(this->u_
.sym
);
688 val
= pool
->get_offset(this->u_
.str
);
695 elfcpp::Dyn_write
<size
, big_endian
> dw(pov
);
696 dw
.put_d_tag(this->tag_
);
700 // Output_data_dynamic methods.
702 // Adjust the output section to set the entry size.
705 Output_data_dynamic::do_adjust_output_section(Output_section
* os
)
707 if (this->target_
->get_size() == 32)
708 os
->set_entsize(elfcpp::Elf_sizes
<32>::dyn_size
);
709 else if (this->target_
->get_size() == 64)
710 os
->set_entsize(elfcpp::Elf_sizes
<64>::dyn_size
);
715 // Set the final data size.
718 Output_data_dynamic::do_set_address(uint64_t, off_t
)
720 // Add the terminating entry.
721 this->add_constant(elfcpp::DT_NULL
, 0);
724 if (this->target_
->get_size() == 32)
725 dyn_size
= elfcpp::Elf_sizes
<32>::dyn_size
;
726 else if (this->target_
->get_size() == 64)
727 dyn_size
= elfcpp::Elf_sizes
<64>::dyn_size
;
730 this->set_data_size(this->entries_
.size() * dyn_size
);
733 // Write out the dynamic entries.
736 Output_data_dynamic::do_write(Output_file
* of
)
738 if (this->target_
->get_size() == 32)
740 if (this->target_
->is_big_endian())
741 this->sized_write
<32, true>(of
);
743 this->sized_write
<32, false>(of
);
745 else if (this->target_
->get_size() == 64)
747 if (this->target_
->is_big_endian())
748 this->sized_write
<64, true>(of
);
750 this->sized_write
<64, false>(of
);
756 template<int size
, bool big_endian
>
758 Output_data_dynamic::sized_write(Output_file
* of
)
760 const int dyn_size
= elfcpp::Elf_sizes
<size
>::dyn_size
;
762 const off_t offset
= this->offset();
763 const off_t oview_size
= this->data_size();
764 unsigned char* const oview
= of
->get_output_view(offset
, oview_size
);
766 unsigned char* pov
= oview
;
767 for (typename
Dynamic_entries::const_iterator p
= this->entries_
.begin();
768 p
!= this->entries_
.end();
771 p
->write
SELECT_SIZE_ENDIAN_NAME(size
, big_endian
)(
772 pov
, this->pool_
SELECT_SIZE_ENDIAN(size
, big_endian
));
776 gold_assert(pov
- oview
== oview_size
);
778 of
->write_output_view(offset
, oview_size
, oview
);
780 // We no longer need the dynamic entries.
781 this->entries_
.clear();
784 // Output_section::Input_section methods.
786 // Return the data size. For an input section we store the size here.
787 // For an Output_section_data, we have to ask it for the size.
790 Output_section::Input_section::data_size() const
792 if (this->is_input_section())
793 return this->data_size_
;
795 return this->u_
.posd
->data_size();
798 // Set the address and file offset.
801 Output_section::Input_section::set_address(uint64_t addr
, off_t off
,
804 if (this->is_input_section())
805 this->u_
.object
->set_section_offset(this->shndx_
, off
- secoff
);
807 this->u_
.posd
->set_address(addr
, off
);
810 // Write out the data. We don't have to do anything for an input
811 // section--they are handled via Object::relocate--but this is where
812 // we write out the data for an Output_section_data.
815 Output_section::Input_section::write(Output_file
* of
)
817 if (!this->is_input_section())
818 this->u_
.posd
->write(of
);
821 // Output_section methods.
823 // Construct an Output_section. NAME will point into a Stringpool.
825 Output_section::Output_section(const char* name
, elfcpp::Elf_Word type
,
826 elfcpp::Elf_Xword flags
, bool may_add_data
)
840 first_input_offset_(0),
841 may_add_data_(may_add_data
),
842 needs_symtab_index_(false),
843 needs_dynsym_index_(false),
844 should_link_to_symtab_(false),
845 should_link_to_dynsym_(false)
849 Output_section::~Output_section()
853 // Set the entry size.
856 Output_section::set_entsize(uint64_t v
)
858 if (this->entsize_
== 0)
861 gold_assert(this->entsize_
== v
);
864 // Add the input section SHNDX, with header SHDR, named SECNAME, in
865 // OBJECT, to the Output_section. Return the offset of the input
866 // section within the output section. We don't always keep track of
867 // input sections for an Output_section. Instead, each Object keeps
868 // track of the Output_section for each of its input sections.
870 template<int size
, bool big_endian
>
872 Output_section::add_input_section(Relobj
* object
, unsigned int shndx
,
874 const elfcpp::Shdr
<size
, big_endian
>& shdr
)
876 gold_assert(this->may_add_data_
);
878 elfcpp::Elf_Xword addralign
= shdr
.get_sh_addralign();
879 if ((addralign
& (addralign
- 1)) != 0)
881 fprintf(stderr
, _("%s: %s: invalid alignment %lu for section \"%s\"\n"),
882 program_name
, object
->name().c_str(),
883 static_cast<unsigned long>(addralign
), secname
);
887 if (addralign
> this->addralign_
)
888 this->addralign_
= addralign
;
890 off_t ssize
= this->data_size();
891 ssize
= align_address(ssize
, addralign
);
892 this->set_data_size(ssize
+ shdr
.get_sh_size());
894 // We need to keep track of this section if we are already keeping
895 // track of sections, or if we are relaxing. FIXME: Add test for
897 if (! this->input_sections_
.empty())
898 this->input_sections_
.push_back(Input_section(object
, shndx
,
905 // Add arbitrary data to an output section.
908 Output_section::add_output_section_data(Output_section_data
* posd
)
910 gold_assert(this->may_add_data_
);
912 if (this->input_sections_
.empty())
913 this->first_input_offset_
= this->data_size();
915 this->input_sections_
.push_back(Input_section(posd
));
917 uint64_t addralign
= posd
->addralign();
918 if (addralign
> this->addralign_
)
919 this->addralign_
= addralign
;
921 posd
->set_output_section(this);
924 // Set the address of an Output_section. This is where we handle
925 // setting the addresses of any Output_section_data objects.
928 Output_section::do_set_address(uint64_t address
, off_t startoff
)
930 if (this->input_sections_
.empty())
933 off_t off
= startoff
+ this->first_input_offset_
;
934 for (Input_section_list::iterator p
= this->input_sections_
.begin();
935 p
!= this->input_sections_
.end();
938 off
= align_address(off
, p
->addralign());
939 p
->set_address(address
+ (off
- startoff
), off
, startoff
);
940 off
+= p
->data_size();
943 this->set_data_size(off
- startoff
);
946 // Write the section header to *OSHDR.
948 template<int size
, bool big_endian
>
950 Output_section::write_header(const Layout
* layout
,
951 const Stringpool
* secnamepool
,
952 elfcpp::Shdr_write
<size
, big_endian
>* oshdr
) const
954 oshdr
->put_sh_name(secnamepool
->get_offset(this->name_
));
955 oshdr
->put_sh_type(this->type_
);
956 oshdr
->put_sh_flags(this->flags_
);
957 oshdr
->put_sh_addr(this->address());
958 oshdr
->put_sh_offset(this->offset());
959 oshdr
->put_sh_size(this->data_size());
960 if (this->link_section_
!= NULL
)
961 oshdr
->put_sh_link(this->link_section_
->out_shndx());
962 else if (this->should_link_to_symtab_
)
963 oshdr
->put_sh_link(layout
->symtab_section()->out_shndx());
964 else if (this->should_link_to_dynsym_
)
965 oshdr
->put_sh_link(layout
->dynsym_section()->out_shndx());
967 oshdr
->put_sh_link(this->link_
);
968 if (this->info_section_
!= NULL
)
969 oshdr
->put_sh_info(this->info_section_
->out_shndx());
971 oshdr
->put_sh_info(this->info_
);
972 oshdr
->put_sh_addralign(this->addralign_
);
973 oshdr
->put_sh_entsize(this->entsize_
);
976 // Write out the data. For input sections the data is written out by
977 // Object::relocate, but we have to handle Output_section_data objects
981 Output_section::do_write(Output_file
* of
)
983 for (Input_section_list::iterator p
= this->input_sections_
.begin();
984 p
!= this->input_sections_
.end();
989 // Output segment methods.
991 Output_segment::Output_segment(elfcpp::Elf_Word type
, elfcpp::Elf_Word flags
)
1002 is_align_known_(false)
1006 // Add an Output_section to an Output_segment.
1009 Output_segment::add_output_section(Output_section
* os
,
1010 elfcpp::Elf_Word seg_flags
,
1013 gold_assert((os
->flags() & elfcpp::SHF_ALLOC
) != 0);
1014 gold_assert(!this->is_align_known_
);
1016 // Update the segment flags.
1017 this->flags_
|= seg_flags
;
1019 Output_segment::Output_data_list
* pdl
;
1020 if (os
->type() == elfcpp::SHT_NOBITS
)
1021 pdl
= &this->output_bss_
;
1023 pdl
= &this->output_data_
;
1025 // So that PT_NOTE segments will work correctly, we need to ensure
1026 // that all SHT_NOTE sections are adjacent. This will normally
1027 // happen automatically, because all the SHT_NOTE input sections
1028 // will wind up in the same output section. However, it is possible
1029 // for multiple SHT_NOTE input sections to have different section
1030 // flags, and thus be in different output sections, but for the
1031 // different section flags to map into the same segment flags and
1032 // thus the same output segment.
1034 // Note that while there may be many input sections in an output
1035 // section, there are normally only a few output sections in an
1036 // output segment. This loop is expected to be fast.
1038 if (os
->type() == elfcpp::SHT_NOTE
&& !pdl
->empty())
1040 Output_segment::Output_data_list::iterator p
= pdl
->end();
1044 if ((*p
)->is_section_type(elfcpp::SHT_NOTE
))
1046 // We don't worry about the FRONT parameter.
1052 while (p
!= pdl
->begin());
1055 // Similarly, so that PT_TLS segments will work, we need to group
1056 // SHF_TLS sections. An SHF_TLS/SHT_NOBITS section is a special
1057 // case: we group the SHF_TLS/SHT_NOBITS sections right after the
1058 // SHF_TLS/SHT_PROGBITS sections. This lets us set up PT_TLS
1060 if ((os
->flags() & elfcpp::SHF_TLS
) != 0 && !this->output_data_
.empty())
1062 pdl
= &this->output_data_
;
1063 bool nobits
= os
->type() == elfcpp::SHT_NOBITS
;
1064 bool sawtls
= false;
1065 Output_segment::Output_data_list::iterator p
= pdl
->end();
1070 if ((*p
)->is_section_flag_set(elfcpp::SHF_TLS
))
1073 // Put a NOBITS section after the first TLS section.
1074 // But a PROGBITS section after the first TLS/PROGBITS
1076 insert
= nobits
|| !(*p
)->is_section_type(elfcpp::SHT_NOBITS
);
1080 // If we've gone past the TLS sections, but we've seen a
1081 // TLS section, then we need to insert this section now.
1087 // We don't worry about the FRONT parameter.
1093 while (p
!= pdl
->begin());
1095 // There are no TLS sections yet; put this one at the requested
1096 // location in the section list.
1100 pdl
->push_front(os
);
1105 // Add an Output_data (which is not an Output_section) to the start of
1109 Output_segment::add_initial_output_data(Output_data
* od
)
1111 gold_assert(!this->is_align_known_
);
1112 this->output_data_
.push_front(od
);
1115 // Return the maximum alignment of the Output_data in Output_segment.
1116 // Once we compute this, we prohibit new sections from being added.
1119 Output_segment::addralign()
1121 if (!this->is_align_known_
)
1125 addralign
= Output_segment::maximum_alignment(&this->output_data_
);
1126 if (addralign
> this->align_
)
1127 this->align_
= addralign
;
1129 addralign
= Output_segment::maximum_alignment(&this->output_bss_
);
1130 if (addralign
> this->align_
)
1131 this->align_
= addralign
;
1133 this->is_align_known_
= true;
1136 return this->align_
;
1139 // Return the maximum alignment of a list of Output_data.
1142 Output_segment::maximum_alignment(const Output_data_list
* pdl
)
1145 for (Output_data_list::const_iterator p
= pdl
->begin();
1149 uint64_t addralign
= (*p
)->addralign();
1150 if (addralign
> ret
)
1156 // Set the section addresses for an Output_segment. ADDR is the
1157 // address and *POFF is the file offset. Set the section indexes
1158 // starting with *PSHNDX. Return the address of the immediately
1159 // following segment. Update *POFF and *PSHNDX.
1162 Output_segment::set_section_addresses(uint64_t addr
, off_t
* poff
,
1163 unsigned int* pshndx
)
1165 gold_assert(this->type_
== elfcpp::PT_LOAD
);
1167 this->vaddr_
= addr
;
1168 this->paddr_
= addr
;
1170 off_t orig_off
= *poff
;
1171 this->offset_
= orig_off
;
1173 *poff
= align_address(*poff
, this->addralign());
1175 addr
= this->set_section_list_addresses(&this->output_data_
, addr
, poff
,
1177 this->filesz_
= *poff
- orig_off
;
1181 uint64_t ret
= this->set_section_list_addresses(&this->output_bss_
, addr
,
1183 this->memsz_
= *poff
- orig_off
;
1185 // Ignore the file offset adjustments made by the BSS Output_data
1192 // Set the addresses in a list of Output_data structures.
1195 Output_segment::set_section_list_addresses(Output_data_list
* pdl
,
1196 uint64_t addr
, off_t
* poff
,
1197 unsigned int* pshndx
)
1199 off_t startoff
= *poff
;
1201 off_t off
= startoff
;
1202 for (Output_data_list::iterator p
= pdl
->begin();
1206 off
= align_address(off
, (*p
)->addralign());
1207 (*p
)->set_address(addr
+ (off
- startoff
), off
);
1209 // Unless this is a PT_TLS segment, we want to ignore the size
1210 // of a SHF_TLS/SHT_NOBITS section. Such a section does not
1211 // affect the size of a PT_LOAD segment.
1212 if (this->type_
== elfcpp::PT_TLS
1213 || !(*p
)->is_section_flag_set(elfcpp::SHF_TLS
)
1214 || !(*p
)->is_section_type(elfcpp::SHT_NOBITS
))
1215 off
+= (*p
)->data_size();
1217 if ((*p
)->is_section())
1219 (*p
)->set_out_shndx(*pshndx
);
1225 return addr
+ (off
- startoff
);
1228 // For a non-PT_LOAD segment, set the offset from the sections, if
1232 Output_segment::set_offset()
1234 gold_assert(this->type_
!= elfcpp::PT_LOAD
);
1236 if (this->output_data_
.empty() && this->output_bss_
.empty())
1247 const Output_data
* first
;
1248 if (this->output_data_
.empty())
1249 first
= this->output_bss_
.front();
1251 first
= this->output_data_
.front();
1252 this->vaddr_
= first
->address();
1253 this->paddr_
= this->vaddr_
;
1254 this->offset_
= first
->offset();
1256 if (this->output_data_
.empty())
1260 const Output_data
* last_data
= this->output_data_
.back();
1261 this->filesz_
= (last_data
->address()
1262 + last_data
->data_size()
1266 const Output_data
* last
;
1267 if (this->output_bss_
.empty())
1268 last
= this->output_data_
.back();
1270 last
= this->output_bss_
.back();
1271 this->memsz_
= (last
->address()
1276 // Return the number of Output_sections in an Output_segment.
1279 Output_segment::output_section_count() const
1281 return (this->output_section_count_list(&this->output_data_
)
1282 + this->output_section_count_list(&this->output_bss_
));
1285 // Return the number of Output_sections in an Output_data_list.
1288 Output_segment::output_section_count_list(const Output_data_list
* pdl
) const
1290 unsigned int count
= 0;
1291 for (Output_data_list::const_iterator p
= pdl
->begin();
1295 if ((*p
)->is_section())
1301 // Write the segment data into *OPHDR.
1303 template<int size
, bool big_endian
>
1305 Output_segment::write_header(elfcpp::Phdr_write
<size
, big_endian
>* ophdr
)
1307 ophdr
->put_p_type(this->type_
);
1308 ophdr
->put_p_offset(this->offset_
);
1309 ophdr
->put_p_vaddr(this->vaddr_
);
1310 ophdr
->put_p_paddr(this->paddr_
);
1311 ophdr
->put_p_filesz(this->filesz_
);
1312 ophdr
->put_p_memsz(this->memsz_
);
1313 ophdr
->put_p_flags(this->flags_
);
1314 ophdr
->put_p_align(this->addralign());
1317 // Write the section headers into V.
1319 template<int size
, bool big_endian
>
1321 Output_segment::write_section_headers(const Layout
* layout
,
1322 const Stringpool
* secnamepool
,
1324 unsigned int *pshndx
1325 ACCEPT_SIZE_ENDIAN
) const
1327 // Every section that is attached to a segment must be attached to a
1328 // PT_LOAD segment, so we only write out section headers for PT_LOAD
1330 if (this->type_
!= elfcpp::PT_LOAD
)
1333 v
= this->write_section_headers_list
1334 SELECT_SIZE_ENDIAN_NAME(size
, big_endian
) (
1335 layout
, secnamepool
, &this->output_data_
, v
, pshndx
1336 SELECT_SIZE_ENDIAN(size
, big_endian
));
1337 v
= this->write_section_headers_list
1338 SELECT_SIZE_ENDIAN_NAME(size
, big_endian
) (
1339 layout
, secnamepool
, &this->output_bss_
, v
, pshndx
1340 SELECT_SIZE_ENDIAN(size
, big_endian
));
1344 template<int size
, bool big_endian
>
1346 Output_segment::write_section_headers_list(const Layout
* layout
,
1347 const Stringpool
* secnamepool
,
1348 const Output_data_list
* pdl
,
1350 unsigned int* pshndx
1351 ACCEPT_SIZE_ENDIAN
) const
1353 const int shdr_size
= elfcpp::Elf_sizes
<size
>::shdr_size
;
1354 for (Output_data_list::const_iterator p
= pdl
->begin();
1358 if ((*p
)->is_section())
1360 const Output_section
* ps
= static_cast<const Output_section
*>(*p
);
1361 gold_assert(*pshndx
== ps
->out_shndx());
1362 elfcpp::Shdr_write
<size
, big_endian
> oshdr(v
);
1363 ps
->write_header(layout
, secnamepool
, &oshdr
);
1371 // Output_file methods.
1373 Output_file::Output_file(const General_options
& options
)
1374 : options_(options
),
1375 name_(options
.output_file_name()),
1382 // Open the output file.
1385 Output_file::open(off_t file_size
)
1387 this->file_size_
= file_size
;
1389 int mode
= this->options_
.is_relocatable() ? 0666 : 0777;
1390 int o
= ::open(this->name_
, O_RDWR
| O_CREAT
| O_TRUNC
, mode
);
1393 fprintf(stderr
, _("%s: %s: open: %s\n"),
1394 program_name
, this->name_
, strerror(errno
));
1399 // Write out one byte to make the file the right size.
1400 if (::lseek(o
, file_size
- 1, SEEK_SET
) < 0)
1402 fprintf(stderr
, _("%s: %s: lseek: %s\n"),
1403 program_name
, this->name_
, strerror(errno
));
1407 if (::write(o
, &b
, 1) != 1)
1409 fprintf(stderr
, _("%s: %s: write: %s\n"),
1410 program_name
, this->name_
, strerror(errno
));
1414 // Map the file into memory.
1415 void* base
= ::mmap(NULL
, file_size
, PROT_READ
| PROT_WRITE
,
1417 if (base
== MAP_FAILED
)
1419 fprintf(stderr
, _("%s: %s: mmap: %s\n"),
1420 program_name
, this->name_
, strerror(errno
));
1423 this->base_
= static_cast<unsigned char*>(base
);
1426 // Close the output file.
1429 Output_file::close()
1431 if (::munmap(this->base_
, this->file_size_
) < 0)
1433 fprintf(stderr
, _("%s: %s: munmap: %s\n"),
1434 program_name
, this->name_
, strerror(errno
));
1439 if (::close(this->o_
) < 0)
1441 fprintf(stderr
, _("%s: %s: close: %s\n"),
1442 program_name
, this->name_
, strerror(errno
));
1448 // Instantiate the templates we need. We could use the configure
1449 // script to restrict this to only the ones for implemented targets.
1453 Output_section::add_input_section
<32, false>(
1456 const char* secname
,
1457 const elfcpp::Shdr
<32, false>& shdr
);
1461 Output_section::add_input_section
<32, true>(
1464 const char* secname
,
1465 const elfcpp::Shdr
<32, true>& shdr
);
1469 Output_section::add_input_section
<64, false>(
1472 const char* secname
,
1473 const elfcpp::Shdr
<64, false>& shdr
);
1477 Output_section::add_input_section
<64, true>(
1480 const char* secname
,
1481 const elfcpp::Shdr
<64, true>& shdr
);
1484 class Output_data_reloc
<elfcpp::SHT_REL
, false, 32, false>;
1487 class Output_data_reloc
<elfcpp::SHT_REL
, false, 32, true>;
1490 class Output_data_reloc
<elfcpp::SHT_REL
, false, 64, false>;
1493 class Output_data_reloc
<elfcpp::SHT_REL
, false, 64, true>;
1496 class Output_data_reloc
<elfcpp::SHT_REL
, true, 32, false>;
1499 class Output_data_reloc
<elfcpp::SHT_REL
, true, 32, true>;
1502 class Output_data_reloc
<elfcpp::SHT_REL
, true, 64, false>;
1505 class Output_data_reloc
<elfcpp::SHT_REL
, true, 64, true>;
1508 class Output_data_reloc
<elfcpp::SHT_RELA
, false, 32, false>;
1511 class Output_data_reloc
<elfcpp::SHT_RELA
, false, 32, true>;
1514 class Output_data_reloc
<elfcpp::SHT_RELA
, false, 64, false>;
1517 class Output_data_reloc
<elfcpp::SHT_RELA
, false, 64, true>;
1520 class Output_data_reloc
<elfcpp::SHT_RELA
, true, 32, false>;
1523 class Output_data_reloc
<elfcpp::SHT_RELA
, true, 32, true>;
1526 class Output_data_reloc
<elfcpp::SHT_RELA
, true, 64, false>;
1529 class Output_data_reloc
<elfcpp::SHT_RELA
, true, 64, true>;
1532 class Output_data_got
<32, false>;
1535 class Output_data_got
<32, true>;
1538 class Output_data_got
<64, false>;
1541 class Output_data_got
<64, true>;
1543 } // End namespace gold.