Another s12z regen
[deliverable/binutils-gdb.git] / bfd / plugin.c
CommitLineData
ce3c775b 1/* Plugin support for BFD.
219d1afa 2 Copyright (C) 2009-2018 Free Software Foundation, Inc.
ce3c775b
NC
3
4 This file is part of BFD, the Binary File Descriptor library.
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
691bf19c 21#include "sysdep.h"
98950613
AM
22#include "bfd.h"
23
24#if BFD_SUPPORTS_PLUGINS
25
ce3c775b 26#include <assert.h>
17d5dae2 27#ifdef HAVE_DLFCN_H
ce3c775b 28#include <dlfcn.h>
17d5dae2
KT
29#elif defined (HAVE_WINDOWS_H)
30#include <windows.h>
31#else
32#error Unknown how to handle dynamic-load-libraries.
33#endif
ce3c775b
NC
34#include <stdarg.h>
35#include "plugin-api.h"
ce3c775b
NC
36#include "plugin.h"
37#include "libbfd.h"
38#include "libiberty.h"
39#include <dirent.h>
40
17d5dae2
KT
41#if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
42
43#define RTLD_NOW 0 /* Dummy value. */
44
45static void *
46dlopen (const char *file, int mode ATTRIBUTE_UNUSED)
47{
48 return LoadLibrary (file);
49}
50
51static void *
52dlsym (void *handle, const char *name)
53{
54 return GetProcAddress (handle, name);
55}
56
57static int ATTRIBUTE_UNUSED
58dlclose (void *handle)
59{
60 FreeLibrary (handle);
61 return 0;
62}
63
64static const char *
65dlerror (void)
66{
67 return "Unable to load DLL.";
68}
69
70#endif /* !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H) */
71
07d6d2b8
AM
72#define bfd_plugin_close_and_cleanup _bfd_generic_close_and_cleanup
73#define bfd_plugin_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
74#define bfd_plugin_new_section_hook _bfd_generic_new_section_hook
75#define bfd_plugin_get_section_contents _bfd_generic_get_section_contents
ce3c775b 76#define bfd_plugin_get_section_contents_in_window _bfd_generic_get_section_contents_in_window
07d6d2b8
AM
77#define bfd_plugin_bfd_copy_private_header_data _bfd_generic_bfd_copy_private_header_data
78#define bfd_plugin_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data
79#define bfd_plugin_bfd_copy_private_header_data _bfd_generic_bfd_copy_private_header_data
80#define bfd_plugin_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
ce3c775b 81#define bfd_plugin_core_file_matches_executable_p generic_core_file_matches_executable_p
07d6d2b8 82#define bfd_plugin_bfd_is_local_label_name _bfd_nosymbols_bfd_is_local_label_name
d00dd7dc 83#define bfd_plugin_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false
07d6d2b8
AM
84#define bfd_plugin_get_lineno _bfd_nosymbols_get_lineno
85#define bfd_plugin_find_nearest_line _bfd_nosymbols_find_nearest_line
86#define bfd_plugin_find_line _bfd_nosymbols_find_line
87#define bfd_plugin_find_inliner_info _bfd_nosymbols_find_inliner_info
60bb06bc 88#define bfd_plugin_get_symbol_version_string _bfd_nosymbols_get_symbol_version_string
07d6d2b8
AM
89#define bfd_plugin_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
90#define bfd_plugin_read_minisymbols _bfd_generic_read_minisymbols
91#define bfd_plugin_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
92#define bfd_plugin_set_arch_mach bfd_default_set_arch_mach
93#define bfd_plugin_set_section_contents _bfd_generic_set_section_contents
ce3c775b 94#define bfd_plugin_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
07d6d2b8
AM
95#define bfd_plugin_bfd_relax_section bfd_generic_relax_section
96#define bfd_plugin_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
97#define bfd_plugin_bfd_link_add_symbols _bfd_generic_link_add_symbols
98#define bfd_plugin_bfd_link_just_syms _bfd_generic_link_just_syms
99#define bfd_plugin_bfd_final_link _bfd_generic_final_link
100#define bfd_plugin_bfd_link_split_section _bfd_generic_link_split_section
101#define bfd_plugin_bfd_gc_sections bfd_generic_gc_sections
102#define bfd_plugin_bfd_lookup_section_flags bfd_generic_lookup_section_flags
103#define bfd_plugin_bfd_merge_sections bfd_generic_merge_sections
104#define bfd_plugin_bfd_is_group_section bfd_generic_is_group_section
105#define bfd_plugin_bfd_discard_group bfd_generic_discard_group
106#define bfd_plugin_section_already_linked _bfd_generic_section_already_linked
107#define bfd_plugin_bfd_define_common_symbol bfd_generic_define_common_symbol
34a87bb0 108#define bfd_plugin_bfd_link_hide_symbol _bfd_generic_link_hide_symbol
07d6d2b8 109#define bfd_plugin_bfd_define_start_stop bfd_generic_define_start_stop
69a630b5 110#define bfd_plugin_bfd_copy_link_hash_symbol_type _bfd_generic_copy_link_hash_symbol_type
07d6d2b8 111#define bfd_plugin_bfd_link_check_relocs _bfd_generic_link_check_relocs
ce3c775b
NC
112
113static enum ld_plugin_status
114message (int level ATTRIBUTE_UNUSED,
115 const char * format, ...)
116{
117 va_list args;
118 va_start (args, format);
119 printf ("bfd plugin: ");
120 vprintf (format, args);
d9b21463 121 putchar ('\n');
ce3c775b
NC
122 va_end (args);
123 return LDPS_OK;
124}
125
126/* Register a claim-file handler. */
127static ld_plugin_claim_file_handler claim_file;
128
129static enum ld_plugin_status
130register_claim_file (ld_plugin_claim_file_handler handler)
131{
132 claim_file = handler;
133 return LDPS_OK;
134}
135
136static enum ld_plugin_status
137add_symbols (void * handle,
138 int nsyms,
139 const struct ld_plugin_symbol * syms)
140{
141 bfd *abfd = handle;
142 struct plugin_data_struct *plugin_data =
5bb3703f 143 bfd_alloc (abfd, sizeof (plugin_data_struct));
ce3c775b
NC
144
145 plugin_data->nsyms = nsyms;
146 plugin_data->syms = syms;
147
148 if (nsyms != 0)
149 abfd->flags |= HAS_SYMS;
150
151 abfd->tdata.plugin_data = plugin_data;
152 return LDPS_OK;
153}
154
fc579192
NC
155static const char *plugin_program_name;
156
157void
158bfd_plugin_set_program_name (const char *program_name)
159{
160 plugin_program_name = program_name;
161}
ce3c775b 162
7d0b9ebc
AM
163int
164bfd_plugin_open_input (bfd *ibfd, struct ld_plugin_input_file *file)
ce3c775b 165{
e44f5bef
MT
166 bfd *iobfd;
167
7d0b9ebc
AM
168 iobfd = ibfd;
169 if (ibfd->my_archive && !bfd_is_thin_archive (ibfd->my_archive))
170 iobfd = ibfd->my_archive;
171 file->name = iobfd->filename;
e44f5bef
MT
172
173 if (!iobfd->iostream && !bfd_open_file (iobfd))
174 return 0;
175
7d0b9ebc 176 file->fd = fileno ((FILE *) iobfd->iostream);
e44f5bef 177
7d0b9ebc 178 if (iobfd == ibfd)
e44f5bef
MT
179 {
180 struct stat stat_buf;
7d0b9ebc 181 if (fstat (file->fd, &stat_buf))
07d6d2b8 182 return 0;
7d0b9ebc
AM
183 file->offset = 0;
184 file->filesize = stat_buf.st_size;
185 }
186 else
187 {
188 file->offset = ibfd->origin;
189 file->filesize = arelt_size (ibfd);
e44f5bef 190 }
7d0b9ebc
AM
191 return 1;
192}
193
194static int
195try_claim (bfd *abfd)
196{
197 int claimed = 0;
198 struct ld_plugin_input_file file;
e44f5bef 199
7d0b9ebc
AM
200 if (!bfd_plugin_open_input (abfd, &file))
201 return 0;
e44f5bef 202 file.handle = abfd;
7d0b9ebc 203 off_t cur_offset = lseek (file.fd, 0, SEEK_CUR);
e44f5bef 204 claim_file (&file, &claimed);
7d0b9ebc
AM
205 lseek (file.fd, cur_offset, SEEK_SET);
206 return claimed;
e44f5bef
MT
207}
208
209static int
5ae0078c 210try_load_plugin (const char *pname, bfd *abfd, int *has_plugin_p)
e44f5bef
MT
211{
212 void *plugin_handle;
6f4c0a42 213 struct ld_plugin_tv tv[4];
ce3c775b
NC
214 int i;
215 ld_plugin_onload onload;
216 enum ld_plugin_status status;
217
5ae0078c
L
218 *has_plugin_p = 0;
219
ce3c775b
NC
220 plugin_handle = dlopen (pname, RTLD_NOW);
221 if (!plugin_handle)
222 {
4eca0228 223 _bfd_error_handler ("%s\n", dlerror ());
ce3c775b
NC
224 return 0;
225 }
226
227 onload = dlsym (plugin_handle, "onload");
228 if (!onload)
229 goto err;
230
231 i = 0;
232 tv[i].tv_tag = LDPT_MESSAGE;
233 tv[i].tv_u.tv_message = message;
234
235 ++i;
236 tv[i].tv_tag = LDPT_REGISTER_CLAIM_FILE_HOOK;
237 tv[i].tv_u.tv_register_claim_file = register_claim_file;
238
239 ++i;
240 tv[i].tv_tag = LDPT_ADD_SYMBOLS;
241 tv[i].tv_u.tv_add_symbols = add_symbols;
242
243 ++i;
244 tv[i].tv_tag = LDPT_NULL;
245 tv[i].tv_u.tv_val = 0;
246
247 status = (*onload)(tv);
248
249 if (status != LDPS_OK)
250 goto err;
251
5ae0078c
L
252 *has_plugin_p = 1;
253
254 abfd->plugin_format = bfd_plugin_no;
255
ce3c775b
NC
256 if (!claim_file)
257 goto err;
258
e44f5bef
MT
259 if (!try_claim (abfd))
260 goto err;
261
5ae0078c
L
262 abfd->plugin_format = bfd_plugin_yes;
263
ce3c775b
NC
264 return 1;
265
266 err:
ce3c775b
NC
267 return 0;
268}
269
5ae0078c
L
270/* There may be plugin libraries in lib/bfd-plugins. */
271
272static int has_plugin = -1;
273
274static const bfd_target *(*ld_plugin_object_p) (bfd *);
275
ce3c775b
NC
276static const char *plugin_name;
277
278void
279bfd_plugin_set_plugin (const char *p)
280{
281 plugin_name = p;
5ae0078c
L
282 has_plugin = p != NULL;
283}
284
285/* Return TRUE if a plugin library is used. */
286
287bfd_boolean
288bfd_plugin_specified_p (void)
289{
290 return has_plugin > 0;
291}
292
7dc3990e
L
293/* Return TRUE if ABFD can be claimed by linker LTO plugin. */
294
295bfd_boolean
296bfd_link_plugin_object_p (bfd *abfd)
297{
298 if (ld_plugin_object_p)
299 return ld_plugin_object_p (abfd) != NULL;
300 return FALSE;
301}
302
5ae0078c
L
303extern const bfd_target plugin_vec;
304
305/* Return TRUE if TARGET is a pointer to plugin_vec. */
306
307bfd_boolean
308bfd_plugin_target_p (const bfd_target *target)
309{
310 return target == &plugin_vec;
311}
312
313/* Register OBJECT_P to be used by bfd_plugin_object_p. */
314
315void
316register_ld_plugin_object_p (const bfd_target *(*object_p) (bfd *))
317{
318 ld_plugin_object_p = object_p;
ce3c775b
NC
319}
320
321static int
e44f5bef 322load_plugin (bfd *abfd)
ce3c775b
NC
323{
324 char *plugin_dir;
325 char *p;
326 DIR *d;
327 struct dirent *ent;
328 int found = 0;
329
5ae0078c
L
330 if (!has_plugin)
331 return found;
332
ce3c775b 333 if (plugin_name)
5ae0078c 334 return try_load_plugin (plugin_name, abfd, &has_plugin);
ce3c775b 335
fc579192 336 if (plugin_program_name == NULL)
5ae0078c 337 return found;
ce3c775b
NC
338
339 plugin_dir = concat (BINDIR, "/../lib/bfd-plugins", NULL);
fc579192 340 p = make_relative_prefix (plugin_program_name,
ce3c775b
NC
341 BINDIR,
342 plugin_dir);
343 free (plugin_dir);
344 plugin_dir = NULL;
345
346 d = opendir (p);
347 if (!d)
348 goto out;
349
350 while ((ent = readdir (d)))
351 {
352 char *full_name;
c41ba836 353 struct stat s;
5ae0078c 354 int valid_plugin;
ce3c775b
NC
355
356 full_name = concat (p, "/", ent->d_name, NULL);
c41ba836 357 if (stat(full_name, &s) == 0 && S_ISREG (s.st_mode))
5ae0078c
L
358 found = try_load_plugin (full_name, abfd, &valid_plugin);
359 if (has_plugin <= 0)
360 has_plugin = valid_plugin;
ce3c775b
NC
361 free (full_name);
362 if (found)
363 break;
364 }
365
366 out:
367 free (p);
368 if (d)
369 closedir (d);
370
371 return found;
372}
373
374
375static const bfd_target *
376bfd_plugin_object_p (bfd *abfd)
377{
5ae0078c
L
378 if (ld_plugin_object_p)
379 return ld_plugin_object_p (abfd);
380
49f30d83 381 if (abfd->plugin_format == bfd_plugin_unknown && !load_plugin (abfd))
ce3c775b
NC
382 return NULL;
383
5ae0078c 384 return abfd->plugin_format == bfd_plugin_yes ? abfd->xvec : NULL;
ce3c775b
NC
385}
386
387/* Copy any private info we understand from the input bfd
388 to the output bfd. */
389
390static bfd_boolean
391bfd_plugin_bfd_copy_private_bfd_data (bfd *ibfd ATTRIBUTE_UNUSED,
392 bfd *obfd ATTRIBUTE_UNUSED)
393{
394 BFD_ASSERT (0);
395 return TRUE;
396}
397
398/* Copy any private info we understand from the input section
399 to the output section. */
400
401static bfd_boolean
402bfd_plugin_bfd_copy_private_section_data (bfd *ibfd ATTRIBUTE_UNUSED,
403 asection *isection ATTRIBUTE_UNUSED,
404 bfd *obfd ATTRIBUTE_UNUSED,
405 asection *osection ATTRIBUTE_UNUSED)
406{
407 BFD_ASSERT (0);
408 return TRUE;
409}
410
411/* Copy any private info we understand from the input symbol
412 to the output symbol. */
413
414static bfd_boolean
415bfd_plugin_bfd_copy_private_symbol_data (bfd *ibfd ATTRIBUTE_UNUSED,
416 asymbol *isymbol ATTRIBUTE_UNUSED,
417 bfd *obfd ATTRIBUTE_UNUSED,
418 asymbol *osymbol ATTRIBUTE_UNUSED)
419{
420 BFD_ASSERT (0);
421 return TRUE;
422}
423
424static bfd_boolean
425bfd_plugin_bfd_print_private_bfd_data (bfd *abfd ATTRIBUTE_UNUSED, PTR ptr ATTRIBUTE_UNUSED)
426{
427 BFD_ASSERT (0);
428 return TRUE;
429}
430
431static char *
432bfd_plugin_core_file_failing_command (bfd *abfd ATTRIBUTE_UNUSED)
433{
434 BFD_ASSERT (0);
435 return NULL;
436}
437
438static int
439bfd_plugin_core_file_failing_signal (bfd *abfd ATTRIBUTE_UNUSED)
261b8d08
PA
440{
441 BFD_ASSERT (0);
442 return 0;
443}
444
445static int
446bfd_plugin_core_file_pid (bfd *abfd ATTRIBUTE_UNUSED)
ce3c775b
NC
447{
448 BFD_ASSERT (0);
449 return 0;
450}
451
452static long
453bfd_plugin_get_symtab_upper_bound (bfd *abfd)
454{
455 struct plugin_data_struct *plugin_data = abfd->tdata.plugin_data;
456 long nsyms = plugin_data->nsyms;
457
458 BFD_ASSERT (nsyms >= 0);
459
460 return ((nsyms + 1) * sizeof (asymbol *));
461}
462
463static flagword
464convert_flags (const struct ld_plugin_symbol *sym)
465{
466 switch (sym->def)
68ffbac6 467 {
ce3c775b
NC
468 case LDPK_DEF:
469 case LDPK_COMMON:
470 case LDPK_UNDEF:
471 return BSF_GLOBAL;
472
473 case LDPK_WEAKUNDEF:
474 case LDPK_WEAKDEF:
475 return BSF_GLOBAL | BSF_WEAK;
476
477 default:
478 BFD_ASSERT (0);
479 return 0;
480 }
481}
482
483static long
484bfd_plugin_canonicalize_symtab (bfd *abfd,
485 asymbol **alocation)
486{
487 struct plugin_data_struct *plugin_data = abfd->tdata.plugin_data;
488 long nsyms = plugin_data->nsyms;
489 const struct ld_plugin_symbol *syms = plugin_data->syms;
490 static asection fake_section;
491 static asection fake_common_section;
492 int i;
493
494 fake_section.name = ".text";
495 fake_common_section.flags = SEC_IS_COMMON;
496
497 for (i = 0; i < nsyms; i++)
498 {
68ffbac6 499 asymbol *s = bfd_alloc (abfd, sizeof (asymbol));
ce3c775b
NC
500
501 BFD_ASSERT (s);
502 alocation[i] = s;
503
504 s->the_bfd = abfd;
505 s->name = syms[i].name;
506 s->value = 0;
507 s->flags = convert_flags (&syms[i]);
508 switch (syms[i].def)
509 {
510 case LDPK_COMMON:
511 s->section = &fake_common_section;
512 break;
513 case LDPK_UNDEF:
514 case LDPK_WEAKUNDEF:
515 s->section = bfd_und_section_ptr;
516 break;
517 case LDPK_DEF:
518 case LDPK_WEAKDEF:
519 s->section = &fake_section;
520 break;
521 default:
522 BFD_ASSERT (0);
523 }
524
525 s->udata.p = (void *) &syms[i];
526 }
527
528 return nsyms;
529}
530
531static void
532bfd_plugin_print_symbol (bfd *abfd ATTRIBUTE_UNUSED,
533 PTR afile ATTRIBUTE_UNUSED,
534 asymbol *symbol ATTRIBUTE_UNUSED,
535 bfd_print_symbol_type how ATTRIBUTE_UNUSED)
536{
537 BFD_ASSERT (0);
538}
539
540static void
541bfd_plugin_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
542 asymbol *symbol,
543 symbol_info *ret)
544{
545 bfd_symbol_info (symbol, ret);
546}
547
548/* Make an empty symbol. */
549
550static asymbol *
551bfd_plugin_make_empty_symbol (bfd *abfd)
552{
d3ce72d0
NC
553 asymbol *new_symbol = bfd_zalloc (abfd, sizeof (asymbol));
554 if (new_symbol == NULL)
555 return new_symbol;
556 new_symbol->the_bfd = abfd;
557 return new_symbol;
ce3c775b
NC
558}
559
560static int
561bfd_plugin_sizeof_headers (bfd *a ATTRIBUTE_UNUSED,
562 struct bfd_link_info *info ATTRIBUTE_UNUSED)
563{
564 BFD_ASSERT (0);
565 return 0;
566}
567
ce3c775b
NC
568const bfd_target plugin_vec =
569{
570 "plugin", /* Name. */
571 bfd_target_unknown_flavour,
572 BFD_ENDIAN_LITTLE, /* Target byte order. */
573 BFD_ENDIAN_LITTLE, /* Target headers byte order. */
574 (HAS_RELOC | EXEC_P | /* Object flags. */
575 HAS_LINENO | HAS_DEBUG |
576 HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
577 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
578 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* Section flags. */
579 0, /* symbol_leading_char. */
580 '/', /* ar_pad_char. */
581 15, /* ar_max_namelen. */
64bfc258 582 255, /* match priority. */
ce3c775b
NC
583
584 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
585 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
586 bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */
587 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
588 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
589 bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */
590
591 { /* bfd_check_format. */
592 _bfd_dummy_target,
593 bfd_plugin_object_p,
594 bfd_generic_archive_p,
595 _bfd_dummy_target
596 },
597 { /* bfd_set_format. */
d00dd7dc
AM
598 _bfd_bool_bfd_false_error,
599 _bfd_bool_bfd_false_error,
ce3c775b 600 _bfd_generic_mkarchive,
d00dd7dc 601 _bfd_bool_bfd_false_error,
ce3c775b
NC
602 },
603 { /* bfd_write_contents. */
d00dd7dc
AM
604 _bfd_bool_bfd_false_error,
605 _bfd_bool_bfd_false_error,
ce3c775b 606 _bfd_write_archive_contents,
d00dd7dc 607 _bfd_bool_bfd_false_error,
ce3c775b
NC
608 },
609
610 BFD_JUMP_TABLE_GENERIC (bfd_plugin),
611 BFD_JUMP_TABLE_COPY (bfd_plugin),
612 BFD_JUMP_TABLE_CORE (bfd_plugin),
e6cc316a
L
613#ifdef USE_64_BIT_ARCHIVE
614 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_64_bit),
615#else
ce3c775b 616 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),
e6cc316a 617#endif
ce3c775b
NC
618 BFD_JUMP_TABLE_SYMBOLS (bfd_plugin),
619 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
620 BFD_JUMP_TABLE_WRITE (bfd_plugin),
621 BFD_JUMP_TABLE_LINK (bfd_plugin),
622 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
623
624 NULL,
625
07d6d2b8 626 NULL /* backend_data. */
ce3c775b 627};
98950613 628#endif /* BFD_SUPPORTS_PLUGIN */
This page took 0.604831 seconds and 4 git commands to generate.