1 // plugin.h -- 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.
30 #include "plugin-api.h"
31 #include "workqueue.h"
36 class General_options;
46 // This class represents a single plugin library.
51 Plugin(const char* filename)
55 claim_file_handler_(NULL),
56 all_symbols_read_handler_(NULL),
57 cleanup_handler_(NULL),
64 // Load the library and call its entry point.
68 // Call the claim-file handler.
70 claim_file(struct ld_plugin_input_file *plugin_input_file);
72 // Call the all-symbols-read handler.
76 // Call the cleanup handler.
80 // Register a claim-file handler.
82 set_claim_file_handler(ld_plugin_claim_file_handler handler)
83 { this->claim_file_handler_ = handler; }
85 // Register an all-symbols-read handler.
87 set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler)
88 { this->all_symbols_read_handler_ = handler; }
90 // Register a claim-file handler.
92 set_cleanup_handler(ld_plugin_cleanup_handler handler)
93 { this->cleanup_handler_ = handler; }
97 add_option(const char *arg)
99 this->args_.push_back(arg);
103 Plugin(const Plugin&);
104 Plugin& operator=(const Plugin&);
106 // The shared library handle returned by dlopen.
108 // The argument string given to --plugin.
109 std::string filename_;
110 // The list of argument string given to --plugin-opt.
111 std::vector<std::string> args_;
112 // The plugin's event handlers.
113 ld_plugin_claim_file_handler claim_file_handler_;
114 ld_plugin_all_symbols_read_handler all_symbols_read_handler_;
115 ld_plugin_cleanup_handler cleanup_handler_;
116 // TRUE if the cleanup handlers have been called.
120 // A manager class for plugins.
125 Plugin_manager(const General_options& options)
126 : plugins_(), objects_(), deferred_layout_objects_(), input_file_(NULL),
127 plugin_input_file_(), in_replacement_phase_(false),
128 options_(options), workqueue_(NULL), task_(NULL), input_objects_(NULL),
129 symtab_(NULL), layout_(NULL), dirpath_(NULL), mapfile_(NULL),
131 { this->current_ = plugins_.end(); }
135 // Add a plugin library.
137 add_plugin(const char* filename)
138 { this->plugins_.push_back(new Plugin(filename)); }
140 // Add an argument to the current plugin.
142 add_plugin_option(const char* opt)
144 Plugin* last = this->plugins_.back();
145 last->add_option(opt);
148 // Load all plugin libraries.
152 // Call the plugin claim-file handlers in turn to see if any claim the file.
154 claim_file(Input_file *input_file, off_t offset, off_t filesize);
156 // Call the all-symbols-read handlers.
158 all_symbols_read(Workqueue* workqueue, Task* task,
159 Input_objects* input_objects, Symbol_table* symtab,
160 Layout* layout, Dirsearch* dirpath, Mapfile* mapfile,
161 Task_token** last_blocker);
163 // Run deferred layout.
165 layout_deferred_objects();
167 // Call the cleanup handlers.
171 // Register a claim-file handler.
173 set_claim_file_handler(ld_plugin_claim_file_handler handler)
175 gold_assert(this->current_ != plugins_.end());
176 (*this->current_)->set_claim_file_handler(handler);
179 // Register an all-symbols-read handler.
181 set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler)
183 gold_assert(this->current_ != plugins_.end());
184 (*this->current_)->set_all_symbols_read_handler(handler);
187 // Register a claim-file handler.
189 set_cleanup_handler(ld_plugin_cleanup_handler handler)
191 gold_assert(this->current_ != plugins_.end());
192 (*this->current_)->set_cleanup_handler(handler);
195 // Make a new Pluginobj object. This is called when the plugin calls
196 // the add_symbols API.
198 make_plugin_object(unsigned int handle);
200 // Return the Pluginobj associated with the given HANDLE.
202 object(unsigned int handle) const
204 if (handle >= this->objects_.size())
206 return this->objects_[handle];
209 // Return TRUE if any input files have been claimed by a plugin
210 // and we are still in the initial input phase.
212 should_defer_layout() const
213 { return !this->objects_.empty() && !this->in_replacement_phase_; }
215 // Add a regular object to the deferred layout list. These are
216 // objects whose layout has been deferred until after the
217 // replacement files have arrived.
219 add_deferred_layout_object(Relobj* obj)
220 { this->deferred_layout_objects_.push_back(obj); }
222 // Get input file information with an open (possibly re-opened)
225 get_input_file(unsigned int handle, struct ld_plugin_input_file *file);
227 // Release an input file.
229 release_input_file(unsigned int handle);
231 // Add a new input file.
233 add_input_file(char *pathname, bool is_lib);
235 // Return TRUE if we are in the replacement phase.
237 in_replacement_phase() const
238 { return this->in_replacement_phase_; }
241 Plugin_manager(const Plugin_manager&);
242 Plugin_manager& operator=(const Plugin_manager&);
244 typedef std::list<Plugin*> Plugin_list;
245 typedef std::vector<Pluginobj*> Object_list;
246 typedef std::vector<Relobj*> Deferred_layout_list;
248 // The list of plugin libraries.
249 Plugin_list plugins_;
250 // A pointer to the current plugin. Used while loading plugins.
251 Plugin_list::iterator current_;
253 // The list of plugin objects. The index of an item in this list
254 // serves as the "handle" that we pass to the plugins.
255 Object_list objects_;
257 // The list of regular objects whose layout has been deferred.
258 Deferred_layout_list deferred_layout_objects_;
260 // The file currently up for claim by the plugins.
261 Input_file* input_file_;
262 struct ld_plugin_input_file plugin_input_file_;
264 // TRUE after the all symbols read event; indicates that we are
265 // processing replacement files whose symbols should replace the
266 // placeholder symbols from the Pluginobj objects.
267 bool in_replacement_phase_;
269 const General_options& options_;
270 Workqueue* workqueue_;
272 Input_objects* input_objects_;
273 Symbol_table* symtab_;
277 Task_token* this_blocker_;
281 // An object file claimed by a plugin. This is an abstract base class.
282 // The implementation is the template class Sized_pluginobj.
284 class Pluginobj : public Object
288 typedef std::vector<Symbol*> Symbols;
290 Pluginobj(const std::string& name, Input_file* input_file, off_t offset,
293 // Fill in the symbol resolution status for the given plugin symbols.
295 get_symbol_resolution_info(int nsyms, ld_plugin_symbol* syms) const;
297 // Store the incoming symbols from the plugin for later processing.
299 store_incoming_symbols(int nsyms, const struct ld_plugin_symbol* syms)
301 this->nsyms_ = nsyms;
305 // Return TRUE if the comdat group with key COMDAT_KEY from this object
308 include_comdat_group(std::string comdat_key, Layout* layout);
310 // Return the filename.
313 { return this->input_file()->filename(); }
315 // Return the file descriptor.
318 { return this->input_file()->file().descriptor(); }
320 // Return the size of the file or archive member.
323 { return this->filesize_; }
326 // Return TRUE if this is an object claimed by a plugin.
331 // The number of symbols provided by the plugin.
334 // The symbols provided by the plugin.
335 const struct ld_plugin_symbol* syms_;
337 // The entries in the symbol table for the external symbols.
341 // Size of the file (or archive member).
343 // Map a comdat key symbol to a boolean indicating whether the comdat
344 // group in this object with that key should be kept.
345 typedef Unordered_map<std::string, bool> Comdat_map;
346 Comdat_map comdat_map_;
349 // A plugin object, size-specific version.
351 template<int size, bool big_endian>
352 class Sized_pluginobj : public Pluginobj
355 Sized_pluginobj(const std::string& name, Input_file* input_file,
356 off_t offset, off_t filesize);
360 do_read_symbols(Read_symbols_data*);
362 // Lay out the input sections.
364 do_layout(Symbol_table*, Layout*, Read_symbols_data*);
366 // Add the symbols to the symbol table.
368 do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*);
370 // Get the size of a section.
372 do_section_size(unsigned int shndx);
374 // Get the name of a section.
376 do_section_name(unsigned int shndx);
378 // Return a view of the contents of a section.
380 do_section_contents(unsigned int shndx);
382 // Return section flags.
384 do_section_flags(unsigned int shndx);
386 // Return section entsize.
388 do_section_entsize(unsigned int shndx);
390 // Return section address.
392 do_section_address(unsigned int shndx);
394 // Return section type.
396 do_section_type(unsigned int shndx);
398 // Return the section link field.
400 do_section_link(unsigned int shndx);
402 // Return the section link field.
404 do_section_info(unsigned int shndx);
406 // Return the section alignment.
408 do_section_addralign(unsigned int shndx);
410 // Return the Xindex structure to use.
412 do_initialize_xindex();
414 // Get symbol counts.
416 do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const;
418 // Get global symbols.
420 do_get_global_symbols() const;
422 // Add placeholder symbols from a claimed file.
424 add_symbols_from_plugin(int nsyms, const ld_plugin_symbol* syms);
431 // This Task handles handles the "all symbols read" event hook.
432 // The plugin may add additional input files at this time, which must
433 // be queued for reading.
435 class Plugin_hook : public Task
438 Plugin_hook(const General_options& options, Input_objects* input_objects,
439 Symbol_table* symtab, Layout* layout, Dirsearch* dirpath,
440 Mapfile* mapfile, Task_token* this_blocker,
441 Task_token* next_blocker)
442 : options_(options), input_objects_(input_objects), symtab_(symtab),
443 layout_(layout), dirpath_(dirpath), mapfile_(mapfile),
444 this_blocker_(this_blocker), next_blocker_(next_blocker)
449 // The standard Task methods.
462 { return "Plugin_hook"; }
465 const General_options& options_;
466 Input_objects* input_objects_;
467 Symbol_table* symtab_;
471 Task_token* this_blocker_;
472 Task_token* next_blocker_;
475 } // End namespace gold.
477 #endif // !defined(GOLD_PLUGIN_H)