1 /* Plugin control for the GNU linker.
2 Copyright 2010, 2011 Free Software Foundation, Inc.
4 This file is part of the GNU Binutils.
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.
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.
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. */
22 #include "libiberty.h"
33 #include "plugin-api.h"
35 #if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
39 /* Report plugin symbols. */
40 bfd_boolean report_plugin_symbols;
42 /* The suffix to append to the name of the real (claimed) object file
43 when generating a dummy BFD to hold the IR symbols sent from the
44 plugin. For cosmetic use only; appears in maps, crefs etc. */
45 #define IRONLY_SUFFIX " (symbol from plugin)"
47 /* Stores a single argument passed to a plugin. */
48 typedef struct plugin_arg
50 struct plugin_arg *next;
54 /* Holds all details of a single plugin. */
57 /* Next on the list of plugins, or NULL at end of chain. */
59 /* The argument string given to --plugin. */
61 /* The shared library handle returned by dlopen. */
63 /* The list of argument string given to --plugin-opt. */
65 /* Number of args in the list, for convenience. */
67 /* The plugin's event handlers. */
68 ld_plugin_claim_file_handler claim_file_handler;
69 ld_plugin_all_symbols_read_handler all_symbols_read_handler;
70 ld_plugin_cleanup_handler cleanup_handler;
71 /* TRUE if the cleanup handlers have been called. */
72 bfd_boolean cleanup_done;
75 /* The master list of all plugins. */
76 static plugin_t *plugins_list = NULL;
78 /* We keep a tail pointer for easy linking on the end. */
79 static plugin_t **plugins_tail_chain_ptr = &plugins_list;
81 /* The last plugin added to the list, for receiving args. */
82 static plugin_t *last_plugin = NULL;
84 /* The tail of the arg chain of the last plugin added to the list. */
85 static plugin_arg_t **last_plugin_args_tail_chain_ptr = NULL;
87 /* The plugin which is currently having a callback executed. */
88 static plugin_t *called_plugin = NULL;
90 /* Last plugin to cause an error, if any. */
91 static const char *error_plugin = NULL;
93 /* A hash table that records symbols referenced by non-IR files. Used
94 at get_symbols time to determine whether any prevailing defs from
95 IR files are referenced only from other IR files, so tthat we can
96 we can distinguish the LDPR_PREVAILING_DEF and LDPR_PREVAILING_DEF_IRONLY
97 cases when establishing symbol resolutions. */
98 static struct bfd_hash_table *non_ironly_hash = NULL;
100 /* Set at all symbols read time, to avoid recursively offering the plugin
101 its own newly-added input files and libs to claim. */
102 static bfd_boolean no_more_claiming = FALSE;
104 /* If the --allow-multiple-definition command-line option is active, we
105 have to disable it so that BFD always calls our hook, and simulate the
106 effect (when not resolving IR vs. real symbols) ourselves by ensuring
107 TRUE is returned from the hook. */
108 static bfd_boolean plugin_cached_allow_multiple_defs = FALSE;
110 /* List of tags to set in the constant leading part of the tv array. */
111 static const enum ld_plugin_tag tv_header_tags[] =
118 LDPT_REGISTER_CLAIM_FILE_HOOK,
119 LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK,
120 LDPT_REGISTER_CLEANUP_HOOK,
123 LDPT_RELEASE_INPUT_FILE,
126 LDPT_ADD_INPUT_LIBRARY,
127 LDPT_SET_EXTRA_LIBRARY_PATH
130 /* How many entries in the constant leading part of the tv array. */
131 static const size_t tv_header_size = ARRAY_SIZE (tv_header_tags);
133 #if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
135 #define RTLD_NOW 0 /* Dummy value. */
138 dlopen (const char *file, int mode ATTRIBUTE_UNUSED)
140 return LoadLibrary (file);
144 dlsym (void *handle, const char *name)
146 return GetProcAddress (handle, name);
150 dlclose (void *handle)
152 FreeLibrary (handle);
156 #endif /* !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H) */
158 /* Helper function for exiting with error status. */
160 set_plugin_error (const char *plugin)
162 error_plugin = plugin;
166 /* Test if an error occurred. */
168 plugin_error_p (void)
170 return error_plugin != NULL;
173 /* Return name of plugin which caused an error if any. */
175 plugin_error_plugin (void)
177 return error_plugin ? error_plugin : _("<no plugin>");
180 /* Handle -plugin arg: find and load plugin, or return error. */
182 plugin_opt_plugin (const char *plugin)
186 newplug = xmalloc (sizeof *newplug);
187 memset (newplug, 0, sizeof *newplug);
188 newplug->name = plugin;
189 newplug->dlhandle = dlopen (plugin, RTLD_NOW);
190 if (!newplug->dlhandle)
191 return set_plugin_error (plugin);
193 /* Chain on end, so when we run list it is in command-line order. */
194 *plugins_tail_chain_ptr = newplug;
195 plugins_tail_chain_ptr = &newplug->next;
197 /* Record it as current plugin for receiving args. */
198 last_plugin = newplug;
199 last_plugin_args_tail_chain_ptr = &newplug->args;
203 /* Accumulate option arguments for last-loaded plugin, or return
206 plugin_opt_plugin_arg (const char *arg)
208 plugin_arg_t *newarg;
211 return set_plugin_error (_("<no plugin>"));
213 newarg = xmalloc (sizeof *newarg);
217 /* Chain on end to preserve command-line order. */
218 *last_plugin_args_tail_chain_ptr = newarg;
219 last_plugin_args_tail_chain_ptr = &newarg->next;
220 last_plugin->n_args++;
224 /* Create a dummy BFD. */
226 plugin_get_ir_dummy_bfd (const char *name, bfd *srctemplate)
231 bfd_use_reserved_id = 1;
232 abfd = bfd_create (concat (name, IRONLY_SUFFIX, (const char *)NULL),
234 bfd_set_arch_info (abfd, bfd_get_arch_info (srctemplate));
235 bfd_make_writable (abfd);
236 bfd_copy_private_bfd_data (srctemplate, abfd);
237 bfd_set_gp_size (abfd, bfd_get_gp_size (abfd));
238 /* Create a minimal set of sections to own the symbols. */
239 sec = bfd_make_section_old_way (abfd, ".text");
240 bfd_set_section_flags (abfd, sec,
241 (SEC_CODE | SEC_HAS_CONTENTS | SEC_READONLY
242 | SEC_ALLOC | SEC_LOAD | SEC_KEEP));
243 sec->output_section = sec;
244 sec->output_offset = 0;
248 /* Check if the BFD passed in is an IR dummy object file. */
250 is_ir_dummy_bfd (const bfd *abfd)
252 /* ABFD can sometimes legitimately be NULL, e.g. when called from one
253 of the linker callbacks for a symbol in the *ABS* or *UND* sections.
254 Likewise, the usrdata field may be NULL if ABFD was added by the
255 backend without a corresponding input statement, as happens e.g.
256 when processing DT_NEEDED dependencies. */
259 && ((lang_input_statement_type *)(abfd->usrdata))->claimed;
262 /* Helpers to convert between BFD and GOLD symbol formats. */
263 static enum ld_plugin_status
264 asymbol_from_plugin_symbol (bfd *abfd, asymbol *asym,
265 const struct ld_plugin_symbol *ldsym)
267 flagword flags = BSF_NO_FLAGS;
268 struct bfd_section *section;
270 asym->the_bfd = abfd;
271 asym->name = (ldsym->version
272 ? concat (ldsym->name, "@", ldsym->version, NULL)
282 section = bfd_get_section_by_name (abfd, ".text");
289 section = bfd_und_section_ptr;
294 section = bfd_com_section_ptr;
295 asym->value = ldsym->size;
296 /* For ELF targets, set alignment of common symbol to 1. */
297 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
298 ((elf_symbol_type *) asym)->internal_elf_sym.st_value = 1;
305 asym->section = section;
307 /* Visibility only applies on ELF targets. */
308 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
310 elf_symbol_type *elfsym = elf_symbol_from (abfd, asym);
311 unsigned char visibility;
314 einfo (_("%P%F: %s: non-ELF symbol in ELF BFD!\n"), asym->name);
315 switch (ldsym->visibility)
318 einfo (_("%P%F: unknown ELF symbol visibility: %d!\n"),
321 visibility = STV_DEFAULT;
324 visibility = STV_PROTECTED;
327 visibility = STV_INTERNAL;
330 visibility = STV_HIDDEN;
333 elfsym->internal_elf_sym.st_other
334 = (visibility | (elfsym->internal_elf_sym.st_other
335 & ~ELF_ST_VISIBILITY (-1)));
341 /* Register a claim-file handler. */
342 static enum ld_plugin_status
343 register_claim_file (ld_plugin_claim_file_handler handler)
345 ASSERT (called_plugin);
346 called_plugin->claim_file_handler = handler;
350 /* Register an all-symbols-read handler. */
351 static enum ld_plugin_status
352 register_all_symbols_read (ld_plugin_all_symbols_read_handler handler)
354 ASSERT (called_plugin);
355 called_plugin->all_symbols_read_handler = handler;
359 /* Register a cleanup handler. */
360 static enum ld_plugin_status
361 register_cleanup (ld_plugin_cleanup_handler handler)
363 ASSERT (called_plugin);
364 called_plugin->cleanup_handler = handler;
368 /* Add symbols from a plugin-claimed input file. */
369 static enum ld_plugin_status
370 add_symbols (void *handle, int nsyms, const struct ld_plugin_symbol *syms)
375 ASSERT (called_plugin);
376 symptrs = xmalloc (nsyms * sizeof *symptrs);
377 for (n = 0; n < nsyms; n++)
379 enum ld_plugin_status rv;
380 asymbol *bfdsym = bfd_make_empty_symbol (abfd);
382 rv = asymbol_from_plugin_symbol (abfd, bfdsym, syms + n);
386 bfd_set_symtab (abfd, symptrs, nsyms);
390 /* Get the input file information with an open (possibly re-opened)
392 static enum ld_plugin_status
393 get_input_file (const void *handle, struct ld_plugin_input_file *file)
395 ASSERT (called_plugin);
401 /* Release the input file. */
402 static enum ld_plugin_status
403 release_input_file (const void *handle)
405 ASSERT (called_plugin);
410 /* Return TRUE if a defined symbol might be reachable from outside the
411 universe of claimed objects. */
412 static inline bfd_boolean
413 is_visible_from_outside (struct ld_plugin_symbol *lsym, asection *section,
414 struct bfd_link_hash_entry *blhe)
416 /* Section's owner may be NULL if it is the absolute
417 section, fortunately is_ir_dummy_bfd handles that. */
418 if (!is_ir_dummy_bfd (section->owner))
420 if (link_info.relocatable)
422 if (link_info.export_dynamic || link_info.shared)
424 /* Only ELF symbols really have visibility. */
425 if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour)
427 struct elf_link_hash_entry *el = (struct elf_link_hash_entry *)blhe;
428 int vis = ELF_ST_VISIBILITY (el->other);
429 return vis == STV_DEFAULT || vis == STV_PROTECTED;
431 /* On non-ELF targets, we can safely make inferences by considering
432 what visibility the plugin would have liked to apply when it first
433 sent us the symbol. During ELF symbol processing, visibility only
434 ever becomes more restrictive, not less, when symbols are merged,
435 so this is a conservative estimate; it may give false positives,
436 declaring something visible from outside when it in fact would
437 not have been, but this will only lead to missed optimisation
438 opportunities during LTRANS at worst; it will not give false
439 negatives, which can lead to the disastrous conclusion that the
440 related symbol is IRONLY. (See GCC PR46319 for an example.) */
441 return (lsym->visibility == LDPV_DEFAULT
442 || lsym->visibility == LDPV_PROTECTED);
447 /* Get the symbol resolution info for a plugin-claimed input file. */
448 static enum ld_plugin_status
449 get_symbols (const void *handle, int nsyms, struct ld_plugin_symbol *syms)
451 const bfd *abfd = handle;
453 ASSERT (called_plugin);
454 for (n = 0; n < nsyms; n++)
456 struct bfd_link_hash_entry *blhe;
459 if (syms[n].def != LDPK_UNDEF)
460 blhe = bfd_link_hash_lookup (link_info.hash, syms[n].name,
463 blhe = bfd_wrapped_link_hash_lookup (link_info.output_bfd, &link_info,
464 syms[n].name, FALSE, FALSE, TRUE);
467 syms[n].resolution = LDPR_UNKNOWN;
471 /* Determine resolution from blhe type and symbol's original type. */
472 if (blhe->type == bfd_link_hash_undefined
473 || blhe->type == bfd_link_hash_undefweak)
475 syms[n].resolution = LDPR_UNDEF;
478 if (blhe->type != bfd_link_hash_defined
479 && blhe->type != bfd_link_hash_defweak
480 && blhe->type != bfd_link_hash_common)
482 /* We should not have a new, indirect or warning symbol here. */
483 einfo ("%P%F: %s: plugin symbol table corrupt (sym type %d)\n",
484 called_plugin->name, blhe->type);
487 /* Find out which section owns the symbol. Since it's not undef,
488 it must have an owner; if it's not a common symbol, both defs
489 and weakdefs keep it in the same place. */
490 owner_sec = (blhe->type == bfd_link_hash_common)
491 ? blhe->u.c.p->section
492 : blhe->u.def.section;
494 /* We need to know if the sym is referenced from non-IR files. Or
495 even potentially-referenced, perhaps in a future final link if
496 this is a partial one, perhaps dynamically at load-time if the
497 symbol is externally visible. */
498 ironly = (!is_visible_from_outside (&syms[n], owner_sec, blhe)
499 && !bfd_hash_lookup (non_ironly_hash, syms[n].name,
502 /* If it was originally undefined or common, then it has been
503 resolved; determine how. */
504 if (syms[n].def == LDPK_UNDEF
505 || syms[n].def == LDPK_WEAKUNDEF
506 || syms[n].def == LDPK_COMMON)
508 if (owner_sec->owner == link_info.output_bfd)
509 syms[n].resolution = LDPR_RESOLVED_EXEC;
510 else if (owner_sec->owner == abfd)
511 syms[n].resolution = (ironly
512 ? LDPR_PREVAILING_DEF_IRONLY
513 : LDPR_PREVAILING_DEF);
514 else if (is_ir_dummy_bfd (owner_sec->owner))
515 syms[n].resolution = LDPR_RESOLVED_IR;
516 else if (owner_sec->owner != NULL
517 && (owner_sec->owner->flags & DYNAMIC) != 0)
518 syms[n].resolution = LDPR_RESOLVED_DYN;
520 syms[n].resolution = LDPR_RESOLVED_EXEC;
524 /* Was originally def, or weakdef. Does it prevail? If the
525 owner is the original dummy bfd that supplied it, then this
526 is the definition that has prevailed. */
527 if (owner_sec->owner == link_info.output_bfd)
528 syms[n].resolution = LDPR_PREEMPTED_REG;
529 else if (owner_sec->owner == abfd)
531 syms[n].resolution = (ironly
532 ? LDPR_PREVAILING_DEF_IRONLY
533 : LDPR_PREVAILING_DEF);
537 /* Was originally def, weakdef, or common, but has been pre-empted. */
538 syms[n].resolution = (is_ir_dummy_bfd (owner_sec->owner)
540 : LDPR_PREEMPTED_REG);
543 if (report_plugin_symbols)
544 einfo ("%P: %B: symbol `%s' definition: %d, resolution: %d\n",
545 abfd, syms[n].name, syms[n].def, syms[n].resolution);
550 /* Add a new (real) input file generated by a plugin. */
551 static enum ld_plugin_status
552 add_input_file (const char *pathname)
554 ASSERT (called_plugin);
555 if (!lang_add_input_file (xstrdup (pathname), lang_input_file_is_file_enum,
561 /* Add a new (real) library required by a plugin. */
562 static enum ld_plugin_status
563 add_input_library (const char *pathname)
565 ASSERT (called_plugin);
566 if (!lang_add_input_file (xstrdup (pathname), lang_input_file_is_l_enum,
572 /* Set the extra library path to be used by libraries added via
573 add_input_library. */
574 static enum ld_plugin_status
575 set_extra_library_path (const char *path)
577 ASSERT (called_plugin);
578 ldfile_add_library_path (xstrdup (path), FALSE);
582 /* Issue a diagnostic message from a plugin. */
583 static enum ld_plugin_status
584 message (int level, const char *format, ...)
587 va_start (args, format);
592 vfinfo (stdout, format, args, FALSE);
596 vfinfo (stdout, format, args, TRUE);
603 char *newfmt = ACONCAT ((level == LDPL_FATAL
604 ? "%P%F: " : "%P%X: ",
605 format, "\n", NULL));
607 vfinfo (stderr, newfmt, args, TRUE);
617 /* Helper to size leading part of tv array and set it up. */
619 set_tv_header (struct ld_plugin_tv *tv)
624 static const unsigned int major = (unsigned)(BFD_VERSION / 100000000UL);
625 static const unsigned int minor = (unsigned)(BFD_VERSION / 1000000UL) % 100;
628 return tv_header_size;
630 for (i = 0; i < tv_header_size; i++)
632 tv[i].tv_tag = tv_header_tags[i];
633 #define TVU(x) tv[i].tv_u.tv_ ## x
634 switch (tv[i].tv_tag)
637 TVU(message) = message;
639 case LDPT_API_VERSION:
640 TVU(val) = LD_PLUGIN_API_VERSION;
642 case LDPT_GNU_LD_VERSION:
643 TVU(val) = major * 100 + minor;
645 case LDPT_LINKER_OUTPUT:
646 TVU(val) = (link_info.relocatable
648 : (link_info.shared ? LDPO_DYN : LDPO_EXEC));
650 case LDPT_OUTPUT_NAME:
651 TVU(string) = output_filename;
653 case LDPT_REGISTER_CLAIM_FILE_HOOK:
654 TVU(register_claim_file) = register_claim_file;
656 case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK:
657 TVU(register_all_symbols_read) = register_all_symbols_read;
659 case LDPT_REGISTER_CLEANUP_HOOK:
660 TVU(register_cleanup) = register_cleanup;
662 case LDPT_ADD_SYMBOLS:
663 TVU(add_symbols) = add_symbols;
665 case LDPT_GET_INPUT_FILE:
666 TVU(get_input_file) = get_input_file;
668 case LDPT_RELEASE_INPUT_FILE:
669 TVU(release_input_file) = release_input_file;
671 case LDPT_GET_SYMBOLS:
672 TVU(get_symbols) = get_symbols;
674 case LDPT_ADD_INPUT_FILE:
675 TVU(add_input_file) = add_input_file;
677 case LDPT_ADD_INPUT_LIBRARY:
678 TVU(add_input_library) = add_input_library;
680 case LDPT_SET_EXTRA_LIBRARY_PATH:
681 TVU(set_extra_library_path) = set_extra_library_path;
684 /* Added a new entry to the array without adding
685 a new case to set up its value is a bug. */
690 return tv_header_size;
693 /* Append the per-plugin args list and trailing LDPT_NULL to tv. */
695 set_tv_plugin_args (plugin_t *plugin, struct ld_plugin_tv *tv)
697 plugin_arg_t *arg = plugin->args;
700 tv->tv_tag = LDPT_OPTION;
701 tv->tv_u.tv_string = arg->arg;
705 tv->tv_tag = LDPT_NULL;
709 /* Return true if any plugins are active this run. Only valid
710 after options have been processed. */
712 plugin_active_plugins_p (void)
714 return plugins_list != NULL;
717 /* Load up and initialise all plugins after argument parsing. */
719 plugin_load_plugins (void)
721 struct ld_plugin_tv *my_tv;
722 unsigned int max_args = 0;
723 plugin_t *curplug = plugins_list;
725 /* If there are no plugins, we need do nothing this run. */
729 /* First pass over plugins to find max # args needed so that we
730 can size and allocate the tv array. */
733 if (curplug->n_args > max_args)
734 max_args = curplug->n_args;
735 curplug = curplug->next;
738 /* Allocate tv array and initialise constant part. */
739 my_tv = xmalloc ((max_args + 1 + tv_header_size) * sizeof *my_tv);
740 set_tv_header (my_tv);
742 /* Pass over plugins again, activating them. */
743 curplug = plugins_list;
746 enum ld_plugin_status rv;
747 ld_plugin_onload onloadfn = dlsym (curplug->dlhandle, "onload");
749 onloadfn = dlsym (curplug->dlhandle, "_onload");
751 return set_plugin_error (curplug->name);
752 set_tv_plugin_args (curplug, &my_tv[tv_header_size]);
753 called_plugin = curplug;
754 rv = (*onloadfn) (my_tv);
755 called_plugin = NULL;
757 return set_plugin_error (curplug->name);
758 curplug = curplug->next;
761 /* Since plugin(s) inited ok, assume they're going to want symbol
762 resolutions, which needs us to track which symbols are referenced
763 by non-IR files using the linker's notice callback. */
764 link_info.notice_all = TRUE;
769 /* Call 'claim file' hook for all plugins. */
771 plugin_call_claim_file (const struct ld_plugin_input_file *file, int *claimed)
773 plugin_t *curplug = plugins_list;
775 if (no_more_claiming)
777 while (curplug && !*claimed)
779 if (curplug->claim_file_handler)
781 enum ld_plugin_status rv;
782 called_plugin = curplug;
783 rv = (*curplug->claim_file_handler) (file, claimed);
784 called_plugin = NULL;
786 set_plugin_error (curplug->name);
788 curplug = curplug->next;
790 return plugin_error_p () ? -1 : 0;
793 /* Call 'all symbols read' hook for all plugins. */
795 plugin_call_all_symbols_read (void)
797 plugin_t *curplug = plugins_list;
799 /* Disable any further file-claiming. */
800 no_more_claiming = TRUE;
802 /* If --allow-multiple-definition is in effect, we need to disable it,
803 as the plugin infrastructure relies on the multiple_definition
804 callback to swap out the dummy IR-only BFDs for new real ones
805 when it starts opening the files added during this callback. */
806 plugin_cached_allow_multiple_defs = link_info.allow_multiple_definition;
807 link_info.allow_multiple_definition = FALSE;
811 if (curplug->all_symbols_read_handler)
813 enum ld_plugin_status rv;
814 called_plugin = curplug;
815 rv = (*curplug->all_symbols_read_handler) ();
816 called_plugin = NULL;
818 set_plugin_error (curplug->name);
820 curplug = curplug->next;
822 return plugin_error_p () ? -1 : 0;
825 /* Call 'cleanup' hook for all plugins at exit. */
827 plugin_call_cleanup (void)
829 plugin_t *curplug = plugins_list;
832 if (curplug->cleanup_handler && !curplug->cleanup_done)
834 enum ld_plugin_status rv;
835 curplug->cleanup_done = TRUE;
836 called_plugin = curplug;
837 rv = (*curplug->cleanup_handler) ();
838 called_plugin = NULL;
840 set_plugin_error (curplug->name);
841 dlclose (curplug->dlhandle);
843 curplug = curplug->next;
845 if (plugin_error_p ())
846 info_msg (_("%P: %s: error in plugin cleanup (ignored)\n"),
847 plugin_error_plugin ());
850 /* Lazily init the non_ironly hash table. */
852 init_non_ironly_hash (void)
854 struct bfd_sym_chain *sym;
856 if (non_ironly_hash == NULL)
859 (struct bfd_hash_table *) xmalloc (sizeof (struct bfd_hash_table));
860 if (!bfd_hash_table_init_n (non_ironly_hash,
862 sizeof (struct bfd_hash_entry),
864 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
866 for (sym = &entry_symbol; sym != NULL; sym = sym->next)
868 && !bfd_hash_lookup (non_ironly_hash, sym->name, TRUE, TRUE))
869 einfo (_("%P%X: hash table failure adding symbol %s\n"),
874 /* To determine which symbols should be resolved LDPR_PREVAILING_DEF
875 and which LDPR_PREVAILING_DEF_IRONLY, we notice all the symbols as
876 the linker adds them to the linker hash table. If we see a symbol
877 being referenced from a non-IR file, we add it to the non_ironly hash
878 table. If we can't find it there at get_symbols time, we know that
879 it was referenced only by IR files. We have to notice_all symbols,
880 because we won't necessarily know until later which ones will be
881 contributed by IR files. */
883 plugin_notice (struct bfd_link_info *info ATTRIBUTE_UNUSED,
884 const char *name, bfd *abfd,
885 asection *section, bfd_vma value ATTRIBUTE_UNUSED)
887 bfd_boolean is_ref = bfd_is_und_section (section);
888 bfd_boolean is_dummy = is_ir_dummy_bfd (abfd);
889 init_non_ironly_hash ();
890 /* We only care about refs, not defs, indicated by section pointing
891 to the undefined section (according to the bfd linker notice callback
892 interface definition). */
893 if (is_ref && !is_dummy)
895 /* This is a ref from a non-IR file, so note the ref'd symbol
896 in the non-IR-only hash. */
897 if (!bfd_hash_lookup (non_ironly_hash, name, TRUE, TRUE))
898 einfo (_("%P%X: %s: hash table failure adding symbol %s\n"),
899 abfd->filename, name);
901 else if (!is_ref && is_dummy)
903 /* No further processing since this is a def from an IR dummy BFD. */
907 /* Continue with cref/nocrossref/trace-sym processing. */
911 /* When we add new object files to the link at all symbols read time,
912 these contain the real code and symbols generated from the IR files,
913 and so duplicate all the definitions already supplied by the dummy
914 IR-only BFDs that we created at claim files time. We use the linker's
915 multiple-definitions callback hook to fix up the clash, discarding
916 the symbol from the IR-only BFD in favour of the symbol from the
917 real BFD. We return true if this was not-really-a-clash because
918 we've fixed it up, or anyway if --allow-multiple-definition was in
919 effect (before we disabled it to ensure we got called back). */
921 plugin_multiple_definition (struct bfd_link_info *info, const char *name,
922 bfd *obfd, asection *osec ATTRIBUTE_UNUSED,
923 bfd_vma oval ATTRIBUTE_UNUSED,
924 bfd *nbfd, asection *nsec, bfd_vma nval)
926 if (is_ir_dummy_bfd (obfd))
928 struct bfd_link_hash_entry *blhe
929 = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, FALSE);
931 einfo (_("%P%X: %s: can't find IR symbol '%s'\n"), nbfd->filename,
933 else if (blhe->type != bfd_link_hash_defined)
934 einfo (_("%P%x: %s: bad IR symbol type %d\n"), name, blhe->type);
935 /* Replace it with new details. */
936 blhe->u.def.section = nsec;
937 blhe->u.def.value = nval;
940 return plugin_cached_allow_multiple_defs;