2007-07-26 Michael Snyder <msnyder@access-company.com>
[binutils.git] / gold / output.cc
blob2a7400def77ca342530fde4e203532150d153cc8
1 // output.cc -- manage the output file for gold
3 #include "gold.h"
5 #include <cstdlib>
6 #include <cerrno>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <sys/mman.h>
10 #include <algorithm>
12 #include "object.h"
13 #include "symtab.h"
14 #include "reloc.h"
15 #include "merge.h"
16 #include "output.h"
18 namespace gold
21 // Output_data variables.
23 bool Output_data::sizes_are_fixed;
25 // Output_data methods.
27 Output_data::~Output_data()
31 // Set the address and offset.
33 void
34 Output_data::set_address(uint64_t addr, off_t off)
36 this->address_ = addr;
37 this->offset_ = off;
39 // Let the child class know.
40 this->do_set_address(addr, off);
43 // Return the default alignment for a size--32 or 64.
45 uint64_t
46 Output_data::default_alignment(int size)
48 if (size == 32)
49 return 4;
50 else if (size == 64)
51 return 8;
52 else
53 gold_unreachable();
56 // Output_section_header methods. This currently assumes that the
57 // segment and section lists are complete at construction time.
59 Output_section_headers::Output_section_headers(
60 int size,
61 bool big_endian,
62 const Layout* layout,
63 const Layout::Segment_list* segment_list,
64 const Layout::Section_list* unattached_section_list,
65 const Stringpool* secnamepool)
66 : size_(size),
67 big_endian_(big_endian),
68 layout_(layout),
69 segment_list_(segment_list),
70 unattached_section_list_(unattached_section_list),
71 secnamepool_(secnamepool)
73 // Count all the sections. Start with 1 for the null section.
74 off_t count = 1;
75 for (Layout::Segment_list::const_iterator p = segment_list->begin();
76 p != segment_list->end();
77 ++p)
78 if ((*p)->type() == elfcpp::PT_LOAD)
79 count += (*p)->output_section_count();
80 count += unattached_section_list->size();
82 int shdr_size;
83 if (size == 32)
84 shdr_size = elfcpp::Elf_sizes<32>::shdr_size;
85 else if (size == 64)
86 shdr_size = elfcpp::Elf_sizes<64>::shdr_size;
87 else
88 gold_unreachable();
90 this->set_data_size(count * shdr_size);
93 // Write out the section headers.
95 void
96 Output_section_headers::do_write(Output_file* of)
98 if (this->size_ == 32)
100 if (this->big_endian_)
101 this->do_sized_write<32, true>(of);
102 else
103 this->do_sized_write<32, false>(of);
105 else if (this->size_ == 64)
107 if (this->big_endian_)
108 this->do_sized_write<64, true>(of);
109 else
110 this->do_sized_write<64, false>(of);
112 else
113 gold_unreachable();
116 template<int size, bool big_endian>
117 void
118 Output_section_headers::do_sized_write(Output_file* of)
120 off_t all_shdrs_size = this->data_size();
121 unsigned char* view = of->get_output_view(this->offset(), all_shdrs_size);
123 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
124 unsigned char* v = view;
127 typename elfcpp::Shdr_write<size, big_endian> oshdr(v);
128 oshdr.put_sh_name(0);
129 oshdr.put_sh_type(elfcpp::SHT_NULL);
130 oshdr.put_sh_flags(0);
131 oshdr.put_sh_addr(0);
132 oshdr.put_sh_offset(0);
133 oshdr.put_sh_size(0);
134 oshdr.put_sh_link(0);
135 oshdr.put_sh_info(0);
136 oshdr.put_sh_addralign(0);
137 oshdr.put_sh_entsize(0);
140 v += shdr_size;
142 unsigned shndx = 1;
143 for (Layout::Segment_list::const_iterator p = this->segment_list_->begin();
144 p != this->segment_list_->end();
145 ++p)
146 v = (*p)->write_section_headers SELECT_SIZE_ENDIAN_NAME(size, big_endian) (
147 this->layout_, this->secnamepool_, v, &shndx
148 SELECT_SIZE_ENDIAN(size, big_endian));
149 for (Layout::Section_list::const_iterator p =
150 this->unattached_section_list_->begin();
151 p != this->unattached_section_list_->end();
152 ++p)
154 gold_assert(shndx == (*p)->out_shndx());
155 elfcpp::Shdr_write<size, big_endian> oshdr(v);
156 (*p)->write_header(this->layout_, this->secnamepool_, &oshdr);
157 v += shdr_size;
158 ++shndx;
161 of->write_output_view(this->offset(), all_shdrs_size, view);
164 // Output_segment_header methods.
166 Output_segment_headers::Output_segment_headers(
167 int size,
168 bool big_endian,
169 const Layout::Segment_list& segment_list)
170 : size_(size), big_endian_(big_endian), segment_list_(segment_list)
172 int phdr_size;
173 if (size == 32)
174 phdr_size = elfcpp::Elf_sizes<32>::phdr_size;
175 else if (size == 64)
176 phdr_size = elfcpp::Elf_sizes<64>::phdr_size;
177 else
178 gold_unreachable();
180 this->set_data_size(segment_list.size() * phdr_size);
183 void
184 Output_segment_headers::do_write(Output_file* of)
186 if (this->size_ == 32)
188 if (this->big_endian_)
189 this->do_sized_write<32, true>(of);
190 else
191 this->do_sized_write<32, false>(of);
193 else if (this->size_ == 64)
195 if (this->big_endian_)
196 this->do_sized_write<64, true>(of);
197 else
198 this->do_sized_write<64, false>(of);
200 else
201 gold_unreachable();
204 template<int size, bool big_endian>
205 void
206 Output_segment_headers::do_sized_write(Output_file* of)
208 const int phdr_size = elfcpp::Elf_sizes<size>::phdr_size;
209 off_t all_phdrs_size = this->segment_list_.size() * phdr_size;
210 unsigned char* view = of->get_output_view(this->offset(),
211 all_phdrs_size);
212 unsigned char* v = view;
213 for (Layout::Segment_list::const_iterator p = this->segment_list_.begin();
214 p != this->segment_list_.end();
215 ++p)
217 elfcpp::Phdr_write<size, big_endian> ophdr(v);
218 (*p)->write_header(&ophdr);
219 v += phdr_size;
222 of->write_output_view(this->offset(), all_phdrs_size, view);
225 // Output_file_header methods.
227 Output_file_header::Output_file_header(int size,
228 bool big_endian,
229 const General_options& options,
230 const Target* target,
231 const Symbol_table* symtab,
232 const Output_segment_headers* osh)
233 : size_(size),
234 big_endian_(big_endian),
235 options_(options),
236 target_(target),
237 symtab_(symtab),
238 segment_header_(osh),
239 section_header_(NULL),
240 shstrtab_(NULL)
242 int ehdr_size;
243 if (size == 32)
244 ehdr_size = elfcpp::Elf_sizes<32>::ehdr_size;
245 else if (size == 64)
246 ehdr_size = elfcpp::Elf_sizes<64>::ehdr_size;
247 else
248 gold_unreachable();
250 this->set_data_size(ehdr_size);
253 // Set the section table information for a file header.
255 void
256 Output_file_header::set_section_info(const Output_section_headers* shdrs,
257 const Output_section* shstrtab)
259 this->section_header_ = shdrs;
260 this->shstrtab_ = shstrtab;
263 // Write out the file header.
265 void
266 Output_file_header::do_write(Output_file* of)
268 if (this->size_ == 32)
270 if (this->big_endian_)
271 this->do_sized_write<32, true>(of);
272 else
273 this->do_sized_write<32, false>(of);
275 else if (this->size_ == 64)
277 if (this->big_endian_)
278 this->do_sized_write<64, true>(of);
279 else
280 this->do_sized_write<64, false>(of);
282 else
283 gold_unreachable();
286 // Write out the file header with appropriate size and endianess.
288 template<int size, bool big_endian>
289 void
290 Output_file_header::do_sized_write(Output_file* of)
292 gold_assert(this->offset() == 0);
294 int ehdr_size = elfcpp::Elf_sizes<size>::ehdr_size;
295 unsigned char* view = of->get_output_view(0, ehdr_size);
296 elfcpp::Ehdr_write<size, big_endian> oehdr(view);
298 unsigned char e_ident[elfcpp::EI_NIDENT];
299 memset(e_ident, 0, elfcpp::EI_NIDENT);
300 e_ident[elfcpp::EI_MAG0] = elfcpp::ELFMAG0;
301 e_ident[elfcpp::EI_MAG1] = elfcpp::ELFMAG1;
302 e_ident[elfcpp::EI_MAG2] = elfcpp::ELFMAG2;
303 e_ident[elfcpp::EI_MAG3] = elfcpp::ELFMAG3;
304 if (size == 32)
305 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS32;
306 else if (size == 64)
307 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS64;
308 else
309 gold_unreachable();
310 e_ident[elfcpp::EI_DATA] = (big_endian
311 ? elfcpp::ELFDATA2MSB
312 : elfcpp::ELFDATA2LSB);
313 e_ident[elfcpp::EI_VERSION] = elfcpp::EV_CURRENT;
314 // FIXME: Some targets may need to set EI_OSABI and EI_ABIVERSION.
315 oehdr.put_e_ident(e_ident);
317 elfcpp::ET e_type;
318 // FIXME: ET_DYN.
319 if (this->options_.is_relocatable())
320 e_type = elfcpp::ET_REL;
321 else
322 e_type = elfcpp::ET_EXEC;
323 oehdr.put_e_type(e_type);
325 oehdr.put_e_machine(this->target_->machine_code());
326 oehdr.put_e_version(elfcpp::EV_CURRENT);
328 // FIXME: Need to support -e, and target specific entry symbol.
329 Symbol* sym = this->symtab_->lookup("_start");
330 typename Sized_symbol<size>::Value_type v;
331 if (sym == NULL)
332 v = 0;
333 else
335 Sized_symbol<size>* ssym;
336 ssym = this->symtab_->get_sized_symbol SELECT_SIZE_NAME(size) (
337 sym SELECT_SIZE(size));
338 v = ssym->value();
340 oehdr.put_e_entry(v);
342 oehdr.put_e_phoff(this->segment_header_->offset());
343 oehdr.put_e_shoff(this->section_header_->offset());
345 // FIXME: The target needs to set the flags.
346 oehdr.put_e_flags(0);
348 oehdr.put_e_ehsize(elfcpp::Elf_sizes<size>::ehdr_size);
349 oehdr.put_e_phentsize(elfcpp::Elf_sizes<size>::phdr_size);
350 oehdr.put_e_phnum(this->segment_header_->data_size()
351 / elfcpp::Elf_sizes<size>::phdr_size);
352 oehdr.put_e_shentsize(elfcpp::Elf_sizes<size>::shdr_size);
353 oehdr.put_e_shnum(this->section_header_->data_size()
354 / elfcpp::Elf_sizes<size>::shdr_size);
355 oehdr.put_e_shstrndx(this->shstrtab_->out_shndx());
357 of->write_output_view(0, ehdr_size, view);
360 // Output_data_const methods.
362 void
363 Output_data_const::do_write(Output_file* of)
365 of->write(this->offset(), this->data_.data(), this->data_.size());
368 // Output_data_const_buffer methods.
370 void
371 Output_data_const_buffer::do_write(Output_file* of)
373 of->write(this->offset(), this->p_, this->data_size());
376 // Output_section_data methods.
378 // Record the output section, and set the entry size and such.
380 void
381 Output_section_data::set_output_section(Output_section* os)
383 gold_assert(this->output_section_ == NULL);
384 this->output_section_ = os;
385 this->do_adjust_output_section(os);
388 // Return the section index of the output section.
390 unsigned int
391 Output_section_data::do_out_shndx() const
393 gold_assert(this->output_section_ != NULL);
394 return this->output_section_->out_shndx();
397 // Output_data_strtab methods.
399 // Set the address. We don't actually care about the address, but we
400 // do set our final size.
402 void
403 Output_data_strtab::do_set_address(uint64_t, off_t)
405 this->strtab_->set_string_offsets();
406 this->set_data_size(this->strtab_->get_strtab_size());
409 // Write out a string table.
411 void
412 Output_data_strtab::do_write(Output_file* of)
414 this->strtab_->write(of, this->offset());
417 // Output_reloc methods.
419 // Get the symbol index of a relocation.
421 template<bool dynamic, int size, bool big_endian>
422 unsigned int
423 Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::get_symbol_index()
424 const
426 unsigned int index;
427 switch (this->local_sym_index_)
429 case INVALID_CODE:
430 gold_unreachable();
432 case GSYM_CODE:
433 if (this->u1_.gsym == NULL)
434 index = 0;
435 else if (dynamic)
436 index = this->u1_.gsym->dynsym_index();
437 else
438 index = this->u1_.gsym->symtab_index();
439 break;
441 case SECTION_CODE:
442 if (dynamic)
443 index = this->u1_.os->dynsym_index();
444 else
445 index = this->u1_.os->symtab_index();
446 break;
448 default:
449 if (dynamic)
451 // FIXME: It seems that some targets may need to generate
452 // dynamic relocations against local symbols for some
453 // reasons. This will have to be addressed at some point.
454 gold_unreachable();
456 else
457 index = this->u1_.relobj->symtab_index(this->local_sym_index_);
458 break;
460 gold_assert(index != -1U);
461 return index;
464 // Write out the offset and info fields of a Rel or Rela relocation
465 // entry.
467 template<bool dynamic, int size, bool big_endian>
468 template<typename Write_rel>
469 void
470 Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::write_rel(
471 Write_rel* wr) const
473 Address address = this->address_;
474 if (this->shndx_ != INVALID_CODE)
476 off_t off;
477 Output_section* os = this->u2_.relobj->output_section(this->shndx_,
478 &off);
479 gold_assert(os != NULL);
480 address += os->address() + off;
482 else if (this->u2_.od != NULL)
483 address += this->u2_.od->address();
484 wr->put_r_offset(address);
485 wr->put_r_info(elfcpp::elf_r_info<size>(this->get_symbol_index(),
486 this->type_));
489 // Write out a Rel relocation.
491 template<bool dynamic, int size, bool big_endian>
492 void
493 Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::write(
494 unsigned char* pov) const
496 elfcpp::Rel_write<size, big_endian> orel(pov);
497 this->write_rel(&orel);
500 // Write out a Rela relocation.
502 template<bool dynamic, int size, bool big_endian>
503 void
504 Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>::write(
505 unsigned char* pov) const
507 elfcpp::Rela_write<size, big_endian> orel(pov);
508 this->rel_.write_rel(&orel);
509 orel.put_r_addend(this->addend_);
512 // Output_data_reloc_base methods.
514 // Adjust the output section.
516 template<int sh_type, bool dynamic, int size, bool big_endian>
517 void
518 Output_data_reloc_base<sh_type, dynamic, size, big_endian>
519 ::do_adjust_output_section(Output_section* os)
521 if (sh_type == elfcpp::SHT_REL)
522 os->set_entsize(elfcpp::Elf_sizes<size>::rel_size);
523 else if (sh_type == elfcpp::SHT_RELA)
524 os->set_entsize(elfcpp::Elf_sizes<size>::rela_size);
525 else
526 gold_unreachable();
527 if (dynamic)
528 os->set_should_link_to_dynsym();
529 else
530 os->set_should_link_to_symtab();
533 // Write out relocation data.
535 template<int sh_type, bool dynamic, int size, bool big_endian>
536 void
537 Output_data_reloc_base<sh_type, dynamic, size, big_endian>::do_write(
538 Output_file* of)
540 const off_t off = this->offset();
541 const off_t oview_size = this->data_size();
542 unsigned char* const oview = of->get_output_view(off, oview_size);
544 unsigned char* pov = oview;
545 for (typename Relocs::const_iterator p = this->relocs_.begin();
546 p != this->relocs_.end();
547 ++p)
549 p->write(pov);
550 pov += reloc_size;
553 gold_assert(pov - oview == oview_size);
555 of->write_output_view(off, oview_size, oview);
557 // We no longer need the relocation entries.
558 this->relocs_.clear();
561 // Output_data_got::Got_entry methods.
563 // Write out the entry.
565 template<int size, bool big_endian>
566 void
567 Output_data_got<size, big_endian>::Got_entry::write(
568 const General_options* options,
569 unsigned char* pov) const
571 Valtype val = 0;
573 switch (this->local_sym_index_)
575 case GSYM_CODE:
577 Symbol* gsym = this->u_.gsym;
579 // If the symbol is resolved locally, we need to write out its
580 // value. Otherwise we just write zero. The target code is
581 // responsible for creating a relocation entry to fill in the
582 // value at runtime.
583 if (gsym->final_value_is_known(options))
585 Sized_symbol<size>* sgsym;
586 // This cast is a bit ugly. We don't want to put a
587 // virtual method in Symbol, because we want Symbol to be
588 // as small as possible.
589 sgsym = static_cast<Sized_symbol<size>*>(gsym);
590 val = sgsym->value();
593 break;
595 case CONSTANT_CODE:
596 val = this->u_.constant;
597 break;
599 default:
600 gold_unreachable();
603 elfcpp::Swap<size, big_endian>::writeval(pov, val);
606 // Output_data_got methods.
608 // Add an entry for a global symbol to the GOT. This returns true if
609 // this is a new GOT entry, false if the symbol already had a GOT
610 // entry.
612 template<int size, bool big_endian>
613 bool
614 Output_data_got<size, big_endian>::add_global(Symbol* gsym)
616 if (gsym->has_got_offset())
617 return false;
619 this->entries_.push_back(Got_entry(gsym));
620 this->set_got_size();
621 gsym->set_got_offset(this->last_got_offset());
622 return true;
625 // Write out the GOT.
627 template<int size, bool big_endian>
628 void
629 Output_data_got<size, big_endian>::do_write(Output_file* of)
631 const int add = size / 8;
633 const off_t off = this->offset();
634 const off_t oview_size = this->data_size();
635 unsigned char* const oview = of->get_output_view(off, oview_size);
637 unsigned char* pov = oview;
638 for (typename Got_entries::const_iterator p = this->entries_.begin();
639 p != this->entries_.end();
640 ++p)
642 p->write(this->options_, pov);
643 pov += add;
646 gold_assert(pov - oview == oview_size);
648 of->write_output_view(off, oview_size, oview);
650 // We no longer need the GOT entries.
651 this->entries_.clear();
654 // Output_data_dynamic::Dynamic_entry methods.
656 // Write out the entry.
658 template<int size, bool big_endian>
659 void
660 Output_data_dynamic::Dynamic_entry::write(
661 unsigned char* pov,
662 const Stringpool* pool
663 ACCEPT_SIZE_ENDIAN) const
665 typename elfcpp::Elf_types<size>::Elf_WXword val;
666 switch (this->classification_)
668 case DYNAMIC_NUMBER:
669 val = this->u_.val;
670 break;
672 case DYNAMIC_SECTION_ADDRESS:
673 val = this->u_.od->address();
674 break;
676 case DYNAMIC_SECTION_SIZE:
677 val = this->u_.od->data_size();
678 break;
680 case DYNAMIC_SYMBOL:
682 const Sized_symbol<size>* s =
683 static_cast<const Sized_symbol<size>*>(this->u_.sym);
684 val = s->value();
686 break;
688 case DYNAMIC_STRING:
689 val = pool->get_offset(this->u_.str);
690 break;
692 default:
693 gold_unreachable();
696 elfcpp::Dyn_write<size, big_endian> dw(pov);
697 dw.put_d_tag(this->tag_);
698 dw.put_d_val(val);
701 // Output_data_dynamic methods.
703 // Adjust the output section to set the entry size.
705 void
706 Output_data_dynamic::do_adjust_output_section(Output_section* os)
708 if (this->target_->get_size() == 32)
709 os->set_entsize(elfcpp::Elf_sizes<32>::dyn_size);
710 else if (this->target_->get_size() == 64)
711 os->set_entsize(elfcpp::Elf_sizes<64>::dyn_size);
712 else
713 gold_unreachable();
716 // Set the final data size.
718 void
719 Output_data_dynamic::do_set_address(uint64_t, off_t)
721 // Add the terminating entry.
722 this->add_constant(elfcpp::DT_NULL, 0);
724 int dyn_size;
725 if (this->target_->get_size() == 32)
726 dyn_size = elfcpp::Elf_sizes<32>::dyn_size;
727 else if (this->target_->get_size() == 64)
728 dyn_size = elfcpp::Elf_sizes<64>::dyn_size;
729 else
730 gold_unreachable();
731 this->set_data_size(this->entries_.size() * dyn_size);
734 // Write out the dynamic entries.
736 void
737 Output_data_dynamic::do_write(Output_file* of)
739 if (this->target_->get_size() == 32)
741 if (this->target_->is_big_endian())
742 this->sized_write<32, true>(of);
743 else
744 this->sized_write<32, false>(of);
746 else if (this->target_->get_size() == 64)
748 if (this->target_->is_big_endian())
749 this->sized_write<64, true>(of);
750 else
751 this->sized_write<64, false>(of);
753 else
754 gold_unreachable();
757 template<int size, bool big_endian>
758 void
759 Output_data_dynamic::sized_write(Output_file* of)
761 const int dyn_size = elfcpp::Elf_sizes<size>::dyn_size;
763 const off_t offset = this->offset();
764 const off_t oview_size = this->data_size();
765 unsigned char* const oview = of->get_output_view(offset, oview_size);
767 unsigned char* pov = oview;
768 for (typename Dynamic_entries::const_iterator p = this->entries_.begin();
769 p != this->entries_.end();
770 ++p)
772 p->write SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
773 pov, this->pool_ SELECT_SIZE_ENDIAN(size, big_endian));
774 pov += dyn_size;
777 gold_assert(pov - oview == oview_size);
779 of->write_output_view(offset, oview_size, oview);
781 // We no longer need the dynamic entries.
782 this->entries_.clear();
785 // Output_section::Input_section methods.
787 // Return the data size. For an input section we store the size here.
788 // For an Output_section_data, we have to ask it for the size.
790 off_t
791 Output_section::Input_section::data_size() const
793 if (this->is_input_section())
794 return this->u1_.data_size;
795 else
796 return this->u2_.posd->data_size();
799 // Set the address and file offset.
801 void
802 Output_section::Input_section::set_address(uint64_t addr, off_t off,
803 off_t secoff)
805 if (this->is_input_section())
806 this->u2_.object->set_section_offset(this->shndx_, off - secoff);
807 else
808 this->u2_.posd->set_address(addr, off);
811 // Try to turn an input address into an output address.
813 bool
814 Output_section::Input_section::output_address(const Relobj* object,
815 unsigned int shndx,
816 off_t offset,
817 uint64_t output_section_address,
818 uint64_t *poutput) const
820 if (!this->is_input_section())
821 return this->u2_.posd->output_address(object, shndx, offset,
822 output_section_address, poutput);
823 else
825 if (this->u2_.object != object)
826 return false;
827 off_t output_offset;
828 Output_section* os = object->output_section(shndx, &output_offset);
829 gold_assert(os != NULL);
830 *poutput = output_section_address + output_offset + offset;
831 return true;
835 // Write out the data. We don't have to do anything for an input
836 // section--they are handled via Object::relocate--but this is where
837 // we write out the data for an Output_section_data.
839 void
840 Output_section::Input_section::write(Output_file* of)
842 if (!this->is_input_section())
843 this->u2_.posd->write(of);
846 // Output_section methods.
848 // Construct an Output_section. NAME will point into a Stringpool.
850 Output_section::Output_section(const char* name, elfcpp::Elf_Word type,
851 elfcpp::Elf_Xword flags)
852 : name_(name),
853 addralign_(0),
854 entsize_(0),
855 link_section_(NULL),
856 link_(0),
857 info_section_(NULL),
858 info_(0),
859 type_(type),
860 flags_(flags),
861 out_shndx_(0),
862 symtab_index_(0),
863 dynsym_index_(0),
864 input_sections_(),
865 first_input_offset_(0),
866 needs_symtab_index_(false),
867 needs_dynsym_index_(false),
868 should_link_to_symtab_(false),
869 should_link_to_dynsym_(false)
873 Output_section::~Output_section()
877 // Set the entry size.
879 void
880 Output_section::set_entsize(uint64_t v)
882 if (this->entsize_ == 0)
883 this->entsize_ = v;
884 else
885 gold_assert(this->entsize_ == v);
888 // Add the input section SHNDX, with header SHDR, named SECNAME, in
889 // OBJECT, to the Output_section. Return the offset of the input
890 // section within the output section. We don't always keep track of
891 // input sections for an Output_section. Instead, each Object keeps
892 // track of the Output_section for each of its input sections.
894 template<int size, bool big_endian>
895 off_t
896 Output_section::add_input_section(Relobj* object, unsigned int shndx,
897 const char* secname,
898 const elfcpp::Shdr<size, big_endian>& shdr)
900 elfcpp::Elf_Xword addralign = shdr.get_sh_addralign();
901 if ((addralign & (addralign - 1)) != 0)
903 fprintf(stderr, _("%s: %s: invalid alignment %lu for section \"%s\"\n"),
904 program_name, object->name().c_str(),
905 static_cast<unsigned long>(addralign), secname);
906 gold_exit(false);
909 if (addralign > this->addralign_)
910 this->addralign_ = addralign;
912 // If this is a SHF_MERGE section, we pass all the input sections to
913 // a Output_data_merge.
914 if ((shdr.get_sh_flags() & elfcpp::SHF_MERGE) != 0)
916 if (this->add_merge_input_section(object, shndx, shdr.get_sh_flags(),
917 shdr.get_sh_entsize(),
918 addralign))
920 // Tell the relocation routines that they need to call the
921 // output_address method to determine the final address.
922 return -1;
926 off_t ssize = this->data_size();
927 ssize = align_address(ssize, addralign);
928 this->set_data_size(ssize + shdr.get_sh_size());
930 // We need to keep track of this section if we are already keeping
931 // track of sections, or if we are relaxing. FIXME: Add test for
932 // relaxing.
933 if (! this->input_sections_.empty())
934 this->input_sections_.push_back(Input_section(object, shndx,
935 shdr.get_sh_size(),
936 addralign));
938 return ssize;
941 // Add arbitrary data to an output section.
943 void
944 Output_section::add_output_section_data(Output_section_data* posd)
946 Input_section inp(posd);
947 this->add_output_section_data(&inp);
950 // Add arbitrary data to an output section by Input_section.
952 void
953 Output_section::add_output_section_data(Input_section* inp)
955 if (this->input_sections_.empty())
956 this->first_input_offset_ = this->data_size();
958 this->input_sections_.push_back(*inp);
960 uint64_t addralign = inp->addralign();
961 if (addralign > this->addralign_)
962 this->addralign_ = addralign;
964 inp->set_output_section(this);
967 // Add a merge section to an output section.
969 void
970 Output_section::add_output_merge_section(Output_section_data* posd,
971 bool is_string, uint64_t entsize)
973 Input_section inp(posd, is_string, entsize);
974 this->add_output_section_data(&inp);
977 // Add an input section to a SHF_MERGE section.
979 bool
980 Output_section::add_merge_input_section(Relobj* object, unsigned int shndx,
981 uint64_t flags, uint64_t entsize,
982 uint64_t addralign)
984 // We only merge constants if the alignment is not more than the
985 // entry size. This could be handled, but it's unusual.
986 if (addralign > entsize)
987 return false;
989 bool is_string = (flags & elfcpp::SHF_STRINGS) != 0;
990 Input_section_list::iterator p;
991 for (p = this->input_sections_.begin();
992 p != this->input_sections_.end();
993 ++p)
994 if (p->is_merge_section(is_string, entsize))
995 break;
997 // We handle the actual constant merging in Output_merge_data or
998 // Output_merge_string_data.
999 if (p != this->input_sections_.end())
1000 p->add_input_section(object, shndx);
1001 else
1003 Output_section_data* posd;
1004 if (!is_string)
1005 posd = new Output_merge_data(entsize);
1006 else if (entsize == 1)
1007 posd = new Output_merge_string<char>();
1008 else if (entsize == 2)
1009 posd = new Output_merge_string<uint16_t>();
1010 else if (entsize == 4)
1011 posd = new Output_merge_string<uint32_t>();
1012 else
1013 return false;
1015 this->add_output_merge_section(posd, is_string, entsize);
1016 posd->add_input_section(object, shndx);
1019 return true;
1022 // Return the output virtual address of OFFSET relative to the start
1023 // of input section SHNDX in object OBJECT.
1025 uint64_t
1026 Output_section::output_address(const Relobj* object, unsigned int shndx,
1027 off_t offset) const
1029 uint64_t addr = this->address() + this->first_input_offset_;
1030 for (Input_section_list::const_iterator p = this->input_sections_.begin();
1031 p != this->input_sections_.end();
1032 ++p)
1034 addr = align_address(addr, p->addralign());
1035 uint64_t output;
1036 if (p->output_address(object, shndx, offset, addr, &output))
1037 return output;
1038 addr += p->data_size();
1041 // If we get here, it means that we don't know the mapping for this
1042 // input section. This might happen in principle if
1043 // add_input_section were called before add_output_section_data.
1044 // But it should never actually happen.
1046 gold_unreachable();
1049 // Set the address of an Output_section. This is where we handle
1050 // setting the addresses of any Output_section_data objects.
1052 void
1053 Output_section::do_set_address(uint64_t address, off_t startoff)
1055 if (this->input_sections_.empty())
1056 return;
1058 off_t off = startoff + this->first_input_offset_;
1059 for (Input_section_list::iterator p = this->input_sections_.begin();
1060 p != this->input_sections_.end();
1061 ++p)
1063 off = align_address(off, p->addralign());
1064 p->set_address(address + (off - startoff), off, startoff);
1065 off += p->data_size();
1068 this->set_data_size(off - startoff);
1071 // Write the section header to *OSHDR.
1073 template<int size, bool big_endian>
1074 void
1075 Output_section::write_header(const Layout* layout,
1076 const Stringpool* secnamepool,
1077 elfcpp::Shdr_write<size, big_endian>* oshdr) const
1079 oshdr->put_sh_name(secnamepool->get_offset(this->name_));
1080 oshdr->put_sh_type(this->type_);
1081 oshdr->put_sh_flags(this->flags_);
1082 oshdr->put_sh_addr(this->address());
1083 oshdr->put_sh_offset(this->offset());
1084 oshdr->put_sh_size(this->data_size());
1085 if (this->link_section_ != NULL)
1086 oshdr->put_sh_link(this->link_section_->out_shndx());
1087 else if (this->should_link_to_symtab_)
1088 oshdr->put_sh_link(layout->symtab_section()->out_shndx());
1089 else if (this->should_link_to_dynsym_)
1090 oshdr->put_sh_link(layout->dynsym_section()->out_shndx());
1091 else
1092 oshdr->put_sh_link(this->link_);
1093 if (this->info_section_ != NULL)
1094 oshdr->put_sh_info(this->info_section_->out_shndx());
1095 else
1096 oshdr->put_sh_info(this->info_);
1097 oshdr->put_sh_addralign(this->addralign_);
1098 oshdr->put_sh_entsize(this->entsize_);
1101 // Write out the data. For input sections the data is written out by
1102 // Object::relocate, but we have to handle Output_section_data objects
1103 // here.
1105 void
1106 Output_section::do_write(Output_file* of)
1108 for (Input_section_list::iterator p = this->input_sections_.begin();
1109 p != this->input_sections_.end();
1110 ++p)
1111 p->write(of);
1114 // Output segment methods.
1116 Output_segment::Output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags)
1117 : output_data_(),
1118 output_bss_(),
1119 vaddr_(0),
1120 paddr_(0),
1121 memsz_(0),
1122 align_(0),
1123 offset_(0),
1124 filesz_(0),
1125 type_(type),
1126 flags_(flags),
1127 is_align_known_(false)
1131 // Add an Output_section to an Output_segment.
1133 void
1134 Output_segment::add_output_section(Output_section* os,
1135 elfcpp::Elf_Word seg_flags,
1136 bool front)
1138 gold_assert((os->flags() & elfcpp::SHF_ALLOC) != 0);
1139 gold_assert(!this->is_align_known_);
1141 // Update the segment flags.
1142 this->flags_ |= seg_flags;
1144 Output_segment::Output_data_list* pdl;
1145 if (os->type() == elfcpp::SHT_NOBITS)
1146 pdl = &this->output_bss_;
1147 else
1148 pdl = &this->output_data_;
1150 // So that PT_NOTE segments will work correctly, we need to ensure
1151 // that all SHT_NOTE sections are adjacent. This will normally
1152 // happen automatically, because all the SHT_NOTE input sections
1153 // will wind up in the same output section. However, it is possible
1154 // for multiple SHT_NOTE input sections to have different section
1155 // flags, and thus be in different output sections, but for the
1156 // different section flags to map into the same segment flags and
1157 // thus the same output segment.
1159 // Note that while there may be many input sections in an output
1160 // section, there are normally only a few output sections in an
1161 // output segment. This loop is expected to be fast.
1163 if (os->type() == elfcpp::SHT_NOTE && !pdl->empty())
1165 Output_segment::Output_data_list::iterator p = pdl->end();
1168 --p;
1169 if ((*p)->is_section_type(elfcpp::SHT_NOTE))
1171 // We don't worry about the FRONT parameter.
1172 ++p;
1173 pdl->insert(p, os);
1174 return;
1177 while (p != pdl->begin());
1180 // Similarly, so that PT_TLS segments will work, we need to group
1181 // SHF_TLS sections. An SHF_TLS/SHT_NOBITS section is a special
1182 // case: we group the SHF_TLS/SHT_NOBITS sections right after the
1183 // SHF_TLS/SHT_PROGBITS sections. This lets us set up PT_TLS
1184 // correctly.
1185 if ((os->flags() & elfcpp::SHF_TLS) != 0 && !this->output_data_.empty())
1187 pdl = &this->output_data_;
1188 bool nobits = os->type() == elfcpp::SHT_NOBITS;
1189 bool sawtls = false;
1190 Output_segment::Output_data_list::iterator p = pdl->end();
1193 --p;
1194 bool insert;
1195 if ((*p)->is_section_flag_set(elfcpp::SHF_TLS))
1197 sawtls = true;
1198 // Put a NOBITS section after the first TLS section.
1199 // But a PROGBITS section after the first TLS/PROGBITS
1200 // section.
1201 insert = nobits || !(*p)->is_section_type(elfcpp::SHT_NOBITS);
1203 else
1205 // If we've gone past the TLS sections, but we've seen a
1206 // TLS section, then we need to insert this section now.
1207 insert = sawtls;
1210 if (insert)
1212 // We don't worry about the FRONT parameter.
1213 ++p;
1214 pdl->insert(p, os);
1215 return;
1218 while (p != pdl->begin());
1220 // There are no TLS sections yet; put this one at the requested
1221 // location in the section list.
1224 if (front)
1225 pdl->push_front(os);
1226 else
1227 pdl->push_back(os);
1230 // Add an Output_data (which is not an Output_section) to the start of
1231 // a segment.
1233 void
1234 Output_segment::add_initial_output_data(Output_data* od)
1236 gold_assert(!this->is_align_known_);
1237 this->output_data_.push_front(od);
1240 // Return the maximum alignment of the Output_data in Output_segment.
1241 // Once we compute this, we prohibit new sections from being added.
1243 uint64_t
1244 Output_segment::addralign()
1246 if (!this->is_align_known_)
1248 uint64_t addralign;
1250 addralign = Output_segment::maximum_alignment(&this->output_data_);
1251 if (addralign > this->align_)
1252 this->align_ = addralign;
1254 addralign = Output_segment::maximum_alignment(&this->output_bss_);
1255 if (addralign > this->align_)
1256 this->align_ = addralign;
1258 this->is_align_known_ = true;
1261 return this->align_;
1264 // Return the maximum alignment of a list of Output_data.
1266 uint64_t
1267 Output_segment::maximum_alignment(const Output_data_list* pdl)
1269 uint64_t ret = 0;
1270 for (Output_data_list::const_iterator p = pdl->begin();
1271 p != pdl->end();
1272 ++p)
1274 uint64_t addralign = (*p)->addralign();
1275 if (addralign > ret)
1276 ret = addralign;
1278 return ret;
1281 // Set the section addresses for an Output_segment. ADDR is the
1282 // address and *POFF is the file offset. Set the section indexes
1283 // starting with *PSHNDX. Return the address of the immediately
1284 // following segment. Update *POFF and *PSHNDX.
1286 uint64_t
1287 Output_segment::set_section_addresses(uint64_t addr, off_t* poff,
1288 unsigned int* pshndx)
1290 gold_assert(this->type_ == elfcpp::PT_LOAD);
1292 this->vaddr_ = addr;
1293 this->paddr_ = addr;
1295 off_t orig_off = *poff;
1296 this->offset_ = orig_off;
1298 *poff = align_address(*poff, this->addralign());
1300 addr = this->set_section_list_addresses(&this->output_data_, addr, poff,
1301 pshndx);
1302 this->filesz_ = *poff - orig_off;
1304 off_t off = *poff;
1306 uint64_t ret = this->set_section_list_addresses(&this->output_bss_, addr,
1307 poff, pshndx);
1308 this->memsz_ = *poff - orig_off;
1310 // Ignore the file offset adjustments made by the BSS Output_data
1311 // objects.
1312 *poff = off;
1314 return ret;
1317 // Set the addresses and file offsets in a list of Output_data
1318 // structures.
1320 uint64_t
1321 Output_segment::set_section_list_addresses(Output_data_list* pdl,
1322 uint64_t addr, off_t* poff,
1323 unsigned int* pshndx)
1325 off_t startoff = *poff;
1327 off_t off = startoff;
1328 for (Output_data_list::iterator p = pdl->begin();
1329 p != pdl->end();
1330 ++p)
1332 off = align_address(off, (*p)->addralign());
1333 (*p)->set_address(addr + (off - startoff), off);
1335 // Unless this is a PT_TLS segment, we want to ignore the size
1336 // of a SHF_TLS/SHT_NOBITS section. Such a section does not
1337 // affect the size of a PT_LOAD segment.
1338 if (this->type_ == elfcpp::PT_TLS
1339 || !(*p)->is_section_flag_set(elfcpp::SHF_TLS)
1340 || !(*p)->is_section_type(elfcpp::SHT_NOBITS))
1341 off += (*p)->data_size();
1343 if ((*p)->is_section())
1345 (*p)->set_out_shndx(*pshndx);
1346 ++*pshndx;
1350 *poff = off;
1351 return addr + (off - startoff);
1354 // For a non-PT_LOAD segment, set the offset from the sections, if
1355 // any.
1357 void
1358 Output_segment::set_offset()
1360 gold_assert(this->type_ != elfcpp::PT_LOAD);
1362 if (this->output_data_.empty() && this->output_bss_.empty())
1364 this->vaddr_ = 0;
1365 this->paddr_ = 0;
1366 this->memsz_ = 0;
1367 this->align_ = 0;
1368 this->offset_ = 0;
1369 this->filesz_ = 0;
1370 return;
1373 const Output_data* first;
1374 if (this->output_data_.empty())
1375 first = this->output_bss_.front();
1376 else
1377 first = this->output_data_.front();
1378 this->vaddr_ = first->address();
1379 this->paddr_ = this->vaddr_;
1380 this->offset_ = first->offset();
1382 if (this->output_data_.empty())
1383 this->filesz_ = 0;
1384 else
1386 const Output_data* last_data = this->output_data_.back();
1387 this->filesz_ = (last_data->address()
1388 + last_data->data_size()
1389 - this->vaddr_);
1392 const Output_data* last;
1393 if (this->output_bss_.empty())
1394 last = this->output_data_.back();
1395 else
1396 last = this->output_bss_.back();
1397 this->memsz_ = (last->address()
1398 + last->data_size()
1399 - this->vaddr_);
1402 // Return the number of Output_sections in an Output_segment.
1404 unsigned int
1405 Output_segment::output_section_count() const
1407 return (this->output_section_count_list(&this->output_data_)
1408 + this->output_section_count_list(&this->output_bss_));
1411 // Return the number of Output_sections in an Output_data_list.
1413 unsigned int
1414 Output_segment::output_section_count_list(const Output_data_list* pdl) const
1416 unsigned int count = 0;
1417 for (Output_data_list::const_iterator p = pdl->begin();
1418 p != pdl->end();
1419 ++p)
1421 if ((*p)->is_section())
1422 ++count;
1424 return count;
1427 // Write the segment data into *OPHDR.
1429 template<int size, bool big_endian>
1430 void
1431 Output_segment::write_header(elfcpp::Phdr_write<size, big_endian>* ophdr)
1433 ophdr->put_p_type(this->type_);
1434 ophdr->put_p_offset(this->offset_);
1435 ophdr->put_p_vaddr(this->vaddr_);
1436 ophdr->put_p_paddr(this->paddr_);
1437 ophdr->put_p_filesz(this->filesz_);
1438 ophdr->put_p_memsz(this->memsz_);
1439 ophdr->put_p_flags(this->flags_);
1440 ophdr->put_p_align(this->addralign());
1443 // Write the section headers into V.
1445 template<int size, bool big_endian>
1446 unsigned char*
1447 Output_segment::write_section_headers(const Layout* layout,
1448 const Stringpool* secnamepool,
1449 unsigned char* v,
1450 unsigned int *pshndx
1451 ACCEPT_SIZE_ENDIAN) const
1453 // Every section that is attached to a segment must be attached to a
1454 // PT_LOAD segment, so we only write out section headers for PT_LOAD
1455 // segments.
1456 if (this->type_ != elfcpp::PT_LOAD)
1457 return v;
1459 v = this->write_section_headers_list
1460 SELECT_SIZE_ENDIAN_NAME(size, big_endian) (
1461 layout, secnamepool, &this->output_data_, v, pshndx
1462 SELECT_SIZE_ENDIAN(size, big_endian));
1463 v = this->write_section_headers_list
1464 SELECT_SIZE_ENDIAN_NAME(size, big_endian) (
1465 layout, secnamepool, &this->output_bss_, v, pshndx
1466 SELECT_SIZE_ENDIAN(size, big_endian));
1467 return v;
1470 template<int size, bool big_endian>
1471 unsigned char*
1472 Output_segment::write_section_headers_list(const Layout* layout,
1473 const Stringpool* secnamepool,
1474 const Output_data_list* pdl,
1475 unsigned char* v,
1476 unsigned int* pshndx
1477 ACCEPT_SIZE_ENDIAN) const
1479 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
1480 for (Output_data_list::const_iterator p = pdl->begin();
1481 p != pdl->end();
1482 ++p)
1484 if ((*p)->is_section())
1486 const Output_section* ps = static_cast<const Output_section*>(*p);
1487 gold_assert(*pshndx == ps->out_shndx());
1488 elfcpp::Shdr_write<size, big_endian> oshdr(v);
1489 ps->write_header(layout, secnamepool, &oshdr);
1490 v += shdr_size;
1491 ++*pshndx;
1494 return v;
1497 // Output_file methods.
1499 Output_file::Output_file(const General_options& options)
1500 : options_(options),
1501 name_(options.output_file_name()),
1502 o_(-1),
1503 file_size_(0),
1504 base_(NULL)
1508 // Open the output file.
1510 void
1511 Output_file::open(off_t file_size)
1513 this->file_size_ = file_size;
1515 int mode = this->options_.is_relocatable() ? 0666 : 0777;
1516 int o = ::open(this->name_, O_RDWR | O_CREAT | O_TRUNC, mode);
1517 if (o < 0)
1519 fprintf(stderr, _("%s: %s: open: %s\n"),
1520 program_name, this->name_, strerror(errno));
1521 gold_exit(false);
1523 this->o_ = o;
1525 // Write out one byte to make the file the right size.
1526 if (::lseek(o, file_size - 1, SEEK_SET) < 0)
1528 fprintf(stderr, _("%s: %s: lseek: %s\n"),
1529 program_name, this->name_, strerror(errno));
1530 gold_exit(false);
1532 char b = 0;
1533 if (::write(o, &b, 1) != 1)
1535 fprintf(stderr, _("%s: %s: write: %s\n"),
1536 program_name, this->name_, strerror(errno));
1537 gold_exit(false);
1540 // Map the file into memory.
1541 void* base = ::mmap(NULL, file_size, PROT_READ | PROT_WRITE,
1542 MAP_SHARED, o, 0);
1543 if (base == MAP_FAILED)
1545 fprintf(stderr, _("%s: %s: mmap: %s\n"),
1546 program_name, this->name_, strerror(errno));
1547 gold_exit(false);
1549 this->base_ = static_cast<unsigned char*>(base);
1552 // Close the output file.
1554 void
1555 Output_file::close()
1557 if (::munmap(this->base_, this->file_size_) < 0)
1559 fprintf(stderr, _("%s: %s: munmap: %s\n"),
1560 program_name, this->name_, strerror(errno));
1561 gold_exit(false);
1563 this->base_ = NULL;
1565 if (::close(this->o_) < 0)
1567 fprintf(stderr, _("%s: %s: close: %s\n"),
1568 program_name, this->name_, strerror(errno));
1569 gold_exit(false);
1571 this->o_ = -1;
1574 // Instantiate the templates we need. We could use the configure
1575 // script to restrict this to only the ones for implemented targets.
1577 template
1578 off_t
1579 Output_section::add_input_section<32, false>(
1580 Relobj* object,
1581 unsigned int shndx,
1582 const char* secname,
1583 const elfcpp::Shdr<32, false>& shdr);
1585 template
1586 off_t
1587 Output_section::add_input_section<32, true>(
1588 Relobj* object,
1589 unsigned int shndx,
1590 const char* secname,
1591 const elfcpp::Shdr<32, true>& shdr);
1593 template
1594 off_t
1595 Output_section::add_input_section<64, false>(
1596 Relobj* object,
1597 unsigned int shndx,
1598 const char* secname,
1599 const elfcpp::Shdr<64, false>& shdr);
1601 template
1602 off_t
1603 Output_section::add_input_section<64, true>(
1604 Relobj* object,
1605 unsigned int shndx,
1606 const char* secname,
1607 const elfcpp::Shdr<64, true>& shdr);
1609 template
1610 class Output_data_reloc<elfcpp::SHT_REL, false, 32, false>;
1612 template
1613 class Output_data_reloc<elfcpp::SHT_REL, false, 32, true>;
1615 template
1616 class Output_data_reloc<elfcpp::SHT_REL, false, 64, false>;
1618 template
1619 class Output_data_reloc<elfcpp::SHT_REL, false, 64, true>;
1621 template
1622 class Output_data_reloc<elfcpp::SHT_REL, true, 32, false>;
1624 template
1625 class Output_data_reloc<elfcpp::SHT_REL, true, 32, true>;
1627 template
1628 class Output_data_reloc<elfcpp::SHT_REL, true, 64, false>;
1630 template
1631 class Output_data_reloc<elfcpp::SHT_REL, true, 64, true>;
1633 template
1634 class Output_data_reloc<elfcpp::SHT_RELA, false, 32, false>;
1636 template
1637 class Output_data_reloc<elfcpp::SHT_RELA, false, 32, true>;
1639 template
1640 class Output_data_reloc<elfcpp::SHT_RELA, false, 64, false>;
1642 template
1643 class Output_data_reloc<elfcpp::SHT_RELA, false, 64, true>;
1645 template
1646 class Output_data_reloc<elfcpp::SHT_RELA, true, 32, false>;
1648 template
1649 class Output_data_reloc<elfcpp::SHT_RELA, true, 32, true>;
1651 template
1652 class Output_data_reloc<elfcpp::SHT_RELA, true, 64, false>;
1654 template
1655 class Output_data_reloc<elfcpp::SHT_RELA, true, 64, true>;
1657 template
1658 class Output_data_got<32, false>;
1660 template
1661 class Output_data_got<32, true>;
1663 template
1664 class Output_data_got<64, false>;
1666 template
1667 class Output_data_got<64, true>;
1669 } // End namespace gold.