cdc29364d1
report_object. (Add_archive_symbols::run): Track argument serial numbers. (Lib_group::include_member): Likewise. (Add_lib_group_symbols::run): Adjust call to report_archive_begin. * archive.h (Incremental_archive_entry::Archive_member): Initialize arg_serial_. (Archive_member::arg_serial_): New data member. * dynobj.cc (Dynobj::Dynobj): Allow input_file_ to be NULL. (Sized_dynobj::do_add_symbols): Track symbols when doing an incremental link. (Sized_dynobj::do_for_all_local_got_entries): New function. * dynobj.h: (Sized_dynobj::do_for_all_local_got_entries): New function. * fileread.cc (get_mtime): New function. * fileread.h (get_mtime): New function. * gold.cc (queue_initial_tasks): Check for incremental update. (process_incremental_input): New function. (queue_middle_tasks): Don't force valid target for incremental update. * incremental-dump.cc (find_input_containing_global): Adjust size of symbol info entry. (dump_incremental_inputs): Dump argument serial number and in_system_directory flag; bias shndx by 1; print symbol names when dumping per-file symbol lists; use new symbol info readers. * incremental.cc (Output_section_incremental_inputs:update_data_size): New function. (Sized_incremental_binary::setup_readers): Setup input readers for each input file; build maps for files added from libraries and scripts. (Sized_incremental_binary::check_input_args): New function. (Sized_incremental_binary::do_check_inputs): Build map of argument serial numbers to input arguments. (Sized_incremental_binary::do_file_has_changed): Rename do_file_is_unchanged to this; compare file modification times. (Sized_incremental_binary::do_init_layout): New function. (Sized_incremental_binary::do_reserve_layout): New function. (Sized_incremental_binary::do_get_input_reader): Remove. (Sized_incremental_binary::get_symtab_view): New function. (Incremental_checker::can_incrementally_link_output_file): Remove. (Incremental_inputs::report_command_line): Exclude --debug options. (Incremental_inputs::report_archive_begin): Add parameter; track argument serial numbers; don't put input file entry for archive before archive members. (Incremental_inputs::report_archive_end): Put input file entry for archive after archive members. (Incremental_inputs::report_object): Add parameter; track argument serial numbers and in_system_directory flag. (Incremental_inputs::report_script): Add parameter; track argument serial numbers. (Output_section_incremental_inputs::set_final_data_size): Adjust size of symbol info entry; check for forwarding symbols. (Output_section_incremental_inputs::write_input_files): Write in_system_directory flag and argument serial number. (Output_section_incremental_inputs::write_info_blocks): Map section indices between incremental info and original input file; store input section index for each symbol. (class Local_got_offset_visitor): Derive from Got_offset_list::Visitor; change operator() to visit(). (class Global_got_offset_visitor): Likewise. (class Global_symbol_visitor_got_plt): (Output_section_incremental_inputs::write_got_plt): Use new visitor classes. (Sized_incr_relobj::Sized_incr_relobj): New constructor. (Sized_incr_relobj::do_read_symbols): New function. (Sized_incr_relobj::do_layout): New function. (Sized_incr_relobj::do_layout_deferred_sections): New function. (Sized_incr_relobj::do_add_symbols): New function. (Sized_incr_relobj::do_should_include_member): New function. (Sized_incr_relobj::do_for_all_global_symbols): New function. (Sized_incr_relobj::do_for_all_local_got_entries): New function. (Sized_incr_relobj::do_section_size): New function. (Sized_incr_relobj::do_section_name): New function. (Sized_incr_relobj::do_section_contents): New function. (Sized_incr_relobj::do_section_flags): New function. (Sized_incr_relobj::do_section_entsize): New function. (Sized_incr_relobj::do_section_address): New function. (Sized_incr_relobj::do_section_type): New function. (Sized_incr_relobj::do_section_link): New function. (Sized_incr_relobj::do_section_info): New function. (Sized_incr_relobj::do_section_addralign): New function. (Sized_incr_relobj::do_initialize_xindex): New function. (Sized_incr_relobj::do_get_global_symbol_counts): New function. (Sized_incr_relobj::do_read_relocs): New function. (Sized_incr_relobj::do_gc_process_relocs): New function. (Sized_incr_relobj::do_scan_relocs): New function. (Sized_incr_relobj::do_count_local_symbols): New function. (Sized_incr_relobj::do_finalize_local_symbols): New function. (Sized_incr_relobj::do_set_local_dynsym_indexes): New function. (Sized_incr_relobj::do_set_local_dynsym_offset): New function. (Sized_incr_relobj::do_relocate): New function. (Sized_incr_relobj::do_set_section_offset): New function. (Sized_incr_dynobj::Sized_incr_dynobj): New function. (Sized_incr_dynobj::do_read_symbols): New function. (Sized_incr_dynobj::do_layout): New function. (Sized_incr_dynobj::do_add_symbols): New function. (Sized_incr_dynobj::do_should_include_member): New function. (Sized_incr_dynobj::do_for_all_global_symbols): New function. (Sized_incr_dynobj::do_for_all_local_got_entries): New function. (Sized_incr_dynobj::do_section_size): New function. (Sized_incr_dynobj::do_section_name): New function. (Sized_incr_dynobj::do_section_contents): New function. (Sized_incr_dynobj::do_section_flags): New function. (Sized_incr_dynobj::do_section_entsize): New function. (Sized_incr_dynobj::do_section_address): New function. (Sized_incr_dynobj::do_section_type): New function. (Sized_incr_dynobj::do_section_link): New function. (Sized_incr_dynobj::do_section_info): New function. (Sized_incr_dynobj::do_section_addralign): New function. (Sized_incr_dynobj::do_initialize_xindex): New function. (Sized_incr_dynobj::do_get_global_symbol_counts): New function. (make_sized_incremental_object): New function. (Incremental_library::copy_unused_symbols): New function. (Incremental_library::do_for_all_unused_symbols): New function. * incremental.h (enum Incremental_input_flags): New type. (class Incremental_checker): Remove. (Incremental_input_entry::Incremental_input_entry): Add argument serial number. (Incremental_input_entry::arg_serial): New function. (Incremental_input_entry::set_is_in_system_directory): New function. (Incremental_input_entry::is_in_system_directory): New function. (Incremental_input_entry::arg_serial_): New data member. (Incremental_input_entry::is_in_system_directory_): New data member. (class Script_info): Move here from script.h. (Script_info::Script_info): Add filename parameter. (Script_info::filename): New function. (Script_info::filename_): New data member. (Incremental_script_entry::Incremental_script_entry): Add argument serial number. (Incremental_object_entry::Incremental_object_entry): Likewise. (Incremental_object_entry::add_input_section): Build list of input sections with map to original shndx. (Incremental_object_entry::get_input_section_index): New function. (Incremental_object_entry::shndx_): New data member. (Incremental_object_entry::name_key_): Rename; adjust all refs. (Incremental_object_entry::sh_size_): Rename; adjust all refs. (Incremental_archive_entry::Incremental_archive_entry): Add argument serial number. (Incremental_inputs::report_archive_begin): Likewise. (Incremental_inputs::report_object): Likewise. (Incremental_inputs::report_script): Likewise. (class Incremental_global_symbol_reader): New class. (Incremental_input_entry_reader::Incremental_input_entry_reader): Read and store flags and input file type. (Incremental_input_entry_reader::arg_serial): New function. (Incremental_input_entry_reader::type): Extract type from flags. (Incremental_input_entry_reader::is_in_system_directory): New function. (Incremental_input_entry_reader::get_input_section_count): Call accessor function for type. (Incremental_input_entry_reader::get_symbol_offset): Call accessor function for type; adjust size of global symbol entry. (Incremental_input_entry_reader::get_global_symbol_count): Call accessor function for type. (Incremental_input_entry_reader::get_object_count): Likewise. (Incremental_input_entry_reader::get_object_offset): Likewise. (Incremental_input_entry_reader::get_member_count): Likewise. (Incremental_input_entry_reader::get_unused_symbol_count): Likewise. (Incremental_input_entry_reader::get_member_offset): Likewise. (Incremental_input_entry_reader::get_unused_symbol): Likewise. (Incremental_input_entry_reader::Global_symbol_info): Remove. (Incremental_input_entry_reader::get_global_symbol_info): Remove. (Incremental_input_entry_reader::get_global_symbol_reader): New function. (Incremental_input_entry_reader::get_output_symbol_index): New function. (Incremental_input_entry_reader::type_): Remove. (Incremental_input_entry_reader::flags_): New data member. (Incremental_inputs_reader::input_file_offset): New function. (Incremental_inputs_reader::input_file_index): New function. (Incremental_inputs_reader::input_file): Call input_file_offset. (Incremental_inputs_reader::input_file_at_offset): New function. (Incremental_relocs_reader::get_r_type): Reformat. (Incremental_relocs_reader::get_r_shndx): Reformat. (Incremental_relocs_reader::get_r_offset): Reformat. (Incremental_relocs_reader::data): New function. (Incremental_binary::Incremental_binary): Initialize new data members. (Incremental_binary::check_inputs): Add cmdline parameter. (Incremental_binary::file_is_unchanged): Remove. (Input_reader::arg_serial): New function. (Input_reader::get_unused_symbol_count): New function. (Input_reader::get_unused_symbol): New function. (Input_reader::do_arg_serial): New function. (Input_reader::do_get_unused_symbol_count): New function. (Input_reader::do_get_unused_symbol): New function. (Incremental_binary::input_file_count): New function. (Incremental_binary::get_input_reader): Change signature to use index instead of filename. (Incremental_binary::file_has_changed): New function. (Incremental_binary::get_input_argument): New function. (Incremental_binary::get_library): New function. (Incremental_binary::get_script_info): New function. (Incremental_binary::init_layout): New function. (Incremental_binary::reserve_layout): New function. (Incremental_binary::output_file): New function. (Incremental_binary::do_check_inputs): New function. (Incremental_binary::do_file_is_unchanged): Remove. (Incremental_binary::do_file_has_changed): New function. (Incremental_binary::do_init_layout): New function. (Incremental_binary::do_reserve_layout): New function. (Incremental_binary::do_input_file_count): New function. (Incremental_binary::do_get_input_reader): Change signature. (Incremental_binary::input_args_map_): New data member. (Incremental_binary::library_map_): New data member. (Incremental_binary::script_map_): New data member. (Sized_incremental_binary::Sized_incremental_binary): Initialize new data members. (Sized_incremental_binary::output_section): New function. (Sized_incremental_binary::inputs_reader): Add const. (Sized_incremental_binary::symtab_reader): Add const. (Sized_incremental_binary::relocs_reader): Add const. (Sized_incremental_binary::got_plt_reader): Add const. (Sized_incremental_binary::get_symtab_view): New function. (Sized_incremental_binary::Inputs_reader): New typedef. (Sized_incremental_binary::Input_entry_reader): New typedef. (Sized_incremental_binary::do_check_inputs): Add cmdline parameter. (Sized_incremental_binary::do_file_is_unchanged): Remove. (Sized_incremental_binary::do_file_has_changed): New function. (Sized_incremental_binary::do_init_layout): New function. (Sized_incremental_binary::do_reserve_layout): New function. (Sized_input_reader::Inputs_reader): Remove. (Sized_input_reader::Input_entry_reader): Remove. (Sized_input_reader::do_arg_serial): New function. (Sized_input_reader::do_get_unused_symbol_count): New function. (Sized_input_reader::do_get_unused_symbol): New function. (Sized_incremental_binary::do_input_file_count): New function. (Sized_incremental_binary::do_get_input_reader): Change signature; use index instead of filename. (Sized_incremental_binary::section_map_): New data member. (Sized_incremental_binary::input_entry_readers_): New data member. (class Sized_incr_relobj): New class. (class Sized_incr_dynobj): New class. (make_sized_incremental_object): New function. (class Incremental_library): New class. * layout.cc (Free_list::num_lists): New static data member. (Free_list::num_nodes): New static data member. (Free_list::num_removes): New static data member. (Free_list::num_remove_visits): New static data member. (Free_list::num_allocates): New static data member. (Free_list::num_allocate_visits): New static data member. (Free_list::init): New function. (Free_list::remove): New function. (Free_list::allocate): New function. (Free_list::dump): New function. (Free_list::print_stats): New function. (Layout_task_runner::run): Resize output file for incremental updates. (Layout::Layout): Initialize new data members. (Layout::set_incremental_base): New function. (Layout::init_fixed_output_section): New function. (Layout::layout_eh_frame): Do not build .eh_frame_hdr section for incremental updates. (Layout::create_gold_note): Do not create gold note section for incremental updates. (Layout::set_segment_offsets): Do not recalculate RELRO alignment for incremental updates. (Layout::set_section_offsets): For incremental updates, allocate space from free list. (Layout::create_symtab_sections): Layout with offsets relative to start of section; for incremental updates, allocate space from free list. (Layout::create_shdrs): For incremental updates, allocate space from free list. (Layout::finish_dynamic_section): For incremental updates, do not check --as-needed (fixed in subsequent patch). * layout.h (class Free_list): New class. (Layout::set_incremental_base): New function. (Layout::incremental_base): New function. (Layout::init_fixed_output_section): New function. (Layout::allocate): New function. (Layout::incremental_base_): New data member. (Layout::free_list_): New data member. * main.cc (main): Print Free_list statistics. * object.cc (Relobj::finalize_incremental_relocs): Add clear_counts parameter; clear counts only when clear_counts is set. (Sized_relobj::Sized_relobj): Initialize new base class. (Sized_relobj::do_layout): Don't report special sections. (Sized_relobj::do_for_all_local_got_entries): New function. (Sized_relobj::write_local_symbols): Add symtab_off parameter; add symtab_off to all symbol table offsets. (Sized_relobj::do_get_global_symbol_counts): Add typename keyword. * object.h (class Got_offset_list): Move to top of file. (Object::Object): Allow case where input_file == NULL. (Object::~Object): Likewise. (Object::input_file): Assert that input_file != NULL. (Object::lock): Allow case where input_file == NULL. (Object::unlock): Likewise. (Object::is_locked): Likewise. (Object::token): Likewise. (Object::release): Likewise. (Object::is_incremental): New function. (Object::get_mtime): New function. (Object::for_all_local_got_entries): New function. (Object::clear_view_cache_marks): Allow case where input_file == NULL. (Object::set_is_in_system_directory): New function. (Object::is_in_system_directory): New function. (Object::do_is_incremental): New function. (Object::do_get_mtime): New function. (Object::do_for_all_local_got_entries): New function. (Object::is_in_system_directory_): New data member. (Relobj::finalize_incremental_relocs): Add clear_counts parameter. (class Sized_relobj_base): New class. (class Sized_relobj): Derive from Sized_relobj_base. (class Sized_relobj::Symbols): Redeclare from base class. (class Sized_relobj::local_got_offset_list): Remove. (class Sized_relobj::Output_sections): Redeclare from base class. (class Sized_relobj::do_for_all_local_got_entries): New function. (class Sized_relobj::write_local_symbols): Add offset parameter. (class Sized_relobj::local_symbol_offset_): Update comment. (class Sized_relobj::local_dynsym_offset_): Update comment. * options.cc (Input_arguments::add_file): Remove const. * options.h (Input_file_argument::Input_file_argument): Initialize arg_serial_ (all constructors). (Input_file_argument::set_arg_serial): New function. (Input_file_argument::arg_serial): New function. (Input_file_argument::arg_serial_): New data member. (Input_arguments::Input_arguments): Initialize file_count_. (Input_arguments::add_file): Remove const. (Input_arguments::number_of_input_files): New function. (Input_arguments::file_count_): New data member. (Command_line::number_of_input_files): Call Input_arguments::number_of_input_files. * output.cc (Output_segment_headers::Output_segment_headers): Set current size. (Output_section::Input_section::current_data_size): New function. (Output_section::Output_section): Initialize new data members. (Output_section::add_input_section): Don't do merge sections for an incremental link; allocate space from free list for an incremental update. (Output_section::add_output_section_data): Allocate space from free list for an incremental update. (Output_section::update_data_size): New function. (Output_section::set_fixed_layout): New function. (Output_section::reserve): New function. (Output_segment::set_section_addresses): Remove const. (Output_segment::set_section_list_addresses): Remove const; allocate space from free list for an incremental update. (Output_segment::set_offset): Adjust size of RELRO segment for an incremental update. * output.h (Output_data::current_data_size): Move here from child classes. (Output_data::pre_finalize_data_size): New function. (Output_data::update_data_size): New function. (Output_section_headers::update_data_size): new function. (Output_section_data_build::current_data_size): Move to Output_data. (Output_data_strtab::update_data_size): New function. (Output_section::current_data_size): Move to Output_data. (Output_section::set_fixed_layout): New function. (Output_section::has_fixed_layout): New function. (Output_section::reserve): New function. (Output_section::update_data_size): New function. (Output_section::has_fixed_layout_): New data member. (Output_section::free_list_): New data member. (Output_segment::set_section_addresses): Remove const. (Output_segment::set_section_list_addresses): Remove const. * plugin.cc (Sized_pluginobj::do_for_all_local_got_entries): New function. * plugin.h (Sized_pluginobj::do_for_all_local_got_entries): New function. * readsyms.cc (Read_symbols::do_read_symbols): Add library parameter when calling Add_symbols constructor; store argument serial number for members of a lib group. (Add_symbols::locks): Allow case where token == NULL. (Add_symbols::run): Report libraries denoted by --start-lib/--end-lib. (Read_member::~Read_member): New function. (Read_member::is_runnable): New function. (Read_member::locks): New function. (Read_member::run): New function. (Check_script::~Check_script): New function. (Check_script::is_runnable): New function. (Check_script::locks): New function. (Check_script::run): New function. (Check_library::~Check_library): New function. (Check_library::is_runnable): New function. (Check_library::locks): New function. (Check_library::run): New function. * readsyms.h (Add_symbols::Add_symbols): Add library parameter. (Add_symbols::library_): New data member. (class Read_member): New class. (class Check_script): New class. (class Check_library): New class. * reloc.cc (Read_relocs::is_runnable): Allow case where token == NULL. (Read_relocs::locks): Likewise. (Scan_relocs::locks): Likewise. (Relocate_task::locks): Likewise. (Sized_relobj::do_scan_relocs): Tell finalize_incremental_relocs to clear counters. (Sized_relobj::incremental_relocs_scan): Fix comment. (Sized_relobj::do_relocate): Pass output file offset to write_local_symbols. (Sized_relobj::incremental_relocs_write_reltype): Use reloc_size from class declaration. * script.cc (read_input_script): Allocate Script_info; pass argument serial number to report_script. * script.h (class Script_info): Move to incremental.h. * symtab.cc (Symbol_table::add_from_incrobj): New function. * symtab.h (Symbol_table::add_from_incrobj): New function. (Symbol_table::set_file_offset): New function.
1451 lines
38 KiB
C++
1451 lines
38 KiB
C++
// plugin.cc -- plugin manager for gold -*- C++ -*-
|
|
|
|
// Copyright 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
|
// 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.
|
|
|
|
#include "gold.h"
|
|
|
|
#include <cstdio>
|
|
#include <cstdarg>
|
|
#include <cstring>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#ifdef ENABLE_PLUGINS
|
|
#include <dlfcn.h>
|
|
#endif
|
|
|
|
#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);
|
|
|
|
static enum ld_plugin_status
|
|
get_input_file(const void *handle, struct ld_plugin_input_file *file);
|
|
|
|
static enum ld_plugin_status
|
|
get_view(const void *handle, const void **viewp);
|
|
|
|
static enum ld_plugin_status
|
|
release_input_file(const void *handle);
|
|
|
|
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(const char *pathname);
|
|
|
|
static enum ld_plugin_status
|
|
add_input_library(const char *pathname);
|
|
|
|
static enum ld_plugin_status
|
|
set_extra_library_path(const char *path);
|
|
|
|
static enum ld_plugin_status
|
|
message(int level, const char *format, ...);
|
|
|
|
};
|
|
|
|
#endif // ENABLE_PLUGINS
|
|
|
|
static Pluginobj* make_sized_plugin_object(Input_file* input_file,
|
|
off_t offset, off_t filesize);
|
|
|
|
// Plugin methods.
|
|
|
|
// Load one plugin library.
|
|
|
|
void
|
|
Plugin::load()
|
|
{
|
|
#ifdef ENABLE_PLUGINS
|
|
// Load the plugin library.
|
|
// FIXME: Look for the library in standard locations.
|
|
this->handle_ = dlopen(this->filename_.c_str(), RTLD_NOW);
|
|
if (this->handle_ == NULL)
|
|
{
|
|
gold_error(_("%s: could not load plugin library: %s"),
|
|
this->filename_.c_str(), dlerror());
|
|
return;
|
|
}
|
|
|
|
// Find the plugin's onload entry point.
|
|
void* ptr = dlsym(this->handle_, "onload");
|
|
if (ptr == NULL)
|
|
{
|
|
gold_error(_("%s: could not find onload entry point"),
|
|
this->filename_.c_str());
|
|
return;
|
|
}
|
|
ld_plugin_onload onload;
|
|
gold_assert(sizeof(onload) == sizeof(ptr));
|
|
memcpy(&onload, &ptr, sizeof(ptr));
|
|
|
|
// 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.
|
|
const int tv_fixed_size = 17;
|
|
int tv_size = this->args_.size() + tv_fixed_size;
|
|
ld_plugin_tv* tv = new ld_plugin_tv[tv_size];
|
|
|
|
// Put LDPT_MESSAGE at the front of the list so the plugin can use it
|
|
// while processing subsequent entries.
|
|
int i = 0;
|
|
tv[i].tv_tag = LDPT_MESSAGE;
|
|
tv[i].tv_u.tv_message = message;
|
|
|
|
++i;
|
|
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;
|
|
|
|
++i;
|
|
tv[i].tv_tag = LDPT_OUTPUT_NAME;
|
|
tv[i].tv_u.tv_string = parameters->options().output();
|
|
|
|
for (unsigned int j = 0; j < this->args_.size(); ++j)
|
|
{
|
|
++i;
|
|
tv[i].tv_tag = LDPT_OPTION;
|
|
tv[i].tv_u.tv_string = this->args_[j].c_str();
|
|
}
|
|
|
|
++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;
|
|
|
|
++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_GET_VIEW;
|
|
tv[i].tv_u.tv_get_view = get_view;
|
|
|
|
++i;
|
|
tv[i].tv_tag = LDPT_RELEASE_INPUT_FILE;
|
|
tv[i].tv_u.tv_release_input_file = release_input_file;
|
|
|
|
++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;
|
|
|
|
++i;
|
|
tv[i].tv_tag = LDPT_ADD_INPUT_LIBRARY;
|
|
tv[i].tv_u.tv_add_input_library = add_input_library;
|
|
|
|
++i;
|
|
tv[i].tv_tag = LDPT_SET_EXTRA_LIBRARY_PATH;
|
|
tv[i].tv_u.tv_set_extra_library_path = set_extra_library_path;
|
|
|
|
++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);
|
|
|
|
delete[] tv;
|
|
#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()
|
|
{
|
|
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_)();
|
|
}
|
|
}
|
|
|
|
// This task is used to rescan archives as needed.
|
|
|
|
class Plugin_rescan : public Task
|
|
{
|
|
public:
|
|
Plugin_rescan(Task_token* this_blocker, Task_token* next_blocker)
|
|
: this_blocker_(this_blocker), next_blocker_(next_blocker)
|
|
{ }
|
|
|
|
~Plugin_rescan()
|
|
{
|
|
delete this->this_blocker_;
|
|
}
|
|
|
|
Task_token*
|
|
is_runnable()
|
|
{
|
|
if (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*)
|
|
{ parameters->options().plugins()->rescan(this); }
|
|
|
|
std::string
|
|
get_name() const
|
|
{ return "Plugin_rescan"; }
|
|
|
|
private:
|
|
Task_token* this_blocker_;
|
|
Task_token* next_blocker_;
|
|
};
|
|
|
|
// 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_))
|
|
{
|
|
this->any_claimed_ = true;
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
// Save an archive. This is used so that a plugin can add a file
|
|
// which refers to a symbol which was not previously referenced. In
|
|
// that case we want to pretend that the symbol was referenced before,
|
|
// and pull in the archive object.
|
|
|
|
void
|
|
Plugin_manager::save_archive(Archive* archive)
|
|
{
|
|
if (this->in_replacement_phase_ || !this->any_claimed_)
|
|
delete archive;
|
|
else
|
|
this->rescannable_.push_back(Rescannable(archive));
|
|
}
|
|
|
|
// Save an Input_group. This is like save_archive.
|
|
|
|
void
|
|
Plugin_manager::save_input_group(Input_group* input_group)
|
|
{
|
|
if (this->in_replacement_phase_ || !this->any_claimed_)
|
|
delete input_group;
|
|
else
|
|
this->rescannable_.push_back(Rescannable(input_group));
|
|
}
|
|
|
|
// Call the all-symbols-read handlers.
|
|
|
|
void
|
|
Plugin_manager::all_symbols_read(Workqueue* workqueue, Task* task,
|
|
Input_objects* input_objects,
|
|
Symbol_table* symtab, Layout* layout,
|
|
Dirsearch* dirpath, Mapfile* mapfile,
|
|
Task_token** last_blocker)
|
|
{
|
|
this->in_replacement_phase_ = true;
|
|
this->workqueue_ = workqueue;
|
|
this->task_ = task;
|
|
this->input_objects_ = input_objects;
|
|
this->symtab_ = symtab;
|
|
this->layout_ = layout;
|
|
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();
|
|
|
|
if (this->any_added_)
|
|
{
|
|
Task_token* next_blocker = new Task_token(true);
|
|
next_blocker->add_blocker();
|
|
workqueue->queue(new Plugin_rescan(this->this_blocker_, next_blocker));
|
|
this->this_blocker_ = next_blocker;
|
|
}
|
|
|
|
*last_blocker = this->this_blocker_;
|
|
}
|
|
|
|
// This is called when we see a new undefined symbol. If we are in
|
|
// the replacement phase, this means that we may need to rescan some
|
|
// archives we have previously seen.
|
|
|
|
void
|
|
Plugin_manager::new_undefined_symbol(Symbol* sym)
|
|
{
|
|
if (this->in_replacement_phase_)
|
|
this->undefined_symbols_.push_back(sym);
|
|
}
|
|
|
|
// Rescan archives as needed. This handles the case where a new
|
|
// object file added by a plugin has an undefined reference to some
|
|
// symbol defined in an archive.
|
|
|
|
void
|
|
Plugin_manager::rescan(Task* task)
|
|
{
|
|
size_t rescan_pos = 0;
|
|
size_t rescan_size = this->rescannable_.size();
|
|
while (!this->undefined_symbols_.empty())
|
|
{
|
|
if (rescan_pos >= rescan_size)
|
|
{
|
|
this->undefined_symbols_.clear();
|
|
return;
|
|
}
|
|
|
|
Undefined_symbol_list undefs;
|
|
undefs.reserve(this->undefined_symbols_.size());
|
|
this->undefined_symbols_.swap(undefs);
|
|
|
|
size_t min_rescan_pos = rescan_size;
|
|
|
|
for (Undefined_symbol_list::const_iterator p = undefs.begin();
|
|
p != undefs.end();
|
|
++p)
|
|
{
|
|
if (!(*p)->is_undefined())
|
|
continue;
|
|
|
|
this->undefined_symbols_.push_back(*p);
|
|
|
|
// Find the first rescan archive which defines this symbol,
|
|
// starting at the current rescan position. The rescan position
|
|
// exists so that given -la -lb -lc we don't look for undefined
|
|
// symbols in -lb back in -la, but instead get the definition
|
|
// from -lc. Don't bother to look past the current minimum
|
|
// rescan position.
|
|
for (size_t i = rescan_pos; i < min_rescan_pos; ++i)
|
|
{
|
|
if (this->rescannable_defines(i, *p))
|
|
{
|
|
min_rescan_pos = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (min_rescan_pos >= rescan_size)
|
|
{
|
|
// We didn't find any rescannable archives which define any
|
|
// undefined symbols.
|
|
return;
|
|
}
|
|
|
|
const Rescannable& r(this->rescannable_[min_rescan_pos]);
|
|
if (r.is_archive)
|
|
{
|
|
Task_lock_obj<Archive> tl(task, r.u.archive);
|
|
r.u.archive->add_symbols(this->symtab_, this->layout_,
|
|
this->input_objects_, this->mapfile_);
|
|
}
|
|
else
|
|
{
|
|
size_t next_saw_undefined = this->symtab_->saw_undefined();
|
|
size_t saw_undefined;
|
|
do
|
|
{
|
|
saw_undefined = next_saw_undefined;
|
|
|
|
for (Input_group::const_iterator p = r.u.input_group->begin();
|
|
p != r.u.input_group->end();
|
|
++p)
|
|
{
|
|
Task_lock_obj<Archive> tl(task, *p);
|
|
|
|
(*p)->add_symbols(this->symtab_, this->layout_,
|
|
this->input_objects_, this->mapfile_);
|
|
}
|
|
|
|
next_saw_undefined = this->symtab_->saw_undefined();
|
|
}
|
|
while (saw_undefined != next_saw_undefined);
|
|
}
|
|
|
|
for (size_t i = rescan_pos; i < min_rescan_pos + 1; ++i)
|
|
{
|
|
if (this->rescannable_[i].is_archive)
|
|
delete this->rescannable_[i].u.archive;
|
|
else
|
|
delete this->rescannable_[i].u.input_group;
|
|
}
|
|
|
|
rescan_pos = min_rescan_pos + 1;
|
|
}
|
|
}
|
|
|
|
// Return whether the rescannable at index I defines SYM.
|
|
|
|
bool
|
|
Plugin_manager::rescannable_defines(size_t i, Symbol* sym)
|
|
{
|
|
const Rescannable& r(this->rescannable_[i]);
|
|
if (r.is_archive)
|
|
return r.u.archive->defines_symbol(sym);
|
|
else
|
|
{
|
|
for (Input_group::const_iterator p = r.u.input_group->begin();
|
|
p != r.u.input_group->end();
|
|
++p)
|
|
{
|
|
if ((*p)->defines_symbol(sym))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Layout deferred objects.
|
|
|
|
void
|
|
Plugin_manager::layout_deferred_objects()
|
|
{
|
|
Deferred_layout_list::iterator obj;
|
|
|
|
for (obj = this->deferred_layout_objects_.begin();
|
|
obj != this->deferred_layout_objects_.end();
|
|
++obj)
|
|
{
|
|
// Lock the object so we can read from it. This is only called
|
|
// single-threaded from queue_middle_tasks, so it is OK to lock.
|
|
// Unfortunately we have no way to pass in a Task token.
|
|
const Task* dummy_task = reinterpret_cast<const Task*>(-1);
|
|
Task_lock_obj<Object> tl(dummy_task, *obj);
|
|
(*obj)->layout_deferred_sections(this->layout_);
|
|
}
|
|
}
|
|
|
|
// Call the cleanup handlers.
|
|
|
|
void
|
|
Plugin_manager::cleanup()
|
|
{
|
|
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_,
|
|
this->plugin_input_file_.offset,
|
|
this->plugin_input_file_.filesize);
|
|
this->objects_.push_back(obj);
|
|
return obj;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
ld_plugin_status
|
|
Plugin_manager::get_view(unsigned int handle, const void **viewp)
|
|
{
|
|
off_t offset;
|
|
size_t filesize;
|
|
Input_file *input_file;
|
|
if (this->objects_.size() == handle)
|
|
{
|
|
// We are being called from the claim_file hook.
|
|
const struct ld_plugin_input_file &f = this->plugin_input_file_;
|
|
offset = f.offset;
|
|
filesize = f.filesize;
|
|
input_file = this->input_file_;
|
|
}
|
|
else
|
|
{
|
|
// An already claimed file.
|
|
Pluginobj* obj = this->object(handle);
|
|
if (obj == NULL)
|
|
return LDPS_BAD_HANDLE;
|
|
offset = obj->offset();
|
|
filesize = obj->filesize();
|
|
input_file = obj->input_file();
|
|
}
|
|
*viewp = (void*) input_file->file().get_view(offset, 0, filesize, false,
|
|
false);
|
|
return LDPS_OK;
|
|
}
|
|
|
|
// Add a new library path.
|
|
|
|
ld_plugin_status
|
|
Plugin_manager::set_extra_library_path(const char* path)
|
|
{
|
|
this->extra_search_path_ = std::string(path);
|
|
return LDPS_OK;
|
|
}
|
|
|
|
// Add a new input file.
|
|
|
|
ld_plugin_status
|
|
Plugin_manager::add_input_file(const char* pathname, bool is_lib)
|
|
{
|
|
Input_file_argument file(pathname,
|
|
(is_lib
|
|
? Input_file_argument::INPUT_FILE_TYPE_LIBRARY
|
|
: Input_file_argument::INPUT_FILE_TYPE_FILE),
|
|
(is_lib
|
|
? this->extra_search_path_.c_str()
|
|
: ""),
|
|
false,
|
|
this->options_);
|
|
Input_argument* input_argument = new Input_argument(file);
|
|
Task_token* next_blocker = new Task_token(true);
|
|
next_blocker->add_blocker();
|
|
if (parameters->incremental())
|
|
gold_error(_("input files added by plug-ins in --incremental mode not "
|
|
"supported yet"));
|
|
this->workqueue_->queue_soon(new Read_symbols(this->input_objects_,
|
|
this->symtab_,
|
|
this->layout_,
|
|
this->dirpath_,
|
|
0,
|
|
this->mapfile_,
|
|
input_argument,
|
|
NULL,
|
|
NULL,
|
|
this->this_blocker_,
|
|
next_blocker));
|
|
this->this_blocker_ = next_blocker;
|
|
this->any_added_ = true;
|
|
return LDPS_OK;
|
|
}
|
|
|
|
// Class Pluginobj.
|
|
|
|
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_()
|
|
{
|
|
}
|
|
|
|
// 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().is_undefined(lsym->name()))
|
|
return true;
|
|
if (parameters->options().export_dynamic() || parameters->options().shared())
|
|
return lsym->is_externally_visible();
|
|
return false;
|
|
}
|
|
|
|
// Get symbol resolution info.
|
|
|
|
ld_plugin_status
|
|
Pluginobj::get_symbol_resolution_info(int nsyms, ld_plugin_symbol* syms) const
|
|
{
|
|
if (nsyms > this->nsyms_)
|
|
return LDPS_NO_SYMS;
|
|
|
|
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;
|
|
}
|
|
|
|
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;
|
|
else if (lsym->object()->pluginobj() == this)
|
|
res = (is_visible_from_outside(lsym)
|
|
? LDPR_PREVAILING_DEF
|
|
: LDPR_PREVAILING_DEF_IRONLY);
|
|
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))
|
|
res = (is_visible_from_outside(lsym)
|
|
? 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
|
|
Pluginobj::include_comdat_group(std::string comdat_key, Layout* layout)
|
|
{
|
|
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)
|
|
ins.first->second = layout->find_or_add_kept_section(comdat_key,
|
|
NULL, 0, true,
|
|
true, NULL);
|
|
|
|
return ins.first->second;
|
|
}
|
|
|
|
// Class Sized_pluginobj.
|
|
|
|
template<int size, bool big_endian>
|
|
Sized_pluginobj<size, big_endian>::Sized_pluginobj(
|
|
const std::string& name,
|
|
Input_file* input_file,
|
|
off_t offset,
|
|
off_t filesize)
|
|
: Pluginobj(name, input_file, offset, filesize)
|
|
{
|
|
}
|
|
|
|
// 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,
|
|
Read_symbols_data*,
|
|
Layout* layout)
|
|
{
|
|
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];
|
|
const char* name = isym->name;
|
|
const char* ver = isym->version;
|
|
elfcpp::Elf_Half shndx;
|
|
elfcpp::STB bind;
|
|
elfcpp::STV vis;
|
|
|
|
if (name != NULL && name[0] == '\0')
|
|
name = NULL;
|
|
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:
|
|
vis = elfcpp::STV_PROTECTED;
|
|
break;
|
|
case LDPV_INTERNAL:
|
|
vis = elfcpp::STV_INTERNAL;
|
|
break;
|
|
case LDPV_HIDDEN:
|
|
vis = elfcpp::STV_HIDDEN;
|
|
break;
|
|
case LDPV_DEFAULT:
|
|
default:
|
|
vis = elfcpp::STV_DEFAULT;
|
|
break;
|
|
}
|
|
|
|
if (isym->comdat_key != NULL
|
|
&& isym->comdat_key[0] != '\0'
|
|
&& !this->include_comdat_group(isym->comdat_key, layout))
|
|
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] =
|
|
symtab->add_from_pluginobj<size, big_endian>(this, name, ver, &sym);
|
|
}
|
|
}
|
|
|
|
template<int size, bool big_endian>
|
|
Archive::Should_include
|
|
Sized_pluginobj<size, big_endian>::do_should_include_member(
|
|
Symbol_table* symtab,
|
|
Layout* layout,
|
|
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,
|
|
layout,
|
|
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;
|
|
}
|
|
|
|
// Iterate over global symbols, calling a visitor class V for each.
|
|
|
|
template<int size, bool big_endian>
|
|
void
|
|
Sized_pluginobj<size, big_endian>::do_for_all_global_symbols(
|
|
Read_symbols_data*,
|
|
Library_base::Symbol_visitor_base* v)
|
|
{
|
|
for (int i = 0; i < this->nsyms_; ++i)
|
|
{
|
|
const struct ld_plugin_symbol& sym = this->syms_[i];
|
|
if (sym.def != LDPK_UNDEF)
|
|
v->visit(sym.name);
|
|
}
|
|
}
|
|
|
|
// Iterate over local symbols, calling a visitor class V for each GOT offset
|
|
// associated with a local symbol.
|
|
template<int size, bool big_endian>
|
|
void
|
|
Sized_pluginobj<size, big_endian>::do_for_all_local_got_entries(
|
|
Got_offset_list::Visitor*) const
|
|
{
|
|
gold_unreachable();
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
// 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();
|
|
}
|
|
|
|
// 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();
|
|
}
|
|
|
|
// Class Plugin_finish. This task runs after all replacement files have
|
|
// been added. For now, it's a placeholder for a possible plugin API
|
|
// to allow the plugin to release most of its resources. The cleanup
|
|
// handlers must be called later, because they can remove the temporary
|
|
// object files that are needed until the end of the link.
|
|
|
|
class Plugin_finish : public Task
|
|
{
|
|
public:
|
|
Plugin_finish(Task_token* this_blocker, Task_token* next_blocker)
|
|
: this_blocker_(this_blocker), next_blocker_(next_blocker)
|
|
{ }
|
|
|
|
~Plugin_finish()
|
|
{
|
|
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*)
|
|
{
|
|
// We could call early cleanup handlers here.
|
|
}
|
|
|
|
std::string
|
|
get_name() const
|
|
{ return "Plugin_finish"; }
|
|
|
|
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
|
|
Plugin_hook::run(Workqueue* workqueue)
|
|
{
|
|
gold_assert(this->options_.has_plugins());
|
|
Symbol* start_sym;
|
|
if (parameters->options().entry())
|
|
start_sym = this->symtab_->lookup(parameters->options().entry());
|
|
else
|
|
start_sym = this->symtab_->lookup("_start");
|
|
if (start_sym != NULL)
|
|
start_sym->set_in_real_elf();
|
|
|
|
this->options_.plugins()->all_symbols_read(workqueue,
|
|
this,
|
|
this->input_objects_,
|
|
this->symtab_,
|
|
this->layout_,
|
|
this->dirpath_,
|
|
this->mapfile_,
|
|
&this->this_blocker_);
|
|
workqueue->queue_soon(new Plugin_finish(this->this_blocker_,
|
|
this->next_blocker_));
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
// 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);
|
|
}
|
|
|
|
static enum ld_plugin_status
|
|
get_view(const void *handle, const void **viewp)
|
|
{
|
|
gold_assert(parameters->options().has_plugins());
|
|
unsigned int obj_index =
|
|
static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle));
|
|
return parameters->options().plugins()->get_view(obj_index, viewp);
|
|
}
|
|
|
|
// 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(const char* pathname)
|
|
{
|
|
gold_assert(parameters->options().has_plugins());
|
|
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(const char* pathname)
|
|
{
|
|
gold_assert(parameters->options().has_plugins());
|
|
return parameters->options().plugins()->add_input_file(pathname, true);
|
|
}
|
|
|
|
// Set the extra library path to be used by libraries added via
|
|
// add_input_library
|
|
|
|
static enum ld_plugin_status
|
|
set_extra_library_path(const char* path)
|
|
{
|
|
gold_assert(parameters->options().has_plugins());
|
|
return parameters->options().plugins()->set_extra_library_path(path);
|
|
}
|
|
|
|
// Issue a diagnostic message from a plugin.
|
|
|
|
static enum ld_plugin_status
|
|
message(int level, const char* format, ...)
|
|
{
|
|
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*
|
|
make_sized_plugin_object(Input_file* input_file, off_t offset, off_t filesize)
|
|
{
|
|
Pluginobj* obj = NULL;
|
|
|
|
parameters_force_valid_target();
|
|
const Target& target(parameters->target());
|
|
|
|
if (target.get_size() == 32)
|
|
{
|
|
if (target.is_big_endian())
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
obj = new Sized_pluginobj<32, true>(input_file->filename(),
|
|
input_file, offset, filesize);
|
|
#else
|
|
gold_error(_("%s: not configured to support "
|
|
"32-bit big-endian object"),
|
|
input_file->filename().c_str());
|
|
#endif
|
|
else
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
obj = new Sized_pluginobj<32, false>(input_file->filename(),
|
|
input_file, offset, filesize);
|
|
#else
|
|
gold_error(_("%s: not configured to support "
|
|
"32-bit little-endian object"),
|
|
input_file->filename().c_str());
|
|
#endif
|
|
}
|
|
else if (target.get_size() == 64)
|
|
{
|
|
if (target.is_big_endian())
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
obj = new Sized_pluginobj<64, true>(input_file->filename(),
|
|
input_file, offset, filesize);
|
|
#else
|
|
gold_error(_("%s: not configured to support "
|
|
"64-bit big-endian object"),
|
|
input_file->filename().c_str());
|
|
#endif
|
|
else
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
obj = new Sized_pluginobj<64, false>(input_file->filename(),
|
|
input_file, offset, filesize);
|
|
#else
|
|
gold_error(_("%s: not configured to support "
|
|
"64-bit little-endian object"),
|
|
input_file->filename().c_str());
|
|
#endif
|
|
}
|
|
|
|
gold_assert(obj != NULL);
|
|
return obj;
|
|
}
|
|
|
|
} // End namespace gold.
|