2006-08-05 01:10:59 +02:00
|
|
|
// fileread.h -- read files for gold -*- C++ -*-
|
|
|
|
|
2015-01-01 15:15:26 +01:00
|
|
|
// Copyright (C) 2006-2015 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-08-05 01:10:59 +02:00
|
|
|
// Classes used to read data from binary input files.
|
|
|
|
|
|
|
|
#ifndef GOLD_FILEREAD_H
|
|
|
|
#define GOLD_FILEREAD_H
|
|
|
|
|
|
|
|
#include <list>
|
2006-11-03 19:26:11 +01:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2008-01-22 23:50:31 +01:00
|
|
|
#include <vector>
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
#include "token.h"
|
2006-08-05 01:10:59 +02:00
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
2009-07-07 01:11:21 +02:00
|
|
|
// Since not all system supports stat.st_mtim and struct timespec,
|
|
|
|
// we define our own structure and fill the nanoseconds if we can.
|
|
|
|
|
|
|
|
struct Timespec
|
|
|
|
{
|
|
|
|
Timespec()
|
|
|
|
: seconds(0), nanoseconds(0)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
Timespec(time_t a_seconds, int a_nanoseconds)
|
|
|
|
: seconds(a_seconds), nanoseconds(a_nanoseconds)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
time_t seconds;
|
|
|
|
int nanoseconds;
|
|
|
|
};
|
|
|
|
|
2011-04-12 02:44:48 +02:00
|
|
|
// Get the last modified time of an unopened file. Returns false if the
|
|
|
|
// file does not exist.
|
|
|
|
|
|
|
|
bool
|
|
|
|
get_mtime(const char* filename, Timespec* mtime);
|
|
|
|
|
2008-01-19 00:26:48 +01:00
|
|
|
class Position_dependent_options;
|
|
|
|
class Input_file_argument;
|
2006-08-05 01:10:59 +02:00
|
|
|
class Dirsearch;
|
|
|
|
class File_view;
|
|
|
|
|
2008-07-25 06:25:49 +02:00
|
|
|
// File_read manages a file descriptor and mappings for a file we are
|
|
|
|
// reading.
|
2006-08-05 01:10:59 +02:00
|
|
|
|
|
|
|
class File_read
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
File_read()
|
2008-07-25 06:25:49 +02:00
|
|
|
: name_(), descriptor_(-1), is_descriptor_opened_(false), object_count_(0),
|
2009-10-28 01:42:34 +01:00
|
|
|
size_(0), token_(false), views_(), saved_views_(), mapped_bytes_(0),
|
|
|
|
released_(true), whole_file_view_(NULL)
|
2006-08-05 01:10:59 +02:00
|
|
|
{ }
|
2006-12-01 00:52:50 +01:00
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
~File_read();
|
|
|
|
|
|
|
|
// Open a file.
|
|
|
|
bool
|
2007-12-14 20:00:21 +01:00
|
|
|
open(const Task*, const std::string& name);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2006-12-01 00:52:50 +01:00
|
|
|
// Pretend to open the file, but provide the file contents. No
|
|
|
|
// actual file system activity will occur. This is used for
|
|
|
|
// testing.
|
|
|
|
bool
|
2007-12-14 20:00:21 +01:00
|
|
|
open(const Task*, const std::string& name, const unsigned char* contents,
|
|
|
|
off_t size);
|
2006-12-01 00:52:50 +01:00
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
// Return the file name.
|
|
|
|
const std::string&
|
|
|
|
filename() const
|
|
|
|
{ return this->name_; }
|
|
|
|
|
2008-01-03 00:48:49 +01:00
|
|
|
// Add an object associated with a file.
|
|
|
|
void
|
|
|
|
add_object()
|
|
|
|
{ ++this->object_count_; }
|
|
|
|
|
|
|
|
// Remove an object associated with a file.
|
|
|
|
void
|
|
|
|
remove_object()
|
|
|
|
{ --this->object_count_; }
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
// Lock the file for exclusive access within a particular Task::run
|
2008-07-25 06:25:49 +02:00
|
|
|
// execution. This routine may only be called when the workqueue
|
|
|
|
// lock is held.
|
2006-08-05 01:10:59 +02:00
|
|
|
void
|
2007-12-14 20:00:21 +01:00
|
|
|
lock(const Task* t);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2008-07-25 06:25:49 +02:00
|
|
|
// Unlock the file.
|
2006-08-05 01:10:59 +02:00
|
|
|
void
|
2007-12-14 20:00:21 +01:00
|
|
|
unlock(const Task* t);
|
2007-08-22 01:37:56 +02:00
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
// Test whether the object is locked.
|
|
|
|
bool
|
2007-12-14 19:50:01 +01:00
|
|
|
is_locked() const;
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
// Return the token, so that the task can be queued.
|
|
|
|
Task_token*
|
|
|
|
token()
|
|
|
|
{ return &this->token_; }
|
|
|
|
|
|
|
|
// Release the file. This indicates that we aren't going to do
|
|
|
|
// anything further with it until it is unlocked. This is used
|
|
|
|
// because a Task which locks the file never calls either lock or
|
|
|
|
// unlock; it just locks the token. The basic rule is that a Task
|
|
|
|
// which locks a file via the Task::locks interface must explicitly
|
|
|
|
// call release() when it is done. This is not necessary for code
|
|
|
|
// which calls unlock() on the file.
|
|
|
|
void
|
|
|
|
release();
|
|
|
|
|
2007-09-25 08:43:17 +02:00
|
|
|
// Return the size of the file.
|
|
|
|
off_t
|
|
|
|
filesize() const
|
|
|
|
{ return this->size_; }
|
|
|
|
|
2007-09-25 02:27:29 +02:00
|
|
|
// Return a view into the file starting at file offset START for
|
2008-04-02 22:58:21 +02:00
|
|
|
// SIZE bytes. OFFSET is the offset into the input file for the
|
|
|
|
// file we are reading; this is zero for a normal object file,
|
|
|
|
// non-zero for an object file in an archive. ALIGNED is true if
|
2013-07-15 18:49:20 +02:00
|
|
|
// the data must be naturally aligned (i.e., aligned to the size
|
|
|
|
// of a target word); this only matters when OFFSET is not zero.
|
|
|
|
// The pointer will remain valid until the File_read is unlocked.
|
|
|
|
// It is an error if we can not read enough data from the file.
|
|
|
|
// The CACHE parameter is a hint as to whether it will be useful
|
|
|
|
// to cache this data for later accesses--i.e., later calls to
|
|
|
|
// get_view, read, or get_lasting_view which retrieve the same
|
2007-09-25 19:50:26 +02:00
|
|
|
// data.
|
2006-08-05 01:10:59 +02:00
|
|
|
const unsigned char*
|
2008-04-02 22:58:21 +02:00
|
|
|
get_view(off_t offset, off_t start, section_size_type size, bool aligned,
|
|
|
|
bool cache);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-09-25 02:27:29 +02:00
|
|
|
// Read data from the file into the buffer P starting at file offset
|
|
|
|
// START for SIZE bytes.
|
|
|
|
void
|
2008-07-25 06:25:49 +02:00
|
|
|
read(off_t start, section_size_type size, void* p);
|
2007-09-25 02:27:29 +02:00
|
|
|
|
|
|
|
// Return a lasting view into the file starting at file offset START
|
|
|
|
// for SIZE bytes. This is allocated with new, and the caller is
|
|
|
|
// responsible for deleting it when done. The data associated with
|
|
|
|
// this view will remain valid until the view is deleted. It is an
|
2008-04-02 22:58:21 +02:00
|
|
|
// error if we can not read enough data from the file. The OFFSET,
|
|
|
|
// ALIGNED and CACHE parameters are as in get_view.
|
2006-08-05 01:10:59 +02:00
|
|
|
File_view*
|
2008-04-02 22:58:21 +02:00
|
|
|
get_lasting_view(off_t offset, off_t start, section_size_type size,
|
|
|
|
bool aligned, bool cache);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2008-01-03 00:48:49 +01:00
|
|
|
// Mark all views as no longer cached.
|
|
|
|
void
|
|
|
|
clear_view_cache_marks();
|
|
|
|
|
2008-04-02 22:58:21 +02:00
|
|
|
// Discard all uncached views. This is normally done by release(),
|
|
|
|
// but not for objects in archives. FIXME: This is a complicated
|
|
|
|
// interface, and it would be nice to have something more automatic.
|
|
|
|
void
|
|
|
|
clear_uncached_views()
|
2010-03-10 18:37:11 +01:00
|
|
|
{ this->clear_views(CLEAR_VIEWS_ARCHIVE); }
|
2008-04-02 22:58:21 +02:00
|
|
|
|
2008-01-03 00:48:49 +01:00
|
|
|
// A struct used to do a multiple read.
|
|
|
|
struct Read_multiple_entry
|
|
|
|
{
|
|
|
|
// The file offset of the data to read.
|
|
|
|
off_t file_offset;
|
|
|
|
// The amount of data to read.
|
|
|
|
section_size_type size;
|
|
|
|
// The buffer where the data should be placed.
|
|
|
|
unsigned char* buffer;
|
|
|
|
|
|
|
|
Read_multiple_entry(off_t o, section_size_type s, unsigned char* b)
|
|
|
|
: file_offset(o), size(s), buffer(b)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Read_multiple_entry> Read_multiple;
|
|
|
|
|
|
|
|
// Read a bunch of data from the file into various different
|
|
|
|
// locations. The vector must be sorted by ascending file_offset.
|
|
|
|
// BASE is a base offset to be added to all the offsets in the
|
|
|
|
// vector.
|
|
|
|
void
|
|
|
|
read_multiple(off_t base, const Read_multiple&);
|
|
|
|
|
2007-10-12 07:51:25 +02:00
|
|
|
// Dump statistical information to stderr.
|
|
|
|
static void
|
|
|
|
print_stats();
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
// Return the open file descriptor (for plugins).
|
|
|
|
int
|
2009-01-15 02:29:25 +01:00
|
|
|
descriptor()
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
2009-01-15 02:29:25 +01:00
|
|
|
this->reopen_descriptor();
|
2008-09-20 00:54:57 +02:00
|
|
|
return this->descriptor_;
|
|
|
|
}
|
2009-07-07 01:11:21 +02:00
|
|
|
|
|
|
|
// Return the file last modification time. Calls gold_fatal if the stat
|
|
|
|
// system call failed.
|
|
|
|
Timespec
|
|
|
|
get_mtime();
|
2008-09-20 00:54:57 +02:00
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
private:
|
2010-03-10 18:37:11 +01:00
|
|
|
// Control for what views to clear.
|
|
|
|
enum Clear_views_mode
|
|
|
|
{
|
|
|
|
// Clear uncached views not used by an archive.
|
|
|
|
CLEAR_VIEWS_NORMAL,
|
|
|
|
// Clear all uncached views (including in an archive).
|
|
|
|
CLEAR_VIEWS_ARCHIVE,
|
|
|
|
// Clear all views (i.e., we're destroying the file).
|
|
|
|
CLEAR_VIEWS_ALL
|
|
|
|
};
|
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
// This class may not be copied.
|
|
|
|
File_read(const File_read&);
|
|
|
|
File_read& operator=(const File_read&);
|
|
|
|
|
2010-02-12 04:23:26 +01:00
|
|
|
// Total bytes mapped into memory during the link if --stats.
|
2007-10-12 07:51:25 +02:00
|
|
|
static unsigned long long total_mapped_bytes;
|
|
|
|
|
2010-02-12 04:23:26 +01:00
|
|
|
// Current number of bytes mapped into memory during the link if
|
|
|
|
// --stats.
|
2007-10-12 07:51:25 +02:00
|
|
|
static unsigned long long current_mapped_bytes;
|
|
|
|
|
2010-02-12 04:23:26 +01:00
|
|
|
// High water mark of bytes mapped into memory during the link if
|
|
|
|
// --stats.
|
2007-10-12 07:51:25 +02:00
|
|
|
static unsigned long long maximum_mapped_bytes;
|
|
|
|
|
2007-09-26 01:08:30 +02:00
|
|
|
// A view into the file.
|
2006-08-05 01:10:59 +02:00
|
|
|
class View
|
|
|
|
{
|
|
|
|
public:
|
2009-10-28 01:42:34 +01:00
|
|
|
// Specifies how to dispose the data on destruction of the view.
|
|
|
|
enum Data_ownership
|
|
|
|
{
|
|
|
|
// Data owned by File object - nothing done in destructor.
|
|
|
|
DATA_NOT_OWNED,
|
2010-12-14 20:03:30 +01:00
|
|
|
// Data allocated with new[] and owned by this object - should
|
2009-10-28 01:42:34 +01:00
|
|
|
// use delete[].
|
|
|
|
DATA_ALLOCATED_ARRAY,
|
|
|
|
// Data mmapped and owned by this object - should munmap.
|
|
|
|
DATA_MMAPPED
|
|
|
|
};
|
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
View(off_t start, section_size_type size, const unsigned char* data,
|
|
|
|
unsigned int byteshift, bool cache, Data_ownership data_ownership)
|
|
|
|
: start_(start), size_(size), data_(data), lock_count_(0),
|
|
|
|
byteshift_(byteshift), cache_(cache), data_ownership_(data_ownership),
|
2009-10-28 01:42:34 +01:00
|
|
|
accessed_(true)
|
2006-08-05 01:10:59 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
~View();
|
|
|
|
|
|
|
|
off_t
|
|
|
|
start() const
|
|
|
|
{ return this->start_; }
|
|
|
|
|
2007-12-18 01:48:04 +01:00
|
|
|
section_size_type
|
2006-08-05 01:10:59 +02:00
|
|
|
size() const
|
|
|
|
{ return this->size_; }
|
|
|
|
|
2007-09-22 07:03:56 +02:00
|
|
|
const unsigned char*
|
2006-08-05 01:10:59 +02:00
|
|
|
data() const
|
|
|
|
{ return this->data_; }
|
|
|
|
|
|
|
|
void
|
|
|
|
lock();
|
|
|
|
|
|
|
|
void
|
|
|
|
unlock();
|
|
|
|
|
|
|
|
bool
|
|
|
|
is_locked();
|
|
|
|
|
2008-04-02 22:58:21 +02:00
|
|
|
unsigned int
|
|
|
|
byteshift() const
|
|
|
|
{ return this->byteshift_; }
|
|
|
|
|
2007-09-25 19:50:26 +02:00
|
|
|
void
|
|
|
|
set_cache()
|
|
|
|
{ this->cache_ = true; }
|
|
|
|
|
2008-01-03 00:48:49 +01:00
|
|
|
void
|
|
|
|
clear_cache()
|
|
|
|
{ this->cache_ = false; }
|
|
|
|
|
2007-09-25 19:50:26 +02:00
|
|
|
bool
|
|
|
|
should_cache() const
|
|
|
|
{ return this->cache_; }
|
|
|
|
|
2008-01-03 00:48:49 +01:00
|
|
|
void
|
|
|
|
set_accessed()
|
|
|
|
{ this->accessed_ = true; }
|
|
|
|
|
|
|
|
void
|
|
|
|
clear_accessed()
|
|
|
|
{ this->accessed_= false; }
|
|
|
|
|
|
|
|
bool
|
|
|
|
accessed() const
|
|
|
|
{ return this->accessed_; }
|
|
|
|
|
2010-03-10 18:37:11 +01:00
|
|
|
// Returns TRUE if this view contains permanent data -- e.g., data that
|
|
|
|
// was supplied by the owner of the File object.
|
|
|
|
bool
|
|
|
|
is_permanent_view() const
|
|
|
|
{ return this->data_ownership_ == DATA_NOT_OWNED; }
|
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
private:
|
|
|
|
View(const View&);
|
|
|
|
View& operator=(const View&);
|
|
|
|
|
2008-04-02 22:58:21 +02:00
|
|
|
// The file offset of the start of the view.
|
2006-08-05 01:10:59 +02:00
|
|
|
off_t start_;
|
2008-04-02 22:58:21 +02:00
|
|
|
// The size of the view.
|
2007-12-18 01:48:04 +01:00
|
|
|
section_size_type size_;
|
2008-04-02 22:58:21 +02:00
|
|
|
// A pointer to the actual bytes.
|
2007-09-22 07:03:56 +02:00
|
|
|
const unsigned char* data_;
|
2008-04-02 22:58:21 +02:00
|
|
|
// The number of locks on this view.
|
2006-08-05 01:10:59 +02:00
|
|
|
int lock_count_;
|
2008-04-02 22:58:21 +02:00
|
|
|
// The number of bytes that the view is shifted relative to the
|
|
|
|
// underlying file. This is used to align data. This is normally
|
|
|
|
// zero, except possibly for an object in an archive.
|
|
|
|
unsigned int byteshift_;
|
|
|
|
// Whether the view is cached.
|
2007-09-25 19:50:26 +02:00
|
|
|
bool cache_;
|
2008-04-02 22:58:21 +02:00
|
|
|
// Whether the view is mapped into memory. If not, data_ points
|
|
|
|
// to memory allocated using new[].
|
2009-10-28 01:42:34 +01:00
|
|
|
Data_ownership data_ownership_;
|
2008-04-02 22:58:21 +02:00
|
|
|
// Whether the view has been accessed recently.
|
2008-01-03 00:48:49 +01:00
|
|
|
bool accessed_;
|
2006-08-05 01:10:59 +02:00
|
|
|
};
|
|
|
|
|
2007-10-12 07:51:25 +02:00
|
|
|
friend class View;
|
2006-08-05 01:10:59 +02:00
|
|
|
friend class File_view;
|
|
|
|
|
2008-04-02 22:58:21 +02:00
|
|
|
// The type of a mapping from page start and byte shift to views.
|
|
|
|
typedef std::map<std::pair<off_t, unsigned int>, View*> Views;
|
|
|
|
|
|
|
|
// A simple list of Views.
|
|
|
|
typedef std::list<View*> Saved_views;
|
|
|
|
|
2008-07-25 06:25:49 +02:00
|
|
|
// Open the descriptor if necessary.
|
|
|
|
void
|
|
|
|
reopen_descriptor();
|
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Find a view into the file.
|
2006-08-05 01:10:59 +02:00
|
|
|
View*
|
2008-04-02 22:58:21 +02:00
|
|
|
find_view(off_t start, section_size_type size, unsigned int byteshift,
|
|
|
|
View** vshifted) const;
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Read data from the file into a buffer.
|
2007-09-25 08:43:17 +02:00
|
|
|
void
|
2008-07-25 06:25:49 +02:00
|
|
|
do_read(off_t start, section_size_type size, void* p);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2008-04-02 22:58:21 +02:00
|
|
|
// Add a view.
|
|
|
|
void
|
|
|
|
add_view(View*);
|
|
|
|
|
|
|
|
// Make a view into the file.
|
|
|
|
View*
|
|
|
|
make_view(off_t start, section_size_type size, unsigned int byteshift,
|
|
|
|
bool cache);
|
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Find or make a view into the file.
|
2006-08-05 01:10:59 +02:00
|
|
|
View*
|
2008-04-02 22:58:21 +02:00
|
|
|
find_or_make_view(off_t offset, off_t start, section_size_type size,
|
|
|
|
bool aligned, bool cache);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Clear the file views.
|
2006-08-05 01:10:59 +02:00
|
|
|
void
|
2010-03-10 18:37:11 +01:00
|
|
|
clear_views(Clear_views_mode);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// The size of a file page for buffering data.
|
|
|
|
static const off_t page_size = 8192;
|
|
|
|
|
|
|
|
// Given a file offset, return the page offset.
|
|
|
|
static off_t
|
|
|
|
page_offset(off_t file_offset)
|
|
|
|
{ return file_offset & ~ (page_size - 1); }
|
|
|
|
|
|
|
|
// Given a file size, return the size to read integral pages.
|
|
|
|
static off_t
|
|
|
|
pages(off_t file_size)
|
|
|
|
{ return (file_size + (page_size - 1)) & ~ (page_size - 1); }
|
|
|
|
|
2008-01-03 00:48:49 +01:00
|
|
|
// The maximum number of entries we will pass to ::readv.
|
|
|
|
static const size_t max_readv_entries = 128;
|
|
|
|
|
|
|
|
// Use readv to read data.
|
|
|
|
void
|
|
|
|
do_readv(off_t base, const Read_multiple&, size_t start, size_t count);
|
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// File name.
|
2006-08-05 01:10:59 +02:00
|
|
|
std::string name_;
|
2006-11-03 19:26:11 +01:00
|
|
|
// File descriptor.
|
2006-08-05 01:10:59 +02:00
|
|
|
int descriptor_;
|
2008-07-25 06:25:49 +02:00
|
|
|
// Whether we have regained the descriptor after releasing the file.
|
|
|
|
bool is_descriptor_opened_;
|
2008-01-03 00:48:49 +01:00
|
|
|
// The number of objects associated with this file. This will be
|
|
|
|
// more than 1 in the case of an archive.
|
|
|
|
int object_count_;
|
2007-09-25 08:43:17 +02:00
|
|
|
// File size.
|
|
|
|
off_t size_;
|
2007-12-14 20:00:21 +01:00
|
|
|
// A token used to lock the file.
|
|
|
|
Task_token token_;
|
2006-11-03 19:26:11 +01:00
|
|
|
// Buffered views into the file.
|
|
|
|
Views views_;
|
|
|
|
// List of views which were locked but had to be removed from views_
|
|
|
|
// because they were not large enough.
|
|
|
|
Saved_views saved_views_;
|
2007-10-12 07:51:25 +02:00
|
|
|
// Total amount of space mapped into memory. This is only changed
|
|
|
|
// while the file is locked. When we unlock the file, we transfer
|
|
|
|
// the total to total_mapped_bytes, and reset this to zero.
|
|
|
|
size_t mapped_bytes_;
|
2007-12-14 20:00:21 +01:00
|
|
|
// Whether the file was released.
|
|
|
|
bool released_;
|
2009-10-28 01:42:34 +01:00
|
|
|
// A view containing the whole file. May be NULL if we mmap only
|
|
|
|
// the relevant parts of the file. Not NULL if:
|
|
|
|
// - Flag --mmap_whole_files is set (default on 64-bit hosts).
|
|
|
|
// - The contents was specified in the constructor. Used only for
|
|
|
|
// testing purposes).
|
|
|
|
View* whole_file_view_;
|
2006-08-05 01:10:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// A view of file data that persists even when the file is unlocked.
|
|
|
|
// Callers should destroy these when no longer required. These are
|
|
|
|
// obtained form File_read::get_lasting_view. They may only be
|
|
|
|
// destroyed when the underlying File_read is locked.
|
|
|
|
|
|
|
|
class File_view
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// This may only be called when the underlying File_read is locked.
|
|
|
|
~File_view();
|
|
|
|
|
|
|
|
// Return a pointer to the data associated with this view.
|
|
|
|
const unsigned char*
|
|
|
|
data() const
|
|
|
|
{ return this->data_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
File_view(const File_view&);
|
|
|
|
File_view& operator=(const File_view&);
|
|
|
|
|
|
|
|
friend class File_read;
|
|
|
|
|
|
|
|
// Callers have to get these via File_read::get_lasting_view.
|
2009-12-14 20:53:05 +01:00
|
|
|
File_view(File_read& file, File_read::View* view, const unsigned char* data)
|
|
|
|
: file_(file), view_(view), data_(data)
|
2006-08-05 01:10:59 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
File_read& file_;
|
|
|
|
File_read::View* view_;
|
|
|
|
const unsigned char* data_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// All the information we hold for a single input file. This can be
|
|
|
|
// an object file, a shared library, or an archive.
|
|
|
|
|
|
|
|
class Input_file
|
|
|
|
{
|
|
|
|
public:
|
2010-02-24 21:50:59 +01:00
|
|
|
enum Format
|
|
|
|
{
|
|
|
|
FORMAT_NONE,
|
|
|
|
FORMAT_ELF,
|
|
|
|
FORMAT_BINARY
|
|
|
|
};
|
|
|
|
|
2006-12-01 00:52:50 +01:00
|
|
|
Input_file(const Input_file_argument* input_argument)
|
2007-10-09 19:46:15 +02:00
|
|
|
: input_argument_(input_argument), found_name_(), file_(),
|
2010-02-24 21:50:59 +01:00
|
|
|
is_in_sysroot_(false), format_(FORMAT_NONE)
|
2006-08-05 01:10:59 +02:00
|
|
|
{ }
|
|
|
|
|
2012-10-23 23:29:20 +02:00
|
|
|
// Create an input file given just a filename.
|
|
|
|
Input_file(const char* name);
|
|
|
|
|
2006-12-01 00:52:50 +01:00
|
|
|
// Create an input file with the contents already provided. This is
|
|
|
|
// only used for testing. With this path, don't call the open
|
|
|
|
// method.
|
2007-12-14 20:00:21 +01:00
|
|
|
Input_file(const Task*, const char* name, const unsigned char* contents,
|
|
|
|
off_t size);
|
2006-12-01 00:52:50 +01:00
|
|
|
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
// Return the command line argument.
|
|
|
|
const Input_file_argument*
|
|
|
|
input_file_argument() const
|
|
|
|
{ return this->input_argument_; }
|
|
|
|
|
|
|
|
// Return whether this is a file that we will search for in the list
|
|
|
|
// of directories.
|
|
|
|
bool
|
|
|
|
will_search_for() const;
|
|
|
|
|
2007-10-14 08:49:14 +02:00
|
|
|
// Open the file. If the open fails, this will report an error and
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
// return false. If there is a search, it starts at directory
|
|
|
|
// *PINDEX. *PINDEX should be initialized to zero. It may be
|
|
|
|
// restarted to find the next file with a matching name by
|
|
|
|
// incrementing the result and calling this again.
|
2007-10-14 08:49:14 +02:00
|
|
|
bool
|
2010-08-25 10:36:54 +02:00
|
|
|
open(const Dirsearch&, const Task*, int* pindex);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-10-09 19:46:15 +02:00
|
|
|
// Return the name given by the user. For -lc this will return "c".
|
2006-08-05 01:10:59 +02:00
|
|
|
const char*
|
2008-01-19 00:26:48 +01:00
|
|
|
name() const;
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-10-09 19:46:15 +02:00
|
|
|
// Return the file name. For -lc this will return something like
|
|
|
|
// "/usr/lib/libc.so".
|
2006-08-05 01:10:59 +02:00
|
|
|
const std::string&
|
|
|
|
filename() const
|
|
|
|
{ return this->file_.filename(); }
|
|
|
|
|
2007-10-09 19:46:15 +02:00
|
|
|
// Return the name under which we found the file, corresponding to
|
|
|
|
// the command line. For -lc this will return something like
|
|
|
|
// "libc.so".
|
|
|
|
const std::string&
|
|
|
|
found_name() const
|
|
|
|
{ return this->found_name_; }
|
|
|
|
|
2007-08-22 01:37:56 +02:00
|
|
|
// Return the position dependent options.
|
|
|
|
const Position_dependent_options&
|
2008-01-19 00:26:48 +01:00
|
|
|
options() const;
|
2007-08-22 01:37:56 +02:00
|
|
|
|
|
|
|
// Return the file.
|
2006-08-05 01:10:59 +02:00
|
|
|
File_read&
|
|
|
|
file()
|
|
|
|
{ return this->file_; }
|
|
|
|
|
2007-12-14 19:50:01 +01:00
|
|
|
const File_read&
|
|
|
|
file() const
|
|
|
|
{ return this->file_; }
|
|
|
|
|
2007-10-04 07:49:04 +02:00
|
|
|
// Whether we found the file in a directory in the system root.
|
|
|
|
bool
|
|
|
|
is_in_sysroot() const
|
|
|
|
{ return this->is_in_sysroot_; }
|
|
|
|
|
2009-02-28 05:39:57 +01:00
|
|
|
// Whether this file is in a system directory.
|
|
|
|
bool
|
|
|
|
is_in_system_directory() const;
|
|
|
|
|
2008-02-07 02:51:25 +01:00
|
|
|
// Return whether this file is to be read only for its symbols.
|
|
|
|
bool
|
|
|
|
just_symbols() const;
|
|
|
|
|
2010-02-24 21:50:59 +01:00
|
|
|
// Return the format of the unconverted input file.
|
|
|
|
Format
|
|
|
|
format() const
|
|
|
|
{ return this->format_; }
|
|
|
|
|
2010-07-13 16:59:02 +02:00
|
|
|
// Try to find a file in the extra search dirs. Returns true on success.
|
|
|
|
static bool
|
|
|
|
try_extra_search_path(int* pindex,
|
|
|
|
const Input_file_argument* input_argument,
|
|
|
|
std::string filename, std::string* found_name,
|
|
|
|
std::string* namep);
|
|
|
|
|
|
|
|
// Find the actual file.
|
|
|
|
static bool
|
|
|
|
find_file(const Dirsearch& dirpath, int* pindex,
|
|
|
|
const Input_file_argument* input_argument,
|
|
|
|
bool* is_in_sysroot,
|
|
|
|
std::string* found_name, std::string* namep);
|
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
private:
|
2006-11-03 19:26:11 +01:00
|
|
|
Input_file(const Input_file&);
|
|
|
|
Input_file& operator=(const Input_file&);
|
|
|
|
|
2008-02-08 08:06:58 +01:00
|
|
|
// Open a binary file.
|
|
|
|
bool
|
2009-03-13 22:30:06 +01:00
|
|
|
open_binary(const Task* task, const std::string& name);
|
2008-02-08 08:06:58 +01:00
|
|
|
|
2007-10-04 07:49:04 +02:00
|
|
|
// The argument from the command line.
|
2006-12-01 00:52:50 +01:00
|
|
|
const Input_file_argument* input_argument_;
|
2007-10-09 19:46:15 +02:00
|
|
|
// The name under which we opened the file. This is like the name
|
|
|
|
// on the command line, but -lc turns into libc.so (or whatever).
|
|
|
|
// It only includes the full path if the path was on the command
|
|
|
|
// line.
|
|
|
|
std::string found_name_;
|
2007-10-04 07:49:04 +02:00
|
|
|
// The file after we open it.
|
2006-08-05 01:10:59 +02:00
|
|
|
File_read file_;
|
2007-10-04 07:49:04 +02:00
|
|
|
// Whether we found the file in a directory in the system root.
|
|
|
|
bool is_in_sysroot_;
|
2010-02-24 21:50:59 +01:00
|
|
|
// Format of unconverted input file.
|
|
|
|
Format format_;
|
2006-08-05 01:10:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace gold
|
|
|
|
|
|
|
|
#endif // !defined(GOLD_FILEREAD_H)
|