binutils-gdb/gold/object.cc

635 lines
18 KiB
C++
Raw Normal View History

2006-08-05 01:10:59 +02:00
// object.cc -- support for an object file for linking in gold
#include "gold.h"
#include <cerrno>
#include <cstring>
#include <cassert>
#include "object.h"
#include "target-select.h"
#include "layout.h"
2006-08-05 01:10:59 +02:00
namespace gold
{
// Class Object.
const unsigned char*
Object::get_view(off_t start, off_t size)
{
return this->input_file_->file().get_view(start + this->offset_, size);
}
void
Object::read(off_t start, off_t size, void* p)
{
this->input_file_->file().read(start + this->offset_, size, p);
}
File_view*
Object::get_lasting_view(off_t start, off_t size)
{
return this->input_file_->file().get_lasting_view(start + this->offset_,
size);
}
// Class Sized_object.
template<int size, bool big_endian>
Sized_object<size, big_endian>::Sized_object(
const std::string& name,
Input_file* input_file,
off_t offset,
const elfcpp::Ehdr<size, big_endian>& ehdr)
: Object(name, input_file, false, offset),
2006-08-05 01:10:59 +02:00
flags_(ehdr.get_e_flags()),
shoff_(ehdr.get_e_shoff()),
shstrndx_(0),
symtab_shnum_(0),
symbols_(NULL)
2006-08-05 01:10:59 +02:00
{
if (ehdr.get_e_ehsize() != This::ehdr_size)
2006-08-05 01:10:59 +02:00
{
fprintf(stderr, _("%s: %s: bad e_ehsize field (%d != %d)\n"),
program_name, this->name().c_str(), ehdr.get_e_ehsize(),
This::ehdr_size);
2006-08-05 01:10:59 +02:00
gold_exit(false);
}
if (ehdr.get_e_shentsize() != This::shdr_size)
2006-08-05 01:10:59 +02:00
{
fprintf(stderr, _("%s: %s: bad e_shentsize field (%d != %d)\n"),
program_name, this->name().c_str(), ehdr.get_e_shentsize(),
This::shdr_size);
2006-08-05 01:10:59 +02:00
gold_exit(false);
}
}
template<int size, bool big_endian>
Sized_object<size, big_endian>::~Sized_object()
{
}
// Set up an object file bsaed on the file header. This sets up the
// target and reads the section information.
template<int size, bool big_endian>
void
Sized_object<size, big_endian>::setup(
const elfcpp::Ehdr<size, big_endian>& ehdr)
{
int machine = ehdr.get_e_machine();
Target* target = select_target(machine, size, big_endian,
ehdr.get_e_ident()[elfcpp::EI_OSABI],
ehdr.get_e_ident()[elfcpp::EI_ABIVERSION]);
if (target == NULL)
{
fprintf(stderr, _("%s: %s: unsupported ELF machine number %d\n"),
program_name, this->name().c_str(), machine);
gold_exit(false);
}
this->set_target(target);
2006-08-05 01:10:59 +02:00
unsigned int shnum = ehdr.get_e_shnum();
unsigned int shstrndx = ehdr.get_e_shstrndx();
if ((shnum == 0 || shstrndx == elfcpp::SHN_XINDEX)
&& this->shoff_ != 0)
{
const unsigned char* p = this->get_view (this->shoff_, This::shdr_size);
2006-08-05 01:10:59 +02:00
elfcpp::Shdr<size, big_endian> shdr(p);
if (shnum == 0)
shnum = shdr.get_sh_size();
if (shstrndx == elfcpp::SHN_XINDEX)
shstrndx = shdr.get_sh_link();
}
this->set_shnum(shnum);
2006-08-05 01:10:59 +02:00
this->shstrndx_ = shstrndx;
if (shnum == 0)
return;
// Find the SHT_SYMTAB section.
const unsigned char* p = this->get_view (this->shoff_,
shnum * This::shdr_size);
2006-08-05 01:10:59 +02:00
// Skip the first section, which is always empty.
p += This::shdr_size;
2006-08-05 01:10:59 +02:00
for (unsigned int i = 1; i < shnum; ++i)
{
elfcpp::Shdr<size, big_endian> shdr(p);
if (shdr.get_sh_type() == elfcpp::SHT_SYMTAB)
{
this->symtab_shnum_ = i;
break;
}
p += This::shdr_size;
2006-08-05 01:10:59 +02:00
}
}
// Read the symbols and relocations from an object file.
template<int size, bool big_endian>
Read_symbols_data
Sized_object<size, big_endian>::do_read_symbols()
{
if (this->symtab_shnum_ == 0)
{
// No symbol table. Weird but legal.
Read_symbols_data ret;
ret.symbols = NULL;
ret.symbols_size = 0;
2006-09-26 23:00:34 +02:00
ret.first_global = 0;
2006-08-05 01:10:59 +02:00
ret.symbol_names = NULL;
ret.symbol_names_size = 0;
return ret;
}
const int shdr_size = This::shdr_size;
2006-08-05 01:10:59 +02:00
// Read the symbol table section header.
off_t symtabshdroff = this->shoff_ + (this->symtab_shnum_ * shdr_size);
const unsigned char* psymtabshdr = this->get_view(symtabshdroff, shdr_size);
elfcpp::Shdr<size, big_endian> symtabshdr(psymtabshdr);
assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
// Read the symbol table.
2006-09-26 23:00:34 +02:00
File_view* fvsymtab = this->get_lasting_view(symtabshdr.get_sh_offset(),
symtabshdr.get_sh_size());
2006-08-05 01:10:59 +02:00
// Read the section header for the symbol names.
unsigned int strtab_shnum = symtabshdr.get_sh_link();
if (strtab_shnum == 0 || strtab_shnum >= this->shnum())
2006-08-05 01:10:59 +02:00
{
fprintf(stderr, _("%s: %s: invalid symbol table name index: %u\n"),
program_name, this->name().c_str(), strtab_shnum);
gold_exit(false);
}
off_t strtabshdroff = this->shoff_ + (strtab_shnum * shdr_size);
const unsigned char *pstrtabshdr = this->get_view(strtabshdroff, shdr_size);
elfcpp::Shdr<size, big_endian> strtabshdr(pstrtabshdr);
if (strtabshdr.get_sh_type() != elfcpp::SHT_STRTAB)
{
fprintf(stderr,
_("%s: %s: symbol table name section has wrong type: %u\n"),
program_name, this->name().c_str(),
static_cast<unsigned int>(strtabshdr.get_sh_type()));
gold_exit(false);
}
// Read the symbol names.
File_view* fvstrtab = this->get_lasting_view(strtabshdr.get_sh_offset(),
strtabshdr.get_sh_size());
Read_symbols_data ret;
ret.symbols = fvsymtab;
2006-09-26 23:00:34 +02:00
ret.symbols_size = symtabshdr.get_sh_size();
ret.first_global = symtabshdr.get_sh_info();
2006-08-05 01:10:59 +02:00
ret.symbol_names = fvstrtab;
ret.symbol_names_size = strtabshdr.get_sh_size();
return ret;
}
// Add the symbols to the symbol table.
template<int size, bool big_endian>
void
Sized_object<size, big_endian>::do_add_symbols(Symbol_table* symtab,
Read_symbols_data sd)
2006-08-05 01:10:59 +02:00
{
if (sd.symbols == NULL)
{
assert(sd.symbol_names == NULL);
return;
}
const int sym_size = This::sym_size;
size_t symcount = sd.symbols_size / sym_size;
if (symcount * sym_size != sd.symbols_size)
2006-08-05 01:10:59 +02:00
{
fprintf(stderr,
_("%s: %s: size of symbols is not multiple of symbol size\n"),
program_name, this->name().c_str());
gold_exit(false);
2006-08-05 01:10:59 +02:00
}
const char* sym_names =
reinterpret_cast<const char*>(sd.symbol_names->data());
2006-09-26 23:00:34 +02:00
// We only add the global symbols to the symbol table.
if (symcount > sd.first_global)
{
this->symbols_ = new Symbol*[symcount - sd.first_global];
const unsigned char* symdata = sd.symbols->data();
symdata += sd.first_global * sym_size;
const elfcpp::Sym<size, big_endian>* syms =
reinterpret_cast<const elfcpp::Sym<size, big_endian>*>(symdata);
symtab->add_from_object(this, syms, symcount - sd.first_global,
sym_names, sd.symbol_names_size, this->symbols_);
}
// Add the names of the local symbols. FIXME: We shouldn't do this
// if we are stripping symbols.
const elfcpp::Sym<size, big_endian>* local_syms =
reinterpret_cast<const elfcpp::Sym<size, big_endian>*>(sd.symbols->data());
symtab->add_local_symbol_names(this, local_syms, sd.first_global,
sym_names, sd.symbol_names_size);
delete sd.symbols;
delete sd.symbol_names;
}
// Return whether to include a section group in the link. LAYOUT is
// used to keep track of which section groups we have already seen.
// INDEX is the index of the section group and SHDR is the section
// header. If we do not want to include this group, we set bits in
// OMIT for each section which should be discarded.
template<int size, bool big_endian>
bool
Sized_object<size, big_endian>::include_section_group(
Layout* layout,
unsigned int index,
const elfcpp::Shdr<size, big_endian>& shdr,
std::vector<bool>* omit)
{
// Read the section contents.
const unsigned char* pcon = this->get_view(shdr.get_sh_offset(),
shdr.get_sh_size());
const elfcpp::Elf_Word* pword =
reinterpret_cast<const elfcpp::Elf_Word*>(pcon);
// The first word contains flags. We only care about COMDAT section
// groups. Other section groups are always included in the link
// just like ordinary sections.
elfcpp::Elf_Word flags = elfcpp::read_elf_word<big_endian>(pword);
if ((flags & elfcpp::GRP_COMDAT) == 0)
return true;
// Look up the group signature, which is the name of a symbol. This
// is a lot of effort to go to to read a string. Why didn't they
// just use the name of the SHT_GROUP section as the group
// signature?
// Get the appropriate symbol table header (this will normally be
// the single SHT_SYMTAB section, but in principle it need not be).
if (shdr.get_sh_link() >= this->shnum())
{
fprintf(stderr, _("%s: %s: section group %u link %u out of range\n"),
program_name, this->name().c_str(), index, shdr.get_sh_link());
gold_exit(false);
}
off_t off = this->shoff_ + shdr.get_sh_link() * This::shdr_size;
const unsigned char* psymshdr = this->get_view(off, This::shdr_size);
elfcpp::Shdr<size, big_endian> symshdr(psymshdr);
// Read the symbol table entry.
if (shdr.get_sh_info() >= symshdr.get_sh_size() / This::sym_size)
{
fprintf(stderr, _("%s: %s: section group %u info %u out of range\n"),
program_name, this->name().c_str(), index, shdr.get_sh_info());
gold_exit(false);
}
off_t symoff = symshdr.get_sh_offset() + shdr.get_sh_info() * This::sym_size;
const unsigned char* psym = this->get_view(symoff, This::sym_size);
elfcpp::Sym<size, big_endian> sym(psym);
// Read the section header for the symbol table names.
if (symshdr.get_sh_link() >= this->shnum())
{
fprintf(stderr, _("%s; %s: symtab section %u link %u out of range\n"),
program_name, this->name().c_str(), shdr.get_sh_link(),
symshdr.get_sh_link());
gold_exit(false);
}
off_t symnameoff = this->shoff_ + symshdr.get_sh_link() * This::shdr_size;
const unsigned char* psymnamehdr = this->get_view(symnameoff,
This::shdr_size);
elfcpp::Shdr<size, big_endian> symnamehdr(psymnamehdr);
// Read the symbol table names.
const unsigned char *psymnamesu = this->get_view(symnamehdr.get_sh_offset(),
symnamehdr.get_sh_size());
const char* psymnames = reinterpret_cast<const char*>(psymnamesu);
// Get the section group signature.
if (sym.get_st_name() >= symnamehdr.get_sh_size())
{
fprintf(stderr, _("%s: %s: symbol %u name offset %u out of range\n"),
program_name, this->name().c_str(), shdr.get_sh_info(),
sym.get_st_name());
gold_exit(false);
}
const char* signature = psymnames + sym.get_st_name();
// Record this section group, and see whether we've already seen one
// with the same signature.
if (layout->add_comdat(signature, true))
return true;
// This is a duplicate. We want to discard the sections in this
// group.
size_t count = shdr.get_sh_size() / sizeof(elfcpp::Elf_Word);
for (size_t i = 1; i < count; ++i)
{
elfcpp::Elf_Word secnum = elfcpp::read_elf_word<big_endian>(pword + i);
if (secnum >= this->shnum())
{
fprintf(stderr,
_("%s: %s: section %u in section group %u out of range"),
program_name, this->name().c_str(), secnum,
index);
gold_exit(false);
}
(*omit)[secnum] = true;
}
return false;
}
// Whether to include a linkonce section in the link. NAME is the
// name of the section and SHDR is the section header.
// Linkonce sections are a GNU extension implemented in the original
// GNU linker before section groups were defined. The semantics are
// that we only include one linkonce section with a given name. The
// name of a linkonce section is normally .gnu.linkonce.T.SYMNAME,
// where T is the type of section and SYMNAME is the name of a symbol.
// In an attempt to make linkonce sections interact well with section
// groups, we try to identify SYMNAME and use it like a section group
// signature. We want to block section groups with that signature,
// but not other linkonce sections with that signature. We also use
// the full name of the linkonce section as a normal section group
// signature.
template<int size, bool big_endian>
bool
Sized_object<size, big_endian>::include_linkonce_section(
Layout* layout,
const char* name,
const elfcpp::Shdr<size, big_endian>&)
{
const char* symname = strrchr(name, '.') + 1;
bool omit1 = layout->add_comdat(symname, false);
bool omit2 = layout->add_comdat(name, true);
return omit1 || omit2;
}
// Lay out the input sections. We walk through the sections and check
// whether they should be included in the link. If they should, we
// pass them to the Layout object, which will return an output section
// and an offset.
template<int size, bool big_endian>
void
Sized_object<size, big_endian>::do_layout(Layout* layout)
{
// This is always called from the main thread. Lock the file to
// keep the error checks happy.
Task_locker_obj<File_read> frl(this->input_file()->file());
// Get the section headers.
unsigned int shnum = this->shnum();
const unsigned char* pshdrs = this->get_view(this->shoff_,
shnum * This::shdr_size);
// Get the section names.
const unsigned char* pshdrnames = pshdrs + this->shstrndx_ * This::shdr_size;
elfcpp::Shdr<size, big_endian> shdrnames(pshdrnames);
typename elfcpp::Elf_types<size>::Elf_WXword names_size =
shdrnames.get_sh_size();
const unsigned char* pnamesu = this->get_view(shdrnames.get_sh_offset(),
shdrnames.get_sh_size());
const char* pnames = reinterpret_cast<const char*>(pnamesu);
std::vector<Map_to_output>& map_sections(this->map_to_output());
map_sections.reserve(shnum);
// Keep track of which sections to omit.
std::vector<bool> omit(shnum, false);
for (unsigned int i = 0; i < shnum; ++i)
{
elfcpp::Shdr<size, big_endian> shdr(pshdrs);
if (shdr.get_sh_name() >= names_size)
{
fprintf(stderr,
_("%s: %s: bad section name offset for section %u: %lu\n"),
program_name, this->name().c_str(), i,
static_cast<unsigned long>(shdr.get_sh_name()));
gold_exit(false);
}
const char* name = pnames + shdr.get_sh_name();
bool discard = omit[i];
if (!discard)
{
if (shdr.get_sh_type() == elfcpp::SHT_GROUP)
{
if (!this->include_section_group(layout, i, shdr, &omit))
discard = true;
}
else if (Layout::is_linkonce(name))
{
if (!this->include_linkonce_section(layout, name, shdr))
discard = true;
}
}
if (discard)
{
// Do not include this section in the link.
map_sections[i].output_section = NULL;
continue;
}
off_t offset;
Output_section* os = layout->layout(this, name, shdr, &offset);
map_sections[i].output_section = os;
map_sections[i].offset = offset;
pshdrs += This::shdr_size;
}
2006-08-05 01:10:59 +02:00
}
2006-09-26 23:00:34 +02:00
// Input_objects methods.
void
Input_objects::add_object(Object* obj)
{
this->object_list_.push_back(obj);
if (obj->is_dynamic())
this->any_dynamic_ = true;
}
2006-08-05 01:10:59 +02:00
} // End namespace gold.
namespace
{
using namespace gold;
// Read an ELF file with the header and return the appropriate
// instance of Object.
template<int size, bool big_endian>
Object*
make_elf_sized_object(const std::string& name, Input_file* input_file,
off_t offset, const elfcpp::Ehdr<size, big_endian>& ehdr)
{
int et = ehdr.get_e_type();
if (et != elfcpp::ET_REL && et != elfcpp::ET_DYN)
{
fprintf(stderr, "%s: %s: unsupported ELF type %d\n",
program_name, name.c_str(), static_cast<int>(et));
gold_exit(false);
}
if (et == elfcpp::ET_REL)
{
Sized_object<size, big_endian>* obj =
new Sized_object<size, big_endian>(name, input_file, offset, ehdr);
obj->setup(ehdr);
return obj;
}
else
{
// elfcpp::ET_DYN
fprintf(stderr, _("%s: %s: dynamic objects are not yet supported\n"),
program_name, name.c_str());
gold_exit(false);
// Sized_dynobj<size, big_endian>* obj =
// new Sized_dynobj<size, big_endian>(this->input_.name(), input_file,
// offset, ehdr);
// obj->setup(ehdr);
// return obj;
}
}
} // End anonymous namespace.
namespace gold
{
// Read an ELF file and return the appropriate instance of Object.
Object*
make_elf_object(const std::string& name, Input_file* input_file, off_t offset,
const unsigned char* p, off_t bytes)
{
if (bytes < elfcpp::EI_NIDENT)
{
fprintf(stderr, _("%s: %s: ELF file too short\n"),
program_name, name.c_str());
gold_exit(false);
}
int v = p[elfcpp::EI_VERSION];
if (v != elfcpp::EV_CURRENT)
{
if (v == elfcpp::EV_NONE)
fprintf(stderr, _("%s: %s: invalid ELF version 0\n"),
program_name, name.c_str());
else
fprintf(stderr, _("%s: %s: unsupported ELF version %d\n"),
program_name, name.c_str(), v);
gold_exit(false);
}
int c = p[elfcpp::EI_CLASS];
if (c == elfcpp::ELFCLASSNONE)
{
fprintf(stderr, _("%s: %s: invalid ELF class 0\n"),
program_name, name.c_str());
gold_exit(false);
}
else if (c != elfcpp::ELFCLASS32
&& c != elfcpp::ELFCLASS64)
{
fprintf(stderr, _("%s: %s: unsupported ELF class %d\n"),
program_name, name.c_str(), c);
gold_exit(false);
}
int d = p[elfcpp::EI_DATA];
if (d == elfcpp::ELFDATANONE)
{
fprintf(stderr, _("%s: %s: invalid ELF data encoding\n"),
program_name, name.c_str());
gold_exit(false);
}
else if (d != elfcpp::ELFDATA2LSB
&& d != elfcpp::ELFDATA2MSB)
{
fprintf(stderr, _("%s: %s: unsupported ELF data encoding %d\n"),
program_name, name.c_str(), d);
gold_exit(false);
}
bool big_endian = d == elfcpp::ELFDATA2MSB;
if (c == elfcpp::ELFCLASS32)
{
if (bytes < elfcpp::Elf_sizes<32>::ehdr_size)
{
fprintf(stderr, _("%s: %s: ELF file too short\n"),
program_name, name.c_str());
gold_exit(false);
}
if (big_endian)
{
elfcpp::Ehdr<32, true> ehdr(p);
return make_elf_sized_object<32, true>(name, input_file,
offset, ehdr);
}
else
{
elfcpp::Ehdr<32, false> ehdr(p);
return make_elf_sized_object<32, false>(name, input_file,
offset, ehdr);
}
}
else
{
if (bytes < elfcpp::Elf_sizes<32>::ehdr_size)
{
fprintf(stderr, _("%s: %s: ELF file too short\n"),
program_name, name.c_str());
gold_exit(false);
}
if (big_endian)
{
elfcpp::Ehdr<64, true> ehdr(p);
return make_elf_sized_object<64, true>(name, input_file,
offset, ehdr);
}
else
{
elfcpp::Ehdr<64, false> ehdr(p);
return make_elf_sized_object<64, false>(name, input_file,
offset, ehdr);
}
}
}
// Instantiate the templates we need. We could use the configure
// script to restrict this to only the ones for implemented targets.
template
class Sized_object<32, false>;
template
class Sized_object<32, true>;
template
class Sized_object<64, false>;
template
class Sized_object<64, true>;
} // End namespace gold.