PR26150, Assertion when asm() defines global symbols, -flto and --start-group
[deliverable/binutils-gdb.git] / ld / ldmain.c
1 /* Main program of GNU linker.
2 Copyright (C) 1991-2020 Free Software Foundation, Inc.
3 Written by Steve Chamberlain steve@cygnus.com
4
5 This file is part of the GNU Binutils.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22 #include "sysdep.h"
23 #include "bfd.h"
24 #include "safe-ctype.h"
25 #include "libiberty.h"
26 #include "progress.h"
27 #include "bfdlink.h"
28 #include "ctf-api.h"
29 #include "filenames.h"
30 #include "elf/common.h"
31
32 #include "ld.h"
33 #include "ldmain.h"
34 #include "ldmisc.h"
35 #include "ldwrite.h"
36 #include "ldexp.h"
37 #include "ldlang.h"
38 #include <ldgram.h>
39 #include "ldlex.h"
40 #include "ldfile.h"
41 #include "ldemul.h"
42 #include "ldctor.h"
43 #if BFD_SUPPORTS_PLUGINS
44 #include "plugin.h"
45 #include "plugin-api.h"
46 #endif /* BFD_SUPPORTS_PLUGINS */
47
48 /* Somewhere above, sys/stat.h got included. */
49 #if !defined(S_ISDIR) && defined(S_IFDIR)
50 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
51 #endif
52
53 #include <string.h>
54
55 #ifndef TARGET_SYSTEM_ROOT
56 #define TARGET_SYSTEM_ROOT ""
57 #endif
58
59 /* EXPORTS */
60
61 FILE *saved_script_handle = NULL;
62 FILE *previous_script_handle = NULL;
63 bfd_boolean force_make_executable = FALSE;
64
65 char *default_target;
66 const char *output_filename = "a.out";
67
68 /* Name this program was invoked by. */
69 char *program_name;
70
71 /* The prefix for system library directories. */
72 const char *ld_sysroot;
73
74 /* The canonical representation of ld_sysroot. */
75 char *ld_canon_sysroot;
76 int ld_canon_sysroot_len;
77
78 /* Set by -G argument, for targets like MIPS ELF. */
79 int g_switch_value = 8;
80
81 /* Nonzero means print names of input files as processed. */
82 unsigned int trace_files;
83
84 /* Nonzero means report actions taken by the linker, and describe the linker script in use. */
85 bfd_boolean verbose;
86
87 /* Nonzero means version number was printed, so exit successfully
88 instead of complaining if no input files are given. */
89 bfd_boolean version_printed;
90
91 /* TRUE if we should demangle symbol names. */
92 bfd_boolean demangling;
93
94 args_type command_line;
95
96 ld_config_type config;
97
98 sort_type sort_section;
99
100 static const char *get_sysroot
101 (int, char **);
102 static char *get_emulation
103 (int, char **);
104 static bfd_boolean add_archive_element
105 (struct bfd_link_info *, bfd *, const char *, bfd **);
106 static void multiple_definition
107 (struct bfd_link_info *, struct bfd_link_hash_entry *,
108 bfd *, asection *, bfd_vma);
109 static void multiple_common
110 (struct bfd_link_info *, struct bfd_link_hash_entry *,
111 bfd *, enum bfd_link_hash_type, bfd_vma);
112 static void add_to_set
113 (struct bfd_link_info *, struct bfd_link_hash_entry *,
114 bfd_reloc_code_real_type, bfd *, asection *, bfd_vma);
115 static void constructor_callback
116 (struct bfd_link_info *, bfd_boolean, const char *, bfd *,
117 asection *, bfd_vma);
118 static void warning_callback
119 (struct bfd_link_info *, const char *, const char *, bfd *,
120 asection *, bfd_vma);
121 static void warning_find_reloc
122 (bfd *, asection *, void *);
123 static void undefined_symbol
124 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma,
125 bfd_boolean);
126 static void reloc_overflow
127 (struct bfd_link_info *, struct bfd_link_hash_entry *, const char *,
128 const char *, bfd_vma, bfd *, asection *, bfd_vma);
129 static void reloc_dangerous
130 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma);
131 static void unattached_reloc
132 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma);
133 static bfd_boolean notice
134 (struct bfd_link_info *, struct bfd_link_hash_entry *,
135 struct bfd_link_hash_entry *, bfd *, asection *, bfd_vma, flagword);
136
137 static struct bfd_link_callbacks link_callbacks =
138 {
139 add_archive_element,
140 multiple_definition,
141 multiple_common,
142 add_to_set,
143 constructor_callback,
144 warning_callback,
145 undefined_symbol,
146 reloc_overflow,
147 reloc_dangerous,
148 unattached_reloc,
149 notice,
150 einfo,
151 info_msg,
152 minfo,
153 ldlang_override_segment_assignment,
154 ldlang_ctf_apply_strsym,
155 ldlang_write_ctf_late
156 };
157
158 static bfd_assert_handler_type default_bfd_assert_handler;
159 static bfd_error_handler_type default_bfd_error_handler;
160
161 struct bfd_link_info link_info;
162 \f
163 static void
164 ld_cleanup (void)
165 {
166 bfd_cache_close_all ();
167 #if BFD_SUPPORTS_PLUGINS
168 plugin_call_cleanup ();
169 #endif
170 if (output_filename && delete_output_file_on_failure)
171 unlink_if_ordinary (output_filename);
172 }
173
174 /* Hook to notice BFD assertions. */
175
176 static void
177 ld_bfd_assert_handler (const char *fmt, const char *bfdver,
178 const char *file, int line)
179 {
180 config.make_executable = FALSE;
181 (*default_bfd_assert_handler) (fmt, bfdver, file, line);
182 }
183
184 /* Hook the bfd error/warning handler for --fatal-warnings. */
185
186 static void
187 ld_bfd_error_handler (const char *fmt, va_list ap)
188 {
189 if (config.fatal_warnings)
190 config.make_executable = FALSE;
191 (*default_bfd_error_handler) (fmt, ap);
192 }
193
194 int
195 main (int argc, char **argv)
196 {
197 char *emulation;
198 long start_time = get_run_time ();
199
200 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
201 setlocale (LC_MESSAGES, "");
202 #endif
203 #if defined (HAVE_SETLOCALE)
204 setlocale (LC_CTYPE, "");
205 #endif
206 bindtextdomain (PACKAGE, LOCALEDIR);
207 textdomain (PACKAGE);
208
209 program_name = argv[0];
210 xmalloc_set_program_name (program_name);
211
212 START_PROGRESS (program_name, 0);
213
214 expandargv (&argc, &argv);
215
216 if (bfd_init () != BFD_INIT_MAGIC)
217 einfo (_("%F%P: fatal error: libbfd ABI mismatch\n"));
218
219 bfd_set_error_program_name (program_name);
220
221 /* We want to notice and fail on those nasty BFD assertions which are
222 likely to signal incorrect output being generated but otherwise may
223 leave no trace. */
224 default_bfd_assert_handler = bfd_set_assert_handler (ld_bfd_assert_handler);
225
226 /* Also hook the bfd error/warning handler for --fatal-warnings. */
227 default_bfd_error_handler = bfd_set_error_handler (ld_bfd_error_handler);
228
229 xatexit (ld_cleanup);
230
231 /* Set up the sysroot directory. */
232 ld_sysroot = get_sysroot (argc, argv);
233 if (*ld_sysroot)
234 ld_canon_sysroot = lrealpath (ld_sysroot);
235 if (ld_canon_sysroot)
236 {
237 ld_canon_sysroot_len = strlen (ld_canon_sysroot);
238
239 /* is_sysrooted_pathname() relies on no trailing dirsep. */
240 if (ld_canon_sysroot_len > 0
241 && IS_DIR_SEPARATOR (ld_canon_sysroot [ld_canon_sysroot_len - 1]))
242 ld_canon_sysroot [--ld_canon_sysroot_len] = '\0';
243 }
244 else
245 ld_canon_sysroot_len = -1;
246
247 /* Set the default BFD target based on the configured target. Doing
248 this permits the linker to be configured for a particular target,
249 and linked against a shared BFD library which was configured for
250 a different target. The macro TARGET is defined by Makefile. */
251 if (!bfd_set_default_target (TARGET))
252 {
253 einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET);
254 xexit (1);
255 }
256
257 #if YYDEBUG
258 {
259 extern int yydebug;
260 yydebug = 1;
261 }
262 #endif
263
264 config.build_constructors = TRUE;
265 config.rpath_separator = ':';
266 config.split_by_reloc = (unsigned) -1;
267 config.split_by_file = (bfd_size_type) -1;
268 config.make_executable = TRUE;
269 config.magic_demand_paged = TRUE;
270 config.text_read_only = TRUE;
271 config.print_map_discarded = TRUE;
272 link_info.disable_target_specific_optimizations = -1;
273
274 command_line.warn_mismatch = TRUE;
275 command_line.warn_search_mismatch = TRUE;
276 command_line.check_section_addresses = -1;
277
278 /* We initialize DEMANGLING based on the environment variable
279 COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
280 output of the linker, unless COLLECT_NO_DEMANGLE is set in the
281 environment. Acting the same way here lets us provide the same
282 interface by default. */
283 demangling = getenv ("COLLECT_NO_DEMANGLE") == NULL;
284
285 link_info.allow_undefined_version = TRUE;
286 link_info.keep_memory = TRUE;
287 link_info.combreloc = TRUE;
288 link_info.strip_discarded = TRUE;
289 link_info.prohibit_multiple_definition_absolute = FALSE;
290 link_info.textrel_check = DEFAULT_LD_TEXTREL_CHECK;
291 link_info.emit_hash = DEFAULT_EMIT_SYSV_HASH;
292 link_info.emit_gnu_hash = DEFAULT_EMIT_GNU_HASH;
293 link_info.callbacks = &link_callbacks;
294 link_info.input_bfds_tail = &link_info.input_bfds;
295 /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init
296 and _fini symbols. We are compatible. */
297 link_info.init_function = "_init";
298 link_info.fini_function = "_fini";
299 link_info.relax_pass = 1;
300 link_info.extern_protected_data = -1;
301 link_info.dynamic_undefined_weak = -1;
302 link_info.pei386_auto_import = -1;
303 link_info.spare_dynamic_tags = 5;
304 link_info.path_separator = ':';
305 #ifdef DEFAULT_FLAG_COMPRESS_DEBUG
306 link_info.compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
307 #endif
308 #ifdef DEFAULT_NEW_DTAGS
309 link_info.new_dtags = DEFAULT_NEW_DTAGS;
310 #endif
311 link_info.start_stop_visibility = STV_PROTECTED;
312
313 ldfile_add_arch ("");
314 emulation = get_emulation (argc, argv);
315 ldemul_choose_mode (emulation);
316 default_target = ldemul_choose_target (argc, argv);
317 lang_init ();
318 ldexp_init ();
319 ldemul_before_parse ();
320 lang_has_input_file = FALSE;
321 parse_args (argc, argv);
322
323 if (config.hash_table_size != 0)
324 bfd_hash_set_default_size (config.hash_table_size);
325
326 #if BFD_SUPPORTS_PLUGINS
327 /* Now all the plugin arguments have been gathered, we can load them. */
328 plugin_load_plugins ();
329 #endif /* BFD_SUPPORTS_PLUGINS */
330
331 ldemul_set_symbols ();
332
333 /* If we have not already opened and parsed a linker script,
334 try the default script from command line first. */
335 if (saved_script_handle == NULL
336 && command_line.default_script != NULL)
337 {
338 ldfile_open_script_file (command_line.default_script);
339 parser_input = input_script;
340 yyparse ();
341 }
342
343 /* If we have not already opened and parsed a linker script
344 read the emulation's appropriate default script. */
345 if (saved_script_handle == NULL)
346 {
347 int isfile;
348 char *s = ldemul_get_script (&isfile);
349
350 if (isfile)
351 ldfile_open_default_command_file (s);
352 else
353 {
354 lex_string = s;
355 lex_redirect (s, _("built in linker script"), 1);
356 }
357 parser_input = input_script;
358 yyparse ();
359 lex_string = NULL;
360 }
361
362 if (verbose)
363 {
364 if (saved_script_handle)
365 info_msg (_("using external linker script:"));
366 else
367 info_msg (_("using internal linker script:"));
368 info_msg ("\n==================================================\n");
369
370 if (saved_script_handle)
371 {
372 static const int ld_bufsz = 8193;
373 size_t n;
374 char *buf = (char *) xmalloc (ld_bufsz);
375
376 rewind (saved_script_handle);
377 while ((n = fread (buf, 1, ld_bufsz - 1, saved_script_handle)) > 0)
378 {
379 buf[n] = 0;
380 info_msg ("%s", buf);
381 }
382 rewind (saved_script_handle);
383 free (buf);
384 }
385 else
386 {
387 int isfile;
388
389 info_msg (ldemul_get_script (&isfile));
390 }
391
392 info_msg ("\n==================================================\n");
393 }
394
395 if (command_line.force_group_allocation
396 || !bfd_link_relocatable (&link_info))
397 link_info.resolve_section_groups = TRUE;
398 else
399 link_info.resolve_section_groups = FALSE;
400
401 if (command_line.print_output_format)
402 info_msg ("%s\n", lang_get_output_target ());
403
404 lang_final ();
405
406 /* If the only command line argument has been -v or --version or --verbose
407 then ignore any input files provided by linker scripts and exit now.
408 We do not want to create an output file when the linker is just invoked
409 to provide version information. */
410 if (argc == 2 && version_printed)
411 xexit (0);
412
413 if (link_info.inhibit_common_definition && !bfd_link_dll (&link_info))
414 einfo (_("%F%P: --no-define-common may not be used without -shared\n"));
415
416 if (!lang_has_input_file)
417 {
418 if (version_printed || command_line.print_output_format)
419 xexit (0);
420 einfo (_("%F%P: no input files\n"));
421 }
422
423 if (verbose)
424 info_msg (_("%P: mode %s\n"), emulation);
425
426 ldemul_after_parse ();
427
428 if (config.map_filename)
429 {
430 if (strcmp (config.map_filename, "-") == 0)
431 {
432 config.map_file = stdout;
433 }
434 else
435 {
436 config.map_file = fopen (config.map_filename, FOPEN_WT);
437 if (config.map_file == (FILE *) NULL)
438 {
439 bfd_set_error (bfd_error_system_call);
440 einfo (_("%F%P: cannot open map file %s: %E\n"),
441 config.map_filename);
442 }
443 }
444 link_info.has_map_file = TRUE;
445 }
446
447 lang_process ();
448
449 /* Print error messages for any missing symbols, for any warning
450 symbols, and possibly multiple definitions. */
451 if (bfd_link_relocatable (&link_info))
452 link_info.output_bfd->flags &= ~EXEC_P;
453 else
454 link_info.output_bfd->flags |= EXEC_P;
455
456 if ((link_info.compress_debug & COMPRESS_DEBUG))
457 {
458 link_info.output_bfd->flags |= BFD_COMPRESS;
459 if (link_info.compress_debug == COMPRESS_DEBUG_GABI_ZLIB)
460 link_info.output_bfd->flags |= BFD_COMPRESS_GABI;
461 }
462
463 ldwrite ();
464
465 if (config.map_file != NULL)
466 lang_map ();
467 if (command_line.cref)
468 output_cref (config.map_file != NULL ? config.map_file : stdout);
469 if (nocrossref_list != NULL)
470 check_nocrossrefs ();
471 if (command_line.print_memory_usage)
472 lang_print_memory_usage ();
473 #if 0
474 {
475 struct bfd_link_hash_entry *h;
476
477 h = bfd_link_hash_lookup (link_info.hash, "__image_base__", 0,0,1);
478 fprintf (stderr, "lookup = %p val %lx\n", h, h ? h->u.def.value : 1);
479 }
480 #endif
481 ldexp_finish ();
482 lang_finish ();
483
484 /* Even if we're producing relocatable output, some non-fatal errors should
485 be reported in the exit status. (What non-fatal errors, if any, do we
486 want to ignore for relocatable output?) */
487 if (!config.make_executable && !force_make_executable)
488 {
489 if (verbose)
490 einfo (_("%P: link errors found, deleting executable `%s'\n"),
491 output_filename);
492
493 /* The file will be removed by ld_cleanup. */
494 xexit (1);
495 }
496 else
497 {
498 if (!bfd_close (link_info.output_bfd))
499 einfo (_("%F%P: %pB: final close failed: %E\n"), link_info.output_bfd);
500
501 /* If the --force-exe-suffix is enabled, and we're making an
502 executable file and it doesn't end in .exe, copy it to one
503 which does. */
504 if (!bfd_link_relocatable (&link_info)
505 && command_line.force_exe_suffix)
506 {
507 int len = strlen (output_filename);
508
509 if (len < 4
510 || (strcasecmp (output_filename + len - 4, ".exe") != 0
511 && strcasecmp (output_filename + len - 4, ".dll") != 0))
512 {
513 FILE *src;
514 FILE *dst;
515 const int bsize = 4096;
516 char *buf = (char *) xmalloc (bsize);
517 int l;
518 char *dst_name = (char *) xmalloc (len + 5);
519
520 strcpy (dst_name, output_filename);
521 strcat (dst_name, ".exe");
522 src = fopen (output_filename, FOPEN_RB);
523 dst = fopen (dst_name, FOPEN_WB);
524
525 if (!src)
526 einfo (_("%F%P: unable to open for source of copy `%s'\n"),
527 output_filename);
528 if (!dst)
529 einfo (_("%F%P: unable to open for destination of copy `%s'\n"),
530 dst_name);
531 while ((l = fread (buf, 1, bsize, src)) > 0)
532 {
533 int done = fwrite (buf, 1, l, dst);
534
535 if (done != l)
536 einfo (_("%P: error writing file `%s'\n"), dst_name);
537 }
538
539 fclose (src);
540 if (fclose (dst) == EOF)
541 einfo (_("%P: error closing file `%s'\n"), dst_name);
542 free (dst_name);
543 free (buf);
544 }
545 }
546 }
547
548 END_PROGRESS (program_name);
549
550 if (config.stats)
551 {
552 long run_time = get_run_time () - start_time;
553
554 fflush (stdout);
555 fprintf (stderr, _("%s: total time in link: %ld.%06ld\n"),
556 program_name, run_time / 1000000, run_time % 1000000);
557 fflush (stderr);
558 }
559
560 /* Prevent ld_cleanup from doing anything, after a successful link. */
561 output_filename = NULL;
562
563 xexit (0);
564 return 0;
565 }
566
567 /* If the configured sysroot is relocatable, try relocating it based on
568 default prefix FROM. Return the relocated directory if it exists,
569 otherwise return null. */
570
571 static char *
572 get_relative_sysroot (const char *from ATTRIBUTE_UNUSED)
573 {
574 #ifdef TARGET_SYSTEM_ROOT_RELOCATABLE
575 char *path;
576 struct stat s;
577
578 path = make_relative_prefix (program_name, from, TARGET_SYSTEM_ROOT);
579 if (path)
580 {
581 if (stat (path, &s) == 0 && S_ISDIR (s.st_mode))
582 return path;
583 free (path);
584 }
585 #endif
586 return 0;
587 }
588
589 /* Return the sysroot directory. Return "" if no sysroot is being used. */
590
591 static const char *
592 get_sysroot (int argc, char **argv)
593 {
594 int i;
595 const char *path = NULL;
596
597 for (i = 1; i < argc; i++)
598 if (CONST_STRNEQ (argv[i], "--sysroot="))
599 path = argv[i] + strlen ("--sysroot=");
600
601 if (!path)
602 path = get_relative_sysroot (BINDIR);
603
604 if (!path)
605 path = get_relative_sysroot (TOOLBINDIR);
606
607 if (!path)
608 path = TARGET_SYSTEM_ROOT;
609
610 if (IS_DIR_SEPARATOR (*path) && path[1] == 0)
611 path = "";
612
613 return path;
614 }
615
616 /* We need to find any explicitly given emulation in order to initialize the
617 state that's needed by the lex&yacc argument parser (parse_args). */
618
619 static char *
620 get_emulation (int argc, char **argv)
621 {
622 char *emulation;
623 int i;
624
625 emulation = getenv (EMULATION_ENVIRON);
626 if (emulation == NULL)
627 emulation = DEFAULT_EMULATION;
628
629 for (i = 1; i < argc; i++)
630 {
631 if (CONST_STRNEQ (argv[i], "-m"))
632 {
633 if (argv[i][2] == '\0')
634 {
635 /* -m EMUL */
636 if (i < argc - 1)
637 {
638 emulation = argv[i + 1];
639 i++;
640 }
641 else
642 einfo (_("%F%P: missing argument to -m\n"));
643 }
644 else if (strcmp (argv[i], "-mips1") == 0
645 || strcmp (argv[i], "-mips2") == 0
646 || strcmp (argv[i], "-mips3") == 0
647 || strcmp (argv[i], "-mips4") == 0
648 || strcmp (argv[i], "-mips5") == 0
649 || strcmp (argv[i], "-mips32") == 0
650 || strcmp (argv[i], "-mips32r2") == 0
651 || strcmp (argv[i], "-mips32r6") == 0
652 || strcmp (argv[i], "-mips64") == 0
653 || strcmp (argv[i], "-mips64r2") == 0
654 || strcmp (argv[i], "-mips64r6") == 0)
655 {
656 /* FIXME: The arguments -mips1, -mips2, -mips3, etc. are
657 passed to the linker by some MIPS compilers. They
658 generally tell the linker to use a slightly different
659 library path. Perhaps someday these should be
660 implemented as emulations; until then, we just ignore
661 the arguments and hope that nobody ever creates
662 emulations named ips1, ips2 or ips3. */
663 }
664 else if (strcmp (argv[i], "-m486") == 0)
665 {
666 /* FIXME: The argument -m486 is passed to the linker on
667 some Linux systems. Hope that nobody creates an
668 emulation named 486. */
669 }
670 else
671 {
672 /* -mEMUL */
673 emulation = &argv[i][2];
674 }
675 }
676 }
677
678 return emulation;
679 }
680
681 void
682 add_ysym (const char *name)
683 {
684 if (link_info.notice_hash == NULL)
685 {
686 link_info.notice_hash
687 = (struct bfd_hash_table *) xmalloc (sizeof (struct bfd_hash_table));
688 if (!bfd_hash_table_init_n (link_info.notice_hash,
689 bfd_hash_newfunc,
690 sizeof (struct bfd_hash_entry),
691 61))
692 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
693 }
694
695 if (bfd_hash_lookup (link_info.notice_hash, name, TRUE, TRUE) == NULL)
696 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
697 }
698
699 void
700 add_ignoresym (struct bfd_link_info *info, const char *name)
701 {
702 if (info->ignore_hash == NULL)
703 {
704 info->ignore_hash = xmalloc (sizeof (struct bfd_hash_table));
705 if (!bfd_hash_table_init_n (info->ignore_hash,
706 bfd_hash_newfunc,
707 sizeof (struct bfd_hash_entry),
708 61))
709 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
710 }
711
712 if (bfd_hash_lookup (info->ignore_hash, name, TRUE, TRUE) == NULL)
713 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
714 }
715
716 /* Record a symbol to be wrapped, from the --wrap option. */
717
718 void
719 add_wrap (const char *name)
720 {
721 if (link_info.wrap_hash == NULL)
722 {
723 link_info.wrap_hash
724 = (struct bfd_hash_table *) xmalloc (sizeof (struct bfd_hash_table));
725 if (!bfd_hash_table_init_n (link_info.wrap_hash,
726 bfd_hash_newfunc,
727 sizeof (struct bfd_hash_entry),
728 61))
729 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
730 }
731
732 if (bfd_hash_lookup (link_info.wrap_hash, name, TRUE, TRUE) == NULL)
733 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
734 }
735
736 /* Handle the -retain-symbols-file option. */
737
738 void
739 add_keepsyms_file (const char *filename)
740 {
741 FILE *file;
742 char *buf;
743 size_t bufsize;
744 int c;
745
746 if (link_info.strip == strip_some)
747 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
748
749 file = fopen (filename, "r");
750 if (file == NULL)
751 {
752 bfd_set_error (bfd_error_system_call);
753 einfo ("%X%P: %s: %E\n", filename);
754 return;
755 }
756
757 link_info.keep_hash = (struct bfd_hash_table *)
758 xmalloc (sizeof (struct bfd_hash_table));
759 if (!bfd_hash_table_init (link_info.keep_hash, bfd_hash_newfunc,
760 sizeof (struct bfd_hash_entry)))
761 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
762
763 bufsize = 100;
764 buf = (char *) xmalloc (bufsize);
765
766 c = getc (file);
767 while (c != EOF)
768 {
769 while (ISSPACE (c))
770 c = getc (file);
771
772 if (c != EOF)
773 {
774 size_t len = 0;
775
776 while (!ISSPACE (c) && c != EOF)
777 {
778 buf[len] = c;
779 ++len;
780 if (len >= bufsize)
781 {
782 bufsize *= 2;
783 buf = (char *) xrealloc (buf, bufsize);
784 }
785 c = getc (file);
786 }
787
788 buf[len] = '\0';
789
790 if (bfd_hash_lookup (link_info.keep_hash, buf, TRUE, TRUE) == NULL)
791 einfo (_("%F%P: bfd_hash_lookup for insertion failed: %E\n"));
792 }
793 }
794
795 if (link_info.strip != strip_none)
796 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
797
798 free (buf);
799 link_info.strip = strip_some;
800 fclose (file);
801 }
802 \f
803 /* Callbacks from the BFD linker routines. */
804
805 /* This is called when BFD has decided to include an archive member in
806 a link. */
807
808 static bfd_boolean
809 add_archive_element (struct bfd_link_info *info,
810 bfd *abfd,
811 const char *name,
812 bfd **subsbfd ATTRIBUTE_UNUSED)
813 {
814 lang_input_statement_type *input;
815 lang_input_statement_type *parent;
816 lang_input_statement_type orig_input;
817
818 input = (lang_input_statement_type *)
819 xcalloc (1, sizeof (lang_input_statement_type));
820 input->header.type = lang_input_statement_enum;
821 input->filename = bfd_get_filename (abfd);
822 input->local_sym_name = bfd_get_filename (abfd);
823 input->the_bfd = abfd;
824
825 /* Save the original data for trace files/tries below, as plugins
826 (if enabled) may possibly alter it to point to a replacement
827 BFD, but we still want to output the original BFD filename. */
828 orig_input = *input;
829 #if BFD_SUPPORTS_PLUGINS
830 if (link_info.lto_plugin_active)
831 {
832 /* We must offer this archive member to the plugins to claim. */
833 plugin_maybe_claim (input);
834 if (input->flags.claimed)
835 {
836 if (no_more_claiming)
837 {
838 /* Don't claim new IR symbols after all IR symbols have
839 been claimed. */
840 if (verbose)
841 info_msg ("%pI: no new IR symbols to claim\n",
842 &orig_input);
843 input->flags.claimed = 0;
844 return FALSE;
845 }
846 input->flags.claim_archive = TRUE;
847 *subsbfd = input->the_bfd;
848 }
849 }
850 #endif /* BFD_SUPPORTS_PLUGINS */
851
852 if (link_info.input_bfds_tail == &input->the_bfd->link.next
853 || input->the_bfd->link.next != NULL)
854 {
855 /* We have already loaded this element, and are attempting to
856 load it again. This can happen when the archive map doesn't
857 match actual symbols defined by the element. */
858 free (input);
859 bfd_set_error (bfd_error_malformed_archive);
860 return FALSE;
861 }
862
863 /* Set the file_chain pointer of archives to the last element loaded
864 from the archive. See ldlang.c:find_rescan_insertion. */
865 parent = bfd_usrdata (abfd->my_archive);
866 if (parent != NULL && !parent->flags.reload)
867 parent->next = input;
868
869 ldlang_add_file (input);
870
871 if (config.map_file != NULL)
872 {
873 static bfd_boolean header_printed;
874 struct bfd_link_hash_entry *h;
875 bfd *from;
876 int len;
877
878 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, TRUE);
879 if (h == NULL
880 && info->pei386_auto_import
881 && CONST_STRNEQ (name, "__imp_"))
882 h = bfd_link_hash_lookup (info->hash, name + 6, FALSE, FALSE, TRUE);
883
884 if (h == NULL)
885 from = NULL;
886 else
887 {
888 switch (h->type)
889 {
890 default:
891 from = NULL;
892 break;
893
894 case bfd_link_hash_defined:
895 case bfd_link_hash_defweak:
896 from = h->u.def.section->owner;
897 break;
898
899 case bfd_link_hash_undefined:
900 case bfd_link_hash_undefweak:
901 from = h->u.undef.abfd;
902 break;
903
904 case bfd_link_hash_common:
905 from = h->u.c.p->section->owner;
906 break;
907 }
908 }
909
910 if (!header_printed)
911 {
912 minfo (_("Archive member included to satisfy reference by file (symbol)\n\n"));
913 header_printed = TRUE;
914 }
915
916 if (abfd->my_archive == NULL
917 || bfd_is_thin_archive (abfd->my_archive))
918 {
919 minfo ("%s", bfd_get_filename (abfd));
920 len = strlen (bfd_get_filename (abfd));
921 }
922 else
923 {
924 minfo ("%s(%s)", bfd_get_filename (abfd->my_archive),
925 bfd_get_filename (abfd));
926 len = (strlen (bfd_get_filename (abfd->my_archive))
927 + strlen (bfd_get_filename (abfd))
928 + 2);
929 }
930
931 if (len >= 29)
932 {
933 print_nl ();
934 len = 0;
935 }
936 while (len < 30)
937 {
938 print_space ();
939 ++len;
940 }
941
942 if (from != NULL)
943 minfo ("%pB ", from);
944 if (h != NULL)
945 minfo ("(%pT)\n", h->root.string);
946 else
947 minfo ("(%s)\n", name);
948 }
949
950 if (verbose
951 || trace_files > 1
952 || (trace_files && bfd_is_thin_archive (orig_input.the_bfd->my_archive)))
953 info_msg ("%pI\n", &orig_input);
954 return TRUE;
955 }
956
957 /* This is called when BFD has discovered a symbol which is defined
958 multiple times. */
959
960 static void
961 multiple_definition (struct bfd_link_info *info,
962 struct bfd_link_hash_entry *h,
963 bfd *nbfd,
964 asection *nsec,
965 bfd_vma nval)
966 {
967 const char *name;
968 bfd *obfd;
969 asection *osec;
970 bfd_vma oval;
971
972 if (info->allow_multiple_definition)
973 return;
974
975 switch (h->type)
976 {
977 case bfd_link_hash_defined:
978 osec = h->u.def.section;
979 oval = h->u.def.value;
980 obfd = h->u.def.section->owner;
981 break;
982 case bfd_link_hash_indirect:
983 osec = bfd_ind_section_ptr;
984 oval = 0;
985 obfd = NULL;
986 break;
987 default:
988 abort ();
989 }
990
991 /* Ignore a redefinition of an absolute symbol to the
992 same value; it's harmless. */
993 if (h->type == bfd_link_hash_defined
994 && bfd_is_abs_section (osec)
995 && bfd_is_abs_section (nsec)
996 && nval == oval)
997 return;
998
999 /* If either section has the output_section field set to
1000 bfd_abs_section_ptr, it means that the section is being
1001 discarded, and this is not really a multiple definition at all.
1002 FIXME: It would be cleaner to somehow ignore symbols defined in
1003 sections which are being discarded. */
1004 if (!info->prohibit_multiple_definition_absolute
1005 && ((osec->output_section != NULL
1006 && ! bfd_is_abs_section (osec)
1007 && bfd_is_abs_section (osec->output_section))
1008 || (nsec->output_section != NULL
1009 && !bfd_is_abs_section (nsec)
1010 && bfd_is_abs_section (nsec->output_section))))
1011 return;
1012
1013 name = h->root.string;
1014 if (nbfd == NULL)
1015 {
1016 nbfd = obfd;
1017 nsec = osec;
1018 nval = oval;
1019 obfd = NULL;
1020 }
1021 einfo (_("%X%P: %C: multiple definition of `%pT'"),
1022 nbfd, nsec, nval, name);
1023 if (obfd != NULL)
1024 einfo (_("; %D: first defined here"), obfd, osec, oval);
1025 einfo ("\n");
1026
1027 if (RELAXATION_ENABLED_BY_USER)
1028 {
1029 einfo (_("%P: disabling relaxation; it will not work with multiple definitions\n"));
1030 DISABLE_RELAXATION;
1031 }
1032 }
1033
1034 /* This is called when there is a definition of a common symbol, or
1035 when a common symbol is found for a symbol that is already defined,
1036 or when two common symbols are found. We only do something if
1037 -warn-common was used. */
1038
1039 static void
1040 multiple_common (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1041 struct bfd_link_hash_entry *h,
1042 bfd *nbfd,
1043 enum bfd_link_hash_type ntype,
1044 bfd_vma nsize)
1045 {
1046 const char *name;
1047 bfd *obfd;
1048 enum bfd_link_hash_type otype;
1049 bfd_vma osize;
1050
1051 if (!config.warn_common)
1052 return;
1053
1054 name = h->root.string;
1055 otype = h->type;
1056 if (otype == bfd_link_hash_common)
1057 {
1058 obfd = h->u.c.p->section->owner;
1059 osize = h->u.c.size;
1060 }
1061 else if (otype == bfd_link_hash_defined
1062 || otype == bfd_link_hash_defweak)
1063 {
1064 obfd = h->u.def.section->owner;
1065 osize = 0;
1066 }
1067 else
1068 {
1069 /* FIXME: It would nice if we could report the BFD which defined
1070 an indirect symbol, but we don't have anywhere to store the
1071 information. */
1072 obfd = NULL;
1073 osize = 0;
1074 }
1075
1076 if (ntype == bfd_link_hash_defined
1077 || ntype == bfd_link_hash_defweak
1078 || ntype == bfd_link_hash_indirect)
1079 {
1080 ASSERT (otype == bfd_link_hash_common);
1081 if (obfd != NULL)
1082 einfo (_("%P: %pB: warning: definition of `%pT' overriding common"
1083 " from %pB\n"),
1084 nbfd, name, obfd);
1085 else
1086 einfo (_("%P: %pB: warning: definition of `%pT' overriding common\n"),
1087 nbfd, name);
1088 }
1089 else if (otype == bfd_link_hash_defined
1090 || otype == bfd_link_hash_defweak
1091 || otype == bfd_link_hash_indirect)
1092 {
1093 ASSERT (ntype == bfd_link_hash_common);
1094 if (obfd != NULL)
1095 einfo (_("%P: %pB: warning: common of `%pT' overridden by definition"
1096 " from %pB\n"),
1097 nbfd, name, obfd);
1098 else
1099 einfo (_("%P: %pB: warning: common of `%pT' overridden by definition\n"),
1100 nbfd, name);
1101 }
1102 else
1103 {
1104 ASSERT (otype == bfd_link_hash_common && ntype == bfd_link_hash_common);
1105 if (osize > nsize)
1106 {
1107 if (obfd != NULL)
1108 einfo (_("%P: %pB: warning: common of `%pT' overridden"
1109 " by larger common from %pB\n"),
1110 nbfd, name, obfd);
1111 else
1112 einfo (_("%P: %pB: warning: common of `%pT' overridden"
1113 " by larger common\n"),
1114 nbfd, name);
1115 }
1116 else if (nsize > osize)
1117 {
1118 if (obfd != NULL)
1119 einfo (_("%P: %pB: warning: common of `%pT' overriding"
1120 " smaller common from %pB\n"),
1121 nbfd, name, obfd);
1122 else
1123 einfo (_("%P: %pB: warning: common of `%pT' overriding"
1124 " smaller common\n"),
1125 nbfd, name);
1126 }
1127 else
1128 {
1129 if (obfd != NULL)
1130 einfo (_("%P: %pB and %pB: warning: multiple common of `%pT'\n"),
1131 nbfd, obfd, name);
1132 else
1133 einfo (_("%P: %pB: warning: multiple common of `%pT'\n"),
1134 nbfd, name);
1135 }
1136 }
1137 }
1138
1139 /* This is called when BFD has discovered a set element. H is the
1140 entry in the linker hash table for the set. SECTION and VALUE
1141 represent a value which should be added to the set. */
1142
1143 static void
1144 add_to_set (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1145 struct bfd_link_hash_entry *h,
1146 bfd_reloc_code_real_type reloc,
1147 bfd *abfd,
1148 asection *section,
1149 bfd_vma value)
1150 {
1151 if (config.warn_constructors)
1152 einfo (_("%P: warning: global constructor %s used\n"),
1153 h->root.string);
1154
1155 if (!config.build_constructors)
1156 return;
1157
1158 ldctor_add_set_entry (h, reloc, NULL, section, value);
1159
1160 if (h->type == bfd_link_hash_new)
1161 {
1162 h->type = bfd_link_hash_undefined;
1163 h->u.undef.abfd = abfd;
1164 /* We don't call bfd_link_add_undef to add this to the list of
1165 undefined symbols because we are going to define it
1166 ourselves. */
1167 }
1168 }
1169
1170 /* This is called when BFD has discovered a constructor. This is only
1171 called for some object file formats--those which do not handle
1172 constructors in some more clever fashion. This is similar to
1173 adding an element to a set, but less general. */
1174
1175 static void
1176 constructor_callback (struct bfd_link_info *info,
1177 bfd_boolean constructor,
1178 const char *name,
1179 bfd *abfd,
1180 asection *section,
1181 bfd_vma value)
1182 {
1183 char *s;
1184 struct bfd_link_hash_entry *h;
1185 char set_name[1 + sizeof "__CTOR_LIST__"];
1186
1187 if (config.warn_constructors)
1188 einfo (_("%P: warning: global constructor %s used\n"), name);
1189
1190 if (!config.build_constructors)
1191 return;
1192
1193 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
1194 useful error message. */
1195 if (bfd_reloc_type_lookup (info->output_bfd, BFD_RELOC_CTOR) == NULL
1196 && (bfd_link_relocatable (info)
1197 || bfd_reloc_type_lookup (abfd, BFD_RELOC_CTOR) == NULL))
1198 einfo (_("%F%P: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
1199
1200 s = set_name;
1201 if (bfd_get_symbol_leading_char (abfd) != '\0')
1202 *s++ = bfd_get_symbol_leading_char (abfd);
1203 if (constructor)
1204 strcpy (s, "__CTOR_LIST__");
1205 else
1206 strcpy (s, "__DTOR_LIST__");
1207
1208 h = bfd_link_hash_lookup (info->hash, set_name, TRUE, TRUE, TRUE);
1209 if (h == (struct bfd_link_hash_entry *) NULL)
1210 einfo (_("%F%P: bfd_link_hash_lookup failed: %E\n"));
1211 if (h->type == bfd_link_hash_new)
1212 {
1213 h->type = bfd_link_hash_undefined;
1214 h->u.undef.abfd = abfd;
1215 /* We don't call bfd_link_add_undef to add this to the list of
1216 undefined symbols because we are going to define it
1217 ourselves. */
1218 }
1219
1220 ldctor_add_set_entry (h, BFD_RELOC_CTOR, name, section, value);
1221 }
1222
1223 /* A structure used by warning_callback to pass information through
1224 bfd_map_over_sections. */
1225
1226 struct warning_callback_info
1227 {
1228 bfd_boolean found;
1229 const char *warning;
1230 const char *symbol;
1231 asymbol **asymbols;
1232 };
1233
1234 /* Look through the relocs to see if we can find a plausible address
1235 for SYMBOL in ABFD. Return TRUE if found. Otherwise return FALSE. */
1236
1237 static bfd_boolean
1238 symbol_warning (const char *warning, const char *symbol, bfd *abfd)
1239 {
1240 struct warning_callback_info cinfo;
1241
1242 if (!bfd_generic_link_read_symbols (abfd))
1243 einfo (_("%F%P: %pB: could not read symbols: %E\n"), abfd);
1244
1245 cinfo.found = FALSE;
1246 cinfo.warning = warning;
1247 cinfo.symbol = symbol;
1248 cinfo.asymbols = bfd_get_outsymbols (abfd);
1249 bfd_map_over_sections (abfd, warning_find_reloc, &cinfo);
1250 return cinfo.found;
1251 }
1252
1253 /* This is called when there is a reference to a warning symbol. */
1254
1255 static void
1256 warning_callback (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1257 const char *warning,
1258 const char *symbol,
1259 bfd *abfd,
1260 asection *section,
1261 bfd_vma address)
1262 {
1263 /* This is a hack to support warn_multiple_gp. FIXME: This should
1264 have a cleaner interface, but what? */
1265 if (!config.warn_multiple_gp
1266 && strcmp (warning, "using multiple gp values") == 0)
1267 return;
1268
1269 if (section != NULL)
1270 einfo ("%P: %C: %s%s\n", abfd, section, address, _("warning: "), warning);
1271 else if (abfd == NULL)
1272 einfo ("%P: %s%s\n", _("warning: "), warning);
1273 else if (symbol == NULL)
1274 einfo ("%P: %pB: %s%s\n", abfd, _("warning: "), warning);
1275 else if (!symbol_warning (warning, symbol, abfd))
1276 {
1277 bfd *b;
1278 /* Search all input files for a reference to SYMBOL. */
1279 for (b = info->input_bfds; b; b = b->link.next)
1280 if (b != abfd && symbol_warning (warning, symbol, b))
1281 return;
1282 einfo ("%P: %pB: %s%s\n", abfd, _("warning: "), warning);
1283 }
1284 }
1285
1286 /* This is called by warning_callback for each section. It checks the
1287 relocs of the section to see if it can find a reference to the
1288 symbol which triggered the warning. If it can, it uses the reloc
1289 to give an error message with a file and line number. */
1290
1291 static void
1292 warning_find_reloc (bfd *abfd, asection *sec, void *iarg)
1293 {
1294 struct warning_callback_info *info = (struct warning_callback_info *) iarg;
1295 long relsize;
1296 arelent **relpp;
1297 long relcount;
1298 arelent **p, **pend;
1299
1300 if (info->found)
1301 return;
1302
1303 relsize = bfd_get_reloc_upper_bound (abfd, sec);
1304 if (relsize < 0)
1305 einfo (_("%F%P: %pB: could not read relocs: %E\n"), abfd);
1306 if (relsize == 0)
1307 return;
1308
1309 relpp = (arelent **) xmalloc (relsize);
1310 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols);
1311 if (relcount < 0)
1312 einfo (_("%F%P: %pB: could not read relocs: %E\n"), abfd);
1313
1314 p = relpp;
1315 pend = p + relcount;
1316 for (; p < pend && *p != NULL; p++)
1317 {
1318 arelent *q = *p;
1319
1320 if (q->sym_ptr_ptr != NULL
1321 && *q->sym_ptr_ptr != NULL
1322 && strcmp (bfd_asymbol_name (*q->sym_ptr_ptr), info->symbol) == 0)
1323 {
1324 /* We found a reloc for the symbol we are looking for. */
1325 einfo ("%P: %C: %s%s\n", abfd, sec, q->address, _("warning: "),
1326 info->warning);
1327 info->found = TRUE;
1328 break;
1329 }
1330 }
1331
1332 free (relpp);
1333 }
1334
1335 /* This is called when an undefined symbol is found. */
1336
1337 static void
1338 undefined_symbol (struct bfd_link_info *info,
1339 const char *name,
1340 bfd *abfd,
1341 asection *section,
1342 bfd_vma address,
1343 bfd_boolean error)
1344 {
1345 static char *error_name;
1346 static unsigned int error_count;
1347
1348 #define MAX_ERRORS_IN_A_ROW 5
1349
1350 if (info->ignore_hash != NULL
1351 && bfd_hash_lookup (info->ignore_hash, name, FALSE, FALSE) != NULL)
1352 return;
1353
1354 if (config.warn_once)
1355 {
1356 /* Only warn once about a particular undefined symbol. */
1357 add_ignoresym (info, name);
1358 }
1359
1360 /* We never print more than a reasonable number of errors in a row
1361 for a single symbol. */
1362 if (error_name != NULL
1363 && strcmp (name, error_name) == 0)
1364 ++error_count;
1365 else
1366 {
1367 error_count = 0;
1368 free (error_name);
1369 error_name = xstrdup (name);
1370 }
1371
1372 if (section != NULL)
1373 {
1374 if (error_count < MAX_ERRORS_IN_A_ROW)
1375 {
1376 if (error)
1377 einfo (_("%X%P: %C: undefined reference to `%pT'\n"),
1378 abfd, section, address, name);
1379 else
1380 einfo (_("%P: %C: warning: undefined reference to `%pT'\n"),
1381 abfd, section, address, name);
1382 }
1383 else if (error_count == MAX_ERRORS_IN_A_ROW)
1384 {
1385 if (error)
1386 einfo (_("%X%P: %D: more undefined references to `%pT' follow\n"),
1387 abfd, section, address, name);
1388 else
1389 einfo (_("%P: %D: warning: more undefined references to `%pT' follow\n"),
1390 abfd, section, address, name);
1391 }
1392 else if (error)
1393 einfo ("%X");
1394 }
1395 else
1396 {
1397 if (error_count < MAX_ERRORS_IN_A_ROW)
1398 {
1399 if (error)
1400 einfo (_("%X%P: %pB: undefined reference to `%pT'\n"),
1401 abfd, name);
1402 else
1403 einfo (_("%P: %pB: warning: undefined reference to `%pT'\n"),
1404 abfd, name);
1405 }
1406 else if (error_count == MAX_ERRORS_IN_A_ROW)
1407 {
1408 if (error)
1409 einfo (_("%X%P: %pB: more undefined references to `%pT' follow\n"),
1410 abfd, name);
1411 else
1412 einfo (_("%P: %pB: warning: more undefined references to `%pT' follow\n"),
1413 abfd, name);
1414 }
1415 else if (error)
1416 einfo ("%X");
1417 }
1418 }
1419
1420 /* Counter to limit the number of relocation overflow error messages
1421 to print. Errors are printed as it is decremented. When it's
1422 called and the counter is zero, a final message is printed
1423 indicating more relocations were omitted. When it gets to -1, no
1424 such errors are printed. If it's initially set to a value less
1425 than -1, all such errors will be printed (--verbose does this). */
1426
1427 int overflow_cutoff_limit = 10;
1428
1429 /* This is called when a reloc overflows. */
1430
1431 static void
1432 reloc_overflow (struct bfd_link_info *info,
1433 struct bfd_link_hash_entry *entry,
1434 const char *name,
1435 const char *reloc_name,
1436 bfd_vma addend,
1437 bfd *abfd,
1438 asection *section,
1439 bfd_vma address)
1440 {
1441 if (overflow_cutoff_limit == -1)
1442 return;
1443
1444 einfo ("%X%H:", abfd, section, address);
1445
1446 if (overflow_cutoff_limit >= 0
1447 && overflow_cutoff_limit-- == 0)
1448 {
1449 einfo (_(" additional relocation overflows omitted from the output\n"));
1450 return;
1451 }
1452
1453 if (entry)
1454 {
1455 while (entry->type == bfd_link_hash_indirect
1456 || entry->type == bfd_link_hash_warning)
1457 entry = entry->u.i.link;
1458 switch (entry->type)
1459 {
1460 case bfd_link_hash_undefined:
1461 case bfd_link_hash_undefweak:
1462 einfo (_(" relocation truncated to fit: "
1463 "%s against undefined symbol `%pT'"),
1464 reloc_name, entry->root.string);
1465 break;
1466 case bfd_link_hash_defined:
1467 case bfd_link_hash_defweak:
1468 einfo (_(" relocation truncated to fit: "
1469 "%s against symbol `%pT' defined in %pA section in %pB"),
1470 reloc_name, entry->root.string,
1471 entry->u.def.section,
1472 entry->u.def.section == bfd_abs_section_ptr
1473 ? info->output_bfd : entry->u.def.section->owner);
1474 break;
1475 default:
1476 abort ();
1477 break;
1478 }
1479 }
1480 else
1481 einfo (_(" relocation truncated to fit: %s against `%pT'"),
1482 reloc_name, name);
1483 if (addend != 0)
1484 einfo ("+%v", addend);
1485 einfo ("\n");
1486 }
1487
1488 /* This is called when a dangerous relocation is made. */
1489
1490 static void
1491 reloc_dangerous (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1492 const char *message,
1493 bfd *abfd,
1494 asection *section,
1495 bfd_vma address)
1496 {
1497 einfo (_("%X%H: dangerous relocation: %s\n"),
1498 abfd, section, address, message);
1499 }
1500
1501 /* This is called when a reloc is being generated attached to a symbol
1502 that is not being output. */
1503
1504 static void
1505 unattached_reloc (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1506 const char *name,
1507 bfd *abfd,
1508 asection *section,
1509 bfd_vma address)
1510 {
1511 einfo (_("%X%H: reloc refers to symbol `%pT' which is not being output\n"),
1512 abfd, section, address, name);
1513 }
1514
1515 /* This is called if link_info.notice_all is set, or when a symbol in
1516 link_info.notice_hash is found. Symbols are put in notice_hash
1517 using the -y option, while notice_all is set if the --cref option
1518 has been supplied, or if there are any NOCROSSREFS sections in the
1519 linker script; and if plugins are active, since they need to monitor
1520 all references from non-IR files. */
1521
1522 static bfd_boolean
1523 notice (struct bfd_link_info *info,
1524 struct bfd_link_hash_entry *h,
1525 struct bfd_link_hash_entry *inh ATTRIBUTE_UNUSED,
1526 bfd *abfd,
1527 asection *section,
1528 bfd_vma value,
1529 flagword flags ATTRIBUTE_UNUSED)
1530 {
1531 const char *name;
1532
1533 if (h == NULL)
1534 {
1535 if (command_line.cref || nocrossref_list != NULL)
1536 return handle_asneeded_cref (abfd, (enum notice_asneeded_action) value);
1537 return TRUE;
1538 }
1539
1540 name = h->root.string;
1541 if (info->notice_hash != NULL
1542 && bfd_hash_lookup (info->notice_hash, name, FALSE, FALSE) != NULL)
1543 {
1544 if (bfd_is_und_section (section))
1545 einfo (_("%P: %pB: reference to %s\n"), abfd, name);
1546 else
1547 einfo (_("%P: %pB: definition of %s\n"), abfd, name);
1548 }
1549
1550 if (command_line.cref || nocrossref_list != NULL)
1551 add_cref (name, abfd, section, value);
1552
1553 return TRUE;
1554 }
This page took 0.058924 seconds and 5 git commands to generate.