1 // plugin.h -- plugin manager for gold -*- C++ -*-
3 // Copyright 2008 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
)
63 // Load the library and call its entry point.
67 // Call the claim-file handler.
69 claim_file(struct ld_plugin_input_file
*plugin_input_file
);
71 // Call the all-symbols-read handler.
75 // Call the cleanup handler.
79 // Register a claim-file handler.
81 set_claim_file_handler(ld_plugin_claim_file_handler handler
)
82 { this->claim_file_handler_
= handler
; }
84 // Register an all-symbols-read handler.
86 set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler
)
87 { this->all_symbols_read_handler_
= handler
; }
89 // Register a claim-file handler.
91 set_cleanup_handler(ld_plugin_cleanup_handler handler
)
92 { this->cleanup_handler_
= handler
; }
96 add_option(const char *arg
)
98 this->args_
.push_back(arg
);
102 Plugin(const Plugin
&);
103 Plugin
& operator=(const Plugin
&);
105 // The shared library handle returned by dlopen.
107 // The argument string given to --plugin.
108 std::string filename_
;
109 // The list of argument string given to --plugin-opt.
110 std::vector
<std::string
> args_
;
111 // The plugin's event handlers.
112 ld_plugin_claim_file_handler claim_file_handler_
;
113 ld_plugin_all_symbols_read_handler all_symbols_read_handler_
;
114 ld_plugin_cleanup_handler cleanup_handler_
;
117 // A manager class for plugins.
122 Plugin_manager(const General_options
& options
)
123 : plugins_(), objects_(), deferred_layout_objects_(), input_file_(NULL
),
124 plugin_input_file_(), in_replacement_phase_(false), options_(options
),
125 workqueue_(NULL
), input_objects_(NULL
), symtab_(NULL
), layout_(NULL
),
126 dirpath_(NULL
), mapfile_(NULL
), this_blocker_(NULL
)
127 { this->current_
= plugins_
.end(); }
131 // Add a plugin library.
133 add_plugin(const char* filename
)
134 { this->plugins_
.push_back(new Plugin(filename
)); }
136 // Add an argument to the current plugin.
138 add_plugin_option(const char* opt
)
140 Plugin
* last
= this->plugins_
.back();
141 last
->add_option(opt
);
144 // Load all plugin libraries.
148 // Call the plugin claim-file handlers in turn to see if any claim the file.
150 claim_file(Input_file
*input_file
, off_t offset
, off_t filesize
);
152 // Call the all-symbols-read handlers.
154 all_symbols_read(Workqueue
* workqueue
, Input_objects
* input_objects
,
155 Symbol_table
* symtab
, Layout
* layout
, Dirsearch
* dirpath
,
156 Mapfile
* mapfile
, Task_token
** last_blocker
);
158 // Run deferred layout and call the cleanup handlers.
162 // Register a claim-file handler.
164 set_claim_file_handler(ld_plugin_claim_file_handler handler
)
166 gold_assert(this->current_
!= plugins_
.end());
167 (*this->current_
)->set_claim_file_handler(handler
);
170 // Register an all-symbols-read handler.
172 set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler
)
174 gold_assert(this->current_
!= plugins_
.end());
175 (*this->current_
)->set_all_symbols_read_handler(handler
);
178 // Register a claim-file handler.
180 set_cleanup_handler(ld_plugin_cleanup_handler handler
)
182 gold_assert(this->current_
!= plugins_
.end());
183 (*this->current_
)->set_cleanup_handler(handler
);
186 // Make a new Pluginobj object. This is called when the plugin calls
187 // the add_symbols API.
189 make_plugin_object(unsigned int handle
);
191 // Return the Pluginobj associated with the given HANDLE.
193 object(unsigned int handle
) const
195 if (handle
>= this->objects_
.size())
197 return this->objects_
[handle
];
200 // Return TRUE if any input files have been claimed by a plugin
201 // and we are still in the initial input phase.
203 should_defer_layout() const
204 { return !this->objects_
.empty() && !this->in_replacement_phase_
; }
206 // Add a regular object to the deferred layout list. These are
207 // objects whose layout has been deferred until after the
208 // replacement files have arrived.
210 add_deferred_layout_object(Relobj
* obj
)
211 { this->deferred_layout_objects_
.push_back(obj
); }
213 // Add a new input file.
215 add_input_file(char *pathname
);
217 // Return TRUE if we are in the replacement phase.
219 in_replacement_phase() const
220 { return this->in_replacement_phase_
; }
223 Plugin_manager(const Plugin_manager
&);
224 Plugin_manager
& operator=(const Plugin_manager
&);
226 typedef std::list
<Plugin
*> Plugin_list
;
227 typedef std::vector
<Pluginobj
*> Object_list
;
228 typedef std::vector
<Relobj
*> Deferred_layout_list
;
230 // The list of plugin libraries.
231 Plugin_list plugins_
;
232 // A pointer to the current plugin. Used while loading plugins.
233 Plugin_list::iterator current_
;
235 // The list of plugin objects. The index of an item in this list
236 // serves as the "handle" that we pass to the plugins.
237 Object_list objects_
;
239 // The list of regular objects whose layout has been deferred.
240 Deferred_layout_list deferred_layout_objects_
;
242 // The file currently up for claim by the plugins.
243 Input_file
* input_file_
;
244 struct ld_plugin_input_file plugin_input_file_
;
246 // TRUE after the all symbols read event; indicates that we are
247 // processing replacement files whose symbols should replace the
248 // placeholder symbols from the Pluginobj objects.
249 bool in_replacement_phase_
;
251 const General_options
& options_
;
252 Workqueue
* workqueue_
;
253 Input_objects
* input_objects_
;
254 Symbol_table
* symtab_
;
258 Task_token
* this_blocker_
;
262 // An object file claimed by a plugin. This is an abstract base class.
263 // The implementation is the template class Sized_pluginobj.
265 class Pluginobj
: public Object
269 typedef std::vector
<Symbol
*> Symbols
;
271 Pluginobj(const std::string
& name
, Input_file
* input_file
, off_t offset
);
273 // Fill in the symbol resolution status for the given plugin symbols.
275 get_symbol_resolution_info(int nsyms
, ld_plugin_symbol
* syms
) const;
277 // Add symbol information to the global symbol table.
279 add_symbols(Symbol_table
* symtab
, Layout
* layout
)
280 { this->do_add_symbols(symtab
, layout
); }
282 // Store the incoming symbols from the plugin for later processing.
284 store_incoming_symbols(int nsyms
, const struct ld_plugin_symbol
* syms
)
286 this->nsyms_
= nsyms
;
290 // Return TRUE if the comdat group with key COMDAT_KEY from this object
293 include_comdat_group(std::string comdat_key
, Layout
* layout
);
296 // Return TRUE if this is an object claimed by a plugin.
301 // Add symbol information to the global symbol table--implemented by
304 do_add_symbols(Symbol_table
*, Layout
*) = 0;
306 // The number of symbols provided by the plugin.
309 // The symbols provided by the plugin.
310 const struct ld_plugin_symbol
* syms_
;
312 // The entries in the symbol table for the external symbols.
316 // Map a comdat key symbol to a boolean indicating whether the comdat
317 // group in this object with that key should be kept.
318 typedef Unordered_map
<std::string
, bool> Comdat_map
;
319 Comdat_map comdat_map_
;
322 // A plugin object, size-specific version.
324 template<int size
, bool big_endian
>
325 class Sized_pluginobj
: public Pluginobj
328 Sized_pluginobj(const std::string
& name
, Input_file
* input_file
,
333 do_read_symbols(Read_symbols_data
*);
335 // Lay out the input sections.
337 do_layout(Symbol_table
*, Layout
*, Read_symbols_data
*);
339 // Add the symbols to the symbol table.
341 do_add_symbols(Symbol_table
*, Read_symbols_data
*);
344 do_add_symbols(Symbol_table
*, Layout
*);
346 // Get the size of a section.
348 do_section_size(unsigned int shndx
);
350 // Get the name of a section.
352 do_section_name(unsigned int shndx
);
354 // Return a view of the contents of a section.
356 do_section_contents(unsigned int shndx
);
358 // Return section flags.
360 do_section_flags(unsigned int shndx
);
362 // Return section address.
364 do_section_address(unsigned int shndx
);
366 // Return section type.
368 do_section_type(unsigned int shndx
);
370 // Return the section link field.
372 do_section_link(unsigned int shndx
);
374 // Return the section link field.
376 do_section_info(unsigned int shndx
);
378 // Return the section alignment.
380 do_section_addralign(unsigned int shndx
);
382 // Return the Xindex structure to use.
384 do_initialize_xindex();
386 // Get symbol counts.
388 do_get_global_symbol_counts(const Symbol_table
*, size_t*, size_t*) const;
390 // Add placeholder symbols from a claimed file.
392 add_symbols_from_plugin(int nsyms
, const ld_plugin_symbol
* syms
);
399 // This Task handles adding the symbols to the symbol table. These
400 // tasks must be run in the same order as the arguments appear on the
403 class Add_plugin_symbols
: public Task
406 // THIS_BLOCKER is used to prevent this task from running before the
407 // one for the previous input file. NEXT_BLOCKER is used to prevent
408 // the next task from running.
409 Add_plugin_symbols(Symbol_table
* symtab
,
412 Task_token
* this_blocker
,
413 Task_token
* next_blocker
)
414 : symtab_(symtab
), layout_(layout
), obj_(obj
),
415 this_blocker_(this_blocker
), next_blocker_(next_blocker
)
418 ~Add_plugin_symbols();
420 // The standard Task methods.
433 { return "Add_plugin_symbols " + this->obj_
->name(); }
436 Symbol_table
* symtab_
;
439 Task_token
* this_blocker_
;
440 Task_token
* next_blocker_
;
443 // This Task handles handles the "all symbols read" event hook.
444 // The plugin may add additional input files at this time, which must
445 // be queued for reading.
447 class Plugin_hook
: public Task
450 Plugin_hook(const General_options
& options
, Input_objects
* input_objects
,
451 Symbol_table
* symtab
, Layout
* layout
, Dirsearch
* dirpath
,
452 Mapfile
* mapfile
, Task_token
* this_blocker
,
453 Task_token
* next_blocker
)
454 : options_(options
), input_objects_(input_objects
), symtab_(symtab
),
455 layout_(layout
), dirpath_(dirpath
), mapfile_(mapfile
),
456 this_blocker_(this_blocker
), next_blocker_(next_blocker
)
461 // The standard Task methods.
474 { return "Plugin_hook"; }
477 const General_options
& options_
;
478 Input_objects
* input_objects_
;
479 Symbol_table
* symtab_
;
483 Task_token
* this_blocker_
;
484 Task_token
* next_blocker_
;
487 } // End namespace gold.
489 #endif // !defined(GOLD_PLUGIN_H)