1 // dynobj.h -- dynamic object support for gold -*- C++ -*-
3 // Copyright 2006, 2007 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
28 #include "stringpool.h"
34 class General_options
;
35 class Version_script_info
;
37 // A dynamic object (ET_DYN). This is an abstract base class itself.
38 // The implementations is the template class Sized_dynobj.
40 class Dynobj
: public Object
43 // We keep a list of all the DT_NEEDED entries we find.
44 typedef std::vector
<std::string
> Needed
;
46 Dynobj(const std::string
& name
, Input_file
* input_file
, off_t offset
= 0);
48 // Return the name to use in a DT_NEEDED entry for this object.
51 { return this->soname_
.c_str(); }
53 // Return the list of DT_NEEDED strings.
56 { return this->needed_
; }
58 // Return whether this dynamic object has any DT_NEEDED entries
59 // which were not seen during the link.
61 has_unknown_needed_entries() const
63 gold_assert(this->unknown_needed_
!= UNKNOWN_NEEDED_UNSET
);
64 return this->unknown_needed_
== UNKNOWN_NEEDED_TRUE
;
67 // Set whether this dynamic object has any DT_NEEDED entries which
68 // were not seen during the link.
70 set_has_unknown_needed_entries(bool set
)
72 gold_assert(this->unknown_needed_
== UNKNOWN_NEEDED_UNSET
);
73 this->unknown_needed_
= set
? UNKNOWN_NEEDED_TRUE
: UNKNOWN_NEEDED_FALSE
;
76 // Compute the ELF hash code for a string.
78 elf_hash(const char*);
80 // Create a standard ELF hash table, setting *PPHASH and *PHASHLEN.
81 // DYNSYMS is the global dynamic symbols. LOCAL_DYNSYM_COUNT is the
82 // number of local dynamic symbols, which is the index of the first
83 // dynamic gobal symbol.
85 create_elf_hash_table(const std::vector
<Symbol
*>& dynsyms
,
86 unsigned int local_dynsym_count
,
87 unsigned char** pphash
,
88 unsigned int* phashlen
);
90 // Create a GNU hash table, setting *PPHASH and *PHASHLEN. DYNSYMS
91 // is the global dynamic symbols. LOCAL_DYNSYM_COUNT is the number
92 // of local dynamic symbols, which is the index of the first dynamic
95 create_gnu_hash_table(const std::vector
<Symbol
*>& dynsyms
,
96 unsigned int local_dynsym_count
,
97 unsigned char** pphash
, unsigned int* phashlen
);
100 // Set the DT_SONAME string.
102 set_soname_string(const char* s
)
103 { this->soname_
.assign(s
); }
105 // Add an entry to the list of DT_NEEDED strings.
107 add_needed(const char* s
)
108 { this->needed_
.push_back(std::string(s
)); }
111 // Compute the GNU hash code for a string.
113 gnu_hash(const char*);
115 // Compute the number of hash buckets to use.
117 compute_bucket_count(const std::vector
<uint32_t>& hashcodes
,
118 bool for_gnu_hash_table
);
120 // Sized version of create_elf_hash_table.
121 template<bool big_endian
>
123 sized_create_elf_hash_table(const std::vector
<uint32_t>& bucket
,
124 const std::vector
<uint32_t>& chain
,
125 unsigned char* phash
,
126 unsigned int hashlen
);
128 // Sized version of create_gnu_hash_table.
129 template<int size
, bool big_endian
>
131 sized_create_gnu_hash_table(const std::vector
<Symbol
*>& hashed_dynsyms
,
132 const std::vector
<uint32_t>& dynsym_hashvals
,
133 unsigned int unhashed_dynsym_count
,
134 unsigned char** pphash
,
135 unsigned int* phashlen
);
137 // Values for the has_unknown_needed_entries_ field.
140 UNKNOWN_NEEDED_UNSET
,
145 // The DT_SONAME name, if any.
147 // The list of DT_NEEDED entries.
149 // Whether this dynamic object has any DT_NEEDED entries not seen
151 Unknown_needed unknown_needed_
;
154 // A dynamic object, size and endian specific version.
156 template<int size
, bool big_endian
>
157 class Sized_dynobj
: public Dynobj
160 Sized_dynobj(const std::string
& name
, Input_file
* input_file
, off_t offset
,
161 const typename
elfcpp::Ehdr
<size
, big_endian
>&);
163 // Set up the object file based on the ELF header.
165 setup(const typename
elfcpp::Ehdr
<size
, big_endian
>&);
169 do_read_symbols(Read_symbols_data
*);
171 // Lay out the input sections.
173 do_layout(Symbol_table
*, Layout
*, Read_symbols_data
*);
175 // Add the symbols to the symbol table.
177 do_add_symbols(Symbol_table
*, Read_symbols_data
*);
179 // Get the size of a section.
181 do_section_size(unsigned int shndx
)
182 { return this->elf_file_
.section_size(shndx
); }
184 // Get the name of a section.
186 do_section_name(unsigned int shndx
)
187 { return this->elf_file_
.section_name(shndx
); }
189 // Return a view of the contents of a section. Set *PLEN to the
192 do_section_contents(unsigned int shndx
)
193 { return this->elf_file_
.section_contents(shndx
); }
195 // Return section flags.
197 do_section_flags(unsigned int shndx
)
198 { return this->elf_file_
.section_flags(shndx
); }
200 // Return section address.
202 do_section_address(unsigned int shndx
)
203 { return this->elf_file_
.section_addr(shndx
); }
205 // Return section type.
207 do_section_type(unsigned int shndx
)
208 { return this->elf_file_
.section_type(shndx
); }
210 // Return the section link field.
212 do_section_link(unsigned int shndx
)
213 { return this->elf_file_
.section_link(shndx
); }
215 // Return the section link field.
217 do_section_info(unsigned int shndx
)
218 { return this->elf_file_
.section_info(shndx
); }
220 // Return the section alignment.
222 do_section_addralign(unsigned int shndx
)
223 { return this->elf_file_
.section_addralign(shndx
); }
227 typedef Sized_dynobj
<size
, big_endian
> This
;
228 static const int shdr_size
= elfcpp::Elf_sizes
<size
>::shdr_size
;
229 static const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
230 static const int dyn_size
= elfcpp::Elf_sizes
<size
>::dyn_size
;
231 typedef elfcpp::Shdr
<size
, big_endian
> Shdr
;
232 typedef elfcpp::Dyn
<size
, big_endian
> Dyn
;
234 // Find the dynamic symbol table and the version sections, given the
237 find_dynsym_sections(const unsigned char* pshdrs
,
238 unsigned int* pdynshm_shndx
,
239 unsigned int* pversym_shndx
,
240 unsigned int* pverdef_shndx
,
241 unsigned int* pverneed_shndx
,
242 unsigned int* pdynamic_shndx
);
244 // Read the dynamic symbol section SHNDX.
246 read_dynsym_section(const unsigned char* pshdrs
, unsigned int shndx
,
247 elfcpp::SHT type
, unsigned int link
,
248 File_view
** view
, section_size_type
* view_size
,
249 unsigned int* view_info
);
251 // Read the dynamic tags.
253 read_dynamic(const unsigned char* pshdrs
, unsigned int dynamic_shndx
,
254 unsigned int strtab_shndx
, const unsigned char* strtabu
,
257 // Mapping from version number to version name.
258 typedef std::vector
<const char*> Version_map
;
260 // Create the version map.
262 make_version_map(Read_symbols_data
* sd
, Version_map
*) const;
264 // Add version definitions to the version map.
266 make_verdef_map(Read_symbols_data
* sd
, Version_map
*) const;
268 // Add version references to the version map.
270 make_verneed_map(Read_symbols_data
* sd
, Version_map
*) const;
272 // Add an entry to the version map.
274 set_version_map(Version_map
*, unsigned int ndx
, const char* name
) const;
276 // General access to the ELF file.
277 elfcpp::Elf_file
<size
, big_endian
, Object
> elf_file_
;
280 // A base class for Verdef and Verneed_version which just handles the
281 // version index which will be stored in the SHT_GNU_versym section.
294 // Return the version index.
298 gold_assert(this->index_
!= -1U);
302 // Set the version index.
304 set_index(unsigned int index
)
306 gold_assert(this->index_
== -1U);
307 this->index_
= index
;
310 // Clear the weak flag in a version definition.
315 Version_base(const Version_base
&);
316 Version_base
& operator=(const Version_base
&);
318 // The index of the version definition or reference.
322 // This class handles a version being defined in the file we are
325 class Verdef
: public Version_base
328 Verdef(const char* name
, const std::vector
<std::string
>& deps
,
329 bool is_base
, bool is_weak
, bool is_symbol_created
)
330 : name_(name
), deps_(deps
), is_base_(is_base
), is_weak_(is_weak
),
331 is_symbol_created_(is_symbol_created
)
334 // Return the version name.
337 { return this->name_
; }
339 // Return the number of dependencies.
341 count_dependencies() const
342 { return this->deps_
.size(); }
344 // Add a dependency to this version. The NAME should be
345 // canonicalized in the dynamic Stringpool.
347 add_dependency(const char* name
)
348 { this->deps_
.push_back(name
); }
350 // Return whether this definition is weak.
353 { return this->is_weak_
; }
355 // Clear the weak flag.
358 { this->is_weak_
= false; }
360 // Return whether a version symbol has been created for this
363 is_symbol_created() const
364 { return this->is_symbol_created_
; }
366 // Write contents to buffer.
367 template<int size
, bool big_endian
>
369 write(const Stringpool
*, bool is_last
, unsigned char*
370 ACCEPT_SIZE_ENDIAN
) const;
373 Verdef(const Verdef
&);
374 Verdef
& operator=(const Verdef
&);
376 // The type of the list of version dependencies. Each dependency
377 // should be canonicalized in the dynamic Stringpool.
378 typedef std::vector
<std::string
> Deps
;
380 // The name of this version. This should be canonicalized in the
381 // dynamic Stringpool.
383 // A list of other versions which this version depends upon.
385 // Whether this is the base version.
387 // Whether this version is weak.
389 // Whether a version symbol has been created.
390 bool is_symbol_created_
;
393 // A referened version. This will be associated with a filename by
396 class Verneed_version
: public Version_base
399 Verneed_version(const char* version
)
403 // Return the version name.
406 { return this->version_
; }
408 // Clear the weak flag. This is invalid for a reference.
411 { gold_unreachable(); }
414 Verneed_version(const Verneed_version
&);
415 Verneed_version
& operator=(const Verneed_version
&);
417 const char* version_
;
420 // Version references in a single dynamic object.
425 Verneed(const char* filename
)
426 : filename_(filename
), need_versions_()
431 // Return the file name.
434 { return this->filename_
; }
436 // Return the number of versions.
438 count_versions() const
439 { return this->need_versions_
.size(); }
441 // Add a version name. The name should be canonicalized in the
442 // dynamic Stringpool. If the name is already present, this does
445 add_name(const char* name
);
447 // Set the version indexes, starting at INDEX. Return the updated
450 finalize(unsigned int index
);
452 // Write contents to buffer.
453 template<int size
, bool big_endian
>
455 write(const Stringpool
*, bool is_last
, unsigned char*
456 ACCEPT_SIZE_ENDIAN
) const;
459 Verneed(const Verneed
&);
460 Verneed
& operator=(const Verneed
&);
462 // The type of the list of version names. Each name should be
463 // canonicalized in the dynamic Stringpool.
464 typedef std::vector
<Verneed_version
*> Need_versions
;
466 // The filename of the dynamic object. This should be
467 // canonicalized in the dynamic Stringpool.
468 const char* filename_
;
469 // The list of version names.
470 Need_versions need_versions_
;
473 // This class handles version definitions and references which go into
479 Versions(const General_options
&, Stringpool
*);
483 // SYM is going into the dynamic symbol table and has a version.
484 // Record the appropriate version information.
486 record_version(const Symbol_table
* symtab
, Stringpool
*, const Symbol
* sym
);
488 // Set the version indexes. DYNSYM_INDEX is the index we should use
489 // for the next dynamic symbol. We add new dynamic symbols to SYMS
490 // and return an updated DYNSYM_INDEX.
492 finalize(Symbol_table
* symtab
, unsigned int dynsym_index
,
493 std::vector
<Symbol
*>* syms
);
495 // Return whether there are any version definitions.
498 { return !this->defs_
.empty(); }
500 // Return whether there are any version references.
503 { return !this->needs_
.empty(); }
505 // Build an allocated buffer holding the contents of the symbol
506 // version section (.gnu.version).
507 template<int size
, bool big_endian
>
509 symbol_section_contents(const Symbol_table
*, const Stringpool
*,
510 unsigned int local_symcount
,
511 const std::vector
<Symbol
*>& syms
,
512 unsigned char**, unsigned int*
513 ACCEPT_SIZE_ENDIAN
) const;
515 // Build an allocated buffer holding the contents of the version
516 // definition section (.gnu.version_d).
517 template<int size
, bool big_endian
>
519 def_section_contents(const Stringpool
*, unsigned char**,
520 unsigned int* psize
, unsigned int* pentries
521 ACCEPT_SIZE_ENDIAN
) const;
523 // Build an allocated buffer holding the contents of the version
524 // reference section (.gnu.version_r).
525 template<int size
, bool big_endian
>
527 need_section_contents(const Stringpool
*, unsigned char**,
528 unsigned int* psize
, unsigned int* pentries
529 ACCEPT_SIZE_ENDIAN
) const;
531 const Version_script_info
&
532 version_script() const
533 { return this->version_script_
; }
536 Versions(const Versions
&);
537 Versions
& operator=(const Versions
&);
539 // The type of the list of version definitions.
540 typedef std::vector
<Verdef
*> Defs
;
542 // The type of the list of version references.
543 typedef std::vector
<Verneed
*> Needs
;
545 // Handle a symbol SYM defined with version VERSION.
547 add_def(const Symbol
* sym
, const char* version
, Stringpool::Key
);
549 // Add a reference to version NAME in file FILENAME.
551 add_need(Stringpool
*, const char* filename
, const char* name
,
554 // Get the dynamic object to use for SYM.
556 get_dynobj_for_sym(const Symbol_table
*, const Symbol
* sym
) const;
558 // Return the version index to use for SYM.
560 version_index(const Symbol_table
*, const Stringpool
*,
561 const Symbol
* sym
) const;
563 // We keep a hash table mapping canonicalized name/version pairs to
565 typedef std::pair
<Stringpool::Key
, Stringpool::Key
> Key
;
567 struct Version_table_hash
570 operator()(const Key
& k
) const
571 { return k
.first
+ k
.second
; }
574 struct Version_table_eq
577 operator()(const Key
& k1
, const Key
& k2
) const
578 { return k1
.first
== k2
.first
&& k1
.second
== k2
.second
; }
581 typedef Unordered_map
<Key
, Version_base
*, Version_table_hash
,
582 Version_table_eq
> Version_table
;
584 // The version definitions.
586 // The version references.
588 // The mapping from a canonicalized version/filename pair to a
589 // version index. The filename may be NULL.
590 Version_table version_table_
;
591 // Whether the version indexes have been set.
593 // Contents of --version-script, if passed, or NULL.
594 const Version_script_info
& version_script_
;
597 } // End namespace gold.
599 #endif // !defined(GOLD_DYNOBJ_H)