2009-01-28 03:25:33 +01:00
|
|
|
// plugin.cc -- plugin manager for gold -*- C++ -*-
|
2008-09-20 00:54:57 +02:00
|
|
|
|
2010-01-05 22:52:51 +01:00
|
|
|
// Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
|
2008-09-20 00:54:57 +02:00
|
|
|
// Written by Cary Coutant <ccoutant@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.
|
|
|
|
|
2009-10-12 08:02:06 +02:00
|
|
|
#include "gold.h"
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdarg>
|
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2009-10-10 01:07:30 +02:00
|
|
|
|
|
|
|
#ifdef ENABLE_PLUGINS
|
2008-09-20 00:54:57 +02:00
|
|
|
#include <dlfcn.h>
|
2009-10-10 01:07:30 +02:00
|
|
|
#endif
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
#include "parameters.h"
|
|
|
|
#include "errors.h"
|
|
|
|
#include "fileread.h"
|
|
|
|
#include "layout.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "plugin.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "readsyms.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "elfcpp.h"
|
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef ENABLE_PLUGINS
|
|
|
|
|
|
|
|
// The linker's exported interfaces.
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
register_claim_file(ld_plugin_claim_file_handler handler);
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
register_all_symbols_read(ld_plugin_all_symbols_read_handler handler);
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
register_cleanup(ld_plugin_cleanup_handler handler);
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
add_symbols(void *handle, int nsyms, const struct ld_plugin_symbol *syms);
|
|
|
|
|
2009-01-15 02:29:25 +01:00
|
|
|
static enum ld_plugin_status
|
|
|
|
get_input_file(const void *handle, struct ld_plugin_input_file *file);
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
release_input_file(const void *handle);
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
static enum ld_plugin_status
|
|
|
|
get_symbols(const void *handle, int nsyms, struct ld_plugin_symbol *syms);
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
add_input_file(char *pathname);
|
|
|
|
|
2009-10-06 22:15:09 +02:00
|
|
|
static enum ld_plugin_status
|
|
|
|
add_input_library(char *pathname);
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
static enum ld_plugin_status
|
2008-12-01 20:50:49 +01:00
|
|
|
message(int level, const char *format, ...);
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ENABLE_PLUGINS
|
|
|
|
|
|
|
|
static Pluginobj* make_sized_plugin_object(Input_file* input_file,
|
2009-01-15 02:29:25 +01:00
|
|
|
off_t offset, off_t filesize);
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
// Plugin methods.
|
|
|
|
|
|
|
|
// Load one plugin library.
|
|
|
|
|
|
|
|
void
|
|
|
|
Plugin::load()
|
|
|
|
{
|
|
|
|
#ifdef ENABLE_PLUGINS
|
|
|
|
// Load the plugin library.
|
|
|
|
// FIXME: Look for the library in standard locations.
|
2008-12-05 22:34:54 +01:00
|
|
|
this->handle_ = dlopen(this->filename_.c_str(), RTLD_NOW);
|
2008-09-20 00:54:57 +02:00
|
|
|
if (this->handle_ == NULL)
|
|
|
|
{
|
2008-12-05 22:34:54 +01:00
|
|
|
gold_error(_("%s: could not load plugin library"),
|
|
|
|
this->filename_.c_str());
|
2008-09-20 00:54:57 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the plugin's onload entry point.
|
2009-12-10 08:44:28 +01:00
|
|
|
void* ptr = dlsym(this->handle_, "onload");
|
|
|
|
if (ptr == NULL)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
2008-12-05 22:34:54 +01:00
|
|
|
gold_error(_("%s: could not find onload entry point"),
|
|
|
|
this->filename_.c_str());
|
2008-09-20 00:54:57 +02:00
|
|
|
return;
|
|
|
|
}
|
2009-12-10 08:44:28 +01:00
|
|
|
ld_plugin_onload onload;
|
|
|
|
gold_assert(sizeof(onload) == sizeof(ptr));
|
|
|
|
memcpy(&onload, &ptr, sizeof(ptr));
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
// Get the linker's version number.
|
|
|
|
const char* ver = get_version_string();
|
|
|
|
int major = 0;
|
|
|
|
int minor = 0;
|
|
|
|
sscanf(ver, "%d.%d", &major, &minor);
|
|
|
|
|
|
|
|
// Allocate and populate a transfer vector.
|
2010-06-01 21:32:27 +02:00
|
|
|
const int tv_fixed_size = 15;
|
2008-12-05 22:34:54 +01:00
|
|
|
int tv_size = this->args_.size() + tv_fixed_size;
|
2008-09-20 00:54:57 +02:00
|
|
|
ld_plugin_tv *tv = new ld_plugin_tv[tv_size];
|
|
|
|
|
2008-12-16 20:19:16 +01:00
|
|
|
// Put LDPT_MESSAGE at the front of the list so the plugin can use it
|
|
|
|
// while processing subsequent entries.
|
2008-09-20 00:54:57 +02:00
|
|
|
int i = 0;
|
2008-12-16 20:19:16 +01:00
|
|
|
tv[i].tv_tag = LDPT_MESSAGE;
|
|
|
|
tv[i].tv_u.tv_message = message;
|
|
|
|
|
|
|
|
++i;
|
2008-09-20 00:54:57 +02:00
|
|
|
tv[i].tv_tag = LDPT_API_VERSION;
|
|
|
|
tv[i].tv_u.tv_val = LD_PLUGIN_API_VERSION;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_GOLD_VERSION;
|
|
|
|
tv[i].tv_u.tv_val = major * 100 + minor;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_LINKER_OUTPUT;
|
|
|
|
if (parameters->options().relocatable())
|
|
|
|
tv[i].tv_u.tv_val = LDPO_REL;
|
|
|
|
else if (parameters->options().shared())
|
|
|
|
tv[i].tv_u.tv_val = LDPO_DYN;
|
|
|
|
else
|
|
|
|
tv[i].tv_u.tv_val = LDPO_EXEC;
|
|
|
|
|
2010-06-01 21:32:27 +02:00
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_OUTPUT_NAME;
|
|
|
|
tv[i].tv_u.tv_string = parameters->options().output();
|
|
|
|
|
2008-12-05 22:34:54 +01:00
|
|
|
for (unsigned int j = 0; j < this->args_.size(); ++j)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_OPTION;
|
2008-12-05 22:34:54 +01:00
|
|
|
tv[i].tv_u.tv_string = this->args_[j].c_str();
|
2008-09-20 00:54:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_REGISTER_CLAIM_FILE_HOOK;
|
|
|
|
tv[i].tv_u.tv_register_claim_file = register_claim_file;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK;
|
|
|
|
tv[i].tv_u.tv_register_all_symbols_read = register_all_symbols_read;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_REGISTER_CLEANUP_HOOK;
|
|
|
|
tv[i].tv_u.tv_register_cleanup = register_cleanup;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_ADD_SYMBOLS;
|
|
|
|
tv[i].tv_u.tv_add_symbols = add_symbols;
|
|
|
|
|
2009-01-15 02:29:25 +01:00
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_GET_INPUT_FILE;
|
|
|
|
tv[i].tv_u.tv_get_input_file = get_input_file;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_RELEASE_INPUT_FILE;
|
|
|
|
tv[i].tv_u.tv_release_input_file = release_input_file;
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_GET_SYMBOLS;
|
|
|
|
tv[i].tv_u.tv_get_symbols = get_symbols;
|
|
|
|
|
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_ADD_INPUT_FILE;
|
|
|
|
tv[i].tv_u.tv_add_input_file = add_input_file;
|
|
|
|
|
2009-10-06 22:15:09 +02:00
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_ADD_INPUT_LIBRARY;
|
|
|
|
tv[i].tv_u.tv_add_input_library = add_input_library;
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
++i;
|
|
|
|
tv[i].tv_tag = LDPT_NULL;
|
|
|
|
tv[i].tv_u.tv_val = 0;
|
|
|
|
|
|
|
|
gold_assert(i == tv_size - 1);
|
|
|
|
|
|
|
|
// Call the onload entry point.
|
|
|
|
(*onload)(tv);
|
|
|
|
|
2008-12-01 20:50:49 +01:00
|
|
|
delete[] tv;
|
2008-09-20 00:54:57 +02:00
|
|
|
#endif // ENABLE_PLUGINS
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the plugin claim-file handler.
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
Plugin::claim_file(struct ld_plugin_input_file *plugin_input_file)
|
|
|
|
{
|
|
|
|
int claimed = 0;
|
|
|
|
|
|
|
|
if (this->claim_file_handler_ != NULL)
|
|
|
|
{
|
|
|
|
(*this->claim_file_handler_)(plugin_input_file, &claimed);
|
|
|
|
if (claimed)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the all-symbols-read handler.
|
|
|
|
|
|
|
|
inline void
|
|
|
|
Plugin::all_symbols_read()
|
|
|
|
{
|
|
|
|
if (this->all_symbols_read_handler_ != NULL)
|
|
|
|
(*this->all_symbols_read_handler_)();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the cleanup handler.
|
|
|
|
|
|
|
|
inline void
|
|
|
|
Plugin::cleanup()
|
|
|
|
{
|
2009-10-28 19:07:25 +01:00
|
|
|
if (this->cleanup_handler_ != NULL && !this->cleanup_done_)
|
|
|
|
{
|
|
|
|
// Set this flag before calling to prevent a recursive plunge
|
|
|
|
// in the event that a plugin's cleanup handler issues a
|
|
|
|
// fatal error.
|
|
|
|
this->cleanup_done_ = true;
|
|
|
|
(*this->cleanup_handler_)();
|
|
|
|
}
|
2008-09-20 00:54:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Plugin_manager methods.
|
|
|
|
|
|
|
|
Plugin_manager::~Plugin_manager()
|
|
|
|
{
|
|
|
|
for (Plugin_list::iterator p = this->plugins_.begin();
|
|
|
|
p != this->plugins_.end();
|
|
|
|
++p)
|
|
|
|
delete *p;
|
|
|
|
this->plugins_.clear();
|
|
|
|
for (Object_list::iterator obj = this->objects_.begin();
|
|
|
|
obj != this->objects_.end();
|
|
|
|
++obj)
|
|
|
|
delete *obj;
|
|
|
|
this->objects_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load all plugin libraries.
|
|
|
|
|
|
|
|
void
|
|
|
|
Plugin_manager::load_plugins()
|
|
|
|
{
|
|
|
|
for (this->current_ = this->plugins_.begin();
|
|
|
|
this->current_ != this->plugins_.end();
|
|
|
|
++this->current_)
|
|
|
|
(*this->current_)->load();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the plugin claim-file handlers in turn to see if any claim the file.
|
|
|
|
|
|
|
|
Pluginobj*
|
|
|
|
Plugin_manager::claim_file(Input_file* input_file, off_t offset,
|
|
|
|
off_t filesize)
|
|
|
|
{
|
|
|
|
if (this->in_replacement_phase_)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
unsigned int handle = this->objects_.size();
|
|
|
|
this->input_file_ = input_file;
|
|
|
|
this->plugin_input_file_.name = input_file->filename().c_str();
|
|
|
|
this->plugin_input_file_.fd = input_file->file().descriptor();
|
|
|
|
this->plugin_input_file_.offset = offset;
|
|
|
|
this->plugin_input_file_.filesize = filesize;
|
|
|
|
this->plugin_input_file_.handle = reinterpret_cast<void*>(handle);
|
|
|
|
|
|
|
|
for (this->current_ = this->plugins_.begin();
|
|
|
|
this->current_ != this->plugins_.end();
|
|
|
|
++this->current_)
|
|
|
|
{
|
|
|
|
if ((*this->current_)->claim_file(&this->plugin_input_file_))
|
|
|
|
{
|
2008-12-16 20:19:16 +01:00
|
|
|
if (this->objects_.size() > handle)
|
|
|
|
return this->objects_[handle];
|
|
|
|
|
|
|
|
// If the plugin claimed the file but did not call the
|
|
|
|
// add_symbols callback, we need to create the Pluginobj now.
|
|
|
|
Pluginobj* obj = this->make_plugin_object(handle);
|
|
|
|
return obj;
|
2008-09-20 00:54:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the all-symbols-read handlers.
|
|
|
|
|
|
|
|
void
|
2009-01-15 02:29:25 +01:00
|
|
|
Plugin_manager::all_symbols_read(Workqueue* workqueue, Task* task,
|
2008-09-20 00:54:57 +02:00
|
|
|
Input_objects* input_objects,
|
2009-12-14 20:53:05 +01:00
|
|
|
Symbol_table* symtab, Layout* layout,
|
2008-09-20 00:54:57 +02:00
|
|
|
Dirsearch* dirpath, Mapfile* mapfile,
|
|
|
|
Task_token** last_blocker)
|
|
|
|
{
|
|
|
|
this->in_replacement_phase_ = true;
|
|
|
|
this->workqueue_ = workqueue;
|
2009-01-15 02:29:25 +01:00
|
|
|
this->task_ = task;
|
2008-09-20 00:54:57 +02:00
|
|
|
this->input_objects_ = input_objects;
|
|
|
|
this->symtab_ = symtab;
|
2009-12-14 20:53:05 +01:00
|
|
|
this->layout_ = layout;
|
2008-09-20 00:54:57 +02:00
|
|
|
this->dirpath_ = dirpath;
|
|
|
|
this->mapfile_ = mapfile;
|
|
|
|
this->this_blocker_ = NULL;
|
|
|
|
|
|
|
|
for (this->current_ = this->plugins_.begin();
|
|
|
|
this->current_ != this->plugins_.end();
|
|
|
|
++this->current_)
|
|
|
|
(*this->current_)->all_symbols_read();
|
|
|
|
|
|
|
|
*last_blocker = this->this_blocker_;
|
|
|
|
}
|
|
|
|
|
2008-12-24 07:17:18 +01:00
|
|
|
// Layout deferred objects.
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
void
|
2008-12-24 07:17:18 +01:00
|
|
|
Plugin_manager::layout_deferred_objects()
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
2008-12-23 03:02:20 +01:00
|
|
|
Deferred_layout_list::iterator obj;
|
|
|
|
|
|
|
|
for (obj = this->deferred_layout_objects_.begin();
|
|
|
|
obj != this->deferred_layout_objects_.end();
|
|
|
|
++obj)
|
|
|
|
(*obj)->layout_deferred_sections(this->layout_);
|
2008-12-24 07:17:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Call the cleanup handlers.
|
2008-12-23 03:02:20 +01:00
|
|
|
|
2008-12-24 07:17:18 +01:00
|
|
|
void
|
|
|
|
Plugin_manager::cleanup()
|
|
|
|
{
|
2008-09-20 00:54:57 +02:00
|
|
|
for (this->current_ = this->plugins_.begin();
|
|
|
|
this->current_ != this->plugins_.end();
|
|
|
|
++this->current_)
|
|
|
|
(*this->current_)->cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make a new Pluginobj object. This is called when the plugin calls
|
|
|
|
// the add_symbols API.
|
|
|
|
|
|
|
|
Pluginobj*
|
|
|
|
Plugin_manager::make_plugin_object(unsigned int handle)
|
|
|
|
{
|
|
|
|
// Make sure we aren't asked to make an object for the same handle twice.
|
|
|
|
if (this->objects_.size() != handle)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
Pluginobj* obj = make_sized_plugin_object(this->input_file_,
|
2009-01-15 02:29:25 +01:00
|
|
|
this->plugin_input_file_.offset,
|
|
|
|
this->plugin_input_file_.filesize);
|
2008-09-20 00:54:57 +02:00
|
|
|
this->objects_.push_back(obj);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2009-01-15 02:29:25 +01:00
|
|
|
// Get the input file information with an open (possibly re-opened)
|
|
|
|
// file descriptor.
|
|
|
|
|
|
|
|
ld_plugin_status
|
|
|
|
Plugin_manager::get_input_file(unsigned int handle,
|
|
|
|
struct ld_plugin_input_file *file)
|
|
|
|
{
|
|
|
|
Pluginobj* obj = this->object(handle);
|
|
|
|
if (obj == NULL)
|
|
|
|
return LDPS_BAD_HANDLE;
|
|
|
|
|
|
|
|
obj->lock(this->task_);
|
|
|
|
file->name = obj->filename().c_str();
|
|
|
|
file->fd = obj->descriptor();
|
|
|
|
file->offset = obj->offset();
|
|
|
|
file->filesize = obj->filesize();
|
|
|
|
file->handle = reinterpret_cast<void*>(handle);
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release the input file.
|
|
|
|
|
|
|
|
ld_plugin_status
|
|
|
|
Plugin_manager::release_input_file(unsigned int handle)
|
|
|
|
{
|
|
|
|
Pluginobj* obj = this->object(handle);
|
|
|
|
if (obj == NULL)
|
|
|
|
return LDPS_BAD_HANDLE;
|
|
|
|
|
|
|
|
obj->unlock(this->task_);
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
// Add a new input file.
|
|
|
|
|
|
|
|
ld_plugin_status
|
2009-10-06 22:15:09 +02:00
|
|
|
Plugin_manager::add_input_file(char *pathname, bool is_lib)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
2009-10-10 09:39:04 +02:00
|
|
|
Input_file_argument file(pathname,
|
|
|
|
(is_lib
|
|
|
|
? Input_file_argument::INPUT_FILE_TYPE_LIBRARY
|
|
|
|
: Input_file_argument::INPUT_FILE_TYPE_FILE),
|
|
|
|
"", false, this->options_);
|
2008-09-20 00:54:57 +02:00
|
|
|
Input_argument* input_argument = new Input_argument(file);
|
|
|
|
Task_token* next_blocker = new Task_token(true);
|
|
|
|
next_blocker->add_blocker();
|
2009-05-15 19:01:04 +02:00
|
|
|
if (this->layout_->incremental_inputs())
|
2009-10-28 19:07:25 +01:00
|
|
|
gold_error(_("input files added by plug-ins in --incremental mode not "
|
|
|
|
"supported yet"));
|
2009-03-13 22:30:06 +01:00
|
|
|
this->workqueue_->queue_soon(new Read_symbols(this->input_objects_,
|
2008-09-20 00:54:57 +02:00
|
|
|
this->symtab_,
|
|
|
|
this->layout_,
|
|
|
|
this->dirpath_,
|
* 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
|
|
|
0,
|
2008-09-20 00:54:57 +02:00
|
|
|
this->mapfile_,
|
|
|
|
input_argument,
|
|
|
|
NULL,
|
2010-03-22 15:18:24 +01:00
|
|
|
NULL,
|
2008-09-20 00:54:57 +02:00
|
|
|
this->this_blocker_,
|
|
|
|
next_blocker));
|
|
|
|
this->this_blocker_ = next_blocker;
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Class Pluginobj.
|
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
Pluginobj::Pluginobj(const std::string& name, Input_file* input_file,
|
|
|
|
off_t offset, off_t filesize)
|
|
|
|
: Object(name, input_file, false, offset),
|
|
|
|
nsyms_(0), syms_(NULL), symbols_(), filesize_(filesize), comdat_map_()
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-12-24 00:46:55 +01:00
|
|
|
// Return TRUE if a defined symbol might be reachable from outside the
|
|
|
|
// universe of claimed objects.
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
is_visible_from_outside(Symbol* lsym)
|
|
|
|
{
|
|
|
|
if (lsym->in_real_elf())
|
|
|
|
return true;
|
|
|
|
if (parameters->options().relocatable())
|
|
|
|
return true;
|
|
|
|
if (parameters->options().export_dynamic() || parameters->options().shared())
|
|
|
|
return lsym->is_externally_visible();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
// Get symbol resolution info.
|
|
|
|
|
|
|
|
ld_plugin_status
|
|
|
|
Pluginobj::get_symbol_resolution_info(int nsyms, ld_plugin_symbol* syms) const
|
|
|
|
{
|
2008-12-16 20:19:16 +01:00
|
|
|
if (nsyms > this->nsyms_)
|
2008-09-20 00:54:57 +02:00
|
|
|
return LDPS_NO_SYMS;
|
2010-03-22 15:18:24 +01:00
|
|
|
|
|
|
|
if (static_cast<size_t>(nsyms) > this->symbols_.size())
|
|
|
|
{
|
|
|
|
// We never decided to include this object. We mark all symbols as
|
|
|
|
// preempted.
|
|
|
|
gold_assert (this->symbols_.size() == 0);
|
|
|
|
for (int i = 0; i < nsyms; i++)
|
|
|
|
syms[i].resolution = LDPR_PREEMPTED_REG;
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
for (int i = 0; i < nsyms; i++)
|
|
|
|
{
|
|
|
|
ld_plugin_symbol* isym = &syms[i];
|
|
|
|
Symbol* lsym = this->symbols_[i];
|
|
|
|
ld_plugin_symbol_resolution res = LDPR_UNKNOWN;
|
|
|
|
|
|
|
|
if (lsym->is_undefined())
|
|
|
|
// The symbol remains undefined.
|
|
|
|
res = LDPR_UNDEF;
|
|
|
|
else if (isym->def == LDPK_UNDEF
|
|
|
|
|| isym->def == LDPK_WEAKUNDEF
|
|
|
|
|| isym->def == LDPK_COMMON)
|
|
|
|
{
|
|
|
|
// The original symbol was undefined or common.
|
|
|
|
if (lsym->source() != Symbol::FROM_OBJECT)
|
|
|
|
res = LDPR_RESOLVED_EXEC;
|
2010-04-06 23:56:24 +02:00
|
|
|
else if (lsym->object()->pluginobj() == this)
|
|
|
|
res = (is_visible_from_outside(lsym)
|
|
|
|
? LDPR_PREVAILING_DEF
|
|
|
|
: LDPR_PREVAILING_DEF_IRONLY);
|
2008-09-20 00:54:57 +02:00
|
|
|
else if (lsym->object()->pluginobj() != NULL)
|
|
|
|
res = LDPR_RESOLVED_IR;
|
|
|
|
else if (lsym->object()->is_dynamic())
|
|
|
|
res = LDPR_RESOLVED_DYN;
|
|
|
|
else
|
|
|
|
res = LDPR_RESOLVED_EXEC;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The original symbol was a definition.
|
|
|
|
if (lsym->source() != Symbol::FROM_OBJECT)
|
|
|
|
res = LDPR_PREEMPTED_REG;
|
|
|
|
else if (lsym->object() == static_cast<const Object*>(this))
|
2008-12-24 00:46:55 +01:00
|
|
|
res = (is_visible_from_outside(lsym)
|
2008-09-20 00:54:57 +02:00
|
|
|
? LDPR_PREVAILING_DEF
|
|
|
|
: LDPR_PREVAILING_DEF_IRONLY);
|
|
|
|
else
|
|
|
|
res = (lsym->object()->pluginobj() != NULL
|
|
|
|
? LDPR_PREEMPTED_IR
|
|
|
|
: LDPR_PREEMPTED_REG);
|
|
|
|
}
|
|
|
|
isym->resolution = res;
|
|
|
|
}
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return TRUE if the comdat group with key COMDAT_KEY from this object
|
|
|
|
// should be kept.
|
|
|
|
|
|
|
|
bool
|
2009-12-14 20:53:05 +01:00
|
|
|
Pluginobj::include_comdat_group(std::string comdat_key, Layout* layout)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
std::pair<Comdat_map::iterator, bool> ins =
|
|
|
|
this->comdat_map_.insert(std::make_pair(comdat_key, false));
|
|
|
|
|
|
|
|
// If this is the first time we've seen this comdat key, ask the
|
|
|
|
// layout object whether it should be included.
|
|
|
|
if (ins.second)
|
2009-12-14 20:53:05 +01:00
|
|
|
ins.first->second = layout->find_or_add_kept_section(comdat_key,
|
|
|
|
NULL, 0, true,
|
|
|
|
true, NULL);
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
return ins.first->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Class Sized_pluginobj.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
Sized_pluginobj<size, big_endian>::Sized_pluginobj(
|
2009-12-14 20:53:05 +01:00
|
|
|
const std::string& name,
|
|
|
|
Input_file* input_file,
|
|
|
|
off_t offset,
|
|
|
|
off_t filesize)
|
|
|
|
: Pluginobj(name, input_file, offset, filesize)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the symbols. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Sized_pluginobj<size, big_endian>::do_read_symbols(Read_symbols_data*)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lay out the input sections. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Sized_pluginobj<size, big_endian>::do_layout(Symbol_table*, Layout*,
|
|
|
|
Read_symbols_data*)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the symbols to the symbol table.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Sized_pluginobj<size, big_endian>::do_add_symbols(Symbol_table* symtab,
|
2009-02-13 20:04:45 +01:00
|
|
|
Read_symbols_data*,
|
2009-12-14 20:53:05 +01:00
|
|
|
Layout* layout)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
|
|
|
|
unsigned char symbuf[sym_size];
|
|
|
|
elfcpp::Sym<size, big_endian> sym(symbuf);
|
|
|
|
elfcpp::Sym_write<size, big_endian> osym(symbuf);
|
|
|
|
|
|
|
|
typedef typename elfcpp::Elf_types<size>::Elf_WXword Elf_size_type;
|
|
|
|
|
|
|
|
this->symbols_.resize(this->nsyms_);
|
|
|
|
|
|
|
|
for (int i = 0; i < this->nsyms_; ++i)
|
|
|
|
{
|
|
|
|
const struct ld_plugin_symbol *isym = &this->syms_[i];
|
2009-12-14 20:53:05 +01:00
|
|
|
const char* name = isym->name;
|
2008-09-20 00:54:57 +02:00
|
|
|
const char* ver = isym->version;
|
|
|
|
elfcpp::Elf_Half shndx;
|
|
|
|
elfcpp::STB bind;
|
|
|
|
elfcpp::STV vis;
|
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
if (name != NULL && name[0] == '\0')
|
|
|
|
name = NULL;
|
2008-09-20 00:54:57 +02:00
|
|
|
if (ver != NULL && ver[0] == '\0')
|
|
|
|
ver = NULL;
|
|
|
|
|
|
|
|
switch (isym->def)
|
|
|
|
{
|
|
|
|
case LDPK_WEAKDEF:
|
|
|
|
case LDPK_WEAKUNDEF:
|
|
|
|
bind = elfcpp::STB_WEAK;
|
|
|
|
break;
|
|
|
|
case LDPK_DEF:
|
|
|
|
case LDPK_UNDEF:
|
|
|
|
case LDPK_COMMON:
|
|
|
|
default:
|
|
|
|
bind = elfcpp::STB_GLOBAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (isym->def)
|
|
|
|
{
|
|
|
|
case LDPK_DEF:
|
|
|
|
case LDPK_WEAKDEF:
|
|
|
|
shndx = elfcpp::SHN_ABS;
|
|
|
|
break;
|
|
|
|
case LDPK_COMMON:
|
|
|
|
shndx = elfcpp::SHN_COMMON;
|
|
|
|
break;
|
|
|
|
case LDPK_UNDEF:
|
|
|
|
case LDPK_WEAKUNDEF:
|
|
|
|
default:
|
|
|
|
shndx = elfcpp::SHN_UNDEF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (isym->visibility)
|
|
|
|
{
|
|
|
|
case LDPV_PROTECTED:
|
2010-06-01 21:17:43 +02:00
|
|
|
vis = elfcpp::STV_PROTECTED;
|
2008-09-20 00:54:57 +02:00
|
|
|
break;
|
|
|
|
case LDPV_INTERNAL:
|
2010-06-01 21:17:43 +02:00
|
|
|
vis = elfcpp::STV_INTERNAL;
|
2008-09-20 00:54:57 +02:00
|
|
|
break;
|
|
|
|
case LDPV_HIDDEN:
|
2010-06-01 21:17:43 +02:00
|
|
|
vis = elfcpp::STV_HIDDEN;
|
2008-09-20 00:54:57 +02:00
|
|
|
break;
|
|
|
|
case LDPV_DEFAULT:
|
|
|
|
default:
|
|
|
|
vis = elfcpp::STV_DEFAULT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isym->comdat_key != NULL
|
|
|
|
&& isym->comdat_key[0] != '\0'
|
2009-12-14 20:53:05 +01:00
|
|
|
&& !this->include_comdat_group(isym->comdat_key, layout))
|
2008-09-20 00:54:57 +02:00
|
|
|
shndx = elfcpp::SHN_UNDEF;
|
|
|
|
|
|
|
|
osym.put_st_name(0);
|
|
|
|
osym.put_st_value(0);
|
|
|
|
osym.put_st_size(static_cast<Elf_size_type>(isym->size));
|
|
|
|
osym.put_st_info(bind, elfcpp::STT_NOTYPE);
|
|
|
|
osym.put_st_other(vis, 0);
|
|
|
|
osym.put_st_shndx(shndx);
|
|
|
|
|
|
|
|
this->symbols_[i] =
|
2009-12-14 20:53:05 +01:00
|
|
|
symtab->add_from_pluginobj<size, big_endian>(this, name, ver, &sym);
|
2008-09-20 00:54:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-22 15:18:24 +01:00
|
|
|
template<int size, bool big_endian>
|
|
|
|
Archive::Should_include
|
|
|
|
Sized_pluginobj<size, big_endian>::do_should_include_member(
|
|
|
|
Symbol_table* symtab, Read_symbols_data*, std::string* why)
|
|
|
|
{
|
|
|
|
char* tmpbuf = NULL;
|
|
|
|
size_t tmpbuflen = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < this->nsyms_; ++i) {
|
|
|
|
const struct ld_plugin_symbol& sym = this->syms_[i];
|
|
|
|
const char* name = sym.name;
|
|
|
|
Symbol* symbol;
|
|
|
|
Archive::Should_include t = Archive::should_include_member(symtab, name,
|
|
|
|
&symbol, why,
|
|
|
|
&tmpbuf,
|
|
|
|
&tmpbuflen);
|
|
|
|
if (t == Archive::SHOULD_INCLUDE_YES)
|
|
|
|
{
|
|
|
|
if (tmpbuf != NULL)
|
|
|
|
free(tmpbuf);
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tmpbuf != NULL)
|
|
|
|
free(tmpbuf);
|
|
|
|
return Archive::SHOULD_INCLUDE_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
// Get the size of a section. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
uint64_t
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_size(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the name of a section. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
std::string
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_name(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a view of the contents of a section. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
Object::Location
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_contents(unsigned int)
|
|
|
|
{
|
|
|
|
Location loc(0, 0);
|
|
|
|
|
|
|
|
gold_unreachable();
|
|
|
|
return loc;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return section flags. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
uint64_t
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_flags(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-05 22:51:56 +02:00
|
|
|
// Return section entsize. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
uint64_t
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_entsize(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
// Return section address. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
uint64_t
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_address(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return section type. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
unsigned int
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_type(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the section link field. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
unsigned int
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_link(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the section link field. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
unsigned int
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_info(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the section alignment. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
uint64_t
|
|
|
|
Sized_pluginobj<size, big_endian>::do_section_addralign(unsigned int)
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the Xindex structure to use. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
Xindex*
|
|
|
|
Sized_pluginobj<size, big_endian>::do_initialize_xindex()
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get symbol counts. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Sized_pluginobj<size, big_endian>::do_get_global_symbol_counts(const Symbol_table*,
|
|
|
|
size_t*, size_t*) const
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
|
2010-01-05 22:52:51 +01:00
|
|
|
// Get symbols. Not used for plugin objects.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
const Object::Symbols*
|
|
|
|
Sized_pluginobj<size, big_endian>::do_get_global_symbols() const
|
|
|
|
{
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
|
2008-12-23 03:02:20 +01:00
|
|
|
// Class Plugin_finish. This task runs after all replacement files have
|
2009-01-28 03:25:33 +01:00
|
|
|
// been added. It calls each plugin's cleanup handler.
|
2008-09-20 00:54:57 +02:00
|
|
|
|
2008-12-23 03:02:20 +01:00
|
|
|
class Plugin_finish : public Task
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
public:
|
2008-12-23 03:02:20 +01:00
|
|
|
Plugin_finish(Task_token* this_blocker, Task_token* next_blocker)
|
2008-09-20 00:54:57 +02:00
|
|
|
: this_blocker_(this_blocker), next_blocker_(next_blocker)
|
|
|
|
{ }
|
|
|
|
|
2008-12-23 03:02:20 +01:00
|
|
|
~Plugin_finish()
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
if (this->this_blocker_ != NULL)
|
|
|
|
delete this->this_blocker_;
|
|
|
|
}
|
|
|
|
|
|
|
|
Task_token*
|
|
|
|
is_runnable()
|
|
|
|
{
|
|
|
|
if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked())
|
|
|
|
return this->this_blocker_;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
locks(Task_locker* tl)
|
|
|
|
{ tl->add(this, this->next_blocker_); }
|
|
|
|
|
|
|
|
void
|
|
|
|
run(Workqueue*)
|
2008-12-24 07:17:18 +01:00
|
|
|
{
|
|
|
|
Plugin_manager* plugins = parameters->options().plugins();
|
|
|
|
gold_assert(plugins != NULL);
|
|
|
|
plugins->cleanup();
|
|
|
|
}
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
std::string
|
|
|
|
get_name() const
|
2008-12-23 03:02:20 +01:00
|
|
|
{ return "Plugin_finish"; }
|
2008-09-20 00:54:57 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Task_token* this_blocker_;
|
|
|
|
Task_token* next_blocker_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Class Plugin_hook.
|
|
|
|
|
|
|
|
Plugin_hook::~Plugin_hook()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return whether a Plugin_hook task is runnable.
|
|
|
|
|
|
|
|
Task_token*
|
|
|
|
Plugin_hook::is_runnable()
|
|
|
|
{
|
|
|
|
if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked())
|
|
|
|
return this->this_blocker_;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a Task_locker for a Plugin_hook task. We don't need any
|
|
|
|
// locks here.
|
|
|
|
|
|
|
|
void
|
|
|
|
Plugin_hook::locks(Task_locker*)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run the "all symbols read" plugin hook.
|
|
|
|
|
|
|
|
void
|
2008-12-23 03:02:20 +01:00
|
|
|
Plugin_hook::run(Workqueue* workqueue)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
gold_assert(this->options_.has_plugins());
|
|
|
|
this->options_.plugins()->all_symbols_read(workqueue,
|
2009-01-15 02:29:25 +01:00
|
|
|
this,
|
2008-09-20 00:54:57 +02:00
|
|
|
this->input_objects_,
|
|
|
|
this->symtab_,
|
|
|
|
this->layout_,
|
|
|
|
this->dirpath_,
|
|
|
|
this->mapfile_,
|
|
|
|
&this->this_blocker_);
|
2008-12-23 03:02:20 +01:00
|
|
|
workqueue->queue_soon(new Plugin_finish(this->this_blocker_,
|
|
|
|
this->next_blocker_));
|
2008-09-20 00:54:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// The C interface routines called by the plugins.
|
|
|
|
|
|
|
|
#ifdef ENABLE_PLUGINS
|
|
|
|
|
|
|
|
// Register a claim-file handler.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
register_claim_file(ld_plugin_claim_file_handler handler)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
parameters->options().plugins()->set_claim_file_handler(handler);
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register an all-symbols-read handler.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
register_all_symbols_read(ld_plugin_all_symbols_read_handler handler)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
parameters->options().plugins()->set_all_symbols_read_handler(handler);
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register a cleanup handler.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
register_cleanup(ld_plugin_cleanup_handler handler)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
parameters->options().plugins()->set_cleanup_handler(handler);
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add symbols from a plugin-claimed input file.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
add_symbols(void* handle, int nsyms, const ld_plugin_symbol *syms)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
Pluginobj* obj = parameters->options().plugins()->make_plugin_object(
|
|
|
|
static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle)));
|
|
|
|
if (obj == NULL)
|
|
|
|
return LDPS_ERR;
|
|
|
|
obj->store_incoming_symbols(nsyms, syms);
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
2009-01-15 02:29:25 +01:00
|
|
|
// Get the input file information with an open (possibly re-opened)
|
|
|
|
// file descriptor.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
get_input_file(const void *handle, struct ld_plugin_input_file *file)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
unsigned int obj_index =
|
|
|
|
static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle));
|
|
|
|
return parameters->options().plugins()->get_input_file(obj_index, file);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release the input file.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
release_input_file(const void *handle)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
unsigned int obj_index =
|
|
|
|
static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle));
|
|
|
|
return parameters->options().plugins()->release_input_file(obj_index);
|
|
|
|
}
|
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
// Get the symbol resolution info for a plugin-claimed input file.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
get_symbols(const void * handle, int nsyms, ld_plugin_symbol* syms)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
Pluginobj* obj = parameters->options().plugins()->object(
|
|
|
|
static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle)));
|
|
|
|
if (obj == NULL)
|
|
|
|
return LDPS_ERR;
|
|
|
|
return obj->get_symbol_resolution_info(nsyms, syms);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a new (real) input file generated by a plugin.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
add_input_file(char *pathname)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
2009-10-06 22:15:09 +02:00
|
|
|
return parameters->options().plugins()->add_input_file(pathname, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a new (real) library required by a plugin.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
|
|
|
add_input_library(char *pathname)
|
|
|
|
{
|
|
|
|
gold_assert(parameters->options().has_plugins());
|
|
|
|
return parameters->options().plugins()->add_input_file(pathname, true);
|
2008-09-20 00:54:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Issue a diagnostic message from a plugin.
|
|
|
|
|
|
|
|
static enum ld_plugin_status
|
2008-12-01 20:50:49 +01:00
|
|
|
message(int level, const char * format, ...)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
|
|
|
|
switch (level)
|
|
|
|
{
|
|
|
|
case LDPL_INFO:
|
|
|
|
parameters->errors()->info(format, args);
|
|
|
|
break;
|
|
|
|
case LDPL_WARNING:
|
|
|
|
parameters->errors()->warning(format, args);
|
|
|
|
break;
|
|
|
|
case LDPL_ERROR:
|
|
|
|
default:
|
|
|
|
parameters->errors()->error(format, args);
|
|
|
|
break;
|
|
|
|
case LDPL_FATAL:
|
|
|
|
parameters->errors()->fatal(format, args);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(args);
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // ENABLE_PLUGINS
|
|
|
|
|
|
|
|
// Allocate a Pluginobj object of the appropriate size and endianness.
|
|
|
|
|
|
|
|
static Pluginobj*
|
2009-01-15 02:29:25 +01:00
|
|
|
make_sized_plugin_object(Input_file* input_file, off_t offset, off_t filesize)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
|
|
|
Pluginobj* obj = NULL;
|
|
|
|
|
2009-10-01 00:21:13 +02:00
|
|
|
parameters_force_valid_target();
|
|
|
|
const Target& target(parameters->target());
|
2008-09-20 00:54:57 +02:00
|
|
|
|
2009-10-01 00:21:13 +02:00
|
|
|
if (target.get_size() == 32)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
2009-10-01 00:21:13 +02:00
|
|
|
if (target.is_big_endian())
|
2008-10-02 20:35:51 +02:00
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
2008-09-20 00:54:57 +02:00
|
|
|
obj = new Sized_pluginobj<32, true>(input_file->filename(),
|
2009-01-15 02:29:25 +01:00
|
|
|
input_file, offset, filesize);
|
2008-10-02 20:35:51 +02:00
|
|
|
#else
|
|
|
|
gold_error(_("%s: not configured to support "
|
|
|
|
"32-bit big-endian object"),
|
|
|
|
input_file->filename().c_str());
|
2008-09-20 00:54:57 +02:00
|
|
|
#endif
|
|
|
|
else
|
2008-10-02 20:35:51 +02:00
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
2008-09-20 00:54:57 +02:00
|
|
|
obj = new Sized_pluginobj<32, false>(input_file->filename(),
|
2009-01-15 02:29:25 +01:00
|
|
|
input_file, offset, filesize);
|
2008-10-02 20:35:51 +02:00
|
|
|
#else
|
|
|
|
gold_error(_("%s: not configured to support "
|
|
|
|
"32-bit little-endian object"),
|
|
|
|
input_file->filename().c_str());
|
2008-09-20 00:54:57 +02:00
|
|
|
#endif
|
|
|
|
}
|
2009-10-01 00:21:13 +02:00
|
|
|
else if (target.get_size() == 64)
|
2008-09-20 00:54:57 +02:00
|
|
|
{
|
2009-10-01 00:21:13 +02:00
|
|
|
if (target.is_big_endian())
|
2008-10-02 20:35:51 +02:00
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
2008-09-20 00:54:57 +02:00
|
|
|
obj = new Sized_pluginobj<64, true>(input_file->filename(),
|
2009-01-15 02:29:25 +01:00
|
|
|
input_file, offset, filesize);
|
2008-10-02 20:35:51 +02:00
|
|
|
#else
|
|
|
|
gold_error(_("%s: not configured to support "
|
|
|
|
"64-bit big-endian object"),
|
|
|
|
input_file->filename().c_str());
|
2008-09-20 00:54:57 +02:00
|
|
|
#endif
|
|
|
|
else
|
2008-10-02 20:35:51 +02:00
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
2008-09-20 00:54:57 +02:00
|
|
|
obj = new Sized_pluginobj<64, false>(input_file->filename(),
|
2009-01-15 02:29:25 +01:00
|
|
|
input_file, offset, filesize);
|
2008-10-02 20:35:51 +02:00
|
|
|
#else
|
|
|
|
gold_error(_("%s: not configured to support "
|
|
|
|
"64-bit little-endian object"),
|
|
|
|
input_file->filename().c_str());
|
2008-09-20 00:54:57 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
gold_assert(obj != NULL);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End namespace gold.
|