1 // plugin.h -- plugin manager for gold -*- C++ -*-
3 // Copyright (C) 2008-2023 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.
30 #include "plugin-api.h"
31 #include "workqueue.h"
36 class General_options
;
50 class Plugin_recorder
;
52 // This class represents a single plugin library.
57 Plugin(const char* filename
)
61 claim_file_handler_(NULL
),
62 all_symbols_read_handler_(NULL
),
63 cleanup_handler_(NULL
),
64 new_input_handler_(NULL
),
71 // Load the library and call its entry point.
75 // Call the claim-file handler.
77 claim_file(struct ld_plugin_input_file
* plugin_input_file
);
79 // Call the all-symbols-read handler.
83 // Call the new_input handler.
85 new_input(struct ld_plugin_input_file
* plugin_input_file
);
87 // Call the cleanup handler.
91 // Register a claim-file handler.
93 set_claim_file_handler(ld_plugin_claim_file_handler handler
)
94 { this->claim_file_handler_
= handler
; }
96 // Register an all-symbols-read handler.
98 set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler
)
99 { this->all_symbols_read_handler_
= handler
; }
101 // Register a claim-file handler.
103 set_cleanup_handler(ld_plugin_cleanup_handler handler
)
104 { this->cleanup_handler_
= handler
; }
106 // Register a new_input handler.
108 set_new_input_handler(ld_plugin_new_input_handler handler
)
109 { this->new_input_handler_
= handler
; }
113 add_option(const char* arg
)
115 this->args_
.push_back(arg
);
120 { return this->filename_
; }
123 Plugin(const Plugin
&);
124 Plugin
& operator=(const Plugin
&);
126 // The shared library handle returned by dlopen.
128 // The argument string given to --plugin.
129 std::string filename_
;
130 // The list of argument string given to --plugin-opt.
131 std::vector
<std::string
> args_
;
132 // The plugin's event handlers.
133 ld_plugin_claim_file_handler claim_file_handler_
;
134 ld_plugin_all_symbols_read_handler all_symbols_read_handler_
;
135 ld_plugin_cleanup_handler cleanup_handler_
;
136 ld_plugin_new_input_handler new_input_handler_
;
137 // TRUE if the cleanup handlers have been called.
141 // A manager class for plugins.
146 Plugin_manager(const General_options
& options
)
147 : plugins_(), objects_(), deferred_layout_objects_(), input_file_(NULL
),
148 plugin_input_file_(), rescannable_(), undefined_symbols_(),
149 any_claimed_(false), in_replacement_phase_(false), any_added_(false),
150 in_claim_file_handler_(false),
151 options_(options
), workqueue_(NULL
), task_(NULL
), input_objects_(NULL
),
152 symtab_(NULL
), layout_(NULL
), dirpath_(NULL
), mapfile_(NULL
),
153 this_blocker_(NULL
), extra_search_path_(), lock_(NULL
),
154 initialize_lock_(&lock_
), defsym_defines_set_(),
156 { this->current_
= plugins_
.end(); }
160 // Returns true if the symbol name is used in the LHS of a defsym.
162 is_defsym_def(const char* sym_name
) const
164 return defsym_defines_set_
.find(sym_name
) != defsym_defines_set_
.end();
167 // Add a plugin library.
169 add_plugin(const char* filename
)
170 { this->plugins_
.push_back(new Plugin(filename
)); }
172 // Add an argument to the current plugin.
174 add_plugin_option(const char* opt
)
176 Plugin
* last
= this->plugins_
.back();
177 last
->add_option(opt
);
180 // Load all plugin libraries.
182 load_plugins(Layout
* layout
);
184 // Call the plugin claim-file handlers in turn to see if any claim the file.
186 claim_file(Input_file
* input_file
, off_t offset
, off_t filesize
,
189 // Get the object associated with the handle and check if it is an elf object.
190 // If it is not a Pluginobj, it is an elf object.
192 get_elf_object(const void* handle
);
194 // True if the claim_file handler of the plugins is being called.
196 in_claim_file_handler()
197 { return in_claim_file_handler_
; }
199 // Let the plugin manager save an archive for later rescanning.
200 // This takes ownership of the Archive pointer.
202 save_archive(Archive
*);
204 // Let the plugin manager save an input group for later rescanning.
205 // This takes ownership of the Input_group pointer.
207 save_input_group(Input_group
*);
209 // Call the all-symbols-read handlers.
211 all_symbols_read(Workqueue
* workqueue
, Task
* task
,
212 Input_objects
* input_objects
, Symbol_table
* symtab
,
213 Dirsearch
* dirpath
, Mapfile
* mapfile
,
214 Task_token
** last_blocker
);
216 // Tell the plugin manager that we've a new undefined symbol which
217 // may require rescanning.
219 new_undefined_symbol(Symbol
*);
221 // Run deferred layout.
223 layout_deferred_objects();
225 // Call the cleanup handlers.
229 // Register a claim-file handler.
231 set_claim_file_handler(ld_plugin_claim_file_handler handler
)
233 gold_assert(this->current_
!= plugins_
.end());
234 (*this->current_
)->set_claim_file_handler(handler
);
237 // Register an all-symbols-read handler.
239 set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler
)
241 gold_assert(this->current_
!= plugins_
.end());
242 (*this->current_
)->set_all_symbols_read_handler(handler
);
245 // Register a new_input handler.
247 set_new_input_handler(ld_plugin_new_input_handler handler
)
249 gold_assert(this->current_
!= plugins_
.end());
250 (*this->current_
)->set_new_input_handler(handler
);
253 // Register a claim-file handler.
255 set_cleanup_handler(ld_plugin_cleanup_handler handler
)
257 gold_assert(this->current_
!= plugins_
.end());
258 (*this->current_
)->set_cleanup_handler(handler
);
261 // Make a new Pluginobj object. This is called when the plugin calls
262 // the add_symbols API.
264 make_plugin_object(unsigned int handle
);
266 // Return the object associated with the given HANDLE.
268 object(unsigned int handle
) const
270 if (handle
>= this->objects_
.size())
272 return this->objects_
[handle
];
275 // Return TRUE if any input files have been claimed by a plugin
276 // and we are still in the initial input phase.
278 should_defer_layout() const
279 { return this->any_claimed_
&& !this->in_replacement_phase_
; }
281 // Add a regular object to the deferred layout list. These are
282 // objects whose layout has been deferred until after the
283 // replacement files have arrived.
285 add_deferred_layout_object(Relobj
* obj
)
286 { this->deferred_layout_objects_
.push_back(obj
); }
288 // Get input file information with an open (possibly re-opened)
291 get_input_file(unsigned int handle
, struct ld_plugin_input_file
* file
);
294 get_view(unsigned int handle
, const void **viewp
);
296 // Release an input file.
298 release_input_file(unsigned int handle
);
300 // Add a new input file.
302 add_input_file(const char* pathname
, bool is_lib
);
304 // Set the extra library path.
306 set_extra_library_path(const char* path
);
308 // Return TRUE if we are in the replacement phase.
310 in_replacement_phase() const
311 { return this->in_replacement_phase_
; }
314 input_objects() const
315 { return this->input_objects_
; }
319 { return this->symtab_
; }
323 { return this->layout_
; }
327 { return this->recorder_
; }
330 Plugin_manager(const Plugin_manager
&);
331 Plugin_manager
& operator=(const Plugin_manager
&);
333 // Plugin_rescan is a Task which calls the private rescan method.
334 friend class Plugin_rescan
;
336 // An archive or input group which may have to be rescanned if a
337 // plugin adds a new file.
344 Input_group
* input_group
;
347 Rescannable(Archive
* archive
)
349 { this->u
.archive
= archive
; }
351 Rescannable(Input_group
* input_group
)
353 { this->u
.input_group
= input_group
; }
356 typedef std::list
<Plugin
*> Plugin_list
;
357 typedef std::vector
<Object
*> Object_list
;
358 typedef std::vector
<Relobj
*> Deferred_layout_list
;
359 typedef std::vector
<Rescannable
> Rescannable_list
;
360 typedef std::vector
<Symbol
*> Undefined_symbol_list
;
362 // Rescan archives for undefined symbols.
366 // See whether the rescannable at index I defines SYM.
368 rescannable_defines(size_t i
, Symbol
* sym
);
370 // The list of plugin libraries.
371 Plugin_list plugins_
;
372 // A pointer to the current plugin. Used while loading plugins.
373 Plugin_list::iterator current_
;
375 // The list of plugin objects. The index of an item in this list
376 // serves as the "handle" that we pass to the plugins.
377 Object_list objects_
;
379 // The list of regular objects whose layout has been deferred.
380 Deferred_layout_list deferred_layout_objects_
;
382 // The file currently up for claim by the plugins.
383 Input_file
* input_file_
;
384 struct ld_plugin_input_file plugin_input_file_
;
386 // A list of archives and input groups being saved for possible
388 Rescannable_list rescannable_
;
390 // A list of undefined symbols found in added files.
391 Undefined_symbol_list undefined_symbols_
;
393 // Whether any input files have been claimed by a plugin.
396 // Set to true after the all symbols read event; indicates that we
397 // are processing replacement files whose symbols should replace the
398 // placeholder symbols from the Pluginobj objects.
399 bool in_replacement_phase_
;
401 // Whether any input files or libraries were added by a plugin.
404 // Set to true when the claim_file handler of a plugin is called.
405 bool in_claim_file_handler_
;
407 const General_options
& options_
;
408 Workqueue
* workqueue_
;
410 Input_objects
* input_objects_
;
411 Symbol_table
* symtab_
;
415 Task_token
* this_blocker_
;
417 // An extra directory to search for the libraries passed by
418 // add_input_library.
419 std::string extra_search_path_
;
421 Initialize_lock initialize_lock_
;
423 // Keep track of all symbols defined by defsym.
424 typedef Unordered_set
<std::string
> Defsym_defines_set
;
425 Defsym_defines_set defsym_defines_set_
;
427 // Class to record plugin actions.
428 Plugin_recorder
* recorder_
;
432 // An object file claimed by a plugin. This is an abstract base class.
433 // The implementation is the template class Sized_pluginobj.
435 class Pluginobj
: public Object
439 typedef std::vector
<Symbol
*> Symbols
;
441 Pluginobj(const std::string
& name
, Input_file
* input_file
, off_t offset
,
444 // Fill in the symbol resolution status for the given plugin symbols.
446 get_symbol_resolution_info(Symbol_table
* symtab
,
448 ld_plugin_symbol
* syms
,
451 // Store the incoming symbols from the plugin for later processing.
453 store_incoming_symbols(int nsyms
, const struct ld_plugin_symbol
* syms
)
455 this->nsyms_
= nsyms
;
459 // Return TRUE if the comdat group with key COMDAT_KEY from this object
462 include_comdat_group(std::string comdat_key
, Layout
* layout
);
464 // Return the filename.
467 { return this->input_file()->filename(); }
469 // Return the file descriptor.
472 { return this->input_file()->file().descriptor(); }
474 // Return the size of the file or archive member.
477 { return this->filesize_
; }
479 // Return the word size of the object file.
482 { gold_unreachable(); }
484 // Return TRUE if this is a big-endian object file.
486 is_big_endian() const
487 { gold_unreachable(); }
490 // Return TRUE if this is an object claimed by a plugin.
495 // The number of symbols provided by the plugin.
498 // The symbols provided by the plugin.
499 const struct ld_plugin_symbol
* syms_
;
501 // The entries in the symbol table for the external symbols.
505 // Size of the file (or archive member).
507 // Map a comdat key symbol to a boolean indicating whether the comdat
508 // group in this object with that key should be kept.
509 typedef Unordered_map
<std::string
, bool> Comdat_map
;
510 Comdat_map comdat_map_
;
513 // A plugin object, size-specific version.
515 template<int size
, bool big_endian
>
516 class Sized_pluginobj
: public Pluginobj
519 Sized_pluginobj(const std::string
& name
, Input_file
* input_file
,
520 off_t offset
, off_t filesize
);
524 do_read_symbols(Read_symbols_data
*);
526 // Lay out the input sections.
528 do_layout(Symbol_table
*, Layout
*, Read_symbols_data
*);
530 // Add the symbols to the symbol table.
532 do_add_symbols(Symbol_table
*, Read_symbols_data
*, Layout
*);
534 Archive::Should_include
535 do_should_include_member(Symbol_table
* symtab
, Layout
*, Read_symbols_data
*,
538 // Iterate over global symbols, calling a visitor class V for each.
540 do_for_all_global_symbols(Read_symbols_data
* sd
,
541 Library_base::Symbol_visitor_base
* v
);
543 // Iterate over local symbols, calling a visitor class V for each GOT offset
544 // associated with a local symbol.
546 do_for_all_local_got_entries(Got_offset_list::Visitor
* v
) const;
548 // Get the size of a section.
550 do_section_size(unsigned int shndx
);
552 // Get the name of a section.
554 do_section_name(unsigned int shndx
) const;
556 // Return a view of the contents of a section.
558 do_section_contents(unsigned int shndx
, section_size_type
* plen
,
561 // Return section flags.
563 do_section_flags(unsigned int shndx
);
565 // Return section entsize.
567 do_section_entsize(unsigned int shndx
);
569 // Return section address.
571 do_section_address(unsigned int shndx
);
573 // Return section type.
575 do_section_type(unsigned int shndx
);
577 // Return the section link field.
579 do_section_link(unsigned int shndx
);
581 // Return the section link field.
583 do_section_info(unsigned int shndx
);
585 // Return the section alignment.
587 do_section_addralign(unsigned int shndx
);
589 // Return the Xindex structure to use.
591 do_initialize_xindex();
593 // Get symbol counts.
595 do_get_global_symbol_counts(const Symbol_table
*, size_t*, size_t*) const;
597 // Get global symbols.
599 do_get_global_symbols() const;
601 // Add placeholder symbols from a claimed file.
603 add_symbols_from_plugin(int nsyms
, const ld_plugin_symbol
* syms
);
610 // This Task handles handles the "all symbols read" event hook.
611 // The plugin may add additional input files at this time, which must
612 // be queued for reading.
614 class Plugin_hook
: public Task
617 Plugin_hook(const General_options
& options
, Input_objects
* input_objects
,
618 Symbol_table
* symtab
, Layout
* /*layout*/, Dirsearch
* dirpath
,
619 Mapfile
* mapfile
, Task_token
* this_blocker
,
620 Task_token
* next_blocker
)
621 : options_(options
), input_objects_(input_objects
), symtab_(symtab
),
622 dirpath_(dirpath
), mapfile_(mapfile
),
623 this_blocker_(this_blocker
), next_blocker_(next_blocker
)
628 // The standard Task methods.
641 { return "Plugin_hook"; }
644 const General_options
& options_
;
645 Input_objects
* input_objects_
;
646 Symbol_table
* symtab_
;
649 Task_token
* this_blocker_
;
650 Task_token
* next_blocker_
;
653 } // End namespace gold.
655 #endif // !defined(GOLD_PLUGIN_H)