1 // object.h -- support for an object file for linking in gold -*- C++ -*-
10 #include "elfcpp_file.h"
17 class General_options
;
24 // Data to pass from read_symbols() to add_symbols().
26 struct Read_symbols_data
29 File_view
* section_headers
;
31 File_view
* section_names
;
32 // Size of section name data in bytes.
33 off_t section_names_size
;
36 // Size of symbol data in bytes.
39 File_view
* symbol_names
;
40 // Size of symbol name data in bytes.
41 off_t symbol_names_size
;
43 // Version information. This is only used on dynamic objects.
44 // Version symbol data (from SHT_GNU_versym section).
47 // Version definition data (from SHT_GNU_verdef section).
50 unsigned int verdef_info
;
51 // Needed version data (from SHT_GNU_verneed section).
54 unsigned int verneed_info
;
57 // Data about a single relocation section. This is read in
58 // read_relocs and processed in scan_relocs.
62 // Index of reloc section.
63 unsigned int reloc_shndx
;
64 // Index of section that relocs apply to.
65 unsigned int data_shndx
;
66 // Contents of reloc section.
68 // Reloc section type.
70 // Number of reloc entries.
74 // Relocations in an object file. This is read in read_relocs and
75 // processed in scan_relocs.
77 struct Read_relocs_data
79 typedef std::vector
<Section_relocs
> Relocs_list
;
83 File_view
* local_symbols
;
86 // Object is an abstract base class which represents either a 32-bit
87 // or a 64-bit input object. This can be a regular object file
88 // (ET_REL) or a shared object (ET_DYN).
93 // NAME is the name of the object as we would report it to the user
94 // (e.g., libfoo.a(bar.o) if this is in an archive. INPUT_FILE is
95 // used to read the file. OFFSET is the offset within the input
96 // file--0 for a .o or .so file, something else for a .a file.
97 Object(const std::string
& name
, Input_file
* input_file
, bool is_dynamic
,
99 : name_(name
), input_file_(input_file
), offset_(offset
), shnum_(-1U),
100 is_dynamic_(is_dynamic
), target_(NULL
)
106 // Return the name of the object as we would report it to the tuser.
109 { return this->name_
; }
111 // Return whether this is a dynamic object.
114 { return this->is_dynamic_
; }
116 // Return the target structure associated with this object.
119 { return this->target_
; }
121 // Lock the underlying file.
124 { this->input_file_
->file().lock(); }
126 // Unlock the underlying file.
129 { this->input_file_
->file().unlock(); }
131 // Return whether the underlying file is locked.
134 { return this->input_file_
->file().is_locked(); }
136 // Return the sized target structure associated with this object.
137 // This is like the target method but it returns a pointer of
138 // appropriate checked type.
139 template<int size
, bool big_endian
>
140 Sized_target
<size
, big_endian
>*
141 sized_target(ACCEPT_SIZE_ENDIAN_ONLY
);
143 // Get the number of sections.
146 { return this->shnum_
; }
148 // Return a view of the contents of a section. Set *PLEN to the
151 section_contents(unsigned int shndx
, off_t
* plen
);
153 // Return the name of a section given a section index. This is only
154 // used for error messages.
156 section_name(unsigned int shndx
)
157 { return this->do_section_name(shndx
); }
159 // Return the section flags given a section index.
161 section_flags(unsigned int shndx
)
162 { return this->do_section_flags(shndx
); }
164 // Read the symbol information.
166 read_symbols(Read_symbols_data
* sd
)
167 { return this->do_read_symbols(sd
); }
169 // Pass sections which should be included in the link to the Layout
170 // object, and record where the sections go in the output file.
172 layout(const General_options
& options
, Symbol_table
* symtab
,
173 Layout
* layout
, Read_symbols_data
* sd
)
174 { this->do_layout(options
, symtab
, layout
, sd
); }
176 // Add symbol information to the global symbol table.
178 add_symbols(Symbol_table
* symtab
, Read_symbols_data
* sd
)
179 { this->do_add_symbols(symtab
, sd
); }
181 // Functions and types for the elfcpp::Elf_file interface. This
182 // permit us to use Object as the File template parameter for
185 // The View class is returned by view. It must support a single
186 // method, data(). This is trivial, because get_view does what we
191 View(const unsigned char* p
)
200 const unsigned char* p_
;
205 view(off_t file_offset
, off_t data_size
)
206 { return View(this->get_view(file_offset
, data_size
)); }
210 error(const char* format
, ...) ATTRIBUTE_PRINTF_2
;
212 // A location in the file.
218 Location(off_t fo
, off_t ds
)
219 : file_offset(fo
), data_size(ds
)
223 // Get a View given a Location.
224 View
view(Location loc
)
225 { return View(this->get_view(loc
.file_offset
, loc
.data_size
)); }
228 // Read the symbols--implemented by child class.
230 do_read_symbols(Read_symbols_data
*) = 0;
232 // Lay out sections--implemented by child class.
234 do_layout(const General_options
&, Symbol_table
*, Layout
*,
235 Read_symbols_data
*) = 0;
237 // Add symbol information to the global symbol table--implemented by
240 do_add_symbols(Symbol_table
*, Read_symbols_data
*) = 0;
242 // Return the location of the contents of a section. Implemented by
245 do_section_contents(unsigned int shndx
) = 0;
247 // Get the name of a section--implemented by child class.
249 do_section_name(unsigned int shndx
) = 0;
251 // Get section flags--implemented by child class.
253 do_section_flags(unsigned int shndx
) = 0;
258 { return this->input_file_
; }
260 // Get the offset into the file.
263 { return this->offset_
; }
265 // Get a view into the underlying file.
267 get_view(off_t start
, off_t size
)
268 { return this->input_file_
->file().get_view(start
+ this->offset_
, size
); }
270 // Get a lasting view into the underlying file.
272 get_lasting_view(off_t start
, off_t size
)
274 return this->input_file_
->file().get_lasting_view(start
+ this->offset_
,
278 // Read data from the underlying file.
280 read(off_t start
, off_t size
, void* p
)
281 { this->input_file_
->file().read(start
+ this->offset_
, size
, p
); }
285 set_target(int machine
, int size
, bool big_endian
, int osabi
,
288 // Set the number of sections.
291 { this->shnum_
= shnum
; }
293 // Functions used by both Sized_relobj and Sized_dynobj.
295 // Read the section data into a Read_symbols_data object.
296 template<int size
, bool big_endian
>
298 read_section_data(elfcpp::Elf_file
<size
, big_endian
, Object
>*,
301 // If NAME is the name of a special .gnu.warning section, arrange
302 // for the warning to be issued. SHNDX is the section index.
303 // Return whether it is a warning section.
305 handle_gnu_warning_section(const char* name
, unsigned int shndx
,
309 // This class may not be copied.
310 Object(const Object
&);
311 Object
& operator=(const Object
&);
313 // Name of object as printed to user.
315 // For reading the file.
316 Input_file
* input_file_
;
317 // Offset within the file--0 for an object file, non-0 for an
320 // Number of input sections.
322 // Whether this is a dynamic object.
324 // Target functions--may be NULL if the target is not known.
328 // Implement sized_target inline for efficiency. This approach breaks
329 // static type checking, but is made safe using asserts.
331 template<int size
, bool big_endian
>
332 inline Sized_target
<size
, big_endian
>*
333 Object::sized_target(ACCEPT_SIZE_ENDIAN_ONLY
)
335 gold_assert(this->target_
->get_size() == size
);
336 gold_assert(this->target_
->is_big_endian() ? big_endian
: !big_endian
);
337 return static_cast<Sized_target
<size
, big_endian
>*>(this->target_
);
340 // A regular object (ET_REL). This is an abstract base class itself.
341 // The implementations is the template class Sized_relobj.
343 class Relobj
: public Object
346 Relobj(const std::string
& name
, Input_file
* input_file
, off_t offset
= 0)
347 : Object(name
, input_file
, false, offset
)
352 read_relocs(Read_relocs_data
* rd
)
353 { return this->do_read_relocs(rd
); }
355 // Scan the relocs and adjust the symbol table.
357 scan_relocs(const General_options
& options
, Symbol_table
* symtab
,
358 Layout
* layout
, Read_relocs_data
* rd
)
359 { return this->do_scan_relocs(options
, symtab
, layout
, rd
); }
361 // Initial local symbol processing: set the offset where local
362 // symbol information will be stored; add local symbol names to
363 // *POOL; return the new local symbol index.
365 finalize_local_symbols(unsigned int index
, off_t off
, Stringpool
* pool
)
366 { return this->do_finalize_local_symbols(index
, off
, pool
); }
368 // Relocate the input sections and write out the local symbols.
370 relocate(const General_options
& options
, const Symbol_table
* symtab
,
371 const Layout
* layout
, Output_file
* of
)
372 { return this->do_relocate(options
, symtab
, layout
, of
); }
374 // Return whether an input section is being included in the link.
376 is_section_included(unsigned int shndx
) const
378 gold_assert(shndx
< this->map_to_output_
.size());
379 return this->map_to_output_
[shndx
].output_section
!= NULL
;
382 // Given a section index, return the corresponding Output_section
383 // (which will be NULL if the section is not included in the link)
384 // and set *POFF to the offset within that section.
385 inline Output_section
*
386 output_section(unsigned int shndx
, off_t
* poff
);
388 // Set the offset of an input section within its output section.
390 set_section_offset(unsigned int shndx
, off_t off
)
392 gold_assert(shndx
< this->map_to_output_
.size());
393 this->map_to_output_
[shndx
].offset
= off
;
397 // What we need to know to map an input section to an output
398 // section. We keep an array of these, one for each input section,
399 // indexed by the input section number.
402 // The output section. This is NULL if the input section is to be
404 Output_section
* output_section
;
405 // The offset within the output section.
409 // Read the relocs--implemented by child class.
411 do_read_relocs(Read_relocs_data
*) = 0;
413 // Scan the relocs--implemented by child class.
415 do_scan_relocs(const General_options
&, Symbol_table
*, Layout
*,
416 Read_relocs_data
*) = 0;
418 // Finalize local symbols--implemented by child class.
420 do_finalize_local_symbols(unsigned int, off_t
, Stringpool
*) = 0;
422 // Relocate the input sections and write out the local
423 // symbols--implemented by child class.
425 do_relocate(const General_options
& options
, const Symbol_table
* symtab
,
426 const Layout
*, Output_file
* of
) = 0;
428 // Return the vector mapping input sections to output sections.
429 std::vector
<Map_to_output
>&
431 { return this->map_to_output_
; }
434 // Mapping from input sections to output section.
435 std::vector
<Map_to_output
> map_to_output_
;
438 // Implement Object::output_section inline for efficiency.
439 inline Output_section
*
440 Relobj::output_section(unsigned int shndx
, off_t
* poff
)
442 gold_assert(shndx
< this->map_to_output_
.size());
443 const Map_to_output
& mo(this->map_to_output_
[shndx
]);
445 return mo
.output_section
;
448 // A regular object file. This is size and endian specific.
450 template<int size
, bool big_endian
>
451 class Sized_relobj
: public Relobj
454 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Address
;
455 typedef std::vector
<Address
> Local_values
;
457 Sized_relobj(const std::string
& name
, Input_file
* input_file
, off_t offset
,
458 const typename
elfcpp::Ehdr
<size
, big_endian
>&);
462 // Set up the object file based on the ELF header.
464 setup(const typename
elfcpp::Ehdr
<size
, big_endian
>&);
466 // Return the index of local symbol SYM in the ordinary symbol
467 // table. A value of -1U means that the symbol is not being output.
469 symtab_index(unsigned int sym
) const
471 gold_assert(sym
< this->local_indexes_
.size());
472 gold_assert(this->local_indexes_
[sym
] != 0);
473 return this->local_indexes_
[sym
];
478 do_read_symbols(Read_symbols_data
*);
480 // Lay out the input sections.
482 do_layout(const General_options
&, Symbol_table
*, Layout
*,
485 // Add the symbols to the symbol table.
487 do_add_symbols(Symbol_table
*, Read_symbols_data
*);
491 do_read_relocs(Read_relocs_data
*);
493 // Scan the relocs and adjust the symbol table.
495 do_scan_relocs(const General_options
&, Symbol_table
*, Layout
*,
498 // Finalize the local symbols.
500 do_finalize_local_symbols(unsigned int, off_t
, Stringpool
*);
502 // Relocate the input sections and write out the local symbols.
504 do_relocate(const General_options
& options
, const Symbol_table
* symtab
,
505 const Layout
*, Output_file
* of
);
507 // Get the name of a section.
509 do_section_name(unsigned int shndx
)
510 { return this->elf_file_
.section_name(shndx
); }
512 // Return the location of the contents of a section.
514 do_section_contents(unsigned int shndx
)
515 { return this->elf_file_
.section_contents(shndx
); }
517 // Return section flags.
519 do_section_flags(unsigned int shndx
)
520 { return this->elf_file_
.section_flags(shndx
); }
522 // Return the appropriate Sized_target structure.
523 Sized_target
<size
, big_endian
>*
526 return this->Object::sized_target
527 SELECT_SIZE_ENDIAN_NAME(size
, big_endian
) (
528 SELECT_SIZE_ENDIAN_ONLY(size
, big_endian
));
533 typedef Sized_relobj
<size
, big_endian
> This
;
534 static const int ehdr_size
= elfcpp::Elf_sizes
<size
>::ehdr_size
;
535 static const int shdr_size
= elfcpp::Elf_sizes
<size
>::shdr_size
;
536 static const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
537 typedef elfcpp::Shdr
<size
, big_endian
> Shdr
;
539 // Find the SHT_SYMTAB section, given the section headers.
541 find_symtab(const unsigned char* pshdrs
);
543 // Whether to include a section group in the link.
545 include_section_group(Layout
*, unsigned int,
546 const elfcpp::Shdr
<size
, big_endian
>&,
549 // Whether to include a linkonce section in the link.
551 include_linkonce_section(Layout
*, const char*,
552 const elfcpp::Shdr
<size
, big_endian
>&);
554 // Views and sizes when relocating.
558 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
;
563 typedef std::vector
<View_size
> Views
;
565 // Write section data to the output file. Record the views and
566 // sizes in VIEWS for use when relocating.
568 write_sections(const unsigned char* pshdrs
, Output_file
*, Views
*);
570 // Relocate the sections in the output file.
572 relocate_sections(const General_options
& options
, const Symbol_table
*,
573 const Layout
*, const unsigned char* pshdrs
, Views
*);
575 // Write out the local symbols.
577 write_local_symbols(Output_file
*, const Stringpool
*);
579 // General access to the ELF file.
580 elfcpp::Elf_file
<size
, big_endian
, Object
> elf_file_
;
581 // Index of SHT_SYMTAB section.
582 unsigned int symtab_shndx_
;
583 // The number of local symbols.
584 unsigned int local_symbol_count_
;
585 // The number of local symbols which go into the output file.
586 unsigned int output_local_symbol_count_
;
587 // The entries in the symbol table for the external symbols.
589 // File offset for local symbols.
590 off_t local_symbol_offset_
;
591 // Values of local symbols.
592 Local_values local_values_
;
593 // Indexes of local symbols in the output file; -1U if not present.
594 std::vector
<unsigned int> local_indexes_
;
597 // A class to manage the list of all objects.
603 : relobj_list_(), dynobj_list_(), target_(NULL
), sonames_()
606 // The type of the list of input relocateable objects.
607 typedef std::vector
<Relobj
*> Relobj_list
;
608 typedef Relobj_list::const_iterator Relobj_iterator
;
610 // The type of the list of input dynamic objects.
611 typedef std::vector
<Dynobj
*> Dynobj_list
;
612 typedef Dynobj_list::const_iterator Dynobj_iterator
;
614 // Add an object to the list. Return true if all is well, or false
615 // if this object should be ignored.
619 // Get the target we should use for the output file.
622 { return this->target_
; }
624 // Iterate over all regular objects.
628 { return this->relobj_list_
.begin(); }
632 { return this->relobj_list_
.end(); }
634 // Iterate over all dynamic objects.
638 { return this->dynobj_list_
.begin(); }
642 { return this->dynobj_list_
.end(); }
644 // Return whether we have seen any dynamic objects.
647 { return !this->dynobj_list_
.empty(); }
650 Input_objects(const Input_objects
&);
651 Input_objects
& operator=(const Input_objects
&);
653 // The list of ordinary objects included in the link.
654 Relobj_list relobj_list_
;
655 // The list of dynamic objects included in the link.
656 Dynobj_list dynobj_list_
;
659 // SONAMEs that we have seen.
660 Unordered_set
<std::string
> sonames_
;
663 // Some of the information we pass to the relocation routines. We
664 // group this together to avoid passing a dozen different arguments.
666 template<int size
, bool big_endian
>
669 // Command line options.
670 const General_options
* options
;
672 const Symbol_table
* symtab
;
674 const Layout
* layout
;
675 // Object being relocated.
676 Sized_relobj
<size
, big_endian
>* object
;
677 // Number of local symbols.
678 unsigned int local_symbol_count
;
679 // Values of local symbols.
680 const typename Sized_relobj
<size
, big_endian
>::Local_values
* local_values
;
682 const Symbol
* const * symbols
;
683 // Section index of relocation section.
684 unsigned int reloc_shndx
;
685 // Section index of section being relocated.
686 unsigned int data_shndx
;
688 // Return a string showing the location of a relocation. This is
689 // only used for error messages.
691 location(size_t relnum
, off_t reloffset
) const;
694 // Return an Object appropriate for the input file. P is BYTES long,
695 // and holds the ELF header.
698 make_elf_object(const std::string
& name
, Input_file
*,
699 off_t offset
, const unsigned char* p
,
702 } // end namespace gold
704 #endif // !defined(GOLD_OBJECT_H)