2006-09-29 21:58:17 +02:00
|
|
|
// archive.h -- archive support for gold -*- C++ -*-
|
|
|
|
|
2008-03-13 22:04:21 +01:00
|
|
|
// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
|
2007-09-22 23:02:10 +02:00
|
|
|
// Written by Ian Lance Taylor <iant@google.com>.
|
|
|
|
|
|
|
|
// This file is part of gold.
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
// MA 02110-1301, USA.
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
#ifndef GOLD_ARCHIVE_H
|
|
|
|
#define GOLD_ARCHIVE_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2008-05-21 23:37:44 +02:00
|
|
|
#include "fileread.h"
|
2006-09-29 21:58:17 +02:00
|
|
|
#include "workqueue.h"
|
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
class Task;
|
2006-09-29 21:58:17 +02:00
|
|
|
class Input_file;
|
|
|
|
class Input_objects;
|
2006-11-03 19:26:11 +01:00
|
|
|
class Input_group;
|
2006-10-06 22:40:16 +02:00
|
|
|
class Layout;
|
2006-09-29 21:58:17 +02:00
|
|
|
class Symbol_table;
|
2008-08-07 19:02:11 +02:00
|
|
|
class Object;
|
|
|
|
class Read_symbols_data;
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
// This class represents an archive--generally a libNAME.a file.
|
|
|
|
// Archives have a symbol table and a list of objects.
|
|
|
|
|
|
|
|
class Archive
|
|
|
|
{
|
|
|
|
public:
|
2008-04-01 22:57:36 +02:00
|
|
|
Archive(const std::string& name, Input_file* input_file,
|
|
|
|
bool is_thin_archive, Dirsearch* dirpath, Task* task)
|
2007-09-25 19:50:26 +02:00
|
|
|
: name_(name), input_file_(input_file), armap_(), armap_names_(),
|
2008-08-07 19:02:11 +02:00
|
|
|
extended_names_(), armap_checked_(), seen_offsets_(), members_(),
|
|
|
|
is_thin_archive_(is_thin_archive), nested_archives_(),
|
|
|
|
dirpath_(dirpath), task_(task), num_members_(0)
|
2006-09-29 21:58:17 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
// The length of the magic string at the start of an archive.
|
|
|
|
static const int sarmag = 8;
|
|
|
|
|
|
|
|
// The magic string at the start of an archive.
|
|
|
|
static const char armag[sarmag];
|
2008-04-01 22:57:36 +02:00
|
|
|
static const char armagt[sarmag];
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
// The string expected at the end of an archive member header.
|
|
|
|
static const char arfmag[2];
|
|
|
|
|
2008-07-23 00:08:43 +02:00
|
|
|
// The name of the object. This is the name used on the command
|
|
|
|
// line; e.g., if "-lgcc" is on the command line, this will be
|
|
|
|
// "gcc".
|
2006-09-29 21:58:17 +02:00
|
|
|
const std::string&
|
|
|
|
name() const
|
|
|
|
{ return this->name_; }
|
|
|
|
|
2008-07-23 00:08:43 +02:00
|
|
|
// The file name.
|
|
|
|
const std::string&
|
|
|
|
filename() const
|
|
|
|
{ return this->input_file_->filename(); }
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Set up the archive: read the symbol map.
|
|
|
|
void
|
2008-08-07 19:02:11 +02:00
|
|
|
setup(Input_objects*);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Get a reference to the underlying file.
|
|
|
|
File_read&
|
|
|
|
file()
|
|
|
|
{ return this->input_file_->file(); }
|
|
|
|
|
2008-05-21 23:37:44 +02:00
|
|
|
const File_read&
|
|
|
|
file() const
|
|
|
|
{ return this->input_file_->file(); }
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Lock the underlying file.
|
|
|
|
void
|
2007-12-14 20:00:21 +01:00
|
|
|
lock(const Task* t)
|
|
|
|
{ this->input_file_->file().lock(t); }
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
// Unlock the underlying file.
|
|
|
|
void
|
2007-12-14 20:00:21 +01:00
|
|
|
unlock(const Task* t)
|
|
|
|
{ this->input_file_->file().unlock(t); }
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
// Return whether the underlying file is locked.
|
|
|
|
bool
|
|
|
|
is_locked() const
|
|
|
|
{ return this->input_file_->file().is_locked(); }
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
// Return the token, so that the task can be queued.
|
|
|
|
Task_token*
|
|
|
|
token()
|
|
|
|
{ return this->input_file_->file().token(); }
|
|
|
|
|
|
|
|
// Release the underlying file.
|
|
|
|
void
|
|
|
|
release()
|
|
|
|
{ this->input_file_->file().release(); }
|
|
|
|
|
2008-04-02 22:58:21 +02:00
|
|
|
// Clear uncached views in the underlying file.
|
|
|
|
void
|
|
|
|
clear_uncached_views()
|
|
|
|
{ this->input_file_->file().clear_uncached_views(); }
|
|
|
|
|
2008-07-23 00:08:43 +02:00
|
|
|
// Whether this is a thin archive.
|
|
|
|
bool
|
|
|
|
is_thin_archive() const
|
|
|
|
{ return this->is_thin_archive_; }
|
|
|
|
|
2008-04-01 22:57:36 +02:00
|
|
|
// Unlock any nested archives.
|
|
|
|
void
|
|
|
|
unlock_nested_archives();
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Select members from the archive as needed and add them to the
|
|
|
|
// link.
|
|
|
|
void
|
2008-05-21 23:37:44 +02:00
|
|
|
add_symbols(Symbol_table*, Layout*, Input_objects*, Mapfile*);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2008-08-07 19:02:11 +02:00
|
|
|
// Dump statistical information to stderr.
|
|
|
|
static void
|
|
|
|
print_stats();
|
|
|
|
|
2008-07-23 00:08:43 +02:00
|
|
|
// Return the number of members in the archive.
|
|
|
|
size_t
|
2008-07-25 06:25:49 +02:00
|
|
|
count_members();
|
2008-07-23 00:08:43 +02:00
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
private:
|
|
|
|
Archive(const Archive&);
|
|
|
|
Archive& operator=(const Archive&);
|
|
|
|
|
|
|
|
struct Archive_header;
|
|
|
|
|
2008-08-07 19:02:11 +02:00
|
|
|
// Total number of archives seen.
|
|
|
|
static unsigned int total_archives;
|
|
|
|
// Total number of archive members seen.
|
|
|
|
static unsigned int total_members;
|
|
|
|
// Number of archive members loaded.
|
|
|
|
static unsigned int total_members_loaded;
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Get a view into the underlying file.
|
|
|
|
const unsigned char*
|
2008-04-02 22:58:21 +02:00
|
|
|
get_view(off_t start, section_size_type size, bool aligned, bool cache)
|
|
|
|
{ return this->input_file_->file().get_view(0, start, size, aligned, cache); }
|
2007-09-25 02:27:29 +02:00
|
|
|
|
2007-08-22 01:37:56 +02:00
|
|
|
// Read the archive symbol map.
|
|
|
|
void
|
2007-12-18 01:48:04 +01:00
|
|
|
read_armap(off_t start, section_size_type size);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2008-01-03 00:48:49 +01:00
|
|
|
// Read an archive member header at OFF. CACHE is whether to cache
|
|
|
|
// the file view. Return the size of the member, and set *PNAME to
|
|
|
|
// the name.
|
2006-09-29 21:58:17 +02:00
|
|
|
off_t
|
2008-04-01 22:57:36 +02:00
|
|
|
read_header(off_t off, bool cache, std::string* pname, off_t* nested_off);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2007-08-22 01:37:56 +02:00
|
|
|
// Interpret an archive header HDR at OFF. Return the size of the
|
|
|
|
// member, and set *PNAME to the name.
|
|
|
|
off_t
|
2008-04-01 22:57:36 +02:00
|
|
|
interpret_header(const Archive_header* hdr, off_t off, std::string* pname,
|
2008-07-23 00:08:43 +02:00
|
|
|
off_t* nested_off) const;
|
2007-08-22 01:37:56 +02:00
|
|
|
|
2008-08-07 19:02:11 +02:00
|
|
|
// Get the file and offset for an archive member, which may be an
|
|
|
|
// external member of a thin archive. Set *INPUT_FILE to the
|
|
|
|
// file containing the actual member, *MEMOFF to the offset
|
|
|
|
// within that file (0 if not a nested archive), and *MEMBER_NAME
|
|
|
|
// to the name of the archive member. Return TRUE on success.
|
|
|
|
bool
|
|
|
|
get_file_and_offset(off_t off, Input_objects* input_objects,
|
|
|
|
Input_file** input_file, off_t* memoff,
|
2008-09-20 00:54:57 +02:00
|
|
|
off_t* memsize, std::string* member_name);
|
2008-08-07 19:02:11 +02:00
|
|
|
|
|
|
|
// Return an ELF object for the member at offset OFF. Set *MEMBER_NAME to
|
|
|
|
// the name of the member.
|
|
|
|
Object*
|
|
|
|
get_elf_object_for_member(off_t off, Input_objects* input_objects);
|
|
|
|
|
|
|
|
// Read the symbols from all the archive members in the link.
|
|
|
|
void
|
|
|
|
read_all_symbols(Input_objects* input_objects);
|
|
|
|
|
|
|
|
// Read the symbols from an archive member in the link. OFF is the file
|
|
|
|
// offset of the member header.
|
|
|
|
void
|
|
|
|
read_symbols(Input_objects* input_objects, off_t off);
|
|
|
|
|
2007-08-22 01:37:56 +02:00
|
|
|
// Include all the archive members in the link.
|
|
|
|
void
|
2008-05-21 23:37:44 +02:00
|
|
|
include_all_members(Symbol_table*, Layout*, Input_objects*, Mapfile*);
|
2007-08-22 01:37:56 +02:00
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Include an archive member in the link.
|
|
|
|
void
|
2008-05-21 23:37:44 +02:00
|
|
|
include_member(Symbol_table*, Layout*, Input_objects*, off_t off,
|
|
|
|
Mapfile*, Symbol*, const char* why);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2008-07-23 00:08:43 +02:00
|
|
|
// Iterate over archive members.
|
|
|
|
class const_iterator;
|
|
|
|
|
|
|
|
const_iterator
|
2008-07-25 06:25:49 +02:00
|
|
|
begin();
|
2008-07-23 00:08:43 +02:00
|
|
|
|
|
|
|
const_iterator
|
2008-07-25 06:25:49 +02:00
|
|
|
end();
|
2008-07-23 00:08:43 +02:00
|
|
|
|
|
|
|
friend class const_iterator;
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// An entry in the archive map of symbols to object files.
|
|
|
|
struct Armap_entry
|
|
|
|
{
|
2007-09-25 19:50:26 +02:00
|
|
|
// The offset to the symbol name in armap_names_.
|
|
|
|
off_t name_offset;
|
|
|
|
// The file offset to the object in the archive.
|
|
|
|
off_t file_offset;
|
2006-09-29 21:58:17 +02:00
|
|
|
};
|
|
|
|
|
2008-08-07 19:02:11 +02:00
|
|
|
// An entry in the archive map of offsets to members.
|
|
|
|
struct Archive_member
|
|
|
|
{
|
|
|
|
Archive_member()
|
|
|
|
: obj_(NULL), sd_(NULL)
|
|
|
|
{ }
|
|
|
|
Archive_member(Object* obj, Read_symbols_data* sd)
|
|
|
|
: obj_(obj), sd_(sd)
|
|
|
|
{ }
|
|
|
|
// The object file.
|
|
|
|
Object* obj_;
|
|
|
|
// The data to pass from read_symbols() to add_symbols().
|
|
|
|
Read_symbols_data* sd_;
|
|
|
|
};
|
|
|
|
|
2007-09-20 07:56:14 +02:00
|
|
|
// A simple hash code for off_t values.
|
|
|
|
class Seen_hash
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
size_t operator()(off_t val) const
|
|
|
|
{ return static_cast<size_t>(val); }
|
|
|
|
};
|
|
|
|
|
2008-04-01 22:57:36 +02:00
|
|
|
// For keeping track of open nested archives in a thin archive file.
|
|
|
|
typedef Unordered_map<std::string, Archive*> Nested_archive_table;
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Name of object as printed to user.
|
|
|
|
std::string name_;
|
|
|
|
// For reading the file.
|
|
|
|
Input_file* input_file_;
|
|
|
|
// The archive map.
|
|
|
|
std::vector<Armap_entry> armap_;
|
2007-09-25 19:50:26 +02:00
|
|
|
// The names in the archive map.
|
|
|
|
std::string armap_names_;
|
2006-09-29 21:58:17 +02:00
|
|
|
// The extended name table.
|
|
|
|
std::string extended_names_;
|
2007-09-20 07:56:14 +02:00
|
|
|
// Track which symbols in the archive map are for elements which are
|
|
|
|
// defined or which have already been included in the link.
|
|
|
|
std::vector<bool> armap_checked_;
|
|
|
|
// Track which elements have been included by offset.
|
|
|
|
Unordered_set<off_t, Seen_hash> seen_offsets_;
|
2008-08-07 19:02:11 +02:00
|
|
|
// Table of objects whose symbols have been pre-read.
|
|
|
|
std::map<off_t, Archive_member> members_;
|
2008-04-01 22:57:36 +02:00
|
|
|
// True if this is a thin archive.
|
|
|
|
const bool is_thin_archive_;
|
|
|
|
// Table of nested archives, indexed by filename.
|
|
|
|
Nested_archive_table nested_archives_;
|
|
|
|
// The directory search path.
|
|
|
|
Dirsearch* dirpath_;
|
|
|
|
// The task reading this archive.
|
|
|
|
Task *task_;
|
2008-08-07 19:02:11 +02:00
|
|
|
// Number of members in this archive;
|
|
|
|
unsigned int num_members_;
|
2006-09-29 21:58:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// This class is used to read an archive and pick out the desired
|
|
|
|
// elements and add them to the link.
|
|
|
|
|
|
|
|
class Add_archive_symbols : public Task
|
|
|
|
{
|
|
|
|
public:
|
2007-09-21 09:20:01 +02:00
|
|
|
Add_archive_symbols(Symbol_table* symtab, Layout* layout,
|
2008-05-21 23:37:44 +02:00
|
|
|
Input_objects* input_objects, Mapfile* mapfile,
|
2006-11-03 19:26:11 +01:00
|
|
|
Archive* archive, Input_group* input_group,
|
|
|
|
Task_token* this_blocker,
|
2006-09-29 21:58:17 +02:00
|
|
|
Task_token* next_blocker)
|
2007-09-21 09:20:01 +02:00
|
|
|
: symtab_(symtab), layout_(layout), input_objects_(input_objects),
|
2008-05-21 23:37:44 +02:00
|
|
|
mapfile_(mapfile), archive_(archive), input_group_(input_group),
|
2007-09-21 09:20:01 +02:00
|
|
|
this_blocker_(this_blocker), next_blocker_(next_blocker)
|
2006-09-29 21:58:17 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
~Add_archive_symbols();
|
|
|
|
|
|
|
|
// The standard Task methods.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
Task_token*
|
|
|
|
is_runnable();
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
void
|
|
|
|
locks(Task_locker*);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
run(Workqueue*);
|
|
|
|
|
2007-11-22 01:05:51 +01:00
|
|
|
std::string
|
|
|
|
get_name() const
|
|
|
|
{
|
|
|
|
if (this->archive_ == NULL)
|
|
|
|
return "Add_archive_symbols";
|
|
|
|
return "Add_archive_symbols " + this->archive_->file().filename();
|
|
|
|
}
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
private:
|
|
|
|
Symbol_table* symtab_;
|
2006-10-06 22:40:16 +02:00
|
|
|
Layout* layout_;
|
2006-09-29 21:58:17 +02:00
|
|
|
Input_objects* input_objects_;
|
2008-05-21 23:37:44 +02:00
|
|
|
Mapfile* mapfile_;
|
2006-09-29 21:58:17 +02:00
|
|
|
Archive* archive_;
|
2006-11-03 19:26:11 +01:00
|
|
|
Input_group* input_group_;
|
2006-09-29 21:58:17 +02:00
|
|
|
Task_token* this_blocker_;
|
|
|
|
Task_token* next_blocker_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace gold.
|
|
|
|
|
|
|
|
#endif // !defined(GOLD_ARCHIVE_H)
|