1 // object.h -- support for an object file for linking in gold -*- C++ -*-
19 class General_options
;
25 // Data to pass from read_symbols() to add_symbols().
27 struct Read_symbols_data
30 File_view
* section_headers
;
32 File_view
* section_names
;
33 // Size of section name data in bytes.
34 off_t section_names_size
;
37 // Size of symbol data in bytes.
40 File_view
* symbol_names
;
41 // Size of symbol name data in bytes.
42 off_t symbol_names_size
;
45 // Data about a single relocation section. This is read in
46 // read_relocs and processed in scan_relocs.
50 // Index of reloc section.
51 unsigned int reloc_shndx
;
52 // Index of section that relocs apply to.
53 unsigned int data_shndx
;
54 // Contents of reloc section.
56 // Reloc section type.
58 // Number of reloc entries.
62 // Relocations in an object file. This is read in read_relocs and
63 // processed in scan_relocs.
65 struct Read_relocs_data
67 typedef std::vector
<Section_relocs
> Relocs_list
;
71 File_view
* local_symbols
;
74 // Object is an interface which represents either a 32-bit or a 64-bit
75 // input object. This can be a regular object file (ET_REL) or a
76 // shared object (ET_DYN). The actual instantiations are
77 // Sized_object<32> and Sized_object<64>
82 // NAME is the name of the object as we would report it to the user
83 // (e.g., libfoo.a(bar.o) if this is in an archive. INPUT_FILE is
84 // used to read the file. OFFSET is the offset within the input
85 // file--0 for a .o or .so file, something else for a .a file.
86 Object(const std::string
& name
, Input_file
* input_file
, bool is_dynamic
,
88 : name_(name
), input_file_(input_file
), offset_(offset
),
89 shnum_(0), is_dynamic_(is_dynamic
), target_(NULL
),
96 // Return the name of the object as we would report it to the tuser.
99 { return this->name_
; }
101 // Return whether this is a dynamic object.
104 { return this->is_dynamic_
; }
106 // Return the target structure associated with this object.
109 { return this->target_
; }
111 // Lock the underlying file.
114 { this->input_file_
->file().lock(); }
116 // Unlock the underlying file.
119 { this->input_file_
->file().unlock(); }
121 // Return whether the underlying file is locked.
124 { return this->input_file_
->file().is_locked(); }
126 // Return the sized target structure associated with this object.
127 // This is like the target method but it returns a pointer of
128 // appropriate checked type.
129 template<int size
, bool big_endian
>
130 Sized_target
<size
, big_endian
>*
131 sized_target(ACCEPT_SIZE_ENDIAN_ONLY
);
133 // Read the symbol information.
135 read_symbols(Read_symbols_data
* sd
)
136 { return this->do_read_symbols(sd
); }
138 // Pass sections which should be included in the link to the Layout
139 // object, and record where the sections go in the output file.
141 layout(Layout
* lay
, Read_symbols_data
* sd
)
142 { this->do_layout(lay
, sd
); }
144 // Add symbol information to the global symbol table.
146 add_symbols(Symbol_table
* symtab
, Read_symbols_data
* sd
)
147 { this->do_add_symbols(symtab
, sd
); }
151 read_relocs(Read_relocs_data
* rd
)
152 { return this->do_read_relocs(rd
); }
154 // Scan the relocs and adjust the symbol table.
156 scan_relocs(const General_options
& options
, Symbol_table
* symtab
,
157 Read_relocs_data
* rd
)
158 { return this->do_scan_relocs(options
, symtab
, rd
); }
160 // Initial local symbol processing: set the offset where local
161 // symbol information will be stored; add local symbol names to
162 // *POOL; return the offset following the local symbols.
164 finalize_local_symbols(off_t off
, Stringpool
* pool
)
165 { return this->do_finalize_local_symbols(off
, pool
); }
167 // Relocate the input sections and write out the local symbols.
169 relocate(const General_options
& options
, const Symbol_table
* symtab
,
170 const Layout
* layout
, Output_file
* of
)
171 { return this->do_relocate(options
, symtab
, layout
, of
); }
173 // Return whether an input section is being included in the link.
175 is_section_included(unsigned int shnum
) const
177 assert(shnum
< this->map_to_output_
.size());
178 return this->map_to_output_
[shnum
].output_section
!= NULL
;
181 // Given a section index, return the corresponding Output_section
182 // (which will be NULL if the section is not included in the link)
183 // and set *POFF to the offset within that section.
184 inline Output_section
*
185 output_section(unsigned int shnum
, off_t
* poff
);
187 // Return the name of a section given a section index. This is only
188 // used for error messages.
190 section_name(unsigned int shnum
)
191 { return this->do_section_name(shnum
); }
194 // What we need to know to map an input section to an output
195 // section. We keep an array of these, one for each input section,
196 // indexed by the input section number.
199 // The output section. This is NULL if the input section is to be
201 Output_section
* output_section
;
202 // The offset within the output section.
206 // Read the symbols--implemented by child class.
208 do_read_symbols(Read_symbols_data
*) = 0;
210 // Add symbol information to the global symbol table--implemented by
213 do_add_symbols(Symbol_table
*, Read_symbols_data
*) = 0;
215 // Read the relocs--implemented by child class.
217 do_read_relocs(Read_relocs_data
*) = 0;
219 // Scan the relocs--implemented by child class.
221 do_scan_relocs(const General_options
&, Symbol_table
*, Read_relocs_data
*) = 0;
223 // Lay out sections--implemented by child class.
225 do_layout(Layout
*, Read_symbols_data
*) = 0;
227 // Finalize local symbols--implemented by child class.
229 do_finalize_local_symbols(off_t
, Stringpool
*) = 0;
231 // Relocate the input sections and write out the local
232 // symbols--implemented by child class.
234 do_relocate(const General_options
& options
, const Symbol_table
* symtab
,
235 const Layout
*, Output_file
* of
) = 0;
237 // Get the name of a section--implemented by child class.
239 do_section_name(unsigned int shnum
) = 0;
244 { return this->input_file_
; }
246 // Get the offset into the file.
249 { return this->offset_
; }
251 // Get a view into the underlying file.
253 get_view(off_t start
, off_t size
);
255 // Get the number of sections.
258 { return this->shnum_
; }
260 // Set the number of sections.
263 { this->shnum_
= shnum
; }
267 set_target(Target
* target
)
268 { this->target_
= target
; }
270 // Read data from the underlying file.
272 read(off_t start
, off_t size
, void* p
);
274 // Get a lasting view into the underlying file.
276 get_lasting_view(off_t start
, off_t size
);
278 // Return the vector mapping input sections to output sections.
279 std::vector
<Map_to_output
>&
281 { return this->map_to_output_
; }
284 // This class may not be copied.
285 Object(const Object
&);
286 Object
& operator=(const Object
&);
288 // Name of object as printed to user.
290 // For reading the file.
291 Input_file
* input_file_
;
292 // Offset within the file--0 for an object file, non-0 for an
295 // Number of input sections.
297 // Whether this is a dynamic object.
299 // Target functions--may be NULL if the target is not known.
301 // Mapping from input sections to output section.
302 std::vector
<Map_to_output
> map_to_output_
;
305 // Implement sized_target inline for efficiency. This approach breaks
306 // static type checking, but is made safe using asserts.
308 template<int size
, bool big_endian
>
309 inline Sized_target
<size
, big_endian
>*
310 Object::sized_target(ACCEPT_SIZE_ENDIAN_ONLY
)
312 assert(this->target_
->get_size() == size
);
313 assert(this->target_
->is_big_endian() ? big_endian
: !big_endian
);
314 return static_cast<Sized_target
<size
, big_endian
>*>(this->target_
);
317 // Implement Object::output_section inline for efficiency.
318 inline Output_section
*
319 Object::output_section(unsigned int shnum
, off_t
* poff
)
321 assert(shnum
< this->map_to_output_
.size());
322 const Map_to_output
& mo(this->map_to_output_
[shnum
]);
324 return mo
.output_section
;
327 // A regular object file. This is size and endian specific.
329 template<int size
, bool big_endian
>
330 class Sized_object
: public Object
333 Sized_object(const std::string
& name
, Input_file
* input_file
, off_t offset
,
334 const typename
elfcpp::Ehdr
<size
, big_endian
>&);
338 // Set up the object file based on the ELF header.
340 setup(const typename
elfcpp::Ehdr
<size
, big_endian
>&);
344 do_read_symbols(Read_symbols_data
*);
346 // Add the symbols to the symbol table.
348 do_add_symbols(Symbol_table
*, Read_symbols_data
*);
352 do_read_relocs(Read_relocs_data
*);
354 // Scan the relocs and adjust the symbol table.
356 do_scan_relocs(const General_options
&, Symbol_table
*, Read_relocs_data
*);
358 // Lay out the input sections.
360 do_layout(Layout
*, Read_symbols_data
*);
362 // Finalize the local symbols.
364 do_finalize_local_symbols(off_t
, Stringpool
*);
366 // Relocate the input sections and write out the local symbols.
368 do_relocate(const General_options
& options
, const Symbol_table
* symtab
,
369 const Layout
*, Output_file
* of
);
371 // Get the name of a section.
373 do_section_name(unsigned int shnum
);
375 // Return the appropriate Sized_target structure.
376 Sized_target
<size
, big_endian
>*
379 return this->Object::sized_target
SELECT_SIZE_ENDIAN_NAME (
380 SELECT_SIZE_ENDIAN_ONLY(size
, big_endian
));
384 // This object may not be copied.
385 Sized_object(const Sized_object
&);
386 Sized_object
& operator=(const Sized_object
&);
389 typedef Sized_object
<size
, big_endian
> This
;
390 static const int ehdr_size
= elfcpp::Elf_sizes
<size
>::ehdr_size
;
391 static const int shdr_size
= elfcpp::Elf_sizes
<size
>::shdr_size
;
392 static const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
393 typedef elfcpp::Shdr
<size
, big_endian
> Shdr
;
395 // Read the section header for section SHNUM.
397 section_header(unsigned int shnum
);
399 // Whether to include a section group in the link.
401 include_section_group(Layout
*, unsigned int,
402 const elfcpp::Shdr
<size
, big_endian
>&,
405 // Whether to include a linkonce section in the link.
407 include_linkonce_section(Layout
*, const char*,
408 const elfcpp::Shdr
<size
, big_endian
>&);
410 // Views and sizes when relocating.
414 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
;
419 typedef std::vector
<View_size
> Views
;
421 // Write section data to the output file. Record the views and
422 // sizes in VIEWS for use when relocating.
424 write_sections(const unsigned char* pshdrs
, Output_file
*, Views
*);
426 // Relocate the sections in the output file.
428 relocate_sections(const General_options
& options
, const Symbol_table
*,
429 const Layout
*, const unsigned char* pshdrs
, Views
*);
431 // Write out the local symbols.
433 write_local_symbols(Output_file
*, const Stringpool
*);
435 // If non-NULL, a view of the section header data.
436 File_view
* section_headers_
;
437 // ELF file header e_flags field.
439 // File offset of section header table.
441 // Offset of SHT_STRTAB section holding section names.
442 unsigned int shstrndx_
;
443 // Index of SHT_SYMTAB section.
444 unsigned int symtab_shnum_
;
445 // The number of local symbols.
446 unsigned int local_symbol_count_
;
447 // The number of local symbols which go into the output file.
448 unsigned int output_local_symbol_count_
;
449 // The entries in the symbol table for the external symbols.
451 // File offset for local symbols.
452 off_t local_symbol_offset_
;
453 // Values of local symbols.
454 typename
elfcpp::Elf_types
<size
>::Elf_Addr
*values_
;
457 // A class to manage the list of all objects.
463 : object_list_(), target_(NULL
), any_dynamic_(false)
466 // The type of the list of input objects.
467 typedef std::list
<Object
*> Object_list
;
469 // Add an object to the list.
473 // Get the target we should use for the output file.
476 { return this->target_
; }
478 // Iterate over all objects.
479 Object_list::const_iterator
481 { return this->object_list_
.begin(); }
483 Object_list::const_iterator
485 { return this->object_list_
.end(); }
487 // Return whether we have seen any dynamic objects.
490 { return this->any_dynamic_
; }
493 Input_objects(const Input_objects
&);
494 Input_objects
& operator=(const Input_objects
&);
496 Object_list object_list_
;
501 // Some of the information we pass to the relocation routines. We
502 // group this together to avoid passing a dozen different arguments.
504 template<int size
, bool big_endian
>
507 // Command line options.
508 const General_options
* options
;
510 const Symbol_table
* symtab
;
512 const Layout
* layout
;
513 // Object being relocated.
514 Sized_object
<size
, big_endian
>* object
;
515 // Number of local symbols.
516 unsigned int local_symbol_count
;
517 // Values of local symbols.
518 typename
elfcpp::Elf_types
<size
>::Elf_Addr
*values
;
521 // Section index of relocation section.
522 unsigned int reloc_shndx
;
523 // Section index of section being relocated.
524 unsigned int data_shndx
;
526 // Return a string showing the location of a relocation. This is
527 // only used for error messages.
529 location(size_t relnum
, off_t reloffset
) const;
532 // Return an Object appropriate for the input file. P is BYTES long,
533 // and holds the ELF header.
536 make_elf_object(const std::string
& name
, Input_file
*,
537 off_t offset
, const unsigned char* p
,
540 } // end namespace gold
542 #endif // !defined(GOLD_OBJECT_H)