Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / plugin.c
CommitLineData
ce3c775b 1/* Plugin support for BFD.
250d07de 2 Copyright (C) 2009-2021 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
3d98c460 72#define bfd_plugin_close_and_cleanup _bfd_generic_close_and_cleanup
07d6d2b8
AM
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
cb7f4b29 105#define bfd_plugin_bfd_group_name bfd_generic_group_name
07d6d2b8
AM
106#define bfd_plugin_bfd_discard_group bfd_generic_discard_group
107#define bfd_plugin_section_already_linked _bfd_generic_section_already_linked
108#define bfd_plugin_bfd_define_common_symbol bfd_generic_define_common_symbol
34a87bb0 109#define bfd_plugin_bfd_link_hide_symbol _bfd_generic_link_hide_symbol
07d6d2b8 110#define bfd_plugin_bfd_define_start_stop bfd_generic_define_start_stop
69a630b5 111#define bfd_plugin_bfd_copy_link_hash_symbol_type _bfd_generic_copy_link_hash_symbol_type
07d6d2b8 112#define bfd_plugin_bfd_link_check_relocs _bfd_generic_link_check_relocs
ce3c775b
NC
113
114static enum ld_plugin_status
115message (int level ATTRIBUTE_UNUSED,
116 const char * format, ...)
117{
118 va_list args;
119 va_start (args, format);
120 printf ("bfd plugin: ");
121 vprintf (format, args);
d9b21463 122 putchar ('\n');
ce3c775b
NC
123 va_end (args);
124 return LDPS_OK;
125}
126
0aa99dcd
L
127struct plugin_list_entry
128{
129 /* These must be initialized for each IR object with LTO wrapper. */
0aa99dcd
L
130 ld_plugin_claim_file_handler claim_file;
131 ld_plugin_all_symbols_read_handler all_symbols_read;
132 ld_plugin_all_symbols_read_handler cleanup_handler;
0a1b45a2 133 bool has_symbol_type;
0aa99dcd
L
134
135 struct plugin_list_entry *next;
136
137 /* These can be reused for all IR objects. */
138 const char *plugin_name;
0aa99dcd
L
139};
140
ecda9016 141static const char *plugin_program_name;
ecda9016
L
142
143void
3d98c460 144bfd_plugin_set_program_name (const char *program_name)
ecda9016
L
145{
146 plugin_program_name = program_name;
0aa99dcd
L
147}
148
149static struct plugin_list_entry *plugin_list = NULL;
150static struct plugin_list_entry *current_plugin = NULL;
151
ce3c775b 152/* Register a claim-file handler. */
ce3c775b
NC
153
154static enum ld_plugin_status
155register_claim_file (ld_plugin_claim_file_handler handler)
156{
0aa99dcd
L
157 current_plugin->claim_file = handler;
158 return LDPS_OK;
159}
160
ce3c775b
NC
161static enum ld_plugin_status
162add_symbols (void * handle,
163 int nsyms,
164 const struct ld_plugin_symbol * syms)
165{
166 bfd *abfd = handle;
167 struct plugin_data_struct *plugin_data =
5bb3703f 168 bfd_alloc (abfd, sizeof (plugin_data_struct));
ce3c775b 169
3d98c460
L
170 if (!plugin_data)
171 return LDPS_ERR;
0aa99dcd 172
3d98c460
L
173 plugin_data->nsyms = nsyms;
174 plugin_data->syms = syms;
ce3c775b
NC
175
176 if (nsyms != 0)
177 abfd->flags |= HAS_SYMS;
178
3d98c460 179 abfd->tdata.plugin_data = plugin_data;
ce3c775b
NC
180 return LDPS_OK;
181}
182
c3a1714c
L
183static enum ld_plugin_status
184add_symbols_v2 (void *handle, int nsyms,
185 const struct ld_plugin_symbol *syms)
186{
0a1b45a2 187 current_plugin->has_symbol_type = true;
c3a1714c
L
188 return add_symbols (handle, nsyms, syms);
189}
190
7d0b9ebc
AM
191int
192bfd_plugin_open_input (bfd *ibfd, struct ld_plugin_input_file *file)
ce3c775b 193{
e44f5bef
MT
194 bfd *iobfd;
195
7d0b9ebc 196 iobfd = ibfd;
27b07675
AM
197 while (iobfd->my_archive
198 && !bfd_is_thin_archive (iobfd->my_archive))
199 iobfd = iobfd->my_archive;
765cf5f6 200 file->name = bfd_get_filename (iobfd);
e44f5bef
MT
201
202 if (!iobfd->iostream && !bfd_open_file (iobfd))
203 return 0;
204
27b07675
AM
205 /* The plugin API expects that the file descriptor won't be closed
206 and reused as done by the bfd file cache. So open it again.
207 dup isn't good enough. plugin IO uses lseek/read while BFD uses
208 fseek/fread. It isn't wise to mix the unistd and stdio calls on
209 the same underlying file descriptor. */
210 file->fd = open (file->name, O_RDONLY | O_BINARY);
211 if (file->fd < 0)
83b0a686
NC
212 {
213#ifndef EMFILE
214 return 0;
215#else
216 if (errno != EMFILE)
217 return 0;
218
219#ifdef HAVE_GETRLIMIT
220 struct rlimit lim;
221
222 /* Complicated links involving lots of files and/or large archives
223 can exhaust the number of file descriptors available to us.
224 If possible, try to allocate more descriptors. */
225 if (getrlimit (RLIMIT_NOFILE, & lim) == 0
226 && lim.rlim_cur < lim.rlim_max)
227 {
228 lim.rlim_cur = lim.rlim_max;
229 if (setrlimit (RLIMIT_NOFILE, &lim) == 0)
230 file->fd = open (file->name, O_RDONLY | O_BINARY);
231 }
232
233 if (file->fd < 0)
234#endif
235 {
236 _bfd_error_handler (_("plugin framework: out of file descriptors. Try using fewer objects/archives\n"));
237 return 0;
238 }
239#endif
240 }
e44f5bef 241
7d0b9ebc 242 if (iobfd == ibfd)
e44f5bef
MT
243 {
244 struct stat stat_buf;
103da91b 245
7d0b9ebc 246 if (fstat (file->fd, &stat_buf))
103da91b
NC
247 {
248 close(file->fd);
249 return 0;
250 }
251
7d0b9ebc
AM
252 file->offset = 0;
253 file->filesize = stat_buf.st_size;
254 }
255 else
256 {
257 file->offset = ibfd->origin;
258 file->filesize = arelt_size (ibfd);
e44f5bef 259 }
7d0b9ebc
AM
260 return 1;
261}
262
263static int
264try_claim (bfd *abfd)
265{
266 int claimed = 0;
267 struct ld_plugin_input_file file;
e44f5bef 268
27b07675 269 file.handle = abfd;
22fe7df8
L
270 if (bfd_plugin_open_input (abfd, &file)
271 && current_plugin->claim_file)
0aa99dcd
L
272 {
273 current_plugin->claim_file (&file, &claimed);
22fe7df8 274 close (file.fd);
0aa99dcd 275 }
22fe7df8 276
7d0b9ebc 277 return claimed;
e44f5bef
MT
278}
279
0a1b45a2
AM
280static bool
281try_load_plugin (const char *pname,
282 struct plugin_list_entry *plugin_list_iter,
283 bfd *abfd,
284 bool build_list_p)
e44f5bef 285{
dcf06b89 286 void *plugin_handle;
3d98c460 287 struct ld_plugin_tv tv[5];
ce3c775b
NC
288 int i;
289 ld_plugin_onload onload;
290 enum ld_plugin_status status;
0a1b45a2 291 bool result = false;
5ae0078c 292
22fe7df8
L
293 /* NB: Each object is independent. Reuse the previous plugin from
294 the last run will lead to wrong result. */
295 if (current_plugin)
dcf06b89
L
296 memset (current_plugin, 0,
297 offsetof (struct plugin_list_entry, next));
0aa99dcd 298
99845b3b
L
299 if (plugin_list_iter)
300 pname = plugin_list_iter->plugin_name;
301
ce3c775b
NC
302 plugin_handle = dlopen (pname, RTLD_NOW);
303 if (!plugin_handle)
304 {
13aa5ceb
NC
305 /* If we are building a list of viable plugins, then
306 we do not bother the user with the details of any
307 plugins that cannot be loaded. */
308 if (! build_list_p)
309 _bfd_error_handler ("Failed to load plugin '%s', reason: %s\n",
310 pname, dlerror ());
0a1b45a2 311 return false;
ce3c775b
NC
312 }
313
22fe7df8 314 if (plugin_list_iter == NULL)
b0ceb98a 315 {
22fe7df8
L
316 size_t length_plugin_name = strlen (pname) + 1;
317 char *plugin_name = bfd_malloc (length_plugin_name);
13aa5ceb 318
22fe7df8 319 if (plugin_name == NULL)
dcf06b89 320 goto short_circuit;
22fe7df8
L
321 plugin_list_iter = bfd_malloc (sizeof *plugin_list_iter);
322 if (plugin_list_iter == NULL)
4b24dd1a 323 {
22fe7df8 324 free (plugin_name);
dcf06b89 325 goto short_circuit;
4b24dd1a 326 }
22fe7df8
L
327 /* Make a copy of PNAME since PNAME from load_plugin () will be
328 freed. */
329 memcpy (plugin_name, pname, length_plugin_name);
330 memset (plugin_list_iter, 0, sizeof (*plugin_list_iter));
331 plugin_list_iter->plugin_name = plugin_name;
332 plugin_list_iter->next = plugin_list;
333 plugin_list = plugin_list_iter;
b0ceb98a
Z
334 }
335
dcf06b89 336 current_plugin = plugin_list_iter;
99845b3b 337 if (build_list_p)
dcf06b89 338 goto short_circuit;
0aa99dcd 339
ce3c775b
NC
340 onload = dlsym (plugin_handle, "onload");
341 if (!onload)
dcf06b89 342 goto short_circuit;
ce3c775b
NC
343
344 i = 0;
345 tv[i].tv_tag = LDPT_MESSAGE;
346 tv[i].tv_u.tv_message = message;
347
348 ++i;
349 tv[i].tv_tag = LDPT_REGISTER_CLAIM_FILE_HOOK;
350 tv[i].tv_u.tv_register_claim_file = register_claim_file;
351
352 ++i;
353 tv[i].tv_tag = LDPT_ADD_SYMBOLS;
354 tv[i].tv_u.tv_add_symbols = add_symbols;
355
c3a1714c
L
356 ++i;
357 tv[i].tv_tag = LDPT_ADD_SYMBOLS_V2;
358 tv[i].tv_u.tv_add_symbols = add_symbols_v2;
359
ce3c775b
NC
360 ++i;
361 tv[i].tv_tag = LDPT_NULL;
362 tv[i].tv_u.tv_val = 0;
363
0aa99dcd 364 /* LTO plugin will call handler hooks to set up plugin handlers. */
ce3c775b
NC
365 status = (*onload)(tv);
366
367 if (status != LDPS_OK)
dcf06b89 368 goto short_circuit;
b0ceb98a 369
5ae0078c
L
370 abfd->plugin_format = bfd_plugin_no;
371
0aa99dcd 372 if (!current_plugin->claim_file)
dcf06b89 373 goto short_circuit;
ce3c775b 374
e44f5bef 375 if (!try_claim (abfd))
dcf06b89 376 goto short_circuit;
e44f5bef 377
5ae0078c 378 abfd->plugin_format = bfd_plugin_yes;
0a1b45a2 379 result = true;
dcf06b89 380
dc1e8a47 381 short_circuit:
dcf06b89
L
382 dlclose (plugin_handle);
383 return result;
ce3c775b
NC
384}
385
5ae0078c 386/* There may be plugin libraries in lib/bfd-plugins. */
99845b3b 387static int has_plugin_list = -1;
5ae0078c 388
cb001c0d 389static bfd_cleanup (*ld_plugin_object_p) (bfd *);
5ae0078c 390
ce3c775b
NC
391static const char *plugin_name;
392
393void
394bfd_plugin_set_plugin (const char *p)
395{
396 plugin_name = p;
5ae0078c
L
397}
398
399/* Return TRUE if a plugin library is used. */
400
0a1b45a2 401bool
5ae0078c
L
402bfd_plugin_specified_p (void)
403{
99845b3b 404 return plugin_list != NULL;
5ae0078c
L
405}
406
7dc3990e
L
407/* Return TRUE if ABFD can be claimed by linker LTO plugin. */
408
0a1b45a2 409bool
7dc3990e
L
410bfd_link_plugin_object_p (bfd *abfd)
411{
412 if (ld_plugin_object_p)
413 return ld_plugin_object_p (abfd) != NULL;
0a1b45a2 414 return false;
7dc3990e
L
415}
416
5ae0078c
L
417extern const bfd_target plugin_vec;
418
419/* Return TRUE if TARGET is a pointer to plugin_vec. */
420
0a1b45a2 421bool
5ae0078c
L
422bfd_plugin_target_p (const bfd_target *target)
423{
424 return target == &plugin_vec;
425}
426
427/* Register OBJECT_P to be used by bfd_plugin_object_p. */
428
429void
cb001c0d 430register_ld_plugin_object_p (bfd_cleanup (*object_p) (bfd *))
5ae0078c
L
431{
432 ld_plugin_object_p = object_p;
ce3c775b
NC
433}
434
99845b3b
L
435static void
436build_plugin_list (bfd *abfd)
ce3c775b 437{
41f37a6f
AM
438 /* The intent was to search ${libdir}/bfd-plugins for plugins, but
439 unfortunately the original implementation wasn't precisely that
440 when configuring binutils using --libdir. Search in the proper
441 path first, then the old one for backwards compatibility. */
442 static const char *path[]
443 = { LIBDIR "/bfd-plugins", BINDIR "/../lib/bfd-plugins" };
444 struct stat last_st;
41f37a6f 445 unsigned int i;
ce3c775b 446
99845b3b
L
447 if (has_plugin_list >= 0)
448 return;
ce3c775b 449
41f37a6f
AM
450 /* Try not to search the same dir twice, by looking at st_dev and
451 st_ino for the dir. If we are on a file system that always sets
452 st_ino to zero or the actual st_ino is zero we might waste some
453 time, but that doesn't matter too much. */
454 last_st.st_dev = 0;
455 last_st.st_ino = 0;
456 for (i = 0; i < sizeof (path) / sizeof (path[0]); i++)
ce3c775b 457 {
41f37a6f
AM
458 char *plugin_dir = make_relative_prefix (plugin_program_name,
459 BINDIR,
460 path[i]);
461 if (plugin_dir)
462 {
463 struct stat st;
464 DIR *d;
465
466 if (stat (plugin_dir, &st) == 0
467 && S_ISDIR (st.st_mode)
468 && !(last_st.st_dev == st.st_dev
469 && last_st.st_ino == st.st_ino
470 && st.st_ino != 0)
471 && (d = opendir (plugin_dir)) != NULL)
472 {
473 struct dirent *ent;
474
475 last_st.st_dev = st.st_dev;
476 last_st.st_ino = st.st_ino;
477 while ((ent = readdir (d)) != NULL)
478 {
479 char *full_name;
480
481 full_name = concat (plugin_dir, "/", ent->d_name, NULL);
482 if (stat (full_name, &st) == 0 && S_ISREG (st.st_mode))
0a1b45a2 483 (void) try_load_plugin (full_name, NULL, abfd, true);
41f37a6f 484 free (full_name);
41f37a6f
AM
485 }
486 closedir (d);
487 }
488 free (plugin_dir);
489 }
ce3c775b
NC
490 }
491
99845b3b
L
492 has_plugin_list = plugin_list != NULL;
493}
494
0a1b45a2 495static bool
99845b3b
L
496load_plugin (bfd *abfd)
497{
498 struct plugin_list_entry *plugin_list_iter;
499
500 if (plugin_name)
0a1b45a2 501 return try_load_plugin (plugin_name, plugin_list, abfd, false);
99845b3b
L
502
503 if (plugin_program_name == NULL)
0a1b45a2 504 return false;
99845b3b
L
505
506 build_plugin_list (abfd);
507
508 for (plugin_list_iter = plugin_list;
509 plugin_list_iter;
510 plugin_list_iter = plugin_list_iter->next)
0a1b45a2
AM
511 if (try_load_plugin (NULL, plugin_list_iter, abfd, false))
512 return true;
99845b3b 513
0a1b45a2 514 return false;
ce3c775b
NC
515}
516
517
cb001c0d 518static bfd_cleanup
ce3c775b
NC
519bfd_plugin_object_p (bfd *abfd)
520{
5ae0078c
L
521 if (ld_plugin_object_p)
522 return ld_plugin_object_p (abfd);
523
49f30d83 524 if (abfd->plugin_format == bfd_plugin_unknown && !load_plugin (abfd))
ce3c775b
NC
525 return NULL;
526
cb001c0d 527 return abfd->plugin_format == bfd_plugin_yes ? _bfd_no_cleanup : NULL;
ce3c775b
NC
528}
529
530/* Copy any private info we understand from the input bfd
531 to the output bfd. */
532
0a1b45a2 533static bool
ce3c775b
NC
534bfd_plugin_bfd_copy_private_bfd_data (bfd *ibfd ATTRIBUTE_UNUSED,
535 bfd *obfd ATTRIBUTE_UNUSED)
536{
537 BFD_ASSERT (0);
0a1b45a2 538 return true;
ce3c775b
NC
539}
540
541/* Copy any private info we understand from the input section
542 to the output section. */
543
0a1b45a2 544static bool
ce3c775b
NC
545bfd_plugin_bfd_copy_private_section_data (bfd *ibfd ATTRIBUTE_UNUSED,
546 asection *isection ATTRIBUTE_UNUSED,
547 bfd *obfd ATTRIBUTE_UNUSED,
548 asection *osection ATTRIBUTE_UNUSED)
549{
550 BFD_ASSERT (0);
0a1b45a2 551 return true;
ce3c775b
NC
552}
553
554/* Copy any private info we understand from the input symbol
555 to the output symbol. */
556
0a1b45a2 557static bool
ce3c775b
NC
558bfd_plugin_bfd_copy_private_symbol_data (bfd *ibfd ATTRIBUTE_UNUSED,
559 asymbol *isymbol ATTRIBUTE_UNUSED,
560 bfd *obfd ATTRIBUTE_UNUSED,
561 asymbol *osymbol ATTRIBUTE_UNUSED)
562{
563 BFD_ASSERT (0);
0a1b45a2 564 return true;
ce3c775b
NC
565}
566
0a1b45a2 567static bool
ce3c775b
NC
568bfd_plugin_bfd_print_private_bfd_data (bfd *abfd ATTRIBUTE_UNUSED, PTR ptr ATTRIBUTE_UNUSED)
569{
570 BFD_ASSERT (0);
0a1b45a2 571 return true;
ce3c775b
NC
572}
573
574static char *
575bfd_plugin_core_file_failing_command (bfd *abfd ATTRIBUTE_UNUSED)
576{
577 BFD_ASSERT (0);
578 return NULL;
579}
580
581static int
582bfd_plugin_core_file_failing_signal (bfd *abfd ATTRIBUTE_UNUSED)
261b8d08
PA
583{
584 BFD_ASSERT (0);
585 return 0;
586}
587
588static int
589bfd_plugin_core_file_pid (bfd *abfd ATTRIBUTE_UNUSED)
ce3c775b
NC
590{
591 BFD_ASSERT (0);
592 return 0;
593}
594
595static long
596bfd_plugin_get_symtab_upper_bound (bfd *abfd)
597{
598 struct plugin_data_struct *plugin_data = abfd->tdata.plugin_data;
599 long nsyms = plugin_data->nsyms;
600
601 BFD_ASSERT (nsyms >= 0);
602
603 return ((nsyms + 1) * sizeof (asymbol *));
604}
605
606static flagword
607convert_flags (const struct ld_plugin_symbol *sym)
608{
609 switch (sym->def)
68ffbac6 610 {
ce3c775b
NC
611 case LDPK_DEF:
612 case LDPK_COMMON:
613 case LDPK_UNDEF:
614 return BSF_GLOBAL;
615
616 case LDPK_WEAKUNDEF:
617 case LDPK_WEAKDEF:
618 return BSF_GLOBAL | BSF_WEAK;
619
620 default:
621 BFD_ASSERT (0);
622 return 0;
623 }
624}
625
626static long
627bfd_plugin_canonicalize_symtab (bfd *abfd,
628 asymbol **alocation)
629{
630 struct plugin_data_struct *plugin_data = abfd->tdata.plugin_data;
631 long nsyms = plugin_data->nsyms;
632 const struct ld_plugin_symbol *syms = plugin_data->syms;
c3a1714c
L
633 static asection fake_text_section
634 = BFD_FAKE_SECTION (fake_text_section, NULL, "plug", 0,
a288c270 635 SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS);
c3a1714c
L
636 static asection fake_data_section
637 = BFD_FAKE_SECTION (fake_data_section, NULL, "plug", 0,
638 SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS);
639 static asection fake_bss_section
640 = BFD_FAKE_SECTION (fake_bss_section, NULL, "plug", 0,
641 SEC_ALLOC);
a288c270
AM
642 static asection fake_common_section
643 = BFD_FAKE_SECTION (fake_common_section, NULL, "plug", 0, SEC_IS_COMMON);
3d98c460 644 int i;
ce3c775b 645
ce3c775b
NC
646 for (i = 0; i < nsyms; i++)
647 {
68ffbac6 648 asymbol *s = bfd_alloc (abfd, sizeof (asymbol));
ce3c775b
NC
649
650 BFD_ASSERT (s);
651 alocation[i] = s;
652
653 s->the_bfd = abfd;
654 s->name = syms[i].name;
655 s->value = 0;
656 s->flags = convert_flags (&syms[i]);
657 switch (syms[i].def)
658 {
659 case LDPK_COMMON:
660 s->section = &fake_common_section;
661 break;
662 case LDPK_UNDEF:
663 case LDPK_WEAKUNDEF:
664 s->section = bfd_und_section_ptr;
665 break;
666 case LDPK_DEF:
667 case LDPK_WEAKDEF:
c3a1714c
L
668 if (current_plugin->has_symbol_type)
669 switch (syms[i].symbol_type)
670 {
b5ffa918
NC
671 default:
672 /* FIXME: Should we issue an error here ? */
c3a1714c
L
673 case LDST_UNKNOWN:
674 /* What is the best fake section for LDST_UNKNOWN? */
675 case LDST_FUNCTION:
676 s->section = &fake_text_section;
677 break;
678 case LDST_VARIABLE:
679 if (syms[i].section_kind == LDSSK_BSS)
680 s->section = &fake_bss_section;
681 else
682 s->section = &fake_data_section;
683 break;
684 }
685 else
3d98c460 686 s->section = &fake_text_section;
ce3c775b
NC
687 break;
688 default:
689 BFD_ASSERT (0);
690 }
691
692 s->udata.p = (void *) &syms[i];
693 }
694
695 return nsyms;
696}
697
698static void
699bfd_plugin_print_symbol (bfd *abfd ATTRIBUTE_UNUSED,
700 PTR afile ATTRIBUTE_UNUSED,
701 asymbol *symbol ATTRIBUTE_UNUSED,
702 bfd_print_symbol_type how ATTRIBUTE_UNUSED)
703{
704 BFD_ASSERT (0);
705}
706
707static void
708bfd_plugin_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
709 asymbol *symbol,
710 symbol_info *ret)
711{
712 bfd_symbol_info (symbol, ret);
713}
714
715/* Make an empty symbol. */
716
717static asymbol *
718bfd_plugin_make_empty_symbol (bfd *abfd)
719{
d3ce72d0
NC
720 asymbol *new_symbol = bfd_zalloc (abfd, sizeof (asymbol));
721 if (new_symbol == NULL)
722 return new_symbol;
723 new_symbol->the_bfd = abfd;
724 return new_symbol;
ce3c775b
NC
725}
726
727static int
728bfd_plugin_sizeof_headers (bfd *a ATTRIBUTE_UNUSED,
729 struct bfd_link_info *info ATTRIBUTE_UNUSED)
730{
731 BFD_ASSERT (0);
732 return 0;
733}
734
ce3c775b
NC
735const bfd_target plugin_vec =
736{
737 "plugin", /* Name. */
738 bfd_target_unknown_flavour,
739 BFD_ENDIAN_LITTLE, /* Target byte order. */
740 BFD_ENDIAN_LITTLE, /* Target headers byte order. */
741 (HAS_RELOC | EXEC_P | /* Object flags. */
742 HAS_LINENO | HAS_DEBUG |
743 HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
744 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
745 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* Section flags. */
746 0, /* symbol_leading_char. */
747 '/', /* ar_pad_char. */
748 15, /* ar_max_namelen. */
64bfc258 749 255, /* match priority. */
d1bcae83 750 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */
ce3c775b
NC
751
752 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
753 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
754 bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */
755 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
756 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
757 bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */
758
759 { /* bfd_check_format. */
760 _bfd_dummy_target,
761 bfd_plugin_object_p,
762 bfd_generic_archive_p,
763 _bfd_dummy_target
764 },
765 { /* bfd_set_format. */
d00dd7dc
AM
766 _bfd_bool_bfd_false_error,
767 _bfd_bool_bfd_false_error,
ce3c775b 768 _bfd_generic_mkarchive,
d00dd7dc 769 _bfd_bool_bfd_false_error,
ce3c775b
NC
770 },
771 { /* bfd_write_contents. */
d00dd7dc
AM
772 _bfd_bool_bfd_false_error,
773 _bfd_bool_bfd_false_error,
ce3c775b 774 _bfd_write_archive_contents,
d00dd7dc 775 _bfd_bool_bfd_false_error,
ce3c775b
NC
776 },
777
778 BFD_JUMP_TABLE_GENERIC (bfd_plugin),
779 BFD_JUMP_TABLE_COPY (bfd_plugin),
780 BFD_JUMP_TABLE_CORE (bfd_plugin),
e6cc316a
L
781#ifdef USE_64_BIT_ARCHIVE
782 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_64_bit),
783#else
ce3c775b 784 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),
e6cc316a 785#endif
ce3c775b
NC
786 BFD_JUMP_TABLE_SYMBOLS (bfd_plugin),
787 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
788 BFD_JUMP_TABLE_WRITE (bfd_plugin),
789 BFD_JUMP_TABLE_LINK (bfd_plugin),
790 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
791
792 NULL,
793
07d6d2b8 794 NULL /* backend_data. */
ce3c775b 795};
1e927850 796#endif /* BFD_SUPPORTS_PLUGINS */
This page took 0.752054 seconds and 4 git commands to generate.