Check if a bfd is NULL before accessing its flags field.
[external/binutils.git] / ld / plugin.c
1 /* Plugin control for the GNU linker.
2    Copyright 2010 Free Software Foundation, Inc.
3
4    This file is part of the GNU Binutils.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19    MA 02110-1301, USA.  */
20
21 #include "sysdep.h"
22 #include "libiberty.h"
23 #include "bfd.h"
24 #include "bfdlink.h"
25 #include "bfdver.h"
26 #include "ld.h"
27 #include "ldmain.h"
28 #include "ldmisc.h"
29 #include "ldexp.h"
30 #include "ldlang.h"
31 #include "ldfile.h"
32 #include "plugin.h"
33 #include "plugin-api.h"
34 #include "elf-bfd.h"
35 #if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
36 #include <Windows.h>
37 #endif
38
39 /* The suffix to append to the name of the real (claimed) object file
40    when generating a dummy BFD to hold the IR symbols sent from the
41    plugin.  */
42 #define IRONLY_SUFFIX           ".ironly\004"
43
44 /* This is sizeof an array of chars, not sizeof a const char *.  We
45    also have to avoid inadvertently counting the trailing NUL.  */
46 #define IRONLY_SUFFIX_LEN       (sizeof (IRONLY_SUFFIX) - 1)
47
48 /* Stores a single argument passed to a plugin.  */
49 typedef struct plugin_arg
50 {
51   struct plugin_arg *next;
52   const char *arg;
53 } plugin_arg_t;
54
55 /* Holds all details of a single plugin.  */
56 typedef struct plugin
57 {
58   /* Next on the list of plugins, or NULL at end of chain.  */
59   struct plugin *next;
60   /* The argument string given to --plugin.  */
61   const char *name;
62   /* The shared library handle returned by dlopen.  */
63   void *dlhandle;
64   /* The list of argument string given to --plugin-opt.  */
65   plugin_arg_t *args;
66   /* Number of args in the list, for convenience.  */
67   size_t n_args;
68   /* The plugin's event handlers.  */
69   ld_plugin_claim_file_handler claim_file_handler;
70   ld_plugin_all_symbols_read_handler all_symbols_read_handler;
71   ld_plugin_cleanup_handler cleanup_handler;
72   /* TRUE if the cleanup handlers have been called.  */
73   bfd_boolean cleanup_done;
74 } plugin_t;
75
76 /* The master list of all plugins.  */
77 static plugin_t *plugins_list = NULL;
78
79 /* We keep a tail pointer for easy linking on the end.  */
80 static plugin_t **plugins_tail_chain_ptr = &plugins_list;
81
82 /* The last plugin added to the list, for receiving args.  */
83 static plugin_t *last_plugin = NULL;
84
85 /* The tail of the arg chain of the last plugin added to the list.  */
86 static plugin_arg_t **last_plugin_args_tail_chain_ptr = NULL;
87
88 /* The plugin which is currently having a callback executed.  */
89 static plugin_t *called_plugin = NULL;
90
91 /* Last plugin to cause an error, if any.  */
92 static const char *error_plugin = NULL;
93
94 /* A hash table that records symbols referenced by non-IR files.  Used
95    at get_symbols time to determine whether any prevailing defs from
96    IR files are referenced only from other IR files, so tthat we can
97    we can distinguish the LDPR_PREVAILING_DEF and LDPR_PREVAILING_DEF_IRONLY
98    cases when establishing symbol resolutions.  */
99 static struct bfd_hash_table *non_ironly_hash = NULL;
100
101 /* Set at all symbols read time, to avoid recursively offering the plugin
102    its own newly-added input files and libs to claim.  */
103 static bfd_boolean no_more_claiming = FALSE;
104
105 /* If the --allow-multiple-definition command-line option is active, we
106    have to disable it so that BFD always calls our hook, and simulate the
107    effect (when not resolving IR vs. real symbols) ourselves by ensuring
108    TRUE is returned from the hook.  */
109 static bfd_boolean plugin_cached_allow_multiple_defs = FALSE;
110
111 /* Call 'cleanup' hook for all plugins at exit.  */
112 static void plugin_call_cleanup (void);
113
114 /* List of tags to set in the constant leading part of the tv array. */
115 static const enum ld_plugin_tag tv_header_tags[] =
116 {
117   LDPT_MESSAGE,
118   LDPT_API_VERSION,
119   LDPT_GNU_LD_VERSION,
120   LDPT_LINKER_OUTPUT,
121   LDPT_OUTPUT_NAME,
122   LDPT_REGISTER_CLAIM_FILE_HOOK,
123   LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK,
124   LDPT_REGISTER_CLEANUP_HOOK,
125   LDPT_ADD_SYMBOLS,
126   LDPT_GET_INPUT_FILE,
127   LDPT_RELEASE_INPUT_FILE,
128   LDPT_GET_SYMBOLS,
129   LDPT_ADD_INPUT_FILE,
130   LDPT_ADD_INPUT_LIBRARY,
131   LDPT_SET_EXTRA_LIBRARY_PATH
132 };
133
134 /* How many entries in the constant leading part of the tv array.  */
135 static const size_t tv_header_size = ARRAY_SIZE (tv_header_tags);
136
137 #if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
138
139 #define RTLD_NOW 0      /* Dummy value.  */
140
141 static void *
142 dlopen (const char *file, int mode ATTRIBUTE_UNUSED)
143 {
144   return LoadLibrary (file);
145 }
146
147 static void *
148 dlsym (void *handle, const char *name)
149 {
150   return GetProcAddress (handle, name);
151 }
152
153 static int
154 dlclose (void *handle)
155 {
156   FreeLibrary (handle);
157   return 0;
158 }
159
160 #endif /* !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)  */
161
162 /* Helper function for exiting with error status.  */
163 static int
164 set_plugin_error (const char *plugin)
165 {
166   error_plugin = plugin;
167   return -1;
168 }
169
170 /* Test if an error occurred.  */
171 static bfd_boolean
172 plugin_error_p (void)
173 {
174   return error_plugin != NULL;
175 }
176
177 /* Return name of plugin which caused an error if any.  */
178 const char *
179 plugin_error_plugin (void)
180 {
181   return error_plugin ? error_plugin : _("<no plugin>");
182 }
183
184 /* Handle -plugin arg: find and load plugin, or return error.  */
185 int
186 plugin_opt_plugin (const char *plugin)
187 {
188   plugin_t *newplug;
189
190   newplug = xmalloc (sizeof *newplug);
191   memset (newplug, 0, sizeof *newplug);
192   newplug->name = plugin;
193   newplug->dlhandle = dlopen (plugin, RTLD_NOW);
194   if (!newplug->dlhandle)
195     return set_plugin_error (plugin);
196
197   /* Chain on end, so when we run list it is in command-line order.  */
198   *plugins_tail_chain_ptr = newplug;
199   plugins_tail_chain_ptr = &newplug->next;
200
201   /* Record it as current plugin for receiving args.  */
202   last_plugin = newplug;
203   last_plugin_args_tail_chain_ptr = &newplug->args;
204   return 0;
205 }
206
207 /* Accumulate option arguments for last-loaded plugin, or return
208    error if none.  */
209 int
210 plugin_opt_plugin_arg (const char *arg)
211 {
212   plugin_arg_t *newarg;
213
214   if (!last_plugin)
215     return set_plugin_error (_("<no plugin>"));
216
217   newarg = xmalloc (sizeof *newarg);
218   newarg->arg = arg;
219   newarg->next = NULL;
220
221   /* Chain on end to preserve command-line order.  */
222   *last_plugin_args_tail_chain_ptr = newarg;
223   last_plugin_args_tail_chain_ptr = &newarg->next;
224   last_plugin->n_args++;
225   return 0;
226 }
227
228 /* Create a dummy BFD.  */
229 bfd *
230 plugin_get_ir_dummy_bfd (const char *name, bfd *srctemplate)
231 {
232   asection *sec;
233   bfd *abfd;
234
235   bfd_use_reserved_id = 1;
236   abfd = bfd_create (concat (name, IRONLY_SUFFIX, (const char *)NULL),
237                      srctemplate);
238   bfd_set_arch_info (abfd, bfd_get_arch_info (srctemplate));
239   bfd_make_writable (abfd);
240   /* Create a minimal set of sections to own the symbols.  */
241   sec = bfd_make_section_old_way (abfd, ".text");
242   bfd_set_section_flags (abfd, sec,
243                          (SEC_CODE | SEC_HAS_CONTENTS | SEC_READONLY
244                           | SEC_ALLOC | SEC_LOAD | SEC_KEEP));
245   sec->output_section = sec;
246   sec->output_offset = 0;
247   return abfd;
248 }
249
250 /* Check if the BFD passed in is an IR dummy object file.  */
251 static bfd_boolean
252 is_ir_dummy_bfd (const bfd *abfd)
253 {
254   size_t namlen;
255
256   if (abfd == NULL)
257     return FALSE;
258   namlen = strlen (abfd->filename);
259   if (namlen < IRONLY_SUFFIX_LEN)
260     return FALSE;
261   return !strcmp (abfd->filename + namlen - IRONLY_SUFFIX_LEN, IRONLY_SUFFIX);
262 }
263
264 /* Helpers to convert between BFD and GOLD symbol formats.  */
265 static enum ld_plugin_status
266 asymbol_from_plugin_symbol (bfd *abfd, asymbol *asym,
267                             const struct ld_plugin_symbol *ldsym)
268 {
269   flagword flags = BSF_NO_FLAGS;
270   struct bfd_section *section;
271
272   asym->the_bfd = abfd;
273   asym->name = (ldsym->version
274                 ? concat (ldsym->name, "@", ldsym->version, NULL)
275                 : ldsym->name);
276   asym->value = 0;
277   switch (ldsym->def)
278     {
279     case LDPK_WEAKDEF:
280       flags = BSF_WEAK;
281       /* FALLTHRU */
282     case LDPK_DEF:
283       flags |= BSF_GLOBAL;
284       section = bfd_get_section_by_name (abfd, ".text");
285       break;
286
287     case LDPK_WEAKUNDEF:
288       flags = BSF_WEAK;
289       /* FALLTHRU */
290     case LDPK_UNDEF:
291       section = bfd_und_section_ptr;
292       break;
293
294     case LDPK_COMMON:
295       flags = BSF_GLOBAL;
296       section = bfd_com_section_ptr;
297       asym->value = ldsym->size;
298       /* For ELF targets, set alignment of common symbol to 1.  */
299       if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
300         ((elf_symbol_type *) asym)->internal_elf_sym.st_value = 1;
301       break;
302
303     default:
304       return LDPS_ERR;
305     }
306   asym->flags = flags;
307   asym->section = section;
308
309   /* Visibility only applies on ELF targets.  */
310   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
311     {
312       elf_symbol_type *elfsym = elf_symbol_from (abfd, asym);
313       unsigned char visibility;
314
315       if (!elfsym)
316         einfo (_("%P%F: %s: non-ELF symbol in ELF BFD!\n"), asym->name);
317       switch (ldsym->visibility)
318         {
319         default:
320           einfo (_("%P%F: unknown ELF symbol visibility: %d!\n"),
321                  ldsym->visibility);
322         case LDPV_DEFAULT:
323           visibility = STV_DEFAULT;
324           break;
325         case LDPV_PROTECTED:
326           visibility = STV_PROTECTED;
327           break;
328         case LDPV_INTERNAL:
329           visibility = STV_INTERNAL;
330           break;
331         case LDPV_HIDDEN:
332           visibility = STV_HIDDEN;
333           break;
334         }
335       elfsym->internal_elf_sym.st_other
336         = (visibility | (elfsym->internal_elf_sym.st_other
337                          & ~ELF_ST_VISIBILITY (-1)));
338     }
339
340   return LDPS_OK;
341 }
342
343 /* Register a claim-file handler.  */
344 static enum ld_plugin_status
345 register_claim_file (ld_plugin_claim_file_handler handler)
346 {
347   ASSERT (called_plugin);
348   called_plugin->claim_file_handler = handler;
349   return LDPS_OK;
350 }
351
352 /* Register an all-symbols-read handler.  */
353 static enum ld_plugin_status
354 register_all_symbols_read (ld_plugin_all_symbols_read_handler handler)
355 {
356   ASSERT (called_plugin);
357   called_plugin->all_symbols_read_handler = handler;
358   return LDPS_OK;
359 }
360
361 /* Register a cleanup handler.  */
362 static enum ld_plugin_status
363 register_cleanup (ld_plugin_cleanup_handler handler)
364 {
365   ASSERT (called_plugin);
366   called_plugin->cleanup_handler = handler;
367   return LDPS_OK;
368 }
369
370 /* Add symbols from a plugin-claimed input file.  */
371 static enum ld_plugin_status
372 add_symbols (void *handle, int nsyms, const struct ld_plugin_symbol *syms)
373 {
374   asymbol **symptrs;
375   bfd *abfd = handle;
376   int n;
377   ASSERT (called_plugin);
378   symptrs = xmalloc (nsyms * sizeof *symptrs);
379   for (n = 0; n < nsyms; n++)
380     {
381       enum ld_plugin_status rv;
382       asymbol *bfdsym = bfd_make_empty_symbol (abfd);
383       symptrs[n] = bfdsym;
384       rv = asymbol_from_plugin_symbol (abfd, bfdsym, syms + n);
385       if (rv != LDPS_OK)
386         return rv;
387     }
388   bfd_set_symtab (abfd, symptrs, nsyms);
389   return LDPS_OK;
390 }
391
392 /* Get the input file information with an open (possibly re-opened)
393    file descriptor.  */
394 static enum ld_plugin_status
395 get_input_file (const void *handle, struct ld_plugin_input_file *file)
396 {
397   ASSERT (called_plugin);
398   handle = handle;
399   file = file;
400   return LDPS_ERR;
401 }
402
403 /* Release the input file.  */
404 static enum ld_plugin_status
405 release_input_file (const void *handle)
406 {
407   ASSERT (called_plugin);
408   handle = handle;
409   return LDPS_ERR;
410 }
411
412 /* Return TRUE if a defined symbol might be reachable from outside the
413    universe of claimed objects.  */
414 static inline bfd_boolean
415 is_visible_from_outside (struct ld_plugin_symbol *lsym, asection *section,
416                          struct bfd_link_hash_entry *blhe)
417 {
418   /* Section's owner may be NULL if it is the absolute
419      section, fortunately is_ir_dummy_bfd handles that.  */
420   if (!is_ir_dummy_bfd (section->owner))
421     return TRUE;
422   if (link_info.relocatable)
423     return TRUE;
424   if (link_info.export_dynamic || link_info.shared)
425     {
426       /* Only ELF symbols really have visibility.  */
427       if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour)
428         {
429           struct elf_link_hash_entry *el = (struct elf_link_hash_entry *)blhe;
430           int vis = ELF_ST_VISIBILITY (el->other);
431           return vis == STV_DEFAULT || vis == STV_PROTECTED;
432         }
433       /* On non-ELF targets, we can safely make inferences by considering
434          what visibility the plugin would have liked to apply when it first
435          sent us the symbol.  During ELF symbol processing, visibility only
436          ever becomes more restrictive, not less, when symbols are merged,
437          so this is a conservative estimate; it may give false positives,
438          declaring something visible from outside when it in fact would
439          not have been, but this will only lead to missed optimisation
440          opportunities during LTRANS at worst; it will not give false
441          negatives, which can lead to the disastrous conclusion that the
442          related symbol is IRONLY.  (See GCC PR46319 for an example.)  */
443       return (lsym->visibility == LDPV_DEFAULT
444               || lsym->visibility == LDPV_PROTECTED);
445     }
446   return FALSE;
447 }
448
449 /* Get the symbol resolution info for a plugin-claimed input file.  */
450 static enum ld_plugin_status
451 get_symbols (const void *handle, int nsyms, struct ld_plugin_symbol *syms)
452 {
453   const bfd *abfd = handle;
454   int n;
455   ASSERT (called_plugin);
456   for (n = 0; n < nsyms; n++)
457     {
458       struct bfd_link_hash_entry *blhe;
459       bfd_boolean ironly;
460       asection *owner_sec;
461
462       blhe = bfd_link_hash_lookup (link_info.hash, syms[n].name,
463                                    FALSE, FALSE, TRUE);
464       if (!blhe)
465         {
466           syms[n].resolution = LDPR_UNKNOWN;
467           continue;
468         }
469
470       /* Determine resolution from blhe type and symbol's original type.  */
471       if (blhe->type == bfd_link_hash_undefined
472           || blhe->type == bfd_link_hash_undefweak)
473         {
474           syms[n].resolution = LDPR_UNDEF;
475           continue;
476         }
477       if (blhe->type != bfd_link_hash_defined
478           && blhe->type != bfd_link_hash_defweak
479           && blhe->type != bfd_link_hash_common)
480         {
481           /* We should not have a new, indirect or warning symbol here.  */
482           einfo ("%P%F: %s: plugin symbol table corrupt (sym type %d)\n",
483                  called_plugin->name, blhe->type);
484         }
485
486       /* Find out which section owns the symbol.  Since it's not undef,
487          it must have an owner; if it's not a common symbol, both defs
488          and weakdefs keep it in the same place. */
489       owner_sec = (blhe->type == bfd_link_hash_common)
490         ? blhe->u.c.p->section
491         : blhe->u.def.section;
492
493       /* We need to know if the sym is referenced from non-IR files.  Or
494          even potentially-referenced, perhaps in a future final link if
495          this is a partial one, perhaps dynamically at load-time if the
496          symbol is externally visible.  */
497       ironly = !is_visible_from_outside (&syms[n], owner_sec, blhe)
498         && !bfd_hash_lookup (non_ironly_hash, syms[n].name, FALSE, FALSE);
499
500       /* If it was originally undefined or common, then it has been
501          resolved; determine how.  */
502       if (syms[n].def == LDPK_UNDEF
503           || syms[n].def == LDPK_WEAKUNDEF
504           || syms[n].def == LDPK_COMMON)
505         {
506           if (owner_sec->owner == link_info.output_bfd)
507             syms[n].resolution = LDPR_RESOLVED_EXEC;
508           else if (owner_sec->owner == abfd)
509             syms[n].resolution = (ironly
510                                   ? LDPR_PREVAILING_DEF_IRONLY
511                                   : LDPR_PREVAILING_DEF);
512           else if (is_ir_dummy_bfd (owner_sec->owner))
513             syms[n].resolution = LDPR_RESOLVED_IR;
514           else if (owner_sec->owner != NULL
515                    && (owner_sec->owner->flags & DYNAMIC) != 0)
516             syms[n].resolution =  LDPR_RESOLVED_DYN;
517           else
518             syms[n].resolution = LDPR_RESOLVED_EXEC;
519           continue;
520         }
521
522       /* Was originally def, or weakdef.  Does it prevail?  If the
523          owner is the original dummy bfd that supplied it, then this
524          is the definition that has prevailed.  */
525       if (owner_sec->owner == link_info.output_bfd)
526         syms[n].resolution = LDPR_PREEMPTED_REG;
527       else if (owner_sec->owner == abfd)
528         {
529           syms[n].resolution = (ironly
530                                 ? LDPR_PREVAILING_DEF_IRONLY
531                                 : LDPR_PREVAILING_DEF);
532           continue;
533         }
534
535       /* Was originally def, weakdef, or common, but has been pre-empted.  */
536       syms[n].resolution = is_ir_dummy_bfd (owner_sec->owner)
537         ? LDPR_PREEMPTED_IR
538         : LDPR_PREEMPTED_REG;
539     }
540   return LDPS_OK;
541 }
542
543 /* Add a new (real) input file generated by a plugin.  */
544 static enum ld_plugin_status
545 add_input_file (const char *pathname)
546 {
547   ASSERT (called_plugin);
548   if (!lang_add_input_file (xstrdup (pathname), lang_input_file_is_file_enum,
549                             NULL))
550     return LDPS_ERR;
551   return LDPS_OK;
552 }
553
554 /* Add a new (real) library required by a plugin.  */
555 static enum ld_plugin_status
556 add_input_library (const char *pathname)
557 {
558   ASSERT (called_plugin);
559   if (!lang_add_input_file (xstrdup (pathname), lang_input_file_is_l_enum,
560                             NULL))
561     return LDPS_ERR;
562   return LDPS_OK;
563 }
564
565 /* Set the extra library path to be used by libraries added via
566    add_input_library.  */
567 static enum ld_plugin_status
568 set_extra_library_path (const char *path)
569 {
570   ASSERT (called_plugin);
571   ldfile_add_library_path (xstrdup (path), FALSE);
572   return LDPS_OK;
573 }
574
575 /* Issue a diagnostic message from a plugin.  */
576 static enum ld_plugin_status
577 message (int level, const char *format, ...)
578 {
579   va_list args;
580   va_start (args, format);
581
582   switch (level)
583     {
584     case LDPL_INFO:
585       vfinfo (stdout, format, args, FALSE);
586       putchar ('\n');
587       break;
588     case LDPL_WARNING:
589       vfinfo (stdout, format, args, TRUE);
590       putchar ('\n');
591       break;
592     case LDPL_FATAL:
593     case LDPL_ERROR:
594     default:
595         {
596           char *newfmt = ACONCAT ((level == LDPL_FATAL
597                                    ? "%P%F: " : "%P%X: ",
598                                    format, "\n", NULL));
599           vfinfo (stderr, newfmt, args, TRUE);
600         }
601       break;
602     }
603
604   va_end (args);
605   return LDPS_OK;
606 }
607
608 /* Helper to size leading part of tv array and set it up. */
609 static size_t
610 set_tv_header (struct ld_plugin_tv *tv)
611 {
612   size_t i;
613
614   /* Version info.  */
615   static const unsigned int major = (unsigned)(BFD_VERSION / 100000000UL);
616   static const unsigned int minor = (unsigned)(BFD_VERSION / 1000000UL) % 100;
617
618   if (!tv)
619     return tv_header_size;
620
621   for (i = 0; i < tv_header_size; i++)
622     {
623       tv[i].tv_tag = tv_header_tags[i];
624 #define TVU(x) tv[i].tv_u.tv_ ## x
625       switch (tv[i].tv_tag)
626         {
627         case LDPT_MESSAGE:
628           TVU(message) = message;
629           break;
630         case LDPT_API_VERSION:
631           TVU(val) = LD_PLUGIN_API_VERSION;
632           break;
633         case LDPT_GNU_LD_VERSION:
634           TVU(val) = major * 100 + minor;
635           break;
636         case LDPT_LINKER_OUTPUT:
637           TVU(val) = (link_info.relocatable
638                       ? LDPO_REL
639                       : (link_info.shared ? LDPO_DYN : LDPO_EXEC));
640           break;
641         case LDPT_OUTPUT_NAME:
642           TVU(string) = output_filename;
643           break;
644         case LDPT_REGISTER_CLAIM_FILE_HOOK:
645           TVU(register_claim_file) = register_claim_file;
646           break;
647         case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK:
648           TVU(register_all_symbols_read) = register_all_symbols_read;
649           break;
650         case LDPT_REGISTER_CLEANUP_HOOK:
651           TVU(register_cleanup) = register_cleanup;
652           break;
653         case LDPT_ADD_SYMBOLS:
654           TVU(add_symbols) = add_symbols;
655           break;
656         case LDPT_GET_INPUT_FILE:
657           TVU(get_input_file) = get_input_file;
658           break;
659         case LDPT_RELEASE_INPUT_FILE:
660           TVU(release_input_file) = release_input_file;
661           break;
662         case LDPT_GET_SYMBOLS:
663           TVU(get_symbols) = get_symbols;
664           break;
665         case LDPT_ADD_INPUT_FILE:
666           TVU(add_input_file) = add_input_file;
667           break;
668         case LDPT_ADD_INPUT_LIBRARY:
669           TVU(add_input_library) = add_input_library;
670           break;
671         case LDPT_SET_EXTRA_LIBRARY_PATH:
672           TVU(set_extra_library_path) = set_extra_library_path;
673           break;
674         default:
675           /* Added a new entry to the array without adding
676              a new case to set up its value is a bug.  */
677           FAIL ();
678         }
679 #undef TVU
680     }
681   return tv_header_size;
682 }
683
684 /* Append the per-plugin args list and trailing LDPT_NULL to tv.  */
685 static void
686 set_tv_plugin_args (plugin_t *plugin, struct ld_plugin_tv *tv)
687 {
688   plugin_arg_t *arg = plugin->args;
689   while (arg)
690     {
691       tv->tv_tag = LDPT_OPTION;
692       tv->tv_u.tv_string = arg->arg;
693       arg = arg->next;
694       tv++;
695     }
696   tv->tv_tag = LDPT_NULL;
697   tv->tv_u.tv_val = 0;
698 }
699
700 /* Return true if any plugins are active this run.  Only valid
701    after options have been processed.  */
702 bfd_boolean
703 plugin_active_plugins_p (void)
704 {
705   return plugins_list != NULL;
706 }
707
708 /* Load up and initialise all plugins after argument parsing.  */
709 int
710 plugin_load_plugins (void)
711 {
712   struct ld_plugin_tv *my_tv;
713   unsigned int max_args = 0;
714   plugin_t *curplug = plugins_list;
715
716   /* If there are no plugins, we need do nothing this run.  */
717   if (!curplug)
718     return 0;
719
720   xatexit (plugin_call_cleanup);
721
722   /* First pass over plugins to find max # args needed so that we
723      can size and allocate the tv array.  */
724   while (curplug)
725     {
726       if (curplug->n_args > max_args)
727         max_args = curplug->n_args;
728       curplug = curplug->next;
729     }
730
731   /* Allocate tv array and initialise constant part.  */
732   my_tv = xmalloc ((max_args + 1 + tv_header_size) * sizeof *my_tv);
733   set_tv_header (my_tv);
734
735   /* Pass over plugins again, activating them.  */
736   curplug = plugins_list;
737   while (curplug)
738     {
739       enum ld_plugin_status rv;
740       ld_plugin_onload onloadfn = dlsym (curplug->dlhandle, "onload");
741       if (!onloadfn)
742         onloadfn = dlsym (curplug->dlhandle, "_onload");
743       if (!onloadfn)
744         return set_plugin_error (curplug->name);
745       set_tv_plugin_args (curplug, &my_tv[tv_header_size]);
746       called_plugin = curplug;
747       rv = (*onloadfn) (my_tv);
748       called_plugin = NULL;
749       if (rv != LDPS_OK)
750         return set_plugin_error (curplug->name);
751       curplug = curplug->next;
752     }
753
754   /* Since plugin(s) inited ok, assume they're going to want symbol
755      resolutions, which needs us to track which symbols are referenced
756      by non-IR files using the linker's notice callback.  */
757   link_info.notice_all = TRUE;
758
759   return 0;
760 }
761
762 /* Call 'claim file' hook for all plugins.  */
763 int
764 plugin_call_claim_file (const struct ld_plugin_input_file *file, int *claimed)
765 {
766   plugin_t *curplug = plugins_list;
767   *claimed = FALSE;
768   if (no_more_claiming)
769     return 0;
770   while (curplug && !*claimed)
771     {
772       if (curplug->claim_file_handler)
773         {
774           enum ld_plugin_status rv;
775           called_plugin = curplug;
776           rv = (*curplug->claim_file_handler) (file, claimed);
777           called_plugin = NULL;
778           if (rv != LDPS_OK)
779             set_plugin_error (curplug->name);
780         }
781       curplug = curplug->next;
782     }
783   return plugin_error_p () ? -1 : 0;
784 }
785
786 /* Call 'all symbols read' hook for all plugins.  */
787 int
788 plugin_call_all_symbols_read (void)
789 {
790   plugin_t *curplug = plugins_list;
791
792   /* Disable any further file-claiming.  */
793   no_more_claiming = TRUE;
794
795   /* If --allow-multiple-definition is in effect, we need to disable it,
796      as the plugin infrastructure relies on the multiple_definition
797      callback to swap out the dummy IR-only BFDs for new real ones
798      when it starts opening the files added during this callback.  */
799   plugin_cached_allow_multiple_defs = link_info.allow_multiple_definition;
800   link_info.allow_multiple_definition = FALSE;
801
802   while (curplug)
803     {
804       if (curplug->all_symbols_read_handler)
805         {
806           enum ld_plugin_status rv;
807           called_plugin = curplug;
808           rv = (*curplug->all_symbols_read_handler) ();
809           called_plugin = NULL;
810           if (rv != LDPS_OK)
811             set_plugin_error (curplug->name);
812         }
813       curplug = curplug->next;
814     }
815   return plugin_error_p () ? -1 : 0;
816 }
817
818 /* Call 'cleanup' hook for all plugins at exit.  */
819 static void
820 plugin_call_cleanup (void)
821 {
822   plugin_t *curplug = plugins_list;
823   while (curplug)
824     {
825       if (curplug->cleanup_handler && !curplug->cleanup_done)
826         {
827           enum ld_plugin_status rv;
828           curplug->cleanup_done = TRUE;
829           called_plugin = curplug;
830           rv = (*curplug->cleanup_handler) ();
831           called_plugin = NULL;
832           if (rv != LDPS_OK)
833             set_plugin_error (curplug->name);
834           dlclose (curplug->dlhandle);
835         }
836       curplug = curplug->next;
837     }
838   if (plugin_error_p ())
839     info_msg (_("%P: %s: error in plugin cleanup (ignored)\n"),
840               plugin_error_plugin ());
841 }
842
843 /* Lazily init the non_ironly hash table.  */
844 static void
845 init_non_ironly_hash (void)
846 {
847   if (non_ironly_hash == NULL)
848     {
849       non_ironly_hash =
850         (struct bfd_hash_table *) xmalloc (sizeof (struct bfd_hash_table));
851       if (!bfd_hash_table_init_n (non_ironly_hash,
852                                   bfd_hash_newfunc,
853                                   sizeof (struct bfd_hash_entry),
854                                   61))
855         einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
856     }
857 }
858
859 /* To determine which symbols should be resolved LDPR_PREVAILING_DEF
860    and which LDPR_PREVAILING_DEF_IRONLY, we notice all the symbols as
861    the linker adds them to the linker hash table.  If we see a symbol
862    being referenced from a non-IR file, we add it to the non_ironly hash
863    table.  If we can't find it there at get_symbols time, we know that
864    it was referenced only by IR files.  We have to notice_all symbols,
865    because we won't necessarily know until later which ones will be
866    contributed by IR files.  */
867 bfd_boolean
868 plugin_notice (struct bfd_link_info *info ATTRIBUTE_UNUSED,
869                const char *name, bfd *abfd,
870                asection *section, bfd_vma value ATTRIBUTE_UNUSED)
871 {
872   bfd_boolean is_ref = bfd_is_und_section (section);
873   bfd_boolean is_dummy = is_ir_dummy_bfd (abfd);
874   init_non_ironly_hash ();
875   /* We only care about refs, not defs, indicated by section pointing
876      to the undefined section (according to the bfd linker notice callback
877      interface definition).  */
878   if (is_ref && !is_dummy)
879     {
880       /* This is a ref from a non-IR file, so note the ref'd symbol
881          in the non-IR-only hash.  */
882       if (!bfd_hash_lookup (non_ironly_hash, name, TRUE, TRUE))
883         einfo (_("%P%X: %s: hash table failure adding symbol %s\n"),
884                abfd->filename, name);
885     }
886   else if (!is_ref && is_dummy)
887     {
888       /* No further processing since this is a def from an IR dummy BFD.  */
889       return FALSE;
890     }
891
892   /* Continue with cref/nocrossref/trace-sym processing.  */
893   return TRUE;
894 }
895
896 /* When we add new object files to the link at all symbols read time,
897    these contain the real code and symbols generated from the IR files,
898    and so duplicate all the definitions already supplied by the dummy
899    IR-only BFDs that we created at claim files time.  We use the linker's
900    multiple-definitions callback hook to fix up the clash, discarding
901    the symbol from the IR-only BFD in favour of the symbol from the
902    real BFD.  We return true if this was not-really-a-clash because
903    we've fixed it up, or anyway if --allow-multiple-definition was in
904    effect (before we disabled it to ensure we got called back).  */
905 bfd_boolean
906 plugin_multiple_definition (struct bfd_link_info *info, const char *name,
907                             bfd *obfd, asection *osec ATTRIBUTE_UNUSED,
908                             bfd_vma oval ATTRIBUTE_UNUSED,
909                             bfd *nbfd, asection *nsec, bfd_vma nval)
910 {
911   if (is_ir_dummy_bfd (obfd))
912     {
913       struct bfd_link_hash_entry *blhe
914         = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
915       if (!blhe)
916         einfo (_("%P%X: %s: can't find IR symbol '%s'\n"), nbfd->filename,
917                name);
918       else if (blhe->type != bfd_link_hash_defined)
919         einfo (_("%P%x: %s: bad IR symbol type %d\n"), name, blhe->type);
920       /* Replace it with new details.  */
921       blhe->u.def.section = nsec;
922       blhe->u.def.value = nval;
923       return TRUE;
924     }
925   return plugin_cached_allow_multiple_defs;
926 }