1 // plugin.cc -- plugin manager for gold -*- C++ -*-
3 // Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
4 // Written by Cary Coutant <ccoutant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
35 #include "parameters.h"
51 // The linker's exported interfaces.
56 static enum ld_plugin_status
57 register_claim_file(ld_plugin_claim_file_handler handler
);
59 static enum ld_plugin_status
60 register_all_symbols_read(ld_plugin_all_symbols_read_handler handler
);
62 static enum ld_plugin_status
63 register_cleanup(ld_plugin_cleanup_handler handler
);
65 static enum ld_plugin_status
66 add_symbols(void *handle
, int nsyms
, const struct ld_plugin_symbol
*syms
);
68 static enum ld_plugin_status
69 get_input_file(const void *handle
, struct ld_plugin_input_file
*file
);
71 static enum ld_plugin_status
72 release_input_file(const void *handle
);
74 static enum ld_plugin_status
75 get_symbols(const void *handle
, int nsyms
, struct ld_plugin_symbol
*syms
);
77 static enum ld_plugin_status
78 add_input_file(char *pathname
);
80 static enum ld_plugin_status
81 add_input_library(char *pathname
);
83 static enum ld_plugin_status
84 message(int level
, const char *format
, ...);
88 #endif // ENABLE_PLUGINS
90 static Pluginobj
* make_sized_plugin_object(Input_file
* input_file
,
91 off_t offset
, off_t filesize
);
95 // Load one plugin library.
100 #ifdef ENABLE_PLUGINS
101 // Load the plugin library.
102 // FIXME: Look for the library in standard locations.
103 this->handle_
= dlopen(this->filename_
.c_str(), RTLD_NOW
);
104 if (this->handle_
== NULL
)
106 gold_error(_("%s: could not load plugin library"),
107 this->filename_
.c_str());
111 // Find the plugin's onload entry point.
112 void* ptr
= dlsym(this->handle_
, "onload");
115 gold_error(_("%s: could not find onload entry point"),
116 this->filename_
.c_str());
119 ld_plugin_onload onload
;
120 gold_assert(sizeof(onload
) == sizeof(ptr
));
121 memcpy(&onload
, &ptr
, sizeof(ptr
));
123 // Get the linker's version number.
124 const char* ver
= get_version_string();
127 sscanf(ver
, "%d.%d", &major
, &minor
);
129 // Allocate and populate a transfer vector.
130 const int tv_fixed_size
= 14;
131 int tv_size
= this->args_
.size() + tv_fixed_size
;
132 ld_plugin_tv
*tv
= new ld_plugin_tv
[tv_size
];
134 // Put LDPT_MESSAGE at the front of the list so the plugin can use it
135 // while processing subsequent entries.
137 tv
[i
].tv_tag
= LDPT_MESSAGE
;
138 tv
[i
].tv_u
.tv_message
= message
;
141 tv
[i
].tv_tag
= LDPT_API_VERSION
;
142 tv
[i
].tv_u
.tv_val
= LD_PLUGIN_API_VERSION
;
145 tv
[i
].tv_tag
= LDPT_GOLD_VERSION
;
146 tv
[i
].tv_u
.tv_val
= major
* 100 + minor
;
149 tv
[i
].tv_tag
= LDPT_LINKER_OUTPUT
;
150 if (parameters
->options().relocatable())
151 tv
[i
].tv_u
.tv_val
= LDPO_REL
;
152 else if (parameters
->options().shared())
153 tv
[i
].tv_u
.tv_val
= LDPO_DYN
;
155 tv
[i
].tv_u
.tv_val
= LDPO_EXEC
;
157 for (unsigned int j
= 0; j
< this->args_
.size(); ++j
)
160 tv
[i
].tv_tag
= LDPT_OPTION
;
161 tv
[i
].tv_u
.tv_string
= this->args_
[j
].c_str();
165 tv
[i
].tv_tag
= LDPT_REGISTER_CLAIM_FILE_HOOK
;
166 tv
[i
].tv_u
.tv_register_claim_file
= register_claim_file
;
169 tv
[i
].tv_tag
= LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK
;
170 tv
[i
].tv_u
.tv_register_all_symbols_read
= register_all_symbols_read
;
173 tv
[i
].tv_tag
= LDPT_REGISTER_CLEANUP_HOOK
;
174 tv
[i
].tv_u
.tv_register_cleanup
= register_cleanup
;
177 tv
[i
].tv_tag
= LDPT_ADD_SYMBOLS
;
178 tv
[i
].tv_u
.tv_add_symbols
= add_symbols
;
181 tv
[i
].tv_tag
= LDPT_GET_INPUT_FILE
;
182 tv
[i
].tv_u
.tv_get_input_file
= get_input_file
;
185 tv
[i
].tv_tag
= LDPT_RELEASE_INPUT_FILE
;
186 tv
[i
].tv_u
.tv_release_input_file
= release_input_file
;
189 tv
[i
].tv_tag
= LDPT_GET_SYMBOLS
;
190 tv
[i
].tv_u
.tv_get_symbols
= get_symbols
;
193 tv
[i
].tv_tag
= LDPT_ADD_INPUT_FILE
;
194 tv
[i
].tv_u
.tv_add_input_file
= add_input_file
;
197 tv
[i
].tv_tag
= LDPT_ADD_INPUT_LIBRARY
;
198 tv
[i
].tv_u
.tv_add_input_library
= add_input_library
;
201 tv
[i
].tv_tag
= LDPT_NULL
;
202 tv
[i
].tv_u
.tv_val
= 0;
204 gold_assert(i
== tv_size
- 1);
206 // Call the onload entry point.
210 #endif // ENABLE_PLUGINS
213 // Call the plugin claim-file handler.
216 Plugin::claim_file(struct ld_plugin_input_file
*plugin_input_file
)
220 if (this->claim_file_handler_
!= NULL
)
222 (*this->claim_file_handler_
)(plugin_input_file
, &claimed
);
229 // Call the all-symbols-read handler.
232 Plugin::all_symbols_read()
234 if (this->all_symbols_read_handler_
!= NULL
)
235 (*this->all_symbols_read_handler_
)();
238 // Call the cleanup handler.
243 if (this->cleanup_handler_
!= NULL
&& !this->cleanup_done_
)
245 // Set this flag before calling to prevent a recursive plunge
246 // in the event that a plugin's cleanup handler issues a
248 this->cleanup_done_
= true;
249 (*this->cleanup_handler_
)();
253 // Plugin_manager methods.
255 Plugin_manager::~Plugin_manager()
257 for (Plugin_list::iterator p
= this->plugins_
.begin();
258 p
!= this->plugins_
.end();
261 this->plugins_
.clear();
262 for (Object_list::iterator obj
= this->objects_
.begin();
263 obj
!= this->objects_
.end();
266 this->objects_
.clear();
269 // Load all plugin libraries.
272 Plugin_manager::load_plugins()
274 for (this->current_
= this->plugins_
.begin();
275 this->current_
!= this->plugins_
.end();
277 (*this->current_
)->load();
280 // Call the plugin claim-file handlers in turn to see if any claim the file.
283 Plugin_manager::claim_file(Input_file
* input_file
, off_t offset
,
286 if (this->in_replacement_phase_
)
289 unsigned int handle
= this->objects_
.size();
290 this->input_file_
= input_file
;
291 this->plugin_input_file_
.name
= input_file
->filename().c_str();
292 this->plugin_input_file_
.fd
= input_file
->file().descriptor();
293 this->plugin_input_file_
.offset
= offset
;
294 this->plugin_input_file_
.filesize
= filesize
;
295 this->plugin_input_file_
.handle
= reinterpret_cast<void*>(handle
);
297 for (this->current_
= this->plugins_
.begin();
298 this->current_
!= this->plugins_
.end();
301 if ((*this->current_
)->claim_file(&this->plugin_input_file_
))
303 if (this->objects_
.size() > handle
)
304 return this->objects_
[handle
];
306 // If the plugin claimed the file but did not call the
307 // add_symbols callback, we need to create the Pluginobj now.
308 Pluginobj
* obj
= this->make_plugin_object(handle
);
316 // Call the all-symbols-read handlers.
319 Plugin_manager::all_symbols_read(Workqueue
* workqueue
, Task
* task
,
320 Input_objects
* input_objects
,
321 Symbol_table
* symtab
, Layout
* layout
,
322 Dirsearch
* dirpath
, Mapfile
* mapfile
,
323 Task_token
** last_blocker
)
325 this->in_replacement_phase_
= true;
326 this->workqueue_
= workqueue
;
328 this->input_objects_
= input_objects
;
329 this->symtab_
= symtab
;
330 this->layout_
= layout
;
331 this->dirpath_
= dirpath
;
332 this->mapfile_
= mapfile
;
333 this->this_blocker_
= NULL
;
335 for (this->current_
= this->plugins_
.begin();
336 this->current_
!= this->plugins_
.end();
338 (*this->current_
)->all_symbols_read();
340 *last_blocker
= this->this_blocker_
;
343 // Layout deferred objects.
346 Plugin_manager::layout_deferred_objects()
348 Deferred_layout_list::iterator obj
;
350 for (obj
= this->deferred_layout_objects_
.begin();
351 obj
!= this->deferred_layout_objects_
.end();
353 (*obj
)->layout_deferred_sections(this->layout_
);
356 // Call the cleanup handlers.
359 Plugin_manager::cleanup()
361 for (this->current_
= this->plugins_
.begin();
362 this->current_
!= this->plugins_
.end();
364 (*this->current_
)->cleanup();
367 // Make a new Pluginobj object. This is called when the plugin calls
368 // the add_symbols API.
371 Plugin_manager::make_plugin_object(unsigned int handle
)
373 // Make sure we aren't asked to make an object for the same handle twice.
374 if (this->objects_
.size() != handle
)
377 Pluginobj
* obj
= make_sized_plugin_object(this->input_file_
,
378 this->plugin_input_file_
.offset
,
379 this->plugin_input_file_
.filesize
);
380 this->objects_
.push_back(obj
);
384 // Get the input file information with an open (possibly re-opened)
388 Plugin_manager::get_input_file(unsigned int handle
,
389 struct ld_plugin_input_file
*file
)
391 Pluginobj
* obj
= this->object(handle
);
393 return LDPS_BAD_HANDLE
;
395 obj
->lock(this->task_
);
396 file
->name
= obj
->filename().c_str();
397 file
->fd
= obj
->descriptor();
398 file
->offset
= obj
->offset();
399 file
->filesize
= obj
->filesize();
400 file
->handle
= reinterpret_cast<void*>(handle
);
404 // Release the input file.
407 Plugin_manager::release_input_file(unsigned int handle
)
409 Pluginobj
* obj
= this->object(handle
);
411 return LDPS_BAD_HANDLE
;
413 obj
->unlock(this->task_
);
417 // Add a new input file.
420 Plugin_manager::add_input_file(char *pathname
, bool is_lib
)
422 Input_file_argument
file(pathname
,
424 ? Input_file_argument::INPUT_FILE_TYPE_LIBRARY
425 : Input_file_argument::INPUT_FILE_TYPE_FILE
),
426 "", false, this->options_
);
427 Input_argument
* input_argument
= new Input_argument(file
);
428 Task_token
* next_blocker
= new Task_token(true);
429 next_blocker
->add_blocker();
430 if (this->layout_
->incremental_inputs())
431 gold_error(_("input files added by plug-ins in --incremental mode not "
433 this->workqueue_
->queue_soon(new Read_symbols(this->input_objects_
,
443 this->this_blocker_
= next_blocker
;
449 Pluginobj::Pluginobj(const std::string
& name
, Input_file
* input_file
,
450 off_t offset
, off_t filesize
)
451 : Object(name
, input_file
, false, offset
),
452 nsyms_(0), syms_(NULL
), symbols_(), filesize_(filesize
), comdat_map_()
456 // Return TRUE if a defined symbol might be reachable from outside the
457 // universe of claimed objects.
460 is_visible_from_outside(Symbol
* lsym
)
462 if (lsym
->in_real_elf())
464 if (parameters
->options().relocatable())
466 if (parameters
->options().export_dynamic() || parameters
->options().shared())
467 return lsym
->is_externally_visible();
471 // Get symbol resolution info.
474 Pluginobj::get_symbol_resolution_info(int nsyms
, ld_plugin_symbol
* syms
) const
476 if (nsyms
> this->nsyms_
)
478 for (int i
= 0; i
< nsyms
; i
++)
480 ld_plugin_symbol
* isym
= &syms
[i
];
481 Symbol
* lsym
= this->symbols_
[i
];
482 ld_plugin_symbol_resolution res
= LDPR_UNKNOWN
;
484 if (lsym
->is_undefined())
485 // The symbol remains undefined.
487 else if (isym
->def
== LDPK_UNDEF
488 || isym
->def
== LDPK_WEAKUNDEF
489 || isym
->def
== LDPK_COMMON
)
491 // The original symbol was undefined or common.
492 if (lsym
->source() != Symbol::FROM_OBJECT
)
493 res
= LDPR_RESOLVED_EXEC
;
494 else if (lsym
->object()->pluginobj() != NULL
)
495 res
= LDPR_RESOLVED_IR
;
496 else if (lsym
->object()->is_dynamic())
497 res
= LDPR_RESOLVED_DYN
;
499 res
= LDPR_RESOLVED_EXEC
;
503 // The original symbol was a definition.
504 if (lsym
->source() != Symbol::FROM_OBJECT
)
505 res
= LDPR_PREEMPTED_REG
;
506 else if (lsym
->object() == static_cast<const Object
*>(this))
507 res
= (is_visible_from_outside(lsym
)
508 ? LDPR_PREVAILING_DEF
509 : LDPR_PREVAILING_DEF_IRONLY
);
511 res
= (lsym
->object()->pluginobj() != NULL
513 : LDPR_PREEMPTED_REG
);
515 isym
->resolution
= res
;
520 // Return TRUE if the comdat group with key COMDAT_KEY from this object
524 Pluginobj::include_comdat_group(std::string comdat_key
, Layout
* layout
)
526 std::pair
<Comdat_map::iterator
, bool> ins
=
527 this->comdat_map_
.insert(std::make_pair(comdat_key
, false));
529 // If this is the first time we've seen this comdat key, ask the
530 // layout object whether it should be included.
532 ins
.first
->second
= layout
->find_or_add_kept_section(comdat_key
,
536 return ins
.first
->second
;
539 // Class Sized_pluginobj.
541 template<int size
, bool big_endian
>
542 Sized_pluginobj
<size
, big_endian
>::Sized_pluginobj(
543 const std::string
& name
,
544 Input_file
* input_file
,
547 : Pluginobj(name
, input_file
, offset
, filesize
)
551 // Read the symbols. Not used for plugin objects.
553 template<int size
, bool big_endian
>
555 Sized_pluginobj
<size
, big_endian
>::do_read_symbols(Read_symbols_data
*)
560 // Lay out the input sections. Not used for plugin objects.
562 template<int size
, bool big_endian
>
564 Sized_pluginobj
<size
, big_endian
>::do_layout(Symbol_table
*, Layout
*,
570 // Add the symbols to the symbol table.
572 template<int size
, bool big_endian
>
574 Sized_pluginobj
<size
, big_endian
>::do_add_symbols(Symbol_table
* symtab
,
578 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
579 unsigned char symbuf
[sym_size
];
580 elfcpp::Sym
<size
, big_endian
> sym(symbuf
);
581 elfcpp::Sym_write
<size
, big_endian
> osym(symbuf
);
583 typedef typename
elfcpp::Elf_types
<size
>::Elf_WXword Elf_size_type
;
585 this->symbols_
.resize(this->nsyms_
);
587 for (int i
= 0; i
< this->nsyms_
; ++i
)
589 const struct ld_plugin_symbol
*isym
= &this->syms_
[i
];
590 const char* name
= isym
->name
;
591 const char* ver
= isym
->version
;
592 elfcpp::Elf_Half shndx
;
596 if (name
!= NULL
&& name
[0] == '\0')
598 if (ver
!= NULL
&& ver
[0] == '\0')
605 bind
= elfcpp::STB_WEAK
;
611 bind
= elfcpp::STB_GLOBAL
;
619 shndx
= elfcpp::SHN_ABS
;
622 shndx
= elfcpp::SHN_COMMON
;
627 shndx
= elfcpp::SHN_UNDEF
;
631 switch (isym
->visibility
)
634 vis
= elfcpp::STV_DEFAULT
;
637 vis
= elfcpp::STV_DEFAULT
;
640 vis
= elfcpp::STV_DEFAULT
;
644 vis
= elfcpp::STV_DEFAULT
;
648 if (isym
->comdat_key
!= NULL
649 && isym
->comdat_key
[0] != '\0'
650 && !this->include_comdat_group(isym
->comdat_key
, layout
))
651 shndx
= elfcpp::SHN_UNDEF
;
654 osym
.put_st_value(0);
655 osym
.put_st_size(static_cast<Elf_size_type
>(isym
->size
));
656 osym
.put_st_info(bind
, elfcpp::STT_NOTYPE
);
657 osym
.put_st_other(vis
, 0);
658 osym
.put_st_shndx(shndx
);
661 symtab
->add_from_pluginobj
<size
, big_endian
>(this, name
, ver
, &sym
);
665 // Get the size of a section. Not used for plugin objects.
667 template<int size
, bool big_endian
>
669 Sized_pluginobj
<size
, big_endian
>::do_section_size(unsigned int)
675 // Get the name of a section. Not used for plugin objects.
677 template<int size
, bool big_endian
>
679 Sized_pluginobj
<size
, big_endian
>::do_section_name(unsigned int)
682 return std::string();
685 // Return a view of the contents of a section. Not used for plugin objects.
687 template<int size
, bool big_endian
>
689 Sized_pluginobj
<size
, big_endian
>::do_section_contents(unsigned int)
697 // Return section flags. Not used for plugin objects.
699 template<int size
, bool big_endian
>
701 Sized_pluginobj
<size
, big_endian
>::do_section_flags(unsigned int)
707 // Return section entsize. Not used for plugin objects.
709 template<int size
, bool big_endian
>
711 Sized_pluginobj
<size
, big_endian
>::do_section_entsize(unsigned int)
717 // Return section address. Not used for plugin objects.
719 template<int size
, bool big_endian
>
721 Sized_pluginobj
<size
, big_endian
>::do_section_address(unsigned int)
727 // Return section type. Not used for plugin objects.
729 template<int size
, bool big_endian
>
731 Sized_pluginobj
<size
, big_endian
>::do_section_type(unsigned int)
737 // Return the section link field. Not used for plugin objects.
739 template<int size
, bool big_endian
>
741 Sized_pluginobj
<size
, big_endian
>::do_section_link(unsigned int)
747 // Return the section link field. Not used for plugin objects.
749 template<int size
, bool big_endian
>
751 Sized_pluginobj
<size
, big_endian
>::do_section_info(unsigned int)
757 // Return the section alignment. Not used for plugin objects.
759 template<int size
, bool big_endian
>
761 Sized_pluginobj
<size
, big_endian
>::do_section_addralign(unsigned int)
767 // Return the Xindex structure to use. Not used for plugin objects.
769 template<int size
, bool big_endian
>
771 Sized_pluginobj
<size
, big_endian
>::do_initialize_xindex()
777 // Get symbol counts. Not used for plugin objects.
779 template<int size
, bool big_endian
>
781 Sized_pluginobj
<size
, big_endian
>::do_get_global_symbol_counts(const Symbol_table
*,
782 size_t*, size_t*) const
787 // Get symbols. Not used for plugin objects.
789 template<int size
, bool big_endian
>
790 const Object::Symbols
*
791 Sized_pluginobj
<size
, big_endian
>::do_get_global_symbols() const
796 // Class Plugin_finish. This task runs after all replacement files have
797 // been added. It calls each plugin's cleanup handler.
799 class Plugin_finish
: public Task
802 Plugin_finish(Task_token
* this_blocker
, Task_token
* next_blocker
)
803 : this_blocker_(this_blocker
), next_blocker_(next_blocker
)
808 if (this->this_blocker_
!= NULL
)
809 delete this->this_blocker_
;
815 if (this->this_blocker_
!= NULL
&& this->this_blocker_
->is_blocked())
816 return this->this_blocker_
;
821 locks(Task_locker
* tl
)
822 { tl
->add(this, this->next_blocker_
); }
827 Plugin_manager
* plugins
= parameters
->options().plugins();
828 gold_assert(plugins
!= NULL
);
834 { return "Plugin_finish"; }
837 Task_token
* this_blocker_
;
838 Task_token
* next_blocker_
;
841 // Class Plugin_hook.
843 Plugin_hook::~Plugin_hook()
847 // Return whether a Plugin_hook task is runnable.
850 Plugin_hook::is_runnable()
852 if (this->this_blocker_
!= NULL
&& this->this_blocker_
->is_blocked())
853 return this->this_blocker_
;
857 // Return a Task_locker for a Plugin_hook task. We don't need any
861 Plugin_hook::locks(Task_locker
*)
865 // Run the "all symbols read" plugin hook.
868 Plugin_hook::run(Workqueue
* workqueue
)
870 gold_assert(this->options_
.has_plugins());
871 this->options_
.plugins()->all_symbols_read(workqueue
,
873 this->input_objects_
,
878 &this->this_blocker_
);
879 workqueue
->queue_soon(new Plugin_finish(this->this_blocker_
,
880 this->next_blocker_
));
883 // The C interface routines called by the plugins.
885 #ifdef ENABLE_PLUGINS
887 // Register a claim-file handler.
889 static enum ld_plugin_status
890 register_claim_file(ld_plugin_claim_file_handler handler
)
892 gold_assert(parameters
->options().has_plugins());
893 parameters
->options().plugins()->set_claim_file_handler(handler
);
897 // Register an all-symbols-read handler.
899 static enum ld_plugin_status
900 register_all_symbols_read(ld_plugin_all_symbols_read_handler handler
)
902 gold_assert(parameters
->options().has_plugins());
903 parameters
->options().plugins()->set_all_symbols_read_handler(handler
);
907 // Register a cleanup handler.
909 static enum ld_plugin_status
910 register_cleanup(ld_plugin_cleanup_handler handler
)
912 gold_assert(parameters
->options().has_plugins());
913 parameters
->options().plugins()->set_cleanup_handler(handler
);
917 // Add symbols from a plugin-claimed input file.
919 static enum ld_plugin_status
920 add_symbols(void* handle
, int nsyms
, const ld_plugin_symbol
*syms
)
922 gold_assert(parameters
->options().has_plugins());
923 Pluginobj
* obj
= parameters
->options().plugins()->make_plugin_object(
924 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle
)));
927 obj
->store_incoming_symbols(nsyms
, syms
);
931 // Get the input file information with an open (possibly re-opened)
934 static enum ld_plugin_status
935 get_input_file(const void *handle
, struct ld_plugin_input_file
*file
)
937 gold_assert(parameters
->options().has_plugins());
938 unsigned int obj_index
=
939 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle
));
940 return parameters
->options().plugins()->get_input_file(obj_index
, file
);
943 // Release the input file.
945 static enum ld_plugin_status
946 release_input_file(const void *handle
)
948 gold_assert(parameters
->options().has_plugins());
949 unsigned int obj_index
=
950 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle
));
951 return parameters
->options().plugins()->release_input_file(obj_index
);
954 // Get the symbol resolution info for a plugin-claimed input file.
956 static enum ld_plugin_status
957 get_symbols(const void * handle
, int nsyms
, ld_plugin_symbol
* syms
)
959 gold_assert(parameters
->options().has_plugins());
960 Pluginobj
* obj
= parameters
->options().plugins()->object(
961 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle
)));
964 return obj
->get_symbol_resolution_info(nsyms
, syms
);
967 // Add a new (real) input file generated by a plugin.
969 static enum ld_plugin_status
970 add_input_file(char *pathname
)
972 gold_assert(parameters
->options().has_plugins());
973 return parameters
->options().plugins()->add_input_file(pathname
, false);
976 // Add a new (real) library required by a plugin.
978 static enum ld_plugin_status
979 add_input_library(char *pathname
)
981 gold_assert(parameters
->options().has_plugins());
982 return parameters
->options().plugins()->add_input_file(pathname
, true);
985 // Issue a diagnostic message from a plugin.
987 static enum ld_plugin_status
988 message(int level
, const char * format
, ...)
991 va_start(args
, format
);
996 parameters
->errors()->info(format
, args
);
999 parameters
->errors()->warning(format
, args
);
1003 parameters
->errors()->error(format
, args
);
1006 parameters
->errors()->fatal(format
, args
);
1014 #endif // ENABLE_PLUGINS
1016 // Allocate a Pluginobj object of the appropriate size and endianness.
1019 make_sized_plugin_object(Input_file
* input_file
, off_t offset
, off_t filesize
)
1021 Pluginobj
* obj
= NULL
;
1023 parameters_force_valid_target();
1024 const Target
& target(parameters
->target());
1026 if (target
.get_size() == 32)
1028 if (target
.is_big_endian())
1029 #ifdef HAVE_TARGET_32_BIG
1030 obj
= new Sized_pluginobj
<32, true>(input_file
->filename(),
1031 input_file
, offset
, filesize
);
1033 gold_error(_("%s: not configured to support "
1034 "32-bit big-endian object"),
1035 input_file
->filename().c_str());
1038 #ifdef HAVE_TARGET_32_LITTLE
1039 obj
= new Sized_pluginobj
<32, false>(input_file
->filename(),
1040 input_file
, offset
, filesize
);
1042 gold_error(_("%s: not configured to support "
1043 "32-bit little-endian object"),
1044 input_file
->filename().c_str());
1047 else if (target
.get_size() == 64)
1049 if (target
.is_big_endian())
1050 #ifdef HAVE_TARGET_64_BIG
1051 obj
= new Sized_pluginobj
<64, true>(input_file
->filename(),
1052 input_file
, offset
, filesize
);
1054 gold_error(_("%s: not configured to support "
1055 "64-bit big-endian object"),
1056 input_file
->filename().c_str());
1059 #ifdef HAVE_TARGET_64_LITTLE
1060 obj
= new Sized_pluginobj
<64, false>(input_file
->filename(),
1061 input_file
, offset
, filesize
);
1063 gold_error(_("%s: not configured to support "
1064 "64-bit little-endian object"),
1065 input_file
->filename().c_str());
1069 gold_assert(obj
!= NULL
);
1073 } // End namespace gold.