Provide string description of definition, visibility and resolution in LTO plug-in.
[deliverable/binutils-gdb.git] / ld / plugin.c
CommitLineData
5d3236ee 1/* Plugin control for the GNU linker.
82704155 2 Copyright (C) 2010-2019 Free Software Foundation, Inc.
5d3236ee
DK
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"
7d0b9ebc 32#include "plugin-api.h"
5ae0078c 33#include "../bfd/plugin.h"
5d3236ee 34#include "plugin.h"
5d3236ee 35#include "elf-bfd.h"
2aec968d
L
36#if HAVE_MMAP
37# include <sys/mman.h>
38# ifndef MAP_FAILED
39# define MAP_FAILED ((void *) -1)
40# endif
41# ifndef PROT_READ
42# define PROT_READ 0
43# endif
44# ifndef MAP_PRIVATE
45# define MAP_PRIVATE 0
46# endif
47#endif
f4b78d18
L
48#include <errno.h>
49#if !(defined(errno) || defined(_MSC_VER) && defined(_INC_ERRNO))
50extern int errno;
51#endif
3917d5d5 52#if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
f31d24a0 53#include <windows.h>
3917d5d5 54#endif
5d3236ee 55
1715a13c
L
56/* Report plugin symbols. */
57bfd_boolean report_plugin_symbols;
58
5d3236ee
DK
59/* The suffix to append to the name of the real (claimed) object file
60 when generating a dummy BFD to hold the IR symbols sent from the
cf4dc96f
DK
61 plugin. For cosmetic use only; appears in maps, crefs etc. */
62#define IRONLY_SUFFIX " (symbol from plugin)"
5d3236ee
DK
63
64/* Stores a single argument passed to a plugin. */
65typedef struct plugin_arg
66{
67 struct plugin_arg *next;
68 const char *arg;
69} plugin_arg_t;
70
71/* Holds all details of a single plugin. */
72typedef struct plugin
73{
74 /* Next on the list of plugins, or NULL at end of chain. */
75 struct plugin *next;
76 /* The argument string given to --plugin. */
77 const char *name;
78 /* The shared library handle returned by dlopen. */
79 void *dlhandle;
80 /* The list of argument string given to --plugin-opt. */
81 plugin_arg_t *args;
82 /* Number of args in the list, for convenience. */
83 size_t n_args;
84 /* The plugin's event handlers. */
85 ld_plugin_claim_file_handler claim_file_handler;
86 ld_plugin_all_symbols_read_handler all_symbols_read_handler;
87 ld_plugin_cleanup_handler cleanup_handler;
88 /* TRUE if the cleanup handlers have been called. */
89 bfd_boolean cleanup_done;
90} plugin_t;
91
2aec968d
L
92typedef struct view_buffer
93{
94 char *addr;
95 size_t filesize;
96 off_t offset;
97} view_buffer_t;
98
f4b78d18
L
99/* The internal version of struct ld_plugin_input_file with a BFD
100 pointer. */
101typedef struct plugin_input_file
102{
103 bfd *abfd;
2aec968d 104 view_buffer_t view_buffer;
f4b78d18
L
105 char *name;
106 int fd;
38604796 107 bfd_boolean use_mmap;
f4b78d18
L
108 off_t offset;
109 off_t filesize;
110} plugin_input_file_t;
111
5d3236ee
DK
112/* The master list of all plugins. */
113static plugin_t *plugins_list = NULL;
114
115/* We keep a tail pointer for easy linking on the end. */
116static plugin_t **plugins_tail_chain_ptr = &plugins_list;
117
118/* The last plugin added to the list, for receiving args. */
119static plugin_t *last_plugin = NULL;
120
121/* The tail of the arg chain of the last plugin added to the list. */
122static plugin_arg_t **last_plugin_args_tail_chain_ptr = NULL;
123
124/* The plugin which is currently having a callback executed. */
125static plugin_t *called_plugin = NULL;
126
127/* Last plugin to cause an error, if any. */
128static const char *error_plugin = NULL;
129
24f58f47 130/* State of linker "notice" interface before we poked at it. */
9e2278f5 131static bfd_boolean orig_notice_all;
9e2278f5
AM
132
133/* Original linker callbacks, and the plugin version. */
134static const struct bfd_link_callbacks *orig_callbacks;
135static struct bfd_link_callbacks plugin_callbacks;
136
5d3236ee
DK
137/* Set at all symbols read time, to avoid recursively offering the plugin
138 its own newly-added input files and libs to claim. */
9e2278f5 139bfd_boolean no_more_claiming = FALSE;
5d3236ee 140
38604796
L
141#if HAVE_MMAP && HAVE_GETPAGESIZE
142/* Page size used by mmap. */
143static off_t plugin_pagesize;
144#endif
145
5d3236ee
DK
146/* List of tags to set in the constant leading part of the tv array. */
147static const enum ld_plugin_tag tv_header_tags[] =
148{
149 LDPT_MESSAGE,
150 LDPT_API_VERSION,
151 LDPT_GNU_LD_VERSION,
152 LDPT_LINKER_OUTPUT,
153 LDPT_OUTPUT_NAME,
154 LDPT_REGISTER_CLAIM_FILE_HOOK,
155 LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK,
156 LDPT_REGISTER_CLEANUP_HOOK,
157 LDPT_ADD_SYMBOLS,
158 LDPT_GET_INPUT_FILE,
15f7a26b 159 LDPT_GET_VIEW,
5d3236ee
DK
160 LDPT_RELEASE_INPUT_FILE,
161 LDPT_GET_SYMBOLS,
69ee6ab2 162 LDPT_GET_SYMBOLS_V2,
5d3236ee
DK
163 LDPT_ADD_INPUT_FILE,
164 LDPT_ADD_INPUT_LIBRARY,
165 LDPT_SET_EXTRA_LIBRARY_PATH
166};
167
168/* How many entries in the constant leading part of the tv array. */
169static const size_t tv_header_size = ARRAY_SIZE (tv_header_tags);
170
9e2278f5 171/* Forward references. */
16d96b5b 172static bfd_boolean plugin_notice (struct bfd_link_info *,
46135103
AM
173 struct bfd_link_hash_entry *,
174 struct bfd_link_hash_entry *,
175 bfd *, asection *, bfd_vma, flagword);
9e2278f5 176
5ae0078c
L
177static const bfd_target * plugin_object_p (bfd *);
178
3917d5d5
DK
179#if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
180
181#define RTLD_NOW 0 /* Dummy value. */
182
183static void *
184dlopen (const char *file, int mode ATTRIBUTE_UNUSED)
185{
186 return LoadLibrary (file);
187}
188
189static void *
190dlsym (void *handle, const char *name)
191{
192 return GetProcAddress (handle, name);
193}
194
195static int
196dlclose (void *handle)
197{
198 FreeLibrary (handle);
199 return 0;
200}
201
202#endif /* !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H) */
203
d82184d7
L
204#ifndef HAVE_DLFCN_H
205static const char *
206dlerror (void)
207{
208 return "";
209}
210#endif
211
5d3236ee
DK
212/* Helper function for exiting with error status. */
213static int
214set_plugin_error (const char *plugin)
215{
216 error_plugin = plugin;
217 return -1;
218}
219
220/* Test if an error occurred. */
221static bfd_boolean
222plugin_error_p (void)
223{
224 return error_plugin != NULL;
225}
226
227/* Return name of plugin which caused an error if any. */
d44ad554
DK
228const char *
229plugin_error_plugin (void)
5d3236ee
DK
230{
231 return error_plugin ? error_plugin : _("<no plugin>");
232}
233
234/* Handle -plugin arg: find and load plugin, or return error. */
d82184d7 235void
d44ad554 236plugin_opt_plugin (const char *plugin)
5d3236ee
DK
237{
238 plugin_t *newplug;
c3e1c28e 239 plugin_t *curplug = plugins_list;
5d3236ee
DK
240
241 newplug = xmalloc (sizeof *newplug);
242 memset (newplug, 0, sizeof *newplug);
243 newplug->name = plugin;
244 newplug->dlhandle = dlopen (plugin, RTLD_NOW);
245 if (!newplug->dlhandle)
df5f2391 246 einfo (_("%F%P: %s: error loading plugin: %s\n"), plugin, dlerror ());
5d3236ee 247
c3e1c28e
L
248 /* Check if plugin has been loaded already. */
249 while (curplug)
250 {
251 if (newplug->dlhandle == curplug->dlhandle)
252 {
253 einfo (_("%P: %s: duplicated plugin\n"), plugin);
254 free (newplug);
255 return;
256 }
257 curplug = curplug->next;
258 }
259
5d3236ee
DK
260 /* Chain on end, so when we run list it is in command-line order. */
261 *plugins_tail_chain_ptr = newplug;
262 plugins_tail_chain_ptr = &newplug->next;
263
264 /* Record it as current plugin for receiving args. */
265 last_plugin = newplug;
266 last_plugin_args_tail_chain_ptr = &newplug->args;
5d3236ee
DK
267}
268
269/* Accumulate option arguments for last-loaded plugin, or return
270 error if none. */
d44ad554
DK
271int
272plugin_opt_plugin_arg (const char *arg)
5d3236ee
DK
273{
274 plugin_arg_t *newarg;
275
276 if (!last_plugin)
277 return set_plugin_error (_("<no plugin>"));
278
97964ab3
AM
279 /* Ignore -pass-through= from GCC driver. */
280 if (*arg == '-')
281 {
282 const char *p = arg + 1;
283
284 if (*p == '-')
285 ++p;
286 if (strncmp (p, "pass-through=", 13) == 0)
287 return 0;
288 }
289
5d3236ee
DK
290 newarg = xmalloc (sizeof *newarg);
291 newarg->arg = arg;
292 newarg->next = NULL;
293
294 /* Chain on end to preserve command-line order. */
295 *last_plugin_args_tail_chain_ptr = newarg;
296 last_plugin_args_tail_chain_ptr = &newarg->next;
297 last_plugin->n_args++;
298 return 0;
299}
300
37a3056a
L
301/* Generate a dummy BFD to represent an IR file, for any callers of
302 plugin_call_claim_file to use as the handle in the ld_plugin_input_file
303 struct that they build to pass in. The BFD is initially writable, so
304 that symbols can be added to it; it must be made readable after the
305 add_symbols hook has been called so that it can be read when linking. */
306static bfd *
5d3236ee
DK
307plugin_get_ir_dummy_bfd (const char *name, bfd *srctemplate)
308{
bc110b6e 309 bfd *abfd;
4a07dc81 310 bfd_boolean bfd_plugin_target;
bc110b6e
AM
311
312 bfd_use_reserved_id = 1;
4a07dc81 313 bfd_plugin_target = bfd_plugin_target_p (srctemplate->xvec);
9e2278f5 314 abfd = bfd_create (concat (name, IRONLY_SUFFIX, (const char *) NULL),
4a07dc81 315 bfd_plugin_target ? link_info.output_bfd : srctemplate);
9e2278f5
AM
316 if (abfd != NULL)
317 {
318 abfd->flags |= BFD_LINKER_CREATED | BFD_PLUGIN;
5ae0078c
L
319 if (!bfd_make_writable (abfd))
320 goto report_error;
4a07dc81 321 if (!bfd_plugin_target)
5ae0078c
L
322 {
323 bfd_set_arch_info (abfd, bfd_get_arch_info (srctemplate));
324 bfd_set_gp_size (abfd, bfd_get_gp_size (srctemplate));
325 if (!bfd_copy_private_bfd_data (srctemplate, abfd))
326 goto report_error;
327 }
9e2278f5
AM
328 {
329 flagword flags;
330
c77ec726 331 /* Create section to own the symbols. */
9e2278f5
AM
332 flags = (SEC_CODE | SEC_HAS_CONTENTS | SEC_READONLY
333 | SEC_ALLOC | SEC_LOAD | SEC_KEEP | SEC_EXCLUDE);
334 if (bfd_make_section_anyway_with_flags (abfd, ".text", flags))
335 return abfd;
336 }
337 }
5ae0078c 338report_error:
df5f2391 339 einfo (_("%F%P: could not create dummy IR bfd: %E\n"));
9e2278f5 340 return NULL;
5d3236ee
DK
341}
342
d44ad554 343/* Check if the BFD passed in is an IR dummy object file. */
23ebe1a0 344static inline bfd_boolean
5d3236ee
DK
345is_ir_dummy_bfd (const bfd *abfd)
346{
cf4dc96f 347 /* ABFD can sometimes legitimately be NULL, e.g. when called from one
23ebe1a0
AM
348 of the linker callbacks for a symbol in the *ABS* or *UND* sections. */
349 return abfd != NULL && (abfd->flags & BFD_PLUGIN) != 0;
5d3236ee
DK
350}
351
352/* Helpers to convert between BFD and GOLD symbol formats. */
353static enum ld_plugin_status
354asymbol_from_plugin_symbol (bfd *abfd, asymbol *asym,
f84854b6 355 const struct ld_plugin_symbol *ldsym)
5d3236ee
DK
356{
357 flagword flags = BSF_NO_FLAGS;
358 struct bfd_section *section;
359
360 asym->the_bfd = abfd;
f84854b6 361 asym->name = (ldsym->version
9e2278f5 362 ? concat (ldsym->name, "@", ldsym->version, (const char *) NULL)
f84854b6 363 : ldsym->name);
5d3236ee
DK
364 asym->value = 0;
365 switch (ldsym->def)
366 {
367 case LDPK_WEAKDEF:
368 flags = BSF_WEAK;
369 /* FALLTHRU */
370 case LDPK_DEF:
371 flags |= BSF_GLOBAL;
c77ec726
AM
372 if (ldsym->comdat_key)
373 {
374 char *name = concat (".gnu.linkonce.t.", ldsym->comdat_key,
375 (const char *) NULL);
376 section = bfd_get_section_by_name (abfd, name);
377 if (section != NULL)
378 free (name);
379 else
380 {
381 flagword sflags;
382
383 sflags = (SEC_CODE | SEC_HAS_CONTENTS | SEC_READONLY
384 | SEC_ALLOC | SEC_LOAD | SEC_KEEP | SEC_EXCLUDE
385 | SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD);
386 section = bfd_make_section_anyway_with_flags (abfd, name, sflags);
387 if (section == NULL)
388 return LDPS_ERR;
389 }
390 }
391 else
392 section = bfd_get_section_by_name (abfd, ".text");
5d3236ee
DK
393 break;
394
395 case LDPK_WEAKUNDEF:
396 flags = BSF_WEAK;
397 /* FALLTHRU */
398 case LDPK_UNDEF:
399 section = bfd_und_section_ptr;
400 break;
401
402 case LDPK_COMMON:
403 flags = BSF_GLOBAL;
404 section = bfd_com_section_ptr;
405 asym->value = ldsym->size;
5c08b7d4
L
406 /* For ELF targets, set alignment of common symbol to 1. */
407 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
02d00247
AM
408 {
409 ((elf_symbol_type *) asym)->internal_elf_sym.st_shndx = SHN_COMMON;
410 ((elf_symbol_type *) asym)->internal_elf_sym.st_value = 1;
411 }
5d3236ee
DK
412 break;
413
414 default:
415 return LDPS_ERR;
416 }
417 asym->flags = flags;
418 asym->section = section;
419
420 /* Visibility only applies on ELF targets. */
421 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
422 {
423 elf_symbol_type *elfsym = elf_symbol_from (abfd, asym);
cfac8028
L
424 unsigned char visibility;
425
5d3236ee 426 if (!elfsym)
df5f2391 427 einfo (_("%F%P: %s: non-ELF symbol in ELF BFD!\n"), asym->name);
cfac8028
L
428 switch (ldsym->visibility)
429 {
430 default:
df5f2391 431 einfo (_("%F%P: unknown ELF symbol visibility: %d!\n"),
cfac8028 432 ldsym->visibility);
2b804145
AM
433 return LDPS_ERR;
434
cfac8028
L
435 case LDPV_DEFAULT:
436 visibility = STV_DEFAULT;
437 break;
438 case LDPV_PROTECTED:
439 visibility = STV_PROTECTED;
440 break;
441 case LDPV_INTERNAL:
442 visibility = STV_INTERNAL;
443 break;
444 case LDPV_HIDDEN:
445 visibility = STV_HIDDEN;
446 break;
447 }
448 elfsym->internal_elf_sym.st_other
449 = (visibility | (elfsym->internal_elf_sym.st_other
450 & ~ELF_ST_VISIBILITY (-1)));
5d3236ee
DK
451 }
452
453 return LDPS_OK;
454}
455
456/* Register a claim-file handler. */
457static enum ld_plugin_status
458register_claim_file (ld_plugin_claim_file_handler handler)
459{
460 ASSERT (called_plugin);
461 called_plugin->claim_file_handler = handler;
462 return LDPS_OK;
463}
464
465/* Register an all-symbols-read handler. */
466static enum ld_plugin_status
467register_all_symbols_read (ld_plugin_all_symbols_read_handler handler)
468{
469 ASSERT (called_plugin);
470 called_plugin->all_symbols_read_handler = handler;
471 return LDPS_OK;
472}
473
474/* Register a cleanup handler. */
475static enum ld_plugin_status
476register_cleanup (ld_plugin_cleanup_handler handler)
477{
478 ASSERT (called_plugin);
479 called_plugin->cleanup_handler = handler;
480 return LDPS_OK;
481}
482
483/* Add symbols from a plugin-claimed input file. */
484static enum ld_plugin_status
485add_symbols (void *handle, int nsyms, const struct ld_plugin_symbol *syms)
486{
487 asymbol **symptrs;
f4b78d18
L
488 plugin_input_file_t *input = handle;
489 bfd *abfd = input->abfd;
7fe550fc 490 int n;
43e1669b 491
5d3236ee
DK
492 ASSERT (called_plugin);
493 symptrs = xmalloc (nsyms * sizeof *symptrs);
7fe550fc 494 for (n = 0; n < nsyms; n++)
5d3236ee
DK
495 {
496 enum ld_plugin_status rv;
0c511000
AM
497 asymbol *bfdsym;
498
0c511000 499 bfdsym = bfd_make_empty_symbol (abfd);
7fe550fc 500 symptrs[n] = bfdsym;
5d3236ee
DK
501 rv = asymbol_from_plugin_symbol (abfd, bfdsym, syms + n);
502 if (rv != LDPS_OK)
503 return rv;
504 }
7fe550fc 505 bfd_set_symtab (abfd, symptrs, nsyms);
5d3236ee
DK
506 return LDPS_OK;
507}
508
509/* Get the input file information with an open (possibly re-opened)
510 file descriptor. */
511static enum ld_plugin_status
f4b78d18 512get_input_file (const void *handle, struct ld_plugin_input_file *file)
5d3236ee 513{
f4b78d18
L
514 const plugin_input_file_t *input = handle;
515
5d3236ee 516 ASSERT (called_plugin);
f4b78d18
L
517
518 file->name = input->name;
519 file->offset = input->offset;
520 file->filesize = input->filesize;
521 file->handle = (void *) handle;
522
523 return LDPS_OK;
5d3236ee
DK
524}
525
15f7a26b
L
526/* Get view of the input file. */
527static enum ld_plugin_status
f4b78d18 528get_view (const void *handle, const void **viewp)
15f7a26b 529{
2aec968d 530 plugin_input_file_t *input = (plugin_input_file_t *) handle;
f4b78d18 531 char *buffer;
2aec968d 532 size_t size = input->filesize;
38604796
L
533 off_t offset = input->offset;
534#if HAVE_MMAP && HAVE_GETPAGESIZE
535 off_t bias;
fe905789 536#endif
f4b78d18 537
15f7a26b 538 ASSERT (called_plugin);
f4b78d18 539
2aec968d
L
540 /* FIXME: einfo should support %lld. */
541 if ((off_t) size != input->filesize)
df5f2391 542 einfo (_("%F%P: unsupported input file size: %s (%ld bytes)\n"),
2aec968d 543 input->name, (long) input->filesize);
f4b78d18 544
2aec968d
L
545 /* Check the cached view buffer. */
546 if (input->view_buffer.addr != NULL
547 && input->view_buffer.filesize == size
38604796 548 && input->view_buffer.offset == offset)
2aec968d
L
549 {
550 *viewp = input->view_buffer.addr;
551 return LDPS_OK;
552 }
553
554 input->view_buffer.filesize = size;
38604796 555 input->view_buffer.offset = offset;
f4b78d18 556
2aec968d 557#if HAVE_MMAP
fe905789 558# if HAVE_GETPAGESIZE
38604796
L
559 bias = offset % plugin_pagesize;
560 offset -= bias;
fe905789
L
561 size += bias;
562# endif
563 buffer = mmap (NULL, size, PROT_READ, MAP_PRIVATE, input->fd, offset);
564 if (buffer != MAP_FAILED)
38604796
L
565 {
566 input->use_mmap = TRUE;
567# if HAVE_GETPAGESIZE
568 buffer += bias;
b677c456 569# endif
38604796
L
570 }
571 else
2aec968d 572#endif
f4b78d18 573 {
2aec968d
L
574 char *p;
575
38604796
L
576 input->use_mmap = FALSE;
577
578 if (lseek (input->fd, offset, SEEK_SET) < 0)
2aec968d
L
579 return LDPS_ERR;
580
581 buffer = bfd_alloc (input->abfd, size);
582 if (buffer == NULL)
583 return LDPS_ERR;
584
585 p = buffer;
586 do
f4b78d18 587 {
2aec968d
L
588 ssize_t got = read (input->fd, p, size);
589 if (got == 0)
590 break;
591 else if (got > 0)
592 {
593 p += got;
594 size -= got;
595 }
596 else if (errno != EINTR)
597 return LDPS_ERR;
f4b78d18 598 }
2aec968d 599 while (size > 0);
f4b78d18 600 }
2aec968d
L
601
602 input->view_buffer.addr = buffer;
603 *viewp = buffer;
f4b78d18
L
604
605 return LDPS_OK;
15f7a26b
L
606}
607
5d3236ee
DK
608/* Release the input file. */
609static enum ld_plugin_status
f4b78d18 610release_input_file (const void *handle)
5d3236ee 611{
119d62ff 612 plugin_input_file_t *input = (plugin_input_file_t *) handle;
5d3236ee 613 ASSERT (called_plugin);
f4b78d18 614 if (input->fd != -1)
119d62ff
L
615 {
616 close (input->fd);
617 input->fd = -1;
618 }
f4b78d18 619 return LDPS_OK;
5d3236ee
DK
620}
621
42a851a9
DK
622/* Return TRUE if a defined symbol might be reachable from outside the
623 universe of claimed objects. */
624static inline bfd_boolean
9bbc1a67 625is_visible_from_outside (struct ld_plugin_symbol *lsym,
f84854b6 626 struct bfd_link_hash_entry *blhe)
42a851a9 627{
0e1862bb 628 if (bfd_link_relocatable (&link_info))
42a851a9 629 return TRUE;
4070765b 630 if (blhe->non_ir_ref_dynamic
59fa66c5
L
631 || link_info.export_dynamic
632 || bfd_link_dll (&link_info))
42a851a9 633 {
fd91d419
L
634 /* Check if symbol is hidden by version script. */
635 if (bfd_hide_sym_by_version (link_info.version_info,
636 blhe->root.string))
637 return FALSE;
42a851a9
DK
638 /* Only ELF symbols really have visibility. */
639 if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour)
640 {
641 struct elf_link_hash_entry *el = (struct elf_link_hash_entry *)blhe;
642 int vis = ELF_ST_VISIBILITY (el->other);
643 return vis == STV_DEFAULT || vis == STV_PROTECTED;
644 }
645 /* On non-ELF targets, we can safely make inferences by considering
f84854b6 646 what visibility the plugin would have liked to apply when it first
42a851a9
DK
647 sent us the symbol. During ELF symbol processing, visibility only
648 ever becomes more restrictive, not less, when symbols are merged,
649 so this is a conservative estimate; it may give false positives,
650 declaring something visible from outside when it in fact would
651 not have been, but this will only lead to missed optimisation
652 opportunities during LTRANS at worst; it will not give false
653 negatives, which can lead to the disastrous conclusion that the
654 related symbol is IRONLY. (See GCC PR46319 for an example.) */
cfac8028
L
655 return (lsym->visibility == LDPV_DEFAULT
656 || lsym->visibility == LDPV_PROTECTED);
42a851a9 657 }
35ed3f94 658
42a851a9
DK
659 return FALSE;
660}
661
7ea79cb3 662/* Return LTO kind string name that corresponds to INDEX enum value. */
663static const char *
664get_lto_kind (unsigned int index)
665{
666 static char buffer[64];
667 const char *lto_kind_str[5] =
668 {
669 "DEF",
670 "WEAKDEF",
671 "UNDEF",
672 "WEAKUNDEF",
673 "COMMON"
674 };
675
676 if (index < ARRAY_SIZE (lto_kind_str))
677 return lto_kind_str [index];
678
679 sprintf (buffer, _("unknown LTO kind value %x"), index);
680 return buffer;
681}
682
683/* Return LTO resolution string name that corresponds to INDEX enum value. */
684static const char *
685get_lto_resolution (unsigned int index)
686{
687 static char buffer[64];
688 static const char *lto_resolution_str[10] =
689 {
690 "UNKNOWN",
691 "UNDEF",
692 "PREVAILING_DEF",
693 "PREVAILING_DEF_IRONLY",
694 "PREEMPTED_REG",
695 "PREEMPTED_IR",
696 "RESOLVED_IR",
697 "RESOLVED_EXEC",
698 "RESOLVED_DYN",
699 "PREVAILING_DEF_IRONLY_EXP",
700 };
701
702 if (index < ARRAY_SIZE (lto_resolution_str))
703 return lto_resolution_str [index];
704
705 sprintf (buffer, _("unknown LTO resolution value %x"), index);
706 return buffer;
707}
708
709/* Return LTO visibility string name that corresponds to INDEX enum value. */
710static const char *
711get_lto_visibility (unsigned int index)
712{
713 static char buffer[64];
714 const char *lto_visibility_str[4] =
715 {
716 "DEFAULT",
717 "PROTECTED",
718 "INTERNAL",
719 "HIDDEN"
720 };
721
722 if (index < ARRAY_SIZE (lto_visibility_str))
723 return lto_visibility_str [index];
724
725 sprintf (buffer, _("unknown LTO visibility value %x"), index);
726 return buffer;
727}
728
5d3236ee
DK
729/* Get the symbol resolution info for a plugin-claimed input file. */
730static enum ld_plugin_status
69ee6ab2
AM
731get_symbols (const void *handle, int nsyms, struct ld_plugin_symbol *syms,
732 int def_ironly_exp)
5d3236ee 733{
f4b78d18
L
734 const plugin_input_file_t *input = handle;
735 const bfd *abfd = (const bfd *) input->abfd;
5d3236ee 736 int n;
69ee6ab2 737
5d3236ee
DK
738 ASSERT (called_plugin);
739 for (n = 0; n < nsyms; n++)
740 {
741 struct bfd_link_hash_entry *blhe;
42a851a9 742 asection *owner_sec;
69ee6ab2
AM
743 int res;
744
10be1b6a
DK
745 if (syms[n].def != LDPK_UNDEF)
746 blhe = bfd_link_hash_lookup (link_info.hash, syms[n].name,
747 FALSE, FALSE, TRUE);
748 else
749 blhe = bfd_wrapped_link_hash_lookup (link_info.output_bfd, &link_info,
750 syms[n].name, FALSE, FALSE, TRUE);
5d3236ee
DK
751 if (!blhe)
752 {
3355cb3b
L
753 /* The plugin is called to claim symbols in an archive element
754 from plugin_object_p. But those symbols aren't needed to
755 create output. They are defined and referenced only within
756 IR. */
757 switch (syms[n].def)
758 {
759 default:
760 abort ();
761 case LDPK_UNDEF:
762 case LDPK_WEAKUNDEF:
763 res = LDPR_UNDEF;
764 break;
765 case LDPK_DEF:
766 case LDPK_WEAKDEF:
767 case LDPK_COMMON:
768 res = LDPR_PREVAILING_DEF_IRONLY;
769 break;
770 }
1715a13c 771 goto report_symbol;
5d3236ee
DK
772 }
773
774 /* Determine resolution from blhe type and symbol's original type. */
775 if (blhe->type == bfd_link_hash_undefined
f84854b6 776 || blhe->type == bfd_link_hash_undefweak)
5d3236ee 777 {
69ee6ab2 778 res = LDPR_UNDEF;
1715a13c 779 goto report_symbol;
5d3236ee
DK
780 }
781 if (blhe->type != bfd_link_hash_defined
f84854b6
L
782 && blhe->type != bfd_link_hash_defweak
783 && blhe->type != bfd_link_hash_common)
5d3236ee
DK
784 {
785 /* We should not have a new, indirect or warning symbol here. */
df5f2391 786 einfo (_("%F%P: %s: plugin symbol table corrupt (sym type %d)\n"),
f84854b6 787 called_plugin->name, blhe->type);
5d3236ee
DK
788 }
789
42a851a9
DK
790 /* Find out which section owns the symbol. Since it's not undef,
791 it must have an owner; if it's not a common symbol, both defs
792 and weakdefs keep it in the same place. */
9e2278f5
AM
793 owner_sec = (blhe->type == bfd_link_hash_common
794 ? blhe->u.c.p->section
795 : blhe->u.def.section);
42a851a9 796
5d3236ee
DK
797
798 /* If it was originally undefined or common, then it has been
f84854b6
L
799 resolved; determine how. */
800 if (syms[n].def == LDPK_UNDEF
801 || syms[n].def == LDPK_WEAKUNDEF
5d3236ee
DK
802 || syms[n].def == LDPK_COMMON)
803 {
5d3236ee 804 if (owner_sec->owner == link_info.output_bfd)
69ee6ab2 805 res = LDPR_RESOLVED_EXEC;
5d3236ee 806 else if (owner_sec->owner == abfd)
69ee6ab2 807 res = LDPR_PREVAILING_DEF_IRONLY;
5d3236ee 808 else if (is_ir_dummy_bfd (owner_sec->owner))
69ee6ab2 809 res = LDPR_RESOLVED_IR;
cc322803
L
810 else if (owner_sec->owner != NULL
811 && (owner_sec->owner->flags & DYNAMIC) != 0)
69ee6ab2 812 res = LDPR_RESOLVED_DYN;
5d3236ee 813 else
69ee6ab2 814 res = LDPR_RESOLVED_EXEC;
5d3236ee
DK
815 }
816
817 /* Was originally def, or weakdef. Does it prevail? If the
f84854b6 818 owner is the original dummy bfd that supplied it, then this
5d3236ee 819 is the definition that has prevailed. */
69ee6ab2
AM
820 else if (owner_sec->owner == link_info.output_bfd)
821 res = LDPR_PREEMPTED_REG;
42a851a9 822 else if (owner_sec->owner == abfd)
69ee6ab2 823 res = LDPR_PREVAILING_DEF_IRONLY;
5d3236ee
DK
824
825 /* Was originally def, weakdef, or common, but has been pre-empted. */
69ee6ab2
AM
826 else if (is_ir_dummy_bfd (owner_sec->owner))
827 res = LDPR_PREEMPTED_IR;
828 else
829 res = LDPR_PREEMPTED_REG;
830
831 if (res == LDPR_PREVAILING_DEF_IRONLY)
832 {
833 /* We need to know if the sym is referenced from non-IR files. Or
834 even potentially-referenced, perhaps in a future final link if
835 this is a partial one, perhaps dynamically at load-time if the
836 symbol is externally visible. */
bc4e12de 837 if (blhe->non_ir_ref_regular)
69ee6ab2 838 res = LDPR_PREVAILING_DEF;
9bbc1a67 839 else if (is_visible_from_outside (&syms[n], blhe))
69ee6ab2
AM
840 res = def_ironly_exp;
841 }
1715a13c 842
9e2278f5 843 report_symbol:
69ee6ab2 844 syms[n].resolution = res;
1715a13c 845 if (report_plugin_symbols)
871b3ab2 846 einfo (_("%P: %pB: symbol `%s' "
7ea79cb3 847 "definition: %s, visibility: %s, resolution: %s\n"),
9e2278f5 848 abfd, syms[n].name,
7ea79cb3 849 get_lto_kind (syms[n].def),
850 get_lto_visibility (syms[n].visibility),
851 get_lto_resolution (res));
5d3236ee
DK
852 }
853 return LDPS_OK;
854}
855
69ee6ab2
AM
856static enum ld_plugin_status
857get_symbols_v1 (const void *handle, int nsyms, struct ld_plugin_symbol *syms)
858{
859 return get_symbols (handle, nsyms, syms, LDPR_PREVAILING_DEF);
860}
861
862static enum ld_plugin_status
863get_symbols_v2 (const void *handle, int nsyms, struct ld_plugin_symbol *syms)
864{
865 return get_symbols (handle, nsyms, syms, LDPR_PREVAILING_DEF_IRONLY_EXP);
866}
867
5d3236ee
DK
868/* Add a new (real) input file generated by a plugin. */
869static enum ld_plugin_status
870add_input_file (const char *pathname)
871{
ce875075
AM
872 lang_input_statement_type *is;
873
5d3236ee 874 ASSERT (called_plugin);
ce875075
AM
875 is = lang_add_input_file (xstrdup (pathname), lang_input_file_is_file_enum,
876 NULL);
877 if (!is)
5d3236ee 878 return LDPS_ERR;
ce875075 879 is->flags.lto_output = 1;
5d3236ee
DK
880 return LDPS_OK;
881}
882
883/* Add a new (real) library required by a plugin. */
884static enum ld_plugin_status
885add_input_library (const char *pathname)
886{
ce875075
AM
887 lang_input_statement_type *is;
888
5d3236ee 889 ASSERT (called_plugin);
ce875075
AM
890 is = lang_add_input_file (xstrdup (pathname), lang_input_file_is_l_enum,
891 NULL);
892 if (!is)
5d3236ee 893 return LDPS_ERR;
ce875075 894 is->flags.lto_output = 1;
5d3236ee
DK
895 return LDPS_OK;
896}
897
898/* Set the extra library path to be used by libraries added via
899 add_input_library. */
900static enum ld_plugin_status
901set_extra_library_path (const char *path)
902{
903 ASSERT (called_plugin);
d4cb7acd 904 ldfile_add_library_path (xstrdup (path), FALSE);
5d3236ee
DK
905 return LDPS_OK;
906}
907
908/* Issue a diagnostic message from a plugin. */
909static enum ld_plugin_status
910message (int level, const char *format, ...)
911{
912 va_list args;
913 va_start (args, format);
914
915 switch (level)
916 {
917 case LDPL_INFO:
918 vfinfo (stdout, format, args, FALSE);
d251c5c4 919 putchar ('\n');
5d3236ee
DK
920 break;
921 case LDPL_WARNING:
45e81354 922 {
df5f2391 923 char *newfmt = concat (_("%P: warning: "), format, "\n",
e1fa0163 924 (const char *) NULL);
45e81354 925 vfinfo (stdout, newfmt, args, TRUE);
e1fa0163 926 free (newfmt);
45e81354 927 }
5d3236ee
DK
928 break;
929 case LDPL_FATAL:
930 case LDPL_ERROR:
931 default:
9e2278f5 932 {
df5f2391
AM
933 char *newfmt = concat (level == LDPL_FATAL ? "%F" : "%X",
934 _("%P: error: "), format, "\n",
e1fa0163 935 (const char *) NULL);
9e2278f5
AM
936 fflush (stdout);
937 vfinfo (stderr, newfmt, args, TRUE);
938 fflush (stderr);
e1fa0163 939 free (newfmt);
9e2278f5 940 }
5d3236ee
DK
941 break;
942 }
943
944 va_end (args);
945 return LDPS_OK;
946}
947
948/* Helper to size leading part of tv array and set it up. */
69ee6ab2 949static void
5d3236ee
DK
950set_tv_header (struct ld_plugin_tv *tv)
951{
952 size_t i;
953
954 /* Version info. */
955 static const unsigned int major = (unsigned)(BFD_VERSION / 100000000UL);
956 static const unsigned int minor = (unsigned)(BFD_VERSION / 1000000UL) % 100;
957
5d3236ee
DK
958 for (i = 0; i < tv_header_size; i++)
959 {
960 tv[i].tv_tag = tv_header_tags[i];
961#define TVU(x) tv[i].tv_u.tv_ ## x
962 switch (tv[i].tv_tag)
963 {
f84854b6
L
964 case LDPT_MESSAGE:
965 TVU(message) = message;
966 break;
967 case LDPT_API_VERSION:
968 TVU(val) = LD_PLUGIN_API_VERSION;
969 break;
970 case LDPT_GNU_LD_VERSION:
971 TVU(val) = major * 100 + minor;
972 break;
973 case LDPT_LINKER_OUTPUT:
64d94ba0
AM
974 TVU(val) = (bfd_link_relocatable (&link_info) ? LDPO_REL
975 : bfd_link_pde (&link_info) ? LDPO_EXEC
976 : bfd_link_pie (&link_info) ? LDPO_PIE
977 : LDPO_DYN);
f84854b6
L
978 break;
979 case LDPT_OUTPUT_NAME:
980 TVU(string) = output_filename;
981 break;
982 case LDPT_REGISTER_CLAIM_FILE_HOOK:
983 TVU(register_claim_file) = register_claim_file;
984 break;
985 case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK:
986 TVU(register_all_symbols_read) = register_all_symbols_read;
987 break;
988 case LDPT_REGISTER_CLEANUP_HOOK:
989 TVU(register_cleanup) = register_cleanup;
990 break;
991 case LDPT_ADD_SYMBOLS:
992 TVU(add_symbols) = add_symbols;
993 break;
994 case LDPT_GET_INPUT_FILE:
995 TVU(get_input_file) = get_input_file;
996 break;
15f7a26b
L
997 case LDPT_GET_VIEW:
998 TVU(get_view) = get_view;
999 break;
f84854b6
L
1000 case LDPT_RELEASE_INPUT_FILE:
1001 TVU(release_input_file) = release_input_file;
1002 break;
1003 case LDPT_GET_SYMBOLS:
69ee6ab2
AM
1004 TVU(get_symbols) = get_symbols_v1;
1005 break;
1006 case LDPT_GET_SYMBOLS_V2:
1007 TVU(get_symbols) = get_symbols_v2;
f84854b6
L
1008 break;
1009 case LDPT_ADD_INPUT_FILE:
1010 TVU(add_input_file) = add_input_file;
1011 break;
1012 case LDPT_ADD_INPUT_LIBRARY:
1013 TVU(add_input_library) = add_input_library;
1014 break;
1015 case LDPT_SET_EXTRA_LIBRARY_PATH:
1016 TVU(set_extra_library_path) = set_extra_library_path;
1017 break;
1018 default:
1019 /* Added a new entry to the array without adding
1020 a new case to set up its value is a bug. */
1021 FAIL ();
5d3236ee
DK
1022 }
1023#undef TVU
1024 }
5d3236ee
DK
1025}
1026
1027/* Append the per-plugin args list and trailing LDPT_NULL to tv. */
1028static void
1029set_tv_plugin_args (plugin_t *plugin, struct ld_plugin_tv *tv)
1030{
1031 plugin_arg_t *arg = plugin->args;
1032 while (arg)
1033 {
1034 tv->tv_tag = LDPT_OPTION;
1035 tv->tv_u.tv_string = arg->arg;
1036 arg = arg->next;
1037 tv++;
1038 }
1039 tv->tv_tag = LDPT_NULL;
1040 tv->tv_u.tv_val = 0;
1041}
1042
1043/* Load up and initialise all plugins after argument parsing. */
d82184d7 1044void
d44ad554 1045plugin_load_plugins (void)
5d3236ee
DK
1046{
1047 struct ld_plugin_tv *my_tv;
1048 unsigned int max_args = 0;
1049 plugin_t *curplug = plugins_list;
1050
1051 /* If there are no plugins, we need do nothing this run. */
1052 if (!curplug)
d82184d7 1053 return;
5d3236ee
DK
1054
1055 /* First pass over plugins to find max # args needed so that we
1056 can size and allocate the tv array. */
1057 while (curplug)
1058 {
1059 if (curplug->n_args > max_args)
1060 max_args = curplug->n_args;
1061 curplug = curplug->next;
1062 }
1063
1064 /* Allocate tv array and initialise constant part. */
1065 my_tv = xmalloc ((max_args + 1 + tv_header_size) * sizeof *my_tv);
1066 set_tv_header (my_tv);
1067
1068 /* Pass over plugins again, activating them. */
1069 curplug = plugins_list;
1070 while (curplug)
1071 {
1072 enum ld_plugin_status rv;
a8f9d13e
AM
1073 ld_plugin_onload onloadfn;
1074
1075 onloadfn = (ld_plugin_onload) dlsym (curplug->dlhandle, "onload");
5d3236ee 1076 if (!onloadfn)
a8f9d13e 1077 onloadfn = (ld_plugin_onload) dlsym (curplug->dlhandle, "_onload");
5d3236ee 1078 if (!onloadfn)
df5f2391 1079 einfo (_("%F%P: %s: error loading plugin: %s\n"),
d82184d7 1080 curplug->name, dlerror ());
5d3236ee
DK
1081 set_tv_plugin_args (curplug, &my_tv[tv_header_size]);
1082 called_plugin = curplug;
1083 rv = (*onloadfn) (my_tv);
1084 called_plugin = NULL;
1085 if (rv != LDPS_OK)
df5f2391 1086 einfo (_("%F%P: %s: plugin error: %d\n"), curplug->name, rv);
5d3236ee
DK
1087 curplug = curplug->next;
1088 }
1089
1090 /* Since plugin(s) inited ok, assume they're going to want symbol
1091 resolutions, which needs us to track which symbols are referenced
1092 by non-IR files using the linker's notice callback. */
9e2278f5
AM
1093 orig_notice_all = link_info.notice_all;
1094 orig_callbacks = link_info.callbacks;
1095 plugin_callbacks = *orig_callbacks;
1096 plugin_callbacks.notice = &plugin_notice;
5d3236ee 1097 link_info.notice_all = TRUE;
61f41c3c 1098 link_info.lto_plugin_active = TRUE;
9e2278f5 1099 link_info.callbacks = &plugin_callbacks;
38604796 1100
5ae0078c
L
1101 register_ld_plugin_object_p (plugin_object_p);
1102
38604796 1103#if HAVE_MMAP && HAVE_GETPAGESIZE
fd5a1509 1104 plugin_pagesize = getpagesize ();
38604796 1105#endif
5d3236ee
DK
1106}
1107
1108/* Call 'claim file' hook for all plugins. */
02d00247 1109static int
5d3236ee
DK
1110plugin_call_claim_file (const struct ld_plugin_input_file *file, int *claimed)
1111{
1112 plugin_t *curplug = plugins_list;
1113 *claimed = FALSE;
5d3236ee
DK
1114 while (curplug && !*claimed)
1115 {
1116 if (curplug->claim_file_handler)
1117 {
1118 enum ld_plugin_status rv;
ace667e5 1119
5d3236ee
DK
1120 called_plugin = curplug;
1121 rv = (*curplug->claim_file_handler) (file, claimed);
1122 called_plugin = NULL;
1123 if (rv != LDPS_OK)
1124 set_plugin_error (curplug->name);
1125 }
1126 curplug = curplug->next;
1127 }
1128 return plugin_error_p () ? -1 : 0;
1129}
1130
35a1e5f3
L
1131/* Duplicates a character string with memory attached to ABFD. */
1132
1133static char *
1134plugin_strdup (bfd *abfd, const char *str)
1135{
1136 size_t strlength;
1137 char *copy;
1138 strlength = strlen (str) + 1;
1139 copy = bfd_alloc (abfd, strlength);
1140 if (copy == NULL)
df5f2391 1141 einfo (_("%F%P: plugin_strdup failed to allocate memory: %s\n"),
35a1e5f3
L
1142 bfd_get_error ());
1143 memcpy (copy, str, strlength);
1144 return copy;
1145}
1146
5ae0078c
L
1147static const bfd_target *
1148plugin_object_p (bfd *ibfd)
02d00247 1149{
5ae0078c 1150 int claimed;
f4b78d18 1151 plugin_input_file_t *input;
35a1e5f3
L
1152 struct ld_plugin_input_file file;
1153 bfd *abfd;
5ae0078c
L
1154
1155 /* Don't try the dummy object file. */
1156 if ((ibfd->flags & BFD_PLUGIN) != 0)
1157 return NULL;
1158
49f30d83 1159 if (ibfd->plugin_format != bfd_plugin_unknown)
5ae0078c
L
1160 {
1161 if (ibfd->plugin_format == bfd_plugin_yes)
1162 return ibfd->plugin_dummy_bfd->xvec;
1163 else
1164 return NULL;
1165 }
1166
02d00247
AM
1167 /* We create a dummy BFD, initially empty, to house whatever symbols
1168 the plugin may want to add. */
35a1e5f3 1169 abfd = plugin_get_ir_dummy_bfd (ibfd->filename, ibfd);
f4b78d18
L
1170
1171 input = bfd_alloc (abfd, sizeof (*input));
1172 if (input == NULL)
df5f2391 1173 einfo (_("%F%P: plugin failed to allocate memory for input: %s\n"),
f4b78d18
L
1174 bfd_get_error ());
1175
7d0b9ebc
AM
1176 if (!bfd_plugin_open_input (ibfd, &file))
1177 return NULL;
35a1e5f3 1178
7d0b9ebc
AM
1179 if (file.name == ibfd->filename)
1180 {
35a1e5f3
L
1181 /* We must copy filename attached to ibfd if it is not an archive
1182 member since it may be freed by bfd_close below. */
7d0b9ebc 1183 file.name = plugin_strdup (abfd, file.name);
35a1e5f3
L
1184 }
1185
35a1e5f3 1186 file.handle = input;
f4b78d18 1187 input->abfd = abfd;
2aec968d
L
1188 input->view_buffer.addr = NULL;
1189 input->view_buffer.filesize = 0;
1190 input->view_buffer.offset = 0;
7d0b9ebc 1191 input->fd = file.fd;
d319a098 1192 input->use_mmap = FALSE;
7d0b9ebc
AM
1193 input->offset = file.offset;
1194 input->filesize = file.filesize;
35a1e5f3 1195 input->name = plugin_strdup (abfd, ibfd->filename);
f4b78d18 1196
5ae0078c
L
1197 claimed = 0;
1198
35a1e5f3 1199 if (plugin_call_claim_file (&file, &claimed))
df5f2391 1200 einfo (_("%F%P: %s: plugin reported error claiming file\n"),
02d00247 1201 plugin_error_plugin ());
f4b78d18 1202
7d0b9ebc 1203 if (input->fd != -1 && !bfd_plugin_target_p (ibfd->xvec))
f4b78d18 1204 {
5ae0078c
L
1205 /* FIXME: fd belongs to us, not the plugin. GCC plugin, which
1206 doesn't need fd after plugin_call_claim_file, doesn't use
1207 BFD plugin target vector. Since GCC plugin doesn't call
1208 release_input_file, we close it here. LLVM plugin, which
1209 needs fd after plugin_call_claim_file and calls
1210 release_input_file after it is done, uses BFD plugin target
1211 vector. This scheme doesn't work when a plugin needs fd and
1212 doesn't use BFD plugin target vector neither. */
7d0b9ebc 1213 close (input->fd);
f4b78d18
L
1214 input->fd = -1;
1215 }
1216
02d00247
AM
1217 if (claimed)
1218 {
5ae0078c
L
1219 ibfd->plugin_format = bfd_plugin_yes;
1220 ibfd->plugin_dummy_bfd = abfd;
35a1e5f3 1221 bfd_make_readable (abfd);
5ae0078c 1222 return abfd->xvec;
02d00247
AM
1223 }
1224 else
1225 {
38604796
L
1226#if HAVE_MMAP
1227 if (input->use_mmap)
1228 {
1229 /* If plugin didn't claim the file, unmap the buffer. */
1230 char *addr = input->view_buffer.addr;
1231 off_t size = input->view_buffer.filesize;
1232# if HAVE_GETPAGESIZE
1233 off_t bias = input->view_buffer.offset % plugin_pagesize;
1234 size += bias;
1235 addr -= bias;
1236# endif
1237 munmap (addr, size);
1238 }
1239#endif
1240
02d00247
AM
1241 /* If plugin didn't claim the file, we don't need the dummy bfd.
1242 Can't avoid speculatively creating it, alas. */
5ae0078c 1243 ibfd->plugin_format = bfd_plugin_no;
f4b78d18 1244 bfd_close_all_done (abfd);
5ae0078c
L
1245 return NULL;
1246 }
1247}
1248
1249void
1250plugin_maybe_claim (lang_input_statement_type *entry)
1251{
fb47deda 1252 ASSERT (entry->header.type == lang_input_statement_enum);
5ae0078c
L
1253 if (plugin_object_p (entry->the_bfd))
1254 {
1255 bfd *abfd = entry->the_bfd->plugin_dummy_bfd;
1256
1257 /* Discard the real file's BFD and substitute the dummy one. */
1258
b0cffb47
AM
1259 /* We can't call bfd_close on archives. BFD archive handling
1260 caches elements, and add_archive_element keeps pointers to
1261 the_bfd and the_bfd->filename in a lang_input_statement_type
1262 linker script statement. */
5ae0078c
L
1263 if (entry->the_bfd->my_archive == NULL)
1264 bfd_close (entry->the_bfd);
1265 entry->the_bfd = abfd;
1266 entry->flags.claimed = 1;
02d00247
AM
1267 }
1268}
1269
5d3236ee
DK
1270/* Call 'all symbols read' hook for all plugins. */
1271int
1272plugin_call_all_symbols_read (void)
1273{
1274 plugin_t *curplug = plugins_list;
1275
1276 /* Disable any further file-claiming. */
1277 no_more_claiming = TRUE;
1278
5d3236ee
DK
1279 while (curplug)
1280 {
1281 if (curplug->all_symbols_read_handler)
1282 {
1283 enum ld_plugin_status rv;
1284 called_plugin = curplug;
1285 rv = (*curplug->all_symbols_read_handler) ();
1286 called_plugin = NULL;
1287 if (rv != LDPS_OK)
1288 set_plugin_error (curplug->name);
1289 }
1290 curplug = curplug->next;
1291 }
1292 return plugin_error_p () ? -1 : 0;
1293}
1294
e73d965c 1295/* Call 'cleanup' hook for all plugins at exit. */
498cd2a0 1296void
5d3236ee
DK
1297plugin_call_cleanup (void)
1298{
1299 plugin_t *curplug = plugins_list;
1300 while (curplug)
1301 {
1302 if (curplug->cleanup_handler && !curplug->cleanup_done)
1303 {
1304 enum ld_plugin_status rv;
1305 curplug->cleanup_done = TRUE;
1306 called_plugin = curplug;
1307 rv = (*curplug->cleanup_handler) ();
1308 called_plugin = NULL;
1309 if (rv != LDPS_OK)
d82184d7
L
1310 info_msg (_("%P: %s: error in plugin cleanup: %d (ignored)\n"),
1311 curplug->name, rv);
5d3236ee
DK
1312 dlclose (curplug->dlhandle);
1313 }
1314 curplug = curplug->next;
1315 }
5d3236ee
DK
1316}
1317
5d3236ee
DK
1318/* To determine which symbols should be resolved LDPR_PREVAILING_DEF
1319 and which LDPR_PREVAILING_DEF_IRONLY, we notice all the symbols as
35ed3f94 1320 the linker adds them to the linker hash table. Mark those
bc4e12de 1321 referenced from a non-IR file with non_ir_ref_regular or
4070765b
AM
1322 non_ir_ref_dynamic as appropriate. We have to notice_all symbols,
1323 because we won't necessarily know until later which ones will be
1324 contributed by IR files. */
9e2278f5
AM
1325static bfd_boolean
1326plugin_notice (struct bfd_link_info *info,
35ed3f94 1327 struct bfd_link_hash_entry *h,
46135103 1328 struct bfd_link_hash_entry *inh,
9e2278f5
AM
1329 bfd *abfd,
1330 asection *section,
16d96b5b 1331 bfd_vma value,
46135103 1332 flagword flags)
5d3236ee 1333{
46135103
AM
1334 struct bfd_link_hash_entry *orig_h = h;
1335
35ed3f94 1336 if (h != NULL)
5d3236ee 1337 {
cd6eee13 1338 bfd *sym_bfd;
4070765b 1339 bfd_boolean ref = FALSE;
cd6eee13 1340
46135103
AM
1341 if (h->type == bfd_link_hash_warning)
1342 h = h->u.i.link;
1343
4a2b04a7 1344 /* Nothing to do here if this def/ref is from an IR dummy BFD. */
9e2278f5 1345 if (is_ir_dummy_bfd (abfd))
4a2b04a7 1346 ;
9e2278f5 1347
16d96b5b
AM
1348 /* Making an indirect symbol counts as a reference unless this
1349 is a brand new symbol. */
4a2b04a7
L
1350 else if (bfd_is_ind_section (section)
1351 || (flags & BSF_INDIRECT) != 0)
16d96b5b 1352 {
46135103
AM
1353 /* ??? Some of this is questionable. See comments in
1354 _bfd_generic_link_add_one_symbol for case IND. */
4070765b
AM
1355 if (h->type != bfd_link_hash_new
1356 || inh->type == bfd_link_hash_new)
16d96b5b 1357 {
4070765b 1358 if ((abfd->flags & DYNAMIC) == 0)
bc4e12de 1359 inh->non_ir_ref_regular = TRUE;
4070765b
AM
1360 else
1361 inh->non_ir_ref_dynamic = TRUE;
16d96b5b 1362 }
4070765b
AM
1363
1364 if (h->type != bfd_link_hash_new)
1365 ref = TRUE;
16d96b5b
AM
1366 }
1367
1368 /* Nothing to do here for warning symbols. */
1369 else if ((flags & BSF_WARNING) != 0)
1370 ;
1371
1372 /* Nothing to do here for constructor symbols. */
1373 else if ((flags & BSF_CONSTRUCTOR) != 0)
1374 ;
1375
35ed3f94 1376 /* If this is a ref, set non_ir_ref. */
16d96b5b 1377 else if (bfd_is_und_section (section))
3d5bef4c
L
1378 {
1379 /* Replace the undefined dummy bfd with the real one. */
4070765b
AM
1380 if ((h->type == bfd_link_hash_undefined
1381 || h->type == bfd_link_hash_undefweak)
1382 && (h->u.undef.abfd == NULL
1383 || (h->u.undef.abfd->flags & BFD_PLUGIN) != 0))
59fa66c5 1384 h->u.undef.abfd = abfd;
4070765b 1385 ref = TRUE;
3d5bef4c 1386 }
35ed3f94 1387
0616a280
AM
1388 /* Otherwise, it must be a new def. */
1389 else
cd6eee13 1390 {
0616a280
AM
1391 /* Ensure any symbol defined in an IR dummy BFD takes on a
1392 new value from a real BFD. Weak symbols are not normally
1393 overridden by a new weak definition, and strong symbols
1394 will normally cause multiple definition errors. Avoid
1395 this by making the symbol appear to be undefined. */
1396 if (((h->type == bfd_link_hash_defweak
1397 || h->type == bfd_link_hash_defined)
1398 && is_ir_dummy_bfd (sym_bfd = h->u.def.section->owner))
1399 || (h->type == bfd_link_hash_common
1400 && is_ir_dummy_bfd (sym_bfd = h->u.c.p->section->owner)))
1401 {
1402 h->type = bfd_link_hash_undefweak;
1403 h->u.undef.abfd = sym_bfd;
1404 }
4070765b
AM
1405
1406 /* A common symbol should be merged with other commons or
1407 defs with the same name. In particular, a common ought
1408 to be overridden by a def in a -flto object. In that
1409 sense a common is also a ref. */
1410 if (bfd_is_com_section (section))
1411 ref = TRUE;
1412 }
1413
1414 if (ref)
1415 {
1416 if ((abfd->flags & DYNAMIC) == 0)
bc4e12de 1417 h->non_ir_ref_regular = TRUE;
4070765b
AM
1418 else
1419 h->non_ir_ref_dynamic = TRUE;
cd6eee13 1420 }
5d3236ee
DK
1421 }
1422
1423 /* Continue with cref/nocrossref/trace-sym processing. */
46135103 1424 if (orig_h == NULL
9e2278f5
AM
1425 || orig_notice_all
1426 || (info->notice_hash != NULL
46135103 1427 && bfd_hash_lookup (info->notice_hash, orig_h->root.string,
35ed3f94 1428 FALSE, FALSE) != NULL))
46135103
AM
1429 return (*orig_callbacks->notice) (info, orig_h, inh,
1430 abfd, section, value, flags);
5d3236ee
DK
1431 return TRUE;
1432}
This page took 0.621111 seconds and 4 git commands to generate.